vimdeck 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/vimdeck +11 -6
- data/lib/vimdeck.rb +6 -4
- data/presentation/script.vim +66 -0
- data/presentation/slide001.md +92 -0
- data/presentation/slide002.md +106 -0
- data/presentation/slide003.md +90 -0
- data/presentation/slide004.md +90 -0
- data/presentation/slide005.md +91 -0
- data/presentation/slide006.md +91 -0
- data/presentation/slide007.md +91 -0
- data/presentation/slide008.md +97 -0
- data/presentation/slide009.md +97 -0
- data/presentation/slide010.md +97 -0
- data/presentation/slide011.md +97 -0
- data/presentation/slide012.md +97 -0
- data/presentation/slide013.md +97 -0
- data/presentation/slide014.md +97 -0
- data/presentation/slide015.md +95 -0
- data/presentation/slide016.md +95 -0
- data/presentation/slide017.md +95 -0
- data/presentation/slide018.md +95 -0
- data/presentation/slide019.md +87 -0
- metadata +21 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ecfcbef00057585172595461eb3a2b60b69331f7
|
4
|
+
data.tar.gz: c21d7b0e63853a5c6329ba06d0cda463a390cf6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d3b4acc152f6e68449a14357e46130bf55cab1071cbf36e41e4cd12b5d163de60b9f4b876ae889db49323e55ccfcd0a8174495e2a3c33ea6ebbfa3fc0c21a20
|
7
|
+
data.tar.gz: 67b5cd7a406a5dc6e34027d606de33e30261a7bfffe33626470a2e4d2aa9af59e1b4ad1c3c7bff1852a3ee8b82a5f80d0eac2181b8801cec094a4e8c7632769e
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.7
|
data/bin/vimdeck
CHANGED
@@ -9,12 +9,13 @@
|
|
9
9
|
#>
|
10
10
|
#> Options:
|
11
11
|
#>
|
12
|
-
#> --mouse, -m
|
13
|
-
#> --no-indent, -I
|
14
|
-
#> --no-ascii, -A
|
15
|
-
#> --no-filetype, -n
|
16
|
-
#> --header-
|
17
|
-
#>
|
12
|
+
#> --mouse, -m mouse support for navigating slides
|
13
|
+
#> --no-indent, -I skip indentation
|
14
|
+
#> --no-ascii, -A skip ascii headers
|
15
|
+
#> --no-filetype, -n use vim's plaintext syntax highlighting
|
16
|
+
#> --header-margin, -m bottom margin for headers. default: 1
|
17
|
+
#> --header-font, -h specify header font (http://www.figlet.org/fontdb.cgi)
|
18
|
+
#> foregoes the ability to have small and large headers
|
18
19
|
|
19
20
|
require "optparse"
|
20
21
|
if ENV["VIMDECK_DEBUG"]
|
@@ -59,6 +60,10 @@ opt_parser = OptionParser.new do |opt|
|
|
59
60
|
opt.on("-n", "--no-filetype") do
|
60
61
|
options[:no_filetype] = true
|
61
62
|
end
|
63
|
+
|
64
|
+
opt.on("-m", "--header-margin NUMBER", Numeric) do |option|
|
65
|
+
options[:header_margin] = option
|
66
|
+
end
|
62
67
|
end
|
63
68
|
|
64
69
|
opt_parser.parse!
|
data/lib/vimdeck.rb
CHANGED
@@ -85,21 +85,23 @@ module Vimdeck
|
|
85
85
|
end
|
86
86
|
|
87
87
|
def header(title, level)
|
88
|
+
margin = Vimdeck::Slideshow.options[:header_margin]
|
89
|
+
linebreak = margin ? "\n" * margin : "\n"
|
88
90
|
if !Vimdeck::Slideshow.options[:no_ascii]
|
89
91
|
case level
|
90
92
|
when 1
|
91
93
|
heading = Vimdeck::Ascii.header(title, "large")
|
92
94
|
if Vimdeck::Slideshow.options[:no_indent]
|
93
|
-
heading = " " + heading.gsub( /\n/, "\n " ) +
|
95
|
+
heading = " " + heading.gsub( /\n/, "\n " ) + linebreak
|
94
96
|
else
|
95
|
-
heading +
|
97
|
+
heading + linebreak
|
96
98
|
end
|
97
99
|
when 2
|
98
100
|
heading = Vimdeck::Ascii.header(title, "small")
|
99
101
|
if Vimdeck::Slideshow.options[:no_indent]
|
100
|
-
heading = " " + heading.gsub( /\n/, "\n " ) +
|
102
|
+
heading = " " + heading.gsub( /\n/, "\n " ) + linebreak
|
101
103
|
else
|
102
|
-
heading +
|
104
|
+
heading + linebreak
|
103
105
|
end
|
104
106
|
end
|
105
107
|
else
|
@@ -0,0 +1,66 @@
|
|
1
|
+
set nonumber
|
2
|
+
if exists('+relativenumber')
|
3
|
+
set norelativenumber
|
4
|
+
end
|
5
|
+
set hidden
|
6
|
+
|
7
|
+
|
8
|
+
noremap <PageUp> :bp<CR>
|
9
|
+
noremap <Left> :bp<CR>
|
10
|
+
noremap <PageDown> :bn<CR>
|
11
|
+
noremap <Right> :bn<CR>
|
12
|
+
noremap Q :q<CR>
|
13
|
+
|
14
|
+
b 1
|
15
|
+
b 2
|
16
|
+
b 3
|
17
|
+
b 4
|
18
|
+
b 5
|
19
|
+
call matchadd("Comment", "\\n • Second\\n • Third\\(\\_.*slide 005\\)\\@=")
|
20
|
+
b 6
|
21
|
+
call matchadd("Comment", "• First\\(\\_.*slide 006\\)\\@=")
|
22
|
+
call matchadd("Comment", "\\n • Third\\(\\_.*slide 006\\)\\@=")
|
23
|
+
b 7
|
24
|
+
call matchadd("Comment", "• First\\n • Second\\(\\_.*slide 007\\)\\@=")
|
25
|
+
b 8
|
26
|
+
6,17SyntaxInclude ruby
|
27
|
+
b 9
|
28
|
+
6,17SyntaxInclude ruby
|
29
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\n highlight = \\(\\_.*slide 009\\)\\@=")
|
30
|
+
call matchadd("Comment", "\\n end\\n end\\n end\\(\\_.*slide 009\\)\\@=")
|
31
|
+
b 10
|
32
|
+
6,17SyntaxInclude ruby
|
33
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def\\(\\_.*slide 010\\)\\@=")
|
34
|
+
call matchadd("Comment", "highlight = \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 010\\)\\@=")
|
35
|
+
b 11
|
36
|
+
6,17SyntaxInclude ruby
|
37
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\(\\_.*slide 011\\)\\@=")
|
38
|
+
call matchadd("Comment", "= \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 011\\)\\@=")
|
39
|
+
b 12
|
40
|
+
6,17SyntaxInclude ruby
|
41
|
+
call matchadd("Comment", "module\\(\\_.*slide 012\\)\\@=")
|
42
|
+
call matchadd("Comment", "class foo\\n def slide\\n \"of a\"\\n end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 012\\)\\@=")
|
43
|
+
b 13
|
44
|
+
6,17SyntaxInclude ruby
|
45
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def slide\\(\\_.*slide 013\\)\\@=")
|
46
|
+
call matchadd("Comment", "end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 013\\)\\@=")
|
47
|
+
b 14
|
48
|
+
6,17SyntaxInclude ruby
|
49
|
+
call matchadd("Comment", "module Parts\\n class foo\\n def\\(\\_.*slide 014\\)\\@=")
|
50
|
+
call matchadd("Comment", "\"of a\"\\n end\\n\\n def can\\n highlight = \"vimdeck\"\\n end\\n end\\n end\\(\\_.*slide 014\\)\\@=")
|
51
|
+
b 15
|
52
|
+
6,16SyntaxInclude javascript
|
53
|
+
b 16
|
54
|
+
6,16SyntaxInclude javascript
|
55
|
+
call matchadd("Comment", "(function( window, $, undefined ) {\\n $( '.hello' ).on( 'click', function sayHello() {\\(\\_.*slide 016\\)\\@=")
|
56
|
+
call matchadd("Comment", "\\n });\\n })( window, jQuery );\\(\\_.*slide 016\\)\\@=")
|
57
|
+
b 17
|
58
|
+
6,16SyntaxInclude javascript
|
59
|
+
call matchadd("Comment", "<body>\\(\\_.*slide 017\\)\\@=")
|
60
|
+
call matchadd("Comment", "</body>\\(\\_.*slide 017\\)\\@=")
|
61
|
+
b 18
|
62
|
+
6,16SyntaxInclude javascript
|
63
|
+
call matchadd("Comment", "(function( window, $, undefined ) {\\n $( '.hello' ).on( 'click', function sayHello() {\\(\\_.*slide 018\\)\\@=")
|
64
|
+
call matchadd("Comment", "\\n });\\n })( window, jQuery );\\n\\n <body>\\n <a href=\"#\" class=\"hello\">Hello!</a>\\n </body>\\(\\_.*slide 018\\)\\@=")
|
65
|
+
b 19
|
66
|
+
b 1
|
@@ -0,0 +1,92 @@
|
|
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
|
+
slide 001
|
@@ -0,0 +1,106 @@
|
|
1
|
+
_ ________ ___ ____ ____ ________ _______ __
|
2
|
+
| | / / _/ |/ / / __ \/ __ \/ ____/ //_/ ___// /
|
3
|
+
| | / // // /|_/ / / /_/ / / / / / / ,< \__ \/ /
|
4
|
+
| |/ // // / / / / _, _/ /_/ / /___/ /| |___/ /_/
|
5
|
+
|___/___/_/ /_/ /_/ |_|\____/\____/_/ |_/____(_)
|
6
|
+
|
7
|
+
+------------------------------+
|
8
|
+
| ..:. |
|
9
|
+
| ~+~========~+~.:=========: |
|
10
|
+
| =o=oooooo=~~~~~+=oooooooo~ |
|
11
|
+
| .+oooooo~~~~~~~=oooooo+.. |
|
12
|
+
| .oooooo=~~~~~+ooooo=+:. |
|
13
|
+
| :ooooo==~~~+ooooo=+~~:. |
|
14
|
+
| .:~~=ooooo=++ooooo=+~~~~~~:. |
|
15
|
+
|.:~~~=oooooooooooo+~~~~~~~~~~.|
|
16
|
+
| :~oooooooooo==~~~~~~~~~. |
|
17
|
+
| ooooooooo+++~~~~~~~:.. |
|
18
|
+
| ooooooo+~~+~~+=++==~++: |
|
19
|
+
| =ooo=+~~~++~~=+~+=..o+. |
|
20
|
+
| .=oo+~ .~+=~~o+.+o= =+~ |
|
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
|
+
slide 002
|
@@ -0,0 +1,90 @@
|
|
1
|
+
___ ___ ___ ___ ________ ___ ___ __ ______
|
2
|
+
/ _ \/ _ | / _ \/ _ |/ ___/ _ \/ _ | / _ \/ // / __/
|
3
|
+
/ ___/ __ |/ , _/ __ / (_ / , _/ __ |/ ___/ _ /\ \
|
4
|
+
/_/ /_/ |_/_/|_/_/ |_\___/_/|_/_/ |_/_/ /_//_/___/
|
5
|
+
|
6
|
+
This is a `paragraph` (plain text)
|
7
|
+
|
8
|
+
This is another paragraph
|
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
|
+
slide 003
|
@@ -0,0 +1,90 @@
|
|
1
|
+
_ ____ ____ ______ _______ _______ __ ______________
|
2
|
+
/ |/ / / / / |/ / _ )/ __/ _ \/ __/ _ \ / / / _/ __/_ __/
|
3
|
+
/ / /_/ / /|_/ / _ / _// , _/ _// // / / /___/ /_\ \ / /
|
4
|
+
/_/|_/\____/_/ /_/____/___/_/|_/___/____/ /____/___/___/ /_/
|
5
|
+
|
6
|
+
1. This *is* how a *numbered* list
|
7
|
+
2. Looks in **vimdeck**
|
8
|
+
3. What do ***you*** think?
|
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
|
+
slide 004
|
@@ -0,0 +1,91 @@
|
|
1
|
+
____ __ ____ __ _________________
|
2
|
+
/ __ )/ / / / / / / / ____/_ __/ ___/
|
3
|
+
/ __ / / / / / / / / __/ / / \__ \
|
4
|
+
/ /_/ / /_/ / /___/ /___/ /___ / / ___/ /
|
5
|
+
/_____/\____/_____/_____/_____/ /_/ /____/
|
6
|
+
|
7
|
+
• First
|
8
|
+
• Second
|
9
|
+
• Third
|
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
|
+
slide 005
|
@@ -0,0 +1,91 @@
|
|
1
|
+
____ __ ____ __ _________________
|
2
|
+
/ __ )/ / / / / / / / ____/_ __/ ___/
|
3
|
+
/ __ / / / / / / / / __/ / / \__ \
|
4
|
+
/ /_/ / /_/ / /___/ /___/ /___ / / ___/ /
|
5
|
+
/_____/\____/_____/_____/_____/ /_/ /____/
|
6
|
+
|
7
|
+
• First
|
8
|
+
• Second
|
9
|
+
• Third
|
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
|
+
slide 006
|