about summary refs log tree commit diff stats
path: root/doc/aerc-config.5.scd
Commit message (Collapse)AuthorAgeFilesLines
* messages: allow displaying email threadsy0ast2021-11-131-0/+9
| | | | | | | | | | | | | Display threads in the message list. For now, only supported by the notmuch backend and on IMAP when the server supports the THREAD extension. Setting threading-enable=true is global and will cause the message list to be empty with maildir:// accounts. Co-authored-by: Kevin Kuehler <keur@xcf.berkeley.edu> Co-authored-by: Reto Brunner <reto@labrat.space> Signed-off-by: Robin Jarry <robin@jarry.cc>
* doc: update authorsRobin Jarry2021-11-091-3/+3
| | | | Signed-off-by: Robin Jarry <robin@jarry.cc>
* index: add this-week-time-formatRobin Jarry2021-11-061-0/+7
| | | | | | | Also allow specific time format for messages received within the last 7 days. Signed-off-by: Robin Jarry <robin@jarry.cc>
* doc: fix typo today-time-format -> this-day-time-formatRobin Jarry2021-11-061-1/+1
| | | | | Fixes: 42b4302ba32e ("index: allow dynamic formatting of message dates") Signed-off-by: Robin Jarry <robin@jarry.cc>
* go.mod: change base git urlRobin Jarry2021-11-051-1/+1
| | | | | | | I'm not sure what are the implications but it seems required. Link: https://github.com/golang/go/issues/20883 Signed-off-by: Robin Jarry <robin@jarry.cc>
* bindings: remove unsupported s-tab keyRobin Jarry2021-11-051-2/+0
| | | | | | | This binding does not exist. It is backtab. Fixes: 1a75906bcbc1 ("bindings: support more modified keys") Signed-off-by: Robin Jarry <robin@jarry.cc>
* index: allow dynamic formatting of message datesRobin Jarry2021-10-281-0/+12
| | | | | | | | | | | | | | | | | | | | | When a message has been sent today (or this year) allow formatting the date differently. For example, with: [ui] index-format=%-25.25n %-25.25D %s timestamp-format=2006 Jan 02, 15:04 GMT-0700 this-day-time-format=Today at 15:04 this-year-time-format=Jan 02 The message list would look like this (spaces collapsed): Robin Jarry Today at 16:30 [PATCH 1/2] bindings: prepare for more modifers bugzilla@dpdk.org Oct 26 [dpdk-dev] [Bug 839] pdump: any subsequent runs of pdump_autotest fail Holger Levsen 2020 Mar 15, 13:44 GMT+01 +1 (Re: FTP Team -- call for volunteers) Signed-off-by: Robin Jarry <robin@jarry.cc>
* bindings: support more modified keysRobin Jarry2021-10-281-0/+14
| | | | | | | | | | | | | | Add new supported keys: Ctrl+Enter Ctrl+Up Ctrl+Down Ctrl+Left Ctrl+Right Ctrl+PageUp Ctrl+PageDown Signed-off-by: Robin Jarry <robin@jarry.cc>
* fix aerc-stylesets(7) typosReto Brunner2020-12-131-2/+2
|
* docs: link to styleset(7)Reto Brunner2020-08-281-1/+3
|
* Add account alias configuration and correctly set From fieldy0ast2020-08-201-0/+7
| | | | | We infer the correct From using the To: and Cc: field of the email that we reply to.
* Implement style configuration.Kalyan Sriram2020-08-061-0/+14
| | | | | | Introduce the ability to configure stylesets, allowing customization of aerc's look (color scheme, font weight, etc). Default styleset is installed to /path/to/aerc/stylesets/default.
* Revert "Implement style configuration."Reto Brunner2020-07-301-14/+0
| | | | This reverts commit 1ff687ca2b0821c2cacc1fa725abb3302d2af9da.
* Implement style configuration.Kalyan Sriram2020-07-301-0/+14
| | | | | | Introduce the ability to configure stylesets, allowing customization of aerc's look (color scheme, font weight, etc). Default styleset is installed to /path/to/aerc/stylesets/default.
* Add a 'folders-exclude' optionARaspiK2020-07-021-0/+7
| | | | | | | | Added a 'folders-exclude' option that allows removing selected folders from the directory list sidebar. My motivating example was that removing a single folder from the list using Golang regexes seemed pretty hard, so this is a better way to do it. The excluded folders list is included in the man page.
* Fix missing escape in aerc-config manpageAlexander Harkness2020-06-131-2/+2
| | | | | Underscores were being elided by scdoc when they should have been rendered verbatim in the output.
* Revert "Add Style configuration"Drew DeVault2020-05-281-14/+0
| | | | This reverts commit 0f78f06610c0e8887aba2ae50e99b86477a384b3.
* Add Style configurationReto Brunner2020-05-271-0/+14
| | | | | | | | | | The following functionalities are added to configure aerc ui styles. - Read stylesets from file with very basic fnmatch wildcard matching - Add default styleset - Support different stylesets as part of UiConfig allowing contextual styles. - Move widgets/ui elements to use the stylesets. - Add configuration manual for the styleset
* Fix typosMartin Michlmayr2020-05-211-2/+2
|
* aerc-config: remove bold modifier within textReto Brunner2020-04-261-1/+1
| | | | | Partial bold ("highlighted") text looks very strange and it doesn't really add anything, might as well remove it.
* Add postpone commandJeffas2020-04-241-0/+5
| | | | | | | This command uses the Postpone folder from the account config to save messages to. Messages are saved as though they were sent so have a valid 'to' recipient address and should be able to be read back in for later editing.
* Add pinned tabsJeffas2020-03-091-0/+5
| | | | | | This adds the commands pin-tab and unpin-tab. Once pinned a tab lives on the left of the tabstrip and has a configurable marker, defaulting to ` before its name.
* Correct the khard example so that it works with aercPeter Lamby2020-03-091-1/+1
|
* Contextual UI ConfigurationSrivathsan Murali2020-01-241-0/+40
| | | | | | | | | + Adds parsing of contextual ui sections to aerc config. + Add GetUiConfig method for AercConfig that is used to get the specialized UI config. + Add UiConfig method to AccountView to get specialized UI Config. + Modifies Aerc codebase to use specialized UIConfig instead. + Adds documentation for Contextual UI Configuration
* Fix handling of multiple template-dirsBen Burwell2020-01-241-1/+3
| | | | | | | | Before, while the docs stated that template-dirs was a colon-separated list, a delimiter was not specified in the struct tag, so it was falling back to the default for the ini library (a comma). Also added a note to the docs to clarify that templates are configured in the [templates] section.
* Add labels to index format (%g)Reto Brunner2019-12-271-0/+2
| | | | Exposes the notmuch tags accordingly, stubs it for the maildir worker.
* msglist: highlight marked messagesReto Brunner2019-12-211-1/+1
| | | | | | Note that, until we get color configuration, this means that the user *must* have the %Z verb in the index format else it'll be horribly confusing as no visual indication is provided
* Add address book completion in composerBen Burwell2019-12-211-0/+16
| | | | | Complete email address fields in the message composer with an external address book command, compatible with mutt's query_cmd.
* Show textinput completions in popoversBen Burwell2019-12-211-0/+10
| | | | | | Rather than showing completions inline in the text input, show them in a popover which can be scrolled by repeatedly pressing the tab key. The selected completion can be executed by pressing enter.
* Add custom sorting for foldersMichele Finotto2019-12-091-0/+6
| | | | | | | | | | | | | | A new config options for accounts.conf (folders-sort) was added to allow a user to choose which folders should be shown on top. My use case was to avoid stepping into heavy, but rarely viewed folders when cycling through other often accessed ones. To test add this to your account.conf: folders-sort = INBOX,Sent,Archive INBOX, Sent and Archive should then show at the top of your dirlist, and all other folders should come next in alphabetical order.
* Complete the F rune.Srivathsan Murali2019-11-171-2/+3
| | | | | %F now shows the auth name or recepient name/address if the message is from you.
* Add Templates with ParsingSrivathsan Murali2019-11-101-0/+25
| | | | | | | | | | | | | | | + Changes NewComposer to return error. + Add lib to handle templates using "text/template". + Add -T option to following commands - compose. - reply - forward + Quoted replies using templates. + Forwards as body using templates + Default templates are installed similar to filters. + Templates Config in aerc.conf. - Required templates are parsed while loading config. + Add aerc-templates.7 manual for using template data.
* Config for deleting message from message viewerSrivathsan Murali2019-09-201-0/+5
| | | | | As suggested in #268, this adds a behaviour setting for deleting message from message viewer.
* Add documentation for sortJeffas2019-09-201-0/+9
| | | | This adds documentation for the config option and the command.
* Add signaturesJeffas2019-09-121-0/+8
| | | | | | | | | | | | | This adds the ability for per-account signatures in the accounts.conf config file. The signature is added to emails in the editor at the bottom of the email. This includes when forwarding, replying to, and composing emails. There are two config options: signature-file and signature-cmd. The former allows a signature to be read from a file and the latter allows an arbitrary command to be executed to return the signature. The config options have been documented in aerc-config
* Add display of unread messages in dirlistJeffas2019-09-111-0/+16
| | | | | | | Add an onUpdateDirs handler. This is used to invalidate the dirlist and redraw with the correct number of recent/unread/total messages is shown. A config option and formatting options are provided.
* Allow custom spinner via config filePaul Spooren2019-08-301-0/+15
| | | | | | | | | | | Allows to set `ui.spinner=` to a string which is then split by `ui.spinner-delimiter=` (Default: comma) instead of having a hard coded animation. This implementation doesn't use INIs capabilities to split strings as it trims whitespaces breaking the default animation. Signed-off-by: Paul Spooren <mail@aparcar.org>
* folder filter: only assume regex if filter is ~fmtDrew DeVault2019-08-201-1/+1
|
* Support regex filters for foldersDaniel Xu2019-08-191-1/+2
| | | | | | | | It's nice to be able to filter the folders displayed in the side bar. Basic string matching can get verbose with enough folders whitelisted. Signed-off-by: Daniel Xu <dxu@dxuuu.xyz>
* Add notmuch docsReto Brunner2019-08-081-0/+2
|
* Ring bell when new messages arrive 0.2.0Ben Burwell2019-07-291-0/+5
| | | | | | | | Add a "new-message-bell" option to the UI section of aerc.conf. A new hook into the message store allows the msglist widget to detect new messages being added to the displayed list. When new messages are delivered, and the new-message-bell option is enabled (as it is by default), the terminal will beep.
* Implement sendmail supportDrew DeVault2019-07-271-1/+1
|
* Support configurable header layout in compose widgetDaniel Bridges2019-07-261-0/+6
|
* Add new-email triggerJeffas2019-07-261-0/+20
| | | | | | | | | | | | | | | | | This patch sets up the trigger config section of aerc.conf. Each trigger has its own function which is called from the place where it is triggered. Currently only the new-email trigger is implemented. The triggers make use of format strings. For instance, in the new-email trigger this allows the user to select the trigger command and also the information extracted from the command and placed into their command. To actually execute the trigger commands the keypresses are simulated. Further triggers can be implemented in the future. Formatting of the command is moved to a new package.
* Add option to always show mimetype in viewerJeffas2019-07-171-0/+5
| | | | | | | | | | A user may want to be able to see what mimetype they are viewing, so that they can determine what program it may be opened in or for some other reason. The config option is under the [viewer] section and is called 'always-show-mime'. It defaults to false to preserve the current behaviour.
* Display user specified headers in viewer if presentDaniel Bridges2019-07-171-0/+8
|
* Add show-headers to aerc-configJeffas2019-07-171-0/+6
|
* Add MouseEnabled config settingJeffas2019-07-171-0/+5
| | | | | This patch adds the ability to control whether aerc captures mouseevents or not. By default it will be set to not capture events.
* Add maildir docsBen Burwell2019-07-121-1/+2
|
* Document message index format specifiersBen Burwell2019-07-041-1/+36
|
002de'>^
672e3e50 ^
db1f56c8 ^
65361948 ^
32b8fac2 ^


db1f56c8 ^
65361948 ^

f5465e12 ^
65361948 ^

672e3e50 ^
db1f56c8 ^
f5465e12 ^

32b8fac2 ^
f5465e12 ^

32b8fac2 ^
f5465e12 ^
db1f56c8 ^

32b8fac2 ^


4690ce81 ^
f5465e12 ^

32b8fac2 ^
f5465e12 ^
db1f56c8 ^
672e3e50 ^
32b8fac2 ^

f5465e12 ^
32b8fac2 ^

672e3e50 ^
f5465e12 ^

9570363a ^
f5465e12 ^
9570363a ^
32b8fac2 ^
f5465e12 ^


f5465e12 ^

32b8fac2 ^
f5465e12 ^
db1f56c8 ^
f5465e12 ^
32b8fac2 ^
f5465e12 ^
db1f56c8 ^



32b8fac2 ^
db1f56c8 ^
db1f56c8 ^
32b8fac2 ^
db1f56c8 ^









65361948 ^
672e3e50 ^
32b8fac2 ^
f5465e12 ^
db1f56c8 ^
32b8fac2 ^
f5465e12 ^
e8b1d3ff ^
f5465e12 ^

32b8fac2 ^
4690ce81 ^
32b8fac2 ^

4690ce81 ^
f5465e12 ^

672e3e50 ^
f5465e12 ^



32b8fac2 ^



65361948 ^
672e3e50 ^
f5465e12 ^
65361948 ^
f5465e12 ^
32b8fac2 ^

dcc060c7 ^





32b8fac2 ^
d009e158 ^

f5465e12 ^
dcc060c7 ^

32b8fac2 ^
d009e158 ^


65361948 ^

672e3e50 ^
f5465e12 ^




672e3e50 ^
f5465e12 ^








65361948 ^

672e3e50 ^
f5465e12 ^
e8b1d3ff ^
f5465e12 ^
32b8fac2 ^
dcc060c7 ^





32b8fac2 ^
f5465e12 ^
e8b1d3ff ^

f5465e12 ^


e8b1d3ff ^


32b8fac2 ^
f5465e12 ^
db1f56c8 ^

f5465e12 ^

db1f56c8 ^
4690ce81 ^
f5465e12 ^
672e3e50 ^
f5465e12 ^






672e3e50 ^
32b8fac2 ^
f5465e12 ^




9570363a ^
32b8fac2 ^
f5465e12 ^

672e3e50 ^
f5465e12 ^

dcc060c7 ^

f5465e12 ^
db1f56c8 ^
f5465e12 ^
32b8fac2 ^
db1f56c8 ^
f5465e12 ^


672e3e50 ^
f5465e12 ^

672e3e50 ^
9570363a ^
32b8fac2 ^
f5465e12 ^



f5465e12 ^

32b8fac2 ^
b2566a84 ^





32b8fac2 ^
dcc060c7 ^




b2566a84 ^
32b8fac2 ^
f5465e12 ^
db1f56c8 ^
f5465e12 ^
4bbd3ded ^
f5465e12 ^
4690ce81 ^
f5465e12 ^

32b8fac2 ^
4bbd3ded ^
db1f56c8 ^
f5465e12 ^

9570363a ^
f5465e12 ^
9570363a ^
32b8fac2 ^
f5465e12 ^


4bbd3ded ^

f5465e12 ^
65361948 ^
32b8fac2 ^

65361948 ^

db1f56c8 ^
65361948 ^

672e3e50 ^
f5465e12 ^
65361948 ^
32b8fac2 ^

65361948 ^

db1f56c8 ^
65361948 ^

672e3e50 ^
f5465e12 ^
65361948 ^
32b8fac2 ^

65361948 ^

f5465e12 ^


65361948 ^

672e3e50 ^
32b8fac2 ^
f5465e12 ^
db1f56c8 ^
c5ffb6e1 ^
f5465e12 ^
f5465e12 ^
9570363a ^
db1f56c8 ^
672e3e50 ^
f5465e12 ^


672e3e50 ^
9570363a ^
f5465e12 ^
672e3e50 ^
f5465e12 ^
32b8fac2 ^
f5465e12 ^



672e3e50 ^
f5465e12 ^

672e3e50 ^
9570363a ^
f5465e12 ^
672e3e50 ^
f5465e12 ^
32b8fac2 ^
f5465e12 ^



65361948 ^
672e3e50 ^
db1f56c8 ^
65361948 ^
32b8fac2 ^



65361948 ^

db1f56c8 ^
65361948 ^

672e3e50 ^
db1f56c8 ^
90560d71 ^
32b8fac2 ^


90560d71 ^

db1f56c8 ^
90560d71 ^


32b8fac2 ^
f5465e12 ^
db1f56c8 ^
f5465e12 ^
90560d71 ^

4690ce81 ^
32b8fac2 ^
f5465e12 ^
db1f56c8 ^
90560d71 ^

f5465e12 ^
90560d71 ^
32b8fac2 ^


90560d71 ^

db1f56c8 ^
90560d71 ^


f5465e12 ^
90560d71 ^
32b8fac2 ^


90560d71 ^

db1f56c8 ^
90560d71 ^


f5465e12 ^
90560d71 ^
32b8fac2 ^


90560d71 ^

db1f56c8 ^
90560d71 ^


f5465e12 ^
90560d71 ^
32b8fac2 ^


90560d71 ^

db1f56c8 ^
90560d71 ^


672e3e50 ^
32b8fac2 ^
f5465e12 ^
db1f56c8 ^
672e3e50 ^
f5465e12 ^


db1f56c8 ^
32b8fac2 ^
f5465e12 ^
9570363a ^
f5465e12 ^
9570363a ^
f5465e12 ^


32b8fac2 ^
f5465e12 ^
d009e158 ^
672e3e50 ^
f5465e12 ^


672e3e50 ^
32b8fac2 ^
f5465e12 ^
672e3e50 ^
f5465e12 ^
672e3e50 ^
9570363a ^
f5465e12 ^
672e3e50 ^
f5465e12 ^


672e3e50 ^
32b8fac2 ^
f5465e12 ^



672e3e50 ^
f5465e12 ^

672e3e50 ^
f5465e12 ^

672e3e50 ^
f5465e12 ^
32b8fac2 ^
f5465e12 ^



672e3e50 ^
f5465e12 ^



672e3e50 ^
f5465e12 ^
672e3e50 ^
9570363a ^
f5465e12 ^
672e3e50 ^
f5465e12 ^
32b8fac2 ^
f5465e12 ^



65361948 ^
672e3e50 ^
f5465e12 ^
65361948 ^
32b8fac2 ^



65361948 ^

db1f56c8 ^
65361948 ^

672e3e50 ^
f5465e12 ^
65361948 ^
32b8fac2 ^



65361948 ^

db1f56c8 ^
f5465e12 ^
65361948 ^

672e3e50 ^
f5465e12 ^
65361948 ^
32b8fac2 ^



65361948 ^

db1f56c8 ^
65361948 ^

c5ffb6e1 ^

4690ce81 ^
f5465e12 ^
db1f56c8 ^
c5ffb6e1 ^
db1f56c8 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
c5ffb6e1 ^

f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^
c5ffb6e1 ^

32b8fac2 ^
f5465e12 ^
db1f56c8 ^
f5465e12 ^
c5ffb6e1 ^
f5465e12 ^


9570363a ^
f5465e12 ^
db1f56c8 ^
4690ce81 ^
f5465e12 ^
9570363a ^

f5465e12 ^



c5ffb6e1 ^
f5465e12 ^

9570363a ^
f5465e12 ^
9570363a ^

f5465e12 ^



c5ffb6e1 ^
f5465e12 ^
32b8fac2 ^
eaeb9552 ^
f5465e12 ^


c5ffb6e1 ^
9570363a ^
f5465e12 ^
c5ffb6e1 ^
9570363a ^
32b8fac2 ^
f5465e12 ^



c5ffb6e1 ^

f5465e12 ^
c5ffb6e1 ^
32b8fac2 ^


c5ffb6e1 ^

db1f56c8 ^
c5ffb6e1 ^


f5465e12 ^
c5ffb6e1 ^
32b8fac2 ^


c5ffb6e1 ^

db1f56c8 ^
c5ffb6e1 ^


f5465e12 ^
c5ffb6e1 ^
32b8fac2 ^


c5ffb6e1 ^

db1f56c8 ^
c5ffb6e1 ^


f5465e12 ^
c5ffb6e1 ^
32b8fac2 ^


c5ffb6e1 ^

db1f56c8 ^
c5ffb6e1 ^


f5465e12 ^
c5ffb6e1 ^
32b8fac2 ^
f5465e12 ^
32b8fac2 ^

c5ffb6e1 ^

db1f56c8 ^
c5ffb6e1 ^

dbe12410 ^
32b8fac2 ^
f5465e12 ^
d009e158 ^
f5465e12 ^

9570363a ^
f5465e12 ^
9570363a ^

f5465e12 ^



4690ce81 ^
dbe12410 ^

db1f56c8 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^
f5465e12 ^
db1f56c8 ^
f5465e12 ^
dbe12410 ^
f5465e12 ^

db1f56c8 ^
9570363a ^
f5465e12 ^



dbe12410 ^
9570363a ^
f5465e12 ^

4690ce81 ^
dbe12410 ^

db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
32b8fac2 ^
f5465e12 ^
db1f56c8 ^
f5465e12 ^
dbe12410 ^
f5465e12 ^

9570363a ^

f5465e12 ^
4690ce81 ^
f5465e12 ^
dbe12410 ^
f5465e12 ^

9570363a ^
f5465e12 ^
9570363a ^
f5465e12 ^



4690ce81 ^
f5465e12 ^




4690ce81 ^
f5465e12 ^

db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^

f5465e12 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

db1f56c8 ^
dbe12410 ^


f5465e12 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


32b8fac2 ^
f5465e12 ^
db1f56c8 ^

f5465e12 ^



32b8fac2 ^
4690ce81 ^
f5465e12 ^
dbe12410 ^
f5465e12 ^


9570363a ^

f5465e12 ^




dbe12410 ^
32b8fac2 ^
dbe12410 ^
f5465e12 ^


dbe12410 ^
9570363a ^
f5465e12 ^
9570363a ^
dbe12410 ^
32b8fac2 ^

dbe12410 ^
f5465e12 ^



dbe12410 ^

db1f56c8 ^
dbe12410 ^
32b8fac2 ^






dbe12410 ^

f5465e12 ^
db1f56c8 ^

dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^








dbe12410 ^

f5465e12 ^
db1f56c8 ^


dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^




dbe12410 ^

f5465e12 ^
db1f56c8 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

f5465e12 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^










dbe12410 ^

f5465e12 ^
db1f56c8 ^



dbe12410 ^


32b8fac2 ^
f5465e12 ^
db1f56c8 ^

f5465e12 ^



32b8fac2 ^

4690ce81 ^
f5465e12 ^

32b8fac2 ^
f5465e12 ^
32b8fac2 ^
f5465e12 ^

db1f56c8 ^
dbe12410 ^
32b8fac2 ^



dbe12410 ^

db1f56c8 ^

dbe12410 ^


32b8fac2 ^
f5465e12 ^
db1f56c8 ^
dbe12410 ^
f5465e12 ^

dbe12410 ^
9570363a ^
32b8fac2 ^
dbe12410 ^
f5465e12 ^


9570363a ^
f5465e12 ^
9570363a ^
32b8fac2 ^
f5465e12 ^



dbe12410 ^

db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

db1f56c8 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

db1f56c8 ^
dbe12410 ^


db1f56c8 ^
dbe12410 ^
32b8fac2 ^


dbe12410 ^

db1f56c8 ^
f5465e12 ^


4690ce81 ^
f5465e12 ^
db1f56c8 ^
f5465e12 ^


4690ce81 ^
f5465e12 ^
4690ce81 ^
f5465e12 ^

4690ce81 ^
f5465e12 ^
db1f56c8 ^
f5465e12 ^


4690ce81 ^
f5465e12 ^
4690ce81 ^
dbe12410 ^
672e3e50 ^


a654e4ec ^
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362