Added basic nvim config, replaced vim with nvim
This commit is contained in:
parent
624d12439c
commit
ea2e6747d9
1972 changed files with 126578 additions and 0 deletions
1
dot_oh-my-zsh/dot_git/FETCH_HEAD
Normal file
1
dot_oh-my-zsh/dot_git/FETCH_HEAD
Normal file
|
@ -0,0 +1 @@
|
|||
9730915910c6cc7640f8af6063ffb93becf0414a branch 'master' of https://github.com/ohmyzsh/ohmyzsh
|
1
dot_oh-my-zsh/dot_git/HEAD
Normal file
1
dot_oh-my-zsh/dot_git/HEAD
Normal file
|
@ -0,0 +1 @@
|
|||
ref: refs/heads/master
|
1
dot_oh-my-zsh/dot_git/ORIG_HEAD
Normal file
1
dot_oh-my-zsh/dot_git/ORIG_HEAD
Normal file
|
@ -0,0 +1 @@
|
|||
872b5cd4086a5547dbf788dda4e96ab3868cf59b
|
0
dot_oh-my-zsh/dot_git/branches/.keep
Normal file
0
dot_oh-my-zsh/dot_git/branches/.keep
Normal file
23
dot_oh-my-zsh/dot_git/config
Normal file
23
dot_oh-my-zsh/dot_git/config
Normal file
|
@ -0,0 +1,23 @@
|
|||
[core]
|
||||
repositoryformatversion = 0
|
||||
filemode = true
|
||||
bare = false
|
||||
logallrefupdates = true
|
||||
eol = lf
|
||||
autocrlf = false
|
||||
[fsck]
|
||||
zeroPaddedFilemode = ignore
|
||||
[fetch "fsck"]
|
||||
zeroPaddedFilemode = ignore
|
||||
[receive "fsck"]
|
||||
zeroPaddedFilemode = ignore
|
||||
[oh-my-zsh]
|
||||
remote = origin
|
||||
branch = master
|
||||
lastVersion = 872b5cd4086a5547dbf788dda4e96ab3868cf59b
|
||||
[remote "origin"]
|
||||
url = https://github.com/ohmyzsh/ohmyzsh.git
|
||||
fetch = +refs/heads/*:refs/remotes/origin/*
|
||||
[branch "master"]
|
||||
remote = origin
|
||||
merge = refs/heads/master
|
1
dot_oh-my-zsh/dot_git/description
Normal file
1
dot_oh-my-zsh/dot_git/description
Normal file
|
@ -0,0 +1 @@
|
|||
Unnamed repository; edit this file 'description' to name the repository.
|
15
dot_oh-my-zsh/dot_git/hooks/executable_applypatch-msg.sample
Normal file
15
dot_oh-my-zsh/dot_git/hooks/executable_applypatch-msg.sample
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to check the commit log message taken by
|
||||
# applypatch from an e-mail message.
|
||||
#
|
||||
# The hook should exit with non-zero status after issuing an
|
||||
# appropriate message if it wants to stop the commit. The hook is
|
||||
# allowed to edit the commit message file.
|
||||
#
|
||||
# To enable this hook, rename this file to "applypatch-msg".
|
||||
|
||||
. git-sh-setup
|
||||
commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
|
||||
test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
|
||||
:
|
24
dot_oh-my-zsh/dot_git/hooks/executable_commit-msg.sample
Normal file
24
dot_oh-my-zsh/dot_git/hooks/executable_commit-msg.sample
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to check the commit log message.
|
||||
# Called by "git commit" with one argument, the name of the file
|
||||
# that has the commit message. The hook should exit with non-zero
|
||||
# status after issuing an appropriate message if it wants to stop the
|
||||
# commit. The hook is allowed to edit the commit message file.
|
||||
#
|
||||
# To enable this hook, rename this file to "commit-msg".
|
||||
|
||||
# Uncomment the below to add a Signed-off-by line to the message.
|
||||
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
|
||||
# hook is more suited to it.
|
||||
#
|
||||
# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
|
||||
# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
|
||||
|
||||
# This example catches duplicate Signed-off-by lines.
|
||||
|
||||
test "" = "$(grep '^Signed-off-by: ' "$1" |
|
||||
sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || {
|
||||
echo >&2 Duplicate Signed-off-by lines.
|
||||
exit 1
|
||||
}
|
174
dot_oh-my-zsh/dot_git/hooks/executable_fsmonitor-watchman.sample
Normal file
174
dot_oh-my-zsh/dot_git/hooks/executable_fsmonitor-watchman.sample
Normal file
|
@ -0,0 +1,174 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
use IPC::Open2;
|
||||
|
||||
# An example hook script to integrate Watchman
|
||||
# (https://facebook.github.io/watchman/) with git to speed up detecting
|
||||
# new and modified files.
|
||||
#
|
||||
# The hook is passed a version (currently 2) and last update token
|
||||
# formatted as a string and outputs to stdout a new update token and
|
||||
# all files that have been modified since the update token. Paths must
|
||||
# be relative to the root of the working tree and separated by a single NUL.
|
||||
#
|
||||
# To enable this hook, rename this file to "query-watchman" and set
|
||||
# 'git config core.fsmonitor .git/hooks/query-watchman'
|
||||
#
|
||||
my ($version, $last_update_token) = @ARGV;
|
||||
|
||||
# Uncomment for debugging
|
||||
# print STDERR "$0 $version $last_update_token\n";
|
||||
|
||||
# Check the hook interface version
|
||||
if ($version ne 2) {
|
||||
die "Unsupported query-fsmonitor hook version '$version'.\n" .
|
||||
"Falling back to scanning...\n";
|
||||
}
|
||||
|
||||
my $git_work_tree = get_working_dir();
|
||||
|
||||
my $retry = 1;
|
||||
|
||||
my $json_pkg;
|
||||
eval {
|
||||
require JSON::XS;
|
||||
$json_pkg = "JSON::XS";
|
||||
1;
|
||||
} or do {
|
||||
require JSON::PP;
|
||||
$json_pkg = "JSON::PP";
|
||||
};
|
||||
|
||||
launch_watchman();
|
||||
|
||||
sub launch_watchman {
|
||||
my $o = watchman_query();
|
||||
if (is_work_tree_watched($o)) {
|
||||
output_result($o->{clock}, @{$o->{files}});
|
||||
}
|
||||
}
|
||||
|
||||
sub output_result {
|
||||
my ($clockid, @files) = @_;
|
||||
|
||||
# Uncomment for debugging watchman output
|
||||
# open (my $fh, ">", ".git/watchman-output.out");
|
||||
# binmode $fh, ":utf8";
|
||||
# print $fh "$clockid\n@files\n";
|
||||
# close $fh;
|
||||
|
||||
binmode STDOUT, ":utf8";
|
||||
print $clockid;
|
||||
print "\0";
|
||||
local $, = "\0";
|
||||
print @files;
|
||||
}
|
||||
|
||||
sub watchman_clock {
|
||||
my $response = qx/watchman clock "$git_work_tree"/;
|
||||
die "Failed to get clock id on '$git_work_tree'.\n" .
|
||||
"Falling back to scanning...\n" if $? != 0;
|
||||
|
||||
return $json_pkg->new->utf8->decode($response);
|
||||
}
|
||||
|
||||
sub watchman_query {
|
||||
my $pid = open2(\*CHLD_OUT, \*CHLD_IN, 'watchman -j --no-pretty')
|
||||
or die "open2() failed: $!\n" .
|
||||
"Falling back to scanning...\n";
|
||||
|
||||
# In the query expression below we're asking for names of files that
|
||||
# changed since $last_update_token but not from the .git folder.
|
||||
#
|
||||
# To accomplish this, we're using the "since" generator to use the
|
||||
# recency index to select candidate nodes and "fields" to limit the
|
||||
# output to file names only. Then we're using the "expression" term to
|
||||
# further constrain the results.
|
||||
my $last_update_line = "";
|
||||
if (substr($last_update_token, 0, 1) eq "c") {
|
||||
$last_update_token = "\"$last_update_token\"";
|
||||
$last_update_line = qq[\n"since": $last_update_token,];
|
||||
}
|
||||
my $query = <<" END";
|
||||
["query", "$git_work_tree", {$last_update_line
|
||||
"fields": ["name"],
|
||||
"expression": ["not", ["dirname", ".git"]]
|
||||
}]
|
||||
END
|
||||
|
||||
# Uncomment for debugging the watchman query
|
||||
# open (my $fh, ">", ".git/watchman-query.json");
|
||||
# print $fh $query;
|
||||
# close $fh;
|
||||
|
||||
print CHLD_IN $query;
|
||||
close CHLD_IN;
|
||||
my $response = do {local $/; <CHLD_OUT>};
|
||||
|
||||
# Uncomment for debugging the watch response
|
||||
# open ($fh, ">", ".git/watchman-response.json");
|
||||
# print $fh $response;
|
||||
# close $fh;
|
||||
|
||||
die "Watchman: command returned no output.\n" .
|
||||
"Falling back to scanning...\n" if $response eq "";
|
||||
die "Watchman: command returned invalid output: $response\n" .
|
||||
"Falling back to scanning...\n" unless $response =~ /^\{/;
|
||||
|
||||
return $json_pkg->new->utf8->decode($response);
|
||||
}
|
||||
|
||||
sub is_work_tree_watched {
|
||||
my ($output) = @_;
|
||||
my $error = $output->{error};
|
||||
if ($retry > 0 and $error and $error =~ m/unable to resolve root .* directory (.*) is not watched/) {
|
||||
$retry--;
|
||||
my $response = qx/watchman watch "$git_work_tree"/;
|
||||
die "Failed to make watchman watch '$git_work_tree'.\n" .
|
||||
"Falling back to scanning...\n" if $? != 0;
|
||||
$output = $json_pkg->new->utf8->decode($response);
|
||||
$error = $output->{error};
|
||||
die "Watchman: $error.\n" .
|
||||
"Falling back to scanning...\n" if $error;
|
||||
|
||||
# Uncomment for debugging watchman output
|
||||
# open (my $fh, ">", ".git/watchman-output.out");
|
||||
# close $fh;
|
||||
|
||||
# Watchman will always return all files on the first query so
|
||||
# return the fast "everything is dirty" flag to git and do the
|
||||
# Watchman query just to get it over with now so we won't pay
|
||||
# the cost in git to look up each individual file.
|
||||
my $o = watchman_clock();
|
||||
$error = $output->{error};
|
||||
|
||||
die "Watchman: $error.\n" .
|
||||
"Falling back to scanning...\n" if $error;
|
||||
|
||||
output_result($o->{clock}, ("/"));
|
||||
$last_update_token = $o->{clock};
|
||||
|
||||
eval { launch_watchman() };
|
||||
return 0;
|
||||
}
|
||||
|
||||
die "Watchman: $error.\n" .
|
||||
"Falling back to scanning...\n" if $error;
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
sub get_working_dir {
|
||||
my $working_dir;
|
||||
if ($^O =~ 'msys' || $^O =~ 'cygwin') {
|
||||
$working_dir = Win32::GetCwd();
|
||||
$working_dir =~ tr/\\/\//;
|
||||
} else {
|
||||
require Cwd;
|
||||
$working_dir = Cwd::cwd();
|
||||
}
|
||||
|
||||
return $working_dir;
|
||||
}
|
|
@ -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
|
14
dot_oh-my-zsh/dot_git/hooks/executable_pre-applypatch.sample
Normal file
14
dot_oh-my-zsh/dot_git/hooks/executable_pre-applypatch.sample
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to verify what is about to be committed
|
||||
# by applypatch from an e-mail message.
|
||||
#
|
||||
# The hook should exit with non-zero status after issuing an
|
||||
# appropriate message if it wants to stop the commit.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-applypatch".
|
||||
|
||||
. git-sh-setup
|
||||
precommit="$(git rev-parse --git-path hooks/pre-commit)"
|
||||
test -x "$precommit" && exec "$precommit" ${1+"$@"}
|
||||
:
|
49
dot_oh-my-zsh/dot_git/hooks/executable_pre-commit.sample
Normal file
49
dot_oh-my-zsh/dot_git/hooks/executable_pre-commit.sample
Normal file
|
@ -0,0 +1,49 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to verify what is about to be committed.
|
||||
# Called by "git commit" with no arguments. The hook should
|
||||
# exit with non-zero status after issuing an appropriate message if
|
||||
# it wants to stop the commit.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-commit".
|
||||
|
||||
if git rev-parse --verify HEAD >/dev/null 2>&1
|
||||
then
|
||||
against=HEAD
|
||||
else
|
||||
# Initial commit: diff against an empty tree object
|
||||
against=$(git hash-object -t tree /dev/null)
|
||||
fi
|
||||
|
||||
# If you want to allow non-ASCII filenames set this variable to true.
|
||||
allownonascii=$(git config --type=bool hooks.allownonascii)
|
||||
|
||||
# Redirect output to stderr.
|
||||
exec 1>&2
|
||||
|
||||
# Cross platform projects tend to avoid non-ASCII filenames; prevent
|
||||
# them from being added to the repository. We exploit the fact that the
|
||||
# printable range starts at the space character and ends with tilde.
|
||||
if [ "$allownonascii" != "true" ] &&
|
||||
# Note that the use of brackets around a tr range is ok here, (it's
|
||||
# even required, for portability to Solaris 10's /usr/bin/tr), since
|
||||
# the square bracket bytes happen to fall in the designated range.
|
||||
test $(git diff --cached --name-only --diff-filter=A -z $against |
|
||||
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
|
||||
then
|
||||
cat <<\EOF
|
||||
Error: Attempt to add a non-ASCII file name.
|
||||
|
||||
This can cause problems if you want to work with people on other platforms.
|
||||
|
||||
To be portable it is advisable to rename the file.
|
||||
|
||||
If you know what you are doing you can disable this check using:
|
||||
|
||||
git config hooks.allownonascii true
|
||||
EOF
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# If there are whitespace errors, print the offending file names and fail.
|
||||
exec git diff-index --check --cached $against --
|
|
@ -0,0 +1,13 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to verify what is about to be committed.
|
||||
# Called by "git merge" with no arguments. The hook should
|
||||
# exit with non-zero status after issuing an appropriate message to
|
||||
# stderr if it wants to stop the merge commit.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-merge-commit".
|
||||
|
||||
. git-sh-setup
|
||||
test -x "$GIT_DIR/hooks/pre-commit" &&
|
||||
exec "$GIT_DIR/hooks/pre-commit"
|
||||
:
|
53
dot_oh-my-zsh/dot_git/hooks/executable_pre-push.sample
Normal file
53
dot_oh-my-zsh/dot_git/hooks/executable_pre-push.sample
Normal file
|
@ -0,0 +1,53 @@
|
|||
#!/bin/sh
|
||||
|
||||
# An example hook script to verify what is about to be pushed. Called by "git
|
||||
# push" after it has checked the remote status, but before anything has been
|
||||
# pushed. If this script exits with a non-zero status nothing will be pushed.
|
||||
#
|
||||
# This hook is called with the following parameters:
|
||||
#
|
||||
# $1 -- Name of the remote to which the push is being done
|
||||
# $2 -- URL to which the push is being done
|
||||
#
|
||||
# If pushing without using a named remote those arguments will be equal.
|
||||
#
|
||||
# Information about the commits which are being pushed is supplied as lines to
|
||||
# the standard input in the form:
|
||||
#
|
||||
# <local ref> <local oid> <remote ref> <remote oid>
|
||||
#
|
||||
# This sample shows how to prevent push of commits where the log message starts
|
||||
# with "WIP" (work in progress).
|
||||
|
||||
remote="$1"
|
||||
url="$2"
|
||||
|
||||
zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
|
||||
|
||||
while read local_ref local_oid remote_ref remote_oid
|
||||
do
|
||||
if test "$local_oid" = "$zero"
|
||||
then
|
||||
# Handle delete
|
||||
:
|
||||
else
|
||||
if test "$remote_oid" = "$zero"
|
||||
then
|
||||
# New branch, examine all commits
|
||||
range="$local_oid"
|
||||
else
|
||||
# Update to existing branch, examine new commits
|
||||
range="$remote_oid..$local_oid"
|
||||
fi
|
||||
|
||||
# Check for WIP commit
|
||||
commit=$(git rev-list -n 1 --grep '^WIP' "$range")
|
||||
if test -n "$commit"
|
||||
then
|
||||
echo >&2 "Found WIP commit in $local_ref, not pushing"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
169
dot_oh-my-zsh/dot_git/hooks/executable_pre-rebase.sample
Normal file
169
dot_oh-my-zsh/dot_git/hooks/executable_pre-rebase.sample
Normal file
|
@ -0,0 +1,169 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# Copyright (c) 2006, 2008 Junio C Hamano
|
||||
#
|
||||
# The "pre-rebase" hook is run just before "git rebase" starts doing
|
||||
# its job, and can prevent the command from running by exiting with
|
||||
# non-zero status.
|
||||
#
|
||||
# The hook is called with the following parameters:
|
||||
#
|
||||
# $1 -- the upstream the series was forked from.
|
||||
# $2 -- the branch being rebased (or empty when rebasing the current branch).
|
||||
#
|
||||
# This sample shows how to prevent topic branches that are already
|
||||
# merged to 'next' branch from getting rebased, because allowing it
|
||||
# would result in rebasing already published history.
|
||||
|
||||
publish=next
|
||||
basebranch="$1"
|
||||
if test "$#" = 2
|
||||
then
|
||||
topic="refs/heads/$2"
|
||||
else
|
||||
topic=`git symbolic-ref HEAD` ||
|
||||
exit 0 ;# we do not interrupt rebasing detached HEAD
|
||||
fi
|
||||
|
||||
case "$topic" in
|
||||
refs/heads/??/*)
|
||||
;;
|
||||
*)
|
||||
exit 0 ;# we do not interrupt others.
|
||||
;;
|
||||
esac
|
||||
|
||||
# Now we are dealing with a topic branch being rebased
|
||||
# on top of master. Is it OK to rebase it?
|
||||
|
||||
# Does the topic really exist?
|
||||
git show-ref -q "$topic" || {
|
||||
echo >&2 "No such branch $topic"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Is topic fully merged to master?
|
||||
not_in_master=`git rev-list --pretty=oneline ^master "$topic"`
|
||||
if test -z "$not_in_master"
|
||||
then
|
||||
echo >&2 "$topic is fully merged to master; better remove it."
|
||||
exit 1 ;# we could allow it, but there is no point.
|
||||
fi
|
||||
|
||||
# Is topic ever merged to next? If so you should not be rebasing it.
|
||||
only_next_1=`git rev-list ^master "^$topic" ${publish} | sort`
|
||||
only_next_2=`git rev-list ^master ${publish} | sort`
|
||||
if test "$only_next_1" = "$only_next_2"
|
||||
then
|
||||
not_in_topic=`git rev-list "^$topic" master`
|
||||
if test -z "$not_in_topic"
|
||||
then
|
||||
echo >&2 "$topic is already up to date with master"
|
||||
exit 1 ;# we could allow it, but there is no point.
|
||||
else
|
||||
exit 0
|
||||
fi
|
||||
else
|
||||
not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"`
|
||||
/usr/bin/perl -e '
|
||||
my $topic = $ARGV[0];
|
||||
my $msg = "* $topic has commits already merged to public branch:\n";
|
||||
my (%not_in_next) = map {
|
||||
/^([0-9a-f]+) /;
|
||||
($1 => 1);
|
||||
} split(/\n/, $ARGV[1]);
|
||||
for my $elem (map {
|
||||
/^([0-9a-f]+) (.*)$/;
|
||||
[$1 => $2];
|
||||
} split(/\n/, $ARGV[2])) {
|
||||
if (!exists $not_in_next{$elem->[0]}) {
|
||||
if ($msg) {
|
||||
print STDERR $msg;
|
||||
undef $msg;
|
||||
}
|
||||
print STDERR " $elem->[1]\n";
|
||||
}
|
||||
}
|
||||
' "$topic" "$not_in_next" "$not_in_master"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
<<\DOC_END
|
||||
|
||||
This sample hook safeguards topic branches that have been
|
||||
published from being rewound.
|
||||
|
||||
The workflow assumed here is:
|
||||
|
||||
* Once a topic branch forks from "master", "master" is never
|
||||
merged into it again (either directly or indirectly).
|
||||
|
||||
* Once a topic branch is fully cooked and merged into "master",
|
||||
it is deleted. If you need to build on top of it to correct
|
||||
earlier mistakes, a new topic branch is created by forking at
|
||||
the tip of the "master". This is not strictly necessary, but
|
||||
it makes it easier to keep your history simple.
|
||||
|
||||
* Whenever you need to test or publish your changes to topic
|
||||
branches, merge them into "next" branch.
|
||||
|
||||
The script, being an example, hardcodes the publish branch name
|
||||
to be "next", but it is trivial to make it configurable via
|
||||
$GIT_DIR/config mechanism.
|
||||
|
||||
With this workflow, you would want to know:
|
||||
|
||||
(1) ... if a topic branch has ever been merged to "next". Young
|
||||
topic branches can have stupid mistakes you would rather
|
||||
clean up before publishing, and things that have not been
|
||||
merged into other branches can be easily rebased without
|
||||
affecting other people. But once it is published, you would
|
||||
not want to rewind it.
|
||||
|
||||
(2) ... if a topic branch has been fully merged to "master".
|
||||
Then you can delete it. More importantly, you should not
|
||||
build on top of it -- other people may already want to
|
||||
change things related to the topic as patches against your
|
||||
"master", so if you need further changes, it is better to
|
||||
fork the topic (perhaps with the same name) afresh from the
|
||||
tip of "master".
|
||||
|
||||
Let's look at this example:
|
||||
|
||||
o---o---o---o---o---o---o---o---o---o "next"
|
||||
/ / / /
|
||||
/ a---a---b A / /
|
||||
/ / / /
|
||||
/ / c---c---c---c B /
|
||||
/ / / \ /
|
||||
/ / / b---b C \ /
|
||||
/ / / / \ /
|
||||
---o---o---o---o---o---o---o---o---o---o---o "master"
|
||||
|
||||
|
||||
A, B and C are topic branches.
|
||||
|
||||
* A has one fix since it was merged up to "next".
|
||||
|
||||
* B has finished. It has been fully merged up to "master" and "next",
|
||||
and is ready to be deleted.
|
||||
|
||||
* C has not merged to "next" at all.
|
||||
|
||||
We would want to allow C to be rebased, refuse A, and encourage
|
||||
B to be deleted.
|
||||
|
||||
To compute (1):
|
||||
|
||||
git rev-list ^master ^topic next
|
||||
git rev-list ^master next
|
||||
|
||||
if these match, topic has not merged in next at all.
|
||||
|
||||
To compute (2):
|
||||
|
||||
git rev-list master..topic
|
||||
|
||||
if this is empty, it is fully merged to "master".
|
||||
|
||||
DOC_END
|
24
dot_oh-my-zsh/dot_git/hooks/executable_pre-receive.sample
Normal file
24
dot_oh-my-zsh/dot_git/hooks/executable_pre-receive.sample
Normal file
|
@ -0,0 +1,24 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to make use of push options.
|
||||
# The example simply echoes all push options that start with 'echoback='
|
||||
# and rejects all pushes when the "reject" push option is used.
|
||||
#
|
||||
# To enable this hook, rename this file to "pre-receive".
|
||||
|
||||
if test -n "$GIT_PUSH_OPTION_COUNT"
|
||||
then
|
||||
i=0
|
||||
while test "$i" -lt "$GIT_PUSH_OPTION_COUNT"
|
||||
do
|
||||
eval "value=\$GIT_PUSH_OPTION_$i"
|
||||
case "$value" in
|
||||
echoback=*)
|
||||
echo "echo from the pre-receive-hook: ${value#*=}" >&2
|
||||
;;
|
||||
reject)
|
||||
exit 1
|
||||
esac
|
||||
i=$((i + 1))
|
||||
done
|
||||
fi
|
|
@ -0,0 +1,42 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to prepare the commit log message.
|
||||
# Called by "git commit" with the name of the file that has the
|
||||
# commit message, followed by the description of the commit
|
||||
# message's source. The hook's purpose is to edit the commit
|
||||
# message file. If the hook fails with a non-zero status,
|
||||
# the commit is aborted.
|
||||
#
|
||||
# To enable this hook, rename this file to "prepare-commit-msg".
|
||||
|
||||
# This hook includes three examples. The first one removes the
|
||||
# "# Please enter the commit message..." help message.
|
||||
#
|
||||
# The second includes the output of "git diff --name-status -r"
|
||||
# into the message, just before the "git status" output. It is
|
||||
# commented because it doesn't cope with --amend or with squashed
|
||||
# commits.
|
||||
#
|
||||
# The third example adds a Signed-off-by line to the message, that can
|
||||
# still be edited. This is rarely a good idea.
|
||||
|
||||
COMMIT_MSG_FILE=$1
|
||||
COMMIT_SOURCE=$2
|
||||
SHA1=$3
|
||||
|
||||
/usr/bin/perl -i.bak -ne 'print unless(m/^. Please enter the commit message/..m/^#$/)' "$COMMIT_MSG_FILE"
|
||||
|
||||
# case "$COMMIT_SOURCE,$SHA1" in
|
||||
# ,|template,)
|
||||
# /usr/bin/perl -i.bak -pe '
|
||||
# print "\n" . `git diff --cached --name-status -r`
|
||||
# if /^#/ && $first++ == 0' "$COMMIT_MSG_FILE" ;;
|
||||
# *) ;;
|
||||
# esac
|
||||
|
||||
# SOB=$(git var GIT_COMMITTER_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p')
|
||||
# git interpret-trailers --in-place --trailer "$SOB" "$COMMIT_MSG_FILE"
|
||||
# if test -z "$COMMIT_SOURCE"
|
||||
# then
|
||||
# /usr/bin/perl -i.bak -pe 'print "\n" if !$first_line++' "$COMMIT_MSG_FILE"
|
||||
# fi
|
|
@ -0,0 +1,78 @@
|
|||
#!/bin/sh
|
||||
|
||||
# An example hook script to update a checked-out tree on a git push.
|
||||
#
|
||||
# This hook is invoked by git-receive-pack(1) when it reacts to git
|
||||
# push and updates reference(s) in its repository, and when the push
|
||||
# tries to update the branch that is currently checked out and the
|
||||
# receive.denyCurrentBranch configuration variable is set to
|
||||
# updateInstead.
|
||||
#
|
||||
# By default, such a push is refused if the working tree and the index
|
||||
# of the remote repository has any difference from the currently
|
||||
# checked out commit; when both the working tree and the index match
|
||||
# the current commit, they are updated to match the newly pushed tip
|
||||
# of the branch. This hook is to be used to override the default
|
||||
# behaviour; however the code below reimplements the default behaviour
|
||||
# as a starting point for convenient modification.
|
||||
#
|
||||
# The hook receives the commit with which the tip of the current
|
||||
# branch is going to be updated:
|
||||
commit=$1
|
||||
|
||||
# It can exit with a non-zero status to refuse the push (when it does
|
||||
# so, it must not modify the index or the working tree).
|
||||
die () {
|
||||
echo >&2 "$*"
|
||||
exit 1
|
||||
}
|
||||
|
||||
# Or it can make any necessary changes to the working tree and to the
|
||||
# index to bring them to the desired state when the tip of the current
|
||||
# branch is updated to the new commit, and exit with a zero status.
|
||||
#
|
||||
# For example, the hook can simply run git read-tree -u -m HEAD "$1"
|
||||
# in order to emulate git fetch that is run in the reverse direction
|
||||
# with git push, as the two-tree form of git read-tree -u -m is
|
||||
# essentially the same as git switch or git checkout that switches
|
||||
# branches while keeping the local changes in the working tree that do
|
||||
# not interfere with the difference between the branches.
|
||||
|
||||
# The below is a more-or-less exact translation to shell of the C code
|
||||
# for the default behaviour for git's push-to-checkout hook defined in
|
||||
# the push_to_deploy() function in builtin/receive-pack.c.
|
||||
#
|
||||
# Note that the hook will be executed from the repository directory,
|
||||
# not from the working tree, so if you want to perform operations on
|
||||
# the working tree, you will have to adapt your code accordingly, e.g.
|
||||
# by adding "cd .." or using relative paths.
|
||||
|
||||
if ! git update-index -q --ignore-submodules --refresh
|
||||
then
|
||||
die "Up-to-date check failed"
|
||||
fi
|
||||
|
||||
if ! git diff-files --quiet --ignore-submodules --
|
||||
then
|
||||
die "Working directory has unstaged changes"
|
||||
fi
|
||||
|
||||
# This is a rough translation of:
|
||||
#
|
||||
# head_has_history() ? "HEAD" : EMPTY_TREE_SHA1_HEX
|
||||
if git cat-file -e HEAD 2>/dev/null
|
||||
then
|
||||
head=HEAD
|
||||
else
|
||||
head=$(git hash-object -t tree --stdin </dev/null)
|
||||
fi
|
||||
|
||||
if ! git diff-index --quiet --cached --ignore-submodules $head --
|
||||
then
|
||||
die "Working directory has staged changes"
|
||||
fi
|
||||
|
||||
if ! git read-tree -u -m "$commit"
|
||||
then
|
||||
die "Could not update working tree to new HEAD"
|
||||
fi
|
128
dot_oh-my-zsh/dot_git/hooks/executable_update.sample
Normal file
128
dot_oh-my-zsh/dot_git/hooks/executable_update.sample
Normal file
|
@ -0,0 +1,128 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# An example hook script to block unannotated tags from entering.
|
||||
# Called by "git receive-pack" with arguments: refname sha1-old sha1-new
|
||||
#
|
||||
# To enable this hook, rename this file to "update".
|
||||
#
|
||||
# Config
|
||||
# ------
|
||||
# hooks.allowunannotated
|
||||
# This boolean sets whether unannotated tags will be allowed into the
|
||||
# repository. By default they won't be.
|
||||
# hooks.allowdeletetag
|
||||
# This boolean sets whether deleting tags will be allowed in the
|
||||
# repository. By default they won't be.
|
||||
# hooks.allowmodifytag
|
||||
# This boolean sets whether a tag may be modified after creation. By default
|
||||
# it won't be.
|
||||
# hooks.allowdeletebranch
|
||||
# This boolean sets whether deleting branches will be allowed in the
|
||||
# repository. By default they won't be.
|
||||
# hooks.denycreatebranch
|
||||
# This boolean sets whether remotely creating branches will be denied
|
||||
# in the repository. By default this is allowed.
|
||||
#
|
||||
|
||||
# --- Command line
|
||||
refname="$1"
|
||||
oldrev="$2"
|
||||
newrev="$3"
|
||||
|
||||
# --- Safety check
|
||||
if [ -z "$GIT_DIR" ]; then
|
||||
echo "Don't run this script from the command line." >&2
|
||||
echo " (if you want, you could supply GIT_DIR then run" >&2
|
||||
echo " $0 <ref> <oldrev> <newrev>)" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then
|
||||
echo "usage: $0 <ref> <oldrev> <newrev>" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# --- Config
|
||||
allowunannotated=$(git config --type=bool hooks.allowunannotated)
|
||||
allowdeletebranch=$(git config --type=bool hooks.allowdeletebranch)
|
||||
denycreatebranch=$(git config --type=bool hooks.denycreatebranch)
|
||||
allowdeletetag=$(git config --type=bool hooks.allowdeletetag)
|
||||
allowmodifytag=$(git config --type=bool hooks.allowmodifytag)
|
||||
|
||||
# check for no description
|
||||
projectdesc=$(sed -e '1q' "$GIT_DIR/description")
|
||||
case "$projectdesc" in
|
||||
"Unnamed repository"* | "")
|
||||
echo "*** Project description file hasn't been set" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# --- Check types
|
||||
# if $newrev is 0000...0000, it's a commit to delete a ref.
|
||||
zero=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
|
||||
if [ "$newrev" = "$zero" ]; then
|
||||
newrev_type=delete
|
||||
else
|
||||
newrev_type=$(git cat-file -t $newrev)
|
||||
fi
|
||||
|
||||
case "$refname","$newrev_type" in
|
||||
refs/tags/*,commit)
|
||||
# un-annotated tag
|
||||
short_refname=${refname##refs/tags/}
|
||||
if [ "$allowunannotated" != "true" ]; then
|
||||
echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2
|
||||
echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/tags/*,delete)
|
||||
# delete tag
|
||||
if [ "$allowdeletetag" != "true" ]; then
|
||||
echo "*** Deleting a tag is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/tags/*,tag)
|
||||
# annotated tag
|
||||
if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1
|
||||
then
|
||||
echo "*** Tag '$refname' already exists." >&2
|
||||
echo "*** Modifying a tag is not allowed in this repository." >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/heads/*,commit)
|
||||
# branch
|
||||
if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then
|
||||
echo "*** Creating a branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/heads/*,delete)
|
||||
# delete branch
|
||||
if [ "$allowdeletebranch" != "true" ]; then
|
||||
echo "*** Deleting a branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
refs/remotes/*,commit)
|
||||
# tracking branch
|
||||
;;
|
||||
refs/remotes/*,delete)
|
||||
# delete tracking branch
|
||||
if [ "$allowdeletebranch" != "true" ]; then
|
||||
echo "*** Deleting a tracking branch is not allowed in this repository" >&2
|
||||
exit 1
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
# Anything else (is there anything else?)
|
||||
echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# --- Finished
|
||||
exit 0
|
BIN
dot_oh-my-zsh/dot_git/index
Normal file
BIN
dot_oh-my-zsh/dot_git/index
Normal file
Binary file not shown.
6
dot_oh-my-zsh/dot_git/info/exclude
Normal file
6
dot_oh-my-zsh/dot_git/info/exclude
Normal file
|
@ -0,0 +1,6 @@
|
|||
# git ls-files --others --exclude-from=.git/info/exclude
|
||||
# Lines that start with '#' are comments.
|
||||
# For a project mostly in C, the following would be a good set of
|
||||
# exclude patterns (uncomment them if you want to use them):
|
||||
# *.[oa]
|
||||
# *~
|
52
dot_oh-my-zsh/dot_git/logs/HEAD
Normal file
52
dot_oh-my-zsh/dot_git/logs/HEAD
Normal file
|
@ -0,0 +1,52 @@
|
|||
0000000000000000000000000000000000000000 5d3e86e2a48adf7a308773f8f1b725d187c7c5ef Philipp <philipp@boehm.sh> 1682402090 +0200 checkout: moving from main to master
|
||||
5d3e86e2a48adf7a308773f8f1b725d187c7c5ef 5d3e86e2a48adf7a308773f8f1b725d187c7c5ef Philipp <philipp@boehm.sh> 1683537790 +0200 checkout: moving from master to master
|
||||
5d3e86e2a48adf7a308773f8f1b725d187c7c5ef 017e288560ef7bdfb8835516d6b3b77bbdcdde6c Philipp <philipp@boehm.sh> 1683537791 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
017e288560ef7bdfb8835516d6b3b77bbdcdde6c 017e288560ef7bdfb8835516d6b3b77bbdcdde6c Philipp <philipp@boehm.sh> 1683537791 +0200 checkout: moving from master to master
|
||||
017e288560ef7bdfb8835516d6b3b77bbdcdde6c 017e288560ef7bdfb8835516d6b3b77bbdcdde6c Philipp <philipp@boehm.sh> 1684686515 +0200 checkout: moving from master to master
|
||||
017e288560ef7bdfb8835516d6b3b77bbdcdde6c bfeeda1491b5366aa5798a86cf6f3621536b171c Philipp <philipp@boehm.sh> 1684686515 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
bfeeda1491b5366aa5798a86cf6f3621536b171c bfeeda1491b5366aa5798a86cf6f3621536b171c Philipp <philipp@boehm.sh> 1684686515 +0200 checkout: moving from master to master
|
||||
bfeeda1491b5366aa5798a86cf6f3621536b171c bfeeda1491b5366aa5798a86cf6f3621536b171c Philipp <philipp@boehm.sh> 1685969105 +0200 checkout: moving from master to master
|
||||
bfeeda1491b5366aa5798a86cf6f3621536b171c 115cee17015e4b5665e16dc4fd15c53e06a22f9a Philipp <philipp@boehm.sh> 1685969106 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
115cee17015e4b5665e16dc4fd15c53e06a22f9a 115cee17015e4b5665e16dc4fd15c53e06a22f9a Philipp <philipp@boehm.sh> 1685969106 +0200 checkout: moving from master to master
|
||||
115cee17015e4b5665e16dc4fd15c53e06a22f9a 115cee17015e4b5665e16dc4fd15c53e06a22f9a Philipp <philipp@boehm.sh> 1687084181 +0200 checkout: moving from master to master
|
||||
115cee17015e4b5665e16dc4fd15c53e06a22f9a f5cb9a6c978693c9570206f4267ba2589bef1b4c Philipp <philipp@boehm.sh> 1687084181 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
f5cb9a6c978693c9570206f4267ba2589bef1b4c f5cb9a6c978693c9570206f4267ba2589bef1b4c Philipp <philipp@boehm.sh> 1687084181 +0200 checkout: moving from master to master
|
||||
f5cb9a6c978693c9570206f4267ba2589bef1b4c f5cb9a6c978693c9570206f4267ba2589bef1b4c Philipp <philipp@boehm.sh> 1688415260 +0200 checkout: moving from master to master
|
||||
f5cb9a6c978693c9570206f4267ba2589bef1b4c fe4b5659863c388786986d70fa6d1bb66b00afb6 Philipp <philipp@boehm.sh> 1688415261 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
fe4b5659863c388786986d70fa6d1bb66b00afb6 fe4b5659863c388786986d70fa6d1bb66b00afb6 Philipp <philipp@boehm.sh> 1688415261 +0200 checkout: moving from master to master
|
||||
fe4b5659863c388786986d70fa6d1bb66b00afb6 fe4b5659863c388786986d70fa6d1bb66b00afb6 Philipp <philipp@boehm.sh> 1689508660 +0200 checkout: moving from master to master
|
||||
fe4b5659863c388786986d70fa6d1bb66b00afb6 8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd Philipp <philipp@boehm.sh> 1689508661 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd 8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd Philipp <philipp@boehm.sh> 1689508661 +0200 checkout: moving from master to master
|
||||
8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd 8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd Philipp <philipp@boehm.sh> 1691764455 +0200 checkout: moving from master to master
|
||||
8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd fd219a94ab585fa699a0e842335a9f33dcbb613b Philipp <philipp@boehm.sh> 1691764455 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
fd219a94ab585fa699a0e842335a9f33dcbb613b fd219a94ab585fa699a0e842335a9f33dcbb613b Philipp <philipp@boehm.sh> 1691764456 +0200 checkout: moving from master to master
|
||||
fd219a94ab585fa699a0e842335a9f33dcbb613b fd219a94ab585fa699a0e842335a9f33dcbb613b Philipp <philipp@boehm.sh> 1692888590 +0200 checkout: moving from master to master
|
||||
fd219a94ab585fa699a0e842335a9f33dcbb613b c92af18c36c84cef0c785e1ae9cabc49a61a5c3a Philipp <philipp@boehm.sh> 1692888591 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
c92af18c36c84cef0c785e1ae9cabc49a61a5c3a c92af18c36c84cef0c785e1ae9cabc49a61a5c3a Philipp <philipp@boehm.sh> 1692888591 +0200 checkout: moving from master to master
|
||||
c92af18c36c84cef0c785e1ae9cabc49a61a5c3a c92af18c36c84cef0c785e1ae9cabc49a61a5c3a Philipp <philipp@boehm.sh> 1693988516 +0200 checkout: moving from master to master
|
||||
c92af18c36c84cef0c785e1ae9cabc49a61a5c3a bae577d6b2eb621fedc994d6309b6f819855c2f8 Philipp <philipp@boehm.sh> 1693988519 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
bae577d6b2eb621fedc994d6309b6f819855c2f8 bae577d6b2eb621fedc994d6309b6f819855c2f8 Philipp <philipp@boehm.sh> 1693988519 +0200 checkout: moving from master to master
|
||||
bae577d6b2eb621fedc994d6309b6f819855c2f8 bae577d6b2eb621fedc994d6309b6f819855c2f8 Philipp <philipp@boehm.sh> 1696762698 +0200 checkout: moving from master to master
|
||||
bae577d6b2eb621fedc994d6309b6f819855c2f8 f36c6db0eac17b022eee87411e6996a5f5fc8457 Philipp <philipp@boehm.sh> 1696762699 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
f36c6db0eac17b022eee87411e6996a5f5fc8457 f36c6db0eac17b022eee87411e6996a5f5fc8457 Philipp <philipp@boehm.sh> 1696762699 +0200 checkout: moving from master to master
|
||||
f36c6db0eac17b022eee87411e6996a5f5fc8457 f36c6db0eac17b022eee87411e6996a5f5fc8457 Philipp <philipp@boehm.sh> 1698486251 +0200 checkout: moving from master to master
|
||||
f36c6db0eac17b022eee87411e6996a5f5fc8457 cb86d378f287f1731cc6ad907f6248e35b52dc25 Philipp <philipp@boehm.sh> 1698486252 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
cb86d378f287f1731cc6ad907f6248e35b52dc25 cb86d378f287f1731cc6ad907f6248e35b52dc25 Philipp <philipp@boehm.sh> 1698486252 +0200 checkout: moving from master to master
|
||||
cb86d378f287f1731cc6ad907f6248e35b52dc25 cb86d378f287f1731cc6ad907f6248e35b52dc25 Philipp <philipp@boehm.sh> 1699741555 +0100 checkout: moving from master to master
|
||||
cb86d378f287f1731cc6ad907f6248e35b52dc25 b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 Philipp <philipp@boehm.sh> 1699741556 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 Philipp <philipp@boehm.sh> 1699741556 +0100 checkout: moving from master to master
|
||||
b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 Philipp <philipp@boehm.sh> 1702044508 +0100 checkout: moving from master to master
|
||||
b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d Philipp <philipp@boehm.sh> 1702044508 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d 48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d Philipp <philipp@boehm.sh> 1702044508 +0100 checkout: moving from master to master
|
||||
48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d 48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d Philipp <philipp@boehm.sh> 1705357637 +0100 checkout: moving from master to master
|
||||
48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d 8be4789bbbef06fe5eed581dc8c58df51e3cd9fd Philipp <philipp@boehm.sh> 1705357637 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
8be4789bbbef06fe5eed581dc8c58df51e3cd9fd 8be4789bbbef06fe5eed581dc8c58df51e3cd9fd Philipp <philipp@boehm.sh> 1705357638 +0100 checkout: moving from master to master
|
||||
8be4789bbbef06fe5eed581dc8c58df51e3cd9fd 8be4789bbbef06fe5eed581dc8c58df51e3cd9fd Philipp <philipp@boehm.sh> 1706568347 +0100 checkout: moving from master to master
|
||||
8be4789bbbef06fe5eed581dc8c58df51e3cd9fd 80c114cb3a64044ea50b623f96a35bc022db5e8d Philipp <philipp@boehm.sh> 1706568347 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
80c114cb3a64044ea50b623f96a35bc022db5e8d 80c114cb3a64044ea50b623f96a35bc022db5e8d Philipp <philipp@boehm.sh> 1706568347 +0100 checkout: moving from master to master
|
||||
80c114cb3a64044ea50b623f96a35bc022db5e8d 80c114cb3a64044ea50b623f96a35bc022db5e8d Philipp <philipp@boehm.sh> 1708188627 +0100 checkout: moving from master to master
|
||||
80c114cb3a64044ea50b623f96a35bc022db5e8d 872b5cd4086a5547dbf788dda4e96ab3868cf59b Philipp <philipp@boehm.sh> 1708188628 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
872b5cd4086a5547dbf788dda4e96ab3868cf59b 872b5cd4086a5547dbf788dda4e96ab3868cf59b Philipp <philipp@boehm.sh> 1708188628 +0100 checkout: moving from master to master
|
||||
872b5cd4086a5547dbf788dda4e96ab3868cf59b 872b5cd4086a5547dbf788dda4e96ab3868cf59b Philipp <philipp@boehm.sh> 1709283654 +0100 checkout: moving from master to master
|
||||
872b5cd4086a5547dbf788dda4e96ab3868cf59b 9730915910c6cc7640f8af6063ffb93becf0414a Philipp <philipp@boehm.sh> 1709283655 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
9730915910c6cc7640f8af6063ffb93becf0414a 9730915910c6cc7640f8af6063ffb93becf0414a Philipp <philipp@boehm.sh> 1709283655 +0100 checkout: moving from master to master
|
18
dot_oh-my-zsh/dot_git/logs/refs/heads/master
Normal file
18
dot_oh-my-zsh/dot_git/logs/refs/heads/master
Normal file
|
@ -0,0 +1,18 @@
|
|||
0000000000000000000000000000000000000000 5d3e86e2a48adf7a308773f8f1b725d187c7c5ef Philipp <philipp@boehm.sh> 1682402090 +0200 branch: Created from origin/master
|
||||
5d3e86e2a48adf7a308773f8f1b725d187c7c5ef 017e288560ef7bdfb8835516d6b3b77bbdcdde6c Philipp <philipp@boehm.sh> 1683537791 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
017e288560ef7bdfb8835516d6b3b77bbdcdde6c bfeeda1491b5366aa5798a86cf6f3621536b171c Philipp <philipp@boehm.sh> 1684686515 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
bfeeda1491b5366aa5798a86cf6f3621536b171c 115cee17015e4b5665e16dc4fd15c53e06a22f9a Philipp <philipp@boehm.sh> 1685969106 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
115cee17015e4b5665e16dc4fd15c53e06a22f9a f5cb9a6c978693c9570206f4267ba2589bef1b4c Philipp <philipp@boehm.sh> 1687084181 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
f5cb9a6c978693c9570206f4267ba2589bef1b4c fe4b5659863c388786986d70fa6d1bb66b00afb6 Philipp <philipp@boehm.sh> 1688415261 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
fe4b5659863c388786986d70fa6d1bb66b00afb6 8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd Philipp <philipp@boehm.sh> 1689508661 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd fd219a94ab585fa699a0e842335a9f33dcbb613b Philipp <philipp@boehm.sh> 1691764455 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
fd219a94ab585fa699a0e842335a9f33dcbb613b c92af18c36c84cef0c785e1ae9cabc49a61a5c3a Philipp <philipp@boehm.sh> 1692888591 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
c92af18c36c84cef0c785e1ae9cabc49a61a5c3a bae577d6b2eb621fedc994d6309b6f819855c2f8 Philipp <philipp@boehm.sh> 1693988519 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
bae577d6b2eb621fedc994d6309b6f819855c2f8 f36c6db0eac17b022eee87411e6996a5f5fc8457 Philipp <philipp@boehm.sh> 1696762699 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
f36c6db0eac17b022eee87411e6996a5f5fc8457 cb86d378f287f1731cc6ad907f6248e35b52dc25 Philipp <philipp@boehm.sh> 1698486252 +0200 pull --quiet --rebase origin master: Fast-forward
|
||||
cb86d378f287f1731cc6ad907f6248e35b52dc25 b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 Philipp <philipp@boehm.sh> 1699741556 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d Philipp <philipp@boehm.sh> 1702044508 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d 8be4789bbbef06fe5eed581dc8c58df51e3cd9fd Philipp <philipp@boehm.sh> 1705357637 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
8be4789bbbef06fe5eed581dc8c58df51e3cd9fd 80c114cb3a64044ea50b623f96a35bc022db5e8d Philipp <philipp@boehm.sh> 1706568347 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
80c114cb3a64044ea50b623f96a35bc022db5e8d 872b5cd4086a5547dbf788dda4e96ab3868cf59b Philipp <philipp@boehm.sh> 1708188628 +0100 pull --quiet --rebase origin master: Fast-forward
|
||||
872b5cd4086a5547dbf788dda4e96ab3868cf59b 9730915910c6cc7640f8af6063ffb93becf0414a Philipp <philipp@boehm.sh> 1709283655 +0100 pull --quiet --rebase origin master: Fast-forward
|
18
dot_oh-my-zsh/dot_git/logs/refs/remotes/origin/master
Normal file
18
dot_oh-my-zsh/dot_git/logs/refs/remotes/origin/master
Normal file
|
@ -0,0 +1,18 @@
|
|||
0000000000000000000000000000000000000000 5d3e86e2a48adf7a308773f8f1b725d187c7c5ef Philipp <philipp@boehm.sh> 1682402090 +0200 fetch --depth=1 origin: storing head
|
||||
5d3e86e2a48adf7a308773f8f1b725d187c7c5ef 017e288560ef7bdfb8835516d6b3b77bbdcdde6c Philipp <philipp@boehm.sh> 1683537791 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
017e288560ef7bdfb8835516d6b3b77bbdcdde6c bfeeda1491b5366aa5798a86cf6f3621536b171c Philipp <philipp@boehm.sh> 1684686515 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
bfeeda1491b5366aa5798a86cf6f3621536b171c 115cee17015e4b5665e16dc4fd15c53e06a22f9a Philipp <philipp@boehm.sh> 1685969106 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
115cee17015e4b5665e16dc4fd15c53e06a22f9a f5cb9a6c978693c9570206f4267ba2589bef1b4c Philipp <philipp@boehm.sh> 1687084181 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
f5cb9a6c978693c9570206f4267ba2589bef1b4c fe4b5659863c388786986d70fa6d1bb66b00afb6 Philipp <philipp@boehm.sh> 1688415261 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
fe4b5659863c388786986d70fa6d1bb66b00afb6 8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd Philipp <philipp@boehm.sh> 1689508661 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
8bdb5c959c9a5c74d3b59c05a3a0bca5e602c3cd fd219a94ab585fa699a0e842335a9f33dcbb613b Philipp <philipp@boehm.sh> 1691764455 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
fd219a94ab585fa699a0e842335a9f33dcbb613b c92af18c36c84cef0c785e1ae9cabc49a61a5c3a Philipp <philipp@boehm.sh> 1692888591 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
c92af18c36c84cef0c785e1ae9cabc49a61a5c3a bae577d6b2eb621fedc994d6309b6f819855c2f8 Philipp <philipp@boehm.sh> 1693988519 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
bae577d6b2eb621fedc994d6309b6f819855c2f8 f36c6db0eac17b022eee87411e6996a5f5fc8457 Philipp <philipp@boehm.sh> 1696762699 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
f36c6db0eac17b022eee87411e6996a5f5fc8457 cb86d378f287f1731cc6ad907f6248e35b52dc25 Philipp <philipp@boehm.sh> 1698486252 +0200 pull --quiet --rebase origin master: fast-forward
|
||||
cb86d378f287f1731cc6ad907f6248e35b52dc25 b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 Philipp <philipp@boehm.sh> 1699741556 +0100 pull --quiet --rebase origin master: fast-forward
|
||||
b6bb133f230847ed0b3f9f4e25f2ceb874ca6c91 48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d Philipp <philipp@boehm.sh> 1702044508 +0100 pull --quiet --rebase origin master: fast-forward
|
||||
48ccc7b36de8efb2bd7beb9bd6e0a6f6fe03b95d 8be4789bbbef06fe5eed581dc8c58df51e3cd9fd Philipp <philipp@boehm.sh> 1705357637 +0100 pull --quiet --rebase origin master: fast-forward
|
||||
8be4789bbbef06fe5eed581dc8c58df51e3cd9fd 80c114cb3a64044ea50b623f96a35bc022db5e8d Philipp <philipp@boehm.sh> 1706568347 +0100 pull --quiet --rebase origin master: fast-forward
|
||||
80c114cb3a64044ea50b623f96a35bc022db5e8d 872b5cd4086a5547dbf788dda4e96ab3868cf59b Philipp <philipp@boehm.sh> 1708188628 +0100 pull --quiet --rebase origin master: fast-forward
|
||||
872b5cd4086a5547dbf788dda4e96ab3868cf59b 9730915910c6cc7640f8af6063ffb93becf0414a Philipp <philipp@boehm.sh> 1709283655 +0100 pull --quiet --rebase origin master: fast-forward
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
xmPMK1ѕМПтA=ДаюBСKС<4B>ЎB+^ќ8)в<>nвn <20>ЌЩ<D08C>Вўz<D19E>mе<Ю<><D0AE>їЕбv<D0B1>Ћљќb<D19C>ЩЗ<D0A9><D097>ёxВ<78>Ё|\ЁгaЇL<D087>Н6Ъ<07>Еm;-YY<59>uрFт§?<3F><>qУмљEQь7a<37>ЧЧтїАјЄfЕV<D095><ЊX/Ёx<D081>DPЖи3фѕPН
_Оq5ЖJЫE<D0AB>UUчьxy=Юѓ<07>Iк<49>VzЫ<><18>ЄyщЃ<D189>б%е<><Јф/'љ}эTI<>@,<2C>л<>XеЄu<D084>а b)АoЄIGgщP[RLуJеM<02>УЯpЃС39<33> ЙKз*CВ
<0A>иКдXь}p<>|ФЂq,b<>ъђэeЙ.oЪх§њnѕ\ќ9іХњЇй<10>й7J
Зы
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
x-ÎA‹Â0ŕ=÷WR°EcĹŁWDđ ËŠHÚĽn"Iž<49>TÜŠ˙}#îqřfjË5fÓهiQČG
;'˝
|
||||
‡žďFŃeą@Ôä3€nŇb<C587>ď
|
||||
Ć›!§<>?ľ·_ëĺęôąYž¶űŐn—Â\ôOôA—<41>Śl ĐhĆđŔZ¸_‘š#ţ)Ď-w^Ťq±$%<Di-ŇD{eă%Ě«ęÇDÝŐ“tł’g˘¨w˝¬ŢÎ0kMö¶qEÜ
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
x+)JMU01e040031QHュHフ-ネIユォ*ホミ-ノHヘMe<4D>e壅<65>饂K忘ッr」恰レワsッブ\
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
x<01><>AOÂ@…=÷W<<3C>(<28>.x2šÔjÆÄ ñbÓ”ÅNí&Ë.v±„ï¶ôèmgßÌ{ßÌB™ÆãË“.Â5›w³\)bi4rS‚Âñm)¤¶˜™Lh<4C>èqŠþgóö‡žÌÑïã½7»:³q«%ðý«ÚA{@I¼.µ—KÏëbš7Ƴ¤"d†¬>gз´ŒŠx€
Ae`áè”$Ã¥8›…ÔMåÄy9âÉ–ii€Ú_j×¾‘J¡_¡JYå¢49Á
;þ G§÷ö2I£0šÜ§wÓçÑ/ ¥mBIr\Š«YbB¤u»u»Iƒ×-ösî»Õǹ>õIZïxü-p³ûÑÙÎûv£—
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
x•ÐÍŠÂ0àYç)a *gוàBp[¨µIk$MBs;]8¾û40#âBp{Îw¹'ëOøÚl>ÚÑ5d¼CgK\ÑŒƒEÞî&ˆÒ œ‰B,¤œ¦iM>Pm×<6D>ï¥ÒßÚú ‡(;C¦s~вFòÏëâRdÅr{ã¸1VÝÛÆW<C386>¦jÞîk§*k"%<25>á<EFBFBD>Œíîm-…à4€g¼tœ=™ø7|¢&ä{ˆU&’:Wj¥<6A> Ž/=¦Ø´ t‹ÇÉùkì²Ïp
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
x∙▌QJе0EЩн*ЭQИ$И4AПоEL╖⌠ВM#y╨ВБф,Ь6ЮвЕ8p╔√▓;ь─7╫╘б╟к■&К4X"ыaQq6j@┘Ц<r0÷эtК0'у┘яG°GGд<N1p I■Y<Д▄┼А╞~╝
>╦ ╪у╤И╨Ч|цСЫьЗZДоПётРHаSд8<vлa▐≈]Ъу▐Щ╣7)Оw╨ВфрО÷Ю ╦,╧аф%o'░╨╔5K©С·w╫ю-"yk~╢<[═
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,7 @@
|
|||
x}TÛNÛ@í³¿bb’TrÌ¥-*•„‹å‚ )2kg[l¼ÑzHˆ÷¾‚Úø<>J}éCû9þ’ÎÚ¤
|
||||
—TJb{gΙsfÆqw`nþÝÜ«ð‚<C3B0>2èÓò—È7¤OûTÓf Q8¤ºDœ‚CÜÓžàqØ‚_kqÉp9ã$ý $ì5‚v) %xx: |À»)¦È2´h$ixÈFøõ&Â\¥ü¶¬Šñ\BD%Œx,ÀåýAŒ $}
|
||||
A¨®Ì²ÃÏ<C383>ôȰJà©l8Ãâ)Í*‚Ÿa"qŒFVóï+<ã¾ÑèW=÷i´Œµœ@<40>ôFplj8Š(cÚUYÄÁùÇš2ùR–MÝ)ã‘_F¦ÃxÏ´*s³b™X‚žKA†¤‡ÊT9c€ÒÔ4/]`†<><E280A0>1a4ÚAèq¸ÐP t ¿Vß[¯Úëµ<C3AB>j{§e×öàfg<66>º>‡\ñy¸¹1ô`»ÑjWwž€
|
||||
ʼnC"šö-?‘sR(AA»œ•É´]ŸˆA8;p ]>š]:4Ø1°&îÇÚ
|
||||
Éý}rÿ« Ä
|
||||
*c¦²RÝ…äÛ×Ç•p<E280A2>v*HùfÜ%û|¾’Ë_4·ê<C2B7>–½Uo¶–<C2B6>¼º\*<>Þ£
8NÛ’<C39B>Š&C%Èú•¿À„å^dꦮ#šÝoÔw÷[+¹äöGrs_ä76;•…ʱ~©‡ø$pO¤<4F>®¸~ YØš<C5A1>a"§„+óóÎÇžJSò2šàÅ*ÙÛäñŽÃY÷Xi²¬%¥éê)Ùç|‡b?ŒJíN <09>DìŒ<1E><>¾èo´äö'úÄ”'§PóVk¤}jnÙÚnÍÞÜnÙY§ðRÛØ>\É=jÑ…×ëX‹‹(;÷2U³½‘R=õ4%}÷ùh%‡Ùª‰“»ïÙg
|
||||
dm§VÝC²±&w7“É<E2809C>öêÑÅþƒ<Ô\P“…äú÷4†±£äúÏsS…Äš
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,8 @@
|
|||
xŤ—]‹Ű8†÷Úżâ”\ěĆΰĂ0¶…˛°,{Ő²”R+¶ś¨cK®$'Mɏߣ/ŰR23ńEIÇŹŢs,ËŻ7ŘŔýýăÝOčöúvŘ2žewtÖ†^Š=«©‚Žđ#|m†HË<48>˘ęóÍÂ˙[Qp -)¨D×·T3Áˇ2ÓHüôľ'ž˙!{Ę?ßě´îŐzµęLł v¬r»Zš‹qŞnJTU.‹,ű<>“MK<4D>iŘ<1C>Ô5ă[°<> ¸“®€HIŽŔ8Ĺ á‡ÚÉ
|
||||
ÖŇu–•e‰íĚGľ˝)ŠÂdą4Y¶XŔ{—‘Ëß……,m9p*ÍŔ+›–Ţ
i[e•J¸±YÚôŕ_IúžĘ)Í-Ó»aS`j+Mž<4D>d.ńüŕ—ËŚ5<C59A>ßĎ
|
||||
ë5đú„´‰™űę!py`ŠbENN.$Ç ~óĹKžmž˛Ó:żt<Ó})Ô÷!ĘÖâM™Ěćş!oŕW)„~·ęEW|ďÚ4nş, Č6‰ń("q)écO×[Ę©$š&qç¨
Îy”ę%.§ÜŻĺŔŁ<C594>‰b˙UßjşŹâ<ęŰ@äÓ Öép‚1Í€Ş"ް%„ŞĄäE-âŽU—ˇËĚPPÓľÇ$"Žź©JË9W´jYŻčÚj[ľ7Ě0ŞbˇÇOˇWźˇ$ÄG†Ó„Jd]B=§ÇÁ&Źu%(¦nk?’ů‚ {žPęâşrŐń Bţ»zbýGŞ´*#ŚiĚQb>ś¨˛µšŁ ĎEÓ´ŚŹBG”čć i]áĆŚűa<†.#Ş/ăŃHnÜOdű
|
||||
pDĹ•šT™Ő«“LOlZ#*~ÔžJÖ\˝Ú÷ÉĽQ‚5ŻúŤAUýL®zú\˛#JTńRńŞEyMyu\KŞD»§¨j‰R¬aTľýJö¤v_QiYĎQZŇďa@ťyTŘ’]ŔĄ˙TÓ%˛<
|
||||
ű×h:’ÇŰ
|
||||
¨ŻTëčn{”ímWwÜ€Jo`Ř<>ŻZç1*ľ}8ćU)öÂëĘ!ÂoPĄdň˘đ¨ŮbPčx*z6g ŤÎYU=ꪧĎŃ‚*ť<>
|
||||
jŃUäŐ·©eM¨Çr”jţUőxÍ=¨|čk4S%<
|
||||
d…†_ĎLő-9ćSńŇKNÖ˘÷Ę+ѢÍţ2Î,uĆ»©3—†6Ń^„ogčÄ űAđźĐ0r@mś,šTTQŃL4–áü¬÷zü‰<06>~'ĆFŻ1ViJjŔPćvĘ[K2m§Ňő˘7üŔx…~Ű9Ńű⡸›|č™ÝĆBlĐJR܆͹Ŕę;ݵË4»lgÍ=Ö„˘›Ř-(ăÁ:×૿6Đ˙KÚ‰=F7Rtç¬5ę\ éţ›‹‡Í°U¦Č`đÄ4á€^×ÖÉÂÔ]‚8XŽß#]ŻŤQ–¦«<>ő˝…/´Ř_Ě…¦Ćčé˛ň‚M,ŕĹâ,î~™Ę2łçb×ńCaÎL©<4C>Ş•‰ÇO‘˙W%”:
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
xUMMkƒ@íÙ_1ÄìÑJNB!r•¶·RŠº£;dw'ìG-ö·W#
|
||||
æ}ðÞÔškxÜmR(c€ž£ƒ&úÀ‚BƒÈNŒ<´¬%ºM’Â+b*„‹/ò¼£ b½iØä¬L?xõw¯t¦üp£¡
|
||||
Ä6å/tŽ$Ù.«¬Ì*y§Ë§iyÂñV™‹Æ"IÊ—çSùö´ßë¶{w(?Ä(ì¤zŸ
kvbÜ/q#ι<C38E>E÷¨5_gçgvþU„€Uò!ÊUk
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
x<01>Ž±Ã D;ç+,ö5K%þ†À5A¡€0$Êß—4:tª'ëÎÏw£<77>#
÷ÛeEfƒ¢¡«ÉêVQOI›EOèa"ï\ðT4¹2ױצ4€Û‘u¦Ä¼+’o<E28099>Í[=Ž'ǸP<C2B8>Wí‰
Xü.>†Õ<E280A0>\C[íg¢H.<2E>ÀW<C380><57>׳‰Üb^>n,-‚E0|yhSW4
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,4 @@
|
|||
x•’ËŽ›@E³î¯()›D£Ä€¡<E282AC>(…—‰à·g×@Ó`Ó0`Mþ%?&e•MjSÒ©ºª’î<E28099>xžg5ºþ¦®(-Ñ”˜ªòPÅŠ)Et¨KD<4B>b<EFBFBD>P¬i‰De=ÒŒ(Ĩ$-jPq¤Kª„ãX
|
||||
†1–Y2ô!‰qdàØ¤¥ZLiê”W0'U¯
|
||||
z¹üüŸÓ¾ó¯yôJÈLjç_@ÆVTÅP4x<34>IB=í¿¬éÿéMYù£g%ƒ/e{ãéü±ëéxam¶+ï7G€ ¼»mY¶Ã¬x”yÞÕ{»W¼½%D““ÀêVÇC_[Œ¬|íØ9³vþËô“Ý”1ël“p´ÜºK|Nm1;í-î¥jÔ©¤Vu>Ýjò앃‰q$læz[9výÝ<08>¬ž5AöÎ|5¸Ë¸(n–Ì;%,™ÒøãÁ„l×ùédf£gòà«YjêâþÄwô-
|
||||
ŒõÒG0sN]ótjóÎbÁ“> Þ`¶¸•m:%kLáKná?-Óka‘yó–vs
üät©Íû77IÙ\¦>9¡WCǦ×mº¹ÞÎs¿˜IJÆrrPÝéæÎËçIVîgó•5ädu¼Ü¤%Cµ6f°š‹ûÄIîö~n<>šÝ=ž¼á“ô’ÔûuÓŠýÑŒÆó-+ëÖõ¨î®ÆºÖ0‚Eźݘ»|;pŠ(o³.ÅòP$n¼ª‚ÇG<04>æ†LÑ««ÞÂý—§(ɺw}nrÑ”%¯ê÷Ÿ 'P¶1Tô@Ò‡ò;/¿Px÷V–õ¡ô¡MJÿÒyV<79>ˆ”·H´ªzU–@ݯ¥\Ô<> (+þœÅ4†¬xáh¹v@A¯
-"ú¡QÖQ¯'Ð/Ão‘
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
x<01>SMoÔ0åœ_1*•
|
||||
+œmÅ¥ª„ÔS%NpTåc’˜:c<>é¦ÝþwÆÎîj¢"—xÆÏÏï½IC
\œŸxeë +¸¾)ÈV€‹ÆÜzü1pªxv–%€rh±Ë;©³mGOV?`î5¾–Æñ<C386>©Œ>S‡qáù'¨hɶÑ{´íœ ƒ§è*8}|„Aó›òžü]oèžžÔQ{ĺÙ=l·{¤<>öVw‚žVD¡QÚ*çiðBì#…C?é4ÙìQîg´,Û^á50A<30>ÜŽÐR‡ð¦n9A×b±½£Èo‹â5ù(Kb»œ–L?G¹™ƒ9AIÆÙÌT³×›’Â"@÷ÕA7:
|
||||
šÉÏpug4NóC×»÷Y&ìkÆ!g”f´ðí‡@bàkl¢å¨Œ ¿LKaW}ß± ;šì¢ú2D—ÄH{%ž.ŠAF¦ðñ×ûBÁÂrcׯ€(?œM%‹>OÞ>i7‹£D.›„ØÔŽÕ<C5BD>…t¢þòySÿŽ¿õ:M%}’\o×fÖí¡èÉC¯
‚¶PJ®jš•è,Ãߎ`IÑþ)×F7ëU)°0ÎÄAÄW‚\Öÿ}àvõ/<2F>8¡Ð&6•‹Kèè™Ô$LY89MÆNÒ_à‘£·pqëÈbñZh&Ó
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
xUQËNĂ0䜯©Z©$—r©Ä
|
||||
Rą!ŕBÍ6v±%ÇŽĽ¶Şđő¬C%Úă>fvfvď«ŰŐŐŮăĹĺoë«ęÝXĆ0`ťy@úÁéd<C3A9>Ç!D|Ęţ×ܤ4đşiöŮ×lµ@2kŘ´)…V&-R@2úÄČ i„őCŽřa;¬ÓëŞjŰVęęď6ßÍ뺆P,ĘŕR—
|
||||
šáCšÎ<EFBFBD>AÎk
ł6Ô} čJ‹'!g^¸‹vŻ ž)§ĐS˛97ŠkEI+Ťöw’U] ĄŐRF¶3Ą‘9O<39>iW|<7C>ĹT‚#x}Dұ·žtźĄKV’ɤްôä%IáíőÇŰv·ąßlźvŹĎŻÍżbnvČ®={<7B>€'Ő/–űź{
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
x<01>TÑjÛ0ݳ¿â.,¡8bÐm°Ò‡‘6Ö‘‡²§‚l˱ˆ"IfMKÿ}÷*qÇnÑ‹<C391>uîñѽç(U&…<>Ÿ¾\¿‹/YQ«L™:‡JÕ+©¡0L™l¶É“+¡ÅXõö¥±_á'×0-…ã
|
||||
F+éË:<3A>dfÃ$×Yø:>P`Õ%+Šdó9$O0>Oïgîî~-Ì~Àbq¾:p‚Û¬\*“q/<2F>v·#üXDP¶2f¥DΚ¸|=Øm²ÚYF%й’[ñ¸)wkkðŒç”Lq/œï|o~e*ÏJ³©ÙÅ,$øm©Nóª#‚eµµBûFL”)y
|
||||
Í‘i‡¬!Ùï¾~Ag>ïSSÝÙC§{»±(™ŠG‘õ²Œ#œ"9vçá%Îõ0@3Ï=q¹ ƒß{*'Oõ·<>E6jïöµªÀ
€æëð^H|äF|ÔÚ ß±iŸöËÈö£Ÿ¯Z¿~<7E>ñø`ùfZmÁ™Úfs `Õ>ÐÒé¸B-ùŒ¦œ@Å}‰RvÜïax…aÝp<C39D>»ù®jqJp½¢=FL¼#&RgR·öŠ:<3A>mW;DçˆáÞ˜u(ʪ” C!• aæ²(Y8Â!ž&OÀe€4q?»#Ø‘ê(—46+†\¼Vš«#è„«¡?iýœ1ðÊ')w"?¥ÂqµMºyÐݵڱy' émgÐÔKñXëÛ¶%[ýmÜò
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
x<01><>нJ1<10>НЮSxг"<22>Iv<49>нHЁ<>рevђg<D192>Л<EFBFBD><D09B>ЄЕњєFёМ;ч||cгВФ
|
||||
]/яjі<1E>5({1<>Юh9і}<7D>оqбЁ
dЄVVtІ'nvІьз6-r<12>> г<1A><>оztJн<07>Ъp<D0AA>gtЉЇ<D089>с@yN№B3Соўфвтлѓ9Ї<39>ж<EFBFBD>тМГiyЎє8(дШYЛ6ЯъџEа<45><D0B0>zј#Аo<>З}<7D>Kё0m6АнNзR=9HІу^_'ЦОЪ Ў><3E><>жч<1C>vM wИSАP~џmюзKѓl} в(W<>Ѓ<EFBFBD>ђЙVК1vhљї\ и7з<37>mЫ
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
x•<>MJ1F]ηnARΥωkζ<08> ’T<E28099>
έ<>&“ΖqNo/ΰξρ-ήϋRYΧΉ}Χ<>dς2Dkc"C&΄βPσd2fNF“φ£υjη*[ƒΑΙ–§IΒΞYτ³#Ω‰ΙQktP|΄ΟRαΔu)πΑΓkϊεKΗσϋ^K+ΫΚσς<CF83>ΚϊθΩ@δ<υΆV}ν?›όΛΰΠΫ0ώΤ4_ψvTy|<7C>*©<>·ω&ΠΛ»Τε–y;®±Κ—R§~K.p<>θ<EFBFBD>Q?H‘Z8
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,5 @@
|
|||
xŤVMŹä4ĺÜż˘Ôڦw˝.4jBZ!4 .+4JâęLÇŽlg>Äî§l'v9=<3D>¸uç=W•ź«ž]K]Ă×ďżůö‹/ÁTť´Đča¨”€GSŤ#šÍyRŤë´‚»€ß-ř›·đĎ ;ĂGŘ#lëN¬›j{Ľ-üý¸{TÄX<>pő}FY,~eY¬j˝Ŕ6¦ÝK©ĚT?‡/’Í E󀦬“/žSZ;X¶ÍĘ9w›Ď›M%»ĘFíN»RŁÝ†VŤĎ+íN!Čfă%ďń?ďń Ţcą®7eX«çaźúrQ((ÓÝó<C39D>POJH„ëďá đá &)áú>Ćs˙‡s')Ô§OˇZě;SSč˘b|Â&nú5u—jKq{Úf5
|
||||
iógR¶G/ěÝB8´ó QéR·§ťŁ.‡ýčŹßJ=¨Ü;úż›©ŁŃâ‚ë?Na8ŐˇuT˙1’¨’őĐ|°č\§ÚĄ¤}·7?ťv·?ţúᏻ›ßţ:±‚–béwNĘ•ś?9Ç—°óB܆ˇ.Ą0Íiű¸ŃĘj‰KÓŘű˝%7¨őSâ<53>…"(‡ŃϨRŻ‹”RÔÇĆ`ĺrR‘#ÖGaô<61>#9âqčZS,řş=
|
||||
ý¨ŘzsŕhPhFI[¦Ę–(ÖUn˛Śäxý3h<>×ůŘHŘv†é…¤Ű/Ęh)ëŞés.Ă2H=“1YDÁÉ’Úć‡ę(uĹĹ^ŞŰŤ,D ŚÇĘ䵨
|
||||
ýÄâ8ÚtVQ'ş;R™2ÉHCCşae–ŹsčÎ#Ďśň*M•Ą5©âQNm—ó$…Ťž8?w~¨˝©S©‹ĄÄ\‰!·‰ó‘Xř4Ň0Á
YÉŠÓ’Z©2“š Ĺ<>ÔdY„t–ń"J+mŁPŤä×ů mjű„¬§¶e;°I<C2B0>ĵɍd]ÎNžuË®üů§’\Ĺ?+)”·9)ę<>ŕ9?kCí§V|%=ĎM<>Ż'8yţĘ úč\ÚEý"b…]ô"ô`Dć!M…„+ĐŇ.<2E>§¤vA” \IYّⰬWě‚ČAĂ‚{dvŃVÔ…]Ę
|
||||
*í˘*ě‚<C49B>ŕ1éKvŃľ…ŕĄÍ!4Yk»čă¸ărÚűt/L{ĆťÖ•ÓŢĎmK€W<wmÚ–>Ç®Ą¦’ŘV
˝Ýt>Ď·şőŢÇ«+*Ś<15>W·ŰNsµž=ëŤ<C3AB>ĹYÜpiÄ0š/ťËúłf¨™§*ľ2íz±±I<C2B1>˝&ôľąď”żµ˝@°=řżô.§?[/Z<>ąô¤§1%;ĄfxĚ/úĂdÍÁżQ=€µ÷pő¶o pő•÷ńňć•<C487>ź$đvKŻâŹh6:
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
xm“=oÛ0†;óW¼€‡$†%<25>
t,Ð,õ<>Š¢¢¤“Å„"~Duÿö)9¶<39>n’îã½{îUm<C2AD>ÇÇÏŸV8¨PПà¤â¥W£Že0:û®Zòhì0j
|
||||
Ê´Ô)£Ò£Gg¼¶Cè)¥
Ò´~N¢õ?/ÍÝ÷!Œ~·Ýò·>Ö%çoÃkz[ä6˜zÕô¢<0F>Ú‘l<E28098>¨ Êø µ¦¶ä -¢çOaÙ¶¨.å‚̓Ìó{Hçä‘‹q´Ñá¯ï]ƒNiÚ QU¿‹%óË}Y–WR\ˆÕ
|
||||
Ïâce8yÉ……ÇdÝ[ZRÆÃ@&(sÈòÕož©º¦¶<C2A6>ÌD’nU"ƒ¶FsîÅLæê/>*æf›4Âuó<75>8Ë'ñ¤»O]Z½|'Ô–›fAðaΉg˜›œhˆ/ÅàùFðÑËÈEë£ p"{ÄQC-™†ø&+&µÆ|c;ÔŽ¦™›ëõ÷ýË×ÝzÍMÙXÆB[s ·,͆j¢sÌîRÙ*œªãì1¶oWâtÚ›Y"ƒ:ëÜ®°ØdÙ3'Vyšs€[¡(RÀÆP\líù {¶°›”§Í\ç±rRZ篖fó1Ðz²æ.ÀSâvk<76>ôÜØóüƒ”§“ø^À><3E>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
xeŽ=
|
||||
Ã0F;ç‚̉¡´K¶ÒzDZ¨mÿ4$§¯Ü.]¤<>‡xŸFË#œ/×S7aå€*ÇÄf›'òÈC2X©øRMUâ°ö𨇳•
|
||||
uÓ‚Á€°<EFBFBD>µÀo<0C>4{Œ%s¸¢t~Uîd ÿêâz"`Ršã ÄTyì;ÁÆ[4¿½Ð‹Äýøœ6™ˆ}[ËÉO<C389>ôº“Zï±¶4i\2
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,6 @@
|
|||
xu“I¯£V„³æW\)›n¡4óu¢f~ØLƒ1;à^3šÁ6þõyÝÊ2©]•t¤£ÒWÅØ÷Í
|
||||
(R"[g„€@/1Wp"›ÓLΗ°,$†ä2A xD3ŒÀSYŽMÙŒ†”Rž—<É
|
||||
9Õ%I¢Œ‘D‘ <20>‘RY¢Œ+ ˜—–mk=ÎÀ˜DsÓ‚ *ð½ü×~›?í<>ªÏšî[1öJ ‰”hV8I‘$ö™~~º¢˜Íú±åàû0ÎhêöU³Ö[þ?gÕT-Mþø)E7-ø¦BËtåsè¿r`ๅ"ËŠ*Ë'åtèÞGUV•ÊN¶qQÝɲl¬ãI6Bjf†Ž#*¡ÐUnx§ˆ1'ÅÖO¥ŒùVòS‚I”»È½R#¨î`Ì¡ƒxŽ¢Z¨§fÕ7$÷L$µ§ö7çDÖ²;ä*¼<>‡ç›Ú¥šØË"e…Vy¡<79>#tMO&ƒûì¶^u¤l:ïI¡«äœî7á êE<C3AA><45>`<12>wS3æYT¡®Å<C2AE>Ñl
|
||||
.íã!šõ?Ëþôâ~}^XQòuÒ3‹ïžú¼Ø&dÓÐG/üÚem[/ÓŠ\´<>œ@y9ß±$åjR–sün-×Þù
Ý"¶yæGÔW–Ö©{*b‡åÆ@êÄMhòàÃ×t‚9ã¤7lQødÊÔʬc[œ>
|
||||
\Bù<42>Aã#`2AúFnŒ£<C592>ÖÛy<C39B>ÙÝ.5Ì{•<>Jöí“&Ƚ¦ÊÆœŒH£|oîSHâôŒ<C3B4>MÍ¥m/œ¹Ð³Ç³spÛÝ´£Ñ‘È®ýÆ2ƒ«§F[gÆ ž>l\b‡vY#¥ÀÃ1\5í8Kó#‹Ô[sDM‘º4IF<><18>(^
|
||||
ík¯øeXÞ«w÷[¸šÜIÿ³IÔáèu‰¯ÚLϪQ<C2AA>SÕ3ÕùòÌz!÷<=àÓ>ÜÖhôûj\ýOTG˜œzIuÓÌKì£å®Á¾bš9×hó,¡½<C2A1>¥¯’MS瘉\ó}._^ŒŽ8tÒÕ¾X‡‹šÐ×"J0`<60>ªvë}¯Ú{¨(S½òþRYòØ_ìë®öß‹ÀàX,_Ú-GÅúúú'È ÷m\ÎvA6ÏÙZ´/àËïMSüWûÚ¸T‰
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,4 @@
|
|||
x+)JMU020b040031QÐKÏ,ÉLÏË/JeØ÷b™wåÊ©®³‹8<16>¡òû;TU<54>«£‹¯«^n
|
||||
Cð¶¾²Rv‘/Ω
|
||||
¦_w[Á³ãTQbNfbqj±^ANizfž^UqC½ô
|
||||
ë¶ä«÷.Hº#Q¶—GrTurFjbIqFjj‰^A%Câþø©IbŸ¯›nê;·bSáòðÐOP…%©E¹Éù9ùE u»‹â&D?·hq¯=·-£g^˃”u¿«ÀTf
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,4 @@
|
|||
x<01>S]o1äù~ŶD$½F <20><>P+U©}BñB¥ÎÝ^²Âg{ï’Týñ8_¶sÜowžñÎììz!õÞ}üðéU0ÁÞº®…*ÝÔèÒÌ`<þ¼B•XäÆª¬¢,{
<0A>Õî<ßHdÒ
|
||||
*’¥F§†¸!ǰE¾‚5‚B,<2C>5ˆ†µÔ¢bð*¾Ì‚ÔþσOɧkøæ+Û59¼Ú×'åék’V¢EÒ¢(·^J¡÷ ø:óþ§Sï?¯àrðëÇÃüþîþáëüËã÷I4è&óƒÂ%Ìf¡)ÞtÈ<74>/!¿ƒùŽî|¯ÁiþóŽ÷üñ?…ssv‘j§<6A><»¼¿…I‰íD5ÞþíËÿÙ{ó’eB’p`òfx¬¼hH–ÃP<>
|
||||
H¡Rh<52>”3XpdI×Ã’.%ˆ^ä¹<C3A4>2ðhXT‹%¹¢Ü5B‰‘C<E28098>Ä™¦sÝ4nµmÝ<6D>mAî`,–”:€1#©—±U†B^kû
|
||||
¿^Œ¡†*bÐ<62>¢•JcVe©$çEÏy1¦S©nP* êÄI¢RI'8IÃô5l´<6C>‘DmüN†6mÈ!&eqŠAŸ1ü¢<C3BC>b´¢`ò¯3Ï™·ñVœ\r)Lohl}1ìS®}¡JÛ"ÎÁõé;Io¶oÙ-ž“ü_t¬
FÇfœýÓò84àØvì`w/Püw ¤çmv«eSã?¯³Mf}¤$£n<C2A3>ÏCé#a´7q}£;Ü`‘0z·ãôOî/þ¢!i
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
x<01>PMKÃ@õœ_ñ¬E[LZÁƒ(Ô*´'ÁâÅRÒM3k¶»!;±Fúã<C3BA><C3A3>P=zYfgÞ¼<C39E>)¬/p}usr†¹ÆCã`œgh߸2EéÝËÞj
|
||||
¯»:ljSqb4œ¢¹ñ»<C3B1>reX<16>[a8¼<38>0—@¶¸©]¢M’t"‘IÀ•%6ÞAK"@!
|
||||
ѧ‰–8ÅžàˆJ°‡jØ[¯J†HMa\÷“áZôÖ#<m½7<C2BD>ÒŽÜ8Áî<C381>µØª‚²5©²<C2A9>qH|)EçË¥8Ï4zý·Å,ŸN¦³§üqþ2þuƹÐ÷°Zãp[Q FöŽl‚<bƒ¤<zÌ^¿—¤÷3ìr×µâ
dô'~Àýáúç‡äõþ‹â
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
x-█╠
|
||||
б0E²С\за'Qprэt║iM Ж┘╪D╗_ol;╬Шн=╥Стa╩ъ╜ж╦╕≤иqЁ▌|~╧!ргУ├║И╪I▌<)"Y┐{)╦`p╨°∙M)П║ixйdа⌡·4/ВF{Wк╒&d6p ╙О1ЁH4ИФE├┼Q█(ш#Е┬/ш╗Яtч■zш╤²b+ТXI)KЩ┼й≈Fл
|
|
@ -0,0 +1,2 @@
|
|||
x+)JMU042c040031QrutρuΥΛMaπΩ<CF80>rω•γ±<CEB3>ϋΕcΕΜrΨΜ› <E280BA>’σsς‹RStsσtΣS‹υ
|
||||
rJΣ3στ<EFBFBD><EFBFBD>3Β<CE92>ήz8Ζ-8<>wω²Ωμ<>]ο<>ϊΜMMς<>ςΣ<CF82>Ό†^<5E>ά®SΘΖWΌφΟΡμ°ςu¦K2η1·
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
x]<5D>ÍjÃ0„{öSŽ
6ÅÒC!<21>BŸÃ1AVÖŽˆ,i•&$~÷*ý#éqwfg>¶Ó¶ÃËëò‰ÏybTªwBG’OÛQL“2C’ôÁHVÖü)“³ãÄ[ez[”¸$@Q {–v…Ùùæ;A·(K\¯pÄÁ™$Ú´•BCçÈð6–¬³âÇiM¯†_±Š#Ó‰±|C½£cm‚Öå-£iP¤Ù]Jж},Z xÂQè@PÂ{+•`u$ç·bÐIyö1tË{r*^õBktBÀq{#ûB1b¤è%¹·±ÿòïOÍæ<C38D>i“¶«*»ÜQ®_çužÏsšÌÉ'ß%‚
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
xEÍA
|
||||
B1P×9Eo "nz™Òj
|
||||
Á|R’Tñöú密7³˜ÆÒÒõ~;y9õʆð$Ň‹Z†”Í-¯Êô1}÷¹,FosÑcØ
N¦<>bº@¯Ä¥W¬³Ê,Ÿ¢d¯ï¿z£61Œ<0B>?÷9p
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
xu“É£V³æ+ž”M·¬4ðl¦¨5Ìdcf0»ÇŒ
fÆà¯<C3A0>ÓÉ2¹Ë’J:‹[IÛ4ÕH‚å~™†,Üžãh†äÍ$•±4Ap‘,Éx‰üC`Æ2X‡†ì9<C3AC>”¦)6çP¾‡dF“âb6ÎhŽÎ)꣑û$¥cÒš§²À
<0A>yJ›ÇhÎð½ù ¾•ÿ‚õÜTO4LYR~KÚæO@2ÍÔ<>bÀŽ ûÐÏæé#ËÕ¤Ì1øþl‡¬«·E5•sü?ZÑcU€ßþ>A’U˜² U6x׳¥Ÿx<>§DàyáÈó–`iõÌÞí£}$‘ÅÌ3å•5Ïó¡âY¼`¿©½¿‚ çâù•œE£*+ø–N‰Æ«ÉËÔÊ>âæ°Œ;Öã‚hC
vß(¯š¶Ûå:XnõïD.(|E` ì°ðN̈Á0ìÐÕÝè˜Û鵪󜔵,±g¹<67>iójÀºóÄûŠfdüæþ8,j|ÐG†XNbé³uÓ¦Òû—C¿z«ÿ2uÁG§V€·Úé.¡gÓ>ûoœö´ü‚g7ÔÚÍOn¯ñш‰a¶þZܶ°9;«¨Æ%¹<>™eæ<65>$à«x#Œ|…nÔ®=ËÆ=ªðšT,DçqåfF¿Ç†*)ËaÑ¡ìäKج|È~–Å;iÕË¢Å<C2A2>ÜTkïJ\Ì<>î„bÏ®-¹×sWt%8©œÛÅFü~϶ó¤$ÙÊhìσ H0öF£Ò¡‰®éuaï¸*d<C2AD>|£½ø)èiÊ-*®Þ+ùè¼'š¸¼‡à¦+YV÷òÚŒYù<59>TSò(î<>Š'ÕÍ€*-;/÷22ø ¤u¸h3¢@¼†¦ç_?MàÙ2E˜‰¶®öŸßÝWÌ/?MвÀœõux܌˳0`rJ{^F$‡+¯ù¤<_×ÆÔ§x<i˜Å]"£èpš
|
||||
¸a A‡h¢Æ Õ|0û3'´Y;žOâ{ÄCæ¹M‰oÀëí@(¼²p‘ëA<41>G«\ó½6¼1PK!«uŠñÂåÊ®æy3Û3þØf7ÂþiB2Äÿ.Ë34})Ñ;«¿þPš‚±m2€ê
|
||||
<EFBFBD>Ù¾üJB‚!¾bØ_hVZB
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
xu’Ko›@…»æWŒÔM"Ô”URÆlã'1;`ó0`ˆ}݇ºjÏîé“®t¾¤©ª¼XÆŸ:F)€C¢ $¦"%CUš¬E˜
|
||||
)™J8ˆ†Uî1Zw %j‘&E±¬Êi¤hZ$PUB¢(GZ*Š$‰cŠ1õ]Ö0àä5˜d´9ƒg¬(CQã㼄÷¼ö-eíSÝ0z9<<3C>ò.ë㧤©¾¨hªŠ¨ª€4AàîíýíŽ2`çݬ<C39D>Áóìõ¿ºc§Ë©ÍOàËÏ–=_ßöÁvn/õÝ~cýê9À<39>¡5C×<43>‰®¯<C2AE>µSŠ^²Ÿlg…´zÙ|ÐuÕæúÔÞ±>ð^é.±%Þ˜h˜rà*
u˜¾WV…45¥¦Kð$ôëBÈÌÙ»æZ¢·á|µ0#ÛJ¬ÙB-ÖH6®4“¤…çq v[×®ËÛ´O3Õ
æîÎa~:nœ
ƒ°”Û›±9æ4¡ÙµZ™Íޝ·å8Ƕ¶…‘vko.ÈÀ½{¬Í-!:
+^Uö>rÛXåeï
¡ipÕOn¡zn><biG¿åw³xdÈmk§Höy‡/·[}p¤B¹Óõ:õλ!à8:33â¦ÚuÑWÖ,ùx̬>Y2YXq .û*$ýtÒÈèxfí<<3C>òÃ<C3B2>r ìho§ÞíHȳóùØš×qe9©Å‡Ì‡¥²¨Ký…/̽:Üïͬ¥ùFÝÃÝ¥
«¿<>ˆð÷ïw³ò¦ÖT—<|†w³åGŽû‚í(
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,4 @@
|
|||
xm“I£F„sæW´”ËŒ¬
7D“h0«7Œm0Ëih066[c–_'¹NÝ^I%=©êKªç³ €ƒ2÷m HÄDH9$ÈY&g²!9a™$)—ñ©Œ ÿ9ÈŠcjÜ’Y–A$Ä¢˜’Œ¤ˆÇs'K"‰BÌÄŒ‡Ä˜Á=½U-¸äTÃÛâ ¾ßû×Ôã×·ù†_ù<5F>[EŸ¸(ÿHªç߀C!-, !óq?oRÒ³ Vƒï¯ª%u9ýÈzëã_ĸO,¯ó®ÈÁ·µÖÍ<C396>
Ó—<>i+®wÖÿóÀ€¡3’µ¢¬UE9OÛrJëzV9|B}/z·RQ”óX<C3B3>5ò²Ëâ
|
||||
”NÃ{éÌïrviÌ€ÇL:i놅ÜS;[;çÌîƒæ{?¼ä]œMŒòàÁ+Møp‘䛓Z©™Dd>¦àÍGòªµ=Û½¶%Ј<0E>_ˆc ‘éi‚_DÓåÞ@ß÷_ŽÖœü@<40>Â$6¸M¥uõ†eÀ%‘<>¸Fôêž4¬ñbºlîýæ<C3BD>ψ<C38F>^—êH”j0<7F>Å ©åkIt§”°lÊ7<C38A>ú¨ôã~ÅÑîô²p%¼ìÂ¥¿'ûhѤÛV;ÃÆpØ62{ÖWXUÓcbQ׋2¹|2 ~Gf䱑ŸØ'™‚¨
|
||||
¾&žU[Œ<>ôúZÛ«HT¥»ê_ôwöp¸Ž‹¦7‘Ϻ9ÃÐO@C#<23>Å<IcºßgsCI<43>,ªáó\(j~ÔÆ!¼%…X9<>NXøO㸷<C2B8>®œ-¨¯ÝÕ¤k³ÞÙ¬°§¸t0Ÿ 6!1vB¡çÌÊôÎê
§ª~¯ÇAì<41>ÚÈów-§*\jÍ+y¹sÆêˆ¦Urʹ³|=)ŠO<C5A0>»6¦7<C2A6>£åÒu[v¶²p†(µNŸáV©“}ùf€÷VñŽÊÒ¿¡µáhE§õVP‡á]¦Õ1ÖGTn
5¨k³S©·0vMNKï|8˜"f´ŽKã>‡š˜}ºˆª¦ék±Xš<58>õšÉ¹ÕºƒÎº=‹Ü&׸yî§]rÐãzÜ8´Ÿ6s8
|
||||
dˆ¥ÔñöÞÛåg©Yý3ÿ3¡ÛÚ¯‰`2‚é—¸hñ×?NSÐõu]µÜ?ÿ|ô1ùVwÜOP·Õ³¦àËïÒR@_æJYÆ
|
|
@ -0,0 +1,2 @@
|
|||
x<01>’Mo‚@†{φWΜΙH—<>›I½Υ<1E>τl†e‰ΐ’έΥD<CEA5>_Xό /$συΞΌ›–2…Ψχ^2j¨Ξ¨ζιdΠ”ϋΌ¨υ,/<2F>@mϊ€ΆF& ¨,β}Ια²jJ2…¬mC<6D>°ζΫ<04>n„”MHι®<CEB9>€Α<9ψ®g³<67>Τ†Λζ<CE9B>ΐ·<CE90>4pθ¨
|
||||
%ΰχwΈΙmυΦΈ#Q”<04>«εΫzεb&90R–ϊ¤aHχ<48>Eϊιι<14>8<>τµM·΄S8ϋoη7<CEB7>
00ίΙw³nΤiνζ‹a(ό<>-<2D>ΰUd<55>qdΜc<CE9C>Όxω΅Ο½΄<C2BD>v<>Qτ€ΗΩΛΙm•]-\SλεΗΧςέ²Aπ1α³β¦;Ό½<CE8C>
αfppξ²ξΖό/<04>UΪQΫ<51>γ¶ΠF<CEA0>££χ©6<C2A9>¨sG<13>ξΨc–½Φ^wοΕ<CEBF>Ό7anό<6E>χH,²<17>qψ†©<E280A0>!x(0<>Ιs–bδω"0=Ε½Ώμή=#Ώ'<27>Οv?΅8ω›ή&¨
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
x¥’K<E28099>£F…³FšÿPR63Bnƒ)Ê0ê‰Ü¼l·_4~EYEc`ŠÂØþõãéd)Q6¹«£#<23>«#<23><>Ôçs.€©j¿N) ªT3cHQ˜6V) 4¡b¦hP§±¦°‘nH
æ´ <20><>š£8<C2A3>ˆ!¦03AHAšŒR<C592>Uبš„;‘ÕÔÙùvo³ßãZüžuh#46å¿Û/]KyûTÕœ6åí)ÍEÖÅO¤>ÿÔ±¢k¦©<C2A6>M +ª¢H÷Q_P¼\ø]žÿнüg,mÒ6OÁàçÙŽ,ÀÊ[<5B>0ðÖ{´q>| H omb[–=±¬µ½ž–MÅ“<C385>=g\^4ô–EiX3÷þ=/¯›ÅÊÃE„œøzί–ÂLÉn›ÕÇÆt¯»¤/Œ¹7¥»î'ûY˜s=-¨N¼÷æýÛ6ºÊŽ®åìK tÑ¢lYÿ*Ÿ<><C5B8>Û¥Ö]d¬Êþ-<2D>U€_GòîæNÙR3rõNns¿z~
%Ü‹I寛½9n…˜;Ò¼ûõÕMB_¸¥ïÌ²ÅÆYããž9»ª[Md}“…«]x
|
||||
·¦¯Jà²XNó¢¯FyÇ,ŸÇwÏVÞNCr8«Ÿ2snÙl‡ÖdÍÞÜ.ÜÊ§ÔØ'<27>ôÚ£Ã{u¤û¡’·ÐìgÇ{·G^TʶÛö”8Jª5ÓÀ‡€ÁÖˆÖó‹H—<48>õé|Ñ…ëoø¶<C3B8>àG•<47>mœÅë¿/&1ŠÅç,oEÍoƒ¶‹[Áó*´s’}ù
|
||||
º&Á‚QƒË²¼®€‘$Š3>ÿªŽT4þ"I“zð'®4Ä·¯ÿÚOÿx7Á¼¬AˆKžÉOÝ>dúÒðZÔÕçå쟤Ž%]
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
x…’?<3F>Ô0Å©ý)FºâšM¶AH@…t+ XNBHˆ«Î&±µŽ'òØ…‚ÏÎØHìUÐEŽç½y¿gÉÀ›·¯_©a”º»ƒGçžØÃCà’ƒ©%P‚/T<>•úîu<C3AE><75>*茉.!Í G‰6|¾gȸj{Ñs»Aüd?xQ¤¼\M“NóÀ¨³õ t‚Çó,äjD‰ƒCU<Þ4Á½XhTê›ü¬«¡^šºIeÌ|ü—ݬ¸„‰jr é>†ò© ¢|)+¿;çP|5£¥¥Ký_T:]1ïÅw$†®òÍÀh;AùÔ`iÝ<1B>Œr8:þ
!оž><œO`jÃifXô.Á§ 3p³/q‡ÍcRÒ½”P¹ùu§?ÐÆ>'Xu.ÁÖ¨ó¡WæHj’ª’½Š8Ãw0!¹n6Qî«É¹2޶$MgÚ¸ÙeÆ8I5ðüë8
|
||||
àlŸß÷ë¸5VI##Èr&O¢iÉÐ?ä¹´\BŒ°éT^ØkçBÃ#pÑ–Á¢®aàm˜‚½í&odÁÔîÊþºñÕo‚óøò
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
xuR]oÓ0å9¿â,´Kû*<2A>˜¢o´ÚƪµÀ´ªŠ<kŽÙN7Ԗߎ;ÖÄC<C384>ò<EFBFBD>èž<C3A8>{ÎUç³<C2A7>oD£©—FË¢¶¦ª}!µ0ƒ!6 ðÌhWšdŒÒ(ŸáÁØ{WÊ!5JSq0i{¹DÚ›ýüšâdŒ?X°ÝÂrßXýäEKNï!Å^æ¹µD[íµ šAHÅÁ¥óîŸWÎð®£<C2AE>ž"·Ñ`ÄõZZ£+¾XÔÊP¢ºœã´7øòŠv˜>§¥ Ù7·óóbq>¹œ‹i1»¾ºœ-Âk2½¸É—»Þ¦-þù—õGý~˜“Ì¿O÷’Õ.MvIŸxÍ×>rêCè¶qñÌ
ñÐ<C3B1>ë0÷-yþÌÅ%'¹ÆûðM<1B>pÅ,<¹À‡á“ÕÑ®?&×ó‹«oG:·[›_ëþŸÅË$DIâÂO6ÎZì’h
|
||||
R×êw‡Ñ£F;£x‡²eÜyk"m¼
¢ò<C2A2>NÆ:©e™2<>¯›¬c°VDw–ëZ‡¾Œø<C592>ô/*…%¿
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
x╔∙а▌с0├9Ш)FЙ╔∙H╡к U─╢b%д│p╚V┼⌡Lk;╡²╡Ayxфqр╙4,^╟тж╠Г÷ofБzЖRОАммМшW+Юй┼╫Dhew┼╠у
|
||||
>+gtыNhZЬ^#Д≈V9П╡╢`Я┬├KЮRp▀*m═ЁXuv⌠Юa];взm√∙╨╟И╢ ╨и╕y&╧CК2║J|Jkвх
пvцХ▀\ВКу4ш╓∙Ж(Н╣▐Е`N┐ё┬C:Дач┐╝═в²│÷╤6TBБ√╠<оыdЖ~²╕И\┼м╦Цqх▄
П1└c─{╢┘╜╞_└Щ╡ию├m?^dЭG╥=∙2║≈k)┐2Zё┤Э*п╬уЗгXОи(ЦЫ╛e≈K┼l└┘Z[wЕ.═FKL└чЫ)(чЮ┤┌Як9п╩0Холх╫⌡▌ОWoл-╢h`^Шд%Й│╒P%7Е9@╞S╨0:?С≥<∙'Zzv2eZhUE╘╞║┴в┼C■zФ├LI╖Z├Z*o°>`T╗c°hJZTN⌡>н┐гh+y©вЗЯ╞╨h╢жЦбP╨щРyЕыъh╢ЖЛ8@\Ч3■╢Тъ┬⌠Oэ╘╪²▄ё.dзфjоТЬ≥y'Изxиф6Ь┘ЕХ┐ф?╝`w▐ьrУь5э°ШзA╦╨ш▐╜Вoo6юьnН{Ш≥╝⌠╕O╗eн f]g²A;╥д$t╔g▒>6Л╨bУБ
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,4 @@
|
|||
xm‘I<E28098>›@FsæW´”ËDÈ1«<31>h&šö^0/Ø·¦iVc04Ææ×‡LrKêTz¥W*ՇˢH)P$õ r$Ld!B$5ÄG<C384> qZ©|Èó\ˆÕ 'a¬LĈ©PM®ˆ2’EYQ8 a‡š"
|
||||
ˆ—1‘*šF² ¼Â1¨¥IYƒ
|
||||
jÒƒu™ ¢ !x-È;ýdÅ_ô—ÅO0(²¨)š*ƒ§r3ÐáPJj`¤Ôlðz-kR]žïqJ“6øGc9~Ðâ*nÒŒ~×T7,8†<˰ánïꟜèš)žB8ý€p;Ý..U®$ît©$™´¹‹µÕA8?u4Ûç bߦåÅZ=©cÜ?|TK}Q <20>1K±ª…IÕ<49>Èö0ž™ÏXÉ5Kå’[aÑŒÎa€Øªc·±”Èqâ, βîÏm¿™ ·v<+ï{R…¾?
|
||||
Voüyìsr’lXhgÖêêÌæ.;!<21>g¬XÔ<58>Ç€gæ<67>N7xÞìøåÁ2W™usýç=TM̦>½#Û;¹^F°¿¬d_w6»pýã1¢Ìo ·5d•ÞóÎqU"áHõë¤r½vó¼7™Ù?ü<c¯½íœZ9Ž&<26>‰ë–uqÛÚí¡091g@P°vœÉçéίwsƒÄxø¥$]ôø¸ÅkY{ï¾œŽ—ÂÙp÷ä~YÝ¢3ûè è‡G÷Æ€·ù.Ș?™éöìÿ‰1Aô%IZÖÏQÓ
Ók<jªqòíh«Qh9tÃŒ ¼|å~"}c˜_{3íÃ
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
xЌђAO1…=пЇx"Q€bў'Ј A8™hјH6KqgЭ&ҐЭґѓл~ј+иСcg^Яыж-_въкжДихpЉое»_ґЛг<r0ҐичoБ%№Дла’В$ЙfЕnСW–Шx‡ВXBо)є}™Иh€Ё Ћ({и5{лuГђ±Y·ЙrСF.†xзP›HѓЅїq"ЇЌµ(х'AЫ@:o$К‘0h&В?џї*РйѕЅLіЙx2}МfПЈ_А8КЪ„Тфx7EbЁЁ1Іќ<КGRхєБП?·ыC9w‡Е®’Цыo!JЕ’„zK(UГ¤Ш«И№_3о·яc=Я&Яu#Ћ:
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1 @@
|
|||
x+)JMU°0c040031QrutсuХЛMaё$УxjNXю'±ЫS%кКзlЇи°‡**OMТ-NM,JОР+И)MПМУ«*О`8Жф ЙPкфҐЅЏЭ[н„jЮ“•іb&
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
xu’ÉŽ›@E³æ+Jʦ[VÚT(ˆÒQƒÁ€ic<0F>wÅàp1ûëCÒY&wy¤óôžî‹«Ë¥hæÑ—–œqB NH(BC’b%I(A1%bšàˆÌ8Ndê<64>’²0Š—ˆ âf0âØ̱(â1;Qä°($/2a׿´ÊB<1A>‚Äò3 ‹“OðÖ5„6/eEI}¾¿dE›wÑK\]~(ˆœ4ƒ<'€ ;†é¸rK(ЋÖèÆaµ·ÿjhÔ²:kŠ|ûEÓM8º|S·åÍÖÓþp0àÖ(±"ËÊ\–]Å]ž¢Ì çžbáüÈû5o²|ª]S^h-¤‡¡——`]-=Y3ŒHX1ÀÚÖé~UwçÆWgò˜MiékÅâWª¤úY®uÓ7Å̉+È•V4<tHì¯{ú`À1ÛøAå7’h&)<29>{çìgá1>h‡Ìp#ý¨Zƒ3Y®‡rʪxä—È8Ë×ù{°BÖzÁ€4Ô†!FzU4–¾(<28>>ë]¢yefø±°±:Ū‰DcµàÝ‘Ñl7èÎû¹©Ï»J~kç^¤ -[ø:rÙ,Ç=tÕÕïn›^?†;±IWíØ,‰ééîó<>=<3D>ûÒü;Í’.¹G¥]ΣBíÍæÑçÓ|€
|
||||
ÚßNÎnõHeO<65>™7@^×m}±’M`÷7Á4»â$¿2àÕöýŽùìL³Õ7ƤÅðu”„ÝówPÓª&ô|I1ÞÁø iÃ&E™Vàé+„Âg†ùáŠì?
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,3 @@
|
|||
x“ÁjÜ0†ű(Bˇ<42>е%ym<79>‚ĺS!=´P(ä.Ű’VkIYoöé;r’nşlˇ”â<E2809D>=Ň?ßü3<C3BC>[ëZÄKţ®űvv
|
||||
Ź1Îw„,Ë’/ŰÜů<C39C>”R
|
||||
ü,ą;X3ý¸$dśs˛Ţb´<62>>Žß–ŤĘc¸ ¸©!WIďeoÔ‘én\L1z‚Łô=čBt3rZ™p•â¬sÖy<C396>ŻÚrÖ7ËÎÄ'<27>s†ÉY»¬!ż[hęΚů«ŚăjFBmŻşř‡<06>?ĽĹHkÁ<6B>Ö:•%Ż<>¦PúÎfŕ üčíő•ĽdŠ_“ŞŞÂúţBľ/č'zL<7A>·"E«ľ„á%]ÁAXUIXđsĺZŁ˝9oË‘ÉŃł(ŞCĚäÔŤi<C5A4>;Ó÷VA7nŠ™–;ca’Őwůđ<C5AF>ľÉ)l”ďĺ$7÷jR{ą p–ĺŤ~É ć¨`e,m6‘L‡Ąö€Ă*XŰKiĘŇóf§ťÁ ٦v~'pč¤U×9<C397>^ëłš†4DĆ<44>~cMŇé…:%ÔůwĚşŤ˙h·„¶›2ßćŚ}8·ü«ÖßYľ„‚Ť˘:ýŤÍO0%\
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,4 @@
|
|||
x}Tкnз@Мз_1umEB┼╨╘╛$╢$ ┘┤▄AMa▄уаFЦG└░#Vщv⌠(_Q╘⌡.зоЯ≈tЛЯд▐NбНэ{н╧В·+,ЛY═}vЖА
ЖVK
|
||||
BБб∙╥F╨╛6н[-У╗lЛ9AК┘╚Г ЫЧ⌡╬Дё─Va▐╗qS√8Т│[о(╢ё6чV╟y`└\JуTщuW╖*Ъ╟Ё<╛k)у╩√ртr²UHr╦vH╕■uhА╔-ч┐:╘,Е╦hЕC▀,щуVв■├МpO╪щ>─▌╩Я JckW╦┴v░└ж!╔ъб╒╧Q·HК"┤А▐LC⌠°
≤о│╛В8╢в÷_,bХВ@ШZХЩчok`╠Ь┌-r%@?l╣i╡DоB©MW┌╟▐^*т╓█#I_'=hЖ╨┐.4f86F┐╠ GcЁ?Ntы╟И┼ь╩.'▐?⌠┤⌠r|63V▌╔┘с┬О┐Ч,6 е╢4*uKиЦ/J╙vrZfl╛Zтo┐╖ырЫя,М╙ХЩ╨oРчгFВ╙Ъ┘Z÷@{wтЗДТG&с╚░°Ч
|
||||
╝C╗Я╧o≤╥\┌]РТё╕Ь┌э╖⌡НЕ░c÷ш╚Lс╩╝ёш`ё√u
|
||||
$÷J▄dY12Nл▓b\>≤≈%+Cснm}L╤а|║UцйЕ|6╠c%≈gт╖ИЕ
Лgb)Ч┤S╩Нuмб·йы%√6" ЧъдW}²┌╩ЫKUА©
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0
dot_oh-my-zsh/dot_git/objects/info/.keep
Normal file
0
dot_oh-my-zsh/dot_git/objects/info/.keep
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1
dot_oh-my-zsh/dot_git/refs/heads/master
Normal file
1
dot_oh-my-zsh/dot_git/refs/heads/master
Normal file
|
@ -0,0 +1 @@
|
|||
9730915910c6cc7640f8af6063ffb93becf0414a
|
1
dot_oh-my-zsh/dot_git/refs/remotes/origin/master
Normal file
1
dot_oh-my-zsh/dot_git/refs/remotes/origin/master
Normal file
|
@ -0,0 +1 @@
|
|||
9730915910c6cc7640f8af6063ffb93becf0414a
|
0
dot_oh-my-zsh/dot_git/refs/tags/.keep
Normal file
0
dot_oh-my-zsh/dot_git/refs/tags/.keep
Normal file
1
dot_oh-my-zsh/dot_git/shallow
Normal file
1
dot_oh-my-zsh/dot_git/shallow
Normal file
|
@ -0,0 +1 @@
|
|||
5d3e86e2a48adf7a308773f8f1b725d187c7c5ef
|
Reference in a new issue