Compare commits

..

1 Commits

Author SHA1 Message Date
github-actions[bot]
c375b04c54 Update CHANGELOG.md 2025-01-23 18:02:35 +00:00
236 changed files with 257 additions and 2412 deletions

View File

@ -1,4 +1,4 @@
name: Auto Update .app-files name: Auto Update .app-headers
on: on:
push: push:
@ -9,7 +9,7 @@ on:
workflow_dispatch: # Ermöglicht das manuelle Ausführen der Action workflow_dispatch: # Ermöglicht das manuelle Ausführen der Action
jobs: jobs:
update-app-files: update-app-headers:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
@ -31,15 +31,15 @@ jobs:
- name: Install figlet - name: Install figlet
run: sudo apt-get install -y figlet run: sudo apt-get install -y figlet
# Step 4: Run the updated generate-app-files.sh script # Step 4: Run the generate-app-headers.sh script to update .app-headers
- name: Run generate-app-files.sh - name: Run generate-app-headers.sh to update .app-headers
run: | run: |
chmod +x .github/workflows/scripts/generate-app-headers.sh chmod +x .github/workflows/scripts/generate-app-headers.sh
.github/workflows/scripts/generate-app-headers.sh .github/workflows/scripts/generate-app-headers.sh
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Step 5: Check for changes # Step 5: Check if there are any changes
- name: Check if there are any changes - name: Check if there are any changes
id: verify-diff id: verify-diff
run: | run: |
@ -51,15 +51,16 @@ jobs:
run: | run: |
git config --global user.name "github-actions[bot]" git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com" git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add ct/*.app git add ./misc/.app-headers
git commit -m "Update .app files" git commit -m "Update .app-headers file"
git checkout -b pr-update-app-files # Create a temporary branch for the PR
git push origin pr-update-app-files --force git checkout -b pr-update-app-headers
git push origin pr-update-app-headers --force
# Create PR against main # Create PR against main
gh pr create --title "[core] update .app files" \ gh pr create --title "[core] update .app-headers file" \
--body "This PR is auto-generated by a Github Action to update the .app files." \ --body "This PR is auto-generated by a Github Action to update the .app-headers file." \
--head pr-update-app-files \ --head pr-update-app-headers \
--base main \ --base main \
--label "automated pr" --label "automated pr"
env: env:
@ -70,20 +71,12 @@ jobs:
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |
# Get the PR number for the current branch PR_NUMBER=$(gh pr list --head "pr-update-app-headers" --json number --jq '.[].number')
PR_NUMBER=$(gh pr list --head "pr-update-app-files" --json number --jq '.[].number') # Check if the PR was created by the bot (skip review if so)
PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login')
# Check if a PR number was retrieved if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then
if [ -n "$PR_NUMBER" ]; then gh pr review "$PR_NUMBER" --approve
# Get the PR author
PR_AUTHOR=$(gh pr view "$PR_NUMBER" --json author --jq '.author.login')
# Approve the PR if it was not created by the bot
if [ "$PR_AUTHOR" != "github-actions[bot]" ]; then
gh pr review "$PR_NUMBER" --approve
else
echo "PR was created by the bot, skipping review."
fi
else else
echo "No PR found for the current branch." echo "PR was created by the bot, skipping review."
fi fi

View File

@ -1,28 +1,33 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# Find all .sh files in ./ct directory, sorted alphabetically output_file="./misc/.app-headers"
> "$output_file" # Clear or create the file
current_date=$(date +"%m-%d-%Y")
# Header with date
{
echo "### Generated on $current_date"
echo "##################################################"
echo
} >> "$output_file"
# Find only regular .sh files in ./ct, sort them alphabetically
find ./ct -type f -name "*.sh" | sort | while read -r script; do find ./ct -type f -name "*.sh" | sort | while read -r script; do
# Extract the APP name from the APP line # Extract the APP name from the APP line
app_name=$(grep -oP '^APP="\K[^"]+' "$script" 2>/dev/null) app_name=$(grep -oP '^APP="\K[^"]+' "$script" 2>/dev/null)
if [[ -n "$app_name" ]]; then if [[ -n "$app_name" ]]; then
# Define the output file name based on the .sh file # Generate figlet output
output_file="${script%.sh}.app" figlet_output=$(figlet -f slant "$app_name")
{
# Check if the output file already exists echo "### $(basename "$script")"
if [[ ! -f "$output_file" ]]; then echo "APP=$app_name"
# Generate figlet output echo "$figlet_output"
figlet_output=$(figlet -f slant "$app_name") echo
} >> "$output_file"
# Write the figlet output to the file
echo "$figlet_output" > "$output_file"
echo "Generated: $output_file"
else
echo "Skipped: $output_file already exists"
fi
else else
echo "No APP name found in $script, skipping." echo "No APP name found in $script, skipping."
fi fi
done done
echo "Completed processing .sh files." echo "Generated combined file at $output_file"

View File

@ -17,24 +17,6 @@ All LXC instances created using this repository come pre-installed with Midnight
Do not break established syntax in this file, as it is automatically updated by a Github Workflow Do not break established syntax in this file, as it is automatically updated by a Github Workflow
## 2025-01-24
### Changed
### ✨ New Scripts
- New Script: Ubuntu 24.10 VM [@MickLesk](https://github.com/MickLesk) ([#1711](https://github.com/community-scripts/ProxmoxVE/pull/1711))
### 🚀 Updated Scripts
- Feature: Filebrowser Script > Redesign | Update Logic | Remove Logic [@MickLesk](https://github.com/MickLesk) ([#1716](https://github.com/community-scripts/ProxmoxVE/pull/1716))
- Feature: Ubuntu 22.04 VM > Redesign | Optional HDD-Size Prompt [@MickLesk](https://github.com/MickLesk) ([#1712](https://github.com/community-scripts/ProxmoxVE/pull/1712))
- Feature: Ubuntu 24.04 VM > Redesign | Optional HDD-Size Prompt | cifs support [@MickLesk](https://github.com/MickLesk) ([#1714](https://github.com/community-scripts/ProxmoxVE/pull/1714))
### 🧰 Maintenance
- [Core] Better Creation of App Headers for next feature [@MickLesk](https://github.com/MickLesk) ([#1719](https://github.com/community-scripts/ProxmoxVE/pull/1719))
## 2025-01-23 ## 2025-01-23
### Changed ### Changed

View File

@ -1,6 +0,0 @@
___ _________ __ __
|__ \ / ____/ | __ __/ /_/ /_
__/ // /_ / /| |/ / / / __/ __ \
/ __// __/ / ___ / /_/ / /_/ / / /
/____/_/ /_/ |_\__,_/\__/_/ /_/

View File

@ -1,6 +0,0 @@
______ __ __
/ ____/__ / /_____ ____ / /____
/___ \/ _ \/ __/ __ \/ __ \/ / ___/
____/ / __/ /_/ /_/ / /_/ / (__ )
/_____/\___/\__/\____/\____/_/____/

View File

@ -1,6 +0,0 @@
___ __ __ ____ __ __
/ | _____/ /___ ______ _/ / / __ )__ ______/ /___ ____ / /_
/ /| |/ ___/ __/ / / / __ `/ / / __ / / / / __ / __ `/ _ \/ __/
/ ___ / /__/ /_/ /_/ / /_/ / / / /_/ / /_/ / /_/ / /_/ / __/ /_
/_/ |_\___/\__/\__,_/\__,_/_/ /_____/\__,_/\__,_/\__, /\___/\__/
/____/

View File

@ -34,24 +34,29 @@ function update_script() {
exit exit
fi fi
RELEASE=$(curl -s https://api.github.com/repos/actualbudget/actual/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') if ! command -v jq >/dev/null 2>&1; then
if [[ ! -f /opt/actualbudget_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/actualbudget_version.txt)" ]]; then echo "Installing jq..."
apt-get install -y jq >/dev/null 2>&1
echo "Installed jq..."
fi
RELEASE=$(curl -s https://api.github.com/repos/actualbudget/actual-server/tags | jq --raw-output '.[0].name')
if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then
msg_info "Stopping ${APP}" msg_info "Stopping ${APP}"
systemctl stop actualbudget systemctl stop actualbudget
msg_ok "${APP} Stopped" msg_ok "${APP} Stopped"
msg_info "Updating ${APP} to ${RELEASE}" msg_info "Updating ${APP} to ${RELEASE}"
cd /tmp wget -q https://codeload.github.com/actualbudget/actual-server/legacy.tar.gz/refs/tags/${RELEASE} -O actual-server.tar.gz
wget -q https://github.com/actualbudget/actual-server/archive/refs/tags/v${RELEASE}.tar.gz tar -xzvf actual-server.tar.gz >/dev/null 2>&1
tar -xzf v${RELEASE}.tar.gz >/dev/null 2>&1
mv /opt/actualbudget /opt/actualbudget_bak mv /opt/actualbudget /opt/actualbudget_bak
mkdir -p /opt/actualbudget/ mkdir -p /opt/actualbudget/
mv *ctual-server-* /opt/actualbudget mv actual-server-* /opt/actualbudget
mv /opt/actualbudget_bak/.env /opt/actualbudget mv /opt/actualbudget_bak/.env /opt/actualbudget
mv /opt/actualbudget_bak/server-files /opt/actualbudget/server-files mv /opt/actualbudget_bak/server-files /opt/actualbudget/server-files
cd /opt/actualbudget cd /opt/actualbudget
yarn install &>/dev/null yarn install &>/dev/null
echo "${RELEASE}" >/opt/actualbudget_version.txt echo "${RELEASE}" >/opt/${APP}_version.txt
msg_ok "Updated ${APP}" msg_ok "Updated ${APP}"
msg_info "Starting ${APP}" msg_info "Starting ${APP}"
@ -60,7 +65,6 @@ function update_script() {
msg_info "Cleaning Up" msg_info "Cleaning Up"
rm -rf /opt/actualbudget_bak rm -rf /opt/actualbudget_bak
rm -rf /tmp/actual-server.tar.gz
msg_ok "Cleaned" msg_ok "Cleaned"
msg_ok "Updated Successfully" msg_ok "Updated Successfully"
else else

View File

@ -1,6 +0,0 @@
___ __ __
/ | ____/ /___ ___ ______ __________/ /
/ /| |/ __ / __ `/ / / / __ `/ ___/ __ /
/ ___ / /_/ / /_/ / /_/ / /_/ / / / /_/ /
/_/ |_\__,_/\__, /\__,_/\__,_/_/ \__,_/
/____/

View File

@ -1,6 +0,0 @@
___ __ __ __
/ | ____/ / _____ ____ / /___ __________ / / ____ ____ _
/ /| |/ __ / | / / _ \/ __ \/ __/ / / / ___/ _ \/ / / __ \/ __ `/
/ ___ / /_/ /| |/ / __/ / / / /_/ /_/ / / / __/ /___/ /_/ / /_/ /
/_/ |_\__,_/ |___/\___/_/ /_/\__/\__,_/_/ \___/_____/\____/\__, /
/____/

View File

@ -1,6 +0,0 @@
___ __ ____ _ ______
/ | ____ ____ ____ / /_/ __ \ | / / __ \
/ /| |/ __ `/ _ \/ __ \/ __/ / / / | / / /_/ /
/ ___ / /_/ / __/ / / / /_/ /_/ /| |/ / _, _/
/_/ |_\__, /\___/_/ /_/\__/_____/ |___/_/ |_|
/____/

View File

@ -1,6 +0,0 @@
___ __ _ ____ __
/ | / /___ (_)___ ___ / __ \____ _____/ /_____ _____
/ /| | / / __ \/ / __ \/ _ \______/ / / / __ \/ ___/ //_/ _ \/ ___/
/ ___ |/ / /_/ / / / / / __/_____/ /_/ / /_/ / /__/ ,< / __/ /
/_/ |_/_/ .___/_/_/ /_/\___/ /_____/\____/\___/_/|_|\___/_/
/_/

View File

@ -1,6 +0,0 @@
___ __ _ ______ ____
/ | / /___ (_)___ ___ / ____/________ _/ __/___ _____ ____ _
/ /| | / / __ \/ / __ \/ _ \______/ / __/ ___/ __ `/ /_/ __ `/ __ \/ __ `/
/ ___ |/ / /_/ / / / / / __/_____/ /_/ / / / /_/ / __/ /_/ / / / / /_/ /
/_/ |_/_/ .___/_/_/ /_/\___/ \____/_/ \__,_/_/ \__,_/_/ /_/\__,_/
/_/

View File

@ -1,12 +0,0 @@
___ __ _ _ __ __ __
/ | / /___ (_)___ ___ / | / /__ _ __/ /______/ /___ __ __
/ /| | / / __ \/ / __ \/ _ \______/ |/ / _ \| |/_/ __/ ___/ / __ \/ / / /
/ ___ |/ / /_/ / / / / / __/_____/ /| / __/> </ /_/ /__/ / /_/ / /_/ /
/_/ |_/_/ .___/_/_/ /_/\___/ /_/ |_/\___/_/|_|\__/\___/_/\____/\__,_/
/_/
__
____/ /
/ __ /
/ /_/ /
\__,_/

View File

@ -1,12 +0,0 @@
___ __ _ _ __ ____
/ | / /___ (_)___ ___ | | / /___ ___ __/ / /__ ______ _
/ /| | / / __ \/ / __ \/ _ \_____| | / / __ `/ / / / / __/ | /| / / __ `/
/ ___ |/ / /_/ / / / / / __/_____/ |/ / /_/ / /_/ / / /_ | |/ |/ / /_/ /
/_/ |_/_/ .___/_/_/ /_/\___/ |___/\__,_/\__,_/_/\__/ |__/|__/\__,_/
/_/
__
_________/ /__ ____
/ ___/ __ / _ \/ __ \
/ / / /_/ / __/ / / /
/_/ \__,_/\___/_/ /_/

View File

@ -1,12 +0,0 @@
___ __ _ _____ _ __ ___ __ ___
/ | / /___ (_)___ ___ /__ / (_)___ _/ /_ ___ ___ |__ \ / |/ /
/ /| | / / __ \/ / __ \/ _ \______/ / / / __ `/ __ \/ _ \/ _ \__/ // /|_/ /
/ ___ |/ / /_/ / / / / / __/_____/ /__/ / /_/ / /_/ / __/ __/ __// / / /
/_/ |_/_/ .___/_/_/ /_/\___/ /____/_/\__, /_.___/\___/\___/____/_/ /_/
/_/ /____/
____ ____________
/ __ \/_ __/_ __/
/ / / / / / / /
/ /_/ / / / / /
\___\_\/_/ /_/

View File

@ -1,6 +0,0 @@
___ __ _
/ | / /___ (_)___ ___
/ /| | / / __ \/ / __ \/ _ \
/ ___ |/ / /_/ / / / / / __/
/_/ |_/_/ .___/_/_/ /_/\___/
/_/

View File

@ -1,12 +0,0 @@
___ __ ______
/ | ____ ____ ______/ /_ ___ / ____/___ _______________ _____
/ /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / / __ `/ ___/ ___/ __ `/ __ \
/ ___ |/ /_/ / /_/ / /__/ / / / __/_____/ /___/ /_/ (__ |__ ) /_/ / / / /
/_/ |_/ .___/\__,_/\___/_/ /_/\___/ \____/\__,_/____/____/\__,_/_/ /_/
/_/
__
____/ /________ _
/ __ / ___/ __ `/
/ /_/ / / / /_/ /
\__,_/_/ \__,_/

View File

@ -1,12 +0,0 @@
___ __ ______ __ ____
/ | ____ ____ ______/ /_ ___ / ____/___ __ _______/ /_ / __ \
/ /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / / __ \/ / / / ___/ __ \/ / / /
/ ___ |/ /_/ / /_/ / /__/ / / / __/_____/ /___/ /_/ / /_/ / /__/ / / / /_/ /
/_/ |_/ .___/\__,_/\___/_/ /_/\___/ \____/\____/\__,_/\___/_/ /_/_____/
/_/
____
/ __ )
/ __ |
/ /_/ /
/_____/

View File

@ -1,12 +0,0 @@
___ __ ______
/ | ____ ____ ______/ /_ ___ / ____/_ ______ __________ _
/ /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / __/ / / / __ `/ ___/ __ `/
/ ___ |/ /_/ / /_/ / /__/ / / / __/_____/ /_/ / /_/ / /_/ / /__/ /_/ /
/_/ |_/ .___/\__,_/\___/_/ /_/\___/ \____/\__,_/\__,_/\___/\__,_/
/_/
__
____ ___ ____ / /__
/ __ `__ \/ __ \/ / _ \
/ / / / / / /_/ / / __/
/_/ /_/ /_/\____/_/\___/

View File

@ -1,6 +0,0 @@
___ __ ______ __ _ ________
/ | ____ / /_ / ____/___ ______/ /_ ___ _____ / | / / ____/
/ /| | / __ \/ __/_____/ / / __ `/ ___/ __ \/ _ \/ ___/_____/ |/ / / __
/ ___ |/ /_/ / /_/_____/ /___/ /_/ / /__/ / / / __/ / /_____/ /| / /_/ /
/_/ |_/ .___/\__/ \____/\__,_/\___/_/ /_/\___/_/ /_/ |_/\____/
/_/

View File

@ -1,6 +0,0 @@
___ __ _ ____
/ | __________/ /_ (_) _____ / __ )____ _ __
/ /| | / ___/ ___/ __ \/ / | / / _ \/ __ / __ \| |/_/
/ ___ |/ / / /__/ / / / /| |/ / __/ /_/ / /_/ /> <
/_/ |_/_/ \___/_/ /_/_/ |___/\___/_____/\____/_/|_|

View File

@ -1,6 +0,0 @@
___ _ ___
/ | _____(_)___ |__ \
/ /| | / ___/ / __ `/_/ /
/ ___ |/ / / / /_/ / __/
/_/ |_/_/ /_/\__,_/____/

View File

@ -1,6 +0,0 @@
___ __ __ __ ______
____ ___ ______/ (_)___ / /_ ____ ____ / /_______/ /_ ___ / / __/
/ __ `/ / / / __ / / __ \/ __ \/ __ \/ __ \/ //_/ ___/ __ \/ _ \/ / /_
/ /_/ / /_/ / /_/ / / /_/ / /_/ / /_/ / /_/ / ,< (__ ) / / / __/ / __/
\__,_/\__,_/\__,_/_/\____/_.___/\____/\____/_/|_/____/_/ /_/\___/_/_/

View File

@ -1,6 +0,0 @@
___ __ __ __ _ __
/ | __ __/ /_/ /_ ___ ____ / /_(_) /__
/ /| |/ / / / __/ __ \/ _ \/ __ \/ __/ / //_/
/ ___ / /_/ / /_/ / / / __/ / / / /_/ / ,<
/_/ |_\__,_/\__/_/ /_/\___/_/ /_/\__/_/_/|_|

View File

@ -1,6 +0,0 @@
___ __ __
/ | __ __/ /_____ / /_ __________
/ /| |/ / / / __/ __ \/ __ \/ ___/ ___/
/ ___ / /_/ / /_/ /_/ / /_/ / / / /
/_/ |_\__,_/\__/\____/_.___/_/ /_/

View File

@ -1,6 +0,0 @@
____
/ __ )____ _____ ____ ___________
/ __ / __ `/_ / / __ `/ ___/ ___/
/ /_/ / /_/ / / /_/ /_/ / / / /
/_____/\__,_/ /___/\__,_/_/ /_/

View File

@ -1,6 +0,0 @@
____ __
/ __ )___ _________ ___ / /
/ __ / _ \/ ___/_ / / _ \/ /
/ /_/ / __(__ ) / /_/ __/ /
/_____/\___/____/ /___/\___/_/

View File

@ -1,6 +0,0 @@
____ __ __
/ __ )/ /___ _____/ /____ __
/ __ / / __ \/ ___/ //_/ / / /
/ /_/ / / /_/ / /__/ ,< / /_/ /
/_____/_/\____/\___/_/|_|\__, /
/____/

View File

@ -1,6 +0,0 @@
____ __ __ __
/ __ )____ ____ / /_______/ /_____ ______/ /__
/ __ / __ \/ __ \/ //_/ ___/ __/ __ `/ ___/ //_/
/ /_/ / /_/ / /_/ / ,< (__ ) /_/ /_/ / /__/ ,<
/_____/\____/\____/_/|_/____/\__/\__,_/\___/_/|_|

View File

@ -1,6 +0,0 @@
____ __ _ __ __
/ __ )__ ______ / /_____ ____| | / /__ / /_
/ __ / / / / __ \/ //_/ _ \/ ___/ | /| / / _ \/ __ \
/ /_/ / /_/ / / / / ,< / __/ / | |/ |/ / __/ /_/ /
/_____/\__,_/_/ /_/_/|_|\___/_/ |__/|__/\___/_.___/

View File

@ -1,6 +0,0 @@
______ __ __
/ ____/___ _____/ /___/ /_ __
/ / / __ `/ __ / __ / / / /
/ /___/ /_/ / /_/ / /_/ / /_/ /
\____/\__,_/\__,_/\__,_/\__, /
/____/

View File

@ -1,6 +0,0 @@
______ ___ __ _ __ __
/ ____/___ _/ (_) /_ ________ | | / /__ / /_
/ / / __ `/ / / __ \/ ___/ _ \_____| | /| / / _ \/ __ \
/ /___/ /_/ / / / /_/ / / / __/_____/ |/ |/ / __/ /_/ /
\____/\__,_/_/_/_.___/_/ \___/ |__/|__/\___/_.___/

View File

@ -1,6 +0,0 @@
______ ____ _____
/ ____/___ __________ _/ __ \/ ___/
/ / / __ `/ ___/ __ `/ / / /\__ \
/ /___/ /_/ (__ ) /_/ / /_/ /___/ /
\____/\__,_/____/\__,_/\____//____/

View File

@ -1,12 +0,0 @@
________
/ ____/ /_ ____ _____ ____ ____
/ / / __ \/ __ `/ __ \/ __ `/ _ \
/ /___/ / / / /_/ / / / / /_/ / __/
\____/_/ /_/\__,_/_/ /_/\__, /\___/
/____/
____ __ __ _
/ __ \___ / /____ _____/ /_(_)___ ____
/ / / / _ \/ __/ _ \/ ___/ __/ / __ \/ __ \
/ /_/ / __/ /_/ __/ /__/ /_/ / /_/ / / / /
/_____/\___/\__/\___/\___/\__/_/\____/_/ /_/

View File

@ -1,6 +0,0 @@
________ __
/ ____/ /_ ____ _____ ____ ___ / /____
/ / / __ \/ __ `/ __ \/ __ \/ _ \/ / ___/
/ /___/ / / / /_/ / / / / / / / __/ (__ )
\____/_/ /_/\__,_/_/ /_/_/ /_/\___/_/____/

View File

@ -1,6 +0,0 @@
__ __ __
_____/ /_ ___ _____/ /______ ___ / /__
/ ___/ __ \/ _ \/ ___/ //_/ __ `__ \/ //_/
/ /__/ / / / __/ /__/ ,< / / / / / / ,<
\___/_/ /_/\___/\___/_/|_/_/ /_/ /_/_/|_|

View File

@ -1,6 +0,0 @@
________ ________ __
/ ____/ /___ __ ______/ / __/ /___ _________ ____/ /
/ / / / __ \/ / / / __ / /_/ / __ `/ ___/ _ \/ __ /
/ /___/ / /_/ / /_/ / /_/ / __/ / /_/ / / / __/ /_/ /
\____/_/\____/\__,_/\__,_/_/ /_/\__,_/_/ \___/\__,_/

View File

@ -1,6 +0,0 @@
______ __ _ __
/ ____/___ _____/ /______ (_) /_
/ / / __ \/ ___/ //_/ __ \/ / __/
/ /___/ /_/ / /__/ ,< / /_/ / / /_
\____/\____/\___/_/|_/ .___/_/\__/
/_/

View File

@ -1,6 +0,0 @@
______ ______ __
/ ____/___ ____ ___ ____ ___ ____ _/ ____/__ ___ ____/ /
/ / / __ \/ __ `__ \/ __ `__ \/ __ `/ /_ / _ \/ _ \/ __ /
/ /___/ /_/ / / / / / / / / / / / /_/ / __/ / __/ __/ /_/ /
\____/\____/_/ /_/ /_/_/ /_/ /_/\__,_/_/ \___/\___/\__,_/

View File

@ -1,6 +0,0 @@
______ _ __
/ ____/________ ____ (_)____/ /__
/ / / ___/ __ \/ __ \/ / ___/ / _ \
/ /___/ / / /_/ / / / / / /__/ / __/
\____/_/ \____/_/ /_/_/\___/_/\___/

View File

@ -1,6 +0,0 @@
____ _____
/ __ \____ ____ ____ ___ ____ ____ / ___/__ ______ _____
/ / / / __ `/ _ \/ __ `__ \/ __ \/ __ \ \__ \/ / / / __ \/ ___/
/ /_/ / /_/ / __/ / / / / / /_/ / / / / ___/ / /_/ / / / / /__
/_____/\__,_/\___/_/ /_/ /_/\____/_/ /_/ /____/\__, /_/ /_/\___/
/____/

View File

@ -1,6 +0,0 @@
____ __
/ __ \____ ______/ /_ __ __
/ / / / __ `/ ___/ __ \/ / / /
/ /_/ / /_/ (__ ) / / / /_/ /
/_____/\__,_/____/_/ /_/\__, /
/____/

View File

@ -1,6 +0,0 @@
____ __ _
/ __ \___ / /_ (_)___ _____
/ / / / _ \/ __ \/ / __ `/ __ \
/ /_/ / __/ /_/ / / /_/ / / / /
/_____/\___/_.___/_/\__,_/_/ /_/

View File

@ -1,6 +0,0 @@
__ __________ _ _______
____/ /__ / ____/ __ \/ | / /__ /
/ __ / _ \/ / / / / / |/ / / /
/ /_/ / __/ /___/ /_/ / /| / / /__
\__,_/\___/\____/\____/_/ |_/ /____/

View File

@ -1,6 +0,0 @@
____ __
/ __ \___ / /_ ______ ____
/ / / / _ \/ / / / / __ `/ _ \
/ /_/ / __/ / /_/ / /_/ / __/
/_____/\___/_/\__,_/\__, /\___/
/____/

View File

@ -1,6 +0,0 @@
____ __
/ __ \____ _____/ /_____ _____
/ / / / __ \/ ___/ //_/ _ \/ ___/
/ /_/ / /_/ / /__/ ,< / __/ /
/_____/\____/\___/_/|_|\___/_/

View File

@ -1,6 +0,0 @@
____ __
/ __ \____ _____/ /______ ____
/ / / / __ \/ ___/ //_/ __ `/ _ \
/ /_/ / /_/ / /__/ ,< / /_/ / __/
/_____/\____/\___/_/|_|\__, /\___/
/____/

View File

@ -1,12 +0,0 @@
____ __ __ ___ _____ ____ _ __ __
/ __ \____ / /_____ ___ / /_ / | / ___// __ \ | | / /__ / /_
/ / / / __ \/ __/ __ \/ _ \/ __/ / /| | \__ \/ /_/ / | | /| / / _ \/ __ \
/ /_/ / /_/ / /_/ / / / __/ /_ / ___ |___/ / ____/ | |/ |/ / __/ /_/ /
/_____/\____/\__/_/ /_/\___/\__/ /_/ |_/____/_/ |__/|__/\___/_.___/
___ ____ ____
/ | / __ \/ _/
/ /| | / /_/ // /
/ ___ |/ ____// /
/_/ |_/_/ /___/

View File

@ -1,6 +0,0 @@
______ __
/ ____/___ ___ / /_ __ __
/ __/ / __ `__ \/ __ \/ / / /
/ /___/ / / / / / /_/ / /_/ /
/_____/_/ /_/ /_/_.___/\__, /
/____/

View File

@ -1,6 +0,0 @@
________ _______ _ __
/ ____/ |/ / __ \ | |/ /
/ __/ / /|_/ / / / / | /
/ /___/ / / / /_/ / / |
/_____/_/ /_/\___\_\/_/|_|

View File

@ -1,6 +0,0 @@
______ __ _______ __
/ ____/_____________ _/ /_____/_ __/ | / /
/ __/ / ___/ ___/ __ `/ __/_ / / / | | / /
/ /___/ / (__ ) /_/ / /_ / /_/ / | |/ /
/_____/_/ /____/\__,_/\__/ /___/_/ |___/

View File

@ -1,6 +0,0 @@
___________ ____ __ __
/ ____/ ___// __ \/ / / /___ ____ ___ ___
/ __/ \__ \/ /_/ / /_/ / __ \/ __ `__ \/ _ \
/ /___ ___/ / ____/ __ / /_/ / / / / / / __/
/_____//____/_/ /_/ /_/\____/_/ /_/ /_/\___/

View File

@ -1,6 +0,0 @@
___ _ ____________
/ _ \ | / / ___/ ___/
/ __/ |/ / /__/ /__
\___/|___/\___/\___/

View File

@ -1,6 +0,0 @@
______
/ ____/__ ____ _______ _______
/ /_ / _ \/ __ \/ ___/ / / / ___/
/ __/ / __/ / / / / / /_/ (__ )
/_/ \___/_/ /_/_/ \__,_/____/

View File

@ -1,6 +0,0 @@
________ __________ ___
/ ____/ / / / ____/ |/ /
/ /_ / /_/ / __/ / /|_/ /
/ __/ / __ / /___/ / / /
/_/ /_/ /_/_____/_/ /_/

View File

@ -1,6 +0,0 @@
_______ ______
/ ____(_)_______ / __/ /_ __
/ /_ / / ___/ _ \/ /_/ / / / /
/ __/ / / / / __/ __/ / /_/ /
/_/ /_/_/ \___/_/ /_/\__, /
/____/

View File

@ -1,6 +0,0 @@
________ _____ __
/ ____/ /___ _________ / ___/____ / / _____ __________
/ /_ / / __ `/ ___/ _ \\__ \/ __ \/ / | / / _ \/ ___/ ___/
/ __/ / / /_/ / / / __/__/ / /_/ / /| |/ / __/ / / /
/_/ /_/\__,_/_/ \___/____/\____/_/ |___/\___/_/ /_/

View File

@ -1,6 +0,0 @@
________ _ ___ ____
/ ____/ /___ _ __(_)_______ / | / _/
/ /_ / / __ \ | /| / / / ___/ _ \/ /| | / /
/ __/ / / /_/ / |/ |/ / (__ ) __/ ___ |_/ /
/_/ /_/\____/|__/|__/_/____/\___/_/ |_/___/

View File

@ -1,6 +0,0 @@
______ _
/ ____/___ _________ ____ (_)___
/ /_ / __ \/ ___/ __ `/ _ \ / / __ \
/ __/ / /_/ / / / /_/ / __/ / / /_/ /
/_/ \____/_/ \__, /\___/_/ /\____/
/____/ /___/

View File

@ -1,6 +0,0 @@
______ _ __
/ ____/____(_)___ _____ _/ /____
/ /_ / ___/ / __ `/ __ `/ __/ _ \
/ __/ / / / / /_/ / /_/ / /_/ __/
/_/ /_/ /_/\__, /\__,_/\__/\___/
/____/

View File

@ -1,6 +0,0 @@
________ __
/ ____/ /_ ____ _____/ /_
/ / __/ __ \/ __ \/ ___/ __/
/ /_/ / / / / /_/ (__ ) /_
\____/_/ /_/\____/____/\__/

View File

@ -1,6 +0,0 @@
_______ __
/ ____(_) /____ ____ _
/ / __/ / __/ _ \/ __ `/
/ /_/ / / /_/ __/ /_/ /
\____/_/\__/\___/\__,_/

View File

@ -1,6 +0,0 @@
________
/ ____/ /___ _____ ________
/ / __/ / __ `/ __ \/ ___/ _ \
/ /_/ / / /_/ / / / / /__/ __/
\____/_/\__,_/_/ /_/\___/\___/

View File

@ -1,6 +0,0 @@
________ ____ ____
/ ____/ / / __ \/ _/
/ / __/ / / /_/ // /
/ /_/ / /___/ ____// /
\____/_____/_/ /___/

View File

@ -1,6 +0,0 @@
___ __
____ _____ |__ \ _____/ /______
/ __ `/ __ \__/ // ___/ __/ ___/
/ /_/ / /_/ / __// / / /_/ /__
\__, /\____/____/_/ \__/\___/
/____/

View File

@ -1,6 +0,0 @@
______ __ _
/ ____/___ / /______ _____ (_)
/ / __/ __ \/ //_/ __ `/ __ \/ /
/ /_/ / /_/ / ,< / /_/ / /_/ / /
\____/\____/_/|_|\__,_/ .___/_/
/_/

View File

@ -1,6 +0,0 @@
______ __ _ ____
/ ____/___ / /_(_) __/_ __
/ / __/ __ \/ __/ / /_/ / / /
/ /_/ / /_/ / /_/ / __/ /_/ /
\____/\____/\__/_/_/ \__, /
/____/

View File

@ -1,6 +0,0 @@
______ ____
/ ____/________ _/ __/___ _____ ____ _
/ / __/ ___/ __ `/ /_/ __ `/ __ \/ __ `/
/ /_/ / / / /_/ / __/ /_/ / / / / /_/ /
\____/_/ \__,_/_/ \__,_/_/ /_/\__,_/

View File

@ -1,6 +0,0 @@
______ _ __
/ ____/____(_)____/ /_
/ / __/ ___/ / ___/ __/
/ /_/ / / / (__ ) /_
\____/_/ /_/____/\__/

View File

@ -1,6 +0,0 @@
____ __________ _______ __
/ __ `/ ___/ __ \/ ___/ / / /
/ /_/ / / / /_/ / /__/ /_/ /
\__, /_/ \____/\___/\__, /
/____/ /____/

View File

@ -1,6 +0,0 @@
__ __ __ __
/ / / /__ ____ _____/ /_____________ _/ /__
/ /_/ / _ \/ __ `/ __ / ___/ ___/ __ `/ / _ \
/ __ / __/ /_/ / /_/ (__ ) /__/ /_/ / / __/
/_/ /_/\___/\__,_/\__,_/____/\___/\__,_/_/\___/

View File

@ -1,12 +0,0 @@
__ __ _ __ ____ ____ __ __
/ / / /__ (_)___ ___ ____/ /___ _/ / / / __ \____ ______/ /_ / /_
/ /_/ / _ \/ / __ `__ \/ __ / __ `/ / /_____/ / / / __ `/ ___/ __ \/ __ \
/ __ / __/ / / / / / / /_/ / /_/ / / /_____/ /_/ / /_/ (__ ) / / / /_/ /
/_/ /_/\___/_/_/ /_/ /_/\__,_/\__,_/_/_/ /_____/\__,_/____/_/ /_/_.___/
__
____ ____ __________/ /
/ __ \/ __ `/ ___/ __ /
/ /_/ / /_/ / / / /_/ /
\____/\__,_/_/ \__,_/

View File

@ -1,6 +0,0 @@
__ ___ __ _______
/ / / (_) _____ / |/ / __ \
/ /_/ / / | / / _ \/ /|_/ / / / /
/ __ / /| |/ / __/ / / / /_/ /
/_/ /_/_/ |___/\___/_/ /_/\___\_\

View File

@ -1,6 +0,0 @@
__ __ __
/ / / /___ ____ __________/ /__ _____
/ /_/ / __ \/ __ `/ ___/ __ / _ \/ ___/
/ __ / /_/ / /_/ / / / /_/ / __/ /
/_/ /_/\____/\__,_/_/ \__,_/\___/_/

View File

@ -1,6 +0,0 @@
__ __
/ / / /___ ____ ___ ____ ___________
/ /_/ / __ \/ __ `__ \/ __ `/ ___/ ___/
/ __ / /_/ / / / / / / /_/ / / / /
/_/ /_/\____/_/ /_/ /_/\__,_/_/ /_/

View File

@ -1,12 +0,0 @@
__ __
/ / / /___ ____ ___ ___
/ /_/ / __ \/ __ `__ \/ _ \
/ __ / /_/ / / / / / / __/
/_/ /_/\____/_/ /_/ /_/\___/
___ _ __ __ ______
/ | __________(_)____/ /_____ _____ / /_ / ____/___ ________
/ /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/_____/ / / __ \/ ___/ _ \
/ ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_/_____/ /___/ /_/ / / / __/
/_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/ \____/\____/_/ \___/

View File

@ -1,6 +0,0 @@
__ __ ___ _ __ __
/ / / /___ ____ ___ ___ / | __________(_)____/ /_____ _____ / /_
/ /_/ / __ \/ __ `__ \/ _ \ / /| | / ___/ ___/ / ___/ __/ __ `/ __ \/ __/
/ __ / /_/ / / / / / / __/ / ___ |(__ |__ ) (__ ) /_/ /_/ / / / / /_
/_/ /_/\____/_/ /_/ /_/\___/ /_/ |_/____/____/_/____/\__/\__,_/_/ /_/\__/

View File

@ -1,6 +0,0 @@
__ __ ____
/ / / /___ ____ ___ ___ / __ )____ _ __
/ /_/ / __ \/ __ `__ \/ _ \/ __ / __ \| |/_/
/ __ / /_/ / / / / / / __/ /_/ / /_/ /> <
/_/ /_/\____/_/ /_/ /_/\___/_____/\____/_/|_|

View File

@ -1,6 +0,0 @@
__ __ __ _ __
/ / / /___ ____ ___ ___ / /_ _____(_)___/ /___ ____
/ /_/ / __ \/ __ `__ \/ _ \/ __ \/ ___/ / __ / __ `/ _ \
/ __ / /_/ / / / / / / __/ /_/ / / / / /_/ / /_/ / __/
/_/ /_/\____/_/ /_/ /_/\___/_.___/_/ /_/\__,_/\__, /\___/
/____/

View File

@ -1,6 +0,0 @@
__ __
/ / / /___ ____ ___ ___ ____ ____ _____ ____
/ /_/ / __ \/ __ `__ \/ _ \/ __ \/ __ `/ __ `/ _ \
/ __ / /_/ / / / / / / __/ /_/ / /_/ / /_/ / __/
/_/ /_/\____/_/ /_/ /_/\___/ .___/\__,_/\__, /\___/
/_/ /____/

View File

@ -1,6 +0,0 @@
__ __
/ / / /___ ____ ___ ___ _____
/ /_/ / __ \/ __ `__ \/ _ \/ ___/
/ __ / /_/ / / / / / / __/ /
/_/ /_/\____/_/ /_/ /_/\___/_/

View File

@ -1,6 +0,0 @@
__ __ __ ______ ____
/ / / /_ ______ ___ _____/ / / / __ \/ __ \
/ /_/ / / / / __ \/ _ \/ ___/ /_/ / / / / /_/ /
/ __ / /_/ / /_/ / __/ / / __ / /_/ / _, _/
/_/ /_/\__, / .___/\___/_/ /_/ /_/_____/_/ |_|
/____/_/

View File

@ -1,6 +0,0 @@
__ __ _
/ / / /_ ______ ___ _____(_)___ ____
/ /_/ / / / / __ \/ _ \/ ___/ / __ \/ __ \
/ __ / /_/ / /_/ / __/ / / / /_/ / / / /
/_/ /_/\__, / .___/\___/_/ /_/\____/_/ /_/
/____/_/

View File

@ -1,6 +0,0 @@
____ ______ ____ ____
/ _/___ / __/ /_ ___ __/ __ \/ __ )
/ // __ \/ /_/ / / / / |/_/ / / / __ |
_/ // / / / __/ / /_/ /> </ /_/ / /_/ /
/___/_/ /_/_/ /_/\__,_/_/|_/_____/_____/

View File

@ -1,6 +0,0 @@
____ ________ ______ __
/ _/___ _________ / _/ __ \/ ____/___/ /
/ // __ \/ ___/ __ \ / // /_/ / / / __ /
_/ // / / (__ ) /_/ // // _, _/ /___/ /_/ /
/___/_/ /_/____/ .___/___/_/ |_|\____/\__,_/
/_/

View File

@ -1,6 +0,0 @@
_ ____ __
(_)___ / __ )_________ / /_____ _____
/ / __ \/ __ / ___/ __ \/ //_/ _ \/ ___/
/ / /_/ / /_/ / / / /_/ / ,< / __/ /
/_/\____/_____/_/ \____/_/|_|\___/_/

View File

@ -1,6 +0,0 @@
_ _ __ __
(_) | / /__ ____ / /_____ __ __
/ /| | / / _ \/ __ \/ __/ __ \/ / / /
/ / | |/ / __/ / / / /_/ /_/ / /_/ /
/_/ |___/\___/_/ /_/\__/\____/\__, /
/____/

View File

@ -1,6 +0,0 @@
__ __ __ __
/ /___ ______/ /_____ / /_/ /_
__ / / __ `/ ___/ //_/ _ \/ __/ __/
/ /_/ / /_/ / /__/ ,< / __/ /_/ /_
\____/\__,_/\___/_/|_|\___/\__/\__/

View File

@ -1,6 +0,0 @@
__ ____ _____
/ /__ / / /_ __/ __(_)___
__ / / _ \/ / / / / / /_/ / __ \
/ /_/ / __/ / / /_/ / __/ / / / /
\____/\___/_/_/\__, /_/ /_/_/ /_/
/____/

View File

@ -1,6 +0,0 @@
__ ____
/ /__ / / /_ __________ ___ __________
__ / / _ \/ / / / / / ___/ _ \/ _ \/ ___/ ___/
/ /_/ / __/ / / /_/ (__ ) __/ __/ / / /
\____/\___/_/_/\__, /____/\___/\___/_/ /_/
/____/

View File

@ -1,6 +0,0 @@
__ __ _
/ /__ ____ / /__(_)___ _____
__ / / _ \/ __ \/ //_/ / __ \/ ___/
/ /_/ / __/ / / / ,< / / / / (__ )
\____/\___/_/ /_/_/|_/_/_/ /_/____/

View File

@ -1,6 +0,0 @@
__ __ _ __
/ //_/___ __ __(_) /_____ _
/ ,< / __ `/ | / / / __/ __ `/
/ /| / /_/ /| |/ / / /_/ /_/ /
/_/ |_\__,_/ |___/_/\__/\__,_/

View File

@ -1,6 +0,0 @@
__ __ __ __
/ //_/__ __ _______/ /___ ____ _/ /__
/ ,< / _ \/ / / / ___/ / __ \/ __ `/ //_/
/ /| / __/ /_/ / /__/ / /_/ / /_/ / ,<
/_/ |_\___/\__, /\___/_/\____/\__,_/_/|_|
/____/

View File

@ -1,6 +0,0 @@
__ __ _ _
/ //_/(_)___ ___ ____ _(_)
/ ,< / / __ `__ \/ __ `/ /
/ /| |/ / / / / / / /_/ / /
/_/ |_/_/_/ /_/ /_/\__,_/_/

View File

@ -1,6 +0,0 @@
__ __
/ //_/___ ____ ___ ____ _____ _
/ ,< / __ \/ __ `__ \/ __ `/ __ `/
/ /| / /_/ / / / / / / /_/ / /_/ /
/_/ |_\____/_/ /_/ /_/\__, /\__,_/
/____/

View File

@ -1,6 +0,0 @@
__ __ __
/ //_/___ ____ ___ ____ ____/ /___
/ ,< / __ \/ __ `__ \/ __ \/ __ / __ \
/ /| / /_/ / / / / / / /_/ / /_/ / /_/ /
/_/ |_\____/_/ /_/ /_/\____/\__,_/\____/

View File

@ -1,6 +0,0 @@
__ __ __
/ //_/_ __/ /_ ____
/ ,< / / / / __ \/ __ \
/ /| / /_/ / /_/ / /_/ /
/_/ |_\__,_/_.___/\____/

View File

@ -1,6 +0,0 @@
__ __ _ __ _
/ / ____ _____ __ __/ / (_) /_ _________ ______(_)___ _____
/ / / __ `/_ / / / / / / / / __ \/ ___/ __ `/ ___/ / __ `/ __ \
/ /___/ /_/ / / /_/ /_/ / /___/ / /_/ / / / /_/ / / / / /_/ / / / /
/_____/\__,_/ /___/\__, /_____/_/_.___/_/ \__,_/_/ /_/\__,_/_/ /_/
/____/

View File

@ -1,6 +0,0 @@
__ _ __
/ / (_)___/ /___ ___________
/ / / / __ / __ `/ ___/ ___/
/ /___/ / /_/ / /_/ / / / /
/_____/_/\__,_/\__,_/_/ /_/

View File

@ -1,6 +0,0 @@
__ _ __ __
/ / (_)___ / /___ ______ __________/ /__ ____
/ / / / __ \/ //_/ | /| / / __ `/ ___/ __ / _ \/ __ \
/ /___/ / / / / ,< | |/ |/ / /_/ / / / /_/ / __/ / / /
/_____/_/_/ /_/_/|_| |__/|__/\__,_/_/ \__,_/\___/_/ /_/

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