2019-05-21 18:24:38 +02:00
|
|
|
# Crystal
|
|
|
|
# https://crystal-lang.org
|
|
|
|
|
2020-08-01 17:27:21 +02:00
|
|
|
# Detection
|
|
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2019-05-21 18:24:38 +02:00
|
|
|
hook global BufCreate '.*\.cr' %{
|
2020-08-01 17:34:55 +02:00
|
|
|
set-option buffer filetype crystal
|
2019-05-21 18:24:38 +02:00
|
|
|
}
|
|
|
|
|
2020-08-01 17:27:21 +02:00
|
|
|
# Initialization
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
2019-05-21 18:24:38 +02:00
|
|
|
hook global WinSetOption filetype=crystal %{
|
2020-08-01 17:34:55 +02:00
|
|
|
require-module crystal
|
2020-08-01 17:24:06 +02:00
|
|
|
|
2020-08-01 17:34:55 +02:00
|
|
|
add-highlighter window/crystal ref crystal
|
|
|
|
evaluate-commands set-option window static_words %opt{crystal_keywords} %opt{crystal_attributes} %opt{crystal_objects}
|
2020-08-01 17:24:06 +02:00
|
|
|
|
2022-04-30 11:27:12 +02:00
|
|
|
hook window ModeChange pop:insert:.* -group crystal-trim-indent crystal-trim-indent
|
2020-08-01 17:49:53 +02:00
|
|
|
hook window InsertChar .* -group crystal-indent crystal-indent-on-char
|
2020-08-01 17:39:08 +02:00
|
|
|
hook window InsertChar '\n' -group crystal-indent crystal-indent-on-new-line
|
2020-08-01 17:49:53 +02:00
|
|
|
hook window InsertChar '\n' -group crystal-insert crystal-insert-on-new-line
|
2020-08-01 17:24:06 +02:00
|
|
|
|
2020-08-01 17:34:55 +02:00
|
|
|
hook -always -once window WinSetOption filetype=.* %{
|
|
|
|
remove-highlighter window/crystal
|
|
|
|
remove-hooks window crystal-.+
|
|
|
|
}
|
2019-05-21 18:24:38 +02:00
|
|
|
}
|
|
|
|
|
2020-08-01 17:30:12 +02:00
|
|
|
provide-module crystal %§
|
2020-08-01 17:34:55 +02:00
|
|
|
|
2020-08-01 17:36:14 +02:00
|
|
|
declare-option -hidden str-list crystal_keywords 'abstract' 'alias' 'annotation' 'as' 'asm' 'begin' 'break' 'case' 'class' 'def' 'do' 'else' 'elsif' 'end' 'ensure' 'enum' 'extend' 'false' 'for' 'fun' 'if' 'include' 'instance_sizeof' 'is_a?' 'lib' 'macro' 'module' 'next' 'nil' 'nil?' 'of' 'offsetof' 'out' 'pointerof' 'private' 'protected' 'require' 'rescue' 'responds_to?' 'return' 'select' 'self' 'sizeof' 'struct' 'super' 'then' 'true' 'type' 'typeof' 'uninitialized' 'union' 'unless' 'until' 'verbatim' 'when' 'while' 'with' 'yield'
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/methods_and_instance_variables.html#getters-and-setters
|
|
|
|
declare-option -hidden str-list crystal_attributes 'getter' 'setter' 'property'
|
|
|
|
declare-option -hidden str-list crystal_operators '+' '-' '*' '/' '//' '%' '|' '&' '^' '~' '**' '<<' '<' '<=' '==' '!=' '=~' '!~' '>>' '>' '>=' '<=>' '===' '[]' '[]=' '[]?' '[' '&+' '&-' '&*' '&**'
|
|
|
|
declare-option -hidden str-list crystal_objects 'Adler32' 'ArgumentError' 'Array' 'Atomic' 'Base64' 'Benchmark' 'BigDecimal' 'BigFloat' 'BigInt' 'BigRational' 'BitArray' 'Bool' 'Box' 'Bytes' 'Channel' 'Char' 'Class' 'Colorize' 'Comparable' 'Complex' 'Concurrent' 'ConcurrentExecutionException' 'CRC32' 'Crypto' 'Crystal' 'CSV' 'Debug' 'Deprecated' 'Deque' 'Digest' 'Dir' 'DivisionByZeroError' 'DL' 'ECR' 'Enum' 'Enumerable' 'ENV' 'Errno' 'Exception' 'Fiber' 'File' 'FileUtils' 'Flags' 'Flate' 'Float' 'Float32' 'Float64' 'GC' 'Gzip' 'Hash' 'HTML' 'HTTP' 'Indexable' 'IndexError' 'INI' 'Int' 'Int128' 'Int16' 'Int32' 'Int64' 'Int8' 'InvalidBigDecimalException' 'InvalidByteSequenceError' 'IO' 'IPSocket' 'Iterable' 'Iterator' 'JSON' 'KeyError' 'Levenshtein' 'Link' 'LLVM' 'Logger' 'Markdown' 'Math' 'MIME' 'Mutex' 'NamedTuple' 'Nil' 'NilAssertionError' 'NotImplementedError' 'Number' 'OAuth' 'OAuth2' 'Object' 'OpenSSL' 'OptionParser' 'OverflowError' 'PartialComparable' 'Path' 'Pointer' 'PrettyPrint' 'Proc' 'Process' 'Random' 'Range' 'Readline' 'Reference' 'Reflect' 'Regex' 'SemanticVersion' 'Set' 'Signal' 'Slice' 'Socket' 'Spec' 'StaticArray' 'String' 'StringPool' 'StringScanner' 'Struct' 'Symbol' 'System' 'TCPServer' 'TCPSocket' 'Termios' 'Time' 'Tuple' 'TypeCastError' 'UDPSocket' 'UInt128' 'UInt16' 'UInt32' 'UInt64' 'UInt8' 'Unicode' 'Union' 'UNIXServer' 'UNIXSocket' 'URI' 'UUID' 'VaList' 'Value' 'WeakRef' 'XML' 'YAML' 'Zip' 'Zlib'
|
|
|
|
|
|
|
|
# Highlighters
|
|
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
|
|
|
|
add-highlighter shared/crystal regions
|
|
|
|
add-highlighter shared/crystal/code default-region group
|
|
|
|
|
|
|
|
# Comments
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/comments.html
|
|
|
|
# Avoid string literals with interpolation
|
|
|
|
add-highlighter shared/crystal/comment region '#(?!\{)' '$' fill comment
|
|
|
|
|
|
|
|
# String
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/string.html
|
2021-09-04 23:50:12 +02:00
|
|
|
add-highlighter shared/crystal/string region '"' '(?<!\\)(\\\\)*"' regions
|
2020-08-01 17:36:14 +02:00
|
|
|
|
|
|
|
# Percent string literals
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/string.html#percent-string-literals
|
|
|
|
add-highlighter shared/crystal/parenthesis-string region -recurse '\(' '%Q?\(' '\)' regions
|
2020-08-01 17:50:27 +02:00
|
|
|
add-highlighter shared/crystal/bracket-string region -recurse '\[' '%Q?\[' '\]' regions
|
|
|
|
add-highlighter shared/crystal/brace-string region -recurse '\{' '%Q?\{' '\}' regions
|
|
|
|
add-highlighter shared/crystal/angle-string region -recurse '<' '%Q?<' '>' regions
|
|
|
|
add-highlighter shared/crystal/pipe-string region '%Q?\|' '\|' regions
|
|
|
|
|
2020-08-01 17:36:14 +02:00
|
|
|
# Raw
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/string.html#percent-string-literals
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/string.html#percent-string-array-literal
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/symbol.html#percent-symbol-array-literal
|
|
|
|
add-highlighter shared/crystal/raw-parenthesis-string region -recurse '\(' '%[qwi]\(' '\)' fill string
|
2020-08-01 17:50:27 +02:00
|
|
|
add-highlighter shared/crystal/raw-bracket-string region -recurse '\[' '%[qwi]\[' '\]' fill string
|
|
|
|
add-highlighter shared/crystal/raw-brace-string region -recurse '\{' '%[qwi]\{' '\}' fill string
|
|
|
|
add-highlighter shared/crystal/raw-angle-string region -recurse '<' '%[qwi]<' '>' fill string
|
|
|
|
add-highlighter shared/crystal/raw-pipe-string region '%[qwi]\|' '\|' fill string
|
2020-08-01 17:36:14 +02:00
|
|
|
|
|
|
|
# Here document
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/string.html#heredoc
|
|
|
|
add-highlighter shared/crystal/heredoc region -match-capture '<<-(\w+)' '^\h*(\w+)$' regions
|
|
|
|
# Raw
|
|
|
|
add-highlighter shared/crystal/raw-heredoc region -match-capture "<<-'(\w+)'" '^\h*(\w+)$' regions
|
|
|
|
add-highlighter shared/crystal/raw-heredoc/fill default-region fill string
|
|
|
|
add-highlighter shared/crystal/raw-heredoc/interpolation region -recurse '\{' '#\{' '\}' fill meta
|
|
|
|
|
|
|
|
# Symbol
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/symbol.html
|
2021-09-04 23:50:12 +02:00
|
|
|
add-highlighter shared/crystal/quoted-symbol region ':"' '(?<!\\)(\\\\)*"' fill value
|
2020-08-01 17:36:14 +02:00
|
|
|
|
|
|
|
# Regular expressions
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/regex.html
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/regex.html#modifiers
|
2021-09-04 23:50:12 +02:00
|
|
|
add-highlighter shared/crystal/regex region '/' '(?<!\\)(\\\\)*/[imx]*' regions
|
2020-08-01 17:36:14 +02:00
|
|
|
# Avoid unterminated regular expression
|
|
|
|
add-highlighter shared/crystal/division region ' / ' '.\K' group
|
|
|
|
|
|
|
|
# Percent regex literals
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/regex.html#percent-regex-literals
|
|
|
|
add-highlighter shared/crystal/parenthesis-regex region -recurse '\(' '%r?\(' '\)[imx]*' regions
|
|
|
|
add-highlighter shared/crystal/bracket-regex region -recurse '\[' '%r?\[' '\][imx]*' regions
|
|
|
|
add-highlighter shared/crystal/brace-regex region -recurse '\{' '%r?\{' '\}[imx]*' regions
|
|
|
|
add-highlighter shared/crystal/angle-regex region -recurse '<' '%r?<' '>[imx]*' regions
|
|
|
|
add-highlighter shared/crystal/pipe-regex region '%r?\|' '\|[imx]*' regions
|
|
|
|
|
|
|
|
# Command
|
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/command.html
|
2021-09-04 23:50:12 +02:00
|
|
|
add-highlighter shared/crystal/command region '`' '(?<!\\)(\\\\)*`' regions
|
2020-08-01 17:36:14 +02:00
|
|
|
|
|
|
|
# Percent command literals
|
|
|
|
add-highlighter shared/crystal/parenthesis-command region -recurse '\(' '%x?\(' '\)' regions
|
|
|
|
add-highlighter shared/crystal/bracket-command region -recurse '\[' '%x?\[' '\]' regions
|
|
|
|
add-highlighter shared/crystal/brace-command region -recurse '\{' '%x?\{' '\}' regions
|
|
|
|
add-highlighter shared/crystal/angle-command region -recurse '<' '%x?<' '>' regions
|
|
|
|
add-highlighter shared/crystal/pipe-command region '%x?\|' '\|' regions
|
|
|
|
|
|
|
|
evaluate-commands %sh[
|
|
|
|
# Keywords
|
|
|
|
eval "set -- $kak_quoted_opt_crystal_keywords"
|
|
|
|
regex="\\b(?:\\Q$1\\E"
|
|
|
|
shift
|
|
|
|
for keyword do
|
|
|
|
regex="$regex|\\Q$keyword\\E"
|
|
|
|
done
|
|
|
|
regex="$regex)\\b"
|
|
|
|
printf 'add-highlighter shared/crystal/code/keywords regex %s 0:keyword\n' "$regex"
|
|
|
|
|
|
|
|
# Attributes
|
|
|
|
eval "set -- $kak_quoted_opt_crystal_attributes"
|
|
|
|
regex="\\b(?:\\Q$1\\E"
|
|
|
|
shift
|
|
|
|
for attribute do
|
|
|
|
regex="$regex|\\Q$attribute\\E"
|
|
|
|
done
|
|
|
|
regex="$regex)\\b"
|
|
|
|
printf 'add-highlighter shared/crystal/code/attributes regex %s 0:attribute\n' "$regex"
|
|
|
|
|
|
|
|
# Symbols
|
|
|
|
eval "set -- $kak_quoted_opt_crystal_operators"
|
|
|
|
# Avoid to match modules
|
|
|
|
regex="(?<!:):(?:\\w+[?!]?"
|
|
|
|
for operator do
|
|
|
|
regex="$regex|\\Q$operator\\E"
|
|
|
|
done
|
|
|
|
regex="$regex)"
|
|
|
|
printf 'add-highlighter shared/crystal/code/symbols regex %%(%s) 0:value\n' "$regex"
|
|
|
|
|
|
|
|
# Objects
|
|
|
|
eval "set -- $kak_quoted_opt_crystal_objects"
|
|
|
|
regex="\\b(?:\\Q$1\\E"
|
|
|
|
shift
|
|
|
|
for object do
|
|
|
|
regex="$regex|\\Q$object\\E"
|
|
|
|
done
|
|
|
|
regex="$regex)\\b"
|
|
|
|
printf 'add-highlighter shared/crystal/code/objects regex %s 0:builtin\n' "$regex"
|
|
|
|
|
|
|
|
# Interpolation
|
2019-06-05 01:43:14 +02:00
|
|
|
# String
|
2020-08-01 17:36:14 +02:00
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/string.html#interpolation
|
|
|
|
for id in string parenthesis-string bracket-string brace-string angle-string pipe-string heredoc; do
|
|
|
|
printf "
|
|
|
|
add-highlighter shared/crystal/$id/fill default-region fill string
|
|
|
|
add-highlighter shared/crystal/$id/interpolation region -recurse '\\{' '#\\{' '\\}' ref crystal
|
|
|
|
"
|
|
|
|
done
|
2019-06-05 01:43:14 +02:00
|
|
|
|
|
|
|
# Regular expressions
|
2020-08-01 17:36:14 +02:00
|
|
|
# https://crystal-lang.org/reference/syntax_and_semantics/literals/regex.html#interpolation
|
|
|
|
for id in regex parenthesis-regex bracket-regex brace-regex angle-regex pipe-regex; do
|
|
|
|
printf "
|
|
|
|
add-highlighter shared/crystal/$id/fill default-region fill meta
|
|
|
|
add-highlighter shared/crystal/$id/interpolation region -recurse '\\{' '#\\{' '\\}' ref crystal
|
|
|
|
"
|
|
|
|
done
|
2019-06-05 01:43:14 +02:00
|
|
|
|
|
|
|
# Command
|
2020-08-01 17:36:14 +02:00
|
|
|
for id in command parenthesis-command bracket-command brace-command angle-command pipe-command; do
|
|
|
|
printf "
|
|
|
|
add-highlighter shared/crystal/$id/fill default-region fill meta
|
|
|
|
add-highlighter shared/crystal/$id/interpolation region -recurse '\\{' '#\\{' '\\}' ref crystal
|
|
|
|
"
|
|
|
|
done
|
|
|
|
]
|
|
|
|
|
|
|
|
# Commands
|
|
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
|
2020-08-01 17:58:21 +02:00
|
|
|
define-command -hidden crystal-trim-indent %{
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %{
|
2022-03-16 23:20:07 +01:00
|
|
|
execute-keys x
|
2020-08-01 17:58:21 +02:00
|
|
|
# remove trailing white spaces
|
|
|
|
try %{ execute-keys -draft s \h+$ <ret> d }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-01 19:32:16 +02:00
|
|
|
define-command -hidden crystal-indent-on-char %{
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %{
|
2020-08-02 19:22:28 +02:00
|
|
|
# align 'else' to 'if/case'
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft x <a-k> ^\h*else$ <ret> <a-a>i <a-semicolon> <a-?> ^\h*(?:if|case) <ret> <a-S> 1<a-&> }
|
2020-08-02 19:22:28 +02:00
|
|
|
# align 'elsif' to 'if'
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft x <a-k> ^\h*elsif$ <ret> <a-a>i <a-semicolon> <a-?> ^\h*(?:if) <ret> <a-S> 1<a-&> }
|
2020-08-02 19:22:28 +02:00
|
|
|
# align 'when' to 'case'
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft x <a-k> ^\h*when$ <ret> <a-a>i <a-semicolon> <a-?> ^\h*(?:case) <ret> <a-S> 1<a-&> }
|
2020-08-01 19:32:16 +02:00
|
|
|
# align 'rescue' to 'begin/def'
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft x <a-k> ^\h*rescue$ <ret> <a-a>i <a-semicolon> <a-?> ^\h*(?:begin|def) <ret> <a-S> 1<a-&> }
|
2020-08-01 19:32:16 +02:00
|
|
|
# align 'end' to opening structure
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft x <a-k> ^\h*end$ <ret> <a-a>i <a-semicolon> <a-?> ^\h*(?:begin|case|class|def|for|if|module|unless|until|while) <ret> <a-S> 1<a-&> }
|
2020-08-01 19:32:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-01 17:39:08 +02:00
|
|
|
define-command -hidden crystal-indent-on-new-line %{
|
2020-08-01 17:53:51 +02:00
|
|
|
evaluate-commands -no-hooks -draft -itersel %{
|
|
|
|
# Copy previous line indent
|
2020-08-01 17:56:02 +02:00
|
|
|
try %{ execute-keys -draft K <a-&> }
|
2020-08-02 19:33:56 +02:00
|
|
|
# Remove previous line's trailing spaces
|
2022-04-30 11:17:42 +02:00
|
|
|
try %{ execute-keys -draft k :crystal-trim-indent <ret> }
|
2020-08-01 18:08:47 +02:00
|
|
|
# Indent after start structure/opening statement
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x <a-k> ^\h*(?:begin|case|class|def|else|elsif|ensure|for|if|module|rescue|unless|until|when|while|.+\bdo$|.+\bdo\h\|.+(?=\|))[^0-9A-Za-z_!?] <ret> j <a-gt> }
|
2020-08-01 17:36:14 +02:00
|
|
|
}
|
|
|
|
}
|
2020-05-30 23:10:22 +02:00
|
|
|
|
2020-08-01 19:46:35 +02:00
|
|
|
define-command -hidden crystal-insert-on-new-line %[
|
|
|
|
evaluate-commands -no-hooks -draft -itersel %[
|
2020-08-02 19:39:40 +02:00
|
|
|
# copy _#_ comment prefix and following white spaces
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x s '^\h*\K#\h*' <ret> y j x<semicolon> P }
|
2020-08-02 19:39:40 +02:00
|
|
|
# wisely add end structure
|
2020-08-01 19:46:35 +02:00
|
|
|
evaluate-commands -save-regs x %[
|
2022-03-16 23:20:07 +01:00
|
|
|
try %{ execute-keys -draft k x s ^ \h + <ret> \" x y } catch %{ reg x '' }
|
2020-08-01 19:46:35 +02:00
|
|
|
try %[
|
|
|
|
evaluate-commands -draft %[
|
2020-08-02 19:39:40 +02:00
|
|
|
# Check if previous line opens a block
|
2022-03-16 23:20:07 +01:00
|
|
|
execute-keys -draft kx <a-k>^<c-r>x(?:begin|case|class|def|for|if|module|unless|until|while|.+\bdo$|.+\bdo\h\|.+(?=\|))[^0-9A-Za-z_!?]<ret>
|
2020-08-02 19:39:40 +02:00
|
|
|
# Check that we do not already have an end for this indent level which is first set via `crystal-indent-on-new-line` hook
|
2022-03-16 23:20:07 +01:00
|
|
|
execute-keys -draft }i J x <a-K> ^<c-r>x(?:end|else|elsif|rescue|when)[^0-9A-Za-z_!?]<ret>
|
2020-08-01 19:46:35 +02:00
|
|
|
]
|
2020-08-02 19:39:40 +02:00
|
|
|
execute-keys -draft o<c-r>xend<esc> # insert a new line with containing end
|
2020-08-01 19:46:35 +02:00
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]
|
2020-08-01 17:49:53 +02:00
|
|
|
|
2020-08-01 17:36:14 +02:00
|
|
|
define-command -hidden crystal-fetch-keywords %{
|
|
|
|
set-register dquote %sh{
|
|
|
|
curl --location https://github.com/crystal-lang/crystal/raw/master/src/compiler/crystal/syntax/lexer.cr |
|
2020-08-01 18:33:35 +02:00
|
|
|
kak -f '%1scheck_ident_or_keyword\(:(\w+\??), \w+\)<ret>y%<a-R>a<ret><esc><a-_>a<del><esc>|sort<ret>'
|
2019-05-21 18:24:38 +02:00
|
|
|
}
|
2020-08-01 17:36:14 +02:00
|
|
|
}
|
2020-05-30 23:10:22 +02:00
|
|
|
|
2020-08-01 17:36:14 +02:00
|
|
|
define-command -hidden crystal-fetch-operators %{
|
|
|
|
set-register dquote %sh{
|
|
|
|
curl --location https://github.com/crystal-lang/crystal/raw/master/src/compiler/crystal/syntax/parser.cr |
|
|
|
|
kak -f '/AtomicWithMethodCheck =<ret>x1s:"([^"]+)"<ret>y%<a-R>i''<esc>a''<ret><esc><a-_>a<del><esc>'
|
2019-06-11 18:33:08 +02:00
|
|
|
}
|
2020-08-01 17:36:14 +02:00
|
|
|
}
|
2020-05-30 23:10:22 +02:00
|
|
|
|
2020-08-01 17:36:14 +02:00
|
|
|
define-command -hidden crystal-fetch-objects %{
|
|
|
|
set-register dquote %sh{
|
|
|
|
curl --location https://crystal-lang.org/api/ |
|
|
|
|
# Remove Top Level Namespace
|
2022-04-15 00:14:17 +02:00
|
|
|
kak -f '%1sdata-id="github.com/crystal-lang/crystal/(\w+)"<ret>)<a-,>y%<a-R>a<ret><esc><a-_>a<del><esc>'
|
2019-06-11 18:33:08 +02:00
|
|
|
}
|
2020-08-01 17:36:14 +02:00
|
|
|
}
|
|
|
|
|
2020-08-01 17:30:12 +02:00
|
|
|
§
|