`*emphasized text*` |
*emphasized text* |
`**strong emphasis**` |
**strong emphasis** |
`` `literal text` `` |
`literal text` |
`\*escaped special characters\*` |
\*escaped special characters\* |
`[external link](http://google.com)` |
[external link](http://google.com) |
`` |
 |
Wikilink: `[Front Page]()` |
Wikilink: [Front Page]() |
`H~2~O` |
H~2~O |
`10^100^` |
10^100^ |
`~~strikeout~~` |
~~strikeout~~ |
`$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$`
|
$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$^[If this looks like
code, it's because jsMath is
not installed on your system. Contact your administrator to request it.]
|
`A simple footnote.^[Or is it so simple?]`
|
A simple footnote.^[Or is it so simple?]
|
> an indented paragraph,
> usually used for quotations
|
> an indented paragraph,
> usually used for quotations
|
#!/bin/sh -e
# code, indented four spaces
echo "Hello world"
|
#!/bin/sh -e
# code, indented four spaces
echo "Hello world"
|
* a bulleted list
* second item
- sublist
- and more
* back to main list
1. this item has an ordered
2. sublist
a) you can also use letters
b) another item
|
* a bulleted list
* second item
- sublist
- and more
* back to main list
1. this item has an ordered
2. sublist
a) you can also use letters
b) another item
|
Fruit Quantity
-------- -----------
apples 30,200
oranges 1,998
pears 42
Table: Our fruit inventory
|
Fruit Quantity
-------- -----------
apples 30,200
oranges 1,998
pears 42
Table: Our fruit inventory
|
For headings, prefix a line with one or more `#` signs: one for a major heading,
two for a subheading, three for a subsubheading. Be sure to leave space before
and after the heading.
# Markdown
Text...
## Some examples...
Text...
## Wiki links
Links to other wiki pages are formed this way: `[Page Name]()`.
(Gitit converts markdown links with empty targets into wikilinks.)
To link to a wiki page using something else as the link text:
`[something else](Page Name)`.
Note that page names may contain spaces and some special characters.
They need not be CamelCase. CamelCase words are *not* automatically
converted to wiki links.
Wiki pages may be organized into directories. So, if you have
several pages on wine, you may wish to organize them like so:
Wine/Pinot Noir
Wine/Burgundy
Wine/Cabernet Sauvignon
Note that a wiki link `[Burgundy]()` that occurs inside the `Wine`
directory will link to `Wine/Burgundy`, and not to `Burgundy`.
To link to a top-level page called `Burgundy`, you'd have to use
`[Burgundy](/Burgundy)`.
To link to a directory listing for a subdirectory, use a trailing
slash: `[Wine/]()` will link to a listing of the `Wine` subdirectory.
gitit-0.12.1/data/markup.Org 0000644 0000000 0000000 00000012334 12661140712 013765 0 ustar 00 0000000 0000000 * Markdown
This wiki's pages are written in
[[http://johnmacfarlane.net/pandoc][pandoc]]'s extended form of
[[http://daringfireball.net/projects/markdown][markdown]]. If you're not
familiar with markdown, you should start by looking at the
[[http://daringfireball.net/projects/markdown/basics][markdown "basics"
page]] and the
[[http://daringfireball.net/projects/markdown/syntax][markdown syntax
description]]. Consult the
[[http://johnmacfarlane.net/pandoc/README.html][pandoc User's Guide]]
for information about pandoc's syntax for footnotes, tables, description
lists, and other elements not present in standard markdown.
Markdown is pretty intuitive, since it is based on email conventions.
Here are some examples to get you started:
#+BEGIN_HTML
#+END_HTML
=*emphasized text*=
#+BEGIN_HTML
|
#+END_HTML
/emphasized text/
#+BEGIN_HTML
|
#+END_HTML
=**strong emphasis**=
#+BEGIN_HTML
|
#+END_HTML
*strong emphasis*
#+BEGIN_HTML
|
#+END_HTML
=`literal text`=
#+BEGIN_HTML
|
#+END_HTML
=literal text=
#+BEGIN_HTML
|
#+END_HTML
=\*escaped special characters\*=
#+BEGIN_HTML
|
#+END_HTML
*escaped special characters*
#+BEGIN_HTML
|
#+END_HTML
=[external link](http://google.com)=
#+BEGIN_HTML
|
#+END_HTML
[[http://google.com][external link]]
#+BEGIN_HTML
|
#+END_HTML
==
#+BEGIN_HTML
|
#+END_HTML
[[/img/icons/folder.png]]
#+BEGIN_HTML
|
#+END_HTML
Wikilink: =[Front Page]()=
#+BEGIN_HTML
|
#+END_HTML
Wikilink: [[][Front Page]]
#+BEGIN_HTML
|
#+END_HTML
=H~2~O=
#+BEGIN_HTML
|
#+END_HTML
H_{2}O
#+BEGIN_HTML
|
#+END_HTML
=10^100^=
#+BEGIN_HTML
|
#+END_HTML
10^{100}
#+BEGIN_HTML
|
#+END_HTML
=~~strikeout~~=
#+BEGIN_HTML
|
#+END_HTML
+strikeout+
#+BEGIN_HTML
|
#+END_HTML
=$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$=
#+BEGIN_HTML
|
#+END_HTML
$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$ [1]
#+BEGIN_HTML
|
#+END_HTML
=A simple footnote.^[Or is it so simple?]=
#+BEGIN_HTML
|
#+END_HTML
A simple footnote. [2]
#+BEGIN_HTML
|
> an indented paragraph,
> usually used for quotations
|
#+END_HTML
#+BEGIN_QUOTE
an indented paragraph, usually used for quotations
#+END_QUOTE
#+BEGIN_HTML
|
#!/bin/sh -e
# code, indented four spaces
echo "Hello world"
|
#+END_HTML
#+BEGIN_EXAMPLE
#!/bin/sh -e
# code, indented four spaces
echo "Hello world"
#+END_EXAMPLE
#+BEGIN_HTML
|
* a bulleted list
* second item
- sublist
- and more
* back to main list
1. this item has an ordered
2. sublist
a) you can also use letters
b) another item
|
#+END_HTML
- a bulleted list
- second item
- sublist
- and more
- back to main list
1. this item has an ordered
2. sublist
1) you can also use letters
2) another item
#+BEGIN_HTML
|
Fruit Quantity
-------- -----------
apples 30,200
oranges 1,998
pears 42
Table: Our fruit inventory
|
#+END_HTML
| Fruit | Quantity |
|-----------+------------|
| apples | 30,200 |
| oranges | 1,998 |
| pears | 42 |
#+CAPTION: Our fruit inventory
#+BEGIN_HTML
|
#+END_HTML
For headings, prefix a line with one or more =#= signs: one for a major
heading, two for a subheading, three for a subsubheading. Be sure to
leave space before and after the heading.
#+BEGIN_EXAMPLE
# Markdown
Text...
## Some examples...
Text...
#+END_EXAMPLE
** Wiki links
Links to other wiki pages are formed this way: =[Page Name]()=. (Gitit
converts markdown links with empty targets into wikilinks.)
To link to a wiki page using something else as the link text:
=[something else](Page Name)=.
Note that page names may contain spaces and some special characters.
They need not be CamelCase. CamelCase words are /not/ automatically
converted to wiki links.
Wiki pages may be organized into directories. So, if you have several
pages on wine, you may wish to organize them like so:
#+BEGIN_EXAMPLE
Wine/Pinot Noir
Wine/Burgundy
Wine/Cabernet Sauvignon
#+END_EXAMPLE
Note that a wiki link =[Burgundy]()= that occurs inside the =Wine=
directory will link to =Wine/Burgundy=, and not to =Burgundy=. To link
to a top-level page called =Burgundy=, you'd have to use
=[Burgundy](/Burgundy)=.
To link to a directory listing for a subdirectory, use a trailing slash:
=[Wine/]()= will link to a listing of the =Wine= subdirectory.
[1] If this looks like code, it's because jsMath is not installed on
your system. Contact your administrator to request it.
[2] Or is it so simple?
gitit-0.12.1/data/markup.RST 0000644 0000000 0000000 00000003054 12661140712 013705 0 ustar 00 0000000 0000000 # Markup
This wiki's pages are written in [reStructuredText]. If you're
not familiar with reStructuredText, you should start by looking at
the [primer] and the [quick reference guide]. Note that not all
reStructuredText constructs are currently supported. Use the
preview button if you're in doubt.
[reStructuredText]: http://docutils.sourceforge.net/rst.html
[primer]: http://docutils.sourceforge.net/docs/user/rst/quickstart.html
[quick reference guide]: http://docutils.sourceforge.net/docs/user/rst/quickref.html
## Wiki links
Links to other wiki pages are formed this way: `` `Page Name <>`_ ``.
(Gitit converts markdown links with empty targets into wikilinks.)
To link to a wiki page using something else as the link text:
either `` `something else `_ `` or
`something else`_
.. _`something else`: Page Name
Note that page names may contain spaces and some special
characters. They need not be CamelCase. CamelCase words are *not*
automatically converted to wiki links.
Wiki pages may be organized into directories. So, if you have
several pages on wine, you may wish to organize them like so:
Wine/Pinot Noir
Wine/Burgundy
Wine/Cabernet Sauvignon
Note that a wiki link `` `Burgundy <>`_ `` that occurs inside the `Wine`
directory will link to `Wine/Burgundy`, and not to `Burgundy`. To
link to a top-level page called `Burgundy`, you'd have to use
`` `Burgundy `_ ``.
To link to a directory listing for a subdirectory, use a trailing
slash: `` `Wine/ <>`_ `` will link to a listing of the `Wine` subdirectory.
gitit-0.12.1/data/markup.Textile 0000644 0000000 0000000 00000011077 12661140712 014657 0 ustar 00 0000000 0000000 h1(#markdown). Markdown
This wiki's pages are written in "pandoc":http://johnmacfarlane.net/pandoc's extended form of "markdown":http://daringfireball.net/projects/markdown. If you're not familiar with markdown, you should start by looking at the "markdown "basics" page":http://daringfireball.net/projects/markdown/basics and the "markdown syntax description":http://daringfireball.net/projects/markdown/syntax. Consult the "pandoc User's Guide":http://johnmacfarlane.net/pandoc/README.html for information about pandoc's syntax for footnotes, tables, description lists, and other elements not present in standard markdown.
Markdown is pretty intuitive, since it is based on email conventions. Here are some examples to get you started:
@*emphasized text*@
|
_emphasized text_
|
@**strong emphasis**@
|
*strong emphasis*
|
@`literal text`@
|
@literal text@
|
@\*escaped special characters\*@
|
*escaped special characters*
|
@[external link](http://google.com)@
|
"external link":http://google.com
|
@@
|
!/img/icons/folder.png(folder)!
|
Wikilink: @[Front Page]()@
|
Wikilink: "Front Page":
|
@H~2~O@
|
H[~2~]O
|
@10^100^@
|
10[^100^]
|
@~~strikeout~~@
|
-strikeout-
|
@$x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}$@
|
x = \frac{{ - b \pm \sqrt {b^2 - 4ac} }}{{2a}}[1]
|
@A simple footnote.^[Or is it so simple?]@
|
A simple footnote.[2]
|
> an indented paragraph,
> usually used for quotations
|
bq. an indented paragraph, usually used for quotations
|
#!/bin/sh -e
# code, indented four spaces
echo "Hello world"
|
bc. #!/bin/sh -e
# code, indented four spaces
echo "Hello world"
|
* a bulleted list
* second item
- sublist
- and more
* back to main list
1. this item has an ordered
2. sublist
a) you can also use letters
b) another item
|
- a bulleted list
- second item
- back to main list
- this item has an ordered
- sublist
- you can also use letters
- another item
|
Fruit Quantity
-------- -----------
apples 30,200
oranges 1,998
pears 42
Table: Our fruit inventory
|
Our fruit inventory
apples |
30,200 |
oranges |
1,998 |
pears |
42 |
|
For headings, prefix a line with one or more @#@ signs: one for a major heading, two for a subheading, three for a subsubheading. Be sure to leave space before and after the heading.
# Markdown
Text...
## Some examples...
Text...
h2(#wiki-links). Wiki links
Links to other wiki pages are formed this way: @[Page Name]()@. (Gitit converts markdown links with empty targets into wikilinks.)
To link to a wiki page using something else as the link text: @[something else](Page Name)@.
Note that page names may contain spaces and some special characters. They need not be CamelCase. CamelCase words are _not_ automatically converted to wiki links.
Wiki pages may be organized into directories. So, if you have several pages on wine, you may wish to organize them like so:
bc. Wine/Pinot Noir
Wine/Burgundy
Wine/Cabernet Sauvignon
Note that a wiki link @[Burgundy]()@ that occurs inside the @Wine@ directory will link to @Wine/Burgundy@, and not to @Burgundy@. To link to a top-level page called @Burgundy@, you'd have to use @[Burgundy](/Burgundy)@.
To link to a directory listing for a subdirectory, use a trailing slash: @[Wine/]()@ will link to a listing of the @Wine@ subdirectory.
fn1. If this looks like code, it's because jsMath is not installed on your system. Contact your administrator to request it.
fn2. Or is it so simple?
gitit-0.12.1/data/post-update 0000644 0000000 0000000 00000004004 12661140712 014200 0 ustar 00 0000000 0000000 #!/bin/sh
#
# This hook does two things:
#
# 1. update the "info" files that allow the list of references to be
# queries over dumb transports such as http
#
# 2. if this repository looks like it is a non-bare repository, and
# the checked-out branch is pushed to, then update the working copy.
# This makes "push" function somewhat similarly to darcs and bzr.
#
# To enable this hook, make this file executable by "chmod +x post-update".
git update-server-info
is_bare=$(git config --get --bool core.bare)
if [ -z "$is_bare" ]
then
# for compatibility's sake, guess
git_dir_full=$(cd $GIT_DIR; pwd)
case $git_dir_full in */.git) is_bare=false;; *) is_bare=true;; esac
fi
update_wc() {
ref=$1
echo "Push to checked out branch $ref" >&2
if [ ! -f $GIT_DIR/logs/HEAD ]
then
echo "E:push to non-bare repository requires a HEAD reflog" >&2
exit 1
fi
if (cd $GIT_WORK_TREE; git diff-files -q --exit-code >/dev/null)
then
wc_dirty=0
else
echo "W:unstaged changes found in working copy" >&2
wc_dirty=1
desc="working copy"
fi
if git diff-index --cached HEAD@{1} >/dev/null
then
index_dirty=0
else
echo "W:uncommitted, staged changes found" >&2
index_dirty=1
if [ -n "$desc" ]
then
desc="$desc and index"
else
desc="index"
fi
fi
if [ "$wc_dirty" -ne 0 -o "$index_dirty" -ne 0 ]
then
new=$(git rev-parse HEAD)
echo "W:stashing dirty $desc - see git-stash(1)" >&2
( trap 'echo trapped $$; git symbolic-ref HEAD "'"$ref"'"' 2 3 13 15 ERR EXIT
git update-ref --no-deref HEAD HEAD@{1}
cd $GIT_WORK_TREE
git stash save "dirty $desc before update to $new";
git symbolic-ref HEAD "$ref"
)
fi
# eye candy - show the WC updates :)
echo "Updating working copy" >&2
(cd $GIT_WORK_TREE
git diff-index -R --name-status HEAD >&2
git reset --hard HEAD)
}
if [ "$is_bare" = "false" ]
then
active_branch=`git symbolic-ref HEAD`
export GIT_DIR=$(cd $GIT_DIR; pwd)
GIT_WORK_TREE=${GIT_WORK_TREE-..}
for ref
do
if [ "$ref" = "$active_branch" ]
then
update_wc $ref
fi
done
fi
gitit-0.12.1/data/markupHelp/ 0000755 0000000 0000000 00000000000 12661140712 014122 5 ustar 00 0000000 0000000 gitit-0.12.1/data/markupHelp/HTML 0000644 0000000 0000000 00000001427 12661140712 014615 0 ustar 00 0000000 0000000 ~~~~~~~~
Section heading
Subsection
Formatting:
italics,
bold,
superscript,
subscript,
line
break.
Indented quotation
Links:
external,
Wiki Link,
,
Indented code block:
#include <stdbool.h>
- ordered
- list
- sublist
- another
- item three
- term
- definition
- orange
- orange fruit
~~~~~~~~
For more: [xhtml tutorial](http://www.w3schools.com/Xhtml/),
[pandoc](http://johnmacfarlane.net/pandoc/README.html).
gitit-0.12.1/data/markupHelp/LaTeX 0000644 0000000 0000000 00000001601 12661140712 015020 0 ustar 00 0000000 0000000 ~~~~~~~~
\section{Section heading}
\subsection{Subsection}
Formatting: \emph{italics},
\textbf{bold},
super\textsuperscript{script},
sub\textsubscr{script},
\sout{strikeout}. A line break\\
can be forced with \\ at
the end of the line.
\begin{quote}
Indented quotation
\end{quote}
Links:
\href{http://foo.bar}{external},
\href{}{Wiki Link},
\includegraphics{/img/banner.png},
\href{#subsection}{to heading}.
\begin{verbatim}
#include
\end{verbatim}
\begin{itemize}
\item bulleted
\item list
\end{itemize}
\begin{enumerate}
\item ordered
\item list
\begin{enumerate}[a.]
\item sublist
\item another
\end{enumerate}
\item item three
\end{enumerate}
\begin{description}
\item[term] definition
\item[orange] orange fruit
\end{description}
~~~~~~~~
For more: [LaTeX], [pandoc].
[LaTeX]: http://www.latex-project.org/
[pandoc]: http://johnmacfarlane.net/pandoc/README.html
gitit-0.12.1/data/markupHelp/LaTeX+LHS 0000644 0000000 0000000 00000001727 12661140712 015453 0 ustar 00 0000000 0000000 ~~~~~~~~
\section{Section heading}
\subsection{Subsection}
Formatting: \emph{italics},
\textbf{bold},
super\textsuperscript{script},
sub\textsubscr{script},
\sout{strikeout}. A line break\\
can be forced with \\ at
the end of the line.
\begin{quote}
Indented quotation
\end{quote}
Links:
\href{http://foo.bar}{external},
\href{}{Wiki Link},
\includegraphics{/img/banner.png},
\href{#subsection}{to heading}.
\begin{verbatim}
#include
\end{verbatim}
Haskell code:
\begin{code}
fibs = 1 : 1 : zipWith (+)
fibs (tail fibs)
\end{code}
\begin{itemize}
\item bulleted
\item list
\end{itemize}
\begin{enumerate}
\item ordered
\item list
\begin{enumerate}[a.]
\item sublist
\item another
\end{enumerate}
\item item three
\end{enumerate}
\begin{description}
\item[term] definition
\item[orange] orange fruit
\end{description}
~~~~~~~~
For more: [LaTeX], [pandoc].
[LaTeX]: http://www.latex-project.org/
[pandoc]: http://johnmacfarlane.net/pandoc/README.html
gitit-0.12.1/data/markupHelp/Markdown 0000644 0000000 0000000 00000001400 12661140712 015622 0 ustar 00 0000000 0000000 ~~~~~~~~
# Section heading
## Subsection
Formatting: *italics*,
**bold**, super^script^,
sub~script~, ~~strikeout~~.
A line break
can be forced with two spaces
at the end of the line.
> Indented quotation
Links:
[external](http://google.com),
[Wiki Link](),
,
[to heading](#section-heading).
Indented code block:
#include
Or use a delimited code block:
~~~ { .haskell }
let a = 1:a in head a
~~~
- bulleted
- list
* * * * *
1. ordered
2. list
a. sublist (indent 4 spaces)
b. another
3. item three
term
: definition
orange
: orange fruit
~~~~~~~~
For more: [markdown syntax](http://daringfireball.net/projects/markdown),
[pandoc extensions](http://johnmacfarlane.net/pandoc/README.html).
gitit-0.12.1/data/markupHelp/Markdown+LHS 0000644 0000000 0000000 00000001672 12661140712 016257 0 ustar 00 0000000 0000000 ~~~~~~~~
# Section heading
## Subsection
Formatting: *italics*,
**bold**, super^script^,
sub~script~, ~~strikeout~~.
A line break
can be forced with two spaces
at the end of the line.
> Indented quotation:
> note: the '>' must not
> be flush with the margin
> or what follows will be
> treated as Haskell code
> -- bird-tracks Haskell:
> fibs = 0 : 1 :
> zipWith (+) fibs (tail fibs)
Links:
[external](http://google.com),
[Wiki Link](),
,
[to heading](#section-heading).
Indented code block:
#include
Or use a delimited code block:
~~~ { .haskell }
let a = 1:a in head a
~~~
- bulleted
- list
* * * * *
1. ordered
2. list
a. sublist (indent 4 spaces)
b. another
3. item three
term
: definition
orange
: orange fruit
~~~~~~~~
For more: [markdown syntax](http://daringfireball.net/projects/markdown),
[pandoc extensions](http://johnmacfarlane.net/pandoc/README.html).
gitit-0.12.1/data/markupHelp/Org 0000644 0000000 0000000 00000001471 12661140712 014577 0 ustar 00 0000000 0000000 * Section heading
** Subsection
Formatting: /italics/, *bold*, super^{script}, sub_{script},
+strikeout+. A line break\\
can be forced with two backslashes at the end of the line.
#+BEGIN_QUOTE
Indented quotation
#+END_QUOTE
Links: [[http://google.com][external]], [[][Wiki Link]],
[[/img/gitit-banner.png]], [[#section-heading][to heading]].
Indented code block:
#+BEGIN_EXAMPLE
#include
#+END_EXAMPLE
Or
#+BEGIN_SRC haskell
let a = 1:a in head a
#+END_SRC
- bulleted
- list
--------------
1. ordered
2. list
1. sublist (indent 4 spaces)
2. another
3. item three
- term :: definition
- orange :: orange fruit
For more: [org-mode manual](http://orgmode.org/manual/)
gitit-0.12.1/data/markupHelp/RST 0000644 0000000 0000000 00000001260 12661140712 014514 0 ustar 00 0000000 0000000 ~~~~~~~~
Section heading
===============
Subsection
----------
Formatting: *italics*,
**bold**.
Indented quotation
Links:
`external `_,
`Wiki Link <>`_, |image|,
`heading <#subsection>`_.
.. |image| image::
/img/gitit-banner.png
::
let a = 1:a in head a
- bulleted
- list
---------------
1. ordered
2. list
a. sublist (indent 4 spaces)
b. another
3. item three
term
definition
orange
orange fruit
~~~~~~~~
For more: [reST primer],
[quick reference guide].
[reST primer]: http://docutils.sourceforge.net/docs/user/rst/quickstart.html
[quick reference guide]: http://docutils.sourceforge.net/docs/user/rst/quickref.html
gitit-0.12.1/data/markupHelp/RST+LHS 0000644 0000000 0000000 00000001366 12661140712 015145 0 ustar 00 0000000 0000000 ~~~~~~~~
Section heading
===============
Subsection
----------
Formatting: *italics*,
**bold**.
Indented quotation
Links:
`external `_,
`Wiki Link <>`_, |image|,
`heading <#subsection>`_.
.. |image| image::
/img/gitit-banner.png
::
let a = 1:a in head a
> -- bird-style Haskell
> fibs = 1 : 1 : zipWith (+)
> fibs (tail fibs)
- bulleted
- list
--------------
- ordered
- list
a. sublist (indent 4 spaces)
b. another
- item three
term
definition
orange
orange fruit
~~~~~~~~
For more: [reST primer],
[quick reference guide].
[reST primer]: http://docutils.sourceforge.net/docs/user/rst/quickstart.html
[quick reference guide]: http://docutils.sourceforge.net/docs/user/rst/quickref.html
gitit-0.12.1/data/s5/ 0000755 0000000 0000000 00000000000 12661140712 012341 5 ustar 00 0000000 0000000 gitit-0.12.1/data/s5/default/ 0000755 0000000 0000000 00000000000 12661140712 013765 5 ustar 00 0000000 0000000 gitit-0.12.1/data/s5/default/blank.gif 0000644 0000000 0000000 00000000061 12661140712 015540 0 ustar 00 0000000 0000000 GIF89a ‘ÿ ÿÿÿ ÀÀÀ !ù , T ; gitit-0.12.1/data/s5/default/bodybg.gif 0000644 0000000 0000000 00000023607 12661140712 015732 0 ustar 00 0000000 0000000 GIF89aæ NÄÿ ÀÀÀµµµ½½½ÆÆÆÎÎÎÖÖÖÞÞÞçççïïï÷÷÷çïïï÷÷÷ÿÿÆÎÎÎÖÖÖÞÞÞççµ½½½ÆÆç÷÷ÎÞÞÖççÞïïÆÖÖ½ÎÎÎçç !ù , æ N ÿà!ÏuÔó@ŽšB¤ÌôlM€µÔ|?) BÖc(,
Fo¹Ô1–³¦ÀŽDEe¨ü,Ópm›gÇÙ¢ÒpœßðÚˆÔ¸<
ªºÃÑ(8e=
qXdK P‡q<8k:aD9U3 G
;W[hQ[ …˜LH52³‚¦¹