logpoop 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MzI1NDY1ODQzZTUxZDc2NzE4OWIyYWYxMDIwY2E2ZmQwOTA5OTNkYg==
5
+ data.tar.gz: !binary |-
6
+ OTMwZmY0ZjRiYjIzNjA2YWVlNDg4MjE2ZDM5YWU1OTc3NDRmYzIzZA==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NGIzNGY2MTJmZGQ1OTVhOGU1YmRhNzdhMTg1YTI5NzA1ZGIzMzZhZmNmMTNl
10
+ Y2E1Yjg0NTEwZDIxZjA4YzhkMmU4NTk0ZjM5ZjA5MWFlMWEzY2VhOTU4YzQx
11
+ ZTIzZmU2ZWZjYjI2MjkxODhhOGNlM2M1ZjlmYzMwZTFkMWNhYzk=
12
+ data.tar.gz: !binary |-
13
+ N2FhNjQ3NzczNTEyYWYxNDM1OWY4YTY1MWJjNjVmNDlkMTY3ZjY4YWYxZTc3
14
+ MDFhODEzZTFlNGE5NmQ0OTlmZGViZWEwYzVlODE0MzYzYzM5OWY4M2U5M2Nj
15
+ YmJkNTc5YTk0ZDdiMmI1ZDI3MzY0OWEzZDRmMjlkYWIxM2U2MTM=
data/README.md ADDED
@@ -0,0 +1,53 @@
1
+ logpoop
2
+ =======
3
+
4
+ Logpoop has several poopy modes: test, tail eff, poop, and make.
5
+
6
+ In the case of anything that fills up your terminal with garbage logs, logpoop will chose the largest logfiles from either `/var/log` or the directory you specify (using the `-d` flag).
7
+
8
+ ## test
9
+
10
+ logpoop -t test [-d LOG_DIR]
11
+
12
+ Test mode "runs some unit tests" in one terminal and "tails some log file" in another terminal. Realistic! You are so busy running your tests!
13
+
14
+ ![Test Mode](http://unclebilly.github.com/logpoop/images/test.png)
15
+
16
+ ## tail eff
17
+
18
+ logpoop [-d DIR]
19
+
20
+ Tail eff mode grabs a bunch of log files (either from a folder you specify or
21
+ from /var/log) and simulates "tail -f" in all of your open terminals, while
22
+ varying the speed and intensity. Whoa, don't bother me - I'm busy! Move away, plebes.
23
+
24
+ ![Tail Eff Mode](http://unclebilly.github.com/logpoop/images/tail_eff.png)
25
+
26
+ ## poop
27
+
28
+ logpoop -t poop
29
+
30
+ Prints a random ASCII poop in your terminal. OK, so this isn't so useful - but then, neither are you (right now).
31
+
32
+ ![Poop Mode](http://unclebilly.github.com/logpoop/images/poop.png)
33
+
34
+ ## make
35
+
36
+ logpoop -t make
37
+
38
+ It takes a really, really long time to compile this little ditty. If you wait long enough, you will be rewarded with the best binary every made. Seriously!
39
+
40
+ ![Make Mode](http://unclebilly.github.com/logpoop/images/make.png)
41
+
42
+ # Installation
43
+
44
+ [sudo] gem install logpoop
45
+
46
+ # Help
47
+
48
+ logpoop --help
49
+
50
+ # Copyright
51
+ Copyright (c) 2011 Billy Reisinger. See LICENSE.txt for
52
+ further details. LOL
53
+
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.0
1
+ 1.1.1
data/lib/logpoop.rb CHANGED
@@ -1,9 +1,11 @@
1
1
  require 'optparse'
2
2
  require 'logpoop/runner/context'
3
- require 'logpoop/runner/poop'
3
+ require 'logpoop/runner/make'
4
4
  require 'logpoop/runner/multi_tail'
5
+ require 'logpoop/runner/poop'
5
6
  require 'logpoop/runner/test_run'
6
7
  require 'logpoop/simulator/base'
8
+ require 'logpoop/simulator/make'
7
9
  require 'logpoop/simulator/tail_eff'
8
10
  require 'logpoop/simulator/test_run'
9
11
 
@@ -30,7 +32,7 @@ STR
30
32
  opt.on("-d", "--log_dir DIRECTORY", "Log directory") do |d|
31
33
  options[:log_dir] = d
32
34
  end
33
- opt.on("-t", "--type TYPE", "Poop type. Available types:\n\tpoop - take a dump in your terminal\n\ttail - simulate 'tail -f' in all your open terminals\n\ttest - simulate a console test run (needs two terminals open)") do |t|
35
+ opt.on("-t", "--type TYPE", "Poop type. Available types:\n\tpoop - take a dump in your terminal\n\ttail - simulate 'tail -f' in all your open terminals\n\ttest - simulate a console test run (needs two terminals open)\n\tmake - simulate compiling something for a long, long, looooong time") do |t|
34
36
  options[:type] = t
35
37
  end
36
38
  end
@@ -40,7 +40,8 @@ module Runner
40
40
  {
41
41
  :tail => MultiTail,
42
42
  :test => TestRun,
43
- :poop => Poop
43
+ :poop => Poop,
44
+ :make => Make
44
45
  }[opt.to_sym]
45
46
  end
46
47
  end
@@ -0,0 +1,16 @@
1
+ module Runner
2
+ class Make
3
+ def run
4
+ stdout, other_tty = Context.ttys[0..1]
5
+ threads = []
6
+ threads << Thread.new(stdout) do |myout|
7
+ sim = Simulator::Make.new(myout)
8
+ Context.simulators << sim
9
+ sim.fake_it
10
+ end
11
+ threads.map(&:join)
12
+ end
13
+
14
+
15
+ end
16
+ end
@@ -14,6 +14,10 @@ module Simulator
14
14
  clear_screen(out)
15
15
  end
16
16
 
17
+ def initialize(out)
18
+ self.out = out
19
+ end
20
+
17
21
  def self.included(base)
18
22
  base.class_eval do
19
23
  attr_accessor :out
@@ -0,0 +1,62 @@
1
+ module Simulator
2
+ class Make
3
+ include Simulator::Base
4
+
5
+ HEADERS = Dir["/usr/local/include/*.h"]
6
+
7
+ def fake_it
8
+ while !@stop do
9
+ string, wait = next_iteration
10
+ self.out.puts string
11
+ sleep wait
12
+ end
13
+ end
14
+
15
+ private
16
+ def next_iteration
17
+ @progress ||= 1
18
+ if (@progress += 1) < 1000
19
+ [configure, rand(0.001..0.2)]
20
+ else
21
+ [make, rand(0.001..1.5)]
22
+ end
23
+ end
24
+
25
+ def configure
26
+ check(random_header)
27
+ end
28
+
29
+ def make
30
+ out = "compiling #{random_source}"
31
+ out += random_message if rand(100) % 12 == 0
32
+ out
33
+ end
34
+
35
+ def random_source
36
+ random_header.gsub(/\.h$/,'.c')
37
+ end
38
+
39
+ def random_header
40
+ HEADERS[rand(HEADERS.length)].split("/").last
41
+ end
42
+
43
+ def check(header)
44
+ something = ['yes','yes','yes','yes','no'][rand(5)]
45
+ "checking for #{header}... #{something}"
46
+ end
47
+
48
+ def random_library
49
+ random_header.gsub(/\.h$/,'')
50
+ end
51
+
52
+ def random_message
53
+ @messages ||= [
54
+ "installing default #{random_library} libraries",
55
+ "make[2]: Nothing to be done for `all'.",
56
+ "linking shared-object",
57
+ "3859: warning: implicit conversion shortens 64-bit value into a 32-bit value"
58
+ ]
59
+ @messages[rand(@messages.length)]
60
+ end
61
+ end
62
+ end
@@ -4,10 +4,6 @@ module Simulator
4
4
 
5
5
  include Simulator::Base
6
6
 
7
- def initialize(out)
8
- self.out = out
9
- end
10
-
11
7
  def a_dot_or_an_e_or_an_f
12
8
  if(rand(100) % 10 == 0)
13
9
  EF[rand(EF.length)]
data/logpoop.gemspec CHANGED
@@ -2,51 +2,36 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
+ # stub: logpoop 1.1.1 ruby lib
5
6
 
6
7
  Gem::Specification.new do |s|
7
8
  s.name = "logpoop"
8
- s.version = "1.1.0"
9
+ s.version = "1.1.1"
9
10
 
10
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
+ s.require_paths = ["lib"]
11
13
  s.authors = ["Billy Reisinger"]
12
- s.date = "2014-01-03"
14
+ s.date = "2014-06-03"
13
15
  s.description = "This gem installs a script called 'logpoop' that, when run, fills up your active terminal sessions with crap (so that you look really busy). "
14
16
  s.email = "billy.reisinger@gmail.com"
15
17
  s.executables = ["logpoop"]
16
18
  s.extra_rdoc_files = [
17
19
  "LICENSE.txt",
18
- "README.rdoc"
20
+ "README.md"
19
21
  ]
22
+
20
23
  s.files = [
21
- ".document",
22
- "Gemfile",
23
- "Gemfile.lock",
24
24
  "LICENSE.txt",
25
- "README.rdoc",
25
+ "README.md",
26
26
  "Rakefile",
27
27
  "VERSION",
28
- "bin/logpoop",
29
- "lib/logpoop.rb",
30
- "lib/logpoop/poops/five.poop",
31
- "lib/logpoop/poops/four.poop",
32
- "lib/logpoop/poops/one.poop",
33
- "lib/logpoop/poops/three.poop",
34
- "lib/logpoop/poops/two.poop",
35
- "lib/logpoop/runner/context.rb",
36
- "lib/logpoop/runner/multi_tail.rb",
37
- "lib/logpoop/runner/poop.rb",
38
- "lib/logpoop/runner/test_run.rb",
39
- "lib/logpoop/simulator/base.rb",
40
- "lib/logpoop/simulator/tail_eff.rb",
41
- "lib/logpoop/simulator/test_run.rb",
42
28
  "logpoop.gemspec",
43
29
  "test/helper.rb",
44
30
  "test/test_logpoop.rb"
45
- ]
31
+ ].concat(Dir["lib/**/*.rb"])
46
32
  s.homepage = "http://github.com/unclebilly/logpoop"
47
33
  s.licenses = ["MIT"]
48
- s.require_paths = ["lib"]
49
- s.rubygems_version = "1.8.25"
34
+ s.rubygems_version = "2.2.2"
50
35
  s.summary = "Quick, look busy! Print some poop in your terminals!"
51
36
  s.test_files = [
52
37
  "test/helper.rb",
@@ -54,7 +39,7 @@ Gem::Specification.new do |s|
54
39
  ]
55
40
 
56
41
  if s.respond_to? :specification_version then
57
- s.specification_version = 3
42
+ s.specification_version = 4
58
43
 
59
44
  if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
60
45
  s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logpoop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
5
- prerelease:
4
+ version: 1.1.1
6
5
  platform: ruby
7
6
  authors:
8
7
  - Billy Reisinger
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-01-03 00:00:00.000000000 Z
11
+ date: 2014-06-03 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: jeweler
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ~>
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ~>
28
25
  - !ruby/object:Gem::Version
@@ -35,27 +32,21 @@ executables:
35
32
  extensions: []
36
33
  extra_rdoc_files:
37
34
  - LICENSE.txt
38
- - README.rdoc
35
+ - README.md
39
36
  files:
40
- - .document
41
- - Gemfile
42
- - Gemfile.lock
43
37
  - LICENSE.txt
44
- - README.rdoc
38
+ - README.md
45
39
  - Rakefile
46
40
  - VERSION
47
41
  - bin/logpoop
48
42
  - lib/logpoop.rb
49
- - lib/logpoop/poops/five.poop
50
- - lib/logpoop/poops/four.poop
51
- - lib/logpoop/poops/one.poop
52
- - lib/logpoop/poops/three.poop
53
- - lib/logpoop/poops/two.poop
54
43
  - lib/logpoop/runner/context.rb
44
+ - lib/logpoop/runner/make.rb
55
45
  - lib/logpoop/runner/multi_tail.rb
56
46
  - lib/logpoop/runner/poop.rb
57
47
  - lib/logpoop/runner/test_run.rb
58
48
  - lib/logpoop/simulator/base.rb
49
+ - lib/logpoop/simulator/make.rb
59
50
  - lib/logpoop/simulator/tail_eff.rb
60
51
  - lib/logpoop/simulator/test_run.rb
61
52
  - logpoop.gemspec
@@ -64,30 +55,26 @@ files:
64
55
  homepage: http://github.com/unclebilly/logpoop
65
56
  licenses:
66
57
  - MIT
58
+ metadata: {}
67
59
  post_install_message:
68
60
  rdoc_options: []
69
61
  require_paths:
70
62
  - lib
71
63
  required_ruby_version: !ruby/object:Gem::Requirement
72
- none: false
73
64
  requirements:
74
65
  - - ! '>='
75
66
  - !ruby/object:Gem::Version
76
67
  version: '0'
77
- segments:
78
- - 0
79
- hash: 4033199095902842063
80
68
  required_rubygems_version: !ruby/object:Gem::Requirement
81
- none: false
82
69
  requirements:
83
70
  - - ! '>='
84
71
  - !ruby/object:Gem::Version
85
72
  version: '0'
86
73
  requirements: []
87
74
  rubyforge_project:
88
- rubygems_version: 1.8.25
75
+ rubygems_version: 2.2.2
89
76
  signing_key:
90
- specification_version: 3
77
+ specification_version: 4
91
78
  summary: Quick, look busy! Print some poop in your terminals!
92
79
  test_files:
93
80
  - test/helper.rb
data/.document DELETED
@@ -1,5 +0,0 @@
1
- lib/**/*.rb
2
- bin/*
3
- -
4
- features/**/*.feature
5
- LICENSE.txt
data/Gemfile DELETED
@@ -1,5 +0,0 @@
1
- source "http://rubygems.org"
2
-
3
- group :development do
4
- gem "jeweler", "~> 1.5.2"
5
- end
data/Gemfile.lock DELETED
@@ -1,15 +0,0 @@
1
- GEM
2
- remote: http://rubygems.org/
3
- specs:
4
- git (1.2.5)
5
- jeweler (1.5.2)
6
- bundler (~> 1.0.0)
7
- git (>= 1.2.5)
8
- rake
9
- rake (0.8.7)
10
-
11
- PLATFORMS
12
- ruby
13
-
14
- DEPENDENCIES
15
- jeweler (~> 1.5.2)
data/README.rdoc DELETED
@@ -1,26 +0,0 @@
1
- = logpoop
2
-
3
- Logpoop has three poopy modes:
4
- == test
5
- logpoop -t test [-d DIR]
6
- Test mode "runs some unit tests" in one terminal and "tails some log file" in another terminal. Realistic! You are so busy running your tests!
7
- == tail eff
8
- logpoop [-d DIR]
9
- Tail eff mode grabs a bunch of log files (either from a folder you specify or
10
- from /var/log) and simulates "tail -f" in all of your open terminals, while
11
- varying the speed and intensity. Whoa, don't bother me - I'm busy! Move away, plebes.
12
- == poop
13
- logpoop -t poop
14
- Prints a random ASCII poop in your terminal. OK, so this isn't so useful - but then, neither are you (right now).
15
-
16
- == Installation
17
- [sudo] gem install logpoop
18
-
19
- == Help
20
- logpoop --help
21
-
22
- == Copyright
23
-
24
- Copyright (c) 2011 Billy Reisinger. See LICENSE.txt for
25
- further details. LOL
26
-
@@ -1,168 +0,0 @@
1
-
2
- `` ,:``
3
- ,,:,,,,:,:::::,`
4
- .,::::;;:::;;;;;::::,`
5
- ,::::;;;;;;;;;;;;;;;;;;::,:`
6
- .:::::;;;;;;;;;;;;;;;;;;;;;;;::
7
- `::;::;;;;;;;;;;;;';;;;';';;;;;;;;:,
8
- `,:::::::;;;;;;;;'';'''''''''';;;;;;;;:,
9
- .:::::;;;;;;;;;;;;;;;''''''''''''''';;;;;:.
10
- `,,::::;;;;;;;;;;;;;;;;;;'+++''''''''';'';;;::
11
- ,,,:::;;;;;;;;;;;;';;;;;';;;;;;'++++'''''''';;;:
12
- :,:;;:;;;;;;;;;;;;'''''''''';''';;;''+''''''''';;:
13
- .,::::;;;;;;;;;;;;'''';''''''''''';'';;;'''';;''';;;:
14
- `,,:::;;;;;;;;';''''';;;'''''''''''''''';;;';''''''';;;,
15
- .:,::;;;;;;;;';'';';'''''''';'''''''''''''';;;';;''''';;:
16
- ,:::;;;;;;;;;''''''''''''''''''''''''''''''';;;;;''''''';;,
17
- .::::;;;;;';;'''''''''''';'''''';''''''''''''';;;';'''''''':`
18
- .::;:;;;;;;;;;;''''''''''''''''''''''''''''''''';;;;''''';';;:
19
- .::::;;;;;;;;;;'''''''''''''';'''''''''''''''''''';;''';''';;;:
20
- .:;:;;;;;;;;;;';''''''''''''''''''''+++'''''''''''';;'''''''';;:.
21
- ,::::;;;;;;;;;;';;''''''''''''''''''''''''''''''''''';'';''''';;:`
22
- .::::;;;;;;;;;;;;';''''''''''''''''''''''''''''''''''';;''';'';;;;:
23
- .,:;;:;;;;;;;;;;;'''''''''''''''''''''''''''''''''''''''';';';'';;::
24
- .,::;:;;;;;;;;;';';'';':'''''''''''''''''''''''''''''''''''''';;'';;:
25
- :::;;;;;;;;;;;';';';';''''''''''''''';;''''''''''''''''''''''';;';;;:
26
- ,:::;;;;;;;;;';'';;''''''''''''''''''';''''''''''+''''''''''';;;;;;';:,
27
- :::;:;;;;;;;;;'';;''''''''''''''''''''''''''''''''';''''''''''';;';;;;:,
28
- .::;;;;;;;;;;;';''''''''''+''''''''''''''''''''''''''''''''''''''';';;;:,
29
- ::;:;;;;;;;;;;;''''''''';'+'''''''''''''''''''''';'''''''''''''''';';;;:`
30
- :::;;;;;;;;;;;''''''''''''+'''''''''''''''''''''''''''''''''''''''';;';;:
31
- .:::;;;;;;;';'';''''''''';+#'''''''''''''''''''';''''''''''''''';'';;;;;;,
32
- :::;;;;;;;;;';;'''''';'';;'+'''''''''''''''''''''''''''''''''''';''';;;;:
33
- .:::;;;;;;;'''''''''''''';''++'''''''''''''''''''''''''''''''''''''';;;;;,
34
- ,:::;;;;;'''''''''''';''';'''+'''''''''''''''''''''''''''''''''''';';;;;:`
35
- `::;;;;;;';;;'''''''''''''''''+''''''''''''''''''''''''''''''';'''';';;;:.
36
- ::::;;;;;;;'''''''''''''''''';++'''''''''''''''''''''''''''''''''';;;;;;,
37
- :::;';;;;''''''''''';''''';''''#''''''''''''''''''''''''''''''';';;;;;;`
38
- ,::;;;;;;;''''';';''''''''''''';++'''''''''''''''''''''''''''''';;;;;;;
39
- ::;;;;;;'''''';';;'''''';'''''''';;''+''''''''':''''''';'''''''';';;;:
40
- ,:;;;;';;';;''''''';;;'''''''''''';;'+''''''''''''''''''''''';'';;;;:.
41
- ::;;;;;;;'';';'''';''''''''''''';'';;#'''''';''';''''''''''';;;;;;;:.
42
- `:;;;;;;;'';';;;''''''''';;';;'''''''''+'''''''''''''''';';';;;;';;.
43
- ::;;;;;;';;;;'''''''''';;''''''''''';;''+''''''''''''''';'';';;;;:`
44
- :;;;;;;;;';;';''''''';''''''''';';''';;'+''';;;''''''';';''';;;;:
45
- ,:;;;;;';''';;'''''+''''';;;''''';;;;';;;+''''''''''';''';'';;;;`
46
- ,;:;;;;;'''''';''''+;'';'''';;;'';''''';;''''''''';'''';'';';;:`
47
- .::;;;;';''';';;'''''';;';;;;'';';'';';;';;''''''''''';'''';;;:`
48
- :::;;;';';;;';'';''';'';;'';;;'';';;;;;;;';;''''''';;;'''';;;;`
49
- ,::;;;;';;;';'''''';;;;'''''''''';;';'';';;;+;'';''';;''';;;;`
50
- ,::;;;;;;;;;'''''';;''''''''''''';;;';;';;;;';';'''';''';;;;`
51
- .:::;;;;;;;;;;''''';';'''''''';;'';';;;;;;;'';';;''';';;;';;:
52
- ,::;;;;;;;;';';;'''''''';;''''';'''''''';;';;;';''''';;;;;;:`
53
- :::;;;;;;';''';'+'';;'''''''''''''''''''';;;;;;;+';'';;;;;;`
54
- ,::;;;;;;;;;;;''';;;;;;'''''''''''''''''''';';''';';';;;;;,
55
- ,:;;;;;;;'''''''''''''''''''''';''''''''';;;;;;'';';;';;;:`
56
- ,:::;;;;'';;;';;+;'''''''''''''''''';'''''';;'';'';;'';;;:
57
- ,:::;;;;'';'';''+'''''''''''''''''''''';''''';;;;;'';;;;;;
58
- ,::;;;;;;;;;'''''+''''''';''''''''''''''''''''';;'';;;'';:
59
- :::;;;;;;;;;;''''#;''''';''';'''''''''''''''''';;;;;;;'+;:
60
- ,:;;;;;;;;;;';;''+''''';'';''''''''''''''''''''+;';;;;'+':
61
- `::;;;;;;;;';;;;''+'''''''''';''''''''''''''''';+';;;;;;'';`
62
- .::;;;;;;;';;';';;''''';''''''''''''''''''''''''';;;;;;;'';`
63
- ::;;;;;;;;;;'';';;';''''''''''''''''''''''';''''';';;;;;;;:.
64
- `::;;;;;;;;''';'''';'''';'''''''''''''''''''';'''';;;;;;;;;;,
65
- ::;;;;;;;;'''';;'';'''''''''''''''''''''''''''''';''';;;;;;;.
66
- `::;;;;;;;';'''''''''';';'';'''''''''''''''';;'''';;''';;;;:;.
67
- ::::;;;;;;;;;';';'''';''''''''''''''''''''';';;;'';''''';;;;;.
68
- :::;;;;;;;;;';;';'''''''''''''''''''''''''''';''''''';';;';;;'
69
- `::;;;;;;;;';;;';;;;''''''''''''''''''''''''''''''''';;';;';;''
70
- ,:;;;;;;;;;;;;;;;;;;''''''''''''''''''''''''''';'''''';;;'';;''
71
- ::;::;;;;;;;;;;;'''''''''''''';''';''''''''''''';;;''';;''';;;;`
72
- ,::;:;;;;;;;;';'';;''''''''''''''''''';'''''''';';'''''';';;';;;
73
- ::::;;;;;';;;;;;;;;''''''''''''''''''''''''''''''''';''''+';';;:
74
- .::::::;;;;;;'';'';;'''''''''''''''''''''''''''''''''''';'';'';:'
75
- ::::::;:;;;';;;'''';''';''''''''''''''''''''''''''''''''''';'';::
76
- ,::::;:::::;;;;;;;;''''''''''''''''''''''''''+'';''';''''+'''';;:;
77
- `::::::::;;;;;;;;'';;;;''''''''''''''''''''''''';'''''''';'';;;;;::
78
- .:::::::;;;;;;;;';'';';';'';''''''''''''''''''''+'''';''''''';;;;:,
79
- :::::;;;;;;;;';;;'''''''';';;'''''''''''''''''''+'''';'''';';;;;;:.
80
- :::;;;;;;;;;;;''';''''''''''''';;'''''''''''''''''''';;;''''';;';:
81
- .,:;;;;;;;;''''''''''''''''''''''''''''''''''''''';''''';';'';;'';:
82
- `:::;;;;;;;;';;';''';'''''''''''''''''''''''';'''''''''''';;;''';;:.
83
- `:::;;;;;;;'''''';;''''''''''''''''''''''''';+'''''''''';';';';;;;;:`
84
- `::;;;;;;;;';;'';''''''''''''''''''';''''''''++'':''''';'';'';;;;;;;:
85
- :::;;;;;;;;;;;';'''''';'''''''''''''';'''''+''';''''''''''';;;;;;;;;:`
86
- .::;;;;;;;;;;''';''''''''''''''''''''''''''''''''''+'+';'''';';;;;';;:
87
- ,:::;;;;;;;';;;''''''''''''''''''''''''''''''''''''''++'''''';';;;;;;;`
88
- `::::;;;;;;;;';''''''''''''''''''''''''''''''';''''''''''''''';'';;;;;:,
89
- .::;;:;;;;;;;'''''''';;'''''''''''''''''''''''''''''''''''''''';'';';;;:`
90
- ,::::;;;;;;;;;;;;''''''''''''''''''''''''''''';'''''''''''''''';+;;;;;;:,
91
- ,::::;;;;;;;;;;;;'''''''''''''''''';''''''''''''''''''''''''';;'''';;;;;;;`
92
- ,:::;;;;;;;;;;;;''';;''''''''''''''''''''''''''';''''''''''''''''''';;';';.
93
- ,:;;;;;;;;;;;;;;;''';''''''''''''''++;'''''''''''''''''''''''''':'''';;;;;;:
94
- `,:;;;;;;';;;'';;;;'''''''''''''''''''''''''''''''''''''''''''''''''''''';;;':`
95
- `::;;;''''';;;;''''';+'++'''';'''''''';'''''''''''''''''''''''''''''''''''';;;;.
96
- .::::''';''++';''''''+++;;;''''''''''''''''''''''''''''''''''''''''''''''''';;;;:`
97
- .:;:;;+++++#';'++'+##+++';''''''''''''''''''''''''''''''''''''';'''''''''';''';;;;,
98
- `:;';''';;;;;;;;;;;'''';;''''''''''''''''''''''''''''';'''''''''''''';'''''''';';;;;:`
99
- `::;;;;;::;;;;;';;;;;;';;''''''''''''''''''''''''''''''''''''''''''''''''''';'''';';;;,
100
- `;;;:;;;;;;;;;;''';'''''''';'''''''''''''''+''''''''''''''''''''''''''''''''''''''';';;:`
101
- ,:;;;;;;;;;;;';;;;;''''''''''''''''''''''''''+'''''''''''''';''''''''''''''';''''';';;;;:.
102
- .;;::;;;;;;;;;'';'''''''''''''''''''''+''''''''#'''''''''''''''''''''''''';''''''''';'';;;;,`
103
- ::;;;;;;'''';;;''''''''''''''''''''''''''''+++'+'''''''''''''''''''''''''''+'''''';;''''';;;.
104
- ,:;::;;:;;;;;;'''''''''';'''''''''''''''''''''''+'''''''''''''''''''''''''''''''';;;;''''';;;:`
105
- `;::;;;;;;;;;'';';;;;'''';'''''''''''''''''''''''''''''''''''''''''''''''''''''''''';;;;;';';;:.
106
- ,::::;;;;;;;'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''';'''''''''';''';;;;:`
107
- ,,::;;;;;;;;;;;''''''''''''''''''''''''''''''''';;;''''''''''''''''''''''''''''''''''''''';;';;;;.
108
- `::::;;;;;''';;;''''''''''''''''''''''''''''''';'''''''''''''''''''''+''''''''''''''''';;''';;';;;:`
109
- :;::;;;;;;;;'''''';'''''''''''''''''''''''''''''''';'''''''''''''''''''''''''''''''''''''';';;;;;;.
110
- .;;;;;;;';;;;''''''''';;'''''''''''''''''''''''''''''''''''''''''''''''';:;';'''''''''''''''';'';;::`
111
- ,;;;';;;;;;;;'''''''''''''''''''''''''''''''''''''''''''''';''''''''';;;''''''''''';''''''';'''';;;;.
112
- :;::;;;;;''';;;;'';''''''';''''';'''''''''''''''''''''''''''''''''';''''''''''''''''''''''';;';'';;::
113
- `;::;;;;;;'';;;'''''''''''''''''''''''''''''''''''''';''''''''''''''''''''''''''''''''''''''''';'';;;:`
114
- .::;;;;;;;';''';''''''''''''''''''''''''''''''''''''''''''''''''''''''';''''''''''''''''''''''''''';;;.
115
- ,,;;;;;;;;''''''''''''''''''''''''''''''''''''''''''''''''''''';,:;..''''''''''''''''''''''''''';';;;;:
116
- .::;;;;'';''';''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''';'''':'';'';'''';;;;;:`
117
- :::;;;'';;'';'''''''''''''''''''''''';''''''''''''''''':;'''''''''''''''''''''''''.'''''''''';'';;;;;:,
118
- ,;;;;;;';'''''''''''''''''''''''''''''''''''';;''''''''''''''''''''':'''''':''''''''''';;;''''';;;;;;;,
119
- `:;;;'';'';''''''''''''''''''''''''''';''''';''';'''';''';`''''''''''''''''''''';''''''''''''';';';;;:,
120
- :;;;;'';''''''''''''''''''''''''''''''''''';:;:'''''';'''''''''''''''''','''''''''''''''';''';'';;;;;:
121
- ,';;;;;'';;'''''''''''''''''';''''''''''''';''';'::;,`;':;''';''';;;;':::';;''''''''''';''''''';;;;;':
122
- ;:;;;';';''''''''''''''''':'''''''''''''''''''''',.;;'';,;''':';;;; ,;.;;';; '''''''''''''''''';;;;;:`
123
- :;;;'''''';';''''''''''''''''''''''''''''''''''''''.;;'':''';;`'';:',,;:;;''''''''''''''''''''''';;;:`
124
- `;;;;''';''''''''''''''''''''''''''''''''''''''''''''''':;.:';: ,:;';.,;',',;'';''','''';'';;''';;;;:`
125
- ;;;;;''''''''''''''''''''''''''''':'''''''''''''''';;;'::,:;,;;;;''';:'.;:;';'':'''''''''';''';;;;;:.
126
- .;;;;'''''''''''''''''''''''''''''''''''';'''';'':;'''''';'',..::';'''.;:;'''';';''''''';;';;;;;;;;:`
127
- ::;;;'''''''''''';'''''''''''''''''';''''''';'';,::'.;,';;';':;:;;::'';':';.,';;'';;''''';;;;;;';;,
128
- ::;;;''''''''''''''''''''''''''''''':;;'''''''':;'';;;'';'':;' ';;;';:';'';'';'';''';;;;;;;;:';;;;.
129
- ;;;;;'''''''''''''''''''''''''''''''''''''';;;,';':';::;,:`,:.`;'';''';''';;';;;;'''''';'';;;;;;;`
130
- ,;;;;'''''''''''''''''''''''''''''':'''''';''';':;;;:;.;''';::',;'';;'';';;'';;';;'';;';;';;;;;;:`
131
- :;;;;''''''''''''';''''''''''''''';''''';;'':''''''.,'..'',';;';;:`';'''`';';''';;';';;;;';;;;;,
132
- ,:;;;'''''''''''''''';'''''''''''';;'';',;::,''''';';.`;''''';;;'';;';''';;;;'''';;;''';';;;;;:,
133
- .;;;;''''''''''''''''''.'''+'';'''';;:,:'''';';'''''';;:;'';;';;;;'';;;;;;;;;';;;;;;';;;;;;;;;,.
134
- :;;;''''''''''''''''''''''''+;''';`:,`:,;;''.,.;'''''';;;;'',';;'';;;;;';''''';';;;;;;;;;;;:,`
135
- :;;''''''''''''''''''''';.';;'''';;;::.`.;'' .;:''''''';;;'';;;;;';;;;;';;;';';;;;;;;;::;:`
136
- `;;;''';'''''''''''''''':;;`:''''''';'.; ;;;';,';''''''''''';;;;;;;;;;;;;;;;;;';;;;;;:;:,`
137
- ,;;;'''''''''''''';''''''';;',''''''';;'':';'';::''''''';;'::;;'';;;;';;;;;'';;;;;;;;:`
138
- :;;'''''''''''''''''''''':;,;'::;'''';;;;;'';;';;;;;;'';''';;;;;;;;';;';';;;;;;;;;;,`
139
- `:;;;''''''''''''''''';+,+'',;'''''';;;;'';;;;;:'';';''';'';';'';';;';'';;;;;;;;;;,`
140
- ,:;;''''''''''''''''''''''''''.'',';.`;;;;;;;;;''';;';;;';;;;;'';';;';;;;;;;;;;::.
141
- ,:;;;''''''''''''''''''''''''','';':``,: ';';;;;';:'''''';'';;';;;;;';'';;;;;:,`
142
- ,:;;;''''''''''''''''''''''''''''';'',.,;'';'';'';;';''';;;;;'';;';';;;;;:.`
143
- ,:;;''''''''''''''''''''''';'''''''''',;,:';;:''''''';';''';';;;;;;;;;:.`
144
- ;;:;'''''''''''''''''''''''';''''';''''''.':;':'''''''''';;';;;;;;:,`
145
- :::;''''''''''''''''''''''';'''''':;''+'',:,''''''''''''';;;;;;:.
146
- ::;;''''''''''''''''''''';';;'''''';'''''';;''';;;'''';;;;;;.`
147
- `::;;''''''''''''''''''''''''''''';;:';''''';''''''''''';;:.`
148
- .::;;''''''''''':'''''''''''''':`'';'';'''';'';;''''''';;,`
149
- .:;;''''''''',':;''';'''''''''.:;;';;'''''':'''';''';;;;.
150
- ,;;;''''''''''''''''''''''':;''.''':;''''':''''''''';;.
151
- `:;;;'''''''''',;''''''';'';''';';'''''',;''''';''';',
152
- :;;'''''''''''';;''''''';;`:';`:;''''''';;'''''''';,
153
- .:;;''''''''';;,.;'''+'';`:,''`:;''''''';;''''''';:`
154
- `:;;;';''''''';..`:;''';.`;:;,,';'''''''';'''''';:`
155
- ,:;;;;';';';' ,,:;;''''::;:`.';,'''''''''';'';;:.
156
- `:;;;';''''';::;''';'''.`:..,;'';'''''';''';;;:.`
157
- `:;;;;;'''';';'''''''';..;. ;'';'''''';''';;:`
158
- `:;;;;';''';''''''';;;:;''':''.''''''''';::`
159
- .:;;;;'''';'''''''''''''' ;;'''''''';';;:`
160
- `:;;;;;';';;;;;''''';;;;,;;''''';;';';:`
161
- .:;;;;;;;;;;;;;;';;';;;;;;''';'';;;,`
162
- .;;;;;;;;;''';;;';;;;;;;;;';';;;;.
163
- .;;'';''';;;'''';;;;;;;';;;;;;:`
164
- `,;;;;;';;;';;;;;;;';;;;;;;,
165
- `;;;;;';;';';;:;;;;;;;;.
166
- .:;;;;;;;;;';;;;;;:.
167
- `,,::::;,,```
168
-
@@ -1,81 +0,0 @@
1
-
2
- @@#
3
- @@@@@'
4
- +@'+@@;
5
- @#''+@@
6
- #@''''@@
7
- @+'''''#@
8
- @@'''''''#@
9
- @@#'''''''''@@
10
- `@@@''''''''''''@#
11
- +@@@'''''''''''''''@
12
- +@@@+''''''''''+''''''@@
13
- `#@@@+'''''''''''''''''''''@
14
- .@@@@+''''''''''''''''''''''''@@
15
- #@@@''''''''''''''''''''''''''+''@
16
- @@''''''''''''''''''''''''''''+++'@.
17
- @@''''''''''''''''''''''''''''+++++@@
18
- @#''''''''''''''''+'''''''''''+++++++@
19
- '@'''''''''''''''''''''''''''++++++++'@
20
- @+''+'''''''''''''''''''''''+++++++++'@
21
- @+'''''''''''''''''''''''++++++++++++'@
22
- @+'''''''''''''''''''''++++++++++++++'@
23
- '@'''''''''''''''''++++++++++++#+++++'@
24
- @+'''''''''''++++++++++++++++++++++'+@
25
- :@''''''+++++++++++++++++++++++++++'@@
26
- #@'''''+++++++++++++++++++++++++''+@@@@@`
27
- `#@@@@@+'''''''''+++++++++++''''''''''+''''@@@
28
- #@@@#''''''''''''''''''''''''''''''''''''''''''@@
29
- ;@@+''''''''''''''''''''''''''''''''''''''''''''''@#
30
- @@+'''''''''''''''''''''''''''''''''''''''''''''''''@
31
- @@'''''''''''''''''''''''''''''''''''''''''''''''''''@@
32
- :@'''''''''''''''''''''''''''''''''''''''''''''''''''''@
33
- @+'''''''''''''''''''''''''''''''''''''''''''''''''''''@
34
- +@''''''''''''''''''''''''''''''''''''''''''''''''+++'''@,
35
- @+'''''''''''''+''''''''''''''''''''''''+'''''''++++++''@'
36
- @''''''''''''''''''''''''''''''''''''''''''''+++++++++''@#
37
- ;@'''''''''''''''''''''''''''''''''''''''''++++++++++++''@+
38
- @@'''''''''''''''''''''''''''''''''''''++++++++++++++++''@;
39
- @#'''''''''''''''''''''''''''''+'''++++++++++++++++++++''@.
40
- @#''''''''''''''''''''''''''''+++++++++++++++++++++++++''@
41
- @@''''''''''''''''''''''+++++++++++++++++++++++++++++++'+@
42
- ;@'''''''''''''''++++++++++++++++++++++++++++'++++++++''@'
43
- @''''''''++++++++++++++++++++++++++++++++++++++++++++'+@
44
- @+''''++++++++++++++++++++++++++++++++++++++++++++++''@'
45
- ;@'''''''''+++++++++++++++++++++++++++++++++++++'''''@@@@@+`
46
- `'@@'''''''''''''''''''''''''''''''''''''''''''''''''++++'#@@@:
47
- '@@@#''''''''''''''''''''''''''''''''''''''''''''''''''''''''''#@@
48
- `@@+'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''@@
49
- ,@#'''''''''''+''''''''''''''''''''''''''''''''''''''''''''''''''''''@@
50
- `@+''''''''''''''''''''''''''''''''''''''''+'''''''''''''''''''''''''''@#
51
- @#'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''+++''@
52
- ,@''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''+++''@@
53
- @#''''''''''''''''''''''''''''''''''''''''''''''''''''++'''''''''''+++++''@
54
- @'''''''''''''''''''''''''''''''''''''''''''''''''''''+''''''''''''+++++''@+
55
- @'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''++++++''+@
56
- @'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''++++++++'''@
57
- @'''''''''''''+''''''''''''''''++''''''''''''''''''''''''''''''++++++++++''@`
58
- @''''''''''''''''''''''''''''''++''''''''''''''''''''''''''''++++++++++++''@'
59
- @''''''''''''''''''''''''''''''''''''''''''''''''''''''''''++++++++++++++''@@
60
- @''''''''''''''''''''''''''''''''''''''''''''''''''''''''++++++++++++++++''#@
61
- @#''''''''''''''''''''''''''''''''''''''''''''''''''''++++++++++++++++++'''#@
62
- ;@'''''''''''''''''''''''''''''''''''''''++'''''''++++++++++++++++''++++'''#@
63
- @'''''''''''''''''''''''''''''''''''''''''''+++++++++++++++++++++++++++'''@#
64
- @#'''''''''''''''''''''''''''''''''''''+++++++++++++++++++++++++++++++''''@'
65
- ,@'''''''''''''''''''''''''''''+++++++++++++++++++++++++++++++++++++++''''@,,`
66
- `,,@@'''''''''''''''''''++++++++++++++++++++++++++++++++++++++++++++++'''''+@,,,,
67
- ,,,,@#'''''''''''++++++++++++++++++++++++++++++++++++++++++++++++++++''''''@#,,,,`
68
- ,,,,,:@#''''''''''''++++++++++++++++++++++++++++++++++++++++++'''''''''''''@@,,,,,,
69
- ,,,,,,,@@@@+''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''+@@@,,,,,,,
70
- ,,,,,,,,,'@@@@@#+''''''''''''''''''''''''''''''''''''''''''''''''''+@@@@@#:,,,,,,,,
71
- `,,,,,,,,,,,,;#@@@@@@@#++''''''''''''''''''''''''''''''''''+#@@@@@@@@',,,,,,,,,,,,,
72
- ,,,,,,,,,,,,,,,,,,,'@@@@@@@@@@@@@@@@@#######@@@@@@@@@@@@@@@@@+:,,,,,,,,,,,,,,,,,,
73
- .,,,,,,,,,,,,,,,,,,,,,,,,,,,:;''+##@@@@@@@@@@@@#+':,,,,,,,,,,,,,,,,,,,,,,,,,,,,
74
- ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,`
75
- `,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.
76
- ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
77
- ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,`
78
- `,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,`
79
- .,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.`
80
- `..,,,,,,,,,,,,,,,,,,,,,,,,,,,,.`
81
-
@@ -1,30 +0,0 @@
1
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
2
- ░░░░░░░░░░░░░░░▓████████▓░░░░░░░░░░░░░░░░
3
- ░░░░░░░░░░░░░░▒█████████▓▒░░░░░░░░░░░░░░░
4
- ░░░░░░░░░░░░░░░▓██▓▓▓▓▓▓███░░░░░░░░░░░░░░
5
- ░░░░░░░░░░░░░░░▓██▓▓▓▓▓▓▓██▓░░░░░░░░░░░░░
6
- ░░░░░░░░░░░░░░░░▓█▓▓▓▓▓▓▓▓█▓░░░░░░░░░░░░░
7
- ░░░░░░░░░░░░░░░░▓█▓▓▓▓▓▓▓▓█▓▒░░░░░░░░░░░░
8
- ░░░░░░░░░░░░░░░▓██▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░
9
- ░░░░░░░░░░░▒▓▓█████▓▓▓▓▓▓▓▓██▓░░░░░░░░░░░
10
- ░░░░░░░░░▓█████████▓▓▓▓▓▓▓▓███▓▒░░░░░░░░░
11
- ░░░░░░░░▓███▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓████▓░░░░░░░░
12
- ░░░░░░▒████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓███▓░░░░░░░
13
- ░░░░░░▓██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▓░░░░░░
14
- ░░░░░░▓██▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▓░░░░░░
15
- ░░░░░░███▓▓▓█████▓▓▓▓▓▓▓█████▓▓▓██▓░░░░░░
16
- ░░░░░░████▓█▓░░▒▓▓▓▓█▓██▓░░▒▓█▓███▓░░░░░░
17
- ░░░░░▒█████▓░░░░▒▓█████▓░░░░▒▓█████▒░░░░░
18
- ░░░░▓████▓▒░░▒█░░░▓███▒░░█▒░░░▓█████▓░░░░
19
- ░░▒▓███▓▓▓░░░██▒░░▒▓█▓░░░██▒░░░▓▓▓███▓▒░░
20
- ░▓████▓▓▓▓▓░░░░░░░▓▓▓▓▒░░░░░░░▓▓▓▓▓████░░
21
- ░███▓▓▓▓▓▓▓▓▒░░░▓▓▓▓▓▓▓▓▒░░░▓▓▓▓▓▓▓▓▓██▓░
22
- ░███▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▓░
23
- ░███▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓██▓░
24
- ░███▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░▓▓▓▓▓▓▓▓▓▓▓██▓░
25
- ░███▓▓▓▓▓▓▓▓▓░░░░▓▓▓▓▓▓▓▓░░░░▓▓▓▓▓▓▓▓██▓░
26
- ░█████▓▓▓▓▓░░░▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░▓▓▓▓▓███▒░
27
- ░▒█████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓████░░░
28
- ░░░▓████▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓████▒░░░
29
- ░░░░▒▓█████████████████████████████▓▒░░░░
30
- ░░░░░▒▓███████████████████████████▓░░░░░░
@@ -1,39 +0,0 @@
1
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
2
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
3
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
4
- ░░░░░░░░░░░░░░░░██▓░░░░░░░░░░░░░░░░░░░░░
5
- ░░░░░░░░░░░░░░░░▓███▒░░░░░░░░░░░░░░░░░░░
6
- ░░░░░░░░░░░░░░░░▓█████░░░░░░░░░░░░░░░░░░
7
- ░░░░░░░░░░░░░░░░███████░░░░░░░░░░░░░░░░░
8
- ░░░░░░░░░░░░░░░▓████████░░░░░░░░░░░░░░░░
9
- ░░░░░░░░░░░░░░░██████████░░░░░░░░░░░░░░░
10
- ░░░░░░░░░░░░░░▒██████████▓░░░░░░░░░░░░░░
11
- ░░░░░░░░░░░░░░░███████████░░░░░░░░░░░░░░
12
- ░░░░░░░░░░░░░░▓███████████░░░░░░░░░░░░░░
13
- ░░░░░░░░░░░░▒█████████████░░░░░░░░░░░░░░
14
- ░░░░░░░░░░░▒██████████████▓▒░░░░░░░░░░░░
15
- ░░░░░░░░░░░██████████████████░░░░░░░░░░░
16
- ░░░░░░░░░░▒███████████████████░░░░░░░░░░
17
- ░░░░░░░░░░▓███████████████████▒░░░░░░░░░
18
- ░░░░░░░░░░▓███▓▓█████████▓▓███▒░░░░░░░░░
19
- ░░░░░░░░░░░██░░░░███████▒░░░▓█░░░░░░░░░░
20
- ░░░░░░░░░▓██░░██░░█████▒░██▓░██▒░░░░░░░░
21
- ░░░░░░░░███▓░████░▓████░▓███░▒███░░░░░░░
22
- ░░░░░░░▓███▒░████░▓████░████▒░███▒░░░░░░
23
- ░░░░░░░████▒░████░▓████░████░░████░░░░░░
24
- ░░░░░░░████▓░████░█████░▒███░░████░░░░░░
25
- ░░░░░░░█████░░██░░█████▒░██░░█████░░░░░░
26
- ░░░░░░░██████░░░░▓██████░░░░▒█████░░░░░░
27
- ░░░░░░░███████▒▒█████████▓▒██████▓░░░░░░
28
- ░░░░░▓█████████████████████████████▓░░░░
29
- ░░░░█████████████████████████████████░░░
30
- ░░░▒███████████░░░▒▒▒▒▒░░░▓██████████▒░░
31
- ░░░████████████▓░░░░░░░░░▓████████████░░
32
- ░░░██████████████▒░░░░░▒██████████████░░
33
- ░░░███████████████████████████████████░░
34
- ░░░██████████████████████████████████▒░░
35
- ░░░▒█████████████████████████████████░░░
36
- ░░░░▓██████████████████████████████▒░░░░
37
- ░░░░░░▓███▒░░░░░░▒▓▓███████████▓▒░░░░░░░
38
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
39
- ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
@@ -1,40 +0,0 @@
1
- ╓╓╓╓╓╓╓╓░╓░╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓░╓╓╓░╓╓╓╓╓╓╓
2
- ╓░╓╓╓╓╓╓╓╓╓╓╓░╓╓▒████░╓╓╓╓╓╓╓╓╓░╓╓╓╓╓╓╓╓
3
- ╓╓╓╓░╓░╓╓╓╓╓╓╓╓╓▓████╓╓╓╓╓╓╓░╓╓╓╓╓╓╓╓╓╓╓
4
- ╓╓╓░╓╓╓╓╓░╓░╓╓╓╓▒█▓██╓╓╓╓╓╓╓╓╓╓░╓╓╓╓╓╓╓╓
5
- ╓╓░▓█████████████████████████████▒░╓╓╓╓╓
6
- ╓╓╓██▓▓▓▓▓▓▓▓▓▓▓▒▓▓▓▒▓▓▓▓▓▓▓▓▓▓▓██╓╓╓╓╓╓
7
- ╓╓╓█▓╓╓╓░╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓░╓╓╓╓╓╓╓██░╓╓╓╓╓
8
- ╓╓╓█▓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓░╓╓╓╓╓╓╓╓╓╓██╓╓╓╓╓╓
9
- ╓╓╓█▓╓╓╓╓╓╓╓╓╓░╓╓╓░╓╓╓╓╓╓╓░╓░╓╓╓██╓╓╓╓╓╓
10
- ╓╓╓█▓╓╓▒███╓╓╓▓█▓╓╓╓██▒╓╓▓██░╓╓╓██╓░╓╓╓░
11
- ╓╓╓█▓╓░████▓░▓███▓░████▒╓████░╓╓██╓╓░╓░╓
12
- ╓╓╓█▓░╓█▓╓╓█╓█▒░▓█╓█╓╓██╓█╓╓██╓╓██╓╓╓░╓╓
13
- ╓╓╓█▓╓░████░░█▓╓▓█╓█░╓██╓████╓╓╓██╓╓╓╓╓╓
14
- ╓░╓█▓░╓██░░╓╓█▓╓▒█╓█╓╓██╓█▒▒╓╓╓╓██╓╓╓╓╓╓
15
- ╓╓╓█▓╓╓██╓╓╓╓██▒██╓█▓▒█▓░█╓╓░╓╓╓██╓╓╓╓╓╓
16
- ╓╓╓█▓╓╓▓▓╓╓╓╓╓███░╓╓███╓╓█╓╓╓╓╓╓██╓░╓╓╓╓
17
- ╓╓░█▓╓╓╓░╓╓╓╓╓░╓╓╓╓╓╓╓╓╓╓╓╓╓╓░░╓██╓╓╓╓╓╓
18
- ╓╓╓█▓╓╓╓╓░╓░╓╓╓╓╓░╓╓╓╓╓╓╓╓╓╓╓╓╓╓██╓╓╓╓╓╓
19
- ░╓╓█▓╓╓╓░╓╓╓╓╓╓╓╓╓╓╓░╓╓╓╓╓╓╓╓╓╓╓██╓╓╓╓╓╓
20
- ╓╓╓██╓╓╓╓╓╓░╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓██╓╓╓╓╓╓
21
- ╓╓╓███████████████████████████████╓╓╓╓╓╓
22
- ╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓▓████╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓
23
- ╓╓░╓╓╓╓╓░╓╓╓╓╓╓╓▒█▓██╓╓╓╓╓░╓▒▒▓▒╓╓╓╓╓╓╓╓
24
- ╓╓╓╓╓░╓╓╓╓╓░╓╓╓╓▒█▓██╓╓╓╓░▒██████▓╓╓╓╓╓╓
25
- ╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓▓█▓██╓╓╓╓▓█▓▒╓░▒▓██╓╓╓░╓
26
- ╓╓╓╓╓░╓╓╓╓╓╓╓╓╓╓▓█▓██╓╓╓██▒╓╓░╓░░▒██╓╓╓╓
27
- ░╓░╓╓╓░╓╓╓░╓╓╓╓╓▓█▓██╓╓▓█▒▒█▓╓▒██╓▒█▓╓╓╓
28
- ╓╓╓╓╓╓╓╓╓╓╓╓╓░╓░▒█▓██╓╓█▓▒█░█▓█▒██░▓█╓╓╓
29
- ╓╓╓╓╓╓╓╓╓╓╓╓░╓╓╓█████╓╓█▒╓░╓░░░╓░╓░▓█▒╓╓
30
- ╓╓╓░╓╓╓╓╓░╓╓╓░╓░█████▓██╓▓▓╓╓╓╓╓╓▓█▒██╓╓
31
- ╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓▒█╓█████▓╓██████████▓██╓╓
32
- ╓╓╓╓╓░╓░╓╓╓╓╓╓╓▒█░██╓▒█▓░█╓▓▓▓▓▓▓╓█▓█▓╓╓
33
- ░╓╓╓╓╓╓╓╓╓╓╓╓╓╓▒█╓████▒█▒█╓╓╓╓╓╓╓╓███▓╓╓
34
- ╓░╓╓╓╓╓╓╓░╓╓╓╓╓░█████░╓█▓▓█░╓╓╓╓╓█▓▓█╓╓╓
35
- ╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓▓█▓██╓╓▒█▒▓█░░░░██▓█▓╓╓╓
36
- ╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓▓████╓╓░██▒▓█████▓██╓╓╓╓
37
- ░╓╓╓╓╓░╓╓╓╓╓╓╓╓╓▒████╓╓╓╓▓██▓▒▒▒███╓╓╓╓╓
38
- ╓░╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓▒██████▓╓╓╓╓╓░
39
- ╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓╓░╓░╓╓╓╓╓╓╓╓╓░▒▒▒╓╓╓╓╓╓╓╓
40
- ╓╓╓╓╓╓╓╓╓╓╓░╓░╓╓╓╓╓░╓╓╓╓╓╓╓░╓╓╓╓╓░╓╓╓╓╓╓