Compare commits

..

No commits in common. "main" and "0.0.2" have entirely different histories.
main ... 0.0.2

8012 changed files with 111876 additions and 111647 deletions

View file

@ -1,80 +0,0 @@
name: Build and Release
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: write
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Add toolchains to Rustup
run: rustup target add x86_64-unknown-linux-gnu
- name: Build for Linux
run: cargo build --release --target x86_64-unknown-linux-gnu
- name: Upload rustmon artifact (Linux)
uses: actions/upload-artifact@v4
with:
name: rustmon
path: ./target/x86_64-unknown-linux-gnu/release/rustmon
- name: Upload minimon artifact (Linux)
uses: actions/upload-artifact@v4
with:
name: minimon
path: ./target/x86_64-unknown-linux-gnu/release/minimon
build-windows:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install dependencies for cross-compilation
run: sudo apt-get update && sudo apt-get install -y gcc-mingw-w64-x86-64
- name: Add toolchains to Rustup
run: rustup target add x86_64-pc-windows-gnu x86_64-apple-darwin
- name: Build for Windows
run: cargo build --release --target x86_64-pc-windows-gnu
- name: Get Variables
run: |
echo "TAG_NAME=commit-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
- name: Upload rustmon artifact (Windows)
uses: actions/upload-artifact@v4
with:
name: rustmon.exe
path: ./target/x86_64-pc-windows-gnu/release/rustmon.exe
- name: Upload minimon artifact (Windows)
uses: actions/upload-artifact@v4
with:
name: minimon.exe
path: ./target/x86_64-pc-windows-gnu/release/minimon.exe

8
.gitignore vendored
View file

@ -1,9 +1 @@
/target /target
# build/arch-linux
build/arch/*
!build/arch/PKGBUILD
# build/debian
build/debian/*
!build/debian/debian.sh

2533
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,18 +1,15 @@
[package] [package]
name = "rustmon" name = "pokerust"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
clap = { version = "4.5.4", features = ["cargo"] }
crossterm = "0.27.0" rand = "0.8"
dirs = "5.0.1" serde = { version = "1.0", features = ["derive"] }
image = "0.25.1" serde_json = "1.0"
once_cell = "1.19.0" once_cell = "1.8.0"
rand = { version = "0.8.4", features = ["small_rng"] } clap = { version = "2" }
regex = "1.10.4" include_dir = "0.6.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
rust-embed = "8.3.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.116"
zip = "1.1.1"

View file

@ -1,44 +0,0 @@
# Rustmon
A feature-rich, versatile colorscript printer written in Rust.
Inspired by [phoneybadger's pokemon-colorscripts](https://gitlab.com/phoneybadger/pokemon-colorscripts).
## Performance
This is written in Rust, while the original is written in Python.
This implementation is up to 10 times faster than the original.
(Sixteen times the detail)
This is the Rust implementation:
![rust implementation](img/screenshot_220424_202018.png)
This is the Python implementation:
![python implementation](img/screenshot_250324_132129.png)
## Features
## Printing
- Print a colorscript of a Pokemon.
- Print a chungus colorscript of a Pokemon.
- Specify your custom shiny rate.
- Specify the colorscript by Pokemon name.
- Specify the colorscript by Pokedex ID.
- Print multiple colorscripts at once in a row.
- Print different colorscript forms of a Pokemon.
## Fetching
- Fetch the colorscript of a Pokemon from the internet.
- Extract to a custom location for your own use.
## Say
- Pokemonsay, inspired by cowsay. Pipe text into it or use `--text` to make a Pokemon say it.
## Credits
- [phoneybadger](https://gitlab.com/phoneybadger) for the original colorscripts and inspiration.
- [talwat](https://github.com/talwat/pokeget-rs) for Rust code reference. (fast af implementation at ~1ms)
- [msikma](https://github.com/msikma/pokesprite/) for the colorscripts' sprites.

View file

@ -1,38 +0,0 @@
# Maintainer: Vomitblood <tohyouxuan@gmail.com>
pkgname=rustmon-git
pkgdesc="Pokemon Colorscripts written in Rust"
_gitname=rustmon
pkgver=r49.976cc75
pkgrel=1
arch=('x86_64')
url="https://github.com/Vomitblood/$_gitname"
license=('GPL')
depends=('glibc' 'gcc-libs' 'base-devel')
makedepends=('git' 'cargo')
provides=("$_gitname")
source=("git+$url.git")
md5sums=('SKIP')
options=(!debug)
PKGEXT='.pkg.tar'
pkgver() {
cd "$_gitname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
# fix linking errors
export CFLAGS="-fPIE"
cd "$srcdir/$_gitname"
# build main program
cargo build --release --bin rustmon
# build mini program
cargo build --release --bin minimon
}
package() {
cd "$srcdir/$_gitname"
install -Dm755 target/release/rustmon "$pkgdir/usr/bin/rustmon"
install -Dm755 target/release/minimon "$pkgdir/usr/bin/minimon"
}

View file

@ -1,59 +0,0 @@
#!/bin/sh
# get the script location
SCRIPT_DIR=$(dirname "$0")
# Variables
PKG_NAME=rustmon
BUILD_DIR=$SCRIPT_DIR/build/debian
RELEASE_DIR=$SCRIPT_DIR/../../target/release
DEBIAN_DIR=$BUILD_DIR/$PKG_NAME/DEBIAN
BIN_DIR=$BUILD_DIR/$PKG_NAME/usr/bin
AUTO_INSTALL=${1:-"no"}
# check for rust
if ! command -v rustc &> /dev/null
then
if [ "$AUTO_INSTALL" = "-y" ]; then
echo "Rust is not installed. Auto-installing..."
sudo apt install rustc
source $HOME/.cargo/env
else
echo "Rust is not installed. Would you like to install it now? (yes/no)"
read answer
if [ "$answer" != "${answer#[Yy]}" ] ;then
sudo apt install rustc
source $HOME/.cargo/env
else
echo "Rust is required to continue. Exiting."
exit 1
fi
fi
fi
# create directory structure
mkdir -p $DEBIAN_DIR
mkdir -p $BIN_DIR
# Bbild the executable
cd ../..
cargo build --release
cd $BUILD_DIR
# copy the executable
cp $RELEASE_DIR/$PKG_NAME $BIN_DIR/
# create the control file
touch $DEBIAN_DIR/control
# edit the control file
echo "Package: $PKG_NAME
Version: 1.0.0
Section: base
Priority: optional
Architecture: amd64
Maintainer: Vomitblood <tohyouxuan@gmail.com>
Description: Pokemon Colorscripts written in Rust" > $DEBIAN_DIR/control
# build the package
dpkg-deb --build $PKG_NAME

View file

@ -1,30 +0,0 @@
████ ██
██████████ ████
██████████████ ██████
████████████████ ████████ ██████████████
████████████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████
██████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████████
████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████
████ ██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████
████████████████████████████████████████████████████████
██████████████████ ██████████████████ ████ ████
██████ ████ ██████████████████
██████████████
████

View file

@ -1,27 +0,0 @@
████
██████ ████
████████████ ██████
██████████████ ████████████
██████████████████ ████ ████ ████████████
████████████████████████ ████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████████
████████████ ██████ ██████████████████████
████ ██████████████
██████████████
████████████
████ ████

View file

@ -1,21 +0,0 @@
████
████████████
██████████████████████
██████████████████████
██████████████████████ ██
██████████████████████ ██████
████████████████████████ ██████
████████████████████████ ██████
████████████████████████ ████████
████████████████████ ████████
████████████████████████ ████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████
██████████ ██████████████████
██████ ██████████
██████
██████
██

View file

@ -1,35 +0,0 @@
██████
████████████
████████████
██████████
██████████
████████
██████████ ██████████
████████ ██████████████████ ████
████████████████████████████████ ████████
██████████████████████████████████ ████████
████████████████████████████████████ ██████████
████████████████████████████████████ ████████
██████████████████████████████████████ ██████████
████████████████████████████████████ ██████████
████████████████████████████████████████ ██████████
████ ████████████████████████████████ ██████████
██████████████████████████████ ████████
██████████████████████████████ ██████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████ ██████████████
██████████████████████████████ ████████████
██████████████████████ ████████ ████████
████████████████████████████████ ████████
██████████████ ████████████████ ██████████
██████████████ ██████████████████ ████████████
████████████ ████████████████████ ████████████████
██████████████████████████████ ██████ ████
██ ██ ██████████████████
██ ████ ██

View file

@ -1,26 +0,0 @@
██
██████
██████ ████
████████ ██████
██████████████████ ██ ██ ████████
██████████████████████████ ██████████████████
██████████████████████████████ ██████████████████
██████████████████████████████ ██████████████████
██████████████████████████████ ██████████████████
██████████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████
██ ████████████████████████████████
██████████████████████████████ ████
████████████████████████████████████
████████████████████ ████████████
████████████████████ ██████████
████████████████████ ██████████
████████ ██████████████ ██████████
██████████ ██████████ ████ ████
██████ ████████████
████████████
████████████
██████

View file

@ -1,29 +0,0 @@
████████
████████████████
██████████████████████
██████████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████ ████ ████
████████████████████████████████ ████████ ████████
████████████████████████████████████████ ██████████
██████████████████████████████████████████████████
████████████████████████████████████████████████████
████████████████████████████████████████████████████ ██████
██████████████████████████████████████ ██████████
██████████████████████████████████████████ ████████████
████████████████████████████████████████████████████████████
██████████████████████████████████ ██████████████████
████████████████████████████████ ████████████████
██████████████████████████████ ██████████
██████████████████████████
████████████████████
████████████████████
████████████████████
██████████████████████████
████████████████████████████
████████████████████████
██████████████████
██████████

View file

@ -1,35 +0,0 @@
██
██████
██████
██████████
██████████
██████████
██████████████
██████████████
██ ██████████████
██████ ██████████████████ ██
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████ ████████████████████████████████████
██████ ██████████████████████████ ████████
██████ ██████████████████ ██████
██████ ████████████████████ ████████
██████████████████████████████ ██████████
████████████████████████████ ████████████
████ ██████████████████████████████████████
████████ ████████████████████████████████████
██████████████████████████████████████████ ████████
██████████████████████████████████████████████████████████
██████████████████████████████████████████████████████
████████████████████████████████████████████████████
██████████████████████████████████████████████████
██████████████████████████████████████████████
████ ██████████████████ ████████████
██████████████████ ████
██████████
██████
██

View file

@ -1,35 +0,0 @@
██
██████
██████
██████████
██████████
██████████
██████████████
██████████████
██ ██████████████
██████ ██████████████████ ██
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
████████ ████████████████████████████████████
████████ ██████████████████████████ ████████
██████ ████████████████████ ██████
████████ ██████████████████ ████████████
████████ ████████████████ ████████████████
████████ ████████████████ ████████████████████
██████████ ████████████████████████████████████████
████████████ ████████████████████████████████████████
████████████ ████████████████████████████████████████████
████████████ ████████████████████████████████████████████
██████████████ ██████████████████████████████████████████████
██████████████ ████████████████████████████████████████████
████████████████████████████████████████████████████████████
████████████ ██████████████████████████████████████████
████████ ██████████████████ ████████████████
████ ██████████████████ ████████
██████████
██████
██

View file

@ -1,31 +0,0 @@
████
████████████ ████
██████████████████
████████████████ ████ ██████████████
████████████ ████████ ██████████████████████
██████████ ██████████████████████████████████
██████████ ██ ██████████████████████████
██████████ ██████ ████ ██████████████████████
██████████ ██████ ██████ ██████████████████
██████████ ██████████ ██████████ ████████████████
████████████ ████████████████████ ████████████████
██████████████████████████████████ ██████████████
██████████████████████████████ ████ ██████████████
██████████████████████████ ████████ ██████████████
████████████████████████████████ ████████████████
██████████████████████████████████████████████████
██████████████████████████████████████████████████████ ████
████████████████████████████████████████████████████████ ████████████
██████████████████████████████████████████████████ ████████████
██████████████████████████████████████████████ ██████████
████████████████████████████████████████████ ██████████
██████████████ ████████████████████████████████ ██████████████
████████ ██████████████████████████████████████████████████ ██
████ ██████████████████████████████████████████████████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████ ████████████
████████████████ ██████████ ████████████
██████████████ ██████████ ██████████
██████████ ██ ██ ██████████
██ ██

View file

@ -1,24 +0,0 @@
██
████ ██ ██
██████ ██████ ████ ██
████ ██████ ██████ ████████ ██████ ██
██████ ████████ ██████ ████████ ██████ ████
████████████████ ████████ ██████████ ████████ ██████
██████████████████████████████████ ████████████████
██████████████████████████████████ ██ ██████████████
████████████████████████████████████████ ████████████████
████ ████████████████████████████████████████████████████
██ ████████████████████████████████████████████████
██████████████████████████████████████████████████
████████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████ ████████ ██████████████████████
████████████ ██████████ ████████████████
██████████ ████████ ████
████████ ████
████████
██████
██████
██

View file

@ -1,33 +0,0 @@
██████ ██████
████████████ ██████████
██████████████ ████████████████
██████████████████████████████████
████████████████████████████████
██████████████████████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████ ████
██████████████████████████████████████████████ ████████
██████████████████████████████████████████████████████
██████████████████████████████████████████████████████
██████████████████████████████████████████████████
██████████████████████████████████████████████████
████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████ ████████████████████████████████████████████
████████████████ ████████████████████████████████████████████████ ██████
████████████████ ██████████████████████████████████████████████████████████████
██████████████ ████████████████████████████████████████████████████████████████
██████████ ████████████████████████████████████████████████████████████████
████ ████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████
████████████████████████████████████████████████
██████████████████ ████████████████████████████
██████████████ ████████████████
████████████████
██████████

View file

@ -1,26 +0,0 @@
██
██████ ████████
████████ ██████████████
████████ ██████████████████
██████████ ████████████████████ ██
████████████████████████████████ ██████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████████
████ ████████████████████████████████████████████████
████████████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████████████████████ ████
████████████████████████████████████████████████████████
██████████████████████████████████████████████████████
██████████ ████████████████████████████████████████████
████████ ████████████████████████████████████████████████
████ ████████████████████████████████████████████████████
██████████████████████████████████████████████████
████████████████████████████████████████████████
██████████████████████████████████████████
████████████ ██████████████████████
██████ ██████████████
████████████
████ ████

View file

@ -1,19 +0,0 @@
████ ████
████████████████
██████████████████
████████████████████ ████
██████████████████████ ████████
████████████████████████████████ ████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████ ████████████████
████████████████████████ ██████████████
██████████████████ ████████████
████████████████ ████████
████████████████████ ██████
████████████████████ ██████
████████████████████████████████
██████████████ ██████████
████████ ██████
████

View file

@ -1,35 +0,0 @@
██
██████
████████ ████
████████ ██████
████████ ████████
██████████ ██████████
██████████████████ ████████████
██████████████████████████████
████████████████████████████████
██████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████████
████ ██████████████████████████████████████████████████
████████ ████████████████████████████████████████████████████
██████████ ████████████████████████████████████████████████████
██████████████ ██████████████████████████████████████████████████
████████████████ ████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████ ████████
██████████████████ ████ ██████████████████████ ████████
████████████████████ ██████████████████████ ████████████
████████████████████ ████████████████████████████████████████
████████████████ ██████████████████████████████████████████
████████████ ██████████████████████████████████████████
████████ ████████████ ██████████████████████████
████ ████████████ ██████████████████████████
████████████████████████████████████████████
████████████████████ ██████████████████████████
████████████████ ████████████████████████
██████ ██████████████████
██████████████████
████ ████████
████

View file

@ -1,30 +0,0 @@
████ ████
████████ ████████
████ ████████ ████████
████████ ████████ ████████ ████
████████ ██████ ██████ ████████
████████ ██████ ██████ ████████
██████ ██████ ██████ ████████
██████ ██ ██ ██████
██████ ██████ ██████
██ ████ ████████████ ██████ ████
██████ ██████████████ ██ ████████
██ ██████████████████████ ████████
████████████████████████████ ██████ ████████
████████████████████████████████████ ██████
████████ ████████████████████████ ██████
██████████████████████████████████████ ██████
████████████████████████████████████████████ ██
██████████████████████████████████████████
██████████████████████████████████████ ██
██████████████████████████████████████████ ████████
██████████████████████████████████████████████████████
████████████████████████████████████ ████████████
████████████████████████████████ ██████████████
████████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████
██████████████████████████████
██████ ████████████ ████
██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,50 +0,0 @@
████
████ ████████
████████████████████
██████████████████████
██████████████████████
████████████████████████
████████████████████████
████████████████████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████
████████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
████████████████████████████
██████████████████████████
████████████████████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████
██████████████████████████████████
████████████████████████████████████
████████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████████
██████████████████████████████████████████████████
██████████████████████████████████████████████████████
████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████
████████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████
████████████████████████████████
████████████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
████████ ██████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██ ██ ██████████████
██████████ ████████████████████
████████████████████████████████████ ██
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████ ██████████████
██████████████████████████████
████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████ ██████████████
██████████ ██████████████
██████████████████████████████
██████████████████████████████████████
████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
██████████████████████
████████████████████████████
████████████████████████████████
████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████ ████████████████████
██████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████ ████
████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
████ ██████████████
██████████ ████████████████████
████████████████████████████████
████████████████████████████████████ ████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,30 +0,0 @@
██████████
██████████████
██████████████
██████████████
████████████████████
████ ██████████████████████
████████████████████████████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████
██████ ████████████████████████████
████████████████████████████
████████████████████████████
██████████████████████████
██████████████████████
██████████████████████████
██████████████████████████████
██████████████████████████████
██████████████████████████
██████ ██████

View file

@ -1,22 +0,0 @@
████
████████
██████████
██████████████
████████████████
██████████████
██████████████████
████████████████████
██████████████████████
██████████████████████
██████████████████████
████████████████████
██████████████████████
████████████████████████
████████████████████████
██████████████████████
██████████████████████
████████████████████
██████████████████
██████████████████
████████████████
████ ██████

View file

@ -1,30 +0,0 @@
████████
██████████████ ████
████████████████████████████
██████████████████████████
████████████████████████
██████████████████
████████████ ████████ ████
██████████████ ████████████████
██████████████████ ████████████
████████████████████ ██████
██████████████████████
████████████████████████ ████
████████████████████████ ████████ ██████
████████████████████ ████████████████████
████████████████████ ████████████████████
████████████████████████ ████████████████
████████████████████████████ ████████████████████
██████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████
████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████
████████ ██████████████████████████████████████████████████████
██████████████████████████████████████████████████
████████████████████████████████████████████████
██████████████████████████ ████████████████████
██████████████████████ ████████████
████ ██████████ ████████
████

View file

@ -1,23 +0,0 @@
██████
██████████████
██████████████████ ████████
██████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
████████████████████████████████████████████
████████████████████████████████████████████████
████████████████████████████████████████████████████
██████████████████████████████████████████████████████
██████████████████████████████████████████████████████
██████████████████████████████████████████████████████
██████████████████████████████████████████████████
██████████████████████████████████████████████
██████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████████
██████████████████████████████████████
████████████████████████████████████
██████████████████████████████████
██████████████████████████
████████████ ██████
██

View file

@ -1,24 +0,0 @@
████
████████ ████
██████████ ████████
████████████████████
██████████████████████
████████████████████████
██████████████████████████
████████████████████████
██████████████████████████
██████████████████████████
██████████████████████
████████████████████
████████████████████
██████████████████
██████████████████ ██
████████████████████
██████████████████████
██████████████████████
██████████████████████
████████████████████
██████████████████
██████████████████
██████████████
████

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