WAL prefetch

Started by Konstantin Knizhnikover 7 years ago59 messages
#1Konstantin Knizhnik
k.knizhnik@postgrespro.ru
2 attachment(s)

There was very interesting presentation at pgconf about pg_prefaulter:

http://www.pgcon.org/2018/schedule/events/1204.en.html

But it is implemented in GO and using pg_waldump.
I tried to do the same but using built-on Postgres WAL traverse functions.
I have implemented it as extension for simplicity of integration.
In principle it can be started as BG worker.

First of all I tried to estimate effect of preloading data.
I have implemented prefetch utility with is also attached to this mail.
It performs random reads of blocks of some large file and spawns some
number of prefetch threads:

Just normal read without prefetch:
./prefetch -n 0 SOME_BIG_FILE

One prefetch thread which uses pread:
./prefetch SOME_BIG_FILE

One prefetch thread which uses posix_fadvise:
./prefetch -f SOME_BIG_FILE

4 prefetch thread which uses posix_fadvise:
./prefetch -f -n 4 SOME_BIG_FILE

Based on this experiments (on my desktop), I made the following conclusions:

1. Prefetch at HDD doesn't give any positive effect.
2. Using posix_fadvise allows to speed-up random read speed at SSD up to
2 times.
3. posix_fadvise(WILLNEED) is more efficient than performing normal reads.
4. Calling posix_fadvise in more than one thread has no sense.

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb
NVME RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from
56k TPS to 60k TPS (on pgbench with scale 1000).

Usage:
1. At master: create extension wal_prefetch
2. At replica: Call pg_wal_prefetch() function: it will not return until
you interrupt it.

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

It is possible to explicitly specify start LSN for pg_wal_prefetch()
function. Otherwise, WAL redo position will be used as start LSN.

--

Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

Attachments:

prefetch.ctext/x-csrc; name=prefetch.cDownload
wal_prefetch.tgzapplication/x-compressed-tar; name=wal_prefetch.tgzDownload
#2Amit Kapila
amit.kapila16@gmail.com
In reply to: Konstantin Knizhnik (#1)
Re: WAL prefetch

On Wed, Jun 13, 2018 at 6:39 PM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

There was very interesting presentation at pgconf about pg_prefaulter:

http://www.pgcon.org/2018/schedule/events/1204.en.html

But it is implemented in GO and using pg_waldump.
I tried to do the same but using built-on Postgres WAL traverse functions.
I have implemented it as extension for simplicity of integration.
In principle it can be started as BG worker.

Right or in other words, it could do something like autoprewarm [1]https://www.postgresql.org/docs/devel/static/pgprewarm.html
which can allow a more user-friendly interface for this utility if we
decides to include it.

First of all I tried to estimate effect of preloading data.
I have implemented prefetch utility with is also attached to this mail.
It performs random reads of blocks of some large file and spawns some number
of prefetch threads:

Just normal read without prefetch:
./prefetch -n 0 SOME_BIG_FILE

One prefetch thread which uses pread:
./prefetch SOME_BIG_FILE

One prefetch thread which uses posix_fadvise:
./prefetch -f SOME_BIG_FILE

4 prefetch thread which uses posix_fadvise:
./prefetch -f -n 4 SOME_BIG_FILE

Based on this experiments (on my desktop), I made the following conclusions:

1. Prefetch at HDD doesn't give any positive effect.
2. Using posix_fadvise allows to speed-up random read speed at SSD up to 2
times.
3. posix_fadvise(WILLNEED) is more efficient than performing normal reads.
4. Calling posix_fadvise in more than one thread has no sense.

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from 56k
TPS to 60k TPS (on pgbench with scale 1000).

That's a reasonable improvement.

Usage:
1. At master: create extension wal_prefetch
2. At replica: Call pg_wal_prefetch() function: it will not return until you
interrupt it.

I think it is not a very user-friendly interface, but the idea sounds
good to me, it can help some other workloads. I think this can help
in recovery as well.

[1]: https://www.postgresql.org/docs/devel/static/pgprewarm.html

--
With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

#3Thomas Munro
thomas.munro@enterprisedb.com
In reply to: Konstantin Knizhnik (#1)
Re: WAL prefetch

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

--
Thomas Munro
http://www.enterprisedb.com

#4Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Thomas Munro (#3)
Re: WAL prefetch

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to
shared buffers.
But the current c'est la vie with Postgres is that allocating too large
memory for shared buffers is not recommended.
Due to many different reasons: degradation of clock replacement
algorithm, "write storm",...

If your system has 1Tb of memory,  almost none of Postgresql
administrators will recommend to use all this 1Tb for shared buffers.
Moreover there are recommendations to choose shared buffers size based
on size of internal cache of persistent storage device
(so that it will be possible to flush changes without doing writes to
physical media). So at this system with 1Tb of RAM, size of shared
buffers will be most likely set to few hundreds of gigabytes.

Also PostgreSQL is not currently supporting dynamic changing of shared
buffers size. Without it, the only way of using Postgres in clouds and
another multiuser systems where system load is not fully controlled by 
user is to choose relatively small shared buffer size and rely on OS
caching.

Yes, access to shared buffer is about two times faster than reading data
from file system cache.
But it is better, then situation when shared buffers are swapped out and
effect of large shared buffers becomes negative.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#5Robert Haas
robertmhaas@gmail.com
In reply to: Amit Kapila (#2)
Re: WAL prefetch

On Wed, Jun 13, 2018 at 11:45 PM, Amit Kapila <amit.kapila16@gmail.com> wrote:

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from 56k
TPS to 60k TPS (on pgbench with scale 1000).

That's a reasonable improvement.

Somehow I would have expected more. That's only a 7% speedup.

I am also surprised that HDD didn't show any improvement. Since HDD's
are bad at random I/O, I would have expected prefetching to help more
in that case.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#6Amit Kapila
amit.kapila16@gmail.com
In reply to: Robert Haas (#5)
Re: WAL prefetch

On Thu, Jun 14, 2018 at 6:14 PM, Robert Haas <robertmhaas@gmail.com> wrote:

On Wed, Jun 13, 2018 at 11:45 PM, Amit Kapila <amit.kapila16@gmail.com> wrote:

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from 56k
TPS to 60k TPS (on pgbench with scale 1000).

That's a reasonable improvement.

Somehow I would have expected more. That's only a 7% speedup.

It might be due to the reason that there is already a big overhead of
synchronous mode of replication that it didn't show a big speedup. We
might want to try recovery (PITR) or maybe async replication to see if
we see any better numbers.

--
With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

#7Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Robert Haas (#5)
Re: WAL prefetch

On 14.06.2018 15:44, Robert Haas wrote:

On Wed, Jun 13, 2018 at 11:45 PM, Amit Kapila <amit.kapila16@gmail.com> wrote:

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from 56k
TPS to 60k TPS (on pgbench with scale 1000).

That's a reasonable improvement.

Somehow I would have expected more. That's only a 7% speedup.

I am also surprised that HDD didn't show any improvement.

My be pgbench is not the best use case for prefetch. It is updating more
or less random pages and if database is large enough and
full_page_writes is true (default value)
then most pages will be updated only once since last checkpoint and most
of updates will be represented in WAL by full page records.
And such records do not require reading any data from disk.

Since HDD's
are bad at random I/O, I would have expected prefetching to help more
in that case.

Speed of random HDD access is limited by speed of disk head movement.
By running several IO requests in parallel we just increase probability
of head movement, so actually parallel access to HDD may even decrease
IO speed rather than increase it.
In theory, given several concurrent IO requests, driver can execute them
in optimal order, trying to minimize head movement. But if there are
really access to random pages,
then probability that we can win something by such optimization is very
small.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#8Robert Haas
robertmhaas@gmail.com
In reply to: Konstantin Knizhnik (#7)
Re: WAL prefetch

On Thu, Jun 14, 2018 at 9:23 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

Speed of random HDD access is limited by speed of disk head movement.
By running several IO requests in parallel we just increase probability of
head movement, so actually parallel access to HDD may even decrease IO speed
rather than increase it.
In theory, given several concurrent IO requests, driver can execute them in
optimal order, trying to minimize head movement. But if there are really
access to random pages,
then probability that we can win something by such optimization is very
small.

You might be right, but I feel like I've heard previous reports of
significant speedups from prefetching on HDDs. Perhaps I am
mis-remembering.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#9Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Robert Haas (#8)
Re: WAL prefetch

On 14.06.2018 16:25, Robert Haas wrote:

On Thu, Jun 14, 2018 at 9:23 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

Speed of random HDD access is limited by speed of disk head movement.
By running several IO requests in parallel we just increase probability of
head movement, so actually parallel access to HDD may even decrease IO speed
rather than increase it.
In theory, given several concurrent IO requests, driver can execute them in
optimal order, trying to minimize head movement. But if there are really
access to random pages,
then probability that we can win something by such optimization is very
small.

You might be right, but I feel like I've heard previous reports of
significant speedups from prefetching on HDDs. Perhaps I am
mis-remembering.

It is true for RAIDs of HDD which can really win by issuing parallel IO
operations.

But there are some many different factors that I will not be surprised
by any result:)

The last problem I have observed with NVME device at one of the
customer's system was huge performance degradation (> 10 times: from
500Mb/sec to 50Mb/sec write speed)
after space exhaustion at the device. There is 3Tb NVME RAID device with
1.5Gb database. ext4 was mounted without "discard" option.
After incorrect execution of rsync, space was exhausted. Then I removed
all data and copied database from master node.
Then I observed huge lags in async. replication between master and
replica. wal_receiver is saving received data too slowly: write speed is
about ~50Mb/sec vs. 0.5Gb at master.
All my attempts to use fstrim or ex4defrag didn't help. The problem was
solved only after deleting all database files, performing fstrim and
copying database once again.
After it wal_sender is writing data with normal speed ~0.5Gb and there
is no lag between master and replica.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#10Stephen Frost
sfrost@snowman.net
In reply to: Konstantin Knizhnik (#1)
Re: WAL prefetch

Greetings,

* Konstantin Knizhnik (k.knizhnik@postgrespro.ru) wrote:

There was very interesting presentation at pgconf about pg_prefaulter:

http://www.pgcon.org/2018/schedule/events/1204.en.html

I agree and I've chatted a bit w/ Sean further about it.

But it is implemented in GO and using pg_waldump.

Yeah, that's not too good if we want it in core.

I tried to do the same but using built-on Postgres WAL traverse functions.
I have implemented it as extension for simplicity of integration.
In principle it can be started as BG worker.

I don't think this needs to be, or should be, an extension.. If this is
worthwhile (and it certainly appears to be) then we should just do it in
core.

First of all I tried to estimate effect of preloading data.
I have implemented prefetch utility with is also attached to this mail.
It performs random reads of blocks of some large file and spawns some number
of prefetch threads:

Just normal read without prefetch:
./prefetch -n 0 SOME_BIG_FILE

One prefetch thread which uses pread:
./prefetch SOME_BIG_FILE

One prefetch thread which uses posix_fadvise:
./prefetch -f SOME_BIG_FILE

4 prefetch thread which uses posix_fadvise:
./prefetch -f -n 4 SOME_BIG_FILE

Based on this experiments (on my desktop), I made the following conclusions:

1. Prefetch at HDD doesn't give any positive effect.
2. Using posix_fadvise allows to speed-up random read speed at SSD up to 2
times.
3. posix_fadvise(WILLNEED) is more efficient than performing normal reads.
4. Calling posix_fadvise in more than one thread has no sense.

Ok.

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from 56k
TPS to 60k TPS (on pgbench with scale 1000).

I'm also surprised that it wasn't a larger improvement.

Seems like it would make sense to implement in core using
posix_fadvise(), perhaps in the wal receiver and in RestoreArchivedFile
or nearby.. At least, that's the thinking I had when I was chatting w/
Sean.

Thanks!

Stephen

#11Amit Kapila
amit.kapila16@gmail.com
In reply to: Stephen Frost (#10)
Re: WAL prefetch

On Fri, Jun 15, 2018 at 12:16 AM, Stephen Frost <sfrost@snowman.net> wrote:

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from 56k
TPS to 60k TPS (on pgbench with scale 1000).

I'm also surprised that it wasn't a larger improvement.

Seems like it would make sense to implement in core using
posix_fadvise(), perhaps in the wal receiver and in RestoreArchivedFile
or nearby.. At least, that's the thinking I had when I was chatting w/
Sean.

Doing in-core certainly has some advantage such as it can easily reuse
the existing xlog code rather trying to make a copy as is currently
done in the patch, but I think it also depends on whether this is
really a win in a number of common cases or is it just a win in some
limited cases.

--
With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

#12Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Amit Kapila (#11)
Re: WAL prefetch

On 15.06.2018 07:36, Amit Kapila wrote:

On Fri, Jun 15, 2018 at 12:16 AM, Stephen Frost <sfrost@snowman.net> wrote:

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from 56k
TPS to 60k TPS (on pgbench with scale 1000).

I'm also surprised that it wasn't a larger improvement.

Seems like it would make sense to implement in core using
posix_fadvise(), perhaps in the wal receiver and in RestoreArchivedFile
or nearby.. At least, that's the thinking I had when I was chatting w/
Sean.

Doing in-core certainly has some advantage such as it can easily reuse
the existing xlog code rather trying to make a copy as is currently
done in the patch, but I think it also depends on whether this is
really a win in a number of common cases or is it just a win in some
limited cases.

I am completely agree. It was my mail concern: on which use cases this
prefetch will be efficient.
If "full_page_writes" is on (and it is safe and default value), then
first update of a page since last checkpoint will be written in WAL as
full page and applying it will not require reading any data from disk.
If this pages is updated multiple times in subsequent transactions, then
most likely it will be still present in OS file cache, unless checkpoint
interval exceeds OS cache size (amount of free memory in the system). So
if this conditions are satisfied then looks like prefetch is not needed.
And it seems to be true for most real configurations: checkpoint
interval is rarely set larger than hundred of gigabytes and modern
servers usually have more RAM.

But once this condition is not satisfied and lag is larger than size of
OS cache, then prefetch can be not efficient because prefetched pages
may be thrown away from OS cache before them are actually accessed by
redo process. In this case extra synchronization between prefetch and
replay processes is needed so that prefetch is not moving too far away
from replayed LSN.

It is not a problem to integrate this code in Postgres core and run it
in background worker. I do not think that performing prefetch in wal
receiver process itself is good idea: it may slow down speed of
receiving changes from master. And in this case I really can throw away
cut&pasted code. But it is easier to experiment with extension rather
than with patch to Postgres core.
And I have published this extension to make it possible to perform
experiments and check whether it is useful on real workloads.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#13Amit Kapila
amit.kapila16@gmail.com
In reply to: Konstantin Knizhnik (#12)
Re: WAL prefetch

On Fri, Jun 15, 2018 at 1:08 PM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

On 15.06.2018 07:36, Amit Kapila wrote:

On Fri, Jun 15, 2018 at 12:16 AM, Stephen Frost <sfrost@snowman.net>
wrote:

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb
NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from
56k
TPS to 60k TPS (on pgbench with scale 1000).

I'm also surprised that it wasn't a larger improvement.

Seems like it would make sense to implement in core using
posix_fadvise(), perhaps in the wal receiver and in RestoreArchivedFile
or nearby.. At least, that's the thinking I had when I was chatting w/
Sean.

Doing in-core certainly has some advantage such as it can easily reuse
the existing xlog code rather trying to make a copy as is currently
done in the patch, but I think it also depends on whether this is
really a win in a number of common cases or is it just a win in some
limited cases.

I am completely agree. It was my mail concern: on which use cases this
prefetch will be efficient.
If "full_page_writes" is on (and it is safe and default value), then first
update of a page since last checkpoint will be written in WAL as full page
and applying it will not require reading any data from disk.

What exactly you mean by above? AFAIU, it needs to read WAL to apply
full page image. See below code:

XLogReadBufferForRedoExtended()
{
..
/* If it has a full-page image and it should be restored, do it. */
if (XLogRecBlockImageApply(record, block_id))
{
Assert(XLogRecHasBlockImage(record, block_id));
*buf = XLogReadBufferExtended(rnode, forknum, blkno,
get_cleanup_lock ? RBM_ZERO_AND_CLEANUP_LOCK : RBM_ZERO_AND_LOCK);
page = BufferGetPage(*buf);
if (!RestoreBlockImage(record, block_id, page))
..
}

--
With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

#14Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Amit Kapila (#13)
Re: WAL prefetch

On 15.06.2018 18:03, Amit Kapila wrote:

On Fri, Jun 15, 2018 at 1:08 PM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

On 15.06.2018 07:36, Amit Kapila wrote:

On Fri, Jun 15, 2018 at 12:16 AM, Stephen Frost <sfrost@snowman.net>
wrote:

I have tested wal_prefetch at two powerful servers with 24 cores, 3Tb
NVME
RAID 10 storage device and 256Gb of RAM connected using InfiniBand.
The speed of synchronous replication between two nodes is increased from
56k
TPS to 60k TPS (on pgbench with scale 1000).

I'm also surprised that it wasn't a larger improvement.

Seems like it would make sense to implement in core using
posix_fadvise(), perhaps in the wal receiver and in RestoreArchivedFile
or nearby.. At least, that's the thinking I had when I was chatting w/
Sean.

Doing in-core certainly has some advantage such as it can easily reuse
the existing xlog code rather trying to make a copy as is currently
done in the patch, but I think it also depends on whether this is
really a win in a number of common cases or is it just a win in some
limited cases.

I am completely agree. It was my mail concern: on which use cases this
prefetch will be efficient.
If "full_page_writes" is on (and it is safe and default value), then first
update of a page since last checkpoint will be written in WAL as full page
and applying it will not require reading any data from disk.

What exactly you mean by above? AFAIU, it needs to read WAL to apply
full page image. See below code:

XLogReadBufferForRedoExtended()
{
..
/* If it has a full-page image and it should be restored, do it. */
if (XLogRecBlockImageApply(record, block_id))
{
Assert(XLogRecHasBlockImage(record, block_id));
*buf = XLogReadBufferExtended(rnode, forknum, blkno,
get_cleanup_lock ? RBM_ZERO_AND_CLEANUP_LOCK : RBM_ZERO_AND_LOCK);
page = BufferGetPage(*buf);
if (!RestoreBlockImage(record, block_id, page))
..
}

Sorry, for my confusing statement.
Definitely we need to read page from WAL.
I mean that in case of "full page write" we do not need to read updated
page from the database.
It can be just overwritten.

pg_prefaulter and my wal_prefetch are not prefetching WAL pages themselves.
There is no sense to do it, because them are just written by
wal_receiver and so should be present in file system cache.
wal_prefetch is prefetching blocks referenced by WAL records. But in
case of "full page writes" such prefetch is not needed and even is harmful.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#15Andres Freund
andres@anarazel.de
In reply to: Konstantin Knizhnik (#4)
Re: WAL prefetch

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

But the current c'est la vie with Postgres is that allocating too large
memory for shared buffers is not recommended.
Due to many different reasons: degradation of clock replacement algorithm,
"write storm",...

I think a lot of that fear is overplayed. And we've fixed a number of
issues. We don't really generate write storms in the default config
anymore in most scenarios, and if it's an issue you can turn on
backend_flush_after.

If your system has 1Tb of memory,� almost none of Postgresql administrators
will recommend to use all this 1Tb for shared buffers.

I've used 1TB successfully.

Also PostgreSQL is not currently supporting dynamic changing of shared
buffers size. Without it, the only way of using Postgres in clouds and
another multiuser systems where system load is not fully controlled by� user
is to choose relatively small shared buffer size and rely on OS caching.

That seems largely unrelated to the replay case, because there the data
will be read into shared buffers anyway. And it'll be dirtied therein.

Greetings,

Andres Freund

#16Amit Kapila
amit.kapila16@gmail.com
In reply to: Konstantin Knizhnik (#14)
Re: WAL prefetch

On Fri, Jun 15, 2018 at 8:45 PM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

On 15.06.2018 18:03, Amit Kapila wrote:

wal_prefetch is prefetching blocks referenced by WAL records. But in case of
"full page writes" such prefetch is not needed and even is harmful.

Okay, IIUC, the basic idea is to prefetch recently modified data
pages, so that they can be referenced. If so, isn't there some
overlap with autoprewarm functionality which dumps recently modified
blocks and then on recovery, it can prefetch those?

--
With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

#17Amit Kapila
amit.kapila16@gmail.com
In reply to: Andres Freund (#15)
Re: WAL prefetch

On Fri, Jun 15, 2018 at 11:31 PM, Andres Freund <andres@anarazel.de> wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

We can think of supporting two modes (a) allows to read into shared
buffers or (b) allows to read into OS page cache.

--
With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

#18Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Amit Kapila (#16)
Re: WAL prefetch

On 16.06.2018 06:30, Amit Kapila wrote:

On Fri, Jun 15, 2018 at 8:45 PM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

On 15.06.2018 18:03, Amit Kapila wrote:

wal_prefetch is prefetching blocks referenced by WAL records. But in case of
"full page writes" such prefetch is not needed and even is harmful.

Okay, IIUC, the basic idea is to prefetch recently modified data
pages, so that they can be referenced. If so, isn't there some
overlap with autoprewarm functionality which dumps recently modified
blocks and then on recovery, it can prefetch those?

Sorry,  I do not see any intersection with autoprewarw functionality:
wal prefetch is performed at replica where data was not yet modified:
actually the goal of WAL prefetch is to make this update more efficient.
WAL prefetch can be also done at standalone server to speed up recovery
after crash. But it seems to be much more exotic use case.

#19Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Amit Kapila (#17)
Re: WAL prefetch

On 16.06.2018 06:33, Amit Kapila wrote:

On Fri, Jun 15, 2018 at 11:31 PM, Andres Freund <andres@anarazel.de> wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

We can think of supporting two modes (a) allows to read into shared
buffers or (b) allows to read into OS page cache.

Unfortunately I afraid that a) requires different approach: unlike
posix_fadvise,  reading data to shared buffer is blocking operation. If
we do it by one worker, then it will read it with the same speed as redo
process. So to make prefetch really efficient,  in this case we have to
spawn multiple workers to perform prefetch in parallel (as pg_prefaulter
does).

Another my concern against prefetching to shared buffers is that it may
flush away from cache pages which are most frequently used by read only
queries at hot standby replica.

#20Amit Kapila
amit.kapila16@gmail.com
In reply to: Konstantin Knizhnik (#19)
Re: WAL prefetch

On Sat, Jun 16, 2018 at 10:47 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

On 16.06.2018 06:33, Amit Kapila wrote:

On Fri, Jun 15, 2018 at 11:31 PM, Andres Freund <andres@anarazel.de>
wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch
block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to
shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

We can think of supporting two modes (a) allows to read into shared
buffers or (b) allows to read into OS page cache.

Unfortunately I afraid that a) requires different approach: unlike
posix_fadvise, reading data to shared buffer is blocking operation. If we
do it by one worker, then it will read it with the same speed as redo
process. So to make prefetch really efficient, in this case we have to
spawn multiple workers to perform prefetch in parallel (as pg_prefaulter
does).

Another my concern against prefetching to shared buffers is that it may
flush away from cache pages which are most frequently used by read only
queries at hot standby replica.

Okay, but I am suggesting to make it optional so that it can be
enabled when helpful (say when the user has enough shared buffers to
hold the data).

--
With Regards,
Amit Kapila.
EnterpriseDB: http://www.enterprisedb.com

#21Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Andres Freund (#15)
Re: WAL prefetch

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure
it has advantages, but I suppose prefetching into page cache would be
much easier to implement).

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#22Thomas Munro
thomas.munro@enterprisedb.com
In reply to: Tomas Vondra (#21)
Re: WAL prefetch

On Sat, Jun 16, 2018 at 9:38 PM, Tomas Vondra
<tomas.vondra@2ndquadrant.com> wrote:

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure it has advantages, but I suppose prefetching into page cache would be much easier to implement).

posix_fadvise(POSIX_FADV_WILLNEED) might already get most of the
speed-up available here in the short term for this immediate
application, but in the long term a shared buffers prefetch system is
one of the components we'll need to support direct IO.

--
Thomas Munro
http://www.enterprisedb.com

#23Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Thomas Munro (#22)
Re: WAL prefetch

On 06/16/2018 12:06 PM, Thomas Munro wrote:

On Sat, Jun 16, 2018 at 9:38 PM, Tomas Vondra
<tomas.vondra@2ndquadrant.com> wrote:

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure it has advantages, but I suppose prefetching into page cache would be much easier to implement).

posix_fadvise(POSIX_FADV_WILLNEED) might already get most of the
speed-up available here in the short term for this immediate
application, but in the long term a shared buffers prefetch system is
one of the components we'll need to support direct IO.

Sure. Assuming the switch to direct I/O will happen (it probably will,
sooner or later), my question is whether this patch should be required
to introduce the prefetching into s_b. Or should we use posix_fadvise
for now, get most of the benefit, and leave the prefetch into s_b as an
improvement for later?

The thing is - we're already doing posix_fadvise prefetching in bitmap
heap scans, it would not be putting additional burden on the direct I/O
patch (hypothetical, so far).

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#24Stephen Frost
sfrost@snowman.net
In reply to: Tomas Vondra (#23)
Re: WAL prefetch

Greetings,

* Tomas Vondra (tomas.vondra@2ndquadrant.com) wrote:

On 06/16/2018 12:06 PM, Thomas Munro wrote:

On Sat, Jun 16, 2018 at 9:38 PM, Tomas Vondra
<tomas.vondra@2ndquadrant.com> wrote:

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure it has advantages, but I suppose prefetching into page cache would be much easier to implement).

posix_fadvise(POSIX_FADV_WILLNEED) might already get most of the
speed-up available here in the short term for this immediate
application, but in the long term a shared buffers prefetch system is
one of the components we'll need to support direct IO.

Sure. Assuming the switch to direct I/O will happen (it probably will,
sooner or later), my question is whether this patch should be required to
introduce the prefetching into s_b. Or should we use posix_fadvise for now,
get most of the benefit, and leave the prefetch into s_b as an improvement
for later?

The thing is - we're already doing posix_fadvise prefetching in bitmap heap
scans, it would not be putting additional burden on the direct I/O patch
(hypothetical, so far).

This was my take on it also. Prefetching is something we've come to
accept in other parts of the system and if it's beneficial to add it
here then we should certainly do so and it seems like it'd keep the
patch nice and simple and small.

Thanks!

Stephen

#25Andres Freund
andres@anarazel.de
In reply to: Tomas Vondra (#21)
Re: WAL prefetch

On 2018-06-16 11:38:59 +0200, Tomas Vondra wrote:

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure it
has advantages, but I suppose prefetching into page cache would be much
easier to implement).

I think there's a number of issues with just issuing prefetch requests
via fadvise etc:

- it leads to guaranteed double buffering, in a way that's just about
guaranteed to *never* be useful. Because we'd only prefetch whenever
there's an upcoming write, there's simply no benefit in the page
staying in the page cache - we'll write out the whole page back to the
OS.
- reading from the page cache is far from free - so you add costs to the
replay process that it doesn't need to do.
- you don't have any sort of completion notification, so you basically
just have to guess how far ahead you want to read. If you read a bit
too much you suddenly get into synchronous blocking land.
- The OS page is actually not particularly scalable to large amounts of
data either. Nor are the decisions what to keep cached likley to be
particularly useful.
- We imo need to add support for direct IO before long, and adding more
and more work to reach feature parity strikes meas a bad move.

Greetings,

Andres Freund

#26Andres Freund
andres@anarazel.de
In reply to: Konstantin Knizhnik (#1)
Re: WAL prefetch

Hi,

On 2018-06-13 16:09:45 +0300, Konstantin Knizhnik wrote:

Usage:
1. At master: create extension wal_prefetch
2. At replica: Call pg_wal_prefetch() function: it will not return until you
interrupt it.

FWIW, I think the proper design would rather be a background worker that
does this work. Forcing the user to somehow coordinate starting a
permanently running script whenever the database restarts isn't
great. There's also some issues around snapshots preventing vacuum
(which could be solved, but not nicely).

Greetings,

Andres Freund

#27Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Andres Freund (#25)
Re: WAL prefetch

On 06/16/2018 09:02 PM, Andres Freund wrote:

On 2018-06-16 11:38:59 +0200, Tomas Vondra wrote:

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure it
has advantages, but I suppose prefetching into page cache would be much
easier to implement).

I think there's a number of issues with just issuing prefetch requests
via fadvise etc:

- it leads to guaranteed double buffering, in a way that's just about
guaranteed to *never* be useful. Because we'd only prefetch whenever
there's an upcoming write, there's simply no benefit in the page
staying in the page cache - we'll write out the whole page back to the
OS.

How does reading directly into shared buffers substantially change the
behavior? The only difference is that we end up with the double
buffering after performing the write. Which is expected to happen pretty
quick after the read request.

- reading from the page cache is far from free - so you add costs to the
replay process that it doesn't need to do.
- you don't have any sort of completion notification, so you basically
just have to guess how far ahead you want to read. If you read a bit
too much you suddenly get into synchronous blocking land.
- The OS page is actually not particularly scalable to large amounts of
data either. Nor are the decisions what to keep cached likley to be
particularly useful.

The posix_fadvise approach is not perfect, no doubt about that. But it
works pretty well for bitmap heap scans, and it's about 13249x better
(rough estimate) than the current solution (no prefetching).

- We imo need to add support for direct IO before long, and adding more
and more work to reach feature parity strikes meas a bad move.

IMHO it's unlikely to happen in PG12, but I might be over-estimating the
invasiveness and complexity of the direct I/O change. While this patch
seems pretty doable, and the improvements are pretty significant.

My point was that I don't think this actually adds a significant amount
of work to the direct IO patch, as we already do prefetch for bitmap
heap scans. So this needs to be written anyway, and I'd expect those two
places to share most of the code. So where's the additional work?

I don't think we should reject patches just because it might add a bit
of work to some not-yet-written future patch ... (which I however don't
think is this case).

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#28Andres Freund
andres@anarazel.de
In reply to: Tomas Vondra (#27)
Re: WAL prefetch

Hi,

On 2018-06-16 21:34:30 +0200, Tomas Vondra wrote:

- it leads to guaranteed double buffering, in a way that's just about
guaranteed to *never* be useful. Because we'd only prefetch whenever
there's an upcoming write, there's simply no benefit in the page
staying in the page cache - we'll write out the whole page back to the
OS.

How does reading directly into shared buffers substantially change the
behavior? The only difference is that we end up with the double
buffering after performing the write. Which is expected to happen pretty
quick after the read request.

Random reads directly as a response to a read() request can be cached
differently - and we trivially could force that with another fadvise() -
than posix_fadvise(WILLNEED). There's pretty much no other case - so
far - where we know as clearly that we won't re-read the page until
write as here.

- you don't have any sort of completion notification, so you basically
just have to guess how far ahead you want to read. If you read a bit
too much you suddenly get into synchronous blocking land.
- The OS page is actually not particularly scalable to large amounts of
data either. Nor are the decisions what to keep cached likley to be
particularly useful.

The posix_fadvise approach is not perfect, no doubt about that. But it
works pretty well for bitmap heap scans, and it's about 13249x better
(rough estimate) than the current solution (no prefetching).

Sure, but investing in an architecture we know might not live long also
has it's cost. Especially if it's not that complicated to do better.

My point was that I don't think this actually adds a significant amount
of work to the direct IO patch, as we already do prefetch for bitmap
heap scans. So this needs to be written anyway, and I'd expect those two
places to share most of the code. So where's the additional work?

I think it's largely entirely separate from what we'd do for bitmap
index scans.

Greetings,

Andres Freund

#29Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Andres Freund (#25)
Re: WAL prefetch

On 16.06.2018 22:02, Andres Freund wrote:

On 2018-06-16 11:38:59 +0200, Tomas Vondra wrote:

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure it
has advantages, but I suppose prefetching into page cache would be much
easier to implement).

I think there's a number of issues with just issuing prefetch requests
via fadvise etc:

- it leads to guaranteed double buffering, in a way that's just about
guaranteed to *never* be useful. Because we'd only prefetch whenever
there's an upcoming write, there's simply no benefit in the page
staying in the page cache - we'll write out the whole page back to the
OS.

Sorry, I do not completely understand this.
Prefetch is only needed for partial update of a page - in this case we
need to first read page from the disk
before been able to perform update. So before "we'll write out the whole
page back to the OS" we have to read this page.
And if page is in OS cached (prefetched) then is can be done much faster.

Please notice that at the moment of prefetch there is no double
buffering. As far as page is not accessed before, it is not present in
shared buffers. And once page is updated,  there is really no need to
keep it in shared buffers.  We can use cyclic buffers (like in case  of
sequential scan or bulk update) to prevent throwing away useful pages
from shared  buffers by redo process. So once again there will no double
buffering.

- reading from the page cache is far from free - so you add costs to the
replay process that it doesn't need to do.
- you don't have any sort of completion notification, so you basically
just have to guess how far ahead you want to read. If you read a bit
too much you suddenly get into synchronous blocking land.
- The OS page is actually not particularly scalable to large amounts of
data either. Nor are the decisions what to keep cached likley to be
particularly useful.
- We imo need to add support for direct IO before long, and adding more
and more work to reach feature parity strikes meas a bad move.

I am not so familiar with current implementation of full page writes
mechanism in Postgres.
So may be my idea explained below is stupid or already implemented (but
I failed to find any traces of this).
Prefetch is needed only for WAL records performing partial update. Full
page write doesn't require prefetch.
Full page write has to be performed when the page is update first time
after checkpoint.
But what if slightly extend this rule and perform full page write also
when distance from previous full page write exceeds some delta
(which somehow related with size of OS cache)?

In this case even if checkpoint interval is larger than OS cache size,
we still can expect that updated pages are present in OS cache.
And no WAL prefetch is needed at all!

#30Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Andres Freund (#26)
Re: WAL prefetch

On 16.06.2018 22:23, Andres Freund wrote:

Hi,

On 2018-06-13 16:09:45 +0300, Konstantin Knizhnik wrote:

Usage:
1. At master: create extension wal_prefetch
2. At replica: Call pg_wal_prefetch() function: it will not return until you
interrupt it.

FWIW, I think the proper design would rather be a background worker that
does this work. Forcing the user to somehow coordinate starting a
permanently running script whenever the database restarts isn't
great. There's also some issues around snapshots preventing vacuum
(which could be solved, but not nicely).

As I already wrote, the current my approach with extension and
pg_wal_prefetch function called by user can be treated only as prototype
implementation which can be used to estimate efficiency of prefetch. But
in case of prefetching in shared buffers, one background worker will not
be enough. Prefetch can can speedup recovery process if it performs
reads in parallel or background. So more than once background worker
will be needed for prefetch if we read data to Postgres shared buffers
rather then using posix_prefetch to load page in OS cache.

Show quoted text

Greetings,

Andres Freund

#31Andres Freund
andres@anarazel.de
In reply to: Konstantin Knizhnik (#29)
Re: WAL prefetch

On 2018-06-16 23:25:34 +0300, Konstantin Knizhnik wrote:

On 16.06.2018 22:02, Andres Freund wrote:

On 2018-06-16 11:38:59 +0200, Tomas Vondra wrote:

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure it
has advantages, but I suppose prefetching into page cache would be much
easier to implement).

I think there's a number of issues with just issuing prefetch requests
via fadvise etc:

- it leads to guaranteed double buffering, in a way that's just about
guaranteed to *never* be useful. Because we'd only prefetch whenever
there's an upcoming write, there's simply no benefit in the page
staying in the page cache - we'll write out the whole page back to the
OS.

Sorry, I do not completely understand this.

Prefetch is only needed for partial update of a page - in this case we need
to first read page from the disk

Yes.

before been able to perform update. So before "we'll write out the whole
page back to the OS" we have to read this page.
And if page is in OS cached (prefetched) then is can be done much faster.

Yes.

Please notice that at the moment of prefetch there is no double
buffering.

Sure, but as soon as it's read there is.

As far as page is not accessed before, it is not present in shared buffers.
And once page is updated,� there is really no need to keep it in shared
buffers.� We can use cyclic buffers (like in case� of sequential scan or
bulk update) to prevent throwing away useful pages from shared� buffers by
redo process. So once again there will no double buffering.

That's a terrible idea. There's a *lot* of spatial locality of further
WAL records arriving for the same blocks.

I am not so familiar with current implementation of full page writes
mechanism in Postgres.
So may be my idea explained below is stupid or already implemented (but I
failed to find any traces of this).
Prefetch is needed only for WAL records performing partial update. Full page
write doesn't require prefetch.
Full page write has to be performed when the page is update first time after
checkpoint.
But what if slightly extend this rule and perform full page write also when
distance from previous full page write exceeds some delta
(which somehow related with size of OS cache)?

In this case even if checkpoint interval is larger than OS cache size, we
still can expect that updated pages are present in OS cache.
And no WAL prefetch is needed at all!

We could do so, but I suspect the WAL volume penalty would be
prohibitive in many cases. Worthwhile to try though.

Greetings,

Andres Freund

#32Andres Freund
andres@anarazel.de
In reply to: Konstantin Knizhnik (#30)
Re: WAL prefetch

On 2018-06-16 23:31:49 +0300, Konstantin Knizhnik wrote:

On 16.06.2018 22:23, Andres Freund wrote:

Hi,

On 2018-06-13 16:09:45 +0300, Konstantin Knizhnik wrote:

Usage:
1. At master: create extension wal_prefetch
2. At replica: Call pg_wal_prefetch() function: it will not return until you
interrupt it.

FWIW, I think the proper design would rather be a background worker that
does this work. Forcing the user to somehow coordinate starting a
permanently running script whenever the database restarts isn't
great. There's also some issues around snapshots preventing vacuum
(which could be solved, but not nicely).

As I already wrote, the current my approach with extension and
pg_wal_prefetch function called by user can be treated only as prototype
implementation which can be used to estimate efficiency of prefetch. But in
case of prefetching in shared buffers, one background worker will not be
enough. Prefetch can can speedup recovery process if it performs reads in
parallel or background. So more than once background worker will be needed
for prefetch if we read data to Postgres shared buffers rather then using
posix_prefetch to load page in OS cache.

Sure, we'd need more than one to get the full benefit, but that's not
really hard. You'd see benefit even with a single process, because WAL
replay often has a lot of other bottlenecks too. But no reason to not
have multiple ones.

Greetings,

Andres Freund

#33Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Andres Freund (#31)
Re: WAL prefetch

On 17.06.2018 03:00, Andres Freund wrote:

On 2018-06-16 23:25:34 +0300, Konstantin Knizhnik wrote:

On 16.06.2018 22:02, Andres Freund wrote:

On 2018-06-16 11:38:59 +0200, Tomas Vondra wrote:

On 06/15/2018 08:01 PM, Andres Freund wrote:

On 2018-06-14 10:13:44 +0300, Konstantin Knizhnik wrote:

On 14.06.2018 09:52, Thomas Munro wrote:

On Thu, Jun 14, 2018 at 1:09 AM, Konstantin Knizhnik
<k.knizhnik@postgrespro.ru> wrote:

pg_wal_prefetch function will infinitely traverse WAL and prefetch block
references in WAL records
using posix_fadvise(WILLNEED) system call.

Hi Konstantin,

Why stop at the page cache... what about shared buffers?

It is good question. I thought a lot about prefetching directly to shared
buffers.

I think that's definitely how this should work. I'm pretty strongly
opposed to a prefetching implementation that doesn't read into s_b.

Could you elaborate why prefetching into s_b is so much better (I'm sure it
has advantages, but I suppose prefetching into page cache would be much
easier to implement).

I think there's a number of issues with just issuing prefetch requests
via fadvise etc:

- it leads to guaranteed double buffering, in a way that's just about
guaranteed to *never* be useful. Because we'd only prefetch whenever
there's an upcoming write, there's simply no benefit in the page
staying in the page cache - we'll write out the whole page back to the
OS.

Sorry, I do not completely understand this.
Prefetch is only needed for partial update of a page - in this case we need
to first read page from the disk

Yes.

before been able to perform update. So before "we'll write out the whole
page back to the OS" we have to read this page.
And if page is in OS cached (prefetched) then is can be done much faster.

Yes.

Please notice that at the moment of prefetch there is no double
buffering.

Sure, but as soon as it's read there is.

As far as page is not accessed before, it is not present in shared buffers.
And once page is updated,  there is really no need to keep it in shared
buffers.  We can use cyclic buffers (like in case  of sequential scan or
bulk update) to prevent throwing away useful pages from shared  buffers by
redo process. So once again there will no double buffering.

That's a terrible idea. There's a *lot* of spatial locality of further
WAL records arriving for the same blocks.

In some cases it is true, in some cases - not. In typical OLTP system if
record is updated, then there is high probability that
it will be accessed soon. So if at such system we perform write requests
on master and read-only queries at replicas,
keeping updated pages in shared buffers at replica can be very helpful.

But if replica is used for running mostly analytic queries while master
performs some updates, then
it is more useful to keep in replica's cache indexes  and most
frequently accessed pages, rather than recent updates from the master.

So at least it seems to be reasonable to have such parameter and make
DBA to choose caching policy at replicas.

I am not so familiar with current implementation of full page writes
mechanism in Postgres.
So may be my idea explained below is stupid or already implemented (but I
failed to find any traces of this).
Prefetch is needed only for WAL records performing partial update. Full page
write doesn't require prefetch.
Full page write has to be performed when the page is update first time after
checkpoint.
But what if slightly extend this rule and perform full page write also when
distance from previous full page write exceeds some delta
(which somehow related with size of OS cache)?

In this case even if checkpoint interval is larger than OS cache size, we
still can expect that updated pages are present in OS cache.
And no WAL prefetch is needed at all!

We could do so, but I suspect the WAL volume penalty would be
prohibitive in many cases. Worthwhile to try though.

Well, the typical size of server's memory is now several hundreds of
megabytes.
Certainly some of this memory is used for shared buffers, backends work
memory, ...
But still there are hundreds of gigabytes of free memory which can be
used by OS for caching.
Let's assume that full page write threshold is 100Gb. So one extra 8kb
for 100Gb of WAL!
Certainly it is estimation only for one page and it is more realistic to
expect that we have to force full page writes for most of the updated
pages. But still I do not believe that it will cause significant growth
of log size.

Another question is why do we choose so large checkpoint interval: re
than hundred gigabytes.
Certainly frequent checkpoints have negative impact on performance. But
100Gb is not "too frequent" in any case...

#34Robert Haas
robertmhaas@gmail.com
In reply to: Andres Freund (#28)
Re: WAL prefetch

On Sat, Jun 16, 2018 at 3:41 PM, Andres Freund <andres@anarazel.de> wrote:

The posix_fadvise approach is not perfect, no doubt about that. But it
works pretty well for bitmap heap scans, and it's about 13249x better
(rough estimate) than the current solution (no prefetching).

Sure, but investing in an architecture we know might not live long also
has it's cost. Especially if it's not that complicated to do better.

My guesses are:

- Using OS prefetching is a very small patch.
- Prefetching into shared buffers is a much bigger patch.
- It'll be five years before we have direct I/O.

--
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

#35Andres Freund
andres@anarazel.de
In reply to: Robert Haas (#34)
Re: WAL prefetch

On 2018-06-18 16:44:09 -0400, Robert Haas wrote:

On Sat, Jun 16, 2018 at 3:41 PM, Andres Freund <andres@anarazel.de> wrote:

The posix_fadvise approach is not perfect, no doubt about that. But it
works pretty well for bitmap heap scans, and it's about 13249x better
(rough estimate) than the current solution (no prefetching).

Sure, but investing in an architecture we know might not live long also
has it's cost. Especially if it's not that complicated to do better.

My guesses are:

- Using OS prefetching is a very small patch.
- Prefetching into shared buffers is a much bigger patch.

Why? The majority of the work is standing up a bgworker that does
prefetching (i.e. reads WAL, figures out reads not in s_b, does
prefetch). Allowing a configurable number + some synchronization between
them isn't that much more work.

- It'll be five years before we have direct I/O.

I think we'll have lost a significant market share by then if that's the
case. Deservedly so.

Greetings,

Andres Freund

#36Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Andres Freund (#35)
Re: WAL prefetch

On 18.06.2018 23:47, Andres Freund wrote:

On 2018-06-18 16:44:09 -0400, Robert Haas wrote:

On Sat, Jun 16, 2018 at 3:41 PM, Andres Freund <andres@anarazel.de> wrote:

The posix_fadvise approach is not perfect, no doubt about that. But it
works pretty well for bitmap heap scans, and it's about 13249x better
(rough estimate) than the current solution (no prefetching).

Sure, but investing in an architecture we know might not live long also
has it's cost. Especially if it's not that complicated to do better.

My guesses are:

- Using OS prefetching is a very small patch.
- Prefetching into shared buffers is a much bigger patch.

Why? The majority of the work is standing up a bgworker that does
prefetching (i.e. reads WAL, figures out reads not in s_b, does
prefetch). Allowing a configurable number + some synchronization between
them isn't that much more work.

I do not think that prefetching in shared buffers requires much more
efforts and make patch more envasive...
It even somehow simplify it, because there is no to maintain own cache
of prefetched pages...
But it will definitely have much more impact on Postgres performance:
contention for buffer locks, throwing away pages accessed by read-only
queries,...

Also there are two points which makes prefetching into shared buffers
more complex:
1. Need to spawn multiple workers to make prefetch in parallel and
somehow distribute work between them.
2. Synchronize work of recovery process with prefetch to prevent
prefetch to go too far and doing useless job.
The same problem exists for prefetch in OS cache, but here risk of false
prefetch is less critical.

- It'll be five years before we have direct I/O.

I think we'll have lost a significant market share by then if that's the
case. Deservedly so.

I have implemented some number of DBMS engines (GigaBASE, GOODS, FastDB,
...) and have supported direct IO (as option) in most of them.
But at most workloads I have not get any significant improvement in
performance.
Certainly, it may be some problem with my implementations... and Linux
kernel is significantly changed since this time.
But there is one "axiom" which complicates usage of direct IO: only OS
knows at each moment of time how much free memory it has.
So only OS can efficiently schedule memory so that all system RAM is
used.\302\240 It is very hard if ever possible to do it at application level.

As a result you will have to be very conservative in choosing size of
shared buffers to fit in RAM and avoid swapping.
It may be possible if you have complete control on the server and there
is just one Postgres instance running at this server.
But now there is a trend towards visualization and clouds and such
assumption is not true in most cases. So double buffering
(or even triple if take in account on-device internal caches) is
definitely an issue. But direct IO seems to be not a silver bullet for
solving it...

Concerning WAL perfetch I still have a serious doubt if it is needed at
all:
if checkpoint interval is less than size of free memory at the system,
then redo process should not read much.
And if checkpoint interval is much larger than OS cache (are there cases
when it is really needed?) then quite small patch (as it seems to me now)
forcing full page write when distance between page LSN and current WAL
insertion point exceeds some threshold should eliminate random reads
also in this case.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#37Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Konstantin Knizhnik (#36)
Re: WAL prefetch

On 06/19/2018 11:08 AM, Konstantin Knizhnik wrote:

On 18.06.2018 23:47, Andres Freund wrote:

On 2018-06-18 16:44:09 -0400, Robert Haas wrote:

On Sat, Jun 16, 2018 at 3:41 PM, Andres Freund <andres@anarazel.de>
wrote:

The posix_fadvise approach is not perfect, no doubt about that. But it
works pretty well for bitmap heap scans, and it's about 13249x better
(rough estimate) than the current solution (no prefetching).

Sure, but investing in an architecture we know might not live long also
has it's cost. Especially if it's not that complicated to do better.

My guesses are:

- Using OS prefetching is a very small patch.
- Prefetching into shared buffers is a much bigger patch.

Why?\302\240 The majority of the work is standing up a bgworker that does
prefetching (i.e. reads WAL, figures out reads not in s_b, does
prefetch). Allowing a configurable number + some synchronization between
them isn't that much more work.

I do not think that prefetching in shared buffers requires much more
efforts and make patch more envasive...
It even somehow simplify it, because there is no to maintain own cache
of prefetched pages...
But it will definitely have much more impact on Postgres performance:
contention for buffer locks, throwing away pages accessed by read-only
queries,...

Also there are two points which makes prefetching into shared buffers
more complex:
1. Need to spawn multiple workers to make prefetch in parallel and
somehow distribute work between them.
2. Synchronize work of recovery process with prefetch to prevent
prefetch to go too far and doing useless job.
The same problem exists for prefetch in OS cache, but here risk of false
prefetch is less critical.

I think the main challenge here is that all buffer reads are currently
synchronous (correct me if I'm wrong), while the posix_fadvise() allows
a to prefetch the buffers asynchronously.

I don't think simply spawning a couple of bgworkers to prefetch buffers
is going to be equal to async prefetch, unless we support some sort of
async I/O. Maybe something has changed recently, but every time I looked
for good portable async I/O API/library I got burned.

Now, maybe a couple of bgworkers prefetching buffers synchronously would
be good enough for WAL refetching - after all, we only need to prefetch
data fast enough for the recovery not to wait. But I doubt it's going to
be good enough for bitmap heap scans, for example.

We need a prefetch that allows filling the I/O queues with hundreds of
requests, and I don't think sync prefetch from a handful of bgworkers
can achieve that.

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#38Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Tomas Vondra (#37)
Re: WAL prefetch

On 19.06.2018 14:03, Tomas Vondra wrote:

On 06/19/2018 11:08 AM, Konstantin Knizhnik wrote:

On 18.06.2018 23:47, Andres Freund wrote:

On 2018-06-18 16:44:09 -0400, Robert Haas wrote:

On Sat, Jun 16, 2018 at 3:41 PM, Andres Freund <andres@anarazel.de>
wrote:

The posix_fadvise approach is not perfect, no doubt about that.
But it
works pretty well for bitmap heap scans, and it's about 13249x
better
(rough estimate) than the current solution (no prefetching).

Sure, but investing in an architecture we know might not live long
also
has it's cost. Especially if it's not that complicated to do better.

My guesses are:

- Using OS prefetching is a very small patch.
- Prefetching into shared buffers is a much bigger patch.

Why?\302\240 The majority of the work is standing up a bgworker that does
prefetching (i.e. reads WAL, figures out reads not in s_b, does
prefetch). Allowing a configurable number + some synchronization
between
them isn't that much more work.

I do not think that prefetching in shared buffers requires much more
efforts and make patch more envasive...
It even somehow simplify it, because there is no to maintain own
cache of prefetched pages...
But it will definitely have much more impact on Postgres performance:
contention for buffer locks, throwing away pages accessed by
read-only queries,...

Also there are two points which makes prefetching into shared buffers
more complex:
1. Need to spawn multiple workers to make prefetch in parallel and
somehow distribute work between them.
2. Synchronize work of recovery process with prefetch to prevent
prefetch to go too far and doing useless job.
The same problem exists for prefetch in OS cache, but here risk of
false prefetch is less critical.

I think the main challenge here is that all buffer reads are currently
synchronous (correct me if I'm wrong), while the posix_fadvise()
allows a to prefetch the buffers asynchronously.

Yes, this is why we have to spawn several concurrent background workers
to perfrom prefetch.

I don't think simply spawning a couple of bgworkers to prefetch
buffers is going to be equal to async prefetch, unless we support some
sort of async I/O. Maybe something has changed recently, but every
time I looked for good portable async I/O API/library I got burned.

Now, maybe a couple of bgworkers prefetching buffers synchronously
would be good enough for WAL refetching - after all, we only need to
prefetch data fast enough for the recovery not to wait. But I doubt
it's going to be good enough for bitmap heap scans, for example.

We need a prefetch that allows filling the I/O queues with hundreds of
requests, and I don't think sync prefetch from a handful of bgworkers
can achieve that.

regards

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#39Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Konstantin Knizhnik (#38)
Re: WAL prefetch

On 06/19/2018 02:33 PM, Konstantin Knizhnik wrote:

On 19.06.2018 14:03, Tomas Vondra wrote:

On 06/19/2018 11:08 AM, Konstantin Knizhnik wrote:

...

Also there are two points which makes prefetching into shared buffers
more complex:
1. Need to spawn multiple workers to make prefetch in parallel and
somehow distribute work between them.
2. Synchronize work of recovery process with prefetch to prevent
prefetch to go too far and doing useless job.
The same problem exists for prefetch in OS cache, but here risk of
false prefetch is less critical.

I think the main challenge here is that all buffer reads are currently
synchronous (correct me if I'm wrong), while the posix_fadvise()
allows a to prefetch the buffers asynchronously.

Yes, this is why we have to spawn several concurrent background workers
to perfrom prefetch.

Right. My point is that while spawning bgworkers probably helps, I don't
expect it to be enough to fill the I/O queues on modern storage systems.
Even if you start say 16 prefetch bgworkers, that's not going to be
enough for large arrays or SSDs. Those typically need way more than 16
requests in the queue.

Consider for example [1]/messages/by-id/CAHyXU0yiVvfQAnR9cyH=HWh1WbLRsioe=mzRJTHwtr=2azsTdQ@mail.gmail.com from 2014 where Merlin reported how S3500
(Intel SATA SSD) behaves with different effective_io_concurrency values:

[1]: /messages/by-id/CAHyXU0yiVvfQAnR9cyH=HWh1WbLRsioe=mzRJTHwtr=2azsTdQ@mail.gmail.com
/messages/by-id/CAHyXU0yiVvfQAnR9cyH=HWh1WbLRsioe=mzRJTHwtr=2azsTdQ@mail.gmail.com

Clearly, you need to prefetch 32/64 blocks or so. Consider you may have
multiple such devices in a single RAID array, and that this device is
from 2014 (and newer flash devices likely need even deeper queues).

ISTM a small number of bgworkers is not going to be sufficient. It might
be enough for WAL prefetching (where we may easily run into the
redo-is-single-threaded bottleneck), but it's hardly a solution for
bitmap heap scans, for example. We'll need to invent something else for
that.

OTOH my guess is that whatever solution we'll end up implementing for
bitmap heap scans, it will be applicable for WAL prefetching too. Which
is why I'm suggesting simply using posix_fadvise is not going to make
the direct I/O patch significantly more complicated.

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#40Ants Aasma
ants.aasma@eesti.ee
In reply to: Tomas Vondra (#39)
Re: WAL prefetch

On Tue, Jun 19, 2018 at 4:04 PM Tomas Vondra <tomas.vondra@2ndquadrant.com>
wrote:

Right. My point is that while spawning bgworkers probably helps, I don't
expect it to be enough to fill the I/O queues on modern storage systems.
Even if you start say 16 prefetch bgworkers, that's not going to be
enough for large arrays or SSDs. Those typically need way more than 16
requests in the queue.

Consider for example [1] from 2014 where Merlin reported how S3500
(Intel SATA SSD) behaves with different effective_io_concurrency values:

[1]

/messages/by-id/CAHyXU0yiVvfQAnR9cyH=HWh1WbLRsioe=mzRJTHwtr=2azsTdQ@mail.gmail.com

Clearly, you need to prefetch 32/64 blocks or so. Consider you may have
multiple such devices in a single RAID array, and that this device is
from 2014 (and newer flash devices likely need even deeper queues).'

For reference, a typical datacenter SSD needs a queue depth of 128 to
saturate a single device. [1]https://www.anandtech.com/show/12435/the-intel-ssd-dc-p4510-ssd-review-part-1-virtual-raid-on-cpu-vroc-scalability/3 Multiply that appropriately for RAID arrays.

Regards,
Ants Aasma

[1]: https://www.anandtech.com/show/12435/the-intel-ssd-dc-p4510-ssd-review-part-1-virtual-raid-on-cpu-vroc-scalability/3
https://www.anandtech.com/show/12435/the-intel-ssd-dc-p4510-ssd-review-part-1-virtual-raid-on-cpu-vroc-scalability/3

#41Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Ants Aasma (#40)
Re: WAL prefetch

On 19.06.2018 16:57, Ants Aasma wrote:

On Tue, Jun 19, 2018 at 4:04 PM Tomas Vondra
<tomas.vondra@2ndquadrant.com <mailto:tomas.vondra@2ndquadrant.com>>
wrote:

Right. My point is that while spawning bgworkers probably helps, I
don't
expect it to be enough to fill the I/O queues on modern storage
systems.
Even if you start say 16 prefetch bgworkers, that's not going to be
enough for large arrays or SSDs. Those typically need way more
than 16
requests in the queue.

Consider for example [1] from 2014 where Merlin reported how S3500
(Intel SATA SSD) behaves with different effective_io_concurrency
values:

[1]
/messages/by-id/CAHyXU0yiVvfQAnR9cyH=HWh1WbLRsioe=mzRJTHwtr=2azsTdQ@mail.gmail.com

Clearly, you need to prefetch 32/64 blocks or so. Consider you may
have
multiple such devices in a single RAID array, and that this device is
from 2014 (and newer flash devices likely need even deeper queues).'

For reference, a typical datacenter SSD needs a queue depth of 128 to
saturate a single device. [1] Multiply that appropriately for RAID
arrays.So

How it is related with results for S3500  where this is almost now
performance improvement for effective_io_concurrency >8?
Starting 128 or more workers for performing prefetch is definitely not
acceptable...

Regards,
Ants Aasma

[1]
https://www.anandtech.com/show/12435/the-intel-ssd-dc-p4510-ssd-review-part-1-virtual-raid-on-cpu-vroc-scalability/3

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#42Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Konstantin Knizhnik (#41)
Re: WAL prefetch

On 06/19/2018 04:50 PM, Konstantin Knizhnik wrote:

On 19.06.2018 16:57, Ants Aasma wrote:

On Tue, Jun 19, 2018 at 4:04 PM Tomas Vondra
<tomas.vondra@2ndquadrant.com <mailto:tomas.vondra@2ndquadrant.com>>
wrote:

Right. My point is that while spawning bgworkers probably helps, I
don't
expect it to be enough to fill the I/O queues on modern storage
systems.
Even if you start say 16 prefetch bgworkers, that's not going to be
enough for large arrays or SSDs. Those typically need way more
than 16
requests in the queue.

Consider for example [1] from 2014 where Merlin reported how S3500
(Intel SATA SSD) behaves with different effective_io_concurrency
values:

[1]
/messages/by-id/CAHyXU0yiVvfQAnR9cyH=HWh1WbLRsioe=mzRJTHwtr=2azsTdQ@mail.gmail.com

Clearly, you need to prefetch 32/64 blocks or so. Consider you may
have
multiple such devices in a single RAID array, and that this device is
from 2014 (and newer flash devices likely need even deeper queues).'

For reference, a typical datacenter SSD needs a queue depth of 128 to
saturate a single device. [1] Multiply that appropriately for RAID
arrays.So

How it is related with results for S3500  where this is almost now
performance improvement for effective_io_concurrency >8?
Starting 128 or more workers for performing prefetch is definitely not
acceptable...

I'm not sure what you mean by "almost now performance improvement", but
I guess you meant "almost no performance improvement" instead?

If that's the case, it's not quite true - increasing the queue depth
above 8 further improved the throughput by about ~10-20% (both by
duration and peak throughput measured by iotop).

But more importantly, this is just a single device - you typically have
multiple of them in a larger arrays, to get better capacity, performance
and/or reliability. So if you have 16 such drives, and you want to send
at least 8 requests to each, suddenly you need at least 128 requests.

And as pointed out before, S3500 is about 5-years old device (it was
introduced in Q2/2013). On newer devices the difference is usually way
more significant / the required queue depth is much higher.

Obviously, this is a somewhat simplified view, ignoring various details
(e.g. that there may be multiple concurrent queries, each sending I/O
requests - what matters is the combined number of requests, of course).
But I don't think this makes a huge difference.

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#43Andres Freund
andres@anarazel.de
In reply to: Konstantin Knizhnik (#36)
Re: WAL prefetch

On 2018-06-19 12:08:27 +0300, Konstantin Knizhnik wrote:

I do not think that prefetching in shared buffers requires much more efforts
and make patch more envasive...
It even somehow simplify it, because there is no to maintain own cache of
prefetched pages...

But it will definitely have much more impact on Postgres performance:
contention for buffer locks, throwing away pages accessed by read-only
queries,...

These arguments seem bogus to me. Otherwise the startup process is going
to do that work.

Also there are two points which makes prefetching into shared buffers more
complex:
1. Need to spawn multiple workers to make prefetch in parallel and somehow
distribute work between them.

I'm not even convinced that's true. It doesn't seem insane to have a
queue of, say, 128 requests that are done with posix_fadvise WILLNEED,
where the oldest requests is read into shared buffers by the
prefetcher. And then discarded from the page cache with WONTNEED. I
think we're going to want a queue that's sorted in the prefetch process
anyway, because there's a high likelihood that we'll otherwise issue
prfetch requets for the same pages over and over again.

That gets rid of most of the disadvantages: We have backpressure
(because the read into shared buffers will block if not yet ready),
we'll prevent double buffering, we'll prevent the startup process from
doing the victim buffer search.

Concerning WAL perfetch I still have a serious doubt if it is needed at all:
if checkpoint interval is less than size of free memory at the system, then
redo process should not read much.

I'm confused. Didn't you propose this? FWIW, there's a significant
number of installations where people have observed this problem in
practice.

And if checkpoint interval is much larger than OS cache (are there cases
when it is really needed?)

Yes, there are. Percentage of FPWs can cause serious problems, as do
repeated writouts by the checkpointer.

then quite small patch (as it seems to me now) forcing full page write
when distance between page LSN and current WAL insertion point exceeds
some threshold should eliminate random reads also in this case.

I'm pretty sure that that'll hurt a significant number of installations,
that set the timeout high, just so they can avoid FPWs.

Greetings,

Andres Freund

#44Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Andres Freund (#43)
Re: WAL prefetch

On 19.06.2018 18:50, Andres Freund wrote:

On 2018-06-19 12:08:27 +0300, Konstantin Knizhnik wrote:

I do not think that prefetching in shared buffers requires much more efforts
and make patch more envasive...
It even somehow simplify it, because there is no to maintain own cache of
prefetched pages...
But it will definitely have much more impact on Postgres performance:
contention for buffer locks, throwing away pages accessed by read-only
queries,...

These arguments seem bogus to me. Otherwise the startup process is going
to do that work.

There is just one process replaying WAL. Certainly it has some impact on
hot standby query execution.
But if there will be several prefetch workers (128???) then this impact
will be dramatically increased.

Also there are two points which makes prefetching into shared buffers more
complex:
1. Need to spawn multiple workers to make prefetch in parallel and somehow
distribute work between them.

I'm not even convinced that's true. It doesn't seem insane to have a
queue of, say, 128 requests that are done with posix_fadvise WILLNEED,
where the oldest requests is read into shared buffers by the
prefetcher. And then discarded from the page cache with WONTNEED. I
think we're going to want a queue that's sorted in the prefetch process
anyway, because there's a high likelihood that we'll otherwise issue
prfetch requets for the same pages over and over again.

That gets rid of most of the disadvantages: We have backpressure
(because the read into shared buffers will block if not yet ready),
we'll prevent double buffering, we'll prevent the startup process from
doing the victim buffer search.

Concerning WAL perfetch I still have a serious doubt if it is needed at all:
if checkpoint interval is less than size of free memory at the system, then
redo process should not read much.

I'm confused. Didn't you propose this? FWIW, there's a significant
number of installations where people have observed this problem in
practice.

Well, originally it was proposed by Sean - the author of pg-prefaulter.
I just ported it from GO to C using standard PostgreSQL WAL iterator.
Then I performed some measurements and didn't find some dramatic
improvement in performance (in case of synchronous replication) or
reducing replication lag for asynchronous replication neither at my
desktop (SSD, 16Gb RAM, local replication within same computer, pgbench
scale 1000), neither at pair of two powerful servers connected by
InfiniBand and 3Tb NVME (pgbench with scale 100000).
Also I noticed that read rate at replica is almost zero.
What does it mean:
1. I am doing something wrong.
2. posix_prefetch is not so efficient.
3. pgbench is not right workload to demonstrate effect of prefetch.
4. Hardware which I am using is not typical.

So it make me think when such prefetch may be needed... And it caused
new questions:
I wonder how frequently checkpoint interval is much larger than OS cache?
If we enforce full pages writes (let's say each after each 1Gb), how it
affect wal size and performance?

Looks like it is difficult to answer the second question without
implementing some prototype.
May be I will try to do it.

And if checkpoint interval is much larger than OS cache (are there cases
when it is really needed?)

Yes, there are. Percentage of FPWs can cause serious problems, as do
repeated writouts by the checkpointer.

One more consideration: data is written to the disk as blocks in any
case. If you updated just few bytes on a page, then still the whole page
has to be written in database file.
So avoiding full page writes allows to reduce WAL size and amount of
data written to the WAL, but not amount of data written to the database
itself.
It means that if we completely eliminate FPW and transactions are
updating random pages, then disk traffic is reduced less than two times...

then quite small patch (as it seems to me now) forcing full page write
when distance between page LSN and current WAL insertion point exceeds
some threshold should eliminate random reads also in this case.

I'm pretty sure that that'll hurt a significant number of installations,
that set the timeout high, just so they can avoid FPWs.

May be, but I am not so sure. This is why I will try to investigate it more.

Greetings,

Andres Freund

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

#45Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Andres Freund (#43)
Re: WAL prefetch

On 06/19/2018 05:50 PM, Andres Freund wrote:

On 2018-06-19 12:08:27 +0300, Konstantin Knizhnik wrote:

I do not think that prefetching in shared buffers requires much more efforts
and make patch more envasive...
It even somehow simplify it, because there is no to maintain own cache of
prefetched pages...

But it will definitely have much more impact on Postgres performance:
contention for buffer locks, throwing away pages accessed by read-only
queries,...

These arguments seem bogus to me. Otherwise the startup process is going
to do that work.

Also there are two points which makes prefetching into shared buffers more
complex:
1. Need to spawn multiple workers to make prefetch in parallel and somehow
distribute work between them.

I'm not even convinced that's true. It doesn't seem insane to have a
queue of, say, 128 requests that are done with posix_fadvise WILLNEED,
where the oldest requests is read into shared buffers by the
prefetcher. And then discarded from the page cache with WONTNEED. I
think we're going to want a queue that's sorted in the prefetch process
anyway, because there's a high likelihood that we'll otherwise issue
prfetch requets for the same pages over and over again.

That gets rid of most of the disadvantages: We have backpressure
(because the read into shared buffers will block if not yet ready),
we'll prevent double buffering, we'll prevent the startup process from
doing the victim buffer search.

I'm confused. I thought you wanted to prefetch directly to shared
buffers, so that it also works with direct I/O in the future. But now
you suggest to use posix_fadvise() to work around the synchronous buffer
read limitation. I don't follow ...

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#46Andres Freund
andres@anarazel.de
In reply to: Konstantin Knizhnik (#44)
Re: WAL prefetch

On 2018-06-19 19:34:22 +0300, Konstantin Knizhnik wrote:

On 19.06.2018 18:50, Andres Freund wrote:

On 2018-06-19 12:08:27 +0300, Konstantin Knizhnik wrote:

I do not think that prefetching in shared buffers requires much more efforts
and make patch more envasive...
It even somehow simplify it, because there is no to maintain own cache of
prefetched pages...
But it will definitely have much more impact on Postgres performance:
contention for buffer locks, throwing away pages accessed by read-only
queries,...

These arguments seem bogus to me. Otherwise the startup process is going
to do that work.

There is just one process replaying WAL. Certainly it has some impact on hot
standby query execution.
But if there will be several prefetch workers (128???) then this impact will
be dramatically increased.

Hence me suggesting how you can do that with one process (re locking). I
still entirely fail to see how "throwing away pages accessed by
read-only queries" is meaningful here - the startup process is going to
read the data anyway, and we *do not* want to use a ringbuffer as that'd
make the situation dramatically worse.

Well, originally it was proposed by Sean - the author of pg-prefaulter. I
just ported it from GO to C using standard PostgreSQL WAL iterator.
Then I performed some measurements and didn't find some dramatic improvement
in performance (in case of synchronous replication) or reducing replication
lag for asynchronous replication neither at my desktop (SSD, 16Gb RAM, local
replication within same computer, pgbench scale 1000), neither at pair of
two powerful servers connected by
InfiniBand and 3Tb NVME (pgbench with scale 100000).
Also I noticed that read rate at replica is almost zero.

What does it mean:
1. I am doing something wrong.
2. posix_prefetch is not so efficient.
3. pgbench is not right workload to demonstrate effect of prefetch.
4. Hardware which I am using is not typical.

I think it's probably largely a mix of 3 and 4. pgbench with random
distribution probably indeed is a bad testcase, because either
everything is in cache or just about every write ends up as a full page
write because of the scale. You might want to try a) turn of full page
writes b) use a less random distribution.

So it make me think when such prefetch may be needed... And it caused new
questions:
I wonder how frequently checkpoint interval is much larger than OS
cache?

Extremely common.

If we enforce full pages writes (let's say each after each 1Gb), how it
affect wal size and performance?

Extremely badly. If you look at stats of production servers (using
pg_waldump) you can see that large percentage of the total WAL volume is
FPWs, that FPWs are a storage / bandwidth / write issue, and that higher
FPW rates after a checkpoint correlate strongly negatively with performance.

Greetings,

Andres Freund

#47Andres Freund
andres@anarazel.de
In reply to: Tomas Vondra (#45)
Re: WAL prefetch

Hi,

On 2018-06-19 18:41:24 +0200, Tomas Vondra wrote:

I'm confused. I thought you wanted to prefetch directly to shared buffers,
so that it also works with direct I/O in the future. But now you suggest to
use posix_fadvise() to work around the synchronous buffer read limitation. I
don't follow ...

Well, I have multiple goals. For one I think using prefetching without
any sort of backpressure and mechanism to see which have completed will
result in hard to monitor and random performance. For another I'm
concerned with wasting a significant amount of memory for the OS cache
of all the read data that's guaranteed to never be needed (as we'll
*always* write to the relevant page shortly down the road). For those
reasons alone I think prefetching just into the OS cache is a bad idea,
and should be rejected.

I also would want something that's more compatible with DIO. But people
pushed back on that, so... As long as we build something that looks
like a request queue (which my proposal does), it's also something that
can later with some reduced effort be ported onto asynchronous io.

Greetings,

Andres Freund

#48Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Konstantin Knizhnik (#44)
Re: WAL prefetch

On 06/19/2018 06:34 PM, Konstantin Knizhnik wrote:

On 19.06.2018 18:50, Andres Freund wrote:

On 2018-06-19 12:08:27 +0300, Konstantin Knizhnik wrote:

I do not think that prefetching in shared buffers requires much more
efforts
and make patch more envasive...
It even somehow simplify it, because there is no to maintain own
cache of
prefetched pages...
But it will definitely have much more impact on Postgres performance:
contention for buffer locks, throwing away pages accessed by read-only
queries,...

These arguments seem bogus to me. Otherwise the startup process is going
to do that work.

There is just one process replaying WAL. Certainly it has some impact on
hot standby query execution.
But if there will be several prefetch workers (128???) then this impact
will be dramatically increased.

The goal of prefetching is better saturation of the storage. Which means
less bandwidth remaining for other processes (that have to compete for
the same storage). I don't think "startup process is going to do that
work" is entirely true - it'd do that work, but likely over longer
period of time.

But I don't think this is an issue - I'd expect having some GUC defining
how many records to prefetch (just like effective_io_concurrency).

Concerning WAL perfetch I still have a serious doubt if it is needed
at all:
if checkpoint interval is less than size of free memory at the
system, then
redo process should not read much.

I'm confused. Didn't you propose this?  FWIW, there's a significant
number of installations where people have observed this problem in
practice.

Well, originally it was proposed by Sean - the author of pg-prefaulter.
I just ported it from GO to C using standard PostgreSQL WAL iterator.
Then I performed some measurements and didn't find some dramatic
improvement in performance (in case of synchronous replication) or
reducing replication lag for asynchronous replication neither at my
desktop (SSD, 16Gb RAM, local replication within same computer, pgbench
scale 1000), neither at pair of two powerful servers connected by
InfiniBand and 3Tb NVME (pgbench with scale 100000).
Also I noticed that read rate at replica is almost zero.
What does it mean:
1. I am doing something wrong.
2. posix_prefetch is not so efficient.
3. pgbench is not right workload to demonstrate effect of prefetch.
4. Hardware which I am using is not typical.

pgbench is a perfectly sufficient workload to demonstrate the issue, all
you need to do is use sufficiently large scale factor (say 2*RAM) and
large number of clients to generate writes on the primary (to actually
saturate the storage). Then the redo on replica won't be able to keep
up, because the redo only fetches one page at a time.

So it make me think when such prefetch may be needed... And it caused
new questions:
I wonder how frequently checkpoint interval is much larger than OS cache?

Pretty often. Furthermore, replicas may also run queries (often large
ones), pushing pages related to redo from RAM.

If we enforce full pages writes (let's say each after each 1Gb), how it
affect wal size and performance?

It would improve redo performance, of course, exactly because the page
would not need to be loaded from disk. But the amount of WAL can
increase tremendously, causing issues for network bandwidth
(particularly between different data centers).

Looks like it is difficult to answer the second question without
implementing some prototype.
May be I will try to do it.

Perhaps you should prepare some examples of workloads demonstrating the
issue, before trying implementing a solution.

And if checkpoint interval is much larger than OS cache (are there cases
when it is really needed?)

Yes, there are.  Percentage of FPWs can cause serious problems, as do
repeated writouts by the checkpointer.

One more consideration: data is written to the disk as blocks in any
case. If you updated just few bytes on a page, then still the whole page
has to be written in database file.
So avoiding full page writes allows to reduce WAL size and amount of
data written to the WAL, but not amount of data written to the database
itself.
It means that if we completely eliminate FPW and transactions are
updating random pages, then disk traffic is reduced less than two times...

I don't follow. What do you mean by "less than two times"? Surely the
difference can be anything between 0 and infinity, depending on how
often you write a single page.

The other problem with just doing FPI all the time is backups. To do
physical backups / WAL archival, you need to store all the WAL segments.
If the amount of WAL increases 10x you're going to be unhappy.

then quite small patch (as it seems to me now) forcing full page write
when distance between page LSN and current WAL insertion point exceeds
some threshold should eliminate random reads also in this case.

I'm pretty sure that that'll hurt a significant number of installations,
that set the timeout high, just so they can avoid FPWs.

May be, but I am not so sure. This is why I will try to investigate it
more.

I'd say checkpoints already do act as such timeout (not only, but people
are setting it high to get rid of FPIs).

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#49Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Tomas Vondra (#48)
1 attachment(s)
Re: WAL prefetch

I continue my experiments with WAL prefetch.
I have embedded prefetch in Postgres: now walprefetcher is started
together with startup process and is able to help it to speedup recovery.
The patch is attached.

Unfortunately result is negative (at least at my desktop: SSD, 16Gb
RAM). Recovery with prefetch is 3 times slower than without it.
What I am doing:

Configuration:
    max_wal_size=min_wal_size=10Gb,
    shared)buffers = 1Gb
Database:
     pgbench -i -s 1000
Test:
     pgbench -c 10 -M prepared -N -T 100 -P 1
     pkill postgres
     echo 3 > /proc/sys/vm/drop_caches
     time pg_ctl -t 1000 -D pgsql -l logfile start

Without prefetch it is 19 seconds (recovered about 4Gb of WAL), with
prefetch it is about one minute. About 400k blocks are prefetched.
CPU usage is small (<20%), both processes as in "Ds" state.

vmstat without prefetch shows the following output:

procs -----------memory---------- ---swap-- -----io---- -system--
------cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy
id wa st
0  2 2667964 11465832   7892 2515588    0    0 344272     2 6129 22290 
8  4 84  5  0
 3  1 2667960 10013900   9516 3963056    6    0 355606  8772 7412 25228
12  6 74  8  0
 1  0 2667960 8526228  11036 5440192    0    0 366910   242 6123 19476 
8  5 83  3  0
 1  1 2667960 7824816  11060 6141920    0    0 166860 171638 9581
24746  4  4 79 13  0
 0  4 2667960 7822824  11072 6143788    0    0   264 376836 19292
49973  1  3 69 27  0
 1  0 2667960 7033140  11220 6932400    0    0 188810 168070 14610
41390  5  4 72 19  0
 1  1 2667960 5739616  11384 8226148    0    0 254492 57884 6733 19263 
8  5 84  4  0
 0  3 2667960 5024380  11400 8941532    0    0     8 398198 18164
45782  2  5 70 23  0
 0  0 2667960 5020152  11428 8946000    0    0   168 69128 3918 10370 
2  1 91  6  0

with prefetch:

procs -----------memory---------- ---swap-- -----io---- -system--
------cpu-----
 r  b   swpd   free   buff  cache   si   so    bi    bo   in   cs us sy
id wa st
0  2 2651816 12340648  11148 1564420    0    0 178980    96 4411 14237 
5  2 90  3  0
 2  0 2651816 11771612  11712 2132180    0    0 169572     0 6388
18244  5  3 72 20  0
 2  0 2651816 11199248  12008 2701960    0    0 168966   162 6677
18816  5  3 72 20  0
 1  3 2651816 10660512  12028 3241604    0    0 162666    16 7065
21668  6  5 69 20  0
 0  2 2651816 10247180  12052 3653888    0    0 131564 18112 7376
22023  6  3 69 23  0
 0  2 2651816 9850424  12096 4064980    0    0 133158   238 6398 17557 
4  2 71 22  0
 2  0 2651816 9456616  12108 4459456    0    0 134702    44 6219 16665 
3  2 73 22  0
 0  2 2651816 9161336  12160 4753868    0    0 111168 74408 8038 20440 
3  3 69 25  0
 3  0 2651816 8810336  12172 5106068    0    0 134694     0 6251 16978 
4  2 73 22  0
 0  2 2651816 8451924  12192 5463692    0    0 137546    80 6264 16930 
3  2 73 22  0
 1  1 2651816 8108000  12596 5805856    0    0 135212    10 6218 16827 
4  2 72 22  0
 1  3 2651816 7793992  12612 6120376    0    0 135072     0 6233 16736 
3  2 73 22  0
 0  2 2651816 7507644  12632 6406512    0    0 134830    90 6267 16910 
3  2 73 22  0
 0  2 2651816 7246696  12776 6667804    0    0 122656 51820 7419 19384 
3  3 71 23  0
 1  2 2651816 6990080  12784 6924352    0    0 121248 55284 7527 19794 
3  3 71 23  0
 0  3 2651816 6913648  12804 7000376    0    0 36078 295140 14852
37925  2  3 67 29  0
 0  2 2651816 6873112  12804 7040852    0    0 19180 291330 16167
41711  1  3 68 28  0
 5  1 2651816 6641848  12812 7271736    0    0 107696    68 5760 15301 
3  2 73 22  0
 3  1 2651816 6426356  12820 7490636    0    0 103412     0 5942 15994 
3  2 72 22  0
 0  2 2651816 6195288  12824 7720720    0    0 104446     0 5605 14757 
3  2 73 22  0
 0  2 2651816 5946876  12980 7970912    0    0 113340    74 5980 15678 
3  2 71 24  0
 1  2 2651816 5655768  12984 8262880    0    0 137290     0 6235 16412 
3  2 73 21  0
 2  0 2651816 5359548  13120 8557072    0    0 137608    86 6309 16658 
3  2 73 21  0
 2  0 2651816 5068268  13124 8849136    0    0 137386     0 6225 16589 
3  2 73 21  0
 2  0 2651816 4816812  13124 9100600    0    0 120116 53284 7273 18776 
3  2 72 23  0
 0  2 2651816 4563152  13132 9353232    0    0 117972 54352 7423 19375 
3  2 73 22  0
 1  2 2651816 4367108  13144 9549712    0    0 51994 239498 10846
25987  3  5 73 19  0
 0  0 2651816 4366356  13164 9549892    0    0   168 294196 14981
39432  1  3 79 17  0

So as you can see, read speed with prefetch is smaller: < 130Mb/sec,
while without prefetch up to 366Mb/sec.
My hypothesis is that prefetch flushes dirty pages from cache and as a
result, more data has to be written and backends are more frequently
blocked in write.

In any case - very upsetting result.
Any comments are welcome.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

Attachments:

walprefetch.patchtext/x-patch; name=walprefetch.patchDownload
diff --git a/src/backend/access/transam/xlogreader.c b/src/backend/access/transam/xlogreader.c
index 1b000a2..9730b42 100644
--- a/src/backend/access/transam/xlogreader.c
+++ b/src/backend/access/transam/xlogreader.c
@@ -879,13 +879,6 @@ XLogReaderValidatePageHeader(XLogReaderState *state, XLogRecPtr recptr,
 	return true;
 }
 
-#ifdef FRONTEND
-/*
- * Functions that are currently not needed in the backend, but are better
- * implemented inside xlogreader.c because of the internal facilities available
- * here.
- */
-
 /*
  * Find the first record with an lsn >= RecPtr.
  *
@@ -1004,9 +997,6 @@ out:
 	return found;
 }
 
-#endif							/* FRONTEND */
-
-
 /* ----------------------------------------
  * Functions for decoding the data and block references in a record.
  * ----------------------------------------
diff --git a/src/backend/access/transam/xlogutils.c b/src/backend/access/transam/xlogutils.c
index 52fe55e..7847311 100644
--- a/src/backend/access/transam/xlogutils.c
+++ b/src/backend/access/transam/xlogutils.c
@@ -652,7 +652,7 @@ XLogTruncateRelation(RelFileNode rnode, ForkNumber forkNum,
  * in walsender.c but for small differences (such as lack of elog() in
  * frontend).  Probably these should be merged at some point.
  */
-static void
+void
 XLogRead(char *buf, int segsize, TimeLineID tli, XLogRecPtr startptr,
 		 Size count)
 {
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index 7e34bee..e492715 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -32,6 +32,7 @@
 #include "postmaster/bgwriter.h"
 #include "postmaster/startup.h"
 #include "postmaster/walwriter.h"
+#include "postmaster/walprefetcher.h"
 #include "replication/walreceiver.h"
 #include "storage/bufmgr.h"
 #include "storage/bufpage.h"
@@ -335,6 +336,9 @@ AuxiliaryProcessMain(int argc, char *argv[])
 			case WalReceiverProcess:
 				statmsg = pgstat_get_backend_desc(B_WAL_RECEIVER);
 				break;
+			case WalPrefetcherProcess:
+				statmsg = pgstat_get_backend_desc(B_WAL_PREFETCHER);
+				break;
 			default:
 				statmsg = "??? process";
 				break;
@@ -462,6 +466,11 @@ AuxiliaryProcessMain(int argc, char *argv[])
 			WalReceiverMain();
 			proc_exit(1);		/* should never return */
 
+		case WalPrefetcherProcess:
+			/* don't set signals, walprefetcher has its own agenda */
+			WalPrefetcherMain();
+			proc_exit(1);		/* should never return */
+
 		default:
 			elog(PANIC, "unrecognized process type: %d", (int) MyAuxProcType);
 			proc_exit(1);
diff --git a/src/backend/postmaster/Makefile b/src/backend/postmaster/Makefile
index 71c2321..13e5066 100644
--- a/src/backend/postmaster/Makefile
+++ b/src/backend/postmaster/Makefile
@@ -13,6 +13,6 @@ top_builddir = ../../..
 include $(top_builddir)/src/Makefile.global
 
 OBJS = autovacuum.o bgworker.o bgwriter.o checkpointer.o fork_process.o \
-	pgarch.o pgstat.o postmaster.o startup.o syslogger.o walwriter.o
+	pgarch.o pgstat.o postmaster.o startup.o syslogger.o walwriter.o walprefetcher.o
 
 include $(top_srcdir)/src/backend/common.mk
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c
index 084573e..7195578 100644
--- a/src/backend/postmaster/pgstat.c
+++ b/src/backend/postmaster/pgstat.c
@@ -2870,6 +2870,9 @@ pgstat_bestart(void)
 			case WalReceiverProcess:
 				beentry->st_backendType = B_WAL_RECEIVER;
 				break;
+			case WalPrefetcherProcess:
+				beentry->st_backendType = B_WAL_PREFETCHER;
+				break;
 			default:
 				elog(FATAL, "unrecognized process type: %d",
 					 (int) MyAuxProcType);
@@ -3519,6 +3522,9 @@ pgstat_get_wait_activity(WaitEventActivity w)
 		case WAIT_EVENT_WAL_WRITER_MAIN:
 			event_name = "WalWriterMain";
 			break;
+		case WAIT_EVENT_WAL_PREFETCHER_MAIN:
+			event_name = "WalPrefetcherMain";
+			break;
 			/* no default case, so that compiler will warn */
 	}
 
@@ -4126,6 +4132,9 @@ pgstat_get_backend_desc(BackendType backendType)
 		case B_WAL_RECEIVER:
 			backendDesc = "walreceiver";
 			break;
+		case B_WAL_PREFETCHER:
+			backendDesc = "walprefetcher";
+			break;
 		case B_WAL_SENDER:
 			backendDesc = "walsender";
 			break;
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index a4b53b3..a5b54cd 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -254,7 +254,9 @@ static pid_t StartupPID = 0,
 			AutoVacPID = 0,
 			PgArchPID = 0,
 			PgStatPID = 0,
-			SysLoggerPID = 0;
+			SysLoggerPID = 0,
+			WalPrefetcherPID = 0
+;
 
 /* Startup process's status */
 typedef enum
@@ -362,6 +364,9 @@ static volatile bool avlauncher_needs_signal = false;
 /* received START_WALRECEIVER signal */
 static volatile sig_atomic_t WalReceiverRequested = false;
 
+/* received START_WALPREFETCHER signal */
+static volatile sig_atomic_t WalPrefetcherRequested = false;
+
 /* set when there's a worker that needs to be started up */
 static volatile bool StartWorkerNeeded = true;
 static volatile bool HaveCrashedWorker = false;
@@ -549,6 +554,7 @@ static void ShmemBackendArrayRemove(Backend *bn);
 #define StartupDataBase()		StartChildProcess(StartupProcess)
 #define StartBackgroundWriter() StartChildProcess(BgWriterProcess)
 #define StartCheckpointer()		StartChildProcess(CheckpointerProcess)
+#define StartWalPrefetcher()	StartChildProcess(WalPrefetcherProcess)
 #define StartWalWriter()		StartChildProcess(WalWriterProcess)
 #define StartWalReceiver()		StartChildProcess(WalReceiverProcess)
 
@@ -1373,6 +1379,9 @@ PostmasterMain(int argc, char *argv[])
 	StartupStatus = STARTUP_RUNNING;
 	pmState = PM_STARTUP;
 
+	/* Start Wal prefetcher now because it may speed-up WAL redo */
+	WalPrefetcherPID = StartWalPrefetcher();
+
 	/* Some workers may be scheduled to start now */
 	maybe_start_bgworkers();
 
@@ -2535,8 +2544,11 @@ SIGHUP_handler(SIGNAL_ARGS)
 			signal_child(BgWriterPID, SIGHUP);
 		if (CheckpointerPID != 0)
 			signal_child(CheckpointerPID, SIGHUP);
+		if (WalPrefetcherPID != 0)
+			signal_child(WalPrefetcherPID, SIGHUP);
 		if (WalWriterPID != 0)
 			signal_child(WalWriterPID, SIGHUP);
+			signal_child(BgWriterPID, SIGHUP);
 		if (WalReceiverPID != 0)
 			signal_child(WalReceiverPID, SIGHUP);
 		if (AutoVacPID != 0)
@@ -2685,6 +2697,8 @@ pmdie(SIGNAL_ARGS)
 				signal_child(BgWriterPID, SIGTERM);
 			if (WalReceiverPID != 0)
 				signal_child(WalReceiverPID, SIGTERM);
+			if (WalPrefetcherPID != 0)
+				signal_child(WalPrefetcherPID, SIGTERM);
 			if (pmState == PM_RECOVERY)
 			{
 				SignalSomeChildren(SIGTERM, BACKEND_TYPE_BGWORKER);
@@ -2864,6 +2878,8 @@ reaper(SIGNAL_ARGS)
 			 */
 			if (CheckpointerPID == 0)
 				CheckpointerPID = StartCheckpointer();
+			if (WalPrefetcherPID == 0)
+				WalPrefetcherPID = StartWalPrefetcher();
 			if (BgWriterPID == 0)
 				BgWriterPID = StartBackgroundWriter();
 			if (WalWriterPID == 0)
@@ -2967,6 +2983,20 @@ reaper(SIGNAL_ARGS)
 		}
 
 		/*
+		 * Was it the wal prefetcher?  Normal exit can be ignored; we'll start a
+		 * new one at the next iteration of the postmaster's main loop, if
+		 * necessary.  Any other exit condition is treated as a crash.
+		 */
+		if (pid == WalPrefetcherPID)
+		{
+			WalPrefetcherPID = 0;
+			if (!EXIT_STATUS_0(exitstatus))
+				HandleChildCrash(pid, exitstatus,
+								 _("WAL prefetcher process"));
+			continue;
+		}
+
+		/*
 		 * Was it the wal writer?  Normal exit can be ignored; we'll start a
 		 * new one at the next iteration of the postmaster's main loop, if
 		 * necessary.  Any other exit condition is treated as a crash.
@@ -3451,6 +3481,18 @@ HandleChildCrash(int pid, int exitstatus, const char *procname)
 		signal_child(WalWriterPID, (SendStop ? SIGSTOP : SIGQUIT));
 	}
 
+	/* Take care of the walprefetcherr too */
+	if (pid == WalPrefetcherPID)
+		WalPrefetcherPID = 0;
+	else if (WalPrefetcherPID != 0 && take_action)
+	{
+		ereport(DEBUG2,
+				(errmsg_internal("sending %s to process %d",
+								 (SendStop ? "SIGSTOP" : "SIGQUIT"),
+								 (int) WalPrefetcherPID)));
+		signal_child(WalPrefetcherPID, (SendStop ? SIGSTOP : SIGQUIT));
+	}
+
 	/* Take care of the walreceiver too */
 	if (pid == WalReceiverPID)
 		WalReceiverPID = 0;
@@ -3657,6 +3699,7 @@ PostmasterStateMachine(void)
 		if (CountChildren(BACKEND_TYPE_NORMAL | BACKEND_TYPE_WORKER) == 0 &&
 			StartupPID == 0 &&
 			WalReceiverPID == 0 &&
+			WalPrefetcherPID == 0 &&
 			BgWriterPID == 0 &&
 			(CheckpointerPID == 0 ||
 			 (!FatalError && Shutdown < ImmediateShutdown)) &&
@@ -3757,6 +3800,7 @@ PostmasterStateMachine(void)
 			Assert(WalReceiverPID == 0);
 			Assert(BgWriterPID == 0);
 			Assert(CheckpointerPID == 0);
+			Assert(WalPrefetcherPID == 0);
 			Assert(WalWriterPID == 0);
 			Assert(AutoVacPID == 0);
 			/* syslogger is not considered here */
@@ -3946,6 +3990,8 @@ TerminateChildren(int signal)
 		signal_child(WalWriterPID, signal);
 	if (WalReceiverPID != 0)
 		signal_child(WalReceiverPID, signal);
+	if (WalPrefetcherPID != 0)
+		signal_child(WalPrefetcherPID, signal);
 	if (AutoVacPID != 0)
 		signal_child(AutoVacPID, signal);
 	if (PgArchPID != 0)
@@ -5041,6 +5087,10 @@ sigusr1_handler(SIGNAL_ARGS)
 		Assert(BgWriterPID == 0);
 		BgWriterPID = StartBackgroundWriter();
 
+		/* WAL prefetcher is expected to be started earlier but if not, try to start it now */
+		if (WalPrefetcherPID == 0)
+			WalPrefetcherPID = StartWalPrefetcher();
+
 		/*
 		 * Start the archiver if we're responsible for (re-)archiving received
 		 * files.
@@ -5361,6 +5411,10 @@ StartChildProcess(AuxProcType type)
 				ereport(LOG,
 						(errmsg("could not fork WAL receiver process: %m")));
 				break;
+			case WalPrefetcherProcess:
+				ereport(LOG,
+						(errmsg("could not fork WAL prefetcher process: %m")));
+				break;
 			default:
 				ereport(LOG,
 						(errmsg("could not fork process: %m")));
diff --git a/src/backend/postmaster/walprefetcher.c b/src/backend/postmaster/walprefetcher.c
new file mode 100644
index 0000000..eba4143
--- /dev/null
+++ b/src/backend/postmaster/walprefetcher.c
@@ -0,0 +1,569 @@
+/*-------------------------------------------------------------------------
+ *
+ * walprefetcher.c
+ *
+ * Replaying WAL is done by single process, it may cause slow recovery time
+ * cause lag between master and replica.
+ *
+ * Prefetcher trieds to preload in OS file cache blocks, referenced by WAL 
+ * records to speedup recovery
+ *
+ * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ *
+ *
+ * IDENTIFICATION
+ *	  src/backend/postmaster/walprefetcher.c
+ *
+ *-------------------------------------------------------------------------
+ */
+#include "postgres.h"
+
+#include <signal.h>
+
+#include "access/transam.h"
+#include "access/xact.h"
+#include "access/xlog.h"
+#include "access/xlog_internal.h"
+#include "access/xloginsert.h"
+#include "access/xlogutils.h"
+#include "access/xlogreader.h"
+#include "access/xlogrecord.h"
+#include "libpq/pqsignal.h"
+#include "miscadmin.h"
+#include "pgstat.h"
+#include "postmaster/walprefetcher.h"
+#include "replication/walreceiver.h"
+#include "storage/fd.h"
+#include "storage/ipc.h"
+#include "storage/proc.h"
+#include "storage/buf_internals.h"
+#include "utils/guc.h"
+#include "utils/pg_lsn.h"
+#include "utils/memutils.h"
+
+
+/*
+ * GUC parameters
+ */
+int			WalPrefetchLead = 0;
+int			WalPrefetchPollInterval = 1000;
+bool 		WalPrefetchEnabled = false;
+
+/*
+ * Flags set by interrupt handlers for later service in the main loop.
+ */
+static volatile sig_atomic_t got_SIGHUP = false;
+static volatile sig_atomic_t shutdown_requested = false;
+
+/* Signal handlers */
+static void WpfQuickDie(SIGNAL_ARGS);
+static void WpfSigHupHandler(SIGNAL_ARGS);
+static void WpfShutdownHandler(SIGNAL_ARGS);
+static void WpfSigusr1Handler(SIGNAL_ARGS);
+
+/*
+ * Main entry point for walprefetcher background worker
+ */
+void
+WalPrefetcherMain()
+{
+	sigjmp_buf	local_sigjmp_buf;
+	MemoryContext walprefetcher_context;
+	int rc;
+
+	pqsignal(SIGHUP, WpfSigHupHandler); /* set flag to read config file */
+	pqsignal(SIGINT, WpfShutdownHandler);	/* request shutdown */
+	pqsignal(SIGTERM, WpfShutdownHandler);	/* request shutdown */
+	pqsignal(SIGQUIT, WpfQuickDie);	/* hard crash time */
+	pqsignal(SIGALRM, SIG_IGN);
+	pqsignal(SIGPIPE, SIG_IGN);
+	pqsignal(SIGUSR1, WpfSigusr1Handler);
+	pqsignal(SIGUSR2, SIG_IGN); /* not used */
+
+	/*
+	 * Reset some signals that are accepted by postmaster but not here
+	 */
+	pqsignal(SIGCHLD, SIG_DFL);
+	pqsignal(SIGTTIN, SIG_DFL);
+	pqsignal(SIGTTOU, SIG_DFL);
+	pqsignal(SIGCONT, SIG_DFL);
+	pqsignal(SIGWINCH, SIG_DFL);
+
+	/* We allow SIGQUIT (quickdie) at all times */
+	sigdelset(&BlockSig, SIGQUIT);
+
+	/*
+	 * Create a memory context that we will do all our work in.  We do this so
+	 * that we can reset the context during error recovery and thereby avoid
+	 * possible memory leaks.  Formerly this code just ran in
+	 * TopMemoryContext, but resetting that would be a really bad idea.
+	 */
+	walprefetcher_context = AllocSetContextCreate(TopMemoryContext,
+											  "Wal Prefetcher",
+											  ALLOCSET_DEFAULT_SIZES);
+	MemoryContextSwitchTo(walprefetcher_context);
+
+	/*
+	 * If an exception is encountered, processing resumes here.
+	 *
+	 * This code is heavily based on bgwriter.c, q.v.
+	 */
+	if (sigsetjmp(local_sigjmp_buf, 1) != 0)
+	{
+		/* Since not using PG_TRY, must reset error stack by hand */
+		error_context_stack = NULL;
+
+		/* Prevent interrupts while cleaning up */
+		HOLD_INTERRUPTS();
+
+		/* Report the error to the server log */
+		EmitErrorReport();
+
+		pgstat_report_wait_end();
+		AtEOXact_Files(false);
+
+		/*
+		 * Now return to normal top-level context and clear ErrorContext for
+		 * next time.
+		 */
+		MemoryContextSwitchTo(walprefetcher_context);
+		FlushErrorState();
+
+		/* Flush any leaked data in the top-level context */
+		MemoryContextResetAndDeleteChildren(walprefetcher_context);
+
+		/* Now we can allow interrupts again */
+		RESUME_INTERRUPTS();
+
+		/*
+		 * Sleep at least 1 second after any error.  A write error is likely
+		 * to be repeated, and we don't want to be filling the error logs as
+		 * fast as we can.
+		 */
+		pg_usleep(1000000L);
+	}
+
+	/* We can now handle ereport(ERROR) */
+	PG_exception_stack = &local_sigjmp_buf;
+
+	/*
+	 * Unblock signals (they were blocked when the postmaster forked us)
+	 */
+	PG_SETMASK(&UnBlockSig);
+
+	/*
+	 * Loop forever
+	 */
+	for (;;)
+	{
+		/* Clear any already-pending wakeups */
+		ResetLatch(MyLatch);
+
+		/*
+		 * Process any requests or signals received recently.
+		 */
+		if (got_SIGHUP)
+		{
+			got_SIGHUP = false;
+			ProcessConfigFile(PGC_SIGHUP);
+		}
+		if (shutdown_requested)
+		{
+			/* Normal exit from the walprefetcher is here */
+			proc_exit(0);		/* done */
+		}
+
+		if (WalPrefetchEnabled)
+			WalPrefetch(InvalidXLogRecPtr);
+
+		/*
+		 * Sleep until we are signaled
+		 */
+		rc = WaitLatch(MyLatch,
+					   WL_LATCH_SET | WL_POSTMASTER_DEATH,
+					   -1,
+					   WAIT_EVENT_WAL_PREFETCHER_MAIN);
+
+		/*
+		 * Emergency bailout if postmaster has died.  This is to avoid the
+		 * necessity for manual cleanup of all postmaster children.
+		 */
+		if (rc & WL_POSTMASTER_DEATH)
+			exit(1);
+	}
+}
+
+
+/* --------------------------------
+ *		signal handler routines
+ * --------------------------------
+ */
+
+/*
+ * WpfQuickDie() occurs when signalled SIGQUIT by the postmaster.
+ *
+ * Some backend has bought the farm,
+ * so we need to stop what we're doing and exit.
+ */
+static void
+WpfQuickDie(SIGNAL_ARGS)
+{
+	PG_SETMASK(&BlockSig);
+
+	/*
+	 * We DO NOT want to run proc_exit() callbacks -- we're here because
+	 * shared memory may be corrupted, so we don't want to try to clean up our
+	 * transaction.  Just nail the windows shut and get out of town.  Now that
+	 * there's an atexit callback to prevent third-party code from breaking
+	 * things by calling exit() directly, we have to reset the callbacks
+	 * explicitly to make this work as intended.
+	 */
+	on_exit_reset();
+
+	/*
+	 * Note we do exit(2) not exit(0).  This is to force the postmaster into a
+	 * system reset cycle if some idiot DBA sends a manual SIGQUIT to a random
+	 * backend.  This is necessary precisely because we don't clean up our
+	 * shared memory state.  (The "dead man switch" mechanism in pmsignal.c
+	 * should ensure the postmaster sees this as a crash, too, but no harm in
+	 * being doubly sure.)
+	 */
+	exit(2);
+}
+
+/* SIGHUP: set flag to re-read config file at next convenient time */
+static void
+WpfSigHupHandler(SIGNAL_ARGS)
+{
+	got_SIGHUP = true;
+	SetLatch(MyLatch);
+}
+
+/* SIGTERM: set flag to exit normally */
+static void
+WpfShutdownHandler(SIGNAL_ARGS)
+{
+	shutdown_requested = true;
+	SetLatch(MyLatch);
+}
+
+/* SIGUSR1: used for latch wakeups */
+static void
+WpfSigusr1Handler(SIGNAL_ARGS)
+{
+	latch_sigusr1_handler();
+}
+
+/*
+ * Now wal prefetch code itself. 
+ */
+static int
+WalReadPage(XLogReaderState *state, XLogRecPtr targetPagePtr,
+			int reqLen, XLogRecPtr targetRecPtr, char *cur_page,
+			TimeLineID *pageTLI);
+
+#define BLOCK_HASH_SIZE 4001 /* Size of block LRU cache, may be it is better to use information about free RAM instead of hardcoded constant */
+#define FILE_HASH_SIZE  64   /* Size of opened files hash */
+#define STAT_REFRESH_PERIOD 1024 /* Refresh backend status rate */
+
+/*
+ * Block LRU hash table is used to keep information about most recently prefetched blocks.
+ */
+typedef struct BlockHashEntry
+{
+	struct BlockHashEntry* next;
+	struct BlockHashEntry* prev;
+	struct BlockHashEntry* collision;
+	BufferTag tag;
+	uint32 hash;
+} BlockHashEntry;
+
+static BlockHashEntry* block_hash_table[BLOCK_HASH_SIZE];
+static size_t block_hash_size;
+static BlockHashEntry lru = {&lru, &lru};
+static TimeLineID replay_timeline;
+
+/*
+ * Yet another L2-list implementation
+ */
+static void
+unlink_block(BlockHashEntry* entry)
+{
+	entry->next->prev = entry->prev;
+	entry->prev->next = entry->next;
+}
+
+static void
+link_block_after(BlockHashEntry* head, BlockHashEntry* entry)
+{
+	entry->next = head->next;
+	entry->prev = head;
+	head->next->prev = entry;
+	head->next = entry;
+}
+
+/*
+ * Put block in LRU hash or link it to the head of LRU list. Returns true if block was not present in hash, false otherwise.
+ */
+static bool
+put_block_in_cache(BufferTag* tag)
+{
+	uint32 hash;
+	BlockHashEntry* entry;
+
+	hash = BufTableHashCode(tag) % BLOCK_HASH_SIZE;
+	for (entry = block_hash_table[hash]; entry != NULL; entry = entry->collision)
+	{
+		if (BUFFERTAGS_EQUAL(entry->tag, *tag))
+		{
+			unlink_block(entry);
+			link_block_after(&lru, entry);
+			return false;
+		}
+	}
+	if (block_hash_size == BLOCK_HASH_SIZE)
+	{
+		BlockHashEntry* victim = lru.prev;
+		BlockHashEntry** epp = &block_hash_table[victim->hash];
+		while (*epp != victim)
+			epp = &(*epp)->collision;
+		*epp = (*epp)->collision;
+		unlink_block(victim);
+		entry = victim;
+	}
+	else
+	{
+		entry = (BlockHashEntry*)palloc(sizeof(BlockHashEntry));
+		block_hash_size += 1;
+	}
+	entry->tag = *tag;
+	entry->hash = hash;
+	entry->collision = block_hash_table[hash];
+	block_hash_table[hash] = entry;
+	link_block_after(&lru, entry);
+
+	return true;
+}
+
+/*
+ * Hash of of opened files. It seems to be simpler to maintain own cache rather than provide SMgrRelation for smgr functions.
+ */
+typedef struct FileHashEntry
+{
+    BufferTag tag;
+	File file;
+} FileHashEntry;
+
+static FileHashEntry file_hash_table[FILE_HASH_SIZE];
+
+static File
+WalOpenFile(BufferTag* tag)
+{
+	BufferTag segment_tag = *tag;
+	uint32 hash;
+	char* path;
+	File file;
+
+	/* Transform block number into segment number */
+	segment_tag.blockNum /= RELSEG_SIZE;
+	hash = BufTableHashCode(&segment_tag) % FILE_HASH_SIZE;
+
+	if (BUFFERTAGS_EQUAL(file_hash_table[hash].tag, segment_tag))
+		return file_hash_table[hash].file;
+
+	path = relpathperm(tag->rnode, tag->forkNum);
+	if (segment_tag.blockNum > 0)
+	{
+		char* fullpath = psprintf("%s.%d", path, segment_tag.blockNum);
+		pfree(path);
+		path = fullpath;
+	}
+	file = PathNameOpenFile(path, O_RDONLY | PG_BINARY);
+	pfree(path);
+
+	if (file >= 0)
+	{
+		if (file_hash_table[hash].tag.rnode.dbNode != 0)
+			FileClose(file_hash_table[hash].file);
+
+		file_hash_table[hash].file = file;
+		file_hash_table[hash].tag = segment_tag;
+	}
+	return file;
+}
+
+/*
+ * Our backend doesn't receive any notifications about WAL progress, so we have to use sleep
+ * to wait until requested information is available
+ */
+static void
+WalWaitWAL(void)
+{
+	int rc;
+	CHECK_FOR_INTERRUPTS();
+	rc = WaitLatch(MyLatch,
+				   WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
+				   WalPrefetchPollInterval,
+				   WAIT_EVENT_WAL_PREFETCHER_MAIN);
+	/*
+	 * Emergency bailout if postmaster has died.  This is to avoid the
+	 * necessity for manual cleanup of all postmaster children.
+	 */
+	if (rc & WL_POSTMASTER_DEATH)
+		exit(1);
+
+}
+
+/*
+ * Main function: perform prefetch of blocks referenced by WAL records starting from given LSN or from WAL replay position if lsn=0
+ */
+void
+WalPrefetch(XLogRecPtr lsn)
+{
+	XLogReaderState *xlogreader;
+	long n_prefetched = 0;
+	bool startup_recovery = true;
+
+	/* Dirty hack: prevent recovery conflict */
+	MyPgXact->xmin = InvalidTransactionId;
+
+	memset(file_hash_table, 0, sizeof file_hash_table);
+	memset(block_hash_table, 0, sizeof block_hash_table);
+
+	xlogreader = XLogReaderAllocate(wal_segment_size, &WalReadPage, NULL);
+
+	if (!xlogreader)
+		ereport(ERROR,
+				(errcode(ERRCODE_OUT_OF_MEMORY),
+				 errmsg("out of memory"),
+				 errdetail("Failed while allocating a WAL reading processor.")));
+
+	if (lsn == InvalidXLogRecPtr)
+		lsn = GetXLogReplayRecPtr(NULL); /* Start with replay LSN */
+
+	while (true)
+	{
+		char *errormsg;
+		int	block_id;
+		XLogRecPtr replay_lsn = GetXLogReplayRecPtr(&replay_timeline);
+		XLogRecord *record;
+
+		/*
+		 * If current position is behind current replay LSN, then move it forward: we do not want to perform useless job and prefetch
+		 * blocks for already processed WAL records
+		 */
+		if (lsn != InvalidXLogRecPtr || replay_lsn >= xlogreader->EndRecPtr)
+		{
+			XLogRecPtr prefetch_lsn = replay_lsn != InvalidXLogRecPtr
+				? XLogFindNextRecord(xlogreader, Max(lsn, replay_lsn) + WalPrefetchLead) : InvalidXLogRecPtr;
+			if (prefetch_lsn == InvalidXLogRecPtr)
+			{
+				WalWaitWAL();
+				continue;
+			}
+			lsn = prefetch_lsn;
+		}
+
+		record = XLogReadRecord(xlogreader, lsn, &errormsg);
+
+		if (record != NULL)
+		{
+			lsn = InvalidXLogRecPtr; /* continue with next record */
+
+			/* Loop through blocks referenced by this WAL record */
+			for (block_id = 0; block_id <= xlogreader->max_block_id; block_id++)
+			{
+				BufferTag tag;
+				File      file;
+
+				/* Do not prefetch full pages */
+				if (!XLogRecGetBlockTag(xlogreader, block_id, &tag.rnode, &tag.forkNum, &tag.blockNum)
+					|| xlogreader->blocks[block_id].has_image)
+					continue;
+
+				/* Check if block already prefetched */
+				if (!put_block_in_cache(&tag))
+					continue;
+
+				file = WalOpenFile(&tag);
+				if (file >= 0)
+				{
+					off_t offs = (off_t) BLCKSZ * (tag.blockNum % ((BlockNumber) RELSEG_SIZE));
+					int rc = FilePrefetch(file, offs, BLCKSZ, WAIT_EVENT_DATA_FILE_PREFETCH);
+					if (rc != 0)
+						elog(ERROR, "Failed to prefetch file: %m");
+					else if (++n_prefetched % STAT_REFRESH_PERIOD == 0)
+					{
+						char buf[1024];
+						sprintf(buf, "Prefetch %ld blocks at LSN %lx, replay LSN %lx", n_prefetched, xlogreader->EndRecPtr, replay_lsn);
+						pgstat_report_activity(STATE_RUNNING, buf);
+						elog(DEBUG1, "%s", buf);
+					}
+				}
+				else
+					elog(LOG, "File segment doesn't exists");
+			}
+		}
+		else
+			WalWaitWAL();
+	}
+}
+
+/*
+ * Almost copy of read_local_xlog_page from xlogutils.c, but it reads until flush position of WAL receiver, rather then replay position.
+ */
+static int
+WalReadPage(XLogReaderState *state, XLogRecPtr targetPagePtr,
+			int reqLen, XLogRecPtr targetRecPtr, char *cur_page,
+			TimeLineID *pageTLI)
+{
+	XLogRecPtr	read_upto,
+				loc;
+	int			count;
+
+	loc = targetPagePtr + reqLen;
+
+	/* Loop waiting for xlog to be available if necessary */
+	while (1)
+	{
+		read_upto =	WalRcv->walRcvState == WALRCV_STOPPED ? (XLogRecPtr)-1 : WalRcv->receivedUpto;
+		*pageTLI = replay_timeline;
+
+		if (loc <= read_upto)
+			break;
+
+		WalWaitWAL();
+		CHECK_FOR_INTERRUPTS();
+		pg_usleep(1000L);
+	}
+
+	if (targetPagePtr + XLOG_BLCKSZ <= read_upto)
+	{
+		/*
+		 * more than one block available; read only that block, have caller
+		 * come back if they need more.
+		 */
+		count = XLOG_BLCKSZ;
+	}
+	else if (targetPagePtr + reqLen > read_upto)
+	{
+		/* not enough data there */
+		return -1;
+	}
+	else
+	{
+		/* enough bytes available to satisfy the request */
+		count = read_upto - targetPagePtr;
+	}
+
+	/*
+	 * Even though we just determined how much of the page can be validly read
+	 * as 'count', read the whole page anyway. It's guaranteed to be
+	 * zero-padded up to the page boundary if it's incomplete.
+	 */
+	XLogRead(cur_page, state->wal_segment_size, *pageTLI, targetPagePtr, XLOG_BLCKSZ);
+
+
+	/* number of valid bytes in the buffer */
+	return count;
+}
diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c
index e47ddca..6319ed5 100644
--- a/src/backend/replication/walsender.c
+++ b/src/backend/replication/walsender.c
@@ -252,7 +252,7 @@ static void LagTrackerWrite(XLogRecPtr lsn, TimestampTz local_flush_time);
 static TimeOffset LagTrackerRead(int head, XLogRecPtr lsn, TimestampTz now);
 static bool TransactionIdInRecentPast(TransactionId xid, uint32 epoch);
 
-static void XLogRead(char *buf, XLogRecPtr startptr, Size count);
+static void WalSndRead(char *buf, XLogRecPtr startptr, Size count);
 
 
 /* Initialize walsender process before entering the main command loop */
@@ -771,7 +771,7 @@ logical_read_xlog_page(XLogReaderState *state, XLogRecPtr targetPagePtr, int req
 		count = flushptr - targetPagePtr;	/* part of the page available */
 
 	/* now actually read the data, we know it's there */
-	XLogRead(cur_page, targetPagePtr, XLOG_BLCKSZ);
+	WalSndRead(cur_page, targetPagePtr, XLOG_BLCKSZ);
 
 	return count;
 }
@@ -2314,7 +2314,7 @@ WalSndKill(int code, Datum arg)
  * more than one.
  */
 static void
-XLogRead(char *buf, XLogRecPtr startptr, Size count)
+WalSndRead(char *buf, XLogRecPtr startptr, Size count)
 {
 	char	   *p;
 	XLogRecPtr	recptr;
@@ -2710,7 +2710,7 @@ XLogSendPhysical(void)
 	 * calls.
 	 */
 	enlargeStringInfo(&output_message, nbytes);
-	XLogRead(&output_message.data[output_message.len], startptr, nbytes);
+	WalSndRead(&output_message.data[output_message.len], startptr, nbytes);
 	output_message.len += nbytes;
 	output_message.data[output_message.len] = '\0';
 
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index fa3c8a7..3c55f51 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -61,6 +61,7 @@
 #include "postmaster/bgwriter.h"
 #include "postmaster/postmaster.h"
 #include "postmaster/syslogger.h"
+#include "postmaster/walprefetcher.h"
 #include "postmaster/walwriter.h"
 #include "replication/logicallauncher.h"
 #include "replication/slot.h"
@@ -1823,6 +1824,17 @@ static struct config_bool ConfigureNamesBool[] =
 		NULL, NULL, NULL
 	},
 
+	{
+		{"wal_prefetch_enabled", PGC_USERSET, DEVELOPER_OPTIONS,
+			gettext_noop("Allow prefetch of blocks referenced by WAL records."),
+			NULL,
+			GUC_NOT_IN_SAMPLE
+		},
+		&WalPrefetchEnabled,
+		false,
+		NULL, NULL, NULL
+	},
+
 	/* End-of-list marker */
 	{
 		{NULL, 0, 0, NULL, NULL}, NULL, false, NULL, NULL, NULL
@@ -2487,6 +2499,27 @@ static struct config_int ConfigureNamesInt[] =
 	},
 
 	{
+		{"wal_prefetcher_lead", PGC_SIGHUP, WAL_SETTINGS,
+			gettext_noop("Lead before WAL replay LSN and prefetch LSNr."),
+			NULL
+		},
+		&WalPrefetchLead,
+		0, 0, INT_MAX,
+		NULL, NULL, NULL
+	},
+
+	{
+		{"wal_prefetch_poll_interval", PGC_SIGHUP, WAL_SETTINGS,
+			gettext_noop("Interval of polling WAl by WAL prefetcher."),
+			NULL,
+			GUC_UNIT_MS
+		},
+		&WalPrefetchPollInterval,
+		1000, 1, 10000,
+		NULL, NULL, NULL
+	},
+
+	{
 		{"wal_writer_delay", PGC_SIGHUP, WAL_SETTINGS,
 			gettext_noop("Time between WAL flushes performed in the WAL writer."),
 			NULL,
diff --git a/src/include/access/xlogreader.h b/src/include/access/xlogreader.h
index f307b63..70eac88 100644
--- a/src/include/access/xlogreader.h
+++ b/src/include/access/xlogreader.h
@@ -212,9 +212,7 @@ extern bool XLogReaderValidatePageHeader(XLogReaderState *state,
 /* Invalidate read state */
 extern void XLogReaderInvalReadState(XLogReaderState *state);
 
-#ifdef FRONTEND
 extern XLogRecPtr XLogFindNextRecord(XLogReaderState *state, XLogRecPtr RecPtr);
-#endif							/* FRONTEND */
 
 /* Functions for decoding an XLogRecord */
 
diff --git a/src/include/access/xlogutils.h b/src/include/access/xlogutils.h
index c406699..c2b8a6f 100644
--- a/src/include/access/xlogutils.h
+++ b/src/include/access/xlogutils.h
@@ -55,4 +55,7 @@ extern int read_local_xlog_page(XLogReaderState *state,
 extern void XLogReadDetermineTimeline(XLogReaderState *state,
 						  XLogRecPtr wantPage, uint32 wantLength);
 
+extern void XLogRead(char *buf, int segsize, TimeLineID tli, XLogRecPtr startptr,
+					 Size count);
+
 #endif
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index e167ee8..5f8b67d 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -400,6 +400,7 @@ typedef enum
 	CheckpointerProcess,
 	WalWriterProcess,
 	WalReceiverProcess,
+	WalPrefetcherProcess,
 
 	NUM_AUXPROCTYPES			/* Must be last! */
 } AuxProcType;
@@ -412,6 +413,7 @@ extern AuxProcType MyAuxProcType;
 #define AmCheckpointerProcess()		(MyAuxProcType == CheckpointerProcess)
 #define AmWalWriterProcess()		(MyAuxProcType == WalWriterProcess)
 #define AmWalReceiverProcess()		(MyAuxProcType == WalReceiverProcess)
+#define AmWalPrefetcherProcess()	(MyAuxProcType == WalPrefetcherProcess)
 
 
 /*****************************************************************************
diff --git a/src/include/pgstat.h b/src/include/pgstat.h
index be2f592..20ab699 100644
--- a/src/include/pgstat.h
+++ b/src/include/pgstat.h
@@ -710,7 +710,8 @@ typedef enum BackendType
 	B_STARTUP,
 	B_WAL_RECEIVER,
 	B_WAL_SENDER,
-	B_WAL_WRITER
+	B_WAL_WRITER,
+	B_WAL_PREFETCHER
 } BackendType;
 
 
@@ -767,7 +768,8 @@ typedef enum
 	WAIT_EVENT_SYSLOGGER_MAIN,
 	WAIT_EVENT_WAL_RECEIVER_MAIN,
 	WAIT_EVENT_WAL_SENDER_MAIN,
-	WAIT_EVENT_WAL_WRITER_MAIN
+	WAIT_EVENT_WAL_WRITER_MAIN,
+	WAIT_EVENT_WAL_PREFETCHER_MAIN
 } WaitEventActivity;
 
 /* ----------
diff --git a/src/include/postmaster/walprefetcher.h b/src/include/postmaster/walprefetcher.h
new file mode 100644
index 0000000..82a6010
--- /dev/null
+++ b/src/include/postmaster/walprefetcher.h
@@ -0,0 +1,23 @@
+/*-------------------------------------------------------------------------
+ *
+ * walprefetcher.h
+ *	  Exports from postmaster/walprefetcher.c.
+ *
+ * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ *
+ * src/include/postmaster/walprefetcher.h
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef _WALPREFETCHER_H
+#define _WALPREFETCHER_H
+
+/* GUC options */
+extern int			WalPrefetchLead;
+extern int			WalPrefetchPollInterval;
+extern bool 		WalPrefetchEnabled;
+
+extern void WalPrefetcherMain(void) pg_attribute_noreturn();
+extern void WalPrefetch(XLogRecPtr lsn);
+
+#endif							/* _WALPREFETCHER_H */
#50Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Konstantin Knizhnik (#49)
Re: WAL prefetch

On 06/21/2018 04:01 PM, Konstantin Knizhnik wrote:

I continue my experiments with WAL prefetch.
I have embedded prefetch in Postgres: now walprefetcher is started
together with startup process and is able to help it to speedup recovery.
The patch is attached.

Unfortunately result is negative (at least at my desktop: SSD, 16Gb
RAM). Recovery with prefetch is 3 times slower than without it.
What I am doing:

Configuration:
    max_wal_size=min_wal_size=10Gb,
    shared)buffers = 1Gb
Database:
     pgbench -i -s 1000
Test:
     pgbench -c 10 -M prepared -N -T 100 -P 1
     pkill postgres
     echo 3 > /proc/sys/vm/drop_caches
     time pg_ctl -t 1000 -D pgsql -l logfile start

Without prefetch it is 19 seconds (recovered about 4Gb of WAL), with
prefetch it is about one minute. About 400k blocks are prefetched.
CPU usage is small (<20%), both processes as in "Ds" state.

Based on a quick test, my guess is that the patch is broken in several
ways. Firstly, with the patch attached (and wal_prefetch_enabled=on,
which I think is needed to enable the prefetch) I can't even restart the
server, because pg_ctl restart just hangs (the walprefetcher process
gets stuck in WaitForWAL, IIRC).

I have added an elog(LOG,...) to walprefetcher.c, right before the
FilePrefetch call, and (a) I don't see any actual prefetch calls during
recovery but (b) I do see the prefetch happening during the pgbench.
That seems a bit ... wrong?

Furthermore, you've added an extra

signal_child(BgWriterPID, SIGHUP);

to SIGHUP_handler, which seems like a bug too. I don't have time to
investigate/debug this further.

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#51Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Tomas Vondra (#50)
1 attachment(s)
Re: WAL prefetch

On 21.06.2018 19:57, Tomas Vondra wrote:

On 06/21/2018 04:01 PM, Konstantin Knizhnik wrote:

I continue my experiments with WAL prefetch.
I have embedded prefetch in Postgres: now walprefetcher is started
together with startup process and is able to help it to speedup
recovery.
The patch is attached.

Unfortunately result is negative (at least at my desktop: SSD, 16Gb
RAM). Recovery with prefetch is 3 times slower than without it.
What I am doing:

Configuration:
     max_wal_size=min_wal_size=10Gb,
     shared)buffers = 1Gb
Database:
      pgbench -i -s 1000
Test:
      pgbench -c 10 -M prepared -N -T 100 -P 1
      pkill postgres
      echo 3 > /proc/sys/vm/drop_caches
      time pg_ctl -t 1000 -D pgsql -l logfile start

Without prefetch it is 19 seconds (recovered about 4Gb of WAL), with
prefetch it is about one minute. About 400k blocks are prefetched.
CPU usage is small (<20%), both processes as in "Ds" state.

Based on a quick test, my guess is that the patch is broken in several
ways. Firstly, with the patch attached (and wal_prefetch_enabled=on,
which I think is needed to enable the prefetch) I can't even restart
the server, because pg_ctl restart just hangs (the walprefetcher
process gets stuck in WaitForWAL, IIRC).

I have added an elog(LOG,...) to walprefetcher.c, right before the
FilePrefetch call, and (a) I don't see any actual prefetch calls
during recovery but (b) I do see the prefetch happening during the
pgbench. That seems a bit ... wrong?

Furthermore, you've added an extra

    signal_child(BgWriterPID, SIGHUP);

to SIGHUP_handler, which seems like a bug too. I don't have time to
investigate/debug this further.

regards

Sorry, updated version of the patch is attached.
Please also notice that you can check number of prefetched pages using
pg_stat_activity() - it is reported for walprefetcher process.
Concerning the fact that you have no see prefetches at recovery time:
please check that min_wal_size and max_wal_size are large enough and
pgbench (or whatever else)
committed large enough changes so that recovery will take some time.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

Attachments:

walprefetch-2.patchtext/x-patch; name=walprefetch-2.patchDownload
diff --git a/src/backend/access/transam/xlogreader.c b/src/backend/access/transam/xlogreader.c
index 1b000a2..9730b42 100644
--- a/src/backend/access/transam/xlogreader.c
+++ b/src/backend/access/transam/xlogreader.c
@@ -879,13 +879,6 @@ XLogReaderValidatePageHeader(XLogReaderState *state, XLogRecPtr recptr,
 	return true;
 }
 
-#ifdef FRONTEND
-/*
- * Functions that are currently not needed in the backend, but are better
- * implemented inside xlogreader.c because of the internal facilities available
- * here.
- */
-
 /*
  * Find the first record with an lsn >= RecPtr.
  *
@@ -1004,9 +997,6 @@ out:
 	return found;
 }
 
-#endif							/* FRONTEND */
-
-
 /* ----------------------------------------
  * Functions for decoding the data and block references in a record.
  * ----------------------------------------
diff --git a/src/backend/access/transam/xlogutils.c b/src/backend/access/transam/xlogutils.c
index 52fe55e..7847311 100644
--- a/src/backend/access/transam/xlogutils.c
+++ b/src/backend/access/transam/xlogutils.c
@@ -652,7 +652,7 @@ XLogTruncateRelation(RelFileNode rnode, ForkNumber forkNum,
  * in walsender.c but for small differences (such as lack of elog() in
  * frontend).  Probably these should be merged at some point.
  */
-static void
+void
 XLogRead(char *buf, int segsize, TimeLineID tli, XLogRecPtr startptr,
 		 Size count)
 {
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index 7e34bee..e492715 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -32,6 +32,7 @@
 #include "postmaster/bgwriter.h"
 #include "postmaster/startup.h"
 #include "postmaster/walwriter.h"
+#include "postmaster/walprefetcher.h"
 #include "replication/walreceiver.h"
 #include "storage/bufmgr.h"
 #include "storage/bufpage.h"
@@ -335,6 +336,9 @@ AuxiliaryProcessMain(int argc, char *argv[])
 			case WalReceiverProcess:
 				statmsg = pgstat_get_backend_desc(B_WAL_RECEIVER);
 				break;
+			case WalPrefetcherProcess:
+				statmsg = pgstat_get_backend_desc(B_WAL_PREFETCHER);
+				break;
 			default:
 				statmsg = "??? process";
 				break;
@@ -462,6 +466,11 @@ AuxiliaryProcessMain(int argc, char *argv[])
 			WalReceiverMain();
 			proc_exit(1);		/* should never return */
 
+		case WalPrefetcherProcess:
+			/* don't set signals, walprefetcher has its own agenda */
+			WalPrefetcherMain();
+			proc_exit(1);		/* should never return */
+
 		default:
 			elog(PANIC, "unrecognized process type: %d", (int) MyAuxProcType);
 			proc_exit(1);
diff --git a/src/backend/postmaster/Makefile b/src/backend/postmaster/Makefile
index 71c2321..13e5066 100644
--- a/src/backend/postmaster/Makefile
+++ b/src/backend/postmaster/Makefile
@@ -13,6 +13,6 @@ top_builddir = ../../..
 include $(top_builddir)/src/Makefile.global
 
 OBJS = autovacuum.o bgworker.o bgwriter.o checkpointer.o fork_process.o \
-	pgarch.o pgstat.o postmaster.o startup.o syslogger.o walwriter.o
+	pgarch.o pgstat.o postmaster.o startup.o syslogger.o walwriter.o walprefetcher.o
 
 include $(top_srcdir)/src/backend/common.mk
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c
index 084573e..7195578 100644
--- a/src/backend/postmaster/pgstat.c
+++ b/src/backend/postmaster/pgstat.c
@@ -2870,6 +2870,9 @@ pgstat_bestart(void)
 			case WalReceiverProcess:
 				beentry->st_backendType = B_WAL_RECEIVER;
 				break;
+			case WalPrefetcherProcess:
+				beentry->st_backendType = B_WAL_PREFETCHER;
+				break;
 			default:
 				elog(FATAL, "unrecognized process type: %d",
 					 (int) MyAuxProcType);
@@ -3519,6 +3522,9 @@ pgstat_get_wait_activity(WaitEventActivity w)
 		case WAIT_EVENT_WAL_WRITER_MAIN:
 			event_name = "WalWriterMain";
 			break;
+		case WAIT_EVENT_WAL_PREFETCHER_MAIN:
+			event_name = "WalPrefetcherMain";
+			break;
 			/* no default case, so that compiler will warn */
 	}
 
@@ -4126,6 +4132,9 @@ pgstat_get_backend_desc(BackendType backendType)
 		case B_WAL_RECEIVER:
 			backendDesc = "walreceiver";
 			break;
+		case B_WAL_PREFETCHER:
+			backendDesc = "walprefetcher";
+			break;
 		case B_WAL_SENDER:
 			backendDesc = "walsender";
 			break;
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index a4b53b3..1f3598d 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -254,7 +254,9 @@ static pid_t StartupPID = 0,
 			AutoVacPID = 0,
 			PgArchPID = 0,
 			PgStatPID = 0,
-			SysLoggerPID = 0;
+			SysLoggerPID = 0,
+			WalPrefetcherPID = 0
+;
 
 /* Startup process's status */
 typedef enum
@@ -362,6 +364,9 @@ static volatile bool avlauncher_needs_signal = false;
 /* received START_WALRECEIVER signal */
 static volatile sig_atomic_t WalReceiverRequested = false;
 
+/* received START_WALPREFETCHER signal */
+static volatile sig_atomic_t WalPrefetcherRequested = false;
+
 /* set when there's a worker that needs to be started up */
 static volatile bool StartWorkerNeeded = true;
 static volatile bool HaveCrashedWorker = false;
@@ -549,6 +554,7 @@ static void ShmemBackendArrayRemove(Backend *bn);
 #define StartupDataBase()		StartChildProcess(StartupProcess)
 #define StartBackgroundWriter() StartChildProcess(BgWriterProcess)
 #define StartCheckpointer()		StartChildProcess(CheckpointerProcess)
+#define StartWalPrefetcher()	StartChildProcess(WalPrefetcherProcess)
 #define StartWalWriter()		StartChildProcess(WalWriterProcess)
 #define StartWalReceiver()		StartChildProcess(WalReceiverProcess)
 
@@ -1373,6 +1379,9 @@ PostmasterMain(int argc, char *argv[])
 	StartupStatus = STARTUP_RUNNING;
 	pmState = PM_STARTUP;
 
+	/* Start Wal prefetcher now because it may speed-up WAL redo */
+	WalPrefetcherPID = StartWalPrefetcher();
+
 	/* Some workers may be scheduled to start now */
 	maybe_start_bgworkers();
 
@@ -2535,6 +2544,8 @@ SIGHUP_handler(SIGNAL_ARGS)
 			signal_child(BgWriterPID, SIGHUP);
 		if (CheckpointerPID != 0)
 			signal_child(CheckpointerPID, SIGHUP);
+		if (WalPrefetcherPID != 0)
+			signal_child(WalPrefetcherPID, SIGHUP);
 		if (WalWriterPID != 0)
 			signal_child(WalWriterPID, SIGHUP);
 		if (WalReceiverPID != 0)
@@ -2685,6 +2696,8 @@ pmdie(SIGNAL_ARGS)
 				signal_child(BgWriterPID, SIGTERM);
 			if (WalReceiverPID != 0)
 				signal_child(WalReceiverPID, SIGTERM);
+			if (WalPrefetcherPID != 0)
+				signal_child(WalPrefetcherPID, SIGTERM);
 			if (pmState == PM_RECOVERY)
 			{
 				SignalSomeChildren(SIGTERM, BACKEND_TYPE_BGWORKER);
@@ -2864,6 +2877,8 @@ reaper(SIGNAL_ARGS)
 			 */
 			if (CheckpointerPID == 0)
 				CheckpointerPID = StartCheckpointer();
+			if (WalPrefetcherPID == 0)
+				WalPrefetcherPID = StartWalPrefetcher();
 			if (BgWriterPID == 0)
 				BgWriterPID = StartBackgroundWriter();
 			if (WalWriterPID == 0)
@@ -2967,6 +2982,20 @@ reaper(SIGNAL_ARGS)
 		}
 
 		/*
+		 * Was it the wal prefetcher?  Normal exit can be ignored; we'll start a
+		 * new one at the next iteration of the postmaster's main loop, if
+		 * necessary.  Any other exit condition is treated as a crash.
+		 */
+		if (pid == WalPrefetcherPID)
+		{
+			WalPrefetcherPID = 0;
+			if (!EXIT_STATUS_0(exitstatus))
+				HandleChildCrash(pid, exitstatus,
+								 _("WAL prefetcher process"));
+			continue;
+		}
+
+		/*
 		 * Was it the wal writer?  Normal exit can be ignored; we'll start a
 		 * new one at the next iteration of the postmaster's main loop, if
 		 * necessary.  Any other exit condition is treated as a crash.
@@ -3451,6 +3480,18 @@ HandleChildCrash(int pid, int exitstatus, const char *procname)
 		signal_child(WalWriterPID, (SendStop ? SIGSTOP : SIGQUIT));
 	}
 
+	/* Take care of the walprefetcherr too */
+	if (pid == WalPrefetcherPID)
+		WalPrefetcherPID = 0;
+	else if (WalPrefetcherPID != 0 && take_action)
+	{
+		ereport(DEBUG2,
+				(errmsg_internal("sending %s to process %d",
+								 (SendStop ? "SIGSTOP" : "SIGQUIT"),
+								 (int) WalPrefetcherPID)));
+		signal_child(WalPrefetcherPID, (SendStop ? SIGSTOP : SIGQUIT));
+	}
+
 	/* Take care of the walreceiver too */
 	if (pid == WalReceiverPID)
 		WalReceiverPID = 0;
@@ -3657,6 +3698,7 @@ PostmasterStateMachine(void)
 		if (CountChildren(BACKEND_TYPE_NORMAL | BACKEND_TYPE_WORKER) == 0 &&
 			StartupPID == 0 &&
 			WalReceiverPID == 0 &&
+			WalPrefetcherPID == 0 &&
 			BgWriterPID == 0 &&
 			(CheckpointerPID == 0 ||
 			 (!FatalError && Shutdown < ImmediateShutdown)) &&
@@ -3757,6 +3799,7 @@ PostmasterStateMachine(void)
 			Assert(WalReceiverPID == 0);
 			Assert(BgWriterPID == 0);
 			Assert(CheckpointerPID == 0);
+			Assert(WalPrefetcherPID == 0);
 			Assert(WalWriterPID == 0);
 			Assert(AutoVacPID == 0);
 			/* syslogger is not considered here */
@@ -3946,6 +3989,8 @@ TerminateChildren(int signal)
 		signal_child(WalWriterPID, signal);
 	if (WalReceiverPID != 0)
 		signal_child(WalReceiverPID, signal);
+	if (WalPrefetcherPID != 0)
+		signal_child(WalPrefetcherPID, signal);
 	if (AutoVacPID != 0)
 		signal_child(AutoVacPID, signal);
 	if (PgArchPID != 0)
@@ -5041,6 +5086,10 @@ sigusr1_handler(SIGNAL_ARGS)
 		Assert(BgWriterPID == 0);
 		BgWriterPID = StartBackgroundWriter();
 
+		/* WAL prefetcher is expected to be started earlier but if not, try to start it now */
+		if (WalPrefetcherPID == 0)
+			WalPrefetcherPID = StartWalPrefetcher();
+
 		/*
 		 * Start the archiver if we're responsible for (re-)archiving received
 		 * files.
@@ -5361,6 +5410,10 @@ StartChildProcess(AuxProcType type)
 				ereport(LOG,
 						(errmsg("could not fork WAL receiver process: %m")));
 				break;
+			case WalPrefetcherProcess:
+				ereport(LOG,
+						(errmsg("could not fork WAL prefetcher process: %m")));
+				break;
 			default:
 				ereport(LOG,
 						(errmsg("could not fork process: %m")));
diff --git a/src/backend/postmaster/walprefetcher.c b/src/backend/postmaster/walprefetcher.c
new file mode 100644
index 0000000..1606e60
--- /dev/null
+++ b/src/backend/postmaster/walprefetcher.c
@@ -0,0 +1,576 @@
+/*-------------------------------------------------------------------------
+ *
+ * walprefetcher.c
+ *
+ * Replaying WAL is done by single process, it may cause slow recovery time
+ * cause lag between master and replica.
+ *
+ * Prefetcher trieds to preload in OS file cache blocks, referenced by WAL 
+ * records to speedup recovery
+ *
+ * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ *
+ *
+ * IDENTIFICATION
+ *	  src/backend/postmaster/walprefetcher.c
+ *
+ *-------------------------------------------------------------------------
+ */
+#include "postgres.h"
+
+#include <signal.h>
+
+#include "access/transam.h"
+#include "access/xact.h"
+#include "access/xlog.h"
+#include "access/xlog_internal.h"
+#include "access/xloginsert.h"
+#include "access/xlogutils.h"
+#include "access/xlogreader.h"
+#include "access/xlogrecord.h"
+#include "libpq/pqsignal.h"
+#include "miscadmin.h"
+#include "pgstat.h"
+#include "postmaster/walprefetcher.h"
+#include "replication/walreceiver.h"
+#include "storage/fd.h"
+#include "storage/ipc.h"
+#include "storage/proc.h"
+#include "storage/buf_internals.h"
+#include "utils/guc.h"
+#include "utils/pg_lsn.h"
+#include "utils/memutils.h"
+
+
+/*
+ * GUC parameters
+ */
+int			WalPrefetchLead = 0;
+int			WalPrefetchPollInterval = 1000;
+bool 		WalPrefetchEnabled = false;
+
+/*
+ * Flags set by interrupt handlers for later service in the main loop.
+ */
+static volatile sig_atomic_t got_SIGHUP = false;
+static volatile sig_atomic_t shutdown_requested = false;
+
+/* Signal handlers */
+static void WpfQuickDie(SIGNAL_ARGS);
+static void WpfSigHupHandler(SIGNAL_ARGS);
+static void WpfShutdownHandler(SIGNAL_ARGS);
+static void WpfSigusr1Handler(SIGNAL_ARGS);
+
+/*
+ * Main entry point for walprefetcher background worker
+ */
+void
+WalPrefetcherMain()
+{
+	sigjmp_buf	local_sigjmp_buf;
+	MemoryContext walprefetcher_context;
+	int rc;
+
+	pqsignal(SIGHUP, WpfSigHupHandler); /* set flag to read config file */
+	pqsignal(SIGINT, WpfShutdownHandler);	/* request shutdown */
+	pqsignal(SIGTERM, WpfShutdownHandler);	/* request shutdown */
+	pqsignal(SIGQUIT, WpfQuickDie);	/* hard crash time */
+	pqsignal(SIGALRM, SIG_IGN);
+	pqsignal(SIGPIPE, SIG_IGN);
+	pqsignal(SIGUSR1, WpfSigusr1Handler);
+	pqsignal(SIGUSR2, SIG_IGN); /* not used */
+
+	/*
+	 * Reset some signals that are accepted by postmaster but not here
+	 */
+	pqsignal(SIGCHLD, SIG_DFL);
+	pqsignal(SIGTTIN, SIG_DFL);
+	pqsignal(SIGTTOU, SIG_DFL);
+	pqsignal(SIGCONT, SIG_DFL);
+	pqsignal(SIGWINCH, SIG_DFL);
+
+	/* We allow SIGQUIT (quickdie) at all times */
+	sigdelset(&BlockSig, SIGQUIT);
+
+	/*
+	 * Create a memory context that we will do all our work in.  We do this so
+	 * that we can reset the context during error recovery and thereby avoid
+	 * possible memory leaks.  Formerly this code just ran in
+	 * TopMemoryContext, but resetting that would be a really bad idea.
+	 */
+	walprefetcher_context = AllocSetContextCreate(TopMemoryContext,
+											  "Wal Prefetcher",
+											  ALLOCSET_DEFAULT_SIZES);
+	MemoryContextSwitchTo(walprefetcher_context);
+
+	/*
+	 * If an exception is encountered, processing resumes here.
+	 *
+	 * This code is heavily based on bgwriter.c, q.v.
+	 */
+	if (sigsetjmp(local_sigjmp_buf, 1) != 0)
+	{
+		/* Since not using PG_TRY, must reset error stack by hand */
+		error_context_stack = NULL;
+
+		/* Prevent interrupts while cleaning up */
+		HOLD_INTERRUPTS();
+
+		/* Report the error to the server log */
+		EmitErrorReport();
+
+		pgstat_report_wait_end();
+		AtEOXact_Files(false);
+
+		/*
+		 * Now return to normal top-level context and clear ErrorContext for
+		 * next time.
+		 */
+		MemoryContextSwitchTo(walprefetcher_context);
+		FlushErrorState();
+
+		/* Flush any leaked data in the top-level context */
+		MemoryContextResetAndDeleteChildren(walprefetcher_context);
+
+		/* Now we can allow interrupts again */
+		RESUME_INTERRUPTS();
+
+		/*
+		 * Sleep at least 1 second after any error.  A write error is likely
+		 * to be repeated, and we don't want to be filling the error logs as
+		 * fast as we can.
+		 */
+		pg_usleep(1000000L);
+	}
+
+	/* We can now handle ereport(ERROR) */
+	PG_exception_stack = &local_sigjmp_buf;
+
+	/*
+	 * Unblock signals (they were blocked when the postmaster forked us)
+	 */
+	PG_SETMASK(&UnBlockSig);
+
+	/*
+	 * Loop forever
+	 */
+	for (;;)
+	{
+		/* Clear any already-pending wakeups */
+		ResetLatch(MyLatch);
+
+		/*
+		 * Process any requests or signals received recently.
+		 */
+		if (got_SIGHUP)
+		{
+			got_SIGHUP = false;
+			ProcessConfigFile(PGC_SIGHUP);
+		}
+		if (shutdown_requested)
+		{
+			/* Normal exit from the walprefetcher is here */
+			proc_exit(0);		/* done */
+		}
+
+		if (WalPrefetchEnabled)
+			WalPrefetch(InvalidXLogRecPtr);
+
+		/*
+		 * Sleep until we are signaled
+		 */
+		rc = WaitLatch(MyLatch,
+					   WL_LATCH_SET | WL_POSTMASTER_DEATH,
+					   -1,
+					   WAIT_EVENT_WAL_PREFETCHER_MAIN);
+
+		/*
+		 * Emergency bailout if postmaster has died.  This is to avoid the
+		 * necessity for manual cleanup of all postmaster children.
+		 */
+		if (rc & WL_POSTMASTER_DEATH)
+			exit(1);
+	}
+}
+
+
+/* --------------------------------
+ *		signal handler routines
+ * --------------------------------
+ */
+
+/*
+ * WpfQuickDie() occurs when signalled SIGQUIT by the postmaster.
+ *
+ * Some backend has bought the farm,
+ * so we need to stop what we're doing and exit.
+ */
+static void
+WpfQuickDie(SIGNAL_ARGS)
+{
+	PG_SETMASK(&BlockSig);
+
+	/*
+	 * We DO NOT want to run proc_exit() callbacks -- we're here because
+	 * shared memory may be corrupted, so we don't want to try to clean up our
+	 * transaction.  Just nail the windows shut and get out of town.  Now that
+	 * there's an atexit callback to prevent third-party code from breaking
+	 * things by calling exit() directly, we have to reset the callbacks
+	 * explicitly to make this work as intended.
+	 */
+	on_exit_reset();
+
+	/*
+	 * Note we do exit(2) not exit(0).  This is to force the postmaster into a
+	 * system reset cycle if some idiot DBA sends a manual SIGQUIT to a random
+	 * backend.  This is necessary precisely because we don't clean up our
+	 * shared memory state.  (The "dead man switch" mechanism in pmsignal.c
+	 * should ensure the postmaster sees this as a crash, too, but no harm in
+	 * being doubly sure.)
+	 */
+	exit(2);
+}
+
+/* SIGHUP: set flag to re-read config file at next convenient time */
+static void
+WpfSigHupHandler(SIGNAL_ARGS)
+{
+	got_SIGHUP = true;
+	SetLatch(MyLatch);
+}
+
+/* SIGTERM: set flag to exit normally */
+static void
+WpfShutdownHandler(SIGNAL_ARGS)
+{
+	shutdown_requested = true;
+	SetLatch(MyLatch);
+}
+
+/* SIGUSR1: used for latch wakeups */
+static void
+WpfSigusr1Handler(SIGNAL_ARGS)
+{
+	latch_sigusr1_handler();
+}
+
+/*
+ * Now wal prefetch code itself. 
+ */
+static int
+WalReadPage(XLogReaderState *state, XLogRecPtr targetPagePtr,
+			int reqLen, XLogRecPtr targetRecPtr, char *cur_page,
+			TimeLineID *pageTLI);
+
+#define BLOCK_HASH_SIZE 4001 /* Size of block LRU cache, may be it is better to use information about free RAM instead of hardcoded constant */
+#define FILE_HASH_SIZE  64   /* Size of opened files hash */
+#define STAT_REFRESH_PERIOD 1024 /* Refresh backend status rate */
+
+/*
+ * Block LRU hash table is used to keep information about most recently prefetched blocks.
+ */
+typedef struct BlockHashEntry
+{
+	struct BlockHashEntry* next;
+	struct BlockHashEntry* prev;
+	struct BlockHashEntry* collision;
+	BufferTag tag;
+	uint32 hash;
+} BlockHashEntry;
+
+static BlockHashEntry* block_hash_table[BLOCK_HASH_SIZE];
+static size_t block_hash_size;
+static BlockHashEntry lru = {&lru, &lru};
+static TimeLineID replay_timeline;
+
+/*
+ * Yet another L2-list implementation
+ */
+static void
+unlink_block(BlockHashEntry* entry)
+{
+	entry->next->prev = entry->prev;
+	entry->prev->next = entry->next;
+}
+
+static void
+link_block_after(BlockHashEntry* head, BlockHashEntry* entry)
+{
+	entry->next = head->next;
+	entry->prev = head;
+	head->next->prev = entry;
+	head->next = entry;
+}
+
+/*
+ * Put block in LRU hash or link it to the head of LRU list. Returns true if block was not present in hash, false otherwise.
+ */
+static bool
+put_block_in_cache(BufferTag* tag)
+{
+	uint32 hash;
+	BlockHashEntry* entry;
+
+	hash = BufTableHashCode(tag) % BLOCK_HASH_SIZE;
+	for (entry = block_hash_table[hash]; entry != NULL; entry = entry->collision)
+	{
+		if (BUFFERTAGS_EQUAL(entry->tag, *tag))
+		{
+			unlink_block(entry);
+			link_block_after(&lru, entry);
+			return false;
+		}
+	}
+	if (block_hash_size == BLOCK_HASH_SIZE)
+	{
+		BlockHashEntry* victim = lru.prev;
+		BlockHashEntry** epp = &block_hash_table[victim->hash];
+		while (*epp != victim)
+			epp = &(*epp)->collision;
+		*epp = (*epp)->collision;
+		unlink_block(victim);
+		entry = victim;
+	}
+	else
+	{
+		entry = (BlockHashEntry*)palloc(sizeof(BlockHashEntry));
+		block_hash_size += 1;
+	}
+	entry->tag = *tag;
+	entry->hash = hash;
+	entry->collision = block_hash_table[hash];
+	block_hash_table[hash] = entry;
+	link_block_after(&lru, entry);
+
+	return true;
+}
+
+/*
+ * Hash of of opened files. It seems to be simpler to maintain own cache rather than provide SMgrRelation for smgr functions.
+ */
+typedef struct FileHashEntry
+{
+    BufferTag tag;
+	File file;
+} FileHashEntry;
+
+static FileHashEntry file_hash_table[FILE_HASH_SIZE];
+
+static File
+WalOpenFile(BufferTag* tag)
+{
+	BufferTag segment_tag = *tag;
+	uint32 hash;
+	char* path;
+	File file;
+
+	/* Transform block number into segment number */
+	segment_tag.blockNum /= RELSEG_SIZE;
+	hash = BufTableHashCode(&segment_tag) % FILE_HASH_SIZE;
+
+	if (BUFFERTAGS_EQUAL(file_hash_table[hash].tag, segment_tag))
+		return file_hash_table[hash].file;
+
+	path = relpathperm(tag->rnode, tag->forkNum);
+	if (segment_tag.blockNum > 0)
+	{
+		char* fullpath = psprintf("%s.%d", path, segment_tag.blockNum);
+		pfree(path);
+		path = fullpath;
+	}
+	file = PathNameOpenFile(path, O_RDONLY | PG_BINARY);
+	pfree(path);
+
+	if (file >= 0)
+	{
+		if (file_hash_table[hash].tag.rnode.dbNode != 0)
+			FileClose(file_hash_table[hash].file);
+
+		file_hash_table[hash].file = file;
+		file_hash_table[hash].tag = segment_tag;
+	}
+	return file;
+}
+
+/*
+ * Our backend doesn't receive any notifications about WAL progress, so we have to use sleep
+ * to wait until requested information is available
+ */
+static void
+WalWaitWAL(void)
+{
+	int rc;
+	CHECK_FOR_INTERRUPTS();
+	rc = WaitLatch(MyLatch,
+				   WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
+				   WalPrefetchPollInterval,
+				   WAIT_EVENT_WAL_PREFETCHER_MAIN);
+	/*
+	 * Emergency bailout if postmaster has died.  This is to avoid the
+	 * necessity for manual cleanup of all postmaster children.
+	 */
+	if (rc & WL_POSTMASTER_DEATH)
+		exit(1);
+
+}
+
+/*
+ * Main function: perform prefetch of blocks referenced by WAL records starting from given LSN or from WAL replay position if lsn=0
+ */
+void
+WalPrefetch(XLogRecPtr lsn)
+{
+	XLogReaderState *xlogreader;
+	long n_prefetched = 0;
+
+	/* Dirty hack: prevent recovery conflict */
+	MyPgXact->xmin = InvalidTransactionId;
+
+	memset(file_hash_table, 0, sizeof file_hash_table);
+	memset(block_hash_table, 0, sizeof block_hash_table);
+
+	xlogreader = XLogReaderAllocate(wal_segment_size, &WalReadPage, NULL);
+
+	if (!xlogreader)
+		ereport(ERROR,
+				(errcode(ERRCODE_OUT_OF_MEMORY),
+				 errmsg("out of memory"),
+				 errdetail("Failed while allocating a WAL reading processor.")));
+
+	if (lsn == InvalidXLogRecPtr)
+		lsn = GetXLogReplayRecPtr(NULL); /* Start with replay LSN */
+
+	while (!shutdown_requested)
+	{
+		char *errormsg;
+		int	block_id;
+		XLogRecPtr replay_lsn = GetXLogReplayRecPtr(&replay_timeline);
+		XLogRecord *record;
+
+		/*
+		 * If current position is behind current replay LSN, then move it forward: we do not want to perform useless job and prefetch
+		 * blocks for already processed WAL records
+		 */
+		if (lsn != InvalidXLogRecPtr || replay_lsn >= xlogreader->EndRecPtr)
+		{
+			XLogRecPtr prefetch_lsn = replay_lsn != InvalidXLogRecPtr
+				? XLogFindNextRecord(xlogreader, Max(lsn, replay_lsn) + WalPrefetchLead) : InvalidXLogRecPtr;
+			if (prefetch_lsn == InvalidXLogRecPtr)
+			{
+				WalWaitWAL();
+				continue;
+			}
+			lsn = prefetch_lsn;
+		}
+
+		record = XLogReadRecord(xlogreader, lsn, &errormsg);
+
+		if (record != NULL)
+		{
+			lsn = InvalidXLogRecPtr; /* continue with next record */
+
+			/* Loop through blocks referenced by this WAL record */
+			for (block_id = 0; block_id <= xlogreader->max_block_id; block_id++)
+			{
+				BufferTag tag;
+				File      file;
+
+				/* Do not prefetch full pages */
+				if (!XLogRecGetBlockTag(xlogreader, block_id, &tag.rnode, &tag.forkNum, &tag.blockNum)
+					|| xlogreader->blocks[block_id].has_image)
+					continue;
+
+				/* Check if block already prefetched */
+				if (!put_block_in_cache(&tag))
+					continue;
+
+				file = WalOpenFile(&tag);
+				if (file >= 0)
+				{
+					off_t offs = (off_t) BLCKSZ * (tag.blockNum % ((BlockNumber) RELSEG_SIZE));
+					int rc = FilePrefetch(file, offs, BLCKSZ, WAIT_EVENT_DATA_FILE_PREFETCH);
+					if (rc != 0)
+						elog(ERROR, "Failed to prefetch file: %m");
+					else if (++n_prefetched % STAT_REFRESH_PERIOD == 0)
+					{
+						char buf[1024];
+						sprintf(buf, "Prefetch %ld blocks at LSN %lx, replay LSN %lx", n_prefetched, xlogreader->EndRecPtr, replay_lsn);
+						pgstat_report_activity(STATE_RUNNING, buf);
+						elog(DEBUG1, "%s", buf);
+					}
+				}
+				else
+					elog(LOG, "File segment doesn't exists");
+			}
+		}
+		else
+			WalWaitWAL();
+	}
+}
+
+/*
+ * Almost copy of read_local_xlog_page from xlogutils.c, but it reads until flush position of WAL receiver, rather then replay position.
+ */
+static int
+WalReadPage(XLogReaderState *state, XLogRecPtr targetPagePtr,
+			int reqLen, XLogRecPtr targetRecPtr, char *cur_page,
+			TimeLineID *pageTLI)
+{
+	XLogRecPtr	read_upto,
+				loc;
+	int			count;
+
+	loc = targetPagePtr + reqLen;
+
+	/* Loop waiting for xlog to be available if necessary */
+	while (1)
+	{
+		/*
+		 * If we perform recovery at startup then read until end of WAL,
+		 * otherwise if there is active WAL receiver at replica, read until the end of received data,
+		 * if there is no active wal recevier, then just sleep.
+		 */
+		read_upto =	WalRcv->walRcvState == WALRCV_STOPPED
+			? RecoveryInProgress() ? (XLogRecPtr)-1 : InvalidXLogRecPtr
+			: WalRcv->receivedUpto;
+		*pageTLI = replay_timeline;
+
+		if (loc <= read_upto)
+			break;
+
+		WalWaitWAL();
+		CHECK_FOR_INTERRUPTS();
+		if (shutdown_requested)
+			return -1;
+	}
+
+	if (targetPagePtr + XLOG_BLCKSZ <= read_upto)
+	{
+		/*
+		 * more than one block available; read only that block, have caller
+		 * come back if they need more.
+		 */
+		count = XLOG_BLCKSZ;
+	}
+	else if (targetPagePtr + reqLen > read_upto)
+	{
+		/* not enough data there */
+		return -1;
+	}
+	else
+	{
+		/* enough bytes available to satisfy the request */
+		count = read_upto - targetPagePtr;
+	}
+
+	/*
+	 * Even though we just determined how much of the page can be validly read
+	 * as 'count', read the whole page anyway. It's guaranteed to be
+	 * zero-padded up to the page boundary if it's incomplete.
+	 */
+	XLogRead(cur_page, state->wal_segment_size, *pageTLI, targetPagePtr, XLOG_BLCKSZ);
+
+
+	/* number of valid bytes in the buffer */
+	return count;
+}
diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c
index e47ddca..6319ed5 100644
--- a/src/backend/replication/walsender.c
+++ b/src/backend/replication/walsender.c
@@ -252,7 +252,7 @@ static void LagTrackerWrite(XLogRecPtr lsn, TimestampTz local_flush_time);
 static TimeOffset LagTrackerRead(int head, XLogRecPtr lsn, TimestampTz now);
 static bool TransactionIdInRecentPast(TransactionId xid, uint32 epoch);
 
-static void XLogRead(char *buf, XLogRecPtr startptr, Size count);
+static void WalSndRead(char *buf, XLogRecPtr startptr, Size count);
 
 
 /* Initialize walsender process before entering the main command loop */
@@ -771,7 +771,7 @@ logical_read_xlog_page(XLogReaderState *state, XLogRecPtr targetPagePtr, int req
 		count = flushptr - targetPagePtr;	/* part of the page available */
 
 	/* now actually read the data, we know it's there */
-	XLogRead(cur_page, targetPagePtr, XLOG_BLCKSZ);
+	WalSndRead(cur_page, targetPagePtr, XLOG_BLCKSZ);
 
 	return count;
 }
@@ -2314,7 +2314,7 @@ WalSndKill(int code, Datum arg)
  * more than one.
  */
 static void
-XLogRead(char *buf, XLogRecPtr startptr, Size count)
+WalSndRead(char *buf, XLogRecPtr startptr, Size count)
 {
 	char	   *p;
 	XLogRecPtr	recptr;
@@ -2710,7 +2710,7 @@ XLogSendPhysical(void)
 	 * calls.
 	 */
 	enlargeStringInfo(&output_message, nbytes);
-	XLogRead(&output_message.data[output_message.len], startptr, nbytes);
+	WalSndRead(&output_message.data[output_message.len], startptr, nbytes);
 	output_message.len += nbytes;
 	output_message.data[output_message.len] = '\0';
 
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index fa3c8a7..3c55f51 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -61,6 +61,7 @@
 #include "postmaster/bgwriter.h"
 #include "postmaster/postmaster.h"
 #include "postmaster/syslogger.h"
+#include "postmaster/walprefetcher.h"
 #include "postmaster/walwriter.h"
 #include "replication/logicallauncher.h"
 #include "replication/slot.h"
@@ -1823,6 +1824,17 @@ static struct config_bool ConfigureNamesBool[] =
 		NULL, NULL, NULL
 	},
 
+	{
+		{"wal_prefetch_enabled", PGC_USERSET, DEVELOPER_OPTIONS,
+			gettext_noop("Allow prefetch of blocks referenced by WAL records."),
+			NULL,
+			GUC_NOT_IN_SAMPLE
+		},
+		&WalPrefetchEnabled,
+		false,
+		NULL, NULL, NULL
+	},
+
 	/* End-of-list marker */
 	{
 		{NULL, 0, 0, NULL, NULL}, NULL, false, NULL, NULL, NULL
@@ -2487,6 +2499,27 @@ static struct config_int ConfigureNamesInt[] =
 	},
 
 	{
+		{"wal_prefetcher_lead", PGC_SIGHUP, WAL_SETTINGS,
+			gettext_noop("Lead before WAL replay LSN and prefetch LSNr."),
+			NULL
+		},
+		&WalPrefetchLead,
+		0, 0, INT_MAX,
+		NULL, NULL, NULL
+	},
+
+	{
+		{"wal_prefetch_poll_interval", PGC_SIGHUP, WAL_SETTINGS,
+			gettext_noop("Interval of polling WAl by WAL prefetcher."),
+			NULL,
+			GUC_UNIT_MS
+		},
+		&WalPrefetchPollInterval,
+		1000, 1, 10000,
+		NULL, NULL, NULL
+	},
+
+	{
 		{"wal_writer_delay", PGC_SIGHUP, WAL_SETTINGS,
 			gettext_noop("Time between WAL flushes performed in the WAL writer."),
 			NULL,
diff --git a/src/include/access/xlogreader.h b/src/include/access/xlogreader.h
index f307b63..70eac88 100644
--- a/src/include/access/xlogreader.h
+++ b/src/include/access/xlogreader.h
@@ -212,9 +212,7 @@ extern bool XLogReaderValidatePageHeader(XLogReaderState *state,
 /* Invalidate read state */
 extern void XLogReaderInvalReadState(XLogReaderState *state);
 
-#ifdef FRONTEND
 extern XLogRecPtr XLogFindNextRecord(XLogReaderState *state, XLogRecPtr RecPtr);
-#endif							/* FRONTEND */
 
 /* Functions for decoding an XLogRecord */
 
diff --git a/src/include/access/xlogutils.h b/src/include/access/xlogutils.h
index c406699..c2b8a6f 100644
--- a/src/include/access/xlogutils.h
+++ b/src/include/access/xlogutils.h
@@ -55,4 +55,7 @@ extern int read_local_xlog_page(XLogReaderState *state,
 extern void XLogReadDetermineTimeline(XLogReaderState *state,
 						  XLogRecPtr wantPage, uint32 wantLength);
 
+extern void XLogRead(char *buf, int segsize, TimeLineID tli, XLogRecPtr startptr,
+					 Size count);
+
 #endif
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index e167ee8..5f8b67d 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -400,6 +400,7 @@ typedef enum
 	CheckpointerProcess,
 	WalWriterProcess,
 	WalReceiverProcess,
+	WalPrefetcherProcess,
 
 	NUM_AUXPROCTYPES			/* Must be last! */
 } AuxProcType;
@@ -412,6 +413,7 @@ extern AuxProcType MyAuxProcType;
 #define AmCheckpointerProcess()		(MyAuxProcType == CheckpointerProcess)
 #define AmWalWriterProcess()		(MyAuxProcType == WalWriterProcess)
 #define AmWalReceiverProcess()		(MyAuxProcType == WalReceiverProcess)
+#define AmWalPrefetcherProcess()	(MyAuxProcType == WalPrefetcherProcess)
 
 
 /*****************************************************************************
diff --git a/src/include/pgstat.h b/src/include/pgstat.h
index be2f592..20ab699 100644
--- a/src/include/pgstat.h
+++ b/src/include/pgstat.h
@@ -710,7 +710,8 @@ typedef enum BackendType
 	B_STARTUP,
 	B_WAL_RECEIVER,
 	B_WAL_SENDER,
-	B_WAL_WRITER
+	B_WAL_WRITER,
+	B_WAL_PREFETCHER
 } BackendType;
 
 
@@ -767,7 +768,8 @@ typedef enum
 	WAIT_EVENT_SYSLOGGER_MAIN,
 	WAIT_EVENT_WAL_RECEIVER_MAIN,
 	WAIT_EVENT_WAL_SENDER_MAIN,
-	WAIT_EVENT_WAL_WRITER_MAIN
+	WAIT_EVENT_WAL_WRITER_MAIN,
+	WAIT_EVENT_WAL_PREFETCHER_MAIN
 } WaitEventActivity;
 
 /* ----------
diff --git a/src/include/postmaster/walprefetcher.h b/src/include/postmaster/walprefetcher.h
new file mode 100644
index 0000000..82a6010
--- /dev/null
+++ b/src/include/postmaster/walprefetcher.h
@@ -0,0 +1,23 @@
+/*-------------------------------------------------------------------------
+ *
+ * walprefetcher.h
+ *	  Exports from postmaster/walprefetcher.c.
+ *
+ * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ *
+ * src/include/postmaster/walprefetcher.h
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef _WALPREFETCHER_H
+#define _WALPREFETCHER_H
+
+/* GUC options */
+extern int			WalPrefetchLead;
+extern int			WalPrefetchPollInterval;
+extern bool 		WalPrefetchEnabled;
+
+extern void WalPrefetcherMain(void) pg_attribute_noreturn();
+extern void WalPrefetch(XLogRecPtr lsn);
+
+#endif							/* _WALPREFETCHER_H */
#52Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Konstantin Knizhnik (#51)
1 attachment(s)
Re: WAL prefetch

On 22.06.2018 11:35, Konstantin Knizhnik wrote:

On 21.06.2018 19:57, Tomas Vondra wrote:

On 06/21/2018 04:01 PM, Konstantin Knizhnik wrote:

I continue my experiments with WAL prefetch.
I have embedded prefetch in Postgres: now walprefetcher is started
together with startup process and is able to help it to speedup
recovery.
The patch is attached.

Unfortunately result is negative (at least at my desktop: SSD, 16Gb
RAM). Recovery with prefetch is 3 times slower than without it.
What I am doing:

Configuration:
     max_wal_size=min_wal_size=10Gb,
     shared)buffers = 1Gb
Database:
      pgbench -i -s 1000
Test:
      pgbench -c 10 -M prepared -N -T 100 -P 1
      pkill postgres
      echo 3 > /proc/sys/vm/drop_caches
      time pg_ctl -t 1000 -D pgsql -l logfile start

Without prefetch it is 19 seconds (recovered about 4Gb of WAL), with
prefetch it is about one minute. About 400k blocks are prefetched.
CPU usage is small (<20%), both processes as in "Ds" state.

Based on a quick test, my guess is that the patch is broken in
several ways. Firstly, with the patch attached (and
wal_prefetch_enabled=on, which I think is needed to enable the
prefetch) I can't even restart the server, because pg_ctl restart
just hangs (the walprefetcher process gets stuck in WaitForWAL, IIRC).

I have added an elog(LOG,...) to walprefetcher.c, right before the
FilePrefetch call, and (a) I don't see any actual prefetch calls
during recovery but (b) I do see the prefetch happening during the
pgbench. That seems a bit ... wrong?

Furthermore, you've added an extra

    signal_child(BgWriterPID, SIGHUP);

to SIGHUP_handler, which seems like a bug too. I don't have time to
investigate/debug this further.

regards

Sorry, updated version of the patch is attached.
Please also notice that you can check number of prefetched pages using
pg_stat_activity() - it is reported for walprefetcher process.
Concerning the fact that you have no see prefetches at recovery time:
please check that min_wal_size and max_wal_size are large enough and
pgbench (or whatever else)
committed large enough changes so that recovery will take some time.

I have improved my WAL prefetch patch. The main reason of slowdown
recovery speed with enabled prefetch was that it doesn't take in account
initialized pages  (XLOG_HEAP_INIT_PAGE)
and doesn't remember (cache) full page writes.
The main differences of new version of the patch:

1. Use effective_cache_size as size of cache of prefetched blocks
2. Do not prefetch blocks sent in shared buffers
3. Do not prefetch blocks  for RM_HEAP_ID with XLOG_HEAP_INIT_PAGE bit set
4. Remember new/fpw pages in prefetch cache, to avoid prefetch them for
subsequent  WAL records.
5. Add min/max prefetch lead parameters to make it possible to
synchronize speed of prefetch with speed of replay.
6. Increase size of open file cache to avoid redundant open/close
operations.

--
Konstantin Knizhnik
Postgres Professional: http://www.postgrespro.com
The Russian Postgres Company

Attachments:

walprefetch-3.patchtext/x-patch; name=walprefetch-3.patchDownload
diff --git a/src/backend/access/transam/xlogreader.c b/src/backend/access/transam/xlogreader.c
index 1b000a2..9730b42 100644
--- a/src/backend/access/transam/xlogreader.c
+++ b/src/backend/access/transam/xlogreader.c
@@ -879,13 +879,6 @@ XLogReaderValidatePageHeader(XLogReaderState *state, XLogRecPtr recptr,
 	return true;
 }
 
-#ifdef FRONTEND
-/*
- * Functions that are currently not needed in the backend, but are better
- * implemented inside xlogreader.c because of the internal facilities available
- * here.
- */
-
 /*
  * Find the first record with an lsn >= RecPtr.
  *
@@ -1004,9 +997,6 @@ out:
 	return found;
 }
 
-#endif							/* FRONTEND */
-
-
 /* ----------------------------------------
  * Functions for decoding the data and block references in a record.
  * ----------------------------------------
diff --git a/src/backend/access/transam/xlogutils.c b/src/backend/access/transam/xlogutils.c
index 52fe55e..7847311 100644
--- a/src/backend/access/transam/xlogutils.c
+++ b/src/backend/access/transam/xlogutils.c
@@ -652,7 +652,7 @@ XLogTruncateRelation(RelFileNode rnode, ForkNumber forkNum,
  * in walsender.c but for small differences (such as lack of elog() in
  * frontend).  Probably these should be merged at some point.
  */
-static void
+void
 XLogRead(char *buf, int segsize, TimeLineID tli, XLogRecPtr startptr,
 		 Size count)
 {
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index 7e34bee..e492715 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -32,6 +32,7 @@
 #include "postmaster/bgwriter.h"
 #include "postmaster/startup.h"
 #include "postmaster/walwriter.h"
+#include "postmaster/walprefetcher.h"
 #include "replication/walreceiver.h"
 #include "storage/bufmgr.h"
 #include "storage/bufpage.h"
@@ -335,6 +336,9 @@ AuxiliaryProcessMain(int argc, char *argv[])
 			case WalReceiverProcess:
 				statmsg = pgstat_get_backend_desc(B_WAL_RECEIVER);
 				break;
+			case WalPrefetcherProcess:
+				statmsg = pgstat_get_backend_desc(B_WAL_PREFETCHER);
+				break;
 			default:
 				statmsg = "??? process";
 				break;
@@ -462,6 +466,11 @@ AuxiliaryProcessMain(int argc, char *argv[])
 			WalReceiverMain();
 			proc_exit(1);		/* should never return */
 
+		case WalPrefetcherProcess:
+			/* don't set signals, walprefetcher has its own agenda */
+			WalPrefetcherMain();
+			proc_exit(1);		/* should never return */
+
 		default:
 			elog(PANIC, "unrecognized process type: %d", (int) MyAuxProcType);
 			proc_exit(1);
diff --git a/src/backend/postmaster/Makefile b/src/backend/postmaster/Makefile
index 71c2321..13e5066 100644
--- a/src/backend/postmaster/Makefile
+++ b/src/backend/postmaster/Makefile
@@ -13,6 +13,6 @@ top_builddir = ../../..
 include $(top_builddir)/src/Makefile.global
 
 OBJS = autovacuum.o bgworker.o bgwriter.o checkpointer.o fork_process.o \
-	pgarch.o pgstat.o postmaster.o startup.o syslogger.o walwriter.o
+	pgarch.o pgstat.o postmaster.o startup.o syslogger.o walwriter.o walprefetcher.o
 
 include $(top_srcdir)/src/backend/common.mk
diff --git a/src/backend/postmaster/pgstat.c b/src/backend/postmaster/pgstat.c
index 084573e..7195578 100644
--- a/src/backend/postmaster/pgstat.c
+++ b/src/backend/postmaster/pgstat.c
@@ -2870,6 +2870,9 @@ pgstat_bestart(void)
 			case WalReceiverProcess:
 				beentry->st_backendType = B_WAL_RECEIVER;
 				break;
+			case WalPrefetcherProcess:
+				beentry->st_backendType = B_WAL_PREFETCHER;
+				break;
 			default:
 				elog(FATAL, "unrecognized process type: %d",
 					 (int) MyAuxProcType);
@@ -3519,6 +3522,9 @@ pgstat_get_wait_activity(WaitEventActivity w)
 		case WAIT_EVENT_WAL_WRITER_MAIN:
 			event_name = "WalWriterMain";
 			break;
+		case WAIT_EVENT_WAL_PREFETCHER_MAIN:
+			event_name = "WalPrefetcherMain";
+			break;
 			/* no default case, so that compiler will warn */
 	}
 
@@ -4126,6 +4132,9 @@ pgstat_get_backend_desc(BackendType backendType)
 		case B_WAL_RECEIVER:
 			backendDesc = "walreceiver";
 			break;
+		case B_WAL_PREFETCHER:
+			backendDesc = "walprefetcher";
+			break;
 		case B_WAL_SENDER:
 			backendDesc = "walsender";
 			break;
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c
index a4b53b3..1f3598d 100644
--- a/src/backend/postmaster/postmaster.c
+++ b/src/backend/postmaster/postmaster.c
@@ -254,7 +254,9 @@ static pid_t StartupPID = 0,
 			AutoVacPID = 0,
 			PgArchPID = 0,
 			PgStatPID = 0,
-			SysLoggerPID = 0;
+			SysLoggerPID = 0,
+			WalPrefetcherPID = 0
+;
 
 /* Startup process's status */
 typedef enum
@@ -362,6 +364,9 @@ static volatile bool avlauncher_needs_signal = false;
 /* received START_WALRECEIVER signal */
 static volatile sig_atomic_t WalReceiverRequested = false;
 
+/* received START_WALPREFETCHER signal */
+static volatile sig_atomic_t WalPrefetcherRequested = false;
+
 /* set when there's a worker that needs to be started up */
 static volatile bool StartWorkerNeeded = true;
 static volatile bool HaveCrashedWorker = false;
@@ -549,6 +554,7 @@ static void ShmemBackendArrayRemove(Backend *bn);
 #define StartupDataBase()		StartChildProcess(StartupProcess)
 #define StartBackgroundWriter() StartChildProcess(BgWriterProcess)
 #define StartCheckpointer()		StartChildProcess(CheckpointerProcess)
+#define StartWalPrefetcher()	StartChildProcess(WalPrefetcherProcess)
 #define StartWalWriter()		StartChildProcess(WalWriterProcess)
 #define StartWalReceiver()		StartChildProcess(WalReceiverProcess)
 
@@ -1373,6 +1379,9 @@ PostmasterMain(int argc, char *argv[])
 	StartupStatus = STARTUP_RUNNING;
 	pmState = PM_STARTUP;
 
+	/* Start Wal prefetcher now because it may speed-up WAL redo */
+	WalPrefetcherPID = StartWalPrefetcher();
+
 	/* Some workers may be scheduled to start now */
 	maybe_start_bgworkers();
 
@@ -2535,6 +2544,8 @@ SIGHUP_handler(SIGNAL_ARGS)
 			signal_child(BgWriterPID, SIGHUP);
 		if (CheckpointerPID != 0)
 			signal_child(CheckpointerPID, SIGHUP);
+		if (WalPrefetcherPID != 0)
+			signal_child(WalPrefetcherPID, SIGHUP);
 		if (WalWriterPID != 0)
 			signal_child(WalWriterPID, SIGHUP);
 		if (WalReceiverPID != 0)
@@ -2685,6 +2696,8 @@ pmdie(SIGNAL_ARGS)
 				signal_child(BgWriterPID, SIGTERM);
 			if (WalReceiverPID != 0)
 				signal_child(WalReceiverPID, SIGTERM);
+			if (WalPrefetcherPID != 0)
+				signal_child(WalPrefetcherPID, SIGTERM);
 			if (pmState == PM_RECOVERY)
 			{
 				SignalSomeChildren(SIGTERM, BACKEND_TYPE_BGWORKER);
@@ -2864,6 +2877,8 @@ reaper(SIGNAL_ARGS)
 			 */
 			if (CheckpointerPID == 0)
 				CheckpointerPID = StartCheckpointer();
+			if (WalPrefetcherPID == 0)
+				WalPrefetcherPID = StartWalPrefetcher();
 			if (BgWriterPID == 0)
 				BgWriterPID = StartBackgroundWriter();
 			if (WalWriterPID == 0)
@@ -2967,6 +2982,20 @@ reaper(SIGNAL_ARGS)
 		}
 
 		/*
+		 * Was it the wal prefetcher?  Normal exit can be ignored; we'll start a
+		 * new one at the next iteration of the postmaster's main loop, if
+		 * necessary.  Any other exit condition is treated as a crash.
+		 */
+		if (pid == WalPrefetcherPID)
+		{
+			WalPrefetcherPID = 0;
+			if (!EXIT_STATUS_0(exitstatus))
+				HandleChildCrash(pid, exitstatus,
+								 _("WAL prefetcher process"));
+			continue;
+		}
+
+		/*
 		 * Was it the wal writer?  Normal exit can be ignored; we'll start a
 		 * new one at the next iteration of the postmaster's main loop, if
 		 * necessary.  Any other exit condition is treated as a crash.
@@ -3451,6 +3480,18 @@ HandleChildCrash(int pid, int exitstatus, const char *procname)
 		signal_child(WalWriterPID, (SendStop ? SIGSTOP : SIGQUIT));
 	}
 
+	/* Take care of the walprefetcherr too */
+	if (pid == WalPrefetcherPID)
+		WalPrefetcherPID = 0;
+	else if (WalPrefetcherPID != 0 && take_action)
+	{
+		ereport(DEBUG2,
+				(errmsg_internal("sending %s to process %d",
+								 (SendStop ? "SIGSTOP" : "SIGQUIT"),
+								 (int) WalPrefetcherPID)));
+		signal_child(WalPrefetcherPID, (SendStop ? SIGSTOP : SIGQUIT));
+	}
+
 	/* Take care of the walreceiver too */
 	if (pid == WalReceiverPID)
 		WalReceiverPID = 0;
@@ -3657,6 +3698,7 @@ PostmasterStateMachine(void)
 		if (CountChildren(BACKEND_TYPE_NORMAL | BACKEND_TYPE_WORKER) == 0 &&
 			StartupPID == 0 &&
 			WalReceiverPID == 0 &&
+			WalPrefetcherPID == 0 &&
 			BgWriterPID == 0 &&
 			(CheckpointerPID == 0 ||
 			 (!FatalError && Shutdown < ImmediateShutdown)) &&
@@ -3757,6 +3799,7 @@ PostmasterStateMachine(void)
 			Assert(WalReceiverPID == 0);
 			Assert(BgWriterPID == 0);
 			Assert(CheckpointerPID == 0);
+			Assert(WalPrefetcherPID == 0);
 			Assert(WalWriterPID == 0);
 			Assert(AutoVacPID == 0);
 			/* syslogger is not considered here */
@@ -3946,6 +3989,8 @@ TerminateChildren(int signal)
 		signal_child(WalWriterPID, signal);
 	if (WalReceiverPID != 0)
 		signal_child(WalReceiverPID, signal);
+	if (WalPrefetcherPID != 0)
+		signal_child(WalPrefetcherPID, signal);
 	if (AutoVacPID != 0)
 		signal_child(AutoVacPID, signal);
 	if (PgArchPID != 0)
@@ -5041,6 +5086,10 @@ sigusr1_handler(SIGNAL_ARGS)
 		Assert(BgWriterPID == 0);
 		BgWriterPID = StartBackgroundWriter();
 
+		/* WAL prefetcher is expected to be started earlier but if not, try to start it now */
+		if (WalPrefetcherPID == 0)
+			WalPrefetcherPID = StartWalPrefetcher();
+
 		/*
 		 * Start the archiver if we're responsible for (re-)archiving received
 		 * files.
@@ -5361,6 +5410,10 @@ StartChildProcess(AuxProcType type)
 				ereport(LOG,
 						(errmsg("could not fork WAL receiver process: %m")));
 				break;
+			case WalPrefetcherProcess:
+				ereport(LOG,
+						(errmsg("could not fork WAL prefetcher process: %m")));
+				break;
 			default:
 				ereport(LOG,
 						(errmsg("could not fork process: %m")));
diff --git a/src/backend/postmaster/walprefetcher.c b/src/backend/postmaster/walprefetcher.c
new file mode 100644
index 0000000..3c8beba
--- /dev/null
+++ b/src/backend/postmaster/walprefetcher.c
@@ -0,0 +1,648 @@
+/*-------------------------------------------------------------------------
+ *
+ * walprefetcher.c
+ *
+ * Replaying WAL is done by single process, it may cause slow recovery time
+ * cause lag between master and replica.
+ *
+ * Prefetcher trieds to preload in OS file cache blocks, referenced by WAL 
+ * records to speedup recovery
+ *
+ * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ *
+ *
+ * IDENTIFICATION
+ *	  src/backend/postmaster/walprefetcher.c
+ *
+ *-------------------------------------------------------------------------
+ */
+#include "postgres.h"
+
+#include <signal.h>
+
+#include "access/heapam_xlog.h"
+#include "access/transam.h"
+#include "access/xact.h"
+#include "access/xlog.h"
+#include "access/xlog_internal.h"
+#include "access/xloginsert.h"
+#include "access/xlogutils.h"
+#include "access/xlogreader.h"
+#include "access/xlogrecord.h"
+#include "libpq/pqsignal.h"
+#include "miscadmin.h"
+#include "optimizer/cost.h"
+#include "pgstat.h"
+#include "portability/instr_time.h"
+#include "postmaster/walprefetcher.h"
+#include "replication/walreceiver.h"
+#include "storage/fd.h"
+#include "storage/ipc.h"
+#include "storage/proc.h"
+#include "storage/buf_internals.h"
+#include "utils/guc.h"
+#include "utils/pg_lsn.h"
+#include "utils/memutils.h"
+
+#define KB (1024LL)
+/* #define DEBUG_PREFETCH 1 */
+
+#if DEBUG_PREFETCH
+#define LOG_LEVEL LOG
+#else
+#define LOG_LEVEL DEBUG1
+#endif
+
+/*
+ * GUC parameters
+ */
+int			WalPrefetchMinLead = 0;
+int			WalPrefetchMaxLead = 0;
+int			WalPrefetchPollInterval = 1000;
+bool 		WalPrefetchEnabled = false;
+
+/*
+ * Flags set by interrupt handlers for later service in the main loop.
+ */
+static volatile sig_atomic_t got_SIGHUP = false;
+static volatile sig_atomic_t shutdown_requested = false;
+
+/* Signal handlers */
+static void WpfQuickDie(SIGNAL_ARGS);
+static void WpfSigHupHandler(SIGNAL_ARGS);
+static void WpfShutdownHandler(SIGNAL_ARGS);
+static void WpfSigusr1Handler(SIGNAL_ARGS);
+
+/*
+ * Main entry point for walprefetcher background worker
+ */
+void
+WalPrefetcherMain()
+{
+	sigjmp_buf	local_sigjmp_buf;
+	MemoryContext walprefetcher_context;
+	int rc;
+
+	pqsignal(SIGHUP, WpfSigHupHandler); /* set flag to read config file */
+	pqsignal(SIGINT, WpfShutdownHandler);	/* request shutdown */
+	pqsignal(SIGTERM, WpfShutdownHandler);	/* request shutdown */
+	pqsignal(SIGQUIT, WpfQuickDie);	/* hard crash time */
+	pqsignal(SIGALRM, SIG_IGN);
+	pqsignal(SIGPIPE, SIG_IGN);
+	pqsignal(SIGUSR1, WpfSigusr1Handler);
+	pqsignal(SIGUSR2, SIG_IGN); /* not used */
+
+	/*
+	 * Reset some signals that are accepted by postmaster but not here
+	 */
+	pqsignal(SIGCHLD, SIG_DFL);
+	pqsignal(SIGTTIN, SIG_DFL);
+	pqsignal(SIGTTOU, SIG_DFL);
+	pqsignal(SIGCONT, SIG_DFL);
+	pqsignal(SIGWINCH, SIG_DFL);
+
+	/* We allow SIGQUIT (quickdie) at all times */
+	sigdelset(&BlockSig, SIGQUIT);
+
+	/*
+	 * Create a memory context that we will do all our work in.  We do this so
+	 * that we can reset the context during error recovery and thereby avoid
+	 * possible memory leaks.  Formerly this code just ran in
+	 * TopMemoryContext, but resetting that would be a really bad idea.
+	 */
+	walprefetcher_context = AllocSetContextCreate(TopMemoryContext,
+											  "Wal Prefetcher",
+											  ALLOCSET_DEFAULT_SIZES);
+	MemoryContextSwitchTo(walprefetcher_context);
+
+	/*
+	 * If an exception is encountered, processing resumes here.
+	 *
+	 * This code is heavily based on bgwriter.c, q.v.
+	 */
+	if (sigsetjmp(local_sigjmp_buf, 1) != 0)
+	{
+		/* Since not using PG_TRY, must reset error stack by hand */
+		error_context_stack = NULL;
+
+		/* Prevent interrupts while cleaning up */
+		HOLD_INTERRUPTS();
+
+		/* Report the error to the server log */
+		EmitErrorReport();
+
+		pgstat_report_wait_end();
+		AtEOXact_Files(false);
+
+		/*
+		 * Now return to normal top-level context and clear ErrorContext for
+		 * next time.
+		 */
+		MemoryContextSwitchTo(walprefetcher_context);
+		FlushErrorState();
+
+		/* Flush any leaked data in the top-level context */
+		MemoryContextResetAndDeleteChildren(walprefetcher_context);
+
+		/* Now we can allow interrupts again */
+		RESUME_INTERRUPTS();
+
+		/*
+		 * Sleep at least 1 second after any error.  A write error is likely
+		 * to be repeated, and we don't want to be filling the error logs as
+		 * fast as we can.
+		 */
+		pg_usleep(1000000L);
+	}
+
+	/* We can now handle ereport(ERROR) */
+	PG_exception_stack = &local_sigjmp_buf;
+
+	/*
+	 * Unblock signals (they were blocked when the postmaster forked us)
+	 */
+	PG_SETMASK(&UnBlockSig);
+
+	/*
+	 * Loop forever
+	 */
+	for (;;)
+	{
+		/* Clear any already-pending wakeups */
+		ResetLatch(MyLatch);
+
+		/*
+		 * Process any requests or signals received recently.
+		 */
+		if (got_SIGHUP)
+		{
+			got_SIGHUP = false;
+			ProcessConfigFile(PGC_SIGHUP);
+		}
+		if (shutdown_requested)
+		{
+			/* Normal exit from the walprefetcher is here */
+			proc_exit(0);		/* done */
+		}
+
+		if (WalPrefetchEnabled)
+			WalPrefetch(InvalidXLogRecPtr);
+
+		/*
+		 * Sleep until we are signaled
+		 */
+		rc = WaitLatch(MyLatch,
+					   WL_LATCH_SET | WL_POSTMASTER_DEATH,
+					   -1,
+					   WAIT_EVENT_WAL_PREFETCHER_MAIN);
+
+		/*
+		 * Emergency bailout if postmaster has died.  This is to avoid the
+		 * necessity for manual cleanup of all postmaster children.
+		 */
+		if (rc & WL_POSTMASTER_DEATH)
+			exit(1);
+	}
+}
+
+
+/* --------------------------------
+ *		signal handler routines
+ * --------------------------------
+ */
+
+/*
+ * WpfQuickDie() occurs when signalled SIGQUIT by the postmaster.
+ *
+ * Some backend has bought the farm,
+ * so we need to stop what we're doing and exit.
+ */
+static void
+WpfQuickDie(SIGNAL_ARGS)
+{
+	PG_SETMASK(&BlockSig);
+
+	/*
+	 * We DO NOT want to run proc_exit() callbacks -- we're here because
+	 * shared memory may be corrupted, so we don't want to try to clean up our
+	 * transaction.  Just nail the windows shut and get out of town.  Now that
+	 * there's an atexit callback to prevent third-party code from breaking
+	 * things by calling exit() directly, we have to reset the callbacks
+	 * explicitly to make this work as intended.
+	 */
+	on_exit_reset();
+
+	/*
+	 * Note we do exit(2) not exit(0).  This is to force the postmaster into a
+	 * system reset cycle if some idiot DBA sends a manual SIGQUIT to a random
+	 * backend.  This is necessary precisely because we don't clean up our
+	 * shared memory state.  (The "dead man switch" mechanism in pmsignal.c
+	 * should ensure the postmaster sees this as a crash, too, but no harm in
+	 * being doubly sure.)
+	 */
+	exit(2);
+}
+
+/* SIGHUP: set flag to re-read config file at next convenient time */
+static void
+WpfSigHupHandler(SIGNAL_ARGS)
+{
+	got_SIGHUP = true;
+	SetLatch(MyLatch);
+}
+
+/* SIGTERM: set flag to exit normally */
+static void
+WpfShutdownHandler(SIGNAL_ARGS)
+{
+	shutdown_requested = true;
+	SetLatch(MyLatch);
+}
+
+/* SIGUSR1: used for latch wakeups */
+static void
+WpfSigusr1Handler(SIGNAL_ARGS)
+{
+	latch_sigusr1_handler();
+}
+
+/*
+ * Now wal prefetch code itself. 
+ */
+static int
+WalReadPage(XLogReaderState *state, XLogRecPtr targetPagePtr,
+			int reqLen, XLogRecPtr targetRecPtr, char *cur_page,
+			TimeLineID *pageTLI);
+
+#define FILE_HASH_SIZE  1009     /* Size of opened files hash */
+#define STAT_REFRESH_PERIOD 1024 /* Refresh backend status rate */
+
+/*
+ * Block LRU hash table is used to keep information about most recently prefetched blocks.
+ */
+typedef struct BlockHashEntry
+{
+	struct BlockHashEntry* next;
+	struct BlockHashEntry* prev;
+	struct BlockHashEntry* collision;
+	BufferTag tag;
+	uint32 hash;
+} BlockHashEntry;
+
+static BlockHashEntry** block_hash_table;
+static size_t block_hash_size;
+static size_t block_hash_used;
+static BlockHashEntry lru = {&lru, &lru};
+static TimeLineID replay_timeline;
+
+/*
+ * Yet another L2-list implementation
+ */
+static void
+unlink_block(BlockHashEntry* entry)
+{
+	entry->next->prev = entry->prev;
+	entry->prev->next = entry->next;
+}
+
+static void
+link_block_after(BlockHashEntry* head, BlockHashEntry* entry)
+{
+	entry->next = head->next;
+	entry->prev = head;
+	head->next->prev = entry;
+	head->next = entry;
+}
+
+/*
+ * Put block in LRU hash or link it to the head of LRU list. Returns true if block was not present in hash, false otherwise.
+ */
+static bool
+put_block_in_cache(BufferTag* tag)
+{
+	uint32 hash;
+	BlockHashEntry* entry;
+
+	hash = BufTableHashCode(tag) % block_hash_size;
+	for (entry = block_hash_table[hash]; entry != NULL; entry = entry->collision)
+	{
+		if (BUFFERTAGS_EQUAL(entry->tag, *tag))
+		{
+			unlink_block(entry);
+			link_block_after(&lru, entry);
+			return false;
+		}
+	}
+	if (block_hash_size == block_hash_used)
+	{
+		BlockHashEntry* victim = lru.prev;
+		BlockHashEntry** epp = &block_hash_table[victim->hash];
+		while (*epp != victim)
+			epp = &(*epp)->collision;
+		*epp = (*epp)->collision;
+		unlink_block(victim);
+		entry = victim;
+	}
+	else
+	{
+		entry = (BlockHashEntry*)palloc(sizeof(BlockHashEntry));
+		block_hash_used += 1;
+	}
+	entry->tag = *tag;
+	entry->hash = hash;
+	entry->collision = block_hash_table[hash];
+	block_hash_table[hash] = entry;
+	link_block_after(&lru, entry);
+
+	return true;
+}
+
+/*
+ * Hash of of opened files. It seems to be simpler to maintain own cache rather than provide SMgrRelation for smgr functions.
+ */
+typedef struct FileHashEntry
+{
+    BufferTag tag;
+	File file;
+} FileHashEntry;
+
+static FileHashEntry file_hash_table[FILE_HASH_SIZE];
+
+static File
+WalOpenFile(BufferTag* tag)
+{
+	BufferTag segment_tag = *tag;
+	uint32 hash;
+	char* path;
+	File file;
+
+	/* Transform block number into segment number */
+	segment_tag.blockNum /= RELSEG_SIZE;
+	hash = BufTableHashCode(&segment_tag) % FILE_HASH_SIZE;
+
+	if (BUFFERTAGS_EQUAL(file_hash_table[hash].tag, segment_tag))
+		return file_hash_table[hash].file;
+
+	path = relpathperm(tag->rnode, tag->forkNum);
+	if (segment_tag.blockNum > 0)
+	{
+		char* fullpath = psprintf("%s.%d", path, segment_tag.blockNum);
+		pfree(path);
+		path = fullpath;
+	}
+	file = PathNameOpenFile(path, O_RDONLY | PG_BINARY);
+
+	if (file >= 0)
+	{
+		elog(LOG_LEVEL, "WAL_PREFETCH: open file %s", path);
+		if (file_hash_table[hash].tag.rnode.dbNode != 0)
+			FileClose(file_hash_table[hash].file);
+
+		file_hash_table[hash].file = file;
+		file_hash_table[hash].tag = segment_tag;
+	}
+	pfree(path);
+	return file;
+}
+
+/*
+ * Our backend doesn't receive any notifications about WAL progress, so we have to use sleep
+ * to wait until requested information is available
+ */
+static void
+WalWaitWAL(void)
+{
+	int rc;
+	CHECK_FOR_INTERRUPTS();
+	rc = WaitLatch(MyLatch,
+				   WL_LATCH_SET | WL_TIMEOUT | WL_POSTMASTER_DEATH,
+				   WalPrefetchPollInterval,
+				   WAIT_EVENT_WAL_PREFETCHER_MAIN);
+	/*
+	 * Emergency bailout if postmaster has died.  This is to avoid the
+	 * necessity for manual cleanup of all postmaster children.
+	 */
+	if (rc & WL_POSTMASTER_DEATH)
+		exit(1);
+
+}
+
+/*
+ * Main function: perform prefetch of blocks referenced by WAL records starting from given LSN or from WAL replay position if lsn=0
+ */
+void
+WalPrefetch(XLogRecPtr lsn)
+{
+	XLogReaderState *xlogreader;
+	long n_prefetched = 0;
+	long n_fpw = 0;
+	long n_cached= 0;
+	long n_initialized = 0;
+
+	/* Dirty hack: prevent recovery conflict */
+	MyPgXact->xmin = InvalidTransactionId;
+
+	memset(file_hash_table, 0, sizeof file_hash_table);
+
+	free(block_hash_table);
+	block_hash_size = effective_cache_size;
+	block_hash_table = (BlockHashEntry**)calloc(block_hash_size, sizeof(BlockHashEntry*));
+	block_hash_used = 0;
+
+	xlogreader = XLogReaderAllocate(wal_segment_size, &WalReadPage, NULL);
+
+	if (!xlogreader)
+		ereport(ERROR,
+				(errcode(ERRCODE_OUT_OF_MEMORY),
+				 errmsg("out of memory"),
+				 errdetail("Failed while allocating a WAL reading processor.")));
+
+	if (lsn == InvalidXLogRecPtr)
+		lsn = GetXLogReplayRecPtr(NULL); /* Start with replay LSN */
+
+	while (!shutdown_requested)
+	{
+		char *errormsg;
+		int	block_id;
+		XLogRecPtr replay_lsn = GetXLogReplayRecPtr(&replay_timeline);
+		XLogRecord *record;
+
+		/*
+		 * If current position is behind current replay LSN, then move it forward: we do not want to perform useless job and prefetch
+		 * blocks for already processed WAL records
+		 */
+		if (lsn != InvalidXLogRecPtr || replay_lsn + WalPrefetchMinLead*KB >= xlogreader->EndRecPtr)
+		{
+			XLogRecPtr prefetch_lsn = replay_lsn != InvalidXLogRecPtr
+				? XLogFindNextRecord(xlogreader, Max(lsn, replay_lsn) + WalPrefetchMinLead*KB) : InvalidXLogRecPtr;
+			if (prefetch_lsn == InvalidXLogRecPtr)
+			{
+				elog(LOG_LEVEL, "WAL_PREFETCH: wait for new WAL records at LSN %llx: replay lsn %llx, prefetched %ld, cached %ld, fpw %ld, initialized %ld",
+					 (long long)xlogreader->EndRecPtr, (long long)replay_lsn, n_prefetched, n_cached, n_fpw, n_initialized);
+				WalWaitWAL();
+				continue;
+			}
+			lsn = prefetch_lsn;
+		}
+		/*
+		 * Now opposite check: if prefetch goes too far from replay position, then suspend it for a while
+		 */
+		if (WalPrefetchMaxLead != 0 && replay_lsn + WalPrefetchMaxLead*KB < xlogreader->EndRecPtr)
+		{
+			elog(LOG_LEVEL, "WAL_PREFETCH: wait for recovery at LSN %llx, replay LSN %llx",
+				 (long long)xlogreader->EndRecPtr, (long long)replay_lsn);
+			WalWaitWAL();
+			continue;
+		}
+
+		record = XLogReadRecord(xlogreader, lsn, &errormsg);
+
+		if (record != NULL)
+		{
+			lsn = InvalidXLogRecPtr; /* continue with next record */
+
+			/* Loop through blocks referenced by this WAL record */
+			for (block_id = 0; block_id <= xlogreader->max_block_id; block_id++)
+			{
+				BufferTag tag;
+				File      file;
+
+				if (!XLogRecGetBlockTag(xlogreader, block_id, &tag.rnode, &tag.forkNum, &tag.blockNum))
+					continue;
+
+				/* Check if block already prefetched */
+				if (!put_block_in_cache(&tag))
+					continue;
+
+				/* Check if block is cached in shared buffers */
+				if (IsBlockCached(&tag))
+				{
+					n_cached += 1;
+					continue;
+				}
+
+				/* Do not prefetch full pages */
+				if (XLogRecHasBlockImage(xlogreader, block_id))
+				{
+					n_fpw += 1;
+					continue;
+				}
+
+				/* Ignore initialized pages */
+				if (XLogRecGetRmid(xlogreader) == RM_HEAP_ID
+					&& (XLogRecGetInfo(xlogreader) & XLOG_HEAP_INIT_PAGE))
+				{
+					n_initialized += 1;
+					continue;
+				}
+
+				file = WalOpenFile(&tag);
+				if (file >= 0)
+				{
+					off_t offs = (off_t) BLCKSZ * (tag.blockNum % ((BlockNumber) RELSEG_SIZE));
+					int rc;
+#if DEBUG_PREFETCH
+					instr_time start, stop;
+					INSTR_TIME_SET_CURRENT(start);
+#endif
+					rc = FilePrefetch(file, offs, BLCKSZ, WAIT_EVENT_DATA_FILE_PREFETCH);
+					if (rc != 0)
+						elog(ERROR, "WAL_PREFETCH: failed to prefetch file: %m");
+					else if (++n_prefetched % STAT_REFRESH_PERIOD == 0)
+					{
+						char buf[1024];
+						sprintf(buf, "Prefetch %ld blocks at LSN %llx, replay LSN %llx",
+								n_prefetched, (long long)xlogreader->ReadRecPtr, (long long)replay_lsn);
+						pgstat_report_activity(STATE_RUNNING, buf);
+						elog(DEBUG1, "%s", buf);
+					}
+#if DEBUG_PREFETCH
+					INSTR_TIME_SET_CURRENT(stop);
+					INSTR_TIME_SUBTRACT(stop,start);
+					elog(LOG, "WAL_PREFETCH: %x/%x prefetch block %d fork %d of relation %d at LSN %llx, replay LSN %llx (%u usec), %ld prefetched, %ld cached, %ld fpw, %ld initialized",
+						 XLogRecGetRmid(xlogreader), XLogRecGetInfo(xlogreader),
+						 tag.blockNum, tag.forkNum, tag.rnode.relNode, (long long)xlogreader->ReadRecPtr, (long long)replay_lsn,
+						 (int)INSTR_TIME_GET_MICROSEC(stop), n_prefetched, n_cached, n_fpw, n_initialized);
+#endif
+				}
+				else
+					elog(LOG, "WAL_PREFETCH: file segment doesn't exists");
+			}
+		}
+		else
+		{
+			elog(LOG, "WAL_PREFETCH: wait for valid record at LSN %llx, replay_lsn %llx: %s",
+				 (long long)xlogreader->EndRecPtr, (long long)replay_lsn, errormsg);
+			WalWaitWAL();
+		}
+	}
+}
+
+/*
+ * Almost copy of read_local_xlog_page from xlogutils.c, but it reads until flush position of WAL receiver, rather then replay position.
+ */
+static int
+WalReadPage(XLogReaderState *state, XLogRecPtr targetPagePtr,
+			int reqLen, XLogRecPtr targetRecPtr, char *cur_page,
+			TimeLineID *pageTLI)
+{
+	XLogRecPtr	read_upto,
+				loc;
+	int			count;
+
+	loc = targetPagePtr + reqLen;
+
+	/* Loop waiting for xlog to be available if necessary */
+	while (1)
+	{
+		/*
+		 * If we perform recovery at startup then read until end of WAL,
+		 * otherwise if there is active WAL receiver at replica, read until the end of received data,
+		 * if there is no active wal recevier, then just sleep.
+		 */
+		read_upto =	WalRcv->walRcvState == WALRCV_STOPPED
+			? RecoveryInProgress() ? (XLogRecPtr)-1 : InvalidXLogRecPtr
+			: WalRcv->receivedUpto;
+		*pageTLI = replay_timeline;
+
+		if (loc <= read_upto)
+			break;
+
+		elog(LOG_LEVEL, "WAL_PREFETCH: wait for new WAL records at LSN %llx, read up to lsn %llx",
+			 (long long)loc, (long long)read_upto);
+		WalWaitWAL();
+		CHECK_FOR_INTERRUPTS();
+		if (shutdown_requested)
+			return -1;
+	}
+
+	if (targetPagePtr + XLOG_BLCKSZ <= read_upto)
+	{
+		/*
+		 * more than one block available; read only that block, have caller
+		 * come back if they need more.
+		 */
+		count = XLOG_BLCKSZ;
+	}
+	else if (targetPagePtr + reqLen > read_upto)
+	{
+		/* not enough data there */
+		return -1;
+	}
+	else
+	{
+		/* enough bytes available to satisfy the request */
+		count = read_upto - targetPagePtr;
+	}
+
+	/*
+	 * Even though we just determined how much of the page can be validly read
+	 * as 'count', read the whole page anyway. It's guaranteed to be
+	 * zero-padded up to the page boundary if it's incomplete.
+	 */
+	XLogRead(cur_page, state->wal_segment_size, *pageTLI, targetPagePtr, XLOG_BLCKSZ);
+
+
+	/* number of valid bytes in the buffer */
+	return count;
+}
diff --git a/src/backend/replication/walsender.c b/src/backend/replication/walsender.c
index e47ddca..6319ed5 100644
--- a/src/backend/replication/walsender.c
+++ b/src/backend/replication/walsender.c
@@ -252,7 +252,7 @@ static void LagTrackerWrite(XLogRecPtr lsn, TimestampTz local_flush_time);
 static TimeOffset LagTrackerRead(int head, XLogRecPtr lsn, TimestampTz now);
 static bool TransactionIdInRecentPast(TransactionId xid, uint32 epoch);
 
-static void XLogRead(char *buf, XLogRecPtr startptr, Size count);
+static void WalSndRead(char *buf, XLogRecPtr startptr, Size count);
 
 
 /* Initialize walsender process before entering the main command loop */
@@ -771,7 +771,7 @@ logical_read_xlog_page(XLogReaderState *state, XLogRecPtr targetPagePtr, int req
 		count = flushptr - targetPagePtr;	/* part of the page available */
 
 	/* now actually read the data, we know it's there */
-	XLogRead(cur_page, targetPagePtr, XLOG_BLCKSZ);
+	WalSndRead(cur_page, targetPagePtr, XLOG_BLCKSZ);
 
 	return count;
 }
@@ -2314,7 +2314,7 @@ WalSndKill(int code, Datum arg)
  * more than one.
  */
 static void
-XLogRead(char *buf, XLogRecPtr startptr, Size count)
+WalSndRead(char *buf, XLogRecPtr startptr, Size count)
 {
 	char	   *p;
 	XLogRecPtr	recptr;
@@ -2710,7 +2710,7 @@ XLogSendPhysical(void)
 	 * calls.
 	 */
 	enlargeStringInfo(&output_message, nbytes);
-	XLogRead(&output_message.data[output_message.len], startptr, nbytes);
+	WalSndRead(&output_message.data[output_message.len], startptr, nbytes);
 	output_message.len += nbytes;
 	output_message.data[output_message.len] = '\0';
 
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c
index 01eabe5..82849dd 100644
--- a/src/backend/storage/buffer/bufmgr.c
+++ b/src/backend/storage/buffer/bufmgr.c
@@ -585,6 +585,19 @@ PrefetchBuffer(Relation reln, ForkNumber forkNum, BlockNumber blockNum)
 #endif							/* USE_PREFETCH */
 }
 
+bool
+IsBlockCached(BufferTag* tag)
+{
+	uint32	hash = BufTableHashCode(tag);
+	LWLock *plock = BufMappingPartitionLock(hash);
+	int		bufid;
+
+	LWLockAcquire(plock, LW_SHARED);
+	bufid = BufTableLookup(tag, hash);
+	LWLockRelease(plock);
+
+	return bufid >= 0;
+}
 
 /*
  * ReadBuffer -- a shorthand for ReadBufferExtended, for reading from main
diff --git a/src/backend/storage/smgr/md.c b/src/backend/storage/smgr/md.c
index 2ec103e..4d337b9 100644
--- a/src/backend/storage/smgr/md.c
+++ b/src/backend/storage/smgr/md.c
@@ -43,6 +43,8 @@
 #define FSYNCS_PER_ABSORB		10
 #define UNLINKS_PER_ABSORB		10
 
+/* #define DEBUG_PREFETCH 1 */
+
 /*
  * Special values for the segno arg to RememberFsyncRequest.
  *
@@ -733,7 +735,10 @@ mdread(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum,
 	off_t		seekpos;
 	int			nbytes;
 	MdfdVec    *v;
-
+#if DEBUG_PREFETCH	
+	instr_time start, stop;
+	INSTR_TIME_SET_CURRENT(start);
+#endif
 	TRACE_POSTGRESQL_SMGR_MD_READ_START(forknum, blocknum,
 										reln->smgr_rnode.node.spcNode,
 										reln->smgr_rnode.node.dbNode,
@@ -788,6 +793,11 @@ mdread(SMgrRelation reln, ForkNumber forknum, BlockNumber blocknum,
 							blocknum, FilePathName(v->mdfd_vfd),
 							nbytes, BLCKSZ)));
 	}
+#if DEBUG_PREFETCH	
+	INSTR_TIME_SET_CURRENT(stop);
+	INSTR_TIME_SUBTRACT(stop,start);
+	elog(LOG, "Read block %d fork %d of relation %d (%d usec)", blocknum, forknum, reln->smgr_rnode.node.relNode, (int)INSTR_TIME_GET_MICROSEC(stop));
+#endif
 }
 
 /*
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index fa3c8a7..2e627b2 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -61,6 +61,7 @@
 #include "postmaster/bgwriter.h"
 #include "postmaster/postmaster.h"
 #include "postmaster/syslogger.h"
+#include "postmaster/walprefetcher.h"
 #include "postmaster/walwriter.h"
 #include "replication/logicallauncher.h"
 #include "replication/slot.h"
@@ -1823,6 +1824,17 @@ static struct config_bool ConfigureNamesBool[] =
 		NULL, NULL, NULL
 	},
 
+	{
+		{"wal_prefetch_enabled", PGC_USERSET, DEVELOPER_OPTIONS,
+			gettext_noop("Allow prefetch of blocks referenced by WAL records."),
+			NULL,
+			GUC_NOT_IN_SAMPLE
+		},
+		&WalPrefetchEnabled,
+		false,
+		NULL, NULL, NULL
+	},
+
 	/* End-of-list marker */
 	{
 		{NULL, 0, 0, NULL, NULL}, NULL, false, NULL, NULL, NULL
@@ -2487,6 +2499,39 @@ static struct config_int ConfigureNamesInt[] =
 	},
 
 	{
+		{"wal_prefetch_min_lead", PGC_SIGHUP, WAL_SETTINGS,
+		 gettext_noop("Minimal lead (kb) before WAL replay LSN and prefetched LSN."),
+		 NULL,
+		 GUC_UNIT_KB
+		},
+		&WalPrefetchMinLead,
+		0, 0, INT_MAX,
+		NULL, NULL, NULL
+	},
+
+	{
+		{"wal_prefetch_max_lead", PGC_SIGHUP, WAL_SETTINGS,
+		 gettext_noop("Maximal lead (kb) before WAL replay LSN and prefetched LSN."),
+		 NULL,
+		 GUC_UNIT_KB
+		},
+		&WalPrefetchMaxLead,
+		0, 0, INT_MAX,
+		NULL, NULL, NULL
+	},
+
+	{
+		{"wal_prefetch_poll_interval", PGC_SIGHUP, WAL_SETTINGS,
+			gettext_noop("Interval of polling WAL by WAL prefetcher."),
+			NULL,
+			GUC_UNIT_MS
+		},
+		&WalPrefetchPollInterval,
+		100, 1, 10000,
+		NULL, NULL, NULL
+	},
+
+	{
 		{"wal_writer_delay", PGC_SIGHUP, WAL_SETTINGS,
 			gettext_noop("Time between WAL flushes performed in the WAL writer."),
 			NULL,
diff --git a/src/include/access/xlogreader.h b/src/include/access/xlogreader.h
index f307b63..70eac88 100644
--- a/src/include/access/xlogreader.h
+++ b/src/include/access/xlogreader.h
@@ -212,9 +212,7 @@ extern bool XLogReaderValidatePageHeader(XLogReaderState *state,
 /* Invalidate read state */
 extern void XLogReaderInvalReadState(XLogReaderState *state);
 
-#ifdef FRONTEND
 extern XLogRecPtr XLogFindNextRecord(XLogReaderState *state, XLogRecPtr RecPtr);
-#endif							/* FRONTEND */
 
 /* Functions for decoding an XLogRecord */
 
diff --git a/src/include/access/xlogutils.h b/src/include/access/xlogutils.h
index c406699..c2b8a6f 100644
--- a/src/include/access/xlogutils.h
+++ b/src/include/access/xlogutils.h
@@ -55,4 +55,7 @@ extern int read_local_xlog_page(XLogReaderState *state,
 extern void XLogReadDetermineTimeline(XLogReaderState *state,
 						  XLogRecPtr wantPage, uint32 wantLength);
 
+extern void XLogRead(char *buf, int segsize, TimeLineID tli, XLogRecPtr startptr,
+					 Size count);
+
 #endif
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h
index e167ee8..5f8b67d 100644
--- a/src/include/miscadmin.h
+++ b/src/include/miscadmin.h
@@ -400,6 +400,7 @@ typedef enum
 	CheckpointerProcess,
 	WalWriterProcess,
 	WalReceiverProcess,
+	WalPrefetcherProcess,
 
 	NUM_AUXPROCTYPES			/* Must be last! */
 } AuxProcType;
@@ -412,6 +413,7 @@ extern AuxProcType MyAuxProcType;
 #define AmCheckpointerProcess()		(MyAuxProcType == CheckpointerProcess)
 #define AmWalWriterProcess()		(MyAuxProcType == WalWriterProcess)
 #define AmWalReceiverProcess()		(MyAuxProcType == WalReceiverProcess)
+#define AmWalPrefetcherProcess()	(MyAuxProcType == WalPrefetcherProcess)
 
 
 /*****************************************************************************
diff --git a/src/include/pgstat.h b/src/include/pgstat.h
index be2f592..20ab699 100644
--- a/src/include/pgstat.h
+++ b/src/include/pgstat.h
@@ -710,7 +710,8 @@ typedef enum BackendType
 	B_STARTUP,
 	B_WAL_RECEIVER,
 	B_WAL_SENDER,
-	B_WAL_WRITER
+	B_WAL_WRITER,
+	B_WAL_PREFETCHER
 } BackendType;
 
 
@@ -767,7 +768,8 @@ typedef enum
 	WAIT_EVENT_SYSLOGGER_MAIN,
 	WAIT_EVENT_WAL_RECEIVER_MAIN,
 	WAIT_EVENT_WAL_SENDER_MAIN,
-	WAIT_EVENT_WAL_WRITER_MAIN
+	WAIT_EVENT_WAL_WRITER_MAIN,
+	WAIT_EVENT_WAL_PREFETCHER_MAIN
 } WaitEventActivity;
 
 /* ----------
diff --git a/src/include/postmaster/walprefetcher.h b/src/include/postmaster/walprefetcher.h
new file mode 100644
index 0000000..de156a9
--- /dev/null
+++ b/src/include/postmaster/walprefetcher.h
@@ -0,0 +1,24 @@
+/*-------------------------------------------------------------------------
+ *
+ * walprefetcher.h
+ *	  Exports from postmaster/walprefetcher.c.
+ *
+ * Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
+ *
+ * src/include/postmaster/walprefetcher.h
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef _WALPREFETCHER_H
+#define _WALPREFETCHER_H
+
+/* GUC options */
+extern int			WalPrefetchMinLead;
+extern int			WalPrefetchMaxLead;
+extern int			WalPrefetchPollInterval;
+extern bool 		WalPrefetchEnabled;
+
+extern void WalPrefetcherMain(void) pg_attribute_noreturn();
+extern void WalPrefetch(XLogRecPtr lsn);
+
+#endif							/* _WALPREFETCHER_H */
diff --git a/src/include/storage/buf_internals.h b/src/include/storage/buf_internals.h
index 5370035..aa1ca73 100644
--- a/src/include/storage/buf_internals.h
+++ b/src/include/storage/buf_internals.h
@@ -337,5 +337,6 @@ extern void DropRelFileNodeLocalBuffers(RelFileNode rnode, ForkNumber forkNum,
 							BlockNumber firstDelBlock);
 extern void DropRelFileNodeAllLocalBuffers(RelFileNode rnode);
 extern void AtEOXact_LocalBuffers(bool isCommit);
+extern bool IsBlockCached(BufferTag* tag);
 
 #endif							/* BUFMGR_INTERNALS_H */
#53Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Konstantin Knizhnik (#52)
Re: WAL prefetch

On 06/27/2018 11:44 AM, Konstantin Knizhnik wrote:

...

I have improved my WAL prefetch patch. The main reason of slowdown
recovery speed with enabled prefetch was that it doesn't take in account
initialized pages  (XLOG_HEAP_INIT_PAGE)
and doesn't remember (cache) full page writes.
The main differences of new version of the patch:

1. Use effective_cache_size as size of cache of prefetched blocks
2. Do not prefetch blocks sent in shared buffers
3. Do not prefetch blocks  for RM_HEAP_ID with XLOG_HEAP_INIT_PAGE bit set
4. Remember new/fpw pages in prefetch cache, to avoid prefetch them for
subsequent  WAL records.
5. Add min/max prefetch lead parameters to make it possible to
synchronize speed of prefetch with speed of replay.
6. Increase size of open file cache to avoid redundant open/close
operations.

Thanks. I plan to look at it and do some testing, but I won't have time
until the end of next week (probably).

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#54Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Tomas Vondra (#53)
8 attachment(s)
Re: WAL prefetch

Hi,

I've done a bit of testing on the current patch, mostly to see how much
the prefetching can help (if at all). While the patch is still in early
WIP stages (at least that's my assessment, YMMV), the improvement are
already quite significant.

I've also planned to compare it to the pg_prefaulter [1] which kinda
started this all, but I've been unable to get it working with my very
limited knowledge of golang. I've fixed the simple stuff (references to
renamed PostgreSQL functions etc.) but then it does not do anything :-(
I wonder if it's working on FreeBSD only, or something like that ...

So this compares only master with and without WAL prefetching.

Instead of killing the server and measuring local recovery (which is
what Konstantin did before), I've decided to use replication. That is,
setup a replica, run pgbench on the master and see how much apply lag we
end up with over time. I find this much easier to reproduce, monitor
over time, do longer runs, ...

master
------
* 32 cores (2x E5-2620v4)
* 32GB of RAM
* Intel Optane SSD 280GB
* shared_buffers=4GB
* max_wal_size=128GB
* checkpoint_timeout=30min

replica
-------
* 4 cores (i5-2500k)
* 8GB RAM
* 6x Intel S3700 SSD (RAID0)
* shared_buffers=512MB
* effective_cache_size=256MB

I've also decided to use pgbench scale 1000 (~16GB) which fits into RAM
on the master but not the replica. This may seem like a bit strange
choice, but I think it's not entirely crazy, for a couple of reasons:

* It's not entirely uncommon to have replicas with different hardware
condiguration. For HA it's a bad idea, but there are valid use cases.

* Even with the same hardware config, you may have very different
workload on the replica, accessing very different subset of the data.
Consider master doing OLTP on small active set, while replica runs BI
queries on almost all data, pushing everything else from RAM.

* It amplifies the effect of prefetching, which is nice for testing.

* I don't have two machines with exactly the same config anyway ;-)

The pgbench test is then executed on master like this:

pgbench -c 32 -j 8 -T 3600 -l --aggregate-interval=1 test

The replica is unlikely to keep up with the master, so the question is
how much apply lag we end up with at the end.

Without prefetching, it's ~70GB of WAL. With prefetching, it's only
about 30GB. Considering the 1-hour test generates about 90GB of WAL,
this means the replay speed grew from 20GB/h to almost 60GB/h. That's
rather measurable improvement ;-)

The attached replication-lag.png chart, showing how the lag grows over
time. The "bumps" after ~30 minutes coincide with a checkpoint,
triggering FPIs for a short while. The record-size.png and fpi-size.png
come from pg_waldump and show what part of WAL consists of regular
records and FPIs.

Note: I've done two runs with each configuration, so there are four data
series on all charts.

With prefetching the lag drops down a bit after a while (by about the
same amount of WAL), while without prefetch it does not. My explanation
is that the replay is so slow it does not get to the FPIs until after
the test - so it happens, but we don't see it here.

Now, how does this look on system metrics? Without prefetching we see
low CPU usage, because the process is waiting for I/O. And the I/O is
under-utilized, because we only issue one request at a time (which means
short I/O queues, low utilization of individual devices in the RAID).

In this case I see that without prefetching, the replay process uses
about 20% of a CPU. With prefetching increases this to ~60%, which is nice.

At the storage level, the utilization for each device in the RAID0 array
is ~20%, and with prefetching enabled this jumps up to ~40%. If you look
at IOPS instead, that jumps from ~2000 to ~6500, so about 3x. How is
this possible when the utilization grew only ~2x? We're generating
longer I/O queues (20 requests instead of 3), and the devices can
optimize it quite a bit.

I think there's a room for additional improvement. We probably can't get
the CPU usage to 100%, but 60% is still quite low. The storage can
certainly handle more requests, the devices are doing something only
about 40% of the time.

But overall it looks quite nice, and I think it's worth to keep working
on it.

BTW to make this work, I had to tweak NUM_AUXILIARY_PROCS (increase it
from 4 to 5), otherwise InitAuxiliaryProcess() fails because there's not
room for additional process. I assume it works with local recovery, but
once you need to start walreceiver it fails.

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

Attachments:

wal-record-size.pngimage/png; name=wal-record-size.pngDownload
�PNG


IHDR��!J�z	pHYs.#.#x�?vtIME�I	� IDATx���w|������������M��{C���T� �v� �\���&���(5���i���n������l�$ *zQ��|���������y����sB!�B��M�" �B!�wB!�B��B!�P�N!�B���B!�B�;!�B!�B!�B(p'�B!�P�N!�B��B!�
�	!�B���B!�B�;!�B!�wB!�B(p'�B!�P�N!�B���B!�
�	!�B!�B��8�T�B�����cw�qc�W�$//�h4������� sss������,���{8���Q{����}��������H,���8p�������ky�&M������x�M�6e��������.��Q�F��
6��*��]�!�wB��N�������2))�b��Z�*((�K�.;v:t������;����s�N�:yc�{�������i��E�M�6]�����v{�z�n�B����SRR������N�;p�@dd��A�,�pB�4T������h���;�|��ieee&L����X�+,,����W����_}�c�s.I���V��7�HHH`6�������1`���o��*�{~~~�~�������:u����g�}v��	UUv�����>���;����������B�/EwB�e!��%K�n�����t��q�F�|����Z�j����	\.�o������'�i�����m[�:th���:t����~�?��(&L����D�v�����w�����v�ZEQ���}�a��u���p8V�Z�j�*��QTT�d��O/�x�����{�����	��k��U+q�W�ao�X�����SOyr�KJJf����ezz��������A����������_<q�����.����~����g��u�]�`������JNN�9s��Qs������������,Y"z��?~���V�U�d���g������q�FQ���]�j����|����;�n�������*�b��7�t���gO�:Ug�������
�kEm�6����eKAA���3����kE��qc��-x���[��YV�������{����������5��|��5�����W�^���|�T���|��:���������[�n-��BH��$!�/���a������%K,Kpp0������X�7-..���W"�,V���/�{>|8������h����g����w��}�������q���=��������=�g�y����c��t:9��zpppnn��={�����_�^,���
��G��^��~��wn��V�/���H��n9c�T��Y�t�X��cG�������;��x��������V�
�z}XX����O?�@DD�N�p�w��[�l	`��}��E�x���������(--[�2���X"BU��$I���)))�s��3d�oI��<��3��.[�L4Z�t��w(\{�[qqq��`��M���K�����������^y�QQQbcq��e��v���b��6�������jo�X8�K�.�����93,,�[>u�F���������s�N���}��n�Z|"������!��y*B���8������������?_\\l6�,X�}��n�;++���_��n���l6gff�����s��/_.����O������GFFx���8��G� I���+�9���/^�v�����
6��|-�{AAALLLhh���;�f��^x�O?�4�<///:::::://�f������?z��8���P���9����V�XQPPp�������|�g�y��9s|��'�|��;��a��rI���S;p����|�{q�n��j�l�w��WY+IRxx����sss�����W���m��I������h<�`�������N�>����bKQ��7K�f���G######�;VTT�9Obcc����f���gEX�c��Z��u����Q����+''���������];���v�k��+V�t����������;����;822���Cf�Y\�'�x�[V�����������/���{T�����h6�������[V�3�����cW��]�v��������i��+V��f��5m����d���b���rrrz��`���t_"�P�N��J��o/�LOO�j�
6�M<�l�R��fdd�u�^����M�����n�:��HIN�6����/���m[o�>d����{�0q�D��"k���{^^^TTT||��������������T������"H���Ov���s���O���K�"##srrj�ott����
G�}��9���b��b��k�=���5�������{3�u���|wRg���lX�b��;�?���cbb��Q;p����wW�&M�^�+�yyy�KX<K�<y�wcq�Z��.����_^^.�N�������}��-,,��F��*��x<������+�$..N��9��=��I�&�?EOo�e�[?E���?�����-:t��w�x1j�(oYyK���RUU�yrr���k�Vk��
u:��'�Z����z��1���B�J�I<�PQQ�v�eYNMM��h4���v�E��]w��}������/����*�x�v��=44���������~�I���n|�]w���W'��deeu���m��#G�9r���?�9��<����}���������?�@RR�_|!���d�X|�v{������z��5l�0;;;+++66v��%�����<yr�n���dY�����V��O?���/�Dlmk���j�:t�z�0���@���}3�Wy�o�'%%8q��/�<�W��}zSTTd2�JKKKJJD��{��w����W���Y�f��l������`q�����]���?�v�#""�s
��,��xG�FFFz;��'ND�0k�o�l�������z}bbbbb��M�x���@��3	�����6���&�I<Z�GDDdff�l6��{v�1q�
}MB���RS�~�|����z��'������P�V+�%9]�V����N����wd������k��Dv��{���v���}�����?��3����6mZ���l�&M�2d��A���\�R�7�g��h~���:��Y�f�6mJOO�h4g��m����yP��3Z�h!��h���k��1������GjOc�Z/^�):�\�k,�������Vqq���}_�X@@@PP�w�Lq�+**j�\�#��#2�1q��E��jhh��b	HLL��t�w"�5����q���to!�P�N�����WZ�l�m�6���������!k3��������fLk��~Ur1""b��e������_�f�[o�5}��3g��5�{��������a/���5k���CkLh#���n����,�������/))�s��F.�k�����N��f����fsAAA\\�9��^�:�i� ����Mt����� ]��\���x�:#���V�2d��b������K��5k��x8�p8�<����|P����{�!�����$�\QXXX@@@II�V���RPP "N�%���_�n?�����k��]�p���{��<y����A����"��e��8�Z���t8p�b�����o�~���b��w����S��[�.$$����o�Ub.�w�}7<<\�fdddnn�F��}�?sW�����}����7>������g���}Q[FFFYY�����?�	����'yyyg���C{�/��l��922R���5H�eo�/.n��F:�N������%eeeO?����>k�Xt:c�l6[�V�KD���k��;?�8*??���s��cRL�0���F����V��l6�~�1B�������������,1x����[�ly�-�����={�:uJ�R��k���?�b�
���S�O�^^^.b���9��N�
`��)"&+//�2e����c�:v�(&ZK,X����D`���_N�2%!!!77�vo����S�Ny������m������}���\��h��\�r��A��k[�~�wF�U�Vu��U������xDp��W���v�	R<���������yyy����j�����C=��j���������}/�h������U����������x�;����Gm��%((�Q�F������3g�����=z4..�������>5������Q
4�i��^z�%�>|���'Q�p�*������������G�z����3333ccc��B�vh|.!�k��%�|~�m���sg��-��5J�������3~<���k���>K�,�1���H��w�}W?������5�3����EDDDDDX,�A��7n���F�>��*��<���3�x����Ht�HOO���8�v���>�XTTTII��f��h4?3M��wuq5�G�-
1�8q�k_w���I�})�Vl��G�\������������a6���.\���j0�������5��ok�o�^�6z��8�v��ywU�����x�������9���ok\�'�xB�G���f���|K���$%%�J�Q�T��EDDl���s.f��=��K!���B�5j�h�����o���S�Nm��a����&22��G��������;wn��yf���t���"[)��k����s��e�l6[����"&���{w����Q#��Y�f�����<j��;��S��U}�������/***<��(f/1�"^�j���z�F���9;!!A�����6l��;�g��/�������i�w�}g�X���D�{����c��)**���	��;h� oQ0�L��w�H*��n?s����#��/]E�||�F�F��=*oi�FojY\������={���o���u5j�'�|r�����e�-Z���%IRjj���gE���A�x/4.�aU#�=w����������W!%%�[0�g������������u��	YYY/���������������1�i��X�bE|||��]}���T���[Q�k�Fc��>|��c���k�������&M�x���Ba�~N�r���]�1v7�p��n��q��
���{�������:u�K�.�����
��U��=}
�%�P�N!����2q��`4h��l���%I��t������t��E��=�����7�����/��6�$!�P�N!uXWI�FDD������$�
6<�~��YYYt�~���C��[7d���k����wB��r=���]����*��������nwrrr�A��UU�?��xZ�n��go������s��ti!�B!�B�'���B!�
�	!�B!�B!�B�;!�B!�wB!�B��B!�P�N!�B���B!�B�;!�B!�B!�B(p'�B!�oI�g<���\I�dY�]n�Zm6���(���s���������J�-))q�\����0�V�]�v����c:�.$$�*
!�B����2�.�k����7�������G��v7n�8)))))�q��%%%�U#F�h��i��M���g��]��7o���E��n��y��]�t����������x�-Zl���*
!�B���g������o����y�z�����_N�6M����Sii����:a�������������#SSS����;�;v���'k�VU����{<�E�=��siii��O�1b��;�{��E�y<��B!��G�*��{����Vk��
����n��#G����b��o�
���#111-Z�����{���?k�v������{���A���`����/_�l'�B!���'���������_TTTIIIaa������,V�n����RU��r
:T,���;�������ccc���D�.���-Z�h�3f�>)))66������!�B����w��`��]JKK��9�c���}�����������f��y�0|�pUUk�V����*�3����� �T���F,$�B!���q�g�������o�1c�4k�����.!!�B�;�3M����<t���	l6��9s�N����������"��z�j�$:::,,,##���5k��=����$I�$���7�.��9cLl�].���8�N�%V�5  @��!�B!s			����l.,,\�b��������-[���8r�����=@��i�Z���v���S���s'���H����\??�����'�}��'O����`��7��?`��1���[�~=��'O�����7���bcckdVVV||<�QB!����y�v�'��;��O���{?����V�*..~��74j�(::z��	b�	&4n��U�Vn���+V��1#,,l���~~~/����,>>��'��={�w���;��;w��#G6l� ����{�
6L�2�u��O<�DXX���~����B!���������ztx<�������.�K��.^�XL����4))I�Z	��o_hh�X5|�����

��?�9v�X�\������]�}����\Y��v�*R��s����_��G�*�3w������������B!���v#C�g�����+I�,�������V�������
1��������~DW�gII��������i�Z�fn�����1���BBB���C!�B(p����C!�B(2$*MB!�Bn|�B!�B�;!�B!�wB!�B(p'�B!�P�N!�B���B!�
�	!�B!�B!�B(p'�B!�wB!�B��B!�P�N!�B���B!�B�;!�B!�B!�B��4T�/f������^p����h�!�B���X�fn����b[�V��/:~�������%R��5xT��Y
��M�T�B(p'�O�D������X�qp�� 1��,�v�=��k��_�{[;[pDQ=#����1T �B�n��;�s+��[v���6���������u�1��T|�g�fPA��T��C�8��^}�E{^�����QdsY��SR�OeG!�wB�4V���/o���$&`���-�1t��>X�
������a�*�K���,����A����V��{v���5�N�YR�����6W�|��.m����
#3����������J��d9�^�tw����?���@�����Xe����J���c�}.���P�zK��0�� c��>D�ju�*1��Fa>�& 8D����ol�V�"�����1A�����f���9�?�������(��o�3�G�.��[�.�]�1��Y\��u��i�r�N���]��W��C�&0�3��h�����.n}��GE3L�*c��10�.���B�KwO�`0���;��u��.����>����
����j������M����m��9��w���u�*���"�	X�@�p4���+��\��MK��+���M!bNUE�;Q�����$��
��"C
�)p�m���8��[�	����(�g���rg������
�/2��w���UJ��i��U�������m_�|�*����Jpy�Hb��Z���c���s�B�q���EU�L����V������8������}�_�s��z>eN���?]�s�g~�`��||X�{}�?:',������C%g��&����Y*`��$��a�Q{�7�=��
{#~��V[2>Y����*������B��rG�h�u�Gg�����C�x([���`u����cWt+s{+se���
C���<�YT'������9�<�\�z
^�*iu�"[��d����}_�m!3���mA�cUw��x����O��i8��"�$p���V?�����-���_*'B�;���� .�a�;���pW���+.�12F0&����c�}e���!�����
�z$��@�����f���gS]�S+�$mU���OG0H5+ sy*�2�q���s�'��>��N��*��|��LW�F-�sCx�z��O�u��H������8�V��������A��J(@�\���*W2���?�z���A�p���U�.`��
�l9e� {<�����xQ��])����/1�F����|��.oT/r���X�v�\�[����0�T�=� IDAT;b&"����R��qk���7��p�?�yk�lS���A���,�5g��G�\�?�p0�k`lq�����K;�n�G'D?+��6h�\GU�����Y�6d>��Z����?��S�_�
p��]���(�>�����\u��?UJ)\ ���*���~�M��='� �����*K=2���m7'���_��+��cX�~��x3t������s���v����m)2����s������F��zt��'>)�������9��d����6�(��wx���il�Q�N�P������l�xT��$��f�k�HP������V��p�Y��M�&7$�5J�4���TZ�%�����\�Q��v�x�qhl���x�*6��%/����"������{�/��Ci*�����Yv ����
������}K���Y|���d���sn����hL��>hV��������[|���a���kM���l����r�f87
��uXx�M�,���
�.P�
�����ex�����������W��nj�\��ch0�}*�/g)S�����%;�����w��I4S��WQ�J�O�]���H������*S7������z00����m��?�3���oL������'�h|G��S��-A�k>5N�&7}9�W���\{�-�]~G�\���=��������g�7L�~����;L���k�an8�@���/�#���S��C��XU^��D4�
��F;��'��]d����Q�7E����s?]�/� ��`������B�����.HRF@o��l]S�u���*���7�����So�h���M���o��9?w�����5
���{�����V[���7������Y���'{_�}���?�X�e����G�������by��7sssE:t��Q�dY�(��+��]+�rLL�������n������BS���w���h������e�3���Nt$
�{K��\� ��rV|��Q�Y����N�n(U�Nm�5�I�jm�E�.H���Yp��x�����
��=���A[��m��W���n��t�A�'���Z��el��PS��&��
��{�}*��B�����~�zrL�N
�����_�]�>�������U����?O��2�O,���oh�-#�����<�!G���o�
tNA������"':M�X��x�'`�kw��0����@n��S��t~z���xP�k����mho�z�z�����e�UQL2�D�����v;��c�nb������zrX�}�GA)�������wv�������>��a�&�������p��.1�������sZ5��tJ����|L���� .<�Y�r��j���b�.^`�4nm�rG�7���5j�Q�_�Y�QD����t��}7��`�\����)w�HL*(�(����6MjW��_!�_�
Y���d��pi��������s�BCLQ�E�eI����!���y������{d=
����Q�e��_�����5a���a-����ux�V �m���r�����[��S�`�����k�C�s���'���o�p>�P�m��w#���v�kqE�����c��|�A���o�����nCQ.��7������B�Cp$�?��� ����6~��F�|T�N�a���"+%���oB��?���
�O�:�����hf���a��m��M�>}��qn�{���6l6l������Y�F����={���}�����KMM�W���={���j�9((�����G9t�PZZ���������8q��i���k��m�Z,�:p�z�#������_~y{��~E�t.���s����`��}r��n�2��W
�k76=*T��"H��CYk
�ms�w����� ���j�\W����]~e���q`o��c���kU�9g�~�������L
����*�
������z	��5�i�����H��T�#^��_1�����i����/o�(����}6����pEf2��Ih���5qh���V��z�_xe__^*�f�h����L{�7��0�����"�L����\�Dn�-�u�2q�MRT��^�	tC���#Hv;>�������>U��R���&c�Gui$]�1B�1tk4Lk��2g�����p�W="��#vt2��aa�r��[U�UW�-#�������1��#eB"�Y7�o{�[���M�&+&M�3�yVq@��?����)�P-h�lw;�8�+
BM��UL$�d��j��U��w��0}U%vB���`�7����������M*T�I���oi<bl����G_���8���4zx�g���h��e����3�.ms+�rG�$�������
��{^#��D��"gJuXiH��$�������~]��s��2���&]���L��AtvO�h=}��_y���������\������o)����������<�����r�E��WO�d���T����iF�]7\�~��6%f��7lW�� �����'�I�;���`.r_�di4�&�H8�����zo_{��]�>���csmN����\��n��g`\br��~/����ZU�������Pyu���(+G��xj:b���4�������d�Zp���N9�r��w.����e�_��N�:y�d��f2��NgRR�����/))i��U��=��]`���;v�8z�hhhh�-8��N�2s��y��g��_?p�@����5�������/G��}��iii�d"##�������\�r��Q.|���o��=�5���^q���	�����|(s�Q �	�N�&W��PjGp8n���?j�PV�"�!*�2C�������n+�8c��0���U}\�sD�#B�Z�2�W-��=�PG�
�^m(R*$]!�\+�L
�������o������Vm�Q=�
?E?�M�������+//�ay��.n/e��CM�3���	����"q���B���O��Ea��N��i���u$����\�������]OX����+��������HZo�7�V\���
���0���T�gg�N0��m3;��,�A��$Uf�U���E����r��D��q��7Y�����6.>c�-���6�`bP���
����|���K�=	��?N�}���s����������
f:	�\����kz�+e���!UYv������<#n'T�����aD����j���P�����\�R0���O)J����5�v�}GL����k�}���WE<mu��1h�eO�a?���(�V�0r�D�������
�W��9����OfT�����O��M��W��e��[�jf�I���m�x��j�%����V<�}���z�
�)��
�e��>�������1Ib��F� I�[��Jk�?���P��������
���3[���-X/�[;��(Q{�_��#��t(w������"`�5��ccn~�&�m(��o@��������==���.����&]����b/|k�W�*v�(����&�:�4&�q����4\��^7JM��:>L��*�M���`��pT@� ezE����e����w\���Y�Tz���mr���2����R�iV�A�s���u�[c���8��:	�sp��#������	�����8����������.!9�w��c9���qG.}'���;�k����z�L{�\~Q��u?�.��W���4UO����*b�o���c|�\���p\<���	P5r������7�����3���T���`4�X�*�������<x��]��u��������8��cGoH�h��1c�����~��-Z�0`�'�|Ry���w�}�~���nSRR����;
`��M���oc��v������ ;;�E���u[�~��8pW<����KgBg��0�:]����rf*�-��S���cD�k�O�P{UR��"I�M�T7�%X�ay��[�����n4T��f�4,u�����=�e&�q�B$�9T�]P����0�b��iad���}?�u�[�p�o���,�T��c]���������],���3Y��h�N�L�0>���BY����3�j�F�6:�]~$����E�������M�Z�t���K���8� ��h
�V�[%CL�����z�:�iK48^��^|�j2�gj$��C���bjL`�KEz��� ���Y�^
��P=�/������,.�V�{U����s���
>#u��zGh<^V������#���"�����g��U��g��M\�P7�~��R2b5s;�r$&k���D����A��ip3��:�J-��aLC��	�n,�B��F�������� �ro����j,rC��Q����U����a��+c]�4S�/k��*y��{��N�^��\3���F=^��ypw�M���1l�x��k2:�����%�~A�+����<��q=_��q�>��C��_��{�;}QGc������^��������8�2V���8TE��5F��5i�>�����E���������[��p���I��BF(���;�������.n����`���\��;w��L�z2�?V�2Fpx*���~�f���,��s���;�.�7+�*U6<�A���u���kd:��Uf��y+�/��+e83���>`�|4Z���`�����Je������u
�7_Bd��w��/C�^(:��a�Q2�Q���G]���7\6��BU�7",~�x�����D����wv������r��]i �x�U�	�*��ht�W����b��
�T� "��n<6}��+��n@��!atU}�����,�����d$�.z��-��N������g�������L��u��9�?�R{A��9k��1�eO��\1�DY1��[���fE�x�}���/����~���Gu]��y<���������u����7�}�6d=R�T=�j�5M)p�B1'�M�6v�}���f�y��-s��y���E��{.�����GEE5m�t���w�}�X��C�����{�N�.^�x�����(bo��9�{��w���:t�����M��������
�=n�
e%���E�F�����MP9Z����7��T�3_��JU=�E��3����f�<8��7l!��C������I7V��,�+����������o�]m�y@�PG�k�HB�^����F���Tr�;���-&m���X��*�G�w:���!eQC��Z�t6�6�+�"U�A�4�3�3;�"�<tF�Q��`�r=�q?��Ps+��
���������5���p2����������y�y�����k<"����skQp�f#��tKd��D���B�T�c
�ty���V�F���5�����53t��WL�����=S���6�K�Of67i�6�3$���+/����8�B��cd�:��i���RU$8y�U�T���1�������<��1n)�g[T@e�����uG�[��	Y��r�B���OZ���J�����������������$!�_C�9p��-��5����F��w]W�C������}��D�nq������,G�zp�����a
p������i�9�������y�����}o�'��z�z�����|�� ;���9��A�d.�����\���:M����C��PU�+b��F��p��F�
a�#���a���]�U�vI�b�����IAe��}���aY��0��
M���k�
J���������kE
2m��?���B����n=u�q;i�N\7��{Y����>p��w�}�r@3����~.G.�*�����VI;�����q����l}N����;W�	F�
��]}��
�.���o���E��98����������|�yw�AE2�����vH��z�?�@)�z�O��/��nl����+��������w&>P�/l�0�Q,J]��\��������.D�Lh���'�1�=�0k��C���3$���H������G��`��CJ�cq~��d��)���:�n�T�����Vs�m��t����5�62$��
`�b����q�\��0�&�X�2M:���X��U��\{cU���;$�t���g��g�SG.��i���I{��8�u��~�Z��c�0���
�l�-�/��Fd������o�O�J^Y��3��8�_����{$(Z��IOvk44.�����x�����x��:?�����Y�f#G������f�G}���O^)pWU�s��K�.����.=��������~��=+++>>�z���7��thD:���~62�Z�i�����Y�W����j���r��y����a���Gr@����]��`�V^#�������6'��������
9����~
�<s@[�o:�]K*ZYUT�_bUT�\Z���tYb*�����t������M�2h���+*+17nq��py��0�+�T9�<�S��hw������*W��eh��l���.���{8��r=�2\�K'��(Ue�U��u��@3��B~����u�U�\m(?�@jh���M��]m�0�j�U���|Q��c���_�:�EF!�w�� ����Ze@�2��+��BU��#��|1�\�N���j�[���\�(`2�p�q9�����m��g���ku����u��|�0����h�`uc�){�M+�����������G���i�7���/� ���&r��������>K�����\���w(��G��;k��H�@�j�u�����6������*�G*G��O�aM�b�q"&�
�����f���W�|	����!I��7�9��R�k�m��z�E���v�M�8
��kL�,����+v���G�gl��%����.���q��.+����;w��p�T`Id8��|;����W��V=40uD������M�7��Qv�Mzl�'���F���5���C��o��7��*Sm=4�R�E�;��sh
�=j�A�����{��3��������yS I�k����<�C�TC�8$��E}VI�p	\�11��!{�']����41o@Rg����G�\�Q5T���E=�mF��}k��k��g=�Npw��Yb�x�p�����C���K���<J�����p,�O�PX���oK�Ae���/?o��s`����o*W���?��rS����7����1��D-�d(W�Ik��1�������;S�(�u>�N�"�!�������)�2��-�����B����&�P]������i�6�VU��-����7�d�O��������a��T�[�O��#d�+:V�X�o�Ag]��T����5����^��:�X����8�����TM'��
���_����O���U�U\��[����$��J{L||�s`����'}����t����q8\�������+��7��h��2t]s�>���q�����5����3336l�w���5j���V����@��-srr�?�����cG��%f�9x�`�������4}�����S��_��K����}���������p���v���mF������m[f��M�6111�}�t:}�����^�SV��F��!8�����gt�b9�hr����T�,;#C)�T���V�F���*���B0M]3'�CPs|�,9~����6�uOQ(�&  �l�h)e8��v�s0d���G(�_�aL���R�^��n3�@�c�����A�����1�N�J�0�V�2����?|�o�")���l����>�m��X�
d1	Jhtq|���o9��m�+��^�����	.�WI6W����A�p����t���mpr0�	kE�h��c�Uyl��9���
��
�����C�JAs������C��)0e�),��.id����c�o����&
��&.�I�IM��
��srl�y5��}
Cb��,������1���z!'y^��)�����|�����
��S?������v���}O(����z���"��+����y}�	�X+;5�v��-[�>{Z IDAT�q���L��J�x�M�����n^�g����������7��p�O�c��>�
"��Q�KmE4�:u=�5���tt��5���>79K_.��z6+Y��T%�����CE��:�-F���~����\
����H9�%\z$���vYk�s��U������D�
C��Fg7��t��i�\��P������M����nhe0�F5���z�^LI����-��j$�������t��V��������!Uv�`��g�����[�js��\pV�C+A�En����q�+R���X.�D�,�x�;f��]|��G����	����13��j1��[Th����I����a�T��Y{
���8����K���JEh��s������Q0���r~~��]���"�.aN��������8��H�c+{X�HJlX������=_�)�N���[��]����������[����/�����K+�"f�:�6����^S���~zb����"I)>#I�U�E���
c���B������G��*��0C����.���=�?��4��Y�Gyxp�5�����:Y"��Y�$V{$V������?�J������
n^���
$t���Oq��]�6�<�x��=���_?p��8fm���Z�]�U��;����V��Z\���dIS�(>_zdw�����5�G���%
i�BlP���r����<#Y����;�������7!�Vjdc�=m�T�j�O��FV6��[M�]U������<<*�I�i�(���-�#n�g��1
b���x��k�T�1I#i�Zp�E�b�N�%1�Y�-c;�+��Q��$Ip��Y��>����'(FU����QE�������pg�m�r�_�U`��4}��c��:�����
aQ��
�
R@��2���;+w���seIV}d���,����Dc��������Q�?�Q�D�/��
��d�4L������-g�?H������������������/�?;w�|�����geeu��y����F�0i����zk������o��u�-�m����8,,l��Q��/�������{�������7o`���3f�p���Z�+��2c�'N�HNN�1c�+���������1w�:�
���p�����\4;}������]x���U����\�^o?t����6n�!!��6kp���3Q�XU�B����}b�����,+����1�U��~:�:��m�p��Wp� $&# ���j�#p�5����������;�4��Gk}u�!T(���u�WQ��3�{{M�!:��D:
���"����
�(EQ�
DAEA�4�(��*JB	���n���nPD_���/��ww�����9���[�zH��7����`����;|��@�����|`G!�)5�%PH[>����cL�����C�f1��x���;b�K8�br��]
�_]���/���z����Z7���5O�{����z5����5T�w
��i�T�8y������x��)�'�����(*��������n";�-����hb%#�1N�u���������������m�p\]�Yir����7t��|��H�A[��iw�S�~�p�	��+f�f+����K�D�����e����)����j�:o��kc��3�4K�>��;�|_O����{2�H���K�RT@�,��]����/�<��3�:����$\���9��E��s����%G?�����:F`�P���GNQz���i�]��|��MJ���"<<{	mz!*����������4����kz�����~��	:di��[L�S��
����5�/!�xSQ� 9�����
	 ����s7�?��~��]�f
.�BD,�W�?���B����q<���������z���{��J6v��}�..}n1��#@��0vp���i���X������w�)���������o(I�_����<0���*��Yf�z��d�4���}m�@# �.�:<7�a��F<�k�Z������
�t������,���� �O����j�Z����s�����|�a���Z�����B���R������
�&�`9w���j��3�`��+
�iX=|�e��J&brp�fB%��!qQA����C��(�+��	X ZMt��T51"�X�A[W�(���Z��G�����x��[���Ji\�`��qt{'�(@�Ej}����
n���9�&������d	G��p��X���Gqe���v��/��'�����]/r}M������L��
�'(�%�~3��9N��"���I9�k��L���X��\��;a���v�c����h6g�����{�V��Q�y��b�����wm�1�F���p��A0�����h�Ay8����f���*��F��j~��%�7��+*qD��O�2����Dk�Hc���a�E]���"f7�j%���7��YM�9�M��}�A|�UkUjM���l7
$?Rf�|o(T��1��/�\�lY��-G��EQ<~�8�4--M�;vh��-�����X,���;r���M��|���K��:u�f����~��u��}������������_{�5��4hP�V�-[��X,�����*���7�������d����<~�/���o�b�n_��E{&�X�z��nu3_"s.H���n*5a)a��n���p6�(�i�a~�6�eZ2G��o�\�
��C1��=g{>5�&��
e�cj7mH3�\���q�wu������b������T��e�U���m����W7�4����=�����.�1����/����B,�����/ui<�����%�r,IH�����'��$��`36y��WH}[�\:���w�t������vz��_#�>P�&T[Z^����L]�b[F�X��~�����I'}����ii�#�
N�wS*b��<^M]��@���+2/8��0��]����Q�����s����;7N�4I�R�����4Q����l���x0N�"_�K��:Q��G}����b�f5��[u${}�r���=���D�4C�	;��.6(��B!jn����M���=���v�zy�9.{b�J��`���j�c��tW�C$*RJ)�,�HBc[���-2 0`$����c�;�Aq�B�E�{�R���Dt�U��i��6z����{��d=�w���������V�]��������R��
Q�0:�a�>�� @W�4� <����������E�%�)�
� :������u�F���5fL���	&X�'e��g���zU�|b�P�M�����LHL~k��w7����JD�Y<���8�Gi�P����t���r\{��^�+�����V�e�z�=��4D1x�RF����#A|�S�&��/J���s���0��O�-�~��}����d�S��X�����B��;K�d�F���d���E��lpc��w�|�7Z�S���?v�W1ID�d@#��v�O��K��
��s��?�f�.��Im�����y@B ��e~5C
S+�L��Xm��:$��s��;`!�'q��U��e��0�(Z+�S�Z���>_������<�����P�+ �,l�MBX�h�"��ks���mGi��G��KsW��l�o���x[�KR����
��%�UnI�:#�,@�&._����|�|]g�B��KB���7x�
����	�t�\-I��X?�316���}�)vP7/�����nN�����w�������A�T�c��77x[�c3�Y�U�J���~���#����C$P�G[|�_���u�~��C�p�T���2��(�q������X��Q|}�:��_���m0�T�<N��o���6�M��%	��@�:��h9��/e9����j&����:���m�\���
�6%?���:1w��d�-<��l����M��N��m�1(R���c��������2�3*��C��`M�P��=��CM*j��J���]�n]��i�Z����[�fM���Q"8������f�U�Z5p�v�����d������^je��pN�8 ##�n����F��v���_�=��aX:@ ��<����S���(00����kV��4�O.��$�����G��������a(��cZ�M�e�`V�<��K�OZ�tg�$�<�F[
_�������
e{]�<��jut���F$����*%m#��w��+��@������7k�����\1��P�O9������\�Z�a��<:�u���O~��fw��L����l����E���{�4�w���=��P�=�>z���5�m��xk��������
�A`�����=����(��,yvY����)���Uw}|V<���b&���&I�o9%�d g��`Jl9rE��]�H������K7{�����)�R�xtd��W�)�{�W�M	D���h�������P^
F�]4�Ya	�O^�w`x�k �P�!uyY������K���T0�����a�[����R�\�*HQ�AW�F�F��'v0j��d�7|V��ip�@������o��W\vAg1�^pjE���c�L��"��0�8����~�i�����JTl����.�(kLi&�ZQs�����|�u^���'��=s�RQ����� ���G�>O�[����Af������xX�CSM!�a���X��>�MG������X`a���H����J�h)1$p*�EC��jI��z�D�uA�������~Hy���&Q(�{�?�H�7���h�k�\���7�%��/�7��C4[A����dJPq�"�TdAC��*\�� �B�8�0@��D�5�
e4�����7y���RG?�b�\8
B���^[@�rs�jW�V����gc7y1��j��>
�@'y�[�����x���_f����4��:�B-)5$4����i���\6�����P���&=���N*wf(��_�C�vQ�y�v��Yba@T3(%�%���F��:|�,��i��r�Sy)�H�?��}���s.����w ���xt���R&^5�J�`��U�{����wt�x�
�&��p����eYDD�@�|�)X\7n^�^��cf4U�#��\�zq���%Hi9����,/%J�`c��jV�qY�,Z���;2���9��
�h��k��0�	K-�����:y�y*R�yTQ���d*�jHh�D�e���"l�X?������TJ�#�������?�5ygo���E��11�%��;�J))��4&��~_�z�X���^h���{�;�����
�x������E*2`^���m�Yv�^6��0�B�J)Fg�!pT1�����q/����J�������reA�:-�9�4�������u��i����[�n���Cm��u� t��]�������f�������u����vZ������a�u��Mb��������%D�5O�|���
��j��AY%�������������������)	l�a&��/���(�gNo`��e�w�Q���X+%j�G���g@t"�-��&)������q�f�_>�]�������?�ra��c�4�i�?o�;O�i�V�����w}y������"�����o(�� ����
dK���i/�=�Q�����N�����c�_��l���b,�|M�?����:��=��������&m�L��\!���>���Ze�a�����������+�B��P\.��@�K�����>]����������&�X�F�{S��p�U'S{~������u�o�_��i9��EU�Dd�,|4c�������7��=0m(��V((N(�����VO��B)!�(�A���N����>�jTjY1��7�.�_9dh���t����f�2�i��;7P%/���-`XP	V\����=9?]�x�
:��������}�j�Z�A�,y���Bn������DV�c���`�8��0�pMHA~���;j�m�Y�~HL����N��F%D������� A�g�0e�Q�Y.	�-�2�:��"(
�g��������g�sn/�FN��E�������yy�9Y���Z�I$dzk��d����EG>�S��P�O����o��:�P�Y��{,��
�GcYO�[�]�(��m@�y P�����J]IP���w�j�V��j#�<��T��DVM�vv����081%�Y���K����Z������3t�
�Mf!�N@p:p%�j�v���]<n�����ve��W ����+��k5!�$�����s��+xC3(E��Z�R-��D#����D���`%�@M�2�D�T�CGW�6{����7���X%M�GSHe�*���Z�c��,*p�E3}������T	.�����v*(�*�tI�J�����������a�,��sw������`��K!��<�aM�R#���25���{�~��79�X�e���r����a��*_]�������@T ���&5D��_��u�����0Y Ih��5}e����?~Ek�7���x^��&QQ��1��n��V��$���
��|����^#�d���j-z���H���6�W��~��AwO}��A��G�����g�\_��=�+a�Y�yG��%%�x	����9��h/ ���N=0q1��$�$X=�^^h,#����F_����|<��q�������o�^�;x����b-J.�(I�4i^����E�)����0�E���K����f���F�u�5�IR'��2�
>�%�{�P0F����V����[<������X��6��=W�B�������r��r�P8�����Cy1���d�N�U�7�0&������h����{14	J��81��[|n���U=~�!�Mk��hr������~;�J���jQ;9�t��8���@��D��d�a�,��/�d
�
��@����W��|U�G���k���xC�[u�FP�����#���\����<��P`sC�2����������M��O��s���/M/����l`�LkB�����8j;G�M��=�q�,�V�Z�@�S��9M�'Ie���F�����+P��<��ko��Y�~2�Ho6�s��c,�8������x;���h]�(j��[�eN��:_������ZM`kF��o;�:L�K���p�F��h|rFD	%���.Q��?%A�0�[�Lt*@
E��'���XJ��#1�D�s
���<�1��"�J��e�������T"T~���Fuz�u"�r�m~�Z�l	D�e��n�;�z��4���cz�=sO����!�7d��@�Gx4d���>� �O�)���3�~F%�(�6v�SP��T�Sk��N�H
��4�Gn�C�r���n	[��D�-A0P"RLa�aj���%��#���{s���n�������T���H���i(K����~/�%���D���>&�"��%Vx�3�J�YDp�����o�B�)�l�)�{��[���-��"Qs��^���������~�2�B��IM��q����`d��Vp�A%���)�,�\9������;|�0�z���
F��M��p[{��!nb%����L'0PI���7D����}�0l�	QX5rA��w���q�[�Y+I�����2�iQ����Sn�X�f���S�;�>��Fy�^j����c(U���~���	���������p���������2_�o��������)e����:+�N��������UR� �����q��*j
��W�y����	u�T�R_X	)��K`������`�m����<����p��<5;+�Q3��6_�9�g�Ji��q�>������-voA�j�9VUI����x���~��5y�"	U��>3�����K����!	�!��@P�����LO�l2�����9s�;�\�^M���y�����SU�)E�%IS\�,�7���������W��,:�����db�{V������3\[J��,I�D�c��(U�������\��x����+�~u�F��6?�����$J��K��iy�f%�L��P���l�F�����v�`�UV��k��<��/<9;R�����V�*��.+?�@$�r��/�d�<����Qo�& IDATu~d	p	;����1���	<(	0$���G�
~����q�8�l$
��>1e5��UR2�������R�������k�8��x�D ���E��8�����<���m-
���eV�p��@$�H�k��JB����
"L�~�?�5���=6�*�3�Ng[��U#�fHN����w�tO��k���E:{�HXp:�3���g����5k<�������I8�bh�d��2�.�();�bSG�E �G��ws8�@)p�U:>^��H��\<��5[�dA��O:���N���v��C�cTV]Ty�$��]����I��yK�3��������g��ea�" J��k9���i��5��'��W�t��ei���1+���""SAH�?-�s'T�]�gl���������R�*���X�k%G��poU��*
1/:����W2����<
��{L���A8�Z�c
�����x����V;b����|0I*vKO4��Aa�9X.�����8��a_@�6��NSL]HA�����7J�@)�
7.�O.���,~j�����:��,=��m5u��D+d@�z�rG�����|�@�>��+7Q����e� �����g@}P%"��2	������c	 @��5�~"��b������(��
S*?"�Zvz����T�$ I������:���;�Z��
xs�������_�R]E�a6�=�]��x�\x��`�2�*��5�p�_a������:��_�Y��/-k��?���v�����6��0��o���i5�e���%��!�����=a��[N*� ���Y{�Q{���n9�*�����O�Ng,)}Z:i�|S�������"a��0x^��[�j��o5/���I j���N����Y���{����w���{a0��\���O���2.\k�)�w��>��UY����\E�yQ�k�<�j���!���j�U���%y%����#@��;o�	�e�g�}��I��8��aK����j�0���UOd!0(���L��j�LzR�^+B�2�B�j~:���� �
��A�+`c)�9!A���$\d����x@��Y���kj6��"�=88�p���!��j8A�Wx�8�QYF��"u��V�aY���WU�����fU������o�~/@��_����O*�k����Z�r��(�VX� �P	:34��/� ���� [\�'9��2�����x�V�)�j�(�hQ����q~y@�R�\�auIP� �l�����y�JE)1�2|���"`_*A_������}�.��/J��^������c��Wh�Wo�	 ���� ��f��QD��h�U��Y���39u��*��� (&'����r�:�D�w�Y9������Ur;q%��
�{
q'l.5D��z2��'��>��K�y^��5e���
\,��<
?D�Gr�X+jmQ���0s���?]�����������B���P�4���0uE�Gp,G0��=��At��2�����X�����g8zC����H��a�P����\�w����G��u��|�()�X�{:��0��c�{���E���.�k#����.��lZ�'��W��~~��C��������D�I�"<_�����G���q~�\�nt�wW�Y���C�+)�,�P��w5L�Ic�
�o`k/#���` ��=D����}���
���4[��������3BMz'����	��U6�N[����7(��E�ug�i�����
e��p���t����/=���S�� �{��&���	p���V�U��_y���6���
�zT��'�����N�������N*�����Y�[�?����G���-�3 �)B�9����n��
�Yg���f�k�������V���3
�8����$v����-���x��Z�,��0�;���f0�=8d�Y�\,�Te�=k����H*�)��QV}�U?�]��M�E[����[�G<���=����D
�fBA���0� �eA���s1-�~�Ns�4L��P
oy=J�����J%
��`�Gi9�^m�����Y��6�,��3�#���m��I
 �@"(��!(��7������J��,q���*���bG��c���$�^��
FMX�!��G�8���{�U�G���8�8�(�:h����w��`��:�Pz������Ww��O?��P-<�t�R^K�(	������`T�����<#.J������mU�!X�����)�{K��b��vV����T�`�E�n����'m/,��qiA�b��m|{P�d+�7�n���>YW��`t�MAib���^M^�=�;�%�r��[�)~I�&#�)�_<$/�lL	�������efNS�4���8yi��f�e�U�j���ySy$(FW.I��	��1����^%���_�CQ\vp\I�a��:�.(^�z��L�#))�,�Tq��=0l�����/��U�g=w��yYG3�=���b�>��������
�F��_�F�F���[�e8���W��ZOA%\�|���CA E����v��8�	D
@���?D�����K8����f]k�=H%�:����)L�(���
�������8���Q�����q}�iA�7��e�y�e[{B��_������Q+q�D44�f����"�C�LF�8%����RQQPf����)���r�xl�� ����'��Z��������G[�u�#�i���R�Yg��T�g��K-(Z���}�H�0������^I��������?V�,�D<wTp��28����3)�P*J��w��a�n������Z���B����)�\Cd����=�������m��1�����3z�Y�%�^~��������P[@`%)B���#��yr����9��� T��
��D���,�A����J���Z
T�����V��$X�G�n��b�����?�=w�3.tip�r9�-���C�
n;������r������u�����k���s�C�������IPK�����|�G�B�:��X��_O�DI�z�;����5�����aa)+�{���:�gv���s,��E
��#���r� �4	B���U��g�%D���6�+�`^���;$qk��Auu��J�u�-�Y"^��_�n!��q�!�]�T��*	������9T7K����_b�d�}P�K2.(@�)D�����Z�:]-.XN<���v�����6�T7�����*�Crm��O~U`�H�{�`�[�(��
FD<��+=k��a.����{����Nl�4����3��NVk_�6"p`A� ���B�	H�K72s��5�f
�l
�	H0u���:q?�O���H�N{�6k�X��F2�KE��0w��M�j��uo�o�'�\�/Dc@�`-�)^�O���:gN��ZUQ�=Zo����x�~����W����*������U���S2q�@�������J�����B�(�5���'��?/V��$8��_?�c�@0�]��aQ 	����?f�Sm���=N|9��um
���n���R�D �pz�&�4��c�V]�D���w��(��V�ryGA���/�
�Q�X��$h�����k,�~����W���`Nap7C�hSr�����1U#����8�~�k������I������K(X)+���L���{�_<��G�2��u'����UQ�X-���Zv��C��-&^�6�Ru���=1Q�������?��=�Roq,r�ZP���RQ24���/����~��s����Y?l�=Q29��%`�-g:��W�n�#(��Z����p�7|G�*P�$��B�@��/b�l�W2�(���L��To�����I���������e�TDviR�"����O|5��2OKeh���grDY�Gf<�gg���-"��yg�����z��9��v �����\�*�Q6#��Qk`�����s3��|��Y���|*V�4�@J�W���#U{~��y���q��CZY
�N���D����q����bh1<�@���k*��
�4q��2������'u�(*�bL
�Ya��^$�=�?���!�U���N�]+H��w.��2�a�h�aB���%J�y]u�I�����*n�;jw���@,����(��@����#�3/��C8Bh^^������|���k������4ov6h
P���d�+@��Z���p�J�d�F�N�[��5���
/]z8FUjS�=������Ct, ����`�x�(dJ����,a��U�����m�+p.��f��������Z����`��?��^����6�a��/�2�����z���
��	��(a�j�W������-cn��e��L]�u�yR�RK%
Q?���6N�6��l�`�_�������uj���H��3{��Y�&���]�/��v���m���=�GC�����*��`�L����,OO��. ��UBU����c;v}�h��j�
�$Q�����77��{?���zy�wx��U�o�����~������G&@)�6�[Rq�18�*�t" ����#�]���xLi��#QZ`�A� �2�T�k��4����F
��P��'�E�(���f0��*���|�c���1�A�n����y?��`����q����+x�n����I�X��@���46Z-]/{=�[��O�����D����
�x{�W�F����������Sw��/
�� v���0Y��|�p��U��~��q��Z� �
Z�V������pd;����?C�+�u�x��1�����6�a�������c�c��yK�}�w��3z�U���8��NG�,����;s
]�����^t��&������.�MNo]7��Q]#����q>�_�+���F
SMQ�v��;�	��eh�
h���'9��!��"�Fon"\ ���s�VEq�[����n������U8�������TFJ����_o����v��X��e�]9��7�l��"�O)8�j�P
Q��]^��x.�6
fIk[����*�Z�1}�/�����LC��_F�g��y���a����{��t.�:2�>��Z�o��B!�6����I8[���zQza`��Ot�s-y�o��/�{
�(6����W5}U|�+;-�y5@u*������[��������
`/���YD)�����/������ �$8<�I?l�s��%F�n�e�]���l���z��E���;�J�L�IP.i:�D�D�����������������-g!�O�����1s�V����n��yed]!�R��:U"�,�!��,�
3���/8�m�-+��n����,.jI�-���\IJFJX4����xp��"�@��q����k�8�H l��!���"+PH ��5�u�)��C�/G�{�����E�������4��T������:�N���i���v��}��R������W����5a��;tY�J$*��z��_@��c0�}�5P��V�Ja�D�zh���]^��J�������M_
�B�g�`r�P�U�"�.���,c���g�9LB��t���������<C^qd����L�����,^_�t��D@E��L�U_5���Sk$���,�Te��m(��o���P�K�z�9Db����#K����(�����F����s�!�����wIV���%��$�O��xI��X{!�!X��p�F����U�����]gC�m<�1�N`��8�QX;xD>�����`���C-�����!F��n��!���m_�Eq����X�%1�r�NP���'�����x�vOd	�t
J14:B���rQ��\.=�Z��'�0�u����aa��?�y;��MV-(�P�a/�T�@����7^��d���������U�>@y�m3�c�p������?L��	uI�5����??����!�a����2b����c�g����n�2��f��j
��!�a�]�
4�F�}��
!�;u�S��?I�W�y��"��W�l��h��A�8lBx�r�NAv����S�~�h8PQ�����)��L������M#o���.��!�%�YL������)P�������6CXJ������B!��@7�6�"Hnd�������(������������ �����\�9������m�����C��L�Fv��i��a��&G�^��ua�R���/����)���0b�_j�����z7�[EY$�M
�a@4����vO���}@q��N�@6L��b^P)&Ph����B��-^,�}A� ��A)O��t������Lg�.J��R ���w������es�d��0�~����6e�EQP��G.oYv�����fe9�D��_����d�8e���Q�6�0����B�|��gU"�E;�������h�!��@T���'ns��V�M��:�����?x
g�B����M����UN
�_���a�f>>�����x�9�x�"��
Ia0}���!e����>�?,.\��p���
!������/o�#I��
w���!A�F���3
!�;��Q���p��zt�>��@.:���_rS�
�j�LG��y%��<T��5��p�<�����J���=?�)�^��N���@�i�����w_�V@1��\���>)3�W����h8=�&,�R=4.B�_a���
�8���{���b��QJ�������"��P�s��'��0���o���` ��c�A���6<qy�I8:�2f���E�^��7�ml��y��xB�Kb�x�`�z0���O��!��/��;V�a����������\��FGuk	=�B�����0������5��$��{����z'
E��LW\z
b1���'��~5~�f0F������Q���`���K��	H�1�E��z��t�WA�x<�2������}�Kn^�!�6V
!�����I�@(�B�,\x�Z[��Q^�kfE���p�P1�E`�������7��K��.���]���/��)���Bq��y����!+q��A<�2f������['9A	" \8���B��?|���Pr����-�_�
"��F�S��Ic��VHk<����F���q����~>w�Ah��w��Y-��E�2qe\[���
�Zaj��I�art���Qp -iv:[��������b������R`��[U�s��2a�� �U��c�����Sy�*V#H|zr���!��M��(���po��C�S��DA��bo��(����C(Qc�|���� �\9���I��7�)s�O���5����t���^�����}��2��|�n����7�]Js�����D�k,�D�`q�M�M
��8Z@�m[�q�{���������
Z�f��2=��I�bB�=�����&�L�"����~X�p����o����W^E�@	6���C�P�b����������0�p�~���k/i��5�����_�����d��:�wU8c�x<~/z
����h�.���n��A�cC#"��]0uD�h�L�pa8�&"����]����C{;f��6le��B����PH����:qezT'��&I�dM���~=��#-���������
zD�����KT|}�@_a3�@/�����������������y�=��O�-
��{��.d����$�tC_��nEO�,0�}��C)��7��B1����������[O����W�5�L� �$�=��1W�v�/�g�W����Huy���>�{������'�eGt*��;�U8�g=v��@���s���k�'i��ia%*n�CBKF!���4,=I�7�2�o���m�>�P���	��P``0���8z%|����9a7�D�������S%PN�)c���������}7>7��u��$���2�&a�����0����EI�����v�Fh�{����To20>���e IDAT�L��L�Q���P!��`�u2@AT�����} J������������<J ����j��������k��~t&"M@�q��-��X�1l�&B�xK�K*@Z��-����������|}���@�c�X����J��X!�)����{�@���At���6$J��\|�a������l�4sD�IS�x���*$.��g|�w�7{�����o��U�^�>6���!������{7���#;�8��$D'���mg�����6Y<�7�r����-Hnn�$E��'�M\L����pt'oa����TO��MuS!��a��X�7A�ITj��c�Z����,����Q�Gh*�`�����N�#��������B,�Q�W�6���=\~����)���9Y@%���i7h����p�
@��JrX��@!�/���$�@t!�$�|�����9jn��S�r��E�
sW4,F�l$��wa��,.	8�����������7H��2z��k��eV�����#�7eVxt��$%*��=A TI��/��>������#�+G�����-��7�v��g��0ct��w��I��!���7S�7��E=���R)�J�ZMtL��
!��1".��UG��QfQ�?n�s��B�k�SG���4����>^����2f>�<s��A)8�G*��8�c�)��������,��!Pi���{+�^7�)�u���-7I�2���B�_
.5����1S�6\zF� �:����[����e�K @t!��
�:�R��U�%�������Uz��
F�b�yo���]���a%Q/�s|W�yc7{�%������!���6U;����M��m�0hn�0`���������`=Db��"��	@�h��4h��R!��W�H���-����0^��b�3��'"���lTJ�����2��_���hU(��?}��S������0�{Z)�W���$J��K�}�O����;>3E�y��l�Yw�  x��l|h���~&�F����J|����qA��.H0w��^�������g���������_�r��=�R
�!���7��$�V+9?mz(3���wo;�����t�j�Z�
��gGD ��
�1D��!8��"�8�ImZ�}�����K�������������(���*�
��|��w*��H���"����l�y!����f��k(��Ebu��u�,�,����b����8V�a�t������A�������/�j��14
B!�#�%������.�e�����	�G��JNh����������AR�Iw��5Jli�������o�>g
zxw����k��
��&u]�O�l-.���6wWV
pp��+z D����d����M!��?1�<�D�tp=����P!�-1D��3��e�PT�]�xA��,�S[��J����%NO�B)54K'��; /|
I���1��[m��?��30�j����l��&������J����+��ZQ�"�����zE��Az�&*�D#"5==��M���y?�f	���d����;;{v��0y��3�I�J�\P,J�z�*�����;���&����&���O�
�
sG��������1<2���U�����������������2@�(�N��^�^�� ��J3�+�a�7O�n4����c����
�|���u"�@����gGy4V�9�h1�g�z��c�2�u��N�e��� +��[�Pr���Q������A&|��[sl�NI���q�UVl;���CL`�A���FT_����EH0��\L���FRo{��S
�#���p�hs�_�V���A�`P=B���g{�����]�j5��h�t<'��0�>���`� , �vh�����d_Y�;GArO�"��0�\����w���1A�J��c��r����B����Q�I�����xu���WB�����z��<�(Sx�5�z��H����}��vp�KK;z����'����e�Q���e�;=����Q���3��`	A��phW�����Z���\8v��p��g��l�%��!�\C�$p	�K�to�����.8F������*+���(y��-W��d�3�g<�r����
~��� m0��m&��.Y����*i��]�? z���{����S�m�v��V��*����o_�� --m��}�5k��U+�:.�����E��t�9�b��_�>77W�������H�����5k�h4����=z���?���N�|!�z��T��� C�9����hc���a��8n��/2��]����y�WH�'#Z!��1n~�����2fX�����pS�H���`���G��n�?���^=�E���o�l�R��l-��!�\F�}(��R0
�B��C:4���&
j5���+�8����A0{oK/|��c�,�#NBs���e��l���^X���t3����et(
����/u}��
��)41�R_D���za.�ra�1�p�E`:�E��:p���/���'��z�c��CBB������W�Z��_?�������o����/��7�}���C�����.]��P�SO=5k�,��ZVV��x6n���S'�6m����V�5��EEEO>��|��/�a1���=J��]�I���$q�j8r�
���`:���Yt���`h��[^u�~�z2��������iE�Q7�2nX�K��<v~��[!��[l_��U�$O���F�!��8�g�*r��K�����::B.2�c+��0���tG�6I/��Vs��m�o�����'�����	U���,��2 �'�{�����L��m���j���Vc�Yc�;Pg�V����?��Rg�(h<������B����`���kl�X!�������c���T�3fddd������o���l6w��=**���p��Q			������			�F�*,,�x</�������m[FF��	V�\��������a��Y�f=���G�9u�TLLL�.]���v�q���#G�<��s�f�Z�~����S���BX6�Q][��z���j8r��x�daj�_��2A��P�$+W�����l�s�����V��������.�����Ne
����Y������������%����_/���!�\^�gU3�ma�WW���)����o}��U����������C���Wz��9��������%K�n���i����njA�Q�p�0S��OU�@�w"<g���.��:�[[F*�{�{
�CBB�*}�������>b�edddeeM�:5<<<<<|���YYY'O�l��U��-����L�`�������/���h4>���V�522����K�$I��(3g�����Z�j���={��e�jF���������[������������e�3�fq�����(�%��������D������3����� 	��z��g��Wo{��<�}��;eJj�w����^�DKTO�re��t��� "4W^���R��^���Z������&��W��#s��o�/�]+�_Z���n�)�EQp�� ��%Y����dEq�T������Z:()@I�����v�=�d����g��������������`�`�$��ADQ�$i��a�7FDD�t�j����?$$D���O�
��������$$x����7o���=����!X#���gt�p �:���)�wB����U��q�z2�N_�W��c�9:t����MQ�wWA�M����o�Q��AiK�����q�_v�@��K,Q=B�	�����N�X����*�����8�u�������&y)y�:�~��o��u;[�Q��9��w_W���E�U~���w�w��uBa�Q�}/T���0v�|v��9����w)p���G����o���B�V[�Afffaa��x����E�������gdY ���
�[�s�9???���%'#������q��B��@T���aM�l@�
J�MX��YtQ���M��'v�-\����y?��r��������y�j����o���tz<�{~�/� ����w������5��Kk�WO&�R��-�v8!���10����cw�v�����~�9.
��.�z�E�f����1�� ����X7�
70Hk~��8d'�|0g'��A8L!����-=Q�����8���tv��4[s�`����6KopP���]�������G�=����[,��rn�� &&&((H�9�5�������6�$��/���3.��j�����;��������0�1�'��W�?o�>�"���6��=��	����7G����x[I����|����S%����lpF���(e�����w��2c�/�����~�Cq~Va�U�sK\�U_^��s�Sa 3��3��E6�M��/*�����`mx��������������e%��9!�b�4Ey����
\�����z�
���kv6�r��Ir.Q@����,�tY'�<�'4�x^����kC��E��\�/:����+��`�Mm����H#h-A�����K������7B���~�u����������<�[`�K.�-d��c��)���)2A,[>'��-��T�E/��@�h�;�����V�p��II������3b��{o\��t&�i����l�����������K����������o����������8�������G1c�������|�\n��<����$A�����0%�n<��q����hgo��������Rkt]�����0pnn4�����6�=�$��2�[�}���m��5��H��L�bB��n}6R;m��T���ptlNm��j���o��H��qy*R�x*.�.�mB�e�L@��`����~m�m`���N}����/C�A�\4�W���~��%\�L`(s~��X<��E`����~�MW�������W���`�K�l�5v��fK�C�#<�bo<a?���Z���p�����jS=?K��7[,�:1U���,P����#�Nuv�L�Y�h��%�###-�����N���K������j�*����7���g���m�6C�����c�����l��w?�[
m��mv�}��i���K���|�Z=�F�p��s��"�u��!7�SBz
8KI:m+��*
\B����d��V�$+�&,**v0�8��`���\��%��}/��@TQ	�Y��khY�kDp�����o����;���G��7�nG��ry�LwI��v�C�N�X������,�����]t���b���L`\���hj1�QKo{��W��{/(,���lI��1"8y�%�v�w�i������N���R������\S��� ��=��:p_�r�#�<RuILL��w��a��=z���c���z�R������7���{����q�:��z������1b��jMMM9rd�V�v��������|����v�j�����#SSS�����eK?|g�zC��fq�.�TO����jhe�J>�n���.����������iG�(0��|��b��=s�<&�ONQfT#n�*+���v�3+Ef��rw	�E��p�dB�Qk���^��^�L��~��d�L�	�6k��Y��e<8����@��� ����m����[�p�����F<�v�%�R�8����1��w�:1�A �����(��C����{����9gOk��+V�\��f��l��+W�F��y��;v0@��N�6���e�8�kW����'��[QQ����x����]�
Z�`ABBBEE���c�/_������*_�$T�����b�:�4"��V#���e����B�d��]/��H
^����@[Hcb��c0t��`�h}����Q�Ca4����u�K|/-L{[�	��:'��L�R�������oQ�E~��y�;C*w!����W�pm��	��1�:�`�}
�n�h�������^Q�
�	s�
��V�_����9��8H��{�M������X��t����[R�7���������9�`�,�b�~����w�]�����|~;����(d6��D��l���������PQ����p6���Q��D���9���'��F����0��ax��1��j6\�]�����=���(���J�NM�����w�������������f�M�l���
��bg~n�	�t�S*?]���-�EX��i'B�C�$5��i�������6���9�JH+���L�8/z����9'N2��s�$>�b�LDI�����l^�g���Mdo��@��&��S�S?�Z�������Q���|v��j�����.To�zN="i�c~���7����H�����[2���_���9��McnWS�!5@��P����6����CY�Z_*@�Z@�x[[��@f��s0 �j����m��/0�����W�v���U�#���}��0��Tn���sQ��-B�E����wH5���j�R����0���_��/7C#@I���U2�:����1���^��
W�}u���
����){��Y���BG6�ih�/�`R\e)w�[VV��P�o���i������O��C����RBj��f����Z��oI�������sD��#+O��VM�S�x������hsso�+~=�>�`/������t."�\M8tq�L�;�g�W��/9'�9��7UX)C�EK}(�o��������D��H��=�[��3`������3���y��(OV�9���{���OG�kE=�`��G�/���@����\�%�����K��G�{�%XDN)"�Z�!)��Bj����������iqb��������'#����<{��$3~�o��/���N��:Fm����� m�����!W?$�A��e Sz��cX���-��m(�P��cw�����w�"��$O~������`���]��q8Ja�����R���(h��1��_V[�L���vu ������m5,aQ�������n�&#r������:���0��Y��%���H�z�O���}���P����^��z2��
~�����������G�Y����<�-��!��Y�d�tSK��lp�c���������h���&�)v��W�������u���X��1��F���/,�����~��d���
�����)>Ru�����9P�)}���K4*j4�:Y�����w�����tO6�5� @a�U������@H
���6Z�k)�)�|���T(;�������:p��bj�(��/������AIv(s�?��%�'C���W���:u��%/;����9��
����u�3��������cYE���lZ��m���2�Vs��4w{~ZA���]���F$��P��F���t�w������&p�$��l��R�r��=�����!�PO6���`
����]�S��
�aK5����������[bK�m���j���������L`�s�%��a�TG�Z<%s+uR=B����TMo[�ts�"���3r�w�"lx�8tux���8\3��y��|��K�p��s����o����e�`�����n�M�.0q���K������'�����8�2��E!�;���V���7�D�>b��&�A��
��B��._=��@H��J)H�7�~�������,��z2���Z������]�>����
�*:B�,&"�U5�]#*���9��#p��M>�O\�����M?���|���j�Z^�����.�Ue�X�1�:������`b�������{>*��/w����� �{�M�.���#�@Q.���j�������WS��w(�C�.�@�9@5��b&�K���e�����+T�'��O{�<��8��^�-�"��
�+�>��l���*�\D���d�wlv�����y��Y"\B�?/���?�jn�o��j���-#KH���w�������&��T�G��� IDAT��&�y��������@�����L��5��I�tH�5_����9Q�D�b���_�K�����^\p���BA0�[3��o������U��hm�%������@����i���<n�c5z3M�lN:B��J�����'�{/4a��bo�:[j�(�w�����p:�9�)�o���0��]�x�w_{k5:J�����<�yV���&��=���
���[e.���^��/��x\���~>������P���K�"�f��{~q������#��Z��LP��>9�v����������w�G��f�����N��\D��*��u���t�p���g�QgK�%��nI�oK����<�7!�%D
�IB�|<����U~���M�p-;"��9C+�o\��L��.�"��}���,H6��������,
��}��*\i_�u	!5��C�n!�o~�u����d��>R�z����xRLD��{n����It��-�.q��W��I!�U%�`�2���A`������_���;[j�s���.�)��c����=n�e��
hu�
^�������p�����V���
�``��������N�����/+K��3��I��k5tt�
\���Nj5"BH
z7N�Q�����`�+C+u*��0����I���	�������x�_��vSi7��!!��L�]G��vv��`{��*y���'�m9�x���,;�&\V���,
���M4ht+�]�����t��%�5���{
������RC�qs�63��g�8�e�6�����4:��+��m{�����,{E������Z��5L	!5�����p�.�hy����Z��dD�| a�����q�wN������m��������Z5�q����QO����[���pa�3+���X�7oP������UXB��y�����`"��`�7�A���
�A�E'�u�/-�%��W��m'	����� ��Ehs}���*��K��Xl`�S_@�������h��K�;$�J=������>��N���V�n�?���qX�X�}}�.����~<}��������N��d�cB�o��A�5~dD<2i
��@�MPd�i@E)��{���Z������
k�z��6W����1B���Uq���H�x�2�s�S�!5�`���Iz��S��'SXf(qj9�~w���u���!��l4M���������)ZO[�
"�pvp�����U��S�X�\?�j�����1���(/����� �CX4�_�jV��v���Z>�� ���<����@sn�����"�o�^!���F����������z2��v� �id��GczSoB^L�qwN��FBa�IL+�
���t��P������}�4�.oF�A�4[V��]�xkG^�~�����s<���;�fNH@�|�CLz����<	R�y��z.��<p�-$����4��*!���<&0���\R��M��E��}�-$�/:v��?B��~��u�U:��j��#T_�c�E}AH`	js{T��f�C�W��^�,���F��r/�pD�-�{����3%������;6��C��Pc~�����|"�eD����(p������R���!'�y{ �x ���������>y6����7	!���5f|������0s ��Du�)h5�o���{���QTU�/���wJ�!$@Kq�N�9'X��������m���
��!�M�G�8WC9���y]?���V���U�5F��HCH����=,����ZOF#
o��yI	!$�00������]9�W��j���c	u��l���g����
;���u���b�!$���b&��G�{�	f,�����d	,A�)'���y�5����PT���{�g!$0q^9��8����=�HHn'PJ]AH�jzs��_B�@T�����dt/:!�*�o���ga�L�{�(�Ea�K�K�� $0�k��@��lQ���A1��w��G�B!+8a���R�T����5BM����2�� **���M&��|�f�ynn����)**r���s�����-���x


c:��j���Mg��2�
�kh*BM�V��Y����(�����F�	!�2����A)������w����A������'$$�y�����
4�����<X]��Y��3g^��u��%%%5j��i����~{~~>��s������7m��Q�FIII����S[/j@�>�d�
��NH�y��-���%O
�����C!$��'B�d�g�_���a�{qqq��
�F��3^y�����'�|���h����(3f��1c��(M�4QG���������7n����g�y�����/��w���$��3����������c�=��C�����O?=g�I�����l_E@S]e�O�i���@������K�����w�� �����;<n5���\���I�2����OL�4�����O��#G�dgg���;�������G������m[RR��q�6,$$d���o��v��_}�U�~�����:x�������W�/�Y��O�>�'O��c�%K�:����tp��\2�!$��lEy��Rk�����D�����O5i��1��>��s�=7z������
p������5�n�[Q��=`�uypp0_v���u�bbbbcc���7�x��9s�����7���h��qll�k���'�[P�A�D�8!�BH@�W�"{������X
K����bccO�<�|�����w�}��j�=�=���.((h���o�A�)�����h��v����t0����d�PEQu�5:����#�B	���S9��N�>�FV�y����|�II�f����C���r��^	0�<������*>��c���c��&���p*I!�R3U��(�_�wN>�;+|������6��������h"""t:� x������+W�TDGG�l��ZX�l�o}��)���s�h�
�����:��k�o	h�WoN�w�=)j'�B���w�}�!�p�2+j��{�~�����e��:�2w�N��{�n5If����B�Vk4W�X1m�4[�l�-����e2�BBB��?l���FDD0��;YG���G7n��U�<x���3�~�i�MR�w��j���\�����s�*i�B!�&�����`f�����!���w���d2=��������������###�fstt�+�����p���
6o�@�v�.\��o�l�i���L�g�}V]->>~���3g�2d�!C�|��G�w�^�z��/�����C���WO�4�E��G��X,)))���[VB������f�%�B	n5#�=�����������=66v�������c������c&�i��������O�}�v�-,p��j���2}���u�V��f��-#G�1b�(�}��Q����_��W�^3g��e9::z����s�^�������!�BH 1��e��#��(p�N�:�����+EEE��[��������j�,]�T-i2��f�o����M&����;������n7��f��c�����+((`��t����?������]t�B!��x]���O �4Z�u��YU�l6W��������.������j�^�M�V���.�ch���(\��Y:�	!�Bj<C��#v�G�����P��_�����%��i��B!$(
���������C(p�	��o����B!$���#:����`S��W�0l-P�:�B!$`(
�:����pGn�u�����R�����;{��;�B!��p����zJ]�u�^���
cp���7j��@C!�R�Y#����	�5�����������z�1oySW�B!��@��V�,��*���.�@��q��Y^m���TL�B!A��u�L�.1���UJ
PR�H1�����B!�mHp�����10�O�s*)C!�h��A�`AZ�a7�5��`�����s�	��'�B	������.���&���[U�r�TKP�%(�:�B!$tK����?^@�{MVyg��:�����1�B!�@��[�]�u����}	8]A9��B!�=(���&��L��]%TU�B!$��@���0w*��`��B}N!����BQ�����!���U�w�p�F�i-u!�BH�����:(���0���
�� 4(���P�B!���Dp�����4p/..��i��1cXc����iSqq1�D��������9u!�BH�h�\��q���O����s�����~�������z(55����������7n�x���&���Z|K���F��rn���&�B	D�/�����gw�Xppp��
7m���cG�����7o~��G���9�����px��#H���B!$ it��������B�i���Re�x����W��}:v�x���'�x����A��W��0�����B!$p�E�	�N�p�����
�9��f���w�����}�v��5`��Xxx��+�uf��U�G������j�T>��g��&�B	�/�v�Ia~.��T�'N�k����@��
322F���_<��{�����SW�]Y��h��B!$�wE��cEN9���������SVV�t:?�����������G������999�@���/I�$���B!���(���e�${�|k���s�8P��?�����l6��h��v�P���u�n:�	!�B����F���sz�nt�d2�5]�������2�|�w����N��>�:u��4i�d��	�B���m���?�XE������'<<��uq���S���dY0`@jj�(�dY^�p��+DQ����0a��r��&)�o2]�K��N!�`A�����������c�~qg�=zt����-�j���s�������`��yG��6���x���;q���������'������x����t�RPP�p8/^��e�S�N��r\\�;��t������O�2E]>e�����>|8((��w�QS����p�/�"�	M�c�B!$�t���i�����Z�����G��������_�R�sn���Z�������w���������[����_�`0`��M�������>�������+W��~���;���{w��u������/))Y�d�����j�j��)�'OV�N�:m��@��=SSS���3b������BT[&)�����&�B	(��T�
����m�a��������������?~�xNN��8++�y���V�������������X\\����p8G���
�;�������5�t���������O�M���������}O�o�>44t��%W���r8�����C!���Nu�� -���
�����.b��������l����1�Xhh��n����=p����w���uZ�ju~�������~ /////���h4�!77��6�10@z��S(r'�B	X)���'�����2������{~������5�9���5����<yr��a)))m����{����{�]w���/[?++���B���ZRR���~����C'A���p��S�N!����{P8x�T�c���
�9�K�,��y���?�i��E������_����U+B����?����Q�w�}733����A��x�����4uI�z�������}-�^��W�^���eY�W���d�Fcii��)uY������3.��Z?����|���:C��K����jA:S���
���mB!����C���&�{�7��mu��j���c�}������&LHLLl��Abb�W_}�����u��`h�����A
��(y��e����5t�$I��5
@aaa~~�����Wmg���/��B~~~dd$��0`�$I<����[�l	@M�3fL�M���=;����>	
�������?��p ��oB!����e6-� x8��D��z5,�q#����������/_����#k��9v������?ONN^�re~~��-[<���6l���Ogddddd|���u��MLL���i����M���Y���7r�HS�LQ��A�}���n���g�.**����3gN��h4��;��3'77�����O?E����>���d�/��zM��B!H�
������
?�&a~�It���O<����G+**������o7h�@��g�����6mZRRb�Z���l6�����"3�V����_PP�����k��)1EEE���+...--4h���K�_�����x����x�
��ZVVf2���������7k�L��\TT�j��>}�\z#333���w�y�p����|���s@��p�����B!$��6?,� �����un��K�~���z��/��"''�E���O����V����:u���=�`0�F������o_����W_����|j���K����5m���f��O?m�������_���s^^�$I�z����V�'&&�>}z����&""�g��W���[���U�Z(4e*!�BH�j���� �	��5�>z��O>���dj����`�e�s��x�����I��������e�@^����f
N#��B!���x�=4:��X��_z��-����F����s�m��J�T��H K��e��@��B!�"�W����R�KR��������'^b�U�V�������B������+w6HG5!�BH
�DX$J�P����a?T�III?~���������c�����_��s�������\�)tTB!� ������%~k��7����93..n��I�lDz�~���'N�(--]�jU��s�����G���X&�B	h��{�8����N����!p���O~~�3�<�e���#G�?p�-K�~���}��V{������C��eB!���f�!$�<2�K�[=A�Y��l_}�UQQ�:)�J��]���5��tj�g���8�����B!�H��`T3��Cy����w��PyCB	3	A@�`�5XO}E!��*���Pa�8��*�\_O�g��z+X
�����^c��!�B	L��Pd������()T2A��+s�)O�B!$p���@�����������T~P	�V�h��	!�B�,��x����9��O��>}���C������s^���E���m{�$�JUt'�B	P����G�G��>��9�s�����e���<��0aBVV��}����j�>+�EQ.��8>��q���r�	!�BY���x`�����������V�3��{��'���8�v�:TVV���S���"{G�� W��`��S��V��D�4!�BH��fW�6���K�~K���t��TT�,��L#F�P������u*1�"��B!.��ZR�O��X�{LL���S��9�9���+V��3g�N���;�(O���$�j�X��x�B!�vh�CMs�*�w����'���-Z���<��s�Z�
4��;��E�=��(.�aB!���A�l��O�3����S-Kii��9s�Z-����#���V��B�R�[�p� "�B	h_%�%�g�V��-��l���w�\������3�"�����L���w6H}C!�������@~���S������$~K�)..		7n����[n��[�nv��V����A`�k�R�.�P,�p:�	!�B�!�����U�M�	o��}��)F�q��u"""/^�a���>��Kg���9T	!�BH�S��=�C�EX7P��������N�$��������M{
�����
�<�!�BH���xPxLx�_bn����5�7o���[��o����E�j����AP�y��HEQh��B!��P��;tz�����o7�>���s������oI�n����k����Z5WFD������+� �q'�B	h��-0��g&��������Kzzh�� IDAT� c���EEE6����-Q��!�`�1��K���NG:�	!�B��k$
���VG���p�O�:%TV.7�L��{oFFF��[�ru�T��!�&P�!�BH���$SR���?��F�9�G�MJJ:�i�&88��uEZZ��]�F�Yu��}�4k��U�V��.�����E��tV]��������J�����[����f��F��G�+��
�������p�_B!�������,��A�"pg��7.99��/�l�����|����~��:u�\�~��u��O��W�Z��_?�������o����/��7�}���C����7K�.���4�z��Y�fY����2���q��N�:��iS����Z��l.**z��'?���+�Dg��gA��:x	!�Bj��_��!0�(7Vw�N��i��u��t�
6�;�y�����p8F�Uu��'�������������0j����B����/x<�m��edd����\�rezz:����7l�0k��g�}���#�N���������R�.]"""N�:u�����{n��Y���������h?���g
��0&�B	|�u��ig���Z���(p���^�n�������?��������w�R�����^;p�@��=}KrrrJKK�N�>u������������'O�j��e������&M0y�dv�-_|���h|����Vkdd��>�9�e9--�s>s����H�������������@IAe��[�w�\iySW:�	!�B_Hos�7E\�_�O�[`=q��������w��e���������F���=0s���_}�������j >x�`���@Q%I6l�o����NW�����������A��C��?���ABB��<<<<&&f��y��J5�I%K�����!��B!�j����bq�\�nwRRR|||ddd�f����%%%��Oo��u���/^\�U�V[�Afffaaa�������z�����/F�e�<xE����s������1����K��|�K9��aG!�B����������_}�U~~�^���l�<�H�n������������� ?_nn�� &&&((H�9�5�����q�+�,I����b��9�^������|OQa�K2P�B�)L*�)�k(�����:~�����#�B	xU�%p_�n�+����� //���������W�^����(2�~��g5��3g��#��u:��dZ�v�/[&--���=22�������i��������o���������������;��=^.Aq�zp%������������tB!�����WS~�q�7o^�������c��;v8p�k��������_~��s���;�����OY�<��y��������s���}����%"""*****j��Uv���o�	����={��m�b������f���w�6~�xu��m��v��i�.����@��[���M�8����N!�RkT+f�g�m�=88��t��������m���844@bb"������{/X�@� i��C����0j��1c�4n��C��/n���Z�c�=�����}�#F���KMM}��Gw���k�������|���C�Q��|��g���o����7�1��$oZ�����#�k����2�B!��-���������i��'�|��'m����u���[�����g�]�M������}O����r�J��f��V�\�}��gv��1`��V;u����b��/
8�kWo�b���c�VTT$$$,^�x����A�-X� !!���b������R�z���[f��Q����Ht�B!�����5z���K�,EQM�W�u�\����b?�FP
��]S]�k~�ee�����T�����Yq������� BR<o
��~xs:�!�Bj����z����)������[�'O�X�|�<�5��NQ;p@@Q�mp�ti��D:p	!�B�5�[�LpppEE�(�QQQ.�����G�74::�V��F����0p�F@Q�91T��B!��M�;�����������o�l������M�v���:u���$ho9��}k1F�E�aG!�B����16n�������{?���&�i����O�VgJ�m*gN8`��:���AG�!�B�{wZ�v���&�����O�>��5{��E��}��D!D5p��m��iF�!�B�!w���v����7ggg?����,�^���u�k����V�"�~\r:�6B!�r��VUf��Q���?����O>��K��]���Z��IB�w�T�h�4�N!�Bn���u��999iii�{���/���K��5��}Z��a)���0T�pI#�4��;B!����"##��@JJJ�����G�hD0a0���K�A&��;B!�r�(���:y�tK`��}�=QwB!�B��
�W��`D�������~&�B!7j������xj[�T�%�'!6� qA�4�N!�Bn���n������m��;��'����"�1G!�B����5�(J-q�A*��R��/I���M���#�B!��r�����.wz��B���v0��s�NhC�"B!�B������QRR����F��GZ�2e�S�;!�B�&~H��4i��U�DQ������#�9��N
�����=h�TB!�������'O�<?R��l:���uh��<�k$P���g���*�?�?gv�f�]P@Q�R�JQQ)T���K�����Z�U��j��k��� ���Vf��,��*�0,��r�������i�o���_���r�������y�g���
���E�����n�8����h4*�{�B?���l6�n6ST4Un�O�g�6��@+H0����m���)///666((���k�Tm
D������Q�>�FK�#�����������������_�r���{��Y��w��j����&""��N��M
���������x��������������p������V��[���FF��&N#"�dUf43��Se������
����O�:�p��������{�B#��~m���U�a#������j���~����������JDw��?,\�e��/)�91$/�hp����-:y���i�f����k�����r��!��9E��5j
%"�����o��hp�������/\�P�E����566j��������;q�EEE��`04�^SS������n�m/**�M������l��i�f�����`0TTT���j*�~�!#���`���U�A��C��?,p�7o��	���k"�;w��'N�<����x�����K{��e�����w

���K���KJJ��*++;v���c���J1�OHH`�������{�Y���{#""BBB������SVV&� eee}��			�����w�m/Q8E��QY-D�������������G}T��������h4l������p�������w��������k���3f� �����]��<��;����;<�w�����������fdd��=�������MJJ���kR,��111�e���III999����q�������v�Z���v����xxPH�U�'�7����3yBw��`��������N�6�����>g����rAR���7j�(�����s��QQQ� �������_-_����?^ZZ������<OD3g�lR��9s�(77��+�������~�-m����y����T��s�p�W����|������;8]�{IAA�TEI���������_�b� aaa�N�Z�d������f���YYYl����3������L&EDD���������d���c�Y�qv�h������~~~,^_�t)�]�v���D�v��������E�n�V75�t$W�`&�?����(@�H��e�����4�D��G//�;q�,����jkk�~�zq������(..6�]�v�5jw��ZP(��u����Z'''�[qn��<������,�l>/�w@V����G����999���j�Z���^���6�CA���6�L��o_�reJJ���/<��d��D�����'�q��l6�LV�U�hr$���VY}}=��=������[M��2�/���!�������������]��+���7�8v���'"""V�^]VV���������c{�����j��9#�u��������L���������X������5���9.9�
���`?{G�A��m�������s�������g�y��g�|�������0	����yqss���f[A�Z�Dt��q6I&==���J���Kff�������CD$N�)**ruu���HNN;vl^^�^��8n���D��s���={��]D���WXX�f���rttlr�J��qNG*x'�d3�����-��`���z����'O���o��E�Q�F�w�}�O����/Z������GMOO�0a��S�������;v����3w�\�2==�S�N��w�h4>�`^^^BB���k'L�����2HQPPPrr2���4>>>++k������,���;7;;{���YYY�G�V�TC�m��6��oA mZG���W�^����?��S"��t�����;�������&O���������Q"ruu=}�t�^�/^LD���?������4��z���}���T���4�����C�&Mz��g�ryll,+�������w��Z��j�������� p��N��b���I���A��?,p�������z�������������G��V�%?���7������v�F���o0�l'������2��������&n�|����+{��o�����d2	���j�}������o49�spph�;��S��
G��a���e�����v�����?��3�<���>h__�[��I�.��t�[�F��#�J�����u����ie0O�������~��w���$\������WH�"��^�P���R��s�	��`��T�]�aA�G��6]�z�vj/� po�0���l�N���m��Xi�W������'S�?��*��"N.�4[M};�D��6M ^��C=���#��/���b,m�JQ���-����8��6���[ApT8�J�{�f��z��A=��H�&#��	��E	���U���������J�; po�8"N�k��V� po���l�������U'� po����s#���U��K)YK�+dX�
��0�8Nq��wA��?o]o�6���=w]�^PP0g��R��|bbbLL�B���HMM=s�u�����_gM&��#G>��C�Lf2���}�Nws�UUU���EEEV�5...!!A.���jMOO��}�\.���}���U*U�zD�`���@�:&h��l����s�:u��m�\.///1bDbb"Y,������7������~��y��
3��D�l����F�\�k�����k���\r``���������?������o��o��fbb��������/_��G�9P�v��5[��=���������F���{ccc�.]��=+��s����3b���[�Q\\������<==���������i��)���;~�x@@�m�+W��q�Fff�����(**��7�|��7X���7����?����v��g�}�����,eVq��@"w��������;���ND����Y,������V���#�n#G����*))������0`��������6m������,�N��C�.\�:	��m$��zH�Vgff6�P�	J�po�*��s������{/^�8~�x���@���d2��������DEE�\l]]�B��~!���DTRRR__OD,�'"�B���TRR����vA@w��w��q������4g����VTTT__o�X�-w:�������$�����M
��I7yZq7�������76l������f�R�$�c���-������uuu�>���C�iR��j�8N�V�O������Z���;�qV���om?�c}�� ���'"N�]�r���
�^c(�[���j5j���;���,n�y���n�����^���E.����M�2��������L&	� F�������jYY������Q\\��b�8qbzzzdd$���M�>�������������9w����E���\�xQ�����2�w���s��3z�!��h0JKKy�


HJJ���������OBCC}}}�v�z�����w���N�4���|�M��5��?$���"Z�fMEEEII���k���OD
����k��-))���X�f
�L��A ���*^��[0����]1eBB��-[�����^��w�yyy���7&&��������������TTTWUU���WWW/X�`��yl���������4"Z�hQJJ�F����quu=u�J?{�lxx�L&sss�����kWll�����TW��9�r�V "������T�:�6�{������%)�.�*3c��������wrr��� �!C�����?�����/~��Z����������	��*�f����0�:99�g������e��!>>�,'


�~���={
�^����������-�8������=8����_ub}�|����Z���k#���F�����t#�	�,e���v@��V�����{�Vm�-����0�����T�m���)��t=��#$ po������K�����F�N�{��8U�#^�2U@��&U��J3���i�E $��m���,��	��3[Q+�����$�g�L�����q�@���Z�
+S�{����;l�Q����
�V��B�Kw�e�{��_/F����@���	����Qr�e��U��6�{������*��P������N��Z=!n�m��H���vG�3���i��?�a$���I6�d0���f�.��d������or+9w����;bA8����rrr:t����;v��)"
����766n��Y.�744L�4�V%�������b�:���K�^RR�{�n�B���5x���9���rN���t���|yyy�N�����u�f�/\����_wss#�����;w6������'�x���������j���YYYr��I�/������u:]MMMCC�7�|MD0`������[YY�K/���{���m��+dJ�L�F��������������������I�~���w�y�s��/^�x�b����L�R^^n6�_}�U��|�������������� ����_�^�z����]���8p �����z��k�


f���z��}��5�h��z���������!C���F�E�������:�N�����������W�FEEEFF�t�����o�������[������W^qww�j�O=�� V����c� �Z�J��������+'N���!
$�LH@�{1p�j�|���`�9�'���G���L&��-���c�=�z���C�??}�������#�q��1D�i����<"���3��������q��[_�!�96�J,��{9p�=�R��������]\\�}���|�Z���H�?c�Z�H.�����l��������8��,p������O��JJJ�___ggg��?o����]�tiN!���o��������^P�U^���z����p��Ew�hg��_E��m����>�,edd�-���{��g�;v���]���?�b��KKK�h����m�� IDAT999��,ohh���k������OADO8�A
�&"_u��]z����.]�$UQw�T'''��lg���z�
6�?��S�J���������w��UYYIDo���A�G}t��"Z�paee%{MD������Z�v��A������l��#G*++.\x���_�����
p/k���w�����g��m�X�FcCC�������,Y����� ����c��	

"�)S�L�>�K�.���������g�~�Xi�'ONHHx���"##G������s�������n������'��9�������G�y����f�Q��]9����<f��a���.3��a��;�Z�V���c�8�>m���G����)������T*���#G>��#���m�f��U__��C������8�=...##�s�����7n��u���������
��I8zw�V)_n���UU_6k����2"
�v[��Fp��x�bpp�$E����o�K������h����M�X��Q���-�8�#���#+oE�������������FK}�����>��H��@��������cP���-SI
$�6�{u�2���2�����_K��M�� �L�J�wA��C-�6���G��{[�PN&���
@��F��M����QU�e�t����.�����@�����5���/O�m����93�������6���=J����i
�Zo��foFm���	�h����������S����
�m�����Q#��Fm��0U�.pO���PRRBD<�����j���
��$�V�U*��v��l49�spp�h4h4����q/**JHH





{���~s��{�FDD������������LA��������[�]�v��w��������={�����������d��cbb,���k���rrr���9��8.>>>'''))i���&���g�E���=N�?��+++����V�=q�	� ��f���l�2������d�����������
����&�x{{��������C�����}��#F���^�x18�S@���O>�����d�������qD������w��������.]JDk�����/�(>>����Koo���4A���/N-..6�]�v��5������P��,�ohh "'''�[��"v8�;}�4�
 po+x�������o�����'�q��l6�LV��w���`�R�wn��D������:T�����bQx_8g���}���7���|�����V�=s���e���M�q"jhh��dl� l�=,,�l6�B�K�������aaa��q��_�����Y.�_�~�7{����:����������}�E5�����9�O�5p'��G��J���Kff�������CD����~[TT���������<v����<�^�q�����(22�����233���������'�x��_8::��O��m����'�Y��#�������{6�}���������bQx_8g���}��b�7�F�y�����bbb,X���:c�������S��Z�j���:�n���~������������B�~��-\�P&�������*���)e��?����4��z���}���T���4����q��-�?����>+��ccc/^LD� ���o��!�V��X,aaa_~�� �|����222����V���������������������{��$�V�e9�srr����h$"�V�T*�h������n����k��F����U*�>>>��_�_���o��C��	x
�Y��]Th���/���d��P��'���?Dcc��+V�����5g�D��l5�g}_wQ
�����p�����B
��h���d�����;4GEEEEE��e��������i�5�


��@YY��`�Z��[TTTTT$�����Z,����`��P

�D�5eee�.n�C-��
�D�-++��L��r��e�����`0����-�����X����/_��:p��Zw��QII��h����f���_��U�N�X��"�u��X��RYYy'b-�� ���;�b�������!!!!      !!A�y�///������W``��+�:��W��T���ik >>���K�R�[�N��������h4z�>!!�%��_yyyHH���oHHHvv�T5�{�n???oo��;�F��]�|�R���s����h����J��j��������n����G�J�������v�����z����7n�������������KUfcccLL���OEE���@``�V�
c}-�Z����N����������C�����-7��v��������o��=R���+W����
&��e6������===.\(U���������*�9�������Ju�+W�������Gii�T������J�{��'�q�<_ZZ��G�V���.^�(U�		���
		��b�{�������D	/c��������3f��l�����OO���
	��={����yzz4H�2M&��%K��k��2���F����]�taC�!po�Q�FQTT�}��GD�����$=��:�������K�����YWm���R��~�	&���EEER��o_�^?s����@�Bq��)�����T��:��O�>j���F�!����"""������:v�(U%���k����k�Tev�����q�����w���D��S��+W*
I.�|�
u��-""B�PHU�9ADR]UM&S��]�H��Hu��z����Kxx��i��-[&�����JDO?����c�h��qR��D��O�����J���l�Y�%R�.\pww'���$�*v���D��c����[�<�����W�TS�Ne�:��O?Iu�DEE����/�,�9�P(���/U��[�N��a������&M�$��� yyyr���4h�\.���������`��T����/�s6((��v��!U=������j���m�������>+�`;g
����$�m��2|�p"���'�J"p������h��%��m��Ir�2d�����s�A8t�����R�[Qbb���Ylyy�������/��aaaK�.�3����V*����O��g����g�����p�����X��0���~~~�����{yy���H�a}��G
��]�%�L������-Z����\����_xx8{���o{zz644H�V����u0''�����8;�����o�-Bmmm���{��)��[�n���...������=�k�b	C�:thnn�=i4������~���x�������D��b�����;������s�=g���["��a�$VQQ�J�z��$� ������+W�|���������hO
l����������;;;gffJ��
�~�� �������,�$�� ���������'��&"I��Y�eO����.]���m�Z�)�_�~�x��-[$����R�^���O�G���ED�V����/�������A0��^^^'N���;v�������%�����}���:A80a��	&|�������
n������c�=��3b����;v��X��������������$�~�A��k�.�\����y���s���Z�R(��g�}���������xsQQ��/���������_�=A�={6�������=��x����E�,pg�����;vlll���-��z������{���~��iS�&a(p��Uv�;w���y���[}M���!�?�P777�^�n��.�`0����w�}��w�yG��6m�d�{�}�\QQ���ID��������{��z��B����ju^^�J�R�T�a��i�>u�Tv�?|�0�t:68jO��@�<���
���=���O]\\l{�����m�:���g��^?u�TI>,����g����D4m��.����;{����j�=���1c������� ���X{>���#22�6Fa���7�Y_�5{���KD�<,���@�T~���#G�$�={�|��W��3p������R������?���������}{�;E���j��v�lEEE@@���[^^�=�����x�z��g��sm����[�Z}���e���3+/::�}��555������������>����V�����K�V_�r�������;w*���`	gQ"po���/���^�z��������[],g#��B �l�E�q�Z���z{{�s_	�j��������w�.--��};{6��2W�\ID:tX�~}``�R�����3��������k���Gk:u��R�Z=���:  �]�v����g������&��t�W^yE�h����.���k���?�p||�^�?���`1b��;������(���c�����,Vc�Dd�p�V�U*�������*�***��m���S��z����C��5����'
���]]]�����ju��5k���]��5�`0��[�o���]S�����+V�x��'�(%%%++���Jeqq�=��I�����3i�����*�/|��TC6�����H���s��=�cO�o�^ZZ���-��;w�����;vQ�����_��j�z��-[�
f�9�t�R"j2x����DW*��}���
_�QXX�V�SRRA�>}�B���do����A����-Z��h�������8��
���W(qqqo��
0���~��V����5��������1f}x��?~|\\��-=Z����_ZZZYY����Z-�<y���X��u9��>}zyy��``�w��V���h����{�1v1��u+{ZXYY����\.�����Z����"p���d������2���i�W�\������G�����9f6
"��7����������@[�y��C���;������������� <���z����pX����n;�x��A":z�h�u����!}��gj����***t:��?�lO�N�8�=�<p��g;W;�<�g�,~�j��.�-x������F�F�G��{...fQNff&�q����;>�m������?��s�7��wo�_����� �d25Pgcx� <��SD\UU���`qqqii� ���������ai[Z�H��{w+V�

b�R�11����]�� �G��Q�bh;�����}��-m�5`4������*����>c?:�I�q{���b
0iii%%%.\`������`���P����|���}��w���S�T-��y��������yq�����Z�W%�����a���WO�8!V�R����b����.��
�p��	qB?+���m��C5�2k2��=�d��w���-�����q���-
��?.���0QFF�m����{��K�#�,xeSY�f��?��-:����W^y�U��>}���������?����o^�#�����v�J��s6))��bXRR��h��_/g���[�',--�0a�8�T�R�g���]�m�-}P���_�q[�������[l��y�Z�����d2�����r����;#C��1��l�b����k��I�	 ���k��e�9�����D����j4�<����ly�V��l��T0���lW�2h�������V���h��={�����6��m���c`�Z���g��T������
�J��5j�-�yr��E�
�)GD����5k��&7!6����[l��=��+Taa������!!!�'O�U�����uk���Z�J��x{{w����%�X|��Qb�deeyxx�h`�e=bT��p�^��w�4f�����a�y�<==�d=z��GSSS�H��
<==��o������j������*N����?��1���Y���>>>:�����u�jjj�D��'O�<��|~~>�Y���m�������������X,��_�h4����>����������j���w
��a�����O:�.((����������j�^�OII!��C�������z}�=Xg�=quvv��,X���r����_����=<<���F�)F0>�`�.]�n�����ju�.��;w��46�b����FkQ����}��]b�^QQ�&����7��i�����`��������7�(99����oo���������l:;�#""���Zt�rww��e2�N�:��jg��i{�i��'vE��������x�?w�\Kwv�������In/��b��Y�N���buuupp��!C�H3�B)����a����������g���d2�������q�������lg�������������iT���UXX��Oxxx�����12\�z��������k^ln���������Y�$���'v���(�`04�y��W_�3��l6�;V&���������4oooI�	�]���^�u����-j����7/g��s'�&��������n���m��wq�s�� �)���.{Bb{�5kV�{D			M:flL�g�����>}�
���[���:�K�.UTT�[�7�|��2Y!fc'-��]��:t����:�.$$�����T���{����W�}���t��������z$��������m�GIII��=z�����f������'�{��a��������~�������Y(��K���{���Q�z�Ay����B6<�����6�q����ue+**��Ulllqq1��7?^a9d�Z�ofPw���(jg�(�{�9�R$����:��=m��g��Q�
�}��F��8N��>|x��=�������<g�V+{�r�Jg���9s���VYY��������=00����1D���u��%6Q�E���W�|�b�{CCK���4�<��8qB\�$ng�L��ZVV����=z��8�����Y�{��	�yk��.qb�Xf�944���/''���d�����l��EQ�o��j�������@�V��>���t�]bb��������B�]��|���b5����x�fg�7��+W�d��-[��<yr���-j����.8;;�1�������Z�6**��kHx���'X������������E���M�t��1U�
)**b�3b�)� u��A�4X�:u�s���/vMd3�����������6"z��������������SVV��mE^-���~�R�z����^�~=�O7��|����C��^����V	@Y���7�E�nU�|��V,=����5[�%^�Y��xxx4�;t���B!>H���S�v�l����H���E5���ld������{��)���V��S�LG��2b�����Xg���m��5�,�����������t��
6������������F�X>
A��k7a��v�:�l���/�����m���|�I�EEEz��ui�_�f�9$$�}��l�����k���o��-jQMV���m>
V?��ED���k�H�m>���R�F3m�4q�M`50b����?��������������O?�b�$�V4]1SY�k���"�����e2YHHH�s������-S*�M�]uuulj3g�����G�5f��&T��]�B�4�b�DSqN��_~�2���l�|�qww�o�d2��R�l�r�����!C��ov��q�����EEEl���pl��E��wg=�*�-����������]�JKK����������L�����t�����C��y��p�F�qqq���h��Px��w������q���o�dX��j�9����3�|�I�&]4tS�/��r�
[�u'4 ��RSS[�������y�v��\>����/�X�n]K33|���:�.99��R�|#���"%��O>��3�|��Wl��6�j~�v�X�����M��%�7ox-z������;v���6�.�����c[�!l���9C�G����,�k�m��������&�lXv����X�#�$z���������4�����`P���|n���y������jq�v��M*���v� IDATJ��������!F��B�iJDl.�J�b7<���n��/���E��7N��������h;b2�Xr�����^^^�t�����k������,M�Q2����j�V<��_>�fw�����T*�FGG_�z�d2��3�����o[�����===��9���O?�����b	�~���O>��u�R�Le�yzz����Le�/_vssk�X���T�V����d�����>|x��y������tqq9q��������o\�:���3�Z-������&//o��	���,4�
����W^a_�"���Ae��5������N�:988���,!�^�g����%m�Fpp��7,���f�
��[q���?&"�8����r�������������%nhh`O��n�*���C���oa����_���,�r��}9�s��+dII�����i/^����Q-e4���2-I����~b�8w���qba3���}+r���7���_���|����?�8K�h�����A������l]��CR;�uqq����Ew�[u�8��B�������,l]�fMKGA������vQWK�&TGGG�Q1po���jq�4[����1�g�����~��q7o�����+
{2��5p��U6�7�|��GEEE�����}�����a��
r�������C���E����(�/_n�ZY@0`���������z��M�c���#������������T*/]�TTT����k����\h�����)  �M�����Z�K�{���-�	<J�R|�`W�C�������l.�$I��s��)NNN�����.��Y1v��6m�m�V�������YYY������
��M>4�L����Vppp�n������ 6���Ck���J�8q����Z�.))),,dc����.���+���#F�())���������!44T��}���
���o�s���"p�{��u�v�2������g3D5Meeeee�N�;r�����.�P��4��9cg%���LJJ�X,,��2���&�X�(;;������e��y�.S�����`7�V����D��l�1���V��lG�{�1qI��/���l�������X
1p/,,tvvnu�'6�ts��*V�~������0b�1����#���Z�1`5 ��+W"##�D:�{��'�QAA{QXX�>�����.C�u��6�����]|X�&]���������������)S$I�HD������NNN�|Y�������M���dttt���A��?~��W��~(A8�cC�,������2��UUUb
�������d�����3g��"���5���K�-��/��5��sV���W�bm����r;�����\]]
�5����:��m$ �����clO<1��m:)v)@��z,�T(,��TX��2K�T*�f
�b��&%%I�5�l��S�N-MKrl�����E�vf=b���u��ju�g	�[�*V��a�$�Xq���=Y���B��?����*�J�V�3 �$p���;��k�t:���(��J��/))qttd��$4�|	�uH���"��o������l6v~~>K]oO�v��b��Z�3����~�!��HD3g�|��W%Y�7q���^z�e���a�N��8���v^��������5���Z�Y�����AR��|�.}��dIu����K��������g�1c���a�]b1���]���T*�m���y��5c����H ??�
2I�3������b����������b���]�`) 8��j%��9b����b���z����IX�,Xg������}��%�������l	[�|PXX�r���f.]����_:�6���6l�p������F#����5ts
0@�aEE�?�����rXdee�_�3�<#�S� �)(..f��u�����j;[,[-���E��� ^%�~C�@��v�����z;k�����_t���.xzz�(��m:Z� �<y���������,{�i6�sss�����6��Y���[XX8`��Lf�9{��	��RVVv����������
�[O�������D�{����EEE,���1+K�d�L�V��?�����T�����(  @�b��"b��v�&N�(�����A�����CXXX������l�C��e=�y�=l�CF�C����X�Tk0�"?e�~�=�o�f	�$y:$�K/��r��������7�pqq�v����vuu��I���s�2�5���(BBB������2�����]��/_�LD�\���]�n��b���w���R���d���p�����p���4q�����E����'���
��*;;;11���?g�.�3fl��!??�e����h���_��cM�l��=111--M���aCRRRjj*�-(������0�Bq��I�J%����;������6Je���K�,y���X�%������{����:uJ�())����h4,	�TG��G999yyy� �~l�e�?~<\$a0�#�!C�����8v���S����F�-���+$++���&<<\L�-U�J������ ����[VV���0i�$	�����]\\F�������j��m�I�b���X������m���c���PRR��J�����Z�KBF�����-�j�5p'�eOr5
����d����###���T�fs~~~��]����W�Kf*��'O�����op7B�p��
�w���� p����; p@���;w@�������5k8�+**j�������*{���7�Z-�q��}�_���744��@�����@�m� ����O>y���^��

��������k����SSS���l������������������Pm
�q#G����z��W�o�ND�O�^�`Azz���>z���>�`�����w�}WYY��������s��:�n����|�����h�����m������W�^���������


�L��}��~��O�>���M��|��76l�p���.]�?~�o����;v�x�}�i4�8����{������g����+V�^�:++K����m��1--��Gqqq�����~�����W��~F������?��������mKHH�6mZ��}���s����7��������k���NNN���aaaD�k��]�v�Bv�����V__�����(����N�:���yzzn��i��M����{�����7e��8����������������.\8e��k��=��#����/{��}���I�&eee�����������M	�&��-[A��� ��g�
�0|�p�w�yG�RUUUM�8�����A��i������W�^��^�z������>��S'Nd&BMM������������uk��}CC� �w�&�c���8q�����UUU*�j���� ��_�"�����F����K������"<X^^^ZZ���VWWg4����P���fu��������������h����}��8V���c�=���FD!!!�*�b�X,��8::��j"�Z�Dt��	��*NNNNNNl�LLL�G��������z"2��D$������>Z�n�q���^^^���nnn���>>>Z�����wvv�q���W���.����\.��l�0� xyy5��VX	D�P(x���^z�d2�d2��x��&���WEO?���?���R�tppprr�������?���={�4���s7�������F�-KII	��q����������[���������/�x��/\�`[BHH��]����t:�[o�ED...uuu���� 8;;���������Wbb"%$$��������X,lY�����_\\$�� �����8��b��<��L&����Z�l��q���'�<y��������kkkx��������������.\����������e��!M���+d2Y�.]F�={��a������j^.�;99�7�������^�d��#y��;vX,�_|1==]���=z����z�


��+D�����0����_��wwqq1�W�\���P*�F�������������w�r�
���uuu?��s�>}�fsnn.)
���B��<y�����p�Bq��U�������C�����t[�������?��gO�\.�s����S���Z��C�����s���D���DD�N����cw���P�J����q p�3�T����; p���; p@���w@����w���� p���; p{������F���%\�x��O>�U	� 4yq/3k��=r��=�|��Gv���z�U��YYY


�.d���v����v��1x��_|���+���b������M�s�����{����7[RR����q�=^�W�\i���_�������f�3g��9s�6;L�<y��U7o�Z�[�l����8N&�����l6�����O?}���[�c6�sss[�V
���������������'''��q�V�466�����)d����'O�����Wg������8������_�~WW� ���L"���������)))�����o����s�BAD��gffo��%++������	����f>L���2����/_�r�m�j���&L�}�J����s��MHH���������ccc�-[�'k�������\9� ������Wl�7�M[��m[�.]������/\�p���[��d�������O���[������{��_899999�:l�����8}�tZZZFF���+���qu��U��m�����>[�p����[WW��k�����������O�&����3f���UUU���xxx�<��A������������z�j�=����/_��h�|����b����� ��,Xp��a"z���,X����}�v�\���3o�<�Ju���y�����+o��1u�T����/888���M�4�W�^�/^��d�gggoo��K���233s��!�'O:th[��7n��5k��a0&�����
&"��t���?�P&����%K�t�����#G��[�����_�h��������%Kd2�q#G��;w���K
��/l���IM~��w�&�l����:u������_~�������S�>��C�����?����1z����,���g���7QbbbLL�x�_�lYNN�������{��IDuuuj���o�%�;vt��%--m��9m�����o2�"##333�r��V�9����>��{��y���===SSS���,���#��#����������z�����d�����v�����1c�X,������N�a��)dGRVV��O8::�������k�������������Z��3,�,/��TX�RQQCEA��
HTJ���Okm��D�
mc4m��mRD�Vc�Z)�J�����n�+Z���bys�]���?�{���EJi������sf�����9���\.���IJJ�ko�?~������a������fsiiiXX�q���?��^TYY��`8z���'OL&��#G������
�������nqq�����U*UAA����"|���tuu���_,��������F�X<����R�Ht��u�D����x�b��c��S��yN��wN�����������$��y3c�b���HMMMMM�8...�l6?~�8$$���4���;tvv2�N�8�m_�V��y���'  @�V/_�<�+,,

�!���^����/W��>>>:�����			�f����r�N,�J5M@@455UUUa]��o������W���C����5���j�~~~"�(11155U,�T���a�XII	�_�>;;{ ���c��).��`i8
���/����*)��cMMM��'N�T�T���������PRR�;z�����B���ic,33�������u�d2����?>�����^�g��������u��S�T�F,sg�jdd����\.������\HNN��������;*�T*���ck���cubbb��%��������>�.DEEm����������o�X0V+++�Z��H9��L&���|���*����6�H�T*��~��%�^��;�@hh���;
��Q�\�knn�X�������j�^^^b�X�������U����}����(8{�,c�`0�L&<�;v�� �_	5!��%-���v��I?-���ua�i~~>clll,(((::�1���"�����"��W�Z�����j�@ii)c�����ceee�C��1�������o����qS��9��������s����:4���G�-Z�(++���s8������,������q������S~n���!�
|��yU�J�V����,		1�1�^����������������B%�;f�dqq1LNN�a���,���CCC*�j��U���������c^}�������)����N�:%T�h4����(�tj����6�wg����uTu��-v�~��gh7�#�����f�XU(�����=<<����F�1���_z�%�Z�����7�x�.21Vgb����{�nu=�g������bu��������F>/\����������'cL"�(
>&srrp�~����/@EEcL���jl�������R����W�^���e:���CA�J�!�Y�&�c��;������n��66�
��D"HII�_333kkk'&&�[6,,�q��i���=&&}���[JJ
�������A�R�.0-������bqss�����w/."���&bE���---J����38��E-]��?�_��N�]
S%p�L��
��
��k
T������''',X �J������O"��Q���.��������������E,_�xq��]B%;;; >>�l6s������9>>.�	<z�hxxx��-X~ee�\.wqqL��s<U������5k���SWW�P(��:
=�������=%���P����/��#
�����/���+�����*�Z��*��R��X5����^�0z��{��[�������U��/v������W����,��&�Z�8]�S�T����o_^^���g��[�����;;;�fsBB���������Z�x��W_}�k��������������������~�������w�{qqqAA�����E��!�N�E,�\E��aOQ2�tGV�X��3�~����;�D�O��� (
//�����7��z��	xzz�a�������?���9�k���J%�+o�g����@,W��!�����3���m���r�J^=�^�|9�&�#KF%9�suu]�l���.��+e�������b�X���	o����		�J�����a�'vV��\����
�L&�������6�����)�S�����e��aV��|�b��N�_uq���$�.NQ�&�r?���Y|b�\��i��BBB����	<��$Itt4w;yq���o���OMM�����i�31� ����I�X�W���=cp��������c����.]������_c������@zz������f��><<���;22���v����n�*�I#XmNQ�4	3pl��^���W�n��8����������9��r�����������t�������f����:��?&  ������z��m����/Y������V�������J5��6	6�-��L�?��y����*$##������'oLCXX�f��uh�m���i�IDAT��'���f�9###>>~�5U~��1��b���N	U����K�����y��5�@�,���SSv�������l6���.]��������^�z����xJJJ^^�4-���������K��A� �������L7���OZf���	j��JEEEpppDD�u``���!!!STq	!999���eee�w�6��+V�ek����}��������Jmmmnnnuu5�����?������h4��'O655��q#>>�5����U$�����FGGCCC���
��*pq�
�V+D���Q
�"""��o��r�Jtt4�A�N�������&����S���i���n��������BQXXx��q���������a�����Z-�c������������;::n���������������644�B������M��HAG�9���|�v���<x����������z��+VtvvZ,��[�b&��a���%%%/^\�v��7233cbbn�������>�V�h�"�L��h������kkk�F#&�OIOO����jOOOGG�T*�F����&�������Y�\c������|�MTT��������������l6GGGc�����+Wr���oFEE���?����c�/_~�����N�S(7n�����a���~���k������ig���~��������p~&���t� f2�D�����������T��^�t���W"�H$__���/����������-c���==���8`�q\{{;���v�~��!�P___x����V+c�����JZZcS�1]d���|]---XNJJJJJ�09G���'���v
3���	�DU1�����y�����+E}c}}}�4
*����J�����&�	��$�L622���,cldd�|||�_�nW��LG�CCC�NxGGG�H0��\.��]�����uuu��:22��:o�<����Y�ccc>>>����p�$Vk2�N�>-�KXfrr��U_)`�����C����p�T�qk��p�O|�!������������@��o��� ���Y�V����c�EDD�u	��r�����	�Y��;A<3�l������������
$����rlO����_�DX��F��\^^����?/<��������g+,s�y&n�N��������7o�^�7�L����+i2��t����:����x7y
��}�����c��fs[[[[[������*�_UUe��
?[���'�����2;�P^^.|L�����0��y�S��^=zh�o�f����x���K���H���3g�������;�����c�����n�"�~):�n��e�=��t���@9����1���T�������?A��FRo������Sc'�?4�NL������n����������]�Z�V�BA��Rl6����H$��Nd�	� � ��+��AAA�q'� � ��;AAA�q'� � ��;AAAd�	� � ��;AAAd�	� � � �NAA���!�[6IEND�B`�
replication-lag.pngimage/png; name=replication-lag.pngDownload
�PNG


IHDR��!J�z	pHYs.#.#x�?vtIME�5rg�� IDATx���y|u�?��L�i����JK�(rE���\�[w]�� k�p��h��U\uQW�U��R����PD9Ve�%�i�������cAD(B������g&����}��w>�4M]�dN�;1�1��;1�1��;1�1��;�;1��;�;1��;�;1��%�iZ��Kt���!�b�QkUZZ��7��L���������K�t����F����:x�`LLLbbb���,�l�v���������@���
�����v�����b����g;v��e�.�o����o��u����:u���			���hr�����o����Z����p8�1�������f���#G�������Ox"j�4"�Vj���:u���z��O��+W>��1c�#��������v�=*****�n�����n��l6�����;u��K�a���rrr4M���������{��I�&��I�&5��%�rll��	�����O0q�D>����c��Z:tw:�eee������|�`mm�����������%I�e����7�|���F�1�`O?d��]K�.m��]NN�� I�y��59r���bC��n�w�}o����o��������r��,Y�~�zq�SO=��]��K������MD��;�Z;v���cEEEUU�?�/_�\ll����t�������2��!beUU���[����r�>�������^{��W_0l��q��y<������233;=��[�l�2�?������������A�[��k����w���QU@QQ������k��v�����.]���p>����{��7�p����

w�+���X�d������O��;�����>�����3�L���x�bEQ�|��G�z����O�<����?~�W_}���`��%b��d����|>���{>�������
0�>���������������������5k�������bd��A"�[���iY?o��o 22����������������EQ4M���kt��A�=��G�>�~+++-������q���B�=����������p8��*�t:#""X,���xq�5k��������
������;�����m���g��V�522�`0����?���@\\��S�^��o�x�W^y��)S���&=QDDl�!"j1Du��s���#G��L��3gVVV�\.��D�{��q���=[���}�4��pl������)����[�n��y��]�����8z���_~�c�����U�V�*rpp�$IG�]�r������7FFF._�\4�2d���z������/��r��Ef����^�~���t������}���-������k���v���b�
#F�{o��#G���g��={E���y�m�����S�z�^qI��+����M�v�I��z��D��fee#�"�����w"�FT�w���i��u����}���"��kKKK����9�^/�|���ddd\d�}����KQS�����;�5i�f���9r���������v��7�x���N�r����JJJ���+III555b�(f��V�7o�����?����;w�`0����g�zZ�H����������f��9��?~�b�t��ED�&�3egg����{��p����	OD���/]��u;v�����l��n���G��`0����~��+W�&���Xq��{��O?-�:thLL��'�;&�].���5u{�����#��>�t=v�X����W�^�}��������?~|yy9��[QQ%IRFFF�.]���{������-[�����1B��s������X�h�������$I2���
�b�)S������9N%iCC�x�~���#F�X�f��u���y�f����#�������_���c/+++((x����/�K�$��zs"�V����Z�{��w�}w���s��������E
~��q/���W_}%��z��w���<y��O?��G�K��$�\�����	��$I��_������i��\.����7n����)77��G5			�W~�&M�5kVvv���������_��iZ�}���78P�����C�
dYnrm���n���k��}���������/~��&��x��	&�����O���7r��]�v�p�
|��;Qk �����UUUb��!
 ++��_|���JKK�F��~�+l+��Z�*�T�,�1���5�+����������w?����n�UVV.\��h4�X��O�>���ru�������Y�f��*TWWw���M�6?��4��+z��-*�}��E�s\�O��M�k���n����K7n1bDtt�v�O����U����������w�^w"�����D�����FGG����<��U��m�w���������*��*������}���4y���d����UU�N���>y�dHH������X�<4440�>|����III�
k�=z����>����N�������������<QP5j�H�555�}��2��
���Rq�����d�2eJUU���������_Tr�_U���M^�����?1�]6z�����%�DGG��X�]��n6����M�6n�h�����<k�����w���a��%����M��Y��;���c�n�*FF���{������={���555k��1��Ms���l6[dddIII}}����v����$I�/)"��`�@��~��:�555���bd��m�PZZ���S��<y�9N"���\o��'���������I
�~�m1������A�����V{q��"����%�V���T��KMM
\��_}��w������O:�$�����?z���n���9��������2�#�G�nr��������2Mz�G���z�������v�����x��!C�t�"�_y�M��N�h�8p���H�`�-�����M =z��M��&%%����H�qqq�������_0����.�|��7�F{`4��m��������@AA��D�Ue��Z����1c�eee�g?����������Ijkkcbb����?���g���k��1c��_�(JHH��	������������dd��e{��]�j��}�����������[


���.�	&>\����b0V�\�u�V�1��~{YY��E�������m�Xl6��c����s�)��������g����^����#G�*���>}z����;�x��/��b��9�;w>G������Vkii��-[���#FTVV���.\��c�egg�_dee�W��V��w������v��)p���9V�U�A�������N "�V���s�)�|�Z��{?�{���w���s��=z\�]<x�W�^���{��9������|��=������������z���[H��{�����������K4����������?~<��D����ND�����K��O~I���O?�t����-r�\����m��s�|���m��t������W�9GE������\�l��y�x�V�:x�`bbb����_g��]Q�u����_���C4�_����/]�4,,��[ooNm��9�!C�9rD�:u�m��v�RUUe�Z���N�<��s��x���CYY�XZ�������~&EEE����q���+**�Vk����
�^oIIIYY�N����=��0~��/))������������l�k����"bp'""""�����1��;�;1��;�;1��;�;1�]��-��KJJdY8^[[[WWw���ieeeL&SXXX����
EQTU���w:��G�4��j0�D!"""����U�}>����v���������S'��E�NNNNKKKKKKNNv:��[�3&555555##�������Y�&---%%�k��'N��|����W���;w���w��N�S�4>W�������|m��u��%]�v]�p���������1C����].�c�=���s�����;����q�V�X���?���f����~_~����#����k��K�,�7oI���o���x`����y�$I�s�����.'�E������[�nqqq����w����������ov��]^^��K1�e������
>�b��<yR�2d�,���X�~����hDDDDD����^c���r�����/�����855566������G^w�u<����g��Qb���DwMyyyDDDpp����CUU�{�xRR�������riI�]����������;�LII����].��M��<����nw8����cF���jCCCiii\\\dd��2e����b�����fk�~V"""""������?�������?b��^?a��/Q�����|��Wl����~�����o�����B���a���/[�L��l6��ZTT�?�����N�,���N�(�/Y�����������***jkk�\���'�n��KEQ�t:>�����������1�K���]��UUE1�v��-���_
�h4�����+W���(,, yLL��C��y������b����v�
 //�?����D���"""""��G�6��ZXpOKK{���n���_|q��_}���b1�LIII6�-''G������,�w�>}�������X����\��4s�Ls������<0a���_~�n��]�����#""��?{�l����������w""""�&�������B'N��q��S���j��s��uq�\iii���j����#**J�d���}�������_�}��5w�}���5��
Z�x�^��4�����ot8��%&&X��s,�~��)!!!|jQ�����j�iy�@II�hk��������d\�4����dj�DLEE��(������;�N���i��j5��w""""bpo������Rw��IDDDDt�cp'""""bp'"""""w"""""w"""""bp'"""""w"""""w"""""bp'"""""w"""""w"""""bp'""""bp'"""""w"""""bp'""""bp'"""""w"""""bp'""""bp'"""""w"""""bp'""""bp'"""""w"""""w"""""bp'"""""w"""""w"""""bp'"""""w""""��G��.������S�{�!�V�U�e���uuuL&SXX��M������x���
EQ4M�Z���?�t:=���'
1�����~�m�N'�

�����qcLL���JMMu��b����@II��3>���$=���<���ynn���n�N������5kD���������n`���o�n6�%I�������.I��t���m����E���|999����}��,������� ''G��>|�d2M�8q��%O=�T����{��;v���fff�3&++���h��9s�����`�X�n�����u�]F�����W%���*..NLLl�si-���+j������?��5�|�w�.//�������WU@vv��i����X,'N��,���i�����_/���_����WR_____�}��#G��T-������5j��Y����(
�.]���b�������xF����I ��bcc����D����$$$�q�!nBDDDDt����>b��������/pp���M6�v���HOO�3z�hUUJKKM&�^���?e��1��f��m��&z���������^���q7�I�-q&N�8����0�m�����E��|M�n�(�����������%I�d�r��j�}
�Uxu
W����,EjZ��I���k�V]]�t:G��d��
���U����f�Z�EEE�c�/_.�rppp\\\ii����K�,��r���2***jkk�l$"""��0c��F��pO_�{���O��SX������Z^�]��9s���/�4�v��-�d������`

������PXX@�����:t��p�e�����b�b����v��?��^

:�����U��5Nl[��U���F��u�i4@
r|{�w�����G���l6�X�Q����d�����������5l����d2��9���s�u�v�M7���K/����n_�v-���GDD�?~���rss333�M�DDDDtu��2lx��[�*�� �0����l���)��k�{na���,����?�|����������`�Zw��%v�7�����v������3f�����O�6����h44h���z�^�4��u���HLL,((�Z���&��NDDD���Uc�v<6��N���I]�Z��,�"|�����jtj�Q�_���
�%%%&�)""��]��������WTT(�b2������}�jd|||������0��w"""�V���X�'��h��\��!r��������V����k����c������w��������4�DDDD��OQK\�\��8���?���	���U9,E.��i]�4$�j	�5��H��{p�[�o�?O3~r���+DDDDD�WQ�m=���'N�����O�����}��M������^w���
=�?����!��^w	�ldp'"""���������u�$�������Q`0�9�Q����YM-W�>��N��"�~kJ����w���s^*�;]uDe}���T��K���c�l��Q��UN���������[j�TLd����q��KZYgp'"""���OQ�\u��S�vy���}��0�� }��=��vp��}��~� A���#�Z�7/�k�0 ��>w""""j�6�������Z�EE��
g�d),�H���}X����6����f^�V�_���]��������Z��~�u���{���G0A'KI'�4MS5(j��1�p��_},K <��������+�A1�Q�R����^�p��2��'Y��M�>x|qm��r���i��G�|�o,\�Q��c0�-EF/�"�����NDDDD�AU�{��og������#4H� �dM����^�1��.:b���q��b-���q���|�h*�����l�2 �;�x��������9��^'�� ������������wL�6|?�W���P��$CU���y�J~��DDDD�RU�����v�����d�I=M��uc������m��7~�ATWB�AS���q�?Xw""""jy��f��a��o����A/�{�i�O
��:�7�^�1�\��?2�����
����NDDDD�lNT�,\���7��%Yj��+�%"�oF��O���;M������=��
�0)V���������������(��i%v�*��~����7�{���?�'k1{
L��3����kH�x��DDDD���v��KWo= t�N�4@����^�	k�/�h�]����B� I�z�kzj)3��NDDDD-��mWo;��������NzSF�����De~�	W$�Y�q�_[�0���n���c�K�P�W�/u���Y����o��CS���[�$0�����G<��?�O{�����S(><6[W�`������#����A�S��������>�u��.j�?9����6�`I�C�hq������/��`��x�O�+?����k�{hK�
V������J�&���S/�������	��A�[hj+�DDDDt��4T���4oEc�]Ut�p!�F����{��	I������V��V�������RU�������<4Mk�������gDu%$���(<��=-�DDDDt��4�j���/gm�$I��E���{����O=���P�
��6���hw""""�fPU��������F��6��#o���|!�<���L�����'�=�DDDDt��� IDAT�i���Rk��_��f�Gd8x���6�nS��NDDDD����!����1�	������Bj��kp�$lp���1E�DDDDt�
~������������k��(9
YUA�^�lS�w""""��f��a��"�k�����S;�d7��>�jf�w""""��&�]���+������,�����/�to�GE	�A�y��?#"���r������w�q����4����������7���PE�4��j0��N����0������""""���=;���]������k��U� "
wLkMs��Ze\.WRRRjjjZZZrrreee�������$��%�KJJ����x���_x���rss;w������s���G�S������wJJJJJJ���].��i��""""jv��>jw�Tm\���J�>+@�	P������MUUUrrrhh��O?���S\\��W/1��S'UU�~����~ZU���tQ}���~�t���~x���)))��O��?����G}��������3��];o�<�$u�������-Z�h������o��>	""""jV��|D�R�������qCU���V6W-�UF��'N8����{�p����H}��������������������:!!a��-]�ty���L�8Q��W_}��g��5k��by���|����>�hNN��e������_?t�P&�i��a6l<x0��������S�n�����zMQgM�o������|���PU�t{k�nZR�]��9s�=z�=���������>))	��(�t�"��GUU��3j�(��~���������X�+11QUU���D��o��Qs����s���Q�����/�������p�\���:��V��� )))N�s��={�|��������v���p�����=z���


���&�I�o����)S��X,���Cqm6��b��Q�z����U�Tmh��6��q2
�����H�&�:����E�*����������|�:uz�����_\��R���5t���<����{DDDD�I�����w�{��L�lhh���@BBB�>�IB}���������v��$��w-��.2����@������FYn|6l�V�6��j����|�rY�������JKK�N�_�d����e���vEEEmm-��������^�{���rG�$AS����o~��]���C|�>d���C���+!�7�����9r�;��SXX�����1F�����E�L^^�4���������
������C�9�L{~~�x �<x�k���S�[���s�+=~���z��
���������S�BB~��#4� I��s!�p�3����0�LS�N�5k������;n�������0�����#���KNN��O�>yyyYYY��
{���M&���3��;�[�n7�t�K/���/����k�<xpDD����g��
 77733�K�5��.�Rst�e��Q��V��h�������>Zh����'Ok��v�m,��t:{���p8X��;vDE5�4n����B��m6����g��!���_?m����Z��8h������z�L��zkqq1��������z���O�:V������O���*�NI4�R�"�bW�\�$���x�������+��'&&^��@mm�����M�tii)����&7���P�d2����;�N�j�H�~^����`��?�0���y�l���F�v�#w�{��u��J�l�����\i���{�\U&,,�I��;3����g
�g2�!���������^�v;dy��{�dC��~Tj2�=DDDD�3���V~u������h}Qg�(��!� �-z���NDDDDt�$�7����P��/�~�g\�*�+������'�������~[�|�y�!����^�2�mwQ�s�����7@�����~�������������A I/�v��lxG�	����&P��]Rp�����TJ$ �]Tj���:c]5V���Vd����w""""�����}�v�8���^�m��NDDDDt������,�������d�������j�������$(><�~���[����rI��W/j�n����_]=���;]*���~���u���ap'""""�X��<�����5xlrc���s�\U���NDDDD�����D�4��3�\xw{C=^{��P[I����0HWW�e�;]'*j�l?,�2��q�6��|��
������M$�
��{��'+�DDDDtI,\�yUM����������|�o�w�1s*J�7�� 2>@J��m>Yq'"""����>5��B���4DG��yb��pcM�$!����5N��@SQQ�W��@��_�S��NDDDD���g�A'����C~��K���P]	����7��5�t�N)�;5�;{o�g�$Y�66bh����eu%�>�W@�����",���c����������9�5x'�[�z����5x�od��P�y��;7�����!�@UfA��x�MN,�;5W��������}���O8����/c�k�z������G�Ax�uD�rb��������T�f����� ������G:���T\�(?�MKa?��#4#A�i�I�����7���ep'"""�f���]O���YsJ�$	�u��	��J��A�6�x6���*��Q��NH��O��Y��s1aB�\�M��DDDD���l?���H��i��
[�xVf�8��v���Qr�_�������`M��@Q[{<���\��������.�IO���R�A��a@�����I��XT;�i@e�A�`5�f��
�8�0�0E�jk\I�����������/.���']��I�w�V>X��z=����������AU���`�F\;�KA�(�~�d�b�������m[�-+�C{����f��0� 
	0�1�k*<x�h����0pb�����3�����NDDDD�T-�
(������x\�0Ce]hc����n��PDD!21m0pz�%���NDDDD�%�_��`\p7�~��YF�����n�*<X�x��:������NDDDD��Y��J(
�z%G��ccp@�W�!�Z��|��r|{���,���������|��n?�������h��N)pauAT���I���t�����g��"��?������z+++GCTT��������`2�����{�jZYYUU���o^QQ�(��iV��`0|�����x<�Fcdd$�(DDD���>u�1�b������2A���XX�tM��#��d>�����yR����P�mb"���=f��9�������7h� M�E#��u�����\���T��
 ((����@II��3>���C�|��x@�677w��n�[�����w��5"�WUU����n���l��o7�����%�(��`?��>uI>kM]$�DY}��qT2���.�I�%0����x}�*3&���I}-a������iZ��]�v�����{�0`�������^UU���`��yrrr�z����M&����,Y��SO�o�������cGQQQZZZaaaff��1c���������3w�������v/^��]w�e4�����"��)!!!|>���Ck���zS���2�V ��}�a�!%^@|�4h���
Q!q�%,h�-]:����'r��Sqqqbb�LW��>�O'�?��/��������z�!�>�lvv�����v�j�Z���@�4Y�����y�����={����7!!��!C>��CEQ�-[6v�����:����?l�������3�� �O�����������U=��^*�V"����������{��I���G&���%kDH�������������~����x����u���3�9��Kq���x<��z<�Q�F5�L�$�����!!!!66V�JLL%���z"��7�M����.����?��Ug���m��S��>��R�C�lZSWEM]�����g|C���2ka��?�������m�.X����?��Y���v���p�����0z�hUUJKK�������2e��/�,�-��f�6�M����6����,}�g��~��_�RP'��S���TSgjgp�@&L����o��������������g�;�~�(���k2�v�Ey��%�IDDDt!d�Y�{���Z8�Q[�M�����y��a�$���~��_$(Zc��[6�����H��<���6���:
T���+�(��I������o��}��������������,F6l� j��V�#6��j����|���S�������:�N����%K���\.��.�h***jkk��#""�fLs0A� ������C�>4��Y�"��b�p�>�����jZ@M�����
:U�4�1��ia�}�������=����_�6�v��-�{^^�4���������
�Ds��!��!�{~~�x �<x�k���S�[����3���7����,�����n?���a���! �����/j	,z�?���6��O]�������|�������go����{�]�|������f���b�"m'''����O�������a��=���&�i��������[��n����^z���v���k<8""b����g�������y�%e�����E���e���D�7pU���K0��8�h��Eh��^����:&��PO��>��\[���7n���x���o���������P�Ng��=���c��'��7�����v������3f�����O�6����h44h���z�^�4��u���HLL,((�Z���&.IDDD�cA-�
(�-��xc����r�J��`�BJ��*�%e���|�m��USUh��5]O�k��W�:�BII�,�:�.::�����RqqqM�+**E1�Laaa��N�S�)�������0?���NDDt�;s=u���o����#��J}Iv ��t�=F��i�
�
�����o�3)���z��tq/�������_���j	,
�;��w��=RL:�����k�Q��� �-��5���c-��rwA��$"""�q����^O}���TJ}����A���z��S�j��k�����>���N�DDDD?�|j���������@S��
�b�[#B�����M���I���;�OqA5���R	���������IY���Qa�(S�Q��&w"""���5u�XO]���X�����G��WU��6�:�71���ZS���[U��7��.l�)7g����,&kD�^'s���������\����A��#�� c�XsZ���=�S�D�H��|�;�Oq)j�^����tI��'��92,8����
�d�;�y�Yj�Cz$e
H7����������H�����;�����:�V���Qr;>F�����P�5ubp'"""j�D�*��U4���:$	��^S��������Y����c�5��p����������*P�->Z
�ql����!zC�^������z����&����M�%#1�<�_*��������_@���M����P[W���3@
�~��D<�����mtv!�L
-�^���j�������C���#g��������X�~��X�7����lh�V�$�I���������a�R�"��4�^���}��������������.��+�Hrc���{�� ��������K��#�&@4���*\�������.��Cu%N���M�5����?��:�+���`�\��2)��Ph>h>(����YB�!:Y�5��1�R��1��t�^���������S�v@�7��7mUW���v��J�������������&d�����,&kD��y��������K��T��U���a�F;�� h�B��0q�����z��!D����y��P}���HSt�>:"td���x���\��&bp'""�����(\�����.I�eHr����S;|b/B��3*��U�%

H@��v�uH�����XKh\�)���6�r�������<���i����j�#���*c@XW��!�Rh���2*�/ut���+�u�S���,=zW��:�����1��O��M����a�eP�3j��h�P^�o*�����nI�@HB5M��M��������3t:�}�D�DDD��UW������}�p9B� ����RYY�_Sw��}��FJ>��R_�>h^�
4%*�d���F�,aA�o���(%bp'""��p�K��g�����Hr���OF�x�5u�z
�r���B��)rK�hs���3D��Q���4q��������TW�������xA�U�u��I]5u�d*AX��^ u�kVh���G��b��G���h3�H���1��ES,���
��u�)��3�TW�����y����O��}PUx�CnI�`3O�9�+�1�Q�9U��o�m
Wa�f�B���7nh�����)d��4�-�O��1��1�����%�F�	�CQ 7Y
F4������R�.�V��Tz��Q�����1+3�mL8k�D�DDD��*K�{kc�:$��$@�Nz)�"+��5HzOK�B�#b"�	��>1�Y:��1��<"bp'""�f�R��[P�|g)\gt�+�R�����R�^���$�C'
L����
)�Q�����B��~9�������������0�Laaa�������2�����BQM��V��`��;�N���h4FFF��BDD?7g9j*�(x�i����l�1�q���:�UL�}	]�T���z�Kq&���7���j`���eW^^~����\���1�r�RSS�n7����X,%%%3f����H����O>���&���,p��:��o��k��)����w��v���f��}��l�$�O""�j��6�~��Cm����DC=t:H��\��c�����o�W�5�����I}�L��cdX0�����4Mk��=~���K���
���*99��y����������L��'.Y�����j���s�=�c��������������1c�dee��3g���999,���^�x1�����h4VUU��bN�: $$��'""�	�+�*oZS�e���Z����;���������d^c��M�q���z�+"�R'&&^��}��ec�������}�������w�?�C=��g������{wBBB��]�V��={D��e9;;��g������g���{2��?TE�|���C�����6���`����DDt�\���/��W9�����%�IT��T�������o_��u}�^�Md5�!zV�������Ze�^�=��3v�X���o�>1�(
�.]��/����QU����5��e�$��


			���bWbb�������4��7!""�i��4�����(��`	z#���b��x:����^���k���������3��9%).bw���LODW��E<x�^���w~��_7��/��7�v���HOO�3z�hUUJKK�������2e��/�,�-��f�6�M���������T�A�!I�����(�5u�%j��=o��������P�>"���6L�D�-���K?����_~�`0����NyEQ|>_�A��-���/�L""���t�YT���8����p�z��5uQV�J��:MW�aN[��ix�=7wJ�E|ys���AU�>���_4�S�|�o�J����xu��'x��7_{��#G������o�)�n��A��W�Z%Fl6��j-**��a���S�N
���+--u:�b��%K�|W+q��v���������������6*���WPr;>@C-|8�������k���e����/Y��f�9���5�	��1�b�!>E�4��>���LQk�)))f���v7Y��h4��{��yyyb�`0���������(,, yLL��C�����Y�fR IDAT���/�<x�k���S�[�����3��oN%"j�*K��@�	|�;7��a�A��^L�u���7��Q�����T	�a�R�z��i7����}r�O�	���L�Z_�7[�HK]��w����������KNN����A��5�}���0a��������6���w8���o����_~��[�����^z��^��i���k��l6WWW��=��9s2337o�|�+��2DD���M(������[�*��B�!�g[�Q(�����a�
����f�����aA!F}��PN'���j_R�>}��/�,>����������`�Zw��%v�7�����v������3f�����O�6����h44h���z�^�4��u���HLL,((�Z���&w"�V�_Y��&t:�����9��zMwB
�F��
�v�uJ���=�M���91����������,--�?{��T�����s��&]t@�B�L�,E)�P"*2�8����s�DA���E\��,��F���R�P��4�>�<�?N�X-������+��I��$����y$%%v���EQ,��j�y����f�<l;�p��;�N�;�=��N!����u����*��d�37�t@����	}�tm�h��E��B�/��\���|����������@��B���s����U���@�X{q����B�����l�yA#HB���sp���S?����m�>����F���}��n���Wvvv�D��B�Yss�+�
B��(����{����\~���d���c��HS�B��z��o���M�6M�6u:���d2}���o�����+�����m����HwBiXNd��*\WK�`2)+�..�K�q�EM�:�4���:jX���{O�Z��������;w�����
c��|>z�!��	'�^)WC
���w�KJ�[F
�z��:*FGcIi��!�4H��k��'$$��B9�<.���J������p��J#5uE�S��fc�Z����9#��[�$�
p����B���~��H�J!����;V��/K#�0U��2��e�5u���_R{�<�?DlV96�R��5.N�����%��X���[nE��?w��E	!���PV�`���k���y�����^)W��P�
�Co�9��������r����{�eY���o�YQ�y05jT||<
1!���SsV�`�eE��~X�:G8EF@����4�p�X��b��N9'���2t�\G��9o����0�
�*C!���B�w)~Y�����G�1���BU+T���Zn��	b�u�-�u���"!��jX��<���_|��Q��n��n���F!�2}G*�l��g/����72� �Q�����mv��xy�����h�����&	@"�)!��Q��e������������'&&�B!UU322h�	!�(������9_|�i��\����`8P9�P�*$b��F�3�.���|���"t��u�B�C��*���l����<����������]�o����Dj�!��cY�����r�/K/w�����P�'� ��z���P� �dTt�+�[�X��*�B�[=���Op�~��|��!��o��{w�.]�����ys
��r�(-���vn\�a��_);_6Ia@j�pE�"#�)	Hl�+�m�:�#�	!�����qg�=���w�q��~������E!��"�o��=���}o��K�g�����W��w$?$}�^����Q\z
���#�l_GGB9�]�����7�|��>())i����)S&N�H�K!�gE �����*��i����#K������C�6�>_�H�����dXb0�t@�H!g!���7�=�XQQ���|��W����Q#YB9�|�hs�!��rJ����\�@�]�v����"^��^p��'K8��M20`4�Al����B9a���>r��Y�f�Ok������9?���N9�8�E.��"����{����	���$�_;^2���+ B�5U�Gb1p����l$���V�{�>}$I���eYNJJ�g�B�EXQg��m����ye����.�`�����W
Vw�q2��X���U�Cp�p����".�F�!�����Ye�OTq'�D�b�o_�{G^������������*k1�������������0\��@�!�9�f���8�F�Bjj���Bi��V-�uW����g��U�	*pA 0�Y�5.��|�=��&p"P�W���.����DB
R�a��B�iE��B�}����no�����Y�=\�Nd���#\��s(jjj�Q�����s����z#ba���Gq���!�
��B�G�����--�\R�/qz��L�Y��e�e������';F^��i�����*�C�l��*�����	�8����BwB!uU�����Z���E����c:TV��z)%�j7&��5��L�(��?����f�
l�h�
Sf�1[B��N!�N���U��;��r_�@��P�m�s ,#(��m����uj�0;������w'"�O�C��D��� k��_$��BwB!�`�����X���]���+;�9�@��raz���mF\����\}5EF��xw"���
�A������=�y���%�
��B����~��o�+��l������@X�1O���U][��L�lG���C�u��U�q�h���=%�
��B�A�*;cc\�`�}����[=���p���
Kq��H��	Te'�
��B�����P}���������&����sx�1�6$�#�|���R��B(�B�'���g��M�����~5lo9�\�LWau���1�_4��B��BH��T��K�2��g$��b1s�vdB��~Z:tHIII5�����z�,��j����������))�&5+))Q�s�����w:��P�^������r��w����u���2�O���D�#!���J!�t��E0�,���<f��e����a�XBB��5k5j��reff�A�a���CK����_�d	����?���k[�<y���S���(�={�\�`����nw���

$''�_��n�3Zy�r6d��5����q�U�����I%��� LVaB��!�"�������
�sE����=l�����q������������>��s�������^0q�DI�v��m�XF�9k��_|�Y�fo����
�m���u���W���{���7�p��m�&M�4e���'p8�`p���������n�q����`2�h/%��/WE ���E.c���[����D9�s��(���>r��Y�>�F�BN����C.��;j�l�%`���`l��z�6#�����;�,Y�d����?�t�"���7m���K��^{�_����_}��	�7oNMM����������sA&L����������?���ukjj*�,]�TQ��s�^w�u.8p �~�a��A�-���?wB��9��@�;�;X�a�q��l�
�nm�rJ�{_��i��h��~��N!'�bu$�O3BqVw0@&���(��&1��z��(k����{���^�����w����cG��h���v1�D(RU5

:4�5�1Z�{ HMM��l�����
�����|�	�*�r����7���h��q������[����u�������9�.��N!G�U��B.���g���l0!RG ���oV�c&8��m�K���b=���<8��'��5kV8������O���*�W�((((--m��M�e���ZUU�@aaaRR�$EF`�����O�N;���d�trr��+O!gL��{�}V��X�����tXO)��?L{$23M8���E��i�	!�?�H���H*���
000���1�R;���0�@J�c(�X8���&��jq>�������P(���=u��'�|�����(�,vf0���U����R/c�(�������L4��v���������������``\U�]���>��n�B��mT�T%!���K��`"<+�
��1`:@A�r������s0�����3$� ��C����&�.5a0�8w�������9�z]&M�4i�$:tx��������/�j������INN�����m[�F���7v�X�����TXX�t:��g��Uu��UPP�u����TTT���r�~��E�0I�]�/_�1>��(��mEP����"�T\:?��N97	@�x6 �E� 2Tw`�.&@<N3���Or� �
�PH	�2l}`�%U��P��Y���
6��;c�1f�Z=�v��`��+����l��Y��g����u:��l�3g�����^����w��UZZ��9s�hs�k��s��^X���V���=�����������E��0�������)��ZZ�;�!P��U���	S�F�0!���M���������!�	*�V�`���+5z����E���D0<����AH	�^v�\�#���+��cp0e��'�x�o��w�}�����n���q���$������M������-y���c���7�p��A��}�Y����Ci����s�^��}��i��|��w���s���?��3&O���w��L)C!�BQ�k����O;"���[0����e����%��[dyT�`���aO�A&������X���@
Bqb�Nt�?��������C���`����C��� �9r��e�PH�����
6���p:�]�v---_u>�#F�^�:���	&�?^;������������}���9s�$I�s����_���\����-���?�L4$!��f��k��9L/����SL�����!���X����F���
T�A��`:��J���.P�k)b�C!�"f�Y���������ipp��!�G������TXXx��KJJE�X,Vk�e�N�6kdJJJ����p�w�Nw��C��RGo�����G>y���>m�zj�)n���v!�������0!$������~ )�+�!H��_
��0���1��r��1�G��2������������F�5�I��U�I!��w�wW�v�_�y����[��[����x�R;!$�q��G����������B0B��>�&g��~�H�;B�Y4-{����p�<��4s�s��������:=����B�5����EpO��GW�D��`�y5(�	!���y���W�ru�:�v[��@�p]�Sj'�D�`.�'���-���e��.G������\�=�

��BN��lq��N��1��l��3�a1�N}�W���C���8�!���py�#�	s^�����#n,tIQ����wB�vno���o�����a5����:��y�"��E���Qj'�D�p!�f�x V����H�K7!
��r���:���$�18��������au$E��Y��v{<��A#L�2��C�OP\`R��]�����`hA�C��B���o-aq�!�������i��'v���9R�����=T��������Cj��/a�Z��RT���@�Y!�����k��<o����v�ND8>�}e!��|	����!�!�m\�����z�<O�����+���� ��B��_Z�~[��sZjl��M��E�b�B��PU��{� B�'���=7DKR}H�������U�+X����7�������)�BH�Y��@�������C/��r�7"�r�>A#L��yDR;!��(O�`�
����2_�'������|py��(�BH����"S�0�ze��n�� ���q��@#L������.H}6�O�;��5�������\$ �����	
��r�����%%����>1��F�:�����(/�(!���a��A&�D.c���X�8�X4���fS���;���&�U;�6��,�w�|!VI����N!g�7���&���m�{w���N{qv�Co��	4����P���*��X1���p��V~���b�A������*Ksd�j9���������N!��K<����U��n�lu�����f�p���A&�D���L��_B�8����Y���z��o>c��3k
����KZ�;{�;�~Z����N!g�zc!T�!�}`��n������]j�I�|��2@�~�'T�?���Y	\������X&�sM�O�	b�}����eE�#�-o�c��1%H�N`E�-��Xs�]���&����{��;!��	����q�.f6p�_��UV�fu���E(:A���k?$�� 7����L&��������
������1{4c�b��U~*���4@8�^C:Lt�0!G��Lt�h�^t������t\�%E����+#:��_��k��7
����z�{�l���� ^�����FN�*|�<J.CqV�_���\w6 ��!�T^M�����1]$���L�s����z�z+o�,r��e_����<�����j���w
����X]w�*��O�rp��r��qfR�;zN�b����N!�����<���������&qu���5X��6�*z]���sp�*VW�n�VW�G����+�3�����i�F�:�O��	����lF#��#n4DGT/�HH�)_���������h����'�|��n1c�����>���d:�w��;!��v��n��d���C��������`�8�=S�����]�9����#�T�pgC
D2w����W����y���8Tp�F�wu����0����� ����y��c��s�`�T6�0���a�!\&B�`�h��^���{����M^��}T=����K��9W�-���z� �����N!�Wi����L'r��$�U�����m���``h�
i���������8�;��z]�F^;�ky�������?D���Wn��14���s������)�bo�>�T9��C�bGw(n@��B�x�M���*��~���6��
:��X�OL:+��H�8�
�qc��1����?���_���?�WRp'����o�Q��~`@=lq��P������r�#��F9�YY}@����U6��E���L���������bl�(.��OV�`���?�����wd���#���*.�J�+������nm��!%��z���z0��n����������
��E(?zWH�b�K��.��z��K�m9K�>�9����~?��DCA9L������z4N����]6��N[,/��&���9b�0�n�z����r)\�`��p����n(����p��9<\Y�F��Z5r������`�`����xM�`8�n9��T������*���|�
���K�+�&2&h��FQ�xK��v����qr�Z#
��Bj�����RZ-���v,����k���*������%��Im!777=�~O��;!��F���,p2��e���������_�H�}��c^L.@�\��������@��8�V��q���������_j�������:�����x?�?��g0��SO�J���\�b�
s~������
��&0Q�Z
����Xs�sU�J�-
@�'O'DAr��g�n��w^�]����HUk�T�/DWj�-o�Gk��|1*7w{�dS{���{=��;!�X��/��3�;����E�n�Q��z��$���
0�X~�9�<xV�����p����r��w�g�t��*O�Z�l��V�����H��{����������%onr����.(�y.������b0@`"�����d!�VCz��#}p���S�-�M��lyu�a%�]E�&���8�{��F�8��x7`���R�Hy"�&H��+�|�R�-+�K��z����U�	!$
����jHf:�+��]Y��`�F���d@8�������/��#t�l�@8���k�q���\+5k���H����P@��>^9?��-[ IDAT;TT�tj��A���f�p����\Dv��{S�r-R�D=c"�^bL`B@N�����1|\���UI��M	VC���k;>���U�p��t�&}����~��+�!�v[E��7�jD��oss�9�^z�AP+�w�R���������,�h�^�7�H������{}|!��;!�(9O�p����J�-�?�wg��S.�V&�+��C'14���@q����\W&��+�U2�z��Z5rR=w�w|����V�tP�{e�1�e�'�d�A[U�E��00�������Pp���o�h����=��[R��~d^?��_���l�[n���`����`������'��}���w ��?U�R
n����0&00������Ny6�z��Sp��N9-~�U���OdE��_�t���O}[�=(z���p�9d^=�J�
\��f���`����|�w��0o�-�a�X�'�1��/�i�7D&m:���k�VP7H&���z�|�5�j}��<2%8�UW��%A�����+�f�a����M	6�]�G���`�V���2��;/+!�hx����I�_���j�EP�B���i�����q��	�jpL�~M]����N����]�3���	�{������i��4�#�	s*���;Rx\����
���x?�0U��h�sw����oD&����bL��;��9[����|n�d*k�A����&�V��d)\��7v������2w�%������%0=Zo�Pos����X���'�����wI�5�m���/���s���o�`
�\F��H��hJ�Ko�u�b�-���4����u� w
���m�y����Y\��wl���1'��p!�f�x F*��*�[ �A��>�&5���E�y�@��}s��e5,����]�DA�)�����sA'g>�Q,���������hK�
�a%x]���JP;��y����}��|���>M�>�C�O����.�cG����+��j6�?��^��LS+��?� X�j	tI�r��[6��&}�����hsK�I�BH���'�`6������w���*~���"����{��*�k��v1����s9���l9��%2��=���%�tes��e5����������e%��UU��e7%\�r��UEU:�e5qdh��f��;8W�Fu}iS��/����L�K3��G�G�R�+xo�ckr�1�m�	No��������%I�(�*��\����J�//�MK�a%8��{=[iP�0*���C�A��TkW����z�,��Z�J�9/**��jJJJ�����(��9�������bp:��P�^������ !��(�l�S��������g>��o�Bej�@
^���*.�M/;�F��+bLP����\=j�\t� �k��^����7pm�*Wn��6C��U�1� ���W�az�����e��g�A
V$��C�LB���X\�se������?��yu��@�k�Yflx��;9�����#�H}>Z�u �},{�6/����5��{��
�NFYp�ey��1��-�������
6���p�\����`��`��c����R�����,Y�1�����d6���'O�:5����g�h)��vw�����@rr�����v{���r|�.��U�g�������E��:"���`2|��&
�@J@��1�-��
���{_<7Fi��/�<y���������S��w�X�@u�9��-a%x]���J� �z��%u�1N����fk9��o�\���`:���{Z~S�
3��)�b�I���?���w�I���:���Q�6�����!:��|�/~<��8sE�����[�=��g���/_��o��YYY�����o��O>����u�V�������^0q�DI�v��m�XF�9k��_|�Y�fo����
�m���u���W���{���7�p��m�&M�4e���'p8�`p���������n�q���B�p��K�bq�)?<���	�A�D�/�h��+.C�EL$���/���B@B*�_�=���()O�����"�����W'��I`B�J����5Y�4�����L��&Tu�$�%�E�X�>�A0`�A4��5��v��,{�IgU�zQ�~�^�1�6��������__���
Q�kN~q��Sb}m���q?t�Pzz��e����=������t���%%%�����w�	���L�0!'''55u��U�������9R�����W_}��'��o����
`���O=��������v�.\8p�@�e��A�/���?�	!����B���������}w��+7D[����'�t'���'{ �/H:�0��hI�[�*��[���?�u��CJ��+fL`�����A�������&���9s�`F����b,���F��c��6���6�G�j�	�-��6�}�3�5=*��=A���^�=����������s����G�=�s�;x���={:u�����}������PHU�P(4t����c�~�@ �����Q��4==]UU>�����NhW!���+����+��j�6��������R�\]�-���$�"�i����x�I�b"�]�q�p��������e�X�����%��DI�W�E��Z�J�6��^4Fk���Y�"�iM�;.G�j�z��>�#���fc����x����
%�]tv����\L�*��������j�w�u���~������(^u�������M�6U����kUU
���III�$U}%�>}�v��p$'G��NNN�z�	!�o-�������U~i�&v���-�/��]���<1�_��>/n���1Zq���o�G���c�V�~������%+a�1����jX�j0�m{��Jh�)�aJ���h���E��(�	�p(e(��F������7��Z�+���������GRg���^�+���J-�����Z�m��6Zg�����x<,����;���(�,vf0���U��W+!�9I<A��i���y
������Q�#b�A�](x��� ��x��A�I	�V����a0F���;`�w�����jDA
���������{��	`8W�MB�(�l���iY��M��x+(*��Pd�t9L���D4�A����3��S���R'T����>)�7����DAW����`c�����w%�~	��f��BL�<������%�gT]� q����v]R��)1�j���.��\�6m��3f\}u��SU'�����s�������m�Vu�y���;�h4&%%:�Nm��Y�f��������������^����0����w���B�?�������'�!�(����H-���pb�],����P�����1x�3t�QUiP�1�h4|���U���*��D�Q��=�/���i�/z�(YL�MtS��U~>f���*D;�M�������l�1�x#
�o���>�m����
//�u���=��|-?��=�~�����1V�+����������G��HVB
�H];���NOO�����e��f�:_����y��g��������f��9s&O�`����D����k����R-���3G�^����;/����MU��G>�
G���f�!���������9��1�y������D��t�)S}9LT�� �i����}W#!zp��8do����Y|!����//�5,%Q�
��D}���c�=�&��#�$�~r8�`8?� J�i��\�7r[�����Q�B<��h}��n4�����\��.4�b:�Z�
����&PT�����z���A��Y_�,�?���.�k��a,P��h���kZ�l����M������-y���c���7�p��A��}�Y����C�2eJ���{������N�6������������������g�0y����{��2��c����g>]���<�j���;V��/]�)���`8�D���2��Ve#����r�77>SC<@j��iK��((��
��M9wJF^�h������i���D>��|v^�P\�7������,cx���U�%����M<�� R����L��y�x��Y�f)���v���k��i��������kii)��31b��������n�0a������.\8n����
�^��o��3gJ��9w�\����f�IOO_�hQ||�q`�y�	9o
y��o���:<�\�����nrX�G��A��>`������5!� �����/:�lh�����Qe��TT�f��lt�#W~L����p>v\Z9	���l=����'���d�&�:|i��%�;�O�?w;��KZ���?9M7T���GYp///?�ER������ 
$%�����(�b�X��Z��:�Nm������������:������;!�oj_�K�<�<p�%S�q�_�rG�� �IX��?�BG�C
x1����
���������B�>�+�U���O��zl�%�v�:�,G����#�=f ��Vo?�o+\�x��F�����������i�I}r���"���!H{3:^vA�m3�hs������������&
���o�U��}z�7���(�����]�K+2\�~��W ��/�d'*ThEEAB
FO������-o���M���~���������a�S�����f����(�|��"(e��vK����w�}k�dLTTyD��n����w[����!�����vw�W�2�`��g����uG��+���������7!�@����Hj�z�c >����������v���_<��C�\�����P��O�,������~Z������J�����%��x�z�u��*b�����M�]�BN��[�_����2�8a���������Q��f#�N�2�+��~�a���1�5�(a�ltk����������(��>���W��Z	����oc_�%����g`���~&��ltqrLz�7�1v����0��4����
T��0$?pD�[��m�F�n�<���Q��G��BN�[���"@��=V�|�����>�
�����F��V1��
0`�A������@���`��!�8�/����}��I8W�F�3W��}��j����gi$�����B��}�f�-3��O9s&y�~?��G�54���<�s������q����7��u��%�\�q
9����q'���S���_n��Xo��s�p�ja@�3�{U�
���$��"m��ml
��zC����Up2&p��YR^����Q��L��TO$�6�Z�Q���P<n3��?z�4����v�-�rIT��3�����w��B��i}��,���Z���Y+� A�P3��
�!�C����pt���x(wA����������'�|��U��j�}u�2�>�v�3��e����P\����C���Vm����L�z�"K*n+X�&�c"uP5w;T���%�Gow;wB9���*\X�U�>u��,�����buL��*G:^���v����!V����n�����0
���w�z�&<������f����3�������P������h�n�7������O`�Y�[�������&���]����u�Sp'���������yP^
A���^����7��
Hn���au�`D���/E�Bh�T���65*���%�����(���%�^=�j�g����3�LD��w'��W��6q\���2��������M�`����Epg��G�n��N!����~��#k�5���_L^.c;e]*t�W��~,�9C�K���� D�$�{z���U�N��uRW�k�C:���g�b��h6���8�����g_e�YT����}cZ���������A��r�?��	�IFQ���O��9m)�B�U5~����a�W�������"��9o����w�^��\�a��>�/�8��V�{Sd�oF�=�����_^r[Ujw�K���KZ_�������o�}���Q��K3�.�l��-���t�L�����j7�f���&'��������^t�(�%z��)�B�Q�epCQ��+8��W���(V�����VSW��U�2g���������uLs����gJ�I�8����+��0f"���?f_l|i���:Q��Qjo(lYHz�&A0�I�sZ��-�.�����Y~cL`�Gk���4��$�~|�-R����]���<�u�!J��)�B�]�OW1~Y��sQZW1��� �`�a;�
�U5����P7<��-9yL�6qV�z)%�r�w����9fKq!�E�>���}2�;Zj����<E��I�rJ��C���;��O$�������F�����w��y��crB�[Q������FOw;�����
���v
�����,�����/�b���02Hz��`��q��2�����1�����}klon�|�5�cQ���L��n�S�4�����}����7!��h1xx����5$)�"t�?���CSP�R_8��d�Y�8Z{0�
�swm����29��~s��v�����<����m�����������-�T_Ai&B����Q���B��b��Ej�@�q��@�%B��A���W4_��+�����:�j����~E�A���L���\��u��O�R���.I���~���@z6Rw�I� ��S��|��f�)c��������(~�l�BqU�x���C�H����<<�_�������K�p�-�D9w)2���������wG���5J�*%�5u���
����"��\������c���3�{��l�zA�����OCJ@�w
|�sK��p�����rJ�
]������P�A(����pR[b������7�G$���p}�$Z��h���B�"�����O=\�`����[�)>Z�����{���=����{�Q����rc������P^����`�U7�TFuY����7_i6Cn������%'���sI�U��0'����D�����t��n�C^(����+�.�������g���#�O���Z���c��_��8����s�on?�+O��0y�|Q�Z�9��G�z�s�������z�o
�u��R�([�����iq��/^x�����P������
�������c���%]�%k���\�B!7scH����
�kc�wJ������/��g�g1|�_#��f��n���Gk���&r�Z���-�}3:���������IP=���k�6���H�i�<����-+��wJ���4����2�������n@����N������������2�xHIH~�h=���n��N9�V�G��Z3�b��~��/���
���������yI[{Z�%�k���X����bL���K?����C�
�AO�Q�+���Jm>�Xs��C������F���Q�>	�L�`E�2��M�9�I�&������W%sy�l��Oo���h��U��"����������{�P���DT�Z0)�h��P���F���
���;H*W�l��-O�s�Sp'���O�bT8�cSd�FW)��H����L���/�P5� ������,��dYw��s{V��v�_]��Cv������H���??��}Zt��V���kN�}6��������7�0������$��D&!m�����p�EA�x���;�c�����rQ������2u������j��
���w/S�����R��bTp�%�����o
C:�}S������Q���uO��������SD=�uG=��G��%�� @�����U��3� ��p�9�����n������bj�Y'		VCt<���Q0�F�D$�������K4H&c�{o�f�y�W��{��+�1�_�������+&/�
7��C:�3���4��E�������gEe����}5�3k����	�<T�������[2";��F�o��{�_z�����������*����_�=���;K�F���rv����S�������%�����s�W�p�;��J���.��n�j��n�������xP63�*��1����y���L���m����9�1�K�z#v_��>0L�`vf��W0u��x?�d�fhk IDAT6��i\�|�n��@�;c�����=x�4���d:��F�I��
0�l��5.|X��:vkO�1�S�girW�����n�t�#q\0�>�1r1C+�:��ONI���]�^r�?�5J&�I���p����X���y���^�*��|��X9�,���8k��QS���������<��@F�K�
��}����-z1�n<'��#���}�Dp�!Hk��1���xK*�����X�9�B�T��,�A���A���X��yC����Qp��@�J�9yX�����|���;U;��������sj%,v�9��k%r��]���?y��+�zDp���U6�-���)e���@�$T�������?����T{����u���N���;!GSV�`.,�
��l6BA����_�L���C��j��
G���vwf]��d|Q�sv�rG�����~O���j���wI�z��'���ST/ro���#��	��1�`�
���!��3��+��.�{��ZU��
�x���������G��U���Y&�Y�����:L_�!�*�IN�;�r��R=��bl�6U��"������IJ����}I;'��u*%��;P����~��ua�>��R�L)��
�1�/�~m���w
�����/+�F�(/� �ui��>uH_��U�Gr��w�w��m����I�Fv�p���wr��`TX�#��~��|��L(|ES^��B����k���+3��U��`��F���6�����b3_��QgipP.��#����+�����Y����4~r���_��Z{`�����x�*aVw�k�jw���'b��Un��\Q7X�S���/*�	�X�����������2�'�4�u�.w
��IT���_j~2��An���Z���[{Q�h�=�u�$��K[��c������i����\	��y�g&k����M�w.�K�����\
.�	�:7x<&!f �!�{%�zl���b�����
'���iV_m�j��IZ.�>t���rd]�AW#|Q)?��}�u�������}GS'�\���IVC.q���vo�[.V�����r��jn����=�Cu5B9WT�b����o����iY
��Sp��N��Z=����E�0�����W����������QW�$�S��n��]�0��jiC��Gt�/=fF#'����P��?�b����\����\������j\e�^Q�n-����*���h��a3�W;�/�h�]�d�����X����C���������:z��xT��/���N���;>�*�����N�L2}&!�B/RB�&E�H�F���e�k����(�.�[\W������ �6T�4!�@�df2��d�=�?���f 3s��������er������9�y��hj�.�0���]w�q�"A����?\�e�*��fx�9}��,_Hz+���Rw�\1%�
�!ib������%7]�yt�A��<u���S'���/�T`1����;�������xoj���VJv������ V@�sM��g�G����x
�b��T��;v����
A�&p�a�J@��p@�@Cr�c��\��>������^����9��)�'��������>��6c)��,� �W�����[��q\�U�q\$���C>�G�=i�[�k~5�	��?�PvB��<����|��K9�0�����A�����"�.���cF0��|%�U��O����*^�b�K� �N��%-.���x����KNE
��4�,+�R����R(����Amo�������`�iB�N������G��	w%�nI�C5�Y��w}��5�O������ep�UD=t�������	G
�"���.������x
���BN�:�O��x}��wM<�/��qM�Hk���uF�XG>Z?�
GG�	����11L�A��R7_�A��]���F�1����������?T��vK�\��\�Ci �K��P��lF�����i0
k*9�b0��h�/i�g����l�!Rq@���$[]�N��.Ec��_F#���CP��*���r(:�>5_���6a=S)WLur����;�7�}�T�����_���jf�)��o��=Z���s�uj�H��-G�j����7�&L�<K#�Xe���DsR����*7G�0��=��B}-�����QEPS�8UMP��]���������2h���Or)��k���-��-�P�<.����@3���@�Z�]~��#|��X���4�xc�7/�^�&)>����x8���Iv�L��K���3`L�
h3�}X�����������`�����g��B8>7x�
F��\���m���x��[���>m�-Z����7������N��`1�*
�m.��VV��9ksO� ������^C�qM�]
���_�=��eVPJA��*����d�7h��vYiC�h:��3^����6�9�9�uRM�[�&�P���U`���#�u4u����#�R\�o���(���v����Zb%����6����
�����������Mt
���PZZ�q��b�����x�"�����d�m@KJJ@�f��E��)�V�U��M��x<�@�j��lF���L�2�]�@L]S?Z�RU	�V��4�-}*4)�[rx���C;:�_���5�4;���@4@��xRm��=�:4gm�(�h�u���i:.i�/���_^s�?��%���
�(���@ss�����i(*�������H�r�{r_��Q��^T;�{�����n9*
�f?��<�������#N��p�9�7o������{�M�6I���:t����@��?~�d2@aa�#�<�e����7���b2�����~������[����c������BHKK���o�F�e��(�%���~�����.�P<%����(@pW��	j|*��CK{���cw�L��.I-�Z�(mJ�X�OJ�	=����x�yv����W(��-�;����������o��9��[U���8��]���C*�Z�'�~Jw��v7]HF��S�������Q��q�����
�_�p��|��r��m�A�����={"�����m[x�����'�����z�~��IK�.}���[�j��K/�������;v��k��A�n���	&=z��g�]�`�O<6������?��S���j��{�Z�pG���qw	�9a�r�a�2��A�Pk���R$��hE]�J���SnH��������������^u��C�s#�#�:�I?0\?>���^m�����sG/���Km����/��]�N�����j�/��x�/���$�$�t��W_j}�R����p�1���VC=[�0���%���'s6���_�j��w���o��&77W~���S����������>���3g��������]�v}���`��I����[/����O>i2�^y����t�����z��'�xb���.�k���#G��^?j����7�1[?eN�v3h������B(��H������n04^'��d g��n��f�����u�tV���<�~^+���^Y�'��rg����/�T)���w���I��~���A����G����	w�W���������;.cV���
�__����k���d8u\�jJ��eF�2�0����~�����"�n�@8��]#>	�E E1�7.��,����:==����6��ukQ����}����� �p�A��+���m�AP��eP���J
�F��������aJ�!�J$E���j����1�B�����!T�d�N�j�n�������cIF����+���I���
���xB��l���7)(.�(**r�\�:u�>s�-���X]]]\\���*�3p��w�����dJKKc����X�<�4@��l��y��fP���,�<x]P]YG�8H�o�G���a�w��CA�z1Zv��o��j��w��FgHz@��ISo*�� \�?7��n=��W��9!���.���A����p8
����~�������A�*j.z	Pp���m����G����Gk�G���X
�~J*�������o�AYf�M��Tp���JV� �H�?(-Y�UxQ~�V�iB���m���~�Q�����!@8����\6���pK�����!�\cAA���{-R&��5k����4��z��Q�3�~���i��Zmjjjqq���an�K�.�>SVVVTT��hJKK+**���V`KB9�0�m�����A�E����)�P�~�v�W#���
g%��~�;��N��W��1�}��i���u�l�������HDQD]��{_�|2QC���nT�W?�e*�����G|X]�!A�_6�H������j�8����e��A�J���V�X1�|��k0En��O�8�r��p_�b��g���O?]w�uRQR*<C�������R�������@�4 O���tf�K�E��@��|n��V�d�5�{�4����_�_0��<����8Y��n�1��&����Xx�s�-
L3dvn�W���5D��p�b���0��r���_������].��,��7�|�u��m���92���m[������e��M�0a��Q�<��^��1c,X��g�������������_�F�a0�����s�����
��2�6���=�!�����tZMh�;����7�!��
��b�
���h��uj�K5�������!�<@�0������gG�����w��S��D����q��o_���5�F�����~�����_:����O��V�u��=�����~��]��~��h�9s�#�<��o����{����P����
[�x� ���������>}Z�n��g�Y�V����GUTWF���U��r�W�����P]"7�V�S*R����T[A�2�a��O9��f�I7%�~hG���2 O�o�A`Vq��5��>�QvYU	�/����x�A~.~�0�A��-?�q��j�� ��� 555�KKK���^�ONN��x<�5�Y�fQ_$�T�+����������-������ ���U+�%����B�hz'M�ou����5�h��w��-��.��S�5�
~��JQ�C���rCS�����-���*^C���1)�/xA~���*�R���r9��W��a�k����I��H����Uu���=GU* x��/PM�B)�U_ ���m�>^A����`2�~h�m~6:^#5�P�)��%�z4�[$X����*^���Nw�D�u�v�H�G���&	�]P]#������<�����^�uh��`b��Go4�����:�����H����`4���7�����Qz��#�H�=��`�aA�;�(E8^�<����Q� B1��@
D���K�M|[���1t�0=3�?�����z����4���k6{!}^���_?����4������ 
wI����������*���r7p�������8z�+��\j�	uxz������6�O�N}7z����M�M��B�
p�!'h��r��������R���b���N���Z"��pG����R��r�8|�x�U�Ltx� ��^'�E��(��T�'
e\R���&�m�Y���ss2�e������ED1���h�o��#��|
X�4���4|�u���+?���F���x��vA��8���o�����
D�[��+�@m�.�����j$B0���9Jl.?]$v����U���<nH
I�,�n�+�*8_�����	�j��a&�*�������:���w&���[%���n�1�A�;�Ta��+B�K h���R��>�A1�q^�f�z�D{��,@���PZM�"�9��I=\��cn��d�5�S�6��ev�R���F�� T
��P��& j@"Y�t=���5i�M���[������x5���T��4C�v�^3���A�;�d�`�2��a�2��hw#%~}�P':.?h4�$��R(�g�m�"b�,�-!�A�4uh�"��K��>� �$��h��T�/,rMq�e�B�,�� 8j������2	t}@��t�{����~�������\#D���T���6�?����9�O*� 
w�g���n�8A��ePt�-��� T��
�F����b�;*z!�"�hX�"�"������|�b��j���h�/h�;u@0P�p�����m����Vx}��

A�����@�@x�}�/����Yb
�`!����O_\,8^��;_�)���U%P�(��2h-Rs&�����/5� 
w�gb���7��@8>7x�
��\1_j��x����9��eU8S��sB�w�J@����]���"�tZa��.Z�@��T�����������
"�������o{d]�X-�"b�h"�Q�
8=d~�������>x�oU���[]�;oW��/!\�7����s�V�g�7������{�������O�+� ���9���_��!���B]�r1|��>F�N��9m���n<
_�{x���eBJ�Y_G�S���e|���p��+z�c��*��5�O��&����+r��V���>��i}j�S�a,�n	is����"��u�U����U��O�
q�Y��%��i�5!����T|����� L��2�m��y�g���FAP�#?�n�O��s�I�i���J!�/��B�����6�Pm�{HG0�G���o:iU�Zz�o�?J�*�������
�w5��!��&a�!g�@���5lm�����@�i���z76����sf�?T�p��y��k���*�H�@������:H�����C�@��'��K�6����c�AA���|�����7��>��y��L,����sKN����hf�>���!"M)RN�rF�t���x <�v��D�����D���u}�#�������\A�	�����k�A�
b������!@�@��2��0����v���V�&��C��Q�j��x5��@�������bMm� =P*�SZP�c���#R�o��[�?��A�;�s3��n�<�Oap�,�_'����%���THV�yB�� �.�����H�\�3�.	t���z��jY)jNA�R�
P�3��8��GV�"�Y�m_������=B���'��#��W�!2S���8Q�yf�%k
4��Y2��}I��oL���r�m@�xI��w�o�J��� ���	�k
�{xJ���hE�r]��������0��F�Jd)("��5rY�#�s���V�s�:,��W]O��2!.!�
�B� �"���O�;�F�{EcH�h�#�����B�b���J������2qqF��rIIS��D� ��Sj������I���k�H�[0��a2�,A��/�Ot��$��J#{���
^����f9�\jc#I��M V���]y
�A0��p:e�D�(��9�
C�j�^P��@)60���K������m�N���	�/xN�;��S������\�'���$$�#5���9�%kL1�	J�`8 ���#�)���-�f��Hr�8�M$^�b����#� (������_�f���#�!H1���}��x���g��C���X%��f[P"{� ��;z$l}'�l�@A�QGV�
6�PV�$�������P%pI*���P��������q�T����8�0�#���
/�m���@)Y,�RJe�J�2%��#A��1Ko�I�m��u�m�e�6� �4M��B�TUU@RRR#?Z�Y�2�sGV���^��Q�4l��|"�nj�":��#�
;��,��4��rIDuG�a�4���c:p ��]X����
��^�ww�*�:D�[��W���*Y�S�,zO�X}0�53�f�-hsS�����i�R�aj���PQI��X�A�U��!� ����O�n�Z��0�~M�zSQ IDAT)>����i��'@����	���{t������W&��/���&������qEU����n���U��9���p�H69�sI����2_>!Vb��v�C����+t���	Gx���}j5G8�a!i���w<:R.D������qJ�D�o2P7kN-��#�:��4�S�,�u��A��(��!�������*-�����^7�.OO���e�6�q"�g��N,�!��p\\p\�J�wQ�A�����(�-`�.	8������������J�>Lq���P�b��E�)�e��Z��S&� ��5�;k���a�m=f����S�5^#�Uz�� ��p�vT�@�X��/�@��R��0)r�?��w2��H�ruD�yWC�L�@����7�`���
e~��qSa�l�f}!��ZJG��S.�-S}�qB�{IX�T�\����VW��|��@@�U��|:���;����	�U�f�����<V�Z�J����p��<�2�(�p�$;S����Ry��z�f�Z�!� "i�qO����v<5{��W�j����
��s�G=K���x}���F�|�w����RS
 Q�w���%$u�
_�C��~�Kp���"	����,|��i#�<�;��x��v�p�<rl`�\����z+K(f�`Z��%�U����C�RB����]���K�
5��($����1��q\#$�o3^#$��;�^�h-�' � ���9�(���p?{��!���V�@t�����@w�U��X����a*���F1���.�k�dk�(���8�`*v�_���v���v"��z�q�����Q���X8!@8�gi�*�N�9Q�*��w.��������,�r�p<b�[]�;�����"O�����/;Q�TTqP��3)o���q"g�#�+�:)�)ZS����bX��-��eAAP��f����wm���zrl���2�8��F]�/~1���Z2�FF6�!��(6*�i�:���lO��"*&���q X��<�����
}"�%���N����2q�;.���:yU����60�c5	W��>�1�� ��}n���+�D�p�E���@H2�������:7'�H,�E�S.E��9�a1��������R��h���s�X� � (�����s1m�_a�+�RC�u�����U��I��jN|��-�-=l����+vA�<xWC�B�.��&����Te	4)C@����X��-�l�)����x�Tu������r������e�Fp �"er���a���T�V9E�8�'����B�	�
�x��;��<;B5��S��j�5�����������������\)����)GA����;���b���7�*�x(���������o(~*w��=R�I,��=$�
Z�Eg���������5c�����*�������[��ro��|����B�����L�s|�fC�����&|���hg"��r�����m�:�	w���� ���A�ao�S�"P1�^��$~�_k��\R��+�����:Y�H�Z0R� � (��{���t����; ���-�T�X"
@(��uU��ZYV�N-?����#�~qrEq���j7��5��T+l���~~���V}��nm�H�;��B�5�2y�BL.!U}�jP��qB��<D
�����qqB8��1���U��s)C��P��y��A��3N�AX���G���x�)_�3���	u��%������G� � (�Q��|�������������A�)Uq�j���Pen������_xXy�K7~w��O���jUz�#)��2h-�,�'����|}B%5��
B��]
b �iC4�'�1����)�9��(;b�����(m���{w���E�����	!N_>��C�p�HY�\��)r���H�$�\�G��)���pGrAAP�7U����C���e.�$������lk
�~��Nw��E��?_����y"��qZ���
���h,���%Qh��&�#�/��U���AAi����CU>�����s���[��.�"��?T���U�PU��F�Iai����E������5b�N<�A��� ��p��w��������)�� L��z���w�#��8���K:��K������������B��e��D�+�4E��;��J�Q{U^�ipD��W�{Y���t;qV�hP��	imh�Xx�qUJ;UI{ps����G��C]���QpAAP����x<�@�j��l����W_L�9��� �M��x����Z@��d����_�T)�V����:����L0��e�� ��L,~�W*I��N�9*�����Iv)+]>����� � (�c������caa� V�u��=F��\F�~��b��d�>*N7.Ps����w���y-I�|5�*�pQ��'��<��|�	��N���������;nB]7��r����d��-PS�kAA�(�/��f#���������y��z����-����3��0WQ�5,�r2G�e�;���y�/�� @T�f���X�!���OH�����9
��4�G�B��� � (���\����n��k��`��M�F�����F�q�?	_��j���be0"E�U����"��M	n�� e�%�T&�E�� � (���n����T�Redd��6�
JJJ.�'|�k�����_4��P*jU�r��j1�I�4��� � �\P�G�d����������Tig�K��M7���U(����n�"Ec��� � ��p�9����I��I>�������;��� j��{}�!=�����p5��J�����J���.l]x�wa����W!��%���i*��M�)S�����/��.����*
]R����<��uOU��������|i�pB��x�oLMx��p�Bc��6��l�����(Y����b����]x�ua�����[^�
	�.�w�q�&333~���l��+`�����h4��t����������W*q�Z���A9��j��~�q���Xk{�~WL�����.l]x�wa����W!�����j1b���0a���s������p\nY'���d{|��x�AA��J��3g��p�B<x��M�(���:AWMAA��5�b6������V�U�R�iAAAP�7ET*UZZ��(9��|�?|�B�W�?�^�]���*4����[^��	�������e�������*����*��*������.l]x~�W[�.�
x��pGAA�_��� � � (�AAA�� � � (��K�t:C���e�������
e�u�\��RY<Oqq��$***���������x<��������B�����G��Uj]P\\���
�N��j�������.J������/�u@iiiii���\��u5ZW~~~~~��U�z}Wqq�����|>��j<o]�P�������u�z��q��B����=zTq�t������^
�X���4�����'���u��q����)����������h����/��`�SRRL&���Q��
6���[,�o�Q�b.\��ys����W/��)��"�>��s��7�2e���T��'Nt8�c����`P�b}�Qx��W�*PE����W/��j��N�>�T�n��M�6�%==}���J�k�����f��u��y��J���/w����p�����v+��~��G;v��7B0�8q��f3�����W���n��l6����v�mJ�����1c����.]��.Q�s�v����RSS�m]n��m������G�6�ZW�-��a�����i��f���r�\������-[�i�f��Q�@@��N�0�y����5S�u1���X�n��e�\���,�����u��e��F��U�V
>�=OVV��n<x�_|�`�j��������r��J�i�&��D�w9���h�"��4i��l����>�o��6eUb(�c����f�������L4h���I�FcFFF��}m6�^�W�+aq��TAA�"~����S�{��g���J�s��u�f�����z+�3F�b���=z����;��jE��C=������+�Y�F��p��w����A�9�{��w��	J������O�f�JIIQ*P^^�Z����6�L0{������};t���_�~� ���w�}����?�T��1�?~���J��P(4v�XX�pa�v��EJ8p`JJJ��}Y�8x�����eee&��f�����e��,��Hm���RSS�l6+�8z��V�������\[�v-L�<�����h4���W�uu���k��<����U�V%^�����{���KT�������\�.1++�j����k
��@ `0�V����n�X�F����i]<��l�~���Fx���sn��233{����j���***9+V�`]���������S�����oaa�R�>����������W��x8n���q�{�VP%�p���{�����)����`�XJJJ)v���)))�����������T�G���cGT������d������i��n���c��9��_��E��������&MboW�Z��1	J��>��.]�����{��G���~�z��*wg�����)�������:w��~��p8�H���w���`q�h7m��xm��U+��UZZ����7���n����4;���O�YrE���s��Fc���|P��y����������~�?���?�l�]YY���9t�P�Z�VTT<��#���������3���\�u?��c�n�����t:A222��{"������������=z���	��N��j��q����w�������E�iC��m!	j���<�V�z��/fffv��I���/��6/O�����={�u�={v�����92==�I����
N�<�xm���~�������7�w5�`�}������d��(.�w�	3�nwFFF�=�!G�������%���s|��
�m�f������V���T��lVpN�{<�5��9s������H����={��7��^zI�:�w�}�G���};!�b�;vl�����4z����m����;v���N�K<�~�){=l�06d�Z��D����L&�<�n�:BH�f�����.���������=���`��)N�3##�l��������;Ai�w�^��k2��j5+9�����G��^o��Q�������B���(��:�<�s��[�����^9r�}�]E�X����X���G�����?��`m��G)���[�Y�f�`���.^�H)-((`al ���O�^��t�� ��SO=��L����S�J�Tqqqzzz��]�����w�W_}�=P���~�a�������;�bZ�V6�LdB��]/��"{;i����4�Kp���*�[6���I��g�x��7��q����v�"�+V���t�2����~���R�$�>���_E�`0��z���Tf"�-;;�[�n������l���g'R���e��3il����#;;��e�����N�[����o�v�m���[XX8}���CEN�3==�W�^������Y�4�<�wI�������5h��D�����k�
���uks�P����#GA�gq���������L�2X��u�
����Z3���j�5k�����`���L������b���`�j����>;|�pB��9s�l�������r�������|YYY-Z��O����O�]�����x�
���;�>|��������K�,)//w8����m��%��1b���Lq����O)�w3>|���>����{�
K�,���i���H�t�n��n'�$rL&Sjj��������W���)���Z��Sq������z�j���~�z����kw������ �h�b��EL��\�����S��'��7~vk��?��;�$��n�6m�R���7�`��u��	������o���@����7�y����zkqq��'G�}W�V�x���Y����c�/_�$K�=m���~�z�J��X���� ,sssm6�R��������5k��|��8����X,1b���8q�Dqq1S���_Q�,��p�B�Zm4���{�%�����@���S�+**���C��K�T}>_�����������[�[@q9y�d��:�����;w�l�Z?����7l��t:W�^
F�1������������B�s���y�W�^q��8|�0��Q��l����{�x<�����</��e��h�S�N�S��c�x@�P�6-��?TTT�n�Z�l�`,�e�edd���(�yyy	F1��]����"U�����k��&�i���	�C~p��!	���,Y"��L�2e��W$��0����~�]w����F���<�O>�D��333��<q�lz���$`ff&�����j4���'�������c�=B,�<��|��8����+**bJ�������b�$yD�5����NgQQ�<@;f����L���e�6�?g��X�����iq��I�3v�~���7�j���+�j+�b �0a��ngs#�*�Wb*30V���GE�/\�`6���c�)**b�.��#]���"����G���G�f�q�.�"?v�Xqqq�V��u��^�7��UVV��S'v�I��Hv�}��u���K�Z�b1�)�&�b�i�9"%�,[�,*�"����n��*�8�n����?�P:�����o_��-^j��F0��gO��!�i_6���?�<�F{������Y9s���
���"����b������m��� H��f�������O�:�)�������D]��[�4��v�ZI,Z��l6����f�}��W�/v���O?�������Y�����������O>�����Z��n��IO�O>�b]��3�|��g���y����X�����|�(�EEEEEE�@ fggG�DJ)���>Q�+�����<��S�NR"�"�&��35�����b�����/�j��l6�;���D�dY\��^�������J�`����>t�Prr���+�����X�a��m+))����~8*���w��I���Db$��&����?5���{������g�=�}������Nu#;���eI�7�|�t�v���*..������G�����wL�c�v������d�X,,�t��ulX���(�g���8.���p���-[Z������T���h4�����F�:z�����*���}�����3g��5k�=���e2v���)��E�IIIRN�3�<c0bZ�&�0�?^������|\�~4�i��A�Y,��1f��P(�d:!D:�~��S�N1��!c�ZSSS���|���%6>+��.��&�.����e��h4��7nd������[��p������x��X����kSSSY�b���UWW�O?�$�"�j�:�Al��G8f�Q��g��i�Xb+~�����srr�������q�4��}����>|����5'��[p2�����������j��mT�,++���[���>������b�X������h����l�z�����Z�(���y��)))����E��Fcaa������0�������N�������!�c����&g��#O^b���V��w-]�4V��Z���3��6�����;�l67�^(((����
Crr�?��z��*1''g���(��
����|��3g��\�R�TQ�����3����'���-Z�sd��Y����W^y�y�,_����cf��������e�lv����'N�0�L;vl|>:�/�����z�
7���Oyyy�%&]�����M�2������m[�k��h����'�`"�]}��S���D���v�l6f�s��!�2c�����C���(����KJJ�By���a26���0H~J�a`���/_~���3f���<d������6�������fVN��d�;v�����h���$5��0z���g���=�	�[n���y�e�r�-�j���7n��t1M��o1� IDATI������GK�,d;}�t��s��Y�,����`0�t�Y�fu��E
+H��'�|�����t��$�x�%������;[E�x��ZWZZ�<`�Z�n]999�������^x!��e�Z%u������]�v
2$%%��-��Z�J�JMM����BAA�����z}L�j��k��K<x���{����lRcJ��o����rrrrrrX�w��(Y�X��x����v�G����(�.f���C�1c�����fL��`�s���ox�j)--}�����^CR�T_��T�
6���&%%5^^KA���,Z��d2;v�2�����_���<��V���6mZqqq#{ZI�GI�I�&qg���.]�t������Z�^�@���cKJJ���k������{A��o���t�;�����*Se~f�N��A�X��ef+X8�i�FA���'3��cA0R�~����l6����:i.u%�n��#���cZ��b��zM�<�i��z(�_����`�����3QR�X�����O��dJZ,[0�b�*������=`�������V��$�c��D�8����%��I�X�B��o���%������A��%`����DRRR�W_~�K~JL=�%[���)� '�����k����)�Le������o,������(�
;�<�
X�xL��y�����Rz��I�N'�^���v���6���VO;vL�9����-���.��%c�����8�%��k���}��-�Jd��F�1�q��Q.)�.�yG��8�A?�n�����8�O��}������?~<�b�n]���R�$�����uk��YJJ�<��0���W����d2I����g�7L��>}�%��[���n���y����������N�<�k���*�7�|������^~�e�#���}��1?��{�RJ����[<��o���A��k�i����^�s�5�F��N�>����/8r�H�M��&��0`@�k��
l�(��F�����<yriiiqq1s�b*1777A'7�
��Y���w����u�
n����_����w��#���������Y7T�������w��cU��7���c��t����%K����*//���x���Yd4*j����-/\�P6\������y��Y�F��o07��g�(�#G���/;;[2��uWwHO�w�}7��y�����l6���p�\iii1��Ym��$���>�HZP�
�o1����&�b�����ilV�?��{����p8�i�V��a�7s�LiG�
�r�%���w��������y����7����P4h� ��z���n�������R��g�f+�ux����;��g�e���y����+Q�a�W���3<�������/_��?�����{�=6L��l�L�����l&d����w�f��L%�gY�����=�z����Y�f�\�2AO����XQ~�����KY���8�^�z��%%%.�k��IS�N�)�u���v/���x����f>�����{/����������Y��^�g��|Pj��F�'��9s��0K�1�Ll���	


���b�����K1#)|�#�%5��j���j�p8��$�^~���}��_�>�{A���6�ds��������w�yGA��M���O���x�`��
��^���g���y�fZ3��@���qDQ�������������b���R��J��W�������g����)S�V��6 	�O����h}�N)]�hQ��������x����h��E����l����,���o%g��%�(������=���=���s��M�����krr��?���>��A�v��c�QJ/^w����7��*�j���laz"�$�������&���p����,�7��I������1!���]�v����.��M�:u�$Y`��I������:fI�|�T*���o��f�����	&�S�p5������CL�%h
�2�G���[7���o�U;|�p|�(��Yp�]wi��3f�;w�u��N��_�������93==}���'N����F�1�����5��� ���,���x���G"�b��k���l���h���� �o�>n�.��d��^{�5�J�w��������@�� WF�i�x<,$w��^�v��dJ�@y���?
�rss
C|��Q=�T�P(��?�)A��<NZ��2F��6��N��Ge$���x����sCE��������T��f#PPP@��i-�3@k�s�6%J��r��!)~&��J�=z4�b���(������g�I��?n�8)s�_�~�#n�*I��;w.;;[r�����2�i]g�������������999���uqqq��=�#���05wm���t�Ri�����^/�V����3�J����p<x�u�]G)���f���x�����=[������n]R��B�w�u����OH;�- �nw����=���Yf<��HJJz���.���P
�K�b�D��<�v��I:���Y�8����R�0O2�gCYi62>�H�c��lA6����Spw��o&}�8{���J���:���������Q��;�)7n�R�5���b��~���yvV�^�HmYw/9$�/�5S�&�)�}����y��%���� q���3����?��"�6��#��h��]�ti��e"{5H���o��e��x�b�������b�-n���������?�`il���s��q���Sd+�7�x�f�1,�)�I�D������7Y�f
K�I|_�(�.�\H�����G��j�x�b��f0�����JJJ��:o]^��`0H��L�����N=Orr���?%�����j���pO��b)=��o���7c+���7(�$!%��^��RC�bEQ�BL^+^[�������'Oj�Z�P3��y��X�
#��N��dR*uJ�o��V���a��I�G�f��
6����=z0�I�}���n7[���s�)R��S��n�ZTT��I;$Haa�;��s��6���w�|���={���o6�M&S��Z���9r���S�%&g�K!�|HW_�E�0=��P(��o�(����������K�r����J$*,�$�T������D�����+,,d2	f����n�g���l!� 	6Z�������s������f���w)����s��������l�v�����|6�x��p��7�<o���-[�L�br�B�� t�J�W^y%VW����z���4����f2���([,s.��7�R���-�d��l+kW���A�q\�5
��[7A�m]#F�`V'����+5A�v���7��������I��56�M�����<�7#%%E������f�����h�Zi��R������-�f}����a���RJ�%4��Q����jf;�R�A`��
����F�����4##��]�z�]�3g�H�U��
�;w�d=S�
z����{�5��jG�����*X���8p`�6m��@)��9���=p�@f��8p�s�=��J�~��)S�|���7�|�����O�>��	����O�>/^<|���h�$Q����������S�N)X���w��u���k��Q��n��a��1���[oi�Z��~�M7)R �����m�x��w��"���F��L���(��b|��I�kM�|��gN������{�m�,�T�
�f����].W(5j3�T�~����L�4I�V+�06m�TZZ������ok4�N7~�xIm��@���j�������?Z\.��``�����%''+[[J���TJ�D)W��e�5�s�R���s�U��1==�-�R�z:t�K�.<�+Xl 8x�`��=�-AA�� � � Hpx
AA�;� � � (�AA�;� � � (�AAA�� � � (�AAA�� � � 
wAAA�� � � 
wAAA�� � � 
wAAAP�#� � 
wAAAP�#� � ��AAAP�#� ��7�|�RXX��?	�^�7�/-//�Z������:���nwuuu��\�8�
A�;� ����^�_�����G�����x�����g7��9�����7o^vv���������o��9��6j����� �?��3xA������;�Y�f�^��9��3�,[�l��a�����3b����~��/�,++{����l���];��6w��;v2����j�*�������������k��S�N����W����o�����h�*��w�=����/����:v�x���G}����YYY��w7��R=���o�����p8��w�����_~���^[�r��jm���T��%K�.]:t�P�N�����>8u��+��� W#�� M���W6�b��Z�j��	�<����l�2j���G�.Y�$������3f�V�]�~}���`��u���c��[�n���UUUZ��a��m��---�X,}�Qnnn�W����O�>�������y��!C�x<�O~��r�j�;v�����������{���[����������{���+{��UQQA�|9� H4Ai�����)��|�	?~�R:v��������F����N�6
|>����>b�zNNNNN+$'''--����w�u��i���!C�t���RZQQ��k��w�}'��n��effVWWSJ7l�?����C��?5DQ�z�F����?��~��70}�t���r�:v���G6���s���v:�K�.���t�\�_!� �A��� H��M�6PUU�������&M���/�X�(���ONN����_��P(
�����o�h4&�	��0:tH����j�Z-��5j���B��� ����[o���{����2��1x��������GEq�{f��TXX@Ts����"���QNR@P!J(?�����FE+�ZM�m�&b�H��b)����o�H�,������������]�
��|?�?�a���g�Y���wF����N�}�vGG���f�U� P��]V���J�B��]��z��n��pD�R����_~�e���P($I
���C��*KLL|����V�Z��h4Z�������|����G�M�v�������;����b��l��R[[�+%I�z�*/��=�o���#G����;�x����2����>|��]OO��7�����h�n�BGGG"������z�~���D;i����D��������7>>������_~����nN��x��j��L&^�������v�<F>w�����*22����������j����}���G��������h4���)))�<����#���u�V�B�l��3fu7�T*�Z��y�-Z4x��������Y�fM�2����b�,^�8//O�����������
6��U����(C�����899���UTT�9R�V���UVV���VWW���TTT?r�h4~������7��%%%D�R��������4����$I1b�J����4V�U�������t[���7o������c�J��~����+W���t:]``��b�q�FKK��������+W�F#��6lX�~��^���;�O���p�(��;�p@�(��;
w@���P�
w���P��p����;�p@�(��;<������������[(//����kAa��sf0����g�>J#�����r��:��z������?t#G�y��;<���������WTTt���b�|�r�NQQ��n��u����������=[���y�+**
����{��6�v���k�z� 55���s������������$I�P9r�l6��r511�����m�fsII�C���`X�~}\\�O�_���>{��������������x�b�,[�,55�������_�!I�$I���jUU�]P���,??�������6�������~�)��u�\�R�}�����!C��������}?�]��kx1����l6o��e��m=�*!!��^��Y�Z�u��+bccG�y���������o���'�������]�#�0�'N�s��r��� 888---//����1��������>}���W��������l��q=�B��j�Z��]�g���W�^���=p���m�F��oW�G�B�����������7�|�h4>��������{����O�z�*
>���^sqqijjJOOwss�Z�B���g��=��6n�XYY9z���?�x��-�����jjj:;;���bcc�J����?��s"����z�j��������J����g��U�������W�ZED��mknn^�pa]]�K/���h\\\^|����0~����YYY������6l��2??��g�IMM���~����������~��'O�4&�i���C�!"��t���w�yG�P��������@I���=����u��E���stt������R(�$EGG�X�b��
��M{������g�3g�p$�������p�����%K�h4���p��	&h4�7�|��/�tss���9x���b9z����{�h����>�,�MV�u���_|����kjj���c��h4������>#����������������gdd�L������|�R)����g?�������G�n�����c���w���X,���qqq
�B��E�q�������q.]�488X����8��"�jMM��]��\�"���o~3y�d~'w���3g������Kzz��A��(77���-///22��]jnnNKKsrr�Z����f�y���C��$)##����|P�6mjkk{������g2�6l�0t�������"�v��k�����������WPP�R�|}}W�\�g��5k��`��5eee+V�P��vgz^^^QQ�Z����[�~�R�<y��F�9w��O<AD���;w���9��������?�ADNNN������D4w�\!��b��#:::::Z���������@DHNNvtt$���R!������OLL<s�������wbb�����h��UB������@��}�6���G�NLL���vww7g���2e
�?~���a���Z�699�����N�>�g�������_������j��q��h���xzz*���S�FGG��j__���z!��u��h��i			��y��B��"���+�5��/��{��]��6����B���O����}{mm����J�JHH�:u*�[�N��[o988�t���{N'�D��ruu%���$???9����---B.��������w����MNNV���$�E5$$�h4���QJJJJJ
��5�.W���}���z����!&N�(���h��M�6������p��BCC,X@D��������������r�G�9']]]������[9�|�_�pA�T��z�L/((hiiy��W�(00p��%mmm|��vssB�;w�s)!!���������E�V'''���QCC��q����`����P"��w�������;&���mjj*��G�S�!_��x����_���O0MKKB455
0 ,,LQ\\l[#��5K�T�8��q�\\\jjj�4$����!rrrxlL�i�&"�!y!������$/Qxx8/���
6!����G}$�8|�0�B����n��!���}�$��Y|||��z�p����K������%�Tg[����9R��^����iii<xp@@@[[������bcc���X��_�c�����<u�T�Hn���.����D��������<���������w��q������<y2o����N�0�����|��}�����;m�������=E�jmW��������������b�������E�����r�_�z�j"2��v����4
/���;99%$$�E�Kp�����_��������'���/�e&�����f���.�}�����fmIK{�]����sNfeeQQQ������B���xggg�|
!4�N��s2))�G�h�������CD���-�HNN��1w�\8�o8
�IDAT"�~��[�|}}�;.�����3������2i|�����k�����uv���u[[��j�5J�������������B���e����<���i����q��	\�888DEE�h��W[[����
$"�|��-��-���C^^�o������L�yxx���?���������������R��~���fE��]��)8�EEED������1x�`�VKD...����F~Ibb"/���OD<����[<]�b��������+��,--%���'��fI�n��������j����������yn?''���M�PO���@D�V��MMM����~�����u:]O�l���d��[��BO|l���?pT###����EDs��!�p�U����={�\������f��b�p��F�k�7�x��b?~����s��%��pn7����)*��7"g���n�����c�R����l������������&"///>�KKK�f��)S��F���kkk��iwvG ??�+l�Uyy9��������������$GG���ty_������gff�\�r����������a���J�[s���i������#g��mkJ���N������� �t:������9S~��{������7S�T!!!O>���{��Q^�����r���U;I�����b�:����N}��m7�y���r�������xy����4!�0��d��$I*�j��Q���]T�w*�1bD����j��s`�A.�����U�h755h��m��M�>��&I�[������M^puu���y���{
��o�IHH�}����Q���F��Y1����s�;�v�{��#I����=��S���J�9��.���j��������$I�����q�n^�q��������n]XX��s�=w��p���������^":r������r�V[[���(���:�8|������G��\�����!�9s���������n���������!&&&==]����[e��N��^�����b�N�����'���k��h4644���I�t��6���'%%EEE�L�n?��":w��(��A�����������?>���������]��������__��,d���rS����������Sm�����=:t�=�Ib���?�;����5������'O���*?����di�*;{%U-�Va���h����|�vX,//���Osg���z��V���>|8�Y��k�����|�	����QQQ��/��L���(,,,((�/
w�����zm����@�y�Abb"W*���6l����;���2e
OQ�'H�JJJ�����i���K�f��1cE�g�EDDl��y��IO=�TaaaJJ��}��y�o�������KNN~��wO�>}�����'�l��:��R������nll�i���Z������N
���[�t�a��}��gG�	�i��W'^y���{��L���l�J��mU���~:;;;))I��eddl���6�r����7}��]�v�����c���$���2OOO//������/QQQ��s�z(����n��}���;w��������^6�7�
�@��
w�������5k��Z����SD��:�3g��/�<f����R��2o�<��m�YZZ��u�<8q��S�N���M�0���3��������2d���krr��s�.]�TXX�������������s������D���=o7��M�)�������I��v+o�������������D4p����KKK[�r����n6����x���6c���$i������j�z��-[�n=t���3���`��t3g���o����w���v��'N,]���w{����k�����w���2�}�F��b�l�s��V�

�

<<<4�F����8t��|���uvv&�Y�fY,!Dvv6������3I�.]���y���+++���� ��������B�o�����#��)�<]d��%������������(��9��}��>m��F���������U�VqTy�9��GD����������#�����G�p$�/_�����o4�L�p���������/��Y!DCC�"rww?y����l���������aaa<������H������+":|�p�\mhh�\���M�4���ljjrww��}O���M�4�d2����v_�m��5��F�/)p����C��AAAZ����j���?�����[uuu���q��'!,[����W�.\�������-_�\1l�0y_�m����}�Lx�pxlX���~u���c���C�������c�����������v�f�y��]����\�-ssskkk��[�6{8���#0|�����~������L�����I���5�]�������)���s���zN��S�������.\�p�������\�]�g��\���+W�p��qw��������;l�
�����f��������/m��$�?���?�������~�d��������������/_F�~(��0j��A��L���w��&���Z����K�KS�������=�B�������#�?M���(��c������===Q}>\�vvv�t:D���Z�uuuJ�g:
w�+0���P��p����;�p�����- }����IEND�B`�
fpi-size.pngimage/png; name=fpi-size.pngDownload
�PNG


IHDR��!J�z	pHYs.#.#x�?vtIME��wm� IDATx���y@T����sf�a�as��pO4*\���K�m����2o�o�T��[��-������M��R�
��q�mXfy�?8��dj:������3g�y�a��g~�9�sN`�$4�; � ��; � ��; � ��;�; ��;�; ��;�; �������9��-7���s�7�enz��'���
������$::�1���UUU������|��U�c������\Mrr2c�g���������������������c���L&1���C�m������^�'�6����
n��j����������w�Q�Gc�M�&���o������'Z,�6�-�s�N7y������������ ����?���7<--���+++������������h|}}���===[����D"z�����)�y����`��k9�3f���#��G�B���?�O�p�p�����\oo������R~p�9��w�2$--m���s��=|�p����H�������f�X�J%c�������"����������$i��
���p�����/�����z�}��g��]{����={��������y�����]��s���#F���'99922�;���c�F�T�����^�P(6m������L��X���RRRz����W�����*r��U�D�o�%��������;66����_���[�z��c)))�m��o�5�����o������_�������V>7-----���{������z}ZZ�����~��R=n��'�|r��)[�n��k���UWW_�C���v����j��M����k�~��w:��������{JJ�8sHII�����O?�s���n�+[���+W�$������~�g���� ��+W8p����{������JJJ���6n�(�[*���c����T*SSS�h�����maa�g�}�l��&������_DD���K���7o^�vmUU���G��������{�{��7o^}}�X�V;v�())�_��WX�zutttXX��O?�k�.y�h+��2o��?��OG���1�m���O����1�d�SRR�����L�������\g��u�M�$77�.]����'Q��(00P$��_~Y���s
DD���r /�^���&O��9��������������#&xxx�|i6�[����P"��a�x���NDs��e������UUUu��!88�s��������W����"???y����?�������L#((���K�������#�x�
"=�D��O?5_�/�9���o�}!��voQ~~����h|�F��s�q�kkkLD���*�����������%�O>�����t��8-���UC�F��X,����$y��m���.]��9_�n���;�G��>>>j�Z�����X�O?�DD�\G�V�k�N,v����s��<j�("���/��3�����+���w��m�A�����F������[���i08��'�N�:�m���S'|u����E��)))������off�N���?��S"<%''�t�s���L�g��k�qqqDy��%�N������KDG����SO=�9���Jo�����sg"?~��j�����G����������l":y����Vqqq``������m����~������'O2�����Jp�������$)88�j[j�Z�?ND���?[���������f��YZZ���������:�n���D����7_�/D������m�$�s���'N,//�����GEE���C/_�������U*���k~~�m�2dH�[1d��m����������e�N�+**7n��(����/�����mS��"�t���/�9�������ED�����?_ZZ:k�,"���_}}�8������.**j���$I���o233���K�}��8r������w���;w������@���������_.�*((��������c����p�����6��4z�hy���X"������5k��c�=V[[+�l��m����mp�%���������s��M�<�~�m��f����>>>��sOii�mp����E������o���x��&�]�Z(>���E�������W���������Qtt�x*�d��hF�~�myi��+V�h=�7y�������nnn��>\>�����j4���{7�1��J�������{��"�._���^}�U�yM����(**
`�����S�����D�n�:yi4�t"??_�����������s��u�Q�9�����hr��c�h�;w��Dor4�c,66V^�8]���M^}���(==_p}0��d�?���x����-rtt�������:u��m�BBB"""bbb����[�l�2�|WW���]��l�X���/_�,��\k�bvqqq�����#WILL�?��x^�p���_xxx��i"�Z���M���ED��m+++�����u��8o.))���O�_����\/���Qn�
�z�t��U~,������Q'�F$I


����������������H.����+�O�)C�=q��x�i�&q���zyy�����z�]-�*�i����������Ju����{��������{���a�������W��3G�P0��`���a{�69�,Y��W_EDD�?���_��v�E���	�!�~���7�m:��1"�J���{g������v�Z1�IRR�������?��sV�u��%rN-...))���{�����a9����-:~���Z��z������#G233E���S�����\��a�RSS��Y#W��:r�M�0����Wk���7,//����*���7��?W�P����bw�SZ��X�_�ykjj�����v��Q�V�\���$6��G��F5o��ruu�j�999f�y���C�%"�V��K����Vm~4z{{�\���d������
�pG�(�->�v<x�`AAAEE���sw��}������7����0,,L��m�����4     @��m�����Zm��w�y'::������=<<^y��k�����������[-w��?i��������=  ���K�V������M�u|��l�r����Z�^�N�:%�s�����f�8����
|||�0��F����/����M[�j�u������cm���;������l��m��������]�pAtE�s�==z�HJJ���x�w�}���K�F�j�o-�:L&�_#oo���/�7���5M}}}���������������M�AZ!���-[�h4Qvr���8�|�F�nJNNNj�������]n������*�%�V��bqpph��������v������������>g�9�[�V����{�%:�N��7�L���^^^��JLL��d2��5��h����Q����\��w�m� ��]KNN��oUUU��?��,��Mc��	��?�ADb ���j�� ::��O>=ztbbb���h�""=ztUU��2n�����_.y���������������������VSSS]]��SO����y�fyD��>�H\�*4l�������s��b�����>#"����4yIn%oo������������b���������Y8�������Z���=bG�)�*#f~���7m�$�Y���}�vq�*��^�5��A���kp�h��i%%%Z�V�T������?��C��rqqi}����o�h������1�9]���� ��m`�X������A�1�4M]]��Q������v������p�B�cL��'NDDD���QcM��j���8t�%&&�+����D4h��q�����k41}���!!!-�E�!�

Dy�L.�����?�x��y�l{LL�S�^{�5���(�-���;WPP 7~�-,:�����3�|N�)o����1�1�������l63������-���ILL�j�b~�N��C��c"�6/F�r�J���$�7O�>������$IJJJ2��/����G�w�		y���������v6''���dyw�I��g���W�������_b=�����vh���{�=����
�0a��l���u=z�h�T��p�P��/::����I���%K|}}�h��Qr�yLL��,���3'''999%%E�T:;;?���{��288x��I�
rpp�<yrEEE��)������<y2111++�s>y��A������U�T>��S��������j�&L3<x�������m�����o9�����=����hq3/]�4q���^{���prrz���mo�:h� ��$��;V�5i��s�N�?�}���u�V"���|����M������+W��3g���Ovv��K��y��Z���<m��>}���<������M0�������2337l�@Db/�������N�>��������O���G�����	&h�Z�� ���&���BCC7m��q����,??�i��u������7**���-   !!����9RQQ!/G>��h���g�����HD�|���3g��['^���		����)���1���~z��u���{��'��d{���R(�/_��_�������\��u�����j/-Y�d��y���u#����������qU�;z���t4f>�^�������D:~���n�J����1b����m8���[w�Z���u������K�~I|�A@@��������1r_����?��^h>��`�X�L�r���C=��#�$%%��=[�@C�q?::���l���- �J��cq�V�;���2p�����R�k2���$W�����R���X,�vtt���7v�o:p����{���o�����'O���6��*�;�:������������������yxx8::�N������&"___���������������������b�Zl�������s��Z�J���ZH��������|�
���7,��������d���!!!III���.]��{���������������{CBB�w��t�R������v���W�^�'O6��b����|���]����������p��,�l6O�<�W�^]�v�����m�Z\�	&���������|�����[�N�~��������K�,!�I�&5{HH�B�x��������;����;w�s���FD'N�����
FD����-Z����;..����&���7_lrr2�3&>>�����222�}��������?���K�6���=��*++��=z�o�������z��}����wOEw����9�C����*((h�x�g�}VN�iiib��o���)
cl����qvv���Gddd�����wPPP���vZ*��C�������E��F�O��SSSc2�l����_.\�0�|���W^2�N����{����K��O_�j��3'00�[�nb�����h���������x��j��������UPP��dj�V7���*c�Z��'?�����z}aa��$IDTWWg;Q�V3�$I�Z��D��(8::Z�V�%Q����Xa��)�������_QQ��hl�VS�L)**j�VwQpo�jC��b��&��\�����$m��Y~�~�z???��E�j��vb]]��j���xA�S7��$��8�b��ok���}��%������"???GGG�B�~���k���V999�]UU��hx��k��1�����svv�{��B����A��b0DAy~~�R�c����Z,�V��S����w�yg���D�l�2"�?����}�����YXX(R��+^}�U"z��w���N�>�����3gM�6��*++�������$eff�5����!44T���biq�d����O���;t����P__o[����R��[�N���w����������Y�\\\�w��z��I�&�8qb���FHS�L>|�^����qrr:}��|�b��?�����]�vD�`������3gn��i��D���OQdd�V��������?~rr��y�������	{����o>|����~����2�V"���VWsv-���VTR��`7�=����������������{DD�<��������V�;v���!C����r���������������*��`�777�%K���yjjjHH��������!C�����/�T*��QQQ��~~~[�n��/[��������\ipg��������?��g�ueeemm���J���%��___����k���;���3�:Q����������%%%��j��YYYY}}=�\����.��2Dd2��z=cL�P4���������N�:��� ������)v�����?����f��6����wipo[��	

`����������������������8�����}�p�R���o[k\QQq������w��E�R999�8���n��j�*???Ij8E)--���y������<==�t��r���+VTTT899������K�.���m��������[^��b�����,Y��}�V�JV^^������`6��H�R�����Vqaa���CO�>t��E//���O���4�m����������EGGo��Y�Tw�����TL���[jj���?�3&11Q�]���[�n��1�������������BL=z��-[D
���IMM�=<<rss[��yyy�:u�Qp���%�����Am�T��/�<}�����/\����PZZ:k��&�TWW������.\�����m[vv6��5���4!!�����/?}������(###11122�s^YYYWW����6=�al��������s����l�2"��o_jj�{���9/++c�������7��:u��^z�%"3fL���������l���������75
����b�9r���2--�w���+���^������#�7�|���c���D��h�����z�N���������JD=�����x�������_'"�N�:UUU�������4�7)�Q*�f�����v�x�������DD)))Dd6��9����9BD������r��#�<"�Ef2��(66V��Z�vvv���!����������f��b�����4�O�<���z�-"Z�paff�5�Q�T6�(.#���&oY�v-�F�yzz��x"JHH�^�2eJ]]�-���mku�p������+��]\+��L��df���j���ELo�e>j�("R(��(��j�D��_���jy���y�2q���n&������w���:�Z�GJ�q���HMM=q���C��?��S'???�y\\\����D�zhh�Z�vqq����;�O�8��?�I�ZYY)�o��)S��.V��l��I�F��h4QHHH||�<���0�;�Dm��}���������{{{'''�9sF$o�����CCC��k�p�B"���/�h���j�:$$d���yyy��{��={�92{�l"�:u��u�>��S'���f�j�3//���H�s����Y���7���/_^�bEGG�_�>)))::�������]�t���&��T*�j{����q�����w����}���:tH������o����gee���m��-22�{�����G�7n��7�L����������$�;wN�k��W^���O|�����s�����{��!D4e��
6�V��{���C������������Dd0���KJJ���WXXx����{�8��
�8�w���������w�a[F�Y\\,_Bz�=�[��� IDAT888���{,--����s�h�"��E�T�������������=+�!u����-2��FN�Dt���v��E<����?}��	���"�k4��'ON�<�s��c�����S;�����R�G}477����mbm��p��5=��;��f�����HwNp�5��$4��3K��*��`��K�?�6O����@p;�S�w��:}u���$��;����<F��j��;������2.�Bk ����� "F�by6Z���(�w@p���d����`�T
�}9	hw�;��lP+�~�U;���J�������vp�� ���S)������cREm	������0�0� @p�s�rT
�)����`�����^l�P^�C� ���8�w�G0������f����=�1v���/Z��j�-^�X�P0�����z�<}������c�
><..N�~���W_}�1���k�Z�/�d2m��a��a��W_}5==]N�999���b����L&�-�K����&L0���|��7���sN�<966v���,HII4hPEE���g�������~����{'N����#:�CCC�.]:{�����/^����{��&$$L�2�b��^�����0`�N�#���/�������KMMuss5j�?��O[p�[P�qM�0!..��������z��YWWw��Qgggy�K�.����K�.�"���{o��9����_���
Cvv�Z�6nnn�'O��a���K_}�������;QDD��={���V������#G�(77788��w�}��7/^k0\]]����u����r���V6$//�S�N�o��-����.�E�����Z�@�v����������Oic�2��_�Hdb��\UU�R�lS;�t����g�}V<}��7�h����������G�V�F�?~�7�|CD������r[/\���v�����KKK'N���]\���7m�DDYYY������D�V�===KJJ���ndK
����b�)5��WN��G�}�����y���'N���]�s���X���<��������"���jU(�Dggg1sMM�R�����ptt'�K8|�0=�����V����K+**����������w+�Z���I�1b8d���\t�;:::99���G�R�Y���|zFF��f�T�Tj4���~�������<�U�]����5����.����(��(�P�0�^x�������J�{���e��w�y'  �������9oR�^SS#X,�����J�I������{�9���� //�}��D��������s���;M�KD999�*1�JJJ����k���2������.]��+\��`W�����k��~Q�.wu;;;K��$�������o��a��)D�w�^"�2e�������N�+//��� ���8Q�2i��9s���������D#/�s.b}\\\dd$5V�w�����?� �X�Vggg�+vppp�m���C+[ZitS�����E:gL��H�m���xF|ic�"Xo�������_~�|��$ID4��W^y���2   888#####C��h:v�(�{~~�?����G�MD���>5^��r��K�.%&&~��'C�����{��q"����~�������.]���kjj�-[FD���?�h��1z�>>>������u��^�o�Z�y��v\�
`�n�8�ml8����1c����yxx�������Y�&::���w�^RRr��q??�����;VVV:99���&%%��u����3?��S77������G����L������U*��drww���
$�q��%$$�V�?]�f����?_,��W^Y�xq���7��<_z���Gl�X�e��g�v������p�����,WWW�j��k���=���������%>>���xv��QPP��?�Y���RH��%''���3,,L>y}�������QQQ��_f6���������#���7�{n���QJ*w���[��g��������M������|�����p�;gx����������N�D\b��t���0.��3Y��4���D�R�� �`��S���;��	��$\�\�rK�{N��`wX���%�p&9�+%UN�q��;��BM�z�%Iq�<���vG�tbL�X��j~;U@p������uqpsw�Ak ���RK�T�zwF��R�6@p{�`��d�E���RNDJ����4�;�������k�Fn.&n"��nF�;�;������u��*rW��Tw�?rj�������'j��l�s�3�Z�f��;�Wp��qEp7K
uehw�/VNDd�6<e��L�`,V3cW�����z+��������v��=�������v��b�+3K�D�`G8��0����\�{0 ��}�Q�����JN����)���r����[�o0���?+�J��;v�(,,


�}�N�KII1����Mke�+W�T*�QQQ>>>��>������?r��k_���q&N���d%5����cl��1�����ju^^^@@�������;VVV:;;O�:5)))**J,a�������h4�a����7o�$��������U*��dz���N�>�d***������J//����/3f����O�K111�7o��h4z�^�R]��JLjZ"c�2w�6������7JMM���

j��M&��#4��?����3q�������%K����m����������������t:]tt�����������'�x��������[�l����5k�����������3�7o5jTNNNJJJMM��q�nd3��6U�6���M����n�:u��������tG�i2OAAANNN��}������?c������������?��C����~~~111
�B���W��i���o��s��S��D���E�^}����G������knnn/��2����D������3r�����������������l`yw�� ���/���uwwo��N��������
FD6l0��uuu�������zj��-D�i����ooo1}��ID��s��/(�JGGGGGG"�h4#F��
E�~�8���qj,���@-�r��mJXX�����/�x���+n4*bt�F-���9��s��555�3�X�����������N�:���V��-��������)��Q2M�e��5�����v$77����QQQ����e��o_"��1���A<1b��)Aff�<�U����xyYj�W�(1i_j���B����W���9u�TMM�_���_upp ��r�}�����$I�e'���"�����f���^\\,�b�X1v�������CDz����T�����%''�s���4R&''G�����j��@���Tuu����������S%�H�A}}�-�Pn����o������|}}}}}W�Z��s������h�������#77W��k�����;v,Y���bbb���s�����"��������]<�j����{��7���������W^!�������j��}4�eee~~~�k�d=;t����[���4�nj���/HK��	�=0�r��M��$&&6�n������Saa������C������/\�p��E�������>+//		Y�|�������SO=�9�9s�������g���������cl��q�1������1k���~X����7�s��3�����1��O>���:w�������7��][i,5K��y�N���������V������dbxx����x�q���������[K�,IJJE�C���k����_~��Gy$###00P������^zI��~���c��E=�����q��}����$}��'�&M:u������G�>|��Y�JKKSSS�r�[���X#eBl���[s~psOhZ��}��'�|��/������������%������4QQ[�z����N�a�CbH��j��	����R7c���B���`jkk�f��?H��q�Z>��t�����Vus�������q������j���U�w����L�$�H-)���'U��1����`c��[,Y�=���8WK�ZBp�K��v��p��p�����X#���I�0�����vbL��q��B6%�*�n�
��v�����4���~�[��@p�`�4P��-�T�q���U�����sR��$'��{/I���<�;��]"5��7�>������m���M��]6�1����$��n����&��;�6��������>$9��DDANd�h!w�rj�D�$�}��]2#� ����DANrqLC�����^��W�[QY�����L�o@p��;���qN��wY�����:��l��O�-��7�c�n����B����)E���������]��W��&�VU�V'�F������\K��2L����z���
��[��q{O�1����?'Aj���-D�����2-
�v���
���]���YG�5�x~Y���w�:sm�CF�����J��������Vv�mIM�5c���(����RUm=���4&Ky�ix���
i��K�(�h�\FDT�tu���p��P�z7@p��X��2�������_�;Z	����KqFDde�<��~����~�1��%�[�Y�ao����f=�����V.m�����~b$w��f(YM�k�;�)�{U����������<����B4�y�������l�X���Z�xq�~�����x�������r������M�2E����
��A�Z^^.&r��h��I�����-[v������W�^x���L&o�bqq��)S����w��������T
��'�J�{+�D���KL�������Un#��me����J���p��dK���_X��w��
bbbbcc�V��d���]�pa�y�,Ye2��h��M���V����=���v��9I����}||.^�HD��A�}��7
��d2��9399��bw��QPP�T*w�����-
����BBB6n�����<x��}��o�*jK~���'��Mf�o��w{g*��+�pl����-�
���^,ej%S+�d`-w"����o��y��	x�������S^^��g�u��-33����,���;q����[����v����sss�f��LD�v���o��M�<���9|�������>{�l����l�����Rt�'''���%&&���������}��Y����\y
��vN%�m'k�����45^��R����
w������j�XW^����;��?�0333//o��e,h2OAA�����/�>���"[����~��]�v�:u""�F��_������5k�������[���������,����:u���
:400��o�%�m��I�$�~��]�����/����R%#e��'4C�[�z ��	�
����?9(�
kAa���J4�i�z�_x����%��Cp'Z�~=�1�W�^�z�


���e���Dt�}������D����R�$IrqqQ*�9��G����^�������"���fee�.V�O�4I<urrrtt�:s���O>)�9y�������C���W����B��z�T��0�q�����c����81���7[�`
�)
�r�D�$Q`` �|��eee��u���j>�|�h�Y`1Z�����"�����[����p��������x|������|��R��t�-�;��6�>Q*TGq�T�e<I�LD�����!����]�Z�:������Bp'�"�0�m�����0���4���D���o&$$\�x�������Id��������+[�|1��[�~��i��9::r�ceee���~~~D4v�X�J%��~�z�Z�d�999��c����1�$�KL��;)1��J�>�2�:"���5��2�����c���|U��c�%��I���D-9Q�I�qI�����")Ufc��r���|%��w����5uf9�V|����!�V~�|�����k��m�����G����/]�T�8s�����>}�������u/V�U�`�B�|�V����m����'QFFEFF�D^_��e�[�n��>>>���r���}�����s��]�F��`0t����\\\����U�V�9/^��P(��[ppp��2��&���WJ*��_����h������>j����M������C����?ut����\W������K'��*�)���w������"�P����������RTYQ�T��G�t5�C��wO����f�����R�yUUUxxxDD�����y��������g�yf������UUU�&�oM�>]�P>��CNN�Z���)))�~���h������IJJ2D4{�l77�!C����
<���c			D��g��������������M�FDUUUo�������I��V�\)>}���III��~��ieee�-"������}"JHH8v������B�]m�6t����^Y��,~N���n�`��yT��H�{r�������8���nV0�b���������b=N�����X�V�T�T��;O�U-`�X�����w��F�1��{��)..^�fMddddd��5k������c6�5����	~��G���cnnnF�q����N���_�>}zyy����k��VWW������{�����oOD������q�c3f�:t�����o�����KII��������G��G}4}�tq�����KII=z��A��(22r��Qo��cl��q^^^�����w�E�}�����5�S�M`�L��MDDJ���RX�q8(?�Z����W�C��n�B*<G�T����������\�M(�y����/_��K�����1c�M[]�2!!����555D���#�L�>����i{���c��)..&"''�����yDILnn��b�X,aaarAK||�������9����r�����?{�lq����}�������$I�{��(���7>|X�Pp�������npK�UL���r(wn��%��X����%��$~=s������;2����fL��5��ZO���2iwM�@�o�Q��R�V��(M��o�[����9_�|��'�F��b�����I��Z��U���CD��/t�������yyy����i�Z,"www���o�K���W���:u��AAAAAA�gS(<��M�1R��Rx��Si���w�5�/���Z4S�^Rx���& Gq�38#����%+�Xf���}=a�m8�g�.�Q��|����6���C�q��j�2�n�[��o�������?���������Gbb���?_UU��SO�?��E���zk��
m}����&�1$9����"�:��������@J)k�G�>���9'��]�h���!y���:���W�y=�:N��_����F���X����&�QfffUU��h����~�������?�����`0��-�j�7^�r{M�����'
ORz�~�a H{�[J��C�
fD����j�P�^o�08�8g�>�{�_6����+�:��,��7/%}���/�I}w�*�*n�[��Ti,�h��z��Xv7�����c��U��/��"�?�������]��5u�����SC�����S���b���`G,�d�j�SUz0�������<f0���$���V%��s����O��4�=�F>���:�SQ��^�*q>9����x�z�`���y[?�����%I2��h4�����+�WN��<����(<I�i���[��`_�g�>�����xxI����O��2�������$G��U�56T��G� IDAT>Ggt�������q��=��4.F""����eJ�/����Bb���B����{sF�a����~���D���t��ID���1���gk��u��sm:��J���X�������,�WIhE�S����j5T���6�n���!�YJ�S������������������>���+����c����\����p���V[�*���ucU��$i���������Z����������YoBp���<s����?�9�����V+�\�����B'�K���9�T?x��W^T,[�a����]�@���sW6��0���m�$"+�&�F��rN��N
�L"*m��~,�2c�����h�����&��E�_���y�������L��O�U����W���1Vc4U���Mpg+�����[�\��M���������KJJ�����������X�����X���5D.�
�\����N��Ij�y�-���k�+j��������1��}��
���<eX�KfT��p�P2�����:�X��� E�	AP0�����j����p{�����^�W��	�"���J������d��
��p���oE�Q7!�O�4��*:���9���T����$oD�G���EDfk��jj����
�c&V�o��RY1G""�"�?���qrvt��74��{��Y�$��=s�g1��K�G8q+)���=��=��%���v���p��'"RH�7��
�=g7�����q����&N����|����������~�	=�-sq�<�?������~�������+��i��OL�b�%2v�RA�n��p9�SXVU$��[�MJ����D4vH(�r&��=Y�������9d69���v�������!��d�#��s���n��wg�T\��*��m��~���s�g�����={�DEE��=����[�n���wvv����:�#}�I����D��j�����rj���JJm���9
��0�����6��XI��$�z���m���n-ed���P<c�f��{nyq&����EZ�����ID��B�����YO�+Dg
*��G�{�sFd�2�.���Y^[\Q[rEf���S��b�&�9��|���S�N%%%������'**��������\i�!�x�cT���&�RID��������-���m�L��U�#�K�����������&R��x�
#+���������5{~��?C���I@��A_@��+��d5�o?N$�M��Y��c��"�������Y�+�z�%l����W)�m��of����WTT�?����������r��������{�|�sb������4,���5C����-�)����m��!"��W�Tg��hwr�x�������rur�����w���� IAD��"2VU�����p1*\"�����������12�h�]|<\��)I�rn���9���)����>�Z���5�����{ZZZ�=�����}���=z�������'�L:Q��l�Z"�_����"��"�H"����-���
L�d.�tu�pQ��{�<����>��K��DD<B5&""���,���[��;"�O>�u�k���[���uk�T_Y������x�`����In���uC]9IL���p�����9s����2D�T.^����t���!!!J���o���K�����:�M�������;���+�5�p!"�����3o]y��'���g�Vqa��g�Z�&"2j/�T^�gk~f�$5~Q<�Y��$�H��c���[��n�$����?�Z��?{gE�����������D ��$l���'��"�K�7�8�9����q��	(��8�����cF�G��!,�
��/��v�^j��?�������8���]���]U��{�9��W�Jpt�����Ak6C8�]�[+���m��k�Os�����O��z]�dI��`���Y���>������///OJJ�8n��%?��O�>x������[���y������uW?�
�+�����
(F��e�3����
B8����x���c
 y�����M�~	x�d����������
����/������\�����������l`���`���%p�F��o��L
Y��MSG�kj����P�9?�w^���G������������f9sS�#{O�� 9�����q����e�]6l����|AdY��9�m�������MO�p��)^}$���q��(�s��!�Y���&�;(	�q�Zh���xT.��?t���R��F�a��Hs�����f����mj�7x�_wo=������*�{��Ue0�Q��?�Y����(t�j�rH^��l�8��O�9�gr����7~�?=�7���[U��@��55�&8��R/�<��s9���
��}��(v����_?�1���0��[���-X�*��%r'k^p����Y���r5���AZ�R�^[dT�X��;�Lu)TJ)/��d���}���!�����#�*Pv�e���^����O|�6��x��`�C��\]w$����]�����o%B��qd���Y������1hj�h�������E�����d���y��������O:R^w;8�'N�={��3g�7�9s���<y2����y��,	�|����WA�
�jD�:\n��#�a��%�^�n
�WC�%�m�������������C�����6v�NI�=9��ko�������&���X;	�$������Ue0����A��W}��Y��l7
�(0�����`�,�dw���+������R�Rd���]6^�q<@��^���"p"�����������������_�����K����;������K����`�qo��R�+ Z���x��a~�����`b0.*^����N��*�y�u�9���^Hs�3]D��[������s�������8|�"�a�u,�j��O�X;�	^����;��0i�~��1�kw^LUUE_�#<�G�J����@����jC-~1�	���~	9����[��OE�o�k�|�j�R��t���vp�'M�TUU5y�����{�������������������'WUUM�4����<v�������cx6�x_o�wr�U�,��`\ x�B���h[��-[�%����+�F���;)7S78v��LU"A��r��hu����C&������\1s����3����W�������a�"�u�y#���V�MKwX�����M@9]��n�y%��C; Z@U���	v���5���|�ML�dMq�������4�o>����8����-Z�k��C�<x�������k��E������m�3g��)�z��^�]��G����NU�s���5/<uU�-��ld?���a(*���}k�M��������D���4����M5
�t�		E�9r���pe�h���A��7��aQ�����������e]���[�r1F�^�:pv������{�r� WB�q'���������"�g�����J��S�9���G!����
��Z���9NI�2�����4uH���&]�r�5�nwvn���OW�����������Cccc��UUU���ee��D���������$�9��g����WUEfD���i���Euv�4k����eO�8����� �
�<���8��e����'�!#�*�4��aq��?<�k��f�.
	��j���,��k��p.�JA�;OE��<�3�\�h����������{�k' ��df0�9���(�I�[�"�4����nD(T��i�.�D!���"&�
�5�@UA������I�|7|~=���� '=��O�UiH��-m�>���@Zf�`)���+((����k0m����jjj���.����}�,X� ����n*((���Kp������Z�fMaa�%�\����WTUUE��������������K.���`�~ x����g5u���y1H�GJ���	_5����<��S+�-�`��N"pR{j�;�������
.<��(�u��,�#�[�iC�"�G���o�cN�U��)b{x���H�������SmkWW�J-�T�"�#�	�@�#�����(%E��r=��^--��+��������w�k��)�����7�������SJ�j/|ub
�	���[��&�`#{O���� &T���?I����o���?��������������&z�����>}z��Y����8��5k��'��7o��ec��y��7�����^����&L�ey���<���;�M�}�{��
6��9���_3f�������k�w�~���/����^{���[�|�-����|�T[�k
��o�o���������q������[(��6#;���aC�`@����I�w�����(����d%n��,j	1�n�W_��x�sQ����og.���)U�;w�b���SV%����2��m�������"�����R�
P<�����Y���O<x
�k����kn�}�������@�q���9�S��6�k���j��P4�=
�����wH����3��ZIPYY��z���4������9���^����~�g��.LJJ����	!+V��<y�O<������A��N��}���+WFy��yEEE���o�=���t���+W�|��7|�������{�}�����m�B����J�������.���l����0�zpvpv�&}�f���HPQAm�s\��7�m���;��n�n�^�>���o��U\���-c����5����M�1�|���+�s#��f�_���y��D! IV��SK�br��G�	��vr��H����
3��x�B��P�g��V���pFc8k�^��;Nu����+?]SQ���r�� -���l+�����r�s��X�6���v�*�[�Z0���G�+)~-'�/7�eoG���-�N)=s���y�n���/������?x�`��P������?����-��/����c�������~Z��<`��9^����dee%%��A?�������X�fMNN�E]�}������Gp��wk���p8*++x��!C�#�.�K��@ ���k5���`����/	�X|�ob������@��p{�_�G,ar9}<SC�DnfJN�*�[�9�'��A
�=�1�/���w6�t�qj�_�x�/7B�X���?w;�bD�����T)���Uj�A`n��������Zj���z^�g�Ul��{c����WA�Pdu���1�v@��'�������
�)=�d]�oQ���t:��RZQQ1x����g/Y����O>����CO�:�������@^^��~x�w�����_�������V�6��%|>��R]����n��������z�����������E�


�{���D|�)b�W�V�gi�N�GePrX������vCQ
R�mm/�ML����4���|�����i�w]���������>�)I�AN/�x����[_~���6�lu�8�4�3#{O�fXFk���PYCm6��j�V��gE��e��Mu�hj��h7�Sc�\<]�B��@���,@b��VW��0�6�a���'U�r�}����n��q���@���C��������v<�[n�e��A�&M���jhh�����O?=m�����v�iT�E�irrr���h+���e
^�7���B���7
����7�������Rl�� ���k��1���:�j�@�%�������2�q>!�`-�G8@)��+i4��9. I�g��bO�p� ����*����)qxn���{�V�+�n<q���5v�'�V�������6�KO��c �����}=�"�*8^�����zc��"��E7@	�v�Y^���5��hi�k���b
��22�7��du�%9^?,��|�(
�S���K�tgem3�������Md�A���5	,���0���vO���=� �g����@�@���<��W~_@
&��V�`�4��d������~-L|Ni�T��r�wdgg+��y�3f���}�}����3fdeep:��{��X,�E;������������j������8��6QJ�X{~~~��������������r��;��������������N�_AI��m��1G�E��s�s�a�2�t�jh��p�
**�r,�
�(h)�4�.C@z���[�R:m���d���P���2�+�.��n+2f<��z�S,�����\�������`2^�%���u���0�t���F���T�����ZE!h�������Z��������zVT�6U�6����
���..���q�v��#��c��5=��@��='�(��*a�1�����}�h������g�}v��������+Vh
-�{����Zee�SO=t��s���EQ�������u���3�L�>�+������NMM���=r����g�,�7�|����0{��[o����������{���C���755i}��.\x����������
 ##CU��������t��qA,��cv{�lTQ#v��z##�Z�m�#��m\��.5����4�d�����1a0��3Pj�J$e��9�~~��*P�b��B �A�����f���rE~wh�:Go8t��!b��m6$�)������?�G��N����@�o'~��[���>���p�# �"
��`@*���+��v�-��,�
��nD(@�S���`���PT�<��Q2e^|b��������k�K�%5����]�N?U�r��G`���nI(G������1/��,^�ET�z��@ 0p�����_��WS�Lq���{�n�����|�������%K��v�m�v�=z��/)))..���NKK1b���{��������������v�
��o����9s��%K���j?��OL�2%##c���~���O?�r���\����g���C���g�]�vmqq�����k��V��U�V���{,\�p���������w��TG���g�f�m]��m��r��/7�2��s��i��Y���fbGo�Q#WBn��~��K�J	G�n�������K��]��7�9
�%B����[�_��3����>P��S@�5��(�X]���M~��'�������7���*(���������?im���>Z}c*l��{jjjCC���EQ�,��SO=�o���k����?��l��r���-Q���UTTh�?������;��j=r�Hjj*�Y�f���`���������+��
��Y�t����;c���'M�4o���O�5k������]{�]w%''�^�Z��K/�t��/����~�+��:m�����}.	'
������\�]�w3��.+���P�Re�������
����"�����`F���@��������x�-o��u�O�>t�1��F�{	�n?�\��1��GB��]g�1����toDiB�]�F��2�#�D���6�l��m!<�}���,��w�Q)��&L������=A�.)�z������E������ng����������;v���{��WVV�q��Z����w�����F�z���Y�dIEE�������'�x��{�UEU�����c�~���@�R��ls��s���5+��-KxL���1cFSSS�Y�F�i������-A�S��
�2a�
��H�w�Q�%�2?u+L�Xf������(�_�m�<~���DIQAa[�X�C)�$��DF�wh�"A����g�z+9���=��3����~
�P�z]K'��\S���
`��K���K��M�����_�'�gy*����=7�iYU���$�J���+g����jk��{N���v�����RRR��p�����������sq�999������+����N�������V���������q�����]�t�
4RRR"��>=:&999����xv�T��{��}���c"`���5�P��`�s�}O��9�Jk��D0��
�[>R�)v�Hym+�oo/h�v�\����:2���B/�8q����:3�x�Bk�LR5v IDAT�o�^k���v��.��2R����>;`��*����9WGV�w�7���8�v�5�vs������p�Y�@ff�|PZZz����,[�������9�%\,�����z2j���S����V2c�`� �;Ro�~������u�j���i�����/.��������k7wU9
b4�H����j�����]`������9@�@��V�'��i�%� ���z���v�LVLk����������f��(�g_m�@Zcl7����l����j;��7�p������=����U�%�S�%��<���q��U�������@(�qWT��4��Gnv�3��-b�)v=���5)L�{~��~�/d3o���BY�p����]j�a8�����~~�\'d��"��MX��d��{F���YO�w��	>��
���Mew�qr3$�;�n7N���1���^PP�x��M�6i��?���K�MnRt�
�C������\�+/Z@HU���R��1?��r��j���JA��@���=V�=M�8�S�b6����#�-X������}��;B�����`0@��\����+��F��!s����D�^=�p����eOS]�?�#S�4q���,)�����H�������qq��!.B�����g�z�5j�����+..�4[&�������-D�����ikm(%�������01���G����&��G�6���I����
Z,* +�������9s��A��T��7�������@V%Ye����T�U��iQ:aX���p�<3�Esxn���'p_|F������@�)�-������������%��}�9�]�t���/�l���W_}��W��m{���=��Mz�d��&�:w��������������L����a�����8Fg,�c���B�j�Oj�E�"k�������W��<u���VA�_�Fu����~��`��=�T:�IWEooa�\7�W���ymQ!U)8����T���M�Gk���7� s��a9i��	���z��cX�vs�)��O��������n����P��� �>-��������L%#��<U�~B�<>�r�i���^]�\]�z_n!#d�i��s���P���>��3v
�����^3J�^3_np�b-�Bx����`0t�����*�~4���kv������W������+� P�,��O����LUY��<m��/�1�d�%v�w/�b��C�����N)���o���������t�[���W+[��V����K�K���y
������`�G�V�+G���>)�L]��[�-()*�KH	D�u�����,�����./EMK�����w�p��.gW��`�|����rm�e�
(��c�b4�k�Op��|h��(|�)����%h�����J�p���SRj�j|�:]]y���� }���kI���
��o��j����?��vw������~��W"�%�G�Go�(�0�i�*�]���T���Z+�4"���X�l���yN_L#d�WG�>��=~�ALx�~����J!K�M%qZ}��W�.6�������
���8S�)a+��q��PH����%��En�U��xs\+fT�����W��?��)c��`�����R�z!Y�:D�{���X,����n��Y,����Gyd��`��9�=�#������l�$Y��5a*��l��|��8���!���H���}���!�Fx������m��;�4�]����G��Z���P�W\F���R����c��Pj�6���!=z�$���!]�B�-���vM���M�x
ZA��8��#�_�Y�T�/W@L5��{����H����8u��5�v:�����[YY�k�.�cRbm# 7O�F��t9$�#$�n���<�r����\m���V4��Nc.�SeD4�����;FRU��G��{*�}F��%��w����"�"o(!��a08��	�R��R^���R�������i��S����&:Wx�&���|����?J��<'P� ����X?��S���O>7n��%K�t�RUU�p8��n�`��DF�8�.�����Z��5/X�F@N�f?!�q��M���x�^�i���Q��>I������P�V��I��.�v3e�#/���u�Xq*��P���d������t[1A�(��@AK���`1����W�P�J*�UZ�X����wB�to��RSS�~?�@ PXX��G������v�������b�pp��W�<E�@�1�C�A3?����ulAym�wW��F�X��$P
�`3���@Zv���T���Z��'�����u���V���1�]s�S��@�{�;"�\`�L�l��G�+��\���^]\1>��65Q�A��VcJA�i]�R�&(5S4m�C�:�:��G�E�%Iz���
sss_{�����w���g��I���J���6�e3n��
x*
JGf��v���������-���[���+�@Q�d������&����O!lIf����v�q����`tr?C�@@ed=��^]�I���&�#�R��[�ny[t�d%0��vXm�qO��B��w�vs���Y3k�,BHnnnvv���y������nxS�%qt������B�����R�a=��o�`�'��0M�x�
U���12�6!�(S	5_3�D{�+j�B/����DN��?P�O �|b���������m	(>v��N����HH����%:a�9�0��=+D����p���6�vb|��u4��%�M��Z�$=�A8x+<:Z��[������?��o���u���[���_TT����nxs����(������x*PSR���������`����I�:�'�R�z�@��uIK�t�*RVKX6#!�^��OFj�IS*1�R-�.���L�������C���[������g�;��Y�Kn:�@����t���g�Zoe]����e�mD�M��FUO���w����Z"��l�R�*c
�7�U$Y�w�1�-�Z��0����}B������yv��z�����Pu�p��z
r�p������l�5�fT�hC�7�N�
4�b.��������s#W@:��-v���������
(2?��<P�`��V
>����Z|�u>(USY!��j����*�U�V�^z������7n��������_���/�|��M�6mz��w�����;?���Z7�*����;z�����(�K$�"���������zC�=�Y��pq��}���T��2l�X��I��`@B���#�9��$k����~���2��Fg%(zK@�1��a�d%*hT������+ ��=�H�6<���Y���}%���i��R�U�[MW���������
A8y����>�����8q"--��g��������v����������!f�w��N
���
���"F�J������57�����L�I�[��R��e�Xm#f�SU��R�B~��oi�q7�j�v�����E��V�Y�8�w�{9���x���)�����iFOS�E!w�*mQ�w���7�Id0��4��
m�Q������{������k��8p`��]��,++c7|\���	�KKF�"`�yZ�W��M��<T�|�^j��=��q	%q�����v��T�1*�j*PS�=�WR#���K��+�M��x`0:��3|Y��3����:��g�����7 �)�aqi��I]5<m�xgjk��zQ���#�������RPt�����q�z�<�ggg����'OJ���������Kv��C��Y��qw��0=���Z�"\�(�f0~<�m������z�F���h5R�e���TV���4��,	D�N07�R�O��5�6 1I��S�*NU6�b�����.�'��V@V��4f&z0�]�@m!X��bw��~)���G�MX<b$��^�LhK���D�����}wJ���~��W����}�Y��}�~��W�>}����-��AtjW�\�����]����R��x���n�XQ?�GEo��m6%��z�>�D)����BTz��Dis�(�9��7�<)� ��\S����o������ ,��`t�8�3P`�����T���H��w��V����8N�h����r�)h��<ZI��������XU=�c�	!�=���a�&L���_�"))i��=g��9�I2{�����/[��o��E�=�����mS��\���f��=?��O7l�PWW�R*�������������?s����+o�������VQ�����s�=�������|P�g���h����~?8��,R��)�3������B�j�Q�f��)�4����
���aWi(F������u0n�g�[��1e	�����3h������y	��H����� Pb��d�4�`��]m���f���Q�����v����Z��e����nA�s9l�4��4��~UO��QDQ���[������'M�TPPp��w�����|��W
�������q�~���a��L�"�2����>}�0���t���W\q���g��L�:u���O>���������bEd�)������]w��e�


�N��m���?~��q������y��_|q�}w���{Jk[�����=GP[[�t7�tc0��#F����O�������zO�k���.O��ND�[��T�Y������k����{h�Y	
��i�[a�W�%E�Jz�i�Rd�hw�-�i����il�4h"7������
*��'�X'5ts��,!�oj�n�^rr����7n�x������KQ��+W�#������{���MMM/��������?u����cW�^}��a=�PMM����O�:��?����.�s���>�h�������zA~���EN)	�����^o}}=�t��e}��+��`��M����?>����B����6|�P��q��e�D�|!ES�p����Y��C�`�s\���)��>L��c��6�k�f�+�24��|��L~����3Z]����6s�����6L���:��I	�p1�Z	�"�@q�&��\s�U�����Hr�P���wsU=�p��A������������	��J�������]�����������7~����j��q.N���������$���G��8q��'�p:���]�(�������7n�8p��n��/�����e��x��'\.��o�	��t�����������7l�0u�T��W]uUFF�����{�#�<��r������������\�RL,�������=�XA��������y��y�1����1��{��S�~M��k�
�J�,F�
o�anL�|ty5���
!H���l\���QP�p�X�T����1�V�?Y�`%0�'���"��SRT��.6��V;������UsF���Y��������������[�)��C�����Z���W_��_�z��5�~��W�^�r��U�,�����@@V�^��E�W�Z@���w]w�u��oPYYi����������$	������S���p8���455�}���=srrdY��O�0p���T.���U���xL�`���RE��T���������+�m���+'amM�H�,�C��SPUp�L3����z�����Z�E�i��r����\B@i������"���K���\ay�F9PC��*���k$%&���yj���-�2���B1b����X������i�mVV��	��'N�x���������������k��	�=c�W]K|7����z����$��nwP�r�����)������6}/��]��v�hc9���A T��I*�+�y�X��
��,.�C��
��
��)����m�)�>�'�Ru��F�Ln�>��%�y��������sS/�]�
�%��Kf�PPm�J�
�5��nZ:J��O�
�x��0R�	>�e�X��G���jKU�\�k�,sq��y���[�l�����|�~?�q��MZ&�ha�
�`�]+�
�E{=bb0y�d^�>#��a����!C��BrHeee����7j$IR P�(��P��$I�h@�10�TV��5TU����k�eUj�6Z����q��v-�N��r��D��Z��8U�>����=�%`����j���kC��#7
]R��k����f��)�*�PG����%h�l�����b�-�?Y�a��^�Dr�
g���5{���VUU�-�`t.����Y�+��_��K����)Q��}��T�|��pg�8F���(�^�^�v�M�&p��om\��
^�V���A���o�8��F~|��%��y\DV��H"56��@�\y��N
������<�Q��j���k����,X��+������_�����i!����`�����T���|������������g�����������U�F��k�7���~���|���o��~�ap���{OE��:r%�*cv���@UC�j��i����uvV��c��_(�y�	�htIK
j&�|�
�2
b�H��{
���u�x'���: ��tt���z�&����'���6������k��
�
�^�f�#L���V���%�s�]��B��fhA�d�#�PUQ<5�������
��mZ�����q�`|��*��Fm���������{YYYFFFt,����7��f3�(�����6mz���rss5O=������t��u��es�����������Vk��}7o�|���>}�l��a���?�0����������m[�^�dY�����Q�c�����k*1�]v�vX���n�������7�p�u�-^����?����:t���A��������[$���hd�[@T-�i��6[��Z_��*�+���rc���������j�F|
��hg<�=�Vb=q�7�(�l����K.���&���2]�{�7
������FJ>����>�|��Rj�Z�v;@1c�/���]���\d�.N���[)p���Mc/��]��Z<�m4>�~��y�h��r�\W��# v��0�����@���c��� t��������k���j3|!�U��Q��N����y�)�t��}S���;.P��:���u��c�������*��V���i��i�������<yr��}���o�����EQ����o��F�Lv��c�����9|����z��'���7�|��W^YVVVUU�~�z���g�~��w�	�K/�4n��>}������/�p:�'N��������~��!eeeuuu����y���z@���X�����TX���q��OPjL�i+�����\	�BZp��H��
��/.�S2.�p�3M��:2���~�~�+�.�5%	NNU���O{���`tb��>I���j�bO�K>������"N7y%D��h�]�
mL�K�-��BZj+5�=�{59r���6w���SU5�d�����g^^H�-77�b��<`��	7nLKK�8n����<A���`��I�JMM�6-X�`���>���t�_�~��1��}��	~���c��_����������	�p:�{�����[)����WUu�����
N�L.�������F}
@�r���`�/x7xw��e5�����6�a
�-E���H���e�$#�_�j�'����JIGJ��w q��������X���)=w�_�;���o��7Ba���[HTQ���G�i���03�0�x,����!���������=��`��0u���<��3�<v��N�3##C���Q�6n�y�"�����c�{���5k��Y�?e��1�w���Gff��������[�����O��y�� �.j��A�L/df��8���5�s�����L����� �e��.����F�c�*�"���G�|��6lx!ZQ���Hxj�u��_����n��?�w�h%�t�o�����	!J!����y,����?����UO��
��Vk��M�:F����`�U���>�q@���5���h����
6t��������N+F|�p�r%���������sL����z,��f�u���54��M��8v�n�Q IDAT��DYH��D��/{�A�P�\��bB�����Y�34�]�*��d0:
�@LU*��������hX�1#��4:L����D
wf��V��E�it�����,�s�D�
���B��yE;D��~���?���[�G��<��5vh��GcS2.O��j����J��I����q^u�K�A���D+`4��%jst������#���*�u��"���BZ*�@Mj�t�����l9��"��r�_nf����d���b�1~��D3n�����lb�����{�s� ���6�1j�J`D�)-^���A��5pe������_
(�T���h��{MM��(�?���ni����]��%:��d��|Z(mp*GY�)�q�i%�]�T1��k��o1�u������ �����
F]�`1Se�j������e�D�UY�7�<
~��F�"�����E��V�6�*��B��Q��(��@��Ff��k~�QV�*A���-gC�K25�{c��"�����������s��������k��#Gv���8g�JXO2
J��@��X����qS_�D��6�����gk�*=�����+"^j�I����M�$l�$^�g�tH~���LD��!����JT���\9hIh�PA����Vx�"��wQ�i�4�l{db���[Y����u=��-	,������#�)))�a�l�L�4�G��O�fw~�*����_�>N������`��#���/����8��X�S	hU�OHXJ<l�����-��d �&�����	��P����n1F��j�W'<�	Fp~��/��[`0�JX����=uq��7�N�0���a4�9 +�����k���_�TM�G��5;��x{~|��u!���Oq�6G�������0f��<��#��"#>���`�:���W�
)�dpv�pX���8���G
�HNQQ�s�2��P�g<����0�')����7B�V��z7W
z����9��zCo��7����7@
�����))*�$h�IM>	J�B4kp8NZ�R0�y��4q������x80z������?����.]�|��������5�����{h��Y���A��.��^3�����	���������vP
��a}�F�+)�������gG��Ij��e���h������nE����e�9��%PI�g��p�Vm=��i$��R���z`���[U��W��7��y�4��������;1��t�vp�g�����/���~�w��9s�x����v�������l���]N�
jV@K����n6�v�`�7�i��Xw
�,m���Z�'�?F����B-���%�H������#,�dK2s���S�����T����`��j��s#�}-�D�J�
���v����I��;A������xn0E��	��a���������YG�w��`��m;w�lllTa
��x4�		�8miN�;�;���*��#��!���8!����Ge0����9�xv�fpm���qFH)����=��fP��C���b������3G��HK�d���NF���bh���p��7������@D�T"��%A����a�������Hp��(�����Ya�*��V������g����<�H�~��x�	Y�A`������1�
v�K��9m��&�h����'���c0������4�������<�����El,WUM������!F�;_��N1s�n�<m%P�&�n�s@C�����������������P�"�r��A�]���
�'���P���y16�0*E�J��������gr������N)((�3g�t������~�?==}���>����f��m %)F����#���Bb��xXU/����`q%�;�j��It *�������}[����]��P��(E7��l�;��M��`����\��h��7���g���P��py(@�z��a9������v���]�[|���(��w�M�k����{���������R�f����o���3{��y��������q�k�Dk�6��7P��#qM9j�RE�*����8�����h�������B&�V��%�D�-����(������]����o�r�X�vI��i��y�a0:���'��Z`�4��=Mm8�5O/��qo�J!gOV��
%?�oNx`�.I�%��f�S3�2�.���4��}Te>��������������Mn�[�8�����\ �.���4#��Hq�������������e?*�q�hX��M`0����	�"�����S�)v��m���F�c�"����	���Ctd0���U��@�����`�~����K�x��F&:�j�@�J��4y�*U�
z(��-��3�o�Ox���5-���0�J��������
%%%�����������Y�fy���L4�m#���te%B`������[6�w�>��>(�V[g/^�\��������<U�T��B�2��n�*Uc$��9t�_��ti��X�U�f��3�_���?bh2��0��=+b��Y��a��u��4y�u�j���%�cQ4h�@aIl����QPr����yY��sj�^�F���?��R������������;|�0�����1;~��������(;v��`���`��h5���mj[�
��?FT~KF�==���{�R5��^�4�ID�!��f`��jW
~�Ojb���)hXgx�q���N�g�������m��)�~@����9�;O�x1�I��Ck�r �i*T+N�v�*��:�A>�������?���m�\v�eYYY��7��KJ`��S�������$}�'����c�����\�I�7��:&B���mQ-*�\Rx��*#�o�Cn>�<^����4�2�T��6��O��\�����#��[c��G�r��b&3P�#���a���UtXE�����e q�;O��?���
����5	�jF^<EK2�~��2[�n2d!��;�X�n]jj�{��G)��}{��=����=\�B��d��R[_CV�B.�	��io2��P�)���>y���+�?VOA�U�d}'�3��q\��%���&�
z( 7���&�`0��s�=
���m���~w��
�C��@���V���+���7~���6:�n�--�N�L���P` �P)p����?N�}��y;v�0d��g�}v��]�&Mb���'����5Z��{Z���w@���^����8g�,��~������>���~�A������h���J�V���C�����tI�kK
	z�2�
�kBq�XI9B�X�cD��%ZX&luQ(�>�o���o@���1)�����x��Zq*��gj/�|��q��._�|���8t�����K�1c��U�v��-���L@��V����k.q}�����ZNF|5l�/�GU�93f>��Ce���*��� *��'�u��M�{0�j���(���F}u���3��L�*e����G�f�C�1�f�i[T����&���<od��M,��eo���j�dI�r4a�2��3����]��2����u��8q��]����s����K�RJo������������Wm���	��Ip�.��Kj�r\������\
F��cz��NV��7��\	92�}{��M�'�D�����E>Q����
!H��|�]GKJ@���=���!��5�|��^������U������A�����f�=�e�L`��K��MC��y��)���������#_|������@ ���A)���ND>+���UD�t�@k2��)���"��N�sJ�:pq��9b�����j�e�����LU\>6�����������xAe�<��o&����B.X�����
=��������TSnb���D^sl��#�+��{����������/����n1�����Wt;8�_~���I�
����c���������_�o������K�������j(�JR�{N0�����4w*�Y ���-��`0��N�#��
���.iIf��<�H�'���g��ZtjFR&H������<�>�f�<G���,�y*���]����u{�VE�P=O�����}!)?��5�Xk��F/#"8q0��N[Z�a9	�.�+�����/n��1L�6m������_~y��1����(��/[���������y�Z�m��y�B��I���C)M�������!�����-�~����3gB233g�����z(I���K���!c����}{�k?z���1c!��Z�J�$_�E!Z�2G�e��Yx�yp�
~�����a��8���	S^����6�aBi&������.z�#y���f_b��X8Q�Zw/�T5������<�"�Fg0x���MoA�_2Z[�>f��'V�tYI#����txv{���;g���_b�����
�j�+~���/��w����w���[EEE��\5����n�$����=z����o�9������:{����g�������F�UWW`��
���KII��m��;�O�~��Q-X��_���/Y�������������6����/��������>�`���C������w�
<x�����m3f��I�^z�%_����o(��e�B�~���`b0�	��!U�VF��'���G��G��!�t���,^�7���	�5�S���r�����t-k��`t�P���1�b�m����{�js���k�
ad@UQ<=��n���J`D���p4���v�Is������	]|������p���	!�?�� �}����CW�Z��{����G�v���O?����h��9W_}����8���_��/��{�U�V
2�����'�x��`������?�|���s��3f���>}��{�e�]���O�6��/��p�B���O�<9d��5k�������^kl�����h\�����c��]�U�:��!��*�t�'�`���;��j�Q"|/�XP�@��V��J*2���;������0W�N��J���,��#G��37�N1��<��u����Nb*�d��:�;A�{PI��Z��ww��=����3���:����e�d�$��$@T
����)��X�����[��Wm��m��k���Ukm�uk�R��({PVQ�	�@��2�]���{g2	�%�D<�?4d��ss��s����|��B~�+W(����X�������z��`0���w��������������g���K/���{<��e�X�l��������-[VPP`�Z�������~}�����%K��_NNNqq�+��`������F���F����	������NiL�T4�?��q	;��`�o� ��s�d9�BLR��T4Q�8xV�h����u����4@	�����A�D��fsD����u6�3�xz��&Q�lHfeS5��������p-P�u�we�������u3�x�������q��l%%%��_����1c�������/]�(�@����AUUUU���a�X���`P.�a2��@�v��`��Y�?���������\���+����3gN4��"�6,�y�=�������b�8>��,U���'�]�?���@g��\`3���Bl�9��l�34{���l�Jc�-�X���!(��i595S%p�V3���@
�u{�����M����z�����_e�������"�R5i���k�_M4�=��X�b����X����� ������q����%�A�G����:m�)��D�v
Z�����$�F�tZ�,�����0Y��������(�H�=oa�Z#��A�Y������������l����d��
�N{�c�I�`k3����A'I���0h���W��S���Q����B���A0i���D����jZP��B���`J}�x�
�S���_�������?��~����6����[�paIIIW���B�b�t��������I�h��B8%f��7�{����>\^^��+�lhh����/���jkk��Din
���-�p;�g���;.��Qm	�$6��)h��&-�����`022��]&��i*	5>F�u2����I�D"���Ir���ZW�Y����O��<������#����1��>���CM���uK���
����)j��.��N+��<
G��j�0(yU� �k�4��2����/JU �#�'O���u�,8rq9;�6��f`�(��)����x����:�K�
Lp�B��c
�/���7>��A�x�;y�5(���p_k�y�!���
UH��=��qO��6>x��HJF>U4-++c�{'���o2���rEEE�p���^XXh��_~���K�X�z5��K����������@ `�X!������s\}����sO{{����~`��E�S������ks�� �r{{���#5G������(��!'��fzUUU�A��x6������9�4��4��0x�u�5���bR>����[�_��`d�b�2@����C�����'��3��hR^���GU0��PUW��=��\�����������������O�����rH�N]%h;��w�"����>+�EZ�M�4Wf0��p����R��;���+����O,+/������ZT��tR�<������<�WTV����<�O�($E*��j�h��io<qdxEy��,�UyB��i�R��O����A�,U��s�}��W_}�������W���6��`0x��n��6��WRRRUU�j����W����t�MV�u�����~���{�����Ms�5���n�	��������/_�����~������O.\�P������g�yf���uuu�������c�=�W����s��<yr��e{�����[rssS�;�����m�����P�M�c*�F����]J�NM�����*j�"9��
O�������
sTJ%q�����I��M��jf��,AJ,'.V�4 ��F�B��T���$A7��sg��/
�5��o5U�����	&����tZ�yE(�-?2H[�2�R =*��%x�t�{��g��-W_}uNNN ���{��'�N'����---���/l6�[o�5t���s����P(�r����
?���}����z*,\�p��Q
��������������Z�k��}�u=��'?����-Z����(+W����0r��_���<�@UUU ���[�����M�Z�M��-��oO�O��6���	�@���3��`d��#���9�B%e���z�2�j0�]��k;^��u=��t������48��&��%���A��+3q��m��~`j3���]�:��l�{%}WW�l�cq��0���I�9�#�
������3����S�M����J~>�Dp��"Z���:�w�}W���|��u���S�N�^����UU��������[�������j�u���{�����G�$i��e�+��;�R��Ol�����hYJ���������{���}�����/].{���K�����655=��ciO'�$
J��<�?jZ�*��9�F�������a0�	�@��S���9,=�~GmB��.�?���j*�j��N�Bz1�Q���
_k!�i�"�UIV�lP0g,j,�<��mo��v�u�^�Q�={��R����� BF�/N�kW��5Y���k�7����p� 7�pC�_��w��>}�}����3gv�v�����|���n����31���q���7���Jv�S)��O��'}��N�M��U v"g�Z�f��k��a0����K�poS�x;��n�)S,�N	��n?�(��M}=I�NJ]G���q�u0���z�*�U"���`�'������0g�����-��9�6��...�� <"�]_�������p�q�u�v)�e�������������Y�H7Gxo��n�8������g���_4�f�D��*U_xg���W��*wh��187K?e0�K<�B%����l�����TQ�}������
���
3T�"�2^��R�O����P�������.��E�AHT�A�`���- �&������7��\����w�3�� IDATNyQ���I�3����s�(�n�2�cT��e��������ay�I���8���A��'{����
����f��=R#kxV����o0�����
�[���D�B�g�I�����������_��13�)_����&��`|�-�g�-�{%X�E�u��"�������>U��O�y]^U���(h�:����e���e��72���a}Q���x�_X�H�D�U�Q�����/��I&����P��.\�����N��]��9�j{m�k�#��V��8T����m��@��;�q&_������VK�����+n��KA�j,��6s����:�P�~J���j�����]����������/�<�s��w�a[+��	�X�q�(4��4�`s0������f�
��Z��==�
-����	
6�&�uM�1���*U�'�k�@�f�|R�U*U	H�� 
�W���+Cg�2�j����g��M�w�&1�����0�2�Z��9o���Ac�S�c��qgj�D�>]�o�'��i�\X����#@�cf0�i*)��T=���C�2��)���
P�X�lM�4G�@j7d�%��wCQ��OI��*C�q���`0�P�/w��������l��]?��"�w�12px��M).QB�����g����S��HH�$��VS�n���s���f�:�"O������OT
4�eO����Hg�_x�Sp}X-�f���bNAS�]�5�*!�D�����DB�j�`����}���WiI8�J�3�A1�*��X�B�I�G�3�x��]<%J�"9)w?�}]�
=��b(��5w<'}A�	5"^��3:M�V��jt���L�����kC��^h$�>`��������&�&���q�����1;3�<e���l�)I������a���F�+���'��|���q&�'b9��n[�.����L�� ����cc��Dd=��>����������+��Y���jTV����0��t�x��2���(�8)VQd�G��t1|-�h_�`���}�����^��RZ\�[�_=�N�%���3>�$��d0/n�4�]Ru���r�M�, ����7HU�E�9��s�
�$R���>�~�8�����v��B^���������������a�]n2��������(B��U5��~����0z���rm�NuXrx��*8"��?gO�������.w�b���z����X=������XMV�E�BL��@b��Y�; �z�'��f�����e-@����lX0g �w��&1�1���j�����y4w>��QIk@��I+%���=�4�c�F��{��F^��7��6�P�1s�O'
!���X���7�lD�&�"o��v{�F��I�Iim.+j/;��P����/�*��:/�(��q��S�������V�
��������l����fa6�2)w��S���9Y&�bI�������M��[�t���"vo�xB��Ps����1R�(u*$%��B��@:���������;=T����=�X�.CL�"�
K�������.i����=��p}���I�rK��d��8�#!���M*"��8X��;\z��,AN����������I<��w���4[G��J�z!}�:T9������HN�L���"�j��ly���^�}��k����?0����������4Ub7��*�%�~*�����GeV����*�5�N��gG���sF)����
�b�>�r).{�j`��Xj8��O�$X0��F6����3x��������������yw��W�u2�'�����e!��.)�L��@+����HG+foV�h�����������jt����T��$m�y�����6�mi?�6��W�:���6��9rzk�cbDDh/@��G�w�8|��������Q5�&0
_+|�Xi��`d����4Y�L�/���-m����wIA����bj��J����p�?��<�LE���a�c���Z���Y������c������*8��?�%yD��s���X�;��g�+2�q�;�K������Y��[���V`������9�����Uc��#S�1����J#��h2-�X� ���J��xV,HaD��S�
�_
)]����D�PD�#�
���/�9���T�V+�������lG{��<q&$	�Q�
K�����01Y ��8��Y�|�@D�J1P�(rX�L�V_��<u&�����I������G�V\6������`0����2(���I����P�;��Q���#=���D�i��"�j
WJV���=�9.,#Kq����\����`��W��A�dE��U{�>��(BT��/�#*G�����E������0D�����������P��Q���Y�h�S��'9�f,��>M��|�#4a�����`0���������Z��������,��7`0�JM
����)w��T��zR:c�-�B�NN��1�R
qg���D��}�R���PA�$� P\����X�YuC���(�'�7y�J��u���[7<��j��wg]���H���x�g���
�a���m�
��S���6:�3�����lE��V=�$v^������2�0w��.GVm�=������;a+�E����Cc]������
FB8E��'�����@A������%���
�(�j�&]X�#|���=o��t�X�����xMA5e?�^�}L�#/���x�?��Uc��Q����`f��}�m:����3*J�!�N#���m���}����%|G��8y���_1�<�R�����D��^rUR"=�9�&���Pc����\����6d������
P^�/>��Y��2��y��G��f0�0�$�XH���1�����������o
c|��op�hG��Q��zA�J/������(��J���)U��)��`h���t�l..em{��PqHl��9���R���a@8�o�o��F�DX\}g���s���4Z1'�70yn�T�`����2�]�E�@L�TH�������O���Xg��66Q��R�:p�w�ALr����f��}K��_	��J]�FU1c�����A� ����4���)��CF��e��((;E�`����Q?�I���*]������?Z�!Z�h=lx5AGK=�"_���Jd4x�t�{>�G�7�����q�o� s�Oy�6�
�-x+
�n*���v8����V���� ���������3���3�XX�� �,�S�l}>SB�j��p���"PB��m��>U�h������JW�?G�����Q��m�`0���U��-Y�����������@�@j�pG�gH���U��.�;�7vy����������|�k���`zj�w}�9��g�����?�-[��3�~�l�������,w������������������{����z*u�O=��s�=�����]�_�>��D�dEY�F�!h0����P��|�	(y�-��|e0�i,��o%\����|='G��9���i��#,|'��
5����(������m������D�`�{Nq���}-��v9T�o��]����B�Fe%f��}��h'S)�e�=�z��PU��/�x�f�=�����Js����`������z���/v8O7����n�/^����nEq��U��L��I�����[o�u���,Pc�����o��������o��f�?�M�Q��k��o�����������[o���h�"�����
����ZH�?���~�
������&}�j*���y�V�I��;��l��[4���s���G�>Ni�]��(f��8�f�����������T����8�=^M���!����y�����a0����<�����'���k�)�
������
�`X��T;/DH�7������{����8l}7[�'�4��zB��d���/���o��7���v��U���W]�5�S���.��j�~������K�,Y�dI}}=��~��>X�f��^{��7�x���_���t����y�����������kO��w�����[�b��C������������_,_�\����W����_���x�����Q�#�y9�*v"�������1}�Fa���U�3��n�SGBA�
���F�����9&��i,P��nR?{����j�v�K��x���+��`0��H�������1Q�O}�f��A�Z���i�PQ��RD�_��7��O�c�o���f,�-j�M'U]%)Q�p�/4 6���w�����7�x��r��3g������oj��jll���������v�\��rK(��gO0|��'*++/������E��<�9��>�,��o���pTUU�x���G���z��;��?��n����/�������~�]��9s��Q��oollL�s�#y}��
� ��|t������XT���p��c����%U�2���YI�Kt)����%zz���o3k���	j��tsJU��y��������J1����&�f�Z��}@0�������:5MCU������$�u��g�g%���U@�����S��Z��o���}r�t{.��bg����U*�U�-x�9�=���:x���a���<x�f�&�ijj�z����������K�,G"���B�Ck����W�X��W^))))(��\W_}5-���/��eA0�L&�	��j�����i��/��"J)�����Jo��:�`!�
;�q�qP��(4�����Ce0z�wEZ;�n�t���m�~"�F`&�4qW)�f�.Q��������%���p�`���0}�R-
���o���a�`�	���JVh�hz8*�)g��C�b�w���+E0�j����O�-�e��-=���t��	i������~<�_���������=���|>���[�|.��<57�t�x�(J�����O�j�;�����o�f}�WRR2l�0����~���4�r����H��dU�*��G!S����up{���r�C�kE������"1��[bF$i�{TR����>�K�@f�!u���E���^�����Z�K���Q(��W�P\+I;�7B����XC9� |�c�	��h:,�c��4Qe7��4-H���gF�:Z���Y:�g*U��+5(�M�6�3���o��->�o����I)�,�~�_����.K\���'�,�s�8.KeN�;�R�X�8�*s�*�"g`i�F/�T8�&���>� *����y�B� �.�P'����H�6�r$�����������)}�������-
����0a0��n������&�s���M_�]����K����y���*��kJ��P��������+E�.4)���i�_<l��*�����o�h��|�q �q�r��y��9���V��~j����x�>/,,$�p��8y���=[,Y��wM��K��q��[���/������TQQ���(.\`�������Xmmm�S'�������������Z����_4�_�V���H����S.�D�����N�����K}V�+%������h�M��t����k�E�*��|D]��>�`���\-3�(V��h�b�y�n(����$:t�k5�����D@(���cu�%�gEI�{�>���E����h8�����}�{G^���qS��c
���a03|nx���(
m8R��in:�kAr���c�/Y�\..���:84(�������9���V]V^V��Q�xN�<Z�����H�E������� $��4m r�jS��b5��������g���{s�F����������k�����l����z���]XX���O�{��������V���8t�Pkkk~~~{{����~�a�-z���>���E����{���f�������������}�����[ZZ~��8��s_x��M�6M�4)��n��QT�i�ZUU��O�7~r|�6�U-�������
���VXMv!T���*��(V����\��Y&�g�~|�����;���/�'�G�(�9�*+�f���R�;��C+Fwd��4;����0
I-(*Zd�k�["o�T���RY���-����[P�[V���t��w=�������.*��
cpS�!B"��+*+�w���j�)R�3g�y�J�r��e%v^�
\`��("a�7~����z����O1�������@^n�����[W	�N0�������h��������\�|���f1t�>�� TO�;�kP=�������F��������������?����0r�H��|������i��m��m������z���.�H�����?{<�Q�F=���N�377�������~��6�m���w�u���Sw����O �,\�������_UU�:u�w�QSSc�Z���SJo�������.���G�;w��#G�|���!������gB[/��A�Kz�����0Y&�FRH���HrT�m�e�jJ��O���N;x��hQ(�/�7�k�;{��I�u}&��sJrMN"o�����3��1Y`7^��������[A�<O�����+[�J�-���?�o/�u�ZOh|
��e�c�*���������k|�{AA�7������.gO\|��������?���o��v������~x���Z���)S6l�0�|�R���;KKK5�|��}?��5]�_|1.?k����.��#���.Z����>������]�v��1��;�lkk{��w�L���%)��>��Q�R���_���	yz���T�
Pf��^��� �k'����������Z�(��vh/�>QY[����;U�N~U/{�JA�f4�Z+
�8���a �e���8S�.��'5��a/|6��](���Z+����Q�47v����*�qn��.�	�U�0�r��Fx������zS�,U��[n���[�}��������$A���+����S�M�6m��i�<�b	0���������K���������������Z�L�RXX����w�*�����c�}���98���vc��p��l��wL�33KF�r�L�:�M��*j���(4��r+D=�N�9=�O����VA�vsA/{�8�O��U\��9?����SB�������
c�"7A:�}�Z5y�Y>i�	5�b���]�q{~�_���h�(U{o�F\�\	�u/��kR7�:�����mo�9����}��`u5�ijj����V�������}�}��������Q��w!��P��|�R���(�KF����P5����t���tM��Qh�W�(���j	�W�
`��5�:��G����&��uF�~�l-
�
�|z�C6^���		hz�DU����!B���Y�t�������0?!D��%%��
F��CU�qx�Mx���/6�R�#��#�O��t�����sZ�d����'�Z��v��lP��H��v�����KID1i����R�����#�-A������{�7'QU��	BKp�e+i��0�
G�pDl^��;���&v������pa0��\��m5��Q���
[g�X���s�;	{�_�;��c#��qk��>h�Q\�n,�&��"����Z�
E���a��W�7|P��J����b�Ly0Y��o-�]�Z>���I�l;��=y�'��������>�g���\���n��hVA���6������u	�S��:�V'r���t�G2y�����T���E0��_Wc��#�qK�f� �}���n%��dK��������
����1����?=5����Q�����
Uc���N�7�����n��d��K�� �mC�q��8$��\A��g�2F�����I��������.G	�� 8��K|q��*}2��^G0��~�p|n�������G���eC���(n(��?�7w��h�/���m1��y��W�;J�5��h"Z��w���|F�;-(E�V?����h9�fqav9�����Q��9���2o�ySG�G�=-�!�C�7p�@@�
Z���"A�������dUj@vFu#���@�� IDAT��O��s*���U�����C+�����x��{(�w�.�T;f���*�1�!�`���n[�R ����|��@8wZM�T;�OD��
�8�9��)T��M�}���*H��)e�a��f6��G������q��b7��"+�X:Y���G�������W��~�jb����L��?U���t���,w�Q�d��IX*p�J>�����G��>��}�n(
��CU�67
f����-x��c���'#�|~R�;MS��d��m�������9�j�~�����G7dM�f�u�tc��G�&A,������~���8s�����N�����|��|��7�Y�����i�}6h���o�G�pT�g�`��qO�j����������� i�h�w�C��/<oh�q�}r�%V��n�C����+������L��n�E����M�z6h�A�wE|���t�yY�z��G�m]s������,����6z�����.hj�8\��P����F�������yN�rd%s���A_*v��Y������c2c�?��:��D''Q����(+��`d������hrc�����l]�!@����r�f���GPYPw����M��8�����a@�e���G�������q6p��i�bq=���	��R����=�<���{s��:7�������F��,���a�����R�S8��!S)U	��;�*s��b+[�����va��K/:L� ���J�]9.�j�Sy������3Nc	)Y�a/�����/@8��DM��rGV��7NA �d	[���I���Lu�t�q�8~���l�0������J���@���_���vA���t�_XYT�����~��-;�����q0�FL`����{���V�J@�{yOS�;s�O�#{9�g���g]�)\zt�����p~�j��p���9{�F�g2!eL�kW��E��$N
5Zp*Aj���sd��QT��PBb1��l��\[&��z���3�����wEU��[�,Z;��P���"�A����o�yTJ�7�����4+;�N���phiL�|l�-����^�������1et�$�����.L��J�nS����3�~M�iD��A%����i��}*WA�������/o���q~TR�Y90�m�k��D�
9�����}6t����'9��znE~����*�F����n��KLP�i���($��RZ����s��`�~��p�=�\��f� ��-G�����#\�0
����;I����~p���rZ ��k[>a����`fJT5V2yG6e"�,5���
��?%69o�kH��J�
�B��D�cm�<K��^�s"��c0g�"��x��2ndI�����'f�����M<
xV���2'����.����k���>7��Hc�r����1�������������Q�3�����y��a��C������	<�}`02B
�������������Fa��g�p6�o��B�f��h2M�l�D�������E�D����Uf�������7)`2������X�����<��8s���C(��f�f��\:�(�<6��}������B�!��9���p�Mv����!�c�T;l��'�E��\^�����]d����-UF�uZ�O��
����#�sW��DW�'<��B�}V{(��w�X[�a.��I�����X���`�����I�|�p��7j�z��X�9*#����3� ,���;(�k��D�=F�����m[�<[Q%�*����q?=������o�a��B�r�1(��|�.�g��Q_ �D!��N{|E���;6�<h����b����
��B5��Wiz��D��X��~{�-s�����
��>��Ca0Y7w��O���{�a4d_T�V��t������O��{��2}��q���5+�<O_<XDl]������"[%�	�������
����A�����Z���J�Q������|�>�F�pTae��t��M[H���'�1����>b����j���l�6��<�������e��6�8ln���k����c0��s��/�C,Og�`p�d/<� .	�;cA
���4�q����8Q�Y�WlN0�����7wC�h:Z������
"o�����B���q@D?�
C��$�J*xC��P3��4D��Yf	�E��bgnv��4��0�}h�HG�@Y����$����)���e���>���K��S��1QHc�����c��{���Kg���{�"�� 6���'Aj�����c��Q���(,�W%|m��_2�JUU�������������W�,Rh���Pw�*S����M��3��%�S$�F�x��f+�m�z���I�Q��AqC�T�4$���<���54������O����d���y6@���_�q^��k���iR�)�J�������R8\�N���\'���(gd�.��hT���t�����M��������������a��W�9�yZ1.?����K%*������,�h���Z��=y#��n��q�J���
{!f[i����������cIxx��gB��F��~_0���,�-�A�'�K�/��d�����~�F�1x�],���S`z�?�D���wP��K/Y�F��W����H}#]�5����C�@4����n[h�(�Vhw���d��iF?���u�1���{�pba)�Rp�_��e��4?��Ry����9������(���NT�N���6"��S�dm^�k�d��Yh-/�Ujf���>f0��&d�s���#R:��q'qy�<���."Za)���1x���]�'�O`�����u/�m��SB�
 ,"r������~�2r��9'���~
�7��h_M�`�2�6#5Z��4#����c��:�������l�@U� rr������;��q����t�sV'�N}����N�<���58��������
"c �%y��%�4�eS�D#�q�n�@������g
<���y�'����/�( ���&�?�r��FxC-����9�_���*�w�]���f��b��_:�"��x���f0���q�S`3����r��?]s�X��i����	������)�����8S��<~�>M���|�f�N����G��a0��4E�L�U�=�*k��C1�
���p	������X�Bm<^����Z	����0������F��o=���������<y�
7���������;n���K�67w��6n�XSS3a��1c������AH%I�={��	�����KR�������c�N�0a����$������s�=w��	5557nL}��/K������(�[�[�]�3l>�&�UF&�{�w��.{�}��MM�w@(45���!���p
�g����,��//`��������i	�><���cPY�(�2i�5`����:�6. "|��!�@����A�{}�'���X�p�h����>��t�|MG�Kv����(��+l6��M�>���d����o��;Ws�_y����G{����~��a��g��}��1m4�_���yI�~���/[�������{w�q�$I<��_���ri]x��������pw������5k����I������9����y�G�R���'�Z��F1II�#��'oE[|���Hb&B!�B�B>�<��H�cgU���r�j�z��Z��c\
����Gx�)O���w���1�uI����)Y���������%f~9D�m]��hs�>��4e���+B��z���
�t�2��R�PT�p�^��wOss�����K/����(Y���y����>{��=;v�x���������w�}v�������e��C�������'�W���|����6o��g��3f|��8����M+**��g����_z�%�������|�A���l��-[�l�������;����y�*U�8G����������
$�3���yC-�P�WF�9^G��p�a)�����BX�[`��B�mZ���#kD�@U��IgC�����V|��{��^��j�L:G�Bz���a0rs��n��Q%�?D�U3�?�v�\��� �#�y��
�hT~f]V�e&]	)
�f�T��*c���u���n��w����[o�T8������~����?����X�rekk�g�}v��g�9��j?~���>��{���l�����r�M7��cG�E)�7�xc��/--]�v����8n��IJKK�^oKKz�XV��!����M����s�
�$������q�^f��4�N��T~LR�b��(��$�����0���#rH�IQ�i�`)�<�~w�n�bdOj
�����dL[�b#�����X����Rb��l��u	�];\)l����qR��Bh�m��� �-�_�O]�nv9�����-x�9��c6�G����*��s�9�?���OE�������{nSS��d�Xrrt	$�����K�����\s�5�;1�L� ���O���o�[^{���h4��"�����[�����']���P�*���m���+#�w�����NkI���Y*%�mMP5���_�+�����W�"�����PTB��F��]u���N5�j���f7x��#�qg08����r'�}C6���J7Gz:�:�H�1�A-30����h�m���yPUp6�9��c��
6����Z}_���*�%w�[7Z�\�+���\��hoo�(�����[P�/L?�����JJJ��E�(T5��JH�>�����0�V����^��w���b1���X����[��k�PX�5�Q�C��30��;A����f2�)��_<������������@[�n.����c��_�A|��{7�������	���R�|�H���u�uS�T��ut���E$y�%#����ov�y��������r@s��c�]��~B8����Ck��8�f�����L�;�����e��EL&���v�O�8���_u�U��1g����F��K_����O�x�_������\���T��r���G�U�5��c{��sL{�TB���6<����T~C�mJc0�eQj�(RC�a�t���E�W�HsSS}]���5�����)
@U"�C�����%���3W����<r4����������b/��ih
������O��[��PI��oT��X�����j�F�h����w^V������H���O�s��A�`Tsg,�H��w]�=���n��(p������fm���nS�{Ws�U���?�k�#u��N!r�r�� ��b��\�BA+�G������'|Y�u�;+�ly|��y��
��9��D����`�9��=�2-**q1������[,�5k�hLw��	`��9�G�v�7o�����>{�����7^�W��Y�n]�-]���~���o��~����@QQ��O>���Okm�;��<�wZ�VUu�����B�pT�EEE�C+�����-�<���)hPfL#{������f��%�����b0:/�MoZ1|\�V�I�d"�PiaQQE��,t��A�R�X3oxEy������? P�P��@��;��C����u���<����f���\8lHv����	��}��������x���/p��Ds��a���0��(� �GUe�@���,f�S�8~���.{���uy���j$�C���'��\��7�^oG#���)�RRQ��)�~�l]Q>r��A8����E0�Z�������]�p�Z7�~���p\�2U��pB�x�7�p��Y����
].���+�~?�����f�M�2�f����������_��?����e������?����������<y���?��#F��/555+W��r���������z��B��o���_��{wMMM<���Q�'�������/���;������D#��.����qj(%�J���A(����@{L�t#$�Yu�c��*��v��j����@6��k�'���1���9�dR������i�o�`b04��S�9$����y������:�:�| �W�xp�V%Z�
�o�[g����z����8v0u�	Cg�T% 
����c_��5��-[�BL&Scc��3���������{�nI�rss����Fy��w�,YR^^�����Z�p!!�G?���y������c�����Z��b�Z����-[���8p����(������!Crss	!�W�^�p����L�<y��yw�}7!d���.����������|����
��me_U`���|�"���`���
�g���H�f6A�a�����Yd�w_+|�9qp�zGTUO8=[���E
���{��w�����3mL:�R��if0:�wb�`F�� �Y�:�P6�K�b1��F�8 yC-Zc-����{��l>�+���nd	-i���-��%Zy��^���� s����m���	|���Zl�[��V0���w�q���~����g�SO=����r8p���?��}��-[�/_�����{����}��m�6o�\PP�}=�����+��y�f���w��i�y~���[�l�����.WFIN*U���/���x|1�G��!l�Yyx4o���*��n�����v1	�QWMU�O�����G�����v���������w�~yC
d����{/;w�3m\2�JUU�����b0.����J����^�"���/���M��5�8���_����j �`1��V�����A�0P
����N�6�������h^��~OAd9��e�����t����/����Dyyyyy�6�������^a�����r��a��u$h2d��n��x��8qb�N9
���\���k��N��	�,�,*���S�T�<�������s�`F��:��)^_������(&�������{�L*��s���/9�tH����O��-~������Kf�vQ���`R���9��&gX
��;���|:M����u����V��B��Q%:�;N�2�U@*#t8V}	v���<zh��a�"�I�����N�����,��O����}(2���Q^Nq���=������~�$��_?�3G����{�����n�}�����n�QX��o��>4��,(�
�
5?�v��7�`0=&!���}���w��3���"I�xi����D'U]�1�X�6�Q������&_vn���@ �������Z+
���E�Q_ ���1�Z�X�yr�$���J�t�6�
������P}�	�>�Q�]^�,���[	@��-��=Y��)W��zLl|#u�K�/��+Fh��Pbg������m�}�
���~�O������`��D�*!�p������#��c0����3i����W�d�z�^�B�vlV�`�P��Gq~w�t5�o�����Y�.x��U��x�����,����r "���b0h�Bzs� �HeeN��PG��nq��-'"rT�O�p���Gn���%~����+�4|449,��Lc�*�gk���G��b�;#kV����4����'�8�o�@�����wCR;{P��<���d"�@U�8[eS�}�>�o�P�D�I�N�L�*.qRJ!pYKsG��L�����n{�E�O�����OO|�F�1�]�bU��=�� ����Y������`7������;�
���?k�cu���|�S=c�j4-�p���a����i}I�J��wB������(z��<��
N[�x���|����q������&��y�S�����vc�d
��@e�"�c}j�f��J	 ";������eF�{!u�a��i�f8�o=�v�����s)|���D%����f��x�R!I�$��N^�������r���QE%�|�����h������������s��L&3)3��$t�J����t����r���b�����kAQ�� E��"�����df2�L;������LB��W������LV��������^kH���q��dm��=��?
2�C�R�;�o���)!()��y�=G5�c��:<��wLWzG���3a&�>�Q�+t7U�0��j�|4xS�g����|\%���vP���"f�
���x���Z<�{6)S�#����*���? IDATJ������>��#��,�:#�h{�������)��j��Z����5�D��1x�G����e{4!�"�+q���gPvY�dQ�|���/?�<������p(����ZNx���
���Y�_�2*Pp���=�+����%���	yi�Oq�JF���?�S�yw�������B~<q�b�#2��~��
U�kA����cW�N�p�]��R���C�_��@j��C��G��-K�I��j��rQ��$.0�
�Z�+�4:6KLm�����G,l%�����2�]kk�mdja�N��5_��@!�5L�:{V��o��6��������}��^���~�{��:�y��<�������5�\
��V2�?�kup����(E�e���0Rx����7�c�2���@*	}gMz��1]�OPds��y"S��������M_�,��A���#��[�p�2�(�������vq�8e@������Hy��M�K�W���zM���T�d��d�E.�U�Q�e���5�����G�
N��cJ���)���stJ#�5���Y))!�>���y�"�(8��G��H�h�6�N�����D�,O�T�yFX�2~]��,x(ks$�@���@.��+��Sw3>���G�}n�z#@������Q��}����L<�����>��2�(�ZP!KtMN�>(UE*��,�
�2El
�b���6���A,D���$��$y��g"�>�K���a���eo�n�&���	�S�������o�s�+~�����R��8�
oP����Y;�����P
����	D(����uj�S S��V���+�@&�l��74��5��5T��#��}����)��� I �9��Jk��|c��O^�n�j��C����1
���%�������������H��(���"��P���(���y���X	-)h�8;Va�w5�vIl�%�E%���+|������K9}��+��K�|����V
�vpl��5��|�t��i����\u�������l(%QR!�=7^�,��L~�����F��y8��pg�����}:$�%/
���#��@�����D��Yp�&�������}�C�D"E'Q�d�����C�-��u6Bq�tz���?W�$��H�7�)�o8+��o�
vw�L>s�M�uqD��7M)q+
��o�������y
RK��Z����3�^(��s0Sh[�S�
2g������n��wj�<��V����]��Z��W	SZ`�W(�����
0�v���:q�������3�n�%�����YT�E�@������-��@����Fw�B@�H��$j�E�e��^���������!s���a��Al���;J�������7?�dw?��A��m�v1D�  w����*
��o	
C�~�s$p�5r�����0e)dY�
�)w�)x��:F����[����������Yt�����;U�r���oI!�el�s'����5w�x�Crd�<�vX����+��|���$)���jT�]�DF)�����E_����Y�`��2-�E��,�?��'�6M21��d�y��v�;��KCB�?�La6n�g�B���(��k��KQ,������p������m�J=�H3
�J�E@ �
�����c��y�Z��0�:2�{5��a��_`1����yn���h����|[��VOxau������0�a���R��M�������K�5�����]��:�%����L�?m��.xw6�W�W�WA5d��M���EK�:-r�#��%�cwB���Y0.���~;$���5m�� ���������2��B�F|�s����a���p;��>S������~of#e>q$E�)��[���<�n�'��7L���W�K�_���T����*^-�.FL<b�k{s�����I/A�(�Av ���*���������h*��@����>oEI��������W1d8����,��f��}�~>��s��8}C�b���3���eY�#�����|{���g��/:v��W��l��w��U�W���A~���7�]A�;��O��FVP��?�'���}
�>���H��q��Q+y��u�=���.��P	 �N��/�M�5[���z��RJ�*t��{�w	2����Bo�!�>z���4A�
>y��}���{������I���
�.|�#k8p����~�������Z��l��k���
��Y NW��F-\�3(m�Q5�~�FU�,$��t5���\p(���!�����u������}o����x��7�t���|���>�����O0bf��,�R�5xf
����7e�NC��y���3W�*�X	�J=���<3�����;������RP��>�*��R�lH����h��h��bH����jY���0���E����1F1�+���0
���H���\��e[�H����&�m�
�P�Vd�D�Fto����S?���	!���zv��;���rC���h#�}����d����w���W��;M��+�����k�w���[��g����;��85$
���@�l�����}K��w��"g��n
�r���X��5����N�����!�jZ#=�+���S=M$>����G��pTH�� V����'
n�s�R�+*q������%�����V��!�?�H"�����PR���(�����#G�_/����g��C�Ry����I�����S��x��,?��^���p���=g�<�a|q�%�3~���7�?Kb �.�wg�������"ix��h�"�FEp��g��0�k<������:U"Z��
�������t�>�UJ<%���E[G=�������n��n��J���uxwv�O��'E>��B���1��b��g���+q�1��k��u���+p���5%��7�=�����~'�������k�������U��[��JsYa�2�t!�^��0O�;��&d��d�T�esF�����v����<�j�s�P�}���7������m��%���=1�3������;���-w��������s�=��I���c/��J=6���]^����*�x��9?>�z��WZ��������v�����y��(�M�7*���K�)�������\��0�D<�3�������8�������;!0Ek�w��q�����t���V��.kg
�������c(^\�������o�is��o�<��O���
qWP#�7���/�;[`y	�r�HO�m����o�#Q<$
"p�2��P���o�p���L_U��/wbT�Z!��2�q5/i����N%p}fGto�EU���^z��o������:%y��S������zd�F�����(������`�:�����
p�8N��i����D
�����>����O�"�A�E�+��h�{��
,5�(y��^��}��%�,Y����!����������|��vM:47w�OA9��y�-n��?o���������H<�*��xa9z�������;B@i��t���X�D��l�9��T��h@E{Aw4�_Nh�k�g�z�������J�9v)��?Z��(��4��y/��d��_|9�]�]P�	=n�����x�Q��9��{��o}�������\�	�(��?���o����\��?������'�-��AC������~�'���y�7�����b�B�u�U�-�j���
�'qv4\�@����U.����N������w�F�������������&���1����?��T$�dHv��}=�,�T������7�n;N�4�,�u�������E|���i}PR��W�Xs�>���������t�jX�Y���{�oN�4���1��i�O��������9z���^m���U2��^����TP����[,����{��������MSdY��
��d[�Q���c��c�B�g�a1@�M��uP���wGL�@%��G����������.!Z�_>��k���yzw�����9�����J�O�r���f�_���� �����`��{Q�7872�'C)5�j��#Y��������h��;WB���GUC���D�n�wE;M��+�#�7���_�}_�')c%����U�e����(��#������
p��e)�v*�zj������5������?�a��;��yj������c�����!B*TZX����~������d��=��d��
���"�"��r'�h�����y���R�Z�����v��R�+)���/�_�����|{kaI��#h�����q��-�,��������|��3�GY=8��nQ�����l|�4F����Z�P]�2��p��9k�=�f���c%����9k���e�����[Rg���O�e�3�����b����F��@�=�s�Q���?�����gw��Y{�1��_����p�+mo�\����;��[�c���K&�	j�a�os�
�nS����nw��+��f���sSy���cQ����xnx��o?48j����>���v�����],�
�����<�O�����v�L���C_z>J�~��~W����������_�J=e^I.�O+��������	0�`Q���
��H��:'����:=��P�B��j�F�R�ur'#�x�FPu�'���H^�K������ Q�'@���0�r@���V'Xh/����s�JA�����o@�Eh�	�o�Av��#��
 5���1��0�6��TU2b��h ;�y��}R�pn�>�d�J�7�?������h>��NO*���2 B%|<@�9%��	A��-��������!h��_B���y��]������/�-I8!\Ev@)�	���-�M��8G.�n�������'`����}�e���W:}E�R�-X���?��2�M������N}#� r�p��L�G_&�?X83�*��(�dS����)�������U��]�G���@}h�	�j�������/�!�z���}O�VIx��o1w4:�^|�-;� ;���h�I�}O
��S����r�G�G ���q����Q��8�U�����N7��/p��>�,�S����r_D��r�����/�^�E���|L�*�X��Fos`�V����`��M4j�B��K�Z�^��R�RU}o���Bx�OH�p6����q��R�����^���/qt��P��J@��^�E��"F��
��/a����h���x���[�^q>����N4�PM���9
�h�����]���h���c���C,��a@����N0������yV'��-x��H�A�����&��#>�Q���k����iB��F��V.�
��	���f���@�M������S
��=��e�����D��i%d�7�����nh�()>����^��p��\Z	��e�T��6]��p�)���_�/R��\����D�������E�NC�w-@�v�~�K/����_�(Q2%*�x�%:5���D%>�We_��vW���[�a�&0/���r"�p���g�{-@�R����D�������5#�XsK���`�5�e[�J?��'ol]�-_a<��q�/�?A'((�o�4��ep�(E�RH������t�`xqzU���+�Y��GA4�>4�PC� qo}�����Qx�+0�Nh��y��^���������E��p���	���pf|�!V	
���c0��RZ���"�#0J�L�����1z�IW��E�]�H�*B��Sa~�|�^�������-�y��5��gMR�B����i�=��SZZ��|�&M6o�)�1b��}�$IR�T�/1b����o�����1����f���,qg(��Z�M_`���x*-bU���@�"'����d!+�SI�(�r5�59����a��T
�J�A?(�H�NF"Q��(�dif
d���(��-N�h�)v}�w*!v�Q+q��|�����I�.K2O.�N��.���PkY^��2�^�u%���C����>���E���%�l�u�������n�R
Po���:��;�tj�X_[���O����<��	�B����u�o9�C�FS@&P�09�6�|_������Z!����?����,��)	RpJ��]8��}���(�e����skWz�#<X�%Y���Y�w�x�ub�*Ji+��/����a-!Ugy�D���KD�����@L���|��O|:�"Q��G�mhlZ���()���H����MB�^�O?��j���i���x�Q��W���z����@����5��08-��7@wmu��w�>��UD#$���|pOdE�������\������|�Z��B�HVd=��$��ME�VN�������<4�T��Z��N���W�.�{�

�B��
6�%����%>��7>����2pQ�7e����8|�3��\�)�dY�y�b�|��G�}�������s��Jbs��}����}����[��W�W�>|�p��8p�u�u��m��Ys�����[V�X�W&��`6�#���Q�e� �����1��$��R�&5/r��-��z�N�1��_�7r�I��z�C�`�

�4�K-���M�F��g���L
vPb ����������qx#8��c��(r���1���2I��Z�!*��o�o 
�{$Y�k�q��_a0�E83bd7��8�v���=7nR�6�$�����W'hw��f��8��+�7�����/C.�7B�Rrd��i,��1^Z�������I
�)�pz�tL�g����XP��awz���{��];:�(�?=Q����������G�?�-�7��K�LP>�d/��<{��������4�-g��?��ra�Ne��)�4F���i����,/���}O���K�������e^G��!�t~,-�M�����{��K�Z�jM�!/���CT8�(�r��,�Y�>#q����7�~����-SS�d���}�>�:����(�t���o����)��^��U�)%4��#w���ufli���?��me�3��|4<���oO������i!X�|����X���-��E�����Z�X>��XK���3���}����TZ8fs��v5.Jb!l�`]	�bq���(�;[z����o��1Z��G��]S�J:���,���������Q����5��e>�p���wn�!W'�����|S��V��=�(����1r���1������e!C���y3����6m�\���}���i�-Z$�2[':v�XTT��������-��U�"E��PR������{d�B@�����_������z�7M�h�����U����A�@U����j�K2�:\7����w��p�H�@�U���|�}�P�x������;�t�SkN%}�p"�M_/�tvj�]Y��K��N�L��Q�0�&Q����#�B�?r�fcB}	��uL�I�}�����/���D��Gs����J��c-��6�{��
���{�~�s�E���9�����u>�si���V������v��I�#n����A���$)N7�WRu��X�lj���e���?���F�����Z���Z��Qa�^��/�<e@�<�^��n@q<n<�M����$�]=��.l��d���lF�?��@T�Rl	�i7T}<������O���� ���F
c-�(BH���a�����Q���U����9o9�����xH2E}��^����A��~8���g����3�/LTM))'����Z�6�\���<5�5���s��;�
�*�sf���t���;�y������,����f��������<���8��n�>Hl~P�Z�&-~�S�DM<��i���3�M}���&m0u.:������^�%�"Q��K�5��{qQ�o��������[��V�Q�@����4����Fi��t�tJ�X�!�"���w<w���d�AJ"���GFxH�q~c�

��h�qi�(�%2(x��QA0�����O�:��C�sD��?:G���Z���sk_��>��5h�
|R IDAT�����CE��(��U�f��._�9
N�.6$���Z
}>��Oo:�"za��XLQ)	1���m�C�l�{<�'�~s����c����d?��������sqC��7��@���sss�9b�X(���o������{���q���������Vk�������w?~���L�_�~'O�<z�hbb��������?9�r�������������%{�BM�����
*Le������,�k������<��-_��d"�:��W��VH ��"W�yq����&�8Nlk!R��!66�L�-`�g��"�	�3�]���9~��o�����<w���CuD"���f1�K �kveg%"��	�
�UE������$/��nT��xN%pI�)�o#xDN����Z�����=�$�����co
���8���'y((a�BhFFK�
;��i�$k��'��^���2�W��=�������5�s`���=���o��eI�}�mF0�M����l�����%X�Ae�"���vL)%�
ek!�X$�2�
�F/�k�2��BN)�u@���{�~cw�����l��v���	��%Yh�6�W�1��Ag��U�f	P��Wy�����{�R���co���U�7��>����#J��^�����������2�^G��]�d*G=�^�FT��Q�������xy�����Z�i�^��D�,C!��+Q@����[����������#�����8�J������s��^���{0|.x�������<�*��]��~�R�m��**�>������DFr�t�!O��Nt����h	o���K^�Z���;6nj�]�U�q�(T��*r���B|������h*���Sc�]�L���K�����zW��t��VX�)��-�K�+�p��$�P�v�����m�(L(��������F���w��W<�����J �����?i�F��dnH�tU��O�v)U���&qZc�@�������k��U�Z9�Q��k}�r���C���mD���%"Wu��e��T�����=������$K�R425g/����,e�	yzu��5X�j
D
�a�J���Y�����������
���� �Jm@�XC�<I������'�W
N8t����m���(�������Q�28���4��"#��Y*�bc�W�q���fcC�������+�jD���9���/�
��2��:�m�Jfo�Igf�!(`r�����<z.���u�����q'��U1�y=Xp��"~���c����v�c���8�W�68�#{�����*T��H_�<���3*��>��O�$C��_����	�����>�+Sz��R��$�Q��_qt��-33���#�j3��%K��v�m����C�:u��������t�Z}���~��g��?���'�8y��B��g}����W��6W!2����9As8k�E�iB8�4 '���6�R��
����VW��'h�����Be�*��
�5�A��@����?�� �.�N�9�(a�{�������^\x������f
��r�2�NY&��d��#T�)
d������_y��q�/�$8V\B8J	G`Tqa��a)\����,�uD&��t��-�N�!k'�QM�%�IH,������RD�@���,H���fQ*���W���C�(��P����3���S��
�
u���-��QA��I�Ca��x��yXp�R���p�"G4��e�w�FWd�e"4< SP�k,�=�K*����L���
kB���� C�Iz4�$W�_L��0�*k����!T�KL0x���=d)���l=��{I#Sh��6�8�?!�@<PJ�U'�%p�h�D��F���l� �f�������T����<�5����Xm ^P�D�La�%���#bo��e�����������S�tf

�	y&
OC�����0||�#���} ��"������pWYb���������.���r`����NP�}	Y.��ka�A)�z�PU��lw\�����D��`��Qf��o�n��QT��I2�#��]NhHk>|U�� ��UH���{�$���Wt�;q/?o<���d#8���Qv������������W�9y��9hU�8rIZ=Z�������c�4�� �����-F��vmT��=J���_���4K�d08����j���
��|>��+I�{~���JH���UR��PI5����@�V�8�F��2������?��[��!���6�z4�^p�u���D@�)�c�l�Q�,�������� if���D�+�u���
SCI�A�y�d�b�@�6����*�Q������=T� �H�_�
<�D�����	�DQ�G*4�L%��d�c0&A�����H-:�?RQ�ZW��\p���XN��rQ��+k��P�!�<�:�<WawT���)�n���d�V�P(`E#���M�T
W��K�E�U��u{��������JD��pD�kD�R_>� :�80�����|�����5����mec�����KI����iEF�p�K��L�.��w��5 �>�lp@S��8��XxJ:[J�0�Fe@��>����Ty��-�!����'�����n���
1��*��N����T�������b([$�9�+`�����j���
rW������T6��?tE�qs�����]����q�p-Ge�dZ�������S!v�bd����V#.�k��)�����Z��L��W����^�������+�j,��.^�t��I��������4n
,� �Z5D�q]�L�I�r�����e;~��/)q�����,�ps��.�'��^��q�YO�

���B�k����8�s��j�Zm�Tq�l�����^TT���������o_�d�������e�4MD
F�x�bJJJ��JH�y>33399�V�}�IJ$����c�X�<�>��J:	Ei�����j�t���9V9���{dt��S�Uq���>]�c�#�KDv4��<�m�#�JP����yN-pn�X���mE$^��]�QP@%�]b��%����I�BQ�1���EQ���oYu����;�Sq~��'p�F�R�����(�����k	j�SU�V��9E	�������8U<O��Y��l�	Gx�WuR*�$/���i�Oe��^�g�*B�� pz����S��G'��Q�O�i��G����#\%�q���^q�h������Q����p{
�]�<2�RO�0����.�C��"�����F�d�^���]q����v����}��c�Dk���AB8B��Ik�fc)���Q��v|�/3�.&7VS�p���^���=���c;p jp�G����a�N8���}@���C6��|�'D
J �Iy�>d�Z#
��5���p�4H�=2��=e��r��vT�i� �K���$����K��"&&�^�^@�������S����	�H�o���^j/�T��7$
Wno8l��\��H�Y\��?����M�H����WO]j����hy�&|�Y�� W�X����j�S<��"�S
�x4��1���F1��+J%B��������O������<��3y�m� 6���T;��\��)S�B���SO=5i���'O��fB��O>	�k��JJJ�Ng��
�=v������������HHH�e��p�����.B�q��U�v�T*ux!�9��%�0���u$%Q�Wf���)
R�~�/����'��������xt�"o���&6���BNfm����]�4����.d�5d]$6W�O��E7���<�:��I
�n��~����e�����eB�D�k��kf�x"�k�&I���qP���_/2��qyyy�Y�+_9
����d�t�K<�q����w�{�a���������gnU�j�3F��!�O�5/�
���9[ca-g�5Y��z;�qm:�(��� �A�qx���e���	�V�G�rV���z$����h<�[D=r
�n���c^��'��>�M�S��_�SB��C4�W���L�����e|�����{6t���{����r5�'@����!�i5�H�D��������%R%�
��K������������������r��P	�����g��5������8.�a_9`��]�����Z�$I�����A�$9��
gVr�V��SKr�� _g15�����M��'�7�E)��7����S�$�'P�2�G>G�������Z����y�%�8�V��^���c��W1
U
�dL����B��%��i\^�;�rQ����V�x�G����T���3TR 0����w4"YG�<�V�\���#6��S:5B�� Zm!R��$O`T���	�R��s,��+?j�(:�rF�%Je�s'~�B��i��	O_e��QX�$��Qx�T����� �y��x�W5J5t���P���$��_��W��{s%�����h�5�h�"r��9/���3f,Z������a����0}��i������H2'O�l��uJJ����7n��r���^zi��95<1|�?W���WB2##=-�qX��i������q!%-�V1��8w�l����y�|V�&�"[���ia���t�?���IJdu�;��4<���Y���J2�R���<���4%<��Y��#�G�����GM�D���~:�p�PjZ�Z�q��S��.G���2�.��We��o��v���vW�G$ *M����	!��������.�v�h�Z;5N�������Jm</���,�y9���z��s�)��R'���n�P���J��O����-�C9����i
��G��PEo��tz��jp���C���S4���8=��2��Q����_���r�I��\I��^_h4��+WN�6�����y~�����W��!C&N��u���S�FGGo���Y������~���^��?���h��W3kW��Yw[+�pO�D9���:��2����>�r��q�A���$a��4�V��p%��N�>
��W���x�or�H\
��*��G\2��>��L9���UJ�@�k��8�KR�\2.q5�c�tG
W�%EV#��j@�C���H��tW�F�pz�foR��������5FNV��}��\���4��G�~�~��G��K)��/�=,X0w�\c	����srr��Ih��3f�u�]N�������=(P�@�
(��J��|I11111��1�K����P�s%����H*���"�H*P���
�������	3���+�?TTER�T$IE2,�1�q��"�H^U�
qW�@�
(P��/Ni
(P�@�
��@�
(P�@���+P�@�
(P�w����+((�������������������y%t����x����D���$����W������O�Qd�)�b���
�����p8Gdu���F��'N�E1�������E�����>�/���>�x9�D�r�O���������VkE�����������(((���T������t���a�6m����#�:-Krr����#�����y��IIIV�U���+�e����s������!"��4�iiio��V�t����l6�m���������������z<�a�����o"������?�.�k���qqqqqq/�������NJ���Y-X� �e=1q�D��b�X&N����"��&L�~��N#��111��zJ��I�bcc�fs��.��K/������i��n����F��n����M��rF�����*!d����R���&N����`�Xn������z�/��rJJ��l�����������~�m����"�ALgjj��b���sAAAD�n��	@���3%%�b��1"�:�fs��c��V�Z����}����+"�d:[�h�U�Rj0L&��j�T{n��=)))>>�M�6����i�Z�6m����n��HQ��-[6l��e���}���U*������@ZZZ�.]L&�9s�DDg�F��v��V�4h`���_������D���y	�n��hLLL���{^z��H�*�����������3�YYY�_�Fcrrr�n�7n`����g�&��h4����%�:q�DD���[�X,��(���c�X����[n�%R��W�^f������p�������G�G}��-((��BI�f���g��,����~�������E"��Y&�A�u��9R}���x����w���O�>��Q��my���r>}�tBH��m��k�����/����Q�x�w�}`�������|�r����'�_|��:�-[�}�����!"�t���A������o��9�}��~��_���2x�����4h���;+g����w�n4�Z�J���������111#�!$666;;;"K|BBBZZ���3_{���������=z<���������f��L����������5j�B��"���WZZZ^^�������#G�E�>L�Q�F/^�����:��^{��QQQ� $''��:��/^��jO�>����'On�����;�������=�Lt���z���o4������3g���R��������c�=�>j��}��
���X���s�Z�
��#G��|��W��i��w��g�X�`�N�c��6���G=k��������p'''����t�X�������)S�D��-Z�R�!���pw+W�6o��y��(��
��
6�:uj=�����`9EQdd.t��Y��O?�~l������_~�@��M#�	!C�a�w����g�9s�x<�:�=///��
T�>bci��Y��v���j=G)�H���f���I>�6m����F�����l6��{�������a�>\�>��#����>��?��Cf��������QO^8s����+V��ysD��b�0sRDL~�~�)��\�{��]�3�3f$$$��+W��H=��cJJJ(�v����G�tH!��t���S����K�.�/_^7�����5���K����/�D�R��k�w�}����N��������>��3�N���}��	���z=�A�����=��o�>����A��9s��yN�����l���	~3r��z��\{���%h�P�T��~{D�h��&�����F��h4�����9���F^:d��M&�Z�NNN0c��:��C�����qg�1cF���?�������j���{�t�n:�z}����;��qg�x��},��u��/_�vu&�6m�$i��Q�
����z��iO���z��b�l�u>��������;�
�IL&S����'���g�q����%�YYY�e3f��e��.]Z�i��q�h�Q�%����k�`�����d2]�p�>���eK�����:��L���[����G���t���CM�8�1����Gy��f�I�&1/�
60�����>���YJ��M�>.miii���V���$��v�������d�����m��6q���[�B���N�<9}��:�G.^���f�2�L������O��
J����_g��'ONII	���$lP���6&O����������b��gjk��mRRRYYY%�^��E���f���� �����$��Y��/���#����';;;;;����lwg�9a��7�x���_~�e���9C��W�^�:��~����,u�9e��P��J5y��Z
�;���������CW��MjC�Y�`All,���#��F���h���������R��l���p���O��z���/��s�8p��?���Hw�����x���l�y>t�����	!��v�����������:�'���b�����Es��5����y�s��u���f^��s������S��_��8{��J3g}&����G}�R:v�X���g>���{Y0v��U��qw��III�>���A���7o��5l�Vg����x�J�=;x�`}��R3z���W5R}4q�����;���z}rrr�������o����Q����:���d0222�������?����4c��-Z����'/Wk+f�
Z�)����
6l��Q��������ba�����L����>�8� IDATeNb��u���j��)������7�<xp�&MrrrN�>��|�������3�|���?p����������/��e����Fczz�B���QXX ...t�f{����?u�y������P�����j5����}=-�'O����KKK���Z\\\g����y�����eY�����������r���=~�x�cT*U���'������4������k��Bo����/��i���V�L
����;���I��)�r���O3����_�oJKK7n\�����7�-�����={&$$�8��zY��'�X
������t�j%���M���{��3h)d��w�y�5��m�.w�u���������?��z��a6�/��%T�/���A���(���.=zt�������3�T��I���]��M�^�
��t����u��)����3�Lu���3�R�}�v�G�'O��K��:��9����k�.(�L��u�#;;;77���7nLJJb�W_}�	�F������y�����"�����b����F���~�y��� I
%����KHH������/�`�$Ib}t�G��:���L&c�Avv���:��e�j��h��]`8p ��g3Z��3333x�}��v��v3�yY�������t��c�*���M	v
��p��!J����I�&l�b��u�����t��NB�K;���;�:srr��:��w���R���^��u:������I��X2���;w�����������UOOO�8��O?���U�Vi��������C�A�F
���{���q�F6��|�����l��;w.
�ZINN�3qgJl6��7�|�}�����C�:���������RRRwg�qBB����/����kh��Fa��V�s���O<��-����qqq��Q�:�uOf����������YRRr�m�]s�5�o������K�n�Z,��������!$��EQl���e����uV�U���>�6mZ}t�?��|�����Rv�v����
�			��D��@����,����sg�Wl�J4ccc�'p,���ba�t8			�&��������{Pg����s�y����4��=x/�Y
��|����b��+���/�l2��:i��Q�f��g����aZs�^�+��b2�,K�-�����-[�2!��3�b���%Ib#<�w����!�~gMW�Os���>2�a��k�^��i;~�8��N�w��T'[�B7�����,�u�����c��EGG�mm6�ey�X�V��l+Fbcc��kv�~9/�yi1�����_g����������ZZZZll,�ku�����,..f���g�	.I�E�/���z���:v���{��u9��e��j�XX8;�d����bav�`9#����?l
3��+W�LOO�5k!$77��������G��?8�*�*t�������fw�?o����c.�����#i����*���jW����;�DGG3�s��1w�M�6����_��n
#�,�F�}T��[o�54hI~~~�3Z�:�E~��r���y��]�
�+��s��%,Bnn.[��?����!$O��<	����z*''���/'k��bt�z���&Mb���1��3xg���c�1����
�5��;v����C��-���g�vj~x�J:�'��Z6r����������><L6\e{3�[��}:��E�wb:
������;���u�e���O>�t���jV�PU�g����8?7�|s�������R�6m��q������]P�1d��+B�����������5u��?7!!�KX��`�Z�(j]J��hU���"E��Zk����*(:�X�8��[m���A�Zk����j�jA��������w�7�MX:����?bH�$���<��s�kaaXPPp��-�R9h� ����YtGp�/���]�|����NNN&M��$�pTXL
)6ui�a����.]���/..6)�^���i����'���M�Nf������������[�&M���12fAA�5�;
JOO�H$2�������������m����JKK�����F��,//�E2�6���JJJ�S�����r�
�2r�L�}��Q�����/))��B���[PQQ�T*{���c��	u�����QQQw��������H����1&�HA�x�b���=�������]b���ZYY�cMV�y^^�j!�R��J�0����IU��������B~��4h�[7�O��+�%fZZZ������6Ya����N��b���y���Y^^N�i-Z������^8�����weee%}9��~�cR�"���+�N��������?�Y"����W�����nm:�"�lllLJJ�C,������������@�c�7N�y�u�_1�F�aR����&cr��M�F���I)�s��1�\���j�������/���HMM��w�.���p����{��%����8::�������:}�1�~�z�qb��H{���ry+j��2��j�������������y���-~���������������������%%%TU���T�q������%JRSS��[ZZ:99�1�x9�������9::�x�b���Q?ihhX�t��#(fhh�������bv���������=��x,g�i���B��b?~�1&���U��
�����Os����F����C�
eeeTu�}K#q�D.\���_��X����+��A���4�����[�^������f�����������?P�b���62uY*c,77��h�5:n1�|c���~3<�]__���V����������:�;�~z1���I�����8�bX�E�Vo����rf��o�=h�[Bg�X;�w1����}���bQ-1fBB��BvS��^L*a����7:��2�z1����z�^�n##�O�����v����H/f@@���'�LKKk��h�D�1��B��&�
���h��s��M��Z��<h����0������u�VZ�K�{rrrcR-��B���+IgT���/����]�e�����s�~���b�Y�f���x�S��a�Y�fUTT\�t)  ����V��A��c��J%�S�]�����m�6�=��]�r�{��������(&���(VVV���V�Jk���[�n�1i&z`` ��.((0i�<������Z���)V7n��e@��Ht}q�spp�yq���m[{]�������+�*�GI������

h�t�"������;��~���999b��9::��/�<[�������9��S�N5�:������z������������8��]j����+��oL���(f|||cc#MAy�����D�jJ����b644�nQ]:����;z�������M��*6S�P��>���MLLL�1��
?m�4� ,���5kV/��S�P�����c�����u�z����$mYy��=����]o	�����:�V����������+�v���-�.h��n���������jw��i�6��O?��R�����K���0������;������#�J�}��v�y��;;�#F>�������������mH���n�#�������^��I��j���9�F�Y�p���]'����b�^�S7q���uh�D7K�9s��/�����c��5O:"��uT��*^�-1��|������TG���M��
6�#�m����I#a}���&����C�1SRR����+������M��z��6~�����{�c-����O����B�v��d�����M�e�TG���4�������������S���������zLa���S����5d����*GK����Bwc���\.������^��)�H�|����)~iR��\1����W��-�zxc�ZG����f�j���������-�zXL���1��=�� ���c������j��H��uM���,033srr�Z"mLbrss
�����w�.�'��1�������>����u��������6�a~��7,--�7��E�,,,�#1m�:�������%�Z����=Z<x��������RZ����<�sN�O���������2e��#G�1��3�7fcc����

�R�~~~m?������������x1�I�YZ����u��qKK���9x�`���jbmqs�?����-�����i������1KKK�j�<&1�"'*�J�Reee��u������4��,,,4��Ms���<x���@1-,,�x�N_b�_|�������0��5d�k���:�2���_ff&���#q��h4������;(&��>�1g��aj���5m�4��"�B��������Y#���1&���:?�/6�T�%&�H��~~~��{i�^�u�L�!�G�������o]�����^z������^�4u���6&��<rqAv;�4����1����W��s��5t�5�k� qhO�/_���������������)�hE}�G#&����n��?�����������������v��:9�V[SS�m�6�j��wc�W��%f'!���xq�KKK��5bv��*��������J�������_~AL|<\��<$h$����; q$�H��; q@�H���w@�����w$�������A(,,4�)j�����-/ZUU�T*A8s����������M
XVV��g q�N�s��_�M�������l|�����K��Iw��-//_�z��A�t�����1����3���?��g�t���h��F��� ����/���c�]�~}���III/����7����n�z���������>|�O����SLL��c����c111���R�t��	yyy�����#
ENN�����w���a��������.�Z�j��]7o��������������}�w���<������>'M�t�����������m����O>IIIQ*��z��%$$$&&�=���r��
;v�����ga��.��tR���{��SSSCBB/^<r�����?>333!!A�V�<y��w��0a�B����o����KOOOOO� ������uuu
���133KNN~��'�������{����@�����2dHVV��V�\�����}�SCC� -��I�&���.X������G�>y����?d��7n��7/%%������F����>�cl��=���{�2�n���9�4i�������oggWYY������������}}}}}})��������^~����p�����o�������O>��1v����~���{��Y__�9?p�c����W�\1���j����vvv_�5�������7�|���������k��t���Q^^^ZZ���X[[[VV&>�a�C�N����1VWWgmmmcc��>}��S���j�V;f�kkk����gsq4�F��{��Qsss{{{�Xcc#c���+��U
�B���3����jr!� uuu�1�Z��J���-[�l��M���
???kkk???777�R����ZXXTUU��c q���Z-��J��D��9wqq�{ps(c���l�������J��H$� :T�u[�zU1b��V+���r�B����>r�����<8v���7o��$���FC#�����������t{��)����8`eeu����fgg�F���LOO�w�����{���������m�9��1+++��3g2�BBBF���hhYjBBBXXXQQQ�=�gq�1��waq*@�E��Z�V�R�=t�������#��O�6����]�v}��A}}�V�����O?�������+��mll���3n����������%���Wpp��%K&N�������T*U(3f�x��W�w����8z����4�F�p����$�R�����O�g!k0������q��=���miiYVV������LVVV������^PP������������������a��j��K�cfff]�v-((������� ������,//���X����rooo��������_�����K�R1�����k�����J����F��y�fuu5c����G���k������/N�>}�������
���Q��2H��;w@�H���w@����� q$����; q$�H��; q@�H���w@�mu���;v����:���������"p��n<����������O�%��-[�}�qk:�V����w�����V9p�@#wh�����������6��Fs���r�����s����4��������)S�����vnn�O<1g��;v���������0���?�������={�8::
� �H8�V��������c�j��K�Z�W�����]��EGGO�2%**������444\�p�� K�,�?~EE���n�����'� o��f~~>�]��@;KNNf����x{{7������~��w�_��s333�X�yyrrr�^���������[��s�{����	���j���?��iS�
�5kV�ae2�����-		��������&L���<b}����W
�s^[[;r�H��j�����zyyEEE%%%egg?�}������M�0��������=>;;{��!-��B�P(��z<����~�zbb���{7m���_?|������KMM��sgll�G}T[[��SOEGG��jjj����_�~�1��o���z������2::���V�����r��L�2e���{����������7�|���������'O�"�JW�\y��I���/��r��=z$%%���O*�����X��������+V�`�m�������W^)++{����r�����y�|}}���};..������u��u�Y&''�7n���/��bgk���������8q���G���U*�{����W/��J�:}�����%�Z�������������m{��W��Ycaa��k���8�D"BPP��e���[7v���^{m���z-y��)j�={�XYY���+%%%�-���Z���W^>|�\.����~��[[�������Fs���������3��Oi�V����~��'����<�1V[[koo��q�XZZ���Wbb���K;I�����T��&''K�R���>}z���C�=x�����W�^]XX��h���BCC%��W_}�U�����QQQ��~�m///ABCC5��W����n�z��5����������wo������������O<�c,11���6)))  �������������j�j�z����{�!&&���{����__WW�a�����J�n����{WVV���0�233�z����XkkkqOwww_�|9���V��o�U�V���3;;{��e2�LoOOJJ�����d]�v]�v�T*=z��\.?s���O>��?�����s���@'���?2�,--���c��M��k4�9������A���S��UUU={�d�u��%22����1����9���Oi����8u�������kDD���cl��������{�.��>>>�������N�=z4cl��a��������uS(��������'N|��W�Zs�������}���<�VK����vQQ����T*3fLPP�L&sww///���Y��16v����p:���_9����._����(�3�<��_�^�Z�%mll8�'N�[��O?-))qww7333fcl��5��
6���+���^z�s*nw�Xhh(����
cl���]�v��������sN������3:O�S����GFF�d2A�Z����������16g��9s�0�����;wh��Z�������������#G�}�������Zo�������t�8p���sc~~~�������h��������U)�>icccee��o���J{�����R���������V#�e�
IDATWW�����1�E�����{:����-����3��������������e2Ydd���c����C�����s�8�1����9���+,,T�T�n�������������7
:����|���	�QQQ�����.]����r���=��#J�RG2d���uQQ�����k�r�w��Icc�����3�hH�sNi"��={�x�16t�P�MS���[�9�r�
c���������S��9/--���WXX��_M�b~f���j��<�"��S�����+�t�!77���������RTTT]]��{��={���q����c!!!b�.[���Bc����x{��1�-�q�F�����e�544������w�^]]]VV���>d�:�qtt������?~������4�����{7c���?�m���z???�m���j^w����Q��o��������S�N�>]�U���KJ7�)+W�d���j���T*�r9�.//����kaJ��WWW?����W�-8o�<��I}����^]�k�����;���%������j�=�O���1�222�N����9�����O��\.W*�b��={6���������-[�p�###���6mc��srr���:4t�P��(���!}E���������O��E�������G'�����Z-�#�Jc�'O�������������l���i���i:
c���b��������O�<�F�h�^II���e��1����C��F�177OJJz��w��-s�4�^�������...�v���<
��o_�����,6g(kjw;h�g��b3t�������444t��]�P0��������r������������/,,�1F��srrh��F���d)))�/�m���,�����Z�!''�������G��������O��;w�����H$�1�O��1Fo��[YY9l��7n���+���������4�:�{[x�'�����?P�����zcl������{����x`�����"""��J}������Z��h4��u[�r�w�}��b>|�����*���u�V��������h9���/c>����w�����^�d���K�{�9����3��YYYj�z���tB���������vc#c�Z %%��o�������W����;99Y[[3�hb���Ett��Z�;
�?�����._�|��It������dR�L�Qs�dMD�4���A���L�~����,�����R<1d�)�Jkk�s��M�4I|VMM
c����fff�����SO�����...��d��Y;cL�L��:$b�Z&iv�������<x�`��,-----�����8MHL�h,�ZR33�������
��r����goo/��t��P@J�h������+++{���P(6m�4a�#\�YG�;�Y��6�����n.N�kjj$	-�oo�&�S�qd2��hV�.�b_��[��k��c��Tn&����J���*A�,}cPs���Z��g�����-t<A�r���/%�z�K'(�x|+����������^z���b%:w�GT���5����s���h�'
��[IIIEE��m8���o������\�&3��N�����Sf���///wtt��~ppptt�D�~u���5��Fm��������A������og���q�������w��U�&�6�����={���4���-���;s��W������c\]]���w��=s�L���Y�����������h���K������Y�70m����*�?�8399���
		���HKK��-�����z4�D��v����7o��U��!!!���-�T1��q�JS��6vHW��k�~���Z�1�9BP��������t�WPP��K�V�������1�j�*���;����oiwx�������.]���������*�$��[���w��{���_}�`A���-[�u���O�kaa����G�MST������g���s���o���Z�4hPEE7��������5j��iiis����{�8O#77�������III����}���'�;���O�5�t��9�TJ	��[�***<<<Z����'[��tL��F�=�w�T*���s�������4h���/NHHP�T[�l�����mkf��s�m��e���J�2&&f��M�-)&:III&L��ukQQ�?�C2�����������|�����/3�222��9�B�w�����R!m+++��&�Gj���c��w����V�Z�b��c�c�����S_��A�eeei4�3f�Ln��EEE�Y�&%%e�����

>|��S��p+??����W�^666���g���x�bZZZ}}=M�o�����������}���K
����s����1�SmY��r�w���7�����~��'��n���^TT�����y��Z���K��u3x�`A.\8p�@�L���n��q���'N�h���J�r��I�w��0a��;V�^}�����~��w{�����W{zz�+�gOc���S/�={V�[
���'�755���Q.���rGG������������1��h8�[�l���F�}i�L��/��4�N����(
uttd����������~��*�s�i
>MY�h��Zg���8�'O�<y���]�}�Y'im��m���:��O�W�XA�J��i�c���.??_���>����|*�B-�t�RjI���P�RQq��`ccs��}z���r����O��1���p��Q����i����{����H0�U[[[:���?����|c����}�����W���c�F��U��������h�$���Q�T*���[u_K7f```�m=:�@]�>��{zz*
��Z����i
[[�����y��M�����d��_<�t�����Fjz��K�r����#��n�&�?v�=�a������j����C�:��Q�s������s��9�������Z����7�u���XRRb�nuc��A�MP\\L�Z�s�N;;���j�Ju����[R�R��������b�����Pw�7�Z-w��������������?���=�w����_}��^_5l����R�N�q�����N���u�
�l����>L���~KPc��z��hw7��~�p��%���GS�v���h��7n��t��j^^�����z�*..0`�O<�=�1�9��&���B���,��)��A_���G���D"qvv������;����������������	�g��jcc�R�D��J�����I�R��H�����w@�����w$�����<t�?;�� WsF�IEND�B`�
disk-utilization.pngimage/png; name=disk-utilization.pngDownload
�PNG


IHDR��!J�z	pHYs.#.#x�?vtIME�"��U IDATx���w|�����lI��@�"�D@D���^QQ_��(AAA���(�W��.U�@hA	-!�o6������q`]J�$$�����2;�rfv��gNa�s��MB p���; p@���;w@����w���� p�w=����/��k}�@�P%1�������ng9�5b��������kw�qM,�5V��@�P]x{{�^��r[n0�u��n��
[���+4h�s�
����9?q�D��7++k��m�G�vm���9wO�s��/_^r�-X�bEJJ���k����;T������i��e�������+�����w��f�y���k��qM<t�P��}��k7r��-[�����w���'���{:�n����[G���]��}�:t�}�v�=66�U�V�qNN��M�.\���K��n�[��e��m����������������_t��a��%D$�r�f����k��m�~���D����p�������������?��7�1�n�:��[�l9rd���cccUU-�
�==|���6U��=�.�l��q���K�.%�?��c���������������Xt���{����������W*v������W	dee��j]�n]\\���Z�����������\���[�l�2"Z�`A�~��v�:g����*eh*?�3�"""��������s�b�
"z����g������k������z��"""�����~so.Y�N"


:��K/�DD^^^���}�Q1s^^^`` ��UK�i���}�8��!  ��j��Y�fM"
�����������zzzQ�f�����~���<yRD�!!!���b���t�YXX�Z��3��������h���=���S���U����f����S�o������Z�hQlJ��m{�����#������Q���/�8u���teC�b{�1���m��W	�����j���������1cJ���o�-f���G������9���;v�HD5j��j�D4h� ���J@�U@VV����_���u���n����~�
333��������O�4�����.^�����j�*���H�����?�����������(444333++k���������)))��|��^}���������^{M,*!!�`0�s�=D��+����eee}���"�u8%�(66��p���.�'
W����/��������w�}��|�A�y�f�cG��1���:�n��������=���������SRR����.]���"""rss9��?��xp�S���������"���)9�d2m����������e�XD�>���%�'�|��9>>>!!!!!a��}�6mO/[�n�6i�D�Offfff���>JDc����;�L��j4����;\{���y��)�/Z�H�)��V�Z���]�� p�]���_���yS��������{���O�8��>��c���Y���k�����{�Z����Ow}�v�Z�����,Xp����:t��.�������������?/�			III:��n��"r���L��u�j�ZW�}���r��bS~�����N�s�_������E�/6�s~��	�NW�vm��P,�Q�H�s��v���C[�l����L�z��1���9�Z���]�B��]��#�k_n��8Q�������W�����&�I��K.��^�l���/^��v�������s����o��o������8���C���7�[�nEEEDd6��HT�9r���3,X����G���
�S�Lq_�����gQ�e���o�����JxGGGGEEM�<y����F��EI�$I����+D��z���8�l6��vY�����N��6Y������e�!C�,_��1���DD;v\�d��.k���;������#~���i��y�������n�����}����*�h��_�����l6����]�V���$)22���;V���G���7n����]���?�c���#G&%%I�$�\T����������Z�n��(�8+\E��pB_����C�U@AAA��uE%��5k��]������E�":r�H�Z��7o�>��Q�\�ZI�j����9],��_���`�]�vhh�x0p(���Z��={��^p�W��������rm�������N��I�v��}����g�7��~ �����)� U`�L�0����Z��\���n���Q�F��Msm	c���^�7o��_?88�Z{Q��n�����������MQ���;@��RCDD��;���5���G]�y@@@���-Z�m���������1�=�MD999999�S�O8�`0����S�L��:���c2�L&���u��h�b���6��}b�-���2��/��Z��� ��)S�t��e��Um�����|��������.���[�l			q�(�
n|�����c��y��O

���w��i�����9,��&)��������/^���@��� ��c���c��i������[�yD�y��e�����>[l!�w��L�����K�QQQQFF�������*�v�����)tWm{W����tW����`�j��egg[����<����b�8�aaaD�m�6�E�l6�7o�<22����~��Uw��I@��}��#F�>}Z����l0�k�###������p}=�_q;�n��r����^z�s~��A��E��������SGD�}�Qi��9�x�b�s��g��O	�<T������~#��~X����?W�:p�UU��?���bbpp�������������Q����.��Q4m\�|9�<77w��Ab��K�r�5jDD}���0@|+�E6n��1���(�edd�{w7.]�t!������M<��������;��v6m�T��k���������6���s'y{{���b{$I���
R?��C"


r��2����%�V�s3��;W�$��{�����q����[���w�\�x����0�L��u���6teW�f���^����t�o

j��MD�W�.6g�����@p���b	��_�������O���=���]�v�r�����S�Nu�+��U�����6l�{�n�
-AAA�����o���%�g��3���������>��_ND.��������;W���r�������M�0T��x��������>4����-.���D��M�ybb��{Q�����J�����/�Y��y�tR�����D������\�^�s���h4����Ul��N��P�����k>|x���z������g����y��&L� r�D��w�1c��#�<���5j�������?~�����"����������������o���s���f��I�&�>�lpppDD��?�<l���;���O�>���O<�D������/j�<��C'N�X�v��u�4MXX����7n|�:'���;~���+������_|���n���~��DT�n������/^��1��i������>�����u:]�z2���k����i��+N�81i�$�^_r{��9s���)S��R>|x����Z�����������c�����9y��
Q�f��,Y'^�x�s��%K�s���;�F�
>�d3�-���}��YYY6�m����7~���?��s�yhh���G��}��,�r�����=zt����~���S*-��=7@���W�yb�)7����o��K�,�>}��75k��f�%&&VpS��������2,��Z�7�I����_���!C��X�"""��g�m����	N�>]�n�b�^��aC����OOO'��5kzzz�����> p�8yyy"�����;�0 p���; p@���;w@�P-i���X,�+�<$)88X�$"*,,4��D�Cw�9�B�����/Z�H�e�_�^�e����P����I��FD���			���8������{wJJ
c���Ngll���o|||```��
��;��G��!!!������8�p�bUe�������_|^�z����,Yx�������>����^��?>%%�e��8�p���S9����o�����n�Q�f����Z�rM@�~�����������v���G�b��1������m���U�!T�*����������A��j��M"��b������]XX��/c�d2����$��]Mw���)S�h��q��:���E��������>����u��������3e�(MU�����Gy�}J���k��+���A�v)��*N&(?e��z��<8v�X�)�����k����i���N�:{����w�*�����Y)   99�l6Qxx8- p��"""�:����M��$��w���� p����; p@���;w@���w@���� p����; p���;w@���w�MU����B��LD���W���������������F��l6�XHH��]�������^�?q�D@@0��XU����A//��3g���&''�;���fs�&MTU�9s���3UUm�������R��s������;y����{�����+�JII������O�t����������l���U)���2e
�9���^{������4h@Dv����7o.��D�M��Q��5��;��g������G�w�*����3���t:6l8s����z�4�p8�N����,;���9�ye�1��jY-��e�E�-�j4���P�N'I��b��M�����q�����e�����x��?���s��D���x���tD���(*�,]��5�E��j��bS<<<p@9q���]���Koo�'�|r�������4hPXX���O�5bcc�lK�.m�������r5�w��1b���\l&�����KD������

���RSS���q@9)���U������bp����b_eff^u:w���{��U��������_�2d�Z$w(������������V��P p-���1V�y�����%]4�LX��+#��������2�-=�	��W:N��T�3c����<���+�|K��(��_}��mcM6'������dbL|�`Y��~}�C�@*�����i�/��OBz�;��?S�$&���0�����I����G�\A�@�yE�<?���G�\��W(�ps
����S��~�O���������u((#l�����!"��sQ�����P(��&��1����1i�Cs-vie��=,c/��DV�9�Z�S7�0��(�PZ��meL"�ZYODmkw���Q"ND2�~��y���ew�!"b��lo��F� p�R=��H����)���S�#�FK��mcQJp���Y����U!���nJJ�����=C\��� I2'.1y����m}e�#��c2IL��x����C�Ci����$��8W9W]��u~{-�5�.����i�P\p�v����:"���+f���s��0~w(%�b���������U�F����"R����o�	��������D��:D�mU���w�� p�����ut)�^<�1��[�UT'#f�d��f��Y�B��eW�v���T���OD�'�Z��t��������@�WgsZD�C#�\��]�A-���Dq��s���OG����.<�]x�����U�.����<��?\��I�y$}'�
�;\��:EM"
������'�3t�C���"�H�UG��tl!�n��i���C�w��/&2b��@��!������?�;\��f0Y�.�\��l��c>��J���x}�g"�����x~;c��t�^��r��!�@�W-t&�.e������3g��1uz������aD�����������r���n7?�;�@��\��qR�<��?�����r�2b&k�7��r�>�:
,�D�������?�;\c�zZU�Z
o8����
'"��{S��N]�2����I�`��J���:�?Df��!��$�������~H���6��K��Hb��������Y'�^�����_k��5:t���T���C�C1��Q�z�����n:�UdW���I	i��n�B~��R��#��53�u����?�;��4D��zo�n��#��}�D��Z�ov��b����de���u�Z�����C��U��'1�������j����__�12e���$�Z�N�]��C�_�������l<�#��{ug��1"�i<n���o��a&"����?�$�Z�v��j "��ku)SL��C%|�W���@��r�S�A7�'����[��%��3Q�p-�RV�����n�R����!���]o�$�W_[O,�k<���_�pFu�@Q�D$3ye�\�'\UV�9Q���3�������K�R���SV:�
�	������zq��H������Qx;?� "������Td7�H��])qb�����o�o'�Y���D����������j���mYKD��@_�����`�������?�����$)��N�b#"�y���7������'����d�[�8E
���::o8%z�U����-,a�#?�D���K~�"�b��Y��tD�r�����s����,5e�{����-r�/��G��'�P��^a����}u{����m:�����
+��4�D�S;�'�����X#
����V�t���{�`��-��"x���r�l?I�����.=�	
\��r�����
�L��5��A�8�L�����([�7��pd^)//��maa��XXXX9�_���c�s��3���S7�i
��DD���%��/�T�KwC�A�����u~��O���}!���I��yGtk�K%))�Y�fM�6mt��!C�W������������_	���,m�������������
;;�������S�%G��T�����E5��~p�q��d����O��F��A�����#77w��1]�tQU�������l67i�DU��3gQlll�&M������+���l����u��y{y�G[����'�sY�,�3iX��8��������HZ��c�^G���6[Xd/���x~{j�_��-P��K��/��e�}JJJJFF���~��s���dz���SRRZ�lY��\���1�����[��8u�p������;��K8�`��8�IDdu����m.-�3t@�~�;E��T����a�DO�wF�*#�����������=zTL���D��ys�_�AL�T������,��SSd@C_�k0��� ��L���j�����z�UdW�+�������,2������f�����i����9��
��G�b*���S�3���_Z�O�6Q�E�����s��.�j���8�I��������4�GHDY�������q*^�*3l����[���7,,�d2EGG��'�F�*��:���j��,;��*F��z����G�T�j��bW���KL�9`���yh}8���~{�#K-n�	� IDATNk��Ib��Q�FOD*w�m���R67�0��{�b^�$1��^���'���b��c�Yf����������F�
#"__�����l6��,���i���z���x=���������i&�ns�*Wc�to��s�1�`��	g��Z��k�T��K�]&�������zr���w�<�������R�~r_~�evv��I��m6����t:"JLL�d�.]�����j�Zm�)zI%��8W���!k���������k���N�~uL��8�����]��%"}`�_���gY-��6`��K;1�t���S?�n����ep}�TfI�*�gggO�<y���c��Y�rebb���C���|||j��+f[�ti�
*[�2G�wje���E4(�g�@�!>�9������W��U?�j�l3�����3�vF�����X�o����������k�����o�:�������N�4i��a����=����[�
6{�l����wRRR�:u�M�6m������{�V��7Zr��Hb��[�Lxh��7��h�Zh3����5@�dW�v�JD��������:M��2�~�����}(v����/�9r����G����_"".]�����?~�����d10S�����9�{��{����������f���8��'�%�h�&"�j���<V��x��|�-��,����U�<�k���	���������������x���2oB���PUU���i]�8g6@5d(�a�Sq���ZNk�P�o��"N��g�K<�%���n�����[��K��*���l�����v7[h�����=�kDb��,��.���I#�O2���H'{|�e��f@� p��8U�������q3�`��F�1��Dd��d��P��Mb��$�+�[�R�+j~����+*�;��]P�������r9�/[��y��a""�b_�w
���9o8��q��|��{]Z� ��JL���[��,�X���������{k?\��n�.���U�I�����a�2�~r�^�%�8�F>T�����
j���i!"�X���E��	�����j��r�V�u�^����EW�>����F�T{��c��{��VO��W��[���r�+��M�0G����w�U�rk0���BD��Y�s�P����(K���=tr���_����>���NfX�:�*�|~�t���[�z������{��H�b'�k����(y���d�s�����zT�`&�W�J�yFKie��#_nH���{�v��V���@��zI�
���������:p���Tm���U���:��r��'�x�����8"��0��Q�������}SQ���������W�������c�hI��������D�l�W�
Y�	���� p������D��=C�{]=�����r��IV�yQ�G�~j������{��&*�����^�kgL��c_}��1Vd7}�e4
���|�)F��9[y�+�+���[�u�b]YW�0M\����D�~v�>Y�4�'x��?����W��%&%���?m�@���*�	I""�+CZ�J��X����������;2o��9�Ib���?����������upD���y� ����r~N�WX����ZqxV�W���V����m���7"f������b��]3��Cw6�����|�-�D�U��3�E��D�Pl���bw"�r�}uz}�������OY��v��K;u��7��G��@�j��-�%��nW,��.q�}=C�k���>����Q�������x����������l�Tz~������:�����N�6�3����r����O-)��>�����L��2��k$�F�V��k�����O�����[��!1iO���=��W�?����I	g��\�H:qu��?���:���O.?<k���#D�:�����Vg�����V��$&z����y��
��r�����qG��A5���\��?RVL]����[�w����a�aIY��q^}k<���FGGW��>�������<C?����^�������/$���k<���H�{����k�,��@�3c��}g�kd�\q*�R��9�i����2\QY���F��o�x�7����l+��u�%e�3b�A3m�
���c�_[��h�a������C�u���w1W~�h�1Zse&���"��8L���/�!b���Y?�$���������]�!����9yE��y���~i�L������������I����TPLTE��+8��_~x��^`�d��VI����)-�����5^:�am�l�=�'�C�����@�@\�+p�������y��O���\���������i�8Rp����������8���i��!.��n��U"��\'�I]��e�Rd�+"�>q�����DT7�������^[�Y�_����S�+������u�Z���������k7Zr>��.��-��2��4n�����hFK����FK6��h����/�����;%N#��;�o���������N��������C�a��(L6��=�Nd���d��+���;;'��n���zj}��k�=�V�n���G�^��{~Q�����\"�n�����a���6k�K�V���1b^:�Oo��/X�\-�����o4����dA�������k��_�.���
��ES�����u�'"�r��j|\OEu���7��ct���m�7=u����1}��a���&T9�m�]��K��>w�O�O�,��he��e��+1�d���#82���:={7}�RO�lN������ga~~~```�c��'�gs�\iY��}uzU�}������:�GRF�����:�J#����+�]i��Q�O.q��'�Yr�Q;��F�W�W�{�=�`���;�������dIf��d������id}���8��-9k��V�d�b������i����K�N+�+�s���
�1��Q����<�����9��'*`�J�x���G�I�M#�Dh�U��H��3��S�6����
���X����=p7��7�����}H�q�W����z7���y�N��ns���������i�_�)����Y��}S�����k/���E'�}=[������M#:�i�S�^�0�\��du��Yku��7�@�a?�O:��1V�(|���J�qZY�0���'��]���	oW����O\��C{��
c����{kw��U}
��0�H�3��g��"�hW��[�q�}�w�v������y_��V�'��,��K��([<w�������F��w�xF�����<j��q�����^���>����+�~�5d��e��5�������X#iU����k����g�Cq��]��e�cD*W+g�I���=�'�ez�|go{�d3`�*���<J������JD^:�o�|�Vm:�=����e����WH��x^Q��������z�P��x��W��y�����Y�F�e"R�_�~]�t�]�v5?��N+1FDN�qo��)�+�@���Ju|�����?/*���y7�'�M�m-��"�i���
�� XS�n��Mj�����wM�?���dISd/�q����;�t�^��>�NY�V�!�+a��������-k=���fY����W�=8��]^:?��jM\�_D�N��&�{^Q�y�	"�f8�2q���o��%�o��K����,/�?c������vz/�S��o�q*�\Q�����������m��I":v���<==�u��r�J�F#v�R�����wO�tl���B[�o/��nq�����D�Md438�7�8���hT�z6y
W.�*�/���X�p�����i��TL�^�������`�d�^1{j}�7����o��9��s���z��Su|�/�I���vSG��Y���������������V��}��Q��S��m1fT��������j���>u�T��b}���u��l��ep�nU������c��M��9���O?���O?����s����&$$T������Vq��q���E��db��GR��f��x��^���y���-�xTQ"������r�%��������F="1���ls������,H���Y�����F�zW�6'>��=^zN�1�b7M�m�����+��A��f�����C]Q�}u{���>yh���_-��ie���>w��[�������`��$KQ�+�7���������)����Z�hq���	&��j��	�N�j��Eu>�����X��>4�#��KGV-$%�T�����e��R���9/����P�z�o�x��jp����^�
����G~�p�/���U"�i<�^����?��<�-���J4]���#�r�#���{��l?�`�y�|�m~mY�UG��t�B�����${����,�'���@�W
"��g���=����v�������6�P����Z��g=�Gex�p��;�<>>�����TU�0a�l��I����/>>�:���Vq�t���X��X�|/��R��R��9�4��� -��R�/����U�{��sU���S��b��[,x2I�����������S����p�n��a�5_�{�|���|���~�����E�/���w/S�=f����V��}_��Kq�[���S��Z�/��F�#��{�R1�M�3Zr��{la��|K��dN\�4�"��j���u{W��,�l\\��_�k�����c��}��WG����]���\���>P��3��l���r����>�"K���O�=[��aRL�������V�]���������v\������J�H��{���bW����nE.�P]�{���R��s��3�\�]��9W}<��S����������,�~Q�PbR��4qu�����8��be�r�~hKQ��}A���R�Sr��wg�Y�4�����^�I��^^Y�y��Y���9��6���������}qWu����$������4�op�W���-��l}�����^Y�����:���Mi$�;�����������������?����"�rxx���������{�N'Uo)9G\=9��KLFb/E���jN��'��=�$��	d=1��v�Q�@>��~f�Li����?=r~���W�{rN����}������6�{�O������J������~_r`f��@��dLb������5�b������������sIs����a^��W?�}�W �� ��Oo��U��c�~Q��,]u���g[&��*W�H�;r���:Mo_�7�yid��.<���N���V�+CN'9�H1Q�*�@D�tD�,�(�k�^D����f�LnR��/���l��	g6��JL�:�?��z���#�{�^H���'������^5c)9�7�)��N���um8��#��������}_�:W�^2��nP��v&//�HLN<�=5�����Z/�t����>H<�]���v��N�=s��Jx���Wb9w���������d���^z)##���7??���;---((���
�Ufg�������=�m�����u�@�>J�G��J�(��[\�ZD��(k1y�I�>�\~_r�~fRs�^r`f^QF�)��f���]%��4 p�oT-���}��]�^%8���>I7&g���)Kr�(��Qx��������8���t�R]�$��(d���>�����o{1�([������������]0�|��mq��u��wt����������r�����1����\�:s)~%g9s�iJ�]�D2������x�>������e�d���i����g\�y�8�C�V�0���g��������yUUt?�/���c&�[��]�8�I��mN���/^'j����w�^���{i}<�T�vY�`����O]�T"����G���6��D����0�deU�|������n�~������'�xB��T�cV���'~�r���>�+l���~����S���J��85�B�����������gS.���-_|���t�,�?�?W�Y��.��h��;��$�.���6��K�w�|�9��0�/a��3����d�E�[�o��\^ 7���j���/`PF�e~BY��i.W{`DD�Nr����[�7$-Xqx��d1��i��^��t~�*t������}e�E��rE+�����Qx�b���������$&;���\���dXF�I�$�s��W.��Q��x��&��%m�����J���w~���:�C<F:UG�O��(SQ����t��,��MO��S�WT`c}@���]�v"z"f��/��������.����T�#b&n�J���|h�t�;��1VPP0x��;v|��Go����X��)�K��g��=Cf�Tn�e8����.D���>��^KU���
e�?#���ww(�6��k<�'Jf�UNNE���	1uzF6!�������8�k���Nb�?'�?9�`����$���W��+��1��'���zM�������� ��9�
}��/+s7�7M�����D�tu���~�.���d�aK�YI)�����i���+�X}���#��c<'���Q��'�Yz�:��F,�V�S��C��i��E��nQ�������&�����6�v��yi����|��;�~�����t���������
����������y���BX�r���/h���(s��}g�'�������
������9x�\;�T�S�)��Xd/ "��gC��.�+9�����w�SSI��ii����iU���n�'''����:�n���:tX�lYXXXe��+ p���JN"{��1h������t�5)F"Fj!��������9�r?��������*�e�I���(@KM�X��y�D�"R�����u$��6H;r���� �J���,'�T�D��u�$�������V?�e���5��T�"�p��'2���u��z\���<CK�����������?|~[�3|*WZEv}�������F�fI�����nX�����p��8"�Zz����[n�P�<�-9�O-�q����c�kw+�r�|&�a~�eUnt�e�_ML&R��<��K�^��?H5Z�lV��'�{��~/����Q?�����!����9yE��<�(sj�U1uz�T����e:��2?�.%5r���������$�e���6B�����*�����8q�����u%R/mqN�`�hL~=(��k�C9��Rp�	�+$������-�������9M����am���z�G��VN�uor�d���%fH�=��^�j�?9����
��Y6�[��`L�f�[�������������3%N�dEu�m����T�LWNf����	�bs�������r}]P�����1��g��Z�YYY			g�������������f��U���l3����k�@D�CZ}8`My�)������vk�_���R����������Q$���*�{P��k(��2o����edv����g�9�+�%���;9�j`��~e��f�5�U���Y����]�5���X�1������5h����
w��C�k���������|�C���/�C���YpV�4����������mX�7+�������2�&���O�������{�-��JS�Wn�C������5��&�|�������!=7�N����_c�������}xY�Y�_�������r%��N)H���!����6��m��D5Bg6#R���[q;�n��]�4Q��r�7]�����H�!��s��:��v��q��dZ�jCu�G�Ws5Zr>��b���s����#82���:={7}�V~M�I|]�>��-��:~p���W��������Q�[�\���{�p1���z�������Y�E/<�I��OW��]uN�����N�!v��Ud�W�����\���������W/"2��_��O<1e��!C�4o��*�������q=��N�i����Z.�Q�Trd\J�4�z��������[�}�D\��_b�����H"�������U���NF$�k%-����J�zF�����_o�nO��k�Q\
��M��,vS��_�:����>��Uh3H�\�v>'��*z(+
�I��c��p*�k���NvM���k�\�X���X��nj��,��W��o&X�e����}�>CZ����
��q�|���/N������:���*W������x�����[+��\����jL������_b��:Y#��F���w����:?V�������E�u]9 IDAT<��9��6�=��e}�����V������5
k�F�W�0�:�}+"�g�#����1��� ��{��a�\�����2�����{���7j9��/)�rd��z��R�)�����X�'�,�\�>��S�s�����wL������Z�C&�^R�
ZW���I��z�����v������So6����������)���gC�U��fb�����c�d�RcA^5z5{fP���D�r��W�8p`�E1�YYY��J��;p/������_��Pl/>�Y�F�*���::�Dq���QT9���r�l^��^���\����9H�J3�"�2��@��,��+�U�&�����	.��rP��]O����O8����d�5�D�������4���i�wv}�@����\�5��K|��������z��N�ye`ZFY�+���;2o��9����*���8���u�ba7�yG5q�~�8�
a�g����-�r�X�6/E��;u��S�f�-]�]���^�]�&�*	-/z���=�2�\y��gs�H����WP�TQ���<���EJ���m-���<�.����l���K�
W4��t�\����	d?�O��b2q�B���I�	F��=e�\q(��-z����,G)������������#��e�[J��tn��2�8q�tu��Z��p��\���I?�H�����^�pU�7#"~��P)>�m���
���j�eJ�5_�w�Hq���
��1���78���g[��+�����������g�mv����/�I]#1�s>��Wo�z����Tj�Z�/^LMM}��4M�^��{�=�V�^��������+��oa��d���p�b6���������"���R�������v���C_>�`H���X[R��q5�������u������9���q;���M�CI���C��>u����yN~�fhsZb����z��������>j<C�Ft,Y���wa'9��I���[��#��3�����Ntp���_��*)�B��#+mkw��MI�K����������g��ZAI�������.����K-Z�-���8'�%��Z�������xtG�����9������/(\����F�y:.���������h�t���`��N�C�.���J��=��D�{��D�����~�\A�"]��F�{����vm�)�s2m��L�����%����^��~�t��[��������O�^����#��\*�+��~��HW<Y����?���3yG��V���|���D���9��3�F&���=t~���M�8
2�����<�ZEvU�
�d������(L��g�%b������\o<8��_��uz�W��u����q�BR
�����I���'��n
i�N�^!�p�y��R�7�����)J9���4a$���R�5w����O-1Zr����W!�����]�y<2�Ai�I�,90swJ��^�k-}u���a
������5�^����kj�_��f�����m�[h�ja#q1���R�>������L"��)�N`m�]������U������I�U2pg�m���g��W����~���Yu:�O�����E���|��*����7j��f��^�?q�D@@��
�O��S#i���C��/�������Ia�(�
�;p'9sI5Q�GW�O^�V�_!��B�z\q�����H���*v�b��_O�Q��r��b}$#&����gZI'Q��s8q��
�T�(�D��"=������*D�$/���O'
R�o��s0����	��U���w��g_�(�Reb�����>���dK'��t������)�M������g��5���_*WJV*�b�F�%��W+�[���rb;�*�H��dO#�T��2z�{C2Z�Sr��8��Z�v������\!R]�p���J�M���6y4"����
���*�Md=N���y�GQ}}�wg�fkzB @��D�tP�T�����HTx�`ATTP�� �(��/��B�fw��������$��&������b�����9����{��B:P��]���x�?���p��=o���yY���+�B�K�n^��C�&�7��'`]{��P�oD��,U�����=����J����������g[���T�
���8��5�$(�Qc�=e
��!}1R?�O�n�b����+z|��H�
��+���k��������������8�K����i�S�y�C��I>��w���O����K��T%����w�"�<a&�����=�N���=���
����������%�h\X�w�����������N�k,_Q��M��������X�re���g��Y�fM�N��p\�|y��I			����+�mC����_x��j���_��Y�L�8Q�P�9s�{27J���m��a
N���\;�&��g�sz4�e$n+�kT�b���5�|sA��NI^�w@�0)`RJ��
��x����,Q�T�-�Fr���c��~�O�S�R��hy�x-�e�wlQ�DP$;"�Dph{���n�����_/f�o�����/^���D^�����ix �������kj���qv��S?ZsR
E�*�$����;N�x"�T���h7�~������	8��)��A�����0���SU�R��ei�'|���_i�p��;���-X�n���s�-�U���b�9���>��?�v�_>�-_mW��y��=,����)��O eC�#�
�����};N�r"���"s>�ueT�h����&��&�
��%(��`s�A�����Ko�m���iX���	�I�6!y68��*�:��
�
EX9b�v���L+T>8�������&�������;�������7���V�!���
_���5;-�Z��U��������[�\�����K;��|������R�5�Hu�R���T���eB��V������'G�����T*���dgg{<���;���
6���W�\���q�'N�����������s�����>������>|�y��7P�����3+8������sT���n7D�Oq{�/#���kwP$���q�����BH�p�1+��	�`��!b<�%�>r��e{!�B�)�Fr�-��lK�.f�=�'�T�v!�}�
"z�����p��`��P��F
��6vW���Kv�^^l����in��v�n��zW��L�/J�oe��&�r}����9w�h��/�
����&^{>�kx���'��>��F��v��X-��r�#e.\�����X=t[
��C��<�H��g7-�+J��X���C>*�����/���>�F��r#~w���v�$E^'5/nJ�"[�-XB��Qw���������K�������4���=���6u��������Wd�!��/8A'X����"_q��X���'�8�,���q����o�S��|UY�?�,���\����?�IT�B[���Eb���;�W���p �+\��\��������� e��(
����HG*���b��>��!��`s�g�mK�����:x���x��~��#[�����H/$Z@���r�fE��Rr�_Q(yUIIV]�mZ�� ���|��[{/�Cn�o�����a�W��_���W��Mw�9�������Rl�1�1m������$H�,W������y�Bs�}�����@�
��p�������~�z���� ���/""B�m�,K�
�u�����{����m����iS�^�l���w�����O���o�p���������-g��Z��Yv{�����p������`O���'&E��G�
�R6x#"��x�1�� � ���2W��@|�4��c�x-bu�sY�e�0������!f�Y��_���37j�'3'�-:9��F�����+0������o�-�����1�����S���Ad�P���k7���7`�>f��u���+�0,el!Z��)T��2��lNl���w<��n.��p��Q�:G�p�9����
c�*���l;�S�������I#��A���s�@3��v�y
��!�A(�n�����[H�c,�������!��bW���8R#����d��+�}`�U�]��v�����������)Q@uh��u#<W�kM9�9�wF��jz��k��/��,0�6���'��5qZ\�m����bV	s\B�Z����r��X���'@$$������
)���"B:\gJ���
�L}�s��p_���1xw9����S����#�z�?Ta�b{!^u�W���&tj�~�����9u�����l=�bK��_"Y��Gte��y�h���)������S�*�Z9��������<�����N��g_�<YR�1�0S|��&_�xu��*��$���0}L��^�|�������+s�����V�U�(�����t���K�F���?�w�k!��p�>lq�(y$*uk��s]>����kv{%zO&�'a]����|0�T)E�v~����)��}�sH�Y;�J��w�\���m?���k��N�J��?�C�>�B�����-�dt]���J��?��8��x�i�a��@�1JNX����D����K�������C���	�b�(y���J�&ME�7���`�yC�{������}�HU�]��o7
EX�pO)F:k�*h�%�?��o
3<)��zC����<Y����2����P���L��x�)�%;�l�[��V2${?.�ORU������-O�{.�0�*��)�+�mE�\�6U������K�\G��1p^�c�o%�&m3(�}�Q�B��c���-�"��|(4
<��q�e]����egNe�D���F��hA����j�N!{p��6[�mMsCf�eC7�\�(�m{uEwo�:�6,-�J)�s%vR?O�Sa�"GDs#}���s�CmH�H_r�F��("*����}��e�<���F�=|�����.p���x!�6��.\����$h��_�t*�D��q?�i�[p�upN����19��b�Bq�e�W���@8����+{U��'B�a�#Q�E#����W�o
Q(~��������@�\��PH�J.�`�C ����<9�N/��m)���V����z��#w�P�K/���Qc!"�h���q��b7�'����T��L��G��0��9������/��B�L��NWrz�*�D��� x(��B����&H����)����+�sI�q��9����p�8HY95~��}ESS
���2�|V�����#�\��*k���8�UI;�u���hWq�R��*J��~;-�������S�8�GEn����T(������8���PUW�z*S*!������wI.��!n=8c���z!�ZEF	v���G
�H�E�x�:H�b<�(�+���a�r���z����D}��P���/9�W�����������UBW/Q�(=��|�o�Ws<�R�:�0Rh��
E�<"�I���U��9��c_�p`��/0�M�Q��������GZOh\���-R�v�N�P;��e��{q�%���fZ�]�}���U0y8������B�B_�V�SOf� W�\�WO���[L�{�:u��v���;�����U�~���p���xK��@�N��I���V�$��^�E����8�2Gm]PQ2�wE~��`��[�o�B�������M����I��.)�*1��zg�����(�%$��m�����%dzp�Nw�J�2������)J��\�c����4�M�GIU������V� N~�IT���LP��u�L������V�I��E&��Q\�J��A��XdA�6s6������K�Y��=����Y{�W���tw���I�'J��81M-�m�kK����
�8�U��s�������_4W�#\42�vJ�-/�k�����K��b�nE3Pw�B�N}�q_(��+�w��/K?Ol������}��{��!@�{!iZ�Jqv�M��>.V�b|_)],z�������[
�����S��J��Jm��Cp��y��,�"�R�_W�-�C(W�h�5�.���S_���Q#��k�a���.�S�4�GR������K�>J��N�4�x�no������Za���D���K!�p�����}95���S_�:�]�P������l%�Z���P5��Z��
�L&������i������_�u�?����Ko���������������!������?�!�/��e�W2�E�{@p��/Z��O��H��VZ�*����*mO�YU*��i�����j�>!���L>��J�N���_��:�2�	H|Y;}�p������p��sl���vA���v����>�h����]L)����;�,g�7���"��z��
g����*�k����(O�HTD�����[�u�!Ac_�aA���/�m���u�_��,�"�k�vwv2����y��������+�/���|
1�S6\�
~�����vp�'��n��B�R9pq$���t�%)[���A����7Q����
���o��?��24hp��o9�I�&��]����Uf���>�����Rhtj����Bu5J�e"q����F�c��r"ZA=��E���!#�����@5� �7����l�=X�l���]�1
�J@�����
�w�p���{|I���e�W��nd;u����&�!e�����h��T�}������k/O/(B*�����p���$�T�������.����f������C��q�~(#�g����9tm
�g]V�����^�����}��+�#9��.���A��d�u�	��2
N���,�Bo����}���d���T�������m��^��o��{�^�S�+(8��+a�K���I�6��g�ET��IB������������t��s�K��Yy[���K���;��"i����mGU�v'�:�7����1�����N�-=k��K��f��NE��+���b�T�2:7�~;�Be?r8eo�f�Z0w������DT���:���6��p�N�K�����kI�m����"�_�o��3�����_�Z���%`��+�!��
EP�(D7���yg��Q!W�}��1k����m���+XN)m�����{e`��Gtt������"#Z�Y���V�w>�(�&t��M��BM�B���~�\hn��8����29��u#j"����tVe���������ufw�VB�����\e
��P.�M�����|�?�@����33*Ji��h�j�E��3;*�����������'�WH,�l�8;�������,��������o1n����j���O�����
F��h,<u�d����7�*��\����L�E�a]�(y�C��i�Q3��`�������KY��<8��)UcVu�'��pzh��s p�G����/T���������Mj�0����k];DO)�=B����4���?��/_^$;�?Tay�?$@|C�������&�_}��~������S�N��vg�5��i���.���������j_�}+l��G����u�2;3��$T5}qw��}.>��*1�}gn+�:�8vn=j/��
 j$�D��e>��' X|eX�Q��pa0d�Pt��{��&k 9}�<.,}0`@��	-���8uB��	-��/	���h���������w�����J�q������sD�d��6�6�6���=
��9!5���p�A�\�c��B�����:�o��`0|O��qw�8����J���vnO[�f�3�� z*R>Q@r��7tm����9�J�%�&��g�.��%/����f����KH	!I3����������pv�� j�;�0�����W&��a���'N��hA���^=���]B6���7������'|~)� z�F%�qH|��o�ms~�>d���V����)w�!f��?([�AR��p-w����7�!H�T�����[�����/}�]�D�oY^;��<��U�,E����8$N��=8u8m`�]����/��$#�����[�n�
!.<~�8�����[�z�cwY�N��!�_}k)'��2��S_������h���49�����o���oE����*�w��*�T����P��v�/��+R2�����a�2����jCs�/r�<��^ IDATwb@�R��E�
?Q�a��l���d?][4��@_MJ�Cr@H����S��u=����W�j/�"���]��������N�6m�l���/��AU�����Gtw��q��D�oh�F�y%��P��A���1x
�����`0�o���p%@A��C�s/\������\�n	CW(#��om�5	g���B�om�t�Hv���"�fH��
�Z�"�
��!57�%���K�.���L�W���;w.!!��8u���}��=y�d���p���8��w�0��<�kd�6XW��ZS'������y0�t��#s5=������"=���]Zd}D�
eT�e~��e�CB����<���t�"IS��uf�/���vP(BPc�kg��(c��R��u}�R6�V�4�����{����J����g��!��iy5@)hMs����#}J�(P{a��%)B�B�`.�`T�k�������DYd7�����/�}\E��d�$�^��@���H����K����6�+�:?Tn�"�� �K������`X�v��1ct:�����;w���������4�P*���(R����E��[�R� ��%(y�1PO@������lX~��
���\Q"�7��->L#9pv�o5����s�m���`0�H��5�m���7E����J��~��������2jB$*�E'P�:�B�y�-L^d�%�6��+�� ��1�n���x�F�o <<Wa�����Rqf���S��e#7��U�i��MBBBhh�J�R������s�BB���G8�����#e.�|i^��y������6C�4��~C��PF�(@�������F�4f���S����eE�jH��U�4����l�`0A����_=t��'N$&&���[�n��u�����/44�������J^������*V������u��D�H9e�&�*�e����:cO���[
o������i
E8�~c54F�	���G�o����>���_�i����P�[s��p�#��@�Xu^�:�5#x#3����6��:
��������J���,�3�J���={���?{��7�x��}�R_
m�����I	�*W�����Q] P�A]����<W��������
�@{2c1�*����@	�S�N��_~��^��W�^u���C�A��o0V���`0�Q�p�QpAm������}�"@@E{!�f$�Q����tn��y������v�h��_|q����P��x�wY��#j���:/��`T7������@�|x��s@�+q�l���T�n��^{����D�������)(��-�qzv���i+���Q�U�e0�jI���@
�/��bT@������`0r	����<����c���N���~xxx�����A]����}�=c�y���
|�L�������0F��P���8�N�q��m��q������G��{wu3���Z��}���:/��`T_���3��;a�c_f�Q>��9�r���n���<y��}����A���Z�#u{BF�����Q�����P�x3j�L�`0��l;�.\������-R(k�����G����6�v��T��@P*��j2c0��
A�{P�A��	l�l�qS�c����3����W*�;v��uk�
����U7�^vRo�G��n��y��`Tw�_@����x#��`0n
�n4g��q���N7�|��A)�$���S8����%*1�b0�!�M��f��<�LZZ��9sz��9y���
n�������Z�����S������`0r���@m���r�������k�����K����;��������VJ(�&ms/��`0�M'���Q��b���'N����T��%�
%����`0C6�)��,X��������3`��jW�=�S�iPJ[������`0�q�	����+V��Sg����wt:]u��nu�8���>s/��`0�M'�t��y���}��]�fM����L��U����b���`0��-��R�d�����A�=��c!!!�������/�� �B����`0�q�	�����W�^�v���1���z8x�/
�`�&����`0���]������3g�L�0!44�:��J�J(a�Z3��`0n2��w��-Z80==}���y�O�>=**��R�X�_���BOD�{��1��`0n�~��w:th��)E������}�����R�l@	�dw�_}/��������`07^�K��-��z���nKJ���$��& �6��f~�`0���������
�L���x<?��c�����)3��X=��������lwg0��`�`�~CHJJ�8@dd���YYY��N����U|V����.>%0�H���L>��3��`0n�p�$����Uv�� <���[�n�x<��������+""@fff��
].�Z}��I��\����	G:e�q�8�J�/������`0�Q>*�s*�q��#G�2�a�������u��-[��y�������g��y���8���K�4g��9s�H���qco���H��Iuy_R������P	 0�9|�:s8��`0F��!Uf������}����t�/� Je�8W�^2d���+�\�E��:u
���g�]�6w��Q�F������?{�l��������������e��0~�R��~���xws;��`0FUwJ�����O>���O�T��?��n���=��c��;��bILLLNN��
�n7��M�z?�}�}������\��#���]�v����R������0�y��`0�LT4U�_�	&�?��O�������+���N���Y����w��}��uy����������S��BQ�N��]������
�|��3�c0��`�	Re�V�[o��q�F�kQ9�;q����x���8iJidd���^�z��y�&O���<� y��y���8�No��
_x�}�!��'�]��dNN��v'�
V���yqw����(����`0���)!�H�$����"((h��q6���v{�������o����z��b��i������G�6m�������y���y��E�=\+�������1��
�5'���'���
J~eqw��`0F�!��T*6l���?������3/�-I��9��J5z��n�{�Q���RQ�����&�,_�����<�Je�w4�<'���$
�R�eLw(�Uh���h���J�w���),���`0�6��v���^���R�8��m���l�R�+�9s��I�����1c��Y�����111���z�>**j�����-_��~��UYR��e(�$
�
%~�}��/�����w�����0��`0�N��������{JJ� 5j���t'N�x����[��5J�R�������t:��'��i3k�,�������RC�i.�Sr�.k/��{����<Vg��`0��V��HAbbb6l�p�]w�~���$��C�:������_,����[��<�tqP���
�gF�U���]��{7���<nt��K���#��`0n'd�\%��B�h���������,V���~es��V�f	]'���w�~E���U���y6��`0����;����U���4k�l��-���b�{*G�RJ�$F����g�4��$��f�`0��(E%W�T��5K���7/�Dr+t4�up��k1�)�����q���'�`���_2�.i�lQ
4��H�)��	����p�#��c07�d�#�OR ��U���3b��1���i��M�6���[V�2' �� ����S���z�}M)������#�����[��3V�u�J�k�8��u���z����<g���MK�q	��@�;������0�;�`0�������f�x��bB����qC�J����	�L�������A��_�Wk\)+2D��
��6�Qc�}���1�x��iO����Q�[����~�t���e�������/E�k���C:��n.c>�
K*6.����|j-�e|�Y��||��D�Q��{q��k�e*����0v�������_��[p�8v�����FP�]E#>]�N��0iY�TVU�[�����Dn��,�Q:{�&sP���|��_-}.�qx�t��5f�B���}����rw�T� J�Q��f`�3�w�����NlZ������_�'
�X�����M�QP����F#�������C����m�WS����y�
�-TQ�>��o.����<v|���V��6�~��k�z��v�9<m���@	Ja�w��7�V�`�*�{�����D�R���qQ�@�V� ���i��@��o`GW�Vq�����Vh\�_o`��5�_O:����,�(��]����<���RI�����zv+F�����;'�P���Y��."��$K�-��a������
H�']��SX<�wB�_�u����|	
���$�^������p�����}����t'�|����8�C3Vv����d?��J��/wT�WFU=~��8|�p�:\	_����V�_<������)�����sP+9�2�S��B�m�Hc�����iO��Kj��:�������qw_D��6����~8�W6���c��d0U�����>����D����������,g��_X��>�^z�]��]����K�Y�P���j<pd�u����0��l�����z���w��O���M"�e[�+��;��C!�|����
�2eJ���^0�����T��|9��t�m�@8\����Z5�qK�p����gG�D����jm��������{g��3�QlXL���*J����N���+�/��8����Q�(D�����}��_lN�#��v�2�vP���o���#��n(����|��R!^��d4�4��.&������w���)����B;��F��q@�� �p�������0��Btm��9mD�:�DP(q�Fv�������&�p_�|������k0
���cg��q�������.�������
.�aB��/��#��>_��#���5l�&��p��x���J~��{�}����;����_����S�hG3���c�{��}��uP~�jE��0z:��Wa�r4hQ��$��1q>��r����)���T(p�r��2(@�F�B�	0�����c_�2��T�sP�)����"�"��d�O}qf#�����[��_X���S���-:����#��!0���l<���>�}��U#F�����8��$�O�>-[�t:������"4�"@!�4a�>R��u���L��=�5:�{
���`���>q��s���R���hW���!m�������3s�{�L��#��
�:�<�	{
�|���Z��z	����O��{�`0*��x�w���Z�r�����d�6~@�x�Q4�NFw�w�Q@X
�����q�������a�t��v4h	���NZ��|�,)��p/f8U�d����g�pV�3��_��:����fb�`X�X#g0nZ����
��|���
Y�xy����7&d����K5�qK�b�DAg�SoA��N?�e���`T	�.��w��^��A�f��z����C_|��O������TID��X���]���F��o���v�2g4:���[��-��p<x��E�^y�'N������C�t��}m����!�CJ%�6�"������1���gA�������q��k����Y?����(MsO����<��CX0J
&O�!�pd��S'/��|%��m�Rc�7,���`T�l�C��V���b��|�������v'~�*5��x�[h����<����W�u(��p�1�^����[X�?��CS�L�?��j}���>�j��&M������e:��q��<�K9ah��0�?��>�IX��f���`�lX�/� J�����.Y���	�kf<nt������2����o��6���J,���`T�����U��������B?�lH������nOa�;�c�0��:I��waL'�}�
w���M�Fs���4hP56Z������t�I��}��}���z]��1�
��a0�����KW-(����&�.����q����z���iK���d�RJ	Gv�?���{d��qs!��tg0��s�n�f�H��d�Kn�]�����p�J��?�v��b�I��<J���f`\/��tK
w���6l����n��m��������A�+9>�.QQ���0�u��u>�mg�v��[z~�;�����g�[��N*������5�D��hLZ�}{��a�z�Q�Y�'����G�!,���`T*���;-�N�(��X�rd�����C�y���@
�M�	
^���y���g�`!�c��X���'�����q��Y,��v{�^�.^�x�;���0p^#R*���C��R`��!&=�&�u���Y��������I��n��|OB�k�o�����O��h���D�i]�J���3�'�giY�;���4���/~?@T
&�f�C��=�T�?�4����r5��N�E~������*�T�g�,�.�p����z���b�
!!!{��5������n�
m�W��P�S}Y�J��`��-�B�=��3������0k��
�Pv��re�S�,+��	�NLZ�!�2]9��ps� <7����]���
e����5�������^N�����^����6,��[�=�;�������_����p_n�������2:�N����U*�w�u�m^��A�y3�Re$�����z�@IK~�/��Pb��$���o�.�^���!�UI������pX@��^t-�XH�s_���}Xp:�C��f�v�ymy������VC.���!J���[�CS���|�d}#�%�#�����]�/�J�
0�QXr:#$�*���	��{l��U=z�����>���&M�l���6/�t�!Q�x}�������S(�0
�\�q5a�w�0�;bd{|3�c0UB�-g��_��nLzvJa��U��k��S�z��������8x^����tf����g0�?�}��C�Z9��c���R�����_x�
uz%������}���U^�/z������FO�"�.�p����C=���8a��3f8�y����� ��A��|�4	�+�=�fu#:�Q]C��$��PC�@��P���@�X2���6�<�Q���&�[�?�}�6��^��Q$���������"���_�N����10��p|R����`0*B����d-�+
��5$o/&:�����|�}�R*Q�Q�?o;|���)V9:,m@�U��^Q����P(�-[v���������.�������D�I�\+J� ��(xn�����@�pC��'w��O��,+�'��J�L8u�<�Q�\I�o��p�^��-�=���B���������&�z��� @����KQ�T��<��/�d�����}g0���E��%�@��������/�
l�����6����y.3�U��/��R��{w��[5q��
wB!���#C���V�T*���z������2`��+W!s��'��(y��{�����B��z����O>��a���!�
�H \��s�������T�S`]�!�?`�;P�0����d�g��XS������C���u�4�����FP
9�����q���C�(x>��2�F��������~�8����O�B0�Y�?����>��c��kUT��X��?��{;�^�3����������4h�_|�v������W�� ��9�n��7�'�?�������������3���A2{����H���R�����U��Q�(p@B�����������B���$a?�E���c�|�T���#Y��`T�t[N���D�S�0�6����9�����<B`����	
�{	�.uyv!��)�A����W���6*5��v�1����{���gG�(M������y������8���� IDAT��d#��,�S���3W����^e�Tp�����G��|Q��#�w(U^��A�**8���Ro~gRR�J�


��<�Bv<}��G=��'���L����7��a�q�;�^��� (��;����l�O\�VC�����N���j	����;h� 6���(YW�`��Gf�Z����������X��.��/'AJ�Pb�9��ex"N^�n�i�qT�ti�����v�������3��=�a>�`0���4{��_[.z�����3Of�l|=J$-:���%�U����g�Oee���
7}9��������l�%�;x�e�8���u���)�{����G6n���s�����l����&c�'�U��_�F����<�����<WR�+�@(I����/���a0�UM��!n�N�6���hs����;5|�W�<of0�s%��d�W�l7��0���G�T=�_�0�q_"
�c�j��T��J�7�����$8���������b��P� 
x�
�x����(��]�c��]���G��L���(��),�x�%r���g[Q��������|�a��$H��"3vn���������7�<�������K����3g�<r�HFF����7l�066V�P���}������O��:g�Bu5f��S�n��;��'���4����O���u��
T�G��s���t7�5��*cPBD-B�s�u��J���<G�LA���R��P�`0�m�Le�(Q9&NF���DbVB���@�������no|�0{�N�s�-�s�[�t��9dY�T+d���T��0&�g��?�y��?�ZA%�����&��z��63��W��a~f*���q�l�%�hyP��-'��@>�j��k����`M��.��(��_�Q���@[`�f�q0hU7��!��
�d�r��\K�@����� }�4���[��)��m��G���M9/���8�Q�=C1����������Zm���z� �<��;7*9BZF��w�Y}��������q��+V�u���+W�T*�{��m����)��h@�i�����)�za-f����BI����2jM��2�
�c����.��R�/�SEp�P����8��t�������|�5_��gIp%>�9��u���z���^i�]�.�l�5�������e:��������8�1��������b��RJ
�Mlm\����|\�������"�IW\:xJ��\���������o���">L4�!u�*��L�e\E���G�8Y� $wv����}���/�~(�p���Y��1���?��}�\.��	_M����xt�.��Q��v�>�f?A�V�����������x&O@��>	
J|��������Y��� ���[��<�,���c�x���a�
�����!UC$%��Z�?{_���P��l^kpgg���]�? @��~�����
�k:���^y�{j�}�]kq��2�B��:��������df/�|��M����`���ea����6�v8@���{uy��P��O���lMO�`�c8y�v����}o/_��!�z��<��M�:��5��.g��t�l�U0�E��@)�&��X��O�8f��{��=$7y����Mjn�=L��T��t�'�J�J�s��]�jUFF�����7o~
wQ@G%���a�	A
���k>k����:6�����~B�����(7�
-)A�R�Fv�Z�k����$�x����gi�i�'�M��
@	
7HN\�V���?�%�VX�h�@�\<��3�'tAP�}��$������o�S�5�!�lG�[������q)��C�-��<pd�u���x�������3�qx6-������:����u����FT�H��*Ip�p����>�c|���!m��v�8v������D���T[|jb�>=`��n�"���)�|Cb
��j����;�
���h�1H-[��������������Jht����r������[�>0rH���������k���[� �$���h��^-F�nf2���j.�*����E��a�&�K�����0b2����Z�V�aw?���_�>Y�'���F��i��������^�Z�GG����r�&Q���x}<��z2<�k�m!�(@�:u	][�-�482�������b�l*�I"\9�������q�Co�I�R8=
�����
hW��+�D������iHX
(Ue���(���.�����"5���H���G�&���(���B�k��r�B�W���h����''eB��M�.�o���P�
iW������Y���F 	�:������HX��_�%���a��:�3�@gDhT���?��f����Q&��{���
���T����5���<O��a5J�����7�-IXr�u�7����,�{9��]�I��W�{���u+(�E��c=�'��tI��i�dH��9U�����������{o������g���������n�`��
��
��3d��q���/D�������,��yB�M�
�n�����p�h7z1
��.���2�KA�"��b�4!�@ g6������Q)��i$%�f�B����E�j�������.��X��������+�qMZ��`��_z��/N������4p|Y������Q�i�+i�3 ��D	�T�F�1Hh�+�n�}������Y�Q
�
��F��+h�����t_�k��o���LwI���*23�?[�r���$I�D���>��������Q����t��+�����o$��pq����?�P�>0�.��>�42�
�/�3�E�<��^��x��j�53xW\J
�($�R+"C�����y6);�����<sf	�� ��t��
���9SI2��]Z��}� _|��.d$���s�B�� 4
:#�y�zO�q�'�we9��`�A�x�^��Q��b�����
^!C/��o������2�������zP9z�5{N�H���#�3��n!����osC�k���r�i �
r�#/Q�x���U������W�s5�
��$A^R;��n��\���.�NKjM�
�����������(��Dt�w������q��e���[`�z�A%�_6iH�f��wL{���������;���P��>����fr�e^���U����w�(�<��)����?��Y����c��-�L���}��nv��j����K��{F.
�g��L^�Bf����������d
�J����I���2l9��2IRp\��I��k���@B I��f��s��<�$���6.&D����4R��!��r��k��C#a!�����T��
�gfH;y���T�*"�.LaP������,��Sl�����hsH�W�+N�=�|�F0���Z�� (7*�'�E
%����\�$"3�	[$j�K�g���C	���%	���+����V��ai�MO�4�B"���]�sW-v{\���:�������g@{���D��i�f]h���#�58g,�@�[������������{�&�L�L:���JG!  (U@@)�Z�����t]uQwA_WEYQ`+JQA�(�"4	 ��&e�=���\�!��������d8NN�=���<��8��
�����Bv���T�����������R�7R��h�$APV��v��7���z��*�&�
���S���K��W���g��G�a���jV���P��[�0�]X~IyZ�3��od���C�	��Z�}�1f�Uq���~���}��Y>�E���q�Ga~QlL�p��c��P�<��yll�������$�����j��$�c�fCrt��W�� �x����;����&��:����I<����'J�@��V0A[u��2�/
������~�Mk>��V�q���C��9�!��Z#����y��*��[br]H�,P�Tj�p�>Q�V5�3GD���%y(��TmK�k��b���d�H=[p�^�jm�u���q�w�8+���\u1��Q�7-��J�8T����+�7&�
��9�����7���L����j�>X���YiIy�����_jp���|~�x�]Ua�%����S�J��>c�u���3�����N����R�V���g����r���x�&M�Z���aR ����g&�{���9�Z%G3'�4s|/C0�A�r���'GO[[�0h�D�I\���a=�7��=###..n�������>�����������r������^������Li>
���#{�_�&������e
��B��I�A��\v�*d.Fv��{~����(sC��>�Xb������}��f�����bgI�o�
/��]���������Ej����s/��Z5[bpCot�5��w�h.R�C�������<rH��m7�M�z0#�����Vb]^t�����-�b�V����Kl"-�5�;b���yb�*��-|��}�a�C\rp6j�4r~�I�0�.��~�	wy�:���aM�m�t~g�]���3s������P]�$$�d��D�k�sO���	�����o����]\C{��5vsxBT�����T�R����os���+���tW(YoW��P�-���/1������3E���'�����ch�ol�������<�p\���o��:=?�V���6l�'.1oWm����0��jjo��F+�����J]�4���e�4��7B�C�/S�������[��wO��r��>��|���5���s#�d�n�qh�{�}en�5���jk���x������%���{2�8}�^��0(��?�g�%��/���Z������K�hAL#�8���yg~����B@��W�v����7Q%�W�LX9���U�Y{��<[����_����~��� �9�}���3��'lx���Unt���s]8t2���������!LSm�����Y�$��Ni�n���~{Q���Y��l�����K��v�^�~?"���M#oj��y���;���2G!T".:?�6��s��=Z4�����~[�~
��Od��l����C���������0a:FM���]�S�>�����}�Qs6�<����(d>�z�^�E��/�uS���v=TE98�;�b����N�b^s�=�]1���<;����t�Z��\eW�$j��N"�4}Q�����������v�Z�����:9z��{�nd��3w.�,+��?]�1�Y1���wv�k���"R������Q�FN���U�^}���'O����F4Tu�+J1���E�k�g~�ix��'���O�;�����e���C��;���R_&��f��O���|��3�9E�����9�^�D~[\����cL;�D��K�^�������
m�������&@b>���y�+/���a����w��*�G7R�hi
�L��
���Vq���:���^n����� z5�5��n��[���-�Q�t��l&�������e��&�V)Xo���K=�-�)5K��`�[�'����_�Y�#h��V�J��`v
��$v�q��#�h��N�zXc���5���v/��A���T��S+�hnx_��
3������VI����w �:���I��a���n���9�~{�tNe{�6����;_���N~��tr��B�T����&�W@��d/t���~v~�^���n�^�J�.��q������9���mh*�F�/����5d�a^	��%���K�������Ee������Q��(A�����}���\;��z!�~	�'h�����z����E��'B�\^HLe�n�����S��	=��tyI�Y�H�]z9��uV�P���e�]�<�F�v;P
�)���vH���P�S~	�'�����7+3�He�Ny������3�xflO���*��U�E�r�'0�o@`�M�>}������4h�o�1l���-[n���s������(Sz!/����"��������r��f��{�2O�/}QRp��������
ONQ��3�s�����tt���f����~�|����K��}��w��A�����^]Z9.uD��a��y��&�P��9jV�U���P(jZ�C[�z+uy3������Ov�����&M�-�.{����e�]����UZ���,
_�B_��M�/P���u>��*��+\������%g
�p�j���u�]����w��t����<y��_z5j����>|�Y�f��wD����e_�<:��o���WU��K�}�����z���G��q����W���}������t��J=����v��Ry����������E�Y�l���������m�u\��/��/���Hh�z�!����=�-����-�z�����1@�&vn���~9
/���b����B��	��(���o�>]:A���[��ilJ��XSm��+�����7
�m1��A_����J���w��3�ds���w<^���Iq����oz������6��?����6���O�0�G�w�}w��M_��I�&�{��?�p�=~o�����|#�zt�c�s��P�.Z��\_� �����s�+`�q��Z�Kl�{����������wH�������}x
�3ry##��b����bt��]Z���1���m�H���������c
r��"�����^�u�lkq^�sTWF�MiA�A!�[��&`�����!��k��K���3������^%�7�{��SXO�j�{"�������^�m��y�Z
lo~
�����j�5��y���n��l����r�*Ot��H���w����I��c�;���M����\�jZ������Fk�j�������7��,-��9���6�4����<?��/�>z���+$?��' I������4��y�j�� �hXT���jO�(������v��������Z�
&���H�v��v��M��M��vB��O+yw	M'���l��T*�,i���wL����b��������k��:������j
r�4`m��|�,�yV}���f��#g�UW��.��;o�9�&9�Rq�������o�J�q���y pz�!�c��MMM����bY�t���C
��={�u��{�7����C�����������4p��:v>p�������(�wV0���[�NX���$|^��a��y>�����w�Vx��a����*
q�*p7��M;��*CA4����+;_|���4�$�Wlo%�zu��WuJ�Q�W9�����~���IbJ,��j�"��\���.�����rI�Bjo<��R�A�B�;X	k4���[�����ta��1�=�����PX"=�|Z�=����(�jU�xKp�k���=`�*��l���v�Kt~��Q�7�M���x����G�����\*I����f���U��.sykUo��P�{-~;��.�JDA�x�{�kO�0����b��D���{������f4vgVeV �0������5*\�A�����:&'
�j�K���i;%����W��G?�������K������}p�f�������NA-�*��'����U�6��w�Xzzz���].�f�����%&&~����q>��p�� &���������2�!"�����c=�0����l���b{x��O&g�B�l�X5_\���K���7
a���X�e��B��x�K�G^����T+��<����F�FgrJ�O���f�����nd��D�
���c�Z�}�wD�
��_����r~D�a�{A��"�f���/�7~����g�rw�����
��2d���M
q��1�����c���zI���m{������*[w>�o��I�~����!**j���V�@QQQ�V��n7�Nw��	��\/���6������M��%W���C���5nB!W���0e%���V��K�v�+�����_�J���]�������������m��_'DE������L����[AI��'d�+��_�������z���-��[T^�1�U�y�i��O����k��=��a�{��QUE���~����]���pkm��-�����>x�����g�j����#�����7�p�B3g�T������A�����H|���V�c��-�>�����	!��N��s����w��@��m�1m����������S IDAT��-���6����U>��Z�:�GP�(�������0A�Ii���_��v}�
l�����~�������:p8����~�-�v��5������yyy�������8��������u��t���_@���p�4�T�����B������F=tA^�q�1��y���op�f'�M}��}V�D�g����C{���2O��G��k�_���j�w�����������J��e�5������[]���@���;����������s��m��%�_�u������W��N�8q���|y���s���7�pCTT���'��;���S���2*odUT�*c�S����	!���-6����q4n}]|������><��!.��u��&xu=���Se�K���th����grJ�����B/��0u��g�}v��y����3g����/��)��)S������/�>h��j_(��5�O�`UTf`�����	!��2�U��:����������"����5���	�+�W��o��t:���y`�k��I�&���v8�Z�r:����KII����z�>����*�����\����A��U����-%�X��@��UQQA��B!�F��$5��}�����wo��9O�XRRR^^�w�+����M�6:���>:th�����>���_�K���0���V*�hU�O�ec5MB!�R��u��y�����=z���������^�+..NNN�X,��<�6��j8p��k���_�i4�FS��^��>��Bp�c�,Qz��l�l�hk���D!�B��Olh �;�0�^�����9r��u~��^�6lX���7o>s�L��5k�4o�\��2~���%?Z��M��'?3I�t��B!��{�~��n����_|��g�����O�^�g������<�III{��Q�.`�"���^�'��� ��B!��*,�={v�+�(FEE�Z�������bbb���8A�$a�X���s5���avjL�B!��JF��h�)�N}����m0����mo��j�]-j�%B!�
��}[���$��IE���D�B!�ruP�YkY�+���� �$H��e�$S����B!�P��0l������hX���g�y���MGR�B!�
���Rht�����8��T=}�B!�P�� ��0��kc%nItW��~��"�B!�7<.�y�c$&T�p����
�"�B!�7��(����&p��u�x�.1�IE5D!�B(po�n�L)S��mP�y�����TB!�B�{��8Ach��J`<jO4���!�B!�7+^����m0/?����)�?U!�B���(��^I������?��<&
��!�B!�7?~�DQ�`�\�:u�!�B�����)�Z�D�
�r�IL�E�M%�B!�7��DPk���{�_~F��N3��B!���q
��KLQ�]��T5�B!���#�W���?�����ZS����J"�B!�_k�-�Z
�
��#�h�FT�����0;U!�B����b��� ����C�&�?��LI+��TB!�B�{�0k��|P��n�h����7�3����!�B��NE���|2g��)U���&��f�ld���"�B!�_;9gx>@��Fq���������o��vB!�B�����F����h?�[2��_��v�wB!�B��5��y�T���;k�h�|�*S�x��������B!��k��(+��'v4�$�Z��4���QUB!�
����@����-��U��{��!�B��\E2~��d�`�b��]��$��rc;c:u�!�B���	�'#$yu����Q�ZQ���~O�&���!�B��H@>������MbL�?b���=6�B!�P�~M-����lZ|��pyu��	A8WQ�K�OUE!�B(p�F>{�
@��B0o���*$��_(
����Q�-B!�B��5�k4ZE0l����8sU�^��\,���j�B!�P�~-�e"�@��a�$����j3�Q����cS	!�B��C�Ey�2��jH�����:|���Vm�a	�Te�B!���O��s�t;�}O���Xsrl�V��V�����B!�
����k!��"���Y�k�aZ���g��:�$U!�B�:�������E�j��XZZZVV�`0DDD]�go����K�>"L[�_^���`���B!������q3fL��'L����m�ZUi��YQQQ��^�OF��������C�Z�5f
������!�B���t:��'�������?���,Z�h��E�$�i��������dHR���T�J�qW����D!�B���l����<w��?�0b����������^y����'��M�>=--�c���+�*��J�������$x��{�
������4" �B!W�u����?~�q����������}{�-������`����'#�S�fC�3@k
��]9KDAUy�#j���!�B����Qve���
T���*��w ��$���/�Dws�kK'���av��D
�B!�\�?����z}��	U*���u�\LT�6��a�������'����~���/�Z�/s#�]�I�/��n�O�R"�B!�$�$IJ�������7��/���� �����V�|2�F���x�v��n��K �(�R�Us�����e&�	!�BQ�u9��R�����j8p�o�Y�f���L��h4�j���z���8C����D�D��l�����w�|UY��������F�� ��!�B�Q��&�Y�����~�z���r����?��C�Z=l���;6o�|����mk��i��ymS����<�5�z�g���9 hT�tj�6�~����|�C�~75DB!�r�\g�{FF�C=���t:]ii�C=d�������������{��HJJ��g�K����^	�O���a�?��i�hS�5�����N����Fzl*!�B������o����WDQ���`�ZSSS�������������O��_��	:HRn�p���`������w�SA%�@��	��z!�B����hj�k����}t�M^�����Q��`S�q�tffV��U�+������HpW�	�I�f���z!�B�U�}(���Q������\'�lC����B�^���m����.��CS	!�B�W�="�utW���H��Y@����~�S:D�j�*�r������}�:5%�!�B!�_��o��	@-aMK?��`���&�;����� � �����Hj:�B!���A��I���/A}*F
�S\.`,9�t�����/��wB!�B��������Z�pU��?����OA��&�kw��}������|�_�S�!�B!W�������I�:�)eEAOd��V� �*�J������X�F���B!�����:�^Z��D�RNz}"���^�@��c6��A�A��a����t!�B��/���Ll�O.���116�0�U�2�Ew��]�%S�U�OGC!�B��,�	��V�1�]r��V?�7��k�#c�J��kF�iD���]bL��C!�B(p�Z=|.�����R��w����W5m~R����/�(����������B!�
��A������9��O��;E��i�\����*4"P9�N[e!�B�W]�wz��u���k������{���`���B!�P�~����e�te���=��]
o6���av�4B!�B��5���VDjQ�������Q��dW��.B!�B��5�ST���<�(�~��\P�u���k�>m����B!�
�����������U��J��;S?	��JxH�$S��j�B!�P�~
��~:���n�eT�z�O�����&@�O�z���MGR�B!�
��GA� �O�	<>�g^����[�_��H��%B!�B����W\�UX@��n�0+�J�3�S�������[b��p��|Ti�B!������s�}�����[Y�@�����c8�|Erw������4B!�B����_RQPXK�6���T���c�v����Ug]�O_������J#�B!�_mL�(��{��Z��uI��$
���&� `��wzf*!�B����HwCc,6�r*}\��>� B����(���Q{���!�B���xg�.A�p[���������f����x"�������)�?�!�B���Z�����	�B�Z�%F�1(���M��>�GPJB!�B�����e_�N��Y���G���3��{?���+���B!�
��:A�IG?�j���a�w"c
��;E?��Q|RT<j���B!�
��6�(l�1MP��u�0���C��aP�:R#�U�La6j4�B!���*��,���k1�L�(�
����k
�j%�B!��k���Ux|cq�H@�������� q�)�Wx�����F-j��B!�
��������R�����g���`>D?��.mb�vK��UH5��Mavj4�B!����QP
��+���%� �@m����~�����J�M%�B!�_n?�S���}�RlS��<�����!�2pg�Q:HB!�B��U��i'�1a����		�}aX~O�&b`�{x|�vq7�����B!���O�G��K��1,�\�����VVH��jo�aj������Mm��B!�
�C�KK�����������W4*�Q�����07$��0�u�^G�&����
!�B��]��m�8q"�u:��'�fs
�O�*T}Z�}t�~�����FK�MB!���w�����x����g��E�-�$�M�6<����W�2��5�lf.�IF@�j�B!�a�������gee���K�'O�t:�O��������w���R�Gx���c9��6��6j�B!�a������������������x.���� �����f_Rk �B!����+W�����8a�����_��p�8��y��6T��!�BH��J��z}>�:)����
`*���������� ���SA��;���k�f�7��?���^o���D�F�F�F�^}�v����;'3�'N�����]�fM�'��%k���_&^��\s�n���v���s��9�JU�O^O%�T�s����z
K�z�z�3P�]��v�]MToToTo4���o�������d������1�������Nw�F��h4���0'�����F����%,,�V7C���j����Q�(�z���o�������B�To�u�]wW����z�To�_�Y�f���s��U��V�Z��Y��M�^��I.��A!�BH��;	�
���G�u��p�B������x�
��B!�
���������
 ::��l<"�B!��Z������kv8(�Tl�%7�7S�Q�5�_����&�7�7�7�������o��n�N���;y�Z�-�}��ZrCx3��[����������j�z�z�z�Q�����B!�\�D�B!�B(p'�B!�P�N!�B��3����Q������*--U�X�����~���1������W������?_ii���P�X��w������������������sss}>_}�F=��c����v8������-977��Zr^^^}|����z�+����^�uT����Q�����Q�^����?x�`��z�������3�S���T~�$I�x<C�������[�`Q��w����K��������[�*��>`�����Fff��1c�F��f;p���%4m��j����o��Q��/^��];��>d���p��q��6mj�����N�u������-,,T�o��1>>�j�8P���p���������#G*[�w���uk~�)����Y�f111-[�T���������c��y��v��h4~���
�o�;w6�L�7^�x��x��
-[����k��eQQ���^bbb\\�w��l%<�j�*[��������V��\.�R�z<�^x�Q�Fv��O�>N�S�V!�o��z�$���t���:�x/d����Qo��m�Z����}����c���������������v�\��n�:e�v;w�l����lS��
6DGG�l�����I+e����eG=��?pg��F����G�&M����onnn�����@bbb��]�Zmll��c��?����{�1/�1c�X�dI�~��$cg���������SO=��
��m��o��G�&�I�~��G�%�o����?��`��Mf�Y����@�6m����/��R����x�u�����H�~��Q�F�(v���_z}��9w�\�%;vL�R�l�o�Q���(k��O>������3�r�-�;wV�X��c4����x�
��j0N�:����/���;[,/��#G�����/=����sg~�eff*������={N�6��W^Q��~���x��7*����@��=��g2���x/�G=�F������?+>�����oTp�+**�w���O�������w�^:t�G�O>����)�����ae��]��/������n_�x������p����u�]���T��F� �zF�Q������a������N�6
@BB������}�&&&�@�7���Y�����a2�Z�l�`���e2�-Z��]�pa���t'O�l�����v�R0pp�����O�8a�ZA���������0::�K�.
��:�h�"&&&!!A�wq��w��M�4)//g�m��u��I�&M��ys����Sz���^���{$E*���~��1JKKG��b��X��)S���y �~�z>�)�-���"S�>��#����K/��o�����x������'B��^��e���������������_����4�^�]w1�����4i���z���j��}BB�R�*c��'�LLL�_<xp��!C������5z�U�r�-����I��G�����Ko���|����
�2����}�����z���V��m��
�z������'N�^|����'�|2::�7�����E�I�[n�%p�0g�E������FE�����;,,@�b{�1cFdd�o���+,,��������cbb�V���w�����g��+�b�(�����/_.��H�4g���M����
������J}�������W^y��N=����v��5kV����l�3F|^�?h�h4�8k2~���n���f�y#���sC�'��^XX�{��;w�R��e�l����o�luk��1���3�L&�);;{��i!�vw��999�����B�������>��gw���+wa�og2�~���PJ��F��|���j�:999��|����
��D����(��a���|�n���������!������������~�y<�P����K����|��|���1#�J�������$I*,,�����~
��-]��{���GGGgee)���$���C��%$$�����O����iii�;u�T^���DEE����/�w�y��]�����z+���������G������_���!�p�n�n���z�


���������G�1:--����g���B�WY��g�ZC\�����/?[�>F=~��a���[����+VX,�'N�O�v��'�x"�Q��o���YYY���`0�������7���J�
��x�[�n_.))��=�z�9sf`�������}{(%�j�*>>���vaJmk���3�1��V���x��t:7n��I���_�����#''����S,���{�9���������`��U��<`�����+'N�0�L]�t	%���������W��B�#.]�T���:u*333&&�`0���oC��-[������/	 IDAT�dgg����������:u�`0X�����;�O�|���B��9r��J�����G�!��;��C�����dR6p?~��w���=
CBBB��.������k�����Ysq����;v��%K�Z��d��o_�~�B_��J����k��t4�L!�
����#�v{�����G���iSqq��n�����?�R&�U~��g5j4z������~�-::�����\,??o��[n��_z�}���e2��z���w�U�m�6&&F��:u���{wy2%**�h4�Xf�v��4i������gee�y�oc��y>���7/66�b�����}��
���8t��j�^fff\\_�
���Q���{�D�����C���PX����������SRR�M��������oB�ww8QQQ:���QO���2�p��i��t��7���!�z���1f4�%{���s�E�������3g�v�|�����f����;��=t�P�	7m���h<��S!��p�B�Z����k�$J�w���s��v�@�&M�����<�N�����W�`��JKK��n�Z��=J��V���P'L�p���������CyH�����s�������n�~G���wI������.^��q��6�
���~�_�����������YYYYYY�$y��.]��T�j;�U*UZ�������k����eee��q���T�T_|�EP%gfffee��������-[����������t8�s�������L�"��={�����NJy<����?n%�Z��op�\M�4���S�<����>`�V�>��c{��	����\>����+Wv>m���U����
Mx������6�L|��5k������oo�U�j����*��s'�`[������@���^�oX�hQ*������W���Sm�+--�[�8s���C�.����B����7��W:t(�4�'3�������7]�g�6��x<�U�d�>�u�����t�U���/W�����������v[�����3�&M�wD����(Z,���a����=l��7o����;&o�;v�J��G=��l�����������C��W�U����I�&����oz�����$)'''<<|��	�����?����a�Q��|���x������n�����x<������#�������{ff��bA���nw�6m���]����#""��;��M&����C,s���QQQ|��>}�SO=`��!��)I�c�=�3���;�)S���d��x���o����={�/v��u��1�Nc�W,�7�5J�?��S���B���2d����N�0��|A����J�y���_��l,�w�+V��Z�M�4���jYlNNN�I�'NDDD���v�Z����L�FlG��������eee����(�r�x���`����������*g�)((�xot�n��M��m������S�6��)\�|yII	�K���k�%&&�E��i� �{�nA����lh�����N���-��d9�f�
80��]�!c�Z�v��q��^�$IEEE�G��<y2���k��}����
���y%�(�e����p�V�v��*������i��Y���[�n<�Z�n�a�����_AAA�f��������~��t&''�v�m|mg������/Y�$)))**J��ex��7�{�����IP���/�h6����[�h�;����M�6�;������#G������������Q�n�����E����w����6m�T����o�) ��;��c��g��e0�v;�V���l}�.y�I�����5}��:�zZ�6�7�G�o�1������d2EDD�����Z,y���{;�G��S�^r����=�<�HP������/>`�����o�������f�Z���m�[�###��R����J�$edd�t:�\V-�f����K�.����I�$IRjjj�F�Z9r$���b�����������������:pg��f���p8�>�%K�(�GFF9r��iV� ��;�!C�����^2��,���������s�����Z�~�zyNjjj��K��=k6���4��V���a��l6[��-�:���D..Y������o���������������||����	v[�%��,Y���O����>��_?Q�Z��Q��)�x{{��'�&�����R�b�~rr� <�O����A}��Y�N��SA-;vL��[���S�^����e7n��g���v�'�o�����T*yQ>--�O�������������d(�5j���.\x�EFF����_zA��n��d2���L�>=))I�V?~�������pV�^��h�J
�s��n����h4111�fc��a*��n���G���V�5�����sU�v��;����WPP`6�m6���S��.�dv���_z<������eK�H�v��~�i�%C�#""���s��~�����5A#��5j�Z�<x������F������o�EEEu��%�%|9��<�
:4++��z�n�)((HJJ
�����|�M�.���W���2�`G=yH��m~�Y�Vy�1bD���>xqU�����z�&��N�fff�L�����3F�Vk4�
6����l�F���JU/������q�|Q1�Q��o��y/T�Q���\A��������Y�<�����o;T�*���?33�o����vV��������U�8-��=������%'�(p��s����g|�����w��CDD��dR0�OXX���>Z��`��J%�	����/���=�%������k��wF�1�[#�^q���c���E�P�|����_|��5������-��0
��q�\�����k�Z��T�by~��g��6:>&�"/�jo|0�q$o!+V�����a�Xx6�`k;0g��`�t:ccc�Vk��e��H^~0`�|Z����Y��7�:��3f�c��O�>��������0�
l��5���W_�Z�r���������rU'iiij�Z>_�3���C���Y���| ROMM
�3�
�u�������f�*�eee�up����������G'''W���X,���F��iv�/_n6�{���PZZ�z>�=���u����S�-Z���]�-@�.=V�C���nE10l���q���s���r��$i���rK�C�.7-��O[����Q/�PU�����$I��v[JJ
�p������"<<�f�uQ�
B���;v���fCZ�`�V�!�^���6L�Y��rd��1��P����p8x�p8^|���m������gG��(�
~������s��Q�h4�t�`�����Z��W_}�;n��.]��?>//�����n����u��r�{���B9�WC��l��g1�D��Z������3
T�ti�����������|�	�����������Z��$�suK@8�X�����~D��e�����Rh�\��=�M�6)))K�.�������������������Ro���w��pv��eu�A1~���C��;�m6���Ag����I����l�2���3g����=��A>��j�������u���n��7T]�v�3���y��&L������,��v�}��o'N�(�7����K�]A�o'�|�MV���Z�������w�)�j`N�>}�H�J��Z��|�o���<�����[B��s��
�y����
��%Kz��U�$��V����|jy���O?���5k�Q�����[���5�j�;v��E��/���{�nl>e^�$���w�����o����'N���K~�_>�R�Y�������9�v��)? )�����0���A�=�O6�G�`�c2DN��3)�5�����O>y������].W���u:�������v�Z-�;�����N�>��I��\~����d��X�V�+V�E����k�:��/;?��c|��n���O>	`��I��{��l��oo��m������{�aUON�y��3xu�(p�J���{�}����w��~�����������y�/o
,��r�!(�7n|��i~�B��������teee�	
���^��
�J�x��n����)_������GDD�3a<�L��;��������p��<pW����^~�e���O?�T�>�w��19pW���N��f�
8��r��Z�v�����V(��N�>-�!�3D�|��|���B�|��K��a���h?~��q��5O�b����{GGG�7�����-��B�9o�<V���o��[�n��������<���58-�w�y���r8|�LRR�p��������%�}���Z�b�m��Q��j�Z^������d�xN6�Zb�4����9����u:�(�!����7�tSRR�����v)~����H>_����1"''�������}���������������9�B<����l�L�������1&�����,���
��-�g������[j�z���.����?W$�*��z���u���yw���p8Aj�j
��=;;{��uu8M�L�Q:|�p����C=����|`�����������X��%����y����"p90p1b��h��3

����������!0�q�v�L�0�.���s��A�l����>�-{C��!0P��aBlo'O��_�^�z��q��dNN��hl��m(XI��];z�h�5_�6gQ y;)cl����zK���C9j/IRII	oo����:u��V
��F���C�������*������46�����/9p���C�%����Gbb�^��HR��+W�}A7n�k&III����������-���������bU9�t:]����$���S������%������on���'[�n����tX�������"--���F�Q~\��1���<1�$I��\e�~P�?�X~q���������\7x�������h6�����w�������E�y����{���Z��j5�L!>���J�o9�zjw�n�x�Q^���~�";����r�J9��R���w~3c6�+**)y��	|��n�j����'W����U�5��t/���������+���Y�V���������B�4��3&%%e��	<��(r��EZ��E����L&?����X�Y5_t<��]��r�����/�����7/0'�"��;v���W���E��h����<�H���u�VE�m`9s��5�g�{��������<po��]�U1z�����!�\����F�QN?%���B|�20%(��m��
n���];�-�����B8|5<U��OfU�@���n��u���o
������/�l���k�9���{���m���u��p�pj���|�]���b���G����[,�������n����+g
qCK������7gee����)��>|x������O7��#��������cGxxx��]C���"_�V�
6w�%�l*�R�����xP�1�~�zE�;�;C����|J=�&%%%0gQEEE��%�y6��{�����T��l6�io|�'???##c��aaa}��Ud��/�;vL�L}���g�����������x��'�~�(���������4��l�K�z�w�u�(�6�m���|9Q�L}���_�2��������Z2s_����I0(y������Q�`���F�)���S�N<m��%;�����sEJ��g��������c�z}��j#&&�'�P�*������:���?��W��z�*�4i��8��g�U�����l
.h�
�����'�R!�f(~]p�=�\xx���0c���6�QrXXX��Rx����d���7����C�6-���IIIQj-�Ue{�=������]��I�����KHH��t����n���sg�3�]��7��<8--m���&�IN���������M���UAHIIY�p!�0��'�xb��|&F���z���������/��9s���<FQ
���?��n�:9q�"


��m�V�>�`{�3R���S�*���7�x���_��G,�������s�\r�j�l��);;[��c� |������������+R�$I|�������(���~:r�HDD���`�V��s*^��R�������_�$�:jo����N������z����p�G�2$::�����
�I���xJKK��oe����F9���Enn���'IRYY���JKK
���������_:w�,?.@)g��-**j�������[,���DeKv�����������V�*!�P�N!�B�;���B!�
�	!�B!�B!�B�;!�B!�wB!�B��B!�P�N!�B���B!�B�;!�B!�B!�B(p'�B!�wB!�B��B!�
�	!�B���B!�B�;!�B!�wB!�B(p'�ru-]�T��Q���z���C�����DEE	�����W�QAA���
�����:�+B���BH����c��=v���n�}����3f��e��t���������w��%�����^�z}��7��j����"��z��g�!��a������O=����k=z��g�]�f��N�8���o4��w������������i��-Z�l�y��m���_�~��������T��C��9s&55�W�^z�>==}��)k����gO��=u:]����?>��s+V����_[�n}�����~������5����d�X��9|������������]�fee-^������>��������d��U�V�^����������������t���/N!WD3���@�]�������(�l���E�C�YH�0��.�a��+
TB5���{��EG5���di�C"
� �f����1*8A�74��s?�{��4B����[~(��S]�w5��:U����vrr������Z�j�������g��y�����L�^����k����*���?������
y#���������J�����d����=���G����������,v]RRTVV�t����7���455�_uww�����={vjj���K���?u��s�����

*//_�dI^^^@@@{{� }��HDt��Q���c������16{�l77���~������%66�����cYYY�[=00000�7��������k������!!!����������{���\�b��^x�������1VTTDDW�^�q�F��&����������#����R"Z�zuCCCCC������cy/�������������Z����A|<	�.���uvv�T*;;;"�?������j��4m�4�JED�����c0�����������h4��7���(�J�R�����9����7�
����IDz����R)�����'� 477k4���`�J����V����omm���*�
�
w���d2��T*�H��p�1�Fc�qoxD$��&L���o�t:�D"��	,��w�����^|�E��$��
�R�lkk;u����~z��������s���z@���b0�H��`����+A�u�_�3g�������"[[��'O�X������oo����G�9;;�����lll�Zmo{d�Y[[�F�����h4.$����)S����~[jfffLLLmm�����W1�0��G��T���{�L&�N���e������������������1����������d2yxx|���������
����n��E/����1c,��w�^�D����n��Y�fy{{�6/�J�J���/_>l������������S��+V���������������Q�F��
U;����b(����R???�������1c���������*ww���??���J"��\�j��|�����z��k��H&�yxx�������o�a���2��������d2)
???>7�\cc�w�}������J�b�={7o����T��^^^����;mmmD���6|�p"�y��V��qF����`�*|�(�~0U�;�p@�(��;
w@�(�P�
w���P��p����;���=.IDATp�(��;
w@�(��Y:t�����[�w��G}�[�1��_�����?������Hzz�3��\����d2���;v�����)**z��;<����3f�X������m������uJJJ/^|��������>**j��9� ���]YY9t��E�:t���n��}���>6HLL����s��h<z����� ����H����r5..�����m�z��k��:W����o����%''��3'))�����m����\��G#���KLLlnn��������`AAX�zuuu5�]P���Xnn.��������M}}�����_~��9p.�����uynn��#�=���7����5��V��ZZZ�z��={������bcc_}�������=Wn��!**j��1W�\	

��{��,W;::x��cL��N�<Y��������|�����������h���MZZZhh��[�\\\z����"((��](�J�R�ch��3f��[�����;�o����G���Y���/???###55��w��j��?�|rr2�U{{����[�n�����o��R�ZZZ������M&See%cl��9s��!��;wVUU|���{��4h������Z��%�J7o�|��9"z���6o�<|��������/R����m��M�����i������u��e


����B�P�TK�,	�����{iii������;v���enn��/��������f�E����w����Y�N�>]WW���v��9b�"��t.\x���%�^�OKK�������|������m�fmm������&�HA�����a��;�O�����geeYD����<�G����]�lY}}���+
��dZ�l��I�
�;����7����GFF����'Ndff���g����&���{��������.11q���D��j���+"*((������^�~�	xJJ�N��������J�b�^�p��O?�0a��'v������u��������h�D"�����y�VTT$%%�<\�f���� ����A��������y�1�t�����N=z4w�\+++�J���<t�P"����������1c�@�:������dccc2�jjj�z����G�)BJJ��G��A��������w�moo��t;v�9rdKKKJJ
��}��7�LMMU�T999���2����}����L��e�6��e���gEE��
�r������SRR"��=<<�o�.�JO�>�P(.^���s�Qbb��~��s�g���������lll"""f��AD���c�^sDDDDDD����[[[===�h���			���DTVV���??������??h� WW������"��ic,%%����������qqq����
���;����S�h������2d�R�LHHpuu%��g�>|��k�������z�QUU��d��5��][[���,�J�M�!�����c��m#���������w�}����G�q�F����~��Gm���<�vvv���g�����}}����L&����6mm���1����ZYY���W^y�1-~�D��eggGD���bl������c�����Y�`��	8����{BB�\.�"�~~~Z������-Z�h�""
����������k4++���b������\�j�>>><z��O'�?��O�DD����/&���`�����{���s5##c��*)�9igggkk��?�Q�g�����R�F�����������W������+;;;��.F����1v��E�K������*�J.�'$$���QSSSPP�7.^������233c���<��t��&&&��xF8��R���+�5����v�������$�XKK����c����5bXX�T*���AAA*�������D�}�v�XFFc��������<c���|9>>^\&�	&�e>�}����7n��#Gc����Xg�=|�p��111G���b}����(����*+��_����Z��!77�1c��Q�h4���mmm��
������d����QTT��
6���1H��]\�6m�y$���k���T"��������
6���������=((�w{���BBB�63g��4i��h�S>����,"���������Ga���I�:o1�7������{�u����[D���?��&�����H��[��Z�V(|������&66�"���9�����/����\?�%K�Xd&��')�����^�x�_�����km]��:|�p��iiiDTRR"&ann.c,&&����w>c
�B�V�9�G�h���|�����(==�1��� Fc��yD���w��uww?y���	�}�6{��W����2Oib�{do�o��;��m�����N����H�R"
�?FGGh�Z�Wv���|��7��4Ddmm=i�$^�XYY�����2~�^}}�F��U �i�w������`������Y�v-������|GNNN�������>��y�)___����~(�E�q����h�a���|�L��ZRRBD�����
S*�D�R����
�����8����m~3_LL���w�����
�\.���[�j�y$����($$D���p��][[��������������������H$D�'���@D�������L�8������P�V�c3�[H�G����~����+���3f=z�g��;���;���b���>'�*�a�F�sU������5���k�U���bWWW��|_b�O�~�����*�*�#r:C�N��������h4��^�n����333_z�%"rqq�gzYY�^��:u*�����X__����HD<��������w��Uqc+++ggg�JED|b���urr����������SSS7n�8{�l�������i���L�_s���i���=�7N,������dv��B�o�kA"R��*����K�g�_���ND���|3�L�������[�^5���F�Q,���j'"A ��d�R��D�^��7�S���/F�������/�������%�H
� ����;|��*�;e��=���Q.��?�7��'��Y��g�[ZZ<==�J��}�BCC� �r��u������vvv��8_noo�H$���!���{���b;r�|���|V�9�A���;��{��#A&U�$�=��(��S%�9��1x��OO���������G�	��P(y�n^~�oV������}DDDAA�+������;��T��)������QQQ�����[}}}ss���� ���oYY��'�\�����$��s�������yl��7������������,����[eb��EFS�D[�MOP��N�������8�V�mjj�����m�������3�{����������G������quuutt���Z�p!����>>>���=�������]sww��"�M�~{,7���������\~s����������~�FF�)F��$���.\����������QQQ!!!}<S��>8f��LRc������,[�j���<u�?@�
������gyg���f���&������%�-[���E?��/���CGGGxx�����8�SRR


���������A��h�~q�6<�_}>� ..�W*���C�5j�������N�����'H���������k��5k�z��q����Y�g����{��)/��bAA��E�����y������OMM���IHH�����={�����>[��.]�$�Jy���������������=i�a���l�F����[���Q�F}��WEEE���|����U�Veff�t���t>���me��^z)===>>^�V�������<�b����z�����Z>��w��$���
ggg�k��]�~��JJJ.^��G����v�������i�����l���4x�~+���,V���l��e��Mg��!������s�x��q����������%%%m��-//o���g������4i����yw������v��vvv			/^�z�jAAAWW�(�X���khh��z���k��)��>��j?�?�}(����M����D��w�����/����{�="2dH��%%%m������������|���6���a�����r�|��={��=~���Y�����:�Z={��������C�m�����Sk�����^�zu������������?r����!�����T<[<x�T*��������NNN
�B�P899?~\��������%���0���KOO�5=�����f� \�z����|������NNND�����h42�~���d���H�������\�R�Wii)o'<<<<<�|r��>�`�D�"�����������M�6���Y��="rpp�������1V]]���#�~�zI���u:���`gg����_.������&��h��A�O����y�=����5p�;00���\����H���5=��|�����g�655�\upp �)S���6[ZZ
D��8&>���n��):�������2o3,,l�F�_R����?t�1����T*y��L&��O~Y�������g~��s��'�BX�n_/^A�|���h���[�~=cl��Q����|�����S���'�d2����'O�<y���O �t���8��\�tI|���������8��n���6�2;;������5o���I|uuu��Emmm:����K}GR����dO���uuu����C������;mN�������/_�|����7���Gs�|����-r�g�Z��w~3���cv�p���o��F����<�9����<�}G_��r{���~Z��K._��P�|��g+W�,//7���<W����_����������;t�P��������'c���R�tqq����_@�vuu!zOA"�����d����;��Scc#��������VgggT�O��F�Q�V#z�,����� �Jq��p���(��;
w@�(�P�
w@�����Y��rF���IEND�B`�
disk-queue-length.pngimage/png; name=disk-queue-length.pngDownload
�PNG


IHDR��!J�z	pHYs.#.#x�?vtIME�6�u�( IDATx���w|�����l/���b�����()���,W/EE�	*(�(z��(�"F@�T�H�CHB*���l���q���l�������N�3�3��9�9�sN��$w@����w���� p���; p@���;w@�~�s�B@���1����2������\oll,cl�������D�F#i��J]���'N���700��dYF����
E���]����P���w�m�������[����[�f�����?.Z�h�����q�m6���W�Z���`���~�m��O=���M�|������?���|���\."��y�SO=��m��z������r�����E����gee�_�~����/_�}f��5qqq�[�7n����Ac��������h�b��q"�]�`�����V]�F��)�����Oo��M��]?����k�v{|S���BEQ�\��yw���`�����-[�<��S��7{�����_��4m�TL��������������o�����K�,)��F�XW�^�,X�#n[�v$�p�X�5�(  �s�b�
"���[������F��9������{�(((�F��T�z�j�I�ott4����������Dd0j���R��������%88��j����j�Z�h��g����-[�����f��5k�$���`��r��s��q�ZMDAAAD��aCq������/>e�����5j�������Ih���o{��S,�XW@@��B"Z�v�u���'�$�E�q�E�<y�U����[Q�������~����0���s��b9[�n+k�[���7))�`0�F�1���=���]�vD��#���E�+��w�
eee�y�������.]���;������6##��0���p�E}v��u���233�����'"I�����o�~���o�������322233�����`��x��Y����uk"9r��b�x����#��������KD#F��X,���_~�%�i���v_���.B�����������E�@��{vv�x��O?�����/}�����w����}S|�?j���/fee-]�T����];77�����'��l6���o���!!!D4u�T�'eY����333/\���h��K�DD			YYY�������=���p�c�=������'�V��b����tQ�D����_ p�D�����z�J6o��s>b�"�>}�xk���"�.���6j�("�6m��]q�9?w��������;v�(j����"##�f����[IIIf�Y�����h4111v�]�k�Zcbb�j���G�s�&"���/�}��M�!C����}o���QXX��������������4��M�6����
�HD�&M��{��"j�����}����;l�0q/!�^��k�{��w�-�����'��jk������C���B���S�6��3���;�{�����Dd���H�������>[�`�+���R�Dev�%l�����@4��R�.]:f���hZCD����[���I���R�cG�s�����B�^/���Z����'&&��q�\�,'$$x<"R�T�,��n���eff�����BCC}�������(N�:EDZ�v���b��d""_��&����111�6m�,����G�=y�d��mo0�(����o��V4m���1�����yyy�3�
�}^T��vP�&M|o�;V<��G}���T����p���������

�Y���T���A������Q�|����u��l���g�y�_��$IQQQ�����(''�A�999u��	���"2�Z��������}v�����^x����nHH�h�]\�^�>���MI���6m�/g"�<**J������%"���W�,GDDl�������n�����J4%w2�!""��7��K|�M@�P��^�:???<<|�����S�TG�m���x7((�[�n.��}������+������_�^OQ|||NN���#�z�-��c��b<�������K�.egg�N�"�.>{���7o��t:�O�U��<��SC��j����)�p���~�\|���:5��1��M����z��$��1c��A��G��$��~(����3p'�y��5l�P����?���~�i"Z�d��%K|���h"�P�����WU���K��?n4G�)�v�����!"T�Z�V�����OMM=y��o�D����V�}+���r8�'����WE_�����m��u�^��h��-�����%''��,"���T!"����"""������$I��k�Xl6�Mw�4��t���_�uo~��K�}M��������c�6%@�P]����|���w������9���w������+W�\*r����'��������j���;�5kvm���5kFDD�l�?����,�O<!r��={6***((�b���r�����/�j�����5k���$:�������w���������^"������O�>�~��O?�����&���;D������;WL����v�^}�U"�H�W&���'�&�Dj4srrD�Q"��}{����k���W��V��N�*�i�V*��EQ���GD����}�3f��1>%i�p{B�\��$%%]UA��������,Z�H���w��7--�������W�9�L�R<��U���y����
����x���u����"��G}T��;�L�9s�\�uE9}�t�o$�rdd$]��2q�������)��Wm�����,�yzz�U��"t[h�X|�|�J��C]7a�h��p�B����4h�U����D�����v����A������Q||<�\$�,�C��)�*�����s������k������C�6j���^;vl\\����>��s�����_|����]�vm��m��%���N�����9���X?>�G�������n��7n���������Q��o�4h�]w����:m��K�.
2�}��}��IKK-^F����O����k��Q�T#G��]���_�1��A��'O~����q��/���G���D4i�����Z�J,g��i�s��?~��+V�8v��H��E�GFF�;wn��Y���N�s��iiiij�:44�������9�����[oi�Z��0t���-[�����K��-�l�Z�d��'N|��������O�>?����Y����;~��g�yf�����I�&5i��x���Y�ft����~����X����Sn�������������R�E]���V�X����O�6�^�zDd�Z�4i��z����T�z��E�-Z���'�������Sne3y��C��n�h���]�ti����}�n���r�q���Z�����A�o�k_��7�|�b��m��=���-[�=ztJJJ�
���v��\h�)����a���;;t�����L�:UD��|�����/_>`��]�vM�2��j����A�={�T����M��xC"se��=O�:����Qdd��A�Dn��94��\����3DT�^�
�k?�|VVV�
n���n�;---33S��DDDDEE�(@�P= �;w@����w���� p�K��/����f���h4�Lb��bq����?����PI�}@Y0�yy����������<��V�=q�DPP������N�S|,<<|��(q�2(W���#G�=s������'6j����3&��b��L���g{<"��t(n�[������=z� ��K�&''�l6��$��<Ep��z��������S����eY�h4iii������<r����P%66600�
P6�[����m��i���N�[�hQpp�$I�$>|�y��������C�����Q��,p'"EQbbb��9��g��Z�n���c�=�9��O�0���_~�%��l��U�s�+>e��ic��MLL����z5�=���-�M���*(((�����&	p{�W�^�,��m�cO>�����}whh(�\��/�3f������!>���������������]��.T�����}��}����S�����V�����p8�=*�r���].��i�L&��Y��;�w���m��`i������P�!�<y��2�f4�l��a���~�-  `��	={�0�LG����_6l�PPP0i����xY�o�������`�]�mT`�[��S�(--M�$"2����l6"R�F�Uy;�*0�U���L&t6���; p@���;w@���w���� p����; p���;w@���w@���� p����; p�Q�6����F��d�M��gff^;J��5��q��Mccc5jt�w�����iii������m����9sP��&p?r�����c3g�7n\nnn�F�


�h��Q��-?~���3�h��q���(n��)WS��8`��^x�G�D�t����d���t:�o���i���GQ�F�����_���'�@��A�j������?�������>}:==]�e�F������:i�$��.]���5kP�eS�S�?��_�������y���={���N����R��*'���w�[)�R�������CPz�����F��`HLL���O���^1�1v������x|����v��{�$��s���-���5�*����s>��U�
��R1���~he�9��4��q���i������i2��?^����t�2eY�M����gu�dX��MuP��H�w���O>�x�b��*�������(z��l6�^�z��)D�m�6"���w���j�Z��j�N��.(��'���D������t��:#)�0�1fs�^v��
�eP�$��<-WS�#F,^��I�&'N�Z������h�����/_>s������S�j�Z_�:�A41UI���}P���7j�, H.3������eP��+p����:u��y�F��|��7����h��e����:u*���������q�@���&"�6�F`�]�Mg�v��G�KL>������Q���]���7n���6�M�����b�����k�@�H�9-"o�+��-�,��{�<��$�z���?fi������67&�)22RtH->�1v��P!��(�C��N�!�$��
nMD*I���
(C��W�U/���g�"""���K8�I�W��8���Q���q��D�.O��-G�|�'��wz
�(� 9%�4J�{uu$m��������w�4�o��j�sxl%��U��v���dI�7iJ�{u���7�sN%������%��-z
	�_�n��q�x����(���-�-R�|�wJ�{�duX
]�D��KLZ~`���]�lA����q.Ab)�X�D������p/�5���Q����+�D&�����NZ���5�]�;�����:�����J;o���&m0iU��{��0�Wk���s��^c>��s��~���DD�8Jn��g$&)\�� ���F���k�����8sQ������(n"ry
_�wN���%I��%&����M���f���((�����"��Z��a�6u�������9'P����\{V^aQ}�J7�����YeP�=^��ls��{i��6�`u�����E����1S;��/����2��1F�#"��](#V/���'�=�n�NmT�������U/|��@�f����H����DD�kT��DL��}/�
r� p���!����W���GZ��=`[�����8�y�;�OX��D��T1��H�Q�!<H^��l���{�e�WG�73b�}+P:��e�w���*"���s������t��������Q�H%�U��l�x�/����P����ZI�=���7�j����h��Vg'bfm������J��F�qskU��-�O�e\�6W>
�{�q%j�QN\�&`p��?xdS��"�.c,����� T�����`����2/�m�"�L�=3����@�^m��Z%���(���>+_�1_�d"R����,Mh*��cwy�D�po��;����1��i.�c���Q�����f��k����tw���"�qF,#�B�uP�
�9����u����<�����	 ��$�z��-�j�7��W��p��Z�����(�a�p|!�*��cwz
��1�p�si����*^F,#?�H�/���s��N�~�qT��HD��Z���(=�l�1S�{��!�\Z�������4**��W���x��4s���ED&m������Rm?� 1���-���L�#�u�Hb�����[�{5���wZ��(v���3�j�%"���q6%	���u1���?���P+��"��g!��j@-k9q"�\�%���f�b�O-�sO���Ba@��q6Ab'^+��
Y��6�����[�{��z)�\'�\�T�>{��w)\�q�'&Td�x�[~�B�!���$5�����R��2D�8�C��'.3y��(L�$�RS�*��#%��-s)�\��2���_;��I%����K;�?��"`���c��(O�����ID$��V_n�����R�3w�.I%^hU��P��c#��B�H%k��YQ!=���{>���W�b}�eT�f���18w������Y�SK;{��ftHQU��!=��*����JR{P\^:�!�XS$i��g���P�������;I�����~M����:��Y�R�
'��"Pn��T������x]D���|,�w5w?�Q�b%"RJ���?��:�
+�03��\I��?E����_O!�w������I��@%^�%Y���_��J����0&����e��)�{EE;'%PV��`U�<Y�dQ��I��$���'�����*=r� p�Sy�������QT����F��To����x�W�}�O�-���O)\)j���V�/��0�*T���E4��nW��1F�
i��2�����>���,��@%I�=�#"��YI�h��e���<{�xQ�\��aU����DL��G[���U�r�HL�}~
�����~.����(�P)W��EW+�����"r�HL�y~%���
�

222222


|-KF1YYY���uA\�����]�(�Pd&��U��������a����p��s��i��illl�F��5k6{�l1�����������������S����t������V��FQ�
���Z��!"N�v���f����*Y�7i=J�O��3sRR�o�9s�����	&|����>���d�X,&�i������t:]@@�?�����I�+R�ND�#;4�q���Cb�AmF�h��p{�"��JR���J�5����F������b�B�T���s����6����������f2�$I


<xpu)����fm0��el���uC����
J8�I|��8�����K5�A��@}x��H�T]Z��-���w\���D���n�r5����9~����E��N�$I�,����?�f�%&&���w��=yyy~^����<��^�aD�s]"R���'�qx
q�@������K��VI�J]��wtz��
�x�����}�^����9r��w���1����� IDAT\.��c�Z�l��_�:t��1==���C�J�
j�ND&mP�w��2�)9�t"�c���x�D��7j+uu���1�9W$&���3��TL�~���\��O�>��-#�������K���#����~��K/}���������v�E�wA�e���p88���Vb����*����������Zr��}7�X�S���y���|�]���wd[�����xw��N����}S��Lb������O�!J��c�Y�j�����r�����'$$�):�n��"j'���_Dt��q�-�����������W��.����=E�����3��b�;�Rqz����uvn�_��M��U�M��
���J�l8�����^���[����U�V�]��W�^��"��������GD��h4�Q�V������t�[R
�V�0i����z}.�����ncD\Q������EvPZn[a�3W-k8q����j*����a�{��aF�b������jw��(-I�����Z��C����-����/^�p����/m��i���}������5kFD�>����Z��D�U�*C�.�ITG�(���.���q@)q���l�^Wv��YR=�q���+.�36����*o:�����~�m��-b�����cG�V��.]��O���������9s��k��oKa��Y���WF��`Cd����/ndL�sdgX���6������%Zu*�+K��Yk���O�����,YR�=�?�����g���I��G�^51$$���v�z��	��FDF��d2�s)�e��9��W|����_�~�G�&��u�vz9w(-��(:b�jX����������eU���'�n��
4
%T��2j�:����&�IL�����ps� CD�/�^h�f5:q��L^��t�+8��T|#|����*�j��VtW��^�1�c��j���g���Rl����e�}�&�J%%�4#F�[�����)L'"��^v�#��e��"Vg�/3n�e���(��z����
%�U<����Y���1bS���	JL�r�x���#&��+�[;��E5� %���1�*����	jYCD�s��AT�C�4��9�XK�S�Z
��S������<^w�f��v� _���?=�#1@����j�u�fmp�o�^mz���n���
��+}�������g���D��U����f5:���]�^F������>����	*YCDZ�^����m��{)�����j�����wc� p�j�-��Q%�{����G�6�,��/��n�4�?���m5�&���q��=Ml�A8����L��E��a#��-(�N���g��}����:,y��0�V�������!������O�;{)�����T<d�
[���T�7E/UN��}����a/�_Q�"�s���n���4�������;� ��@�^�v�K�X���c�_m�[���m��~�W�Q\����uu�k7�qT��uzp�0&L��ph.v����q��M��:M7kC8��1����c����=W�bq�������u�.�X���c_���G�����Jn��'��)}~���D$1y��5?��{���{Ft	u{]�c����j�������q�������G��H�=[������5�i�F�n`���o�O���W9��Y��^?������;c���1�*����lU�q������~"��0i�foy���A�(N�6P�?�1�6x@�W���������{U���]{+���X��1���Ow���(�;|��%1���B�g�h��IDDjY����/�����W�+�nEW}�������=��9S�=��>�C*��VPC���CT�Z]D^�BW������W.��a�����8��7hE���FT�l�!��&"NJ����j�^�>Of2��j��I���'����l�Z���m`���]������������RsOK�LDZ���_����_��Z������@�^���Ju�JR�*�[�e��o=���x�����	�/�
�7����H""�6�������hCD����_�e�.@�^YdII\������[�1���l��7��u��\y8F��|O���a���|�'�P���h�;�e�+���-*Y���-��^��Ac�\a�
��o$<�c��L���=�\'���[�����*\�����
�3�`� p�)9�%&��O������Hq/�U�<c�?q��=�����Y�������|������1/�������{%c��Yb���&"�[����g~�#y#�T��!��~���[������$&�	'bI��'3�a� p����� eI�'[���3�U���-/[
�q����]�qW��V��L0���
]Vq�1e��+��{E�-���&���Q�������8X��D�;��_
�z�����n�p/#�(�7za� p�H�IW��0Q��G;����� �����j���V�+��&���n�+��=~��#�~b�"��@�^y�;�<�������]S�@tjY;6�7�W���|�e��V��]*z���>Z��7a' p�NO��SHD����]hY�k�!��q������a@i�����3����N
����j�����}����_��*H��r p/?�3��������W�Fu��.�p>����$ofL"�jY[]�9��=q���*n""����w!:� p/?FL�qWo�������������s�1�`��u���Q�w�H3���t�_]�Y�Tc�_��fg�Q��a���q�J��?!}}��n�����u�N��V�_y�S��.�mo������s��V��_�>/�X��3&���c��7�`�{��z��7V3�~�9�#�l���)[q���tj��Oh��W�mgf]��ns���D��5+}����O��]�#��f���l��P%����` ]|��~?�����/����S�������etZ�yH9H����D���*I�����A�j��8�d���7�l�N���V�����c���[���`O�����C�i����N�v�5p?�8Iz��J��
�����E���*F�bKO84;�-�����id���	+��\y(��H�=#��kU��p�YQ��$�H��S=��+���@��^�K�;u����Z8��g��{���l����i�b�81,. p���;�\iU�{���[��{��K��%"b2�N|�f�IDDjY����/��p��?��O���������a�X�+���Q8e�p�
����Y�S��!�n��&I���b���D�_}��z�oV��oD�K;;=v�_��k��j���| ��-��k���}(����+m���S���@LCD�]T�#�c�M������]DDrP�eZ�-�%�BW���p��-$�@$�;jY�?.n�k�D���u";�|�7�1��q�Ox�t�������P��.���
����������%�_�����+���|d�A ���*^"R�����s���v�9�����n�w���*���_W��k������O��jL��^E��^�?C��%��dI�`�$�i	���.H���f�v���JL��eI��f�q��)��M��s�V���*���(n����;��J�K��R�"�&"b*:7�����w	1D��}����pT��Kyg'�y���o��eI%n�k����GD���{?��<
���s��i��illl�F��5k6{�l1=--m���bz��M?��c�-�*���=d?DL&"�t$�x(���I"R��Y�~���V��ua36>�#����3{�K��v�����@
WIz}7����u�s�;S������}A��V�=+�0���1��v������C����t���=�U�R�����W#m7��0���+M�qT���[^�������"������Q������'���t%&N�f)LGqU��=))i��1�$��9��7�������E���Q��-[6~��3f����c�������gWF!
��U�������8�k�d,y�O��H
(zifQ:q&g�)���>������{<}����q.�g����M�=���I��:�LE;S!������ji�<1����nU���N�>���W.n���A9�L]���*�t�������N���UqT���Ik�~�b���BW�xn&1�M���3x_���(���VW�`�������(�j�{������_~y��a�F�j�������l�/_��}{��MG�=l�����l�Y�f��7�sa�Z�T��<���&"�.
�[��9��|L��DdP�}��y��=�� ��aw�_�g��!�-�N]G�w���+����Ucg���&��w��6���sE���
�})e|D�����(�k2�/z+f��Z����4�������<��������*p�~���7=guXdI&"��eP���]5����3aD����0�n�����^u
������w�������uaa�$I�,gff���N�4I|�K�.D���_�e������T�0�������B�����|/�_J�C��GKfq"�I\�p<c�c�T�m���o����E��po�>����&��!���z�W��5�cg&���n�t��Y����)��O����ti\Q��"�=d���w�Lw�J���u�:���o�+>��0S��G�uS��������~~#��y�Nm|���O����Y��k���$&�c,��RU�Rc}��=r����>v��"r:������U0"]����$%�O����� �FrKo6���*����oM��R�~�������v%�U���<X���.8�sa��m��~���vu.�PJ��@}X�Z�V��~#O6i��y�o���)9�X��05*���O�-��A�B����#�~�W��E��W�.��G���b�RI��}l�����2oI�=�`��{��9�����������J/,����'O�D�Ca�Q�7�*s����:7�� b���"(�i��^A���G�������]oqG8�+����6Oe�>,��=���:��g���Of������������b����Z��f�i)L������������H���m���Un���o�U�V���g��e����%�����0���v�G�dJ�%9�0��DD�$��mg��VV�����*���
y����8���Z�K������zc`�l��%Y������6�d�q$I�y,+���1&_)Nm��u��u����U<�5��dIeq��w����71&-�;eX��Z����xo��F��rs�����k�VmPK��-��l��Q,Zv���M�^|�<y��5���K1QE$���|6��+��5h*���kTqJ�(�p]����[������o�HL=�����"1�����}�~H����D����
1��e�|�0���(���[��e����]zz�>�q��	$"�C^W����>9N��1n
���!���_�����}����S�L�����������
������]H��/U!J��J['���?)�>�$<^�#-��k�/�*����E��]��a�>�&U���c����p��v�_�$��7�����5��}���7�_jw#�_�������{��;�L�:���h�[1K.��WD���/����$������4i2b��)S��N�C����oo�_�p�n��U
�d���J�9FD��w\��������?��$q�����KYO�LR������s<_s�k���+^�tX�
~r�������=c��/E��2]�����n�z�p89W���=O:L�����y�P����HtF�FM��:H��:o�o���L�l���s���k��1j�������v�+�BAr��^�se$�W
w���[�+�������������b�\^����h���
.y�-K��������*YC�I���k��0�Z��;,����s}u�����|�������>�>�k�z~i���Q�X�(��|y������DD�w�T��/��1�f�d����D�KfW�ZR����o��� ��1hz����;��p:��^@-kV����	96�
y�I�����0����|�
nu�>�~R��g����u�5���<���1��.�����5�R��9_�W������.+��h�N�~����?!!a����z��M������

=|�0m����{����o����������W���t���EJ�Pc������J\�e��ALK�K
���i��f�C��J5���X>�y���k?���o<���C�����U�{��%��a%iu�����|�����z/�3��\q��O(�{2c�[k*�+z�p�p��Q��^�������w�.u�#�����S?
q�$YD�v��U����4�f`���)�SJ�F����b'�=Tg.������5�M�)1�sE�1kU�JJ�S��_k(jSj�~yz�F����^c�;h�^m��\�m���,�}b�>T��(\���0}��9�O���zz���/kd���3�o�Q_*��T���d�v�Ex,t�G�p��K�R����m�����MZGW��9=���>�~b���*������So�M�YR�no�X�=[!���W����?W�k�6�Qd�RU�]�;?j������5�W��2����4o���)[5*���3��g�T@��r��j��E||�c�=�(
)���C���0`������^hh���S���O�:U�fM�	����s6;������wU%���m#9��XC��r�8o���_��'�z��B�5f��h���5u���v�_�Q�E��*�@C�s��5�l_�c���?��D���3����K���vbw��f����-N�.��u�������n�������7z���F����7]qp����I������O�s������|M�����m�x�P����A����E����.��@a�Q���V����a������7i�?ztK%U�q�A��dw��}G����+����}o<���g9�����/�f]ix�����w�}a��d"l�z����*��T�v��y��hTz�.lF�e����]�KV��-�y���!���`�A����7���v��7�
�Eb�+*I��^��]�V��m���?t.p�2b��}��/t�Y�c�D���;�^�\�o�|��"P���_���4�{ey�Ky�������������h^�������N�^_E�,�C[������*��z�����=zp������.�k���Z�"�l�������o����{o���*w���zB�L�E"��n����2�Fgz�+��H���XK��s�C���
�O������������?�����Y!�EN�~:����s�n�8Uq�s
���]��f���������/m���o�!�J��W�6?�rx��]	�^�)L�����N�������^3�������8���z���Y�U<S�
9��O�O7�f]�{�~�4G�q�M�� R���4�)w9+���.�C����oV�EH������7��'�v��j�s��]��W
Ds��uw��W��������<�����}7�n�+:��s���	�}���,�4�$��y��s��0���1������SD<Pk������8q/���/K���)�J�xs��22w���{���awO��+�����]�*n&���kr�e���&�l�r��\h�iZ����x��+����>o[���-�X���?�����B�?��KgQ�w�'�����z���.���T������n��r��������cvv��M���tU����^O�)r���4���W������E�K���}��?������^��O�#�	�n�����$_Ma�<���������?��T�+�l�����Q����������_W����4�x����!��^M����g���������-��^3����R�.��F$���)f����"��C�\�R�D2�����Jxc�����v������Z���1z����M�o*�3&����k7[<	�9�D?������hQ��&��l��Q���sd�Z�{������8~U��Y����f4�#�L����=�����.>_Ta/(v;��~�;��1'#i�~/~��r�fl����T� IDAT�-�Y<=~}��,���� ��1
�4������\�_��*�\������%���|����q/�z�'�-kw}�������
q����^W!���������d2i4%�(77788�j����o8���)�(�����f��\����������E�F�\N���Un=f%F��.H�X�!"*t����a���n���y�Ac����|l(W[����A|����vY�9�����SK��S;�������*���ph�g�^uyW2��k��F���q/]� E-kj�1���C��Y�Q�������D��V�������}���o�t��a"&2��A��{���g�6�x]���`CD|��T��l�!��!1�1��sb��/��6���q��?�_G���"���HAr��H�s�I'� ��89���;��"]��U9��s�(��w����V����V#�~j�����%I&����{��+�+c���>4{���_H�E�����]?���g�F������j"�$95�L���5��>?������	C4��H���;���RG�D�m@��<CL"����(lU��%�l���p�F���>���E
B�+����45FUl.���|d�JR���q=�
�-����b����+����VP�R�+*��0�����^W�+j5�z�{���%����=bWU�p���H����-��E�I���!m�<�y�I[t�\�!n��
>UUa����7�����yw��O�
i\�+�� &�RH�����%#IO�
���Y�v/1&]�]�;����37>����WNs����/�_��}���}v�w_����t��YRq�����[N�$*�Aup0e�[k&�l-�D����^�wvT@�_���5�c7�q���?z7c�,�2�7�����Cw���o_��m}m�}O.vz
�CL����V���}q�'�J��k5������g�S���$5c����K��V+��0S��>�}r_$b����H2����)�'9O��151�x!����)xI������aa�1b���S���F�\�������{%&���_�,���Z�~����~'���.J3�
���t������6b��@b���M*I��o=��o����%zpyO,vx
Nq��}�DD���Y2�������n;������Gu�����C���e�%���?�O��������w���w�����s�W�ku��-?��S�+����\Q��o�GJ���=W���$���9��
]VYR5�q���z<}��5�m>��A r����=4���V���j�2�I]T�Me�f|=��Z����Q�����G*qe���_�155=U���nH�}���\-���bzo>���
��<�>��*�a��:����$�������5R���@��Y\���7��z���_����J����m����7�&O�8�J�9zz��%0mu�|�s����}�� ���msz
K��_%�W�����e�x��U<f]H��/��,��� b��}����e[���[��Ow�������a*:��8ND�:�����)��O)����\i'��;)b$����?=��\����}7�
i�6h�c�E���Ql��&%S�X����z�v�
�����Lv���~�����n��=>'�C��Q4c�����I��A03~U���=mRE��rj���g������?�=��iI&�^��" ETQP\DP@DE����eum�kwU������)XAHW@E�"M�$�63I��{���1w��H�I&��y|| dn;g�����������:����G%���R�k�!tv��@���-a�ipk�_O������1��dAe�u�'c��V:WO�>��qo���d�;��RRy���7j����$�5��W���k���R��-+��_~�{��3�r�s�
Um���wb��x`��>�yNp�<�e�F��I����-w~q�"�T�?������"|?'@I8��='"�����������J��[r�)�L>��H����{���}M�����������#K��V<�������&�I�L�8��g�7����Wl�?ER��0�MwgV\�����h���z|������^y��#{Nj�0��8p�\^gp������n�S����;eL*�8\XU�5m�-S���+���{�/�������1D�5�X�qzY��c��Yg_5�����b���K���Pa��.�#���m���O-�*(2�Sr�O~�IJ�E�����+�������ck������ ?��[7�J��~�+�sq���������+ZT������9m+����4�E6�3{�3����������'CI^�.!��h��R�T�ZrlfKv������O�/��4������������������R�W���6q��=j��#��X�w���q����_�Bgo�Xq������W�d����3�:�IT+"�x�Wl���/��)�_������$�[|��_��|�"�*���wG�L�_�s�X�����o����6]��OK�k����������L�Vk��xq�����|
�
0@G�L���e<� ��orx�1��j����5��sGV��E�
��,)��N�o����9UOc>���z�CN�>!,1�:�qMVdBO�����W[��T�`xS/�$[���a��(�]�y7B+��7�
$���9��~>�z���[J�Uq�)7)�gL�f��
�f�R<z~k�|-�W����g�=+`J�U09S��MB�kPV���'M`�&02����e�&4d�����og�r�������|����mA�Cbsp�}�B��`��'`��(��V<����?�ecm3���t��3^
~�4R��������H&@$�d>9u������g%����CIE����X� a+n����c�&&��+|Z�
�=;�����]��;>?�������i+j��!��sD4j���j�-e������)KJ��{��(z�� '��H����y#��]����HC�S��g7�5�i^�o��+@iQFsWty��uF���M����H���<��	.o~��^r������|��+��������t��y���KZK��C������= cd�[�/s����X�#'����kZ�_���g�_-K����\���������^��u�}>L�!�H]�2��)3W}�
�P���a������v��Q�twd�S3=?lQ������g����x��J��H�3�����3lu����,j���|b"k~*�#�d=��/�:��"����?
���$���{�Q��vc���.����^q����	c����N����������w�����|n�7M�@@@�����������B��W�[8V��~�'���F�]����w�7�	�]s�)�D�]>����6<��f.����t���i��R�:G��eV�I���9�oZ��3������o����9��o+����C����b71�W�~&���^m��9<r P�{/�%�9�c5
�W�q����r����/�qt�t�tX[���+>��[�q��UM<s������>����/�)��V���������������Hbr����,��������K�t`��k�*���NP�B?�M���"Qpo>������~��\�[������nM�{��a�t������}�\{�:�d��^0&�2���b_����V�x%���o�
0H�b��J�c\�A���?q^S���b���KCrM�u@�kJH����YP��s��o�|�=(~�ANd|���ug]��z�h^�t����l�b��\�xnxf��,4����^�n��0��5�F9�n1��	��$M
�*m��	d��1�����Qk�od�ak���r/~�HV����n�>��G�k��y��qc�a��2o��s�zGM�V���``���I�+u���E�Q.y�{�9��'�_z\��k0h�G��x
��5����n�J5	����7��z�����
�����h��5ZX�!gq��L�����:C�/��@���~��s�/Wt_��Q���l����q1���.������D��l��=y��/=��z��c�R&����l>�u�kqL>��iCoi��i��uH�17�}q�����5�q��g�_�dI�}�[������_��l�����b��;iq���~2���Q�7����t[�']m��{Q� AI��lxa�����"�l?��q��j#�������L��e�7�p5V^��y����=����nMi�=����5v�B?R����)�[�|�����J��!��,�e�]�@M
Dl��S��-M\]��{�f�����F.x��b�K~y��+
�rp��W��s����?6*�[;M�3!�����D��;j��W�z������}��_G�vTa�y��$�1�=�O�/���f����FXMp�?����-�%9XMy��k��!�A�|���Kt��W��G�[ ���/"%��X�vR;�����Q���8���������r����P�t)�Z�/����W��h$�|�Q����qL�&���'���(��R���%��*����fI����C�E���zJ,9�������|{f���?~B��$�n�V���1�dKvb�I��)��(���d��?���^�C���G7�����m~q���^�S����~�	�^7�)�)6+�O���W\�^��V�F�}��Cn����Y�L�w=�����?x|%�I��j��m��(��7m��
��O~���W�*c#����>����nmg5zwO�d����hJ?���a�g�^�SiU�,��1�����-����<��p�`�B��n]��`�"1V	/�[�_`����q{Y����_�� ��?�@�o�>S�81'�j=�r0L��F�<1�����J��
�"`\��#f(���1�u��|8.c���
v��@�n�Oc�\�DYV�����@X��t�����]!xh�C���<L��7�������H�)���}`����{{"L-o�c�O<�b��Y�I�}��E���w�/5�k��>�������y����\��������4gzX�8���@�����>����h�`�^������#!7�2��A]N�����nI�58~�w����Ud������VSN���)oyYU!�\������B1Ml�~��G���+���:G����4���wz�\����s�����T��������~t}����:|���pw��6�'!���f�4 ����5���s�]�	�%�1��qF�K����_Xv��2_�)�p(��O����+[x1u68r��4������|��oK�#%�4�H��,��@�������}K�[091&#���m&��Co�:xf=����[�)�T���� � T�x�3�g&� �l=�I��m����A!t �����=�}�k�|��1aH��Up���M�2���:$��������a*�������f��iE�5Z)�a����h���z����W��m.�������HdG�)��aktQ�����e��>�����{r4��]��XwwC�w�T�b`6�����7g��|
�2vuk���1'�\��u��@�#u&R�o��k�cE�+�mUMy[���>c����<���z��u4H�Nq��w�2+6�=i��=���I=�N�Aw�����4�SR���w��^0	`��@�aK�VZ��M%��WO�{P�������}�V'r���%.��N�K�1@f���=��-�G����2��	}&}�{�������f��l[���t{��	}j:������sV���vUd'����gLJ��:����T�,�)����@^��������QI���
��6<������WI����3��X�p���e%����m-����0�"�suS�����{j�)��,�]��'��m�ooj<|V���v�+36�:�]����e��L
�����7���{V\Bb���7�-�^�C���!���W^��.�%}���B�->��P���+x��B�������$������S�2VmD�	����+v��r��l8�E�a=.���$�G�����[�1������)C2�~Y

es�+)I�F�S|�o����/��10����$�>���lk(����PZ�-�!a�ak)`�^����`�6C�pc�&��s�q#6����U���~����jB��vBp�M�
�����_~i�j��n
-+	��q�6��^1�&A���D���=	rBzucE�������#z��j��S��~/�X����t�|�U����)�_��d���-���U�d������;c��-���r��I#���gI��v�I����",M���* 7=�������#f8z�_��'���F�-���0Ti�\V���Y���k�����nVm�M�e���z�[�aD����#H-���)����G6XL��.�������^�iun�����Q�����;~>�:X�)�����J�
\[��h]����P�EA�|,��=��r�#vK��+���������
��){g��{�AIBNn��������og���0����G>|�'c*���1.��{L���7����A�����`��H��3������E�!�QF�b�ua��o:?��xh��j_��G>4a�����s��
Jrr��Y��G�k�!]��m����N�����Zz�������
�WP�<�%���AND�-����$�:�l�o�R8iq����4������o?��fmH�`�pc���1	������R�z2�����u���7���b<���[��|���y����=&�>���l�=�[��rJ�!96����7~ZS	�}�_�������7OpE3�s�G������������4 R�����#�Zd��v�����2�cB�yN
��gEH^�����P�����:����C��n��u=����]����j!z}
s6����`I�l����V����������v;7��Ss�RbIl��W>�yN�}�u��m0l-�{h�u,���8�����(Ya������?`�n0�T_��Lq:���Z��B���k"|������#m2������7X���.��V����	q����_I��F�,�tX���'�q52ZIC����7Edx�{	�6Bh!��7|��j����W��Y�D	1i���j�v�0Y8�pT~�bU 9��Sf�Tq=[��	��C/tr�Y�����I�3it'�������ES�[�~}�������:Yiz��>�o��
b�����BG�8t������L��AX|{�'YU�vK��@�T���O��)G}?r�{A��~r��?�_����Mc_�N��F�$e�������zs�:�?�x���z[����^p_�F>1CI���p�r��M�(1WgO��W�������
�
"��%�
�����Fl����1�f��W��N����'��^���Q�e�(Z�T{�E����g�<&4�V_L����Q��hn>U�}�+@�L��u�J�5?��`��Q�����^�
���/�Z���������)IFZv�.o�����|����D�)U�;l�Q��|�b�������c`�/�^\mgVM�-��)�u�|����h��]c��_U��v� ���M��y��+
����s��M��v�q���5<a���x��r�WP��BC�U�|�M;��+�@��N�8����I�e����D�a�C����x����s�}���������6�;��oOdV���Hxb��i�pi�a���CI�DZq�+1����5��hK��F|���9�nZ��{#)��1�C������]�=��:�l������;eHDNs��(�L���\���et3����i@�\K�t��98F���ia��%�������2�����'.�M-�1h����K{Z1�/��%��u&'~��B�qB"�{�\����^����������Z����|�&)6(�2�����	�������viUA����6��O���k"��"������/ r�d����p��&��T���
mB��$!��H��
������GW���������1����O�e��AS�������P@�C�e0��}����U IDAT���ak)�<�M��B��
 ��yfB�G�\#��=fd�
?�h�LX�WQ�N��0M�?���;��Z1�e��	R�4��w
z~�g�����nz����X�z�Y���Bh��CJI���p��8fO�*9�KD��]������Y]�{t*���k���?c���Y }O���7<�q�������G��bD_�0_9�O��C��}�*�����rO; �!�$_��%����:������}ihm_s�+(~ZiMQ�5��l����T&�F��/Ul����kb���\���Z�S�!�z34(��A���O���g�������,)'t�St�4��R�+�+�gE���\���V]�)o%|���F��|��r�?�|H1m\F��Q����[�|yr��N)�����jR�Obrpv-E2�M;���R�G���/�`�Q���_kX�'LF��Q��Ck)z	�F*4f0�~�����~nJ��/Qb����{Va��F�����:����Q����=�?��QT�T���+���������4�$#l'T��opdn�4�s���=�R1a�����������x��[��g�qSB�P#%��U�po%��|��^��6�lq�RfO]��E��R�D.;��\��q���|��/n���r��3y`c+�E��t�������CI�����~��dk�����y����}��.1�����h���n��C��]������
�>���6v���}(���
`��yN��H�.�<�/(x������
�K��z�hO��Q�[N�Pt0�n��K@�V���M�}[~`p����P�|$Li��
<�a����f
�+���Rn�.a����,���W7�h����W��s��O�����U��S�!����HQ67jm���YY�}��B�Qh������SC�@�4d�i����8�76yr�+Q�=\��*�-�H�ppFx#r_5'
�MHt{���6,���a�
�4	U�������F!vM�^f�`�9pL�H�]�M��&��"��pk�zA����]@���4�.����|�����k��e�F��+-�5b��Eow_m�9��,ij�K�5$s:���eW
����\��Pj�dR��`�y�G�����z
�C�����z�MQ��������}���PZ�����|[*�B��h��N��1���]	�*�5)��h��5���u�B�M5�jd��KC�=�M'�L���fe�y�����;�&W'���[��4{.F�z������t<�+u�o�_�����"0+<d��sW9��g���p�p@���p�b�`xk�>-vJ�s_�����S%�*��~�����+7�b��dA���}�j���w1>��5=0���#;�Ip����1���f
x%
���������^��#�^n�
�?a
��h\��x�����_�&����p-�������
� 
�����w�<8@N2C�)\��]�����^��>�}o��W�?��~x��VJL\�Sz���%�e����F=����W���&�:>�n��!2�%B7���WlN��+��>�|j��/o������b�A���
�,��u7=��3��s��j%�{1�
�����69K�vk�7���������hE!���T�C0U�?�@;�3F��Yp���-z$zbJnD�q�.�~&C+��J9�s�f?v���fk�Q��6]-����o��Rc��< A��2��3?���M�^�����
�sm���|������V\s����k��K?BU�6�_9����������t��4�k���4��P��kvN/�������~�IR�Q���\{t�%;�~���\�[���T�4���)d�C�=���q��y7��3#5H-�g�y7��s���������pLlQ�u�iP�pHv��}���+��������Q����#�7v*D����e0BG�� �w�&�mF�d�v�BG�w�>�E����p-���)m��)����&�\��'����^���|��������OJ\���3{��	8n�aW�rl	���Kv�"l��@^p��A�G������U;%� 'Jr(���n����;l�=p�(��L�����n`HX$������v��eq�YR���=�{a�kwH����.���;�-�:�B�1���=�����f?r���P���3��T{�����m����;�aQ�V����i��������~��E�qgbpLB���?�����A�l]�_�u0
��4���e�s[*�r��)�����=t��|�=�&^�.G�js��l�r���/�vy��J���XI�J�[�v=�������A�=��<����;r5-c�p��f��r%���/?o�[�5G@�
�`���AW��WH5�����u�D�^�3��*�(�5~��L$_���[�4O+�h�5SS��
;5��R�~j��BNh`_��>m�-c�\x�����}����I��3
�-�������:i��H���w���!��E���z�����B/
�������Q�<�#[{��+v�W3w�g����=�1��z$_�.F��6�6����/����B���u���	�9J�����,:���:�����g5�n�^Vc�(p�������Q�Z�����A_�j����|P
0�;��vs�uWS�h��W��6�*'���KQ���������R�R��5S-9��
���>����L�k���O���@@������4
�=�������yg��=��+�`VC�������w1��a�RlMJO�j���w��Z	z/�}L;k��C�]�V+�`�^������+�����^g@��s�����;���99�QQJ�#Z1J���%@���&�Wg�7�P�\�������6��0\y��N��r�]jY����DK'1a�}����7���y8p+�"�>K����B�_�����*��3-�ZR����T�7$rr;�f���~�99��66��A#o&<��=o+��%o!)��B����O�c��p/mHM@���[�w�w����/~7��@:��F�$(�44v4�������$�3�����������g���i+�8rT�����~J�����Q'���W~<�7�������I���6���@/�^n�ti�K�#�"�*��zVW�Xfr��A�����='�Lq\�\p.������Og��������F�0~�����\s�C�`��nm�@IF���zJ*���vEN��� �N3F]�����M��{1��k&]F�~G� ��k���~�J���Hx�s?������x�%�d�]	�7����M��$���1G�6�O?����o/��n�����KO��+?)rW�4�Dd������\hN0��Gj�T�G��m�����������T����������mg������V��N�=���qM(��{�?��*�L���v[�w������^��+�(m�@�eH��+��B�d$^�J	�=�����]����F����s#)y�2R.�r����N�a;[����-w~q�"����/����;"���&�Y�}��
�� ���\08_��e����@@-D��?�]����L%�����c0Z�V��6�j��gc[�mz}����$�������Z�����p����a�y�� t��������R�L��fu%^.���v�/�u��NOQ>����{bG���0�2�����LT~����0t�H�B
�.qL2���
Z��m3�w�#�J��CR�D���r��9~����Q�����P��s�~k�i��&���??/Et���c���Dy2�,���#��S����d�c��(|*�s�N����S��~d&T|��:_�����yM�y���g"���-FQZQU`����_IB�w(+a�uGc��m���V>��L�z�A4��1}V ��P�(H(����jo�j*��j���'�J*L� ��Z�cj�(~���P��gz�D��~+��]+����J��
��{�!_�X��JR�j�N'����B�a�g����_!Y@hH��������b�~z������`&���{�]�0���j�v�W�%Tg@���c�;�:b���	"�TR�CI2�&Z���"1�Y��GC	f�w�����P��]����r�����%!'�0�S��D����+��
��kC��{9v���U�;1v�EUS�`j{Ev@N4��C/k��r������A���R�$���0�e2\�Q�\\��^���!'� ��]H����)o%cBe)�=\f%��	��0���a��a��`2x
����wb���k��w���a���J��?�)����1������j,=�~�1�1�FA�"��1�{��w��������{hg*Su���BEe���h
A-�{����d}X�9�Y��C+6.�����1�l���*�E+<z9�~4��M]`?��.�$_��� ��9�"Q���xVA+4��)	��~�m�s�6�C���v�����E�z��t�a�[v������x�T3��P]?�)p�������P�p>�����;s�����4��(x�������3��v.����T{A��?�K��;��9����'����uX���q��(��P�T�j�v,}�b�7�WF}�A�m�\�vC�T#����eI
����z��CN��{�#�����N'���'��������m����l2��a�����,�W"�"��DD0e�_���#@
�/���v<5W�&�tH-��*�
&q�S�%�=�|yhl�Q�I�]�o��{�vs'o�0���4h��q%%5�w.������1j�����6�[9�ojQb,�-�Gw/�J$����O#�����u�G5S;��S�T�i�A<� �@hn'��Hp/�.�f������R���n��������'�2��N�=..��^�4
��j��o{?c�I�P���h����_+�������o:AD
�@#��d�#ajt]�g�d�j�vL��Q�8���<)�`�E�hWd��{9 �P�1R�k��(�
%
��;�v������Y�p��{�������(�$%''��1#��v��/L���"��2�e�s3t8&�w� "��\��$�F��Q�����L�����|$]��#����,��@�7�8(�����p/n�NkV���T����I�&�L��?<t����{+++7o���?l����rE�����Aw���������A� "H|�"����-�.�j�v0j��Y3wBW��
��6F�CL��������kV�5��wcF�X����[�:t��)#F�9rdAAA������`K
����c���D��"���4*�J1(z&�.�j�v0�RS����)���p�S�-S���:��U="�*������oJ�4m�4������3�~��{����wTU
��q
YVU����9����p���+���4��gl�K,Zyp���-`��R�"��
���*�08��������Es10����4�w�.+	7�	f�^��*�����ul�Pn�n=5���K��[�`:�&�`0��'��o�VOff�79������5���u���v��bD|��V�������
7�`��mm��\^g�72�q���G�d@�o:AD2��
9>-i3����@�a5S�dw�]#`����5���w��
���\��������K `�Z�-�Z�z����!��
���H���/�0K�
{�}���}��3f��2e
�`0,6��@��d��o2��Vk�n5�J@@���&�b
��ke�� �)���j��E�%�&��;$+�Z�������^pWP�I�7��2`��j�X��� �����~�	�-��{���~6��'�^I����=<6�;5�����i(�A?��jj��O��6�i�r��|.�4��������;�n�O�4)!!a���}��O<�����������iz���a��s/1�.�q��� "N�/`�r;��/(T3���fj��,SP�5�������i��A�%������p����d�,��n��Y��N��b�X,��w���_�n��a�����������B8�9s��t�Im��y ��. ,rX#a����A�H���A�LA���n��^�.��Q����+���V?U+U�����)����T()���o;��2"~��O�, '���!�=%%��o���q���`�����o������Z�u�����<�,8
�T�� Z��	�����ZI�G4�fjG�1%��Q?����e����*����"��a
/��G����eX�HkVG�E97�$����Nu�z\\\�'���000@��������l<LSu)�h%�g�
�wn�_�g �����������C��m =E���0�0�a�GV����"#����J����g�����87���L�&�F���Z��C5S;0���������[�B�p;�Q���?���q/����kV�Yu^��)o%��1��Z�!����s6���3�i#�fjG�"6�~j��`V`
���#$:��k�>���h�������u*���ji��6���FD��8���_����P��KS�����5w�)�!�Az�`&�����h���;��j�Lp���z�JF���X���B-h����P�
aW�%:�7��z9��c��a���(7��8(�PR
���^���	w&��>:�&�E�����s�?D�w����g�N���\�`�TZy�x��%�y���j���"���Kt0��`#\��`D�BkV$��|��y��A��C
��aIok�h}����	�o������R1����xC�3�������t0��\��x������Bs��	w q�s=<G�w%�D*�n��Dm@��F(T����m�������L��$L8p���Z	\�rs��I�(��LA�39��#3���:�p"��}f�{��e�]�=a=�:A�����1f��p(k������j�v`��S!�~j�'��%��g�c#:�$�#[Fw��[��_�	��Z�"��5!'��
�BG�������
P��$������5��IT3���E���S~3h(�8�/��A����$^�j|�t�JBI����wj��r���f�B��x��!dS�.RO"�6�b`�c(*�	��
�A+���5H��1�S5g�,R���zlDDI	y�0����[�z�J��|���$�;0&�" �E�7�V~�����?��A�%�gC��C���@�^bDX��1�Z�C��c�O��>T�#������;��o�:kVR"Q7��{����R�=;�������e1f�K3B�hK/�^	?^n��>p T�/�R#:�XiD�T#7�|9=3��������5+��,�����4UF/G����l��)�f�����
��V�L�,F�'�!9f����\N��D'B�2�fE���My+��[��{�&�L�H�B���X�A�A+5p[^	�e���5��ItP�^?�vnn�,Z�%:8��2ZY�F]Z�"�^s��Q���X��I����ZKz9��a� ����, �Z��ju�T�������s�����Kt�Q��[&L�.�Y�p�
��vK����yC����#��N��I���%�	���w����BE������O�J��%<���n�u/��>�5+��~W�7X>��]��Y��]� au ��
��s'�zY+���f��q.�C������cd�Sn.�yF]�nL_��Fe���^LkV$�
4�j<�3o��Z��MFgRR��9AD�q!S���g����*Y�:�c�p�T���C�=(7��4d�2L��r����PjAh2LkV$�kw=0�����j�R$_9�:AD� ��(���NZ]3�A5S;G���^b�����y�����,�]�W���8��G���;z0�.����������p���"l� ;����J'���j�J-�)h�~j�;!��#�4��H�B$T|�o�ZkV�����\;�pwy��P�{����e5�R��=]�O �|~k��j�vB���^Z��;���F��
${����kV��{^��,��w]����y�4- IDAT��JQ�@�L
�X�}�R��NH���j|�k�>��?������;�2o��kV����vz�^����S���=���I�R	"�a���h�	��"�B��T3����z�Sk��&^H{��N7��v�i���Y�p?\s��t�1�c�l�A�Z*AD?JZ(�)����;��O�x Xr(����]?U�k��z�@�B��Q�[F=�����	�z3��kKM�}Jv�:Z����Z*AD?L�mp�
w�����|����� ����D���R\�)7���T{�@n�R��5+���J����EbP��j��PS-UC��T-� ��jSH�j~DNQ�=
�4*�AB�/{=�NDM�T3~���H��D'&�-�d�n�'�Y�p�3����d0\�����
��������z>u��b��'#��9��F�{��_C�K��a?��z���~�oPn.�����e(�~xm�F@~2$�����mr��t��]fF�7���8
j>�~4���=���AD-��&���0�{��X`:����+��;#F��ZPn.��1enKR
o���QTZ�"�B�xC0<`��

\��
�>@�Fh�j�	S
c� ����������y#��z %�s�awR�����\��Oe����2�W@/o���1�>����I�P��7���{k�Q3����G��������c"�1e�j[��,���������B����I�����(7������@`_c^^�#�A��6�Z�0$����{�E��!'�����h�����,�~;u�h(�F�$3��ex��YU�4�d�x�T{��c)��gXzQn.��I�-�-����Q�J�BG�)T����O��;���.Ia�Z�C���jl����\������
 �>Hq���@%�	�]�j����V0�������J��dD��FR;;rd�bCs$\@����0q���LF��(z�Q���!��D�����H1�Bb �����=��3�K�^��g���

�K_X�Pw!�����R+��j��4'~S:
)��v������#!��f�4ef�	���X�0wG�(z~$������D�%��y�����c�s�~��Y����	S��D�!~���
����*�|#�������% �@@`���6C�k��!j����oS�����;���+X�Y���!�Zh(~�%y7!'rB4�w�����#��+�~�dXzAs�Ip/i��������Z��B���K@�(�]���9��A�����C+��Q�B��=���eee��%''KRM_QTT�s����7'4@��F�����C����	�-��@>�_���X��R������D;#���&���9V}��p/6T;r�j'��'	��vo��"����x��A��7����������������������mps����R����&K�^�=���0���*#C��Y�����D{�1f[�kqP^�?�j$1s/�o��z�AD��_|���KJJ�N'�5)n���O>���{��={��n�5k��Z��x��0��;l
�!���Yh���P�k�9��F�R	�c���+H68_n�j�1�������A�^��Y�f����������k�8��;����k>����������o�5����UP���^S�%S�����}W��qh�UK%�vK��;tw��e�n���*S�T� ������	&�NmPTTt���x ���N;-����9��4#SF�d��~&�|c�>5�:UK%���)��s�U���~j��p/�������A%�gs*c�� ���������tt���3U�'�8�h���M�8
j��� 4��J�����R,����9��Q�^���c�IAt(��5_������U�U�eUU}>�"<g�+�B�T���������r�������
f����9_x��K�}o�:�%�)(�
�1pH�j>��('�F� �ez��.��L���qqq��m����2�5����V�����}>����B@I���
SLY�������3C��?C��H������	� ��!�wY66q�l6��>��G}��5k�w�y��d2�L�:?�Z���5I�4�%����[�$l�c��Z�CE��YY��V���A�[�>�=��L��������z�AD���������[�p��i%%%>�o���v�}��I)))�F����O�x������{,66v��1���������"+���2���H�Tl� �9�l�Y
���������MAaZ�rr���f�r:���b��w�}~���u����|������z�)]�ccc-Z��K�V���U�]La���)�S�4��A��� �HII���o�d�'%%���'��{\\\k��s�+$%�$���	� � �N*�%IJMM=��o�;+z���0pvK���D�MAA�_��{g����$��S� � � H��>�_SuO�=;!���	� � ���g�*�T�N���AA	��C+`\���a����	� � ��G�|�nv������C-MAA�p�R�9�B�xk2�4AAA�=��J��k�E��T=08�tji� � ��{�)w��;S-���� � � ����	�y���?��Tjf� � ��{T���r�@�d53AAA�=�(�I�p�G���;AAA�=
�KW���	o#K� � ��{��e�Ypk�#&5��J�LAA�p�><�6���@�L�d�f&� � H�GL>��w�cQb��	� � �QF�\�Uh����D�)��� � � �m7����S�Y@�QAA$���*
�`���Vu��PAA$����rMr��|Z%�1AAA�=�Z��tuX�8jc� � ��{��9���JD����V��DAA�p�6�����T���PAA$���	���DH\����RAA$���c��T�$[��	� � ���k��'k�r�O�Ew� � ��{"����@b��j�AA$�����V��#�-�aK�&� � H�Gz���Y�I�I��AA	�(C+���r�R(�NAA�p�:<��&�?h��)��AA	�(��������5���s!��	� � �Q�s�G�y4�tuX�3���S��d������&'� � H��)������1��~x������!�p!��
���� � � ��v�J�e�5S�"pfU_\���?�$�1�V���V'� � H���p���%<x?<��kO��B�@@p����c�"jx� � �})����RUUk�����,I�'�e��T�aX�
�`�T�fm?��]������9��CF#�A�OAAtv�~���n����������n�����H�@x�3�d�8�]��!\|K�X��	���q���O`��p���
���AA�Z�������������Z������	�!l�����I�x��O���p�������S��;�RmWT�I(:����'�AA�W���������1#�w��S��y\�m1��$���?���	�!�x���w2��`��`��(w����AA�OD���@ ����������������r��4�o������V�jr�z�(L�z��������1Y���d�����+�AAD'�B����o�������;v���#

�y�����ga�ZXc�
��2��&�R����p�Zn<w���_���\��SP��~@AAD9I�IHHx��7%I�6m���g�u�]o���=��S�;������������B��f���G��#���$p�1�b��r����~��o����1j��m��d1�� v,6\:�����K�� � �#�1�y������j�>}zP����;l��-,w��<�?&3��0�t<w�^�SC�?����Im��>���k�2)����uFQ��g�Z�Kr���@�*MI�%�#H�b�^�H���� *����T�B�
�H-�@z��v�?&��rw��������7;���������P�����������s�2��?x�`������{���dffP��pi+
�Ba������G?��0��x�l�g���iwH�)��s<�R)K�t�W*��s�v|e����er�e�G0��\����� �2��k���G����g��%�V��]�6�!C�H0tV:v���vN���5����������J��Y*2~��6��K�S[����B��{Y�*��k����f��-�+W�3g���9�[�lY��
%:��$��z�Gy�<�h�'��@pw�z�-�V����q��T>0� ����bk����������9DY���u������xj����U�qo�>29�9��GV��b�q�8J����j�f���u>x�����k��e� 2���^v�*�s�LG���������~�29@N�+$5s*��Ki�6q7	�*�z�����Y�B7���y��OTe`````````�Ow���\��1��{�Opy���qn>q7���l���H��eS~P"��OT
�V�s�#in6�n�\���^�}�����0Fg��b�YL)��8n���s���8��y���f�v���U��������3����R\O���\��pk%%3��E�x%g````````��_Ar,��Tui����+������A�1���N����C�'er �k?-���pr�`���p�,%q���\��\�xN-�3>B4j����tjT�Z(�6��v�_�=]�|��e�
��a````````��Xp�~*�L{����Q�>�8��eBH�
��~PWg�']���<�)��i�����>
{&#R�K-B�z�=rA&��S�{BZv���:��Z9�����s>�o��>iCzz.���$g�~�j��7&�n�Q��������������I{HM����y�&U�_}�S]p������D��@�mn�)���tn�����+�Dt�Z/f;L�=��?���	d���E����5��b�Y���u�Y�2����V�g�9���sw����+CV��|���������������q�m�����WF��U�/sr�	�2����U��u��F����Np���p���b�$<���`�2�q|FLJV�&!�N�1��y0�K3��'k�����M[���o=J1������SV9�W����T�������n~��@bZ�s����.I��P�99��=u��C�m����C�$F��8-5��~���f�c���t�F�*��J�b��T)�����M��I7����~���������w��9�������l��6�/��ps�������;���4��,��=n=q�`&�q*���T��{����x�;=[�`��wcS	�sH�1�A�O�;�|��}�6��L%��|���m�W�6�{��/B���i����a�C���� �{���B�+l��E����B=y�[r�(k��(�����F�����q�����k��q_��B�������4���H����X�)R���C�V0��3�&����9B��D����W�Mf�H��F���� *.����Z5����������a���F�mU��@8���1l?������������?����~����v���q0��L3�'Zk���*����N����(���������}�T���]MF����!��@��q�:���5�<Q�Y�����0��q�����{
�qq�/�6����>j�ZE�7�xN����MF���1���|�jt��k����)���H�~T�F7~6�_S�2����i����D��"�|�3���G�i��&�����������_%���^�*^�|�������L�R�d��`���4�wQ���3+� *.����-�_K��s<G����W+>�<�w�+Es��vG��8������L��t|7c;��%����<�-8��6j'���,�u'������o�k�=#G��g[C?�1�a2-B%��x�O��������W����7X�����8�Y���2u�����w��qOK�0�o�/K���[O�zLfC�*�����Y����@����o�\�?oW�w�O��s21�5j���=�e�gB�v��K��Z]~q��.���6�;��{L��4��a�W#�z���tn=fm�>x��+�e7��]��|���������*��Ij���[������k�F��~M/|�^X�@���q�s�9{[��+"�<dO����s��w�^����x+7C#���V5����!�-�-���n��IW�
s��V��U�e���zm���.g�	2��yD��N�4�>��m#���9���d����\��*��;��N�qg���<�I��f�0���Z�DY��+������(�\l��R������q���=19�U��]�lu����<�\9'b�����'r� ��mLr�)p�A�JN�*�`��cZo����W���
��]wZ:-�1}�.}4����������OO�\��:���ABFBj���K`i$7���vA"_��e��Ln�M��@.������#�^E/��r��X����<���FW�x.��G�����@�=[�� �B5������o��g�'�r�Rj-��^�������)���'*�,��s��	�����OT�zA>�]�����;�P@�nO����"�9�}N���j�����QW�����y	.��
���;mtbz\jvU?O7g�ey���K~\%(��'�������/�+}����s-��t���3���C�!c��I2��>9����g�P'zch����������%|?
����%��M�?����|��2�G��(�y�lW���y�����=9 �6T4!��
���i+q��a|��\U@/�$��dK�"�*[��F��V��N�[��oX21�l%������v���g�
��Y��Cem]����6�.S�?�G�D��_l>��tVF������zN�wF�U������s�b��W���6N^�����+��<��B����?�@
$��a�0�k�{J6��3X<w������o+�W*]�q��O�4�V��������.�bl&�~�1v)���g�'��	�������H��Q�R?~��l.��U|W�����'a����
��g??M������v2)�s�2�{h]	mT�qo��9��8�._rBJ���Q������bL����%��a�b��
��eJ�S�4�k��0K4$7A8;���@�M'g���}pq���8��<]?��+���+g����M�x�S}B� !����3s��j��o�]a��qX��y��)#�6z��'���>8{<�y`�;=��~���_&!������$�C�>u����ZEI��?�!#������n�����e)���i���A�������)80�|ydN�� gT���?�������^�I�)`nF6+`��7	x�E�������X<�A�f��2�k�
7�Y����Uu|����}�2^�E�fU����;�1pB����]����(N�?��h�h�_00�Z�"�=�cDW������\4j����W��|��r
~�����������'n���r��	f�L���o�w�W���-K�bfA�]�u��\0�	��B��������{b�R��;�3�f\;��o���w���p��7B��3�	2sK<	;)KF������F��~��]�xi��Q=f�7��@�
h>�[G�� ��bDW�����F�&�{����O\z��������A.��|��fS�7W;)�Y-����G�r�W�ZS:��e��� ��\U���p0�D��� )�Ep+�8v�{^6|��_@����q�y��
�p���fa���p� IDATR|�Y�� �2�m���f�U}�������w��NlZ�O�I���r:��2t<|_�1qOM@� Z�z�3�}���a�,�`C4�:����{��qD�����E������m�.�,L��xuf7�b��k�Y';q�<�8��>����Sg��q#P�M%�&	�4�-�����)�8�P�� �y|�y\3��6�4�R��6�%�r����0�J7�L�"��+P���=�0�7-��E����D���?�@�R@k�8����j��]�b�q�<��Y!�5�p���!O�|��8��l���2�J�#,$7Q.��?���;O���*<��D.�;4��cV�B��_69�`	��R?�
e�2Z������'l��_n=�(1���|�f4I��8@��L�o��>q0��NS|����47.��H|��,<y��u���I�c�Rd$��%�
Pe<���3\�����p��d��?��
��
����n����
y>M1	���Fvk0�_3p���+�dZ��0��eK��1�>i��k���[�J����y���:6�b��|�F��I�I�$z#W�]+�Y!��1K����<u5���DF%��'4��i��	�g
����J+x��0��A
�u<����
������v�F}�<�v���;���+�D���'
fx���5����Jc8q�y��z����v�
�����5c�	�P���F=�������X��#D4�N�D�b8�'�U-
p���V�|������n
J@����]��C��=���:
��O3�s��}?n��`�i���7�w/2-IX��I�a&GL;���5.nE�-^�(U�����/	��	(
i_�jxoZi���\�_�;W
�O��~�
Ua.��]&CVF���C�v�Bw��<:�����J"�8D���o��gyJD�C|���P�ar9�6C�wK7��B�g��p|���/8���s_�6�F��������Kv�������%o���#��j��m���{�8)��!��c�5�����+fi����N����:�N�fb!�������NXK��(�L�W-w�qJZf����������|��'��&#�j��'����d8{���l���c)M�$�8)s��s����
���`jT������QD
���Z��4��Dz$�J]�d"���df����;�������=j#9)	��
���*������|�:��}������z��S��DcI����3�N^��|�:_��LfA��:]{�;�r���/�R4����`���fs������jZr������h�j�)�A��������G-��
�!9��1,����o�x��������$��x�:]�J(��}X��+�v��e�_v�B���'���ju�������K7�`�fx;_O�b�*9��DvF!�V:a����M��zi��#b��R�W�����pn���Vk�����{�	Y�O.!�y������7��O������E]g0�_
�����JQj]q�	 z�����:M W�*E��a2����w��Ge �/�S����!�Z������1p�m���1���� �������;j�m�o���I]�2�^�YxU(�`����#Q�����|���r�8�"fT�16d���~��A.���]I$ !fw��+p����=;C�"�1�p�/\>������G�n���Ornr����S��:���	���-��`B�Z����j��C�&c�S��c�
�>��3��O�	d2����kJ5��s��.R��I$!��D������9*�*�<�@�����Ww,������� b�����BC��&������|�<l���?���@B*��^�~H�Y)X2��q��
�xa���kq�9}�w����`S��}�7'y��h�E�]0C�1+/d��1���U���������G�.9p�B�� ��4��l�EYfj��&��/�'Jo�,�?���QJ��jK�?Z��O/�z.3+/�;�@`2o���W���n��BVF��z�`�Wh����5����A�a��I�n*�0{�EZb1��\E�[�m��t76�����2r9����wuw�Azr��%��S�c>��@dT|A
�����O���O���s�&cL&CX7��J��>
Ec8���mpqc��*���Q�iQza��B�y����Ot�����hX�j��$kbd�G�����$��(&�L��D�V�r���o%�������}���S���j��,���1p�A�r�|T����S~������>M��kR��2�]\8
��h�=��R+�k�L��L�f��~b������n��^��p�W�v���*4�zxx��S�-&��_������!����`�tP�����;�m��W�2_W�F��e��pD���Izy�������	�^�;��*nf��P!��q���L�G��j2����VW�_�-�
S��$��n��Y�����xb�Oh���_��h�h���_��S��O��LK���r�1�� �
����)l�8em�]%���+q��4F��R��\����{�{���������	jL���G+y�b����?g��{6oc'��1HM(xn�h�fo(.�^:����h���E�e����=�9��`����9��Bv��u���l���p�L�'����G8��������8r�y����������!�J�vG��x{��V���/��t&61����M�
��cBD�i��d����r����n4��
�f���_���\���#�Z���9�J�������mc������	+�F\�����jYc���O4��4b���w?�h���g�,8dC��o`�������k����Y�
[�
��kN�b�y����{����5ytJ%�_���EuEz�~�/���<j��-��������rg������
w?-�RTW���\�Q]AKx�]/��H�����}g"C���!4x5�:�k�Jl[���ii�����$��U����Z���B�O7����h2�'h�����o��R��D����fT���x����/=��D�e,E�q>V��v���%H|N������ 
_y���/����,?�z���"����MX�N������������*J�4U,)�`!�BW��8����r��{��=/
�`�RT�f���h�gN&�w��sP�
��g�
����.HO�B	���/��-{�0b���\+�UL���31�g�����e_l>���Mc�
"p\(��~����ec����;V��������$x���f��s����?�xR���K�B��h�/�v���k���()p��#(�t�_���|���J>G��SJ�Ca�/+a�
Jx��Ck%���o`�j	�c��VE�GE��f��B���<��G ������@���������Q���\O3�b^iUa��b(���n�Oi�'^����]��;=�N���X�?jS,���?o����&SA�Y�y�W����E
G�NO��c���<=�S
3��fa	���c)%�������]=bQ�h��s�?�L���K6����R��
�c8���>EW�eG�k�]X�S*��4����)�R>��C��t�p�?!���6t���QVt�d��Kh=qCzzn��~!�Bk~?�����,�')�E�7���[�R��������t:w�Bret	5S��#��M�N>��� !��lCA���;��y#t.�"f��C��R��I,�1g"|0�m�������z����������qW�7�;Y�Ou~��l�m�tE�����P$b��������f]�V�9�7o�,�&�
���4�_5�����@q������+/q'������r��T�]��}��l��a�������gA�C�N^`xy�{�R-�0_v������l��}G�����Qr��r;)�����WY�W�(����I�B�Gn6�v,��q%%34|�hO�W�����K�k@I��sX��c;�{�p$������l���'�i��s�4����vam�MGJ�N�b8���W���0@�����jm����������GK��n[z )5[�����^-kn���QQ������j���
f��c�x��gdW�F���+�3��j����-����2
���'|��Q�*?�S���/���t�?j���tEq^�g�
���}'k�5���}�������c8pr	#Q���B�(�����n=���WP(L�J����:4�O�*�����I�-�(�BI�J�`MS��B;��8���k��H��h��cY�}\-y
�������
�~}���u�U�y�tSIb8E�L�L�M������4���k�@WD^�h�`z�-<x���?3b\���<���;u�����q�8��"�S{��������N��o��;5*����c�u��9�������i���}�P�9��?�w�
E���^4V�Wr�kP���&�Qx������5%J�8�&�J]|�R�-�)=��E�&X��h7��#����M 2�����
g�w./�`{9����W��V#f���iJ�f�k�����I�+l�j��W��oO�G������������W����|/�G�P^����aBl�����"��>�?Z2���
���86���HX�����iP���(��E}�EJ����
��O3GK*�(�������3��y"������[}�W��(P��>'w�r�����g�L1���N^����o����'�������@|1�	]������@���3��KA� T
��nd�5�]�q�"�C|�NgT^1��g�R��s���N�y�����v�
�G5�2��:��K���/�w��e������\zY;}�C�|��uR��)���>��S�
r�� ��c:��t�t�:��\��P�>f
DzJ����p�EIi*�c�h���P�v��xu�b�r|���t�'��s�E-�p}u������]��������9
�a�rOgr�A�=��oZ��r��x�i\�*m��h�p�'lvr�{����On<��+�&_WS�������!O_bxNQL���\8�����1����eC�*�+��/�US$��h��'������H�Z�
�,��f`��b�~�9�I���U�E�4�!�Mr�^�@��l}��?��M-�`4�,Xm���N�X
A^6T�O�pFQ"��ch=q�?��&�����C���ZG�P��O��w��*|F�^������X�4}Er���7Tr���y��>M����!nJ'lXf�������'mKj���v��Es�M��fvO���W���-���R�,6��n�����F��JWf�%����~���Gqi��+yF(��?��NQ���'����c8�o�"�
��4�s�e��HR�3���[��fX���z8+�)�e�,�M��W�.O�f�/'�6�����|��BlRf�g���b�	���R�r�-%����W����L_+-������/)u*7jw�d���;]&l���am�1����1�3B�?��F�����|�2_��W�S�N��I�_���FxO��K�@�d3W�?��vE��?|`}u��������S���7��^Fq_fX���{AjF���(���9��(H��0�����U�y�c-in}i��"G�<��d1'�|D�#{��E
|�%d�������,��������F��c��@<��&����:d��^E�\1�� ���"��$�S�qZ��	=MW����1�t���5��Y�1���g�Q����J��t���������<��M��m<#zE�� ��ao4�^�i��^1����u8E��������*)�@Y�[���0o�������T�c��EDc�vv
���:��h+FH�[_����L��?�������<LH�4�[j��2����l���GJ1u���M�i�����^��&����L,��&��^>�N.<<2s_w7��_����l���MJ6��l>op+�O�lJ�?��k�4#��|�v5#�/5,r��3�q0Kz��
�����yH�[oh�yf*8��L�em�2F]���a���8��M��B)F�i��� �����I�����_N����ON�aas3�H%�9���?ic8�@3=	<p���5�FW���������p
c)F\�N��7���i���?Js�)wp���L�o`�lY�������+�.��Q
���iR�&��Q���d��<k�@�'a����k��u���8�F(UO?���������@Hy�t'��
1��Rr��N������A���F�`��@.�w�{��w��^�%v'+����*'���f��;g���e�G�G���h8��*��6�����
��s~')��$)	��_�N�����/��}��!��'��p5���f^0V��Cz����b2��{�����fS��7~h^��H�������=����G�;D�m���\��Un})���o&B�@�Nh��)Iv������s����M+}�b)q�f���.������>#�4/��C�m����I�����I��s�J)�
$�0�'	C���0>/�� �����Lb�05����u4��&�%6����nRJ�+Lf����U/�9)��hX�������!���P�c��]A6����;u+y���.-�~�������M$��&I[���c����_���[�{H�W���y��@�wQ����oz����������PO�B����-��-r��~��P�z}"qn}jB��wm��_Vm/W5*�L%v'+���!����q��W+�j���*bL<}���S�����p<3Zv��
����L��������<�s�_�������R�|1�d��r/����f9�)wr���*ud���?�����?�^�g�O.�r^T�;(|[brf���J�?�|x��?8����.}?�K�b�����}{���B0�?����y`�hteG����~��8V���J%V-�=�\��wC�������(/_��������O`�2���V.�K��u���i��Y=IR&�;s.�}��9x�������B,�zv�����i�����+���m��G1{#zp@�v��o�~C�_X�L��������+�)����sD�u��y�L;��P�N�z�jz�0���4������jf```````x������������z�2�p<��g���H���bR��������4#�������|�P��Uw�G�J@A���,�����p�����b�[���
����e=�q/dM�$n�����hT��`W|��b.5%����s"�`���
p��/��r�����T��?�>xE��]I�U�����7������Y������J����0s-4^0����OaD��
!�H����j�h@���FO����Av�d���&�X�B~<39��^�b8���vcss�d����������?���[�|pJ���"��������-;q�arFn���7��Bh�J;g���Zv��(������`������{`2`�k�����h�Cg�KF��R�jqZ��;��E_���p�~��_��_%�h���q��<W9L�qZ�
�+��1�
wcR�.��|����t�@�{q��������`?/��V������;Ax��H|^"�U�QO������d��
Z1
����������8��N�����D,9 �m����J�5�:�j����8�p����(��&f��`2Q�i�fa��v�v��c�~|gW�M�8�������X������� �*g|<:�rNqip��q����1������|��?�@�q�
CVD\O{��.*�3[��APG��~�"��I5���I�<�7�oh�
�~����y�����7����Op�����}^��L�����0��iS�0��u}gz�����;o�k����p�����������`9��q������sb����^�`"zS����K��EW#���������	���I��7����N���!�'�K�@��k�tN���5������r�1�_��*���G9��w�����������-�T8����K� IDAT���	AH�r��m��G�=�d������������U���R���39BH�
^�NJ�X�@�#p�@���Mz��K�"�~�������-S��Q
��5���2 �jwT{Au����2'�			��U�Y�f�5j���l��g~$2&��7@���w[��Op5xtu��@�LY`
\�n��O���@^z�q5j��{��N��p�BS�N���~�G�_���YV�j�VA�~�8���k��lpg����p�`�_�
vq�)))�O��Y����?������gggGDD<�#	i9GN���;#�����/����i:��:��P����&#/�@�����.2000000000�n��������3g��-[�����|��CW��I�z������W,�������tT�\�M���M�1"�;y��������������L���<@��?�M���h~;w���m^n�HW�Y�v��<(|�e�Z-ww��������h6��ew��������������h4�L�����j��<�s ��)W����p�)�\�S�
>ykg�15_zN	���g~�qDl�_���t}]��Jn�$Lr&�s�1]�$gO�Lr�+$�X��s�����j*���M+�%|�Nc���,0��=
U~��	������wI����8�V�R���=~�X&+m��^�i� ��?~����,[%yq%�I&9���$yq%���
����LW0-�rK.-���������?{����{���o��9�"N�B�P(�G^	D��7�e�Qi#dn�%����n�}1V.��^�������
�+�J�~���s)��y������$��+�M�0���e$��+�GW0-�$g��i��^����{yy5i�d���.�j��/�������)�)�������Z@�q��V�\�Y����*�}��m��w�R������h��!�������3000000000�.v�����@�V�����f`````````x�;�q��������b�.������#y��I�_��L"�+����c��I�t�s+9��<�z����T�z=��S�J&���0���e$��+9�r��c�3]���P���30000000000��M#���30000000000�^�������,���������bd����?������������2*<������-#�SRRL&S
^v��L�7n���F�1...++������OMM-��cbb���/;��������T����q���
-S�����N��������
6����g4�Hq%&&�����������l6��Ng0�n����\��(55�EdD"�c����_� ���

�����`A��{��Y�|�������Sr�{��
`�������W/www//����[�	'�����������O�>�AZ�������_�f���pi%7�;w�������?�^��V�v��q�|�r�ybbbpp����N��w�������T�R����������J������]�v���piO*���������V�������*�������F�:��V�Zt/�'O�		�'L;vL���;V�F
oo����'N���>>>�������������o��N��~???��c�J>��e�t:]pppbb���q�����W/W�\��}%_��|�M``���Ohhhff���_�z@�.]$�p����o_�N�����C���7o������O�n�^,F��O�����Q.������._�,��"#�����h|!���q�2e
�&M���][&�yxx��_����{w!!!u�� ��u���<��TAz��`��e]�v�|�[�h�����(���]�&��f��B�
<�7h��R�JBCC?~,�����<�7m�������������{�,n(!$44���g���}���v���4�F���5l�0???���jp�^��h���5jDo���#%�\���t�&M�xxxH+9!$11�N�����$299Y��yzz<�������fdd�Q���!C
���������J��R�J�7��WO�>]*}{��I+Vl���J�*W�\VV��3�o�>�xJN�N�8��W^y�������������m��{w�L*-kP�N��^{Mr��i�&u������S������S�%�*�K�{�������$���R�fM��t+F��j����zB�u�f��$����Q�N��m����f�y��J�r��	�����;'��&��K�.DF�����w�����{���w]�~��e���'�dggW�T�A��
�a��\�q�q����8�F�p�B�2<<�^�zRYT�]�xQ�7o�
�����������9}�tJ�RRR��|��}tp��
����>`���o��FN�������Z�j����l6;>��q�|||��t��%��m�pQ���o�&�dee�5JB�4~�x�����������j���_����:���?ddd��:th���$�k��\�vm�r�����yyyRM��~���M
��7ozzzJuC
CHHH��i�}�$���U��(�T��e��+V���&�DDD��Sg��AG��J���G��g��)ad;%%����w�����;w�
�Jwh���{��1����_���|���%7�8�k���h�5m�t��)z���s��}'''�+!u��i��q�2"�Z}��=�%�{��\._�`���^y�i}%k��Q(<�K��===��T�H����L�wJJJ@@@dd����g�}��
N�<)��|�r���������W��F�y{{K��%�:t��3g��p��=�7o��e���]��.Z������:����������7�������;E��-sss%�s�w���#��+W���3��qc�Z<x���]���B���>|x��Ew���D5\�x1==]��*�J:���#��������K�.�g:L�>�q��^�z>>>����;�0e��g���b�C||�V�]�n���5j|��T�����9�q������Y��R
��{wG������			�/.\(>��6m�d�-3[�n
`��9�k)y|||Y��BBB���o_]�v���=z���<88�~����;NO��v��ii������k�$;���KE��������H~��a+�(!�S��?PO����O�<)I��
B�7��/O�S����h���?E�No�F�q��Z���J�b�
����_�����P�f���1BZF�f��;w�X1������������;}����,���w�L&�����#_�v
�������
����e!��k�?~���-��$	?effV�X�R�Jk��U('N�HHH����$��e��

Z�vm``�B�8|�0�����:��]�&��:w�l�&
rm��Q�o��A_���;�����S��������R�8�u����]�v����>����=Z����?�@�6mf��Y�\9��/���IB������������P��#���K�GIA�Ir��a��F����w�^�\�V����������m��r������o������H5r�*U����x�b�/^�H������Z=zT�|y??���d�V�r����rrr�5O�	����{S���j����_}�
j�=z��Q�RSS���K�
 8z�f��-����;99���=x��������:b(�1)z��Z�f�*��Hr[���G	��r�\����q��i�w�NLL�9E5j�p����_�V���O�*��m��m�(�|��{��G_�n����[��
`������e��d2��'��������B�����u����EF,	#
��lH��������e��d2��];((�Au���k����a��
�O�J��$S*$$�F*���j������K�5j��L�i���$>��={��������
���M�:n�����LFcC"d2Y����|�����:���?���Gb0�q���+	!��M�R�$��un�����U�R%��s|�����n<q[R(:����Cll���i&��S���:&&����>�)333..�z2�����b+���S���z���SRR���,�"�������P�+WNOOwPr���r��
���^�z�1������U�T��t<���+>>����N�:J���#777�
{���v�3Tr�Fh���U�
�OMM��tg���Or1�,��+W�[�4����R���8�BQ�Z5___����/�������s*9��j��U}��)K�m�A'A�g��Xi?�����+W��&��7D�A����P����"�$�|���d�|3,,�^�z����+
&L���B����;�d{�G��)�Q�e%���KilStj����?�!��#G�M��LFdca��q[�n!//o��
�tBL�����5���C������t�w�Q��o�^F�h����O������������2���Mooo;� qqq����h��dV�;��%aD�3�N�\���Jm������

6�����u��M�A���6lH�m������$�S��#G�J/��DE����
V���P��N��m���?��S��LII�a�o���r����k�$L�4�)�=u@R��q�I�&]���k��9��8@�e�HN�#M��[�N;�{rrr�N���vrr�k����iS��F���u�=d���===i�!��H7l������xyy�5�Gjj����N�����2�(q_�v�xCm�R�I��U�5��|���:C�.�8�R�J�6�8v��������:�1c�xC��7��i9y�$%v�����-����f3���#""������D����Co��P?~l���X�Zm�����k��[�N�����������k4[����-�P����O���>|Hg���6l������M�J����R[��p���w��?���(y�j���)))W�\quuym�i��S���f�&�I�� ��u�������%s�_���I�74�����2+W���t��?~��	X���Kn98
EZ����1C�V��(*yNN����e2������GFF��F���^�XFd��Lui�N�|����o�����rj�:����=z�(FD�I����D����={�V��u��~�nnn���h4R���I���C�����J
�t����[9����}&qo���o��&a���LII����TtyyxxDFFR���I���?�L���xZ�i���w���R(�$:j�������������%�,�����X}��)v�o��%��t���;4	�J����N�s��W�\����h� [��yE%o���L&��o_\\���5�������;�}h��e4It��i����D����6
N{���7t�K�.%�4����b��@%6l��D�����R�-��LZZ���=4�X\��}���+W:u�D��6
N������}�����Z��T����}�����T:���4��v��&Lpww���{��<�P(�����Kggg[	
M��V���e�d2Y��-=v���sss�v��F���J�ZJ�6m��m[�\��j���U���A�h�u�X;��5k��=���TrJ�hu`dd��������.7jP�e2�F������������cccD�y�Eo�%��;�V�����������/m�r:�e�ug���2J��/�!#~��-;u�dG��xVU��z����
�����pqq�/����7T�1c�������k4��-[�:2%�Ew
�]�x�.W������6P�y�~��B8��J�\FD
�/���j��I��~���Ji�����;V��iii�0����S��RJZ�~��4"m�z�u��1M�kT�>$���n���X`BBB�m�K��Wv��������o�wk_��h���������Ei!!!��n5xff��3�u>y�d;B%�eU���Z�4mf����n�C�J����#�7O����Z�G�_�o��j���yll���7��v��C�Fc)��uC�(Gn���T��Qbb"�����a�-Zh�Z���Ra�iG�+�r����>��C�k8p����k�.�����xzz�*��C��]�v�Y�jWWW������}||��;w����j�����v����������Y��\�x�����������m�x��b%��:5��0f�'E��|����QM���y��X�����,(�w���Riws���ww�>���8K����<b�	�d�w��E78G�
>|��h�v�����O�T�������&��5J�zZ�l)��;��hQ�X.O{%���_4����k#���X&h���@O0t�YJn2����G%���%#����M�#���81�u��e��7�2e��l����ATZ�b������O���:�����3����S:�z�j�2%��)�7\�2���Pv_����0����v|6##�������_~QpBB�O?�dwg	z�cI��'�|bw����X�Z�i�&���������o!<x������qqq���_}���V��^?e��v��� ���W��e���}{��?��O?�W�7p�@��$&&����5'��
��;$$�RrKg��h�~��#ws���������V�Z��SFbw�����t)�h��#G�~��~���w����cV������O�.�)W�^mG�I��7��Y���t� v9��)�9s����G�������}�ei%�#G[X��-%�����F��v��
4������yS���j��U�V9�t8p���G9���t?����q�L&uQ��k�4�>���A�Q�w��)Z\(�!�4������������q��6P�$OLL���Z�h�X^|��)���o������}J�����+�T*�����>>>4���%RFD��m��zXh�x�������?.Zbv0�����U�*��b%?w���n/Qr��L�������#��J�P(h";�|||8�������n�L��,^��zd8���(OO�G�9���S�^�a��UZ9� �o����X��2�>��Zi�������{��YG$�E�e!�����+WJ���o�����d� ���Q����� �o����%����{����?��C7�����u�Zq�����7x�>}�r����\sI����?wss�74..���C�C����%����]�{�����-n�>>>?��S�V�$	��Si�z����y�W*���{������g��i?��Y�fm��.����W��!�[�n9"vff�N�k��m^^�R+���'OJ�������W.Z��N�%�5��$��[�v�?p��R�T*�bt�q�}{h����t�\�~��������Q#R�CF�P��f�1h����T�Rr�L3�%�<55���!C���}{\\��}��b)�!&&���C.�6���[���v��
�����������=�e�
w%CQ44
�1�����WR��ff�s^)���z��<��"��(DXZz^�
^����h��A��ef��������3 ��h}�/�6{�^�f��w���k+�J!D{{{�#"��<��\s����N�XYY������������M��r�Y����z{{���|���|o�\�#F�����i�&�C�UWWs��f
B��D/�/����`�4i�Z������`0,\���;��j���*Oi��2�Zs�M����GGGw#����"�#����c��|� ''��NNN=��i�('����9::������Z�><��o,R���r��c9p���spp�GR��I����������,�H����p��p�38����C��h"""�*?v��]����_dgg��1��'�Z�Z�����d����_�^NT�[Q���,r����V����������M������<����������3-5������5�C�R���O�y��3����mmm�9�y�.���b��
�B~0b����sU,O��W�z�On����1�����}||L''����B�M���,��������b�-<<��������-.��[���;X�^0��d�l�G�\���$�����^���.��/���c�sf�����o��������#����|bc�G`��5wuu�y�V��!.���IDATy�@����Z����g:3������.����~�����9��`�}����aZ��-2�������x�366����{�����u���7���2�/�H�<��>�93=L�}��'^^^��9}4
��j5'WX$����wFZ�Mx~*��O�<�{S(v��������/n:�Sxx���{"99�ljf�p�2���#H+������z�w�5�FX`��WWWw����
"{2oO�����[FF����e�-�|���X��5��L,]����������QQQ	d;w�,)))//wwwW*�=����������9s��������5��m�\s777�>HR����W�>}z�������B�����RO��j���+��?���d�~��\��`���eee<��\�;vXj���5������+W��|&������/))�|�2�mt�]���p>^tt�ek~��Y9U����q�����q�Fvvv�f���g�yF�Pxyy������k��,����F�n0�1��/��5
�v�y`���d���q#�i`������}ZsGGG�<>��P��������O��Es���o �l�y�C�^���Z�|&�;Er��j�eO�,X�p�B��f���&77�I�&Y��J���fwSsww����B���
�J�G-�����O?)�JN�����`
+G����RWfd���|Y�s��,>�#@7�����t��;X�����a��ySg��qqq1}�����;::Z<C�~�yO���Y<���Nf�q����yDD������)m���{s������-[�l������]��������/++�R	fN�<��'�toV�����~��gfffeeY���������z�\���������&�tx��jjjrvv���,KQ]]��a��Vk�����WWWk4��C�Z���W�644X�����7o��$I�y���
4w@����w���� p���; p@���;��K�� p��I�$I������U����noT����I���������i�


�x p�o<��#g������A�����3����.�;]�������>p�����'^�t����l���/���6���+�
V�����+�455m��a���>>>555��/��������x���3g�[�n�����������kWXX����|p�����0"���HLL7n��/�XZZz�����x":q���U��m�v����� ggg�8���|���������8p�J�z��7���o����j��+�����u�����.�;V�d���[����!�������l���yyy���������wzz���k����]���#�V�������`�����q��M�0�`0|�����z������\]]7n����<f��={�<��c����:t��SSSSPP�R�JJJ�J%/,,,9rdii����W�\���`�k���C���������}���+++��:�����_�����W�^qqq�v�jll��������W_}���4,,L���+������*___�>w�-[�LQRRBDeee|�������h4B���w������Y�f��5��9q��9j�(??���!��?��O���/��ys���DT\\l�����Qmm�������s���s�:�V^�9��6mjjj2C�����|�u��UVV��[�^�x�����0�`]mmmqqqD���JD�
"���o�����$�wq���hB����J��h4��
|������vvvO>����;9;;���+;;�������o�������?���{yy�?�����<y����<n���8�����l�V%�ptt4���5M�$�������h4������!
�B��8Q���'M�7K��???"JNN�����@^^��S�>�����7?��c'O�1b�e�
���"I�t:������������P(\\\�(((�������z��g�����;���u�������7o�����F3u�������JD���'�������������K�.����1"==�����=��*//�W�������x�uP7}-��F�Ng�����iiiD���?�_�O�^YY����q����{O�P8p��)F��z��9s����j���s�������O��+��� �W�ZUPP���3l�0{{{�N'IRBBBxx�����	8��>}��)S�]X��G�X�^�������������|������g�����>}:<<������+C�����_K�TRR������>d�������p�^��i!�S[[+��>h� /7u���7n�F;;���@�ZMDEEE!!!�	<���+Z����188����''�!C�!x��(I��<<<���������������_H�@���w@����w����; p���; p@���;w@����w��|���555�.���b���w*Aa���L��l������=)$33��%������h4�����������������%w��������/\����+wZ�`0�9s��X���p��������U����1c����$��[���+<���9s>���.V;������Xa��y���;.ooo��k����$I
�b���z��7�W�^�z�u�z������W5��5k���~{�E���S�NMIIill��:mmm'N����%K���7������.\�)I�$I�������qt@����KD�n�
		��:Z�644t����k��s"�4.��������]���������5���Vp��z�[o��a��.�����v]���m��K�.�1c���CO�8���o���������vl!Dss��1c���Q}5??���)))999eee�i_��:���%%%���wZ���l���]lB�R�T*nC���C����dgg���{��
C����'l��������������~������JMM�?��u�o�[II	�������


���j��h4^�rE1u���S���u��^�:|���������rww��_�RUU���3c��R�r����������?�\���������/�Je�^��/_�������/_���6l��������������vvv����=�\XX����"##������w���Y���>������{������nll|��7�~���j4�N�n��~���N�;z���M�
�^��������$IG���u��V�^�����O����B!IRll���K��]��O���;w�4k�#G�pK�����������j��-���3��?���������~���g����)S�����}�������f��5a���F��o�������e��y�>�(577���:t��


������|�4��+t:]hhhnn�R������G?���Q�F���o���iii7n�0���qqq
�B��,��ZVV��������^<x�$Iqqq�A��UUU�����o!��������&7o��6m������sjj�<@D���j�:''g������������GGG��XYY�����Y(I��+n���j���---�����[�t:���kV�XAD�����W������srr���mll����-[�{��U��h�j���������K�������999������}��Y�f�R�<x������c�@D�������p<���9��N�<ID���������'����!��������$EFF��������"���wRR������
!>�����9���������0|�p"Z�|�b������!�k��qX9|����___www�Fs����c�Qxx���5����J�JJJ���%���o����5w�\.���_�Ot��U�����^k���*///�R9n����X[[[??���Z!�������'�����3�K�.	!���.[��K�Q�Gyd���iii�-���"�8|����|��V����������7n�^�Z��;����{zzN�<Y'�D��rqq!����>}��m[__���$������q����N�s����%%%���J�d��!!!���j������3g�"�4i�Y_�|�2��s������8p@1f���677<�[��'� ���|
DD���s��%���H�����
�����{���H9�I''��~�InU���?�T*}||�==??�����W^!����/Z������t���j����c��������������mmm���z��EDuuu#G�����s������;�---7n���t\�y��!��!�B�Tt����V�):�t[�`���"�hhh���wXX�����4F�4i�R��q��#G:;;WUUqhHDk��Bdee���b���D�C�B�ubb����F���9�}���B�s���g�}&����/9XBTWW���o����}�$������;~��j��������/���?%jL��^�z
:TnU��������}����!����h��r�.]����c�����z��q�-������dzz:����j!!!}��mjj������9r$��xxxDEE�:&L=zt{{;�|���;w�G}d��������<
�Uk���D4���O���[��un�g�y��U�l���&�e���D���������������utt���7ka��755=���			�W�o����3���W�&po�7_�>SV����sI{������>����'322����P�����B���g;99���������S�����<
@D+W���{��!���L!DRR����O'">,//������oF�%o���xf���nC�@7���Gj�]o'V�-��---F���(�J"����_���


�����l`` ~�p#���������9���������2�uO�����pHD�\^^����`������Y�x1O"��9r�����(**�����m��qQ���r���Ji�(�,���Zi�v?�t_��V-,,$���o������W�R��������������~dz3�����������9]�`0�����������-YZZJDQQQz�^����r''���o��	TWW���>��3\~VV�Z�V(D�I�\"���{���/\����_zzzv� ��T1�7���Bh�W��������w���=���M�FD�w��sW�����o���� �U��>>>�W�z��`�no���/^���b8p�����*oK.�{��_�S�X��5ZNgh����0�t����K�,INN��c���?ND������������c��
777�V�?�v{;q���r��mUQQ�}U^�����������81���!55U������|����e��M�8������t��R�QZ+�����9L�h��rpf��4�$������[��X��<==������'N�(����[D�����������<��Cfu��Q~���#�*�����H����l�Q��w�S���f)��>���z�������z���r���X2��$I666��
{��;|PI��b��!nnn������p�<�g��������R�6l�}
nK��������M~���b���[�n)
�m�OHBBB:��R.���v��a�c�������Y�����d���QX����v��f��}���\����hpss���I�dgg���Y���\�|~+o�������'O�/�D@���fv�~W��D�w�^���k��M��������;"�������sU;5e�"�6m�_��W�l:=��kkk=<<����L�����PXn�*���Vj7Z��umt���~����z����onn�������$I�N�8{��������t��7��FD���_�/W�������������s��YD����<X�_����*N�8}�������,md����B���O>������SM��1�������o��B``��z�IbvB;k��M�6q����3fDEEu1��/�p��3���V���V�0/����w�o���?��
��������|�WYY��wo��h����U�:6��y��_������cbb������W�XQPP���/_��2���[m���pW��9� !!�#���L�A��_o��q����c�r�*� a*111++k�������^�1bD}}��0�[dd��o���c���3g���r���+W�]�������������>|��������l�N+�Jp���������w���;�Vm'�uf�mo���?������A�:�w����0N�6�:���/���C��effr*��:���<������������+V���a�iK��NNNNtt��\UU���|J�I�eee^^^����O�>s�;v���=##���k�q�O���������P���ZV���f*++W�Z�|�������:F���M{��G�QZZj0f�����f�����^�://o��1�}�]\\�����9��[��_���������KRR��c�N�:UPP���������������ZQQq��i�J�E�������$���l��
7[x������������{D������RRR�-[���������0�w7]��G�$i���������o�������g����~�/�i4OO��'���3::��O?MKK���o_{��;����SiiiS�L	

��D��=�f	��a�������*�*((������������������g�|���urr"�I�&!Dff&��������$I�N���<����^��a������K���B��~��gV�2e��S�9]d��E��������������S~��=��f-l�b---���	���/�V�,s�E��\]]�_�.Rn!����yjn���dnI�~�F@�N��{p���K]]�]g�uuu\"rww?x����L��������w�wXX�s_U��|i�8��G���_~������q_uuu%����k��������3�q��"""t:��l�-�2'M�t��_R����'B�T*��F��g���j�����c��x�"�O> ,Y����W��?����
��KNNB4H��i��N�x����#��
��x�?}��7�|��Y0�3�����Iqq�<����L����7n��1n���6]3;;[��v��i�]|���+�h4��eYYY���MMM:���������t[����l�Fc�^�6�64��;�V����	�{������?~����W6[�g�����������-|�U��f��7�4;]��q������kkk3������Q�����A��$qw���O]r��q4��`��m�-�p�����p�}����g��A��R�f��a<��t��	���6q2�:T*�����J)�����������B�������#��M����5������^^^�>��W���===�z���h���Q*���������;w@���w@�p���M�#����IEND�B`�
disk-iops.pngimage/png; name=disk-iops.pngDownload
�PNG


IHDR��!J�z	pHYs.#.#x�?vtIME��Z>u IDATx���w|���3ek��m
���JoR���XAD��A�+�������*�rQB	- �� 

�	���l�uf���I�%� �����0�;�;�;s��y��1��l<6w@����w���� p���; p@���;w@�"6�����D��kW��.�+###;;���l6��_��'O�t�\��R�I�&����(!!���RE� 4j��d2a�\�1��p�8�����Xaaa������

�w������GLL�(��eee�l�2??��������[��k���l��m�������w����5m�4l�p=����
.,,���{��7���EQ��e�������}}}����(++�]�vv�}���j��j��^�z���.�k��1j�~���N�:�����9r��	���/�����g}||������p|�n����+VDGG����=ZM�������������y����;w6k��{������w�\�����!!!o��v�v���n�o�������;��1C����h"����������>��6���\�~��U�z��5o�<����4l�P�������_o�X����SO���T3p������
8{������nyyy-[����7n�����Dt����� ���n�:z�����c��}���O>��;�W�l��u�Z,���d���@�����;O�������������D^RR�������h��i�1EQ�N�JDF�1,,LE"��q�$I������y��QD$�bXX��h$��S���-,,T�������Z���+ciii�����f����Z��C����<�������D����(J�{����������������������s/�����h��A���8t��}��!�u��;v���=�Pqq��y�Z�n��q�����������{���j�S�L!�|��'���G�=x�`�:uF����`6�4h �2�9s���~;~�xLL��h��{���G��������'�����D��;�����=���			�����Q�|"?~|qq��!CN�8q���u��9����;W�bB^^^���CBB�L���={���xZ��n��O]��U�VD�}���]�~���U<�
�;�5X�l����G���C���(���sm���gee��U�8�;|�ppp��ln����I��h���D$cl��5M�4���k�:uV�\�q������l6O�8Q]'}���D4e���������7j4�+�����(66V�|�=�K�.��|���W}w��C``���������������T�(�������������}����>��b���[W��w��q�������2eJHHHhh���S���I��u�&h	P]���'n���M�6z��������n��E��_}���D�|�r���������eee����L���X�������\":y���p�V��uk�����'�|r�������Z��1���~���L"����{���>�r�J�����:DGG���F���tDt3�/�������]y���������s��\"**���������^�vmVV���K?���A�m��A|���|���/,Y�����Q�FZ���V��;v�x����������\����z�)�V�����g���.A�l6���;�EDD���xyy)�R�S3��Y�V"���?'O���U�����-]�T�>P5����+))�<��������q����P�Nw�n6�.\8d��
m""""""z����'�dgg/[���7���e���[�
��w��a��%K���S����j��5k��;�}��s�:��7��={vVVV����:���l6������Y�;��7o^qq�C=�d����@Q�����w�]y��V��ND���[�d����g9������={6==�i���e��������l�tG]�{�n�
��Po�Z���D<k�,Qg���z�j���w��R��������ji��V�U�V~~~���j?��>�L��������

\.WH9�����Yi*]�e3fLHH�����ODDj��m��H��	&�7�|c2��Od�����
f�9""���{�9w!�����s������;�����W�[�wa49�KHH���V�w����<v����-[����#�'N�K���_�n���������@___5�,����?�t:���g�X��1���v�����I�h?u������������V�^MDj���_~Y�u��aj���W�^�B�����k��y��
�����5���r��=���_�d��|��%m��������S;�TGpp��!C�(**j���h~���f��h4��\�.t�����w�j�����(���3�bcc�%QQQ�v[�4l�0I�c:t0��j�sEQ=�f0��2�0S�X��u���L&�v��o�a����4k����5�:}�U{��m��y�5����c���|��{ff��lv��*�9��C������c�N'�T��w��


MJJ�7o^vv����;wn�f��u��l�2�F���EDC�3f�(���O������'$$��3G�����~����W��FEE�����,�5j�(11q���:�.88x�������
���i�����?x����+���
��k���4Dt���#G�|��w���-[�>|��O�R�G����g��������:(88��g�i������`0�5�W�����9v�Xjj��U�x��$i��!�{��W��Q���0���1v�,E�.���������?���G}t��������������8���B�_�.��\�J#������U�3;;;:::&&��w�


���/333{��u�Q��� j��d�jI�{���;w��?�L���o��=00�7w�����egg��V�6���n.�q@���w@����w�����$�������� AAA��KJJJKK�($$�s9c,;;��������=o����eYQ���0|��U�2�N�s���-[����{Z�j����o*((h��I����7o��I����M�G�n��Y�f�Z�j�d���-[�4o���{�i����?�o p�����5kV��������{�[���w�Qo���Kaa��9sf�������eK5����n����W_]�hM�6����"�#G�6�w��_|�E�6mV�^�^���c���������Z�J}�����[������?y�d��m������_$�E���1����u��i��M``�����h����z�z�������C��������j�Ldd��;dY�w�@�,�.��o//���������\��ID�Z�Roj��-9�NEQ�N��#����?���999���z�^��A�����k��n'�}��Qaaabb"�q���8�����yyy-Z�p�a��Q����������u���>�o p���%K�x{{8p���-Z�����Gw��������������g���.]�t���iii���Q���_�^]x��)�Jbbb�q�^���UPP�&�W�^]��dYNKK��zW��,��Z��
��������sss����('''%%��{�
���!��G������g�H��j4���q��������{�(88���f��3g��"Z�n�_r�A����%j%�V�������s5��Z�?~|������<y���k������GD�7

�={�z���g7i��M�6Dt�}�EGG/\�000p���^^^��O'���~�}��S�N7n������������=g���`�Z�R���{l��]N�S���\�2**J�����y�����<��4j��={���dz����M��.��e�SO=�r��Zm�~����[Q��L�f���`�W�#99��JejY������y^��� ��%%%��K!!!Nt��^^^����7������(����j��{-��nW��ck��� p���; p@���;w@����w���� p����; p@���c�6>��k]����4k�,Qc�������h4�����;u��h���7�p?j��=��� ����>

R������;����16f��1c��P���Zp�!�L�� ����Q-���>}�I�&111�:u���>|�|@D.�+**j��96��f���3'**��r��%K������WZZ�v��v�����QNNN�6m6m������];v��u����)�(���}g������e�@�^]k��!�����^zi���
4����,KFF��}��3|��}��edd���|���6m������O����=JD/��BAA�/���|����\Q?��S|!<����1E��)�������m���Z��kGD����%>>>>>>���EEE#G�T�9���(;;�������O�>z����L�BD�}��>}�q��!!!D���;v����w��i���^ "F��Q������bl�W��C����O�1���s���?��N�0��N����t�����t��Q�C����@ooo������6x�vr�C�q�9��:-����[��q�W�1��������f��yw���-ddd�l6I��KZ�n�+((HOO��0s���^�� �4p��=e�(h�H'�# #fq,����PM�����������������xyy���k��6b��.�K�0s��!uI��
�V�{%����������5�����[�n��t�,������^��vu7��+v�&���GD����/���T���L�7/���Z�'�	�*����N�W�v"2�Z���yEQ�(&&f����D�(�$I� |����'O&������\��IDV�5///???  ��.o)#BDD��5�W�����'���8��dg���m;�/����H�f��V7�_��aCT-99��VU�j��Fcjj���srr322x��j�M�4	{����/_��Y����-Z>|8>>>;;{��ID4w�\"Z�pazz���s���6n�����=��gg�a�&�K���;���Qm�Q�z�&�7O]�q�����vNdL���5�������l���������p�l�m����J�l�2l�0��@D��

6l�p8DQ,))5j�����HQ����/Y��������������&���g��lD�>��X������:?�)#���}�����9Ia2��������-p%���
6�w��_~���eY~��GE�b��$I������s9c��t~�����l��S�N��+��a���j���d|���]bq������9Af��c�����G=����?�Y��[-���=|s�z�����A�����Y<#f@^iy�}o��F�O����mN�������fX���f�<�&x����r��1��_���v"��mn��%�����M�_��MpS!p�K�|f�Sv��e���+�m��Q�>+)."2�>�3��(`�+��������'0����0�u�|���z����2vW�����N6 w���/�6h}�HfR�v�N4���[����q|������J���� p�����su���|�����]��F����~	�
Sc�������+��-	��n�l��k#���A�u���8/����wy�1��K�xDf������^�T�( "�d}��k��Q��p�Vb��xN8�}�t������xw��"�%"����^��?�#��>s�W6���$�5��G,�lR�P�����9K�HV�	����5t�����#&s��d����c� p�}�}�h "�������[�}�C������������w�1V��Ba��Dd��A����'��D�d'"���"9��y�@�`���,�y"�dgd�	^Z��^��6S���Vf,����L��@�5����o��q�d��t�
�L�3����^8��Sz�Ylb�p��&6TS�=���y�gL��`�Ix��&C��{��d'�8
>��UldD��*����~vq���&o�����tz
c��=���Y��v/��1�����?�1�sm�����}p�����C��j�������y���������+��c�@�&���-��Z�v��5��Z�"���M���o��������?��?�+,�����d$��C
�+MO��]�E�8�~M������y��e�r���2�������RSknxo��CeE&�RG��c�ak�^�%�M�I�E"�������~A���%d���b�9��Q���!��f�PA��h�� "�d����]��>KM� FL��
���pr%6xm������j��_�������D�5`�oo�'�"�	���6���[�����Uh��&�����y��5>-B�������P�C/7]buc��.���
G?Q�f�)L!�����6W	�w�~�-�/����iX���mv�:�_'b�>{����~��":�y �8E=j�����x���wk0Ta2��fl:�l��eq�Tu|G\�o�n
��O3�4�Hj�w�N6W��'�R�dy��4�G��!k�7�q�z�2������������/���k���Kg��h�Mz�I=��&��98����������~���}<'0bF���['�X���-��5l"�p����������v�}���������~���A�)D���]�G�Gw/��J��X�������A��������'������K�l'"����f:$+������]����v"��#Wyi}�u~�IV$��"k.f�E��i���q�����yS���>����%;�������������
�
��t&�pVq
I��cD���\m��4�L�����]�����J_�8Xm���l�;�nx�z��Ox�LT63n\^i6w�6�����G�_�^Z�������0��c�$�5�#������m��?y
�8
�u�qs��3xu�5��D^����V���!Ygm`!"Y�F��2�����C�3�Z�;��[�;\�
��[<q�{>�����������f&�M\�����ly��w���R�8^a�#�f��M	���6���A73f���V���BAG�����l3���k��v/hD�[�����r�����Y�D�������z=:t���D��U��;^<kt8���{A�v��I����1����_o�Z%I���

�����rK�y��P�^��]?����)���D��kNd����W��>Ow�[��^����ol���
Z"��s��[������o-��2bY���S~�R0>�;�����x�S�h$�|k�����k�.����+����V�����>���a�xN����8�j�����>�j�*A������B__�������-[�6�����JJJ6o�EDqqq>�`ii�(�%%%��_�~���^�z���������������c���U<��f#"��pn���9�����G���{������GG~�SO�&[����=���c�Q��_���]����_nIz�Y4j�-����<�f�5��_����N���(�y�_�8D
��_�)b`��T�����I�G�8������.����
6��U��R�E�%&&&$$$$$������ IDAT�y{{0 $$$??���M�6MNNNNNn���������].�+���r���������ol��)!!���y���{��Y�����YYY�-��_�S�~?���x����U3j'����-��KkR���9�[�w2����ye}����N�3�%�j��0�eX�[��i�uT��%�ED��������q�(����a�;.�\���v"�9���s�NI���s�o�Z������[�|yii�����322���4o�����������.t���}��!!!s��%���z����][�^��}�������I�&-^���~�_�2���!"��gz�{M�L���.�����	0��LfL�8^��|k�����|��������jI"�=���Qf29%G�����g���`�zD�q����LZ����-����cL����{>Gc�Q��J�/�r��c��)<�M�sO�
�/���?/^�8666((��x�'���G��F�V
� I��?�~��l�j�D��j��]]��Q�Z�+K/JJ+:�V��55�cjtM��ka#�Ly��������Q���"��3��������o������
l?���#������bk��[�t�������"x�b��p�s/�����R|:�����H�U����!���:�z��jo"�h���7j�_��g���������B�FS�������|������!CE)((HJJR+�UC��z��q��b����$�����L���u����	�k���5��������PIq���
������W��h���Ru�c�����/��u���������Yv����>��>�6j}�g<��[3�90�d�o�#�qon#�"q?�������<�QP�v���c&3�S�����y����E'%%%%%-X��d2Uz���l����0�� �������ys�:u��yz����+�D����4Y�X"�r�<�
n�N���������#���&g����^-7������3���=�������#N#�&{p���K�G��j<M�x���p���#���O���Uu�W����R&9g��#9r���3���^�O�:��_�WkD-�	AWl��p�sA^u�5{�k������
�&[>�%�S"���tm����Q/K�d�����AD$)�n�����vD��n�Z��h_]�F�~�k������`~7�����Z��:u��t�n����+VL�0����]�.�j�^^^��msW�:t�y��D$��s����BBB<r�W*�K�N���;gS,����M�K�������������^O��<}�����{����J�%��K\�P��6��7�7	P��:eu�R{Gc�����7e�S/����iT�.y�����)�c��J����}$5��Q(�"�q�����1�T��gz,�np�7����9�|��DaW����2����M?�y?�+q�����4��+��y��S�s���q�	��~<�7��/:w�\M��V���Y����8�988�d2}�������+��d6��a�[�l),,$�w�}��� ~���YYY "���a����{W���,{&�o��qzQRj�5j�kj���f<M���oY�h��Qm��3���xN�91��������Z5���#�q��G�-����E�p�

��|s��z�'Q��[���u~/<��cv�i?]R��8+��?��oZ��/��s*��m<:��k�O����8"���9��o����6�{����c����yN`����G�������@�05B�?�U���55�{���qW�5j��e�%.�k��Q��� �;v�7����'������!!!�����k�7o��o��L����V�Z���O�4����r�\����5����N���������s��U�`���]o�s:7�����r��O��0Ya���_����'~�T~if������i�g8�s��1���d��kL3���J�}�j�
��]�&o-�$���>4�/�9���(��1'M�����jq|���_��pD\�d���e�P��3=��c���$_����aj
	#&+��	�/���������Wc��h�osb��~1�h���A�u��������o��:Y���~��no�����>��2p9r�����}�Y���,o��u��UD4~�����K����/���b��j�����v��ZTT�6�t�\,�:j��w��`�7�^d�|t�_>z��?�RB	�I)�I�H[~N�w������H�:�v�}&v�G�����$��v.�|��b{�:������i���D���_V\������D+��4���\Y�����9q����MF	59�#���yI�G������|S�-���:���kF��Z\T�<C���������T����������e���5������k5����ej*jo�����>�����:����;���eE���7�4c��;���U��c��s����!�����v�nd���j[l����:���������iv3~�Y������$m�9Aa��}�s_�����%*�K�#N_v��#"������T��k�+��5�t�t���"[���U���5i�V����}Z�0���*��%��0�s��+
	�8^#T�`uZ�����{�3j}o|cd��g�+��(
Zul�Kv�i?�%;��l4RM��_1 �?c���X
m9�H�U�Ow��.+�lq��[�3V���g����������)�S���efZ�YbLMr�G��#�k������U�cJ�W���wyi}�(>u��ffYR4��E�s't{�e�=s��X��������y���w�yU����������q�]���=������ji]�1��1�
��������d/1I���RB�Q�O`�����Kv��6����Qm��K�/�^��B��������y&�%���l=�J�;�Zx�'^#h��xNP[��8Y���"[M�fJ���v%��e�_�-y��d��d|�{�*�\��+�1�wx����<��N���������|kf�-���+��N4�h<R'd&������o�.�����M]�M�eI
R�<q`qW�b���I,�����7$���!�j��Hj�N4�oJ�5�����i���s������#�cuZ��xo�S.���3��wF��,����3Y��W^d��7lC3�^����I/JV�|/��o���KD�~���zo]�G/�d��]��l3�f=�\H	�I.$wbC����(m�Os���D���4�*��]�u���f�=��A����������}�uk��������s���=�01��.��X��Wh�Qg��&���)������c��VIZ���i?���i��c�:� �	���9��c��d���:-�;��\?2������v��[�z�����Y��:�P��A�K��"$��0��k�>���$�>�o��&C�WM\v�Z��Y<mM�GG����??���;���Xv{�OUH��{~&���7�����.��f�'�Y�5k�����Gr5}^Qi�������b�~���o2��U����������Qb/pGfX��^��Z���372j}1_}����������-��	��y�M�IXv��H))����i�[L���L�C���\v+Gy����HQL���)L�������l^:S�C��{���	���xV���!Y���k�-���vNt�w��VI>�c����:k(�$z�]���L�o�;��F������"[.y��0���t�,����]�[g�TP���{�m;�����J��-�eEx�}z +��W��0�c�u&}Pd�	����I�o��.Wh���qH~i������VD�IAS����MgG���I!1���H��m�c�\�������Fw}��������n���`�^u����N��w�+�wF��������� �"[���7�`��Z����~q+������oEu�b���h#��e;n���}L>������J��\T����1z���`aI�K&{���}"���:��a`k�����,���g��=��Y���/��wK/:��/�����>H0����|����.��A���GZAoq��J'zf�%�%�N��w\�����[������f�\�o���X�8������ZQ�g0�
���s��E�)E�u�A����{��J
�:�8��;�<q��h����\������>��xyu��eywu/}���/I�d�\P��r�9e������`(��h����~qm/���s��+����=.��:���;�b�3���q��l����������4�&���3��s� p�{�[Q��v���[�3�D?��'����r����L|���)�i�Y�r��=$[F����~d�_�`������A��*I"r����gz��>������w>��}��QP��gE�����~�s�:��*-���%F��hj�N4V(���8_}`�o"�*>Wl��p�d���B|��n�P���*�X����^�=�!�8�K-L���[��d���Y�<lS1_}`=�fc;�r���5����3����<W��1�I�z�[�+��TO�J�MRO�������.y����C��?�$��w��Kv��i����}LT���Z�?��A�U3�~�JJ+�q��15z���-B���=��U���>eW`�b2�'�|����/�N2�=4���L��kE�N�8��k}�����o�x�M��ty�� �^����+�hGy_Q���Y~7F���G(�"���pr��c���f��
�����'�XX����l��#�q�}������
��,���!�5RIa����muZ���N�����V�V����&CP�f�#������:�yF~�L���N	�]�5>�:����� ���7�8�w������|������f������v�\�5��3k�
����G�����t�<;$+#2�8���O����g�%�3�Jz�����,�QLg��I�1bNb
1�2� ^K�$o ��H&1�V��S�>���BkN������/�F_{���G��\�j�esY������Q��o��v��qp�1D='���s��8
�����KXI���S�BJ�_��u{wk8�yH�*��#pG�^���+(LfD~���>r�f����c�DK�w0U���RJ��S��$�7�I�#}+�H�O]|����*�t�?�}��Rw�j%O��.}��l�k�,wcJIv�����hQ�����(�����������$��wWF��L���k�!��y�e�}~s���E8o���#c�x�u&��Kg
�
��\�������T��o�u.��Kv
��0EV$?C������
��k��`�������8
���5�$�?������H}@uN�*���'����r������Z��e�-��l����s���I'�b:������ZW�1"��o,�5������5&1������W����SwV�Q�^����s����o:���#�&5�0�Kkj�����Ts�U�D��Z�_S�;o�8I�����;��#�dE
��_����=�X����������B�~��1G?�������iT���w�Uc���=��$Q�g����W��P�#dO(�9S�{t�FR�,��Is�u��Y6Q������[�&d�!+��3��d�{8��H>����>7��������~:���-�%�D�O�C�6zsBUu���N��;�Y|�%;<����rH6_}@�CF��j���E��
W���$d�}�������o�UP��k�4F-.�d��q9����&���^4��a��S_���?���9��������4�z6����x$�;�����t��?�:��+5K�:����E�;�!��l�,�|���O��Y�t�����}�=��^���|�
%����s�4�b���^��xzQ����)��u��gtCu��C.�����NR.�R����,�w?�EL&b�,7�W�����<_�����%;��r�CE�9�d0�5>:���5�k�$vtw�/o�V�qV�Em9^[�}�5u���q_/T�)N-yr�$mNK����wy�QP��>�����>����?��vW��C���w��LD�~7����Wb�X�����Y4jg�M�P��R_��c#�`���z������{�0����B��H���Z]�p���)g	qzRJ��"�������@y�K"���&L>�j���{�G��l��`��"[N���h
��Dt�&l��$�������D�tfMVq�^�]�e���~F�^�2j}G�������c^�d��m�D^��B�����)9�O"v���k/���]Y�����?�o�l8oe�;1p������A�����]{d�����@1�����Z���te�R��EM��k������5�W_��	�����|�
9�<��<�q�c�(�����O�l3���0�����d�\9pW*IGG�����2�}Oj�}M��K$���KDT���|r$�eq�b�8����V��o@�}H��>W�W��Lf�?"���s<c�G�sr��1���d�S��;�q^IZ���/�eI��qh�-�]=������=�<�:��yQR\E�������w�
�V�{���k�K����M�+t�S9����,������mx�V\�9FeG���nb
w��N^i��
�JE�)#����V}��D\�~3�%2���)g)���KRq�Gz��b%���_&�~��K��yM)�H")�\�TK%?��qZ"�x�%
��K�Hq���1��s�!�\>����J��}����{�	���4X0rk
6�Ne�r�l5Dx���X"�)�\��<?�(%����R�I4�i��dN��x=���f���Wl��d��m����o��BD�N.�=e���SU���p�g������v�!"�h`���B��$���wm0���������,�:�g�w,�g�=_��b[^�-GV\j�I}���	�0E�y�'���4��|�i�d%"o��{#D���~���6��+�89��n�t��1�����p�}�$��G�������1K����=���~_x���dh���K���-x+XM��,{��HL")���+�r��A���|CH������U�U�?N�J���u�����
���x�+�qVjA���V��K��d�x�������L���{Nq������kj�0�����~N��K��M�^�E��bT���Q�]#*�.�e;C�X�5s������y��]�6�t_�U���������;�[�l���1�DA���/���G��5����$�1���&�����Q")�JP�Z*�F���<��IA�&dNDT��\�$�Iw�U�mTyv��H��V���AdA$iC5]�$�:�wb\�)u|���}����Q�m��?i��������k�4|���<�������|5�3����5(����
'�F��IA�{+����-!��l��
��<�qf�&����Z��9&cJ���e�W���T�9��������������4_i�]m7���������S�(R�h
����`q��sh��H
����
����k.6VS�7���:9O�Ha��c���5A7�+�]��1��,)j���9���f��r��a�>��������7ivL����!IYl����!]����Z������������j�.�]Sn^!�HA�&T��|����e�g{��#Q�T]�v�*�/g��]�k��FU�u&>���#�d��{'O�6�����LN�?����G=Z�)L��;��?#[>u�#���`���f��d4���`�
�
�wc���{l��A"�qH�������"�%K�)�E�t��tO���C��G�k�`Me9x�'��$7�d�8b�F�H"NC���"��R�DI�j���X:����*<VU�eQ[�� )�������Cb0q��GJ���R���f��rJR^��T<q)���$FD���G�#�KQ��9]�#xm=�����v��������������=����@��rY���l<���������;aU�-���'p��N�������?y}���Sw7
j{�8��Z��E�?��%������g�����p\��\�;'i=+&��&1f2���!�������'���qy}������ymuN8���Y\d����n��oT��3��L���y��\P]�&W9^s"e�O�2�v&����g���\)7IJ��\@��)�E����,��� IDAT<<��!�^�O��ZpF�}��\P;�W�S"Z���VV~3�����g��
�1���E��H�����]���rNJ]��k��3��]?�
G?���7Y������l���<�����O��0���> �'��n�n����)�7� +����<��-��o�o�B����yM��p�?�kl�YP�Ge5$M��&����
9x�+TF*�8������<)2?O�P���������pc���%�g�x��eQ�Ww0+�H�%�2���'�<M�C$�{Qb�A$����ov'�B��b�%�������K����'�#��"Hr�DL�9������zU��	������d�-I=t~��C���b���bn""�>�g��
S���c�Y�
m9'3�������D�XY>�'"�8�b/�~��&n��i�Or��G��]����U�p�������������<�1R�6�t=��5�;�T�������3��x��������^c�O�s2��B[�S�{�����ii�{l�����Tw��#��ND�kAMb��OE
��bJ��w\z,P��H��������^�?kv���e�{����mAXv�n��b�k����!;H��W�����_����*�t��+���/�N+<�s|ZQ�Z��ux���3k���!Yc�.Y����SxN��0jb��>:�����#��O��A����Um-�|�8������o��%�����>����I�y����=1��'���`j����[���"J�����C��H ��8�f�4��{{9��R��H������f ���"������I��c's�Ju��O�k�+[(�����A��`�$�"m}�L�!�kr���;-WY��SD���I��Y��b�����G����]�eD��`��p��3|u�egs�����_��7{������<���n4�~=.�@E��q'�"G.�&5����8�4��+?��x�<C��B^&�?�:���RO�]�P���8��=���7�P;X��v?�y��]���J��;F������,�8w �q������S��	]�h`�yox��/m�Zm�LJLr�B>����ZrheD\���r&�#x&���
x��]Hr;_�+����� �\~�����S�'R��sz�YL��,q$���nO���G(�=�ZX_�2���-�{���?�yf���~�k��w?�s�[����������}���:����k�����aJ�8��DD�V�d����r1I�eYs�L���!�5��q�6""N ����>�T�/fD�4u(�Y
|���
9�R�W���8p�b%���~�#�P�$����G��7�����}�A�0�|�#�����y2q^�[���!�*�r��rZF|��&6�����������"K����fP��<�����U&F������'FT��w��nT,�����g�te�m8�[\#��'3{s�(�)!��
�I����P�]������(|����c���k����")�ch�5�.V,���9��4V�����
7�����sP�G��P-��Y�~���S�"��s�)DDB�uv$���`��������x�x���������8�
7�w�w�������j{1��}r=�����������#�qZQ_q7T����������S���������Q���\��}i���D���c�{�[C�k.%!)���W���V���'�����;>�*���s���df�&	!Bh
�
��f�HUY�uw��uU\l(�u,����V��Jl(kA����e23I&3s�9�?��3	5e&�I���}}w2��s���y��|(u!��za���0���W���P��r���|0�A�5p�j��G��,�2�_UW�C��4�}�i��L{�uZmB�5�B����W���<��!~d�������s��a��SM@��M@nlW
���}.�h�d����eo��_C��@�Y����X4TJ1����^K�%p�Cv�E�.�y��vicu��bl��H��)P����?3�����c#�e�It�OjM@m���A���]�pXP��fC�h@0p�1f5'%���7�7g�)t��������|Z�1E���[�@	�ZF�{�p��@��#\�(P��U�|���u��y��:rO����&���R�����'����0����4���_����8���Y�����7���Y��W�B��1���e���9h�L�L��O!���� P��7Q� �	L�����/�U/��MJ5/>�@0!��
?:��6��rT>��m ����^�0��h����n�Fs	U����T�q���mm#x����P����5!�$�n�X�<T�C����^��;4��Z��An�QU��P���}EA�n�G�mD�I���eND���x&�E�a�fm0�\����>�V�*�c���\��R� �2l}������=z7���v���g�6�W�5���m�U]�U����1�\W����>v��������qp����4�h�ZTK�c:3����|�|���l�����]�AL��2����b��@9���c�63)�c6��F���G�@����Aq5s��;���dO�0��������mD�t�=�Yw��7}����sT
��s��)K�__=���WEAR�rA�i��{���p� ��dK0%R������1�������5���e��.y��%���&x	�����[��g-��W�����
A��c2�DX� ��I�2Nd�7�r1�r
��d��';N�����L�^�uL�����O�%���I7��1��:����7Q�P�h�Ap�pB��1�
,����x�4�hf�P����-&Y����Q�Q4
T��l��uS ����#P4���M"��[�;��}x�U��}I� S�Ye���K�0���Z�jD�����0���
��*�~��)��v������]<8�/�Ep��{�����>����2���'_���rT����6��V��~��!���������j��@��!W��ZF�7���#n8������Q�!�����"g`
�dH�H��-m��R]-
�$-�F0�6���{P0	�C�h�����������X����
����f|�i���p����L�]�v����/D�� "�:���w�q��t.<� Xu_�1�	h��}�m\�i�#��6gP)N�N8�C���k�EL<[8~:��c cZ4�pgM�G�)����a�6��&_�O1	6��/���[�C�A0��1h�[�<��@��[W��^~�I/b !ar_�h=����E�5���p>r^
-S+��=����q���_��j����=���M|�������Kw>��w�$KH��Q�����?��o:��a'�������L�+�R�m�����[�b��DR�'x6k��`���)n���T<y�a-CJ�y0�������f�L�c�@�u�RO�=6{������k�3(�1Q�yl�� R��]�����
��d?�������o�D#e���K���_�p��{d�+*O{%5�h�i��i������_�^N��������(����+?�:��b�����9�2�����V���7L�R�=�'7_������V���k���y�W�hE��v^�~�� ���;AL������w���e���s�2���s>g�1pk�Gi�"T�C�b��Dd/>�(o��C7C���{��[N���ng`�bk��o��E5?-��S�+�wT=]���Q��d��1OdS�k	-W�J�rl�H<�0X���=������Q:
&�i2�������P�>0�l*f�^��}��[y��@M2�@������e(���R �#�^X�u��5~����?�M��������.�+A�
 �.�lD�#�U���z��-)�����s)�&
9���Wq��;7����������h(�'��/�W�9��$�@��y���w�G��-�OA@=�^x���H�N�m5���U�M���	 B0�5���l��.����������N!&b�g�������h� �R����'����z_�L{���D����p��c<(�d?�Emt�p��P�)�	Z������O��7"��S>h���I���3Wl9�����+��f���������W��g
&��N@A���F��`�8��~�������S@�G�����!��`���5@���2�}�Q�O��G��jh����#G�����:���$�z��B���zI�:�"�����Z�_!GB�{�2�'��My��CU�����l��Be����j���m-�����N,,[c5'YMI�9(�A}MC����\��>	�I�z�o�_"�����v�����l��5;�����k���0�^�^�P���P<�7��~w����!���J��;
 ������������[��V&�e �Ux����A��E��"q*�Y�O�h��
1��ok�F�>�J��e�'"s����U��r	�_�h�����4R�����`�x�7\�T��U�^(��d���{���;jk��-5By�S ��'�Hq���)�R!�A�!���{O2��gV��E�O�nJ8b��qK���H���9�zu+�?��@��
��Y��"U��t���������O��4��!W"�y�as+�6Aq���#p��i����y���`����0/��N WuF)��c`�������?dO���l	[�q��"���z����t����{F-���������ytl��6��p��@����
_����+��~w���&�V����p�����
���h/k�q�B�D��2�V���{WO2Kq
�����Y#����{�@�kY�����"����b68t�����!��KZ���8�wl����������+��g��Cc�����.�2E�b�7L��v����T7�����M����M@�9,��1|E�����0����P�$*_�81��{�KO��R�/�RK+�������	�@Hd�y�����/�t�%����6m���1�4�:�AqjA/�>�L��]�k3L�����:���!S�Kn>>{*v���"�
J@��Sq���Cez��~���k`��>9�#�%�	����y F��_c6�bN������RZ�{��0�=�B��P��z���k5K�8�zE5�����}�NP�a�})��hq�����X���?����p������?��nX@�Tn_q%�
�0YQ��M�l��YB6��K,���I�J2M��	7�h(��,H)0d mN8��
;p`2�x0i��>'���_C�,�B�U|R�g3*�1�Q$N
��U���[�%���$�c"^TAa(0dA0CL����@}�����h���V�#��|r�w���D=����]YU*����LR�I��A]���3�R3�p:53u��P<�����H�H���g���J$�K^���f��L��X�eP�M9GLB�w`��MG�Z�2��>5��o����v,��]�S��Cz���r^�����y���B���@B��x�U�}D��v���f8n��V����-wW�����	���6������6�L���6��K�@��w��a'��0���Q�,R�/����~����
L����q��QQ�"q
&A������a?L�k	����0�<� ��@h��r�7@��.;��l�����7�.9��~y�p	D�U�������!{��^__��� ==������'$�b(c���(��z������V�1���b0����U�����T��
P\�gCV�_�N��4��Fk~w���GQz��U
z[������[����|
_���[�RZ.��
��nb�+N(N#�z�����o`��[������+��`�^������XU�Z���Lk��G�]p��!���1�[\��)j$�B$��"m��*��>�!����P�)���Nd.���h�}����q�������B>�tO�1�}�L-��j��`��)�	�]�!7��aA�r���-��������P�B���/��e|��}u�w���3������R��E�g����
8���BRRRv�������{&�i���������f����� ���?��[oU�`�����|>Q�;���k�F�-{�j]�*��
Shmm�V��,����hk�wg2��Aw���zJ��<��0d�|B�I��p���nd�^S�""�!����I"���y3�{jBV�5��sH �/e_6���F��/� ���VMV
w��j	�&g�B�UG/���n�k=J��`*F�����MIb���u����@��0��6��:�L-S����.�9
�mM�&*p�'��Y�n8����v-0,�7d���!#j����v�������<-#���&�;�Q�>�����W[I�]��>RRT�e����r�����V�����������>{���.����-Z`����.((������;�/_��c����>�����v��_<h��m��=��3f��9s����~�����;7
��2J��Z�Z��p����O�'EN�F��]vj*
������#��S��
@�����
����x��/����S\i�l��z��+�	��U.o�1���Z/R*�4M���E��Uu�cx��K,���p�B��@����$��A�Pj�T��\���RR�O�������H)Iq0��_�k�T���NQ��.���dm
"Dw�*��!/`�$����D��/�5C�60
��`��x�T����))l�	����+))����7o�
7�`��I�������O?�������3g��233?���!C��s�=���jA���>��S��w_bb��%K233|���<�@t��@V���K�7S@A��_��qD�?����Z��������v����- &Vx6w�Xbc �X�������h�������_:k��m��;}v/u���Q��{��2�Q�
��J���bD��0�@�5�k���tu������9p�������;�o�!P�@��o�F�?��
��|R��VgZS�������e�&��`�rb`�e���`p�X�������������>}�
7� �
7�0l�0��2D+�~����R��?u������MMM���ii�ht��})��y���Z�����&1,w�����K}\�E���(a���,�U�P�Xw0��jFa{���Mb1&0�A��y
�.���i�{n8�����^�P�D������1(�������!,�kY�DD��7�	J�j������4�f����.�7}3o�t������s�x�{�����m���D���-���LY�#�V?�L&p:�+W�9r�3�<��K/������555�����O�N)mjj�������$m�r�5�D�]�d�OnT�~����(�����#�R�`Z�.���n ���c���K�-S?�pwxS4������w�SB��Y�
�����k %1��-(�.���g�p)���l]N�$m�&��/F�1|#
;������<>-c��3f+T&�K1>��#��A�Z����o�#i:,g@���m(s�(������O>y�-������E�]w�u�8c���5��W3_����W�������*'�!D��~3��*��}LKT�p�1D���
M���/V~��wA��p���l�K��7�c��dSf�1�'7�
�o�X0$}���Qx'� ���n�������?�).���.I�2(��8`�{�/��QD$��P��d@�%���(��?���*��&�1���}����wD0��K+��/�Av�YeT������_��D����2gq�Y
�H�T��2 �x>�k-�$�M`�V\	cLG�y�eYp�-��$��p�FA�����U��a�������������w����
�`6����+**�N�����K���
�i��"�}�
�-]�)H��kKq8�� }h�j�����@������5� �k��[sS���I&��e IDAT��wyk��VJ���
��L{~fb��E��
������]2\���zU������q��7�9@D4|�eP�����dL�`:����9e��e���W����X���_�	��)IW����\��jb��>y��w�}w��m�F�@)U1F��?���,[�L��`0����X�b���m�@�kw8������IJJ�b��� �B2��3#w~��&�Q?(T��h��w� �{Y�&>Yqz
	������-Yk)G�H�
)����qndD�%���"	�JOq���i�s��>���!��7����'�x���|l��+@�X� ~d�\I����$SBy=N�����Ch���Sz��D��Z�=�����[a�\y�+���
D�yd���O�g_F+�(�#���}��1&���k�}��7~������s���iii��
����;w��E�-Z�l�����a��%%%�{��{���9s�o�q����L�����}�������?��?���������Y��N� <�2�k�V������8=���i�`��L��Z�=��	����^��(H�o��������d���N�	(����u.L��G-�]J�B���M�s��U[&�P���X�n��$��G���e�``1Zo������X�3�333���EQ���;6n�x��W.^�X������sss.\�p��������Z����K�����[��q��@���>���p�g�_�^��?��?���o~��`Jk�����j�A�%5<G�k���&]�������UU[&v���	��H�Q ���1�Q���~�x�������!7��D����|���?��+@�Vh��]�n���XN��@���9JM���i���
�{�B�����7w�6���������TTTHKKS�v�������-vv�/_^]]�(J|||BBB��	&���O�jd�^�����Xi3'�`���.F]�tH�v>Mqz�z��?�-��&��
=�R���p�Ys�8K"F�����Mgf_=�P�**q�v���BD$NC�7 &���}�wvr�A�@�1�`��?��p��:^b��
;Z���z�l�v����a���K�����4�]*��x����>m�(���JOOOOOZ�G}��������7��U��������j�f�����qg>05����UNO�v��Q�/F�����`��S��8�fN`�������2~5�v ����K�@�@$�=��{U/h�8��SW�p�����3����c��k���~������� fOL�����WE�~)����v�w�
�*����p�9iU�%�?��{���0��K1�&�N��Pc�����CQr������4'����?u���P�/��4'��;��)CU/�:T>"RF;��GB������^
��8K���
wNk���]���E0�����**�H�[��� "FDD��1y��Vg�����\3�>��[��Y�*��;������
�����o*��F;�OP\S�t%�9�'w&K��f-C��vf����;�2E�z������s��p�v���0Iq��1\��~g~*���4��q�7 ���S������j�2DZ������Y������,������Eg�)��5�(p��:����Z��P�@s"2I�����A��zt{6��;r���>��@ ��E��9E-�
�h��x�p+�)�jN�e'(��x�rz(Amb�{c�]P��Zc��v�=�)�?��4���������m`�����;��SM�RJ9������4�v&w�_�N�0��5��(,��_���K�����n�sZ��VJ�c,��u��������C	Fp��w�]�}�V02w�Be�u��E]{�{�w�|t{1i����\��;��JW��$�@s"BlU�(�?M�Z�F��?����8e����nI}e�]j�!7�9��'kw��Ay������Ig2��d\)�l�h�rU��pw�!`
����s���rH�a��O���kv=�����noN������P��3��?1�@���8��CU/�^�2���^�+���#��>\
�;�����QQ
��������C���H��@���+�p�c������X���S��`U����#��%��
��������j�������!�kw��_a��"�5Z
�E��������-�xP����!%!��0��	Kk+T���_�h�����9M���Q���������+�Gc��fu�P�����_���@=�������y�����~o��CSF	e�A4^�c�d,e.���J�F|)���R�����D���2��j{P`�C8+�X	��U5B�R�;�<V�:�
w�	�����*J�p�P��33oaN�&m���/F�1s����PN����7gp����\&
���Ou���R��_�������M5�d�i��{b���z��MR��a�������%����0������I2�e*��#s"���~D��#s/S����+���k������{�CT��Lgf_���
�#�g�!��/�Gc�H�����q��5�O�m���WQ��1��U�=��Y��zo����]Y�.�H@*�m�������g��u�����P�bA�����^��0���<O�aD�mBTk�4|��/��M��~���3�hc`*����?�����RW�;�>v��s��	��H|XF3A�;eJ�����6���~������t�a���PH[F
���y���U���h��������^U�l�,OzC�5'�h;�����N���\�a�����OS�(HjD;e�g�u�iL�8��H"0d���R�M�������^��M�`�yJ���v
?1ALD���(G�%�����q_�N�������@��o���G�\z�?�����������:o�_nP��r.��{���sz���@�V_V��8A�`T�A�pz2BLy�D���	���Y�T�w�ZI�%�fNq6V�)�p�v7����%[gg��~�{��}'����YR-i���R��W>���#[L�E$��e�w�O��qNwK��P����#1�i#�Z�K����30�1�r#�VE����M�`0������o��Y#����M��2���w�y������n��z���[��_�.6Jf58P$�������y�p��B���������w �Da�����A���A���e2���y����m���m7]���/I0%%��A4DS��j��e���'	�9%5!����i	���3�M����[~(�Z�s�e�)S����]pN�I����A�\H���j�G@�^��\L�e����D1B�fJ�?cN�\[�� @�G������2�����u�^���zt��'.�1�uA�-�1���qF�����u���j\��`�7_�������F0�����m`��-���\��a��o�S|F����6}U����PF��jWS5c�"Q���j�M5{+v2�?�L93����|vLD���zA�i��U��W��EA��f�N;�����a���c����$"����wM}H��?��N"�^��`�R_a�������
��]������Lv����{����J�=��
�<��0��� �Ysz��g��o��Cs��G��pe3��Z"���9�isP�D��e������}3����D</o�yyS*��j<>��C�Tz}��sqF�@$56O��F����������;�W����JQD�������,'y����
���~�����H+�A=Q?P9�iE:��"��X�F�UU>Q-�fD��s�D�������fj�)Q;}B9����_�;<����,������p]7����Y��nI
���j��`�,�����"M-A���r{�4Ye�u\G�$
RR\zR\zN� 7]���%�r��������TS��������CAhf�+T�7���5g��������u�!�����0���yH�`
����������@D��mQv-�24~��{����ig>#k���~p�w�"D8�=��
��� �PF�t<��]��Nx�bJ[F��\b!���=������}���
�������W�d�Q��Vo?p��@���g�9e���q=r$B���
�����6�swNg;8.C������g�����zj������H�]'O�3��s�����U��c���p��������t�U��C��@}������pp��LUT��Is2Q/�~���
�fC|�5gp7���b"�D��,�z�I�<�s��|!�����pZ1)��ep���;C��Zj>1u����������I�/uXg���h�fT�;@����r�
��J��m9�is4�5���+�/��*���6B�+S��V0���cN�zpz��T����-������1_$J������|����e�g��������>!�D��@D8�G�t�W�������76m�V������A!H0zA��-��l2����L"Wj��1q�{Z?p�=z���3U�@@�u�B��B�\��9��9`2 ��rM�^�k���')��8��`~��!W�������a�������2��-�eV{�>E�	��7�9Q���V"����L���i�a%
�����*�E��]�Uc�D!�,�)I,���T.Qs�`��;�������������%�����	�p�^DATw\���������q���������f�
�#���3:9�V{��Y��1D+	�t��ua;�{#@
���@�p:���� ZQ�t�\��P���g�+q�=z���fI4@��wL��E�k�E�L����2`�E'������������''
��(�����)�k�`���eH���|��H��E�M"�����q�;c,V.��s�j�3�X3S}E���|��p��v��\����r���f���>9����I���V>A-a+�>�70��m�?G���k�&�������z���-**����	!A�;//o���������������x@���������_~YE����K/��jb�{������^__�(�UW]u�WD���e�Z��VSR��U�D���8��������2����
�C��b�=�4����0lrz6i�m������vp�G�; (NJ;{@2��Fa��3{ �<�555���Naaa��U	�_~��>��z�^��>x���O=���q�jjj�/_~��g9r@uu���CW�Ze0�����W�X�"z�T�r�`�I��B��X��W��pN�N�^mb��y����D]'A���!��;�2p�d%E;��t�$y	�j��p������ji����3{ &��.\8v�������m��}��)~�!��S�n�����,99��W^���Y�z��l����/���~�!++k����,������ ���/�=Nw���i��V��q.�E)�c�������{��D��I�)���6@q�\�x�a�j��B%N=��>�CG$�����t=���~B�?�������>�`�����1���v�����t�\��i[���Ms�\���





c��5���?�|���.�}�����/==]���Y�6m�E3?���@�����c�l�j�K�I|��pN��		��-C�����5���^��P����������~����C�P��S���~�`����1f�������$�B��B�����?����744L�
�>\+�%�rJJJBB�����G��H�B +�3�:��^�D�U'/����������,x�l�W�=����b>0_����Y*D�eoZNW���Usj��p.��3+u�2����cwc�p?|���W_��O���w��e���_|��~\����^�,��fC�a�9������!(C�=��EQE�s����uy����u�c�f�Hi\���9IB�2�;��n�A X���;*�I���@h��%��h���' 0$��8�;���V�L�H�c��23�#������o������x��g���jj�i1;w�T����orrrccHjt��u���OJJ���kj
m7�_���������(��F]!���4%�b�(�H�j��b�V�k#"s�����
|����0��'���aj?a.@��CoTZ�&�
f�G2���J��j��Wt����W?�a�E���4|����_SJ�|E���/��u�p����|U�K�$��m~L�o2!�r��������/l��3��o�n6�G���'cL�������g���~@)�eY��K��x��jkk����~?������������d�J������B�E5��p�Hc���_�M��?�;��Mi3�����s*�/��S@H�[�dD�UU��F(�~C~�{)����<0�������������K �f����[�8�T�$5���!t��Q��@v9�����������`bk�����#G�\�zuuu��m����c���Fc~~~�^�n����������_=++k����z�<x���[��__UUu���x��G<�������<����Z�j���~;w�����1�i����w�H�h��d�0
�g�r8�~f�~�Va����-��#.�dL�v�"��Y:�L{Mq ��9Q��B���k����z>�*������>�<����_�b���S����NgJJ��/������W^�<y��a�x��
6��v+W������I��V����>}����?��[o}�������8�N��v�]wE��D��P:��R�J���"��*�W���?����._(�Sy'���u�~�\� m��Q9��m<*�@�<�q�5�B���41f������r����4��qqq3f���Zq����p�5�H�vk���|P__�i��lAX�d����+++���Tg|� e�g��C�!�D�8�����0dA��`A��'E�Uy6CJS y���(_���S�1�z����('���A��P��G���[��K��4�Iq���$]w�uG}�f�67��s���F�=n?�R e��w�*���I�p8�Z7� ��,,��TM@�q��$H(���Ouo������K9QG�T�o�;�t�u������q�{���[�n<Q���i���	cx�r8���Ca	��Q���\���3H���b��S?iW�/����'�0c��"L0�#�dq���PF/���X�{���Da�����i-�)��;�����������BON�
��O���k��s5��rw;'J'I�I�F�?����jM���{p�=:Q�L��5vK�k�#����1�7,��Z�Y��L�K���f��,sy��#�S������y[r����E���[E.(u�Z7�����p�F�Xi���Z�y�C1����kw�p������1�������(R%���8�8{��fo)��]8���)�_ad�����&��-)�
�h���.	Iho�V���C�����%0�����`	C6�4�9�A�U�������-�w#������5�8Qi��5�*�l.P�V=�]�}^n�s�cM�{:���[�kp�&=6W���p8m�>	�\���J���KQ��rbSM���-=^���3�a<3������9\��Dm���
��d����8heS�[9Uqj����m�U9���0F{��L��K���u���E��(������+�~m����8��y���P���d��c0f�V��{4,�j��LR\;��L�wiyL��vLy!������J��3��C��IZ~*���%���z`���"'Z���B�`�u�:�k���'�>��:7����v���d6���UK�
V��1aN��Y0d1�����&�2�g���(J�cs
����_U="�)�`*'���(�Aa���4M-C�y�s�=��4���Z<+kw��
��D����	���:A3���
�<E8sH [������
����6���H���
5M-��k�r��MPF)ST��$u��J������N{5G� IDATg���S�te�T�f�p�B��F����@e�~��W3S��^�	9Q��B��@�m�Sj=r%�g�!�797��o�'�������[6U�Q�~������(��*������$�"5�	�����5��{
��D;RR����j���|��}
oo��:r����>���c���[�|9c��������M�V<M����]l���~�������~*	�O�����Z)
L�f\Lb� �V�O
��X�l���78�N�=���_q�@`
�y{��p///?��s�������o��A�������_}���n���&|��'7J���n:�zF08������~�E��j�E�FUQ�����$�����Z?���/�r
���mo<N�#�!�(�j���R�y|�:-6�6"aoo�%T���^;r���/�`�������={�����7q����@�	��}Q{A�+����j���������S����3�X�!�G��f�SO���WhB�U��81��VP/(u�z����A+��g�0�?����i���`����&M�X,��{��q�PH{8RW���S������hU����sC	v��ty�T�~M���M�U���D�{����� �`���Q��������^xwE`$`\a)��;�����PJ�q�X�KN[���&BT���w���V��5!�
��Nf����*��`��!�wHl����������
`���pb�P�h�0�8����-�cxK��p?�����'��� !����Y�F5@9mBD�j����2�O�H�1���&�p�O��O�[���+��pb�`�T!��N�g��!X���O�����>U+�^a�F-PPr�������C\y����=!d����0`@qqqRR��jMOO�M�V\�j��niW���g(n`
�����]^?U�� &�WW���^��A��%K�7j�41	�L�l������6�;��J�L�t�;'���


�����k��\�R�$�X�~��|������me����@�T>��o��s�8���]Z?Uq�
?	}?�kH���1�0YBq��Km�&%�wN,a���?e"Gkg?'��fn���O'?!$;;���_��|�$�����i���[�vs�=���B�����*���x���a@������,�'�R�8�0b"�D���vD�;{���0���EN,a��!r�^���03Tz)�%eZ����(R�3f�������s�9uuujr*�#�3�����9m�%9��b��j&tz�T���9��%�c"���KE��>f������l��6���*�L	G�S4U���2a6��m��n����;�_��Wmmmnn.�Im7���k�,A�����z2N�I�������������yW�0-����5�Q��
�4�(GN�!�4����c���A}]V�.:WI?�;��s�E������.������ ��(k����d8��c��z����S�Ys�2�q�qBZ��`
���
���"�w4'��I��b�\
��k��'�������T�1�x�����%������Q����p8��H��Mvv��Q�XW�Qxfjlc
���S��G[�L�\0�@�Z���6��T���r
"�Kx�jN*���i��s���������o���?����O>|x�{����{�������{�!��>hll�ey���]��WD#4�{S���!�S�^"��
Y�:q)�@L�y'�<�S��4��G�SP2��ySqb��L�V@�{#��:t����>��n�
���7_w�u�,����������dY~������w��Q�F�k���<y�Z����~��5�_~9�-[�\y��


&���r�Y���>E�2z��m��%&&���[���1++�k����&D �m��\O����J1���<[@0�E��(��|�?U.�`����>.'6q����@DT���Ot�P�#�f#�<�0���=z��Q�,HII������"z�


7�xc�o:4k����������o���
w�yg ���/


����z�jU�r�����m{������WQQ�t:-Z���A��S��a5'���\O����)����R)n
��!��'�G����OU��-�O�CL�M��Il��N,�q��h�`%
�N<�7�t�M7��~����Z��(F��}����w_v�e}���MEE���y��WSSS��?����.((���9|������<�L=���y�~���K�._�<;;��/LNNp���/^��������h
4x|Zm�k0�z2D�z2N���@@��U�/LDm5��}�tFN��"���������/����Uiz�S#���|m;�#W!P��w�����ph���#G�0`�����m��]��%K{��U�Vef�*B��3f�P�S� �(��,_}����t8F���ht8�� //��;�'7�d��FieP���������#\�;���Uz�'k�V{���~j�Q���)Er�jNl/M�����?m�2����|D�pWe�����w_uuu��}�O?�4z����
~���^�p��#�L����X�G}(**��������8q"���t6��4i�)�N��D=!��n�i�����]��z2IW�a�����r��'�(.�N	\!�u�)�wB���$=� PE�
Z8/��^5'�1��3U��VeZ�
���S>��H:�{����{W�^���u�]jnhyy��7��q��������0^��Y�������pR���JM��W�^�%(z���~4hPRRRff� ��-�v�:vARRR�(Jh,�Wa����+^���,nM
&C��c&!�������">�9����R���0R0A	4��SHd�����e&�@a����
��bCo�lXpQ���a=`h�8��`aM��8�:O��r�wd�d0��NP�o��@��Buw0i����Q����C�u�Y�<�H�������WB*++�k��[�z`U��/�TM�7�x���#�����`4���7l�����s��A���<x���B��$�(�999������1#��E��no�A42�i��}Z�t>�;���ESFN��@<�@8�0�|~
�,������F�����D���wH�����7��b��`��LI�=3���7'���+q�m�gal�<Y��E��~yY��a<�C�!T�h4�v�i�~�UWQJ�{�_}��7�|��7����k��I�����g��a��f����[����������#=====}���uuu�x�	�?s�����������Y�r��1cN~vEQ�;�����L]�P�����zw�����9�H`�������1���,9���M��?z�=����Rw6o!Nw�'%��l�A�+5��I���2OD
���x5v�(�������}��#F�1b��!C80...77w��	�6m���K/���;v�?^u�����
��������#F���]w]rr���So��������Z[��d��A��~��Z�3UO�z2N	�O%Z���8�(OuM����(P��q,��81?��d���v
p9�A����[5�TNx
�Y�f}���/��R�/'O�L�X"8
�5j��i��|���V�^�������z����}���;v��:u��`�?�����v;�������9s�466N�6��� ///��������mV����p:U��p����D]��������(b]��@��B3�n1�'�Q@�kU{~�?�������iKt�G�5n�����/+W�LOO�$i��u���W_}�����KW����K$I�<y����Q9r���#�3�����zJ�<N�{�����������!��)H��v'�tf���a���(������_����[x�p�	c�\�`2��`���{>���@L�9�%wQW�^�p��O>���7�|��7�����Y���ov�
����r��A4��^�oZkS��)��t�N��������
L�y�w�Q$ZQ|�&���9��P=�K��Z�\Y��n�w			��{��(�1����;/����"������g"��{�~@�+�6�$�V����D�~*��S=[�G�������(�Z?�h6
�oLN��� XP�|�~�|`>m��^��2"�{�fsv3T�;@J��>%-�dDoC'��e'�O�����7|�E�����9�a8��`�`0(n(��[�P����;I�D��N�>}:9_}�o��B�r�mU&5���p:�����Y�T��s�5 L��6���v���;<������wk6�M�@�1TAi�A�""����JQ���R��+bCETAB	�(��N=u����{������MB���<>>����������9g�R�r�pn�	Jy�/MQ�`V �$;5���.����W�^���.��qG����8���3�b`k'���������s��&��D��z!�;�&8�F�*� ���~����8H-�pnL}a[A$T���A�)����]��Tw���Jl�B���d�]�����,#x=���	E?���������v�:p�iF���^pn�V�����V��@-�3���u��^�������I�V<7A�����E��.�����y=��=��B;_z��+�pl����z�&s�~��"���7�+S97�h�"\F����r42L���p���<���V	�Kh��Z����s����Oe����)���o�V�ArnP"z�a������N�Pb���	�p��l�Z����KI��������p8��u���A]��� ��o�V�/�z��q'���k�}-\�#��>b[��@�B�qr�^��	��.�������� [^O�������@*�T��3�1�:�{����5��(���qcpn@����"<�.�~�0���:�8nB.��42���[y�U�E�b�����z2�u�\w<I��j�@�F���M�97f+��kP�W^��sc��	,������������&C���w!�rT�^��S�����VL�c�h0����p�5!O�r]=���AP;sw������
�W]�A];�Tv�()�+��?�2x����	-�g^D�������C@!(��\����A0���s]z�X�b!�h`KG��J�N����T�9�����ToJ�+����'��?����
�����d0/Tq������e2e�$�[$^l�P=�x^O������#!rq�|�y.�"�����7�f�p8����(��ubO]Zu C��TU�U,T��7CDoD��w����`s��A S�Bo-�'����p8��0H��
�v���+��7�*u?�6�p8�_��	��)�U��Uj�cW��P������v.��8�3�s�2&�1�����+�d���/r�q8���gp�q:�V����g'"��(j�����p87bd`)?�U�0��{�x_��{��x5N?/��J�3�:��\���Q��@�0v���p�����&_U`�xupVm2L|U���QHIG�� ""z!�i�� ��a�p����9v�T#a8��>�b
��P�@T*��`=���9����)��D��Y��������/���<F��pn���	�d����\��x�����)��2@�C���a[
�/����u
�k��@BDOn<��y7�;u�_rj4�BLB�30��v�p87(\�s�~c`�����l�Etd�BD&��<{��@=M=�R��8���&�����q���cpl@4!�InT���\�s�u��� �hfc�v|w4�q#�R���Y�j�1����n���*���y%�pvd0b���7*���p.��_W�{@� ����d��4@�	�7�E�j��C��� �Z��q�q8������N_����a_!`�����p8�U�@,��2�!y@�7��@�5��luA���'�n��97�s]����?U���+����4�����p8\�Wy���~���
��<�ED�	�5�f�p�?W��c|�@4��f�n���p8���s��+�t��f����9��Eh�T�O�Dd+N>�����������\�j�q���@�e�s9��	�`0����g������&$$��Haa�,������Z}����"�n��V	j�(9������zfb��e��Z a���p8�K��y�%I:th�f�RSSo���
(���jMIIIMMMMMMII�Z�%*��!��7n<k���o�>}z�F�6l��Q��^��a��:x"�q&}o�N����S/���w�+.vuM�>����p8�V��X�b����5���O_z���G��7���LKK������o��6�4--M��?���?����/���[o%$$�=����233'O���c���g�3f������5���`���Q����T��S�����^D�A���8��F��}��[���p8�N5K�9{������^�w��9�����������>����v�������j���a��&M�����{�1A����w�yg������}�Q�Z�l��e���&L���&�<��1�(o�N������.������a������8�s#�Q�F�5
��b9q�D^^������4i�Dy�����QJ}>��w��'�P�k<O�Z�����JJJ���������Mg��%�Sm(�?���.�ga[
�iX�!hA4�}�\�� Q�c��=�9�sYT��2���j��M�v���k�+V����G����f�9--��=��z<���<���R�.#F����A��.�V C���9�jF���bu��>86�ypd@
�R��������>T�\�s8�r��Uec5j���|���3g��4i��t���X(����V����!�HR���~�$Q?o�N���5Z�H������d��Q#T�P����N�$���vs�q8���HAH%�tT'�{��~����o��g��&M�|������
�k��Q^,]�TyQ�f�����|����A��t5j�����X,��\����-D A��_�vHH���N�AUL�N���lQ��
�����7}���P�Bv���r����a�zMY!���v�]9��jc�,k4�v�R�d.\@��������E�M�>@ff&%�=..���#f�9**
��E�����O�����z����G�]bv	X�>B���F��T� �;�k@]���IDD�!/����8��r
�E��1c����w�>r���K�����v��5j��Y�fIM����_�Y�f��k�p��!C������W_5J�3f�h��}���}���Y�rssK��_�GA���K�v�I�qs8���o�dT��,�Y����LH��j���C��]���4��d��uktt4����U+�� &&��8���gffz�^��4~��1c�(�W�Z��c�9�F��{�y����U����J���4A��d/��U.������t1�Qr8����0dgg'%%��
w999J�A�Y����
���l0���l0n�X���			=o%�]�PEf��Ge����.U�7���p8�R-��\@d�+�bcc+<�$�_�{@� �a�J4�o���p8���7���{hQT{bdn���p8�U�! �a���1�"��
���p8��*�-D��n���HNn���p8�U����@�2y�-����9���p8\�W!���F3S`��d����p8�����*![ [�)S��Qe�Fq�p8���p�p�jfl23�ZU�V����p8�����*��{i 9F%�U�����p8���{U��A]2��D��Z7���p8��*&�A����4*�
���p8��*�-��$����V�p8���p�^��>^V����=����p8.���tA$ ��KT���[���p8���{C*!;��"����6�V�p8���p�^� 8�w�����&��� IDATp8���p�^��,��P,e����U8���p8\�W1��A�F3x�.n���p8�U�"�B0�Z������p8������aM���jfjXbd}n���p8�U"���_*A-�
���p8����l�T��;����3���a8���p8\�W%��`���"�����p8�U��D����3���]8���p8\�W%���?e������[���p8�s
w��u�xe\%��291�o����p8��R���0��;��+���jJ����{���R�b��i���6y�d������y���.������Occc�:x������p8dY���{
��_�T�.1���o����B���p8�E�f�����_��%�(������$I�����L��v��n��)S���������;]�v5���(._��E��O�PXX��i���t�Z}�����/Z��_�[: x)�!|�T���p8��P�<�k��`6��F�������:�;|���U�����x�bw�}wFFFNNNtt��������t�R�N��Ot��q��]���c���$i��M)))DQ���O�}��6�����:��B���p8�E�f�#F>|�h4�z��I�!.�K��(o0`��f���w:�N��K�.:�@���?����SRRj���|d��������/��A�h���)�y�p8�������d25hX��z�����#F���#�<R����s:��{�.y�������$)&&&<<\��W�^���B~��u��&��p8����{	��
����F���+�\�m999n�[���#M�4a�Y,��g���0��i���TEQ����
�@��#yI���p8�B*����:^�������~����9��q���V�l��]9����r���X��W�^QQQ���������+��E��3g���\��(����_'��R� ~���%��|I>�9�*
nBD$	��4 �Q >I.���s�!� �G�%'D�%�^������p87^��T���<p��e���X��G�%�)�/^<d���rP�$Q,X��O(***,,��|\.��l.**���pnIQ���[��"��t�+������))�N{5�NL��b�?�W����Z��$�i�G&�~3�l��3-��osx�m���V��F�����P�[R��c��p8�s�dgg��
��+W.[�l��q��~��l BLLLjjjbb����[�l	`��9������&�)---##c����Z�9r$��S������o��S����k�����m��	.|�����_;�TE@ ��8���_�
*5p6g��~�#�{H�<Y���c�&�0D��1���yx��=��R���:�K�m�W�v`���0�\��[�O�)rDt�	��?�p��������y���	��5�
:�**\�-S!�b���={���"�}�����/
���������i����oM�5rks8��j�1d���~�I��i�Z�H\\��M����W�^��wo�^��v�Z�JYoj�X���l6��h��������)S!���c���5+**�b�DDD�<y�d2]��n��r�+��]������:,ku�o
�5*�F%��eG�8h�������B E0�!q�I�Ig���*�D�3� ��kFunV�?�n�vK�*q�W}�����lfP1h�	7�����������~���u���"����>{\�NM�0�T�>`�7�� X�,��>���f����v8g�I��R!���a�^BH���=�#&B��@2�",��o/a?���������������Uv����E��5�H�v���5M�5L�7�Zt+�f���:��[`u�|�$w�-����*Sv-O���o�*�����yh��l��W��#\��r�����o���9;���}���NvvvRR���p��ysVVV��N��_?%}E�������#J�Se�B~������q���2
k������x<�=��E�~��=k<�_�-�r3&}�[~5��*Y�og1�����;���p� �l�(���:Z�i9h�����V��7�}>����(��������j��Y�Z1�>��I�-r2��4��;K%^�o���~]�7�?����+����{�c73tZ"T��H~P./�����m0���]��kq�[�6���?�����n/4*D��K?0�.o�6
f��];�h�U��!�8������"�(-�N����9���Y�T;�P9���DN6d	'��� ��`�b(!��F"���U��}��A�������9�>���b.v)�Q\����'-I���>�_��Nl��SI��K1��T1����L5e����y[�������"<��<H~��3��� ������$���������U	I�k����|h5Mh�R	;�(9�,{��>�g�&M���umi��G���5W��9�q�  �4:|�&�Zh��� R[V���<e�������A�t�r�,�������0]����;^�o>��������9�J]Z%�l��ZQ�D�K��!��9u�q���u����}3>Y���L��oFU}g�$S��g
���)rx��~��3a��U�!3������-�������U	w���} �L�+g9�xc����S*�'N�[VC`��&q�
aQp�SGS����]�!h�Pk����S,j'YGL�������?�:FQ�%=5�S����~@�[]+�f�4���G��4K��8)c(T.m��v�5�J�m�,���'���N(d�������Q�.:�����v������`�B�bA�D�8dO��i�B�!����^�|R��g�A ��#F�m����C��k
>�sN��f�
�(!'��N�=5S&��k�rk��Vu���B/��y�\����s� �z��Y���;���I���������l<dqx�?! @a���a ���`sR8���{�"�2c+�T+�y~91!r����[�T�/�r���+��6|�=0��y�*�|��:����N��<���4�W�M� ���nL�sev������o��/�-���������_'���O#���2c�>>2,����s�#=��G^���%�][Q�W!�fx\!�
w(������\��w��!�������G�&��8c�;k���P	e$�$���J$:5���u�4�}�����p&�{���{�{���x�aYf��1���V����2A$�vL�5�g���������eT���{�X�<nx\(.�  ��N�]���=�����]Y�~)�c�0��C��c����\ET<n�v�ga��s���v8���&D�z��nMb#��tH��GU������o�e?��s�t�K�
�ZT�+���������v�|���f�c�x�w.���p�
q���[��^9����6�����2,��@�bE�K��1V�
��SjE%�un��Uj�X=���RKDUH�1����YrD�����n���bPV"[cpz�����h���� @-�j��RubX�d;&��.gD@`P���R��"�U.��$���g����������7���d�!�Bs������@N!��83�	+S�N��iH�3>����9��*+e�l�5��L�v�4f���S��_�J�a)k8^�PD�E>]�n��L��6R�r��k
�gqBr-��=��m������e��M�jM)?z����L=r)��\bH3�_fH��(v�����D�Cu���L����{'����Q�@�p��U�������`<���e\����'HV��IW+S��7A��V!SVP�o�\�����l���+Y����]�>X�s��"�\����r!��"�X�n:��'����xu�1�QlH�.��t�u0oW5
��\n�d.v��;�X����7B������A)j������$����]�Dy��_=�2�.�`S��h��~�������?�����6rv�o��Tw!e���b[t�"����CpN�� �x�Qw��]a*���31k
�� ��*�����5�^��O�{c�eU��T�$�<0n'���z����c�$<����K�o?6��������X�)(3�ukD�o���G���;k���6�[���������'��XK>�>�mk�
�9c0�]��C���1�����a��@�L�����S�}s���2P���w�Z���a�7JT���/���'�{��6s�*��=����V	7��1��@���i�����z������c�S�����Q�i��3�Q���w�-y��z���(.��c4�.Zw�}v�/!����
��|
���%*�~����g�VH*����{��]y9VhU%�2c�_c����ukk����8\���6���s���F�����Q�����j�����}��B�	�VO�2yh��QW���\�����Q�-�/@���}j�I��
��eNNN���z	�"�cs���W���:Q
�����i=z������>W�)�����tF]���Q'*\{p��
�D�s.����jM��T�1
����9N�|&�6~������2��)I�@q]��e������o��>�_ER
��@U�2����3�L�^�d��lK2���,@
��F���?���"2��]�Nn�g��"hL���=�.������@������x�f��O�2DU�vx]�Fu������A�0�#�34����Y*9.J�V	5����,�[�Q�u����Ia\ ��^���
i�O���`X61	`�``��(z������I��%�b�pF��f�_�/�n��/W�Z��q_�*P�X�q;����p���rRf�%IH�	�-��O��B-38�(da�Mih��������d�?S?�QaJ�d�Eu�'.~u���G}������l���s���$�BS��������}%
~�f��,�_,���Bg��^���F>����-���S���8=^����@@@*��0��SHF]���x��<��#$:����Y�#1iZ�y�?f��_���d�G�x0;(����d B~�n�7���3~��K�A����X�%!S�Q�����G��I(������Qp�L"_���G(iP.�0�@��T;�������?����`�T��)�%,�� *`�$<��������Bu3���3G)�2����v��C�����K����AS��q��� qQ������^}����Z�0F���O���>���r���?vh�����������_���cD�
t�*�YR�o�0�]<r�Kq�������ivF-�VK�2@�&���Q�$Q�R�5�:�Z�g��B��\�^�������&/���;�,<L;q��/�W���{������FT�M�v/j��m���<S�f��c��+%��ty�������F�j��+�!;3�u�(���M������#�\}�=y��V�/�A ��((� ��s�Gk�
4K"\��@>���X��j\�J�M.�J���:�lv�����&�����5�t}��'������q�^���{��1��/���|���s[��3�=��CaV����mS�J�|�ox�"��C�h��,���:>�)S����`����3��G�@��YBT<���: ��Y������%��-�%J��)Ct�A������������kL�� I�Q��3d��ws%l�s��������j���I�
e���b=�R�����yHp� �M��l�"���(d/��c������X�H��g�W��8��'m�3R�����	�Xs��V���������*cY����VB�F-�(',���9�_�~Fj6�4��k������)��2�:���^6�~�o�q��F"����0-���#����&���5���Z���CJd���xx��+��a3�Q����?.��h����pPi����,�{S>�(d*5"c	NI�w�Z�
��X�c�`-!e�C~���n<1�Q��u���{O�}R�FY\d���{��v�aH��������������w��fb�����m���e<�
�D���T��5���i!]�A��1�_@��������7�������-�SW���C@��Y�AP��&������E�������t��~�J3K� m5O�����Hn���9|I�m��u����'j���.HR��Q"{o9	��^������*:�c5�\j!Fd:���#���+��d'X
����`��`*5��A����4��xLT��Hr.b!�0E�1l���*�U��I��0}��q�8����C�|�<,�A���Pi��m���d�n���xZ�������������\`��z���$��@��<����`"!G�%4��{�����>
F���ty�T����o����%�r
�Y����L��mS~��,�R{���K�wZ��9�Y�JC�E_+R��=��X���/h(��	=�&��L�V�yr�{#��������^_�s�AI�g��?jh���F���E�)���'��]Q�?����������x"b�0��x��yr�#O��@��ZSv&�FA��O����������m�4p�2�(�$D�D�s��>I��8�$�A4���������T�\��r��NA�l��R��?I#���zo|��o���C���m�,�]<.���X�����j���������{�|��p0��E�o
���z	�=8�'��zi��"�I���>�:[^����[>�������Y��M��+��'���BX��f=���%�ed	����~�y�i�S�X��Ly�No�Y��v��~aZ�����ZU���VC�����'��-����0m~�n��k��v�{q���K	,�p"�v���������FY�Z6�u�}��!�o�
t%��#F�>���@�_�x�����=[>��^��2���7u(
����a���G����c�V���*5:�}�t�������\+:���cv�|R��@����rk���:����`�(�Q�;3����c�*�:��r�!����<�o����Nw�����-|��NO���?���b�R�4inF��#0�@H�m����g�g���1�Y,�
�K>(����%x�K�v-�������Nxdbk!2��K���i��)��C�}aQq���R������
���d�1�����_=��Sp�-���m�-��3��{��IT&'$��N&3���g�+(c����v[2�^�b��@z���4���1&������~��5��A�[K��|5��	�`h���j�c�X��?8Qx<����s}�L�A<��ucz�J�)MIm	,a���n��Mw�Fx��+�����D 3��`�!����FQ�&��xn����)��,�-b��C��\huG@
�����`�����*5�����8kvl�w���V��F�A.g����
WJ����-�#3�=����Y���	c�8'>}��~-#�u;����pT����3R�_��vs�g&
m{����w���������N�
d?�>,+�������F���=�B������R�{���=&.�����vvF��������g�Rc�|�4j�5L!zb�=O�>�k��S�.����W��JPa,*����{z4I�,a�/�{-�����A����^�2�~�E�f�h���a(�.z����kF�=rg�G{4���GO0����J���Fv����-���%��s$����;�T�%�m��8wA@�b��6���W1�b�$jra8
#���`4R8��$XJ�~BC�o���o��K	nj��-���Bw8-�p��G:���~��p�����%�kq�2�!�`������������Y�~!iN��~������8�k����:%�������#��<�!f���;�6s�]�MK��],�
9'��,���/`�SX�->�cD�,��m0ca�HT������L_�kv�2i-��=t��9g�p�>������� IDAT�?x����_V������E�S�����K����Z���\�v�%���DX��E&
$���W�������R�q:���t�����p<
sB>'���h��c���j�W��o��SS����X���RrY94P�tB2iH�i�)����/��_O����?Y����W���3�e6,�!<��d	j%}�M�{+�~�����d�N{��E��?���8q�B�RCT��Ed,����~����*X��h��o6l9p�ls�a,�p?�{�WA
)r��JX��Z"��j �:����\v�P�q��d2�����_�p9�o&���������8�������X��?��]>��f�x,��"hF���4n��o#"��%{�l:��x>������R�2h�=�ix�[���~���BJ��|w9�)���y%��������y&���:<N�����A|L�]��".�]�����
�7B�>�����,����:%)!�?=�_�g����J�CT������������&�j������sM�n������!<���Y���X����mbN��v*�������������w��d*#*��A�����7�r'
�>)o�md��j'zc�>x�=�G�d��X���/�!-������O��|&���A.�gJ�Ku�
�b�#�.W+��0W\:��DiJK7��h��RW�4Q&d����:��`YT�=��To0
��y	w���M��ng}����V�,`6Y}����Nx�$����#����6�a���w`�p�f�{���m99��b����s���� n���C�F+��-�y��5��>�oqX�NB�b�/�'�^A������Z[.����C�n�~��v�����x�$�;V:�
" �A (4�-P+l��|�)����2@�!aH�/$uix�Q��6�����=4u��������y�V�;�����;�@�S������������vJ���z��Pb����k!�-`��Y�z��~��Y�qx>������2b0�4m8�g3>���=��O�(����h�����U4��W��?c���(�n�����gq��x�_G�0m %N��	�3��x�O�J��\�_+�~zlK����<*�5����D��c���I>�����3H��S�]��l|_��A�
�8q���wm�����s���2C�,���]��w�'�K�D���X)I��X�B�_�TA��}�����9�X�k���?�_6���}Z%G��/������SX�3�L� ���� � B�����'�45������M����2k��[o�7���7����N�(v6��KEJ�����k\x��,���O~�z�������z��F���Ui�������A�!���~/"����W�/��%`��a�H�E��%��`�����'�]���O�h/3R2�b;:�������7d�����C��D���������;��&|8>���xpS����+���2�V�%k1>HG���{��l��#��&]�
3��*�{F��u���'OA%��I~^���^�R�tJ�����7�>d.<_~Zv��9%������~�����G�z���t1x�T����_k����t�2�������[����XR&���F���<�����?��`���������3��(���LR�8��Xo��^��$������P���=ad�Q�Z�w��#;1���^����.���8hb�F�����O���:��wb3+�������\).w�nMbM��]+��Z�����-����������6������B��s=�g�J9����B��b����O~;��?l��m&c�>�_�U����1�JAj'�����y�70������WT`(��xn�#A�����=: �t���$��"���'����6c?�4P��u�2?���>(���W!���\E+X����>�<e6K�"��<n|��J�6�������K2d��E��Q������PN�&�����[��
Z�L�#"����<������3����Sqv��k�����6���]���|6[~
<;;M���=����/r�#���qY��}�6s�eR����8�?�ol�0���i�n!�/��Vz"7���wd�%�H��N��2�MDAj�z��\�W/��l?���&P&d�{����	�r�P6�����7��u���.�X>z?����@�GM�6
�N����� ,�D�����{3>|�b/��w�pq^��d��1��V�F���4�D���N����|���|X
`3
�����P/3~:7�����?Y��$S�N�V7f�C�K�i^�[@����k
l�0+��~Q��<�����O���B�����t�� �l�dY�#blm���&	�^z)���������g`-@��x��*eU�I����"[];��z���/��M��������.#&�n�WO&D�1iX�e��fj��h�I�������sg���!��Ta����1������M�a���:e��:��������lv�����ax�-���,�}?L��|o_�5k�����m����
��Gj��x�#����8U��s��h����v��~�o��(lE-E|^<�2F<�{�,�Lv��n���n_���'�������b�������c�:7�k`����
�#|����j����??�l��9X���������&��5
h�:f�m�}w-�X3Kf��1����@�.ju���������})���Gt�C�]��n��#�����@���#)��;Nl�x:N��R,��d��p����G����
�KBsr�S�9���N�v�|�O�e�A��d��M���,,����vb|�S�Z�2�v(.����XY.����	h�/
��S�e����j���#�YH��}���������;f��Q�J����)�hd��Z��Dn�xn4����L��ye���nB $��{��n}Z�0�O�-M.�s��DL��9oT����������9���u�u0�r�JJ�R�UwL_p���|RM�o���1��dRv�&�pzo�5y�C��[/���$�n����B��AJB���7�i����;���:��z���J��k"M�#u2��m�-��x������,��P�+&A��b�o����8������Nid���C+���F�����x�+j��X���E��#j
�M(�e�]o/�8�o�������HC%l�!K��c��X39�Ae�����!6�NP������+�d\k!����_������r���}��}�	�����������=���;��v=N'�(8����!��B�;�'^�<�+�d����[�%e���c,��?��S�m���3��e25��G������j�qb��x�����y����t�k^a�L;!e����tH}��N��k\��Wn�
�g]��������EW�����:����5w��������Q�9��8��%�����%?j'Co�������}�lr��f�������8c��py;�����;�'�_FY���x�����6sB�6Zw`�����lrF��T�g�����}�6�5���g1�n����33�n���!1��#��,��L%��>�/��L�9Tm�2 X�E��[��h�=����?�FXD(��<�3Qt�|�Z�����[�j��H��m6�}���kq������.���A�6��W�)�
B���A\���.����`�!���	����L�k���n���)]��G����q���2��[!�@���B�XI���n��-��R�}ND4�#q�����;���ZL��L�����C�!Pvs^�s�d�X*r�����w���%�(�3������hddX����w���L@������wg��%�����X��c{��!�<�&�-f�����{���p�
md�)B
Jp��[��@0��0�El��T��/����[����Z����S��-Aj�Q����Jg�#�{m�����������o�q�d�o=t��}����U��]JE���+��+�jk������A��t�
a��A�-*��!����1��������%�4!O�c��O\�4�7c\���0S2��F�R{��P`sM��a��ce��)c7%D���]>��P�sY���%�y���x�W ��1�a�Oh����d�j�xnG�����>_F�%�{3�=sN���Qh���.��m�sj�+Kvuy�K�!�<�	!�d����!o��`��R���������C~*C�B�T*#�>��B��8��LI��J$�;���pw�^�{6c��0�������(Et|��� ��e+=3��I��=�wn��i�k��0�������-3���<���m9���K�%��B�SX��Z�p��{W�����uq>��%�1 K�VX�?����o.Q"6�1	9]ho��6�@�Q���w�w��b���YD�d�E�����h���������m�'�!�Pc���i'k���`�t�4|�_���y1rZ��-���5���~R�
��ik�i�r��~o���s�V��1K0F��y�=�A���Nn ��?~�_�|��l��N�%��A���_�&)���}�;��	h��2$�%����_���~��o�
x�+��D0��������
3����o	!J�=4�b���/?	�2�������'�{��1�r�3����@XS#�� Kh��RC�|�y( �'
~�""�m������p�P����3�/����3�CK�K��{��
;�C��F~�*c�����.��^!�������v=��%{+�pn'����_a�D���)y����C�s��O���|�_�V���wX�fu�k����!�d�����N$����0�@���{���$,�����1���
�
b�JV>u�bk�>��}��Z1�~E�s��k��y������=%��3��y��K���l6�y�^���UOH&���1o#��_��+C�(���d,�t��9 L+��!�L!��Xc��(]���o�F�?��vL0~k�������1D�bQV����k"�-p��u�����Z�$�����"�y���m�f�7��n9��e�E�;`x�@�t5��[xH ���z<}����	OL���w��Q[�m���n6�Z�B@� %�t�H� x�)��.zQ�4E���H�E�t)B�gS6m�;����%��7(r�?>l��3�3��9��5x�a���5��	9��g>��q��R�(-Y��f�e(�P��s���f\7n�E��r��u����:u���1���c{o��p��t�x�[!juIN	�����|������������[�|�e�h/�|���n�t
�����������7���t��DX�:�;����&�A�9�$�1h�P�9>����53�h�����d*��b��R�c�sE,�/N��C�����k+�fY���h��Y����+?��/�D�o����S���l���[�Z�.�`��o��7�V��b�?����J�a)��?6]�e�B�����=[^|c��y���)�P�tC`w��
���.��X���'������0��I��?�=�;$�����A�S�������#2
1m%���[l��rm�U��7�����5h��@�d@.H��&n������Vp8��u�����r����8���v�����)��zQ�x�a�uk���`w�(N�$#'{��_y����u�	���m�;����m��������~��2*���_�N\�Ga>j7����''�������#o$���Z�������4�D��v����%^s���H�����v�_���1��y�{�q���<�wIE]f���)�����T`v�������Q^{��_/A�d"�h��M}�U���3dA��D�5�7&LXQ��<�$���p���S^R���������Mc1�����7����:; �+Y�J&M�A�Z�S��Lid���[����_���q�\f��,�����y*�������.�����VlR��&��cx)��*
�=A��B��]����s9oj�7����54l���HC�;�������q�J��>�_�w�L�,���>��r�R�Sa��������;E6y�/�]�[�4od���,��7zA�&�E���?�N�����v �����p��P���[����a����-.�g���p�-�����xzj�}�9����!�7���?�f����Py2���_��D��P@����E�d����v�=]���t 7��nK	w^���A�[�xf�:��W`��h�Y�j�������������V�r���X�u�GC�bnw�����Q
�s�KH�\�ZUY
V���h��s�P|:���HAa�
��_���6�>a�S���.�g��E��Vx����#i�E���~������2��u���?l=pA�/����%�Pbt����~g�������S\�No�T��!��� @t�Q�
�}�
���E�����U��j'�dV��8�W�Z�R,������[O��?^�/��!�Il���f��Y�����]���f 3����'�~����������o8��N^x�]�'��Ob����>^V/� ��\{I�95��7��M��?�#hk(_��|a��K��#�2s�}5����� �I|�.�x�k�����u�;kn>"�4x�^/�������K�oV�[~��W�
@��~m��������n-	�����y��A����>�iZ�i�G��I�s��'����;��W1e���YK�j
����������Nq�g;��@�V~8��l�p:�����A4Z��'oK�p�@�e����a���QY����!�F�s��n�k,�Q;
�tE�MB-�����y�/�!B�}������6c�B�����Z]08�;�l��j�wN�X���v��]�>��1�5yo1$��G��5��M�id'A6�z^�������}������x�-
��7��~�R� �1<�p�|�G�p�$x���Q�>	����n\��t���"��r� 2g����sd��[��aNQ!8QX<����-�AT����mQ����������i}1n.,y����A������-����j�t����N� ����q��
u7A��[sd���{7c�v�B�+�6~�������M���&B�g��'P\�_��N~�
��h/�m$?�.��[������p�(:M�����=�0j`T������f������
�S�4kd�I[Q����]��o}���O��������%'�^Zo�z
w���]��4d��8�3N(������@{A�
_�z������U3�A((���h��O~(uy��p���#0���������r�noQ��\���w�T�����Pn(���=���������<���J*��_q��9ET�����'�� J\V�J���m]{��>�� ���Rf�A�������%Wp���z7�?R�+{
��%/@@�s��Y�b� ���5s��_��6����z_������R��6���[�t�O�TJ���C�x���O���Y��fizLHH�V��,�@w����=r�|�St�\G��K�MMD����Vn�������"O�-�a���8�c����c�J�=�um9U;c�^�%i���!�ND��a,�m&)+��Or�e�&o?,�^b)Qkt���J9A)�w{��� ( �:�5��v#�.?�,������?�4��@db������A��-j��u*��j�|2s������a��/z����,W|�j���������������`L��z� O�)�� d�W���C�d���0�mPb[7�����K�z����� :Q�E�o�&��7|�;��%=�����*�c}�����J/j"�x0���O�yk�[g~�m�g?u��m^���r�G���D�����O��2'�m]{���v'����%�����@�C�J���hY��oj�����y��.���3
g��x�))��t�����n]I���;����tb�+8k�� IDAT��H��L���.��]�/B�J5��������N(��JX�����9E�V����C?�s2���j}�����p�N9Gkd����10������UD�A&~����_�����|���Vv������r���/~�:,9��~��%A��c���\�J���Ea�y1�20�
�G��\��i��6Q+��Q������-k��
� (YyE1������r��+hV��,��Y�I��qA��H��0�m�aS�+	��������#u%��>f�������.�-s�
0,9x��l�/�o?�����k��O����a��m�J�t���e��-[������Z���K��X���/����+V,Y�$55U����s"\Yv����A!�/��I,<>����w�?@�R (��+�5�uv�{QY?K��-��~z"��|�����&k��\��7��EX�1Tj����q��A�>7���*��;��\�>Z�B*��&CZ"&y~�)CR<�����!8���J)���l�Q�Fnnn���O�8!�4s����'��������eK����������.((�����������
�J%��m�����`0����t�'NDF������p��M�� (`���,����j\�����Z�O�{�(_w� �e�X�����9%	�6�~:��S�k��SfK�����{���s&-%^*A�M0��NqZ�R��A&B�'�����<����t`�*����#�"`���/.��e)�s
��
��&�������O�Z���y��/��(�6�{S�yT��n8�

-X�
J_�����4��M�4�������j���W�\�3gN��5j��9|�p��l��_{�5����o�]�pa����7o>w��w�}w���k��=�|ZZZvv��9s<��7��I������0�����e2��o<�"Y�	�|���<ypk�W�AH�)�=}��S����[^�����_����Kn<��] xk�jg����?V��Y~�0��l���S�������m{�U7�8� *�
���e��v?�L�������0}*Pk�k~�^��-��u
�"Zt�U����~�Q�s���1nY��%iiyyy3f�0�L&�i��))).\���JJJj��q��
M&��)SL�6
��u�*U���]��� ��8l��y��yX������T%+\�A`���7��F�W�2	����L���_�4��S6�z^����W�2r
9q��Ow
M'v���W2�eZM�����~���0C�f5����y)���'`
/��������m�v����A��q����(� *��^�R s8!�������������z���h�1=a��(bT����<���F�����5��������E�����*�<��S�O�@�P(�J������AAA��F����?�a�����c?@��	���C�kw��x���
�&	�p�ut�C�{o�osW��jA!�Z��YR-���]����B0�����NX7��>�m�J��?o
�
�O�/`hc�d���y���]��g������s6AOn~AT8��~d��o�{���Z���q����g&+�h����������}K^���&�]�=f>�����'��phgI���J0���OWa��l'j����������s#�p��]EQ�X,��������[�2�$A�swj�-U�SK:��@~�.������R� �����:��rG)�{n�����Ts��Q	Jc`Q���W5h��6��3/|�k��Qa�������[���}P}��2U����d�Z����(�N4}�-����g�j�s_���M����}��P*� �n��7��Q�E��%���n������vz�XA�.���������aaa���*�����S����������.g�'O�,U����v���y��v�����
�����[f'C�3"���(����v�c����J��Hn�A�����?�k�V;_��b;l��������N���a�Rq�r�_�����Y}�(�����9>����������q����u8��Bdg@�����+��/�OHL��#`� W`��������_T
�����UotiU+���k)��V��o?r�O�Az�j�bBB������u�c���d�k��t8���E����������b��
��]�Z�r���J�����=��u�JB�4������/y�9r�N�:��������BBB\?"�T*+W�����f�e����?��V0(.z���J�`�8'8*�(F�W�R�
�	���*�i�k���^S�_�_l��Y���Uu$�W����P*��Ry�B���M���E^�����%xiK�|y�GQ����~���5A�-��U��;k��;��]�O\�m��]��N��Wh�9�������b�R!,���?/g�Z������~���:�N����Cq!J������D��x�
�KnB�k>Fq!�8xyz��;���/_�m3s������>��C�*U:p�&11�A�M�4����4o����s���R�JtttJJ���
������[o�L����M�z��a�X���cbbv��}���{:���^�zo0��`��[.tM*���S%�����?��$�/a�9J�`��xZ��;0�3z���&3������!;�b(�7<;���B(Uh�#�CXU��>	� �f����?��� ����}UJ������������)YyE�b;@ �B`&�w��W�<On��.%��(Bt�`B@:F��.��^��1�%2���_�GP����1�}&��z�-�������[7�N7{�l�^���5k�t����?���_���W�7o���cCBB��i�n��&M����S�������W�l66l��%Z�������W���]��o���74�p:0�5�8�N�R�����e1���b������G����7.q���'�V�G
������	�a�P������<R�A�������	��Z!�5�D��)���}�/���}�pS�,�
���3����������&�E�Zsw����q�x{{����{���x��i���7o��y��+J�hc�<x�g��j�z���v����BCC/]�4~�����^�z]�p����/�q��5�������" h������_A-:a����J�}q0���)Q�;�s�Pa�|y���Y�^W� �N�?�����������R�R	7n��.��Nfu0��X����vjZ����~�]�<��8Zv��6kI��Z�
����&x��w�w�J����l����{����LE��8��=w���d�^l�s�#���%Wf|���Ga9v0����gd����	��{p��3�\	-���I%��A�lz��v���P
`0�j�J�����U;Eq`�������6�lp�����w��/�N#'�p���6���`l[�D���G��^��w�)~}��g@^�#'�_��[/@�1�
��i�v&�o����w�h��ND�Z�J
C�}�wS{>��TB|5*%L��*��^$����/��������������ZA��v�����������p�����wB�Fq�M���X�t@!����y��E	�����	:e%�>F�P4�sO�\��ab�h+r2��l_���dB��qDV���p��`_��R�v4�t���M���jc6g1�v� � ��A��
�s����o�g���o������~�$�=����V�g�������Y��E��������� � �?�*E�}?������Q����=�	w��b{7C�NZw���#���,�R����K�C�EAqc��B������'����A������r#�e�M,q�Q)�*��Z� � � ��7`II�I�(�C���i�
�,�^f����S�AA��\e<��qy)P{�aG�.7��]��``n�'� � �rAw���


����^�^%��q8m���T� � ����B>�/��R	&�I���2�aeV``j��AAA�������U����n6�;�pd(��X�N[k��AA$�����-I�R�v��"�h��2��J�AA$��=��8���=&�*����������w��J
FAA�p�;���9
������{���l8�� 2g���P�AA$���-��������
*(�}YL!@���� � � ��w��'���G��K�j�
�$�c�a�v�`AA	�{NNv}��x������z�`S+��EjP�AA$��9;�������?s�7�b�X�P�P+J)CAA�p��8��j
L����=����nq7x������ � ����Tdgc��S�m�#���sA
�B!P;AA$��1y%��nC�����������2z� ��H�FAAx�^���_L�R��j�����UG2>E��������"� � H��M��M�h!����\^*<��1�]��[�,9��;m����f#� � <�\e�A�����}�E�_�>�_������A0��aq���
��#� � H��[��o�'S��/��f\y�/Be@��d5�ju:��3�P�Z� � ����U&33��t2��j���,�$����1�F��.�����������M��C�W75�qFAAx�mq�9sf��uk��U�n�'�|�/��e+�*�����H7_�R\��3��{�E��P��]\�S@��I�� � � �^~���;y��6m�|���c����u����{������E�����`N���B^���;������R;dAA�������m��'O�>}:<<@�N�v���t��@�16ji0���f�o+T]E����k�Z�9�������qFA�`���P�Z5Y�zp}��������������UE�n�?n-��Z�(���"���(E��}�?�-�(iS�Fq�(�R�AA$��OvvvZZZHH�JU��
���������]}>d�B��o/����G%n���U� 2���AA$�+���j��D
�z{~�5��|� ��F���gE���j/**������,��N�����q������������������c���hpj@@@HHHZZZvv6f��5w�NG��Y�"QmN��Ylu�[sn�/�0�}����:�~dl%c����R��v��Pz?��;X�V��Z��w��5�RY�7���@-F-F-F-F-F-F-&W��*������`���
��Tgk�Z���Z����hq�R-@[[�
l��.�_ML��^���B��]������]�b5������@-F-F-F-F-F-F-&W���bI�{��Y�6l��U�E�-X� 55u���w��F�i��k^^���o� � � �xp��?��#��mS�T�>���'�����c�������
AAq�y��S�t�r��)��&�bXX�� � ���?��^�u�U��\AfUPm��:P�Q�Q�Q�Q�Q�Q��-��Z�,<�7������V������%���e�?���W����������������B-F�� � � �=(�	� � ��;AAA$�	� � ��;���,{�v�=555??_�b��3g*��)))��������V!�E�2GE4BVVVVV��2�x�effVD�UD�eggW�;s�����_j ---;;���+h�9�'N�/�������j��e�222*�*b�9���D���KKK���������R�DvvvE�~+h�%%%%%%U�3���[A�f6�+b��1��[��kW������bbb���#K��(���F�W�\y���2V�c��� ,X�@�2-KLL��h�����q��%���;(((88�W�^2;o��z��EEEu��EE����m[�Z�����W�n6�e��N�3���r(����@�N'cU�������e�K���oTTTTTT��}�A�b�}��������������;�l��-<<�h4v��A�b�������Fcxx�\���X��m������7k�,�����������3f��}��'o�I��������"##M&S�F�222�j��{�6n�8,,�n���w��q�U�^=$$�V�Z�v���X����k������l'������~���?00���c2�Z���������g���*��c�������q�U�\988X�1���.o������k�l���\� ���f�����h4�����wQ����S���Y�*B��p�
g���h4U�Vm���^�0y�d�G��f����7����|��\u~��g�NL��i�������s����O>�$�^x�N�:���V�P�~���h�J%WSl��
@��U�4i��jCCC���e��� $''�U���hh�/������Uf^^��d���#F��W�>|X��G��E�����z�,����~�#�<���[YX�~=�����������z���d��9sF�-Z����e)�j��y�Y�fU�V0z�h�����	

�I�&�*U ���1��[7�������y�e����D������:t���C]�v�q�EGG7j��`0X�z������3*��d2�l�R�P�5�cYYY|�e�E��������������#������7�y�fY��1c��~�a�F������ZY�^=�J��m[��!--�/2�ZVV��d2���<x��;C����#F�F����������I>=�������p�#��

����s����eY�;w������;���k�C���/���\vwk����g����A.�=��?~���������o���\�}��W�/��_~Q��� x�N���Z�jU�Z�/��
p��q�z�c��|�"�4�e���3�������u�������+W���c����{{{�_����������~�s:��W��������~~~������S�R�J2��U��4'x��o��M�*U


c{���W���!Cv������d2��k����|u��	�����������1c�x>=��x��i|�r��9�^��M����o�Q�T� x>'p222L&���C��}��u�{�����G��I���7�x�F���@LL�4�233����o���1���1��n�
@�����aC???�F�:'x�s�x��J��3g�s��Y�Z�������m���?����}�Yi`{2�����>��q#�|��?��1�O�<YF���R�r�G}T�P�^����J��Qm���|W��sg����3�
pm�!G���1����7  @��z��a���;w.���>}�'�6n��a���?����G��/""��?����^�x�����������,�K���6���e:t���c|����pW����<�����/)))����7v5T��k�������O?�$��h<{���Q��Vk�\�d���OJJJNN�^���������G{������R�J�q||<oX=z����%K�8z������`�|�_�x1�s���F�155U�^a����{��-���2v�XO�F�5�3`����y��^��;g��M��Z�
���]*�0�5����3C�����7m�T�.�����~�S��-[V�^�f�ODUHH���(<<��h�|������'�x�wY``�'��iii����<&�bvvvDD�B����;h� i������&N�2q�D.}���F��7	����c>��3�������`�?��'����K}||.\����l��@��m=��HMM5�.��w���t:����3���~���r���M��h�b�������;7g��5�(�{��`0����'��P�EEErs�4=N�0��bym]���e�J��V����C$�o��Y�J�^�z5,,,<<<++���8�uW'��r������?�������%���&00P���I~ IDAT��t�/_������n�����S�N�\���e�j��	`��u����'J�V�V�N�G�Q*���Z,������p����s'�0�\������h��������r�#��z���S�������_�r��W_��%i�����k�a���������k�v���{�yX[���Y�f���MLLT����k��u:��sS���!C��-w��������d���O?�`��1���/^��X�.������k��i{�����M�'���v��
�O������r�!���O�g�f�d�|�=}���k�����J��Tu��5���/������M�6y����>m������0i������N�KLL����!33S������o�'�����V����^��Q���j�����[�lQ*������[��<**��G�1c��h���?���{������.w���{�e����[�o�&M��T*5jTn�j�X�T�R�R%W�L�R�3�������������[��2$<<<???..N�Ri4���O
�gq��M���C�j�RRR$����g�����@�>}���p����{�������J�2&&���[yV�\I���z��N�

r����=��Y���K��]s]H�p������3q�DO��'MnK�&
//������2���[.�G�!=��U���xyy)�M�6I������-������d���[�l�4���������g2�~��7OZ��?�������U��[�C���Z�����?�'�k������Ca��TnD�	�q��~rrrJJ
_�xm]#srr�V�Z��fddHfuW�$w��_�T*�:�MNNNMMu=�?~<wA������f��!���l6���J�C�5j����m�(�/^���_�������h���t
����rss0��bm6[JJ��;��?{�������d����0��2����$���������[�^[i�I�>}�0�����{����d����+,��L�4	@qq���i�m��%<<���K~��|��tP��5���+��-�������eee�<y�w_^^^AA�g���$�����T*�r�NJJ����n9r�1����U����������$�x���d�&M$���O�t8��3f��������o����;��[�n��q�d�[J�?�����uw����;���R���<O�[�,##c���|M��X����/%%%--�J�*|Qs�����4x�`n
����7�qk����o���+���2e��A�{�		A��J�������(�1|KMM��lv�=&&F�T�:/U(���$��#��4'u��k��1u��t��������k����A��Z��{�����oI=)��t�Cp�J%=��E�;c���p��F�Qj^ngu�81s�L��B������)S�>ur�s'������z}JJ
?h���e������jENNN�������T��b�
J����MKK+�sss�I"�:|q�\���R��7�(e����|��Gz�!����_4n��_?����m[���k�T*]�2[�h����w�����&��z�����M������t����1y���		�Y���e����7A�����o�n�&�!c0�T����KeJ[Y>�j�[�}���&�I��c��k����ys���K�2�1)O��h������*U����'00P�.�/�w���������{�������r����[ppppp������O��M�~m��=����"��5j��.|srrx����-��:���l6�<y���O:��>�n�5�fs�5\�{����^;{�,��?��]{�m#�.\��T*��������=33�z������L�Y�f��@s���j�����,��l���;�E��y���='�vz�(�����%�g���n�>�+9���_���_���sD�[_��{vv�^����EEEe����###u:�k��l6~�������{n�>�&~~~<$�f>�����C9�;�L\]j-�SO=5l�0��������W��[�n��H����2���7�.��6l�0s$�p��OH�P���m��������z{{{rXy�p����p�%��;�K�������t���������=e����y�<�r����1�h4��?����:���|,��z����cG�


u���[o�^�|�r��p��Y>���pk�X���T�f��;DJI!7o�����_�~��fggK������U��,n��U�v��Y�T�:���2����|�I�1����g�g����\��]Y���C�<x�R��U�V)���Q#�~�C�E^��-;t��T*%W��/r�"�/����VFe��)k��9o�<�R)9G��?_������g���L�]�����Z��h1b������V�f����={�H�.\(cmy.���P�{��S�c���

0q�����D�}��2�6''�d2�����7/**�5&A��|�	wFr�����:�l�R:�E��������fs��]�����X����#����{w�R�TV�Z��o�4���o������o0�����]jjjHH��(������W(��-555  ��2���1III>>>�g�6�L�n��� ��:t��w}���|��[����k�j�����I�<v��)���5�I;�RS
?A���MOO��g�F����[�WI��v	~�����?����c��;��r����a0�J 	�[��-#}��Y���������V�*��x����'�v���<&��j����s�@ff&�����R���>���W_�NPsrrxm��s���
6����c���������h4���������x�/�s��8a��H{��j ��.2��i����Cjn=�u:�R�>�7�V477��,���$����[g�����y����_?O�EI�h��>''������a��Un��Y���e>z��Q��L��R��N�:)
�8??�J�[a�YYY����
����?$$�5��~��^^^��|�S�N�1_���c�XBCC��h��7n,��������1v��Y�,���[Y��/�bs�b�
��@�V�
�[SD���
wW(�{����������a	R��;%%����U9qW��q���y�x��P.������)��Xtt�t��sXq����^����<��L��jI���'�+_���~���G�R�����w��*
�J�{�-0h� >��fW�\1�]����!C���:�������<����&L�&�w�yGrz)#�/V�T��GT����b��s���x��`�s����<�����M�6ecs���������]�vu���C��F�[7����DDD����90##C�`�{�������1bSRR"##��m�Z'L� e����h������]�I)y��^B��w��n�����z����^��N�����q���%�9C�P��V�p��;v,Y��]����Ay�L�<+���O�[�����uk������k��iM�4���m���_��'&s+xe���&�i�����~������wyk�			�l��s��U�j��c�r�U�V������]E>�v��Q��e�����X����|�v��%Kv���V�|�������j�*�^�j����Pl�!�.��W_I�����r�WzzzXX��?��-��������k�
�����������\CSDQ���s��]]s���F�EEEqK7
H���:t����r7��[�����x�^���111�a�����m�����)��z}~~~�s���S�/�K�4��7=�:I�7�A����={��l�r��	V��Ax�5j�����~�g����<�w����������Z�}�z�-[�2$==�l6�|���+V�������?�l�i���_}���&��	�>��gO�&1m�4)<C
�*_�%%%qE��W�U�Vq����s�7o�n^�����$9��R{���}����Se��YM�4��tr`)+��O?�KLL���s7	��_~)���;w���sHi�R������H���-����<��G�|s����+X�1P�j�������RY�����g�8p���<�����[� e����������J�4$$��f���O�P�����s�\y�>�����s��,�A���/�5
YYY����Q��*U�$&&&''�b=���*�:u��=�o��,7<��t�}�p/)))~~~��4�C(�H/^\k����t�)�����k�		����b=l�3f�t:v���E�y^[���t��e�&M�2��x�]��'���I�&�������,������~~�&/���Z�j��(����]�v�o�����
�I��N7e���G}�e���{5� �%�>��������\)�Gxx��7�a�edddggW�\���������r���F;v,99�_��j"-7�������f���j�Z�Px��H�d2�7N��
�v�G��T���f�����zr���������v�����s+�1�|�rw#h���!C����������d8��/����[�nU*�-[��_�~```|||ZZ�.O\M�N{��g$�����������d����T*��={$'�R��H�s��s����-�,1�,�v��[���CFE)�2�����y{{?��3���9����4^z���c����|�=z�������^���1����z����?�<�e�w�\]q=3���_��d��S���;�2vs�^l����+W�v���I���l�4�kb���d__�R����V��bcc%stttPP���/���b�_z��-�h���'�������C:�����Jcl��MO=��C��s�rp��I�g����W:��.I�����_��j�^��I~�[IOOX�lYnnn�J�4Mdd�,�V%������F�������AI�+�J��q��W/v=�)�|��2Zi�R�����1O6����<��/k����["������#|xv)��u�z�_<�p��/G.�[�;�+��9�������Y�����]�E����������I��B���Z��J�2e��/K�� h4���V��L�*��r������������^�zd��v�5jHw�y������g<9r�'�tH4j��;�H�^����*�ym�cK�.5�����St�pw��!{�O�)�&�I�&F�Q���o8eL-�k��id?����X��+�k~��5kzr��g���>[�jU��p����ym�x��7�|�G��X��d2���{r�!���5kv�������2�8�p����_��gO����`HNN6����p�p������s�����������+KN.�����{�=�5jT�8�_����_\������7u��#�c�Q&���#E��xE�&&�+���J]�-<�K��	QW�2��A������B/_��]�;����X.���7y��s������)�K�n0����.������|�2?|w���CU�����f�*�n~����E�%''s��V~���p8�,Y"e���_����?x���c�L&��9d��Z�v���u�VYL�<x]
g,**���s���^�����]>$E��)K~��:��\���Mc���{����/^�x�d2yr���>�n�gff&&&����2�.]��K>z�hrr�c�=�P(<����T�V���gSRR��C�N���3g�H���bw+<_��d���o�eR�|�q{���'��E1##�J�*������0�����(�2J
��Ev�jE��O�V+�[���>����p<���4��c�������StwRRR�������N4l�PJ� c�#G��Ytx����=���o�)e��q�I�yY�5�~9��PH�16c�y��X��}}}}��������|�����\��,�������W�t�r;��F�Z�V���h&`�qa������N�v��1��'�r���]�v5j�H�S$c�[����q�b�Z�u����x��!�^/�f��W^ye��.\��)�E�.].^�x��Ayk{���6m�����|���M�6
8p��5����p�G�z�bcc]%������s���k6�����R�N�:%o����+�������no������������o�k��<��,#A�
6�����W�q��2��_|��j���;v�(c�?��cZZZqq��a�d,���#�O�����>�2�1yK#���o�����1�-�<Z���K�.R2�maa!�R}��A|#III?���J�


�T�$��v��b��l�2"�bAA�'-#6�-??_��2�222�RT�����^��j=q�D�F�x����9s�f��2N��mO�:�s�[[�q��!#W�^����A�H�AA�}���� � � H�AAA�� � � H�AAA�� � � �AAA�� � � �AAA�p'� � �AAA�p'� � �AAA�p'� � ��;AAA�p'� � ��;AAA$�	� � ��;AqoY�x� )))e���n�����K���A�����fsqq��fee��SA$�	� �������O�3g����K�.M�0������W����3f4n�������V�Z�������t�R�OA��S�R+A���W�^��������M�����S�N���o�x��s��-Z��c��_~��������3y����f��&�i��)�w�~���L�2e���J��[�nIII.\h���V��t�����7m�t���-Zxyy����C��M��b�������S�������zBBB���~���������G��x����l��Ijj���s.\�a�����j��I��\�r��5�����������l��K�.�OQ�A�%dq'����i��'�x�h4n���o��c��i����?���K�3g��\��n������7�����V���uk��u�������B�����YSTT��j�3*�j���5j����4��V����G�����_�5kv������O�:�������/Y�VA�R�����3g>���������o���;�5kv���a��m���Q�F���� ��� �4� ��G`�����u��8w�c,66644t��9z�>77w��!,cl��U|Vo��i��My!M�6


-((x��g���|����������_�p!�C��~u����V�Z\\���m�#G��<y��UC���\�^�z�j�����`���YYYYYYu��y��G�.��_~1��k��),,����>EA�m]� ��DEE(**�����t�������J�jQ��o����V�Zw*��p8��]�vyyyN����']�U�Z�V���3]�t�_t�@RA�����vJ��_|�d�Arrr���cbb���bbbBCC?��Soo���<�SADY �N��EE�@�T*
�g8�����Ro��*��y��#G���l
�B�������rD�J:�U�V�(��j�F��j-��?��t������C�������� � �N�`�p8�%��p����'A���?����{��w��m�����c��/�|��E�j�����i2���}>>>���w�F����7���`__��������o�6m��p8xX���+
���Z�J�S�1�w'��K(8� ��7{��h���3���������H6�>}��:u�c������(FDD����5�v����35�N�{���;w�]�{����P(�����SO���[��w�U���l�J�R��0���^�\�rLL����{����]���7;��_~��o�
|���
��i���k�~�T;ADY<9%� *����A�>>>YYYW�\���V��YYYIIIaaa���
4�r�
�r������-Z����G��R�"""����4?u�� ���S�TIIIiii�(j4�
p�tW�f���~�I�&J�R*�����������������-����*U�8}�taa!_qj�����K}��� ��;AAA� W� � � �NAA	w� � � �NAA	w� � � H�AA	w� � � H�A]�b:�IDATAA�� � � H�AAA�� � � H�AAA�� � � �AAA�� � � �����=*������a���^[�f$*�"��KY*�)#�X��w���r�4�je�Y�"(,B���R2�b��Z)Z@���(w`n������;��a�b=���3{�9�{�}��}��!� � ��AAw� � � ��AAA�� � � ��AAA�� � � ��AAA�� � � 2�A<(����jiiv
����|��`50�L6��(���^�t�A*���y�(V�n�����'N���
����O?`
A�q'b���������o���N��z��^���l��uuuu~�R����W�^�q��\���oO�0!..���CC�~������(��{��������wpp�8N �>}Z����b5::���a�2Z����z���T*322"""�z�������W'&&vvvV�������CT�e�������v��n������q�q���zcc#=]	��;A0���������=X�J�����W_����0�//,,���8~�xQQ��Wc�w����>_&ttth����wggg�����g�}v�jE"����[������1�������AAA�v����jOO���8�1�Z�`�>V�"V������

jkk�X�LfffPP��k����+_[[;w��!!�H$	jh���1c��k����O�8���������� �� F?������iii����Z��6mZRR~�������^�v
�O��q�F�T������$������c�W�^�z5���[


�f����/v��moo���S�P��������p�P�}��o���{�����O�4������?
�������c�����o��� ;;���s���---/���X,�J��?����/�a}}}ff������KVV:����'�|2>>����mjwvv�����/?w��R��h4o�����h4�K�.}��G�@��fffzzzrw���O?���_LOO���7n\ff�@ �8.$$d���YYYK�.}������L��x�"*y��q�����T�
6��b���~�z???�X��;����2�,44���H���9s�����v��e���m2�v�����mmm������j������o����//�������Q"xJJ�F����),,
�|�^�t���>�7o��3gv������c����f�N!�X}��1Vkkk17m�����q\DD�N��cU�P8p���~b����x&�������J�III&L���|�LVPP8��uvv&&&Z[[���&�V���1y�d��RRR�����s�����={�twwk4������'wtt�������7n����&�J

���-,,����m��-=55����������[�n�D&-������L$�7.##C(�;wN,���?��#��~z�����	��|��w`mmO?�4cL����					�8���_��vvv������cccc�������1���b�����x�������Ktt��Y� 99�1�������C�w��A[9k����h{{{�Ry�������������T*��/�Hbcc]\\���G��c�[����y3^QCC��`��mj+
GGG�P�d�����H�������KOO��K�FEEa��_~a��).��n��
k�Q����O>��c��������.�J~���*�������"**j��%������g����\._�jc,""������������q�������wuu1���Y[[�Y�f����������D"��LT���V��2�������`���&�������;*���liiYZZ�[�`�j�����[�t)������u�����?��������0VsssG[��H9���������[�xU��WUU	�Bggg��wuu��������a����^l���2��1V^^��U[[�P(�R�H$���uuu�����s�b�q��u>>>p��Q�Xoooss�F������'�A5!�&�/�h�����������D�XGG���c}}}c�q���B�����+�J
ZC���`������cl����C��1����o��y�pS����c?��#;v�1v��)4����w�zxxDFF;v�yi~]�%wo���n|?"?����c3���:c�^Uggg�B���5q�Dww���^�XWW�����n����c�����^�d���{��5Q2--
�������������ZZZ�����������,�l�2???�^�)�3//���o�b__���?����A�z�1�#������|}}y���>��3&�<x�&~e�����jMbU.���b�nmm������2Q-8�pWW�c�=��������$21V����i����Z{�G��UuW_�I�N�4	c233���� ,,,d�EFF���`��1&��r9�1118
��o��'O�����Xll,���O?
����sss;{���y��ca��=C|D��A��Reb����dV#�
��]N7��/�{{{
�
���FDD�����j�+;y�d���FL�+++???�1������8Z�S�T*���3�@�����:��:���������7��E$p�#�D<���CEE�������q<��>}:���[57J������#��x��@U��������������R����X,���S�L1��	��_WW���:�N$���k�J���@@@�V��8�����������'p������g�y������d�0	��T������q���S��r�P����~-���Tx[y�#_����j``����1� ,,N�8�}W�cG�����cc���cU���t:{c��������������c���?<�������B�H(����c��E���tvv��e������G�.Z���������h�����
;;;�J�����*PXX������X�[ZZ:::J�R��$++���$�X�J���|����m���X�{\A2�1\DB�B8R9l�jF�n����ysf���S���;�X�O��� ��r�TZYY�b�
�[���`cc��,,,����M�fr��mggg�W������H#b�@o��3��O�$�y��9�z�������=k�,>M�7F8��Jrgaa1s��I�&�](��1��������D"�u`�B4Ox�L>2W������]"�dgg���"�D#�v8��6q�������vww�@ �i�!���p>%_�H$�9s&f��7��U�����@��Pl!�B=�[�J`��'�e�<
���������q�X,���E�n"/N��j��-,��!!!%%%�V�z(f�w�����cb��U~_��18}�4N���Z���T���v�/�� ����kjj��9���
aaao��6:��Xykk���C[[[hhhRR�@���[e`��z�������pl��1��/��r����������q��q7������111�����>�������r����J��/���bgg����v�Zx��g�������(
L����vss�����[��i�;~|?���'�^VVVRR��7�`����z�Ib��]�v�G}��j��������!�T���]�A��P���i�j���_�hR@��999]�p;{MMMc��5�-t������j.�I?��/���������0DKOII))))..�_A�� ��dDX���{�����c�Att4:�������O�:?mnn.--]�x1���
����������s��MZ�v�������l�7�]�v-\���'�())��������4n��}�������������?��������l����
�hp�����vOO���7��C���
�z=x��f)�\>u��o����������m�v���^;z��F�����T��x�ZX,Z�('''&&F.����dgg+��������(
�?�.&����::::99UWW_�z�������0����w��)--mnn���mll�_����f1�.�7����������|��y0w�aaa�������kjjt:��5k0���XbbbzzzQQ����?���w��E�n566*
[[�������+W�������a���������`����WWWK$�!�s�M��������l`�i��Mv��y����������`�����%&&n��m���Z����������3����_~���G$���{���'O�\�|9�@S*�r�|��yyyAAA���c��_�i�������+;v�

�2e
?�7Z:A�3�D���[Q�����f�D2e��������A,��b��'O�������
�\�R��1�rrr��c1���3���\���q����:88�������c�n���UBCCc����"6l��UQQ��'������M6V�����1!;99U�,s��c��ill���a�566��(�dBB*��'j4\��lmm�������e�����9�����s�L�e\�������'�}}}q$cU&�a�$~������S�N��j[[���1c`���8k�������9&L���-\�P��8p��X�u�\�r����0T�rp�!���)S$	���`��?���L&kjj2���7ob|�a��-���TUU���Q<\BBcl�������p�����	�a��;A<4��>:{����gM��@RYY�/�6����2&�2>�V���o��o���7.����R������!.���J���'77w��1]]]����rh%5�������+�J�����54��k��=����U��VUUUUU
]���o����#G������W��q�������ev�`��}�O�����7�ac��)�b�=�	��c�����x���K���H�?���o������3��������W��z��R9s��	&PK'��	��NM0��s�H$NNN�J���j__�7���5v���@#����������F___gg���#�����^��������`0����Bj�A�� � � ��
oAAw� � � ��AAw� � � ��AAA�� � � ��AAA�� � � 2�AA����J���lo�IEND�B`�
cpu-usage.pngimage/png; name=cpu-usage.pngDownload
�PNG


IHDR��!J�z	pHYs.#.#x�?vtIME�$*��� IDATx���y|��?��gf�\�;�&T9DQA	
�������~���V�����@j�W[��Z�+���
*��@B�!�n6��f�����,������G��������������DDDDDtb�XDDDDD��������;w"""""b�NDDDDD�������w"""""b�NDDDD���������1p'"""""�DDDDD���������;1p'"""""�DDDDD��������;�XDD����k#��zlYV��]�����uuu���B��>;;�M�6v�]��F��_�G���JeeeQQQVVV^^�����;����I)c��k7h��3fX�n����+--�K�.�=����CTUU
6����srr�_����v�m7�p�;����&"b�NDD�b��]�z����i������~�g!�M�6o���3g^s�53f�P��.]�<����a(++{��W�Xq��������tp8-~��il6^)��Nl�ND��7�xc��Q����<y�� ���{�f���6Q�������[6lP����=������:t��)Sb/+..��?��F_~��A�}��G��6mZ����:��	&X���U�V:���_0c���������gW�\��������[o]�`�~���7�X]]��K��7>���7�t��7�XXX8g����[�lQ��������o����o�����-[��iSQQ�^yhB���3��mqIYY�+��2t���C����+eeeM�0e���C������g�m���<y���={���������c���U�DD�
IDt
���NII�����Mu�������3���^����3�|�����JKK�����z��o���1c����_�Z�t�z��m��m���_~��Z�UW]�n��m8��s=O������e=�����&$$����M�l�u���z�����<�����K)�/_��s�i��q����������477777������������[�o����SSS�<���,[�Lm^fffff�z�h�"�J����EZZZVVV�g-Z+;vlq_�i�F���#GF�Q�Dt*`���N	�f���������
��Y����F��u�7��
���������gU~W=�9s���k��[w��W���L�8
�H���SPP�b��K.���;�0~��~���~���{<�����];{�l��>g���k�~���555����?������m�v����W�...NOO�:u���������F�q�4y��t�;v���)
��?����<�.���r��D%�{��~������9s&��^oMM������[����������������9s��Y�r��H$�\����k��Q����>R�KD��;��`���o����={bKT�,���gO��a��=�7n�R��/Q�d�Y��{��I��v�T]]����g����NII���K �����JE�*#~�u���6������|�������{��}���JKKKKKw����h*+hw���\~���o���y�b������aX�%�\�d��o��{������|����T<��S�g�y��&E��Enn.�p":���.����={������������������^x����?���������o���K�.������8����V�r�\��v��?�XYY���7�t�z��v_{��k��-(((//�FC�P 0C���t����z��'����b����}Puuurr������V�B����{������6��'��V�p�~��F���G���G_}������b�<8��������4M���S*a�Z<���	�c�/�Ng���������'�Sw":%,^�X5�������s�D�_���=z�w�}������2d�

kkk�S�NUC�(�#55u��j�i���������g�l�v��egg��*�W/V�������F`T��x�����			�'��>F��y������;��k�����;n�����4�=��(��>�������������[��SO]p���������U����������j��7F�q=��3�X_J����!"b�ND���&�s��4h����=�\�{B���ddd������{�d�=V�X���O�p�
���2##c��i���Z�����y�����>��G�*U�w���eee{��Q�/G�������#G��� M��G�7�t��������������&O�\WW��?�Y���g�o��v_%k���<����h���`=���x`���EEE�w�9r�_|��Ga��}��9�^z���i~��"�0�����={�l�x�����S����B���G�������7�g��k��W��;w�������%����������9
�o�nF�yF�1%O?����??55��%Kv����9rd�-�~(jp�����eddx�^]��g�m6��^�O�>M�Z�x�c�=�������\�����x�~�������~����y��}����2������~�x��u���KLL�����#T��|����=ZE�_~�el�Z_����O�_v�e.\����;v�h2�'�I�����T��x��_��j�"�Du�T�W�$|����+�|��gt���y�����;���R������M�6m��pQQ��fKMMUCON�:Ue�U_���������T�^)������n�}��w4M�����`�0z�������p�M���GAA�}��>���Sa����]�vegg���|��g�HU+|�Yj���+��/��R5n�/�@ ����}��%M�Tjj�*%)���4m���jU�zD}Y"���Z�" �S���brsso���X�W�F�m�������|��������9s�H)��������+���O;���W�w�y��.���������=���322T��F

�LS���UVV��/5e��X���x���^����:�'�g����#^^^^UU������g������O)�O<���K�v��+��_��[������+��7???>�__�-)//W�����d�@":5��L�>}���F�YPP���r�}�����?~���^��E����=���M��}�������w�Bt�����nS9��K����K��
���;�+KKK���l��!11��������m�v���[���[o%$$|���o��VRR�w��>����>[�L5������^+++3��+�5jT�{�&|>_II�c�=�t:-����z����S'�lqq��>��[��{�'�(�;�������W�^���j��y�T+�����w���=���iO<�DRR���g���~�z=z������P3,��6m��W\q�
7�PUU��SO�����'������k�=��#�x��Gz��������,���������������������R��������JIIQ�m��1��k�=��������_����G]�v��Y���_}��������4���T�Qe����XT��zaa����������~�z���
�~��?9|���K�.8p�/~����ZU8�>�($""f������^z��^(//�����}�����<�KF�RVVV�1b��-j������C�����MZ�1p'"�����������2))�M�6j�H��Fw��]VV�p8���sssY&DD������ZN�DDDDD���������1p'"""""�DDDDD���������;1p'"""""�DDDDD��������;�)���6���&6������M����999��DDDDt2R�V��w�y�;��������t���|���YYY�����w��222�/_����LDDDD����K�	!�1a�����o��&--�[�n;v�x����������7'&&r�I��5�<x�������������MKKK[�v��������������������w����DDDDth��S���G�.((8���D"={�T����'���������q3j�����W_}5~�����< """"b�~����|��7���o��w!�
l�n���555UUUc��i��'�|�r��f�j����������B�����������������S4pB<��c��[�p8�Y�F�EEE��1YYYYYY�K�m���S'LDDDDt�l���H��������/����%������&LP�N�0�k��?9��eY<�������9�c����}���w�uW�����
6�q�O=��N�:}���<P�������*�����3+���n��9�����%""""��Y�6mZ\������DDDDtR�XDDDDD��������;w"""""b�NDDDDD�������w"""""b�NDDDD���������1p'"""""�DDDDD���������;1p'"""""�DDDDD��������;1p'""""b�NDDDDD�������w"""""b�NDDDD���������w"""""�DDDDD���������;1p'"""""�DDDDD��������;���5ntmmm �����������$�]""""b�~�x���O?=!233�,Y���������qcjj*w0�ZYS����k����I�&M�0a���w�u�@ ��{w��&M�4i�$���w����DDDDD'���q�R���TVV>��#w�q����TQQQii�����r���������������N�)�.�x����z��������������]��D"z���^���DDDDD��5��	�m��;v��3g�9��������>|x�DDDDD'�V9�������.�0�u�6i���n��@��F
�����z4
�BRJDDDDt�	!,�:Rkkewy��6�-++��phZ�����O�����
�LZY���+�x��w������?�eY�&��pX�f�j$3}������n���,q�\<�����(���O����/LLL���[|�A���z��1c�dgg'%%���N�0A�l���]�v��2DDDDt��������o���@ �d����s�9���@FF��e������������<DDDDt���S�������jr����&O������������U��rT��������:��������u�XDDDDD��������;w"""""b�NDDDDD��" "":��������N������Y&D�����D#w��^=E��o�~pZv��.{W��>l*CDDtr�^����4����n��_�����?��,"�DDDtY��#M�_�5���*_Xp�����E�,"�DDDtB(�������;M���+jKny�������XJD�����8���9��
�������~�X������������W��,("�DDDt�����f!4wf^F�����X�L�;CJ	��;�+��~5}��yl�N���������PeM��%�m�Mt���;��k������HO�}��_��;w""":>J|�k���fd`����.{����w�����t5�(����7��g��a��EG���������+'�� ���qx�g������[��t��U/>PX��=�YzD�����Y�s��%���s�/p�n�|�w�f��������9���;u�v,p�X�9��e�ye���/X�Z�{�Y?���OX�D������z{��*pOr�e$����U��Y�*���m�����?��$�����W�E�����.;�����mOz��G������,h�h�U%b�NDDDG-pU��*V��N���cz�����Bh;�7��������;�6M�!�����zo�;��������i��������X�D������[��=M���H��q����eO|f�<5����~g�S�K�a�1p'""�#�����" L�����m%gu���N������#�U%b�NDDDG���;u!D��y=���;���) ,����!a#��%b�NDDDG�i�6M��)��$G����w�%��& $�?\����X�D������	U�C�$d��������6�=�/�}1C�������z
���;&Y���� ������F�=�������is��r2gT%b�NDDD�I�\��z1B�
��J��p����Q���U�����v�G����v�qe���:�3�1p?u�����c�w�/X�X DDt��+�}���y�i?;�+���D���Ep��x�������4����Lm���o����.���Y>DDt�������8l�#~)Q3�^�jZzB��Q5-1w���a�1p?�y�e�wmI�`9�2�����>��;�4�f�}Z�>�.<7��wF�;K����,��GU]���4���9
W
5����~!��fT����G� �<��Y��F����������
�/�4}�������,�f����r�|�[B 5Q��^����f�6�&:R����U��QC�?9���nZ�`Of�ml�~�������J����kV�WFjBv�V�����&t�f���@��Vl���z���_I��b�._�%M#���n�
W�����G�jiFUvT%:��q?nJ|E���E�S���2M���;6���/&8Rf�z��;�6�����H!D�;k��
���9��-��3��IDD�m��F[F�gw~T?�w���i����Qu����q��)�t���GH����G������%v�==��4Q[[$&&&%%�����������wyy��/7���^�����������06���H����`������;c/����w����wN��N�DDt��l�+5!��fA�;n�����`���7��U��f�3���?OK��� :Jg+���_����/�R�f}+�~��-\����=�����0���q���������KZC��4����g��7�WP�o,�n������
�G���_?4������w���>�����i��nG2�2t��|��Qu���hB�
W�q��)?[z���Q+k��F+++����W^ye���S�N���� t�����I�&M�4����������|�Bd�W,&8������q���a�����[���fY�._���=y��V�\X���&":����3N[�$WZFb�c��gu�x�����Bhu��������;���V����W^��F�B���JKK'O�|�w�����{oQQQ��'�h��P�Ms��5����}{���O\������������i�#6�!�|b���)�G����n�z\�<���N�HM0RH�����;��������O|���%dm���;�Q��2�*^/++[�|�w�}�n�:�<������W=POL�w,��v�2�}(�QkB��q�##�{�����Jp$����;+����c�x��i+'���bO"���/XQ,`X��;
?��~V��������4)������S:p��7�m�v�����sN�^�^~������o���UZS���z�sZ��9����>���=�`��ml�6�>c���u�}��?�����?�p'":Y-��N�0������
��;p��O���B��(9��5DGP+k*s�u������� ;;������=��s���;��F�Q�0b����FC���W��;Vl����������<�u&h�c����w?������"2 4M:�2��=5[�.���H�����w�4����,�����Qk���wx7����zB��3�������3���{��(BBh�`���<����W����n�S����X���2��7n\vv6�������p8����'��������-�F]��?����<	GfJ��B{��w']���/~5����$MBh.{�%���=��Y�7g���n�R����V�DD�z��=�;�ny_�i���/1���X�Jrx��@����g?���u��u���ke��������?�p}�|����f��Hf�����1v��n�7Y�r��������>2���t��Y��Nm�;��7���Kozo��������4]�l*�J*;�����%�I�]����Z�e?�u�n�a3� IDAT���R��f?~��\W�)?[2~�`�Z5
����:fu;����Stj��#�(oe�{yy�#�<��_��W��={��5k�������������	&��M�>�k��'��2#6�3r^����A������y�H�/X�h������S��asiB������3���d����W��""ju����MwHqe$9��&���IW>e�]?�|�6l����������qg�V6s*�������?�D".����.z����i�����s��������l������r�fN�R��O���uG��y�?�e/��9�Xm�i����_��d��C��$�6��Z��@�}s�����g��_>�������|��O��O7�:uP^���S�8[_�`����������t��={����9��xP�,�=e�]�f�}s�;��b���Rf&����1��d�9\���#K��?s�&���s����o=��o�g?_V����G�����]���Vdm��P�W[����e�5��]���V]�������<S�dg�q����a���?N[�����W��1B}���y���t�����D6e��_���������8��0>�n��Q�=���I���N(�`�iEU���-sjBUK�����]whv���`���s���w�`�8�������Wl.[%�Ay���PU��'�_���M����� D;O�/�{�G� ����NL7�������}��0��}��([����cyw�2�)�����4|@���d���x���k�������dJ�,7����BhB�������~�E9#��!��?p�Jb�+�������r�����K�F��
����h�'�����^�z��FaI�����w�5=!�'WlZFM��,��+��x������6����v���4�t�qg�iv�;K��&d�'MDt���~?�B�=�����s������aT��?m��@��m�@���u_��>�c����M,+j�5�Y�������'Z	o��`ZQ)������'�GN��������_d����$$KZ6�����`�K@��xl��s:]�f3�O��������	�d��>>jN��������AKF���f}�.��!
�$��+�����^�����I������b�SI��+(�X[��>k�K��j��P�%-MhBh"���^�N�I}Vr)-��}^�5��O�k����9t���?����Ne�|r������m�U�����4Q�<�`zaT�
���@��H�Y�=�[���O(��Ls��X�!M�B��2:�w��``^����g}�7�/�s����)����+���.�k�v��wE�}i���=������W���\."b�A��V�_�a�<]S\C��hB���������%|�r�l��fNr�g��Ot��������o�����:t�%��c>�����|�����Y�h|���7AK����q�K���������+�Vl�J�p+mI���?^���m�����oIQaY��%EsL�����5]���	��b��JH��H���( Te�aF,i]�}�u�>�4�Z�2��e�`��ghl�=����f�Q��3b{��	�����}5�aTAsC��e-@B4��2[.�>~����v,x{��uM����f�Z1B;������g�����}PXUW����Z=Ez�+&,iV4jF����1)�����It�x�Y6������L(x���������T5��%�WzNJ������������8"�'�����jR-�i�����V��O��}��I��z����]��|���s�?C���+���QX��5FBF -XuH���({Z
��P/��7U�[���
Qw��d'�F�P��������n����������aQ���j�5~|��yR:e\5��&�����x�u����v�6�k����fx��7��k��e����2�v_��`wWFfR��]FwL;�w��l	{��������U�e���f
	E�tH�'�����,������Sg>J���L��������P��l�o�Sw��fW����������nG��}�g'w��<��<����K���AD�:@�t{�&%��kL�k�G�U}��yd��O�����o_\�o]yC{XYU���+�����`��w�{���U����mP^���Sy�d�~��.�|k�:i	9�|��J?
����z3��Q(	X�����	=��p�G��{_V�%";�{�]0�`VC���]r~�U����Q��qhH��c���sO����Q��3Z��-���9����s����S@x���9��hXQ_�Bz,�oX�������_�mlNr��������*�����e���vc{\����NtxR\����6�-��X��p{��*���'�W>5cW���E6��r�2&������iv�-��j�Y�o��|�����^��H>�sz��X�u������:\��LKqe�����2�h|����?��������KZC��x��Q3<��=Q3��C6)Oo]Y|������y���Lv�9m	���^P�eI�,��%������H�U���Y�����U�4-l��3�~iB5K���G'�$C�����^��_�����w��\���E���C��PE����AK��f;7���y����i����j6������*��!��6����oIc�����E��;5M/����.�h�>YD�`�����vyU��).[�����Z����f�����|�!��2�s�L��+U�3���v�.��dg��O��������(�n�9��3�?:*�C~}&[��� �����H
�������Q��.�>B�<D�����Kmon��D-H j!��s�E�T-?����M��	h.�i��/�3�)���i�����[��J�.�����?v���,�)M����2/�9���ak"U��lz�,�:��v����@�1B���'����f�+-������� Y��������m��r�g����m�f�O/��n��X��%-H�I��U+�����z�4�Q�3�U����.l���x�<����.z�u�z1�X������YZ����E����E5��4��4J�YB�+3�����{`��gw�]��\�u������q����.�[�B5����p���i��L���w�$
K��R&����
tU�C��1��.�[�����/T��B��6�Y��b�{�����|����e[���^��}���;~��W�m�����Q�?_���g\��s��c��T�e/� �����&TY�y{�S��~dZ���n����%������iwfFb��9G��6��������f8=1���>9(� ����+�4]%zV�\XZS�r��.[�&t��h|z���L�LM�r��c&��{���W��Z�������u.8�j�`������-��!�d&:S7tj���G]}���N��!p����3����=r=2��#��e(�Z`!y8�O�������]��ed�3���B�!��l'd��	X����h}�_F M���-��H
��`A��J6���e��~��e��M�{4��@��4���l�N���H�_��`���5��]<�&Xi�B�M��������~"+����dWZ,��BF�.R��w����Mw4�$U�Twv �uM���O���?`I�0��4�f�}Z�~����������\�cA�w���;g�zQ]�4��t�:�������Z�P408�J��4��~ �����l)|o���2V�mJ��;:������9�/�RXQ�+b�jC���7	��wu�:���s�����n�k��%cISJ)��I����b�������OZQ3�2��������J�����_����i�S�fL[��Q��w���r2 T��+sH�u����AJ���#
��:uc#!wz7�����;W�\���IS%������S�C��$���WN�;�������*�u�P������v�*NC�@M�����a#�d��&unv�9s�KvG�K�m�������g/$_����p�sBf�c!]q��VL��+�+j��#(���qf�9jH�U���?��U>�
�-k�����?������H������}�n���/T��`4�V��*"FX��
�d����Z�ZQ����?���wfC�v3'���W}�`?buw�VO���9	�����������?������=k�Ke�;V�X`���c���Qwu��e'w����dW�Cwl��
u�ao��h��O��:�sF���;�������3"
D��o.x���o:��Q[�Fp-  tt��#��
�^XA@��F%��/���oh�R��������������b��g4`6}�-�Q�����y0*kk7l�	M/�~��������r\aK��-
V��T4
s�h�����o��9J�/�h������_U��(l�M�x�V����N��`y�x��u������Hqe�|����K��o8R�$j��h�/T���8mn)�{�
�X.9��x�#N��4����L��a�u����M����J�}m��%�"KZz�����P���������3z����`Y�Uv}]���[?������M�[j���+W������'�������Q�6�7�?���Y�R7`���jbX��t���h�T��>�}�F���@�_��Eu�Cs��Q�QT�z$�!p�4������c�����Z$��.�as��~�/
E�~�?Ip��G�*�U�����l�!��Y[���������P�?T_��bN4�87��������C�
���w�-��{"I�������n�y|������b���~]<���b{V�
����C��$;����i��NJ9��qkv.6�hC!K_���A�^r�-�mmkU���QM]��fI���x����H��+G���.����=�m�suU��'�(<8����s���PUl*�����^�I�=��bm�o���E�
���4�`����������_��l����j���`�7X�w�ZU]Z�Hqe^y�������;����b��f������������rU}z��]f���0����p�|
���QH��Q1B����B�M�%d8�_���0����/���6�Z5Qk?C�XR%��l�C��������rn^�>L��
�����Q�2�@
e��*����� �#�&
CB�O�%`I84������m���B�IX�@�h���
=����.��n�#e�������]�Y��F�V}?������������<V�������������G���,{}��%.{z,I)S\�����w����i�i��o�?��������Pe,�eRo��Jug��3����O��^	�l���*�n^��s��C���������C���Ts@���*��R����5v`���,KZ����k?���������{,j�����R�
&������J�h.��h�����z�@�U����2���e@K8��"5��;�6TZN��T�[�R��:�mn5b7����
�"��&v�^���V�=���K��d@�@��g��9p�<��.T1Cu��Y�����hhha��_C���IKJ+��<���;i���C�!S��{W
W��������8���������Ejb��C���i�~,f��n}��M����%_o���7{\���hI��;:��|���n���t�8��m�*�k����;��$Rmm��H��6��k�����]�*������7[?���/�K6��;������P���'����d�����Ou�U5��������[%_����i���8]�����#d����[�(l��z����rL�83p?I�/�fOYx���a������W��o
�]?B�	0��Q��o�!���������^d+!!����tY��l���b-���9*���>/Cd;�y"����)yH�����xX�������3��a���L�Q��FMTL|]%���v��`��y�B�����D$�D�������.B�:��B�e?}M�������U��F����4$W���`�-��1$CX@���vZ� �����o��'d�0�u��w�{f��y�4l�nM���ab�UKG(Z������=}z��7^A�|X!���_X_�2�����Hk�qQMT&����m?���+��U�~���
�����/X���9��b�aU7V���hP�h	6_+��Z>���M�0��6"G��9BJ����	�iH�������/k�dxg#���p%���,[:�m�yP�4T����.�
�V������3���`}+���c�u�#O�w2�>��-s]4�il;=j�&��Qk�$�U^�����,��S��U�������v���HYN�������R���Jb�s*�S�."fh_�f��[��?w������?�X�pV���v����������}?,H�t�z�Qk|�R�--��QJ)!��bU�a���i��}n�l��i���b�p�k�:�c_=���Tv--���z�WE�]�����S����F�����b�����-k��K�W������������>m�-i~S�����}_u5��m�2�����Hl�=QZ�����*����Z_#Z�4Q$�����i�>�/�����1�����������<Sz���c�^{`96���XH�����;@����W+���o��1��}6�`�l�e��
�h���+���d���vVo�>�[�v��a���G����f��	�����Q����������7�i�]��E��o�ee��������mL��!E�w7�Hq���=k!#���s�n��Q
�B�M�Q
�h�TI� ,�.�i`V�
��4�.M�d�xF aK���e��e�?�����{B�C5O^��@;g���Ot�4?�������=+�}6�z\�XAU�"�3����=��t@o�g��^2����&4c��+v�
�>�;%�m�
�4����@�e�}�����Gw���������B�
���M?�
��)��3�'3���v		)���Y.n^�d��B�X�EC�S�,34��������{w85�b�S0|���:�C{�vY	��Yb:��h8�$�"l�Z|^P;�H������8l���.�Lqed%�o���R���Ul��]��%_������b�#�\$gaV���B��v��?��=�Q�Qk���	��T|�j�����
��aQ��M��r]�4[��D4ak��.t��~{j����fU�2@�Y
+���z��Daw.*1�����:�������/����O���WZJh�	��\4�{Nu�/�j��
x e���h0����������+B����Q����j���)��X�s�?T2��r!4!D�����������:/L�3}@����&~���Q�4=�����D�n�������Wl.[%�Ay����\����O��p�je���D�n@O�M��9,��-({�_@K�UP�F��Q��Ug7$]O�m��7I�Kx��joXb5�^��FB��>��G�o��W�Uw�R6K�[�E�*��g��T6�~����}X4����I��IvQEYX.������J����[pm;����-3n
�Kki�j{����k�#����_$H��H���v��'J���3�O�t�w�?��&�$�\U�h������8:�����} �:$��u+`T��Y4�� q|�|*��f����L���\�O5�u���eS�]�%�&�Lr�>3����m��U�����?�e�#\�p1���W M�0d�-���(�������^�rc8qX��|��Ia3��W��w�6D5Q������0��%�P�vH�U����=?1��Q�M�`z��<�mq��'\.�I�n��=	�Eo���@�3�!�@�|����(,
2
�B3-�
h�a��0��rib����]@���N��xD��`�g��Z
gc[�=Q�9��
�{]��.����I��o�h��j���%�2lIH3��d�a�������k���O���:������HA�4��* tH�w{��������:�"53W�T�T5����#xC��?T�j�B5G��I���|�$+2 IDATn�}M���b�?�=�f�"��(6���C&�y�����}�+�)�K�������O�UGK��2�5��G����u{kMt�({�BDwA�c	X�eA8aKC�%�!(�Y�
!���Du��������=l��A�eH���/~�SL_����[J�7�U�c�NkY�Yh���Nz�M3�~!��il}m�U�P[5�����6���s%:�����a�0h����B��n�W�`��Z����n����xo�Ed+�*�Qv��#i0��g8:��sm@����=-�UL��H8mo4JU��mD�`T��$����U�2v�1!�+�����������sC�$8<"u44w��&�4���G�#\�m?�U�8(��f}+��AH����C�dDKaT"��5;�j��
����� 48��1%f��"��	�U��g4���d�+�:�%;��w�4;��E�]G��_�7jn����H\'��7����6�M�R�Z:��������0���V�����>NY�Rw=E>�5 /n�!j��(HBK������eA���i�~b�A�Y�l�����M��/��X�����l�(	�U^�j�P��p��:jgx��O��D�j�A�/����q�=nC��5����:S�,��o��oh
��K�W�Y��S��F7oM������K������d�}��[����H6�����t�x$���9�M��AF����D�X�h	j>G�d����#��i�#8���naV��oi)S�P!��\^�P��������}Dv�W+xg�����'�A�LhnxFCs��e��}�Fe�e�[ak���4��5��8I�m?�!  l�:�.����8kX]�/!-i����?����.��zj�AK��3,Hz*���}�
C����	��CF���E ���w$�������Q	�����14w���l����4cK�
S����M{��=����"���Q�?��-u,����i�i�Z�P1���BO�*���4�\��&��v>��D�����Jg�z24��R�Y�0�l��O��SK@��#?b�q���|��Q
��T8::�r���W��6h�)VZH�w@�7wi6���n)po�SK����-E�J����~�rgW[}�~h7$b���aH�A��u��"
��,8�!y(�����_�U����~��se/�u+�-���h��X�J�X+8�2�]�+�&�����G�^_��=�/�������M3^Z�[����9q���3�`S��)
�H�*b(~JP�U|x
n��c���	�Uk���|����>ff%";�]F%��G��'��g�HD���
���E��h��o��*c������_oyD��]��n9�rX���$V,?���:�.��k���3�o:��xj>E�|����_��r�\�����w|E��?��W��\zBI 	]@�*MZ�E����cAA�&X���XA��{A��	�@ =�r������6��	��y�����fgg>���|�{������j|�������0W����b����^��i �!�)�B�N�,��N�����Y������#�'#t����]ZK�k�d���p��O++s$�=�����8���1Oq��E�~N��M�!����\j/[-P�[CQ�]��Z�|��m-R���+*�����OF��W���p�J����NZ���-�i����J�p�F��+�p������?X��G�]!�����l�1&G���@Y^�`T)d;2?B�7J��D���
wl��/����]�?�3K�x����7�(
������W�0+� ��������piS�D�B���+"�m���EKI�3�>����;�G������� � ey\�v���Jg���l<(K|��E�e�CS������� ���	�����7#u�r����9��$w�Zj^����P"b\-v+T��?�+��"����=��K��	�.D\G����m�2��Pw�-�M���H{U�(��J.iN�hnJ��L�;+YEu��U��W��uE��:o�����1�~7����<�{@�>���nf���x�����0&����Z�r������d�A���r�-�=3@��/�<������v��������V\���JZp2���	1D(\�&�SC�Q��I���#�L^�S����s\���*�����:���A���lG�7_�-Z�����o@�Z���v��}8�YQ	�c���;��-k-�l |q4�t�0�?9������z;K�9�\8������!b����-ej"�d��}K�m)�s��n����8P�_�6L�W>�.�����/X��
������v�����e��}���k3w
T���!YTB�~��p8ZGY'-����W|�w����o^
�R���v�V/S�3�������	��`z��~_������S���0����x���So�*��W������,d�Q���x����*C�#�;��"l�'U�;����R/��,x3���Y��0tA�7���$u)���0vG�u��]�s�[���R�YPpr���S��m�w�PP��-���t�D�T;��Cx����<�����+�oqU�DQ	��W{��6�Z��)��l<��e�
<�2_U���Zqo>������P���.R�-k��U��H�NI�M�O��L���]�����+�C[��V�;Za���PE"fV�-����opq�<����U����L����V��j�L%P*�>�|���)�G*�/d�����N�N���i?�o����%�2+gS�����9�\ j��F��J�S�f*MNs�����}�5Q*�|W�+t�8�+�/x�����}�n������:d*;��*&Z!�O���g�B��l�����v&b0�F@K��A�s:d~��J�2?.��
��������O�h��Gt�W������g[_P�L�W)�����R�����]�G�OJ����aV�:"n����cO%�	��$����u�5�KA�x����h����_Xz��;x�9��m�]��s�2�o3ux�)wm���u-e�X�_���$�����P?��V�r�Q^�gg{*���"����a���
oO�?w�U���z�iR��O����2��L���OY=���e��jq�z����+yZ����:�]���J0t�*��3��`�c���8;TY�]9�3�,����G��`! j����d�9a���E	g���{^������o�}��r��}\���7~�T�?��7 �I���f�-��Ce�A�e	������7�..:FE��g�>T�8����^��L����QLt����!��?���s��_�0��Q��TG�w������"�T�8���~�����s��J��Gg����R���ix�b�>��@�<	��	.�r�y���o8HV4:U��%D�Tvz��Dw�tm��V_�D�r����� ]�Q�s7��$�q�d�������A�
,��%Y�8~d���7x�J����J"1���T8f3RGk��lFy"f#����U�mP���~���B.����O��b����-:�!����i���}�ZP��L���pcE���(��v��:����g!c:���y��o&��C�+����?��m�Hu
 #�j�T��8�i��G|�/G��#g2�9�i���0�p5�O�Z�����g�Yt����c6W�	E1uQ���-#�Lk�PuSBU�o�3����������E�A�������-H6$u�������SAS�R	�����v$��O{mi���s<�J:����o4��{���f��2���;~8bRw������z���v����V���z�R�AP?�������.������0��r�6��svM�S�*��\m�R��^���5mj�mU�w�����Fmq�?'�B�%��
O9���+2rHT�W�T�m�����P�I� ��*
u���O�X�C�����q�`��s�T����+qn���sz��	>�_�2_������NY%Q��p��<?��&]���Y�����	�����	��p�4�����C�^me��>KD�����NARe/qMm���Z�l��C��0t��m�p��d�IXs���TJ�;N�����yf�����\�&�s~3Gx�U�Z����72�)�e*��4�B��Nu[~�����+W���2%�D����k����n��l���r%�Ws�z�m�V:�n��T;�B������=�������83Hq�����3]n�������1���kN%Y��Ebi�9L�������!m�kT�~9�U�r���-���I�	.N(@ �Qm+a�Z:#r����2N@���7��g�����.� ���8�����i����X]�{RV������������9��q��xg���EA]���u��vIU�&�X�}��5��k�6
��\|�L����X�Cf��Q��`/L��=A=o4U��l-3q�9A���T;�����z��M�����sB������1����u&L���_X+H����9��}3�@@��3Z�f0��������� j�8�$�o�x�:(�|�� <�����T�
Ml0,��06Wnv~�E����Hn�V:�5��E
�b��c�fZ������8��TY�M��/�> f {�u��,�����~������d�:�
+��D�_����PU+�{��.s������x�3����L%Q��@�%����0�LyXe^_��l�Q�����3ho-�{RW�S
P��Mm�)��(���yX���B�C�$o*���C��=gW/9��Le�3�����#��|�,���H���%M\TB@k�����Q���8��U�����B,�>���A�oB������$�n|�t�a�%&H.p�Kc0�����F'I�@(q��5�O*pq/����d�A��[U��$�O�����c%�`��Z�q�AH��dA�(��AE��*�d����j�s�q���'����kqf���V���*�����{��W6���8;TYQ!5?c�����A�[��}!l��9u�;4�o�m�����m//��k_K�g)�"����28)�������
�n�r���f�w�rPYi�������������c�����+�f�������j������C�a���T���"���� f�d;�O��7��v��������q��J�>��N�v�����-&;�t���Y��A�0S�����9�����m�%J���n�X�Y�����:s�37��:b��d�)�m�@EX�(1$!\ s�U�!�	��8�K��6$%B�(9x��od�������������rC���.�(�z���V�����m'�m���(���[��\|�����q��1tF�eCo��c��;$1G������b��2T���h���by f�THve��/�^q�t0W-����#�h�;���C�W�^@����W�Z��	����i_�O��iY��&x3a���qU�`������YQ�$�` j�-����p������$��T��9��@q�����!�D�NGN�/Q������\[�L�/��j���������K����������_q��`���c������W���!Cn`C>�q�����~�A�9���������
��R�����U
����b���_�����>�\��8� �����8$�P�@e����			%�9Z,����z����W/>>�b�T�S������dp���p�I!D]'10���.��*��A��w�|�\��(����]���c7@V<�I�!YY��Q�ku0b�u����J�v#�qv���7'i�T5���A��x���o��&##���5z����xA�����{.33����j�S��>���	4h���p�Gc���l��R*o:d�}���j�X��`�2����r|N�;;���D�(E�xE�1*7Qo�������M����vFeE?�1�f��:~����N�zPYK%3����F�)��(v���~��3g�<q��q��8qb����������(������?�����6lX��3g�����?~����G�?~|FF�����x�Z]����e*�����{��%v�� ���v�����NE��|2w��PM|��)D�X;�r�P�e�5�"����8�"$�������*�	!AAA���1c�t��}����?��}�(�3f�8~�xPP�����f��1c��S�,�$I��G��x<�;^��ox�p7��=��O)r����7�v�����.���'S������6���i�s�������3 ��a�z�+�X���^�|U��������q�������_��������7n����$)11Q����f�]�jbb�%�8����t�Ae��_L�(d}��
���b�a���O*��=w�<���x�]�����b.d'b�"�)V$����� *�qq�������!�#�FH���v��U�9�t������,������.����g�yf��)F�q����R�����}����3G�Rq���:�^�(�EOy��z�.���6�R������(p*x�[tg>G�W���m�o��R���D�}����_cj.d��:��t�3�p�UR���Ng���OF�:��%���6B'!|
( {��e�-��&*���s^�������BU�\\r��?��o
�Ee��!�,������-]���>X�f���{w��9w������_����0��V�Z�Z�
@����?�{u������/���-x%��c����qO������z`����Ys�`��s���\�-:�&x�TD�+�DvY��j�����,��Fy ����3�j�1���s�U�tS	mQk��R�T�r��aD���ccc�N��t:cbb���>�(6k��d��/��[7((��v_2P��:�3�,Z����E�T*�Ju��Z��+\�3��k@A��F�.���'��IQ����������`�.b���-��s:�,���Y
��E��u�uN�rP���'���j~��#_��? j�B]
1�t��*i9��I�6
w~���Q��W��������5j��z�����})����'�>|��y����=MHH�0a����E��4irg��Gt�E'Q��!�;�d���(8��v1�K`��Z�6K�oq�!\q��S�	�$��}��1PUgW��`T����b6�6�9B��+�G��VvEs�|0+l�	�
����o���C=4x���~�����S�y�����
C���={Z�l9c�111{���������]f��T6j���]��TGH��X;�jg0��;��]�����5qUp�n�Q��
}
�A4��8�<j�z��t� �}�1�"�C���t�	�SJ'N�h��.\�0v����������E�>�O����Z�4$$$99���'N�HNN		���{�z�#��iY��5��
I��,�s;��v���S9���!�@.@���:0�JF�s�
�����o-���3Cvda������]�������5�����	��o���u[���h�������������p�m�y���5=���:@�8%�#��3�����^�O��F�:0��G���=�3��kJCz3P\�1O�c�3 v���0����{�z�L&� ?���������)����������aK! 2��ep/k�!�!fS����s�;v�����a�v�QI1��& ����o�8���F�e�����m�����_|����.X�`��e�,�Y�f����&M��n�
�?�7�����o��I]
c�2�(���f��;A�$%����~�1/��a��.����T�H@8\|�f�`���������;�[��+V�0`@�-dYv8/^4����������]�6����C�^me��>KD��BMU��������Y�d0��t$�P��h$�o��R�D
��.���)P/h���:V����a����������8�rP7b� ���T6~�~�*S�N�+V����Z�6&&�����] IDAT�����z�������V���"�*�t��+���fM�����Y"0���t�o��t7<xcG����(���o ����N_��SOxR/�]Y�3��M�P��9D��/az���������!����0�d�y�{�
V�ZU�I�%�\��o��U�3�aK� H��T����
T�`B��,��`Tn2�;��B�|x.2@@(@�f�����dw�Q�QE"�l��
y?!����Y��y1lk�91�+��Pk~�a�q~��?����{������;RRR������RRRV�^}�}����w��AU�d�I�,p*��=Pz���p���g>���Y����0��������H�o���RP	T��zA�" �A����
����M`0w1�������K�*Y�<���q�%��C��p�d����\ �nc����!������<yr���:tP�Tz�@AA���m��}rrr|||U+VI����8Hn(Z��:���M�j����2��'�7�]��2�ZCk��o��
8-P	r ��0��B(L�Ae@��& \�H<��`��~��O�h ���`$������!Y�I����z ���A�������@��u�o�����z�jA����W������X��6���(h��=u4lk��Q��L�3�2:�%;����@(�S?T����Q��m�O�38��DDS(�E�@��&�=<H�3�G����FDD>��/U5<��-:���m�C�j�oPT��D�X�����u�����8��������#��u,+?�QE�
���{�7@v����^�N��C'�AeZ����pg\��c���*^M)5��<����j=	�cY)1��I����g!�9��\��fp��75�*
a� ��[�2��`0�
Z�������X�A0tF�K����{�����x������%\Y��=v.�����r����� j��������.���T���(~������I��=M?cO�k2!��;��@�q���"k���jg0*�����=y!f��P��Q�g&��t����Y1T�>w�\A|�A�j�������R�p2E�0���L�3��b��
Y��p�/��A�����T;��`0*�p�Z�5k����.\8u�T_6w��*�+du�jL����"�+�d���T�p�+�]���1��w��`0����1u�T�^�s�N�^/����[���N�>]��p��*^@��r�L����v�R2�0%dD��:�jg0��o����=z4n�X�RQJ###G���x�\�:���{�p�NeD���r!1�J�*
�� �;-�MC@+V$���S�-���x�9�3�h4�����������>���;sDAZSP��L�3����HX�:��jg0�� �)������!N�s�����W����r%���M�}��^+L�3wAK�ee�`0�;��vN���KNN?~�V��$i��AO?�tTT���!�-^e� ]�A�*��`0��wg������<y2��$Iiiif�9::�d�B)�EJ$
T�
`5��`0�Q�������h����_�F��?�|��U�8mk����Q����j��`0�/�m�h��]	!���[�`��9sZ�l��j���������W����2����S��a>��`0��[�}����&M�4i����1cz����y��K��k���������7�J���z��`0���������v��m���iNN��}�dYNOO�B����&�|�*=�{��0��`0�_�[�}��1�;wn��Axx8�S�N���GGG�������*��N����2A���@�&h���3��`0�-���{�N��n�j2�x�'�8p��%���?����o�]e����L}I����2�����X=c0��`�"����c�������?��C����?�xU)K*B.�P��MLFL���`!��1��`0��p�Z�5k����%���|*K�����)A��/`H�t�&V���`07���2S�NU��;w�T�T����CBBB��u�PY�w.T� ��@Pv3^e9���`0@����O�8�a��<�7j�h��m�����BeI�n�S����6��-����X�c0��`�a���z,Xp���N7y�d��5#U��-f�R�����7�4f���
@���/2^~�Io�+v,��_p�Vq�q�����
��w(����3			��u����?���h��Y���)))�k����\G�\�}[��x<�����������������(/%mm��9��.������
�
�������4�Q*~U�A�G���'8]�$!8!QV��QFN_4��h��3Ys����v�9�eV`0*�����#����>|�f��&��n��G����_�F��P����9��}�0��ti�L�r���<���CC�S���}�7O�mZ���z��7�f����.L��tZ����m�����#P 8����;h��m��������2.��J��`��[�P�o/���y��LA��S���@��S���`T�q���zEQ��t�V��`�8�"�x?G��^����3@�&����J����a�Z_+����������U��=� 646"���O�����k�7*S��*��z\q�IB@�ZyJQ`���1|�i����D��}.������qq�����\8s��������ue���A���G<�e�e��#)��6��8���v����z��5(�G��WL�������(���_?��o�sOL�ch�~��������'ZUq���z=P��	�z
�>�D�q��)a�Xy���Qp�M�gddt��e��)�:uj��u^^^�6m�-[V�3B�W�K��m�����dz������&�:Jj�6���K;��L&}�P��{th\ly����m)�?�����	�����=��z�z��T��l�3��(�*�Q�2D/��a�$Fp�M������|�?y����j�0=?yH�����&�\$�}��$������Zn�x%�Nj���r|����e|��0Q����Hu#g�e)�m���������<��x���������
q��1���������j����,����"�0\
C���9�:���"�Q�8�S�"7�
��@&~������m���f������$�Jr�Qf�s����
�bl{\<B��-1|�4e��{�	����O�:u��5���/��2r�����z����Z����OOO���###K����@@@@```9w�~\l
��������.}����Ma7�p�������$�����/j��q8��	A�8|���x�:gyy��m���R<@A)D2=�`��=�!��X�
����G���Q&�\��m��w?[�!���j���Q�����\����i���K�������U7&4*H��������wz,���w�����Z��i����T� Q�#�Rx��C����^�z�S#�F��B�zJ)!p����m����m����<���l����lJ����i �fRoi����(�_���>�j�V�&�����|�����.�r������4�K7������(�.����D�WZ���>A�:�egT]\,���J-
�[�����m�rQ���?����9�@)(���^-�;6�y��M�Q5!0h7�;��:Q�r�*�vb�������Y���WNh�b��������[�h��3���_�h4��������8qb��-������!C6m���z	!aaa��gDD��R�^=��
@���<y�d2��p�n1�K3Z��������;|r�7�f�����=[E�HOP	��-��i��:�j_��]����(kv9������dy��J�w��	S��P'&b��=s���rP��t;�/�%D/&�F��O��������H�������9��
��5�%�1 9tS�&����-��Sk6<��n	7���;�~&�:}�N��������9p�RQJ���'D��Y*�(d

�Vj��~�������	)��DA�t�3�?5`�Md2��Z�g��E��}����;�Z�����n=W@�����
�N� ���nr!���C������Mc�<|>Gw#�4�j��(�$B(��
Mc����h��0%y���96����x�c��M"Lz��ws����KA����S�V�D����C>{>1���0���]���H9����a�.�S$]T-����K�����~��#�}s���g�����[\�������[�'������R_����~���va�����B(@ ^:7^=�Z��`��g#%����M� I������{9����>��I�&���{���;w������W�/[�l���;w5jTjj�����p�B����� ���3L�0A�������r���`����x���z��7����;�����)w��E�A3����o��%"P$����'_��fL	���>�n~i��m����(�`��T|�����vm���:l+�<��/I)�x�Fz
J�6�����po{P
[.�Z�������qPiJ�r�������$P.�<����k���!4�	An����7���b#�r�\�o;N,�v��p-��)(�$GW�p���
��r�U����})BX8������2��"S�"�I�z���J����B����R���5�e�"8��rH�w�������'���Z;TW��n��y$%{���>�n+�B�e���=M4��	�p{��@�A�G�����!$�
Z=te�:��H2�)�)|VV~�y�����
��j�h�;�#'
�TxJ�|T������6:�@M@�2S����vi_xb���F���;�hg�w[W�8���5��t<zy
T����
~�a���
cT���5����N~��&�`TZZYBtm|�3���7@�U�<���ehZ*�bq�j
���aL��wx�S�����(G��Ha�5�N�{��W��Dj
��lwE1~������v�a����*@����S��q��]�3�i9��[�B���oS7&2(�27f���,�<�>��W�r.���O����CUrn\���G�^x�S�FCw���<+�$���,�����*���;�"G��w���76h��B�����|l^k.6-��
��@�)���h�����Z�V�p��p_�bE�~����EQ��lO?��w�}�w��W_}�a��?�����n����h��o�����6m:s���^z	�G}���/:t�I�&�$�W-9����*��#���iv��������0�1�1�#4��@�&r.����8+���@m�0���]{�������V�2;<�E�g���4.�rI!J��c:��K�d�@.|)���BE��'��p�YU:����x=
E�G!KPk1�3h	5��+��e�����B�K\�$Ap�+��*��DLSJ����t�|O������hz�������
!��y�D���C�D8H�5<���T<�f��c�r�n����*��'��B�(��Jpy�?�p`c��f���N���]i\za�4��v,H)( �H�s�XW����}����X��g=xA��a
�����o6�
�i-����tsS�%@�~�F���@i�p7�������u�'������f[��|��sK��av�2�e�KN���
��a���A���!���F���V�y��w?�y+kq�L�!E@J/pA��{�$�ER���,�"M���������~�qb�����7�Cn<��P	\��[>x�PB�0�b���	H>����It�F�V��i���Y�nP����r��B K��S��W)H��������v���g,�:\�
@�
�����':5�0�Li���==x�2��w����p�2�����#��n����}��_>u��������e�������
3�$�_���/_�U���|��L������<m�_3t�S�%D�`���G"����CZK�<���Bg<5�����J���28�����(FL���}����OV��r*���\/�?%��g�mS�����Y��[�@n�Y�p�e��pW��2�j�"����Uy�x��w�Q����i��?�p��u��9��t���O�iq��lNMM���c�&Mv���o��-Z�[�.11�����w��w�������p���L���{��|=����z^���|�/�]��Qa9[�yWw��<����X5 ���J��H������W�����'5?���$(o�����E6���%������V]����-N	��w��K6���q��%3��{I��8�p@���Ge
��5B�) 2X8�]���@r��_7wa��J���!p�AS(�<
��A��Vc$	��z4}6�LK����B��?��Q���X�-�N-��H"�!h�
�-5\Y2;W��QXr@H�V�B�h������9��\���[4������v�C_t��!8�j����-�k���G-�M�i2�)��D!8^��@e�� K <�o4��������q�?F�rI������ 2HMpU��Yt})!4A�IXo����x	B�<��#N-�����Jl	'�\�Y�^Odlv�rQKE����JN�X�F���&#�71�U���,A��E@3��<������;�
*���.T��Q���Oxp _B�s���8�2���$�c����j[��%�U��X�f�U#����D���9M�"4�:����q�Qk�\	}���~�P���&�U��/�yqE�c�K��)@�n��>����#;=������AWYN�������H:�u�����:�g����+v')*_������ L�-J��p���?FMB��Q�vw����L5�8}]�R���Z��^s����u[�AS���(�T\����4��w,�,G~�;p�:�_��:#�,%urO@���sx�*��4'��T@��V��_C��Q��-���r�_�<���k�
������<���z.!� �������+�mW�Z�}���$���=*�R�2�c(4ZD������T����������:�p[��L[��������*�p��kWJJ� ^�� ������P�g��<y���sG����G_��E�%!�\����g��|��(8���Z����5,�B����n�3S�w$��{%9���|��y�g��9��^��kG��F�����%���@�������^4�����HY^��-��������~mCC��?��[�����`�&�%C�-��Vhw��}�(�%V���tl8�}��u�����Z|�����I���@��������"k�
�$!:���pt��.�^������������}M��5��
z;�~�
1xY�$�7
+)��*�?��!�h����^E/n?r�����
�i��9�������O��(�/%h��&}C,slZ���zd��n�T�4 �/�L�>����2�NM�U����7���#��lT���Gx�O�w�t���L�����6���� ��UV��J�i��@
�2!I���5L���,+�m1�lW%�p.9�S+*��4��U���BJ���9������l��c%�ir����z:����:�={7��we
�km�B�����g.o�	�����������1��tL����B���~��;�Z�i�#�HK�-�SPI�$��i�8vp�}}����?a�r�f���B����������M����d������[�rz�a��s_���+���hJ�x_���H�kvI�_�H�2;.�g�) ������a�se��S�":�+r�s����AJ��RY�G��['*�\4B����,G��u�
��_6�'S4{s����I�[xqi6F����q�^�����J}���9@�|7��0R��(��������I4�p�E�Or�k?����s���?��V���%2����Cg��������u�N�����m}�����qp��KClT���/E�Q=�lh IDAT-�"���h	�
�����������h���<�r�j3v�{~��eiY���c��7�b	��c�.\��_�$)??�������>���I�V�\��x����i��M�8�,���f��?���g�����z	��L���K����x���b���v^�co<���^Ri=1���;h�.g	+��.�����7eX
���R��kR;|���-��\�=�N��/;�_�'���
��yC�3��4XGjgH&hh�f5f���Zh��#�XqpT��?�����-T�;�S�x:��2A�j<���Jw�T�z%Q�A��:_M�_k�7(G�D�&@��5:=���d�p�H���v��.�y_C���/��o�p����`���e���)���
�]������u_��:`�'���qV�����4�������W�w�!L�0����K�z��`�kg����{�x���P����z�r��q��������W�-j��sI��v$����������l�p�08u�+P1��!����|���u8P2�Wv����q��Tn
x���������/���t�l�T�07��A�$��t�D�T��c#5����{�+P2uy�2�A:�f�����N�t�����G�0��������d�)�K�y�z�)8B���M\#�W{
�[���0g����QD9�*�ZB|wGQu�^�:�|Sj�c������~2�e���r��,��SIt�T�sv�����bO����A�KL9qO�F�����������N��z����k�@�.Q�o&^��9��}D�UA���)���7��q��[5����`�/�uL��,�~��w��~e�S�|^S���:$�7�����y��Q
�����������[�Wz7wm9����g��s��=�i�)\��^�p�3OZ>, �0�C�	g��2��������:>��kQ7���Mz���U�O�[wx��sy�Y�%#T��p����:4�	5��{N^�0�����	��H<���^T{X�DB�����?�����R������}�v�?�N����#�u(�_�����j��r��q������O��9(��3(Q��P���-'e����v�_����;�F�R���^)
S0����X��}���^�z�/'�/����~�$�x^�g->y	�,_�Ge��3P���0�������c|�eM�%����0���q����.�v'^��n�{�k����*����RT��������}qL��z��=���Z�
$�m6���,�i���k���III			�*��sU>7n���s����g����,_�����'����M}�1o��9�+w�3�2	wQ�����ZOD,T���:BG�L����_��:~>728��^M�����$�7y�*����>[~p���p��b��l���W	�)�����9�:�?�)���������r����\a\?UZ�2YVb^��8D��U�9�'G������n�����bD��VJ�R_�W')�{Q3�q#,�����I{j�$���x\�%[����3�f��.(����QQ�<���m���(
%�.C���$_O��e�Dh��t�$�J�B���V���I�7���������_��K��yj��b������8.�����Of�/�r4��Z����V�d��TU*^(�FYPE���TU�����.�lw�%�b��TH)�(�e��?K�.�(�x�Z�(��vC��J����")
���M�G������Ful�Q�s2��t3�:�q��'K�X�'���@E�^l���v��<���2�^|�B��4@������:�
\��N���W�����P���:�]���h������
(��L.\]�����wG����E��D!���#q"T5`6R�tK/���	 IJR���$�;��sqmu���(E��~�����n���h�~�Y���Fq���4�p�6q����@e����Y.z�`��o�=��	�������f�v����4�������s�<}t��*<�{m�yk�����n	�s�:���>�u�e�e�P���D�VC��\�*�d�h4��M}��m�S�9�\3�	�3I�:E�%/'����%<�T�����q��j99<H���$Y�u�<Gx�����7�a���tK�YJ!����S_�,x�����B��.8����^i]72.*�#Jra���/�9��;2�0�^�!�p���V�'����.�P�[o&����[���h��\Z�8��h_�~��OO�,�s(�8MJ���)j������rX}����0�W�hT���S��G��Nl���!N�{m�f�FE�P
��>����0*�-<_���U<�qN��3���"�������s��R�U��S,�M���;����C��e�7y���������S�L_N��@��6i���%�����0b���c��n����$���v��������:t(33�i���������
`��!,(���G��l�Y�vk6%�"�M���R���O�W>��u{!��k����^���,����p�L)�K�_.�}B_b�Q�����l,T�P����������]�l@��Bo�Wl����u�E���:1�~�;���?��
�������(�������&���	$���EEA)""�H��;����SO)zb9�w�gE� MNE@�(5��vS�����c6K��l ���7�:������<������yU}���j�~�Uc�n�����������NMDyT0�U�2L0�Y��/��S���:�=���������
&3r���W�K��{	�?A�����	�T��q	�}�{OZ��L�Y��-~�X���E�T�
�O�C���Uy��#�f~��_r���������[.����C�%�"2
f+���O�~x/�.���!I(��G\=WFB�3����Z���S�{v�w�6���K��q���#�����A=��n������r��!_	 ����k���MH��x�cO�+3����]
������J�eR�M3	�`j���?k;P�Di�^?��J���=�I��s�N���-��L[����g]Ezp��
{�Xk$���e����B�"�R��{Z����4�NCL��>�N��������7���lB3��T��b��	����"g�U*4In���o>��/qp�y���c���g`��5�����������0l�cioMH��cS5�[Xr���l�.e��>s�+U�p����0m����G��K9���J���J'9T��X���
m��b�uZ�@D�~�&��_�_T��k+6����U��"�&!`�r�����
G�%zs��A�s����^��#��?��p���6R�KJE	���oV��'/c�K(/	�oF?�1��l��7������������
<�`3�
�b�������N���?X�k������2�R�="�Y�Kl���b�w�<t,~8A�]�b���+��S�h������0�N��j�,����~�����D��i#�_�L������������������G��w=z��p0k��)S�\{����s���K.\����o�>�d^^�^r��)��7����O��0��� �����R!�zM�[���JCaU��hA�/`6��J��_Z��r&US��C����P�6�n�2���W�����s�o�������~/��G�W�I.
8�S4��_�z���Z�)8W2)>��{����������������;?Q*k/
������K0G������?��_w�
� :3�O>8�N��{�JZ�����Y�����w��:KR��Gr+���pM�,.������ >Z��<5q�����7u?�]lY��'��0��&��
�J>Q}�m�en��=~�%�:�e�����}��=���tl7�G�v�1��5��G�k
�~�����4����-����R�z#k>�����~������B�*�� ��C�r���������By����Sn$���X������%�;����~1�`E�|�sR�7��G���BQ�
TJ��L%
�������mL�0[+����v���/�;$������'n������-Y�a��i�3�3k�4�M��=�!X�`���J_�����+���3�JD�7�\�Z"���9M�`���jM���Q�nY�k�T�%<���76g�3�������j�&Z6rj�������v��d!-������=`;�6�M��N'�[������y��#�Y�0�<�+IC�j���~�(��iY���k�H��W��x�`��_�P��3����V(	N���]��������c�}T��a��{i�<�����6��k�O*]\i����:4�������-{3�<���W*��@l��T^_�7��k��*s�4f���:�5��0��X�/|e����)�wk�E���}����X�m�������l���������|+�nIyKq�#3��QL������{!KP5��k�Ht����o��q`�V��a�E��=����bX"k���N:�����k�w?����Ty�������.T��W5������_��-���`���[��m�z������w�������Y����f�����ukll,����=z������m?�g���>(�M���������:�������e��!� !�H�!��Hj���Z��,����%�>\�k���SV�vP��Q��?����wT~4Y
0[[$9��1����PZ��\���48���r��:������/��r�W��9?\���2�������Q�b�&�
Lu���\n1���j:A>/�L����E�7���V�v����%���wZ�����r�k;uk7���M�@Q�e`���T��,�<W�p�y����wiz^�S�o���*�y��!�A���4s�yY�Cb[��%�8���c��B�$U��]����ga�F|R����nJ}w�w�Y`>�"PYDs��v?+6�LU���LD�Pv�I#�2��.�����? i?��
w�a�@���#�%�O�Hb�L�����	�9�y!K9VWk��c�
��+���o>4``��',0�UX�����|�%���#v��k���3����cM�@�������C�%�,�i��=�%-R��l���X�,AS0��:�'*�S-��������h:��/7�J�S�/�����dq�l��IWq�bb��R��5s�=y&g��*�0�1Q�������;�Y�����=�jf�1!�����w��(1�v���;�gs�A���t���N|+r�K����<|lT���{?L��dYgx�!�`=�
�����f}G�o@��������3OV~��__�t$�X��b|2�n���bc{��
��9�j�BU��C��p��']u1�����AU�]���o��w�������n�<�O>�*��h������q����y��j'U?�@@�K3�=�W���!=��7��n]��+������|x�'L`��GI�|��v*Mu�����ko)�����5�:!:��L��O^�w�w�U�����`�
�<��I
�M�6N�S���RIff�������T���O��n��<���%E�j��O�|����@a��w�2T%��z�d�����Qx\@��]�������F=V(*�����!w!2�M�����]�>
1�e��M��c�+����&l�{���h��Q��(��j��x{�4!:5������K#�e���B�����K��LC�Qh%���2MB�S��%:����,X�Z�]!� �������~���i�E��2��0��qc��X���^����
�P�|�����������9�lg�����}
B�����{�;��
�?���hnQzfr�r�B>e�5��0[�i�uK���<��(D�/i�Sr�yR�"s�K�vY#E�P�G�u[u*KE&>����J�(��V���"B����������}��V�O{jS���qi�����{���>�4�YB4I��c�j���r�?�;=�(8�����'+��W���a�^4i��c�{��p!$@5�ARa��>�T�R	 :�&b�cU�����;��H�$�������'�]���M����f- ��{?����*��:>b�7����g6cl�Yp_Fa���,v��(�N�����wn��<���^�g�(l�2xwW�|����r��x�0�E|���QIS�D����2�1UV�D��\��zQ]!�.�k_��jy�9����z� �FQ�E7a�l�f�Ur��P^����8�zVO���w����cEH�$����_�l]���FQa��U� �p����|�e��5�6�rd�?��=�}l:�&P��Q>~��`�@�+6*�jN�����r�i��`��!�R�~7���o��j���U[�u���<��(�R���O�4F����*17U�� �%l����	r��\����0E�U�	>�Y2���{��_�{C������-n����P������������`�d��
�
��������[�?�����b��&C���������
��rk�)X? ��<��W������{�,_�15t�y|��R�?�/ �1g(��KM�`j��DQ�"c$�����/��=���QN\=�?�s���K�IB�7p$�h������[�,0��r`B���h{Dbl��$�~0E��J[ ��.�5Q��-�r��L��z����H�D �����/�\��1�-&C�d���e0U�#����w����'$��S�c�<d��X}M�#1.7;nX��F�����d���{��[��D:8�
������e�!����u��)��q�.�s����k+Wl�_y��j��e[�
��]}"�^���?��:��\��w �0""�wj�������8���s>�B{/}�V�`0V�X�s��a�=�v��.�z��A�$iOZ��[��E�K������D�����\�X�,G���m����}�����=��oJT���<�>�o�gO}����1�Q\xlb���1����^y���j*�K�	H���g5���z�����}���FN��G�����$�.6����[��(&��)��%��z~�5<:���0X��[���7��
�W�W�#���Jb���=��*�Um�-���������9������a�~�<���9w���W�W��*�2$H�����VOj�����\�[�t|u��Ns��q�oy��3�n���f���P����i`4�|��p���L�\Y�|����?��/a��RJ!���({ �H�f�I�1pG��O��H��3�Y��^��U|K5�������p�T����k�w�s<{�yj�Z��A6ZM����i�������6��3gy^N$)�w`�&V�U�u,+,�����Rr&�(�Bi$J�����(�I�*`2�����BE����mR�]��m�qyn}��_����_r��[����C�$�,�U�zL�K��W�k���k���#"/#Z+�R�(������}�.:jp�u%����X�F"p�H�C��V�FT�E����&MC��P��$x���B6T\'U���~4n�1	�?��)+�+�E��~8�/����Mfk �����{��[E&^o�������>��������6�Z��$��������'�������;��#B���?�7��+���e���x�R�K!`4���!I�~eE�Z�=�S����������,K���$���'-��
9����f�;�7m"���R�F�kr����r���������m��.�5Js��;,�������M#�8����0�S.��?)X,�w+q�v$�Z?��)/	��Z,��*��
KD�{�{q��6��\$�1b�LY�q�J9��ELt����v'Dq��+��W��c�O����!]��W�7XX��������������a����0������Dpm�������,�a6�N�����A>���������a����&�,��, Zk�+�+;�O��Oh��l�sWI��@�A�0��T���r���/����x���=�Y�&���l��a���x���}���G���mJ-�+��cD�%u�2�Gv���B�m��r�|;�����G�"-����V�����Y����v�]�� -����8&A��s$�����^_Aa�JC�\�U��WL��r IDAT
0�y�kDZ#��(����R����v#.4�xaxJl�I�vH�����*h`2�Zi���lA�.0��.��������#��^=��]X*�j�e�#�#�z���"��D��PQ�����c���8m9�����[��PA��B�u��c
�d�U�)-�����a���?�8��j��1�������xg���:�//U\X1wQ�\��b����8����T1y(~�%P^+��c�7+N�Q���{�t{5�����k����f�G��gr��$�{	_�y���5���\����������YZ�	��u(��@�sD���`B��1{	��uf$	�5�w/)���|����DLdh���������s��<ZWl;0�������R���{�i�������U�Tv����3���K}�A���*9xq��J���p-��E=8c������3p�O�����n��{�^���eD[c_�2&2DTo�}�}����x�_E-gU�=����^�������%��1};%8#mVS�=2�r�\���hy%�2o��i�6�Y�n7T
&Ch�������.����M�U*<>�]mX:Q�Ti1$��v�S1	G�*,��
��I�����2������C��������Q�5a0�[�H;f�G�6h���_T�������R����u-�}�����,��[.��mW6�9[+��/O��+�<6����%�j����JiJ�n�_oB�WqI+������=s�;���F����$6�]���G/�����?o7����������xsjh�0@_��������vX�e���>���1�{�{��+v����Gs��U��to���5[����
 �YGnZN��m�
�S����Z���E���0�����LJyL�[,Y���??���[�U���������aC��P;v�8i������?p��j���12j}�&KpD��0l�#"DT�	�����(�j�|����~�=���TD��G?L}/���?���h������+*��.��BV���b�w�_F����l��`<e4VuBM��Zt��#1��p}'M���V�)$I8����p��+�=OxJ}�xo_F!�h1�����'n:�c�*�2	� �p��� `4A>^{�C����//?��=��J-:��5���z�]�O�����K7j��l:���jyw����XE���4�y��nO�vE������'��j���i�Uj��E�+�No��Z��Z�9R�����8���Hs�u����|��7}��]�z��`8�wU�]W���O$�vk�7�rF�@D
�o���)��
DFW�W`�E�����JFN{\�����W��6}*�#s�������<e���|���� ?�Ex�l\����p	�q��#�4��%X��hB+��+;��5�b�����#�E�}��D�[NZ��d�aB�*��j$��-��i������ �?D�o�k�	���]���2�3� W>	M@Q?����[9l��u9]Q����+B@�5*�[�� �M
j��	����<����������{a����OF���/[i��<��T�����_���b�^1	��"z�?����IBA?�V|<�����;��1�a��k���+��_�B�Y
R.e_�s�1$	3��
K��&+��dF��0�]��9�a����.���I�$4�e���
��G4�?��%�>�����g�T��Q�=����s����a�qOHHX�lYxWN�w�{�a�u�z�2��
������[��GS��Lule_}]��&�0n�'8m�`��TlY�	E���R���^I=T��p!�SH�	__������BJW��9�YP��/�.�t���~��a�1���E�v����o�oJ�=B�$Po���Ihu���31\;��(�/n����V�)l�I6����������y�x�a<o����	��+MmTp%c���%����R�2
o��Fy���=o��F���m�u/����a�����V����8�������U�_x����\��|�a��
!K��a
�&�&1my�5lc&c��UV�5[NU�Y	@U��?���56��ED���(K�������Cm�I����/^|�?
2�]�v�y��
$Y�X�^Q�6�������I������k(��sB�k$�@l�f�
.��S`����l9""���;���l��Ue4M5j�����sI��8����� ��k*{�y���?������%�!8s���^�~�=��s�=�G�$��l�Z/���~%hJ�J�BX��UD������=������0,�����!C��m��e��/�8//�By@�����@�Y�A�UDDDDT����/[����/~���<����%��xk�j���`�[T,���DDDDT'�0Uf��y���_�z5�����W�^J��IFwKz�����.EDDDDu!�������CZ��j���`4�lDM�#.}�]������i��hf�/�'SU~?4��r����q'"""�:��2�,o������RU�������}>��(3g����NQ�
g@�a�a�n�4��KQ=
����:���������;���'������r�*�	�W�a�RDDDDTj;UF�p�B���t�RQ!--m��uB��={��-W\��|PE���#"�]������c�.I�������������o��������o�QQ�����R!��K[�IfG""""����27n��w������qc}���>�i���?��o�u����l��@�a�|�v�l2�&v)""""�a���;���<�@���=���������-�,0U���#��.EDDDD�4p�$)�k�l����v�VYq�CH���kf���DDDDT����;����6n��q���$����m-L&(�,���B�$���}��B�n�!333;;;''���1b���LJJ:?��(?���v���+��32�]������BNMII�1c���S��k%IRfff||�G}���|~6���a����8��(���v""""�;�)d8e�EQz����������G�2d�y�l�\H2T(�M����eS��������#��0k��Y�f��mV�FAN�uE�P��Zs�T""""�+\:�����$E@ �9�\6�������9(��t7���'�!""""����B���X�K!4G3�DDDD����X3�a�h�������mCDDDD��
O$@�"R��DDDD���^Z3�T����0DDDDTw�
�Cgff�� 11��������R6�-**��~�;�@�{4����av&""""b��(��q���Y$I�����ukll,��������X,���T���O�m-L&�Kp���j�M0�NDDDDu��M���a�g�}��K���z���?t���W_
����m�V����g��=[��:���0+��^K� �(�jAr�T""""�S
,������e�5k��?��??777???---//���^?~<������'����K�.a�k>��Rm�&�^��l*���q;v������8��u���8UUt��Y��������s!�`��!T��E�������{u�$�0a����>}zh���__�E��Q�|m�7`��������lh�UeRRR������+}������~4�@���������)�X�^������dTjyy9��H��ia{��e��nw�,����o������j�*����K��w��04��FIf)�;#\��&���q�x<-[������sgttth��l�c�}�����CCL&�I��Xi��j���W�4��r�y3�
�~�#�b�FDD�?Qe��Cb�>}�t��=l�����J �j�2�K�.m��y��'����?�M�6�/)������P��oo���7!�AQ]j`����s�\K�.���/�-.��w��V�u��-�]v��Y�4k�l��-����|���>�_G_�����\#WtSgd;1p�9s���S+o�e9..@ll��}����$&&���_3f+ ���<�9��o|0�NDDDD�����v��o���]���l���7������1�eS�������l���q)�O����S"$U�P��Zs�T""""b�^Ox���R���oC�WRh+�M%"""��ed�����dPbuB��(�'#WN%"""�����VV�g�a�������������\30X#�w��`���.���BDDDD���PP���NqQ%3��������3�9��{@���T�T�r���!""""��CY	4
4e�#��7�&��>��!""""�����!�P.��J��|!K3�DDDD������
�Y#��'�.�JDDDD���5�!������P�iB������z������6�
��ZvD�(��"�DDDD���~��f3hZ�k{#�l���k���%+M2�-G�#��e�v�l2�&�1p��~��=�i�K�{�I��3���p����������V^�O��9��l��.���2�1p�2"�@r������	�B�r�DDDD���������}�0(^'I�vsE7uF&�����������qip�T��5�
�%��+V_b������4M�x'"���yo@6�4���"$�bf;�M%"j�������|�@��AD
��Mp*����BKm~%�l�d��U��\6�����4MQ���R6��`0�2�XD��TuJ��d���=.%O��q�V.�JDDDDg3�'W���!di}�t�7����+�5L�,�F���h42�ND�>o)|e�jp%��@���BsD0�ND���L&����l
"j(x�:�
r�������^b2���%�7[���A��������$���;/[z��0��5�1p�76.�,b�����e�[�T�f��F"""""����;�*������������4����a�1p?���k$�-Zb���`s���|!K3�DDDD�������$�@�A��/.h���Xe����s��w�a�i�<�]�����{����DDDD���:�Yi$(3p���Z�M
hR��K,�NDDDD�����a�A�]����v��)_3q�T""""b�^/lXI��RK�Y�h�^�N�X6�(����MEDDDD��w.���$b�E�Z�����3��|�3���p��������06�����'�rlll��%%%���l6[TT��z�\X�H]^"�u��sE+���t�,�{�5
2�>r��.]��3���u���Th�����>��oX�@."�c�wD��R�]!X�������Pqqq�~�.\���[PP���xF����g��={�lM�:t��g�k&/����i�=S��V���|+U��+��32��������6U���8==����:th�����z�������m���������K
A!�y0�s�=�[�t�ci��g�0�NDDDD�O*))i���YYY�\�^���:w��������5���Dp�����u`���2BQ��T�l���DDDDt65�9��t�R��_}�5�q)d9��F��g�w��f�e@��j�eS������1^8j P%���`^�W�_
�0m[�����@��u[O��~��P=�.�E�>�_*���$I��i�U�U�V�/�.]Z�v��q	,zN][��U#��UL��,���������h�w��Pm��l�c�}�����CCL&��d���j����W`�Di��rE;����OG��(��\�$���DDDDD�P���(p���_�lYqq���������O�F��!C�t���M�'�|R������iS��2E(-��L-�"rSi�T��$����%�7;"�5
,pOKK���{-��b)))���{].W����V��-[.���Y�fh����-[j�kO
s�R���l����
@��k2�1p�C�;w>x�`�-�,��������o_vv6�����:u;|�0�u!��Q�5S�rMa{@�����2�L���$d���Y�:/o�ZA�VY3L�kBq���:DDDDt6q�G�o��+�/�R�j�5S	��)_���;1p?7��"��2��R�*k�P��jAr�T""""b�~.l�&37l�"x��L��C+E��Zq�T""""b�~���"7� �LD	M�{l��o����pD��������������[/�m��a�@���*�����/L!��������]i�(*�����&�h]�=���R����1��61p?�6~	�^��Xj/A������
@2���[��c$��������]s��l�{�����k�P��s��8U���������^��`3�Eh������,1���b��������������`�(A�)N�BT]35����2���XM6v""""b�~������@"s	��5S�4w 8=�%e������������l��Q)�z�^e�T��)�U���b�`�!""""�gQi
s�|�m���jk���������5�M%""""�g���"F�-L�
B=�����cw3�DDDD���,j��M������$�k��,u�fO ��*�""""b�~���s���eg+ ��kYp�5S�xSe��(j�����o�����,3^������q�lb��YeM�|�p�5S�7 p��W�#wM�k�
�en����
�$G�U�hl9��R�����*dL�,mwkz��Z�DDDD���,r��<��5�$`�����QR�����*k���%�R0jo�l�NCDDDDg��:U&����~m��9�Wd�	$!���.�F�_a�����B�zH>
��.mr-;
�}j��U'����v����oI��m|��,PY3$��<!KK������������^�m������&%>�����>�1J�2��1������M%""""�g��+��7���<��M�$ �?c�c�����������vU+.�JDDDD���U��r��E������*A�`���=�[)1_|(?�(��73�NDDDD�����|I��O�����k��>U`��k�����e��o4�!X������	����d���;a5�&�hi�"����H�?O����[|(��_��G[c�-1�4DDDDt�]�s�%�tC��k�J����bx��v�QBH�r���b��#�i�������Ye����/
��L�X��7@�@w���k����U��'�T""""b�~�e������:���x}�dT[���
]2��x�R���(��q'"""�s������+�~���C��c�V�����|��dg��?�`�E�&;
1p?��
Js
J$Y�b�~=| T8���<������ ���""""b�~�e�@I6kw�^�b}���������������z����wC�L����_�$�����=�������?.���
�l�!��)�z�[Q}sAO�))����M�34	Z	���!���������e ^RRZZ
�f�EEE����]�&��7~u���
��"��	""""b�^���[7v�X=p�X,���N�����t���=v�����h4���������d����=z����={����5M��������=�w�#�BEtD\�ADDDD��y�q?p�@VV�?������(..�<y�����t�r��{
Z��l�b�.4�7{�[�I������w���������^�����"`$=���@DDDD�����s$$�I3f����0f��LH$��DDDDT�]@i�@ �(��z�Q�����5rcbD���=�����%I �8�_$I�i����|���vc���3��z�5�����vc�q����N��pE��I�}���rrr����������o>��~�{R�ZD]	��z�>�������4��� IDAT���n0N�����
Czz��_����nl��|�[�n�w4���nl7�zu����y�qw8����>���/_��t1�L&�)�cdd�Rm��4�v;DDD����,���}����,�V����\G{f���j��n
�����vc���8��Q�1p��u���5�6m��h0o����[�j�
DDDDD���$p��l�w������Y������7���z'&&f��}������#"""""��%11���|���H���{�'of������v���vc���8�5��������|>��b9�w�u|N�����m���>����v��g`�5�vkpG����v��w����;Q�'�	������w"""""��������m ���*))	�n�;w�TU5�X������W�7dgg6�����$333��U����u����������=���*�R�QG�m��=u��333�����YH�����u����������::Wdee�����b�z���<�zu��TU��sg��zuq~��\G���zE�P9�i����o������S��3g�����7v��-!!!99��o�
�����_�x���m�����#G������;v�q��Z����MJJZ�|y�<g��N�:�\��������z���Z�r�\�F�
�n}>��A�5jTXX��|�����������.�c��Y���			��
��G���Q������^��n�:11�]�v�=�V�XQ��b��Q.��n�/^�8�������]�:������3'�����n��]�����k�v��{�5i��q��#F�o#4(66���0���3gN�f�bcc�����z��[����s�5m���r������8\�"t~���iZQQQ��]�����\.W���[����r�����a��0�.f����Y����n�!����4�W_}��n���)))N�3"""�{���������i�'��{~KNN��r��B��n��/���-Z���Onnn�w�a�M�4�����ln��Q��~�A��z����x��9������o�p
B�#G�DGG�����G������u�t�����/w8a</<�����;w�`��a�;t���t�1�(**��C������/��������/���p����e���6m�T�������^������k��={�����+��B�����0�����C/��O<���]�v
�n�~��n���{��7cccm6��C��5��H��]cbb�x�
6��_�z��o��]���^FFF�oV��g��'N|�����i?��S�]w�W\��P�^����S?�GX�E�YH�L&SxG��~�)����������.��������'O����������n�
���.
�z.T%\g������{�����a����/.�k��9��$�>}:�;�����n0z��p����o��v{�EJ����5kII���$''gff�r�}��i���������~
��NKKs8���c����p8f����8k��.]����?~|||��z��Ma�0@���+IR����,���			��uc�������m���������2���W�-Z���	!����q���7��o���G=t���j}�����k��4��?�@��()):t(�������Z�y��				z �l�2}`�i�|��%U	���?�_��93t��r�LJJ��B�7o���Z�O��k��sg����<=v���k�����[���n�MQZZ��E�&M���KT�uu��9999\����Gi����z����<x����k�[�}�W�����;�%Yj?�-[�L?��|�I}������Y��t�}��/��������c�0�z���			c���<�=����y������n��]P��T����Q�SO=��6u��P#�rO���~{DD��ct-��O<����!
o�����z�������^�Qo���O�.��x<���{�����DFF��x4M{���L�8���@�F�*G{~���p}��������^zI�NM�4i��MS�L�e��t:�������������=z���������&bM�6��y�o��g��7�f����.�u���?��sa�u������{��q8�#;;{���������k��-KJJ���������Oo����[��Na�w�p8~�����Y�kTy��_~i4[�lY�����c�������t:?���0~}�$����z�n�������&MRU��=y�����0��������k��n��]t�E��U�V��'�x�6��������9�iZaa�����������~[����nJHH���
��i��]��^����t:>���/����6����{�}._�@\\��������;���i��������t����~����������Z�p�=.���:�


������?
>\������/�~�����wY�Q/66��w�*�z��o��S��~����_���U>R����?���IMM�?��%K~��Z�zW\q��������m����z��7�_h�&�F=��P������W_}��.**b�^�v|��'+��'M�`�����sJJJRR���|
����]����5�L���(..n��y�->��C���a����=���>g`����4�g�y@��}���k����y�j��~���x<�-�����[�n��x��@������_�`������o�L�C�edd$&&�l6k���}#�]�V��I�&dgg��1+V�8��:t�f������3��[n�S2�-P�|����j0������Z��#FX�����p8���=���o7=m6[rrr-O����'��,Y���7�����>*�[n���W_5���c��m}����}p}^i^^^�X��tt8��B���C��\���?Cv��
`������r�������k�O�R���k�������������������V:0))��������~�}���u]m�)��W�k�y�Z���;&&&�����z�^z�e�]J�������Z��S�N-Z���i��-����������1c�>�=����5����������S�����7�pC�Q/##�q�����Z�7}�;a�^�/�����k��i�P8��i#���_`���W_}������rrr�����333���,�����l�M�������k��|�������wa�B���e�KOO���	e��LZZ��#G*�(����������7o�������O�z�j����G��>g�� %%�{����(��������������E�����<��R��c�}��$I���%%%��7�xcll���Gk��y���r�c�����������/k���4���O���-[V>�}������vM������a��9s�7o`��E���?�������s������4M��u3�f��3����YYY��~��SZZ���+g�322���Kk����������5>��#}����k��G��k*###33S������4k�l��	�q�g��.���I)�������_���qqq�$�F�
^��E��^z��<����y�z�Z�XX�`�-[��t�����p������[����cG����TMC�W�~���v8�9e���7?�'�����
���������Q�q�F5�l������������0{��3h�@ �u��P���w�j�^II����#G������Q�r�^XX�r�V�ZU�s��]�*�M���Ngnn�/���_tM�:�����������>�������tM�"???�����{��G����P�=����#G���_���O������g��S���{wM���7�������'4��[n1�Q��t�t�O?�t�~Q�?��P}�;�������������Y�V��M�rrr"##��W�=/X���G�;�>�����t5=v����l�S��������~Z�=�,�q��gdd���H�:��|�:��)�d>��������t�����8|�p-�9w����8}��<y���>
`�������i=��>�)���'L�P�[f~�???��K.���ghc���G�Y�4F������n������h�"��V���@`���'�J;f��1c�����������;~{||���3����?�866�E�z=���mNNN�$}jjjTT�,�K�,�����a2�jz�Y�fMNNN����������e9tr��woM��ggg�1"666T��������=z��i�u��%''���'&&V���~��EEE���Q,��k����$&&�m�6�4�~Cf����$%$$����>07j�������B��
���]w]��P
���X��u���M��n����������y\W�8�[��@�
�M�(�(A�tTd0��"KPq!��Q'j2yQ�q�$�$�81����bp_��������o
�]�����W�QB/�O����6����[U��=�<M��>���[^^^�~���!
��l������^���i�����������������rss	!��M��
�������T*777z�iii���z��`n����p�7����xzz�T*Z-eB����s���`�������[5��O?
������|B=�;v�r��
�>3jhj8N��z��������~�QyA�eG�����{�e����8.55���9!!�������US�z0Z����$����x�
3�z��4�g�?�����
�L&kkk���:99���%0�r�hK�,y�Y�#�9��-3i;,,��7�������[���p�S��J�������������@��t��X�-++����u2�G���0��V��y3�eY�-..�'��Rdd$T@��N��T�;v��,Z�b�M�1�����PYY	y�)))V�n��9�VY��o�h���uuu�ov9''���"XMLL�J;�D�#G��$���������w����h��F<�$//���kj�z��!&-h�)��[����������6cQd�tU\\|}p����15-��UtRRR`}��C��_�"L�����{�<�o+W��$�B���///�a.\Eu`R���~��g�0i����P*�*��%K�t������Ga����cT���8i�$�PH'�KJJ`��.*�������}O�@��_�4i!d��-�]������S���t����T(...o������H$***�_A6$������b�JCB
oo����b���6m�P(tvv>t�Pqq�R�45uv^Z��h�	w��7i����wttT��K�,��:������]����o����d��ao��&T��'~�L����'CBBlmmM��5d^|�E�H4e���lmm���+**~��'�J���oj��� ������ZUUg=SSe���===��2������6o�rii��^F���M=��$��m���J%=�����z�[�hQ��7n��h�I�T+**
E�4�3f�D"�X���WRR�V����oR
U��9s�L�>&M=�����7G!��zp�=����`OHH���V�Z������	&TTT@������������Z��&N�9�+V\�~�z����W���� �x���V�8D2�L�PX�����������56o�,
�b�Q0}�0L ��x����
����t��\.7���+��{����(bFkCS��BNN�%���]!��EEE�����i g��X=���O"��R�75d`5=T�K+++aL �����'�#�������������	������Ep.�����WWW�Ri��5������?OW����lf����x{{{��c�o���
}��w&�E���������+�JZ�����W��0�MJJJD"]_��Ox��ga������}��"���b;;;ZY��������q3�
����*��#������~������2��qrr������f����������hmm���z��/7#��������vss�^-�b����RCf��1���:88X8��`���+�e�9B{�Q;�ZP����pc z�3)T������,��/A�Ivv6+����j�I;5$�uq'N�

�WC��y�D"a����N��6m�Y��R#+>>2����*++�������SYY�u�Vx�{����z&-P�?:d��7��k��YO.�����ZF���V�Tn������?g�����Cv�oV����(p����O?�d1_e�������=3i���#�����'O6�\\��>}�a����gff����}`��9K�.�C���Y��s� ��9����j��G����S"�*���j���3�<�k���=�`09rd��Qf���]�To`` ?���={��Q�b��9���4�]�V�h���	�Aq����g�����(����z]�����}R��D������L/�F�I+�A�$''��;��e[UUUj�z�������z���v�2u�^N�����%���zT�4c��5kmU~M�����,k���_Zw�KLL�h������$�u��'O���*�
.RRR��kv�P���s�->|��7�����g�c���� 			J�����E�}���/���0dnv�������G��'p,�u���o�m0�
�G=
���{iM��'O�$Y�7�	�q45h��
Pl�z���:u*-���a��h������OM:�k��������@*��uvv�D4��M�����+�����u��
��X�k����X�s�6660������z�;����������w��l>>>f	�#��/���r��#L���}������������������#""��e���k�B�O���[�j�f%`��w���uV�������������p��|�yyy���������.~hR>�]����e2�	�2�w���V�����-�V9�B��m����|�MkUo����B�[���---j�z��IZ��9$���'a��%������0���
Q���`�f!�z��]��������"(��5����P��q�4
���h4{���u��pppHJJ�~�V|��q�T���`�s���~�5��Djj*�������OOO�p����g��������C�rw��Q�D"�H��-��^^^�
�&�H$��r(++�h���I�����������1c<==��� ]
v=Kj��E��-<<�����������c~gg�yg=(����+P�5�,\���:�
�������c,��^^^���B�k�Yx�T����,�


�Zmvv�UJ�b���$������{eeeee%�0&%�����������f��hF3J����z�����b�
�|`��#G�444���ZX���eIpa����Qd~�.����ga}}=���������<6���5I�����4������111���Uo0
���������s~HOO����u�555r������LC���GEE��0ymj�">�N�q\TT�o	�d�=�������***��� k����b�z8#?��#��o�����B��%��Z�`�4p����_\�|������C*�B�R�����t��Q�3�����:.H���d����p������_j���X��pJ"���J�~����d����f��5o�������G���~Y�����)JJJ��\VV&�����,�������P,��gY���.�����D�����=1 ~������ptt4�Ga��&�M]M�O=�!���_��D"Q*�
�����todz�a��v@�Qh����d������������Mw��qtt������������Uo�9�����i#[��q��5�����u��/�a
��g���)�J�o)��"�HYXi��1#((h���P[	E�]�f�������T*�Bk�=<<LZ��N�p�B�.��\�T{��m���[RR�&�U
i����;�_��*!�����e���������o��ILL��������M�����b��
fySDEE�@C
�k)VTT��rZ~����`��_w����~+�s�
6��7��jkka���7�7��~�d��z���c�� IDATm���???8�Yq�p���d�Zm^^{�1��3g���bbb����������a����m���7o�,--urrrtt����:;;w��M+Y���WZZ��7�TUU�BL�J�r��_�p����W���������sgQQ��'���F�i�`0��
�/���L���PPM�.!�������_(�q��#G�R�������u���� ~�����gK�z6�NWTTT\\������h���<uuueee'N����
���L�Z�R_iiiyy��`�r�JYY���+M�!��.+++)))))Q*����y(�N7{�l�@�V����a:�Z��0pGO��rtt�z����������J��CL+�pX��������k�{���af�����E��ree�F���+�����Cn��/�f��)�JM���...Pt��MQ]]
+��!�3X�
3�S�N�<T�^z�%Z8e�����4j������x����HYx�a��l��������a���.]joo�[�����a[TN��F�8�O��1��Loz2��	

��\"�K�78bX�R,��4'+������a��u�o��1b��+�=�?6!�X�2eJII��
-�e�������A�A�jE��]

��eT����+W���Fb��e�T:e����%''�Y�&,,bk���^�|977������z�Ht��u+�7�6l����n������X�l�7��W_=x�@���������_]]m�-s�0LVVVkk��a�hw�l�eY���={6-\c�.]�q��L&��+��N�}N�o�IiR#����}�6��OP��{���������X�WVV��E�N���h�����
���������
K�����N.���V<[���Z�(X�mkk�[/YWkk�����Or:�����#F�����{��566>����������<<<������~��/���������M�Bw�B!����!�Ba��B!���!�B!�B!�B�#�B!�0pG!�Bw�B!��!�B!�B!���!�B!��;B!�B�#�B!�0pG!�Ba��B!��!�B!�B!�B�#�B!��;B��]�v1SYY����t���&K����Y�R1s��Y�_���k�ZS7XWWg��Bw�B���z����3���{��������^n�����W__�q�F�v:::�����_���M�2���B!$\�~=�B=n�����h4��_>L�y�����322���[�n���s����w�>}�tcc��u�����~�i�Z�����w����B�������Bahhhyyyqq���c�Riii�+��r�������=�����\�xq��
����}������k��|��;w�<�������aaaW�\)))1#G�������w������R������������'L�`gg����������^��8B�*qG��������y�R�����k��7.??��)���iii:����So��Vhh�T*=r����!$777776���������!�J��H�����SO=x�@�T<x0<<���

���^y��������444��:;;���c���m����W^�w���	N�:��7���uk��EYYY#F�hmme��� �2�!�z,B:�q�_|A�u��qaaa�������B�hjj���%����pw��A8��F\]]���^~����Xx0$$���������;vB.^���g�}v���Z������<B��K�~����g
�e���
����q��s�!+V����������~����*���������6==��������
!�Po���!�[�
"�ttt�d2B����O�>M��Y��8q�L&#�2�Q����z�������666������@�����*R�T*�B���)S�����a���B�N�#��BBHjj���~�0Lcc�F�	��d������*����>���mnn��B!��#����eY�A(
�#��8�Fc��G�-BD"��Q��-[���%�5j�����z����;v,��b�X"�H�����o�����>;z���I�n���=�!��!�����a$[����������y~�>}���������;vl���%%%�-2$77���j�����&�������?�9����%�h4{{{�F3w�\BHtttPPP\\�^��e�iii111UUU���8��B�W��T�z|��7��]]]��l0�~#�9s����'O���������jY�uww�|���#����i�&�D����`��^xa���F����
oo������WO�6m��!��
�R�t��9������gppprrrxx��	rrr�z���K322T*UTTTLLL@@���C����!�z��d2!�P�9w�������]]]]YY�����bq]]]yy���[EE���oYY!J.�������G���tW�\!��D"ww���
��_��0��a�D"Qyyyuu5������r���������z`���B��n�����7:::T*��A��z����[ZZ!��� ���q����8C�U(F���!�0pG!�B��SeB!���!�B!��;B!�B�#�B!�0pG!�Ba��B!��!�B!�B!�B�#�B!��;B!�Bw�B!�0pG!�Ba��B!���!�B!�B!�B�#�B!�0pG!�Bw�B!��!�B!�B!���!�B!��;B!�B�#�B!�0pG!�Ba���T~~���{�������;w�����-pg���Yuu�����3g�X����T��}���t,�fee}��Z�������Y���!����L�<y���eee�z�^��z�j�NAA���KKK�����������3�;o�������/X�`���=<��������',^����{��
��C��J%�0� //O�����j\\\yy�������\�bv_�����e��Y�~{�Ek���>}zBBBss������y���6�z����766v���[�����af�������+B�#��,33����������������}�������"�����<33������CYYY�k<jN�W�
z9��������{�����^��K/��Y�X���5k�DGG>������������m������6���������q�����]}5;;���;!!!##����	���zNrrrhh���7������������B*�J�RhC�������y3==��/�HII6l]�����_vv��}�6m��}�����g�yf��������>��������+W�d�����k���r�e���8��>}����	!o��vyy��#�9��{�999��o���2���B�p����N�"��������0`@FF�����B���kbb�B�8u�Tbb"!$%%���y��%uuu���%�L&[�hQ@@|�;w�$''������l��"����^xa���S�N}�Z����?��?�M�v�����������~�������u����?�X �t����A�1s���O?���W_��y������{rr�@ `&22r��5[�n�4i������������%:doo�d��������K$�e�,Y2f��D�}��~�A.�GEEeee����G����B���;e��X���m����/^<r�HBH{{�����'!999����������I�'%%uuu���eff
�B�W��9��g��5��������R���qcee�^�����5k�@ �}��W_��ZRR����p��U������5K����ZUU�{��7np��+�����'y����3llld2���k���OIOO����'O~�f�������X������t[�l<x0�0III<�?��w����x���[[[����n�:x�������$BHaa���+7m�$��������n�:��7l�G�
68���d��5b��hO���(((�����[�l
����H$g��}���!�/��k����!������	!vvv����'O&���9��8�^1Gddddd$�0���:����y�����~����?����RTT�q�G}�~\\�������\\\���F�AILL�8.))i��A0�{��=+G�������T]]}���	&BF��s����j�T:�|B���'8��p�B�����Qyy9���w=n�]UU�V��B���###�b���[}}=�q�7o&�L�4)66�@���9��).�/]�nl
F����?���g�����tpp�8�����%?�����777�H;q�DB����9�{���mllT*��/��q��Y���N�5k����!d��y����mZ8������n��9�O�C������?_,3c��������r���`��B�������?���������&??���q����������
�7i�$B�?���"����-\���������W������U)�>���`oo��]����_�pA(j4��ggg����X��2h�����wtt�=Z@.�sw��Y�K���%%%UUU2�L,��?���������.���#����q���QYY����v���u d!��2����oU���s����	�			�555���/  ���s���c���p�P�����2����
BCB��-[8���o��q��;�B`H��8��y����	!�F���!�}�����������?������\�9��������������a ��g111���^5wGWt��u�O�^������������i�j4������OO��vttp���B������f�x	�A�w�����-������M�!����4___OO������:77���@��Q*�!!!��)S��3�`0@�<x��AB��]�����j���a���fu\�M���������n4X�V�={�Q���_��p^�~�zB�N�3��*�J"������vvv���F-!8�����g�}6..�*�-Zd�3���&p����k���^���5WZ��F}u���'���	!�fffrcoo��I$�JE���y�`f?��/�������q����ik��9������nnn��5j}/�f�+C8D��B�l�*���F�� r�>���.n6z&�;::X��G�B!!$""�;k�������v8�<�a��i!���c���8���&""F�`�^MM�F��(�i�������z������z�H�2G���J��s�4����a<6���C?����������SK6 ����i
h���BH[[[gg����T*%��d2�Z-�H�K�����!C������B �������z�X,���z����-YTTD			��t������������jkk���g��
���o�\.�H���@��
�mjj=z��[�rssU*UO
bh$w����������#�`�Zu�����E�1c!��/��kWzaC9p�@\\����5
�U�N������[b���zf����]\\���{����^��72'����h�.���w�j�A�F_������������Oqvv�=���H��M�0&4kjj���6!�YYYG��mu������666j�Z&�B 1���v������'
����o��i��uaaap��2��K,dD���a?d��w���O�3�������I$������J%����?F_���J������D"__�g�y��3@�H�h4��4X7?j'�0���O�!b`���+���(�y�������������#F�4!�X2�$�0"�����0`@�?��o�q��a��b1�l�'���~������(�JSRRBCC{��b���j�aD�����8����*`�\����>t=%��X,~��� +���W�����,��#JD�>i=Vh`~����p������,�8�������0�D"	����ya�l�^������������_|��X����Fu�9���6�����!yyy��ki�VSS���H���}||����=
��E�1c������C�`����J����!**j������V����'���Iz��E����������q������www�aZ�1&&f��y����o���r��Y�/�r����s\\\<8w�\B�K/����M�+wWUU�W�\qss�M�"\'a��,7�����^gfff��T���������X��������L���s�~�����:�.:::$$���*&�q����BC�tU��������;���~���z������'�b����_�~,���PB��
�7��u�W_}�C[[[DDD|||{zRRRNNNvv6�Da�����[f����{��Wg}H0����H%55���c�����������	&@�*T���7o��}��y��U�V�t:���F�[�����m���;6''g���yeee�����iSFF����?����'O~��w!!!���P���
�����O����
�)��@���M[������g�T��C��8q"///  �������ZZZZWWWjj*������H4~�����y���T������~K�@'###44t���UUU��d��^RR�V�����\�r��UBHAA���g{����������_YY	������O��/����J�>��NFTTTl��!11����#�t��g���l�2���"�^?g���6zZBB�����������w���5k��1�O�������WUUyyy988��?�����.]����j��(�Pw�������z���+W�H��Z�E>��w1}Sm�����6z����_������;!�[/!!a��u����N��|w�sF��0���K����b�{�����~�����M�	���j�Jv�������{�n����o�]�j��>��K�6n�5d���W�t�Po��B��B�s���ZYY)�J�����V*��D"�(��/���.������=!$<<\��s���
1=<
�}a��a�K�.��0�?���C�T*	!��_�qw����*QQQ�A
>��,_�����s�`;���O>��1im���XGG��CBvbb"�*d��=B�B���>�K�}8���>�F���������vuuAqHBppphhh���p�������''�������[{��A�O���`��r�. ����p+BHnnn�����}U�PB���`�fSS�����,���

�����{7����l[�����E�8�2d�T*�~��,T��i
�\^QQ����}�'V�^
���.hx���x���J�����||�t��D�#��`Y�Q�:v���c���!�@r��yZ��Q��?O�������:�n��������t�3���kjj�Z�6{�C�������jj��}
�����������=�dWWW���.==�������m�6��}����������t�.\�p��'=�W�*�����-�d�U�a1���;��Nv���?<��:;;�}@��%�1{n=<h#du���!��,P���������_�|��[��+Q��jyy���W��LU]]��s�����t�~'0���&H�@�R����Y�G)������j��� ���qgG��G��m�������F��677��j�>����A�Ra���e���:�P�{:B�#�B!�8��B!��!�B!�B!���!�B!��;B!�Bw�B!�0pG!�Ba��B!���!�B�'��bj���5�IEND�B`�
prefetch.odsapplication/vnd.oasis.opendocument.spreadsheet; name=prefetch.odsDownload
PK!��L�l9�..mimetypeapplication/vnd.oasis.opendocument.spreadsheetPK!��Lmeta.xml���n�0E��
��V|Z/BV�.�.R�@�;C&�-M�_J�\'���6�9���P�N��*�ig��@e������i�)-�C��v��Z(.������B�D����Z��[��Nw���� �;*�H�5�'��r2��Z����a����{D��BSwA��p�����)�F�H���	�7��^Gr�]�F|=�Q�Wh~_����� ���mh�W��;����Z8���1FSOa�Wm�D�����).��!g_1X�r�2LH�n(j)�{)e�3H��%-�-������S�������|��/?��C������a�~���^Y��7�z���ix�AH!���?m��6_%W����O%b��c��L��'����1e�H�zhwF���6��0W�2f)�9.�e���FPS�7�n��PK�d�g�RPK!��Lsettings.xml��]s�8���W0��I1$Mj&�c(i��cnvd[�6��J2�����h�j��nW�I����G��?�\�A�%Z���� �����B�������t<F����H��B�KxI6'��:}�E��(��� �	�FCH6�jO��-����1"�T��V.�q�.>~G��\1��<����d�&��Z]����������������W�����'��j�M6�_?_X�:BIlJ���k�4Y�!������6����d�4�6'�"�'Z]?/��)�+8�(�/���O�N*��w!�Lw�^=3��}��!��9��m�x�SZ�����x�K�M.�L��$D��<MD������[�>o��
�H�f�8e=�����3�'���s��]�F6�.e��p?�H\SnJ�	�@^Q�[�o�g}���'�.�-@&)��f���s���Zi�@�|��F�A��A��#J[������p���t��g�������~�Q�?�q�����R�! Z]�f������
���U�1���x�4[c�y��_S
|�J�@=�e5�
���tod*4(4(4(4(4dD�8Dq��AB�8&�=�SLPLPLPLPL��D�}/�A�@�@�@������f��AVi�������q@h)dp�7-UrC����C��������������U�������=�dAAAAAAAAAA�%�LAAAAAAAAAA�[#X���Q3��=�p��oVTPTPTPT(�
z��9��P�+��
�
�
�
�
���v:����/������~L.r����nR������?�91�`<�L�Q��m��AF�����N�CEQ����D�I1e[��&�R==�V�g|��s- *]���Q@,w!�!+�H
��u��K�5�_.�������e�w��'�Y[$)���t@/��}B�Z���UyX	�{Z�U�r�\�,7�e,w���_q8P��>�!��~N�����:+ys�x!"�9�MG9�M�v_���9k����@�������t2���������!gC�eL{RY|�n��f�Y����41�E��K�2brH/"����	i��S��';@�!�<�����f���C�	��Y>qY!���g�.�����`��n��u��������9t��������~�������C��6����K�=����i�Y��~�7�M����^�]V��Fw���E��p�w�E30�yG������zNc�kq?�z3��y��G}�*S/�C7���8�~��]rk\7��������o�:�y��o��=�R����S
cC��G����n�W�����=�����V�f�<#���~��e�i��s�`pjw=�Y�g�l��l��p�F�q��3��e�~0��K�'��x�������R�F~H��u �y�����I�C�M��|��]��%��D��2�� �XLh��OQ�3��&���u�Z~�}N�����
-����P�Y?#A�{"�6������A�K������������%�)�Y�Ro��B�f4�a��^'�/O��[��E3�O������2�-p���oS"R����u�B��jE����%K2-9��*�:�.�����9~�PKt���e^_PK!��Lmanifest.rdf���n�0��<�e��@/r(��j��5�X/������VQ�������F3�����a�����T4c)%�Hh��+:�.���:���+��j���*�wn*9_��-7l���(x��<O�"��8qH���	�Bi��|9��	fWQt���y� =��:���
a�R��� ��@�	L��t��NK�3��Q9�����`����<`�+�������^����\��|�hz�czu����#�`�2�O��;y���.�����vDl@��g�����UG�PK��h��PK!��LConfigurations2/statusbar/PK!��LConfigurations2/toolpanel/PK!��LConfigurations2/menubar/PK!��LConfigurations2/accelerator/PK!��LConfigurations2/progressbar/PK!��LConfigurations2/popupmenu/PK!��LConfigurations2/images/Bitmaps/PK!��LConfigurations2/floater/PK!��LConfigurations2/toolbar/PK!��LObject 6/content.xml�][o��~��0����%)�8H�I�IZ4)�W�\Il(R �[~}gy��,��eDh`g�]����s������W��(�<�2ssv��(��l�e����f���o�r��VI��q�mUVQ�U��
jg��y�evWd�<,�r��[U.�h��T��Z����W����������v����uYR7���.�k�E�0��.B��W����ej�r��vV�A+�$���lSU��b���0��y�^� ����Q_nwW�u�8Z�Tif�B���+�UU8�}�,nRv��U�h��U�lT���hD��O�&���hl���������c\wV�c�/~����_~�c������QEE����4���y�T]���us-�t
�J?�-�P$�*P��l�(L�^�������X@	C�k�����(OT����p���~���h����p2\�H��
��d
='{�.
�����j�������m�mzz���]�u�G�Bs�L}�x�}��#��<�E]�L��5���a�9TA��9@�*�X�Vh��e��\����N�~�u�%��|������B_ �<Qi�/�.�L����$�-Qmj�����������/���,��~��B�3�q��rBN�5��<����A�%�Qk��������o�^5�\����WsvP����IV7y
��d�T0��lqs�8�������1��N
�����uS�������V�6I��#
����w�D��*Q���+|����dy��^ ��Y���f��)=�./�����S�w���!l��Z{7�nM����*��?W&BAa���1�c�S��z��n���/���n�^�h`��[h�@�����nm�o��^%i����E���F�<'��/�5_&P�UM�(����I�XeF��f�*LK����WMW���Pae���z�����^�p��)���j��*��9�����k�V��A4�Yq�I�K�'#
oUJ;���<��6�T(�+��BE����u��2nA$���QO��p
�"c�eu�i���'Z��]<|LJ4D��9qz|@T���3�>���s��.{/���A��@�s�:�x�^�T���l�����|����Q=�z�b�G��!�u����~�=��@�����w�c�K��Q���N����SA�p�?���V�e��o>����N>����e�����q�g�b���G���k(6-�4��/8��1�����E��[�8�Nj_���SO�m��n`X��[�"�r��):,m�,a���<�W@��B������n�]&z�;�GiX��j�{�g��um��J��j�����f<i��~��c��)�����@`\�ku������E��z�8t�R�VY|�	���s�5G��A���A��z$���qfM��y��������9����-��Y%�a�Q�;
.������r��X���V���)�*16a��)e��M�1w$����N��	����!���+���|�yJ=�@��5��cb�]�&�+�XsK<c��][������>���V��]����dB��x\�n�X������I�����Q���q`ZsA�	P0�
�r�m��U�*_A�WV��A+�y�U��?��t�������w�;>KMR�d!���������\I|�+��~�����=/U�L1U;f���0�S�qR�?��q?��9��8(����i-�5����<��>I�S0�1�Q�5��%1�K_�.}���m��N�%kl���]�6�K��.}��K��.�d=S�'��Sg������9{=�J�/��/�fB������kj�9�`�Y%���
cUh��n���]�P3zY����4�fmAc/������������<9`����g�n�<��5�Z��$�X{]��;��Tc�W��s���v����@}�����^t���A�P�����A���W�h��t��~ls��wl�������9�+�����A5�����i���B~{�@��
��,���%1d��%��K����i}��y���t�����]�(.>����+@3.6J$��YLp8�����y&������i���[SL��moMM
�i���f�d��s�s�^��0(L&]$�@YMM
&!
_����
(>����h������5����������b�-0�l&�HJ��3�<?X��p�����8����S[�q�z!M���
?@��)&>�����)@�d��Zx�\�O@���B��.���!�ESS��I�2X.�j�i�\Pl�!���e�Z�%���+��>[T`
�Sp�.��bP8�}>����$<{�@��
�>��rq��).T�DUx�\�`��$!����$���d���p���"�
k�L�`�qPS\��Q�h��(6]a]1I���w�8������0�$�&�\��	�����B�f��h�� ���*��G������,H@,H0�����Gt�����W4�eAHj�H-�AW���$.Tp%6}��
���$��EP���<�'ijT�e6/���R�k�T�6A���6� �4�+�(]���b� �X�|�(�).>FP���-�i�Et���G��q�O�&��@qy��j�I���",�KH��T�,�����).����IP��������.<����r���3�@�e��"���S.Tp�a�
�Wp�?����9
�W>���+�i�\�|Artb(G�]���h���`Th����6;�=s��+b�$�%��X�I�[L&�n�xw����M�W8�l'3��<�m{�`�(.T�����t�G��4�+�`
<�M��������b{x7���,�E,�4���r���s(.�Dr��~Yl�TH��| ��BW���z.�=�Gl���Kq�ES<|\��t'�l�e]�`�k��I��\������	��55*�r>���Q�
}�&�+[�x8�*p�LS���o�&^�����]���\��� @1�Bz���|G����@|���������"�����P:d��3��M����6��@��/�_��
K�U���G ���.Tp�V���5��+��d�"���=��_����4�V���,�����\�AS\� ~���WHi��r o��
�9|)�����v����#F���
G�@M�
�]�6��|:�%+�.�f�%��J��/ �����,*�vm�SlR����+�E���� l�%�!Y,�ow(Y��Y~�C�@�S�;Tx�L�`[��|�
���'I^D2�I����4��G>�d���&�E�p���A�[��^t���||!Pd��IP��k�d��n|�WK�M�]��!���f�'����IP���������IN�H�5`��5S�k��3��X��|�6�o�R���W:�<������4"T��.t����w���EN�[l'�%9�.�9�>�;{�v�fC�C�
.�(m��\Sl���2�'�W8l�M��6�v��K,��Y��������E��l�M�f:��y�!'��"Sg�4����#����B[v������mz��2��'�R;�>�)S�-�y�[%.��9e��H��H��\�`���av)Ku�����C�%�P��oS��7P\�3	�L���&�al�S42���
�{r���D�G����N��;Z\�W�4���t�n%MM�
�]�8G�).>�0���j�+�7jjT��H��M��
�C�K��.�}KS\�&�x�i2�\��e�]��"�ny������>D��Lz0�i��m]��f�k�E
�C|����{ ���	��f@�ws�
X��������66M1���*��$��;|�
�����$�5M����Cl�3`��0����R+�B���-�������{6@0a���B5�BL>)�#��MXT��'P-��6���T�Gw[�UF�g���PK���Pa�PK!��LObject 6/meta.xml��=O�0�w~Ed����RZ+I%�J, �U����������qHB��=������\W�	m���IL#�F*]����1\�mq���A	d���F��.��ec)'����V�L�[�3
����i����s��GN��5��{������f�:�R\�������pHh!�1L�`�_���+c�A>J��$��0�'��RV�]���p1���'����!���?C�<D����(!�4�A���~�-w�;�f��pGSzO-vJw���z�_-��o�yG� ���d�d������o���PK�-�#KPK!��LObject 6/styles.xml��K�� ��9�KYc,+��)���LM� $SA�
�#� KA��PYJ����/�/c#w=�F��d�����bP
U_�����[�r�t����X�pe��?%7;'V�L�K�iE�a��
7�2-W���4	��?�Y�<�������=����������C���.����T�h$�1hZj���P?.����`<�~(��k��N'���������*���`���������G-��2��������nT'�7��ez��ru|�E�z�c=,�����C����<}G����\G8{�3*��h��q9v��/�Lk����b�[�v9H�>�.;��mo�����[g��e�������k>�>|^�����p�Vm�T�p������3KW���J��2��S�
n�����k�MTYy�{L���o���j-	.��Y���5	��Z�W�kLa������
�����=N�����L�
����Ct�PK�P���PK!��LObject 7/content.xml�][��6~�_A��}��m��tw*s���<�f�������mye�@~�J�M��1��T���#����\1��_��7z�8rQ�2���x�n������?������=������F���Q,�����U<�2��`�@�F��0Zk�B��V"����D���^�����I����h-x�2'W���.f�T���5��xy�Q��! �	{�
~��7��+M��v��Tv4}�\j|6c����-�8�mi����H�U]Ki}H@]���R��� �-@��F�NmD�;%��6��'>V�i�W�i�k}@6%:Yh��$������{�=�����5cjq=B(c�-�
��kL&S-~�w��;��r�����I�EB�t�F)��`��	"*Y`h�tF��[����[����=O��AD@�K3%��t�a"L2���;L�-#�mC|����lJ�`�.$���5}jx��w?��j<,5Ntdb�+����D�yn��N��]<v�(�F��^�F�D|pB��)��e��D�{��-��%�p��]���"�R�6)~D�C��+a�qt����v�4��>���MXQd�"4��/��),8R���$$��5��� ��\K�;z}�}}����Q���/����	�(y������u������>�^���=�=�E��� N�$)������x�����>N��w�b�M�8�*���b��h��J���� @��N�:��>�?���q�)B	Q��$��0�#�!���a���qOq{��	��"�OJ��!��I���@P6�������6ovk�"��h���P�=D����L�gS�]�Ki��������T	�p2��2�N��X������m(�<j�k�E��H�����C@������A��)
v�
�j+`�\�uo<+�q2����r�!*�a�Q�����7�_�C����w�a�|%�>C+R2��
��C����G6���A�P�G+e����l��wE�	7�b�D�`�F��&�6Qn-D��5�qYq���������t!�Pw
�������=vyk`E�
y
9�Yt�������6��'�da��������(P�3�0���r{��������'���z=5&��T>�������m�b��3��OI!�e�����n�'�i���v���y�}�:�6�g
���rG��#GZig%�xC�!{�<�>�0�?9	���:��)�6��XT�����V�/cUM�c|G.�w�p�Q���'{��hA�U��B\�DJ���Q�f���!�\,�s����s�����8p��-����l��d�YNJ���{$>9�"T�������L�t]].���H��C��/*�����+�=D+Y�RX��JX�����g�2��Pf����.~V�W%3_�F�O���Q6 ����_z�]y��r������L)j�T=�S�,�)MrI���B�������������l~z������C��d'g�dIV��0Q�>�s,��>�u��X5�d������������"�<��XW���1\&�E��9�}7�8BkZ+E����A����ab���W
-;�	�Z��b����Y��]��dq�H|�_�KX� b��6�t�w�ma�\ �O�������x������'��k�w��"7 Y}B�z�z%]�K,��a�����\*��W��s�h>7"�z�|)���D��T4_�q�h�����U��Z���f<�X0B<_{4�SM����O�>���g�����E�?/=�R6���p���\<��lE�`�O�QZB����otv��t�v't��X��4~�:�;�>qd�L�5M�i�����4k��� ��<�vh�N��
#��
�M��t���nxs�����r�2��r�rv�`�
)W9��,k���pM��1������W&���u����fX7���^��I�]�y��H*�����2;����(�������M�&�+�����'��zB���7��)��s-�1��	�`��$9�"��!&	�����O��'L%)G0N��:�+K��M@�������%�a,,����)_=�}�!�gCR`�2�%%	���|��biQ�gH�SW�#�]��zu|���PwZ��;@���$9B�i4RJBvr�����fp]�g�-�OO���(��IM�;�����:k�C�:����GI��^D�'AN��&-�CC�Y4���`�Q�>�d!@V�C��j�!@R���y��Nd���4����g/j���g>�n�~zR
6^���w��[�����Y��I��; ����CO������%y�^��{|Q�y ���.��.#`�	>�"g���b����|`v�'��=�GG@g��~|:|���d!����|-`�	>zz�^
�CO��0�'X�������3O�z��~:���|�Z`���`?~��)�g���0��-@@g�tOz��/�<���,t�G����������	������	�#
��z��"��~���=�~|c�Q��=�~t�Z���'��y�l�	6Z���'������Q�Q��<`�Y�������):z���!�|z�������w�n�YU�p������t�1��j�yt������c `>�KO���g��vNG��!�dm&+��>%G�<�!��?����0 ��B�~�?PK�Nl~
�PK!��LObject 7/meta.xml��=O�0�w~Ed����RZ+I%�J, �U����������qHB��=������\W�	m���IL#�F*]����1\�mq���A	d���F��.��ec)'����V�L�[�3
����i����s��GN��5��{������f�:�R\�������pHh!�1L�`�_���+c�A>J��$��0�'��RV�]���p1���'����!���?C�<D����(!�4�A���~�-w�;�f��pGSzO-vJw���z�_-��o�yG� ���d�d������o���PK�-�#KPK!��LObject 7/styles.xml��K�� ��9�KYc,+��)���LM� $SA�
�#� KA��PYJ����/�/c#w=�F��d�����bP
U_�����[�r�t����X�pe��?%7;'V�L�K�iE�a��
7�2-W���4	��?�Y�<�������=����������C���.����T�h$�1hZj���P?.����`<�~(��k��N'���������*���`���������G-��2��������nT'�7��ez��ru|�E�z�c=,�����C����<}G����\G8{�3*��h��q9v��/�Lk����b�[�v9H�>�.;��mo�����[g��e�������k>�>|^�����p�Vm�T�p������3KW���J��2��S�
n�����k�MTYy�{L���o���j-	.��Y���5	��Z�W�kLa������
�����=N�����L�
����Ct�PK�P���PK!��LObject 3/content.xml�]����~�_��C��A6��46{�$��K�+�W�$����!i������,y���w/_���}��?�C����yS�|������n�L�����������?~����x���j�,�|�U��&��NZm[���~z�,���n���J��Yl�M�,�tQ��m����^Y���})�~��O��s{��T�z6y�^�)����������6*|Y]��sS:�J[}�K����e������mw�����i����z5�J���;T8�������y^�$������e7y�\[?*���}�<����I���Vm>��f�������������^v}�zv���3m�?����O��Po��Ee-S�u��Z��4������@�AMu]!�y�Y��������kV<�X<M�t�x�9e4]N�u	'�L4�O�h�<����C�&;��}����:�$���xa��6m�=X��F8�i0��]U��a��;L�Z�P�u�)�ww��]�Yv����7�]_w<�s�?�`���|PsS��b��bn
q�9��$h�\|�F�e���*��ko��y���JJ���z�|Y��������r�E^��bP��k���4�>��T�{����u���Qe��7���i��~����948j���������������H��������]~w����T�w��G�n�hSlM�W���X����v~7?���T�Sb�`�L�}��^xx���{���ky���L6E�B����#�:���v��y�ysCt��������67Z0	�������u�5�����5����y���j
��d���FPm�[��]�J�D�sM�]Pz�v�L���)���I�n�?�o�Bk��i=U���haEW��t����Gn����,�����h���
*.����A�������6-��YY�o�4/K��I�h�/0���T���:OZ'������e�|��U�����j�v���9o�y���i����f���<�EsdE�+��L��V��V��l��"=2P��������3����n�<w�I~�wcG[��
&+�����Yu����w�iB�������s��&����
�:�f������{���u*G����I���:F�Z}{�V��.6��b�����y�<T�������:Z_I��"�����8��W��9��S�����-�l�;5MhL2/������`�{n���w����p��i�3����}2����������y���>A�2��j���o�F�_cs��*���MN����9����5J�_�h~6����Pe/0u���hh�6��3�
f��=��9M,u����jV@�:_����z���)��{��e�4{����{�����EK&�b
efA_�"�+��^A5G�����/7uN�M��n��������{ws&�Z��|��p������&��+���Y���)��=�����d����U��m�������]��'���������uP��]��9YW+9��]�??�.�<{/;({���1��Y'M7si�r�A59����6��A����w�cn��O����j�VU��|�j����z!�EQh	���X�;"8��.6���0#��{s?�:w����&�S���M�/S�����1u#�NF�4iR���TugRF6-D�ckx`���>��M������L�T�bU��4���O�k<��\�M�r�t/���N�Z�T2K�3/�">�������";�u�m6������M^���vB����|���q�w�}�����M]y�d�
�������������C�`�����%S�S�u���|���0���N����^���N����|���8�:����<8�1u~>��_[���,O+�|�����t���y�t�7�����j�e����-�Z��u�dyM!��f�����$�uO�����[5�t�2z�G_��^WOG7��#��U{�����{GW��E��~�����`<����X-ou\�	-W:,�^:����rX:�������_�:�Hu����������2c�:������S�$E�!�5���A����vHI{k�������X�F|x����d4�!��
�����4�.�8���"e<�s���]��t�o��1|�X;B�	|.'�1r<�G9�0r\e���&tQ�.F�P���B�Q>��P�����P�S��O]�� Rx��
3"!�������X���ha��HH>�IHR.}�I�_v�o�K6LB�u�q��@�I�)�iH2bqwK$G��HH�H���E
wR��"��*�@r�b !)b� �� `�#4)@F�,7�����	<6��"|��SX���!��Q�@B 9*���D�8��B#�!��%4)@cc�����@r|��"�}����@�pN
�� �i�|NJ$G�UB%*x���~��WM�
����	�����@�<�����0��F���Z���4�f��j�E���F��y�_�"�x�����
DI
x��@3���P	o>	&4	3P�[����� I��!5�H�%�	1�|��hf����!7��(IQ�}A3|�rJ�?bT'4	3@�K�n��`FC�$��$ibF��B�x&�x<]��(f�x/]��A�$O�\A3��K���g� 4	3P)~�ZE5%)|4!���<%b��r���$���z��� JR xJ����B fX!�?��vh��K3*�,aE�A����X������H7�tQ��^�.��A%)��b$�R�
��#t����$�@�B���0%���V� f�.�����m����I���?���P@$)�<04#)�}���*�	����$�@���
93��[�V��q��x�K�VD3��@���������C���@�N�����F.�W�M�
T.O���D����
Ire�B	��a%���2��WI��� �����2	�����
�Za�">G!4	7P+���|� ��O*���|�$�
q�8	;@c���!o3�(I���)%*������������S����c���(I�!k ���[5	��(���(o����x��6��eb�$	[��|�[yj�P��qdE��$Ys\�)e�C�v
{���+q�(vx|��� I�f��64���h 
�W��$E.�� ���e ���b�$�@�u�=��a J��?E6�����@\V����$�����|Nf J�\���6���b��78	;PyR�V���l��O*��V��@;";#�ddQ�E�\�H` J�u���,��<�� ��;K>�3pv��L�|[��(I�Sd �A�����[�F'ajo�+x|o J�u��� vxg���9�r�9��i������n�s�A$�s#��� ����@�$_�������w�8�
DIR|�l ���
I���8	;P=Z��|d!���#������i ��:��$�E��YqA������Y|�[���4��:'ah����a HR(�9A;"�\�(v�V�Cpv��A�m�����:�b���b�o�J�O���n+��m HR�[��D�h]+*%�cGh�c����F�wo�$���Pi ���MA;Ba�h"���\il��7%)�fGQ�#������`G���4���b����>	V#��]���s6�e��D�C��P����n$+�I#)����2��W�Q��k�9Bpv���.���@�$km�@;|�:
�G�����r����:� ����$� �� �bG[���)-v����P�����L�@�$����!j��:h�@;���N�T��G�g�]�'�q�����W����[3Z����+K2���bG�,vD���vJ<Wj ���5pv�� <~��� vV�6�%8�
D�#�~���$�Epa�"��5I����bGd��
AT��z����v��/p*>c7%���0�I:���WA<������$�@�[�|&a H����Qcg��v���
�#��GKp
v���
��	q��*��iA���>�h������0����Jv_i�K���n�o��8�U�r@Y�>n�m��������PK4�����PK!��LObject 3/meta.xml��=O�0�w~Ed����RZ+I%�J, �U����������qHB��=������\W�	m���IL#�F*]����1\�mq���A	d���F��.��ec)'����V�L�[�3
����i����s��GN��5��{������f�:�R\�������pHh!�1L�`�_���+c�A>J��$��0�'��RV�]���p1���'����!���?C�<D����(!�4�A���~�-w�;�f��pGSzO-vJw���z�_-��o�yG� ���d�d������o���PK�-�#KPK!��LObject 3/styles.xml��K�� ��9�KYc,+��)���LM� $SA�
�#� KA��PYJ����/�/c#w=�F��d�����bP
U_�����[�r�t����X�pe��?%7;'V�L�K�iE�a��
7�2-W���4	��?�Y�<�������=����������C���.����T�h$�1hZj���P?.����`<�~(��k��N'���������*���`���������G-��2��������nT'�7��ez��ru|�E�z�c=,�����C����<}G����\G8{�3*��h��q9v��/�Lk����b�[�v9H�>�.;��mo�����[g��e�������k>�>|^�����p�Vm�T�p������3KW���J��2��S�
n�����k�MTYy�{L���o���j-	.��Y���5	��Z�W�kLa������
�����=N�����L�
����Ct�PK�P���PK!��LObject 2/content.xml�]Yo#Ir~���0�}`2�C����a`�����&K=$�(R-����+2D��q��4�i��Y_Uef�W^��/O����������k���U�������������Q��������������>,��v4mW[��<�����������l����d�ln���v��O���o��vW6������7���������������K�o�O������� T��m{��O�����/������i1_����~�]������������R��G���[?t����t�,,l36���.��������J������X4���E�n��]��/w��fz?�.�Fs��nvy��}v9����'y�+��_��r�B���,������/n��n�|�����;��k����or����?v�m����o�>�,�G���sB����5_��G�� 6�<`�;�x�f������_�mz�,'���_�y4_m���I2v��-
��Y���(���
&��=��~�\����n��f���Bu�To�e�<����o�����*{�	���M�j~���X�d�����mV��\{�5O���#4Y���To��_����{�E�P��y�8��c����mG�
���]���k��-�.{�F;��odfb����96��_����9����D�{��L�-���t�[���;[�7���W;k�u�x�/���t��5k���d1Z/&��(��r����!�-���f���PsD���a�G/�����0>S�c����*m���o��<���g?}�=��E�{�����d9_<�%T��#w�d}�\C�5�v�l�������
^�jW�V��*��]\����z���u��o�.�E�O�n{�MVw+i���@�u�� :���n4n�=V�py�n�z
D/�h���;Z��Y�����+�=�W���b�?}v��zw��|�8�{�p�����b���z<	T�O��w	t��.f��~>�5���Y,@9o'�
4�
�h�Tzy�5���Y����7.���ft7Y���w��Cg�����_��p��������9�,�����7`��G���fQ7j��M N�_��L@]�����5����x��@8��>�H~;^��m����Y�7��w�-{5�#�w��M��'O�
�"��N��@V�?�q,o4�,vlsy_��;i�������4������A��]zi�Fkm�</?����y}).����}��p B+�����
��!�s��	q��fv��:L���:��Q�+����?�������	�n�����������|����^�����	����\���?b?|%��Zn�i���KN/��+9��r�gj4��{Y����S{�s;{>����������}-�L�Aym\�o0���*����)7�]s��Z����7s������f�A��A8>t��v�E�B�)�����p��>�����������|W���?_���������U??��7���x��1)�P�Es��fW��?�[�����Q�I�Q��*�w����i=Y��A������v�z�B.���A5vq80� F-����}h����9�;�����	�9�Cev��7@���f��l���k���O�r�����6r����}�����m�`�����p�8e�"|��(7��hV��x#f<��m��{�����<��|9�$��|���e�q�A����F3�fl��E3>KfPcR��kt�':��{��B������)��������!�U9	�m!>���������k
�IR.��D�O"����r�YO�����m��u����f����n�Wd�i:��k����2Y<4���"����������{��3D_0���Ce{E^����8��n�30W�4p��K�h���I���?�&�8H�{��i�O6�'���i�{O�g���M��:�&>N��
�'���r��@�|��`Zz{������'-��n���kt�LfM����r����E,�}O��x��n�n��$������l_z�>2��b�����w�r�2Ej�]$�������]C��l�N&�q� <0k6�O��=�ww|����T�6V�{��j����E���������9E:K�K�}I+�%�c!���:�����B>^�X ��.�\���T]�\�bu4�w�}rJ��s%YKk_#�ah�����5Y�������E�Z����!�b��E;�"�=G.��:<��j�MT���oJW��J%%mS.��2D�|���6��7�����S0A��Rq>�N�sD���tV�g���`�N�s����Hgem@U���R����*?���{��Y2���m0V9�s(1kC�����s�tH�Y�I�92��L���!k��:�s�90D����L�`O��M:�#2��S��b.�$�~�)�jk0��%��(C� ���4�Z��J���w�����������F#�t���*�����f�~������C�>8c�{����)�s*���|���w�H�W�l2r�o���F��_T��x��� T��*�b$I��6�pb�!h3�RvV;��5"T~��f�t��%&��qD����6��;�	����x:��t��SO���{����:]�.A��4D/u�SD�|p �Q����������Vj��:yk
)�!B�{�2D�(���2���n�������-�t�H�T�84}��Z:�Hu�U�@)b'HVh���P��*y���9���2����� b�!�L�+C�2W�R*�C����D��"�S�A����L�k"�9{��Q8�J$����3Z���*�Rq<��*u���x�Q�@���oJ�"�:+�A� ]���BS���� QH��&�Rrd�	���� 7��L�=�`���!Z�QG�a���#'L��i��1���ob���T�|��9����n�`���e�� ����/����jD��!K��C��]5`���J�g�x����uB�n�*!xm7&*u�H��
(e,d+�D:��!�G��-	��	* T:$k�!o	)��sd�	�:*)��1���#��#BR�-�Q�3�H�!B��*	`c*�C�@��MG$���8ml,t:�!��Nj���Qw�M����(
Cd�Y�����\����c,��O���|��Yz��+�d����uR��JG���A��QC�l�U�c��qt��#R��*��t�$�8:j�1�3�'gc���YH��:�Y�������u[Nt�!BR�*Y�S�Q�BWYpD(��*��^��c=���)�P��#��NJ����B��&h�"���u�>&��XG�2x�,�13��:��!�ke��U��rd�	�P�F�@�|\�#B��Q	�x���t%G�lmP	
�9�\�k�"f�R�L=X�{��G�`����)�~���k5FZ#R9�/�����3�4��1[�R������W������q!W�4�`� ������!�"�O�z8�����1@�<�T�^!R��6\I��*�u����BG�s(9:W��2����!SJ�*�K��s8"63o�<-Y��!b�e��=�pm?C��9��dM1�4@�F�:��:�h�(yZ4��z��#B��JC�l���I�F
q�x�^-.��6�%^�jQ��V.K'F82��f&�������@�
��e�!%H�]v��C���tQ� ��;"�jJ������w�]���52��2����p���z��U�7��{��
f���Co�5:q]m�f������`^��qd�I�K$��B(R���a�P$)*��'���:^�!B1����@�������0�HE��b����\��f� ��z�^��VmCq`[H�3D*�O;����g�kD���I��[���e������)��gi�qd�I�,sY��B?��L���F�lm�E�X��6T���PT��,��9UqD�u�ec�FC����3d�I�Kd.$������z�*E<�A[gh�)�C���hq&�M2��� ��!]�P=S�#C��I���
�s��w�+t�6G��ZA��:�����8"5B��N��,��������&��'�DkBekkd�I������qG��O�G�t��bC�F����I��A8Ml-G����%���P��� ����0�\���<G�lM��|~�qt\�#B���4�E�N����#bqe(f�m�����
�uR�f�w��{�t�M0D���������P\{���)���rD*����n�P\QF#��ub����h� KM�nI�����m��x�%������
���18JA��H�����������pd�	EV&$�k:�5�;�5"T~�
��0;W�&8"5v� O�WLKW�qD(�4�������>�uR�4�R��m�����*?�F<������;G��]N���4��R���;�%P�d_�X��Nj�=)\4��|�������938RH�Cu�C�|lr9�� eH������Aex��Z:��Ax'�o��b���P�V���������h]���bX�m(�)jW��AB��^�yY1�~;�o52��Fl�&���.V'������O���m^Evb�Q8���2([A^!b]k@�2n�2�
�u^j�X4���1�*��1�Q���H��
G�,�
�[��x�r�G�rDnv$�I�qx�{=;B�A8'd�����[������#b��)�.@�f�JbH�W� Yp�?+��W�����=����<�
�ub��l��OQ3������	��,�M!9"�;�Y���Xt��H��
��a��82���]��p�O��:�=J��b I����:��#R#�*dx��T���)�����V8��52��N����=��	O&L4k�!kWT�5��8�3�#RZ��N���8����*?D��%�{�82��F�X��q�=���u���|#��
����[cS)>Ux�����U�_���K
�<)/���9?_B%�.K�!?�I��C��������g�U�_@B��
8������ �'
�X�9�[5:_Cb�[���������q�X�B��>L�$�o�
&[�q��z�\��<�y!Tk��-�O"��5�@b3s!��x�R=n����r���T��5�"�y����z�� ����(*�b3���V;V8"�y�<�O`M�I^;���:���
������sw9���h
4�����i*����j����;g]6��s��!b��hmS4��x1�������68��
Ga��,������v�T����0��/
$H����s���������W0HH?� {rQ�zJ���N,��-��l��C��������K�����`+�� 1���C�P*�� ��#������8*d�I� Q&x<X�����w�p�L��>�4�`�����N�S��f�j9"��C0��}�Vg�2��V�����9]�������):;�'F�*7S!2������_N	����1����1�������4��V����7`��N�r9"�cX 7X�X��#Bq��V�T2D���frD,�.
B2�f����������KR��eKW0D��h���z�;�����!{_2��`Us.1	p9"���Mv/����A�&v��U��)���M�'�0D�|�����G�
A�������C��/=��x�H��b��fH���#��Nj�
S��$T_z��P�%x�a<H���#BV�)�lv^�@;�R1%~��A�
���V3d�Ii~��3r����o5"��l f1%���rD*���dH��M��L�#b����x.���@82�������g��&U�'�����Rp"W��j��#2�C�jmL	�I:=�!B��C�
�.�#=��!�d���/����������}��������k�N��j;���-����PKM�\�3��PK!��LObject 2/meta.xml��=O�0�w~Ed����RZ+I%�J, �U����������qHB��=������\W�	m���IL#�F*]����1\�mq���A	d���F��.��ec)'����V�L�[�3
����i����s��GN��5��{������f�:�R\�������pHh!�1L�`�_���+c�A>J��$��0�'��RV�]���p1���'����!���?C�<D����(!�4�A���~�-w�;�f��pGSzO-vJw���z�_-��o�yG� ���d�d������o���PK�-�#KPK!��LObject 2/styles.xml��K�� ��9�KYc,+��)���LM� $SA�
�#� KA��PYJ����/�/c#w=�F��d�����bP
U_�����[�r�t����X�pe��?%7;'V�L�K�iE�a��
7�2-W���4	��?�Y�<�������=����������C���.����T�h$�1hZj���P?.����`<�~(��k��N'���������*���`���������G-��2��������nT'�7��ez��ru|�E�z�c=,�����C����<}G����\G8{�3*��h��q9v��/�Lk����b�[�v9H�>�.;��mo�����[g��e�������k>�>|^�����p�Vm�T�p������3KW���J��2��S�
n�����k�MTYy�{L���o���j-	.��Y���5	��Z�W�kLa������
�����=N�����L�
����Ct�PK�P���PK!��L����3030Thumbnails/thumbnail.png�PNG


IHDR����'efPLTE&&&---444;;;CCCKKKTTT[[[ccckkksss{{{���������������������������������������������������!���/�IDATx��}�r#9]��#�U�������*J���hj���W���d�$
����������������)����n�h���~����1����M�?Z���x�h%�I���efV����;U�N�����Z��C��<��:�����F����*������s��eY�y�F�!���|Wf�kM*jM��d��8�g���V�B���[2KC��������>tb����u�A�}^�>�}B�v�w2���\�c��AMR��@/8���^3�������6n��$�3�a�M6�qM���g�k7�i�[�������1�������Y�h]�mQ�F�L���;�&=����l3�H��y�~5Z�k3���������v��m�iC����M4�Y��g�e��@�"�vD
��&�h�T�o��Qdt���hJXaQ/:��F����������a���������&�'�Y�w.��s)��*�D��1��G�����=pP?.��������"�)����M�j�����G*�[gN��F��������
�Sk�c���3�q��	��N��������s;��o�%+�:����i�#�u=�|����.5��.3����c�������W�b���7�#��x���V����?D}���J���]J����-CIQ�VmjYg��N�%�H8�6����+?�]fE�@W�J�jM�IT��e��IMc�C��������}��
���1�`��rt�%&�>b��Fx�+�|eJz`Xbu�>a}��F/�aR+1���8�����3hn[��x��8��b`�b���bw��5���?���_�,o4��}��]sb�����������9�P�M���]�:���)t	f\�y�v}�jj�J	=�NO�.��@��4�
]$9r����;����>��t���I��H��tz=��bS�
3�L8���t{��yh��@����&�I�Mb�4��L�Y�
i)4��>1Qx(;4����,����;�����C���d��4��]j�$2i��p�Y����e�ZUL��7r�I����xi$D�����f�������
VhuF��p�DR�t��y�6*�����_[���hK�����#���
�5�hcZZ��h�R�����(�A�2�.����M�}���5�����������C^�b����'
�������>^��*qk����
@Kt������R��Y�_40r��E������z?0.V4����1�������WK�����w�M�EB�x�|x�LaVM�Y-����v����B�V|Z%|����G�QHv�k�
�#��I�;.���4���,81O��[���|��=����g���$�4�$}��Q��MBe��UD�X3b�I���*���������SJ+$��o�87��"�FbhMA��DwY;_�^���@�D4}b�_*#��{��e*E��u���6I���'m��B�$������$?�Y���'A��H�
E q�K��uI���^�v�W���B]tKST6H�t�n�����z��1�(��Rb�-�����zX�Q[F�&+��J�8�$i�EU8=,�z�)��$i��G�}���_B��NMN/2'��s7�C3�i8�f��HA�t)�����Bc��X�hI�2Az�k	��C(jEJ.�]����q�MjZ&�����������(�K��2����i�gI�A�4=mN|�� ��I��Ki����mAF��Ia	�]"���` ��($��[	Jomi�����~R���������>�U�q��S!�����"��������	��7b��!UgWU����`���;l�3OG]����aY�t�rb�|�qn������3�J#�I��Ap��$Z"��~����;��p�O�!k��n ��@���/3*�Y�H�
7	^B&�;�'���b#��I����,9��M����x����w�$�nZ5�����ob��)�9:Py\�y�Y�G:�'�[���\���I_�'-��u�������A�J�S�	}<��P.�� 3�-�!8�5NI�@+,m�]HeKl2�b��Q�mJ/�\�P������0�H�b#�s����-����Rn!��_����Wgz�Db���"� ���"��
���R�HS����VX
9���b��3�5D=	#���r�q�(G��7�����~�C�?�c��{�<���4	�`a�]kX
	� ����H�e	+�����8_����lE����$�aU�
�h�����C��I���z\�e���]�m��,�����UG,p$t���	��`s#�X�uv�Fp=�� 8�yG�$��E�����h���
MS�c��������l�"a����+����I��C�?�U�R���?�������(I�����B��:���m#���F�t�d�$]�����3��Y����Q�*�@J
������C���kz��(v�����4�$ua�|_�Z���"���E=AYz�����n��S�o���Q%��P���;1|KjZR���h�B{}k3TL����L��`=��B��AtI��F_Z�`�\]dv.�"�I}Q����;�e�6�-&)Z����G�} ����m7��h���h��q��'��������A]H�]t��v���.�>�����������v�2�w��xV%;:�P�������b����wo�%����m���@���Oo/�`O1�����ib`f��\I�x���w�!]�R8j�	��7�Z�K*7��������u�/e���b�7��+�CF�vL�^�<O���I,��C(D EI9�����&��������iA��8�7w�3��ExW��kJq�E"�Q�:�f7��:Y��sK8�nF�+�V�'��-�Tw��?a��K2��Rq���t�`�,��/�3����Q|8M��r��������.k�.����o�O�-��6"�
)N�����Qt��tQ%tY�LkI�����!�6b�����u!��D�,����!�F����Cr�Z���sZ��"{�w�8'�s�y��T� ��(�a��������Uo�r��H5F:���cS/�E�u2I���!��������.���]~�������2:I�E�,�b�^mAb��3:6�,7h���4f��L)�z����7�R�%�g��A��Zv�0���Y�4�Ttz��=�g����G����W{We��D3��L�xg�yg���3��	L56HJM
X�4�q`����Q��B�������da�����dz���}^��'�W�:1��,u�m��H���f�u��VJp�Y2E�2D�S���$:37��eU\mt������6��L���u��*�����K����D2|����~KR���\kFL������[��@��)��F���t<�,��.�3x&8��Z:��On^�{�H��G�-q�;miI�8XN�����yS-
�I��$�8�O������x�3����U�(R��'�~�%�
��7�����!��9��u(���]�l[�����*���y��X����?2�b�~����]>4�~�C����{J�&�2,"����e��
f��%�Q'+�����g"�����I����d�%��Hw0���"L-$<FV��i���T=�5�,k��
n��z|��5?H�Y[#	��}����F�@Q���
9���!���H��������m����D������Y����"���5���7������3"��M)�G��G�x\��x�V����\d����>�W���<aS&Q;�e*�2#��*��Ov����;�T����RI6�V�G����G�IZ�NT�[��%�&�WDm\�A#�����z��{�B�{�TO�,�����VX���v�Dk����.�%qcZDLg���Q9��iIYt�)K�-�d*H�hp�w7!Z6���TI���{{s@����������S��k���8P�G%	������C��i��d��SK����}��1I�u���i�V�e^']*��G�������~�C�����K��w��7����z<�:���������e)�������^����pT���q%����tuWrJ���c+�����]ACf9n2�����D(7R�����a 5r_���p�a�!>:H'6��}���M���/�8,r�f���Te�+��8��8uk8(�8�2$t�������g8��;���Y��>�����)}jB����k�K�7�U�n#��x��b�y��,;�<���||�V3����e�E���c��1K����I�^���xL���g������@]�;����d�$m����'�Iwh��yJl�QSH���N����Ne�]������c<	w�����t���n9��'��0!'v#�)����eLQ�:-��0����s�.�
�T���8��q�,������;��or�Ei��4[��^��n�l���'8���(^�v�?2}���#�~��.�V���j���(��r���$�G�_��Xql�����Ad�����]�������/�&���W���N��H�o�
^���	�E&`�<����G#���q|�h�����R�����������c���p^4��~��)���_��q��9]D���zCI�.
����
�}O>� /�MU�=:~�dF��AZ�CZ-�"�M�.����p���$2�#�'I�']�&�����V�{Y���N��=X��k�����"z��������;�x��m���m� �db9�N9�~��@}���2B��+����]O'�c.��s�3���S/��6���9�����[m	�Y���1�{����Q����N���mX�<�e=��7�}����.�����.jA�����h�t5wiU��2
�E+�h����\����|�]���y�������(�I�����:.�Jq��V<\~��G�7_�V7�]I�kx�g�(�4�go���Zjl���>,"L��Tk�
`m��a��I�[�8��vc��p�����1�����o�������J��/7��������_��|���%���V��U�_�����.O�������To��}�"�_�y��u�����������_}���{"�_+�����:w2�!D�|�v�A��*�|�q�����V��O�k�Z�*N��B�e�1��@"�65!`%�T������~�DcZ!^�� ������mr�Dw~��������V����|�Vk��5|�IP#r�����cO:���)�������rVY�D'!6c�7Y+��@Dd��ED��5S%�!U8�>������HT�'�F~�1-�����������]J�>`��������C���� n�7�����'6Z9���r�>��PMJU���W:��b���u��=�C�?�>���������������)��O�
��L[�����A\~
�x�!2��5��4��5��z�����z�F�A:/Y�l�Q��k�H,�%� ��������M�h��N�X����o�E$�V���Yc3��������
6G��aQ�q11�u�B�	���H�':O�K�nG��q��;�>)���f2:�\$L6W�#��i�G&�����gOGd�#��0H��B�]��m��\T2"�%m,|��S�eW�
dH�w���f�����lm�SO�6	e���b�]��H$�h��]�|���i��Pb&�2X�Rem�x[�i��E�{����f��?�<�YM�vs+vrYD�C���m����������j�Z�B�&���@G�*Z5�k�����iv�&�����i!����������
�3T�
B�~�C�12�q�U/2K��E2D���O�Ju'50��w�B�-�dS��0������4Hi��G�*b]$Mv���<�� �L����c�gf��PJX>"����1��X���.t�����&�F����W��i#)yGb
��e#b������+�eo�,��}.�����������N�@L��p�\	�v���H��g�6�_�XF�5�8����|����8�==���
��:�i|���_���2�����$�
�,7{���u8�I�Y�h�OV7s%p��#X�Rk>`�Hx^RY���]��L���\�q'c�/��vzv4J����:}Uo1	�&�� ���<���zo���$+<`2�j���]^q��}�����au��D-C��3�B-��\^����:{��c��n��O+L������.W���*���,���<z*&�H0��V�Z�n����wz�����+������0���EH)����D�|^��Zu[�.X�
Qf��M�]w��g��������"�^vg�=+�X����+R`�2V�}j�L�t���Uz�V&x5Y!6�'������<j�<��V�f��%�@Sr!��Y��-W������������
q��p�7��I��������}S�9j��#"��*��7y.	[����M����H���S������'�]�BD�>�{Km����lf��F�0"[�2,L�E�d��`g&H]�^��E��%��3����w����(Y+�=�/%��s��e�\IW���T�,$�J�S})��)�+<Fl[�D])[5[}���J���������cO
m4�z}�}gE�<o��y�{x�Le����6u��H���^�72f>���o���BZ�6^�u�G�>�����~�C�?��]Yz��	5���|>��g9F����`{h���{��b��:�C<�p���j�P�<?��������=�c��V+?fcj���3\����K'wb���6T�����R�S�~�g�g��ss;��E���h�-7��s��
�����EF��+����d��;�@�v��@)���H��wb�Gp1�1��tQ2����1e�[a��13�c6��U���n���F�b���/���q�)�K��s���]_W��/3 u�6=��L����G�@��D��3?�N�[��u������z}(����G�(y��Y����������8	�&�MVXt	�1wFZ�x}�W~L���a������������C��l�>�z���W���dr�$�a�2/�7���'M�'?�����/N�jZ��3����2	R�%L�p����}H+�>�c�(r�(���i�������(+i4kG-G;�^��3�������oQ�jo��l������/s����>�
7@6�g�A���QI���'{X 	��2��2j.��#&�#����+-����~W,��N�J����.�FZ�
��n�@��
Ba�;��)_�����Y6�1Y�y���V����R��oQ�H��d`Vh�	n�eu\�5�h���Y4y$�u�s����>?P?���7Kb|%Ei��"��	��q,3�z��[�#7�5���Yrh�1kCP�S����iv��'V�p��q���is������}��d���i�:�^����=�����<�_������O��:��A}��e�g+|:�34�)��O=�p��\p��������p���u��UX�1�VV��^G� ���Q��Wt�nE5�����Ib+��)KgTnv�����[����"e�����Y�b1�#1�(`�����F��V��G��z��FX���9��1��]"�T����>��Za������MK�z0�)�;d�]C&~����VZ
/y�����H�L���{"�+qD����]��O)Rg����F+�@���H6�+q[69��H=DI�y{[��:
���+5s�� ���O@��{�/�y��$�:\2�������`���F�*.�5t��>���y�E-������RQr���rD	�����*'��c��'i�--���#l>.�_[0���	����%=����{�9��{W���og�`#_��?� M�+{e���Z"IW
�������2���=fe=}����~���&�|��\d��O���������/�>"%3/��Z��Va��6���/F�V��a��i����S)SG)7���V3r*�l���3I�n�4PEi���A�s}�����Y��2�c6��D�����Ob��d�g�����������x����3{�{�uEj��3
���2���u~
� �����t�s�
.�#@ ��!�txm:��0�y�����c�p�1@~���5�
;�PQ��h�E�oQ��=����3�S��
�>�������/�O���u��HB�L=����I� �����.���lovcy��&_��W��:��r���8�F���7�S�<���<&�t�������cK}Iv&G�:������\����1���������?e�\%[����.%�N
�����Sm�0"wd���O�'
s\*T�i�bRJ$�:���Y��<*�h�Tfu)\"+�Y��8����X�o$M[ I[`#�?��M;uB	�'&;�
w�I���&�a��O�m�t�e"�gN/�Uf;���t�q�@���O�^q#�L��f���a��,�7<�`���)�����@����W��]te�q�~��:�W;��%lO���)��cZ�G�
>��������,(0����E�0����X�J=��SmD���I4��1��[���;��P].+��TZ��������#`�����,)�KEE^V��l�vD�O�Hk�i�{!����X]J�N7v���!������R�o��?+)@�����px)]�o�_�������=-����������������������.�V#�0���6�(���D��[��Vk9W�<�J� �?��h�*�}�[B�h<����(��B�h��;-"~/����~Op�����d?��D3�)jl�Y��Yv��5i�C@s���v���D����ee�����!�����,�����sl��Pie����=Q��k��wULV��@�]�8�B�����H5�D���	*�Y(���t����z
!�8�zO(����_�I���q6s��,"�=��';�!����b�$�z����$>���Zm��^_���yn����.O	��Bk&<fV]�^wj����M��1�w
Q����'�9Dh�i���V-&HI���$�����-����G�+��S*�R[���F��~��A���ri��~���3�&NV"��M�T]�6#���8xC��������P���9l�o%������u��=�������c����������K��}������$�Q���� �[7GW�V��������j8W�Pq?��WY��^������q�G����Z"��z��������4�g�X�V�TE����{�/����}��(������(/�o��{��x��N�2��)k�d�#2��^^'�Dxx�[D|�,4�`*����IV����l�G���T�[;�p[�4�\%�QrA"1"�����
[%,���������������d����W~�3�Y_����O�
0���^�%
4�rK��Z{c�����Z%O�1�t#����J�iJ�7��OX��������0�����v`8���-Gi ������� T^Q���b�����b����H���K}���C�����
��W*���*|BF���d .C-
A�	�V�x�O������u%k"1L��T�D����EOW9�W�vd����(I��0�(����Z��#�fK:�wY������	���
���������+Mju��3x��~���
��p?/�P"�aC�3�����TD�5q-��I�^.��$�J~�C(z@�,�+' ��PY�H���������Wd�fT��I# zV��,H����y �U�Y��������|��S@���
�2!�P����=�A�m�$SR5��!XOW�L���:"A���d�Y�({N�Jw�#'+(���7�x>e�'��-�.G���w}[fElm�m�����3j�.&z��Z5�?�O���9$kH�X\�4�N��m].���?�����Q�
=G��o�dch�hxZ��D�z�)?&<����B�2t�"�����]���K[n_p�^n��W�C��Q/sY�0Y��33�����9����
��������4O�9���Qt��k�t�X]���K�.���#�U�I��s|�z�TG����|�"-W>^�ob���9�<�8�$���:j�}�+�������?�%i��N����tR����FP������
)K=;��@���}���9��(��.H��B�zg�����
�r�5l�2���+�}O�@����y��#?&T��*���L_k������rpqu�y:X&�2��p{���v���d�nQ.e$��q�Q3���$���grF$�DZ>������b��E���X�.������C�?�~�g���N���f<��#���.�V�����.pB�{	�3���KmY�e����-p��o$���e�d��qN���g;��o�j���Snq
���x���*���_g�gHr5�*�lu-�d����YWvg�(J�q��ID������$���L�
�������*�s%�/�Yt��G\yX�%8�j������i��G(���3#l?b~o��l�G���c�U7�0�32\����0���R�G��t��#������|���<\��M]��$AWPJ�sZ��[�x�
������
iZ��w;�E��n���U��Vs�p��o�FzS� �X�O�h�V�9���
�^��`��IT���'
�	��mD��h>����`�u���.c~�6���;��4������Q����������� 
"����t���&M)���4xB!����x���
l��H�4$�_)<��A+�@�{��[�����}�{�M���)zH��/X�^����d�N���Yv���c~�+��Ty��.6������C���L��������$N7OQ��y1{��U���=��������SZ	�
�8�;	(]��t�	���Q�T��*������+��� �U*���2Z����ehF���a�P�N����]���X��+3�NLo���q��4�����Q(�w��Y-���_�2���&I��!M�2����8�����nG��7����vE�(+�p���7�W�����	]�mU�B��3z��2����2������h9�#�RY}�3=u2�e=�0���y�P1�&�H�yV��G
��29����F)?����D}_F��#T;q���OF�Kx��~�OW*����,a��w	0��1������j���+�(J�,�-��Q�x�����Y���y!�����������m�h|�x1C{o�������d�*��������������DRYA��D:�Y�G�N��~#��wb����Y}?�'I&��R�7}:U(E�<d�V�S��Y�]P��S��e	\]*��� L�xx���������#�_�y�a��Ws�X��H��Pg�|��u*k�
+�]�}�S�iz�p	��,�+U\'uI\���������1��%
����(X�h<������8#����a�M��������{D�����ZyG@�s_��d���6��g��Iw��\�wU.+��@F����H��j�";h�{��^.k��gsN�8b�X$""���3K�t�#T:
O�<w��V��9�ba��rp��ep$�8�>��Y����_K�u��+�S'���������MA�������MH���m����V!e%�tL����L�^w��k#gqzx�K�0}�lj��f��J��.��U�!��$.B����`0_"��63�
y�cf	��D�`���5��1](c�	M�l����t�O�Q���HD�0H��O�|x�d��M.�X��],0�0�5����:���1�P�O���6�h�]�8dA	+W�+�]0�kT����s�g��~����XXx;�����2T<"U�-��6����7O����k���G�	x�y~�H��]^*����� �fq>I,��O&$�Z�o��������%��<��R��fG�M�����z�+��{����Ub�OK��]�#-�"�^��`��M'�+������n�����R�-W��;�y5��[������q����K��2K=���}EX��9�b�{^X�����I<��g}��������Z����1�����r��}��~��7�~�~�C�'��5�{����tIEND�B`�PK!��LObject 1/content.xml�][o#9v~��0��}�������a.�L�
��@-�me$�P��v~}>�n<���'}����<��XE����BY���\\}i���]}�VB^_5�i;���>^���~���|�����|�������YmG�v���p�js�C?^?t��v��onV�e���No�u�:�uS�����]�l���.��6O�Ko�e�������.��u��Ko�e���������6��m�/����j��b������v�����mw7V)�q�<=�[?t���l:nM�l3VB�e��vri�r��I������X5���E�n��]��/w��fz?�.�F_�v��]��fV���l�_��8�`���_N\������UM���b1w�����=65���}s��v��]�~|��c7�6]Q|�f��d1=j�]�S��1J��/��G�gEl^�A�w���f������_�mz�,'�����W��du�L�;�UI��k�m�=*��r�������o����{FE����lQ4��1�1�F_�����=|�i�"C��;���J���r�c
 ���wwG/t�>� <�^}������,��n�J�/������*�@���Y��Q���i��r�`�����n����e��C����O���t�1�sl����36���_S��O�`��ma���Qo�7�>�l�����^��yn�����U����Y3�/'��z1�6���N���jt����,������[����u����^��Cs=��a|���e��5ZIyM�C����{?}����A�{4mw�v��/���<��u��=��F�5�v�l�2�����
X���E
oU�����UV��z�[G�v3��]��n�����b4Y��XI����^��n[���f�?(��z{l����n�z
�^|�<��wHm����wu�b��4~�"���g�������/��������\�P��B��'���)��.��W������g�f5�6���d���o0��v����]3����z�|x���|iFw���L7����:M���8�%v�%�_�]e�G�B����|��<ZL>7*���� N�_�����&[���k�;%��>yA8��>C%������{F'w0�0��y��V������$��}����'O�M�E��1������a�czC���Q��>��;im�����#7������A��]zi�J~���y^~n����R\F���8���)d�.��+��]����bf7���u9=��k�����^	�������Z��O�w�?�d'�w��������|7��J�=��i����g����+���r�M����]rzq�_��~�[>��i���-�:9�>������M�>�h���[�g�v�Ju��}�Kt�aw�_O�������B~������>0|��l6{��(GP�:�e;�f��ZP&�������&���=#O����������W���?���W���|��m�|�/�t�M��0��0.j>4c��5��U��?�[(���L/��E3�)��B�C�����d��N��_�D�����E:���lA���Z\�uS1g����. ��o�O����?(����a;������d�Kv6���G���>��c��8���}M�$l�q/m��7����&[8���:T�E��Tb��+Q"�TW�3�J�)�1�[6��x:������/'�������_�m�S����+��eA6����e7��R��F������;6_���7���<E+��.�����������*������P�����`Uh&��k��'���_���'�~���m��u������x-'��v��`�t���6M��e�xh6��)���N#�y����I���u�{hx?���|�=�N�Pes�
aw^"�z��?Rq�\���?"�~��?Qq�\����?
"�y��?��������rHl�>N�������]�)�/��'}5LQoe��{���c���v���������.Gx���b������q���=�E�}��IY����>l_{�>V�T�������wXu����i�w����/����]#�l������#�;D���f3����D�|(�a|���7O_����y������h���{a,.m��o�
�������*/��e@�-{n��&��k���������*����"��;H��:����HW�@�K���p�]%sB�|t�6�$C�\:�_� �2h�%$���V�T�C�\:�_���a\��o�8��H6!���Iu��xj�E���������a�>��/���Q�_!L�{%�N��SR���B����r���C�JG�����5�S�U�*%/C�In�F���Vh	'ut���.�;!��!aXC���)2�W�;��^��3e�S��~c�6!����_"L�+)L��<$%K�W��L`�dHW����!H�d�C����������9�p�.�Z�$X[��"\��'\�Q`��)�E�(��9���/IO�!H�d��LB�L-�����Q�����6�$_:���t��U2��iWv:E��7Bg]��%�Qd��]�����$�6�����D���B:�\B�l�t����dR��J�UxQ"L�k������FiT�A:��-"CD��x5&#=!E��w�G��cX�X�O.�Hi���A����`�tA'i,�42����p5:g�?�{�.�k�=b�+p�e��gi��a�N��4%�5���A���!�k�A:�@�y(XF���d����`�l��{��/����Q�[E��a��xK&�UB�Z��
�rJ2�y�HQ���Oc���5�gh�I��-&jhK�+y�#a��-u������F��D���$%Ea�X�4R4�#-���_���1�$��	4{->�f�u��G�<�o����F������sl�N��.��T����=��&�U��O�y�|��X�
�K�SrV&�T$��Ba[�{�YD.�i:e@>��5R�q:9L�^�B"AV�A�r��F�<M�B�%SV2���[��8�L�������31����L�Q���������6x��I����K�l~����%2��,�E�������J�K�oz�8������P�/OQc=�8T�{�p�uR����IY)��Ea[4�E�:G.A{�U_���I�(b�*���#c���&������o�9��;X�r��F��H������"o��_Te�����'BiTU"\�'d��j�*�!�N�1�CB�\=�H�\��:����p�/}i�+�o���r�b�(�g��<�U
��H-}�pEuV(��������AX��G��3>���R��~%��.)����~�p�z�i�rE&�*���+�e�A+�zY��:��."��D���]+YW#\ZG��:�Z��]j�"|�������7����j�F�R���`��Ba�>�hr���
��:E3H��E ���@��E�J��*���T_��z#����&�0���*+��Y�J�i�����L6��(-�)E���B�$�����m������bp�����uLT��G�J�[#\ZG�"1�uT2Q�S��~�����������
�b��ad;�M.��(2����!c�H��E�@��k�����s�9�%Y�#�������hFW!}��I�����l�T��sL}��E�"s����{/+�O�&��C�����K����$��0�)*�W#\�{xq����J��O�AX��� ������LZTS����B�0�!���+����#G�&�r��k���%�-)g}��"�p�k� �#��	m)u�0Y��Z�=�IC�R��
��)�{{1w�����%��z)<�.1d��Ba�LY�)!`�^V�%�hk�N*zo�v��)��c�&l�V��:���J���:�����q\�D9nC�|�`J�n�����o���id*��]D.��@c�O�pe�Z!\���+�S�-7\���3�+��|��w�V��K���A� ��9MZ����:�	6Vgk�������I2Y"� �c�'a�C��My��B�|�E����A�H}{�p��I���[$"�j��	�b�iRJF�\���T� �c<�)��<<H
�d�
��b��g��*����d����y�O�"���f�6�
�ul�F�$aH$�D�^/N�������/XB������U����8+����,%�u�N���AX��a%�I4��d��B���KJ��I��=���
��#�/.�{!�LAkeH�\#���qF<"K�*��N.�)K���`NK��<E�fgM�Y���'s�S�*���)Sn������ul��[6o���JK������2���WW������O��)��K%�U�\�g��:�����E��24��_4]>��Z����.�y�)�M#Qm��YZ��>������sl+N�����QE����Ci���-�'QE�,���C��He*KS"|3u)"p�;l����AX�6?�[E�dR�W������(��9�o%�ek��c~�%���(���i-�j��g��\�D�`��Z��ID��4D�HPA�LF<�����X��S"|1����<U��hLY"\c>	���y"��IQd��I�����k|t�9E��
�D���!V'���E�Z�C��b��	�c����Z!�I���Da������AJ�����5���!��FjkJ�1�p`!���E�l��B���s`+d���K����7��H��
����P�#�	�\���^w��<-����$�
�uN���N
��AX��I��Mg�M�	}������zt��F�r�*v�$�!���m�)i+����_"���q�YF�V����
��>���2E�����.��M��d���@�mb�#M�jZ��:�u�(t���Z�H�Z��������bU���zf���Lw��	E�V#u�)C�������� �c[�0�h�w�z�/��|���:,j�.�)�j��D���y�_K��r�s�K��uA@8)Q�t���X"����}��-yc�fK�W�B��|�*�/m�S��	�m>iXV_� �9l���������� �c��E��O�[��Yu��#�V���@�����g'����*j�J���#Q2��I2��w%�I�6�_�P����@�w��(��c�D������U,_"|�TR1��B����ulc
Cp)�����\�@����Y�G�X4��%��:�}����5�N���42���^�7�*d�1���d�P��'��k�q��D��N��@����w���1T���#�B�o�e���a��s\:���b����^|�����o��<���J�I~��3����'su��K@��?�D�:��AX�u~��=�*�FI%Sy�N�p��Fx���
Qs"�U���N�o%�����	5�5�l��g:G��6�ulZ�B����su5��:%�H��r�P)�dk��<�]�Z��
�b���W�|�w��A��Kd�q���_s�9����X�B�X��#�R~���2��.���?<@�D������{�_����*�-�AX�%��BZca��A�P��I.�=o�3��K�UW�+���	Q��@�0��?d�A�bS �T��:�u	-�k�)��O>HY#L�����!��3��p�%���>bh�D��A�'�j��1A:E#��u\Z�F�G�*����W������>�@����y-�4����'��.�ED�5�PN�����L+p��j�+��e4]#L����:���
��05�dk��y�����,4^!|��4�j��VM��y'��+z	����n{����}�����������>,��v4mW[����PK5@����PK!��LObject 1/meta.xml��=O�0�w~Ed����RZ+I%�J, �U����������qHB��=������\W�	m���IL#�F*]����1\�mq���A	d���F��.��ec)'����V�L�[�3
����i����s��GN��5��{������f�:�R\�������pHh!�1L�`�_���+c�A>J��$��0�'��RV�]���p1���'����!���?C�<D����(!�4�A���~�-w�;�f��pGSzO-vJw���z�_-��o�yG� ���d�d������o���PK�-�#KPK!��LObject 1/styles.xml��K�� ��9�KYc,+��)���LM� $SA�
�#� KA��PYJ����/�/c#w=�F��d�����bP
U_�����[�r�t����X�pe��?%7;'V�L�K�iE�a��
7�2-W���4	��?�Y�<�������=����������C���.����T�h$�1hZj���P?.����`<�~(��k��N'���������*���`���������G-��2��������nT'�7��ez��ru|�E�z�c=,�����C����<}G����\G8{�3*��h��q9v��/�Lk����b�[�v9H�>�.;��mo�����[g��e�������k>�>|^�����p�Vm�T�p������3KW���J��2��S�
n�����k�MTYy�{L���o���j-	.��Y���5	��Z�W�kLa������
�����=N�����L�
����Ct�PK�P���PK!��L
styles.xml�Zmo�6�~�B��p��'r�n{=`78�n�F�e^(Q );�_CR�%[rg���8	D>3�y83�������!BR�_M��7qH�������/?�����/�|��1Y$<.3�+$�#��\.������cI�"��/xA�Zh�F/�Rv�(+n�miE��Xa������+p[:x;VXc���������8�yV`E���g4�����*���n��p�E��Q�f�18npE)�A%�K��I���n����c����Iy��1������H���:.�)j�t�k����M:@s��bt�p7T�d|��I[6�j=���G�4>~���������bA��nZt[�s���l�s��������oUD���Qx�Y�0��>����@d�C�F����3W����_����I����p�����$���9�iI�6�l�uj�q�#�������������+�"m��/����%��DP=��[t4�#��TVgHKC��R��lk\�U�9�$�9/-�N�K�������sH�*P7�uZ�i0Y�'������1A	��\^���;�Zy5�@�|���8� ��TC3��&������pvp�tTk<JI^C��-���(����l��&6����'���)�����1�A*�=��|M���lp�S��k�*�}����_��$���IK�����"��bw(.�q����%d�KV�}���dSRPL����
\�QyE���+�)@�^��J�s�6��B�H��t(f�H�_0��%Na��f ���X�����
U���l0���u]�T
��o������������n��ucv���1�a��q��u�S;����0���p6?�����=�@���� Z�+��T!^��,�H_W"r��E=�(N\L�`[�&�IwL��p�����:XhB��bV�q�aQ��*MT� 
�f�����
��S�i���b@c�2�������4O�>��M�Q��07G+�$iX��Z�v����Q^J��.Ase��@���9 �W#
������f-I�)~�wrd�1��4EwD��&k��l��1v�����
�w�����3�n�:�k���7�9�UFs��� ���*	&��zt�av��{k���"�H!��>z�a%��c�V4t����������`�|b�S0hp�����m��_��k��i]%�h��n<��Ir{x��_�YU��}���m%f��-��z�[��'��{����.@�P0��:�?�����}�/��{5~���q��7�>xA���5�
hwX�
W�$�����_I��v���T�����Z�+�w��S�c�nRBs���9�����E���y�s�8GrF��������&��u���n�������=�WE��(��Cg�l�>+�J�R��O���tWf��qltLy�|�S^2�nH�f�MJ��cH��W'���Q��IH�/I�o��r|R�P��$�_��c�ze^���i��?�<}�~���:��Z���nE�)�P1�J������6�'W���&?��'4goJ[x����iK����(1����X�Z	��v
73��3��J�1��I���8�n{�����3�����=/��h��3�����|���w�s�;�9��N����Ct��D�!�
c����~Gf,dD��tPP����9jV%`g�Y((�P0���D�c��jG�<�Z����8c<�
�u`�v�>L�.���+�z��� X����������Nu�2���.��'��������nh�'n�*���d2S�bd^wPX���-WJ}>�"���6���
�T����k�{�#v/�����x0�E���V�P��~������PO�������f��A�x�'��?&_�G�;X����FES��A���s�v�9k���|_����5!�����t���b�������=�����n�4��[�R]h��
K�^�5v`B��C�Q���S���#���+AR���6��d;�8EkC�������2��z�U����O�������
f�~
�A����{��<��=��B�wj���UkP�:\x�"�M��y��#�������������������e��v��b���n�7j��PK�wC:�+PK!��LObject 4/content.xml�]����}�W4�X y��u1z:���� ����h[YY2$�-_��d�����>Vwf��-�Z�a��X�o����oyUge�if����I�f������>���w�-��,���L6�h��,���(]��6����*e\g���7�^4�����+��s/T[���y�GW���
n��yI��~|�*�^:�����e^1�z�e9��s��R��f7�A/������l�4��|���d>�fY��vEs��w8��m�\�J�9��l����=��nx�����w�x���j���M��������x\��dW���2��u�����z�M��O�I8�E$��~�y��j3�-��URe��l����eY�]�����X�7oi-����OU��J������y��x�96h"�=9�(a�_D}��3o���uz�������5�����pf#+�&.�#S�I8�)�W|[VM?0��S����m�l���]�vYWU��*������x���D��C4W��;[���*�.5�
�<} {_��]hY>��s���?oy���8W���y�U�v.�"�3�w��g�h5eilj�L��B+Mw�j�<�:�4�tyX���H��m�����e�!7G!�w-iJ�3��4���)�l�CI������;��~�i��������� ����d���J�K�U���l��w��#u�u�^k����T����U�/{w����dm�v��&�_�'	������k1[1��j2^�H�����QAQ\q��p�9�|s��k�)9����FMRS=����l���XI����i��hu-K����EF��6}g����Oqq*Q��9�%_���f\�/���-�������R~�w��6�2��.o����}�����
�����Z�
��]�I��rc��)/����X��8��g��%���������7����1��#7V���Se�u�"45�g^�gs,��8���jsS�k	qv8���������<�L��*��z�%T
^29�=o\
O.�Z��v�v��!4rn��1����n&M�"z��@������9hKj�������Jf ~�jm�������x�0������0}4��9����B�cP��@m���:D�:z��.���N��fm��WS���/s�y��:�8X���S�J_�eZa�9��3���1ue������QIGy����q)�'���<?���XG��}����������u�����|��9aX}��aA���������y��������������>aT}��|�G���m��'�K���2}�	������o���fz��ai���)&�1���:Y�+��43��n�]gr�;�'y\��!Pn��� �0���d�R�������/�nI�X%���4���0��x�o����oj���]��\k�k4�+^�7:����e#�t�u�7#���d�f����]y������'F��J�j�y)�y���(�B{x&�F%�R�����rt�������w$��g[�?�N�p+f�t1�q��.��n��f�����������5=�?Gdz�����,IYVB����|%�k�1m�&�x�?l�1}��&s����4hz�l�w���������6�������}�}VR�c��tvR�H��9���`�(.,?<V�MV<4��\
;�n�#5�X���c��D�~������{9�Dp|�ZbB�	L�;9�~ ��z���r~VU��.:�<��?eubj^i�4HVW�c�?��85���q��_hja��i�vI~�O���cj�n��hz�����O���5fZ��c�d�K���av���|��g$;_[v����e��$��#���9�����i'�a�<�y~�o/������bZ���'$�j����kK����F{nJrk��������iZ�Q6tY�����Gj���~�����v�W��A��r����N6~Su�v��?y�0��cB���^��V�m�s��J�\	U����XB�������o�g�;��Avg�������~������[ G!:�cx�x��/o9�B ����(����?�fH|�6�hz}�oOh���Jjh�����-�O��A��R��px���DZ��}�S�Vd�Q��|�e�u�-�f�f�H
�N@�	0�0��YJo��c�(�v�r�}X��c�Z	j�5#��$IPK���	E�x
l�S0	8@+��MO[���d��CI�Z
���$I��rLG�I�S���M�C�l����(�e�$�g��E��a����Ir
p�D���'�#@����
������mE� p����P�S�4�NdF�v%I���B"�<�z�B���!IPK��h�P�S��	�t�l����m��� ����yR$�%���y�@�@M�e2��g��n��T$l�l�L�
R��Pr���D��`S��d�|�� 4#
��M���X$��%+r
h�L��tWqq"��)
A��@�������h�a��D��������:l�4���Vl�B�'�"'A��g��H�aD�0
P��M�%sf����t��p��8�O�>���xTJ��?$��q����U�$���6�Ia8��_����%"������"'A�K*�0"vD���<��y@���Z)JJ����=:P��"�"az����C���3L��[�Gw��8D��'%;���Y���;����C-	��2�R8��G��Xjg:����4 �_3g�wX@�,��!
�9cT`�8�:�-��r-t��K��4a(_�e�T���(��=�C�,��a������
��(t�VtH�=�f���k������A	�����E'�!�L :lz@;�gf���p��e�S��c���Y@�aAo�����3E����z���J=���P���J����XV:6$	�H�
]FIg�\D���SJ�(lDP$b���!I6�'����
'
I\�"a�
AG�DGtD8�JD�X�!
 ��I�%�"a8����y�x�^%;�5;M$:*GL�KejE�Y����K�S���K}�T��6�E��BGH�8)f��h�����l����I�v��F��N@���-e��C�PC9�v��m�B*�/$g����P��P$�F�������g�[��&�N��T��8����%��
cTr0����m��I�����-�H�~�R�5g�D)��]��BHK5��fEdE+6g�Z,�xa�Z�����BN��T��"�e�*��`���K����W�*:&���}���^sa4�u�4��G�&����'��
nW�V��EV��zM@���g�(d�$�C�DX|�M<F����HL�����}�p�XR��g�P�R���/LG��Y:�*z'���������]xHcVa��������z�8\EN���������;���g���J��`��K6��%
�X�}@���4��s=t�D�V�$���H-gl�����&��n����p�%:P>���o*@�����fz��I���4�x@kC�u���Bl@`�6�E��Y2�p�`�t�������Q�"����)�S��I/E��D�tGA�s"���wt�j@a����Y��<��8�s��S�����w,P�����R��'8��F�i4G�{�1�m�i�8�hHo��<�.���A��#���Y*r
t0����RT<��c��R$�b�(n��{��S���S��i�J�d$����LJ���{���'o��'���<���F+u�l���P�fvU���&�E<���fI��R�e@gCa�
H��"q��j�w�}�;@>�w���A_���(t�t����`���m��S�:�"a��E�e�FG�w��Zg+�%�n�x69V$�OJ��
������"���
���U�[o��0F������`tg��(t��p���94X����'�p�O,���I�5IL������"a8����+�]q��R���?������k���A���R��^.7������u\5���v8 ���eO�e���Ec$e����PK8Q1���PK!��LObject 4/meta.xml��=O�0�w~Ed����RZ+I%�J, �U����������qHB��=������\W�	m���IL#�F*]����1\�mq���A	d���F��.��ec)'����V�L�[�3
����i����s��GN��5��{������f�:�R\�������pHh!�1L�`�_���+c�A>J��$��0�'��RV�]���p1���'����!���?C�<D����(!�4�A���~�-w�;�f��pGSzO-vJw���z�_-��o�yG� ���d�d������o���PK�-�#KPK!��LObject 4/styles.xml��K�� ��9�KYc,+��)���LM� $SA�
�#� KA��PYJ����/�/c#w=�F��d�����bP
U_�����[�r�t����X�pe��?%7;'V�L�K�iE�a��
7�2-W���4	��?�Y�<�������=����������C���.����T�h$�1hZj���P?.����`<�~(��k��N'���������*���`���������G-��2��������nT'�7��ez��ru|�E�z�c=,�����C����<}G����\G8{�3*��h��q9v��/�Lk����b�[�v9H�>�.;��mo�����[g��e�������k>�>|^�����p�Vm�T�p������3KW���J��2��S�
n�����k�MTYy�{L���o���j-	.��Y���5	��Z�W�kLa������
�����=N�����L�
����Ct�PK�P���PK!��LObject 5/content.xml�][s�8~�_A15[��wl��9�}�svf��U�x�m�d`~�J�Mc�l�pRE���Z��������/���B{(|�m<���\/\=�����������=���s��E�&�!Q�{DG��"�}op�@ ��E/��@�Q�z�y%-1����sbq4�;�t0�=^�s���h�m����*U�DM�b_Y"�� �;Z����O�5!�BU���dkN^��|>Wyo�`'��6��T��B2f��Ot5�
 M��h�%��������j��j����	�8k�c���t���t�� �6yP��N����8h������^�X��Z����$�/��4KM��m%�{b���$w���GA��(��R
�2���g��O0��;'���S���o�;k����'V�0& ,4��NJj�F�\1���Z����&�z����t�]���.�T���Oy����X������X�]S9��5�0��H���*�BK�	�4r����b�u�[� b�GL�F.a�w�A?��H�� �1��&(Z��v��c[�������&)C��QY���#u�)'!)0��Y6Q��9
����c��S����o���4�����F�U��|�+:��V�{Y���j���l�eltM`���$E�����~;����i���gM�����* ����x01���0�A'Q��*vF5;~%2K�3���#�Ho`6F�CX��e7[M�� ��D&4����(�nF$_L��P��S�,��p�v�!�y5���3��B�B�#����b��qB��|?��rR8e?��U)���P�v�B������q���\��}���%�c*~���DT��`�����}^��QF����$u��qa������<���*�R�G>�+>x���P>Z����9R��WB��0t%����Ap��P������A��.����'e���M��wE���m�s�p��b�DZ��8�n���q��
�K�r����<;�wP�
��A=�=T��N�*M����]{7����
�GyJ��
���\V:�&����+��l?L�����t�]A�
/��?��V�O$�}��riZi�X���>'N'���kZ�}������9����gsWw������j�_ug���{��i�e�8C]�KV��oW��,'�/���|M��	�'_E�$��X��ai
�������V~d��p�4�L�������!��A�*�n�!� V��B<�TJ�r�L4����g7���lVS��t�LO������T���x�������Qf�}���;/�����q���d������|>�
�0�x��@����zO(�g`IG�#z����RB�)��f�
�`������25�����N~�"'��_�Ee�����-qI�)k'���+`���O��LbZ�:2 ���i>���T`���A��
pE��11&��0���1c2����ab�6m���?��-��Iv����#����v�f��f�f~�J0���(����C��T,}vm�p
����n�%=3���]�
a�a.��Q
�_)d��9SH��������=+w
����dj��T�P���/���V�p�=�t������>��b!8�{Z6�+�70V�6��}*v5��	��s�x�O�i7�	�]I����U�R`�����%5Q��^�}�Q��w��s��>w�2��*�R��/�P���}�De�{U��Fe_����u�\������f�v��p^Ne3��u�<>��4V%#|D����?�R����x��a_���7��1[Or�4%T
eq����R�m�:h�[��,h��:�;j��/3��)	=O�3v�B�tj�"������Lh$ua�<�3�#I6���M~u�K�w�2x���e��X��N����7��l��n�&���6�K�� ����+d|�����_�y�t9f���}B}2�{4����1/��_�%������U������<]8�������B���� 	�L/��2��C@�)	�%����)	��5���a
<LI<l��g?t�j�]n ��,�.5d�R�@f��.��+�O +���xXK�$`����d�0�
9b>%)'h�G��7�$T#��A�K�%h�yH��8w�<9�j9$�@V�~A�<��I�P����$U��w�$���@As�P��}��A�bI��7zl�����Q ��s�}����m��6"���}.��������a�(h�C
d���O�^;��tY��;
z��>����=������P�co=��Q�(�U;H��Go�j�����FM�y@SRm�P �v�
��m����PV�p6g<�g��[��o>��F��

�8)
�XZ�Z
�>?w8��Q�(�U;���9��_I�����j�����q�0���5/���>�/��j$�+sO�c�Y����Gh�
��Q��������W��
�\;�'�i�6�����>��:G���g0g��&��]1��o��u�J^��I�tewR5�������yY�+fu�w=��C�g|}�,�����T����\;JD��^Ps?����WC��v�=
:��\����������>��<�3B����s����Z(��s�-T�>�w��=������!�)���o�B���?�\�g9n����I�,w����P�\�>;��;�C�t�d�[��V����1N�=���w���Y��6�2����m�=�����J����	�������|�6�+g
0Y�Oz��>�|A���r��	`H���~�?PK���Q^�PK!��LObject 5/meta.xml��=O�0�w~Ed����RZ+I%�J, �U����������qHB��=������\W�	m���IL#�F*]����1\�mq���A	d���F��.��ec)'����V�L�[�3
����i����s��GN��5��{������f�:�R\�������pHh!�1L�`�_���+c�A>J��$��0�'��RV�]���p1���'����!���?C�<D����(!�4�A���~�-w�;�f��pGSzO-vJw���z�_-��o�yG� ���d�d������o���PK�-�#KPK!��LObject 5/styles.xml��K�� ��9�KYc,+��)���LM� $SA�
�#� KA��PYJ����/�/c#w=�F��d�����bP
U_�����[�r�t����X�pe��?%7;'V�L�K�iE�a��
7�2-W���4	��?�Y�<�������=����������C���.����T�h$�1hZj���P?.����`<�~(��k��N'���������*���`���������G-��2��������nT'�7��ez��ru|�E�z�c=,�����C����<}G����\G8{�3*��h��q9v��/�Lk����b�[�v9H�>�.;��mo�����[g��e�������k>�>|^�����p�Vm�T�p������3KW���J��2��S�
n�����k�MTYy�{L���o���j-	.��Y���5	��Z�W�kLa������
�����=N�����L�
����Ct�PK�P���PK!��LMETA-INF/manifest.xml���j�0��>��v���R���nw�=@5�D1��o?-���:��;s�|Dq�����Akd�S��g��u&u������J���Rq-s069?8�9m�aJ�V'57�$�+0�I���j�)�6��?9fGW�d�p.�rY���o��yWUn�m�v+�eZA&�k
��7M%��6��=L����i�g���M)E���Fod���lX�W���5`mOl���4G�,����49�[�sYt�1�������C���T\G���c��:/�{L�?F7�P���c���@Q�v��;e��QbT�%~J�����(�CP|l�GF���2����VsYf������"���a�/�y��*��L��/=n3!�u�j"[�y�F�(*J�����d��XW�PKO�����PK!��Lcontent.xml��]s�H��y��B�k�w���#�����mm/�������N��BJNQ��AeV��_?����"�/�{�Xw����p������������~>��no����w�7����n���������y�����������W���_�^�{��~y{s_�����7��O?��w��n���8^���x{8~�������[�L_?��/��\��^������{�����w/~�?�������_�_�������������-�������gG������������}���/��2�b���7/t��E��|��3����u�^]�8\���/��_L����z|�~|H7���p�������Wg����X��u�����������������W�����;�:�����}�_*��������������?�����?������%�'Cuyw���'�������U~�t���5J������7�_���w����//�/��}��A+�~Q�������o"��W~��8�x�����������^�xx{��z~~us����02wr��M��������y`^��o9[f>���^}���N���W������/�4Rn��?_~�??�[�}=��x>��/h�B���,�����f~>��}��4
����w��+���u���?�_�����O������'���z������?s{����\���}��G���s�����?'��������n�����������B~�\���0~�G�`��������b��������<<u��>���9~��g��.�����|Uux����M���D<�o���������w����w����}�����pS�L�_���O�wW��eB�����^}/�}h�~�����o�GrH�8����c����W�����������;_���U��?o����.N'�����g��������W�����hG��k������o�����y�;�[��'���V�6~�:�s�~�����7?������w���:������������p(�b�����_�_�^�S?�A�w���?:�o�Y����_vlv�c�n0n�����i�_��������k����/�X������#��Wo~,�m�$��~<<�}w�������}��������{������p��������1������g_��/tz=|uu|w}���x��&[^����}U������~}������������>������cu8�_����� o�n������OE���{u�����T�?}sw��]
�#��#��H�K����Sh�|�?��7n����������ww������6US?�y=��������~vs�_��MP������������w���>������y���.��������b��_��wo�����.Gv�������M>R���������i�w�
�����W@�bW�������*������������2p��^_]_�2 ��/��x{w��[�����3�+#�n����������R�6|x����9���MO7����G_�Q.�_u��?�����W�we`^<�����t(/X��D���2N3���������������>12���<�yy��;���K�/W��./�^?�W���9����}V���C1�gz�_��p�������������O��'�Av8����z|~��=��?r��>������g�3���+��W��W�:sN����������{��U������K?���]��������>�i�2���������x1��x��1���m�������|����V���_�J�|�1H�'�eb�1?��(��o�yN����O����,}x�GG�X�pw���{�������y�x�������.��_������H��[���/��|����/��w�~�M��u?�����xu������_��pq�����i��x�z�Q}��p\�#��A����yf��w�3��@��s�|y<������~���o�~zy���>���g�x�������/�������_]�|w��WD�~���{g�W������{�������g�������?��z���8G�s ����
:��&�J����m�f�9������p��N
�d�A��H;��}r�p�������Nr2v�*��c����>����.��sFih@'�s(���M��-:�������v�}�9��T�_r��A� �����1�����.�!c����:C�'�3�F/U��R��%7`#$ ��c6�	�z'���S&�����J�^_�7W��c�N����|�o�����/��J�_Y��S��b0���]G�r���i��$��JQc���4������������:�!��8�_�y�+��M*���v������J�.���$ K
��aH��c3y!I��=�=���F�k�Cm�
�A>��Q�kkt6�b�`V|�e�����f����d�`f�4��Mt���D
�[�����C@�iP��d��h����69B!
|���q`n���pxDH�dM�L��$ij�T��<��.�=VX:g�)�h��_!7*�qm���)��G��G�����i�����>l��i�\��N@���Y��X��g������C*��(Z4do[���<D0"-$�R��d�4��U�1I�\�a+I���'�!=���]��J��o����tZ[���4�	f���w�[�Xf�u��\&p�^j#�Z��`L��4���D���WAH�J����M��"6D69B!
�S���gO�x$�W�_I�������$�+�R���J�R���*ms�.M0I��RQ�Y�����	I)�B�i��D����d��'��X��V��t�V!�E;�{
lr�b�G�hl%I�r�h�tf��Ti!I�����R�]�tO�8�J�I���m��W���s]ha�J{e�����f�+���&4d1�����HSi0Z���<�6j�����M����V�&GH2���B��
�c���`-�J�T�%�\�-�'�Jw���J��7&����T��P���0��q�J�����&�t�C@�J���m��&TZ��s
H�J����fJ��l���!��_%i"
�&V�����$��9�k���"�E��4 �fu�v:�E�N0K�m�n�Sp�I���1�f0h2����L/ K�-����4vi�9��s�"x�+M%�E;���lr�� ��s%Y*��sLK���*m� �d��3��$�.U�gJw�~l�^���6���e�`�0DGAk�h�5&	�M�#L����&�p��F�7������uT�lR��jlr�BBS�+Iz�D.��&�l#$��h�t%w)�=&}���S�(���nh�N}/aVLZ{U�:Xo�I��t�O���9����3-,^��a�[�c1i��>����;��T:�*iy�`{Y*m��X!I�t���.����]���J�9&�z�C����6�$�����|�i�����G��F�$�E�1�. K��{n`���i��i
f���).;��b�`%�ai�q'#2Z���,��`4��,��hX!I�t��*�e���5z3�z���mj�Y� �����&������(�
���
�I�H�q��U+j"
vt�.Pi0zU�&5��'���2$�n�$iZ���R@Z<iKi�������R=M�W��(�{N�X���II94���D�(�Mr�Sp�Y���Y���4:�����i4j�;���m��t-�A�Q<!��D�����v�yH�V�D�j��D��"��D0@!$ifM
��T���=����Q�^��a������4�;��`���&L�J0u�I��|I��#$K�������kU;�JU����X�&E�o6|���F��W����$�M�v�J����XI�-KUW�'��{�H����y�Ka��ZmL�`���f�Kp!�
b&��h�>r�d�4�	T�G���NiQi0a��M�bWi$*�)d%Yo�`�B@�J�������`�!�Jw���Y��Jin�~�tp�f�LRi�b�^�`��H��61G�,v,�:E,CPI�J�QiVN�6T���xu;@��d��h�����M�PHp�G"&x��n�M
�J�n�o8�}�aW���������
�����v�I*��I&�S�L���SG7��0k�`�v%{Tz�����
�^z��D-Z*�.����
y�X�G%I�r�`baI��4��^H���2:�
�:�vh�}��C���<D�W�pX��x'O0I�}�.Z0Z2��gM�19V\a�toQ��������	�OK��]��2Zo@�&E�G����T��6h�{�:g��B���|����������Q��~d�^������3&��&�6��i��h�5�a�t���B��4������Em�X��M�b1d,�&`�#T9`Wr%Y*
.��[=��'$inM|�������tW�����=�5-�?�$��>+R�S����!9p����N��p�&O+�����m/ M���<i"�����jzGBE:5+�`��J�D�GyA
0SZHVL:�'��[V�.�]�7#��w8��G�E�	&���J�'cO��&���:'0^1��SX�����4�J7�6m��t���T���xP���M�OTp!<������DZ����$��N��Y���R=M��y������^����>���Li��1��='�s09&�fM#�z�dt���4����4���`ABI'B�m�+��&�� "m��,�W���W@�!����	��H�N�B�R�{D�<"�����=sJ�Y, =����%��c�3M:�h�	��'���`��J�d� P�=�4v&�������6c�v�]��I���������9��hY!i1i�}j%�,UO�f{L��q�1����T��	&-9���B#�3�9���'�]kpV��9p��t��k,�ne��Qa�8(� ��V�IU4z�K�����t0�Z�L����X�Q��& +p�|�J��5pR#}|�J�g�D7�>E�^����1kp�����h���[�4i\bv!���q�L�
���d�4�s`����Jc�i�Q����t=x'�h0�6,|:�d|�[lf�$+����9$�CP��& ��2�$��=[�X��=��^������O0�P�QZ���L����u>���L�\����*I��5��t�=�3��3�l������lr��B[V�iA��i�����E@R��&��	�:����>���O�vW�h���YG�e����x0�y�I��W.(6��i���ns�$�v��8wk��g���l�%��M��E}�6��m�SI����*��7���B��6��QI�A��X�{�q�9~d�^�_����ba�L��#�2=��gM(o`i�	&����}%Y�8�|(��&TLQp�3�4:�d��h�fxvq/���P��D�������VGp������Ex�^�m���z����OD�W�����t2�$��!&���I3�Z��>�
W&�$��)a�d�4Z���im*}��rE�����j��E������PTC��0"+���i����`/�J���S�e�����9��u���J��/�m�L�	&����YFKf�t�i	yg0,=��y&���*I�K�a�=�4��%�9I@�d��XM�X�^���M�$�Rk���JtEVH����F�h�t�>�C_����R��;���`G�������F'M�&���)��?�,���B����
����'������<�FDK|;E;x4*��J���RIVT]_��t)k��y�d�t7jV�t�M��*}��q��z�@��p�t�I*mT�*�E�f�u�yc4XXb�I�L`*]%i1ip�)��U���w��o�<��z+��(����*���|%I�r���JY*���\%Y����)���T=M��	����J��5P��B���0+*����������E G�$����J�T�x�*"�	�Nh�G�%x���B6)�v�.��I4������.}'\������E�3��Q�-K�o�e{T�G�Y���h|�����O0I�]PVE���4+b��
�w<��y&kpT*I����[d�x�X��[�&U�`�O�!I�eZH�{!N,������B�����\�JnY��Lw���L��7�Xc,Z�s�I2m��}s���4��.��#��u�Y*���T����7���)d��h��lr��Bs�+�
X�?��9�>R%Is��������8o�tO�8�J�8�����P�����&���Ai
f��4+b��up
�L�7�����d��BUZ�Y����T�(��&Z���]�~d'#$z{4k~7>
�z�e���
I�W�s�X!�,T������~d�^�����*}�Yi�t�����&]c*��X	o�I�V�^@y����E��-����>��lR����M�P�pUi��*�Yi.^T��3�E/����i�l�H���������KY�*}�I*m��>���3�Z�R���V��h������&�}��Z�4�h�w"�v��%q'�2Z����wB�!���C��\%$�v|�Vr�"���t�~l�^���Io�r�I"���1��#���bVhL��4:�uO+�����pM�3�4<��4����`��J�D:�"�h"5�`"$ifM�s($+nt����q��sr��}�W�H�`VD�[y�Ez�Y���#Kr7�
���$K����='v����N��_g�����Hb�c�j���c;��������Ap+��,��`2}%YX�C�-G&�Fw���F���PEZ����>h��c�i���Ut	��G�doN�U*I�h���c��J/�4��P�&5��=G���#;���C�$]���h���Ek�
�r��_�����i�l���:����FEz���k
6��`�H�b���g�e,FY0?zdY"����$K��Pw,��6?�x�����r��Mj�E;����w2BE��+����4��  K�#+�$+"���Q�������4K�W�oX�K��<G��Km��S�4I��*��f'�t(����*ISi�Ww���R�[\Wm�J����lR���������]c�$+&�+���C�	Mj�4�:�Wr�R�4m�����7�������aZL�m��3M���4�,��\�.��)4&�����y�GsK��&�!�"i��Y��u�`���,�vhB���Y5&�����T��>�B�9�~W����V����g<��1��qQ))p����:��B�b���������B�>�`[��|��� ��aZ69BQ��s%Y�hp'���X4��$+X���PBnY�����X�C��c�v���N���u�`�H��z>g�s0�E�b9�$w�U�����~���h0���8����W�&��3|���&4�:XIV4:�
#M�]��
I����Ur�:��o�����G���;j��G���`�Dk��3M��B�h?����-��k%i����P$uh^$��5,m|�E��h m�J�V�|-�tN�$+�2�����u�izl�D��W��J���}6��>�$�v>�����&=��uZ���'�%�Y������4������1v�
�i0g_@Z4�T$d��h���vq����P����J��=}�D�3G;�M�dl"��D�]�t�G�G���^���M�pyk�I*mB��gl��i��x$%�[�h�b!{<z����v��II��C�:\�iR�eh���w�~�i�n�4�z������ijt�H?t��dDz�^�NR��&,'���>D.��4�`b�t�P�ax�����i4X��mh���t�!�U:�lR���r��"�`fr%Y���nhI�`��($in���O���P=M�n8�g�^�����Y4;���U�L+y�4�_���bXQ�Fg0}��4�F-z�
���t��\��d��h�w��]g'#��	�$+�X��
���E��$����[���Nu����^��a�R9��L�h������Mz����`!��%i���T���
m����|��
���V<�lR�����l�R�$�V��&�����XtDw��e����4z���kw1T*��n�a���SE��{�Y�������8I�]#H����{jG�i�V����R��[%��E���]��;�h�~��$]���M���mLhT��,�Q���JnY���������Q�^���$�*���6��
�D��)im��h�'���`��J��T$5M$7��~�	y�i���Z\Be'�h��qm�PT��\I��h3�HZ
�`�I�{�"	I�����u%���y�Ip���A�����=
u�6���&M����
XEz�Y�� }^��7����[��p%Y2m��(�ne�
����4j��UU�C�lr����VH�Ad0�.�R�B#I�N��V��J�>[ZT��=��[��������F�t�)k�K`�t�Io�&�7+^�4+����
����Q�����}�"�a��[%�t93���lr�$ ���U�d��&�����,XsZ@���E��v%IO���f�
�J�b��B�Q�]�G��	�WM0�v�W.�61��q�
��zpo�YsQ��W�.C�e;v]pUU@�iH�yHKO�N<�`e����dg%Ir@��ai�_�L�KT�t��n��������AO��[�Y����s2��a�H+���z�D���kc5�M#L�����J�4M�`-+lB�=Z��6���.d��h���������o�d+
, �����[H��8��	r�R�4m���4�'���}�*�r��}�`Z�����{��B�3Mz[��w�>��&�����C���T�	�{�9^k�'��V�h{e��g�!��[B����j�c=�^WI����%Z�]Jt�G�G�I��������&�*�7����^�/|V���M���W�]��/����_xux}������O�����}�������#�MO������tR9��}����_�_�2_�/���d����#p|wqs#�>���������_��g������pwx�w
{�!�
�����2��c��!xuu�e�),��L��-�q<�y{��y����w?�~�!�.o�^���}s�C8^��<�0�L��^���d:�U������?������x�����^���8���W��\\���%��+���V����W�7���?r�������8O����g�k?<����p��x���/wg������������}�O����2O����?_��=�g����~�������eAe�7+W�tY����*'�4�����h����R0A'p���s'������0z-�n�
�4hhK�j�����M.{)t7�Z��h'#�=�]WI�������r��*�!���$0U���x8�j8�8%=K����������>8P�&�tR��A���L�.o���JY�����rXTH�����
l�P@�!��bX\}q'�h���,�Nv2B�
��	Hz�p����C@�:iZ[�`m��Iz�a"�Y��s�$�X%=��9hpg��/�mj�]�<h�[P�G�5�+��k�4�%�L�Iy^k3N�m�/A@�2�6������_@���u�$I�B�W�IM4XBzh��mZ�MH�s<���
H28t^��y5����$��>]H�}:��v��1���n�}rMZE�W�<]�;��i�|�h���&���)0V0��y&:P��2������F{4����ZtFU��Mj��Fy69B���R2���KhRGb�qh�r!I'#��V�+$ij'�=���Ui.1�=v�*�v�Q���`���T:e�t>��������3��k5@* �N���,.x��T�����E��+���w"�v�����M�P�CF����V�V���9E��&I�\���*I�W���T���&�������G�	�X���	&��M��F	f�5�+�C��M4+�>s���U���
�vZ@�J��!��^�������WI���SY*��0���Uv��$i^��c��Jc�����Q�v�G��whQ�&���.'
n��i��CLL��i��D
�	���`��,n2��T��m]�������J6��
��V��!�r[%I�r_K$�C{V�4�Fn��d�.�������$3���"�M�}4�,��V��&�4i\lV>*�y3�$���n?i"���w\��2v�H�I��.����;E;`���kr|Bv
U��FE:�D�)p����:G��n%���"��D��k"Vi�L��&�	&�t0F���f�5.:;����D�D:����Y��Q�s�XO+�3��]�&E��[m�[��B�T��W@�JG�{x%I��2`��J�&�G���*�Uz3*��I�l��0I��+o��b��L��5�`}��&L�iN@�H��;��kw��]I�k<�~$d��X��:-`�#����DB�D�B�X%�����-s�*.	W����Hw�Dz�����r	�'}�Y���$8���M����KL����%�`�w+�,R��)^��+��$�|���
y�X����x4����������$$ifM�W�kt�����F������������1�V��iR��:X�c�9�"������hbk�o}���E��6��lR��������/�%������C������9x��o!�Hw��"��H�s�7t`�	f��Ur����f�tk��UN`���N�B�pU����]7<p�=m�N�J'�J�����*|;E����[��d����z�$]��_�������$�����E���J��f���=����v��;kq�`�J{��C�vL4k����ut�?�,��h�!i*�6_fU���J���nq�-|"���'��D{��b�i7uW��F��+=Y;.�U�tC��F)��rt����=&�c��,���74����0I��W�kPg�tkgS@�S�0�i��M�d�4X�E����GK�xZ����D�%�t{�NFH�6�Z�������J�9E{�C�$in�|?��.c�]��J?�J�������+��I���3�f�����8t�q�Y*���B�b�`2_w��nk
HSi�����&Z4�����FZ��Y��:��Hd��
Z�JH���]N�]�tO�8�H�9�c����EN��i���`���&=���-�?��S��+��]��"
��`��H���d��h��+`�#�q���Ky�&���B�b��jY�-G'�-�c�=&��*�z���+�N0I�����v�y�MZ��&�?�]�L:EV;�UGH�Jk0lQ@�J��-�b�F��+��(Z�V�]Z�p'���0��$K�*����6�3k!I7t���Wr�J�E���fDz���&�3��1���t�:���fMo)%4�c�Y�}{���4����N�����7J�h4��MM��
N��K�������gNi�h���y��L��[��i�=���q����6�JY�����*���&	S1R����	fM�]/���hwCVF�64�G/�?�@����yq��������M�Pdps%Y*
��d%4h���M%IsktTi!w��="}��sDz���&Yv��`�J�Mr�n8����9(4�cdI'��2����,�FKI���4�n# �4���'B�&%��u< �ik#U�4�%��\��C�pOk�`��$���Nu����^��a	��1�$�vNE�`g����G�H�0k��`��J���h�p��&��{�����!����'v<��^5*��a������Pe�������g0���[V����=���q��~���>(���h�Y"��O:c��L�����l��#L:E-XI�H�m������������D��J6)�v�
#`�#$����������WrY*�ZD�$���[pr��tW����J����hM�&���	l3�,�/��i8���8��LH�H�iild���=&+��&Z4s�.N\��E=X�^F%Y�������SI��-�-������q��qr�_��a�*`����5$�26��96+A��`�'y��SH�J��
�����1v��
���P�&5�����M�P��EZH�;!Z��V�H[�$K�
,���t���������
���E0�4���>���L�nm�<�f�YO�:d%i"
��p�*}��t�~$d��h���]o��E3��\�$]�L����A�y��d�LB�;�$v�����R�='w���P�l��Z#L���
�+��f�s0���$�l>��K^��uB�tZ��;���w�gB@�������IY��+������
�i����_M����z�w����5Y�tV%�,V�������~d�^���V��f���%>Fe1i��Q��)V]���f[�^�B���Q��5���N�AagB@���x5T�IY4��C�����0YI��(�^�:�����$�*>���+I:lne���:}���e�uz�.�:9g��0+:����;�,c�)g�#�Q7����X��p%Y:��b,��@���2����=���Q���J6)����|��E5���*�9�+�k�`���������l�����s�+
�.�_���f���z;B�#-L��T.:�-z�Is�r1�����i��:�0��$K �N;k�p�c�j�����hd��M������=�;�X<{g�$+r�T�4�G&���������J�����n��G���{:g�F}��|���}s;g�t��������&����R($-Y\T,��}��G:
i�����M��Z����>P��]I�����X@���B������n-�t��k��o���Y�W�X40��#LRic��^g�5����s�f����~%ik�h�8�9t|������L�w��M�PT�UI�L�q[Y2
�e����Q��t%�Lw��2��LKu��e�&o����dZ5��6�����i�4�	&�AT��A%Y��p�*
�];��u{L��&�\S���m�^I�X�X@�!X����4�f�1�$� z���X|�����{-��P��0I�k�����iV� Z=*8�,��`�I%Y"M�}R"�����,�,* �lR����A�`����4Z��ja�n��$�g�����T=M��1����I��W����m�}�I*m�z4J0���tQ�6����� 9��T��w(p�*
f�:^�i����lR�f�	��E5X��e�tBk�$Vmm��$+l�DB!�,U����Q��~d�^�����Q�LRi�����;�,c�>��'�4�d��N%Y2���k���L�e6"�O���d��h�-X�&G(�A�e64�d=Z�����8.aT�4�����9!Y�}����+�Fez�����f��0K�������f��4Yy
���T:�Y����4�/e`�L��J������\E�IQ�Cr
����fKW��V�u	��K'p�����5i�{��u�������f������F�)'���A[����3�2���hX���M���*�Ri�p�*�F�Y�ntB��T�IQ,��V�X�����j��+����6[�[���MB���Q�r�����OL���^�s���yp��T��L��f�s0>���D�`��i������tO��4*M{�Q�,d��h��n<m�PH���J��=>���2��
h�����������[�O>M�m8���d�nT�WoJ��6h��fE��)>j�kk�I�R
�(�a'�t0���������*z�U<�{E@^\\EJ��xx4[�7�-���@[`Aw�$��"�`��J�f�l������8o�t�J�G�����z�����h��	&���9�F	f�4.���5a��Y��$M���4+���1v�
Hil�����D���Mjb�v�`T:��+I��#��i
���<+�����J�B�&���h�*�U��Uz�~�1�*����J�[7Z�c�Y^oR�q�,K�s���4�F7���o""
F���`0np�����N4�`�����&�Hk^!���MYm
��QH��0,^�-��4���;v�'�W�th�V\�a�F;k��#�4�^��������p	��,��Y��H��Z<L�&5��o;���������$]�	<Y"���!Isk�
�X!��T�������~d�^��aL)��2�$��6jo�-]3M���2��&=�$+�lT-$M�Q��"Mi���lR-Z��.�J���j_�+I���s�H:�����d�LC����R=M�������Q�^����Yk��<��\�l�7��4�`�Q!)�����-(�r��,�W-��J��}$��q�`�!�E�K��k%�d���U�U�  ����1�M0&���+�U��tWi@���sh�D���	&��q)f��{z�IO������,K�#��+$M��+D�=�4��<��-�IE��sZ�&G(���#�4��h���*���+%V�4�Fn���.%�'v�G�����~�����fItH.0�9��i�jF	F�dn������I48�p��n�X;>�x�����w��v[�	����
H��,�����*��h.6Vr�Q���]�7����6�*;8]a�FG�S@�dL4i\�)Z
j��%�[�`��J�4�����/{������n�<,���E��GS:|�)z�&Ir@��Z8�&>��d���&*�e�z��:~���F%z������>�G�$��d���hZ�D��a�F'fI�h4�J��D4��]
����B6��vh4:���j��U������m��+�JV�Uy�����[���~��xtW�GV��������RiQR��i����
m�0���w�W���}�a�I����w=(����M���F�&G($��I%Y*���9�kn�V,�d��OF%w��*�U��Uz���6�[�&���&$�uUz�i��h���9�4�	����48����H��B�4��
����U�&G(�!a��J��W���Y0m����5*��o%�Hw���Y��H��������	&��V�&�����f���	��=�,�N�d%iiT�5O���Fky�R�:��X�&5�m���#�
��YI���( +"m����d�����[V����
�I�IE����i�zW��bB�S�0+"�q�j8�,����&byQ�=X���4�F��^'6��-6���n��II�CDK��6K�I!0�#�.��6K��bm��($in
9b�t%�����o�����G���{&kR��F�d�.��,�K3��c�3-�1�$�64�J�T�����"�VD���
#Z;��M���E-���0\QI�J��dM�L$�$in��
�U��tWi@�W�j����a8�$�6�"��(�4k�
*%����T�*����4�'��
�Pi4K��N#�f0�&d��h�"�vi�����D��i�t�=����~=���OH��8�g%��TO�eN���fC�zO�bp��y�Y"���	,�4��g���Z����D-UI�H�,i�n��6$�5h�^�d��h��d�����O�c0XQIZ<��nh�x���m5L6��b���F�x�y4z�����*oBF�i�0i�Q)��Jp�Y��*�8�~�I���Z]I�J�w���q7��`K@ZL����qv��vp�K�6e:��bI
�$]�p_AZ[Am=8�V�e4��Z�-k�����~h��dLz������-mL��$�A}�i��������'��U�O%I�
Z6K��fm@�=����d�c�lR��%��*���!�$�Rv�Z���G ZbT�J�����J��h�����N�k"���7��kw9�I��UL0izOQE��z�3�ZKw���6g���t:��u�d�4�
4���6��
\%( ���-�B6)���3;!�d,�_I�Ad�)If�$��H:m,�$� �Yy�m�
�.������F}w�V�Z��x�`��R���!��&	���";��M:���'S%i�^%���:�<��U'(��T�I�3��"lr���mW�l7��{�tO4��gI��	��Y%I'lZv���
'K��`���������9��:O,I#�U����D��LN����3�r���T��(_X��6Q��Rt���-H����p;�U2lr�$^5�$]��S�)��\��t�j�F�B��
�|&���(q�&m���_>9�i�:�����p���2[�Z��/~%�u��zy;��W�������=��9h�����S�y�#�����?v�������������g����8�����p��k}�S������3p�^��|�;�z�?l���@+t��/��A>�$t^]�F�xz;�|"�r���<�y{��y����wO������w�^^����?�!��y�A��+�\A��]�G2���t}����V��y�[�o�o���������_.��W����������O+���+���������
r��z�O����w�3��@��s�|y<������~���o�~zy���>���g�x�������/�������_]�|w��W��������s��Qp���S�U�f�4
.�������\3�����F�6�*������A�����\~b��NF(g�@%u���c������/Z��-��5�������
�5���II����NZT`����������o|���w/
i'O1�6�V��n�d��C3�*Iz���Y*iV��z�[���
Iz����������>k��Y������F:��U2�V;a��$%r���/M���u���(���nu��2��B��a�%����t�:X��b��������m���������Mj��\@�3�{H{k�NEI'|��V��F�]������S�i�������[)�`���rQu���4I�b�*�`f�5���������k��L't�.�
wK�Dp���M��ZF��p	���A/m@�^Z��t4��q%Y+���[�O�>u�!4���N������Q��k�t.z�Ra���hs�`�|�I�Xt���v�4k���L;L�����S8���t�f86�[�M{4s��Z���!�MG�$����) K%��$)�Be�=�*Iz����	����_�6*�fm��)�0��d�g��w`lz�Ys�v����&�v0`dO;9������@lZk4��4�FS�s���l�����>E+IzAG��x�~�jpp%YQ��������`� ~���~�_9�����}7����q�Y�^�����3���l���i��=���e����w�h*$-����a���\<�E��M���CMOH��&pUL@�8��4I�]�r�cOH��N*���:�u��u����F���b�`�N��u`�r�I�R�6����&�4��" -|n�X�m�4��Y@Z�N�h3� `��!o�3�d�=�&& I$R;gW�4��D%�u��+����vm�����t���WO��)f8Y���7���A�JM4i\\NNi��0�$�M`#sY��p����y���`[�&}�/`��rP%I��
v�d"4�YH���#(5�d�+g�Yp}��:�uz�:V����S�N�`V�8i����'���aM�h�x�I��wZ
��ipoT�u��N���H�ip�Q%�T������69B������1�Q$ I$b��U���\��dW���]�!�^�����4Ws�I�V�|�����M����:��	&����i,�X���!�f8���"hmW!����Qlu����l%YQiV�) +*���M%I�k��N�Jv��*��w�D{�q�Q�^�w��*���&��k�)���V�i���`�q`��&����eMH�J�[X��mD��xg%9a��P�&e1�%�c��%u����^��tZ���*I�\c�`R����`{Zs7��7�����4�+x�IReT�Qp��IZ![�"X�n�I7z��|-s=�J^n�w�v'�$-|&�W�I��`_���/�N��[�(w%I�k5h�$���7�9�&�2i�7t%{����#���?�6�Ti�~�?���[�U�<��{m��h�������	&J��������A#�~UZ����L�S�mF�"c�(`�#$��`E������1XN��j�9���,$+t�XV%�Lw�~�;`�qi�z�?#���mp'�dl����5�g��t�f�T��.wt���R��N���`#2�o���T�IU��pB�&GH{�V�$�<M�d:c��J�"�l6T�.�]��LC2�z�?���`�k�I�������K3M:�mN�7���H0�\@�L���Y�����I�`!C���.��L�E+I�i�^�%�:�6!$K�X�����i0�����2�K�^���M����L26����6����Z��a������4�wn��v2���(B�"���t%�T�8h�i�n3����VZI�Lc�I@V���u|*I�\C��W��t��G���3�z�d�B��0��|��G�Ui�I}L���'�t�g����,�6�L���F+�U���nV�E�K�o�u�J�$���%�l]IVDZ%�^��>%��wt�~t�^�5ay���xx�Y*��w��&��M��F�G���3��Cii�1����h0p"$-"�q?���R�����l�]@�H�A��t����dW����x�9�c���9'�q�I���!���4�i���c>��C�`<Z@�J���m��FT�v�x��r�yq����b���ai��NFh#2�������V�t�����>e�'w�I���^�1������	&[RiK��'�5.�������!�x��h�
�%�dZ
�^�J�d��[�&U1����M���?c�r%I�I�s��$��,�YI�L��U��t��.��L����g��xa�����L'�h��&f�� ����8`~��,�KW$Z��m�to!9a�62�d��Xx���v@���$�&V����|�U����RS%���=��L*��$��{��X9x�I���E��	v�I�X��0.=��g�C�8V�IB�&��M���L��!Y2
�t�����aq�����w(.�d��\iM���9`J%I�
x���F����4z�i%�W�h��qhU�f��Ew��<����N.ie�p��46	|w�e(|�p�*����;�E��|�J�)�8�	��E8[:���]uZ@�F�V�$)L��[H����1���`�����N�5*-.�r��\�4x,L1�$[�.'m���L�&hiM��&-p�L��'!Iw������m@�#�4i+�E�����lR����c�����K�$�&��	H���_+*��i��T�t2��0m�]���#s��{ a�:�v�CM����`��Do}QR�B�H�^�c��:Pc?�,�2��T�%�j�g��h���#���U�I]�`�@�h��`���,�w�ZZee��W��,�6�^�Jv��:����Q�^������-�O0�Sr�:)���L�&�����f�4��
x%Y2����V�7�L]6�M���n�D�6r��*�v�$�I��'��,�7	{5�$���@��$i^��Y�����Ju�:�K�^��a�N�e�	&��
R�L��i��z�����fL3�*�IP�-�a:������tyH`F!�����������d��E��T�d�����
Hz�J��($ivU|����.X����^�h�������)JG��=>���������4����R|��`��Z>*�2^����5^���+I!����l��Z�;,������tX����86h��Vt���!�$�iS� �~p!�u���@G����-}�w49(0�r�IRU|Z�.��4i\RVA��,&�e�h$���d����/� �^���+�����IX\�d'#��RPI�i�hym����`x��$���AT�5���g{��s������O0��;i�Y:mt�
TN4k���o#������*!i	h��~UZ���J�T��*��T�8(�;[�!o0�����E0�_@�H��M�$]�)�|%{��5��s�x���2L8a�R��7K[�i��e��p��&��S��]%i�c4vL�]�m�&B��K�i�K�CAc��f%Y�8���"8�=4.$�t���OjF����`��z�?����N0+h��5
���i���l4h}���hk�GN%Y�&`�8�B�o��/@����'�]��FC��2F�?Z�'��MBHZ�2r�&��/�H?�H������Sh��L�5���>���&�4.�*4<�,��`^f%i"��=�q)e�2��!i2�&���I ;Q�0dlQK�&G�(2��WI�L0�����4��$+*��)���������������Q;������{���I3Mz �h�����]������GwB%ZK�-�����zq�v��,�W�&]�����x�6��$�s-�����U�+I�P����R����y����k7�3Q)�v5a�Ny����L��8�h~�	&�Wp�>E;9��=�d{�k�	K��2d���M�\D[���-�w2B�
`R\%Y��f��,���t�d��E��Bv�m�w��]�������~L��Ze3�T<����F+���	eiw��,�
�����U���`�B!I���69�l���D���d�����NH�Ax0n% k�=^I���<��\H�s|�����J�G��$�o?�6���w��&j05k�Is����f��4�y�t����9&Z�W!YnV�
�+\=!�������_(r[t��8�YM������P��$yK@�V�gR�i*I:����*I�S�������
������m���B���&�7�;��htT)����&��6P�O(��xt��$k1��i�|7��Z
��fY/TC�s�c�y�a�h,Z7�.�|��t��& i�O��W�4�J;Ulr�$��K�6L������E{�?�P��H��k/[k����D���B�O4k��k�u�	&�����|!I'g��5"�~e�������4��IY�e���f;xV������>�
Ux�@��$�r��/�$k�\�bMk=��,3��S;V���m����	f����91������.���� ��t%ii
�cO�=�4����<����-}��D�n����z�`�������]��^*�'-$��g]zB��f
��'y<�<���ez�V~��Z��d::����e�Y�F'��+�:=���VHV\���;m9�w�D\�d��������o'#�-�m����t��	H�������$]�	�pX�s]�=p|.��s9����E���rLs�M�z�D��.�
�0uBi�n)ni��0�1�����.��<����l��"�L..�%������OqI��RI��*���W��.������Dz�u�������Nh>�$_s��h�`�L��%�"�ha���"0���,�{��k�k�����S0�T�8dl�SI�L{���g%?�`����$]�Y�+���2�e���G�����l�`��	�E��O	mr2��qQ���)�eHD��B�T��$�F"�d��x��#��d=u`�O�}~'�ty8_��s797IT�t�X�N@�J���W��NpS�D�u�nS���^�c�
N�T*L�i_�?�L3M����`��	e�����B�Tt�DS�mD��
,��E�-x�
��(F�Z������Pd�]E�$���' K�X@�����;�Lk%�Jw��*
������p)�LS������4�`L(/
`���N�5��@!Y*
:d�)�6Tz��3�BP�&E1��k�NF��n�7��+��:�D��1XZH��2��$dW���]�!�^��7Y���'�dlZ��#��1��qq������T���B�T��*�w��h�@M[����H���[mHh��<�$�L\��!�%k*I�\�\Cr�"
���@�=���-	S*N���`����U���4K�RHh�`�Y2�_%Y2�S<�L�W�)��{���Mmv��]��i7��RI�L�k]�d���o�$]������<��+�u�}|�]�s��=������f��O4��rF�K�'������[H���S]Z�[c��b�  �u��u����Y^����Eb��uK��v2B	���D��>j%I�k���R�}��{��Tz�e6V�X�X��6�$c3�T���M���+���b%���oB�T��*mx*���1�X�i�6i`�\z2v"�a����69B�
�&�J�N����, I$�n��$��
��P�}�t��8�J�9*�~�@�rB�l�`�J{c�>*'�us�w0{��,�v`��J�Y�7P����i�!��t���+%��iF��II�-��0`Y�J�D:�e�*�O��1�.��.��7$^�u�&��kZK�7���i��lKlT�%��_I�H������m���p���P?W�*��(��Blr��p���X*m
��d����+I�\�CK��U���#~s���o��m��]�%�:
������t�6�m�3��es������t�|��J��}��O���V�. M��g������"�C�/�����8B$�
��	c��PIR�"k0<^IR���h�m`������N�92m�nJ��u	M�aR�"��Bs�&�t0����
`�d�IS�I���J���!����[�N�5_@�Ng8>���O�!a�)69B���+I:ML�4��@��sE�A��$�d`�`YB����B�����m���P���P`��	f�yETSf�4�Jao���p�������	5��w`5���PLC$]
j��J6��nP��&`�#�	��,���H����d	u��U��v��t��B�T�z���:d���U'�$����"�n�Ic�L�N3M��A;�$���������Z
�($� Z���M���wa��4�u�*I:nH���m�]2�$��[�n�E�G�i��|�)���������~�Is������
���)D6�i�PG�$+����3��=^OI�5Z5������������K��r8t��������I:��^�$pBs�+�Z���Xq��%��c���
uP-7�,�6�:����&M�A��f�I7�R�^�J�t�>�"[�i5�{�*I���y�IYC����"�nW�X�
5�P@�L����$I���`E!Y�J����N����]�b��k0�c�I����!)���i��e��Cv��<�,����T�4��r��Pgt�n!Yq�Aa/7�lR�'cC$`�#$5��dG�����@K�s�������5&����=>���5$�kwDT���
����sPL|�iV� Zo��&��Z�Y�G��2��������|�W�?Xo�ww�����������t����~���r����������}=���0-����}�������|�����_�_��_�/��L@_������P��G?�.����?�����������g�>RJ���_)c��>	�WW��Q� ~y"�r��$?��=�����z{x�������w�^^����?�!��y�A����+�����H��[���/��|����/��w�~�M��u?�����xu������_��pq�����i��x�z�Q}��p\�#��A�^]�����z��x�����<|�/�gz��rw�������O/��<������/���>������3}�������.��[�~�������)���%��J��E\G����r�^���3�������v	�h���%C�����lC�n�W����d��"X�I�]Nh�NE�<��e�J�F ������=��'}�9+��� �����y�:��d�j�L2��T�J��F'�t�i����B�'�5yYff��[�����(���j��Vqc�$	���8�]@�F�)���2���
�pPI�)���r<�-z����x������u�z�"���9���X4Zk�I���Z�l<8�8�p�!��`ww��	���x[�����d���+�-�Rv2B!�;�*�Z���G@��f���fi�i<^�-��BI����8�����c_�	�>�f.X<E�^��u-??�$S�A+oXqi�Y��A���*�p��D4Ri�L�N����P�b`��<!I�����m
����^lr�\Dk�U���`�=IB���PI����>���|�a�vF{u�~��J����k�V�z���&k���L�j�t�
|�4����������f���R;�Rk�"r�Jm�xN%IO�����rmV{�6����qi����������d"��*������u������6@3`�tR�_�B�}�J�oT���B�����<�,�6>jz�L�nn�B����'�%�`�v9���fBp�:m��Q���4����M�bD7q���8w2B.��L+I:M��E������$���3��$k^'���7������{������t^=>�lF�)�0iN	J�lAm�i��$g�S�{�D���M�d�48�Y������U$�cU�&e�X2X�zX��a'#����'BH�A����$���`X����Y/�:V"��u��X����i��{����N��N[e�E�q�Y:-U4t��M4+ Ct|(�4�`"����������C�!I�p�d��6�*`�#��F�+I��n��$�xp/��������<�{�~�
/����p�zY�na�[���G��g�5.V��D��f����g�'���"�����H���nn�w�W��������$�n{gHR����$��6���*��W�j�g�^7,��W��w�2m��2�`����)e0L9��������h'��L�
��^8��J�.��i�Q%�T�8�A�!o�]��d�4��h.���d���T��t��G���^�w�6��r���L�S�Z��g�6�E��jvL�gx�������Y�7����d����(qqu����(2��%���Y�|5�$+#%����=�5��s�x��&J�:��	f)f�&[���L�$��y����L:��<d�n@3�/�m�F+���k��jZ��N�#�;����/�����d��E��T�����/ �w����$]�)�����e���=���Gi��Q�^��`�?s�Q#L26o\���1����l�Kh���%�Ez���x&��I�=�#�h^H�L���8��U��c x��q����$ K�#8�U���S	L��d���{N�X�����)�O�	f%K�O4�x�Iw�N&)�2Y��(��Z@Z��XuG�a�`����D	0_��M�\8v��
�RI������%J���i�[�b��V����u������K!�&J�`�mT������M��r6!���L��
��' �v�����v�|�J�b���*d�6���������{5+�J�;4	H����V�t�f
6��dO��2��w��%V����
�&�&�I9:��L�������x�I7�����4xVh���!��;E%i�c�Bb%�T�<��`U�J���`�B@Z���PIV�8��[*����������7�+/����`V�D��g���i�\������`��#x����`UP����6�J�|M��I����.xGW�4�Fp���,�E�+�d��m����.��x�8xl�n�g�3hi�	f���!� �L��%z�5<a����-�5�Y�$�p&�o��s���$���b/Y��L�A����deb���$����}+I�\c@w�
�O���H�3
�4�������L���O��;i�I���V�q��&M�Vy�B�L��-��- -<+��Lo!2��?(�`q�����NF��,�[I���5fIs���8T���s�J�L��|w��v�fy�)�������D�����4-xbW
'���,����Q�K4�����1!y��^��A�Eu������ZI��:pD@��
�f%Y����i%���f�{N�X��]
L�m�'��T���|���L�N'��
nL����S�xE+��c�(l�v�j���Ew�4�J6isq_�lr��A�zT��*�j�4�F����$��:�JS�]�J���=t��2�z�<g�'�	f�����fpQ~�I�����7��������d���k��]�����n%��8X0W�&GH{+�$+Q\������_IV����p�����lw����{��#8�LR*��	��4i�1t#��e-j�y��\M�`L���`��J�l|��d�.4�r8_���%�1�d�.Z����+pJ%I���`[�J�2p�V�������m����jpqy�IsJ*���d�h�5fs�Ja�2����`2HY2�v��C��C����f�A��%�!o�����I��,�	��!$K�u#B��q������iD�$N0��w�+�����&��V)0j�I�����qY��:���z����4���+�������������T�d��8v�����V*��]���Br��)�]��J?�J��&����x�i�Y*���F���G�4.^Z����&���Q����,�M�g��Lo!#�Y��,�|��M�PQdpA%Y�c��P@�L;�O%I��I�i!wi�}�^������{�����L�S�vJ���Ls&���H#Kz��������>U�Y��$^�0���Mjb�r��H�A������`��ZI�"�w����5%0�U�������x��[�E�N��U�G�u�Gm�ad�Y�g�u	\����&�{���a������i����cp�@^\vz'F0$"`�#$!a���=:���x]��S~+�
k�q���y����y��d�����k�#L���4*��e��&=���y�FBf�t�\�)+��BgO�z\�X1+����j��`�L�6G(�����G��y^?;��r�B�V��W��V�����l�5���gRj�J����F�z�fyZy�f4�0�MZ��c@��M4in1����.���kB�ZH�Rc�F�=+5X���4����Tj0�J�6G(�C�|L\�$NYpK���y%��TEI>l X�������=J5�#�����J��=��6>��2�,�6E�=X�g�I���I��?g�5�X��%I�C��p�J���S�[�-Q����!�=I�6G(��J�����i��\y��;�<+�L���
�'�+uW����R���O'���`�R{�J`E��&�����L���f�4,UIV��������
��b�z4z=�Ma�sy���e�<�WU@V�|?������J�f�:�J�W�CX����g���m7*��7��NE0�j�IBm��:�%�&���)e&�L0����trp�`�u�?�����4����M�bD{�����v2BRL��4�:�(��,�@C��-���������+kV�Y�]�O2�z��&E��$�	&�)�����i���M�$0�p�Y3M_1*I��^���P��Y;�E�a�nR�%�K)���(��^I�N[
nC/ k�;f�*I�\���!w����G����:�zA���h��zE���N�3M���)��5:��i�h��Z%Y2
f���	�OI���$G!Y����5>l����c��6\�s`%9V��$��_I��/(��W�s]��s���w��K��mmv
�o4��l����Z4��1����zx�O0�x�XI����QVV�6�.|>����E+@	�����%@�h$�n7�	HR�����?{����d��C�IJ���3j`,�m
Lc��t����J�%R������vIr��������a�U+X���+#"���J��8����;���iw>�7���@��#�,�����R�k����.�����
�2�K�8�eL����NW
:�6+E��@'w�7i(��AB�&W�,d�J�#���V�3P�������Z�� u��1}oL���1����A_yJ����J��wm�h�=f�
5$����V2���:R-6}?g��i���H5�������Hv2h���^�wd��L.u��A
F��D������eP�f1�n�`HO)�woP�I��k1�!�&��`%���\jco���U}�!�Wh-���1���2�+8Y��w��N �3R��v�A��U��cK��or��Lv�v��A����U<s�`�
Fj~����w����P��A}�s��WaJ�	�P/`-N��$�L����l�ii+�������eN�Z���jA�Qa��9��KF~��bA{����wd�nG/�6Df��9
���z��<\$��
���o���w�����S�G�O/`%N	5�b�++Z��]	
���J_Pth@��jfd���w��Nh��T:��A��M������wGV(z��LG*}M6�_�,��{t���T�l���,`�y���2�~���k�}�G��[jP���)�^x�`-��4�
-8��r,BM9�.��e��wg��I]A���w��u�H�H:J�#�I�������:
<F�_OGj]J�CF�2gK������2��C}��r�AO����[&5ZJ�E���/��5�����n�{��kE+=��k�
k�`-k��#>�E�����w��l���Z��-#f�7i0Vt`z�V�����/u��=��"tj]Gz��:RG�}���H-W�F�>����������L��
��>�0p�5��i��~�d�F4�zE+=]<xQ��j�4X���Jt�/lwzx�7�sb���T��t�7i(4��'3��J����:R�k�l�L@�u�	%u��������w�������kJ�����[jJ���!�NNZ�Z�t.-V�����.9��eY�Z����u��)
�����S�
�j�Sd!�M�:R���`�7i*�63�����
%o�}��JA�
�T2%�G{{0R���T�#���n��~.�}1��1���"�����+X��.%�@'}E+}�t1��)��AH�;s�+1w8&��E`��]��mF~�Fb1����or���8��Z�
O����`s��T���ep�2��6�}����t�r[��>�0�����X�{N1�V���.)����+X��E����v������m��`;��T�x�����&�92d��}3z�~GV��X0���JoK��dL�
���H%v��&;�N���B�����4w���M7��M�\�Z�t����^H��JO�m�;0P���l�l��1!��0�2��<Z��� �y�3w���X��ex��Y��L����T2������k�H��/Y�C�������7e�b�z�^O�x��\��N���R%���v@+�K����X{���[Z�GH��1:��h���%�c4���<��a3����
ZqZ�+N��
%o"��H%{��*�%�:;R�]��	y'�����}���1��g
Fz����)�f��Z����X�Z�[�M��gJWt�`���xa�H��q�31�����F����q0m�JH�<p����j�H���b�X�#oj��g��J���_}�_����V��y�\�����G+9�-�����Z_��h"!���0�N[�����&�����[�0�����
�
F�;R����*�����J�j}��������{w���>�/��@�[�Z�E.�j+vT�Z�Rs���-`-U����Q+h�U-;�vX�`�iG�����7>���XssS��I|d��v^GjEw�����w�t�H-{7�g;�N�I�W���1�}����[jL�9|���[�`%NI�:����JOW����^�Z_�����D3`|��j��-���;�~*d$��CF�����X�Nv�[md�:P�#����^c��:���c�V���4#oj��'�'�[�_P^�������%�K.���h�Pa$�/X5{,��H5{3�xw��{��qFC-��&��b��O~�+DV,��H��	m�^�z���Fg����+Ze��;>�����N�o���L?�p�Rc�����.Z��r+qJ�6��v�Y�J�
=:��C����6hc�VhCV5�6�������u�4�����Xh��o3S���AC:�u\��c���08��#�6k��W��w���������7�����R��W��!M�z`�����\��������t�eH�i��Y�[��ph���T3��n��M��\��)��J�40�H%S:������AZ�H���x�u��)}oJK�9w�>�����4'xt������.;�����r���]6�j}=���0�eJ�oU;woGL:�1�������V�;��~�+�s�0#�#����df��������]Ks:����7�%����v_{��Y�]�V���\����J{�Tbp����+}M���F$����N�K���$����&
��v�Im�4�����Tj�����6����;��7�a����������=���b��`%��9���J�J���]
h6���:���3#���v��w��KX;R��E���p~����	`�^~�+��iX�UG*)���M�1G�l���:J�����J���V2��I}S&�l���,>��	�����u9U�������-�$�c�`_�\I���.�eR��lQ�go�Im
H�T3��j�m��$5~�+D�)h�2R�����j�!a���Z��+8�`�*�3�3�e�����7�M��=����=8ask����\�:���*��Zv�<���.���H���K�fP�x��5����I
>�mx��]1��v�C���
e8F��b�	�d��9�Cc�����V=x���J'
�����m�=
Z%�7jR�>��m�7�?~��V�f��3������>�`m_�:{����<w��������_���������|�����wn�*+�����J�\������?�~E���o��W^��_���������M�����jjx�K���/��{�.��?�g���^\^�������G��>������G��.^����l��?�d����{��������7�.o>]�|���t�����������������������S�������<~�n�����-������r����������_�<����|}����{���<��������B��9{���������g�vov�W������q�x���d���w��3���/?��8{�����O�������yh,���x����OrP���T1��j�����]�����$5����[�^��g�������/��|������z{�*JeK$�Z�D�`V�+%��Z��Z�&���T�����qRj�6�b�R��F��a��S��R���(��=��-��-~��a���
`���Z�M�"����U�{�71P��l*�@�
C?�0�2L��nd�*-U�`};�T�`q)�f�y��,����Ww{�����z�X�N����,M�3�O`�	��,������Jw����:�Tp
�Q&���3��Zk���[{nd���H����B5�����x3_,hP-�����=��:VA��J*�>6T�����U���,y`�F��VO���.Z��5��|*�
�!��J{�'p�p#{V��o�`���J*4�5%�����6-�?���q�6�����]��J*�i�M-�1$���6mp3p+�Vk�4p�	����u���-	�#��]
�G2p+�V�i�����ZJ$0P��J��d�@�[\0����l\��C���TR�~6����:JDF���q=�-��[��Z�p.��WGj)Q��pF*m��z1Pi�F�o3��q��x�6a��l���J���7����fv
p+W�E�oh
0#��,p�H���^zD�K�h�kv3=��n�����ZJT�
��Q"y�9c���
m��7c*��4��H-%���#�6n��J�7�1w��l\��r:y���TR"Y�9c���E���Xu~�V�?�G��[�q������ZJ�j�#u�����@�g�Lx��!�V6��C�=�s��ZJ�
�H3Ri�F�{Y�:�R�a������
��d�����QG�(Q*8���Zf6�e��[��Z���2�
��Z���w���WB=DF�� ���tH�Z�T�2�H�]S3�4��J+a=�o��J�s}����ua�<�k:Rk�4���#����s��J[�����2o����$���I��T�55�#���u�C�n���/�.0p+[W+�.4��3R��	��gG*m��h:1R-�>�����51"��Fj)��������	��Im�V�����l��X��9(����u���-
��b����[������*�tb���zJ�f7#��M�`
RG����������U�7
���H%%�u`GBFjm����g�����)���l^-s�d��QGj)Q<X0�H�����������Z���l^�2��4���R"�-�:Rk�V�	�H�@3�y����V����LGj)�3v��J�&Y�Z�#�6o+|:r+�W�v�U����u;Z/�:R�y���������+G��n��U27�M�h���R���J!�Vbe�V�����������7������D��;Ri��
F�:Rk�V4���[��Z����>vGj)���H���w�V��y4�����������F�y��D�,�b����h�wG*)xG��[��ZE�!��zGj)��x]Gjm������+`��#��y�H��H�l`������j�<��Z���}/�������XP���JJ$�2�H5�4�:Rm��%-���� �)�����D�h���Z���=S��y=jx3r+�W��a�CeY/T�x)��Z�5�;Rk�F�g�LJ�Z3�\AK�#��(�P�H�P�G6F�m^�y��m^���v��H%%��^u����h�=#�6o�(�r+�W��������DEC�������H�P����[��j�����;RI����H�����Fjm�o��������vz��H%�E'w�������Z^�G;3r+�W�%��`w���R���H��������C����@Z��g�����TR��n^Fjm�\��KH�����'����dd%�AG�#����<�H�}������y��������o�v��h��y%����e����-*;Rk�F4T���l^%!�b1��H��[����T����7l��y���#��y�Z��Q�H���P��H���,�w����`�RGne�*�)9���e����������l���Z^�h���(�E�Wk��;RK	��.��Q���
6`�������[��ZM�k��TR������^�_�y��1Ri�&��^e��������[v���X��T�������Z�\���9�y?~�%��x��w�.�=�����v~g_�}��W��������������;z����=:�x�����Z�����wn�*+�����J�\������?�~���o��W^��_����z�����RM�����35��Uz}����n�������S/.��_�������o��]�]�x��������������f�����g�������O����?��S�?��7�?}*����?}*��o��T��O��T�gn������<~�n�����-+����tu����������_�<��������������O\^��������9s�r������������.��?��{��@����g����7������_~�{q���u�>���v�?k��]�'����W�����H��O���x����?��.������������W���j������������GT��|Kzw�����Xs���������o;��������k�tkV����B��!����>���h%e|	�$�&��V��������}@+�	�V����=x�Q{q�����gdA�x���7?�����>���3��U6%��=�N��E2�7=����Y��q��2m)���"$������:c��5%Zk���	(}:���/���������4m%UD��Jp5���;��������J��\�C�h��V�5X�
���`�0�<�VL�-��z�v���}����8g����������"$���]"o
�_���]Hbw�N*��i��P�o
lZ����#Y�!�+�f��J�D�R�	;;h%e�>�������D~1��h	��s�W�!����RM`o�.4
�-_�)M_��<������I(}2��9o�1��&�N]d$�zvw$��_it�{0%q�]k�@�d6�:��VS&����ZK�F�{��h%eB&{���]�]�I�K��d�����BF��y�C��p}6:��
(�>]O*��	-�\�|v���"$��sJr�������������F�Z�d���
�A�����H���i$�E��rp�y@+)��kd1c��-��y���&����+����"$��sJW[����%��
~�,$���+���� ���(���_O���&����A�"�.��r-��)����Z�"�����^�Z�|�_��=ZK���`��Z���$�5�s�\I�:���"$��sJ��1Ov@���,B|=���>���m[�hK�EH��g���S��4���m%��H�N88|����q��VB����N�dks`f���L�6���@�-��u�K��6���F��_�*��M������3��$�zRi�L��7��,3�BN�����os�9�Mh��������k5+�&��G��=ZK�lC���Z|�=�j�h-��dvG>�%��MR�3$a}�-Xp��"$���J'�kn�E&r
����$��I�m�E������ _��>�T����K)���g�����e���-����X�����9E��I�m�����N�J*`[�Z������b���G��w!{Vk���1�5iB��.B�=��5%Z���jh��EH��g�v����-9��a������p��5_`���Z1��y(;hI�h���sd���+ZI�Rh�k�Y�"��&9���L�`+)j�B"I"�Z�Fs�L��KS�XF$(2�����3\�`�EH��'��(�����-��k�e�:1G4�r��K�����s�h�x������1������21;���iE�p�\[���V����
v<f!�����Z����Nj�diW��!!�L���.|>��x���yu!��]�db
-Z�c������[D�Z�m$��$0����2��YJh���V�G��"�����V�������h���f��H�Gg�j
��t!���vl��7�Z��ZZ�DH{r�]4��D��+�y�2"�=���$Zf�7R	���B[���t\] ���M�Y�Z��1���h5��b��6���c-�>>�E8{����U�K%�&]HB���Zs�bm�L��#��`����&����s��:��f!�l����v�@#[�Y�*��$�����)fx��}{��2�Fn0'�u�Z
KN	m�}@��C��f4���EH{��0�!������HH&�=_�X[��\�:�$E�����X���vV�J�	i���7���	�M�B[!m-j� �'�C������&���Z>H)9{��hE�����T}E���dE���u%$�%�"$B��%y���c���?�� ���? ��:�f*}��Z�������Z{K���ly9t��"��V��H���\h-{�#�������,����[�Zgkm�>����"�=[�
�aI:��B )������l-�Z2EQ���DH{��4�V]<���=���i�V�Z����%�SO����V*rp����W�Or��5��e����CC=�j�Y	mNy@���\�[i��9�Z|Fc�]H��g+
�	���ji��iO�um��9�P�q����D����R�Q�2��9��
�h��V8[�]]�jW4�����#��F�|d��R�q��~dE��f%����-����y��B�g����]H��{:���&�k���}��g�j�93�'R9��HH�rv�D�KK�:��h��6������<��������4n�
�7+Z���m�U��������Y����j�J)&9Z�/\��YYH��'��z�rc�cF7"�$���5�'�pQ��%S���Htdv�}4.���H�m���
H���K���R��W���+Z�'��a�h��=Z/T�]%�PMG���d�����<��+Z��B"�#�Z;y�s>E����������|h��*��iw!��,=������)���:[������#�.h-ej����z+�,Z^q@+)CO�WfE���l�^5�Xk=7�I{!��*Nk*�L<�����������Z���w�<�����H��I�k�&�����p�a�������Ke�
���G��k�I��Vx��3\��G�%���8*��!��r���L�b�L��i�VqF�����GZ��DH{����ig��q���B"1�i��q���|4-��l%wD�f#�7�Z��Gk)c�VA�|�h�����f4{tEk ��Px���E8{��0`&q.�'_��/���-6��[�1{,$���;����:�74���p�dg����-��:hx�
ik%F����z+Z��<yw����u�)�M��A���N$�X�"�=9�����������GXH$
������d������������>�}$����
j��DH{��'��)��Z�@B���(�9V����h-K;�D;M?���V&� ����Y�j+C�TD��-B�s�nt�J����V�u!�z�I��[w �)�l��{��	�L.���@����"X���d8{~�}%#���"x�t���e����h��d[�`+Z���/h���VZ�����h{��������h��"�=W��k4�Llk}.L�Z�D8{�������~��m�B2��daah&FK�
h��"$B��k�����Z::��m�������v��=ZI�2��p9���7�@��J����7�EG{�iO���bbM\%����.#2�fV��Mm�yr
J},�W�����q�,���x��#,$R9�5�I�T�/.�w�s
�h%�y�ijh���D�>2��V�Zx��A�	Y+Zie��#����G�p�\��}r\����|$!���:7R�<u��}�8��H	��Z7�2�p�T�1�'�N�������i���VH[�Q��}�d���l[��T�Z/�%����V
��@�sg.��&K�j3�l�F�3����$H{V�n~��j������z2�����aJ�{����N���3�TG[$4t�z�J����P6W��E�+Z+���H������V&[��/����q�vwF�!W�e���ES�Odf;B����j]<�##��@1�B#k����
����||����=���xz�SK%G����V:i�e��\*�\EK��V<�W�`eV��q�Jph������w-	�__�"�=_���o�4�������iOj����-���s8��i��pFck
%�3Av+|@Z�Ac�;$N*'�kt�e�v����i�`cH�����)��]�W��2��7y��_�Z��R	�0��E8{��0�V+��mm�1!��BNj���I��b��S��D��k���<�5D��Z��#�K]��o�YN��hg�
g���,<!-?\�j7�)y���h-eR��M�_�z�8����g���l������NV��_�5�5��	-�U�K��9����=�9�����,$B�_�u	�GC�
vZ��B��ck�(���'H������R�f������e�s'�
��-B���y</���j���!����5����`���Qs2�u0��ZO�F�t!������t�W_��.���s��@-�=Z+�]|$/��V�Z�&��P�~Ek}M����5��"�=;���h�b�!��zE����Y�[515��2���p'�(qyz2�um��	�b�|?<�3���H{v�dc�m�{��h5P�
i�UF[��=\���x��X�udE+)��s-��W�������^C�h��/u�c�]*`F�����W�Y�9��+�!���hLj��1�Y��{�Ez���5��9������.����`)��`2����k.��*W���h3�W+ZM��P@��{�i��+d��y�lJ����i�kMGo�8�N���|�B%�Y�yhQvv����u�;�u3���x�]��B�Z��m���81����)��,��`EkE$w�3�h-���J6Y�"�=Y�V��-����4:��HP��������r�UT����������7N�6z}��D8{v�e0��XCt!��dYh+�5A-���,���h��v"�074I{�V�m�������B�����;{AKpv�-�L�G���fe!	�����Cv��l�
�.BI��k�L�1�\�u�����~I{V���������a��m���x������������/
��+Z����>�^�Z�[Il�u@���d�[�&��Z�m�f�F��D�#�Z�jj����+��#!�D��I�y|�����V�)�]H$�ov��u�r����aL��FH{�J�����B�#{���(_�5�'W��	#=`��Z�l�a]�����!��b���<�z��o����q��R6���I���^(�=��5�K��_���.$��7�uk&9k32E��"��V���B#��MZ�|C'��h5�?Wl�/h5�y����CZ��g�e������p��,�s�����`���j!�	��[���'�Z7R�F[S���t!��h�l
�;��L�G:@�"���I[R&g�
�G��������z!��3X�p@��\��fi�h�����<�0�\�u
XZ���Og�&��:}�^�
���i�j�L�)�q���)	������Zk,�us9�QW��it�H[-1:U�(���=Z+�����hb���
�D�ez������bkDC�+Z��g�!����n^���#,$���s���C�!�6��B"���Z�db���<�������&�@�Er����Yh+���T���,`S�Z�'}������fi�T+ZZ����������-B�������9�a���DH{v`a0���s����U���dv�k��?�Sl�hi�"$B��Z��[��:�-B[!m��9U6nW��=YK����h5�&3>����h�XMN���EH{���[�G\i%���"�*�����d�<�5`%S����+��)>��d�k^�DH{^�@Opl���t�����	���	
���j�T6pP����x�~�X�����������>�-B��5z�����=:��F���i�kM�����:t�e!���B>db�������tH�i���]jpu���VH[�'��|��m��z	���'lt���p���GV�i�y�H�{�i��o�a$�EX�DH{����z����	��p2��To��S�x)+-DI{� �CKg-�l����6C�Z��|���JMZ/���!��j�VR&'�����v��I�l�Z���l�[0��bm)�sYH$<2�uO'��DF�E����i�j��!7/��m-.2�=�A�"��#��/=Xh3Z���F������R�/��~���N���
��_O1Z�Y�"�=Y�Gnl*-7�?����]H�rZko�(<�9��j�ez\�Lj�6s����M�=p���9��gkO{7�Pr���i�@7��C�jE>�PS����2�9����V���8 w��h��b2G�[�"�=[�WM
�o����eb!���S�Z�F�?��������������GKQ��/����En�P��r�i���\�����{�Z|�NPA��Z������J��j��lE���l�^5�m����i�B2����Bn!G"���@K{!���H��Kn>e�-��)��=[I�l������m���D��������.�����#!x;������I�:_P}E���lAd�e�L4��,$a�=������`�!��^Z(�;w�k]bN��H�Z��H�����Uc�6"c;�wj����[��Z4
m�A�\�z�/�����Q��r�g�h�kH����!;Z��'��Z���mp��"$��������>����B"�=�����=7	�!�Y�]H��g�!k_k2/b��s���B�J<�K���[�Z+]#p
�UoE+�w�K�s@kg���e�h���v��l��8k�:x��iO�C�`r�.gJF/���iO�u��d�����	T��i���F��Q������3�w����lmC�F�Z�m����Sz@+Y��N�*j[�j��3z���+Z�����r�������u��YH����������YX��F,$R9�u��D�J\�G���DH{v�h��b!��x�%�/�HC�[D�Jl�)�y4�vE+)c�Md`�t@k���-��������#������[�"�=Y�{�2���9�����%�(i�i�3��J�����t!����Zg�c�e�����R��LH{��3g�
��iF�]h+��6��f�li����~6`?���!�	��x@+� �H&��z�Z��'k�r66�,��20��������N
b�\����u!K{����Bl����s2w���Z;Kgw}�����m����l�a����Z��-�������H��x�v@�E�Rh5b�w@K�v�������7�X� I�����8��R��p�v-B�=����g�+��<4\k� �I�9�W��zn��F���������n��e�'��������N�\�J�$O�VEkW�V��68���!��r���o�:Z+~�B"�=[ZH�'�����m'�B"��&�&��d
=�9e�!����ZGo�o���]S���V,���EW.��|��q{@+)�u�����`���~[0��G���Z��3~@���\�[�DO�Q�!�r��\D�j�xBdL�l�X
��/B"�=�u.��DL�5X�_gI����oBm��G��E�v�A����O~��/������:���������R�zu�vw���x�����/��������������O���_���|������>~�������|�����W��i�^/�����|u��A������RM���|������F�/��|�������{v�|������>��x������������]��]}��������w����{���?z�#�?,��G?~$��G?~,��G?}$��G?},��G?$��G?�������<~�n�����-krx}���y�z��v����'vo��{��t���=�m���\�=�.������������}}�l�fwq}%����u�}�n�O�����\��N~F������g�__�����l���F��{R��z�������N�z�O�7���>���~��M������Rso����?]�^����9���#*\\��
��~�����s���������o;��������k�tkV����B���Urg9l�Km`��p-ub�>���?�u��\��4��u}�*�tL�Z����XRn< 4_9����EJ���U�\=��u�3�h��]J���S�����N<�T�?�R�}:���b������`��p��={�\�8U�\K���q��\+���s�`����Ns������\���z�$W�)�c�|�c7��!K����g�I�}�Dh9���K���.%�h;�9'�db<:��m�J��"%��sj�b������-����]j+�J�j����;�WR�q��M�+��d{��������Q'���oh�����uqdLq3{WZk��(��K���S��l��\�[=�v)�is�wr�p^sj�[m�p����I�[$K�/�r��������V�m1U�$�J�$�j�`;�Z��%��9���Z�\��'���i�.��s�]z���Mm~�I��dGWz�li����wt!	��S��m��+)�����Ip������A��>��F��Ej#�����K!U�:���	<�&�&��VR��.9����B"�m�Z$}k��"�4���m���doM)\2���7�9(�L$��)'�J�lZ�U���E��H��dr�T<���90K�m��VJ*%����ZkK�`����2�E��W�+ZKZ���B�_�5u�!�
�}!r�>x�+�������:�yn�S	�"��_��t3�z�~94p@�"#A��:�l�m\2�h+v����S��=�\�z�+ZI��r���q@k�W���$�������V�-��s�\H������Q@��[O*����2r��+�I���������.U�j��d�L*]����d#4��]h#|�T?F�C
`#�ZI�vFCh%ez~g��J�pVaD�D�_�5ra���7W�u`��EH��'�&w;���r<��$$��'�JgG�f�+�%z���"$���JG���'��e/B�k%��k�wFM����k�6�"W�E���)r�VR�jF��-��n����<��L>Z�=��v!	���:��9-�����]H$�oVkn��H��|E�,�P�1��+&��"�:�|�m�����8��'���+Z)K�����6+X�$[�dg�\�G+%��H�
����E�z�=����%�K>��HH$|=�5��+d�A���D"�K��	� ���u`�.$��~R�Mu�*�Zbl�AL�[�����|��^���:���K��j�=X)9�s�z����R�-���|+X��g����=!�[����$���N*���-D�\��zU]H�������
��l���Y���? ���>�x���E^�����B�J����Bv�gz@+����`b�
�Z�2��G����iZ��h	�,B�s�l���'�k����YF&
2Y8��o�f��v�s�A�������\�5�+��X�QP�Z����s�������B[!k��hh�%�P}+���9����`-v����+XI��W����`��,$������ ,$��sJ�d���d���N�B"L=Y �M"�N����>/S�y:�t0�5���,������J�"�V�i�!mR���R0\ph����*�Y��U���Tq<��d����\�����-�������,$2{Ri�����E�����.$B�sJ�l\����k�B�,#�2�3� )����M�b���E$�7F�X���X%2j���bW�V�#f�����J�nh!�
!����l�2�k��b�S��Q����U��D���6^%OfEf�L*�L+\T�K�1�����T�L��!z&�&XG�\,�&i�"�V�\��&��T+X��p��:�+X���G��S��`�#�#x��`���C���G2��'���0�dO<�T:�����3�14�d��D*'�.<�U�l����D���N*M��%nD%.�s���V�Z�|���q�=X���)��z�{����lB{&��Z��h3�,B���h��ly*a�����i!�9��7����9��'���;�]i�B|)��l[��XH���tRi:�\�%�L��M�.��V�V,��i
�M+XG�����g�
Vb�Bf2ZX�����d&_�"D=9o>��m�����m,!�9��7}\z���6�B"D=�t�&7N���u!����4�S[K�	�]h+D�V����P�qV�k��h�ck���B'��������_�D�g��L%_<�40c��D�L*��I6���
�Pw!	��]�`���U�k#����p:�t���7�C�x�w�
Q+�&��O�����ti*���������
4��`5�:��Z�"D=Wv�&[���c����D�'�����iG�v��B"D=�tJ������R(���t�EJ������*�\�	�4w�����lQ��:�p�
�|��Z^���@/c+�����m+X�������0�b/����;(M�)�Ll�P*�����������v&UK�\����B;����J'g��@��k�x0����M�k
d��MX�c��F�U��������4�;pM����z���E8zr���6U�S��<���	yLV�erN����y�}d,���N>���C9��;�;��������ZS�9�a�
5<H��'_�WT+X)���z4�cV
��^<�f,/`�K�T���=V�����b5��e~-�%pD.���M*�Z�92���L���'W�+�[&�+<�\i����I��!��9��l�W��oK+U!������=VG�@�u�U:�x�/���v���o��<0Z��Exzr��	�rs�D��HH&�1�s%���{W�g@�c�q(I��[�&{(�}k��EJ��'�v���0�<X=�B��KkU������+���b��+x��VZ"���w~�+�L��Z4"���dMb�d���Ji6�1���K�4����S!�+)6���1�K�]�`�4�����)��^��A1x�lC'6l���j��)��&%}�+EB��;v�[�:�p2��,�p%�N����,B�sEh�Yv_���k�Q���yQ�����7�n�K^������=�U:���X��X0��v)���d�b45���H<m&v�E�`�pMt�+Y���'OL#>����U�/�� ��V
`y.x�d�k�����:=|�\��m��]J�fRo:�*9�d���Ro�.R"�=�w	��\��I�Zphr)0�����|s)��C�
Xh+��T�H�U�	]�Z�����h�M��dn��yjX������GO�|�p�����4K_�O-�
���L�������H��m*��K�����M~�)���P_�O�B"�=�G���q���3�+ =\��B�J|��%���]�h%��J�8�h��dq[gmo$W�u�T����\�p	�������J�}���]H������������J��a���I�s��d�z_Kc�]H��'�N�%�s�g��P����Km&Z�T�X\���^�J�K��{@+"�qw"0��kY����6j��p���p�������3�����D��I�S����+�	���$]H��'�9��8�Z�R�&������U��r��=\�6B��C4��+t2[��mVR%���Z��p9���X5��L'�F,W�]ON_�&�`q�
�3��D�zR�dM!������I2'�Z'S�-���<�z�hF��?`��9����+�e���?{��Z���;���v�?��������;{�R6K(!T0#rk}I������-����l1e42��D:��j]x���-�s�P�.R�r'�<d����z!������$�V���$����m���j6�/������5���x�
�::B�`F��d��J�j��E�z� ��^Z�����YH����������ZH�� O�k������.r�<o�i/��iR��MN�=j�6��!,��V*}�0�G���`�pL��rh8�����!��t{�V\(���P�-���#�����m����,$���Jgc�c=YH���dRig<�����@���:��'��6q]=�5��CMn;#���=�/<sL���������y�+XI�V<X�@�����Ihv��"$=Y��^�u��)1��B���I��.��9js��OB!�9��I���h���a�g>�t�o��JG�mS@�ogdLP*t$����m�ZI��Y��3t@+��gr��;+X+`��poV�Y�N�+�;��ln`��.$�}:�u��+�/������d�c0��yHO�`��.$B�sJgZ	9GNLI��B[�k%��iL����
�R����[�=XG�F<ZWT��*>p� X|��Ehzr�!�����m=���2&Og�Nd����Sp���G$$r �L*mM-5�,����p��J���14��Fp��l&IO���;���bk��e��_�J�
x�@��x-���s@������b��<1^�Mf���X�e�I�9	<�P[m��LI?�T�c���BA��E>��������L�{05�m&��U\a��u��`�t��]���=X+	�f4W�C����y\X�r@K�t���k�%Z��r�'���H����)�YD����MO�l
������`Oq+�Ws:�t���SK{��i����B[�i�2Ei�+:P��Vb�L�<���V:5Br6�-
�`��2�#��
!��"4��sd6��?����Hr���1�bM.��u�����Jg�!g����O���R�T�y��
Ht.V����7o&B���ek.�������5����,���1�`��0� ��Q�X���H��%��>���#��IO�\M"r&S�}r4�FB"
�&�&����L��b�J���r����[��n�V�����u��U���X%Ex��9�{�;7�N`\�JGg5epAV�;�U�Ucm�.y�m��9JB"�>�u&�?��|�_yf�����d�Z�V����:����[ns��-4���V�Y�8���=�V �EF��X�!��}�P�/&pK70�`a��!��x�'N�w-��#!�k�I�#��R���iQ&��dRg���%G�s���$%2fvs�72��|a��|2�J��hq����N�Z�zaq2��8����H���c+X���yZ�{�E�������������1�3�h��Eo�Q�G;y��D��dv��I��m�E<��D8zN�`2���:,<�����"�VK����&�
V����[J��~{�I�OG�-�X����Td��P�\aY���5��\W8A��d�:����d�-w��`��B"3'�v��d.�|6f;�����<��9�bC��x|�;�0x�(Z����d)0�m�U�K%�����\	�[�@�����������7Ch������va1�EH����o&��J�����ds:[2)���5���m��(3O+���}�]K���v�g�"6[+����*)R�"V������q�UZ��}h6�,B���c���Z!��`���=��i�sr�[jM%����l(7��-9(\�b���2	����'������9�Nd�E��5(14��@����X�^sVI�h�t���D�����,���un�c���xa�:7�y�����I6]N��������|���v!��RM�NCp��L����f���67^#^,���q��Y��0����u��
e$�
���ZE�F�`����J�|��)+��i����:os�����~"f��I�����L����EfB�����Gai�Ne�Xq2Q��Y���!ss>�La����Ra�����>V��*|����;{��*�[�U��Q�d�O$��9O�6����$���B"��&����#��{��Q&��dRiK4����m(�Y�~�V�pt��_��;RXj#���A���'�V����_�Za:��F����\:8l����\Q�5l������s����R"�<Y2hr�����<Q�v�G�yv�}���������i����s#M
�{�B��*�
5k�z:�0
X�J��]��c�`�����V[Tk=j�W�9�V�"e�rp��nGM#����v�S�m W�����L���B�Y�J��	�[$�.�]ho|q����.�rV"#n���T��p���@��U�G��^>doK�;~,`j��bK<��$��� ��R��{Z�RhK���H�F5���Y�O�����RC=����J�h�e����JYh+��T/���E3j��X�pi�
�Q�[d6��������x\�"D=W��K�%2����a��,S&�tRgg%�.p+�K��f(O�)C
��\R-������K����E����c���N��L�Y�
*���cm`~��_��R�t�=Xiel��,t����W��'j�����\:���M���b#��v)�zz�b+5�P�M$���'�-�B�V{7|rf������cOO\���\r�m{BR��l�2�X��0$������Z��+EA��MF���E��NR\�"�=W9S�&:Z�l9	�}��e���#+ s�>L�]H��'k8}�&�V�-���H�a��������'���Y�`kZk�������f���b��-��;�5�38��\G�|q�S>��H����vQa�i���#��$2��o����v)�N�z'��-��s.`�|z�H������US
��t�����EH��g�%C����Z�#cMnck���{�h�=ZI�K��A��\����f�]������'2JPo����b�d��C��<��ow!�6��Z��\xl����K��L�d���eR���Z������y:�u����oPcv��49d]j+��u�Ex�h�Z+5#6��&�Jq��\C���`�{�<���|�KPw�,B��p�E#>9�����Z�j�R���#��v)���;c�������,#B��:'ZaSB���x�hy���R�x$?o��]�]����v�G�B+'h������ ���2���M{�����D
dk[:��`l��i|O'�N���R�3��5�YH������Y�j�9�����.$R#3�5��r=R���d �p��k�e��,����d�{�jA�,h��v*�W���=X�<+.'k�n�{�gON�s������\�������dU#)�5�����	t��i�i]��>�����,d!���I�s�&�
^���Y]h�����O~��/������~����>��������?���wg�<~�������_��/��~}������?��;���~��[�w�����_��_������^^y�;���K2/��&E55�/�s�
}�����/��{�.��?�g���^\^�������G��>?��=�|�������U����������?��/,�������?.o���������7Z��iy������o����������?g:t~}}~������^<y`���E����?���}�[_�zu����7�=__:{v��~7���<{�`]��7g/w����{���������J�S���7o�6�������\��~{F������g�__�}���y�s�Y�?��=)�n�z�n�vG�?��������~��������~�i��y����v/����9=�_|��pq��������//g���/��F>�f~���]�������L�k����TR"0�#�V�bNiG*)
o��/���������g$C����?`�����t:�;W[b�<���E����u<.����7RB������'{�����k����K��8���j��Q�4(�aJ�px�\2`���R\;� XE@)�Q0��A�;NG���aF���FU+���N0��H�,c�\��TR"�85��
�����)��q���T���R�:�b0
�O)��C*&��$�F�{v\E�������V������D3��hG*)��0AG*�>S���"��z��i��r���R<:��5`������!+���������7`�����j�GC��T3�A��#u�H��������x��:R�G�I������k�G�T����R<:�bt��m
)��#*&g
�`�FxT������zl���(��Zp!qg����?^tX�%�����2f��+:R�GUDCN.�p2�"���%������Fn�G�r��k\;R�(�����<JO=�m�pw���v]�H)�#��4�&�G=��#*�!�b�H)Q��	�#!�xtH�f�Y��U�.��'HaU���GW8H{d`�����Jt����)��m0>���#���*���;R�GGT�]�(R����Acb�FxT����0#��y�
������;R�(�p}��<������(L8Z�5@��:�Lj�q���H�6��H)*���aP�z����p��[���T
08c1B�H%`R+���t���1����k+1Yue�}5�8��c�c3_(��C4����Q��z��A���cs0u����%D���A�2�b:R�JG�a�!o�:R�J�t$ )F�C[v����|:�cAK(;r+d�T�D	^w��V�!7!�<|��^�Y\
hF~G���HQ$x���bd:�#�,E��I����������=�W2�1�Y��2��1���H��}e��c��4>|r��3l�f9�t�����_G�������v^g����H��<��AW2���[�a3��^�8��#��c���)��K�;�0\�7B�����bd:X�����,�T:�#�*��bd:�#Q$X���bd:�cA��:r+d�W�^_w��pb�V�&S$�'O4Q$�0|�}�L+����#�Q��R�z��!�"1��#��tTG�L������R�Sq���jd
�'�H�(��8���q�*���#��*_M]hF���P��5h�v+18z%�����f�u��eE���2���D��4�k�'-���E��"���������#�\��`A:���]�<�����~<s�3d:TR����${>����RGn�L���P7�j��h���_������0|I=���G)F��UE���$��!-�a�
v��������,�s�tT�
��2r+d�W��>t���+1������y�ZS	�	4	v����[)E��:��iGJ����|G��
��-��-�#�:��L����]��jJ4�������2
��DG���`�x�u���h�jW+v�?��M������lGn�LGG��X�=����/�J0R/f
z�Q/����,/�]�?X]`:H��O�tt&�:2R�L�����H12��B������[D�z6x���z�)|�������H=2��L�R��`ux���bd:���/����t2�#�rp�Tn,���N�*�I��a8p���FYM2E�5��{MM�H5FGS
�`�?X]��F5I2��B[�Y��{C:��	fWw��Vi�y;�N�t���at��;��H%�{:��=��2C�)F��3���)F�#:��ZT)F�C�EpS�(���tL����;r+d�W�{�JT����TZ����t��]�Z7��P�`m���Y�#��^gv���bB���#���'�V���H����'%<��H%"�h7��T#R0G�#��t��	.}�#�!
��H1"��*h3��#���'0��#�B�Z�����e�)�@��R�I�4��+�k��Ry~�CUEp�[?���3d:X���i�$��
�bh�3R�L�*�`�>��o�j�)-�gt����}�xo�[�c#v)�%7���T���n_G�����p�1?��3d:XU$FT#d:8�	,������Q�`������`��T#S�<yX	8M&	���F�a�~P�����tL����H)2�Q2~�L�t����<�[D�Z���I0�&=F��;R��"���#��4��1#��tp�R��4�����`�EG���PUQB�t���L�gFn�L�R��z���T#S0��#�,Sp�`G*)��&�!�?��j���!�)F�C:V4��#��tp�8��#��tHG8�$�+�Ed�u��)��|l���j�)��)7j��H�=9��t����������P���
m���bT:TS��>L�X�*�1�i>�
�jU=9���#�����T#R�*�zVi@�	:R�J���*���#��tPG0r��bT:X��Z�I�*�z�'�6�Ed���r�e�����nx�����LG�����|�L�*��� Q1R�L���Y�)F�CE	��:R�LGgSI�S�Ed���r&S�����A��#�x��j
�7
N�jr7�CUE
�
u���Z})F��3����,���tL�b,�e�r���a�9.����H5�S���0:L�bT:X�&�t���N��b���!��D��'�*��1�������V��E�d;RG	�3
O#U���i���r���`U����bT:8�
��v���V�#@�����x�Ak9�L�0���l��'��y
5��98@�`���#���'����H5���yC:F�Z{���7B��UY`����
�����y�N-�4W45�#�8,�}K�f�R���L��D+����*�W:�cphryGJQ���1�}K�`��1������[!S�1K`|G���p_�V�`AG�En *NQ��;R�J����f1P�H�*�
�a��bD:8���BE�j���VG��91�H%sp�;�6�5z4g�#��t��)c��bT:8�
zw��UU��]���z:�c*h�yGn�L���Tt NG�������]{����~#�D"�����f(9t*WG���`M��k�F��|�L�<�}.R��C:�7�I��{n������h;R�2E;07����L+z��bd:8�	������2���6Y���!��j�!��	��:r+d�W�N��H�4X	�Y���	��Z3��;B��O�`��#�A�c���dHGN���T��<�Q�p�Ed�u�������f�x�L��F���#����vG���P5Q5N�/b��c:�L�$�U%4�#��t��	��w�V�T��,h��(���#�h��������#�hthB�YF[C~�@g<��g;R�@���N�I������T0n����^���3����SlW1P��*��W=%\���l��:'p�:R�J���=�@1"� ��#�A#\�t�R���]����j����b��{�#�"��
��bD:R��������bD:8�	�$��?XE6��H1"����QGn�H��-�|3&���4-�h�\G��G#���H)*M�s�n����Q-����������^�b���c:��gFn�L�r��b��TR����?��KZ���bd:X��;v���g@���!o�2��*����i��v�u����gG�Y�`CG���^�����`��)�#��t��	�:R�L������bd:8J���-"S�tN��H5%�q\�G��Q��
����!���I����bd:�#8p�#��tp�j�%�V��c:
Z���L��1.��h����yX���w�ON��b	�i��ni"���Q��h/����`��X�2������[!S�����&l���J<V��_�Q)����9�?��������W�aaG�Q�P��W(F���Nh+�z,�v��T���������J�xi�������z�R�J����`b�H1*��mM8^:��3T:�cF�t;R�LG�O�d�����Ed��s�;R�L�q\���G���D�M�H12�(jhwG���XM:p�#��tH��^Ut��U=4��#�B�ZUO�����;R��*���#�,S�u�C�2�{���1���#��t�����:R�LG+��<�|�Q�-"S�\���km�GcOG�����aG��)h�w���NP���G+�>C��:b1��#������:R�L+�@�#�B�zs�,�c��#Sx6��JE���jJ4��J�[��<�:v���������l��L�t$�����"�QAz������%�G)�#�%S�I�`NCG�����#��th�RAI�#��tH�
�i�$������Dt�������#7B�Y��)���<\�L�a�����	�e�N��v�`�o����P�`�����_��~�I�Jl��q���W>���/l�������>}���������8�g�������������_�xG�����G��w�>y`,/|�^�s�W�7x��[�w�����_��_�b����^^y�;����/���j������~�������e_����]��v�������>��G����}~v�{t���������'�����W��o�ay�����������������~8���#
<=���#
<=���N�(prD��c
�Q����G8�`����/�������'���������?s���}�[_�zu����7�=__:{v��v'1��_.��?X�������������}}�l�fwq}%���x�D�>��p����o.~�2��������������>y�������+��.�������G�vow��s����x����O������/5��?������%��>'v�b�hD������v��^}y^���~y*�����o�����7Pr
���Z]0w���X@g+3��bx�x�x�"F�"`�su>#mdM��$�8���T��ou��6X[��������6C�Z�yp��w�������FJe<����x0�P�k���{4�m#{t*�+Bu7���1PZ���od)��`[$��H��r%����(�om#{t*�T��tv���`2��L���MO�4��o��~��&�m�^b���o�{�����R���
���#0�K���]�#wc���G";�}�w�n���.���ap����K��C��m��T��Cs������o�\���}4Uxt�)c+��]������N�E_��E�����t�������s#�����>�����GJ�}7�����]��[������Ht�\f�}T�.�#���o����S���&�*��k(}M7��,�:(����M���}�������7�]s?n.69��"ER�����>o�ko���ci�Z����&��@�\n+
��]P|��wm�\N�����Xm��m�������_��a�d	�Io����[g���(-��%�H�I~��ZRl�����Y ��P'D^\�����Y�Q��e������c���Fy�[��+��3y���������!)+���h��f���$�w��Zn\�I=
P�����B�m1��I=
P����3�u�����=;�Q�<�����,-����e!<������O���%�,�`9
�����,S�[R��x#]�[DR{��n���m?�������fW�k������+���I�Y�U���{������+@���k�-�m���S<4v�����z�2�����f�z��6v}�I�$�l�(���g�b��2yd9_�r�'�MO[<u��o;O[<�^����bv������C%��K���9}��FI�
PXN����ZN�&�g{d�Yy���gKj����������]m�����^N��{��n���O�����vg>������j=��L��x���,v�pUf=|��o�������j^.'�$o���e�Z,K�K��/�?�E/|5�"
�ro�6Owdt�����������������z����7���t�������9�������_>�������OG��pu\WG��p}\�G��ps�7�P���j���r��N�_��E�^����.?^+���� 7o��xi:+���6�_6���xkV��E�������,���e����g�|���H����6�����<����v�pW>Q��f������!�*G��������?���z�]��,F�|!��re^����:SXo��^y9[���o����:�����wm��O�ab�[��
+~�{����3V�}�~��v���.@���\��n��I�����F��a+)���K) i
:�`�$���x�Y�x���,I�T����5��R����� ����
2�gIOK�4rH�B��I��C����L!�B���#�e��Y��n����
/@��c� ��
�X	����6*A����L*=w�H�l�a� i
Y��:�Y�����
�5��)��:��\���$�K-@G8KzZ��(aX)4������6@1��%@����4:�Y���j���,q8MQ���M��dqLn�#�U��K27aH3��{CcLjd��
����(MY�R��:�i���Yy�Z�I�t���= K:HA� �1�Ik�4K���u�~�E�e�j	��[�
�fiA��Y�E����-"-mm������[��@a�D��&@�{���A��{�Z����	-Y������~X!��aiQc�V���K���{�E��Y��N@�^����k�z��w���.��Y�A��gv����h����Y�h�U�i���c0�X��)�]��
ii��JXSH��&a�7:�f�Y{��f�d����jt��i��F�u��a�(�^@�,� %/t�����o �������H�$�);��X���h\U��������n�)��p�B}Z��iQ�6vF�e���QU��3,-�~-@��$�Y���+�e�M
.hZp!��c����R�6b�O�������6��&�@��Y��b�,m����3�K$+���i��4A�i�[&`�i���������S`[_��=hf������?�BZ����61��&M�K��jr������x-�� �?A�}��z�R��4@i#Py�#�e��*O ������6�	Z0@i���]!-�B�����u�c�S�U�H"�N�WW�����,�U��Y�xoP�8�����=`������c�/�A��in58����<�,�+T�vV4hiY����<�,-(���&g0\����4��iW�eX�E*� -���y�g��iC�O�5x��]!-����=H��X�q��%@�O�
%@WHK�����ifuO����=�@�j�����"��E��U��-h���2��$���2h�~����W������7��s��"-Z��+v��!--W%� k
��5��O�`��iS�^]�BZVD,C[pg�v@f�G�2�iMu$z�R�0�K����V!��q�N:�=@+�RZ����,�={�BZVD,C�dd��m��Y�n:F��bV�W2�[�+��U���������#�)RD��R������DR���0%@c�gb@����������Q�s�\��>�)x��Ya\�X�4������F����,@�^uX��t���	�P*6@WHK���Y^U��9��3�&yE`|C��)���uUo������5b	�F,3I�"��r;y�������m�*P� -���L�RnC��f���x(mP�J~]U��"��j�4�5@�{3F��1K�
����~Bg��d
�ZDZZ���g���:�
��:���S��6$@RD,���
iiU�` F��)d�2���	����	���z&���i�-�a��a� @�F
�jg���{��mY3VWV��VU�����`����heIkRP3Z�Y��>D���P�T��%Fh%nE��E��E�2�7#1&��d,�^+���}Vn�����Yo�	���J���
�j���M�
��=�e�$� P�M0K�mCG��(��X�D/�����N{"��!�?�o��
���g���6/>�4�M/ow��O�~�����d`�����`�S��2����~3�/.W�r9$�x[��,��bYJ���K_DtQ�>^�:D�E�m�&�m�n��0���?�Y�v�)W�_����a;���ps;�M�����5�n�?����/~.O}��'>��N��O���99���]����@W'�:=�����Ot}r��������@7'����_�V��.���v2����Cr�~0~���]~�V,7��A~�9�/Mg��a�d�Y����Gz������!~��w�Y~�����QG�������6���������������v�pW>Y�W��,W�M���f�����mnf?7og����~����O��������E���G�2���������W^����q�������v�-�]����|4�a9��k��7��bW�Y�	U,!��F�mG��{���@5������`x�4<H`W��X����)gpL�be}�YB�5����j>����]��9�0�����$_�*E�ZX�R�U'�s9��U�Uj��u�D�v���d��������E��xD5��-�xR(�J2�W�LoR�Ew=������5����kdx�����������h��-bIJ���j ���������_,=b�5����o�I��zY���}�D���m��73�� ��W��[�"kr{�C�hE�)��b�z��I��+������g�V>E���b�(A�%�wZD�l�tTG���b+�����KP������"�w�
�J�aj��7��
:K�fLXO��}�h��bl�E�B]��|��XMM;���k��#h��	�j�Z�nt9-��Z���Zt�b����o���S��5���(��(�_�M��(AO�V������|���U���-'%�f���&hnz�m��n&�[n��V
i�zI�/��;��S�7��v��������.��N����od-J�iy%�jF	<�n������������g
WD������7Qh��,��;#����A�������@�n����D�#8�C}�|�p����)��bK����"���n9����j{��FYd�W~�Q��X;Y�6y�=���f	J�O�I=A��������'h��^I���Z/��'Ot>��lwyQ�6��L|t�Na.N��2�����7�����of���4`]���PK*��qQ���PK!��L�l9�..mimetypePK!��L�d�g�RTmeta.xmlPK!��Lt���e^_-settings.xmlPK!��L��h���manifest.rdfPK!��L
Configurations2/statusbar/PK!��LC
Configurations2/toolpanel/PK!��L{
Configurations2/menubar/PK!��L�
Configurations2/accelerator/PK!��L�
Configurations2/progressbar/PK!��L%Configurations2/popupmenu/PK!��L]Configurations2/images/Bitmaps/PK!��L�Configurations2/floater/PK!��L�Configurations2/toolbar/PK!��L���Pa�Object 6/content.xmlPK!��L�-�#K�Object 6/meta.xmlPK!��L�P����Object 6/styles.xmlPK!��L�Nl~
�Object 7/content.xmlPK!��L�-�#K�)Object 7/meta.xmlPK!��L�P���4+Object 7/styles.xmlPK!��L4�����L-Object 3/content.xmlPK!��L�-�#Kx=Object 3/meta.xmlPK!��L�P����>Object 3/styles.xmlPK!��LM�\�3���@Object 2/content.xmlPK!��L�-�#KgXObject 2/meta.xmlPK!��L�P����YObject 2/styles.xmlPK!��L����3030�[Thumbnails/thumbnail.pngPK!��L5@����J�Object 1/content.xmlPK!��L�-�#KP�Object 1/meta.xmlPK!��L�P�����Object 1/styles.xmlPK!��L�wC:�+
��styles.xmlPK!��L8Q1���<�Object 4/content.xmlPK!��L�-�#K�Object 4/meta.xmlPK!��L�P���c�Object 4/styles.xmlPK!��L���Q^�{�Object 5/content.xmlPK!��L�-�#K��Object 5/meta.xmlPK!��L�P���:�Object 5/styles.xmlPK!��LO�����R�META-INF/manifest.xmlPK!��L*��qQ����content.xmlPK&&�	��
#55Sean Chittenden
seanc@joyent.com
In reply to: Tomas Vondra (#54)
Re: WAL prefetch

Without prefetching, it's ~70GB of WAL. With prefetching, it's only about
30GB. Considering the 1-hour test generates about 90GB of WAL, this means the
replay speed grew from 20GB/h to almost 60GB/h. That's rather measurable
improvement ;-)

Thank you everyone for this reasonably in-depth thread on prefaulting.

Because this was a sprawling thread and I haven't been keeping up with this
discussion until now, let me snag a bunch of points and address them here in one
shot. I've attempted to answer a bunch of questions that appear to have come up
during this thread, as well as provide some clarity where there were unanswered
questions. Apologies in advance for the length.

There are a few points that I want to highlight regarding prefaulting, and I
also want to call out when prefaulting is and isn't useful. But first, let me
introduce three terms that will help characterize this problem:

1. Hot read-modify-write - a PG page that is modified while the page is still
contained within shared_buffers.
2. Warm read-modify-write ("RMW") - a PG page that's in the filesystem cache but
not present in shared_buffers.
3. Cold RMW - a PG page is not in either PG's shared_buffers or the OS'es
filesystem cache.

Prefaulting is only useful in addressing the third situation, the cold
read-modify-write. For fast disks, or systems that have their entire dataset
held in RAM, or whose disk systems can perform a RMW fast enough for the
velocity of incoming writes, there is no benefit of prefaulting (this is why
there is a high and low-watermark in pg_prefaulter). In these situations
prefaulting would potentially be extra constant overhead, especially for DBs
where their workload is ~100% Hot/Warm RMW. Primaries are almost always under
the Hot RMW workload (cold restarts being the exception).

The warm RMW scenario could be solved by prefaulting into shared_buffers, but I
doubt there would be a significant performance benefit because the expense of
PostgreSQL faulting from shared_buffers to the OS cache is relatively small
compared to a disk read. I do think there is something to be gained in the Warm
RMW case, but compared to Cold RMW, this optimization is noise and best left for
a future iteration.

The real importance of prefaulting becomes apparent in the following two
situations:

1. Priming the OS's filesystem cache, notably after an OS restart. This is of
value to all PostgreSQL scenarios, regardless of whether or not it's a
primary or follower. Reducing database startup/recovery times is very
helpful, especially when recovering from an outage or after having performed
planned maintenance. Little in PostgreSQL administration is more infuriating
than watching PostgreSQL recover and seeing the CPU 100% idle and the disk IO
system nearly completely idle (especially during an outage or when recovering
from an outage).
2. When the following two environmental factors are true:
a. the volume of writes to discrete pages is high
b. the interval between subsequent writes to a single page is long enough
that a page is evicted from both shared_buffers and the filesystem cache

Write-heavy workloads tend to see this problem, especially if you're
attempting to provide consistency in your application and do not read from
the followers (thereby priming their OS/shared_buffer cache). If the
workload is continuous, the follower may never be able overcome the write
volume and the database never catches up.

The pg_prefaulter was borne out of the last workload, namely a write-heavy, 24/7
constant load with a large dataset.

What pg_prefaulter does is read in the blocks referenced from the WAL stream
(i.e. PG heap pages) and then load the referenced pages into the OS filesystem
cache (via threaded calls to pread(2)). The WAL apply process has a cache-hit
because the filesystem cache has been primed with the heap page before the apply
process attempted to perform its read-modify-write of the heap.

It is important to highlight that this is a problem because there is only one
synchronous pread(2) call in flight at a time from the apply/recover/startup
process, which effectively acts as the speed limit for PostgreSQL. The physics
of many workloads are such that followers are unable to keep up and are thus
destined to always fall behind (we've all seen this at some point, likely via
apply lag from a VACUUM or pg_repack). The primary can schedule concurrent IO
from multiple client all making independent SELECTS. Contrast that to a replica
who has zero knowledge of the IOs that the primary recently dispatched, and all
IO looks like random read and likely a cache miss. In effect, the pg_prefaulter
raises the speed limit of the WAL apply/recovery process by priming the
filesystem cache by snooping in on the WAL stream.

PostgreSQL's WAL apply and recovery process is only capable of scheduling a
single synchronous pread(2) syscall. As a result, even if you have an RAID10
and a capable IO scheduler in the OS that is able to read form both halves of
each mirror, you're only going to perform ~150-225 pread(2) calls per second.
Despite the entire disk system being able to deliver something closer to
2400-3600 IOPS (~10ms random-read == ~150-225 IOPS * 16x disks), you'll only
observe ~6% utilization of the random read IO capabilities of a server. When
you realize the size of the unapplied WAL entries represents a backlog of queued
or unscheduled IOs, the phrase "suboptimal" doesn't begin to do reality justice.

One or more of the following activities can demonstrate the problem:

* Natural random-write workloads at high velocity
* VACUUM activity
* pg_repack
* slow IO subsystems on followers
* synchronous apply

Regarding the environment where pg_prefaulter was written, the server hardware
was reasonably beefy servers (256GB RAM, 16x 10K SAS disks) and this database
cluster was already in a scale-out configuration. Doubling the number of
database servers would only spread the load out by 2x, but we'd still only be
utilizing ~6% of the IO across the fleet. We needed ~100% IO utilization when
followers were falling behind. In practice we are seeing orders of magnitude
improvement in apply lag.

Other points worth mentioning:

* the checkpoint_interval was set to anywhere between 15s and 300s, it didn't
matter - we did discover a new form of lag, however, checkpoint lag. Pages
were being evicted from cache faster than checkpoints were able to execute,
leading to unbounded checkpoints and WAL growth (i.e. writes were fast enough
that the checkpointer was suffering from Cold RMW). iirc, pg_prefaulter reads
in both WAL pages and WAL files that are about to be used in checkpoints (it's
been a while since I wrote this code).

* The pg_prefaulter saw the best performance when we increased the number of IO
workers to be roughly equal to the available IO commands the OS could schedule
and dispatch (i.e. 16x disks * 150 IOPS == ~2K).

* pg_prefaulter is very aggressive about not performing work twice or reading
the same page multiple times. pg_prefaulter uses a heap page cache to prevent
redundant IOs for the same PG heap page. pg_prefaulter also dedupes IO
requests in case the same page was referenced twice in short succession due to
data locality in the WAL stream. The workload was already under cache
pressure. Artificially promoting a page from the ARC MRU to MFU would result
in potentially useful records in the MFU being evicted from cache.

* During the design phase, I looked into using bgworkers but given the number of
in-flight pread(2) calls required to fully utilize the IO subsystem, I opted
for something threaded (I was also confined to using Solaris which doesn't
support posix_fadvise(2), so I couldn't sequentially dispatch async
posix_fadvise(2) calls and hope for the best).

* In my testing I was successfully using pgbench(1) to simulate the workload.
Increased the checkpoint_interval and segments to a very high number was
sufficient. I could see the improvement for cold-start even with SSDs, but
I'm not sure how big of an impact this would be for NVMe.

* My slides are posted and have graphs of the before and after using the
pg_prefaulter, but I'm happy to provide additional details or answer more Q's.

* It would be interesting to see if posix_fadvise(2) is actually harming
performance. For example, spinning off a throw-away implementation that uses
aio or a pthread worker pool + pread(2). I do remember seeing some mailing
list blurbs from Mozilla where they were attempting to use posix_fadvise(2)
and were seeing a slow down in performance on Linux (I believe this has since
been fixed, but it wouldn't surprise me if there were still unintended
consequences from this syscall).

* I have a port of pg_prefaulter that supports PostgreSQL >= 9 ~complete, but
not pushed. I'll see if I can get to that this week. For "reasons" this
isn't a high priority for me at the moment, but I'm happy to help out and see
this move forward.

* Tomas, feel free to contact me offline to discuss why the pg_prefault isn't
working for you. I have it running on Linux, FreeBSD, illumos, and macOS.

* In the graph from Tomas (nice work, btw), it's clear that the bandwidth is the
same. The way that we verified this earlier was to run ~10-15min traces and
capture the file and offset of every read of PostgreSQL and pg_prefaulter. We
saw pg_prefaulter IOs be ~100% cache miss. For PostgreSQL, we could observe
that ~99% of its IO was cache hit. We also verified that pg_prefaulter wasn't
doing any IO that wasn't eventually performed by PostgreSQL by comparing the
IOs performed against each heap segment.

* Drop a VACUUM FULL FREEZE into any pgbench testing (or a pg_repack) and it's
trivial to see the effects, even on SSD. Similarly, performing a fast
shutdown of a replica and amassing a large backlog of unrecieved, unapplied
WAL pages is pretty demonstrative.

* "In this case I see that without prefetching, the replay process uses about
20% of a CPU. With prefetching increases this to ~60%, which is nice." With
the pg_prefaulter, the IO should hit 100% utilization. Like I mentioned
above, Tomas, I'd like to make sure you get this working so you can compare
and improve as necessary. :~] I never got CPU utilization to 100%, but I did
get disk IO utilization to 100%, and that to me was the definition of success.
CPU utilization of the apply process could become 100% utilized with fast
enough disks but in production I didn't have anything that wasn't spinning
rust.

* It looks like we're still trying to figure out the nature of this problem and
the cost of various approaches. From a rapid prototyping perspective, feel
free to suggest changes to the Go pg_prefaulter and toss the various
experiments behind a feature flag.

* "> But it is implemented in GO and using pg_waldump.
Yeah, that's not too good if we want it in core."
I fail to see the problem with a side-car in Go. *checks calendar* :~]

* In pg_prefaulter all IOs are converted into full-page reads.

* pg_prefaulter will not activate if the number of unapplied WAL pages is less
than the size of 1 WAL segment (i.e. 16MB). This could be tuned further, but
this low-water mark seems to work well.

* pg_prefaulter won't read-ahead more than 100x WAL segments into the future. I
made the unverified assumption that PostgreSQL could not process more than
1.6GB of WAL (~1/2 of the memory bandwidth available for a single process) in
less than the rotational latency of a random IO (i.e. ~10ms), and that
pg_prefaulter could in theory stay ahead of PG. PostgreSQL normally overtakes
pg_prefaulter's ability to fault in random pages due to disk IO limitations
(PostgreSQL's cache hit rate is ~99.9%, not 100% for this very reason). In
practice this has worked out, but I'm sure there's room for improvement with
regards to setting the high-watermark and reducing this value. #yoloconstants

* I contemplated not reading in FPW but this would have been detrimental on ZFS
because ZFS is a copy-on-write filesystem (vs block filesystem). For ZFS, we
are using a 16K record size, compressed down to ~8K. We have to read the
entire record in before we can modify half of the page. I suspect eliding
prefaulting FPWs will always be a performance loss for nearly all hardware.

* If there is sufficient interest in these experiences, contact me offline (or
via PostgreSQL Slack) and I can setup a call to answer questions in a
higher-bandwidth setting such as Zoom or Google Hangouts.

I'm sorry for being late to the reply party, I've been watching posts in this
thread accumulate for a while and haven't had time to respond until now.
Cheers. -sc

--
Sean Chittenden

#56Tomas Vondra
tomas.vondra@2ndquadrant.com
In reply to: Sean Chittenden (#55)
Re: WAL prefetch

On 07/09/2018 02:26 AM, Sean Chittenden wrote:

... snip ...

The real importance of prefaulting becomes apparent in the following two
situations:

1. Priming the OS's filesystem cache, notably after an OS restart. This is of
value to all PostgreSQL scenarios, regardless of whether or not it's a
primary or follower. Reducing database startup/recovery times is very
helpful, especially when recovering from an outage or after having performed
planned maintenance. Little in PostgreSQL administration is more infuriating
than watching PostgreSQL recover and seeing the CPU 100% idle and the disk IO
system nearly completely idle (especially during an outage or when recovering
from an outage).
2. When the following two environmental factors are true:
a. the volume of writes to discrete pages is high
b. the interval between subsequent writes to a single page is long enough
that a page is evicted from both shared_buffers and the filesystem cache

Write-heavy workloads tend to see this problem, especially if you're
attempting to provide consistency in your application and do not read from
the followers (thereby priming their OS/shared_buffer cache). If the
workload is continuous, the follower may never be able overcome the write
volume and the database never catches up.

The pg_prefaulter was borne out of the last workload, namely a write-heavy, 24/7
constant load with a large dataset.

Good, that generally matches the workload I've been using for testing.

What pg_prefaulter does is read in the blocks referenced from the WAL stream
(i.e. PG heap pages) and then load the referenced pages into the OS filesystem
cache (via threaded calls to pread(2)). The WAL apply process has a cache-hit
because the filesystem cache has been primed with the heap page before the apply
process attempted to perform its read-modify-write of the heap.

It is important to highlight that this is a problem because there is only one
synchronous pread(2) call in flight at a time from the apply/recover/startup
process, which effectively acts as the speed limit for PostgreSQL. The physics
of many workloads are such that followers are unable to keep up and are thus
destined to always fall behind (we've all seen this at some point, likely via
apply lag from a VACUUM or pg_repack). The primary can schedule concurrent IO
from multiple client all making independent SELECTS. Contrast that to a replica
who has zero knowledge of the IOs that the primary recently dispatched, and all
IO looks like random read and likely a cache miss. In effect, the pg_prefaulter
raises the speed limit of the WAL apply/recovery process by priming the
filesystem cache by snooping in on the WAL stream.

PostgreSQL's WAL apply and recovery process is only capable of scheduling a
single synchronous pread(2) syscall. As a result, even if you have an RAID10
and a capable IO scheduler in the OS that is able to read form both halves of
each mirror, you're only going to perform ~150-225 pread(2) calls per second.
Despite the entire disk system being able to deliver something closer to
2400-3600 IOPS (~10ms random-read == ~150-225 IOPS * 16x disks), you'll only
observe ~6% utilization of the random read IO capabilities of a server. When
you realize the size of the unapplied WAL entries represents a backlog of queued
or unscheduled IOs, the phrase "suboptimal" doesn't begin to do reality justice.

One or more of the following activities can demonstrate the problem:

* Natural random-write workloads at high velocity
* VACUUM activity
* pg_repack
* slow IO subsystems on followers
* synchronous apply

Regarding the environment where pg_prefaulter was written, the server hardware
was reasonably beefy servers (256GB RAM, 16x 10K SAS disks) and this database
cluster was already in a scale-out configuration. Doubling the number of
database servers would only spread the load out by 2x, but we'd still only be
utilizing ~6% of the IO across the fleet. We needed ~100% IO utilization when
followers were falling behind. In practice we are seeing orders of magnitude
improvement in apply lag.

Yeah, the poor I/O utilization is annoying. Considering the storage is
often the most expensive part of the database system, it's a bit like
throwing money out of the window :-/

Other points worth mentioning:

* the checkpoint_interval was set to anywhere between 15s and 300s, it didn't
matter - we did discover a new form of lag, however, checkpoint lag. Pages
were being evicted from cache faster than checkpoints were able to execute,
leading to unbounded checkpoints and WAL growth (i.e. writes were fast enough
that the checkpointer was suffering from Cold RMW). iirc, pg_prefaulter reads
in both WAL pages and WAL files that are about to be used in checkpoints (it's
been a while since I wrote this code).

Hmmm, I'm not sure how a checkpointer could hit a cold RMW, considering
it merely writes out dirty pages from shared buffers. Although, perhaps
it's specific to ZFS setups with 16kB record sizes?

* The pg_prefaulter saw the best performance when we increased the number of IO
workers to be roughly equal to the available IO commands the OS could schedule
and dispatch (i.e. 16x disks * 150 IOPS == ~2K).

Yeah. I wonder how would this work for flash-based storage that can
achieve much higher IOPS values.

* pg_prefaulter is very aggressive about not performing work twice or reading
the same page multiple times. pg_prefaulter uses a heap page cache to prevent
redundant IOs for the same PG heap page. pg_prefaulter also dedupes IO
requests in case the same page was referenced twice in short succession due to
data locality in the WAL stream. The workload was already under cache
pressure. Artificially promoting a page from the ARC MRU to MFU would result
in potentially useful records in the MFU being evicted from cache.

Makes sense. I think the patch does that too, by keeping a cache of
recently prefetched blocks.

* During the design phase, I looked into using bgworkers but given the number of
in-flight pread(2) calls required to fully utilize the IO subsystem, I opted
for something threaded (I was also confined to using Solaris which doesn't
support posix_fadvise(2), so I couldn't sequentially dispatch async
posix_fadvise(2) calls and hope for the best).

Hmm, yeah. I'm not sure what to do with this. Using many (thousands?) of
prefetch processes seems like a bad idea - we surely can't make them
regular bgworkers. Perhaps we could use one process with many threads?

Presumably if we knew about a better way to do prefetching without
posix_fadvise, we'd have implemented it in FilePrefetch(). But we just
error out instead :-(

* In my testing I was successfully using pgbench(1) to simulate the workload.
Increased the checkpoint_interval and segments to a very high number was
sufficient. I could see the improvement for cold-start even with SSDs, but
I'm not sure how big of an impact this would be for NVMe.

I think the impact on NVMe (particularly Optane) will be smaller,
because the devices handle low queue depths better, particularly for
reads. AFAIK it's the opposite for writes (higher queue depths are
needed), but writes are kinda throttled by reads (faster recovery means
more write requests). But then again, if you have multiple NVMe devices
in a RAID, that means non-trivial number of requests is needed.

* My slides are posted and have graphs of the before and after using the
pg_prefaulter, but I'm happy to provide additional details or answer more Q's.

* It would be interesting to see if posix_fadvise(2) is actually harming
performance. For example, spinning off a throw-away implementation that uses
aio or a pthread worker pool + pread(2). I do remember seeing some mailing
list blurbs from Mozilla where they were attempting to use posix_fadvise(2)
and were seeing a slow down in performance on Linux (I believe this has since
been fixed, but it wouldn't surprise me if there were still unintended
consequences from this syscall).

Not sure, but in this case we can demonstrate it clearly helps. Maybe
there's an alternative way to do async prefetching, performing better
(say, aio or whatever), but I've seen plenty of issues with those too.

* I have a port of pg_prefaulter that supports PostgreSQL >= 9 ~complete, but
not pushed. I'll see if I can get to that this week. For "reasons" this
isn't a high priority for me at the moment, but I'm happy to help out and see
this move forward.

Good to hear that.

* Tomas, feel free to contact me offline to discuss why the pg_prefault isn't
working for you. I have it running on Linux, FreeBSD, illumos, and macOS.

Will do. It can easily be due to my lack of golang knowledge, or
something similarly silly.

* In the graph from Tomas (nice work, btw), it's clear that the bandwidth is the
same. The way that we verified this earlier was to run ~10-15min traces and
capture the file and offset of every read of PostgreSQL and pg_prefaulter. We
saw pg_prefaulter IOs be ~100% cache miss. For PostgreSQL, we could observe
that ~99% of its IO was cache hit. We also verified that pg_prefaulter wasn't
doing any IO that wasn't eventually performed by PostgreSQL by comparing the
IOs performed against each heap segment.

I'm not sure what bandwidth?

* "In this case I see that without prefetching, the replay process uses about
20% of a CPU. With prefetching increases this to ~60%, which is nice." With
the pg_prefaulter, the IO should hit 100% utilization. Like I mentioned
above, Tomas, I'd like to make sure you get this working so you can compare
and improve as necessary. :~] I never got CPU utilization to 100%, but I did
get disk IO utilization to 100%, and that to me was the definition of success.
CPU utilization of the apply process could become 100% utilized with fast
enough disks but in production I didn't have anything that wasn't spinning
rust.

Not sure 100% is really achievable, but we can try. There's room for
improvement, that's for sure.

* It looks like we're still trying to figure out the nature of this problem and
the cost of various approaches. From a rapid prototyping perspective, feel
free to suggest changes to the Go pg_prefaulter and toss the various
experiments behind a feature flag.

* "> But it is implemented in GO and using pg_waldump.
Yeah, that's not too good if we want it in core."
I fail to see the problem with a side-car in Go. *checks calendar* :~]

I think there's a couple of valid reasons for that. It's not that we're
somehow against Go in principle, but adding languages into a code base
makes it more difficult to maintain it. Also, if we want to integrate it
with core (start it automatically on replicas, make it access internal
state etc.) it's just easier to do that from C.

It can be done from a standalone tool (say, an extension written in Go).
But then why make it part of core at all? That has disadvantages too,
like coupling the release cycle etc.

* pg_prefaulter will not activate if the number of unapplied WAL pages is less
than the size of 1 WAL segment (i.e. 16MB). This could be tuned further, but
this low-water mark seems to work well.

* pg_prefaulter won't read-ahead more than 100x WAL segments into the future. I
made the unverified assumption that PostgreSQL could not process more than
1.6GB of WAL (~1/2 of the memory bandwidth available for a single process) in
less than the rotational latency of a random IO (i.e. ~10ms), and that
pg_prefaulter could in theory stay ahead of PG. PostgreSQL normally overtakes
pg_prefaulter's ability to fault in random pages due to disk IO limitations
(PostgreSQL's cache hit rate is ~99.9%, not 100% for this very reason). In
practice this has worked out, but I'm sure there's room for improvement with
regards to setting the high-watermark and reducing this value. #yoloconstants

I think there's a stable state where the recovery reaches maximum
performance and we don't prefetch pages too far ahead (at some point the
recovery speed will stop improving, and eventually start decreasing
because we'll end up pushing out pages we've prefetched). I wonder how
we could auto-tune this.

* I contemplated not reading in FPW but this would have been detrimental on ZFS
because ZFS is a copy-on-write filesystem (vs block filesystem). For ZFS, we
are using a 16K record size, compressed down to ~8K. We have to read the
entire record in before we can modify half of the page. I suspect eliding
prefaulting FPWs will always be a performance loss for nearly all hardware.

That's a good point - on regular filesystems with small pages we can
just skip FPW (in fact, we should treat them as prefetched), while on
ZFS we need to prefetch them. We probably need to make this configurable.

regards

--
Tomas Vondra http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

#57Andres Freund
andres@anarazel.de
In reply to: Tomas Vondra (#56)
Re: WAL prefetch

Hi,

On 2018-07-09 11:59:06 +0200, Tomas Vondra wrote:

* During the design phase, I looked into using bgworkers but given the number of
in-flight pread(2) calls required to fully utilize the IO subsystem, I opted
for something threaded (I was also confined to using Solaris which doesn't
support posix_fadvise(2), so I couldn't sequentially dispatch async
posix_fadvise(2) calls and hope for the best).

Hmm, yeah. I'm not sure what to do with this. Using many (thousands?) of
prefetch processes seems like a bad idea - we surely can't make them regular
bgworkers. Perhaps we could use one process with many threads?

Presumably if we knew about a better way to do prefetching without
posix_fadvise, we'd have implemented it in FilePrefetch(). But we just error
out instead :-(

Solaris is dead. We shouldn't design for it... I think there's decent
reasons to go for a non fadvise approach, but solaris imo isn't one of
them.

Greetings,

Andres Freund

#58Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Tomas Vondra (#54)
Re: WAL prefetch

On 08.07.2018 00:47, Tomas Vondra wrote:

Hi,

I've done a bit of testing on the current patch, mostly to see how much
the prefetching can help (if at all). While the patch is still in early
WIP stages (at least that's my assessment, YMMV), the improvement are
already quite significant.

I've also planned to compare it to the pg_prefaulter [1] which kinda
started this all, but I've been unable to get it working with my very
limited knowledge of golang. I've fixed the simple stuff (references to
renamed PostgreSQL functions etc.) but then it does not do anything :-(
I wonder if it's working on FreeBSD only, or something like that ...

So this compares only master with and without WAL prefetching.

Instead of killing the server and measuring local recovery (which is
what Konstantin did before), I've decided to use replication. That is,
setup a replica, run pgbench on the master and see how much apply lag we
end up with over time. I find this much easier to reproduce, monitor
over time, do longer runs, ...

master
------
* 32 cores (2x E5-2620v4)
* 32GB of RAM
* Intel Optane SSD 280GB
* shared_buffers=4GB
* max_wal_size=128GB
* checkpoint_timeout=30min

replica
-------
* 4 cores (i5-2500k)
* 8GB RAM
* 6x Intel S3700 SSD (RAID0)
* shared_buffers=512MB
* effective_cache_size=256MB

I've also decided to use pgbench scale 1000 (~16GB) which fits into RAM
on the master but not the replica. This may seem like a bit strange
choice, but I think it's not entirely crazy, for a couple of reasons:

* It's not entirely uncommon to have replicas with different hardware
condiguration. For HA it's a bad idea, but there are valid use cases.

* Even with the same hardware config, you may have very different
workload on the replica, accessing very different subset of the data.
Consider master doing OLTP on small active set, while replica runs BI
queries on almost all data, pushing everything else from RAM.

* It amplifies the effect of prefetching, which is nice for testing.

* I don't have two machines with exactly the same config anyway ;-)

The pgbench test is then executed on master like this:

pgbench -c 32 -j 8 -T 3600 -l --aggregate-interval=1 test

The replica is unlikely to keep up with the master, so the question is
how much apply lag we end up with at the end.

Without prefetching, it's ~70GB of WAL. With prefetching, it's only
about 30GB. Considering the 1-hour test generates about 90GB of WAL,
this means the replay speed grew from 20GB/h to almost 60GB/h. That's
rather measurable improvement ;-)

The attached replication-lag.png chart, showing how the lag grows over
time. The "bumps" after ~30 minutes coincide with a checkpoint,
triggering FPIs for a short while. The record-size.png and fpi-size.png
come from pg_waldump and show what part of WAL consists of regular
records and FPIs.

Note: I've done two runs with each configuration, so there are four data
series on all charts.

With prefetching the lag drops down a bit after a while (by about the
same amount of WAL), while without prefetch it does not. My explanation
is that the replay is so slow it does not get to the FPIs until after
the test - so it happens, but we don't see it here.

Now, how does this look on system metrics? Without prefetching we see
low CPU usage, because the process is waiting for I/O. And the I/O is
under-utilized, because we only issue one request at a time (which means
short I/O queues, low utilization of individual devices in the RAID).

In this case I see that without prefetching, the replay process uses
about 20% of a CPU. With prefetching increases this to ~60%, which is nice.

At the storage level, the utilization for each device in the RAID0 array
is ~20%, and with prefetching enabled this jumps up to ~40%. If you look
at IOPS instead, that jumps from ~2000 to ~6500, so about 3x. How is
this possible when the utilization grew only ~2x? We're generating
longer I/O queues (20 requests instead of 3), and the devices can
optimize it quite a bit.

I think there's a room for additional improvement. We probably can't get
the CPU usage to 100%, but 60% is still quite low. The storage can
certainly handle more requests, the devices are doing something only
about 40% of the time.

But overall it looks quite nice, and I think it's worth to keep working
on it.

BTW to make this work, I had to tweak NUM_AUXILIARY_PROCS (increase it
from 4 to 5), otherwise InitAuxiliaryProcess() fails because there's not
room for additional process. I assume it works with local recovery, but
once you need to start walreceiver it fails.

regards

Thank you very much for such precise and detailed investigation of my patch.
Right now I am in vacation, but I am going to continue work on it.
Any advice of what else can be improved or refactored inn this patch is
welcome.

#59Konstantin Knizhnik
k.knizhnik@postgrespro.ru
In reply to: Andres Freund (#57)
Re: WAL prefetch

On 09.07.2018 21:28, Andres Freund wrote:

Hi,

On 2018-07-09 11:59:06 +0200, Tomas Vondra wrote:

* During the design phase, I looked into using bgworkers but given the number of
in-flight pread(2) calls required to fully utilize the IO subsystem, I opted
for something threaded (I was also confined to using Solaris which doesn't
support posix_fadvise(2), so I couldn't sequentially dispatch async
posix_fadvise(2) calls and hope for the best).

Hmm, yeah. I'm not sure what to do with this. Using many (thousands?) of
prefetch processes seems like a bad idea - we surely can't make them regular
bgworkers. Perhaps we could use one process with many threads?
Presumably if we knew about a better way to do prefetching without
posix_fadvise, we'd have implemented it in FilePrefetch(). But we just error
out instead :-(

Solaris is dead. We shouldn't design for it... I think there's decent
reasons to go for a non fadvise approach, but solaris imo isn't one of
them.

Greetings,

Andres Freund

I have attached to the first my mail in this thread small utility for
measuring effect of data prefetch for random reads.
At my desktop posix_fadvise performed in one thread demostrated the best
results, comparing with pread in any number of threads.