Your IP : 216.73.217.68


Current Path : /home/wuectly/www/03cbe/
Upload File :
Current File : /home/wuectly/www/03cbe/content.zip

PK�%"]�=�bbcontact/contact.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.2" type="plugin" group="content" method="upgrade">
	<name>plg_content_contact</name>
	<author>Joomla! Project</author>
	<creationDate>January 2014</creationDate>
	<copyright>(C) 2014 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.2.2</version>
	<description>PLG_CONTENT_CONTACT_XML_DESCRIPTION</description>
	<files>
		<filename plugin="contact">contact.php</filename>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_contact.ini</language>
		<language tag="en-GB">en-GB.plg_content_contact.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="basic">
				<field
					name="url"
					type="list"
					label="PLG_CONTENT_CONTACT_PARAM_URL_LABEL"
					description="PLG_CONTENT_CONTACT_PARAM_URL_DESCRIPTION"
					default="url"
					>
					<option value="url">PLG_CONTENT_CONTACT_PARAM_URL_URL</option>
					<option value="webpage">PLG_CONTENT_CONTACT_PARAM_URL_WEBPAGE</option>
					<option value="email">PLG_CONTENT_CONTACT_PARAM_URL_EMAIL</option>
				</field>

				<field
					name="link_to_alias"
					type="radio"
					label="PLG_CONTENT_CONTACT_PARAM_ALIAS_LABEL"
					description="PLG_CONTENT_CONTACT_PARAM_ALIAS_DESCRIPTION"
					default="0"
					class="btn-group btn-group-yesno"
					filter="integer"
					>
					<option value="0">JNO</option>
					<option value="1">JYES</option>
				</field>
			</fieldset>
		</fields>
	</config>
</extension>
PK�%"]=�S���contact/contact.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.Contact
 *
 * @copyright   (C) 2014 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\Registry\Registry;

/**
 * Contact Plugin
 *
 * @since  3.2
 */
class PlgContentContact extends JPlugin
{
	/**
	 * Database object
	 *
	 * @var    JDatabaseDriver
	 * @since  3.3
	 */
	protected $db;

	/**
	 * Plugin that retrieves contact information for contact
	 *
	 * @param   string   $context  The context of the content being passed to the plugin.
	 * @param   mixed    &$row     An object with a "text" property
	 * @param   mixed    $params   Additional parameters. See {@see PlgContentContent()}.
	 * @param   integer  $page     Optional page number. Unused. Defaults to zero.
	 *
	 * @return  boolean	True on success.
	 */
	public function onContentPrepare($context, &$row, $params, $page = 0)
	{
		$allowed_contexts = array('com_content.category', 'com_content.article', 'com_content.featured');

		if (!in_array($context, $allowed_contexts))
		{
			return true;
		}

		// Return if we don't have valid params or don't link the author
		if (!($params instanceof Registry) || !$params->get('link_author'))
		{
			return true;
		}

		// Return if an alias is used
		if ((int) $this->params->get('link_to_alias', 0) === 0 && $row->created_by_alias != '')
		{
			return true;
		}

		// Return if we don't have a valid article id
		if (!isset($row->id) || !(int) $row->id)
		{
			return true;
		}

		$contact        = $this->getContactData($row->created_by);
		$row->contactid = $contact->contactid;
		$row->webpage   = $contact->webpage;
		$row->email     = $contact->email_to;
		$url            = $this->params->get('url', 'url');

		if ($row->contactid && $url === 'url')
		{
			JLoader::register('ContactHelperRoute', JPATH_SITE . '/components/com_contact/helpers/route.php');
			$row->contact_link = JRoute::_(ContactHelperRoute::getContactRoute($contact->contactid . ':' . $contact->alias, $contact->catid));
		}
		elseif ($row->webpage && $url === 'webpage')
		{
			$row->contact_link = $row->webpage;
		}
		elseif ($row->email && $url === 'email')
		{
			$row->contact_link = 'mailto:' . $row->email;
		}
		else
		{
			$row->contact_link = '';
		}

		return true;
	}

	/**
	 * Retrieve Contact
	 *
	 * @param   int  $userId  Id of the user who created the article
	 *
	 * @return  mixed|null|integer
	 */
	protected function getContactData($userId)
	{
		static $contacts = array();

		if (isset($contacts[$userId]))
		{
			return $contacts[$userId];
		}

		$query = $this->db->getQuery(true);

		$query->select('MAX(contact.id) AS contactid, contact.alias, contact.catid, contact.webpage, contact.email_to');
		$query->from($this->db->quoteName('#__contact_details', 'contact'));
		$query->where('contact.published = 1');
		$query->where('contact.user_id = ' . (int) $userId);

		if (JLanguageMultilang::isEnabled() === true)
		{
			$query->where('(contact.language in '
				. '(' . $this->db->quote(JFactory::getLanguage()->getTag()) . ',' . $this->db->quote('*') . ') '
				. ' OR contact.language IS NULL)');
		}

		$this->db->setQuery($query);

		$contacts[$userId] = $this->db->loadObject();

		return $contacts[$userId];
	}
}
PK�%"]��2�22sudesign_audio/install.phpnu&1i�<?php defined('_JEXEC') or die;
/**
 * @package Plugin Content - Simple Audio Shortcode for Joomla! 1.7.x - 3.x - 4.alpha
 * @author SUDesign
 * @version 1.5
 * @copyright (C) 2016 - SUDesign - All Rights Reserved.
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @support http://www.sudesign.fr/contact.html
 **/

class plgContentSudesign_audioInstallerScript
{
	public function postflight($adapter)
	{
		//Plugin auto-active
		$db = JFactory::getDbo();
		
		$db->setQuery("UPDATE #__extensions SET enabled=1 WHERE element='sudesign_audio' AND type='plugin'");
		$db->execute();
		
		$db->setQuery("SELECT extension_id FROM #__extensions WHERE element='sudesign_audio' AND type='plugin'");
		$ext = $db->loadObject();
		$url = $ext ? 'index.php?option=com_plugins&task=plugin.edit&extension_id='.$ext->extension_id : 'index.php?option=com_plugins&view=plugins&filter_search=sudesign_audio';
		
		echo '<div style="font-family: Verdana;font-size: 1.2em;font-weight: normal;">'. JText::sprintf('SD_DESCRIPTION_POSTINSTALL', $url) .'<br /><br /></div>';  
	}
}
PK�%"]W�4�	�	!sudesign_audio/sudesign_audio.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="2.5" type="plugin" group="content" method="upgrade">
	<name>Simple Audio Player - Shortcode</name>
	<author>&lt;a href=&quot;http://www.SUDesign.fr/dev-module.php&quot;&gt;SUDesign&lt;/a&gt;</author>
	<creationDate>25-10-2014</creationDate>
	<copyright>Copyright (C) 2014 SUDesign, Inc. All rights reserved.</copyright>
	<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
	<authorEmail>joomla@sudesign.fr</authorEmail>
	<authorUrl>www.sudesign.fr</authorUrl>
	<version>1.5</version>
	<scriptfile>install.php</scriptfile>
	<description>SD_DESCRIPTION</description>
	<updateservers>
		<server type="extension" priority="1" name="Simple Audio Player - Shortcode">http://www.sudesign.fr?option=com_sudesign&amp;task=update.extension&amp;id=5&amp;key=1164fa4d88f4fa0842a5bbfc628d7aae</server>
	</updateservers>
	<languages folder="language">
		<language tag="en-GB">en-GB/en-GB.plg_content_sudesign_audio.ini</language>
		<language tag="fr-FR">fr-FR/fr-FR.plg_content_sudesign_audio.ini</language>
		<language tag="en-GB">en-GB/en-GB.plg_content_sudesign_audio.sys.ini</language>
		<language tag="fr-FR">fr-FR/fr-FR.plg_content_sudesign_audio.sys.ini</language>
	</languages>
	<files>
		<filename plugin="sudesign_audio">sudesign_audio.php</filename>
		<filename>install.php</filename>
		<filename>gpl-2.0.txt</filename>
		<filename>index.html</filename>
		<folder>lib</folder>
	</files>
	<config>
		<fields name="params">
			<fieldset name="basic"> 
				<field name="inc_lib" type="radio" default="1" label="SD_INCLUDE_MEDIAELEMENT" description="SD_INCLUDE_MEDIAELEMENT_DESC">
					<option value="1">SD_OUI</option>
					<option value="0">SD_NON</option>
				</field>
				<field name="inc_jquery" type="radio" default="0" label="SD_INCLUDE_JQUERY" description="SD_INCLUDE_JQUERY_DESC">
					<option value="1">SD_OUI</option>
					<option value="0">SD_NON</option>
				</field>
				<field type="text" name="default_width" default="" label="SD_DEFAULT_WIDTH" description="SD_DEFAULT_WIDTH_DESC" filter="integer" />
				<field type="spacer" name="space-powered" label="&lt;a href=&quot;http://www.sudesign.fr/dev-module.php&quot; target=&quot;_blank&quot;&gt;&lt;img style=&quot;border-radius: 5px;&quot; src=&quot;http://www.sudesign.fr/logo/sudesign.png?module=plg_content_sudesign_audio:1.5&quot;/&gt;&lt;/a&gt;" />
			</fieldset>
		</fields>
	</config>
</extension>
PK�%"]�2��GG!sudesign_audio/sudesign_audio.phpnu&1i�<?php defined('_JEXEC') or die;
/**
 * @package Plugin Content - Simple Audio Shortcode for Joomla! 1.7.x - 3.x - 4.alpha
 * @author SUDesign
 * @version 1.5
 * @copyright (C) 2016 - SUDesign - All Rights Reserved.
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 * @support http://www.sudesign.fr/contact.html
 **/

class plgContentSudesign_audio extends JPlugin
{
	public function __construct(& $subject, $config)
	{
		parent::__construct($subject, $config);
	}

	private function str2bool( $str )
	{
		return in_array( strtolower(trim($str)) , array(1,'yes','on', 'true', 'oui') );
	}

	public function onContentPrepare($context, &$row, $params, $page = 0)
	{
		if (preg_match_all('/(?P<tag>\[audio(?P<params>[^\]]+)\])/isU',$row->text,$matchs))
		{
			if ($this->params->get('inc_lib') == 1)
			{
				$document = JFactory::getDocument();

				$v = new Jversion();
				if($v->isCompatible('3'))
					JHtml::_('jquery.framework');

				if ($this->params->get('inc_jquery') == 1)
					$document->addScript(JURI::root().'plugins/content/sudesign_audio/lib/jquery-3.2.1.min.js');

				$document->addScript(JURI::root().'plugins/content/sudesign_audio/lib/mediaelement-and-player.min.js');
				$document->addStyleSheet(JURI::root().'plugins/content/sudesign_audio/lib/mediaelementplayer.min.css');

				$default_width = (int)$this->params->get('default_width') - 183;
				if( $default_width > 20)
					$document->addStyleDeclaration('.mejs-controls div.mejs-time-rail{width:'.$default_width.'px;} .mejs-controls .mejs-time-rail .mejs-time-total{width:'.($default_width-10).'px;}');
			}

			foreach($matchs['tag'] as $key => $tag)
			{
				$params = array(
					'src'		=> '',
					'onError'	=> 'shortcodeAudioOnerror(event,this)',
					'mp3'		=> '',
					'loop'		=> 'off',
					'autoplay'	=> 'off',
					'showvolume'=> 'on',
					'controls'	=> 'controls',
					'type'		=> '',
					'background'=> '',
					'btcolor'	=> '',
					'preload'	=> 'none',
					'style'		=> '',
					'hidden'	=> '',
				);

				if (preg_match_all('/(?P<param>[^\s]+)\=\"(?P<value>[^\"]+)\"/isU',$matchs['params'][$key], $attrs))
				{
					foreach($attrs['param'] as $keyp => $param)
					{
						$params[$param] = trim($attrs['value'][$keyp]);
					}
				}

				if (!empty($params['mp3']))
				{
					$params['src'] = $params['mp3'];
					unset($params['mp3']);
				}

				if ($this->str2bool($params['hidden']))
					$params['style'] = 'display:none;'.$params['style'];

				$css = array();
				$params['class'] = 'style-'.substr(md5(http_build_query($params)), 10);

				if (!empty($params['background']))
				{
					$css[] = '.'.$params['class'].' .mejs-controls{background:'.$params['background'].'}';
					unset($params['background']);
				}
				
				if (!empty($params['btcolor']))
				{
					if ( in_array($params['btcolor'], array('black','red','green','blue')))
						$css[] = '.'.$params['class'].' .mejs-button button{background-image:url('.JURI::root().'plugins/content/sudesign_audio/lib/controls-'.$params['btcolor'].'.svg)}';
					
					unset($params['btcolor']);
				}
				
				if (isset($params['txtcolor']))
				{
					$css[] = '.'.$params['class'].' .mejs-controls .mejs-time span{color:'.$params['txtcolor'].'!important}';
					unset($params['txtcolor']);
				}
				
				if (!empty($params['showvolume']))
				{
					if(!$this->str2bool($params['showvolume']))
					{
						$css[] = '.'.$params['class'].' .mejs-button.mejs-volume-button{display:none}';
						$css[] = '.'.$params['class'].' .mejs-horizontal-volume-slider{display:none!important}';
					}
					unset($params['showvolume']);
				}

				if (!empty($params['style']))
				{
					$css[] = '.'.$params['class'].'{'.$params['style'].'}';
				}

				if (empty($params['type']) && !empty($params['src']))
				{
					$ext = strtolower(trim(pathinfo($params['src'], PATHINFO_EXTENSION)));
					$params['type'] = 'audio/'.$ext;
				}

				$attrs = array();

				foreach($params as $attr => $value)
					if (!empty($value))
						if (in_array( strtolower(trim($attr)) , array('loop','autoplay')))
							$attrs[] = $this->str2bool($value) ? $attr : '';
						else
							$attrs[] = $attr.'="'.($this->str2bool($value) ? 'true': $value).'"';

				$fallback = '<a href="'.$params['src'].'" target="_blank">'.parse_url($params['src'],PHP_URL_HOST).'</a>';

				$html = '<audio '.implode(' ',$attrs).'>'.$fallback.'</audio>'.(empty($css)?'':'<style type="text/css">'.implode("\n",$css).'</style>');

				$row->text = str_replace($tag, $html, $row->text);
			}

			$row->text = '<!--[if lt IE 9]><script>document.createElement("audio");</script><![endif]-->'.str_replace('[/audio]','',$row->text);
		}

		return true;
	}
}
PK�%"]sudesign_audio/index.htmlnu&1i�PK�%"]��FN�F�Fsudesign_audio/gpl-2.0.txtnu&1i�                    GNU GENERAL PUBLIC LICENSE
                       Version 2, June 1991

 Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The licenses for most software are designed to take away your
freedom to share and change it.  By contrast, the GNU General Public
License is intended to guarantee your freedom to share and change free
software--to make sure the software is free for all its users.  This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it.  (Some other Free Software Foundation software is covered by
the GNU Lesser General Public License instead.)  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
this service if you wish), that you receive source code or can get it
if you want it, that you can change the software or use pieces of it
in new free programs; and that you know you can do these things.

  To protect your rights, we need to make restrictions that forbid
anyone to deny you these rights or to ask you to surrender the rights.
These restrictions translate to certain responsibilities for you if you
distribute copies of the software, or if you modify it.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must give the recipients all the rights that
you have.  You must make sure that they, too, receive or can get the
source code.  And you must show them these terms so they know their
rights.

  We protect your rights with two steps: (1) copyright the software, and
(2) offer you this license which gives you legal permission to copy,
distribute and/or modify the software.

  Also, for each author's protection and ours, we want to make certain
that everyone understands that there is no warranty for this free
software.  If the software is modified by someone else and passed on, we
want its recipients to know that what they have is not the original, so
that any problems introduced by others will not reflect on the original
authors' reputations.

  Finally, any free program is threatened constantly by software
patents.  We wish to avoid the danger that redistributors of a free
program will individually obtain patent licenses, in effect making the
program proprietary.  To prevent this, we have made it clear that any
patent must be licensed for everyone's free use or not licensed at all.

  The precise terms and conditions for copying, distribution and
modification follow.

                    GNU GENERAL PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

  0. This License applies to any program or other work which contains
a notice placed by the copyright holder saying it may be distributed
under the terms of this General Public License.  The "Program", below,
refers to any such program or work, and a "work based on the Program"
means either the Program or any derivative work under copyright law:
that is to say, a work containing the Program or a portion of it,
either verbatim or with modifications and/or translated into another
language.  (Hereinafter, translation is included without limitation in
the term "modification".)  Each licensee is addressed as "you".

Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope.  The act of
running the Program is not restricted, and the output from the Program
is covered only if its contents constitute a work based on the
Program (independent of having been made by running the Program).
Whether that is true depends on what the Program does.

  1. You may copy and distribute verbatim copies of the Program's
source code as you receive it, in any medium, provided that you
conspicuously and appropriately publish on each copy an appropriate
copyright notice and disclaimer of warranty; keep intact all the
notices that refer to this License and to the absence of any warranty;
and give any other recipients of the Program a copy of this License
along with the Program.

You may charge a fee for the physical act of transferring a copy, and
you may at your option offer warranty protection in exchange for a fee.

  2. You may modify your copy or copies of the Program or any portion
of it, thus forming a work based on the Program, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:

    a) You must cause the modified files to carry prominent notices
    stating that you changed the files and the date of any change.

    b) You must cause any work that you distribute or publish, that in
    whole or in part contains or is derived from the Program or any
    part thereof, to be licensed as a whole at no charge to all third
    parties under the terms of this License.

    c) If the modified program normally reads commands interactively
    when run, you must cause it, when started running for such
    interactive use in the most ordinary way, to print or display an
    announcement including an appropriate copyright notice and a
    notice that there is no warranty (or else, saying that you provide
    a warranty) and that users may redistribute the program under
    these conditions, and telling the user how to view a copy of this
    License.  (Exception: if the Program itself is interactive but
    does not normally print such an announcement, your work based on
    the Program is not required to print an announcement.)

These requirements apply to the modified work as a whole.  If
identifiable sections of that work are not derived from the Program,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works.  But when you
distribute the same sections as part of a whole which is a work based
on the Program, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote it.

Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Program.

In addition, mere aggregation of another work not based on the Program
with the Program (or with a work based on the Program) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.

  3. You may copy and distribute the Program (or a work based on it,
under Section 2) in object code or executable form under the terms of
Sections 1 and 2 above provided that you also do one of the following:

    a) Accompany it with the complete corresponding machine-readable
    source code, which must be distributed under the terms of Sections
    1 and 2 above on a medium customarily used for software interchange; or,

    b) Accompany it with a written offer, valid for at least three
    years, to give any third party, for a charge no more than your
    cost of physically performing source distribution, a complete
    machine-readable copy of the corresponding source code, to be
    distributed under the terms of Sections 1 and 2 above on a medium
    customarily used for software interchange; or,

    c) Accompany it with the information you received as to the offer
    to distribute corresponding source code.  (This alternative is
    allowed only for noncommercial distribution and only if you
    received the program in object code or executable form with such
    an offer, in accord with Subsection b above.)

The source code for a work means the preferred form of the work for
making modifications to it.  For an executable work, complete source
code means all the source code for all modules it contains, plus any
associated interface definition files, plus the scripts used to
control compilation and installation of the executable.  However, as a
special exception, the source code distributed need not include
anything that is normally distributed (in either source or binary
form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component
itself accompanies the executable.

If distribution of executable or object code is made by offering
access to copy from a designated place, then offering equivalent
access to copy the source code from the same place counts as
distribution of the source code, even though third parties are not
compelled to copy the source along with the object code.

  4. You may not copy, modify, sublicense, or distribute the Program
except as expressly provided under this License.  Any attempt
otherwise to copy, modify, sublicense or distribute the Program is
void, and will automatically terminate your rights under this License.
However, parties who have received copies, or rights, from you under
this License will not have their licenses terminated so long as such
parties remain in full compliance.

  5. You are not required to accept this License, since you have not
signed it.  However, nothing else grants you permission to modify or
distribute the Program or its derivative works.  These actions are
prohibited by law if you do not accept this License.  Therefore, by
modifying or distributing the Program (or any work based on the
Program), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Program or works based on it.

  6. Each time you redistribute the Program (or any work based on the
Program), the recipient automatically receives a license from the
original licensor to copy, distribute or modify the Program subject to
these terms and conditions.  You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties to
this License.

  7. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Program at all.  For example, if a patent
license would not permit royalty-free redistribution of the Program by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Program.

If any portion of this section is held invalid or unenforceable under
any particular circumstance, the balance of the section is intended to
apply and the section as a whole is intended to apply in other
circumstances.

It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system, which is
implemented by public license practices.  Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.

This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.

  8. If the distribution and/or use of the Program is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Program under this License
may add an explicit geographical distribution limitation excluding
those countries, so that distribution is permitted only in or among
countries not thus excluded.  In such case, this License incorporates
the limitation as if written in the body of this License.

  9. The Free Software Foundation may publish revised and/or new versions
of the General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

Each version is given a distinguishing version number.  If the Program
specifies a version number of this License which applies to it and "any
later version", you have the option of following the terms and conditions
either of that version or of any later version published by the Free
Software Foundation.  If the Program does not specify a version number of
this License, you may choose any version ever published by the Free Software
Foundation.

  10. If you wish to incorporate parts of the Program into other free
programs whose distribution conditions are different, write to the author
to ask for permission.  For software which is copyrighted by the Free
Software Foundation, write to the Free Software Foundation; we sometimes
make exceptions for this.  Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.

                            NO WARRANTY

  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
REPAIR OR CORRECTION.

  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along
    with this program; if not, write to the Free Software Foundation, Inc.,
    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

Also add information on how to contact you by electronic and paper mail.

If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:

    Gnomovision version 69, Copyright (C) year name of author
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, the commands you use may
be called something other than `show w' and `show c'; they could even be
mouse-clicks or menu items--whatever suits your program.

You should also get your employer (if you work as a programmer) or your
school, if any, to sign a "copyright disclaimer" for the program, if
necessary.  Here is a sample; alter the names:

  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
  `Gnomovision' (which makes passes at compilers) written by James Hacker.

  <signature of Ty Coon>, 1 April 1989
  Ty Coon, President of Vice

This General Public License does not permit incorporating your program into
proprietary programs.  If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
PK�%"]�(8PPsudesign_audio/lib/loading.gifnu&1i�GIF89a00���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������~~~}}}|||{{{zzzxxxwwwvvvuuutttrrrqqqlllkkkjjjiiihhhfffeeedddccc___^^^]]]\\\[[[YYYXXXWWWVVVUUUSSSRRRQQQOOOMMMLLLKKKJJJIIIGGGFFFEEEDDDCCCBBB@@@???>>>===<<<:::888777666444333222111000...---,,,+++)))'''%%%$$$###!!!





���!�NETSCAPE2.0!�	
�,+-�[	H� �U���ʠÇ
"�Q!A�
;E�ȱ�B�|���ɂ�\	����'M�`�r�)����F�KBS��'�k�)`
P��nTp�@B
9��X2���D4Kւ<�(�g +T�8��A�n�2���I`)F}�HR�P�u�`Q�S����y󆎤�i��)�V�`����9���}XF3��<Y�9�#Gv�szrT�Hp݀��U����EQÁ��>�(�'�-:��;�Jm��c�(�O���)}�Uk:P[���0#u�c���m��{��`G��aX �܁EbCTX�B��'���(=T(�"��@��1����#����F8~�Q1��B''J�8��
�=n�c�Ci�I�x��D�a�1�x�@)�آ@Rh!�[
�a�%�`��	рn�)'A�dR�xs:�2�P m�$J$��ґ%<���	-��_OD��'���	)dzBxv$JJ��>���fzi��	J0���Z��*O�����TI���E�ɡB��N��'
�F*h̪��F$��b�C$9�:<�A���EǑ(r8��T�8ԋ��GJ��B�@�a/AT�'A�1��<|:ԫ���Y�TP1��r�S!�	
�,+,�[	H� AR�̐��ɠÇ
2�Q��	)�D�ȱ�"
B��Ц�ɂ�l�\���ɗ�
Ud�A���*
TI��U�
�a@S���vTH��C;�1��!���-�@G+6����lt����z"pm@���x4��p��5��ӪS
�L�ț�E)�>�T�83YB9t�1^P
����V��p�ڠ�Pj<�����lM�ĥ�)�Le�=V�~$�"��*�fP�CQ'������B���p�3�:B!�JDNj����c�����Q�e����X(P�i0��
"Y���g*�TBJ��I3�` fX+�4'P%<���	-�%bA�0�����
(��Ž'q��r�o�AG$�����;�(C%@
�Io�A�����<�^���Q%�}�G
L�8��@�H�U*"(R��#�D9�'�Q�!�JMA%ztJ'����c�F*餔V*�';5�!*���G�8�CO4�`&q�a� &BT�8ě���DJ]�E!U��81�K���k�p8�&D{�&�{�����9��@�@B	��q���T�Q+A�t�DhxbP&p���I��KP(](�/p|:*��"���@�L(��(�T��+�ź��bF�J8�G�y�F]��*Ȫ��c�!�	
�,-+�[	H��Q„�#ʠÇF��a�> E��q`'Cn����ɇk:���a�ɗUY򈪁���IS�LU�
��A�b�U�V�Q!��8���2�^)��5�+bGQST�8���F��H�,��U�c�6��3��)R���J�*3"D�8����c+���	��gd��'A��l��Xh"�Br9�Y	���)�U9L�u@f���O�Q���l��c��L��;�'���ȀQ�Ҏ��<��kA��T�,7�	����o8Д?���Cf
����	 ���G�'y�D(al��&�� �F �@p�@��a�X4��@�,��p�:�`#�����/Jh�%�Pa��:�b=~�!�L1$:�"IJ�d+r�0��m�E���
)&q�#+���`��݅��*ET�@]i>ԉ��@�yB�I@�]�]r����褭�BI$�8�'���	Q@��[/yv B�I�����v���I���ƭr02�F�d��>�K��!DZo�G�p��QP��'v����r��2�Ʋ�I$
	U���1�I��хp|bP&m���T
#}�!ɮ&�B
+�Gw!��g��'c$��]Rj�(fHlF�Ċ _ �� w\0"�"R���0}!�	
�,,+�[	H�`AU�*\Ȱ!(8M���԰�E����8q"HC2��
�R�\)PU�&M����%�SF`�<!�AQ}���#J�*M�Fsr�R!�A� -�RC$�F+��ȱş��jT]��'�qp���SAHRd�0�'�@5�V�����)sq�d0եJP�"x�U
'^U��U�`nwn]�V@k��U��`E"Qل��G��Te&[hF��j,���;��)N�T6�ު�1i
��R�4��pCAT� }�NPM���X$Г(P�d��C��7���L(a`�q���W!�d�:�{=4�f��ńF1	w�ܠ�x�ъM��v�Iqb��
*}p����J ��B��"�������Y ����{(~���1���]`IPO`@@ ��b���)'
�q)�DRTwC��'�5�	`���%!!���s��p�G�v!�)e���P��'cT��vY�æs*��B��!��\�t*�q��+�|A��@**�x��@��
@�
�b�p�iA�BG�(Պ��:�B�k�)�!��`�J��J]'t���}<ۉ����'u���϶�	���l�X����A�ر�!0�W�"}���m.��t�!�	
�,+-�[	H�`AS�*\Ȑ!)9S��)հ�Ł���CǚUC.�d�#G#�D�$X)�IB*)L�je)R ���˨��� q"G�ET~�d��ɠ�':t@iTҎ'N��b��'J�0A�ʠ�A�:L%%k
�*�T,�E,%Q(��$��۷'��t�Ů(�DZ���%���s7�P"Ki�5���Dy���?-�f�!��)J�0�\��H�SL��-�T�LeyN�����/�Bt凑5j��)x�V�̐����ĭP	�23&N�����~C����t�߆TrTAڳ��G՛��q���{a�`&W�܅�J|��q��w �7yr\�^���CW���IB�rF	�yp�n�)�
sA�'5�H�*�(*�H��](�@�8QAP:�G��I'����@�e��P)��A���ȓ_z�B�1"�sbv�d�C[(��m~)����s��@�����i���|�P* ��M����i��pi�i4$	oЖ�H*U!���
����YHC�D�G����%�k|�*U��)��A����G*�"���m��ɑ�8P��F�B*�y�h-o�/ "�)+��¾5����
���@l<�k���@��`�
X��!�h	!�X�H!�	
�,+,�[	H�`�R�T\Ȱ!CT~�dy�ɡŋ�4Q���TC2,ť#%P(�\Ip��(!�d�j�'�U�9ɱ˧��L�D%��8�zB�I�Iř2%)���t����I�~�T��,5
�z�u+�H+51���&�����v%� t������Q+Ga��e�ES�̌�sif�'9r<iRU�NBg��4hP'ѨS�^ͺ5�Si	����끕�i�R���S�5�(N�H!�w�Er�D�su*)�Q$O��>ң�����ڵ�h��ԟ�o�_])��'�؎D�tDթF��mG�@�D�G�8��-(��Tl���2� T�5D
%�ض�*�d�Y �a�u2���C��*�\�6	�qtf�=�y
Q!��O`��$h`%5�X&<$���dj�b�Q��6`�l�D�d~��Bc�f����)�HqC\��	t���Bk�gk��
T�h�rh�V���!�	�<�@��6PAw��),�T
��`J����i}��hh�Gl6���������	dzp�����|B�F+;$���b�A��ƒ
(`������ӋjURZ%�u���@�{C)ԆɊ�H�ɑ�8P�
�@L�'{�a!�!�	
�,-+�[	H��A��R\Ȱ�AT�޼AdʡŋY
�ҥ˗A�0�\8�LǎfD�\I�Ә�]�xb�0UE����� �Q�V���Ϣ�3��M&���h����EIt$�1�� )I��<���%O�`L��9o�|Y)�&f��m���۷t8�����,�.�bW�S#Eu9{�*��١h��H]�DA3W��O�z���j��E�:�f�K�W�Yq@@�����
ȓ�!�8CD�K�HH�*i��j���9�wt%ȑ5�+U�.=@➞�CN�A	�K�A�����QQ
~�%�_n����W uZ�'}���]��W�k�"t�Uwv�l2�@�}'@�9��n���ùȐ)��Ax�Sҕ���AH6`���&�9$�I&��]��E�0��X�I
UVYA ��	l��C%�!A�UJqQ)E��žz��PtV�É�p�I�U��{�pB����"�B|�A�1d&20ʧ�-TH�:�E+��!��n� �ץ"�|��C��Pi���H	��Z"Eƒ�'�0�J1"��!�{A�����Z��
�6 �
r\�
��
Đ�R*F��F|�����jĉD�F�v`m�ubC�6t��A���������a���J!�	
�,-+�[	H��A��P\Ȱ�AT���YTʡE���c��Ht޼�SH�E�~X ��*���3RΛ:1O2d��ϟ\th�OM9t��<hЧCL�bdS�SMZT�#�S�
	��@��2�!�
+Y��4�@T�8�%�jЗ.]�b�p��@y\e0�2�
F�S��Ncw�s�\�>�Z4%G3���zE��%7`���d�)�:EE�D�$O�/�.�re�����SL!�h���64�^�	(�K�X��N�'X�T5��@O)ʗ�H=AOp�p�w���Ia�@����J4�@dh�v7h��$Q(�ā\Td���0`+�8a�Y�FH��Ň�t���o�4�
)rɇ�@�P���@��`j�(�'�P�Z+�܀b���F.TJ!i���pU�t
'���%C��,�G*c���ĩAfPy�(�hb'C�� ��$�T#Xa��YtşZ�S'O� )�9�J���Ò
�ä8Dg���9��R�%��)��:����rP�@��aD2Hq#A��Z�C�ܐi
��G'4{��DhD z$=��<��
)F��¸�a�z.%�`xч(Q"���p�b�)&4�Kn{�y�͒�°�	)4���%\P%d$G�tJ�;PK�%"]:��d��!sudesign_audio/lib/background.pngnu&1i��PNG


IHDR22?��tEXtSoftwareAdobe ImageReadyq�e<HIDATx���1 ��nj��AN5-p[BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD�'�D���y�IEND�B`�PK�%"]5��f�,�,1sudesign_audio/lib/mediaelement-and-player.min.jsnu&1i�/*!
* MediaElement.js
* HTML5 <video> and <audio> shim and player
* http://mediaelementjs.com/
*
* Creates a JavaScript object that mimics HTML5 MediaElement API
* for browsers that don't understand HTML5 or can't play the provided codec
* Can play MP4 (H.264), Ogg, WebM, FLV, WMV, WMA, ACC, and MP3
*
* Copyright 2010-2014, John Dyer (http://j.hn)
* License: MIT
*
*/
var myjQuery = false;
if (typeof jQuery == 'function')
	myjQuery = jQuery;
else if (typeof $j == 'function')
	myjQuery = $j;
else if (typeof $ == 'function' && typeof $.fn == 'function')
	myjQuery = $;

(function(jQuery){
	if (jQuery == false)
	{
		console.warn('SUDesign, Audio shortcode : jQuery not found !');
		return;
	}
	
var mejs=mejs||{};mejs.version="2.15.1";mejs.meIndex=0;
mejs.plugins={silverlight:[{version:[3,0],types:["video/mp4","video/m4v","video/mov","video/wmv","audio/wma","audio/m4a","audio/mp3","audio/wav","audio/mpeg"]}],flash:[{version:[9,0,124],types:["video/mp4","video/m4v","video/mov","video/flv","video/rtmp","video/x-flv","audio/flv","audio/x-flv","audio/mp3","audio/m4a","audio/mpeg","video/youtube","video/x-youtube","application/x-mpegURL"]}],youtube:[{version:null,types:["video/youtube","video/x-youtube","audio/youtube","audio/x-youtube"]}],vimeo:[{version:null,
types:["video/vimeo","video/x-vimeo"]}]};
mejs.Utility={encodeUrl:function(a){return encodeURIComponent(a)},escapeHTML:function(a){return a.toString().split("&").join("&amp;").split("<").join("&lt;").split('"').join("&quot;")},absolutizeUrl:function(a){var b=document.createElement("div");b.innerHTML='<a href="'+this.escapeHTML(a)+'">x</a>';return b.firstChild.href},getScriptPath:function(a){for(var b=0,c,d="",e="",g,f,i=document.getElementsByTagName("script"),k=i.length,h=a.length;b<k;b++){g=i[b].src;c=g.lastIndexOf("/");if(c>-1){f=g.substring(c+
1);g=g.substring(0,c+1)}else{f=g;g=""}for(c=0;c<h;c++){e=a[c];e=f.indexOf(e);if(e>-1){d=g;break}}if(d!=="")break}return d},secondsToTimeCode:function(a,b,c,d){if(typeof c=="undefined")c=false;else if(typeof d=="undefined")d=25;var e=Math.floor(a/3600)%24,g=Math.floor(a/60)%60,f=Math.floor(a%60);a=Math.floor((a%1*d).toFixed(3));return(b||e>0?(e<10?"0"+e:e)+":":"")+(g<10?"0"+g:g)+":"+(f<10?"0"+f:f)+(c?":"+(a<10?"0"+a:a):"")},timeCodeToSeconds:function(a,b,c,d){if(typeof c=="undefined")c=false;else if(typeof d==
"undefined")d=25;a=a.split(":");b=parseInt(a[0],10);var e=parseInt(a[1],10),g=parseInt(a[2],10),f=0,i=0;if(c)f=parseInt(a[3])/d;return i=b*3600+e*60+g+f},convertSMPTEtoSeconds:function(a){if(typeof a!="string")return false;a=a.replace(",",".");var b=0,c=a.indexOf(".")!=-1?a.split(".")[1].length:0,d=1;a=a.split(":").reverse();for(var e=0;e<a.length;e++){d=1;if(e>0)d=Math.pow(60,e);b+=Number(a[e])*d}return Number(b.toFixed(c))},removeSwf:function(a){var b=document.getElementById(a);if(b&&/object|embed/i.test(b.nodeName))if(mejs.MediaFeatures.isIE){b.style.display=
"none";(function(){b.readyState==4?mejs.Utility.removeObjectInIE(a):setTimeout(arguments.callee,10)})()}else b.parentNode.removeChild(b)},removeObjectInIE:function(a){if(a=document.getElementById(a)){for(var b in a)if(typeof a[b]=="function")a[b]=null;a.parentNode.removeChild(a)}}};
mejs.PluginDetector={hasPluginVersion:function(a,b){var c=this.plugins[a];b[1]=b[1]||0;b[2]=b[2]||0;return c[0]>b[0]||c[0]==b[0]&&c[1]>b[1]||c[0]==b[0]&&c[1]==b[1]&&c[2]>=b[2]?true:false},nav:window.navigator,ua:window.navigator.userAgent.toLowerCase(),plugins:[],addPlugin:function(a,b,c,d,e){this.plugins[a]=this.detectPlugin(b,c,d,e)},detectPlugin:function(a,b,c,d){var e=[0,0,0],g;if(typeof this.nav.plugins!="undefined"&&typeof this.nav.plugins[a]=="object"){if((c=this.nav.plugins[a].description)&&
!(typeof this.nav.mimeTypes!="undefined"&&this.nav.mimeTypes[b]&&!this.nav.mimeTypes[b].enabledPlugin)){e=c.replace(a,"").replace(/^\s+/,"").replace(/\sr/gi,".").split(".");for(a=0;a<e.length;a++)e[a]=parseInt(e[a].match(/\d+/),10)}}else if(typeof window.ActiveXObject!="undefined")try{if(g=new ActiveXObject(c))e=d(g)}catch(f){}return e}};
mejs.PluginDetector.addPlugin("flash","Shockwave Flash","application/x-shockwave-flash","ShockwaveFlash.ShockwaveFlash",function(a){var b=[];if(a=a.GetVariable("$version")){a=a.split(" ")[1].split(",");b=[parseInt(a[0],10),parseInt(a[1],10),parseInt(a[2],10)]}return b});
mejs.PluginDetector.addPlugin("silverlight","Silverlight Plug-In","application/x-silverlight-2","AgControl.AgControl",function(a){var b=[0,0,0,0],c=function(d,e,g,f){for(;d.isVersionSupported(e[0]+"."+e[1]+"."+e[2]+"."+e[3]);)e[g]+=f;e[g]-=f};c(a,b,0,1);c(a,b,1,1);c(a,b,2,1E4);c(a,b,2,1E3);c(a,b,2,100);c(a,b,2,10);c(a,b,2,1);c(a,b,3,1);return b});
mejs.MediaFeatures={init:function(){var a=this,b=document,c=mejs.PluginDetector.nav,d=mejs.PluginDetector.ua.toLowerCase(),e,g=["source","track","audio","video"];a.isiPad=d.match(/ipad/i)!==null;a.isiPhone=d.match(/iphone/i)!==null;a.isiOS=a.isiPhone||a.isiPad;a.isAndroid=d.match(/android/i)!==null;a.isBustedAndroid=d.match(/android 2\.[12]/)!==null;a.isBustedNativeHTTPS=location.protocol==="https:"&&(d.match(/android [12]\./)!==null||d.match(/macintosh.* version.* safari/)!==null);a.isIE=c.appName.toLowerCase().indexOf("microsoft")!=
-1||c.appName.toLowerCase().match(/trident/gi)!==null;a.isChrome=d.match(/chrome/gi)!==null;a.isChromium=d.match(/chromium/gi)!==null;a.isFirefox=d.match(/firefox/gi)!==null;a.isWebkit=d.match(/webkit/gi)!==null;a.isGecko=d.match(/gecko/gi)!==null&&!a.isWebkit&&!a.isIE;a.isOpera=d.match(/opera/gi)!==null;a.hasTouch="ontouchstart"in window;a.svg=!!document.createElementNS&&!!document.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect;for(c=0;c<g.length;c++)e=document.createElement(g[c]);
a.supportsMediaTag=typeof e.canPlayType!=="undefined"||a.isBustedAndroid;try{e.canPlayType("video/mp4")}catch(f){a.supportsMediaTag=false}a.hasSemiNativeFullScreen=typeof e.webkitEnterFullscreen!=="undefined";a.hasNativeFullscreen=typeof e.requestFullscreen!=="undefined";a.hasWebkitNativeFullScreen=typeof e.webkitRequestFullScreen!=="undefined";a.hasMozNativeFullScreen=typeof e.mozRequestFullScreen!=="undefined";a.hasMsNativeFullScreen=typeof e.msRequestFullscreen!=="undefined";a.hasTrueNativeFullScreen=
a.hasWebkitNativeFullScreen||a.hasMozNativeFullScreen||a.hasMsNativeFullScreen;a.nativeFullScreenEnabled=a.hasTrueNativeFullScreen;if(a.hasMozNativeFullScreen)a.nativeFullScreenEnabled=document.mozFullScreenEnabled;else if(a.hasMsNativeFullScreen)a.nativeFullScreenEnabled=document.msFullscreenEnabled;if(a.isChrome)a.hasSemiNativeFullScreen=false;if(a.hasTrueNativeFullScreen){a.fullScreenEventName="";if(a.hasWebkitNativeFullScreen)a.fullScreenEventName="webkitfullscreenchange";else if(a.hasMozNativeFullScreen)a.fullScreenEventName=
"mozfullscreenchange";else if(a.hasMsNativeFullScreen)a.fullScreenEventName="MSFullscreenChange";a.isFullScreen=function(){if(a.hasMozNativeFullScreen)return b.mozFullScreen;else if(a.hasWebkitNativeFullScreen)return b.webkitIsFullScreen;else if(a.hasMsNativeFullScreen)return b.msFullscreenElement!==null};a.requestFullScreen=function(i){if(a.hasWebkitNativeFullScreen)i.webkitRequestFullScreen();else if(a.hasMozNativeFullScreen)i.mozRequestFullScreen();else a.hasMsNativeFullScreen&&i.msRequestFullscreen()};
a.cancelFullScreen=function(){if(a.hasWebkitNativeFullScreen)document.webkitCancelFullScreen();else if(a.hasMozNativeFullScreen)document.mozCancelFullScreen();else a.hasMsNativeFullScreen&&document.msExitFullscreen()}}if(a.hasSemiNativeFullScreen&&d.match(/mac os x 10_5/i)){a.hasNativeFullScreen=false;a.hasSemiNativeFullScreen=false}}};mejs.MediaFeatures.init();
mejs.HtmlMediaElement={pluginType:"native",isFullScreen:false,setCurrentTime:function(a){this.currentTime=a},setMuted:function(a){this.muted=a},setVolume:function(a){this.volume=a},stop:function(){this.pause()},setSrc:function(a){for(var b=this.getElementsByTagName("source");b.length>0;)this.removeChild(b[0]);if(typeof a=="string")this.src=a;else{var c;for(b=0;b<a.length;b++){c=a[b];if(this.canPlayType(c.type)){this.src=c.src;break}}}},setVideoSize:function(a,b){this.width=a;this.height=b}};
mejs.PluginMediaElement=function(a,b,c){this.id=a;this.pluginType=b;this.src=c;this.events={};this.attributes={}};
mejs.PluginMediaElement.prototype={pluginElement:null,pluginType:"",isFullScreen:false,playbackRate:-1,defaultPlaybackRate:-1,seekable:[],played:[],paused:true,ended:false,seeking:false,duration:0,error:null,tagName:"",muted:false,volume:1,currentTime:0,play:function(){if(this.pluginApi!=null){this.pluginType=="youtube"||this.pluginType=="vimeo"?this.pluginApi.playVideo():this.pluginApi.playMedia();this.paused=false}},load:function(){if(this.pluginApi!=null){this.pluginType=="youtube"||this.pluginType==
"vimeo"||this.pluginApi.loadMedia();this.paused=false}},pause:function(){if(this.pluginApi!=null){this.pluginType=="youtube"||this.pluginType=="vimeo"?this.pluginApi.pauseVideo():this.pluginApi.pauseMedia();this.paused=true}},stop:function(){if(this.pluginApi!=null){this.pluginType=="youtube"||this.pluginType=="vimeo"?this.pluginApi.stopVideo():this.pluginApi.stopMedia();this.paused=true}},canPlayType:function(a){var b,c,d,e=mejs.plugins[this.pluginType];for(b=0;b<e.length;b++){d=e[b];if(mejs.PluginDetector.hasPluginVersion(this.pluginType,
d.version))for(c=0;c<d.types.length;c++)if(a==d.types[c])return"probably"}return""},positionFullscreenButton:function(a,b,c){this.pluginApi!=null&&this.pluginApi.positionFullscreenButton&&this.pluginApi.positionFullscreenButton(Math.floor(a),Math.floor(b),c)},hideFullscreenButton:function(){this.pluginApi!=null&&this.pluginApi.hideFullscreenButton&&this.pluginApi.hideFullscreenButton()},setSrc:function(a){if(typeof a=="string"){this.pluginApi.setSrc(mejs.Utility.absolutizeUrl(a));this.src=mejs.Utility.absolutizeUrl(a)}else{var b,
c;for(b=0;b<a.length;b++){c=a[b];if(this.canPlayType(c.type)){this.pluginApi.setSrc(mejs.Utility.absolutizeUrl(c.src));this.src=mejs.Utility.absolutizeUrl(a);break}}}},setCurrentTime:function(a){if(this.pluginApi!=null){this.pluginType=="youtube"||this.pluginType=="vimeo"?this.pluginApi.seekTo(a):this.pluginApi.setCurrentTime(a);this.currentTime=a}},setVolume:function(a){if(this.pluginApi!=null){this.pluginType=="youtube"?this.pluginApi.setVolume(a*100):this.pluginApi.setVolume(a);this.volume=a}},
setMuted:function(a){if(this.pluginApi!=null){if(this.pluginType=="youtube"){a?this.pluginApi.mute():this.pluginApi.unMute();this.muted=a;this.dispatchEvent("volumechange")}else this.pluginApi.setMuted(a);this.muted=a}},setVideoSize:function(a,b){if(this.pluginElement&&this.pluginElement.style){this.pluginElement.style.width=a+"px";this.pluginElement.style.height=b+"px"}this.pluginApi!=null&&this.pluginApi.setVideoSize&&this.pluginApi.setVideoSize(a,b)},setFullscreen:function(a){this.pluginApi!=null&&
this.pluginApi.setFullscreen&&this.pluginApi.setFullscreen(a)},enterFullScreen:function(){this.pluginApi!=null&&this.pluginApi.setFullscreen&&this.setFullscreen(true)},exitFullScreen:function(){this.pluginApi!=null&&this.pluginApi.setFullscreen&&this.setFullscreen(false)},addEventListener:function(a,b){this.events[a]=this.events[a]||[];this.events[a].push(b)},removeEventListener:function(a,b){if(!a){this.events={};return true}var c=this.events[a];if(!c)return true;if(!b){this.events[a]=[];return true}for(var d=
0;d<c.length;d++)if(c[d]===b){this.events[a].splice(d,1);return true}return false},dispatchEvent:function(a){var b,c,d=this.events[a];if(d){c=Array.prototype.slice.call(arguments,1);for(b=0;b<d.length;b++)d[b].apply(null,c)}},hasAttribute:function(a){return a in this.attributes},removeAttribute:function(a){delete this.attributes[a]},getAttribute:function(a){if(this.hasAttribute(a))return this.attributes[a];return""},setAttribute:function(a,b){this.attributes[a]=b},remove:function(){mejs.Utility.removeSwf(this.pluginElement.id);
mejs.MediaPluginBridge.unregisterPluginElement(this.pluginElement.id)}};
mejs.MediaPluginBridge={pluginMediaElements:{},htmlMediaElements:{},registerPluginElement:function(a,b,c){this.pluginMediaElements[a]=b;this.htmlMediaElements[a]=c},unregisterPluginElement:function(a){delete this.pluginMediaElements[a];delete this.htmlMediaElements[a]},initPlugin:function(a){var b=this.pluginMediaElements[a],c=this.htmlMediaElements[a];if(b){switch(b.pluginType){case "flash":b.pluginElement=b.pluginApi=document.getElementById(a);break;case "silverlight":b.pluginElement=document.getElementById(b.id);
b.pluginApi=b.pluginElement.Content.MediaElementJS}b.pluginApi!=null&&b.success&&b.success(b,c)}},fireEvent:function(a,b,c){var d,e;if(a=this.pluginMediaElements[a]){b={type:b,target:a};for(d in c){a[d]=c[d];b[d]=c[d]}e=c.bufferedTime||0;b.target.buffered=b.buffered={start:function(){return 0},end:function(){return e},length:1};a.dispatchEvent(b.type,b)}}};
mejs.MediaElementDefaults={mode:"auto",plugins:["flash","silverlight","youtube","vimeo"],enablePluginDebug:false,httpsBasicAuthSite:false,type:"",pluginPath:mejs.Utility.getScriptPath(["mediaelement.js","mediaelement.min.js","mediaelement-and-player.js","mediaelement-and-player.min.js"]),flashName:"flashmediaelement.swf",flashStreamer:"",enablePluginSmoothing:false,enablePseudoStreaming:false,pseudoStreamingStartQueryParam:"start",silverlightName:"silverlightmediaelement.xap",defaultVideoWidth:480,
defaultVideoHeight:270,pluginWidth:-1,pluginHeight:-1,pluginVars:[],timerRate:250,startVolume:0.8,success:function(){},error:function(){}};mejs.MediaElement=function(a,b){return mejs.HtmlMediaElementShim.create(a,b)};
mejs.HtmlMediaElementShim={create:function(a,b){var c=mejs.MediaElementDefaults,d=typeof a=="string"?document.getElementById(a):a,e=d.tagName.toLowerCase(),g=e==="audio"||e==="video",f=g?d.getAttribute("src"):d.getAttribute("href");e=d.getAttribute("poster");var i=d.getAttribute("autoplay"),k=d.getAttribute("preload"),h=d.getAttribute("controls"),j;for(j in b)c[j]=b[j];f=typeof f=="undefined"||f===null||f==""?null:f;e=typeof e=="undefined"||e===null?"":e;k=typeof k=="undefined"||k===null||k==="false"?
"none":k;i=!(typeof i=="undefined"||i===null||i==="false");h=!(typeof h=="undefined"||h===null||h==="false");j=this.determinePlayback(d,c,mejs.MediaFeatures.supportsMediaTag,g,f);j.url=j.url!==null?mejs.Utility.absolutizeUrl(j.url):"";if(j.method=="native"){if(mejs.MediaFeatures.isBustedAndroid){d.src=j.url;d.addEventListener("click",function(){d.play()},false)}return this.updateNative(j,c,i,k)}else if(j.method!=="")return this.createPlugin(j,c,e,i,k,h);else{this.createErrorMessage(j,c,e);return this}},
determinePlayback:function(a,b,c,d,e){var g=[],f,i,k,h={method:"",url:"",htmlMediaElement:a,isVideo:a.tagName.toLowerCase()!="audio"},j;if(typeof b.type!="undefined"&&b.type!=="")if(typeof b.type=="string")g.push({type:b.type,url:e});else for(f=0;f<b.type.length;f++)g.push({type:b.type[f],url:e});else if(e!==null){k=this.formatType(e,a.getAttribute("type"));g.push({type:k,url:e})}else for(f=0;f<a.childNodes.length;f++){i=a.childNodes[f];if(i.nodeType==1&&i.tagName.toLowerCase()=="source"){e=i.getAttribute("src");
k=this.formatType(e,i.getAttribute("type"));i=i.getAttribute("media");if(!i||!window.matchMedia||window.matchMedia&&window.matchMedia(i).matches)g.push({type:k,url:e})}}if(!d&&g.length>0&&g[0].url!==null&&this.getTypeFromFile(g[0].url).indexOf("audio")>-1)h.isVideo=false;if(mejs.MediaFeatures.isBustedAndroid)a.canPlayType=function(m){return m.match(/video\/(mp4|m4v)/gi)!==null?"maybe":""};if(mejs.MediaFeatures.isChromium)a.canPlayType=function(m){return m.match(/video\/(webm|ogv|ogg)/gi)!==null?"maybe":
""};if(c&&(b.mode==="auto"||b.mode==="auto_plugin"||b.mode==="native")&&!(mejs.MediaFeatures.isBustedNativeHTTPS&&b.httpsBasicAuthSite===true)){if(!d){f=document.createElement(h.isVideo?"video":"audio");a.parentNode.insertBefore(f,a);a.style.display="none";h.htmlMediaElement=a=f}for(f=0;f<g.length;f++)if(g[f].type=="video/m3u8"||a.canPlayType(g[f].type).replace(/no/,"")!==""||a.canPlayType(g[f].type.replace(/mp3/,"mpeg")).replace(/no/,"")!==""||a.canPlayType(g[f].type.replace(/m4a/,"mp4")).replace(/no/,
"")!==""){h.method="native";h.url=g[f].url;break}if(h.method==="native"){if(h.url!==null)a.src=h.url;if(b.mode!=="auto_plugin")return h}}if(b.mode==="auto"||b.mode==="auto_plugin"||b.mode==="shim")for(f=0;f<g.length;f++){k=g[f].type;for(a=0;a<b.plugins.length;a++){e=b.plugins[a];i=mejs.plugins[e];for(c=0;c<i.length;c++){j=i[c];if(j.version==null||mejs.PluginDetector.hasPluginVersion(e,j.version))for(d=0;d<j.types.length;d++)if(k==j.types[d]){h.method=e;h.url=g[f].url;return h}}}}if(b.mode==="auto_plugin"&&
h.method==="native")return h;if(h.method===""&&g.length>0)h.url=g[0].url;return h},formatType:function(a,b){return a&&!b?this.getTypeFromFile(a):b&&~b.indexOf(";")?b.substr(0,b.indexOf(";")):b},getTypeFromFile:function(a){a=a.split("?")[0];a=a.substring(a.lastIndexOf(".")+1).toLowerCase();return(/(mp4|m4v|ogg|ogv|m3u8|webm|webmv|flv|wmv|mpeg|mov)/gi.test(a)?"video":"audio")+"/"+this.getTypeFromExtension(a)},getTypeFromExtension:function(a){switch(a){case "mp4":case "m4v":case "m4a":return"mp4";case "webm":case "webma":case "webmv":return"webm";
case "ogg":case "oga":case "ogv":return"ogg";default:return a}},createErrorMessage:function(a,b,c){var d=a.htmlMediaElement,e=document.createElement("div");e.className="me-cannotplay";try{e.style.width=d.width+"px";e.style.height=d.height+"px"}catch(g){}e.innerHTML=b.customError?b.customError:c!==""?'<a href="'+a.url+'"><img src="'+c+'" width="100%" height="100%" /></a>':'<a href="'+a.url+'"><span>'+mejs.i18n.t("Download File")+"</span></a>";d.parentNode.insertBefore(e,d);d.style.display="none";b.error(d)},
createPlugin:function(a,b,c,d,e,g){c=a.htmlMediaElement;var f=1,i=1,k="me_"+a.method+"_"+mejs.meIndex++,h=new mejs.PluginMediaElement(k,a.method,a.url),j=document.createElement("div"),m;h.tagName=c.tagName;for(m=0;m<c.attributes.length;m++){var q=c.attributes[m];q.specified==true&&h.setAttribute(q.name,q.value)}for(m=c.parentNode;m!==null&&m.tagName.toLowerCase()!=="body"&&m.parentNode!=null;){if(m.parentNode.tagName.toLowerCase()==="p"){m.parentNode.parentNode.insertBefore(m,m.parentNode);break}m=
m.parentNode}if(a.isVideo){f=b.pluginWidth>0?b.pluginWidth:b.videoWidth>0?b.videoWidth:c.getAttribute("width")!==null?c.getAttribute("width"):b.defaultVideoWidth;i=b.pluginHeight>0?b.pluginHeight:b.videoHeight>0?b.videoHeight:c.getAttribute("height")!==null?c.getAttribute("height"):b.defaultVideoHeight;f=mejs.Utility.encodeUrl(f);i=mejs.Utility.encodeUrl(i)}else if(b.enablePluginDebug){f=320;i=240}h.success=b.success;mejs.MediaPluginBridge.registerPluginElement(k,h,c);j.className="me-plugin";j.id=
k+"_container";a.isVideo?c.parentNode.insertBefore(j,c):document.body.insertBefore(j,document.body.childNodes[0]);d=["id="+k,"isvideo="+(a.isVideo?"true":"false"),"autoplay="+(d?"true":"false"),"preload="+e,"width="+f,"startvolume="+b.startVolume,"timerrate="+b.timerRate,"flashstreamer="+b.flashStreamer,"height="+i,"pseudostreamstart="+b.pseudoStreamingStartQueryParam];if(a.url!==null)a.method=="flash"?d.push("file="+mejs.Utility.encodeUrl(a.url)):d.push("file="+a.url);b.enablePluginDebug&&d.push("debug=true");
b.enablePluginSmoothing&&d.push("smoothing=true");b.enablePseudoStreaming&&d.push("pseudostreaming=true");g&&d.push("controls=true");if(b.pluginVars)d=d.concat(b.pluginVars);switch(a.method){case "silverlight":j.innerHTML='<object data="data:application/x-silverlight-2," type="application/x-silverlight-2" id="'+k+'" name="'+k+'" width="'+f+'" height="'+i+'" class="mejs-shim"><param name="initParams" value="'+d.join(",")+'" /><param name="windowless" value="true" /><param name="background" value="black" /><param name="minRuntimeVersion" value="3.0.0.0" /><param name="autoUpgrade" value="true" /><param name="source" value="'+
b.pluginPath+b.silverlightName+'" /></object>';break;case "flash":if(mejs.MediaFeatures.isIE){a=document.createElement("div");j.appendChild(a);a.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="'+k+'" width="'+f+'" height="'+i+'" class="mejs-shim"><param name="movie" value="'+b.pluginPath+b.flashName+"?x="+new Date+'" /><param name="flashvars" value="'+d.join("&amp;")+'" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><param name="scale" value="default" /></object>'}else j.innerHTML=
'<embed id="'+k+'" name="'+k+'" play="true" loop="false" quality="high" bgcolor="#000000" wmode="transparent" allowScriptAccess="always" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="//www.macromedia.com/go/getflashplayer" src="'+b.pluginPath+b.flashName+'" flashvars="'+d.join("&")+'" width="'+f+'" height="'+i+'" scale="default"class="mejs-shim"></embed>';break;case "youtube":if(a.url.lastIndexOf("youtu.be")!=-1){a=a.url.substr(a.url.lastIndexOf("/")+1);if(a.indexOf("?")!=
-1)a=a.substr(0,a.indexOf("?"))}else a=a.url.substr(a.url.lastIndexOf("=")+1);youtubeSettings={container:j,containerId:j.id,pluginMediaElement:h,pluginId:k,videoId:a,height:i,width:f};mejs.PluginDetector.hasPluginVersion("flash",[10,0,0])?mejs.YouTubeApi.createFlash(youtubeSettings):mejs.YouTubeApi.enqueueIframe(youtubeSettings);break;case "vimeo":b=k+"_player";h.vimeoid=a.url.substr(a.url.lastIndexOf("/")+1);j.innerHTML='<iframe src="//player.vimeo.com/video/'+h.vimeoid+"?api=1&portrait=0&byline=0&title=0&player_id="+
b+'" width="'+f+'" height="'+i+'" frameborder="0" class="mejs-shim" id="'+b+'"></iframe>';if(typeof $f=="function"){var l=$f(j.childNodes[0]);l.addEvent("ready",function(){function o(n,p,r,s){n={type:r,target:p};if(r=="timeupdate"){p.currentTime=n.currentTime=s.seconds;p.duration=n.duration=s.duration}p.dispatchEvent(n.type,n)}$.extend(l,{playVideo:function(){l.api("play")},stopVideo:function(){l.api("unload")},pauseVideo:function(){l.api("pause")},seekTo:function(n){l.api("seekTo",n)},setVolume:function(n){l.api("setVolume",
n)},setMuted:function(n){if(n){l.lastVolume=l.api("getVolume");l.api("setVolume",0)}else{l.api("setVolume",l.lastVolume);delete l.lastVolume}}});l.addEvent("play",function(){o(l,h,"play");o(l,h,"playing")});l.addEvent("pause",function(){o(l,h,"pause")});l.addEvent("finish",function(){o(l,h,"ended")});l.addEvent("playProgress",function(n){o(l,h,"timeupdate",n)});h.pluginElement=j;h.pluginApi=l;mejs.MediaPluginBridge.initPlugin(k)})}else console.warn("You need to include froogaloop for vimeo to work")}c.style.display=
"none";c.removeAttribute("autoplay");return h},updateNative:function(a,b){var c=a.htmlMediaElement,d;for(d in mejs.HtmlMediaElement)c[d]=mejs.HtmlMediaElement[d];b.success(c,c);return c}};
mejs.YouTubeApi={isIframeStarted:false,isIframeLoaded:false,loadIframeApi:function(){if(!this.isIframeStarted){var a=document.createElement("script");a.src="//www.youtube.com/player_api";var b=document.getElementsByTagName("script")[0];b.parentNode.insertBefore(a,b);this.isIframeStarted=true}},iframeQueue:[],enqueueIframe:function(a){if(this.isLoaded)this.createIframe(a);else{this.loadIframeApi();this.iframeQueue.push(a)}},createIframe:function(a){var b=a.pluginMediaElement,c=new YT.Player(a.containerId,
{height:a.height,width:a.width,videoId:a.videoId,playerVars:{controls:0},events:{onReady:function(){a.pluginMediaElement.pluginApi=c;mejs.MediaPluginBridge.initPlugin(a.pluginId);setInterval(function(){mejs.YouTubeApi.createEvent(c,b,"timeupdate")},250)},onStateChange:function(d){mejs.YouTubeApi.handleStateChange(d.data,c,b)}}})},createEvent:function(a,b,c){c={type:c,target:b};if(a&&a.getDuration){b.currentTime=c.currentTime=a.getCurrentTime();b.duration=c.duration=a.getDuration();c.paused=b.paused;
c.ended=b.ended;c.muted=a.isMuted();c.volume=a.getVolume()/100;c.bytesTotal=a.getVideoBytesTotal();c.bufferedBytes=a.getVideoBytesLoaded();var d=c.bufferedBytes/c.bytesTotal*c.duration;c.target.buffered=c.buffered={start:function(){return 0},end:function(){return d},length:1}}b.dispatchEvent(c.type,c)},iFrameReady:function(){for(this.isIframeLoaded=this.isLoaded=true;this.iframeQueue.length>0;)this.createIframe(this.iframeQueue.pop())},flashPlayers:{},createFlash:function(a){this.flashPlayers[a.pluginId]=
a;var b,c="//www.youtube.com/apiplayer?enablejsapi=1&amp;playerapiid="+a.pluginId+"&amp;version=3&amp;autoplay=0&amp;controls=0&amp;modestbranding=1&loop=0";if(mejs.MediaFeatures.isIE){b=document.createElement("div");a.container.appendChild(b);b.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" id="'+a.pluginId+'" width="'+a.width+'" height="'+a.height+'" class="mejs-shim"><param name="movie" value="'+
c+'" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /></object>'}else a.container.innerHTML='<object type="application/x-shockwave-flash" id="'+a.pluginId+'" data="'+c+'" width="'+a.width+'" height="'+a.height+'" style="visibility: visible; " class="mejs-shim"><param name="allowScriptAccess" value="always"><param name="wmode" value="transparent"></object>'},flashReady:function(a){var b=this.flashPlayers[a],c=
document.getElementById(a),d=b.pluginMediaElement;d.pluginApi=d.pluginElement=c;mejs.MediaPluginBridge.initPlugin(a);c.cueVideoById(b.videoId);a=b.containerId+"_callback";window[a]=function(e){mejs.YouTubeApi.handleStateChange(e,c,d)};c.addEventListener("onStateChange",a);setInterval(function(){mejs.YouTubeApi.createEvent(c,d,"timeupdate")},250);mejs.YouTubeApi.createEvent(c,d,"canplay")},handleStateChange:function(a,b,c){switch(a){case -1:c.paused=true;c.ended=true;mejs.YouTubeApi.createEvent(b,
c,"loadedmetadata");break;case 0:c.paused=false;c.ended=true;mejs.YouTubeApi.createEvent(b,c,"ended");break;case 1:c.paused=false;c.ended=false;mejs.YouTubeApi.createEvent(b,c,"play");mejs.YouTubeApi.createEvent(b,c,"playing");break;case 2:c.paused=true;c.ended=false;mejs.YouTubeApi.createEvent(b,c,"pause");break;case 3:mejs.YouTubeApi.createEvent(b,c,"progress")}}};function onYouTubePlayerAPIReady(){mejs.YouTubeApi.iFrameReady()}function onYouTubePlayerReady(a){mejs.YouTubeApi.flashReady(a)}
window.mejs=mejs;window.MediaElement=mejs.MediaElement;
(function(a,b){var c={locale:{language:"",strings:{}},methods:{}};c.getLanguage=function(){return(c.locale.language||window.navigator.userLanguage||window.navigator.language).substr(0,2).toLowerCase()};if(typeof mejsL10n!="undefined")c.locale.language=mejsL10n.language;c.methods.checkPlain=function(d){var e,g,f={"&":"&amp;",'"':"&quot;","<":"&lt;",">":"&gt;"};d=String(d);for(e in f)if(f.hasOwnProperty(e)){g=RegExp(e,"g");d=d.replace(g,f[e])}return d};c.methods.t=function(d,e){if(c.locale.strings&&
c.locale.strings[e.context]&&c.locale.strings[e.context][d])d=c.locale.strings[e.context][d];return c.methods.checkPlain(d)};c.t=function(d,e){if(typeof d==="string"&&d.length>0){var g=c.getLanguage();e=e||{context:g};return c.methods.t(d,e)}else throw{name:"InvalidArgumentException",message:"First argument is either not a string or empty."};};b.i18n=c})(document,mejs);(function(a){if(typeof mejsL10n!="undefined")a[mejsL10n.language]=mejsL10n.strings})(mejs.i18n.locale.strings);
(function(a){if(typeof a.de==="undefined")a.de={Fullscreen:"Vollbild","Go Fullscreen":"Vollbild an","Turn off Fullscreen":"Vollbild aus",Close:"Schlie\u00dfen"}})(mejs.i18n.locale.strings);(function(a){if(typeof a.zh==="undefined")a.zh={Fullscreen:"\u5168\u87a2\u5e55","Go Fullscreen":"\u5168\u5c4f\u6a21\u5f0f","Turn off Fullscreen":"\u9000\u51fa\u5168\u5c4f\u6a21\u5f0f",Close:"\u95dc\u9589"}})(mejs.i18n.locale.strings);

/*!
 * MediaElementPlayer
 * http://mediaelementjs.com/
 *
 * Creates a controller bar for HTML5 <video> add <audio> tags
 * using jQuery and MediaElement.js (HTML5 Flash/Silverlight wrapper)
 *
 * Copyright 2010-2013, John Dyer (http://j.hn/)
 * License: MIT
 *
 */if(typeof jQuery!="undefined")mejs.$=jQuery;else if(typeof $j!="undefined")mejs.$=$j;else if(typeof ender!="undefined")mejs.$=ender;
(function(f){mejs.MepDefaults={poster:"",showPosterWhenEnded:false,defaultVideoWidth:480,defaultVideoHeight:270,videoWidth:-1,videoHeight:-1,defaultAudioWidth:400,defaultAudioHeight:30,defaultSeekBackwardInterval:function(a){return a.duration*0.05},defaultSeekForwardInterval:function(a){return a.duration*0.05},setDimensions:true,audioWidth:-1,audioHeight:-1,startVolume:0.8,loop:false,autoRewind:true,enableAutosize:true,alwaysShowHours:false,showTimecodeFrameCount:false,framesPerSecond:25,autosizeProgress:true,
alwaysShowControls:false,hideVideoControlsOnLoad:false,clickToPlayPause:true,iPadUseNativeControls:false,iPhoneUseNativeControls:false,AndroidUseNativeControls:false,features:["playpause","current","progress","duration","tracks","volume","fullscreen"],isVideo:true,enableKeyboard:true,pauseOtherPlayers:true,keyActions:[{keys:[32,179],action:function(a,b){b.paused||b.ended?a.play():a.pause()}},{keys:[38],action:function(a,b){a.container.find(".mejs-volume-slider").css("display","block");if(a.isVideo){a.showControls();
a.startControlsTimer()}b.setVolume(Math.min(b.volume+0.1,1))}},{keys:[40],action:function(a,b){a.container.find(".mejs-volume-slider").css("display","block");if(a.isVideo){a.showControls();a.startControlsTimer()}b.setVolume(Math.max(b.volume-0.1,0))}},{keys:[37,227],action:function(a,b){if(!isNaN(b.duration)&&b.duration>0){if(a.isVideo){a.showControls();a.startControlsTimer()}var c=Math.max(b.currentTime-a.options.defaultSeekBackwardInterval(b),0);b.setCurrentTime(c)}}},{keys:[39,228],action:function(a,
b){if(!isNaN(b.duration)&&b.duration>0){if(a.isVideo){a.showControls();a.startControlsTimer()}var c=Math.min(b.currentTime+a.options.defaultSeekForwardInterval(b),b.duration);b.setCurrentTime(c)}}},{keys:[70],action:function(a){if(typeof a.enterFullScreen!="undefined")a.isFullScreen?a.exitFullScreen():a.enterFullScreen()}},{keys:[77],action:function(a){a.container.find(".mejs-volume-slider").css("display","block");if(a.isVideo){a.showControls();a.startControlsTimer()}a.media.muted?a.setMuted(false):
a.setMuted(true)}}]};mejs.mepIndex=0;mejs.players={};mejs.MediaElementPlayer=function(a,b){if(!(this instanceof mejs.MediaElementPlayer))return new mejs.MediaElementPlayer(a,b);this.$media=this.$node=f(a);this.node=this.media=this.$media[0];if(typeof this.node.player!="undefined")return this.node.player;else this.node.player=this;if(typeof b=="undefined")b=this.$node.data("mejsoptions");this.options=f.extend({},mejs.MepDefaults,b);this.id="mep_"+mejs.mepIndex++;mejs.players[this.id]=this;this.init();
return this};mejs.MediaElementPlayer.prototype={hasFocus:false,controlsAreVisible:true,init:function(){var a=this,b=mejs.MediaFeatures,c=f.extend(true,{},a.options,{success:function(d,g){a.meReady(d,g)},error:function(d){a.handleError(d)}}),e=a.media.tagName.toLowerCase();a.isDynamic=e!=="audio"&&e!=="video";a.isVideo=a.isDynamic?a.options.isVideo:e!=="audio"&&a.options.isVideo;if(b.isiPad&&a.options.iPadUseNativeControls||b.isiPhone&&a.options.iPhoneUseNativeControls){a.$media.attr("controls","controls");
b.isiPad&&a.media.getAttribute("autoplay")!==null&&a.play()}else if(!(b.isAndroid&&a.options.AndroidUseNativeControls)){a.$media.removeAttr("controls");a.container=f('<div id="'+a.id+'" class="mejs-container '+(mejs.MediaFeatures.svg?"svg":"no-svg")+'"><div class="mejs-inner"><div class="mejs-mediaelement"></div><div class="mejs-layers"></div><div class="mejs-controls"></div><div class="mejs-clear"></div></div></div>').addClass(a.$media[0].className).insertBefore(a.$media);a.container.addClass((b.isAndroid?
"mejs-android ":"")+(b.isiOS?"mejs-ios ":"")+(b.isiPad?"mejs-ipad ":"")+(b.isiPhone?"mejs-iphone ":"")+(a.isVideo?"mejs-video ":"mejs-audio "));if(b.isiOS){b=a.$media.clone();a.container.find(".mejs-mediaelement").append(b);a.$media.remove();a.$node=a.$media=b;a.node=a.media=b[0]}else a.container.find(".mejs-mediaelement").append(a.$media);a.controls=a.container.find(".mejs-controls");a.layers=a.container.find(".mejs-layers");b=a.isVideo?"video":"audio";e=b.substring(0,1).toUpperCase()+b.substring(1);
a.width=a.options[b+"Width"]>0||a.options[b+"Width"].toString().indexOf("%")>-1?a.options[b+"Width"]:a.media.style.width!==""&&a.media.style.width!==null?a.media.style.width:a.media.getAttribute("width")!==null?a.$media.attr("width"):a.options["default"+e+"Width"];a.height=a.options[b+"Height"]>0||a.options[b+"Height"].toString().indexOf("%")>-1?a.options[b+"Height"]:a.media.style.height!==""&&a.media.style.height!==null?a.media.style.height:a.$media[0].getAttribute("height")!==null?a.$media.attr("height"):
a.options["default"+e+"Height"];a.setPlayerSize(a.width,a.height);c.pluginWidth=a.width;c.pluginHeight=a.height}mejs.MediaElement(a.$media[0],c);typeof a.container!="undefined"&&a.controlsAreVisible&&a.container.trigger("controlsshown")},showControls:function(a){var b=this;a=typeof a=="undefined"||a;if(!b.controlsAreVisible){if(a){b.controls.css("visibility","visible").stop(true,true).fadeIn(200,function(){b.controlsAreVisible=true;b.container.trigger("controlsshown")});b.container.find(".mejs-control").css("visibility",
"visible").stop(true,true).fadeIn(200,function(){b.controlsAreVisible=true})}else{b.controls.css("visibility","visible").css("display","block");b.container.find(".mejs-control").css("visibility","visible").css("display","block");b.controlsAreVisible=true;b.container.trigger("controlsshown")}b.setControlsSize()}},hideControls:function(a){var b=this;a=typeof a=="undefined"||a;if(!(!b.controlsAreVisible||b.options.alwaysShowControls))if(a){b.controls.stop(true,true).fadeOut(200,function(){f(this).css("visibility",
"hidden").css("display","block");b.controlsAreVisible=false;b.container.trigger("controlshidden")});b.container.find(".mejs-control").stop(true,true).fadeOut(200,function(){f(this).css("visibility","hidden").css("display","block")})}else{b.controls.css("visibility","hidden").css("display","block");b.container.find(".mejs-control").css("visibility","hidden").css("display","block");b.controlsAreVisible=false;b.container.trigger("controlshidden")}},controlsTimer:null,startControlsTimer:function(a){var b=
this;a=typeof a!="undefined"?a:1500;b.killControlsTimer("start");b.controlsTimer=setTimeout(function(){b.hideControls();b.killControlsTimer("hide")},a)},killControlsTimer:function(){if(this.controlsTimer!==null){clearTimeout(this.controlsTimer);delete this.controlsTimer;this.controlsTimer=null}},controlsEnabled:true,disableControls:function(){this.killControlsTimer();this.hideControls(false);this.controlsEnabled=false},enableControls:function(){this.showControls(false);this.controlsEnabled=true},
meReady:function(a,b){var c=this,e=mejs.MediaFeatures,d=b.getAttribute("autoplay");d=!(typeof d=="undefined"||d===null||d==="false");var g;if(!c.created){c.created=true;c.media=a;c.domNode=b;if(!(e.isAndroid&&c.options.AndroidUseNativeControls)&&!(e.isiPad&&c.options.iPadUseNativeControls)&&!(e.isiPhone&&c.options.iPhoneUseNativeControls)){c.buildposter(c,c.controls,c.layers,c.media);c.buildkeyboard(c,c.controls,c.layers,c.media);c.buildoverlays(c,c.controls,c.layers,c.media);c.findTracks();for(g in c.options.features){e=
c.options.features[g];if(c["build"+e])try{c["build"+e](c,c.controls,c.layers,c.media)}catch(k){}}c.container.trigger("controlsready");c.setPlayerSize(c.width,c.height);c.setControlsSize();if(c.isVideo){if(mejs.MediaFeatures.hasTouch)c.$media.bind("touchstart",function(){if(c.controlsAreVisible)c.hideControls(false);else c.controlsEnabled&&c.showControls(false)});else{c.clickToPlayPauseCallback=function(){if(c.options.clickToPlayPause)c.media.paused?c.play():c.pause()};c.media.addEventListener("click",
c.clickToPlayPauseCallback,false);c.container.bind("mouseenter mouseover",function(){if(c.controlsEnabled)if(!c.options.alwaysShowControls){c.killControlsTimer("enter");c.showControls();c.startControlsTimer(2500)}}).bind("mousemove",function(){if(c.controlsEnabled){c.controlsAreVisible||c.showControls();c.options.alwaysShowControls||c.startControlsTimer(2500)}}).bind("mouseleave",function(){c.controlsEnabled&&!c.media.paused&&!c.options.alwaysShowControls&&c.startControlsTimer(1E3)})}c.options.hideVideoControlsOnLoad&&
c.hideControls(false);d&&!c.options.alwaysShowControls&&c.hideControls();c.options.enableAutosize&&c.media.addEventListener("loadedmetadata",function(j){if(c.options.videoHeight<=0&&c.domNode.getAttribute("height")===null&&!isNaN(j.target.videoHeight)){c.setPlayerSize(j.target.videoWidth,j.target.videoHeight);c.setControlsSize();c.media.setVideoSize(j.target.videoWidth,j.target.videoHeight)}},false)}a.addEventListener("play",function(){for(var j in mejs.players){var m=mejs.players[j];m.id!=c.id&&
c.options.pauseOtherPlayers&&!m.paused&&!m.ended&&m.pause();m.hasFocus=false}c.hasFocus=true},false);c.media.addEventListener("ended",function(){if(c.options.autoRewind)try{c.media.setCurrentTime(0)}catch(j){}c.media.pause();c.setProgressRail&&c.setProgressRail();c.setCurrentRail&&c.setCurrentRail();if(c.options.loop)c.play();else!c.options.alwaysShowControls&&c.controlsEnabled&&c.showControls()},false);c.media.addEventListener("loadedmetadata",function(){c.updateDuration&&c.updateDuration();c.updateCurrent&&
c.updateCurrent();if(!c.isFullScreen){c.setPlayerSize(c.width,c.height);c.setControlsSize()}},false);setTimeout(function(){c.setPlayerSize(c.width,c.height);c.setControlsSize()},50);c.globalBind("resize",function(){c.isFullScreen||mejs.MediaFeatures.hasTrueNativeFullScreen&&document.webkitIsFullScreen||c.setPlayerSize(c.width,c.height);c.setControlsSize()});c.media.pluginType=="youtube"&&c.options.autoplay&&c.container.find(".mejs-overlay-play").hide()}d&&a.pluginType=="native"&&c.play();if(c.options.success)typeof c.options.success==
"string"?window[c.options.success](c.media,c.domNode,c):c.options.success(c.media,c.domNode,c)}},handleError:function(a){this.controls.hide();this.options.error&&this.options.error(a)},setPlayerSize:function(a,b){if(!this.options.setDimensions)return false;if(typeof a!="undefined")this.width=a;if(typeof b!="undefined")this.height=b;if(this.height.toString().indexOf("%")>0||this.$node.css("max-width")==="100%"||this.$node[0].currentStyle&&this.$node[0].currentStyle.maxWidth==="100%"){var c=this.isVideo?
this.media.videoWidth&&this.media.videoWidth>0?this.media.videoWidth:this.media.getAttribute("width")!==null?this.media.getAttribute("width"):this.options.defaultVideoWidth:this.options.defaultAudioWidth,e=this.isVideo?this.media.videoHeight&&this.media.videoHeight>0?this.media.videoHeight:this.media.getAttribute("height")!==null?this.media.getAttribute("height"):this.options.defaultVideoHeight:this.options.defaultAudioHeight,d=this.container.parent().closest(":visible").width(),g=this.container.parent().closest(":visible").height();
c=this.isVideo||!this.options.autosizeProgress?parseInt(d*e/c,10):e;if(isNaN(c)||g!=0&&c>g)c=g;if(this.container.parent()[0].tagName.toLowerCase()==="body"){d=f(window).width();c=f(window).height()}if(c!=0&&d!=0){this.container.width(d).height(c);this.$media.add(this.container.find(".mejs-shim")).width("100%").height("100%");this.isVideo&&this.media.setVideoSize&&this.media.setVideoSize(d,c);this.layers.children(".mejs-layer").width("100%").height("100%")}}else{this.container.width(this.width).height(this.height);
this.layers.children(".mejs-layer").width(this.width).height(this.height)}d=this.layers.find(".mejs-overlay-play");g=d.find(".mejs-overlay-button");d.height(this.container.height()-this.controls.height());g.css("margin-top","-"+(g.height()/2-this.controls.height()/2).toString()+"px")},setControlsSize:function(){var a=0,b=0,c=this.controls.find(".mejs-time-rail"),e=this.controls.find(".mejs-time-total");this.controls.find(".mejs-time-current");this.controls.find(".mejs-time-loaded");var d=c.siblings(),
g=d.last(),k=null;if(!(!this.container.is(":visible")||!c.length||!c.is(":visible"))){if(this.options&&!this.options.autosizeProgress)b=parseInt(c.css("width"));if(b===0||!b){d.each(function(){var j=f(this);if(j.css("position")!="absolute"&&j.is(":visible"))a+=f(this).outerWidth(true)});b=this.controls.width()-a-(c.outerWidth(true)-c.width())}do{c.width(b);e.width(b-(e.outerWidth(true)-e.width()));if(g.css("position")!="absolute"){k=g.position();b--}}while(k!=null&&k.top>0&&b>0);this.setProgressRail&&
this.setProgressRail();this.setCurrentRail&&this.setCurrentRail()}},buildposter:function(a,b,c,e){var d=f('<div class="mejs-poster mejs-layer"></div>').appendTo(c);b=a.$media.attr("poster");if(a.options.poster!=="")b=a.options.poster;b!==""&&b!=null?this.setPoster(b):d.hide();e.addEventListener("play",function(){d.hide()},false);a.options.showPosterWhenEnded&&a.options.autoRewind&&e.addEventListener("ended",function(){d.show()},false)},setPoster:function(a){var b=this.container.find(".mejs-poster"),
c=b.find("img");if(c.length==0)c=f('<img width="100%" height="100%" />').appendTo(b);c.attr("src",a);b.css({"background-image":"url("+a+")"})},buildoverlays:function(a,b,c,e){var d=this;if(a.isVideo){var g=f('<div class="mejs-overlay mejs-layer"><div class="mejs-overlay-loading"><span></span></div></div>').hide().appendTo(c),k=f('<div class="mejs-overlay mejs-layer"><div class="mejs-overlay-error"></div></div>').hide().appendTo(c),j=f('<div class="mejs-overlay mejs-layer mejs-overlay-play"><div class="mejs-overlay-button"></div></div>').appendTo(c).bind("click",
function(){d.options.clickToPlayPause&&e.paused&&e.play()});e.addEventListener("play",function(){j.hide();g.hide();b.find(".mejs-time-buffering").hide();k.hide()},false);e.addEventListener("playing",function(){j.hide();g.hide();b.find(".mejs-time-buffering").hide();k.hide()},false);e.addEventListener("seeking",function(){g.show();b.find(".mejs-time-buffering").show()},false);e.addEventListener("seeked",function(){g.hide();b.find(".mejs-time-buffering").hide()},false);e.addEventListener("pause",function(){mejs.MediaFeatures.isiPhone||
j.show()},false);e.addEventListener("waiting",function(){g.show();b.find(".mejs-time-buffering").show()},false);e.addEventListener("loadeddata",function(){g.show();b.find(".mejs-time-buffering").show()},false);e.addEventListener("canplay",function(){g.hide();b.find(".mejs-time-buffering").hide()},false);e.addEventListener("error",function(){g.hide();b.find(".mejs-time-buffering").hide();k.show();k.find("mejs-overlay-error").html("Error loading this resource")},false);e.addEventListener("keydown",
function(m){d.onkeydown(a,e,m)},false)}},buildkeyboard:function(a,b,c,e){var d=this;d.globalBind("keydown",function(g){return d.onkeydown(a,e,g)});d.globalBind("click",function(g){a.hasFocus=f(g.target).closest(".mejs-container").length!=0})},onkeydown:function(a,b,c){if(a.hasFocus&&a.options.enableKeyboard)for(var e=0,d=a.options.keyActions.length;e<d;e++)for(var g=a.options.keyActions[e],k=0,j=g.keys.length;k<j;k++)if(c.keyCode==g.keys[k]){typeof c.preventDefault=="function"&&c.preventDefault();
g.action(a,b,c.keyCode);return false}return true},findTracks:function(){var a=this,b=a.$media.find("track");a.tracks=[];b.each(function(c,e){e=f(e);a.tracks.push({srclang:e.attr("srclang")?e.attr("srclang").toLowerCase():"",src:e.attr("src"),kind:e.attr("kind"),label:e.attr("label")||"",entries:[],isLoaded:false})})},changeSkin:function(a){this.container[0].className="mejs-container "+a;this.setPlayerSize(this.width,this.height);this.setControlsSize()},play:function(){this.load();this.media.play()},
pause:function(){try{this.media.pause()}catch(a){}},load:function(){this.isLoaded||this.media.load();this.isLoaded=true},setMuted:function(a){this.media.setMuted(a)},setCurrentTime:function(a){this.media.setCurrentTime(a)},getCurrentTime:function(){return this.media.currentTime},setVolume:function(a){this.media.setVolume(a)},getVolume:function(){return this.media.volume},setSrc:function(a){this.media.setSrc(a)},remove:function(){var a,b;for(a in this.options.features){b=this.options.features[a];if(this["clean"+
b])try{this["clean"+b](this)}catch(c){}}if(this.isDynamic)this.$node.insertBefore(this.container);else{this.$media.prop("controls",true);this.$node.clone().insertBefore(this.container).show();this.$node.remove()}this.media.pluginType!=="native"&&this.media.remove();delete mejs.players[this.id];typeof this.container=="object"&&this.container.remove();this.globalUnbind();delete this.node.player}};(function(){function a(c,e){var d={d:[],w:[]};f.each((c||"").split(" "),function(g,k){var j=k+"."+e;if(j.indexOf(".")===
0){d.d.push(j);d.w.push(j)}else d[b.test(k)?"w":"d"].push(j)});d.d=d.d.join(" ");d.w=d.w.join(" ");return d}var b=/^((after|before)print|(before)?unload|hashchange|message|o(ff|n)line|page(hide|show)|popstate|resize|storage)\b/;mejs.MediaElementPlayer.prototype.globalBind=function(c,e,d){c=a(c,this.id);c.d&&f(document).bind(c.d,e,d);c.w&&f(window).bind(c.w,e,d)};mejs.MediaElementPlayer.prototype.globalUnbind=function(c,e){c=a(c,this.id);c.d&&f(document).unbind(c.d,e);c.w&&f(window).unbind(c.w,e)}})();
if(typeof f!="undefined"){f.fn.mediaelementplayer=function(a){a===false?this.each(function(){var b=f(this).data("mediaelementplayer");b&&b.remove();f(this).removeData("mediaelementplayer")}):this.each(function(){f(this).data("mediaelementplayer",new mejs.MediaElementPlayer(this,a))});return this};f(document).ready(function(){f(".mejs-player").mediaelementplayer()})}window.MediaElementPlayer=mejs.MediaElementPlayer})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{playpauseText:mejs.i18n.t("Play/Pause")});f.extend(MediaElementPlayer.prototype,{buildplaypause:function(a,b,c,e){var d=f('<div class="mejs-button mejs-playpause-button mejs-play" ><button type="button" aria-controls="'+this.id+'" title="'+this.options.playpauseText+'" aria-label="'+this.options.playpauseText+'"></button></div>').appendTo(b).click(function(g){g.preventDefault();e.paused?e.play():e.pause();return false});e.addEventListener("play",function(){d.removeClass("mejs-play").addClass("mejs-pause")},
false);e.addEventListener("playing",function(){d.removeClass("mejs-play").addClass("mejs-pause")},false);e.addEventListener("pause",function(){d.removeClass("mejs-pause").addClass("mejs-play")},false);e.addEventListener("paused",function(){d.removeClass("mejs-pause").addClass("mejs-play")},false)}})})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{stopText:"Stop"});f.extend(MediaElementPlayer.prototype,{buildstop:function(a,b,c,e){f('<div class="mejs-button mejs-stop-button mejs-stop"><button type="button" aria-controls="'+this.id+'" title="'+this.options.stopText+'" aria-label="'+this.options.stopText+'"></button></div>').appendTo(b).click(function(){e.paused||e.pause();if(e.currentTime>0){e.setCurrentTime(0);e.pause();b.find(".mejs-time-current").width("0px");b.find(".mejs-time-handle").css("left",
"0px");b.find(".mejs-time-float-current").html(mejs.Utility.secondsToTimeCode(0));b.find(".mejs-currenttime").html(mejs.Utility.secondsToTimeCode(0));c.find(".mejs-poster").show()}})}})})(mejs.$);
(function(f){f.extend(MediaElementPlayer.prototype,{buildprogress:function(a,b,c,e){f('<div class="mejs-time-rail"><span class="mejs-time-total"><span class="mejs-time-buffering"></span><span class="mejs-time-loaded"></span><span class="mejs-time-current"></span><span class="mejs-time-handle"></span><span class="mejs-time-float"><span class="mejs-time-float-current">00:00</span><span class="mejs-time-float-corner"></span></span></span></div>').appendTo(b);b.find(".mejs-time-buffering").hide();var d=
this,g=b.find(".mejs-time-total");c=b.find(".mejs-time-loaded");var k=b.find(".mejs-time-current"),j=b.find(".mejs-time-handle"),m=b.find(".mejs-time-float"),q=b.find(".mejs-time-float-current"),p=function(h){h=h.originalEvent.changedTouches?h.originalEvent.changedTouches[0].pageX:h.pageX;var l=g.offset(),r=g.outerWidth(true),n=0,o=n=0;if(e.duration){if(h<l.left)h=l.left;else if(h>r+l.left)h=r+l.left;o=h-l.left;n=o/r;n=n<=0.02?0:n*e.duration;t&&n!==e.currentTime&&e.setCurrentTime(n);if(!mejs.MediaFeatures.hasTouch){m.css("left",
o);q.html(mejs.Utility.secondsToTimeCode(n));m.show()}}},t=false;g.bind("mousedown touchstart",function(h){if(h.which===1||h.which===0){t=true;p(h);d.globalBind("mousemove.dur touchmove.dur",function(l){p(l)});d.globalBind("mouseup.dur touchend.dur",function(){t=false;m.hide();d.globalUnbind(".dur")});return false}}).bind("mouseenter",function(){d.globalBind("mousemove.dur",function(h){p(h)});mejs.MediaFeatures.hasTouch||m.show()}).bind("mouseleave",function(){if(!t){d.globalUnbind(".dur");m.hide()}});
e.addEventListener("progress",function(h){a.setProgressRail(h);a.setCurrentRail(h)},false);e.addEventListener("timeupdate",function(h){a.setProgressRail(h);a.setCurrentRail(h)},false);d.loaded=c;d.total=g;d.current=k;d.handle=j},setProgressRail:function(a){var b=a!=undefined?a.target:this.media,c=null;if(b&&b.buffered&&b.buffered.length>0&&b.buffered.end&&b.duration)c=b.buffered.end(0)/b.duration;else if(b&&b.bytesTotal!=undefined&&b.bytesTotal>0&&b.bufferedBytes!=undefined)c=b.bufferedBytes/b.bytesTotal;
else if(a&&a.lengthComputable&&a.total!=0)c=a.loaded/a.total;if(c!==null){c=Math.min(1,Math.max(0,c));this.loaded&&this.total&&this.loaded.width(this.total.width()*c)}},setCurrentRail:function(){if(this.media.currentTime!=undefined&&this.media.duration)if(this.total&&this.handle){var a=Math.round(this.total.width()*this.media.currentTime/this.media.duration),b=a-Math.round(this.handle.outerWidth(true)/2);this.current.width(a);this.handle.css("left",b)}}})})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{duration:-1,timeAndDurationSeparator:"<span> | </span>"});f.extend(MediaElementPlayer.prototype,{buildcurrent:function(a,b,c,e){f('<div class="mejs-time"><span class="mejs-currenttime">'+(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00")+"</span></div>").appendTo(b);this.currenttime=this.controls.find(".mejs-currenttime");e.addEventListener("timeupdate",function(){a.updateCurrent()},false)},buildduration:function(a,b,
c,e){if(b.children().last().find(".mejs-currenttime").length>0)f(this.options.timeAndDurationSeparator+'<span class="mejs-duration">'+(this.options.duration>0?mejs.Utility.secondsToTimeCode(this.options.duration,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25):(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00"))+"</span>").appendTo(b.find(".mejs-time"));else{b.find(".mejs-currenttime").parent().addClass("mejs-currenttime-container");
f('<div class="mejs-time mejs-duration-container"><span class="mejs-duration">'+(this.options.duration>0?mejs.Utility.secondsToTimeCode(this.options.duration,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25):(a.options.alwaysShowHours?"00:":"")+(a.options.showTimecodeFrameCount?"00:00:00":"00:00"))+"</span></div>").appendTo(b)}this.durationD=this.controls.find(".mejs-duration");e.addEventListener("timeupdate",function(){a.updateDuration()},
false)},updateCurrent:function(){if(this.currenttime)this.currenttime.html(mejs.Utility.secondsToTimeCode(this.media.currentTime,this.options.alwaysShowHours||this.media.duration>3600,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25))},updateDuration:function(){this.container.toggleClass("mejs-long-video",this.media.duration>3600);if(this.durationD&&(this.options.duration>0||this.media.duration))this.durationD.html(mejs.Utility.secondsToTimeCode(this.options.duration>0?this.options.duration:
this.media.duration,this.options.alwaysShowHours,this.options.showTimecodeFrameCount,this.options.framesPerSecond||25))}})})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{muteText:mejs.i18n.t("Mute Toggle"),hideVolumeOnTouchDevices:true,audioVolume:"horizontal",videoVolume:"vertical"});f.extend(MediaElementPlayer.prototype,{buildvolume:function(a,b,c,e){if(!((mejs.MediaFeatures.isAndroid||mejs.MediaFeatures.isiOS)&&this.options.hideVolumeOnTouchDevices)){var d=this,g=d.isVideo?d.options.videoVolume:d.options.audioVolume,k=g=="horizontal"?f('<div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="'+
d.id+'" title="'+d.options.muteText+'" aria-label="'+d.options.muteText+'"></button></div><div class="mejs-horizontal-volume-slider"><div class="mejs-horizontal-volume-total"></div><div class="mejs-horizontal-volume-current"></div><div class="mejs-horizontal-volume-handle"></div></div>').appendTo(b):f('<div class="mejs-button mejs-volume-button mejs-mute"><button type="button" aria-controls="'+d.id+'" title="'+d.options.muteText+'" aria-label="'+d.options.muteText+'"></button><div class="mejs-volume-slider"><div class="mejs-volume-total"></div><div class="mejs-volume-current"></div><div class="mejs-volume-handle"></div></div></div>').appendTo(b),
j=d.container.find(".mejs-volume-slider, .mejs-horizontal-volume-slider"),m=d.container.find(".mejs-volume-total, .mejs-horizontal-volume-total"),q=d.container.find(".mejs-volume-current, .mejs-horizontal-volume-current"),p=d.container.find(".mejs-volume-handle, .mejs-horizontal-volume-handle"),t=function(n,o){if(!j.is(":visible")&&typeof o=="undefined"){j.show();t(n,true);j.hide()}else{n=Math.max(0,n);n=Math.min(n,1);n==0?k.removeClass("mejs-mute").addClass("mejs-unmute"):k.removeClass("mejs-unmute").addClass("mejs-mute");
if(g=="vertical"){var s=m.height(),u=m.position(),v=s-s*n;p.css("top",Math.round(u.top+v-p.height()/2));q.height(s-v);q.css("top",u.top+v)}else{s=m.width();u=m.position();s=s*n;p.css("left",Math.round(u.left+s-p.width()/2));q.width(Math.round(s))}}},h=function(n){var o=null,s=m.offset();if(g=="vertical"){o=m.height();parseInt(m.css("top").replace(/px/,""),10);o=(o-(n.pageY-s.top))/o;if(s.top==0||s.left==0)return}else{o=m.width();o=(n.pageX-s.left)/o}o=Math.max(0,o);o=Math.min(o,1);t(o);o==0?e.setMuted(true):
e.setMuted(false);e.setVolume(o)},l=false,r=false;k.hover(function(){j.show();r=true},function(){r=false;!l&&g=="vertical"&&j.hide()});j.bind("mouseover",function(){r=true}).bind("mousedown",function(n){h(n);d.globalBind("mousemove.vol",function(o){h(o)});d.globalBind("mouseup.vol",function(){l=false;d.globalUnbind(".vol");!r&&g=="vertical"&&j.hide()});l=true;return false});k.find("button").click(function(){e.setMuted(!e.muted)});e.addEventListener("volumechange",function(){if(!l)if(e.muted){t(0);
k.removeClass("mejs-mute").addClass("mejs-unmute")}else{t(e.volume);k.removeClass("mejs-unmute").addClass("mejs-mute")}},false);if(d.container.is(":visible")){t(a.options.startVolume);a.options.startVolume===0&&e.setMuted(true);e.pluginType==="native"&&e.setVolume(a.options.startVolume)}}}})})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{usePluginFullScreen:true,newWindowCallback:function(){return""},fullscreenText:mejs.i18n.t("Fullscreen")});f.extend(MediaElementPlayer.prototype,{isFullScreen:false,isNativeFullScreen:false,isInIframe:false,buildfullscreen:function(a,b,c,e){if(a.isVideo){a.isInIframe=window.location!=window.parent.location;mejs.MediaFeatures.hasTrueNativeFullScreen&&a.globalBind(mejs.MediaFeatures.fullScreenEventName,function(){if(a.isFullScreen)if(mejs.MediaFeatures.isFullScreen()){a.isNativeFullScreen=
true;a.setControlsSize()}else{a.isNativeFullScreen=false;a.exitFullScreen()}});var d=this,g=f('<div class="mejs-button mejs-fullscreen-button"><button type="button" aria-controls="'+d.id+'" title="'+d.options.fullscreenText+'" aria-label="'+d.options.fullscreenText+'"></button></div>').appendTo(b);if(d.media.pluginType==="native"||!d.options.usePluginFullScreen&&!mejs.MediaFeatures.isFirefox)g.click(function(){mejs.MediaFeatures.hasTrueNativeFullScreen&&mejs.MediaFeatures.isFullScreen()||a.isFullScreen?
a.exitFullScreen():a.enterFullScreen()});else{var k=null;if(function(){var h=document.createElement("x"),l=document.documentElement,r=window.getComputedStyle;if(!("pointerEvents"in h.style))return false;h.style.pointerEvents="auto";h.style.pointerEvents="x";l.appendChild(h);r=r&&r(h,"").pointerEvents==="auto";l.removeChild(h);return!!r}()&&!mejs.MediaFeatures.isOpera){var j=false,m=function(){if(j){for(var h in q)q[h].hide();g.css("pointer-events","");d.controls.css("pointer-events","");d.media.removeEventListener("click",
d.clickToPlayPauseCallback);j=false}},q={};b=["top","left","right","bottom"];var p,t=function(){var h=g.offset().left-d.container.offset().left,l=g.offset().top-d.container.offset().top,r=g.outerWidth(true),n=g.outerHeight(true),o=d.container.width(),s=d.container.height();for(p in q)q[p].css({position:"absolute",top:0,left:0});q.top.width(o).height(l);q.left.width(h).height(n).css({top:l});q.right.width(o-h-r).height(n).css({top:l,left:h+r});q.bottom.width(o).height(s-n-l).css({top:l+n})};d.globalBind("resize",
function(){t()});p=0;for(c=b.length;p<c;p++)q[b[p]]=f('<div class="mejs-fullscreen-hover" />').appendTo(d.container).mouseover(m).hide();g.on("mouseover",function(){if(!d.isFullScreen){var h=g.offset(),l=a.container.offset();e.positionFullscreenButton(h.left-l.left,h.top-l.top,false);g.css("pointer-events","none");d.controls.css("pointer-events","none");d.media.addEventListener("click",d.clickToPlayPauseCallback);for(p in q)q[p].show();t();j=true}});e.addEventListener("fullscreenchange",function(){d.isFullScreen=
!d.isFullScreen;d.isFullScreen?d.media.removeEventListener("click",d.clickToPlayPauseCallback):d.media.addEventListener("click",d.clickToPlayPauseCallback);m()});d.globalBind("mousemove",function(h){if(j){var l=g.offset();if(h.pageY<l.top||h.pageY>l.top+g.outerHeight(true)||h.pageX<l.left||h.pageX>l.left+g.outerWidth(true)){g.css("pointer-events","");d.controls.css("pointer-events","");j=false}}})}else g.on("mouseover",function(){if(k!==null){clearTimeout(k);delete k}var h=g.offset(),l=a.container.offset();
e.positionFullscreenButton(h.left-l.left,h.top-l.top,true)}).on("mouseout",function(){if(k!==null){clearTimeout(k);delete k}k=setTimeout(function(){e.hideFullscreenButton()},1500)})}a.fullscreenBtn=g;d.globalBind("keydown",function(h){if((mejs.MediaFeatures.hasTrueNativeFullScreen&&mejs.MediaFeatures.isFullScreen()||d.isFullScreen)&&h.keyCode==27)a.exitFullScreen()})}},cleanfullscreen:function(a){a.exitFullScreen()},containerSizeTimeout:null,enterFullScreen:function(){var a=this;if(!(a.media.pluginType!==
"native"&&(mejs.MediaFeatures.isFirefox||a.options.usePluginFullScreen))){f(document.documentElement).addClass("mejs-fullscreen");normalHeight=a.container.height();normalWidth=a.container.width();if(a.media.pluginType==="native")if(mejs.MediaFeatures.hasTrueNativeFullScreen){mejs.MediaFeatures.requestFullScreen(a.container[0]);a.isInIframe&&setTimeout(function c(){if(a.isNativeFullScreen){var e=(window.devicePixelRatio||1)*f(window).width(),d=screen.width;Math.abs(d-e)>d*0.0020?a.exitFullScreen():
setTimeout(c,500)}},500)}else if(mejs.MediaFeatures.hasSemiNativeFullScreen){a.media.webkitEnterFullscreen();return}if(a.isInIframe){var b=a.options.newWindowCallback(this);if(b!=="")if(mejs.MediaFeatures.hasTrueNativeFullScreen)setTimeout(function(){if(!a.isNativeFullScreen){a.pause();window.open(b,a.id,"top=0,left=0,width="+screen.availWidth+",height="+screen.availHeight+",resizable=yes,scrollbars=no,status=no,toolbar=no")}},250);else{a.pause();window.open(b,a.id,"top=0,left=0,width="+screen.availWidth+
",height="+screen.availHeight+",resizable=yes,scrollbars=no,status=no,toolbar=no");return}}a.container.addClass("mejs-container-fullscreen").width("100%").height("100%");a.containerSizeTimeout=setTimeout(function(){a.container.css({width:"100%",height:"100%"});a.setControlsSize()},500);if(a.media.pluginType==="native")a.$media.width("100%").height("100%");else{a.container.find(".mejs-shim").width("100%").height("100%");a.media.setVideoSize(f(window).width(),f(window).height())}a.layers.children("div").width("100%").height("100%");
a.fullscreenBtn&&a.fullscreenBtn.removeClass("mejs-fullscreen").addClass("mejs-unfullscreen");a.setControlsSize();a.isFullScreen=true;a.container.find(".mejs-captions-text").css("font-size",screen.width/a.width*1*100+"%");a.container.find(".mejs-captions-position").css("bottom","45px")}},exitFullScreen:function(){clearTimeout(this.containerSizeTimeout);if(this.media.pluginType!=="native"&&mejs.MediaFeatures.isFirefox)this.media.setFullscreen(false);else{if(mejs.MediaFeatures.hasTrueNativeFullScreen&&
(mejs.MediaFeatures.isFullScreen()||this.isFullScreen))mejs.MediaFeatures.cancelFullScreen();f(document.documentElement).removeClass("mejs-fullscreen");this.container.removeClass("mejs-container-fullscreen").width(normalWidth).height(normalHeight);if(this.media.pluginType==="native")this.$media.width(normalWidth).height(normalHeight);else{this.container.find(".mejs-shim").width(normalWidth).height(normalHeight);this.media.setVideoSize(normalWidth,normalHeight)}this.layers.children("div").width(normalWidth).height(normalHeight);
this.fullscreenBtn.removeClass("mejs-unfullscreen").addClass("mejs-fullscreen");this.setControlsSize();this.isFullScreen=false;this.container.find(".mejs-captions-text").css("font-size","");this.container.find(".mejs-captions-position").css("bottom","")}}})})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{speeds:["1.50","1.25","1.00","0.75"],defaultSpeed:"1.00"});f.extend(MediaElementPlayer.prototype,{buildspeed:function(a,b,c,e){if(this.media.pluginType=="native"){c='<div class="mejs-button mejs-speed-button"><button type="button">'+this.options.defaultSpeed+'x</button><div class="mejs-speed-selector"><ul>';var d;f.inArray(this.options.defaultSpeed,this.options.speeds)===-1&&this.options.speeds.push(this.options.defaultSpeed);this.options.speeds.sort(function(g,
k){return parseFloat(k)-parseFloat(g)});for(d=0;d<this.options.speeds.length;d++){c+='<li><input type="radio" name="speed" value="'+this.options.speeds[d]+'" id="'+this.options.speeds[d]+'" ';if(this.options.speeds[d]==this.options.defaultSpeed){c+="checked=true ";c+='/><label for="'+this.options.speeds[d]+'" class="mejs-speed-selected">'+this.options.speeds[d]+"x</label></li>"}else c+='/><label for="'+this.options.speeds[d]+'">'+this.options.speeds[d]+"x</label></li>"}c+="</ul></div></div>";a.speedButton=
f(c).appendTo(b);a.playbackspeed=this.options.defaultSpeed;a.speedButton.on("click","input[type=radio]",function(){a.playbackspeed=f(this).attr("value");e.playbackRate=parseFloat(a.playbackspeed);a.speedButton.find("button").text(a.playbackspeed+"x");a.speedButton.find(".mejs-speed-selected").removeClass("mejs-speed-selected");a.speedButton.find("input[type=radio]:checked").next().addClass("mejs-speed-selected")});b=a.speedButton.find(".mejs-speed-selector");b.height(this.speedButton.find(".mejs-speed-selector ul").outerHeight(true)+
a.speedButton.find(".mejs-speed-translations").outerHeight(true));b.css("top",-1*b.height()+"px")}}})})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{startLanguage:"",tracksText:mejs.i18n.t("Captions/Subtitles"),hideCaptionsButtonWhenEmpty:true,toggleCaptionsButtonWhenOnlyOne:false,slidesSelector:""});f.extend(MediaElementPlayer.prototype,{hasChapters:false,buildtracks:function(a,b,c,e){if(a.tracks.length!==0){var d;if(this.domNode.textTracks)for(d=this.domNode.textTracks.length-1;d>=0;d--)this.domNode.textTracks[d].mode="hidden";a.chapters=f('<div class="mejs-chapters mejs-layer"></div>').prependTo(c).hide();
a.captions=f('<div class="mejs-captions-layer mejs-layer"><div class="mejs-captions-position mejs-captions-position-hover"><span class="mejs-captions-text"></span></div></div>').prependTo(c).hide();a.captionsText=a.captions.find(".mejs-captions-text");a.captionsButton=f('<div class="mejs-button mejs-captions-button"><button type="button" aria-controls="'+this.id+'" title="'+this.options.tracksText+'" aria-label="'+this.options.tracksText+'"></button><div class="mejs-captions-selector"><ul><li><input type="radio" name="'+
a.id+'_captions" id="'+a.id+'_captions_none" value="none" checked="checked" /><label for="'+a.id+'_captions_none">'+mejs.i18n.t("None")+"</label></li></ul></div></div>").appendTo(b);for(d=b=0;d<a.tracks.length;d++)a.tracks[d].kind=="subtitles"&&b++;if(this.options.toggleCaptionsButtonWhenOnlyOne&&b==1)a.captionsButton.on("click",function(){lang=a.selectedTrack===null?a.tracks[0].srclang:"none";a.setTrack(lang)});else{a.captionsButton.on("mouseenter focusin",function(){f(this).find(".mejs-captions-selector").css("visibility",
"visible")}).on("click","input[type=radio]",function(){lang=this.value;a.setTrack(lang)});a.captionsButton.on("mouseleave focusout",function(){f(this).find(".mejs-captions-selector").css("visibility","hidden")})}a.options.alwaysShowControls?a.container.find(".mejs-captions-position").addClass("mejs-captions-position-hover"):a.container.bind("controlsshown",function(){a.container.find(".mejs-captions-position").addClass("mejs-captions-position-hover")}).bind("controlshidden",function(){e.paused||a.container.find(".mejs-captions-position").removeClass("mejs-captions-position-hover")});
a.trackToLoad=-1;a.selectedTrack=null;a.isLoadingTrack=false;for(d=0;d<a.tracks.length;d++)a.tracks[d].kind=="subtitles"&&a.addTrackButton(a.tracks[d].srclang,a.tracks[d].label);a.loadNextTrack();e.addEventListener("timeupdate",function(){a.displayCaptions()},false);if(a.options.slidesSelector!==""){a.slidesContainer=f(a.options.slidesSelector);e.addEventListener("timeupdate",function(){a.displaySlides()},false)}e.addEventListener("loadedmetadata",function(){a.displayChapters()},false);a.container.hover(function(){if(a.hasChapters){a.chapters.css("visibility",
"visible");a.chapters.fadeIn(200).height(a.chapters.find(".mejs-chapter").outerHeight())}},function(){a.hasChapters&&!e.paused&&a.chapters.fadeOut(200,function(){f(this).css("visibility","hidden");f(this).css("display","block")})});a.node.getAttribute("autoplay")!==null&&a.chapters.css("visibility","hidden")}},setTrack:function(a){var b;if(a=="none"){this.selectedTrack=null;this.captionsButton.removeClass("mejs-captions-enabled")}else for(b=0;b<this.tracks.length;b++)if(this.tracks[b].srclang==a){this.selectedTrack===
null&&this.captionsButton.addClass("mejs-captions-enabled");this.selectedTrack=this.tracks[b];this.captions.attr("lang",this.selectedTrack.srclang);this.displayCaptions();break}},loadNextTrack:function(){this.trackToLoad++;if(this.trackToLoad<this.tracks.length){this.isLoadingTrack=true;this.loadTrack(this.trackToLoad)}else{this.isLoadingTrack=false;this.checkForTracks()}},loadTrack:function(a){var b=this,c=b.tracks[a];f.ajax({url:c.src,dataType:"text",success:function(e){c.entries=typeof e=="string"&&
/<tt\s+xml/ig.exec(e)?mejs.TrackFormatParser.dfxp.parse(e):mejs.TrackFormatParser.webvtt.parse(e);c.isLoaded=true;b.enableTrackButton(c.srclang,c.label);b.loadNextTrack();c.kind=="chapters"&&b.media.addEventListener("play",function(){b.media.duration>0&&b.displayChapters(c)},false);c.kind=="slides"&&b.setupSlides(c)},error:function(){b.loadNextTrack()}})},enableTrackButton:function(a,b){if(b==="")b=mejs.language.codes[a]||a;this.captionsButton.find("input[value="+a+"]").prop("disabled",false).siblings("label").html(b);
this.options.startLanguage==a&&f("#"+this.id+"_captions_"+a).prop("checked",true).trigger("click");this.adjustLanguageBox()},addTrackButton:function(a,b){if(b==="")b=mejs.language.codes[a]||a;this.captionsButton.find("ul").append(f('<li><input type="radio" name="'+this.id+'_captions" id="'+this.id+"_captions_"+a+'" value="'+a+'" disabled="disabled" /><label for="'+this.id+"_captions_"+a+'">'+b+" (loading)</label></li>"));this.adjustLanguageBox();this.container.find(".mejs-captions-translations option[value="+
a+"]").remove()},adjustLanguageBox:function(){this.captionsButton.find(".mejs-captions-selector").height(this.captionsButton.find(".mejs-captions-selector ul").outerHeight(true)+this.captionsButton.find(".mejs-captions-translations").outerHeight(true))},checkForTracks:function(){var a=false;if(this.options.hideCaptionsButtonWhenEmpty){for(i=0;i<this.tracks.length;i++)if(this.tracks[i].kind=="subtitles"){a=true;break}if(!a){this.captionsButton.hide();this.setControlsSize()}}},displayCaptions:function(){if(typeof this.tracks!=
"undefined"){var a,b=this.selectedTrack;if(b!==null&&b.isLoaded)for(a=0;a<b.entries.times.length;a++)if(this.media.currentTime>=b.entries.times[a].start&&this.media.currentTime<=b.entries.times[a].stop){this.captionsText.html(b.entries.text[a]).attr("class","mejs-captions-text "+(b.entries.times[a].identifier||""));this.captions.show().height(0);return}this.captions.hide()}},setupSlides:function(a){this.slides=a;this.slides.entries.imgs=[this.slides.entries.text.length];this.showSlide(0)},showSlide:function(a){if(!(typeof this.tracks==
"undefined"||typeof this.slidesContainer=="undefined")){var b=this,c=b.slides.entries.text[a],e=b.slides.entries.imgs[a];if(typeof e=="undefined"||typeof e.fadeIn=="undefined")b.slides.entries.imgs[a]=e=f('<img src="'+c+'">').on("load",function(){e.appendTo(b.slidesContainer).hide().fadeIn().siblings(":visible").fadeOut()});else!e.is(":visible")&&!e.is(":animated")&&e.fadeIn().siblings(":visible").fadeOut()}},displaySlides:function(){if(typeof this.slides!="undefined"){var a=this.slides,b;for(b=0;b<
a.entries.times.length;b++)if(this.media.currentTime>=a.entries.times[b].start&&this.media.currentTime<=a.entries.times[b].stop){this.showSlide(b);break}}},displayChapters:function(){var a;for(a=0;a<this.tracks.length;a++)if(this.tracks[a].kind=="chapters"&&this.tracks[a].isLoaded){this.drawChapters(this.tracks[a]);this.hasChapters=true;break}},drawChapters:function(a){var b=this,c,e,d=e=0;b.chapters.empty();for(c=0;c<a.entries.times.length;c++){e=a.entries.times[c].stop-a.entries.times[c].start;
e=Math.floor(e/b.media.duration*100);if(e+d>100||c==a.entries.times.length-1&&e+d<100)e=100-d;b.chapters.append(f('<div class="mejs-chapter" rel="'+a.entries.times[c].start+'" style="left: '+d.toString()+"%;width: "+e.toString()+'%;"><div class="mejs-chapter-block'+(c==a.entries.times.length-1?" mejs-chapter-block-last":"")+'"><span class="ch-title">'+a.entries.text[c]+'</span><span class="ch-time">'+mejs.Utility.secondsToTimeCode(a.entries.times[c].start)+"&ndash;"+mejs.Utility.secondsToTimeCode(a.entries.times[c].stop)+
"</span></div></div>"));d+=e}b.chapters.find("div.mejs-chapter").click(function(){b.media.setCurrentTime(parseFloat(f(this).attr("rel")));b.media.paused&&b.media.play()});b.chapters.show()}});mejs.language={codes:{af:"Afrikaans",sq:"Albanian",ar:"Arabic",be:"Belarusian",bg:"Bulgarian",ca:"Catalan",zh:"Chinese","zh-cn":"Chinese Simplified","zh-tw":"Chinese Traditional",hr:"Croatian",cs:"Czech",da:"Danish",nl:"Dutch",en:"English",et:"Estonian",fl:"Filipino",fi:"Finnish",fr:"French",gl:"Galician",de:"German",
el:"Greek",ht:"Haitian Creole",iw:"Hebrew",hi:"Hindi",hu:"Hungarian",is:"Icelandic",id:"Indonesian",ga:"Irish",it:"Italian",ja:"Japanese",ko:"Korean",lv:"Latvian",lt:"Lithuanian",mk:"Macedonian",ms:"Malay",mt:"Maltese",no:"Norwegian",fa:"Persian",pl:"Polish",pt:"Portuguese",ro:"Romanian",ru:"Russian",sr:"Serbian",sk:"Slovak",sl:"Slovenian",es:"Spanish",sw:"Swahili",sv:"Swedish",tl:"Tagalog",th:"Thai",tr:"Turkish",uk:"Ukrainian",vi:"Vietnamese",cy:"Welsh",yi:"Yiddish"}};mejs.TrackFormatParser={webvtt:{pattern_timecode:/^((?:[0-9]{1,2}:)?[0-9]{2}:[0-9]{2}([,.][0-9]{1,3})?) --\> ((?:[0-9]{1,2}:)?[0-9]{2}:[0-9]{2}([,.][0-9]{3})?)(.*)$/,
parse:function(a){var b=0;a=mejs.TrackFormatParser.split2(a,/\r?\n/);for(var c={text:[],times:[]},e,d,g;b<a.length;b++){if((e=this.pattern_timecode.exec(a[b]))&&b<a.length){if(b-1>=0&&a[b-1]!=="")g=a[b-1];b++;d=a[b];for(b++;a[b]!==""&&b<a.length;){d=d+"\n"+a[b];b++}d=f.trim(d).replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig,"<a href='$1' target='_blank'>$1</a>");c.text.push(d);c.times.push({identifier:g,start:mejs.Utility.convertSMPTEtoSeconds(e[1])===0?0.2:mejs.Utility.convertSMPTEtoSeconds(e[1]),
stop:mejs.Utility.convertSMPTEtoSeconds(e[3]),settings:e[5]})}g=""}return c}},dfxp:{parse:function(a){a=f(a).filter("tt");var b=0;b=a.children("div").eq(0);var c=b.find("p");b=a.find("#"+b.attr("style"));var e,d;a={text:[],times:[]};if(b.length){d=b.removeAttr("id").get(0).attributes;if(d.length){e={};for(b=0;b<d.length;b++)e[d[b].name.split(":")[1]]=d[b].value}}for(b=0;b<c.length;b++){var g;d={start:null,stop:null,style:null};if(c.eq(b).attr("begin"))d.start=mejs.Utility.convertSMPTEtoSeconds(c.eq(b).attr("begin"));
if(!d.start&&c.eq(b-1).attr("end"))d.start=mejs.Utility.convertSMPTEtoSeconds(c.eq(b-1).attr("end"));if(c.eq(b).attr("end"))d.stop=mejs.Utility.convertSMPTEtoSeconds(c.eq(b).attr("end"));if(!d.stop&&c.eq(b+1).attr("begin"))d.stop=mejs.Utility.convertSMPTEtoSeconds(c.eq(b+1).attr("begin"));if(e){g="";for(var k in e)g+=k+":"+e[k]+";"}if(g)d.style=g;if(d.start===0)d.start=0.2;a.times.push(d);d=f.trim(c.eq(b).html()).replace(/(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/ig,
"<a href='$1' target='_blank'>$1</a>");a.text.push(d);if(a.times.start===0)a.times.start=2}return a}},split2:function(a,b){return a.split(b)}};if("x\n\ny".split(/\n/gi).length!=3)mejs.TrackFormatParser.split2=function(a,b){var c=[],e="",d;for(d=0;d<a.length;d++){e+=a.substring(d,d+1);if(b.test(e)){c.push(e.replace(b,""));e=""}}c.push(e);return c}})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{contextMenuItems:[{render:function(a){if(typeof a.enterFullScreen=="undefined")return null;return a.isFullScreen?mejs.i18n.t("Turn off Fullscreen"):mejs.i18n.t("Go Fullscreen")},click:function(a){a.isFullScreen?a.exitFullScreen():a.enterFullScreen()}},{render:function(a){return a.media.muted?mejs.i18n.t("Unmute"):mejs.i18n.t("Mute")},click:function(a){a.media.muted?a.setMuted(false):a.setMuted(true)}},{isSeparator:true},{render:function(){return mejs.i18n.t("Download Video")},
click:function(a){window.location.href=a.media.currentSrc}}]});f.extend(MediaElementPlayer.prototype,{buildcontextmenu:function(a){a.contextMenu=f('<div class="mejs-contextmenu"></div>').appendTo(f("body")).hide();a.container.bind("contextmenu",function(b){if(a.isContextMenuEnabled){b.preventDefault();a.renderContextMenu(b.clientX-1,b.clientY-1);return false}});a.container.bind("click",function(){a.contextMenu.hide()});a.contextMenu.bind("mouseleave",function(){a.startContextMenuTimer()})},cleancontextmenu:function(a){a.contextMenu.remove()},
isContextMenuEnabled:true,enableContextMenu:function(){this.isContextMenuEnabled=true},disableContextMenu:function(){this.isContextMenuEnabled=false},contextMenuTimeout:null,startContextMenuTimer:function(){var a=this;a.killContextMenuTimer();a.contextMenuTimer=setTimeout(function(){a.hideContextMenu();a.killContextMenuTimer()},750)},killContextMenuTimer:function(){var a=this.contextMenuTimer;if(a!=null){clearTimeout(a);delete a}},hideContextMenu:function(){this.contextMenu.hide()},renderContextMenu:function(a,
b){for(var c=this,e="",d=c.options.contextMenuItems,g=0,k=d.length;g<k;g++)if(d[g].isSeparator)e+='<div class="mejs-contextmenu-separator"></div>';else{var j=d[g].render(c);if(j!=null)e+='<div class="mejs-contextmenu-item" data-itemindex="'+g+'" id="element-'+Math.random()*1E6+'">'+j+"</div>"}c.contextMenu.empty().append(f(e)).css({top:b,left:a}).show();c.contextMenu.find(".mejs-contextmenu-item").each(function(){var m=f(this),q=parseInt(m.data("itemindex"),10),p=c.options.contextMenuItems[q];typeof p.show!=
"undefined"&&p.show(m,c);m.click(function(){typeof p.click!="undefined"&&p.click(c);c.contextMenu.hide()})});setTimeout(function(){c.killControlsTimer("rev3")},100)}})})(mejs.$);
(function(f){f.extend(mejs.MepDefaults,{postrollCloseText:mejs.i18n.t("Close")});f.extend(MediaElementPlayer.prototype,{buildpostroll:function(a,b,c){var e=this.container.find('link[rel="postroll"]').attr("href");if(typeof e!=="undefined"){a.postroll=f('<div class="mejs-postroll-layer mejs-layer"><a class="mejs-postroll-close" onclick="$(this).parent().hide();return false;">'+this.options.postrollCloseText+'</a><div class="mejs-postroll-layer-content"></div></div>').prependTo(c).hide();this.media.addEventListener("ended",
function(){f.ajax({dataType:"html",url:e,success:function(d){c.find(".mejs-postroll-layer-content").html(d)}});a.postroll.show()},false)}}})})(mejs.$);

	jQuery(window).ready(function(){
		jQuery('audio').mediaelementplayer();
	});

})(myjQuery);

function shortcodeAudioOnerror(event,audio)
{
	alert('Audio shortcode : file not found "'+audio.src+'"');
	console.warn('Loading "'+audio.src+'" failed :');
	console.log(event);
}

PK�%"]�1P����(sudesign_audio/lib/flashmediaelement.swfnu&1i�CWS|�x�̽y\��~�Y��}SD}7��Q�Aٜ���q``t��Y̊�-5�\2�DCPSK3�$�\�c�e�����-��������|>�����^����s�=��s�=�>�C�Dp��̈́t��gO�e5��U�Lm��l�C.e@��^-���9sf���8��">qĈ�	I�II��k�3���f[���@k+���F���y}��aO0�٪���h��j�&
e񬉭b�v[|b\"4d(��[�Uz�h}u��X�������*-e�g�k��r��V9*���ֱ�&v��`)e�L[�f��c�̆vAGw��֎+�T�W[-G�TMa�UhՎR��V�ZG;��͖�\�T�Sfe�vKg�����
������2we��a<�
&11�IJH̉A���Ѷ�8�d�]�"�>�(����G �0���?k����X�I՘��z%7��Hŭ��|x$))�a�u�k|�}^�_����$�A��D
�Qo"�dYE��I/�#��"(�&�N�*,�n�#<-,-�����]���\�Y�\�z��:���l��}Y��,���R�g|���=�;���~��������N%'��[��
�21dw�_�1ti��Pq�ݶv?�Z��a���xo-I���f���..2ZR����/�.�Jz���F�;����x�2�ٔ{�'l������������Eo�n��̛�3�W).�ǝ�1�w�w��Ӧ�z�/���I�V���]�m�ru�+�v_���I/?����Zx`އu���Y��Q7��O����рКA�&����x�1J>p��_�^����g����7���j��MK�Ǔ����1���3NiN�XV�a�Q�1�����Z�D47��˓������۾��e�����]��:���h"��zMl��gL^���0hҖ�� �6�KI�9�ם���O
�.����>x�O�GGjZ<������-Q�Y�,�	Ͳ�o�����O�^���񌌛���?*��㩗[[ޛ���s͛�]O�m!>zA�S�o�
>�i���E�����T4)'�^ϫ�ԋKĮ��;h۱)�o��j=�~�M�g���y�]�w�׭��Y������l�틞��D��.����[Z������������yS狗E
�i�jS���?6���?U����gl9��;	�4� �����o��D~m��	���ɧ��k�!��/��K�j]������o�E��X�D�l�}�Do�DN�"Z��J�k����hrn1��'B{��"�Y@�]�7@����xJ���QK����C����!0����bH�M�pW;�ȅ�z���y�^kg� ��}v��[�ּ��j�>��c�k�m[Αm+����롩�X|4�����.�k��A[�j���:"O�p�$��Β�뒂g���KM����6x���U[�;?��e�)_|9$�ߖ����h�J�j�A׈:�^���_.�J��ģyb����/��f�Y�a���7eKE-˽��/ڷN�.�kZ|3:��mB*iZID>5}�D�G|YCW�Qs��at�%M��ښ����}�~���r�X�o׏��4��nh�~��r�(Ǣ��'3��ϻU��A&�}?��6r���U'�ڋv@+G����s?�XO��/�ƺ�L{aE�[F�^�{��?@;�y՗��-��B"̴�42���G�
��A+��O��ZtYiB,oM�M���.�0��A�7�x��9�F6��
^U�2�_��ٱ��j�$��[o/�=�����}�C|��N����s4~JX5��wyON�|����ӿ��;��{.���Sodl�%Éo��~�/��yaﶽuVz*7�lm�3�%{}�-��镾�~_9��3�{kr\���Z��~��@`<?�1�|Β�
�|���A�ږ�s>%�b�|�ߊ��Wi�/���Ty�w�W{��c%"z�k�ՏH����E}�]�3%����5��D8s/}�v��q_U��7㢓FE����ޔ5�p�H�O%���
�<Ox��m��g'UMۺ}wk�nm �g�Z���O����쏄�5�Ķ����Ư^}���CZ>y�Z�-�[}z��]�z�(�Z�u��Sb�T�f���in|7���/:ik���Aۢ/�e~=x�sD&h&�������IDں�$�;��t�C��s�o�ǿy>�ū��/~�4���Dp����u/����z���a+�-9J
'�4MV��[�+S4�/	�o��Y6M�x��
Cu�^�h�K���d�li��Rɠ]
d��O�J�zb��ZՖ�1G�d�2��m�.	���������K*�'�t���!��\"��m��Q���X5���
���/��d�t3��-1��[���g�~7�I2��܍">_�NUʞ�Lj

8|n�E�?^Y4�o�;��	¤���?��h}��-���Ję_	�����%�.��r�gҾ��~�ɳ�����}��}l[\���K�����W�K��f�j��Ń�5|\��1�ԢK[�^"�����4_N�A���ןi�`ڮ�}Z�<�ccw�>��J��V݀ee�n��i������}c���۹ݩ<u�X�����i��!b�����:�i������`{�W�Q!~��E�bGF����%Lk�[w���x5��y�u�o�}y�!�����nR�
(Y-?ˤN%[^ʊS�j��x0�r��k�5g��9`ڛm��N%���A����_?�N%�H|y�E���`��|�
G�,K�����(yWEz�/��Y]޸sI�n_%��Tr�[S��4�Hxrp���=��5��)O�i_'��sK&�D.�7z�$=um��)��+�s�L�5|������#��/YK�-�֖����d�Ne��կDl}��[�FE��O(�^��x`����d�����3/D�v���I��Y﫲#v�$!�{0���u|+�0n�0��Y+�/_w�!>;KN񦼵�W;����S�OA������	��]�;���i"���qk�����D�R�4������-�Z=�Q\_��z�xG��vx��޳��6dWN�J�@��,y4	X@�2�c�9$�W@��U��d��Ipq)�oԾ"ZJ$a��SW^���UN�)b���]�Ǫ�$pϜ����}J[�{���As���{�Z����?�|p`~���H��qlP�ӧ�Х[I踨̭���x�[ϋZQSB��d�ѣ�m$:i��[��V���y�5��C�[��	�7�e���?�G�����~�����e+aa�.��Ґx��e"�9-���I&"�>JD����,"�C�ɳo��и5�ƭ��¯����40���nS����"�pVX�W]��|���+�/�a�맦���А�pBN����O�{&e^L]m�	��T���z�e�ѣW-��G>��?>��V��_�v����q�Ϫ��c�[O��E�7���Š�z���
^_L�B^��}�^v��D�j�riUŭH�7�Z���Sy��U�6�w;|~���9��W_Ӗ�WO<G�թ���6>2A�g�����g���w���W"=w�x��k"��8��o;q�e�褖+Y
�˾Q�Zt���҃�k���
�g�����
���z��\|9w*/g	�rO�J���.+�gJ*)�3"�8B�]s�ߧ՚WJږ��ƗY��cK��J��}=��O�w�o^l*���)f/#A�Y̭���	S�W5M&�!pk�m�*��o.�M�z�!D{���E���� �߲��o*�Y��U�0�a++�K3��&�D�y{����u:��$���ύV�h�b��H%���^Pf~Wx��P�V�d]\�(�n!������e��DX�	�!��&B�|����W���{�C���T2q����)#|O��V׋&}~\I͌��{�}���7�&‰7�nR��[J�2	o��i��c��V����i|;5�Nj&���l�:a��D� ׂZ̉�O�m�5֧-u�~��|��"C|�N�O�ɱs/{��p����=�s{�z��!��6z𱔤e�ω�@�ڲf��s$-~�[ڈ�7�Ȗ�ظ%�؍�/�ܾ�r����LYZ��x�7oL�㭬���z~���� ����ň��*�n��,����3��/yy!;�O�i�L��H�Gم��<�/*�Y���E�}�"�* )
M�R9�IT<pBjlѼVOV�+T��;��?��������$�Y�����80����h�}�+������������
�.]Z3��|0�����n^����ϒ�w�z�䋷�W�Lc�����9l��aϵ�o��m�ʏz~S3q�罶@�{��I�d��6�Ө?^DC�����m��[�ߍ�E�M��>y-dxE��#Z~����F���~a��c�{��D��͒/�aE4�dE��ݼ���{<|�N$ҵb��UtƑ��q?�K�Y�U�,��z�1���-�}�W���
��S��oo��{M��MT@�1}�����?U�Je�>B�2�oD��ySvo���钀�z��6�/���择DX�J��ғ��:�iN�x;���c-[�x,k&R��So�Ik0T�͒G�x�ڊHԓm�)���|Z4�;��'�j�EG�_�\��tp	.I%��+�?�ש�@����흝/�e}��t.&��*��i~�2�d��'�W�I�	S���3����m	��.}��(y��K/u�M��㗫o�2���Q�|��H��I�xO��� ����i�hwk
iܝ�}S����R����H�޷�W���F򃧒�ЊF��� m��}I��I��O���}R@��y�peX�3��s��k�Vv#�(
�*�j�$ �[-D���ɧ�wB�[�-��lޘ�]������\�3�����7G)��#�tR5q�����!C�J��;w���z����]��p�x�k[gp:�X���GnlX�veWd�†%ˇ���z�o��)f*�+�"!����o��(�M-s�d疬�L�[S��_$��R�rh_~�bټ�ƏMM�Oo��l=����s.�?5_���-�}'I��J���U?�����Sʑ!��&����}�J�b�2��[iᲅ��#w<mkR�_�۞�b�Ջ$��;������܂��s�'���&߭�X���<����P��YOR�?�r���%�&�O?	:�a��o�q��Ʌ���j2)t���|���
N%;R�J�,lZ���W����#Y�s��7����DX\�ɋ�.�j��ӈ�	��_���u٥���bK[p��h�V��
ij�ۦ����4�ġ��A��g�g�3"��8��֛�gk�};&��� ��Ҙ���&z���,�$ ><zY����/��?2oZ=���I[�҆&���x>5m|8M�ƍߐC�G�PO��6���2@;�k�_z?��'Eo�/F�0g�.�.�9T��H~dk������'��*~#�7zX�$���V�mi)�O^HR�gK�7�|�]���a?���������j�n��U�y��9�/%��>�~s)����%�Z��p)��5��y`\s�]��/^;oI˥w�/�ǡ���5ͤϢ?��w��{�	�dx�W���t0����hb���nTxHi|E1�<���Ԃ��jzm�})I&��YxK3��o�6��-�K��6�z��+��G���e�ޟ6�`bQ�T���W��/�~�/iʡ���Ҟ��>�$5�ɫ��4���h�?�k�<X����3���栟�&���b.�22���}����\;U4?C�؟=���͉C��};��)Ւ��f�������SH�@�Ӷ���M�<�SU�{��?�/3�_�+<F���s�,�15�ń=1�{�KB����ooL����l<��ʖ�ޠ�m)��=�]�]L��w�1)����_]�L�ݸ<{xxM����U�,G^ͻ7\��[V��<t���w>�V�}���������S������m/���f��Yz��z�vߪ[�z
jZ�B��nl�{#*��j��W:ƅ_�32X�H$�VOZF��+���e����ϝ�&�����e-Dz4Ȼ���<Ϟ���vn]��_�A}�'��%�^���o���2Zj����j5���<�6Cj�}bÕ}%���쩾׭ˣ�dN=�
͆�Y�;�}�x?�=�t��s�7�/ʹT3��=p7_�?{��.OC`J�V8�S��=�O�%y-����~�ϼ��Я_z�����ϩٷv�?_Ǭ�\���S���4����1���k�I��_��`��"&¬�D�դ��}���C6����~a�%6b���U/��ƽ��|�ף���]����ˇ�V�L~��c�w'�f��h䲵������s{��Qq�3���f�66*y�iv�ēi�M�����W�>�x6�O��:�w�r��J��ұ�w�?v��n�Η�+ �����]2��7.���5C�,�SW)��פ��<������]�A{��
"�z������BN�Z�����B�6-i��g8�j �^�H����-	$z!ge�o��B���5�\L<��=��/}y!	j�D
o�O~��7���R�&jw���Syۖ��f�;8B�'���Y�D��3ւ�%��|䛘�Hݸz�!�i9��M#CZ�x���gԒP��wWk�י$���yi���z^��5�!�p
�>�#*o�18^�Y"�3b�߇�	T~����w����q���Ĕ���k7�������S��Χk�����GB/;����EV쮾�?�ӿ���d�~���W��9�kϞ?v�y�kO�������-D&J,�q��^��0������y��z��
0#}�4~��+Ȯ��ɈS�Ҷ��{)����/�{^3[u��G�y4}|�|�
�
�o�{uP_�%��$�,��>/h_�j�C��:�bn��'O~����̛��Mq���r�Ge��_�_m<05��S�}EI__�ml��kӱ��E_y�΋��%���U���M��'�҇D�Hҗ�#��2�D�h2��ٔđx�@II&��2�#��"'#�(�BF�1$�d���	2�L&S��L%e�%&b&b%6� O���)�4i �=��d��nLw&�	gz2����D0��f#g�2}LY�M�d�d�T�/�Y3vҐ�ưư��{�2B�h-y�?J�G�[�:�ZB�hJ�Y�oALc� �?���{�>�Ƶ�� �����/���XJ�R1���/���.�7P|�1�K�b	�2>-]��q���[�3��L��n��t!`��"��� ݊�@��31]��������1݄i� ���;��x3B@[��z+�iHI��)�K��\�o!b W,��ď%ng�}Ri�P�8�6��Ci�P�8�6��Ci�P�8�6��Ci�P�8�6��Ci�P�8�6��Ci�P�8���a����ꠒ�A�E�Tf9��ȗc/4��d�Hĥ�Q=���C��P|��Iχ6�T���AT9)�H)DJ!R��n �a��� g	�K�r�(�{�c�z��Xմ�Ź`q\,h���c]#��yPH�EJр��,X˂�,P��TC�%d�5�'h]+j̊�٠VwƆi�:�ԁ-8�5��t
�g"�LL�A:��^��S�u�H�C������8�^$�R��;|�~,���Hy���{�7�R��;�4���i>m�i>��i�ѻ����t����Y~�Og��RD����R~�h9`���س	��Y�<��J��o���`=��7"6!n�<�[1͐Xw�]�uW`��,����[��WC����az����k1�H=�iEd�Z�k-���Z�}�E9�b_k�����Z�k=���Z�}�Ǿ�c_뱯���z�k=���y�Fha�
��i�8�&,m��b@���~M�Iq5��bz=�7#nA�y�͠�%�T*�^H��f�d3JBq	?�^# ��t+"CZQ�Vh�%@�{+�ފ��b��{+�ފ�S�5���{0�`9̀�����>��l{��m��E<��F�6�������Lq���`�M�����|ٝ%������~w��RJ3�_0"��He؉2�Dv�;Q��(���ŧ{
�F@ٝ&��[��{k�oC̀t\o�������6�p���6�h7ȳ��x�!�H�݃��ANJY�m�~_�;8�wp��$k�{�߽��{c��C��� �r��0��~�E�P�H�����܇m������^�C��#G<�x�,����Jx[;��� j� j� X�@���p��~�C���#=��u����!��C8_�p��|º���!��!��!��lⷁ6@�@��x���G<�x��Y�}����a��iˇ�����a���y�<�rA9���GP�#(�l��y[;���֎��GQΣ(�Q��(�y�<�rE9�����̝��2�q��8�s�9��Gy��<�Q��(�q����<�Q��(�q��8k'p�N���
x�!��'� �El������$�����I�4��
��u�:��<�?�_X
>����G�Ho��U|GwGwGwGwGwGw�:�}�Am���O 6�?�v�S��r%<���Zg��Y��,Jx%<u{1��;�/@��`������B
��>����H��EJb�A�f���iA�B��-aA��{}1��XL�ξ J/D��a�MX|?��HK��P�H%z0b����tb$R�!� %�O�Cp��0���PL�Bd����~ �
h�/b`H����(00�p��1�J���J�%�-� =�a�R� FVB$C��!�Gzb�	z#����`�}��>P7)��a�b?�ZqH�D�UD@��uwCo�P@:/����=$���8L�bh]?A$̦? v	�A�7I�^( ��Rz�6#q���f$��'�i@:���B_�O_������brF"�s��m��������JNӱ�0k���8�8v�A��C?��0����Y���ҋ��Fҙ��Q�̀�h\/�8G�h�h��h����A<�=g�b(RzR�ţUģR��q?9c����@ρ�T�Gd��t`��gxQHId$�=L�@��iHIGT"�$$�`�O�ġH�i9��(L�#=�J�@A����I��t� �?K�?��z�D}�Z���Iȟ��!�?q4b* � 
k�#f =11P0�}��p@��! U ���&�=LBL���1R�4L�#*3�s���`(h#��������P��ш
,Ml�H�t҃À	X�o���D@��a(�0lg�6euGaz4b*�111P0�b8��p�9#��ɑ"��`$r������s$�#q\#qvF����	�O�`�úr��d4�S3�a:1111@0
{�r�B�F��Szb" ��(��y�Z)8�)�G��A��/�FO2g|4�h�4��K���VG��$�1
��(1������<�1(��!G��R�
�)58�
�G��
,U��)PJ�@I(�{W`�
�Y��@��zK�'`:	qR�T�i��4�9E%�����;�H�C���wJ�6�Q���t�����~&�O��!�$ O"R�� e(�ôӣG#%1
)��ƴ� WPj��0�tD%b�@��S���D�+�2���!��K(�%ΔmF��9}�X���b���HO�>���b�0L�D�ш��
,��1p��<LG
���A6J����)�`(��0L
ƣ���@A�s �'��p@jϹ(g.�;)rDb:�yX7�����#=_@�R���RJ,�&��Gk�G����q���I�|A��!�q CG�=\��nL7��hug�Vwf�倳yV����.tg��H����7�1H��t��	�ڃ~��A\�<�J}����D�k�!�� �p��t�hB���]�9�N��k̕�R\+��=>y�n�h��]��d�;���Wܥ��/��R�0�oݩG���h+�c{5ٕjp�>��7��3�;)w�.mM�K�Jw�~�+5��F��p(�7��dC�r�I�
��R?{d`f�-���_�ƄP;� �'M���ϭM%��Z�{]5ˤ[��+~K�(L&Fe����kc�5�!�����V˽yY�S�ă<|��m���ȋ���)��?k����UR�����n=_K�I�[�
b����#��4���8)$R,$�DVK��Gy�GZg�;n��NO՝|?���$"`�/�.]`#VzB_7���Grss=��x��u��^Qm7G�A%�!��I�[}=��\�`�׳n�~=��_���v��	�Rq��lҗ���T;|����y�l�����3����iaB&Y"�b#g#���
%�?s��q��{�?5�{�)��m�����T�mOT���Yj���>?������A�dB�
�ѥ��%Pd$��_�=���ݎr@�C��koF\��1e�����U�0�gQ����{�>�2��'�_J�
�,:����INN���E�nN(&��]dc}u���$��[+��'��i0J?�P/n��2��=��?��T��M�<dP
�q�3h|8��}�S~��	2�pɳ�o���#�&;���G��#�޹�܁'�K/7MoJY�n�ɓ�|~lQnQ�7�t�ےS�=��yŠ�[��K��2vxQo����Y�=F��C�,�Q�N�x�s��v�YƉ�y��
$E��K\V����9kGF���bӐ����j8�˓LŻ���@��V�i؄���ؼ�w��yp�f=<?nM�M�![��^� wG]��S�g �m��|F��!DwQ�{��Dz�j�B��8��QՌ�d�0�DX�z�=��b�3�26%�Ec3΂LbBSf1Y�)��/�1�v;kUW�ˌ抔�����Lg�f$%F�NH�'$����_=<BH�����Jң��Un�ܶUR�y��Ꝼ�EM���͵�C���VPw�
�W���M�m�{ɩ]:�{1�^����s�\~�ݐW��%�?�
yJ�\y1�j��{t��2���?��5�*	렒���v��"��2O��R����j�U��^kGE<�`��ZZ�w�X]��n&�D�yD�ˠ��dӕV���rQ>�����������HI�⾤ڤ�C�jQ	,��X����r�Ymb���7����Z*��6��9���E��I09v���+#f���/w�L�2+˚�A:�`0���!����P^����aC��jͻG	E���$���D���9G�ƪ/�NE�XQ�Eo`
����,Mo%�Dq=���ۼ0#I�%��X;Y!�ߛ� a^$nm���Hz��_��ٮ����@����}S�J�Ъ=aw�I�9�h��&���-��[�Ul"�=�$�A��<���S,��{��`������Q���~ȿ��!�ׯ�{>���z�u�G�?m{=�v���*��YTͳ����+��O����
���{����~�s_^
Y�Sx�/�y���ig��T.r��]�_�~S8M�n�h�����K��ev��nC�X�~�����ߥ��8%M{�Y,&VobNJulŤ(�QU�Z�dzu��ՀD�LP�U�y��l��Zv؍&�$���*�V}��N�P'�tq5l����X},֊�*��1��d�g���
u.���X�8Ӫ���#p@?�L�����7TR8F�^�#5�<��6���do����h
�v��a����
+k�uٻ��r�zfPd�R��j�t"��sYPj�-�*�QfN�F_�u��ja��$�tef��y�=�b6�8��GZ�٭����5~\H� ��Ƃc>~�o��3��J��+XK�D�Bs&V���8S�2*Xa:�l�B�����v�΀�S[E�"D&lέ�5N�h�kב��Vg.k�Kr-5F6�d���!��$��v�G����&�Hg`Kb�ц�t5�Tg����Y/���\d4�+e\:��[���5�KM���b�W����&�e&k(09*��K��h���ۭ��-&Z�tj{h�˂�%:nXk����0X8}BG�u՝	j��k�+Ѓ:�ufp�5,��H������u�o.�Sgqثv�d��Z�D�idM]�+Ls���Lm��6�\ƻSO�J{��1��;��E�4M�K���n����@7���:���23��m�\
/��!�V*uz/]�����e���T�>�I:b/Շs�:�C��D���d�[����(������-�Ǚњ1��A�tW���ƬG��e֗ѩ�}�8��;��ˍ�hC׫@Nd�q)zۜK)�fs�2��
:V����򵡯�J�`��>e�l�t��B���m�e�Ll�R���_�����t��V��*��P6�{�\
��v˦��
p'܂����U[lF�r�	�p�bU�e`'ɰ�4{�ۅ�-Ko���e�gƇ�5�۳����r���b����}��N��AB�m\B�
��0
�"�Gm-��-!����x$��+�ڈ���2V�h��Ɵ����G��V�ŏ-@�fn��qTӿ��Ң?��l�i,T�t���O�ԡɅu\��NX�.�'���qy�1���
�X\ū�:q�];d�6Gy��!�d��$D�*2��
{���d�)<x�~��r��a#�KK�G2\?4I_�O(K<4y��!�$6q��T��T�d(3�<L�NN�ܲt�jX����>����f�:��͸��Eazz�.GAK0���#���E�3���j�l��C����EY���s,ݺ*�CAϮb�kϗ�>яH�d���N�LU���rg�UR�e�f�pY5�9}��Z���-��U۩�RW�XR
����n#�Y��<���`�N���a�i��r֚�7���2h�?�'��hOW:�Kg.���tC���[0D���`���	y�Y��X�G�!:��X�ڸ����#!����՜�u&4�pL�h��wmB�κg�IpϤ� ��ϙ��n�����lb�'D.�R���
̰h�F���Τ1, H\@�	S�X:\ҧ��|��C�=O�q�,�����q|[n��N���MϴZ�
8c���y����@��eB0\6Z��
@ͦCj'���F�����6�pW�ڹ�V��w]�,�M_�u�d��=��0P��+��t��gg$w��U@���Ro�^�QU-��R��N̢C�g��]/z(�����c�jw�!?�#�`�2�Ms���}u�0�R0~4�.�,�-4�w厑��b$02��U�U~�ЙL���GH.'�㱶۝ӹN������a�::5��E��z>"���Mg�hi��K�5�\g���]S),iO�q�T����yr�l��]nq��*�;�Q:yRB���+���-�ۚk��#I׵�{���Y{�F�P���Ӎc���Yo׿������g�e�8<�;=:�.�sk�&%���|�$�ufg�.�n�E�:5�����Â+әY�<w�g��8��`]�������n�Rs��Aֱ��C&��߾��u�	f��\�H1�m����DWNݔS�@�Iqm�8(��Ӏ���=F��D��G�s�:���י&���=M������2]9,+�W��ԑ����S�l.��>Ї�Z��GQ�3��ֿ�بA�0xV���-���0A�t=��t�
�S� *1�4+��)o�U�������>V�H�=� ���G*	�VK�N�Ԗ�h8��r
et����H�9�z�����4D��r3G��p�u{s5��>�W��.�I��] �:EC�G.�D��.�lO
'
<�wR���Uu*{DI����L���׻�m����I�(�f�M�h�Me�i�d0$����5�۳b(*�X
6	�)�E�071i���`I��4���4������9
�΅(���1b\^@V���t��5\E2T��ֽ�	�cI��m�;�
ur|RB��R���V��Q�}�L��F����S֛+�`fM2u�L W��4X�
P?F�t���8z�u�=eH Q@��JRB���;�3��e4�v�R��Y
���9j+��z��-�tNEyS���fz��[���FC�˚���j'%�SCgC�����wF�r�7�.��`4���"�����.c@獰�v\��n,�+sv'�E!�b�F�d�E��6U�ګ˖��Խ��tmI>4���\}Hu�Uv��p(��Y����jD�0� ��kʲa�p�g����M�Hbs���+��h��tށ���В�j��Mdtz�݆0�D*��x{�F_���rH�#�m���7=+24jhș�-P��>���t�xa���K+4�D�ƫ������_���S����gi��Z�J���\�0�}r;�5���˳yg6)�9�cA�H�J3Z�Եwfg��ZW
�3��\�ٸ�Cw����!�3~���ԕ�`
�:�Î�Å-V����D�V���ǩkg;ݰw;ىϹ��12t�'�:�ƭ޽7b ��t���7���b�́7�2*��o!v#��9C
��;��G!���E缏�oz~w?
��֑%Oa��2�7�j��9bp�\���&��G͓�V�b
4R|,�ԛ|9�0���;D�ah�ZtZ���0���l&����q{`])�	���:h�eB�ؙQ&�dΓ%��eQ�-
�I����+A�J���.\�kyrj�F�ݩM��I_��;]����%�92��3`a~FfW7A��r���ܩ�����ooJQ���zI"l���WQb�����	�xf�8OV�j/g�`�i�C~T�Z�� ܍�Xg.Ŕ�\
�S/��1�\��f>�3���3=��r�7[&X�.�qC��$;���W[{�T
��H�����_�Qw}7���̖�f�`���]3vf��ո��N�~��<�:g��;ކ�5��ݻwPW�\8ȉ�e8�<^��|
�?��9���F�0�{��mp��z��D�9�~Ñ=���Z�����u��1$��X
�vJ�93iz;t0%��H�T�fJ�vimѳ���y�!0�r�G����q��»���®M�z��k�'~��'Y�v�w�⫛I�W�>��u�O�d���
%=-]�0W�
��-��N��79�~�@K��7UwzA\a�8�uF���~)�c���:���>%��Q�:=:%:�Iu��
�qN������yq�x��G��������G�u�ζ����q�AhɕxuhJ�ޅ�h6�9��&�H��WZ-U ��ڱ�l��9go��U�\�;���@WM�;9�;������W(���u�X�?�c/��/	|�JO#`~�l]<@@������}�`긧s��	4A�f�^(�Avy��XBu\����s<�O�:�}�c�n�xA�	�*Mn}��|��:7�J�܁T��a���g#?,B*��p�	}�%�%��F�Lt{���8�;����E��]/���v_5q��M\�ܿ��c�m9�Wຒ��
�p?�	��<r�}zÀ�"#���y�v ���^ ����,w��V�׵�:�)��>RȽ�;���@�AvF�R�vZ��8��闟�9G���]�w>���9'E�*u`����3�s�jO�}ꕯ�R�tJ�*_�����T�5��|EFv�X]�*_����Ud�q,�c���JB�%
���pmf�cs�y��͐�X!wj��xe�o˿ci;�S��X���@���%�Q*st�y��B
r/���Lӎ!ʝ<E
U����!�Fs�E�/7��3�V��{��d���U�Ԋ���G�
��^���k�N�Uf�<��]�vj�6Ί�9��}��r\�С��E���y�A]��I������T��:��tl�;�9��*�`j�y9%���7��qD�J�>^��Ɇ��g)��*��]]�t`w2��3:�E�F�ߚ�/װ^`Rj�\���T��(�
8��l�[sp��<`!�����4W����i�s���u�w��EI�Z��(����9G�V*�e2�q܇8w��|j�e7W۴~��y�����U)4�y:mA4���9���<�|�%�n0%ԩ��%��
1�å�i���b]B�lb�lR�l�P�J�ϓ�h��ۑ$#�(O��OJ�[6z�� ��Q�y�Z��U��3�
��'W�T�+�HO��u�]9��$/=�D����u�D�0=_��(4���:���f��s���j��1�R��e
�He�|�\���Py�|n�V�K,��b�c��R�K�<�q�|�Eά/X�R�G%E���,F��kJ
�)H����!�c��U�+�>�j�R�`Wg��;#[
z��ٚ� 'S'��hoB����{���i,��5q���XJ��|�/g!$�:*�@��T7A.�����Y�@�b+���.���3;�a��.���(u�<g�Vd^��y;�E܉<ؙ���J)a�Oo/�5ע�r���6T���R�R�e����a�߹M�
`�F[�p�T�6_���Xf��{ѰM_����f�ю�ZLJ̷L_�bk,�
b`��=|���_�efǼ��|����+W_���{tE�p���xQ�c�aa���,����DWDg>x�HCvۛ���y�ޚ
{�~gЍW�J$Ѣ"؄i��,I�������UP+uC�J�L/����']����oe�4=K�n�.�<���9�Т��:]�T���e:�bv�t��o,k��U�е��G7�
�4Y^�u����\�C�2gN��]_�eҵ�ANv����eB���d2wٙ^�.���r��`Ÿ��j��ur��eŹr)=Oq�.ETìA@��tJ�Y͝�(��A�R��}�p}TAHN�∄,}#+����*�}T�=~*ýS���HhC0>�_�ę�LW�a�ez3�U�uF;��3J�6'�S�s?o���	���Y#�D�.���ѥi33�*H�q�z��9]2M�ER���$1M�y��-H�e>4��^����B��|�r���I��
.#v��6�լ�
[���V�vzw_�~�>�3�{3�ogb�7���>�����L��`ý��1����w��D���-�I�x<���>y��P�h��L�E�/gxV�8��Xz����b���E��K�&��ҋgZ��"��ZT
	8�d�_VW�a:3�&h��C9fl���~��H}"J\\�T@��
��J���Yc���'�P�[θ�n`��l�rңq�]H0�5�j�Ks�X-;o�'>��/��p��
 ���d��:�J�R�1�]_C���zmx��M6_1�ҫ��%v=��\_<x���֐�{
tl�t~\!0[̬�U�~�]�W�}�o�q���	���J�V�����U�1�p_�.��:�ẉ|ܬ���my�<)�<
���V�.G���g>X�W�t��� ��"��<���:�%T����s�����ra4�,�;��W9�>u���M�5I>)~R|\�IqUɎ�'�����3���AWz���΋1W�t��O����}���^�d(�w������V�������>i��|b�׀�����_�>����w������t���JgR*�3��xq���P)�;�����I��So�酈*P�H]v+g$NK���|北�<!�6c9��t*x֐3��ٞ�ZX�f�	��3N_�7�h/g�+�q�"']�f�!:��9#v%fP�
�8Ha��O���F=�uNB�*v�-OW܇EiV�����
� �u���3LZ=L�t�B����L��<!f�ѠKaf-�V���t�fFO:�mywjP�(B/j�W[l���#>�m��f �<�<�D3��I�(f�W�1-�C��_%B�Y��D?�)q���?o�y!��nт)X�!.g����*�DXF���@��c�Og�7 �=FIeg�K��ۍ�͟#�Xx1j�ŏQJ�ڿ�P�z����`D��|U�"Ƿӷ#r&��36��SޡHVai��'����;���J���"\�R1�)����A�!����5
����#��b��	�	:�v]�1�jg�N�\T|\d��J%g���L���e�,�}d�\O�����Q)ӕ*�*�=�{J
R8��b��mt����Ë��u�^�*ԛ��S��_]f���B+��Tn�X���\bw����G�M靲B,�,*	�:��քW��B���L`_�xꝕ4t0C�n�x�c�0	r������� ��c#���ԝ�qIu��ju}%2�~ﰚ�lQ)�x�6
X.�!�`Y�<�XX,�Jz���q����^5�ُa��ŕ�r?��{�0.�/��U��;mv����N�aGx<l��Km2���V��#���L�%��O����c��8�R6ν���tV���u�����!˔��ٓl��U���g
���r|YL���Z�S1
U��=�f��_���+[ƂQ� &�q��$e�9!QL����!�:"|�����r��*��o�I�\�@��z��>�%W���f����uOŒ3eV��f@�b��!\4a����vJ O�X�:*���d��W�[.�K������F�L�F�8/R��-θ�u;�V�kU��Y/�2�j�b׵��37���������فη���b
�Z�h���9�j��P��b�����2�'�8^�|�ęq��W��%4#q�!�J����C��d����:�D��z�	S!���ʊmsƍ(���>>H����e��>E�#;��)q�?����3�s����@pn�l�YL��r��{:h�r���oN�Ůu1R[B��a20�p0�g�h�>	C���/��pډ7�^��qQ��D[˥�*X�LA���qXa3f`��fl�j����Q�á������!��5:C+FC_��8��h���tr&����&k��/cx�Y\�mW�>�p4CA��R)*DVf�	u�m�I�A�xL��z�V����"�O�g�H��.�4)�$����<uJ�����	`ߨ�=��̄�s9D9��ݽ�X[i10�����c���ب�0WÏW���)=Julb�p)��]�y$Ԋ8� �Gv��-��c�{:uŋ��)�2�^I
�e~��^؊��3��j���,Q�z{��Y�#�9�fƥn�_�p,�NQg�o�U�kb�3�9���Z�X�T��䫕9�t�G^�g�2S���x:_x�"pV��#>���+���a�=�:���;s�ܑ���B��5`�`;q���8�c�	F¬׉��NqQ��M�*z������;�{�ܻE�������̙3���9s��dҩ��?�� Fj���D���ԣL�[�c��fd�GYjO���}�Q�=��M�3�x����j��{�1�p8�oa+?�N����c�|���$�,܃���kSo��V�+F~�K��I�,�����[���¢��Vc����MHgb����l�4�شz4K_Ct�҇-�G�FRI��/�,�}�2�ai塑��<��e�/�F���)�0�[��<��[}�M�ɳJ7w�<S�鵌7���E�O/p�w=�� ԙ�6p�L��Ě��N���dX(�a�W_�'O��Vcǟ�AY1%�*J`O{��߀��Kr�=�Ӌ�d^{�Wo4~��K/��^��W=gұ}Y���/���W~�g�7��֭�����̹~��ԋ:5M��N6aM��d����A��t���㵘��1�7�w�@o��;z���X�ޢA�q;���e���ie���}�9�6r�*��(�l�S�^]����J;�'���x��s��s�0��O^�I�Dׇ�>*���g���z1�Y�m��3�
�W�m�5]\Ҟ�~�\M����5�	|�}���g�:_6j���O{Nm_�)�՗�}"��S����y��罢^*G5����瓄�[D�1ېy��1�O���?-�{ط�y"H�p��>���F^�����m�8�D�V�o�2�'�Z�_m!�/t�"���&����p�4�Z��}Co���߾�7~��+'��c3�l:>�����k�^��z�z9o5����&V�p߄��_��+Y��o^���ζYO��V�6]ʫ���:��h=��L�hR|='�� ]}�\t&�u���ب���W-ed>+g~�ꋖ�����-�o���W�'����R����r�����}R�w}��B�V��GK�]���?[����o����O��~	<��M2?~��3^��W-�Ճ��/հ|5�8���	���R/��;�s]���f�Ye�r�ʞ�I�+UN��X�'*ת�t底�Wn��5��T��=���c)�Y��2�����,a)KY�F�R�����&҆���9�S���>�{�"����OG�)3�y�D�PO)��:�6FJ��0�H�d�t1R�R���җ�D��j�L�p����HY�(�����<d�1R�9�;N��LioR,��V����M=c���R�Y���V�E�r{Qy���ө4HD�R���B�J���"���J���j����IM����R����!
/�Ɩڅ�>u��J]O�^�3y"�����ld�g�|u�m}�r�*0�QP��>
�-���%~V�����/�j�*&?��ׇ1�����a���\��Lf�j&�&�U�G[�Eb��������c��!k��Y�׭�/��������Þl�X��O�x��mY�8[z۱
Èrd���auk�2�vLҮ���N&#1=��h�h4.�9��쎬n�N��!cS���3]X]���+3�c0�"��2^�Ό�2��/��z��۪�yO֋���Lj{�dFo��E>�HD�0�CW~��I�-�9c~�?��Uau����I�153c03�7v,�7C�R_�����g���Ѕ�.'?d�P����u�7q��nK����ψ����?�-5e�r���H4�3�2�e�5�5ʭ��}i�R�r��	��3��ۂK���<A�rB� ��j�X�0+
3YX��H��R�Y�JBTE��
^M���!�Dž|�ǀ��y����j"񤈫-�눸g��C��H�'���'�~�z��OE�Q�	�sQ�%��,<i��K�yEx^�ׄ�u�yCx����']x
�����4�_	ϻ��k�yOx2{_x~#�oE��	χ"�#�����4������d
ϟ�'Kx�	O��4�O�����S�	�g��g��|.<_ϗ����_��k�FxZ	Ok�V���o��w��Sx��	Ͽ��?“�kÄ�-��@.��<�#��+��
`
��@�'��
�}��@?�?�@8� `00���À�@0@G��"�8
@=Gc���c<0�L&3Qn
©�4&��L�3�H�
��?�,2Qe1B�ɖˁ�J�`�X��뱁l`��&`3�)آ�ķA䇀Bċ�m�%�`'�؍~�A������(p8�N����,p8\`��E�◁+�_Ex
�u��71�����x�����)��v\ķG<���N@g���tz=�^@o �����\�
D8�À�@UF 	�Fc���8`<0�L&S���4`:�R<5�L`0�����B`�X,�ˁ�J�`�X�Mg-��`#M��l����>B�(�ہb���<��B������~L�.jG���1�83�ur'?Ņy8�E�y.?b��%.�_���W^Cx�
�7�nw���=��z��z9���h��/�zi�^.b-E��{�â��vG���|,�z]b�D��!>�6�c�?�S�z������eu.�믋��A�``0@1ϵ�
G��F��1�X`ZD+-0���x�h�	�D`0�LE�4`:0����B��E,�0��u�il
"\,�K�e�_�p�i�i���*`5�X�֣�
�F]��@�/nP?�
~q�}1�x�M��u���R	��N`�h)^�ٿ�ѽ�>`?p8G���1�8p8��O��3H����E��.W���5]����|�M�p�Ѯ��P
�C��@;C��
�
�
�
�
�W��!�t:�M�ovC��2=�^@oC���h��6쇰?0B�``07�(0�;#�p40�q�x`0�d�_MF�S��t`0���s���=t�=�{󐄑�7�`!�Y,�� \�V?"i�!?�Ec���/��i�1�R�h��h����
c6��l�U�k�1�`c���k��X��7��FD7��-ha+B@!P�6`;P�;���.`7��`5��������J�J�Ja�0)����!���M^M�D��H�A49��U�ci����I$?M0�&P�	�j�5���`@M0�&�X��B��5����MN#h$��Ap8�.�
vú\���a4�
\�7������ې�k����Yj�T�f����0DS$�3�G��F߳s�,��D6�9�/�U��̎��"��(��AecP�T6��AecP�T6��AecP�Tvg����+��M^N7Sx���yt�'��
�}��@?�?0��!�0�	�h`0�xST���D`20��fs���B`1�X�Vk�u�`��@�)jm��@	��	�vCf�8���c�q�p8>�Jv��,p�\�����M�6p(�X��v@.��@'�;]��@7�;�=,�JO�ҽ�}��H��[��K��C�a�p��F��1�X`0�L&Y��Tħy��3-�%���F|�%�����"`1�K-�!���2`9��Hv�y��*`
��l6[�Pl���.`������(��nz�M�#~8i�S�%�ׁ�̪j��%2K~hI���|ߒ����%[�7����0Ò��x)£s�%�m�v–��@kKvB��
,�xw���b�=�ހn�_X�eK�Ғ�XrX�Y�cK�i�!H4�d�%߶�;��ܒ_X�KK�ʒ�Z�F�I�d`
0�L^���̰�$~g��Zr&b�,��3�`.���`Jy�|Ւ/Xr8���Vp��B{����p��&_�dSKfZ2˒�d3Kf[r
�����,���-�Lb-,�䧖X��%?��&����͈�ے[�ǒ�%�"�OK�Ò_Y�q��%�%��~o�	(����^/�#<H�E�C�a�q�GvG���(��}�N@_��8�S<?ya��	�<K
E4ޒ��e����!�K�e��䷖��u��n�o,��%o"�ʒ#P�-DqC����g��.҇���0S1�C��=Pb;� ]/A|��yHv:���(�b� ��<���@w[���i���V̀��g�0�m�,	�XnF��+�"0�d�5��-��[NE�i�t`0۶D�[������٢�|[�T^~TA>��gllڶ���b�`�ږ��3�G|���8�G�[VNľ��V�j�L�����@ȖX�L�$�=2�r�G�oز&ķ!w;�Ӗ�u�b0���CTM��O�9�
�A��=��^�j*���o��O	��-Z��;a��U(8
䡂K��W�\n7�ި�*ǁ]�6����!o�)Z���@��u0�Geb���>&�*�4�ȳ���e�:����ѫ�6�4�s�\]���eZu���eu)�Z�.;!k6«�	y�7�@x
�:�겝^]�ϓ0���|u�Zuy	���	�t�݀�@Yg��ר�?e&��U(�����!+��.E�2ڮ���C�~jA+����z�.�ArPt�+0�^�ķ����]Զ	rAĻE��f�
@o���@6��m��(���y��V'e���S8���]�>:�U`L5�>��d�#ET�%�R��k�ħE��V�:��=��jdA��mA[�`���!샃�"{��ۋp�8�CG�cP;�Z��O�)��I��d�gd�Onד�e��u��u�"`�`ӥؠx�����g�֗�
4y�s`�s��hT�����J�ߓ"�] �ˉi'��|�2NVD�.N��S\N!nn�L�I�����0�ğ�%�Uk�MF�
�g4��gE�X|���v�v�6�@�Lȗ�Lȴr���ق��7��H�
�6��a
�_&[6������(w��w
d1X%�`'�����`"pM�Q_��n��`P {� �X,&��d`
��U�)�;Z����u�AU4�JwJ���1��ș��,`6�O�� >��A�!���k �ʨ ����}4�+0�/U��<���/�ÆG�7��ipB���H����N�t��O��	S�4��4��4Ly�܃���z�|9
�&��d�4��/1�i��+�ir($^L� |���Y����א�뫲e�?M�V�	_���������4(;
�yN�d�a��0air-��ߊ�M�w ,�#��`dg"��@|��&�Q�Pd7#o8�go��
�?��9 ��-�E�
A��6�?�
6�_b�K�6�&wې��4��uH"��b$K��������
*.BE3h ���?	�ި-2m!3��U��!�:�5u�U}M&�^�
�䛲�x�H�/�C�2-]��P��E�ˊo�M,]&�-���30�5W��T�]�u@W`��!F:F��KG��1��PB:���	O��g�U�1����tX*A�Q��vBE�!X�">��)T��v�i��*��"���йH�6�����2y�����p��lC�a���l�#���p-:}!���O��a��I�N���9'�.Q�P�C��f$�""be 6S�Y\�ˑnI�ҩ��xl��h����;�F���uP3*�u�SθMi���e��T���\7��1��1�x���6C!�,��/OӪū��a��5�2?q���'���_Iwpj�D:E�6KH��o���v�[4Q���Ď%�'���m@�BӮz�tEK����1�K���	�5Ď(�oePH2E��٪�8yJ��U!�1A4Ū&ܯ�G]�U��ʧ��T���D��W��d�ʔ[]�#O}1���cw5jh��;/c���?���Z��?nr�Sˮ/뾵Pv�vl$b���,�7EeT`&/99�>�����%��Tt��~�e�y��jbԣy�\W�-g��ˬyOl$l��m�$��a��#)n��T��쎖�����xn���=ly�Sj���\K���}���3��b&܎�V�b�ǵS�|2ޫ�H��o�v�N�UT��4ȟ����u])62�:�`�Le�}r��Ƒ���ݱ�QY�Ft!y��;�kОQ��:J��"U0݇��"u��,����ItL0|�ZB�l�e&8\�	���L�4���[�Y�֏;"����M����5������������{�`�^KSVG���~B�y"?u�{���]&�,ikKP�,�tXdI�^�յ��uaj}xN��ٻ�j�'�7�4�/P�^���b?��KD~A&�2�J#�K"�Pƫ�/N#�:1ߠ�j�xQ��I�!q�&/@G�F��+�]M�����e�_E�����5�~K���2jZ�D>"�"$҄��D�R�T���dQ��lJ6'�	�T��ȧD���4���_(�9���—�~�hK�Ye���i�7L���ךi����i�ƴ����y�ɴ��/�U�7Ӓ�ôJ9�i�ۀ<�$�H�� �� U;�<�R�#�c�@�w���� Oty�;���S=Aj����v>��}@��y�7��r����� ��<7�'�A��ӡ 
���0�������H���1�����hbF+:Fѱ��c㙬���'@��� oLbLV��'#|Dk$�(���"�i�N����wg��zJ�7ҩ�n"�U�?����v�*:O��.P��T�,T�E��Xq�0ZPK����M�Zh�-<�eʕ`U�~]ŴՌ���U�ZE�A�O�ѯ�
�5����cZ�8��M�b����[�[A'3-��0	�2�H�ئJ<�du-��vգbU�De�l��TR�b���_�ޣ8{ݧ��W��%y���ȟ�����GA�8��q��N��<	��S _���H�� �ρ|{3�w�j�"SVI5s�����'��h5��jmY��j&��^g�
G��3�[L���Np�	�:y��T��p�l��z[ڪ�v����\'��d-�ZGE;�zgN*�ڕkݜ��:w{��=�p/E{+�ڇk}�E����9)e����`�WC��P'��n6���8y#��(��hN��U�X��8�����$E'+:Eѩ�NSt��3@�j3U
����E�V��)�����)�c�=�g�@s�6\�:�r-�-ƙݑmA�[���l)h��+[ڍ���V��`?��d�@{�ՠ���|��[ڗQ[?��l��t �:�m̶�a[A�� �0�
AG�"Бl�(�	��ձ�lGoDzb�dMm"�/�nw(�S�]�5�݊�Qt���P�$�t2;:�ѴLeQUmm�!�6�i��Î�E�wE�q�8�\;���N#8õ�4Ϻ~�1��M\pl⢓����+Np�	�9�u'��H���h���r�I�A�vW�=G����`�Y���
�B�t1k���]�rA�����%+X�+YG]U�	�Xg�UJ��3kXp�2:mֱ���gt�l`��Ⱥ�nbUarE���V�S�-�h��-d�z]�g}��X?�T�_W�Kс���>+:Dѡ�?L'K�ӐtZ�#tZ�#��h���XEǁ>��wF6��&��d�@w�ɠ���=l*�^6
t����=�f�d�@�_5��e|�N.���JL>��`�\r��y���]��O��l���O�3��"�v��:mMK@���2Ur��^��e���T]�A���Zg$�tZ���R>�6���f,��l,��ԋl#�%�	�2�z�m�ʶ�^cA��,��]�&+��֠�/`3���&�;�,V�\���e�󝠹|h�4��f�g�r�X`��d����g�ϱ�گ���
̯R�!5�à5�#j6�*uS�㊞���8��O)�iE�(zV�s��W���EE/)�e��+:�W1ޞ�h/~�7�~>�	ڇ���o���w@��x'�q�@�Π�y)��c<�
���0����p��`8��x��������AFBB{7�u��		y�:�H��yGT0�w�;�D�	�+8y!*N��`^գ7�hwE����/���r��A뢗A��h���8frZ�8-�ٜ���E_��PD�5m)vqD^�Vr��oh��ݟ��
P�
Tt���I���ݵ|�:>t=f08���V�A����n��@���tm�A7�Q�Um�5z���4-!N�Z��Z�8����a���aP�i�p:rv(
�Tޥ4�����i}��cѣ}|�~P];�i�t�t�t(�t@��!s�N�	���c`"&�m�$�,m2�s�O=ϧ�^�O0�H��m�ɛ��0ݠ>CM�LE�j����(w��A��j8����v�'�En1vUx��]��"��Ŋ.1h�,U�-S��]aP'H巕��(���+��=�h)_���m��m��EW2�����k�t�N�u���úAU�QQ�S����e�7l��G~��ΰ��:тN*dЉVh��Y��Ԕlw�
�����v:���`��q�R��`����
���		��#N�B��t:F�����ӑ�K�ô�Nk�~B�뤢��:Nc���g@��gA���@��A�@�A�@��A��t�����t��t�����ӱ;J�w�N��ܱ���_�2~�MԵk��k{�n_W���TS�[��=]'��im��I���(�{:�� ������?�{�:=�ԙ�S�S�ښj��<��7�!X�I�:���<S�EM��N�RHg
�.N=]�
�9ݝTG���r��N^��q�}M��~N��$�p$:=�;�'J�^�aNb8	�VZ`�)R_��@|�>t�>��8��V*�A�*e��
��GCr�>t�>t�>t�>t�R��ح�p�J�!��B��"��mJ�ەz��zK�ߡOݩOݥ?����~]N��kSA��ev
��=
]=��@��3Q�Nk�>�d�O8J�Y&�G��<ۄ����^o�R�<g��;�Z�L�B�N�E��+m/�x�ɖ:ZY�˕�W8U�t���I�r��I�q��:�:'X��mp��s����N��:�o=�AO�!�3z!�Y��sJo��.�Y��f����e5�W�~�*�_Sz���pC����-���J�w����Eh垮�mf�ζ�����i�jo�b�"݁��N�$��nZ<^�w��o�Mˈ7�=�e�[�^ӲⅾϴD���7-;^�LK���M+.>^?dZ��	��q�Qj�#��7�QT�a��P#e��h�7'ЛN��f�Sf��ۭ,Q�h��);C*��|���e������<U�@U�0�E��2�%t��1�e��3�t�/0�U�/2�5t�/1�u�/3�
�J�+LvӴ��Lv˴���&�mZ�Z��1-_o�����7��i%��&+5���̱�dM~��M���������a�xf��4VCkoi���kiz
���5�<K3kh-ͪ�u�4QC댒�tƻX�^�u�8�~��bz7b4Ywb6Yc?j����lgVOT,��B~�
zodW�����>Ԗ��E���ӎ3��RZ�o)-�������s&Hm\0� j���~�dCP
�f��n�l����e����
,��=���0�9	+�m-6�����h�*7���ZVy�,�����]6�u�M��R6�J�r�d+Q��S�D�-�j%�v��z
2���iܚFNҧ�/3,m&��`�Z���t>����9����Dl."K�r��A)�-m�+�*�m�I���]D+�v��X���);Y_U٦����2�*���-Ͷ+�+,M�naiq`�`i�`����^mi������I�ZZ��X��zKKs��%!�Bwp}#��m���f�����+�5l��k+�ͰX�t3�b79�DT���1LB���wխmTn�Ŷ�6i�®T�Y"/��
}'�i}��w����F�Z�_�{��G�dV)�>2�*�~�G;PM�� &{�~����c6�;Bӹ�bGa�|-�[3�:�Ô�a��9�h��U>����V��b�0�<h�ӘX������������;���%;�ɥv�bv�N�]��������{-�@7�Sw�F��b�h�Y�2��~�]!�>`1\j��qW��q�Y�-��ݰ�w�R��-Km����;�16������=��>�?\����q���~ch�V���l3��6����`����`Z�DC��
�l?����=ihq�d��a�
„q��4�r�+�V~&cV�~�g3c�&nc���%f,_7������%�b���U��C�ʝ8�ʆ�HW�jZ��!Yeg��T�T�
V��Y��]�Y�`Ֆq���~���7pV��jl�l؏�⬂�=q���H>y��'�{�ɧ��:X�Z�ku��#�V{��6!�4\������5�����m��[��;H��=�.�z�t���=;�4���:���9\�q��Ӄ��gnBƍf��5rfX%D���rXq�R+�^j��1���l��}W���s��|׬�6�Q�"[��{�ﴷ�Z��&�[5�<oi�,�6���FX�Ns���nO
M+l�^d^
"��sR�M5k'��^�/�̶*�*--|[},�	�%rM�J���:�1��nER(�3oguy�>u2"�*mJ#>��J����l�߂��a_�̫}���� �#ش�h�Ih�F�w�`Vg��"2�
l�M4�~w�wuS��P�����Kx?Ѭw$�/��Q����a?�j�_�M/����u���!>d��L_�l�h:X%2�i?�9D4���xMSr�I�a�t�Å��H&��-K����M������[Z�����H�P|V�>J��P fë��ږx|�oVT�f,�C`���G��@�}Έ��v���<qsi���"H|_/Mg�+kZӱ"�K+X�
���8�燅�D���¾>b��n��xW|�������
�DT�o��~"~i-*RS��D�\�p���$�<o\�$�[csҞ��Z&�>d�W|�C�=(>�;��D��>M����gї��аtGQ#��|�D`�+6�!j~��f���p����劏xH�#�uSOF��lWz�C�G��-s�&��1e�NJ�\Wz�C:>��犏H���V>���"=�)\��:Q�di��A��m�.X�&K-�	�Л.Dl�H_�&�
�qas�Z$��E�%*�T���f�E�م+�X������}�T�1|��U�y�5hb���Y���l��d����m�26
]�T�#�maf����fUY�?qC���C����u��E0�;�@�n��a��g���E���t ~��U�"Ba�P+EW:�jHd����hV�l�!5NO���-T۝�tZ��
j��[�%��:��!��Ӊm��v�NJu�8&�ΔOW�lǃ��D�ŠT��jT�"������	�<��+6=_d��q3�R�<dp{ƒ�	LsL`/L`��	�ba�wYK��.ki�u�e-�����Q�a4~��7<J"��?[d	��N���p5� "�zYǣ�z<b�'\UVE�t{�:�:񓑂�ö}��*�&Z��θR��q��6*r"g�"�A�uV��sD�A��Ze�wY�Sw�X�ocT� ��!���G��VK�-�Mj��#��,�����J�Up���\�˙%�>�4�hn
�-d�V�p��H>��b�6��]��`�RDKEV��oc�mm��R�����"�Z�dZ�'a4�Sj`�ë��<X)�I�f���'�nH�9��ن
|�� #�V��+�,o��uA�dY~�Z+�K��=�ǂ�:}���ٳ���vr���#�:�<���*��]��n'JBm���mc��ű�	4y�3:��љf� �E����8�%����<"���I8�hό6�c��%�W�����vF7�S�;u2��T�H�R=#��H���z#�;��G*?��T�H�R}#��H����!�?��ԀH�;o��O�1z�����V��N�g�`Y�:)Z�ϙ���j6��t%Y���I�����3��i�Nj$�M�.�I��'V��s��hg���h��0��H��0F�Q`�V����ۏ�>2���(6!e,b�8�?m���xm���6���Y���{��c.*�/]���3	Ê�o�+cn�Wk]�՚���M�W\׌�rK��"88E��'�O���ej���^��b��q0m�ЫM���<C\��f`�ݐ����S#�
�UQR�D�}M�4�b�ҧ�,��tN���~���ꁕm>�B�lC�ZxX5��e&D��m�½P�<.��`}�ξ���Y�T۫M�C)�;;�T7oZL�4��Z�&��t��C߆�1������vЫf�j�E�u�9.����֓j+?o�M5���Ë�QE��p��wڏ�
���]Q@���È��z�_��v�:0���ܨ�sm:��ʍ"SL�gk#��=�uqa�7*�+��&U�^\!�|ۿ��O�q�x�f�J9'�A��s@9�!����6�K���30�Z4���it@��/���r�+�f\|;��b-r�ct����azp.�5'k��H${J2ۧ��o����3۴�<\����T�1ke�qv"������*�d��_jÉ)L���=�X���`w�P��E��m^u}i)�UZ���1��H�V����(�d��$��L����|�bR�zOz�k��ñ�~��h�oS�ϞU>ӳ�N1��B��(��\1�G�T��)��FxED7	�$ʈ�QQ�vxˏ��f%�Ymd�3>�~̹��\U�9e>ql�\�]�����8m�S½ߜ^SI��J�/#q<Z�q�N��t\x��8���+ʌ-��a���ߌ���QoA�����/���۸Ȭ���c�sZugHMwo��
A=��F��%l'�);�OٛÑ����!����[�}�p�em伓�I��V�*��5g�hN�r��u��h�Q��*ٖd\Cz�z��t���;�T*2�fA�fh�F���H�����!�B���k5cW�H�_
m���N�S�����6G~2�ش�V�l_[;�_׬�]�JTb��!��Z��M�?�m�\�M\�58��d����l���Fkl#��v�j����H�W�M���q����v�r��9[l�t�e!���`}��VU0zn+�݈�|Gϡ��`�/_��M����������y�c�!�s�Mɋ-q|�5X�֊��6�@�j7�uU��W���'�F�!+�{hjUt=������2�������"�2�݆�W�Fh�T�*yp��Hy5]�$��Z�����\��
���+�,�Ν{_/%�TM����j��&*�5����"T��͏�V��Xln�h��ABu��jnn_;��"D/Ո��_��m��ǩ����v�1S5���v{ 8ࡂ�	e+�'u�P�*^b3�D*}������d���R�¥��eˇ�b!=Z�D��
� #k���5&D�>R�J�){%F�O��Kq�s�nW��M%=Az]#Bt�8�Ï��qj �V�g3R+�c�|%G��E���"�&�.!Ʋ��e`���.�*6�Zk'��2w�5��=BEk!�5�v��L�1�N�T��z�9+i�Գ�]6=��ݢrgw�c+�]ت���)�Ah�@�WC�lwO
9�j������nT��T�1
�~�|��:2�vb#IjT��ㆄSVyg�����ka�
*��T�;��*�E�p<�?�R�ɱ���%�
��􁞿nv��.
��J=��ƪ�/F�LbN�)-�B<��ʪ��ؖ�"���l�Vq]Ss��#�zHy��`i�
3�3T���9Z�B����o���'���5�v���ey��첣�v`���l��ֲ�[#�^�‹hon�����E��c����Yq삎��r�MG��h����(�\���>��5�m'���`��c�;܊��.�V}N����(�� ���7��\^�e|����}cl���X��zS��"�ox���t�6��z�����9ʵC6�%�4��Gx�h�M�@�g�Gӹ�9��=�]f-�I���tl�|NW�Ίܛ��d�Ƚ	��T�rR�S�>�s%uug����;���WYZj�����M�+l]�a]�(�t�q�~�f{R�_�v�9�l��׽�+W5|�vy-�ï�t����Is�>�T"GIԑ�~2
9j��:<ʏ�l�E�|WǠ[�C<���c�Y�q���Y���<*�$%E޸
�%�Șr�مo����Ŏ�h%���7)%r�:��a�VTL�*<Cg�䨞����3vIQӳva�YL�9��E�N����ɺ��M��Y�~V�~V��Y�Y��`5��u�H��oH��3]�3�e���(}ٮ���4�t�y���4̪8���pN�b���h��zf��T�+�@���+�y�������ҩ�5z]�R� �:��Q��U�ͮʸ���7b�7��7Q��t�~�G7�}��G�yK���2�M�۷�-�}�m�
۷��(6!�n���ZIhn4Mh���$@�,�&��^=㖭=u�	����eN4��2n+AM�I��"ȥG���,��Dj�(��WV���S��b�֫ztߐ1Ì���4����;���h���o�i���0�Z`�����N3s���]f�nӫv��{L��cf�5�f`�����Z�}f�~�+�����03�^8hf2�q�C4O��a����B��JF0��uS�C3����F��(��Hr*%��HB-�56���Ү95��
 ��]w�f��dj�}*��æo�8lf1}��3��a����L�(3p����+�f��X��i3�ٔ��9�8m�e}#�6"t��P��u?&������e�~#�!"t��Ї���!t���I�8��پuv�� #Gr�*����j#i^~_�R>r���V�GV��l��CtA���懎Bs��I
]��\P3��
,�Šv`	�,�,c�,��V�#��˩�&��:P�F(yt��t;�������a�؃�?���gQ-�����±-e�1��ΐR3un����J�+Y����7�������`l�e\�0P˟ttQ�/cK��_:��ҹ�tVĨגQ7�.QeX�1��ͪW�B��A�����Q�̲��3��,�ݒְ�Z��lC�l�49��
zn�j]ج��i.������v��̶m�I�([�du��hzgɿin��C~�DNՔm��ٺd%�gT:TZ��#�
F�nnU�C
ꑊ1F�̶F�wd��-�`�9)3��t�yx�vqgW���O�`�3Ϛ�Ifଙy��M1����o�8of^0}3�3��e.���L�3p�̼l�晁�f�ӷ�\13���Efઙy
;��ff^7}��u3��[an��7M�fঙy��6���ۦo��mf�1}��3���h�L�f3p��,5}[�@���c�Bf �B�[`dz�a�x:�+U���D<S�JLfy���Sप��̓�$�ʬ'#{3�q8�H������y�N">/��y��$�<�Dϻ�j�j�0�K�x0-T;<k���3�C�������m3�mR�f�w[��W̰�6Y�Ϲi�3D�ϻi��>A�����U����=���=7-=��7�yW�/��x�� }�M'ЛH��d9z��n~��wYAy��]޾WZ��J�?�^i_���?�^�J�k���{�'@0T��;:ꇥɰ�n�R-��H�[� ����������du�Y����Z`7��g:l"_=W؍���C������(o.��>���aoG�7�^��&D�(R��s�v8sYhj��Բ�H{eh�zY����F����A�^ڂ�l�o����"�@_.-ۉ��{'�N<V���	ӏ���D�(���_La��C����iث%�)L?Δ�\
�?)���L"��"�� 	���ft������I���rzN�:�-tI}�Z��r��k��Ј�S�C�
]q�Y��vv���JK�~�!|NW
G��|]%#s:����	�/p���B.�~�ar���#[ѷk@�K:�QZ���E�X�^6��^��O�Јo���\�����U�U�BJƊ(rf��;�-�;O��w���Q:�
w�F�i����D�&����:*����
������ͦ#�z�ă����6�T**-%��2�뮕��b�)Q'W�R�Fҏ2F
7�e����?ϵ�~Ih�U�f�X$5�5�{���\D�e�a���q���� Q��&�2R�/Գ��,Ԍ�籘��&
�k"�3<���[V���%����Q�����ұJ������0	f��5.�aB�N��M�i�{�M1�$�
���ʊ��'B��<�h���Ȱ�-b+�l���$�nk��>�onR�C����@HE���T#�ԉ*Oz�w)�L7�l_'Z���>��q�	�O�q*v�9}MxU1S�#�g5
�4��Y�Ej��S1���9r�÷F��n1�1Q���@�S%VbZ̎��*L�FK�6Bt>(���u��X�͖��4W%��l��q��l��9���dw�B�c���B6)qKi�S�B���Pᕈ���:�:�<��԰����QҺ��	�K����d�v��,ێ���P�Z˖���.��4(T��:M�e}��{�N[\����ڿE�������F[�л3�KD,"��MD�D�%|UoUB�7ːWO�-Y.���K`�R�W/��6��/5�ƣ�hԊFE4jg��Jc���c
0Q�.pZ*,��C�2�2�P��Y���N�nPP�Ꙫ�$�-��z������G��ܧ?q��#��9Ȏ��p�?��cՔ��
�Wb'7����O�v��O�[2�#e�[��^t�Lz��8�hL�k�>C]R���g�E�ϰK���N|��y����e�F,��.۷�~��Xz?�s���1Ԧ��,Y8O�
r��6Ֆ]X�壚��!��$�z�K�l�D��U�z�Q���̿
S7�c�ҸA��"�s�D�A�x�95�&��Nu�'��|3킒l�
;�JK���?e.�9,<�������۰���2���3ؔ5bZ�;w��WY��ujt���5l�W���ܹ*�E0���`lqM��ī5�3�F�h�%�C��r��؎�s���З^H��2��>�R�-��ߒs�l�p�7תV�t(���ӇJ���0��k�Ej��kNJL�� N;O�a��0���`
�	N�q�Y>��<}�i��	ԝͫE����?���N��u��M\�8�SgM����pO-��^-A}x2��1{�;u��8'���w�Ѐr��arjqZD�y�k`W"��@5���85�����*�<���}G�P�'5���7�`ޮ��<Y���l�Rma��#�E���{Z�鑔�M�tg�0n^�)z�����V���VN}
I},�w����W�=���#`��������A|���W��1RB�;%u�b�ݥf��F��25�˦ʝ�y8�%��›��a�(�2�tF��2O���d��o���,~�l4��j,Yn�I���W�uz,R����w�vT�;dDj��L5
�7��$��#5fic��'3m���Dm�Ԍ�3�4�R��dVL���R�����aMIj�
�RƢ��`�S���i���6l=�b���$6R=���D�
G4O�z�b��'*�o�}DZ���+�\ax�k��we�K<y��	2��xݘ��8.G1LS^#�.}��Oz�����2�1uc�Kf>��,ď�^�DL�نmPlr$6Q��Òm��H��Hl�#9�?�:���,F.T��縔L����&ID��v��=f����>�V��Wu��'`�*ި7�\�+R��2�{��/a��g�d�E�rx{�"l�4/�|4�nR�Ȟ�Ʊ,�X�iwW{����计&9�
�j-���їj$p�����|D�b�@���ٌI����*N�NF�3z�RO܃�^��$�C5��+~ʸE*V�ߛW�BR]����3E3vꘕ��>)������$l�#����z͛;�	̀D��LOu�}�]�5#���b5���-woz
[N!��x�k��vV��z���AR�z�TM����H�뺺��b8��ata�����k&;�M>�7���|?>��ve�d�1�bg.zqw"px�Dg��.q㏙�
��Q�3x!M�3�4I�3v�Rw�3z���j�����G+d�3�����.�}b�*�[�-zWs�#��b�����k�u����~�RL�^m�5��D����'z����g���;k��SeAn1mR�M\�q@���r��]���b��y57bv�l#�1kZ_F���T;��:-��:χ�tw�=jGWXS_�[��A�zz�|�U��uM��L)^Z5Z�A�M(�p�5�f@��A�6A�
��Uz 7c��"��0����SS���j��F��`UP�<������_F4�b�8�2��i�2��;-���<5��I}N�j�(Y��JN�;0�v*H|C�GG>�_���נ�5Б4�?zf^2IҝK�0n@����]��Sīe�籮F�������e]5���Hs������2�%�
^_'��6���ޏ�t�4I���T=�1[�#W
e���i��d���H%��n��9?�ƞKEΡ�-
��x� nY GE�@�dl�L�K*�=�V,�wݥ՛��L���IP3�Ǒ���×G�?�I*�;�����=��%��S��:����ҧ8���S�C&��,6��v�Di�jÝo>�t�
O?�Xk��m�}y�U�~��B�W��I��O�'TE�p�GFy�eO2��N���T��`;}��.��9�`c=�N�^������i�m%Wwju�"w�qy�K��E�(�W��Ƕ��}�c{���"�,�:����TO��<g���绂��,�|�n,8�J3��q�����s���~̓z�Ϊ��o�i�`d��#)z���eu�y�.�IJ�K�4�ν���fYF����/�2��gAbY�a�g���aĴэ�	nc�[�[���S��1�G��ԟ;_�R����+G��]����\(eNt�v�KY��+��z�^�s��.�	���6��H�U�nt"f�"��!�'�����ߞ؃�'���I�ޞ�s|�>V�����K����S�.@�d�M��{�N'�P�a�B�6�@guIPg�
��4���PI�
b#x0#��a̲
���{<�s��zW��5�j5�7�7��>��|[v�H�.��ܷ���C�T�}s~�
q�-��B�:#�H�aA�75�G��
��\5�T�/aY����l+[4�dd̓�Q3�Bx������A)�TD
5�����MVWM�p���Ӌ‘��t*S�+m�Ǫ���w���҄�dd~�*��K���Jm�ٝgzl{�t�{�����y*�2�;��g�gvp.��L���]QT@Ȫ�P\T@EET2��*�oxE.
�H��=_^���<�?TF�/���D�9'N��ų��o�iУw�3h=O�:G�I���ќ-�g�N)b���(�y�{��.b�h���=�b9m�:�@)m6H�G\�oA�]$�P׍HՏ�d]
�0��P�̄j"%�a����UG�Lf�cjJ�T8�֨��7���ʔiQ��G���*"h��Z�����Ŝ� sd/�#�(�ē�j����ͮ�7;0ND��i�j��y���u����pd����Z>��Â�zSVky��:/âʅ�%j���������.3Vm0))�1*6,����W�wQ�o��U��PQ��Ȉ)	JS�i:��֭��<�Q��K��V����in
��bqY�Z,¡��X8�n-3ó����8"�p|Z�糌�ik|�n�O;���t
M������ԐT��V�x��|%Q�*G/�Uf�Z�V�l��3_�2�/����_S#~Ʋ�j=���1,O+�r	"�_�@�˩+Вr�%z�?1�5�ۊr�
�[Nޫ@K˩�*вr�eԵkI$$��qH�����C��(h�]0���\3�
TO3�AO���˾�L^�ߧu\�\N\����5	��� ,X)
mR.�F�k��
��+sQ;��2Wo}̗����s�@ӈZ�T�N�I�DŽ�E�
y�d����J9{	:i&�9z_*L����ܔ�"�78*���`�[5�k�gX�G�D��m�Z*����*��ٶ�tq�zeR��ayHo����Ӳ��&�m)�l�,A��u��p�	6�q�ĪTe�r:�h���2���G�����=���M�߆y�#�	VB�H�\��g�}�B�_���`�תu�eւ�%.y��$*��*0	�LE�
3��_�Ć��y�y�yVyz���@�/��U�?>��}�\�����d��}H�$f�W&��Z@��[dNJ�w��M@G�F`�j��뜐,���%â;g>+&U�,�w��B=�Xe!o�!N˜(���Z"-S���0��-`�eE:���7��:�fA�%Sh��2�����"��YU�eU�"'|UNJ�3�1Y?�{�:.F@|%�.�99�1B�F�F&�/Ҏ
�d��hh�
GC���pB[�P$�_>���Ӌ�e��aޟ�Y���[P|�c8�(�_�EZp��:J����R��|�fӇ{D�=|�M8����|�%�yw��W��a�Yk��o֒w�Ĕj���Z
�*wUC����!w�Ĵj�4��.ڷZ	�;7kM�PS�U�)��]�q��x�����x�F�7�o��S�����orzU��
`��Q��	��� ��+Eg�K	@�e�E�T�\�O��ۄ�K��
�k.X:�	�E����K����w
Z�	c��(P�˼f��5D RHEhJG���NE��ӽ�6�;��}�݄��JySV|��]��@1	�[�����i�P��6Ni�=q�JR�P(��)��� �-�8�2	hѴ�zC�쥬�;e�݉��b�q��w"��Q��wь����7k���{u��2�M22{���c���8L<i�~��i��0��B�.�n,���'7wC5H�Pk0�+�� ��?�P�\:n� F�B����#�ETb�0$Z�D%DE){_�t�x{�%	�j�(��+9Yt�\V�g$�ۊT��?�z��gF9W<������.��]z�kB!nΗ������5*7�@I�K��@+��^Y�����ےaJ�n��h��E�&*H@Ԃ�3�=�E��Js��^<���q�"J��+��oEEQO�U���"�ꂏ-�V&+�5�1��m5d�2J�[��C�0�Q�̴�?5�S�?CJ�e�i^EJ�e�-� ��_��l��91�ĵt,v�:- ���R�r7ӢīE)N�A8�r&5=L8$>����U��������9���������eT"����K`�r�OS50-��~K
���K�<W�.�4�(��b�k��A�.[r~�q�
d����E.����W �/@�Y��j9��Ȣ �.�LQm�-M�TMiz�jKS+5DN�̱���K���\���d��bYj�|Y��Ȉ�
�{��/��+�	�@ؿ����*#��%4��!��!�Y�hF���w(��/ー��H<(�����L5�gK��P�b�������(i�a~�̵m��������fD��n�x�:�m������%g��v�f3�_�.y+W���}V���ʵ����O��e�:��N��V�n�1�p�պ�����}V�ߏ���(�I�|*<�9h�;,bw!�F-6#���w���N�6���V�-vZ���x�4o��M�
��,�����O,�>�����,�������#�Ϣ��ltg*�;�����V�E�a�e�Z�cx~�M�{��?.Z�{}׃���=8u�nɻ��Uh9ai3�ܺ�o��s�b8@_J�8����l��޳�E�7-�7�V�c���%MSL�lbgV�)��`o��OK�_3�[�F����3��
�`Ӈ���X�&��V�Y���ߢ�$��!�he:m���>���ɶ�v���Z�Sln�X*��Se���OwS�i6+]���\�t�{���~��}c��b,�ӆ�B����������j�n�Q#���C����� \u�r�M����
w���N��0l$�����?hsc�UGo�!�S��a�W"ck|����0�Ė�1#����j�[?*{*�������kGG�ce�}��6�S�Y��U���W*ڽ�����f���l�OزŎl1��'��xh�?K8;h�6^���q�l>�݊��N����H<.)̲oo��$��e�L6i���!��2O�Xٶ=ek1��slD���P����
 w5-�䅡S.j��|���ޣ<5��cV���f"0��z�#� �@�4}z�>
�B�f�9��S�M��̥�Z�����/P�`����y6���}��z�=|z[nT��W�3n��$X?7��v��D��!�xX4n��E��8m���H� �۟!���P�QlHlA� ��1qg��.��ť	�ϴ��.+��e�:�=\�q��f��H�Y
K�d��Vp����CqN�}#V��ŠL���'�#5��
����B�ƭˠ�۠��ǀ��4r�\���9F`�6�C�,$x��ut�J3׀�m�	��q�g(�ۧ
e~���9,`~��
|P(��@���n&��?0��lj�v~7���t-*a�=&��q�FUU
9�I�nð�r?��$��c�E�V~@?Ӏ�
٩m�*<,?�Y)�F���|�^���Em��k�u�y�g��?範�+�[���l�ʈ���7(�1n8n��R'+�k�ak��܏�L�\f�q{`�0���U(�~
�c[��)U>sZu��3����Ϭ4��5fW<���j��1x�ȷ�P~��^C��e7M�N�#��\܌,w�1�+w<���K���,2pȆ^D�<����*���:�:j�v��V$+�wuܴh��� E�2hM]h�����P6+�&��-	j)�f�
 �|J$)Fl�J����)�۫�
C��4�0���8��Ϭ6Ƕ�6Q�*|-���:�0��QxX�v�"�c��Fe�w)õ���/�+=6Z�+�*3n�vc�J��}FO��	\���PǕhJ[�HI�kҟAP��dž��㵧�ŔY��.�8�3d�&4�m���&uW5�,���d���#ZV��*��ץ��(������|�D8h�6,5�
t�`C�u]7mᏍqv��{�k����hC�@���A�^�Xh�o�U#�j4M�z�.NB)�������H���
v�#{��U�A�F�����+�T֤�1��5����Z\���҈��z�8AxxT&�\��
Ipd�w�\�|�De�-��g*u[F�/�\��7��N��R���s�f�vP�QtU��D�2�>I_7ָC��X��D�l�Mj�v,�˴B_�`����8u�jJ;$	�Rv%�:�}��D5�����Ѝw�02���X�yS��Cb��x��A�����m�(}��f0�?�8}o_�p��ߕ?�Ʋ������J­����B��`𨨴���=���r��v���g�'��zW����ͅ�&BQ]�cY+ �+U��H�/Q�S�.N�+S�T�q��L����y$�%6�����Ն��b+�!_���H�F&v!��<+{o�����؟k�Vl uMj��%��M�3���G.*r��C�Z���U�XQ�
rߨ�ʍ�7�V�)킋���KS�'/�D�$��P_:�1C���6����Pq-�M���w��
���x4�~�+��3���?�+�<W�z�������5��P�4��K��
j�H^�*vJ�%�)-B����u$%w[L����r��Il`�� �j7,^�V�:Y�c㏃�a����M�L��8�?�bU�D������1��43����׊���i�2<N��>��DLj�L�����������gůd#�M|1,�b,��w4����i��T��UT��⎪�g��,s�M�"����tL��`im]gLHGrXkx��6^5!F����4�b�c���xfڬSf�y ߃�c���y��jzԸmX}�?��V~4�
�NI�!�Ze]d_څ��6<�`�#�t��z�H��	�i�H<Nk��8���*�Uk!�<e�77ϣ>�H66w����r-�� ����b����7мOJ窋m�
Q� <�V(?c���r��x�7�w���4�d�wH@�~C���@�ЋF�F��H97�8s��Ie�F"
:�D��Yg��N*��J$S/@2�|$SK5TU�z~��%�#�=��ο܀�]�	��RK]=�1��\3�v���e6`oC�Je�����6C���K�Rb�ߦ�x�hYj���e���2�놼���Õ�m�&�w�̀O�[P�ݨ�2�|�/�yɨ�W�޸Ƚ�/���
Q��r|��4���e�����V��Q�o��]f�,�C��_sz���mF����yUv�R3��� [�S�u���<m�����&��w����E{k�6�=V�d/
g}I3U�� "�|�i��E��/�v�@�\O�ŹN�U�9,ֱaZ�}/X,��3�W^5�%�ס�6}��v�l�yĐ�e�В��R�`"��-@8���Pi�`��b�酴��n4�2�y�`�
��;��3��PJ*�If�1�X�S��9/F�>�T�x7%�=V�C��V�_�J��1$1�l`�S[2O
^7C��e�
PKbV���1!�S�%Wsg�2�J;r�:%�3��@�B�Pۛ��;UҬ��:��iZ�
��d�xAmoǜ�5r��2�Q�����W��7-����[n�KS�+-B��K��eH	�bZ��j��J��V����+�.�j�0���7
�[�`Vb]�,�v�N�E�$
{ŀ��Bg�i�Z��P��e��Vn`N�� ��l�������!EgT�),��?e�Pub����VC^+�����~u�ݢ�5]�>N�v�2(�����f�m1�r���o��)��Nj�e���OyߛM���'�Ҕ��m���&�)3N�y�)3.�~\�R�B��iɵ����ftC��П�%�W�P]��H�U�;E?��c-��W�����7���^�5_V￀�9�g`��pF���'D�I�
�O��,���Db����Eb��N��9"��N���Db��΄��"1Oxg�<��
�\�ϊD��:��%�›,�n�����|Ѿ@x��wB�.�)8_$2he	�P$1hU	�D�����}y���,��oa��G��s�;�0����M�\J�:
��)>��_F,�H�E�/���J���_O�G�����Ք��<�t����κ��W����5~��"8����R�%�/���5�*��!����mڔv3��M�߮���u]8��u<,��Է?n1�Ҵ<ai-�[@�9a�����Nl���=AB�9�Ry�-Ռ��P�.���LH��A
p�kTM��VB
���N���1_�QUF �T]�|��r4��:VFUD��Ѡ{�����D�Ǐ:3�69�{ʚ�T|%᭑�9n��K��3@����Ⱥ�Qjxj&0�����~�+����lr�}cc|�/���8�t8j:U+��2<�K%LhJ��i]+%���eR��"�L��Ӑ�5v�4uYj$^�厼<���w��ey��R�g�,��A��(|��.O��6X��J�n
���AT���D���l��lD�^��X4f��ov�H�س(y�H]^hY!t�X|+~��/&����>�вX�-w
C�'Jd���O�J��Jm*W�����\�?��r�P嗃(��+A�BA앳H����*'�O�?ap&�����F�����O��ɝ��~����^\$�J	���	�W��%l\%l��5U®j�k��H]9#��T}jt�ֹ�hy��J26��sE��vnqbQ<��bNc�H�j �»��ڜ(X���I��*x�A�vq}�`R����"�����y�@5c��Ђ�����&e�嵔�0��J�[(�!�����Ia|���>4uM��T��BMR|4�ƤjSCZ�ژz�:K+k*�2�WWëWD-�)�u�#��)J�j�S��!����� J<)� ZBxM&�K�kR�s�-.�9��\;�RG;vr�?k�
=#����rqQ�Q�b����^S:�ڑPn�\���W�������z��G�Hӡ�Mxj�gK��MY���Һ�ܥ�`�N��ྒPmt�{\�{CA�2n����b�v{P�1֕�QZ����-�{3�qտ�cP��ЀC�<b߹"��:��y?��p�����NE��H@Pzn��F�q���(�6`\����U�K`�wH�X%2���l{8K��q��h��T�<���1M4���N
d�ԤĈ}T��T�j�;
&)��a��65m�É��'5t�L'�2Gr��.Bd��"��1<A]Tn��v!�Ed�(5f_$U�X/����A5�����Hc�V2��ߑ�fҊy�Jr�J�Y�a��1���%%y�_���.�_J�9�q9�bՙԪT���֐��عb�H�`
�bQ�:R``�RC*i�ϱ�;t]7�5�1;��J&�0��~�b ��a�PWZ���M����s+�3Zw�\�)�[�!}��8
�b���$;�`�	_m��C�Vh��Z��IeЀ���j����W�e�eW!ɦ�c�������Nٓz�S�!�n��#;e
e��[93�^@�s�<�St�2Ç��r^�� ��[|����'��?п�V*�~��+E�|�XJ(u�Mq����@�_f��6x�(u��<�R�,I
�<�{'���I
�)��ҩhY��׬�*�鑦�k�I��K���]�b�]�[�>��z�=��nb9�@a�N]��6`@Z��W�_N��n��F��"�=zY�z�^��
^'���p�C���@w�AaU�'���D�n�"�����rכ�6�:@ùY+�n�4� 4��Q��� �9���p}�t�,��G�\dz:fT����P|�|hn�-3�N�T=�q
n4�p�m�H�QY�9	�>6��W��h��[�/jL�����v.s��NR�k�ʟ]��k��pn���8��!��?1�k�_���MCGH��N���a߃; 7g��
�s���)~í-\��|l���WI�+�F�.�7J����|̼o���%��)���E9��mga�=�-h�'��A؆	"}�4(�gۜ��F11���5�����`�����<���䏲]Ǎ��τ����G�\�U��*=���f�ƺ�*WE�rB���O��,�����\���Cl�r=n�-�\�'��'��3/ٙM�O6�wLn���Ѿ�l�����{�8o�����(�3��FSv-�g���-~ť��l�$!�F��gn��Wd�[���l��mQ�iH��Rn�
7(��VVݮ+9��t0���"e���)�d��>���q-��&'q}�]�Fi��*"�E[�> ��f����6n�m�qk�
���۸�����"�z���#�OpD�p9~�G��c���E��L��+�c�J�-�!��H��7
�q3�+��+��
<��Q�D��P�)�E�񮞹_��i>�ݑ5�@�Q��哷��*s�69��č�u9���LD2�ø���#0�W4A[�S�)��q�i���d("���:C��Q7ꔫ���=�b�R�ueYHXZb��)�o���P)�4XT��"��Dhx]�k��e)����2�=��������IE�ϱ�v�`+�3$���0�a}I��R���LɱT������������~H�f�C>�;R�|��ߩ��Cؔ-��D�s��T�D��j3U�I�2+R=�)�����L��ƥ��Gl���a�T��_��Ã�md�P�Rseo�ht��or�H���b�w��TT
��ث��ZD���,	RЄy�8W�6��#�LH�+�j�	�'CDƱ���ư+٥�Q��}�h�Q>�x�"�� ��r�sa���$VGD�>��`Lb7�޲[�ڤyh>i Wh[�k�	|Qq�Gr��k~���C�f�=�7�{��5?6��!Ж�L�e�k�~����R��S��r��݅�8x׸5gv��+��G�K��H�ڬ��	�i.cso���`��շi�f��JSH�~�~?�/�C����P����K�b����'�~�9[�D������S�sٸ�ə������
��,`t��f�ɳ���Wf�E��X��?����wX9t`s���<�p����x��Q]{q�'��e�����!�W�S��W�~X���"�(�`|���v9�-�cZuWp�=
��'!L6�1�4Sq��u�"MT~�.�#�ϒv?a�Iꌓ�9i�F9g���E�n3ב��N.s�9�fݟz�� S��A��0�L��p�`g�d���	G�nJ�g��N`$�g��-��*�z(�|\�N	���kƆF$�����
u��Nx�R%��*Q����U�:��:�o[�,�j�Bxu	!����]��[U	����g���=���-��&��{�9a�0a��K�M��_���<���m���	�T�f>�K�kTQ6"؍H�M���Y�P�ҧL��W�!�n<���XIO����p�M�M����p�1�$Z�G��l�֐��o�CKt�6��t�2�s̀|�a��%M��Q�?Ĥ��	��p1L!,�o�k��YB�
���(Se��rUd�"��b�Θ1�X��s���֊�j(P#'�#)3%�8�;�+a��/;D7�����B��{��Ea,�{�\QF��Q����G�H��RnY/�V�!=s1^j���{�VZ�t^��u��bQ],��bq3�Ǥ�Csa]���~>0���e�x�uybM;|����t0oR,(����s/�����OE�˷w��V����})I��%“҉�^�*�N�]��,���z������á$�01�Ð��lV��T���p�A��# ��,E��Lm%��gi~Mg3]~���+��e�e%-Ǡ�M\Q��j�t�z��xy�Pz�7��m}��P��o��_�\+J�v*|W�|�Շ���nH��:�W$V����W5v��~n�+Eb5MĚ��j��yD�5�c��͍�c��5�o���)�y�_-kDc����J݈毥��)o*���[�д�/����1�������|;4�)mv�
��cz���.X4K��؂����ȗ+n%�҅k�g4Ud�8��gIل�c��1����VTK:�8��Y	�=�ڱ}�T2�J�=��d��h�j\�>���:�ۆ����1�.��`SL_���5"�IY�)�'�4����@Y�Ր��G���#)��:^
��lO}`�lW}�jV"��4?dJ���,�!v7���:��|��!,�ϰ�Mճ:\��@�����|Z�U�����m��hF ��T��g��$���\>�V�
	����H�aua핗5ҴBa;�1��G��5_Si������X���|�"�*�%�+(��&ஒ1�l���F����������ҋ�o{�Q3L�ck��g0&���mg�Kוf�5�S�?�/�U���u3j�K�hۛZ�B�D�}y�—2X�p�h\�`G��o�*�~H�K�[W�����_S��h�o�k�ј�����t�u���g�d&',���ի���ޗ$��Q�sCE;7�2o�7S
.��ߝ�OB5{�+�� ;	_�q�e�|�T#��jn��[>?�bu�/��������c(1����|։��D�s"�\':�	����A�c���P��77���yA�K�[�����A���u�S���O[� ���e����
��X�� |����aoQ^��aoI^���]��a���a���5ox�5+����/�=U*ya��+�����M�<�F<h��kk-�lMz�5��5	-��s0��~��o�_�K�_�x��3���!]}`�=�2�C[����i�z&��
��Z����	̳'y�����%+��q��Z9�⯗�O"��������Ê��z�=�aO�(��1.��H���I�	H��mZb���Ir�Hlq#�Q$���A�|Q$��E�%��$�G$7��fB�Y$`ݜ�"/��H�J/��H�X.�U$^c����k��5�x�~^���M$ޠ�7�˾Yݝo���G�W�s�?oW,�;��W�r?�=&emolmu6���>�j�#����Y��Ӊ�n3�>6�:V��Qh?���<�u�a�]���-F�<q��*Yi��e�̙��L����,����)�Ь���w��E0W��Ӆ?=�3_F�����|����.���N4τ�a(��5t$(�|��@U�~�T�B�r�J�hWԅ�@��@'�S:��*��kWl�L%%�,���m?��ȏ��@9ރ�A�,=���U�ى4�V�Z�^�mT�*�;}P�e�Ê����GiU$�F���	����y�'�7B��mc.N�s���[.��"��z��&�3>�Et�P;����	��z�x��e��v���2�H8i��B<;�eˡ~��d/Q[J^��|�x��weV��T~B��e9��/t����
n���Zj�v��S[�O�+M���$S�/E=�W,z'8s����O��3�z|��s���'���5��&<��]?nJC
�o<`���򍛌����ƍ|������s%� �*�IE�딅�;/-Lr\"q�Qx�4��}�a�7i�E	�c0}Y�	�XV����k�vqKTk�Ƶx�
u�OT
1��!�e�`L���p-?7y���c��p|��¸1���_��2�\FX��cn)�ߤ��U&��A|�Y�3}��G��>��)�%�w�-�3�<&�q|Uڡ>Wd����A��1z[xw���Eb��V	�H䄷Z�9̜S�[��Q��gQ�׌�%|y��c~�π����C���o���_k�WY
�9������D^4s��ؽ���D_⿛̲ˇ��1Mu�%�~�
FV=��&���E)����C�8�R�����cQr�÷�Ώ&}��7�R�|Jp�'�P'�M-&��hV��e��g��i�
�w�r�BW|��;�]�뼈߿r�e�_
*N"\�_�������f�<ʢ�����#���-���hP�m�)������.�I�J�(\α�r��h-��xq�4�G�4U���7M8�����wӌ($q�:�D��'���3�cv_\+�r����Z�ٴ�u#�C�֙Kێ�l���\Dg���!/HH�����87���s��85�cJ<L5N�B<�3�V8�gRf	��;������?q��}���z�-oa󣆄�>Nd��e��bJw�@�2���X�م�7�Φ̬w��l�f��lh�3L=�
L[ރ�2��w�`�Psw,�\���QKs�F����k{�������=h{��ö���Ͱ�Gm�1ۛi{��?����S
a�6V�V�i���q��׳SӈT��`�
�����QI��U^��7U��<�ٕ¿T��:��f�?L�Z�ЯZW�Zp�5/�S��xp=�>���S����R��7~Ϣ/��N�[��p1G�bd�d���*6���eT-�w���+5l��װ�L3��tC'�l��c�߆�rP�z���8�_
��#��
WN�������e�E�B`� ��n�H�^#�FN�J���G�ʰ���c"�w��N��D���؍�t�)��3�͵�7���L�_$p�v@$q�vP$v�����]"�w���7p��y�S6���a�G���0���O�B�׶���ƦVi��r��P9�-�����0(���3E;»��N.s�{ԛ��L,�y�t(��a˞��>š�Lu��w9x��u����εOsZ�9!:���d�q:�u2�Q�~����9�U�t��!��[r�����qRf�#��Ϡ�3��F�Q�k���Ry�0t�N�zSd3���覝�'��y�)�*��, Ȭ*�B�̮�,"��ਜ������;��O�W�]:��e�A�7I������u<m���Nu�+�m@��9��'�gQ�R74=�����U���N�-]Գ����H	�q=N�c��Y�-$�/�˸�/���D���
-�_�7��R|���5:�ih��oY�h������Np�GDG+����z��֟��Υx���M��+��ob,�E�Ɋ��2t
�C��S��_�U�w82���E[��P�N"�����Ȧ+:w���w��4��R��:��~O�uh�:F�l�����XpϷ<�h�"�e-N�=��*���b�]�x'�`�$�x��D�x:��뀬�����Q�x+8��$� ���C(�)�0-���W*�L���a���a����5L���8���77�ܛ렷KN�tf��y0]W2�f�U�#�y��wZ9-�*5Pë)������S�2]�f��u�o[�[���Ó�F����m/�ԝ���
J�[�+�����$��[+?�luB�c!���]�&g۫�rF����)��u��mrּ�"^�g�y�VU���v�=��s�k�t��;�zo��\�8�^��\���(�{/9����r�w��\�m���-}z���3�)�!�Sc��6���\�k���m�*�ob�]b*����(��"�Gx/
���ջ���.�ÑhS���<��-ډ��y��W$���Q�>��/�/�����<�����W5�ƉZ�Zc��Zc�i<����7}�q�Kv@$
o��m�������d{��� ����d�w��-G?�:^�+=fǾ��~���_s��m�a�\�����$��h��� �+u
}��� ��"L�9t[��'�,�A�[u�gob!;�7j-\��_�0h��]���ߟ���_<I�	5n2w:S�����X�x�^[�m�:��\=Y����	xtjJ*i��C����o�KW�It~�3ʏ+�8Z1�ъ!�r�-'
�dDEd
��)ms'8�-�Np�61�u`t��Ȉ:�d���JR@���q����rTff٥յՉ#��ZebM&&���3��Yp\��je���U��\v�ڲ�%b/˗�J<�J�tbz����	Hpb��(����d_m��kHt2�ԉ�rF�W>2=Uqdz�td�q���J�{�a���T�p����������A�|�+�:q��O\�4ХW�����Ou�*R��+�C�‰+*N\��s+h��:q�o�E%^>q��)��Z�#���N\���|�z
'�_��k&�1�N\OC6���ɳ���O��߭�O��Z^����=�,�����*����{M$?`e��"���7WK~(���]$��G$�hɏD�c�-���'�ˉ�'"��
"��H|&�.-��H|.�~��\$�oP$���\����%�;D���Q�8&�}"y����湠9�l��6���y��sC�Əj���Dž�_��E����H|)���%�P]�R���k�����-%�Z��9��g�"�̨:��N���.|{�"�n6U���,y
B��R��E��r|⯔���R�x�8
��t��?�:,��z�r
����Zdb�VJ���n�������l�u��(]:rC�aj�PS&NXSa��I��
&?��#_D:̿a�#G^��ؑ�,}���?uZ?%6k�i�����3��;�����8�+�M�?Ӓ_p�㨓9F��N�	�s���|E���~�9m�)brO��0�毷��'�]���sg��~����9��NH�m�a?d.����ts�k�;�\f�+e�;���m��G��u�]��{�ieQRl����ݔr���r:���Q$�x�㐭�8�k$m�Ǖ8@�>��/�;\B��^<	�.^�c���������P��X�>"�R��	�%��\Y��pa�vц.����Ou3���6;�5I�ްY��b��@�)�޴Y��)�����Q�C���!�zo�o2��C�"%5�2j�d�I�b���;W\w�8x���\�b�F�T��I,�n��W߬�Ŕ�˹I+K�����ߡ��]�	�~w:�>�w9�^�������^�YnH��8��ʡ��2c�4w
���p���
O<��瀆����o�Z�r��3��J���8��l�?%�Ɵy.�ƹEO��^뿠�Q��7��#�W���)���u��AT����'J�Ǽ<��n7�����n�m��4�G�D�}��>`mI�B�Ժ����,��GN�"�.vQ�\f��\���\*Fr�_L�YN�V���������jxy��\Ź�
�Z۶����͍,+?����xr4Q�x������g]�b���Ƣ�(G�Z�= %E�����Y�]ZJ$�M��k�\�Z�o�u���d��j��a��|./Lyh�yľs��Q�3=.�I�-7
�j�c%X���ڥ�
Ud�VLi%����VB��h�/@�
��"�sA�wXNP��&�T�ƻ��P�M�s�|ay���n�lk��j�0��|��y��*P��c�?o���{ɠW����E6�
ČG��^��`��!X�!�� ��c�)?\�4��x�'�9�;)�(`��yѝ�ot�Kn�F�j�`��#����orY��Qz�'\��h�솔�c���]����*��G��c�[����U��NW)>6�J��Q����R||��T��]�iZv�i�۩<\���o���3�S,`�u}f�K��t�z\��}�w�.�eWG
֫��j-[���Դ���[��sܩ��h��[�����b'�u�����N���BM����yͽ���u�����[�{�&6%��!���8�8)�pqJ$N�����E���38�8#߈x4��H�q+y��>'��K����xMr�����������Ѫ~,�:�|�CM�oaÜP��D½��!Q^�
��� 
B���/�R*ꢿ0����x�d����U+�R\Z�K� .��w�͚2��ty:=~0�<|L(�~Nt|Cb�*��9�?'��Qdl�M�u�N��^��ο�����aʼ:Ȝ�,K����Oi��!�_C寚��[��ͮI�����A7幗p����zU�{�R!_]�n�p��g�ava\����"\ȼ�fքKAȾ*H���V��w�b�σ�8d�Ÿ��5yBT ]�u�߅�fY!�*�ʵݻ<h|rE��7�/�
�=�U�\��!-��'��>�G"��gH8�-��T����ljh���l��2�h������G���"7�� ���G|��B�l�-�0���lm�Kxsn�=��ݐ_p�h}-�m}����㶾C�~��nf�B;ݶ]�@vdOd/A�UA�ck��$ȡ$��Av���Z�}����o93_8�O�>sw�������n�'��
��Sބ���ԍ�2����]��[���VƏ��qp'$�//������%)�'���m��T�S.D�ϸ蛹��n�k�?��`P
~㪏Y��,��rq�}�k<�SP���w��~��C�9$��+>�����L�)ẳ���)(��ej�yM囘��|Tt:���]�G����V�H&�k)�:	�RJ�pOM�.�t������T,�
�F��`Y�Ppa�W�G�h9~�c̯��6s��`Q[O�`�jdJ��%`Z�2��[��I��2F*�������\�5�~
[��+����ܹ���關�߱���PM�g��5 ��@%8�v%u�#5�$��Y��m3j0��9���e�P�%Q�I��<6��S�`�TS�Q��1�s��V���'8��<_�d�ǃ*~]�
g֔x��3��Tͬ���5�U#K#A��C�8�!�p۞��8�vie:8��Ζ�g��({9?G�g�w<�*ޑK�<Y�N�θ���Y����a�@�pyM���U����-�k4�%
j欛U��<�G]�[wo��K��'�[K�ٜ�K�gO��=Ş=��{��P}��7�	�_�ꗿN���귿�����	��7��.������"�&PK�%"]��sudesign_audio/lib/bigplay.svgnu&1i�<?xml version="1.0" standalone="no"?>
<svg id="bigplay" viewBox="0 0 100 200" style="background-color:#ffffff00" version="1.1"
	xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
	x="0px" y="0px" width="100px" height="200px"
>
	<g id="dark">
		<path id="Polygon"  d="M 72.5 49.5 L 38.75 68.9856 L 38.75 30.0144 L 72.5 49.5 Z" fill="#ffffff" opacity="0.75" />
		<path id="Ellipse" d="M 13 50.5 C 13 29.7891 29.7891 13 50.5 13 C 71.2109 13 88 29.7891 88 50.5 C 88 71.2109 71.2109 88 50.5 88 C 29.7891 88 13 71.2109 13 50.5 Z" stroke="#ffffff" stroke-width="5" fill="none" opacity="0.75"/>
	</g>
	<g id="light">
		<path id="Polygon2"  d="M 72.5 149.5 L 38.75 168.9856 L 38.75 130.0144 L 72.5 149.5 Z" fill="#ffffff" opacity="1.0" />
		<path id="Ellipse2" d="M 13 150.5 C 13 129.7891 29.7891 113 50.5 113 C 71.2109 113 88 129.7891 88 150.5 C 88 171.211 71.2109 188 50.5 188 C 29.7891 188 13 171.211 13 150.5 Z" stroke="#ffffff" stroke-width="5" fill="none" opacity="1.0"/>
	</g>
</svg>PK�%"]s+���#sudesign_audio/lib/controls-wmp.pngnu&1i��PNG


IHDRddp�TNIDATx��\Dd�NC+c*�)�C�a*���"b�(J�1T���4$�d����n�DC"""�$"�Ȋ�׾�����vw���v?<ν��sN}��9�f��z��8Z4�Ã�W>�4���U����mX][_�������j5�V-�	�j�ͩ�Za���c�����*���<�y�1D�7��������h����v�?`m�3�m���Q�FC��]�yd�^���bB��u��l!J�"!$«5��	�t�����>bs���X\;B|�P��V֏���/q||���3����%1���P�?V�t|��KY�͖�s:z��ʽ������G��#���ʈдɩM����;��
	����Adv;5b7���`fa��#쐜֏���:�Y�]#o���	?~L������~ HB��XDz�����z���Ab�X93�(&��	��
�bw�����g&�s�^5�|���Y���VQ�^��3��k����᯿�Jbgg��*h��I��a|��`2O��F
ɼ���E�;����דQס����ͨX����n��t��`f�M!��-n�Y&ϨgG� I$5�~���n����7�D��S�Ç��T᪻�������I���!��;B���b2:5mt[�]=TN!ıa:X���i��Xpj�t��-�'`��Yb�[rؖ���>6�.��V�����N	!$��p(;�xp�r��+�;I�i{���ա��f�a��}����~G�"B�_:L��W�ɷwz�a:�g*�	q�"��$�Y'��{�'`���9�V��I�Ek;猔MN��x���������[����!I��+�E�d*�$J�#ee�>$��E����ΤL�_6��|���9���8A�i3[I"��X::��5���Kz��YK>�=lK�R��BRVw�ЖPY�F����w�����(R��U�ǒ�UT��`ii������}��f���X���G�@�U�+�zH[\?�b�chB�����Kg�(��>:�7�B0�ku�k���'9�G"	E��JWc�ƥ�p���ڛ�T��)!�ԕW�*;[9}��7YvK�@�7Z,E_ڤ� �`0d���	�]��a��I2}j�p��lh��**f���["� ��Dx��p&��������R]#�
�D����-12ܱm�-��>�78��r��!�*$E ��oY__�Ye��&��H9�괼<���oVY�~�gppp@�WWWQZZZ��W,?~rB�/xK��.��I[q�8||ӻ��nF@�o�W����	�t��Eb�Ë
��Et
H
�z�B����Q�D7����gy�y�֎F�k�}���WNn6�����b_�!%%�H��a"mH�]�Q�f4s��)�y��pi~mstƀA�E���#��k�"����s���뇳h�h�M��?O(o�-�C�oR�Cb��Rm�%��G/��W/�f'���\ҁ�v��g���*t�|���S��/+G�$H*��vꇇ�x��X��Ez���F��+��12�Q���'�[Gҩ��\:yM�G
[�G���?��<<Z���Yb�-iS�f	�~CJ�
3B��CT;�P�p:�(F�Q$��gY$��孤��qppb���N�McZ��b�$�dDnɘ2V�AzI���O�#!òQJ	Y�/�l2ZF���-�(R�#��%�H
��.!e�C�D�D�����6�j{���io����W��G�Zg�?���ad�Dl����[#V	E�U$f�N}'#����0[FS�(Z9�xe~a�-���X�}��(�H���;/K`��L�ӛ[g�3���5��.:�;"i�N�q4�`��d뉢�A��'NO{�p"��h��F�̢�mz�I��M�s�����A[�;�ٺ���c��7�:����M�xFh�{�j��^O��aE�
�ȯ#ja�x��"#�W�`qP`
�e��W}8{�$~�}o��y��B�;�R>��T?��ں��Y��Y��4�c��8\�58|q�4G�g�hՐG�m�mA�QT7Hb�_��SƸ��mbfK;LҾ�6��������/��Cym?��e',I1~ɗՖ�ONF����BܟC��G�ڧ�[1�\˰‹���v�!F���K� 
���ģQ�2�"�\{ӗ������G��lS�d?�~@54�/��|@%d�p���A�DGk[��� �
�!��>��a�i$d�
�TF~=	��!���5^\\\d�ӳs��QX���	g_����r
���널A��\j�߾���n�h���E�%�~(���*"�B|���FFHN�F��8�d'��w�Q@6��W�p��o�]rF�}������P�mj�m3!}�Ւ�j��!�(����C����$���*"\n��
F��oooOE��斚�ZZZH�o>�T:ڵ*[�����S�u��s���8��;GP�Fa�
���H[���Bbs�v�k��QCA�ٞ�y�G^�(������R�����w�]�I���\���W���E0Te�h������?tY.�bC�%Bg���1�Q��k���WCa�(
_��0��C������
��&M�)�i��v�؏sF�rm#*B̕��L��ѡ�C�>�mjn�kuJ�aM���+y-/GuMM��?lY5�Yc0T#�v���0�J�%
an� �(h���f:��lJ!��Z?��I"YW�eV�"�MT����Q?
%51T�������Ppyy)Ó\KĤ���ߟ��Z?����m�Ë&:�eF��M<�0���m�(h�B�k
�W�8�����:��\�����&��ۑ�b�6�p�����H����1�r[?�<$y�t6�5�M�DX�%r�׌�?$B�^�j���I伦��0�ky�y��`��"�Caj
���I�nl�9����I7|�n�K֑�잕������y�5������VP�<�R~�;B�"�����WC���I У�FFF�4X]O���ߚ�V���Ok�o���½��-���V����}���e�[;���C��<�oB��(
��S"�K������}�x�\�-��x��r7������\%&�U�� ���]"C�F�{�^
�ͯ_'WY����y���94� �d���e�v���Aa�K01�[G�C��Qp��E��6w�y�o�m��ޚ��>V`���vg�
��^}@��'9gMMM%�!LU$����f}���~�Ԏ]��ڭ���a;��a����߄q`FI�6�׻�`�Ik*�gz�K�ԻN�N���m�
z6���0�]Beh.�[Zۋt�J��ח��:�� �t�e	�&�7--�GQ����O�
��u�]�z��:�;�
�!/���.̡����6����g&B��*���܅!����:>��%BB�i�q||KKK)ϲ��rF�AEƟj%6�V��Q��'TϞ#[ۇq���x9y�����`��E1�rtO�����/�g=b�u�F��!L�00*ʣ�K\�ѽ��V!G0��w�+D���ƭ�z��m_�y�
��1���c��ܠB0}t��B��B�>Y>#8��	��Ǫͺ��|��%�x���C�[��M`l�=G�a]�@I�e���,��j�Ւ���
��SI���g(����st����k4��t2ҵR�[�h�����O��3�Q����!I��sԭܠV����{!DZ�Q��%��׈~�c['�r�V\�����
�;���9D�O1�����k�7>���B
a��<y�m���g��dv���K(����шn��a%��g٤J���#&�Ƈ�p�!b��3fH@��0�sB"�(k�Cq�G'���ъl]�i
���!8����b�0t��;E�����/��=��n�����rd��Vq;�(](�$J�>����*�
�
~�W��z/�͖�,�t�OZAA���
Kn
���:u�:u�:u��t�:u�:uuM��F��v�N�m�t��M����H�ze�n?M�^N�z�OЩ;�S�d�h�[u��'Щ�R�^�U�g����[3�*M��h���QQ�5Z�o�
�Ϛ�őm�4d�Щ[~�N�����o�ߦG�
�E��Nݚ�[J���_ԩ�wx�o�S/��-�S/�N���;��p�F����'�vm��N]�U~���)t�����_e�t�&�ԑ�N�+��T��A���<�3�Q�T�U>M���^�:u}�N�$]�z���5Ѭ�������y֛�D������e�@�N�� �5��E��TF�2ѩW<S:2ש7w�Ԩ;�!����,o��D�n�td�So���W�$D����T����ȠN�E�:����?`w��?�TKYΟ��u�O�S�pR:�����T��u�,�l�62ѩ;t�z:uj�S��!��(���r�jC�y��ѩ?'B�S7W��р��Tئ.7[�(d��cf{i�ԟ!!���E�.R� ��4H��<���mճ�t��iy�N=��]4}?���y5�ԛ���X?I���O:��HH�:uj�S�%����IG3MUnf��F�EDA�Pz:��c�שS��Rx����0�;R�3�K�g�S>�x�:5�ė��FћI�)�e�S�F����N�d����#�"�3MY�z��ԟ�Q��e�S7��K��f�����.75�g�S�6�q<��{����MM�)4@�U��=�Lt�UY�٨S/JW�nz�����{��&]�{ʇ�֩[m�gMu�yԩk����丣F�,���&ޛ�O��J��-��1�y��t��Y�)�z!u�ZZ:�.�9nNʮI��;�ѩ�:翖{�v��֩3:r�t��ĝ����t�F��G���/�Թ�k�e
)t�&�Ե_�Sת_�C�C:�<�Ե_�S�H�9K��t�F�Ե'ԩkԩk_UU������v�\�Е�#^׋'Щkԩkԩ�C�c����M���:�⟠S7Q������3�ԋ�S��N��:��ԩ�t{:�N=�:�Bjҋ�S/�F]�:u�G�z!u�?��z��nf��s���}����p��݆��|�d��Ϙ�]�/�<��t/bu�
ٳO�9�z�>ay�����V���X=��x��Ub�~��|q�#HJ��W'�g[k���A[�@��9�b��Ej��3��r�}H��N�϶��X��0v![�;F��$%XF� ��U�Tx6tB~���K��<$v�=x��A�I�.�?���	��fiB��%�a[�F��è%7>�:������o�Z�S��K
)�gԳ�6=:��rJ:PҶ[������`��39�:�馛n�馛n�馛n�馛n��j��/[���P�IEND�B`�PK�%"]l[{T#sudesign_audio/lib/controls-ted.pngnu&1i��PNG


IHDRdtD�g��PLTE�����������������������أ�������������˴����ީ��������������rv���������̌�������WWW���������}}}�������36��ܮ����������iii������������___���������������֕����������������似���������������ѫ����ϵ�������㝝�������������www�����ٸ���������������І�������������������׻�������������������р��������vvv������������333���������������������������������������������fff�������������������/�tRNS@��f6IDATx�행S�Fŷ�}7m�&i!$�!	�}lN�>d��T�.���xw��R/��j�	��~�[����� B|�)BȬTv*5!�/hH�J�T͏
Ș6��
�0m"��q�~e�ʙ`A�z��ݖ|>�r�A�^@+/��
�!���u�vݻ�KB��$�����O����j��7�e�9���&M!}�>�����t�ţ�(}�!u|�!k�jukkk�ѣQ�Z�~NY��ZcO��_M
(U,UU��.��b2��&�V��>%'Ch��0u�H�a,WG&�~�,�omݼM�&K�RI+��(�(���a���|��܉�� �d�4M5a��0�����e�Ǜ|�vv�D�i2ﺮ:��p��u���|�v�ϺD�i�iY�:a�ɰb�[���
^o6�t�����D�yN�t]��r{�zN׷A���xk����z�u"��ty]^H�m��lvc}}#gۻ_�v�o�V#P:C~��\i!!=�ϋ�s92o
����ѷpo��뽅���/�P��	+|A���9g�^�,��y[����hf���L� �97������fhγ�<s
�C8۫� ���C�j�);a�!!8�H:�K,'	�H8P�_��Y	Z�ڙ85X�p�A�_�cà��@-�0H8x��1t
�̽���"�9�|�\����������q�Cb�����b�28�!%b�����Q�+]�1Y��t2�4f����\L'�AYL��B#�!��N�Ï�8�!:1���X\й�!6����w,v��!�9�<�b��R��MB&�#����8S�p��}$�6<�p��dY�$����7!�e	B��
e#ޏ�ҡ!��?E���ʡi���7D!�k�[��(�}
�<9;��}��C�4�~;�h��!�W0{�M�?4��L6�!������PN�g�i"r�'wS��|H�D"���N.���w]�[���#�D��I�$j5��DM�&Q��I�$j5������>�W�IEND�B`�PK�%"]E�ϲh(h(%sudesign_audio/lib/controls-black.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!-- Generator: Adobe Fireworks CS6, Export SVG Extension by Aaron Beall (http://fireworks.abeall.com) . Version: 0.6.1  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg id="controls.fw-Page%201" viewBox="0 0 144 32" style="background-color:#00000000" version="1.1"
	xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
	x="0px" y="0px" width="144px" height="32px"
>
	<defs>
		<radialGradient id="gradient1" cx="50%" cy="50%" r="50%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#f2f2f2" stop-opacity="0.2" offset="100%"/>
		</radialGradient>
		<linearGradient id="gradient2" x1="50%" y1="-7.8652%" x2="50%" y2="249.6629%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient3" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient4" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient5" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient6" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient7" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient8" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient9" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient10" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient11" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient12" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient13" x1="40%" y1="-140%" x2="40%" y2="98.75%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient14" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient15" x1="60%" y1="-140%" x2="60%" y2="98.75%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient16" x1="50%" y1="0%" x2="50%" y2="298.4375%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient17" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient18" x1="50%" y1="-200%" x2="50%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient19" x1="50%" y1="-200%" x2="50%" y2="110.9375%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient20" x1="55%" y1="0%" x2="55%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient21" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#000000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#484848" stop-opacity="1" offset="99.4444%"/>
		</linearGradient>
	</defs>
	<g id="BG">
	</g>
	<g id="controls">
		<path id="Line" d="M 98.5 7.5 L 109.5 7.5 " stroke="#000000" stroke-width="1" fill="none"/>
		<path id="Line2" d="M 98.5 3.5 L 109.5 3.5 " stroke="#000000" stroke-width="1" fill="none"/>
		<path id="Line3" d="M 98.5 11.5 L 109.5 11.5 " stroke="#000000" stroke-width="1" fill="none"/>
		<path id="Ellipse" d="M 108 11.5 C 108 10.6716 108.4477 10 109 10 C 109.5523 10 110 10.6716 110 11.5 C 110 12.3284 109.5523 13 109 13 C 108.4477 13 108 12.3284 108 11.5 Z" fill="#000000"/>
		<path id="Ellipse2" d="M 104 7.5 C 104 6.6716 104.4477 6 105 6 C 105.5523 6 106 6.6716 106 7.5 C 106 8.3284 105.5523 9 105 9 C 104.4477 9 104 8.3284 104 7.5 Z" fill="#000000"/>
		<path id="Ellipse3" d="M 108 3.5 C 108 2.6716 108.4477 2 109 2 C 109.5523 2 110 2.6716 110 3.5 C 110 4.3284 109.5523 5 109 5 C 108.4477 5 108 4.3284 108 3.5 Z" fill="#000000"/>
	</g>
	<g id="backlight">
		<g id="off">
			<rect x="83" y="21" width="10" height="6" stroke="#000000" stroke-width="1" fill="#333333"/>
		</g>
		<g id="on">
			<path id="Ellipse4" d="M 81 8 C 81 5.2385 84.134 3 88 3 C 91.866 3 95 5.2385 95 8 C 95 10.7615 91.866 13 88 13 C 84.134 13 81 10.7615 81 8 Z" fill="url(#gradient1)"/>
			<rect x="83" y="5" width="10" height="6" stroke="#000000" stroke-width="1" fill="#333333"/>
		</g>
	</g>
	<g id="loop">
		<g id="on2">
			<path d="M 73.795 4.205 C 75.2155 4.8785 76.2 6.3234 76.2 8 C 76.2 10.3196 74.3196 12.2 72 12.2 C 69.6804 12.2 67.8 10.3196 67.8 8 C 67.8 6.3234 68.7845 4.8785 70.205 4.205 L 68.875 2.875 C 67.1501 3.9289 66 5.8306 66 8 C 66 11.3138 68.6862 14 72 14 C 75.3138 14 78 11.3138 78 8 C 78 5.8306 76.8499 3.9289 75.125 2.875 L 73.795 4.205 Z" fill="url(#gradient2)"/>
			<path d="M 71 2 L 66 2 L 71 7 L 71 2 Z" fill="url(#gradient3)"/>
		</g>
		<g id="off2">
			<path d="M 73.795 20.205 C 75.2155 20.8785 76.2 22.3234 76.2 24 C 76.2 26.3196 74.3196 28.2 72 28.2 C 69.6804 28.2 67.8 26.3196 67.8 24 C 67.8 22.3234 68.7845 20.8785 70.205 20.205 L 68.875 18.875 C 67.1501 19.9289 66 21.8306 66 24 C 66 27.3138 68.6862 30 72 30 C 75.3138 30 78 27.3138 78 24 C 78 21.8306 76.8499 19.9289 75.125 18.875 L 73.795 20.205 Z" fill="#a8a8b7"/>
			<path d="M 71 18 L 66 18 L 71 23 L 71 18 Z" fill="#a8a8b7"/>
		</g>
	</g>
	<g id="cc">
		<rect visibility="hidden" x="49" y="2" width="14" height="12" stroke="#b0b0b0" stroke-width="1" fill="none"/>
		<text visibility="hidden" x="49" y="17" width="14" fill="#000000" style="font-size: 10px; color: #000000; font-family: Arial; text-align: center; "><tspan><![CDATA[cc]]></tspan></text>
		<path d="M 55 7 C 50.2813 3.7813 50.063 12.9405 55 10 " stroke="#000000" stroke-width="1" fill="none"/>
		<path d="M 60 7 C 55.2813 3.7813 55.063 12.9405 60 10 " stroke="#000000" stroke-width="1" fill="none"/>
		<path d="M 50 3 L 62 3 L 62 13 L 50 13 L 50 3 ZM 49 2 L 49 14 L 63 14 L 63 2 L 49 2 Z" fill="url(#gradient4)"/>
		<rect x="49" y="2" width="14" height="12" fill="none"/>
	</g>
	<g id="volume">
		<g id="no%20sound">
			<rect x="17" y="5" width="5" height="6" fill="url(#gradient5)"/>
			<path d="M 21 5 L 25 2 L 25 14 L 21 11.0625 L 21 5 Z" fill="url(#gradient6)"/>
		</g>
		<g id="sound%20bars">
			<rect x="17" y="21" width="5" height="6" fill="url(#gradient7)"/>
			<path d="M 21 21 L 25 18 L 25 30 L 21 27.0625 L 21 21 Z" fill="url(#gradient8)"/>
			<path d="M 27 18 C 27 18 30.0625 17.375 30 24 C 29.9375 30.625 27 30 27 30 " stroke="#000000" stroke-width="1" fill="none"/>
			<path d="M 26 21.0079 C 26 21.0079 28.041 20.6962 27.9994 24 C 27.9577 27.3038 26 26.9921 26 26.9921 " stroke="#000000" stroke-width="1" fill="none"/>
		</g>
	</g>
	<g id="play/pause">
		<g id="play">
			<path id="Polygon" d="M 14 8.5 L 3 14 L 3 3 L 14 8.5 Z" fill="url(#gradient9)"/>
		</g>
		<g id="pause">
			<rect x="3" y="18" width="3" height="12" fill="url(#gradient10)"/>
			<rect x="10" y="18" width="3" height="12" fill="url(#gradient11)"/>
		</g>
	</g>
	<g id="fullscreen">
		<g id="enter%201">
			<path d="M 34 2 L 39 2 L 34 7 L 34 2 Z" fill="url(#gradient12)"/>
			<path d="M 34 14 L 39 14 L 34 9 L 34 14 Z" fill="url(#gradient13)"/>
			<path d="M 46 2 L 41 2 L 46 7 L 46 2 Z" fill="url(#gradient14)"/>
			<path d="M 46 14 L 41 14 L 46 9 L 46 14 Z" fill="url(#gradient15)"/>
		</g>
		<g id="exit">
			<path d="M 42 22 L 46 22 L 42 18 L 42 22 Z" fill="url(#gradient16)"/>
			<path d="M 38 22 L 38 18 L 34 22 L 38 22 Z" fill="url(#gradient17)"/>
			<path d="M 38 26 L 34 26 L 38 30 L 38 26 Z" fill="url(#gradient18)"/>
			<path d="M 42 26 L 42 30 L 46 26 L 42 26 Z" fill="url(#gradient19)"/>
		</g>
	</g>
	<g id="stop">
		<rect x="115" y="3" width="10" height="10" fill="url(#gradient20)"/>
	</g>
	<g id="chooser">
		<path d="M 135.2346 6.1522 C 136.2551 5.7295 137.4251 6.2141 137.8478 7.2346 C 138.2704 8.2551 137.7859 9.425 136.7654 9.8478 C 135.7449 10.2705 134.5749 9.7859 134.1522 8.7654 C 133.7295 7.7449 134.2141 6.5749 135.2346 6.1522 ZM 133.2735 1.4176 L 136 4.0054 L 138.7265 1.4176 L 138.8246 5.1754 L 142.5824 5.2735 L 139.9946 8 L 142.5824 10.7265 L 138.8246 10.8246 L 138.7265 14.5824 L 136 11.9946 L 133.2735 14.5824 L 133.1754 10.8246 L 129.4176 10.7265 L 132.0054 8 L 129.4176 5.2735 L 133.1754 5.1754 L 133.2735 1.4176 Z" fill="url(#gradient21)"/>
	</g>
</svg>PK�%"]	��)�R�R&sudesign_audio/lib/jquery-3.2.1.min.jsnu&1i�/*! jQuery v3.2.1 | (c) JS Foundation and other contributors | jquery.org/license */
!function(a,b){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){"use strict";var c=[],d=a.document,e=Object.getPrototypeOf,f=c.slice,g=c.concat,h=c.push,i=c.indexOf,j={},k=j.toString,l=j.hasOwnProperty,m=l.toString,n=m.call(Object),o={};function p(a,b){b=b||d;var c=b.createElement("script");c.text=a,b.head.appendChild(c).parentNode.removeChild(c)}var q="3.2.1",r=function(a,b){return new r.fn.init(a,b)},s=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,t=/^-ms-/,u=/-([a-z])/g,v=function(a,b){return b.toUpperCase()};r.fn=r.prototype={jquery:q,constructor:r,length:0,toArray:function(){return f.call(this)},get:function(a){return null==a?f.call(this):a<0?this[a+this.length]:this[a]},pushStack:function(a){var b=r.merge(this.constructor(),a);return b.prevObject=this,b},each:function(a){return r.each(this,a)},map:function(a){return this.pushStack(r.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(f.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(a<0?b:0);return this.pushStack(c>=0&&c<b?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:h,sort:c.sort,splice:c.splice},r.extend=r.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||r.isFunction(g)||(g={}),h===i&&(g=this,h--);h<i;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(r.isPlainObject(d)||(e=Array.isArray(d)))?(e?(e=!1,f=c&&Array.isArray(c)?c:[]):f=c&&r.isPlainObject(c)?c:{},g[b]=r.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},r.extend({expando:"jQuery"+(q+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===r.type(a)},isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){var b=r.type(a);return("number"===b||"string"===b)&&!isNaN(a-parseFloat(a))},isPlainObject:function(a){var b,c;return!(!a||"[object Object]"!==k.call(a))&&(!(b=e(a))||(c=l.call(b,"constructor")&&b.constructor,"function"==typeof c&&m.call(c)===n))},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?j[k.call(a)]||"object":typeof a},globalEval:function(a){p(a)},camelCase:function(a){return a.replace(t,"ms-").replace(u,v)},each:function(a,b){var c,d=0;if(w(a)){for(c=a.length;d<c;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(s,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(w(Object(a))?r.merge(c,"string"==typeof a?[a]:a):h.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:i.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;d<c;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;f<g;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,f=0,h=[];if(w(a))for(d=a.length;f<d;f++)e=b(a[f],f,c),null!=e&&h.push(e);else for(f in a)e=b(a[f],f,c),null!=e&&h.push(e);return g.apply([],h)},guid:1,proxy:function(a,b){var c,d,e;if("string"==typeof b&&(c=a[b],b=a,a=c),r.isFunction(a))return d=f.call(arguments,2),e=function(){return a.apply(b||this,d.concat(f.call(arguments)))},e.guid=a.guid=a.guid||r.guid++,e},now:Date.now,support:o}),"function"==typeof Symbol&&(r.fn[Symbol.iterator]=c[Symbol.iterator]),r.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){j["[object "+b+"]"]=b.toLowerCase()});function w(a){var b=!!a&&"length"in a&&a.length,c=r.type(a);return"function"!==c&&!r.isWindow(a)&&("array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a)}var x=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ha(),z=ha(),A=ha(),B=function(a,b){return a===b&&(l=!0),0},C={}.hasOwnProperty,D=[],E=D.pop,F=D.push,G=D.push,H=D.slice,I=function(a,b){for(var c=0,d=a.length;c<d;c++)if(a[c]===b)return c;return-1},J="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",K="[\\x20\\t\\r\\n\\f]",L="(?:\\\\.|[\\w-]|[^\0-\\xa0])+",M="\\["+K+"*("+L+")(?:"+K+"*([*^$|!~]?=)"+K+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+L+"))|)"+K+"*\\]",N=":("+L+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+M+")*)|.*)\\)|)",O=new RegExp(K+"+","g"),P=new RegExp("^"+K+"+|((?:^|[^\\\\])(?:\\\\.)*)"+K+"+$","g"),Q=new RegExp("^"+K+"*,"+K+"*"),R=new RegExp("^"+K+"*([>+~]|"+K+")"+K+"*"),S=new RegExp("="+K+"*([^\\]'\"]*?)"+K+"*\\]","g"),T=new RegExp(N),U=new RegExp("^"+L+"$"),V={ID:new RegExp("^#("+L+")"),CLASS:new RegExp("^\\.("+L+")"),TAG:new RegExp("^("+L+"|[*])"),ATTR:new RegExp("^"+M),PSEUDO:new RegExp("^"+N),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+K+"*(even|odd|(([+-]|)(\\d*)n|)"+K+"*(?:([+-]|)"+K+"*(\\d+)|))"+K+"*\\)|)","i"),bool:new RegExp("^(?:"+J+")$","i"),needsContext:new RegExp("^"+K+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+K+"*((?:-\\d)?\\d*)"+K+"*\\)|)(?=[^-]|$)","i")},W=/^(?:input|select|textarea|button)$/i,X=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,$=/[+~]/,_=new RegExp("\\\\([\\da-f]{1,6}"+K+"?|("+K+")|.)","ig"),aa=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:d<0?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},ba=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ca=function(a,b){return b?"\0"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},da=function(){m()},ea=ta(function(a){return a.disabled===!0&&("form"in a||"label"in a)},{dir:"parentNode",next:"legend"});try{G.apply(D=H.call(v.childNodes),v.childNodes),D[v.childNodes.length].nodeType}catch(fa){G={apply:D.length?function(a,b){F.apply(a,H.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function ga(a,b,d,e){var f,h,j,k,l,o,r,s=b&&b.ownerDocument,w=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==w&&9!==w&&11!==w)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==w&&(l=Z.exec(a)))if(f=l[1]){if(9===w){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(s&&(j=s.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(l[2])return G.apply(d,b.getElementsByTagName(a)),d;if((f=l[3])&&c.getElementsByClassName&&b.getElementsByClassName)return G.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==w)s=b,r=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(ba,ca):b.setAttribute("id",k=u),o=g(a),h=o.length;while(h--)o[h]="#"+k+" "+sa(o[h]);r=o.join(","),s=$.test(a)&&qa(b.parentNode)||b}if(r)try{return G.apply(d,s.querySelectorAll(r)),d}catch(x){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(P,"$1"),b,d,e)}function ha(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ia(a){return a[u]=!0,a}function ja(a){var b=n.createElement("fieldset");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ka(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function la(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function na(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function oa(a){return function(b){return"form"in b?b.parentNode&&b.disabled===!1?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&ea(b)===a:b.disabled===a:"label"in b&&b.disabled===a}}function pa(a){return ia(function(b){return b=+b,ia(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function qa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=ga.support={},f=ga.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return!!b&&"HTML"!==b.nodeName},m=ga.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),v!==n&&(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ja(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ja(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Y.test(n.getElementsByClassName),c.getById=ja(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){return a.getAttribute("id")===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}}):(d.filter.ID=function(a){var b=a.replace(_,aa);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}},d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c,d,e,f=b.getElementById(a);if(f){if(c=f.getAttributeNode("id"),c&&c.value===a)return[f];e=b.getElementsByName(a),d=0;while(f=e[d++])if(c=f.getAttributeNode("id"),c&&c.value===a)return[f]}return[]}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){if("undefined"!=typeof b.getElementsByClassName&&p)return b.getElementsByClassName(a)},r=[],q=[],(c.qsa=Y.test(n.querySelectorAll))&&(ja(function(a){o.appendChild(a).innerHTML="<a id='"+u+"'></a><select id='"+u+"-\r\\' msallowcapture=''><option selected=''></option></select>",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+K+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+K+"*(?:value|"+J+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ja(function(a){a.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+K+"*[*^$|!~]?="),2!==a.querySelectorAll(":enabled").length&&q.push(":enabled",":disabled"),o.appendChild(a).disabled=!0,2!==a.querySelectorAll(":disabled").length&&q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Y.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ja(function(a){c.disconnectedMatch=s.call(a,"*"),s.call(a,"[s!='']:x"),r.push("!=",N)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Y.test(o.compareDocumentPosition),t=b||Y.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?I(k,a)-I(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?I(k,a)-I(k,b):0;if(e===f)return la(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?la(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},ga.matches=function(a,b){return ga(a,null,null,b)},ga.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(S,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return ga(b,n,null,[a]).length>0},ga.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},ga.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&C.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},ga.escape=function(a){return(a+"").replace(ba,ca)},ga.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},ga.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=ga.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=ga.selectors={cacheLength:50,createPseudo:ia,match:V,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(_,aa),a[3]=(a[3]||a[4]||a[5]||"").replace(_,aa),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||ga.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&ga.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return V.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&T.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(_,aa).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+K+")"+a+"("+K+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=ga.attr(d,a);return null==e?"!="===b:!b||(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(O," ")+" ").indexOf(c)>-1:"|="===b&&(e===c||e.slice(0,c.length+1)===c+"-"))}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||ga.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ia(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=I(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ia(function(a){var b=[],c=[],d=h(a.replace(P,"$1"));return d[u]?ia(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ia(function(a){return function(b){return ga(a,b).length>0}}),contains:ia(function(a){return a=a.replace(_,aa),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ia(function(a){return U.test(a||"")||ga.error("unsupported lang: "+a),a=a.replace(_,aa).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:oa(!1),disabled:oa(!0),checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return X.test(a.nodeName)},input:function(a){return W.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:pa(function(){return[0]}),last:pa(function(a,b){return[b-1]}),eq:pa(function(a,b,c){return[c<0?c+b:c]}),even:pa(function(a,b){for(var c=0;c<b;c+=2)a.push(c);return a}),odd:pa(function(a,b){for(var c=1;c<b;c+=2)a.push(c);return a}),lt:pa(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:pa(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=ma(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=na(b);function ra(){}ra.prototype=d.filters=d.pseudos,d.setFilters=new ra,g=ga.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){c&&!(e=Q.exec(h))||(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=R.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(P," ")}),h=h.slice(c.length));for(g in d.filter)!(e=V[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?ga.error(a):z(a,i).slice(0)};function sa(a){for(var b=0,c=a.length,d="";b<c;b++)d+=a[b].value;return d}function ta(a,b,c){var d=b.dir,e=b.next,f=e||d,g=c&&"parentNode"===f,h=x++;return b.first?function(b,c,e){while(b=b[d])if(1===b.nodeType||g)return a(b,c,e);return!1}:function(b,c,i){var j,k,l,m=[w,h];if(i){while(b=b[d])if((1===b.nodeType||g)&&a(b,c,i))return!0}else while(b=b[d])if(1===b.nodeType||g)if(l=b[u]||(b[u]={}),k=l[b.uniqueID]||(l[b.uniqueID]={}),e&&e===b.nodeName.toLowerCase())b=b[d]||b;else{if((j=k[f])&&j[0]===w&&j[1]===h)return m[2]=j[2];if(k[f]=m,m[2]=a(b,c,i))return!0}return!1}}function ua(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function va(a,b,c){for(var d=0,e=b.length;d<e;d++)ga(a,b[d],c);return c}function wa(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;h<i;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function xa(a,b,c,d,e,f){return d&&!d[u]&&(d=xa(d)),e&&!e[u]&&(e=xa(e,f)),ia(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||va(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:wa(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=wa(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?I(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=wa(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):G.apply(g,r)})}function ya(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ta(function(a){return a===b},h,!0),l=ta(function(a){return I(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];i<f;i++)if(c=d.relative[a[i].type])m=[ta(ua(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;e<f;e++)if(d.relative[a[e].type])break;return xa(i>1&&ua(m),i>1&&sa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(P,"$1"),c,i<e&&ya(a.slice(i,e)),e<f&&ya(a=a.slice(e)),e<f&&sa(a))}m.push(c)}return ua(m)}function za(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=E.call(i));u=wa(u)}G.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&ga.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ia(f):f}return h=ga.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=ya(b[c]),f[u]?d.push(f):e.push(f);f=A(a,za(e,d)),f.selector=a}return f},i=ga.select=function(a,b,c,e){var f,i,j,k,l,m="function"==typeof a&&a,n=!e&&g(a=m.selector||a);if(c=c||[],1===n.length){if(i=n[0]=n[0].slice(0),i.length>2&&"ID"===(j=i[0]).type&&9===b.nodeType&&p&&d.relative[i[1].type]){if(b=(d.find.ID(j.matches[0].replace(_,aa),b)||[])[0],!b)return c;m&&(b=b.parentNode),a=a.slice(i.shift().value.length)}f=V.needsContext.test(a)?0:i.length;while(f--){if(j=i[f],d.relative[k=j.type])break;if((l=d.find[k])&&(e=l(j.matches[0].replace(_,aa),$.test(i[0].type)&&qa(b.parentNode)||b))){if(i.splice(f,1),a=e.length&&sa(i),!a)return G.apply(c,e),c;break}}}return(m||h(a,n))(e,b,!p,c,!b||$.test(a)&&qa(b.parentNode)||b),c},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ja(function(a){return 1&a.compareDocumentPosition(n.createElement("fieldset"))}),ja(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||ka("type|href|height|width",function(a,b,c){if(!c)return a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ja(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ka("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue}),ja(function(a){return null==a.getAttribute("disabled")})||ka(J,function(a,b,c){var d;if(!c)return a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),ga}(a);r.find=x,r.expr=x.selectors,r.expr[":"]=r.expr.pseudos,r.uniqueSort=r.unique=x.uniqueSort,r.text=x.getText,r.isXMLDoc=x.isXML,r.contains=x.contains,r.escapeSelector=x.escape;var y=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&r(a).is(c))break;d.push(a)}return d},z=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},A=r.expr.match.needsContext;function B(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()}var C=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i,D=/^.[^:#\[\.,]*$/;function E(a,b,c){return r.isFunction(b)?r.grep(a,function(a,d){return!!b.call(a,d,a)!==c}):b.nodeType?r.grep(a,function(a){return a===b!==c}):"string"!=typeof b?r.grep(a,function(a){return i.call(b,a)>-1!==c}):D.test(b)?r.filter(b,a,c):(b=r.filter(b,a),r.grep(a,function(a){return i.call(b,a)>-1!==c&&1===a.nodeType}))}r.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?r.find.matchesSelector(d,a)?[d]:[]:r.find.matches(a,r.grep(b,function(a){return 1===a.nodeType}))},r.fn.extend({find:function(a){var b,c,d=this.length,e=this;if("string"!=typeof a)return this.pushStack(r(a).filter(function(){for(b=0;b<d;b++)if(r.contains(e[b],this))return!0}));for(c=this.pushStack([]),b=0;b<d;b++)r.find(a,e[b],c);return d>1?r.uniqueSort(c):c},filter:function(a){return this.pushStack(E(this,a||[],!1))},not:function(a){return this.pushStack(E(this,a||[],!0))},is:function(a){return!!E(this,"string"==typeof a&&A.test(a)?r(a):a||[],!1).length}});var F,G=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/,H=r.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||F,"string"==typeof a){if(e="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:G.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof r?b[0]:b,r.merge(this,r.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),C.test(e[1])&&r.isPlainObject(b))for(e in b)r.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}return f=d.getElementById(e[2]),f&&(this[0]=f,this.length=1),this}return a.nodeType?(this[0]=a,this.length=1,this):r.isFunction(a)?void 0!==c.ready?c.ready(a):a(r):r.makeArray(a,this)};H.prototype=r.fn,F=r(d);var I=/^(?:parents|prev(?:Until|All))/,J={children:!0,contents:!0,next:!0,prev:!0};r.fn.extend({has:function(a){var b=r(a,this),c=b.length;return this.filter(function(){for(var a=0;a<c;a++)if(r.contains(this,b[a]))return!0})},closest:function(a,b){var c,d=0,e=this.length,f=[],g="string"!=typeof a&&r(a);if(!A.test(a))for(;d<e;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&r.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?r.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?i.call(r(a),this[0]):i.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(r.uniqueSort(r.merge(this.get(),r(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function K(a,b){while((a=a[b])&&1!==a.nodeType);return a}r.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return y(a,"parentNode")},parentsUntil:function(a,b,c){return y(a,"parentNode",c)},next:function(a){return K(a,"nextSibling")},prev:function(a){return K(a,"previousSibling")},nextAll:function(a){return y(a,"nextSibling")},prevAll:function(a){return y(a,"previousSibling")},nextUntil:function(a,b,c){return y(a,"nextSibling",c)},prevUntil:function(a,b,c){return y(a,"previousSibling",c)},siblings:function(a){return z((a.parentNode||{}).firstChild,a)},children:function(a){return z(a.firstChild)},contents:function(a){return B(a,"iframe")?a.contentDocument:(B(a,"template")&&(a=a.content||a),r.merge([],a.childNodes))}},function(a,b){r.fn[a]=function(c,d){var e=r.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=r.filter(d,e)),this.length>1&&(J[a]||r.uniqueSort(e),I.test(a)&&e.reverse()),this.pushStack(e)}});var L=/[^\x20\t\r\n\f]+/g;function M(a){var b={};return r.each(a.match(L)||[],function(a,c){b[c]=!0}),b}r.Callbacks=function(a){a="string"==typeof a?M(a):r.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=e||a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h<f.length)f[h].apply(c[0],c[1])===!1&&a.stopOnFalse&&(h=f.length,c=!1)}a.memory||(c=!1),b=!1,e&&(f=c?[]:"")},j={add:function(){return f&&(c&&!b&&(h=f.length-1,g.push(c)),function d(b){r.each(b,function(b,c){r.isFunction(c)?a.unique&&j.has(c)||f.push(c):c&&c.length&&"string"!==r.type(c)&&d(c)})}(arguments),c&&!b&&i()),this},remove:function(){return r.each(arguments,function(a,b){var c;while((c=r.inArray(b,f,c))>-1)f.splice(c,1),c<=h&&h--}),this},has:function(a){return a?r.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=g=[],c||b||(f=c=""),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j};function N(a){return a}function O(a){throw a}function P(a,b,c,d){var e;try{a&&r.isFunction(e=a.promise)?e.call(a).done(b).fail(c):a&&r.isFunction(e=a.then)?e.call(a,b,c):b.apply(void 0,[a].slice(d))}catch(a){c.apply(void 0,[a])}}r.extend({Deferred:function(b){var c=[["notify","progress",r.Callbacks("memory"),r.Callbacks("memory"),2],["resolve","done",r.Callbacks("once memory"),r.Callbacks("once memory"),0,"resolved"],["reject","fail",r.Callbacks("once memory"),r.Callbacks("once memory"),1,"rejected"]],d="pending",e={state:function(){return d},always:function(){return f.done(arguments).fail(arguments),this},"catch":function(a){return e.then(null,a)},pipe:function(){var a=arguments;return r.Deferred(function(b){r.each(c,function(c,d){var e=r.isFunction(a[d[4]])&&a[d[4]];f[d[1]](function(){var a=e&&e.apply(this,arguments);a&&r.isFunction(a.promise)?a.promise().progress(b.notify).done(b.resolve).fail(b.reject):b[d[0]+"With"](this,e?[a]:arguments)})}),a=null}).promise()},then:function(b,d,e){var f=0;function g(b,c,d,e){return function(){var h=this,i=arguments,j=function(){var a,j;if(!(b<f)){if(a=d.apply(h,i),a===c.promise())throw new TypeError("Thenable self-resolution");j=a&&("object"==typeof a||"function"==typeof a)&&a.then,r.isFunction(j)?e?j.call(a,g(f,c,N,e),g(f,c,O,e)):(f++,j.call(a,g(f,c,N,e),g(f,c,O,e),g(f,c,N,c.notifyWith))):(d!==N&&(h=void 0,i=[a]),(e||c.resolveWith)(h,i))}},k=e?j:function(){try{j()}catch(a){r.Deferred.exceptionHook&&r.Deferred.exceptionHook(a,k.stackTrace),b+1>=f&&(d!==O&&(h=void 0,i=[a]),c.rejectWith(h,i))}};b?k():(r.Deferred.getStackHook&&(k.stackTrace=r.Deferred.getStackHook()),a.setTimeout(k))}}return r.Deferred(function(a){c[0][3].add(g(0,a,r.isFunction(e)?e:N,a.notifyWith)),c[1][3].add(g(0,a,r.isFunction(b)?b:N)),c[2][3].add(g(0,a,r.isFunction(d)?d:O))}).promise()},promise:function(a){return null!=a?r.extend(a,e):e}},f={};return r.each(c,function(a,b){var g=b[2],h=b[5];e[b[1]]=g.add,h&&g.add(function(){d=h},c[3-a][2].disable,c[0][2].lock),g.add(b[3].fire),f[b[0]]=function(){return f[b[0]+"With"](this===f?void 0:this,arguments),this},f[b[0]+"With"]=g.fireWith}),e.promise(f),b&&b.call(f,f),f},when:function(a){var b=arguments.length,c=b,d=Array(c),e=f.call(arguments),g=r.Deferred(),h=function(a){return function(c){d[a]=this,e[a]=arguments.length>1?f.call(arguments):c,--b||g.resolveWith(d,e)}};if(b<=1&&(P(a,g.done(h(c)).resolve,g.reject,!b),"pending"===g.state()||r.isFunction(e[c]&&e[c].then)))return g.then();while(c--)P(e[c],h(c),g.reject);return g.promise()}});var Q=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;r.Deferred.exceptionHook=function(b,c){a.console&&a.console.warn&&b&&Q.test(b.name)&&a.console.warn("jQuery.Deferred exception: "+b.message,b.stack,c)},r.readyException=function(b){a.setTimeout(function(){throw b})};var R=r.Deferred();r.fn.ready=function(a){return R.then(a)["catch"](function(a){r.readyException(a)}),this},r.extend({isReady:!1,readyWait:1,ready:function(a){(a===!0?--r.readyWait:r.isReady)||(r.isReady=!0,a!==!0&&--r.readyWait>0||R.resolveWith(d,[r]))}}),r.ready.then=R.then;function S(){d.removeEventListener("DOMContentLoaded",S),
a.removeEventListener("load",S),r.ready()}"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll?a.setTimeout(r.ready):(d.addEventListener("DOMContentLoaded",S),a.addEventListener("load",S));var T=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===r.type(c)){e=!0;for(h in c)T(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,r.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(r(a),c)})),b))for(;h<i;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},U=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function V(){this.expando=r.expando+V.uid++}V.uid=1,V.prototype={cache:function(a){var b=a[this.expando];return b||(b={},U(a)&&(a.nodeType?a[this.expando]=b:Object.defineProperty(a,this.expando,{value:b,configurable:!0}))),b},set:function(a,b,c){var d,e=this.cache(a);if("string"==typeof b)e[r.camelCase(b)]=c;else for(d in b)e[r.camelCase(d)]=b[d];return e},get:function(a,b){return void 0===b?this.cache(a):a[this.expando]&&a[this.expando][r.camelCase(b)]},access:function(a,b,c){return void 0===b||b&&"string"==typeof b&&void 0===c?this.get(a,b):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d=a[this.expando];if(void 0!==d){if(void 0!==b){Array.isArray(b)?b=b.map(r.camelCase):(b=r.camelCase(b),b=b in d?[b]:b.match(L)||[]),c=b.length;while(c--)delete d[b[c]]}(void 0===b||r.isEmptyObject(d))&&(a.nodeType?a[this.expando]=void 0:delete a[this.expando])}},hasData:function(a){var b=a[this.expando];return void 0!==b&&!r.isEmptyObject(b)}};var W=new V,X=new V,Y=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,Z=/[A-Z]/g;function $(a){return"true"===a||"false"!==a&&("null"===a?null:a===+a+""?+a:Y.test(a)?JSON.parse(a):a)}function _(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(Z,"-$&").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c=$(c)}catch(e){}X.set(a,b,c)}else c=void 0;return c}r.extend({hasData:function(a){return X.hasData(a)||W.hasData(a)},data:function(a,b,c){return X.access(a,b,c)},removeData:function(a,b){X.remove(a,b)},_data:function(a,b,c){return W.access(a,b,c)},_removeData:function(a,b){W.remove(a,b)}}),r.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=X.get(f),1===f.nodeType&&!W.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=r.camelCase(d.slice(5)),_(f,d,e[d])));W.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){X.set(this,a)}):T(this,function(b){var c;if(f&&void 0===b){if(c=X.get(f,a),void 0!==c)return c;if(c=_(f,a),void 0!==c)return c}else this.each(function(){X.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){X.remove(this,a)})}}),r.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=W.get(a,b),c&&(!d||Array.isArray(c)?d=W.access(a,b,r.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=r.queue(a,b),d=c.length,e=c.shift(),f=r._queueHooks(a,b),g=function(){r.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return W.get(a,c)||W.access(a,c,{empty:r.Callbacks("once memory").add(function(){W.remove(a,[b+"queue",c])})})}}),r.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?r.queue(this[0],a):void 0===b?this:this.each(function(){var c=r.queue(this,a,b);r._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&r.dequeue(this,a)})},dequeue:function(a){return this.each(function(){r.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=r.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=W.get(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}});var aa=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,ba=new RegExp("^(?:([+-])=|)("+aa+")([a-z%]*)$","i"),ca=["Top","Right","Bottom","Left"],da=function(a,b){return a=b||a,"none"===a.style.display||""===a.style.display&&r.contains(a.ownerDocument,a)&&"none"===r.css(a,"display")},ea=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e};function fa(a,b,c,d){var e,f=1,g=20,h=d?function(){return d.cur()}:function(){return r.css(a,b,"")},i=h(),j=c&&c[3]||(r.cssNumber[b]?"":"px"),k=(r.cssNumber[b]||"px"!==j&&+i)&&ba.exec(r.css(a,b));if(k&&k[3]!==j){j=j||k[3],c=c||[],k=+i||1;do f=f||".5",k/=f,r.style(a,b,k+j);while(f!==(f=h()/i)&&1!==f&&--g)}return c&&(k=+k||+i||0,e=c[1]?k+(c[1]+1)*c[2]:+c[2],d&&(d.unit=j,d.start=k,d.end=e)),e}var ga={};function ha(a){var b,c=a.ownerDocument,d=a.nodeName,e=ga[d];return e?e:(b=c.body.appendChild(c.createElement(d)),e=r.css(b,"display"),b.parentNode.removeChild(b),"none"===e&&(e="block"),ga[d]=e,e)}function ia(a,b){for(var c,d,e=[],f=0,g=a.length;f<g;f++)d=a[f],d.style&&(c=d.style.display,b?("none"===c&&(e[f]=W.get(d,"display")||null,e[f]||(d.style.display="")),""===d.style.display&&da(d)&&(e[f]=ha(d))):"none"!==c&&(e[f]="none",W.set(d,"display",c)));for(f=0;f<g;f++)null!=e[f]&&(a[f].style.display=e[f]);return a}r.fn.extend({show:function(){return ia(this,!0)},hide:function(){return ia(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){da(this)?r(this).show():r(this).hide()})}});var ja=/^(?:checkbox|radio)$/i,ka=/<([a-z][^\/\0>\x20\t\r\n\f]+)/i,la=/^$|\/(?:java|ecma)script/i,ma={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};ma.optgroup=ma.option,ma.tbody=ma.tfoot=ma.colgroup=ma.caption=ma.thead,ma.th=ma.td;function na(a,b){var c;return c="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):[],void 0===b||b&&B(a,b)?r.merge([a],c):c}function oa(a,b){for(var c=0,d=a.length;c<d;c++)W.set(a[c],"globalEval",!b||W.get(b[c],"globalEval"))}var pa=/<|&#?\w+;/;function qa(a,b,c,d,e){for(var f,g,h,i,j,k,l=b.createDocumentFragment(),m=[],n=0,o=a.length;n<o;n++)if(f=a[n],f||0===f)if("object"===r.type(f))r.merge(m,f.nodeType?[f]:f);else if(pa.test(f)){g=g||l.appendChild(b.createElement("div")),h=(ka.exec(f)||["",""])[1].toLowerCase(),i=ma[h]||ma._default,g.innerHTML=i[1]+r.htmlPrefilter(f)+i[2],k=i[0];while(k--)g=g.lastChild;r.merge(m,g.childNodes),g=l.firstChild,g.textContent=""}else m.push(b.createTextNode(f));l.textContent="",n=0;while(f=m[n++])if(d&&r.inArray(f,d)>-1)e&&e.push(f);else if(j=r.contains(f.ownerDocument,f),g=na(l.appendChild(f),"script"),j&&oa(g),c){k=0;while(f=g[k++])la.test(f.type||"")&&c.push(f)}return l}!function(){var a=d.createDocumentFragment(),b=a.appendChild(d.createElement("div")),c=d.createElement("input");c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),b.appendChild(c),o.checkClone=b.cloneNode(!0).cloneNode(!0).lastChild.checked,b.innerHTML="<textarea>x</textarea>",o.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var ra=d.documentElement,sa=/^key/,ta=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,ua=/^([^.]*)(?:\.(.+)|)/;function va(){return!0}function wa(){return!1}function xa(){try{return d.activeElement}catch(a){}}function ya(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)ya(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=wa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return r().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=r.guid++)),a.each(function(){r.event.add(this,b,e,d,c)})}r.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.get(a);if(q){c.handler&&(f=c,c=f.handler,e=f.selector),e&&r.find.matchesSelector(ra,e),c.guid||(c.guid=r.guid++),(i=q.events)||(i=q.events={}),(g=q.handle)||(g=q.handle=function(b){return"undefined"!=typeof r&&r.event.triggered!==b.type?r.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(L)||[""],j=b.length;while(j--)h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n&&(l=r.event.special[n]||{},n=(e?l.delegateType:l.bindType)||n,l=r.event.special[n]||{},k=r.extend({type:n,origType:p,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&r.expr.match.needsContext.test(e),namespace:o.join(".")},f),(m=i[n])||(m=i[n]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,o,g)!==!1||a.addEventListener&&a.addEventListener(n,g)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),r.event.global[n]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,p,q=W.hasData(a)&&W.get(a);if(q&&(i=q.events)){b=(b||"").match(L)||[""],j=b.length;while(j--)if(h=ua.exec(b[j])||[],n=p=h[1],o=(h[2]||"").split(".").sort(),n){l=r.event.special[n]||{},n=(d?l.delegateType:l.bindType)||n,m=i[n]||[],h=h[2]&&new RegExp("(^|\\.)"+o.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&p!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,o,q.handle)!==!1||r.removeEvent(a,n,q.handle),delete i[n])}else for(n in i)r.event.remove(a,n+b[j],c,d,!0);r.isEmptyObject(i)&&W.remove(a,"handle events")}},dispatch:function(a){var b=r.event.fix(a),c,d,e,f,g,h,i=new Array(arguments.length),j=(W.get(this,"events")||{})[b.type]||[],k=r.event.special[b.type]||{};for(i[0]=b,c=1;c<arguments.length;c++)i[c]=arguments[c];if(b.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,b)!==!1){h=r.event.handlers.call(this,b,j),c=0;while((f=h[c++])&&!b.isPropagationStopped()){b.currentTarget=f.elem,d=0;while((g=f.handlers[d++])&&!b.isImmediatePropagationStopped())b.rnamespace&&!b.rnamespace.test(g.namespace)||(b.handleObj=g,b.data=g.data,e=((r.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(b.result=e)===!1&&(b.preventDefault(),b.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,b),b.result}},handlers:function(a,b){var c,d,e,f,g,h=[],i=b.delegateCount,j=a.target;if(i&&j.nodeType&&!("click"===a.type&&a.button>=1))for(;j!==this;j=j.parentNode||this)if(1===j.nodeType&&("click"!==a.type||j.disabled!==!0)){for(f=[],g={},c=0;c<i;c++)d=b[c],e=d.selector+" ",void 0===g[e]&&(g[e]=d.needsContext?r(e,this).index(j)>-1:r.find(e,this,null,[j]).length),g[e]&&f.push(d);f.length&&h.push({elem:j,handlers:f})}return j=this,i<b.length&&h.push({elem:j,handlers:b.slice(i)}),h},addProp:function(a,b){Object.defineProperty(r.Event.prototype,a,{enumerable:!0,configurable:!0,get:r.isFunction(b)?function(){if(this.originalEvent)return b(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[a]},set:function(b){Object.defineProperty(this,a,{enumerable:!0,configurable:!0,writable:!0,value:b})}})},fix:function(a){return a[r.expando]?a:new r.Event(a)},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==xa()&&this.focus)return this.focus(),!1},delegateType:"focusin"},blur:{trigger:function(){if(this===xa()&&this.blur)return this.blur(),!1},delegateType:"focusout"},click:{trigger:function(){if("checkbox"===this.type&&this.click&&B(this,"input"))return this.click(),!1},_default:function(a){return B(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}}},r.removeEvent=function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c)},r.Event=function(a,b){return this instanceof r.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?va:wa,this.target=a.target&&3===a.target.nodeType?a.target.parentNode:a.target,this.currentTarget=a.currentTarget,this.relatedTarget=a.relatedTarget):this.type=a,b&&r.extend(this,b),this.timeStamp=a&&a.timeStamp||r.now(),void(this[r.expando]=!0)):new r.Event(a,b)},r.Event.prototype={constructor:r.Event,isDefaultPrevented:wa,isPropagationStopped:wa,isImmediatePropagationStopped:wa,isSimulated:!1,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=va,a&&!this.isSimulated&&a.preventDefault()},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=va,a&&!this.isSimulated&&a.stopPropagation()},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=va,a&&!this.isSimulated&&a.stopImmediatePropagation(),this.stopPropagation()}},r.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:function(a){var b=a.button;return null==a.which&&sa.test(a.type)?null!=a.charCode?a.charCode:a.keyCode:!a.which&&void 0!==b&&ta.test(a.type)?1&b?1:2&b?3:4&b?2:0:a.which}},r.event.addProp),r.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){r.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return e&&(e===d||r.contains(d,e))||(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),r.fn.extend({on:function(a,b,c,d){return ya(this,a,b,c,d)},one:function(a,b,c,d){return ya(this,a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,r(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return b!==!1&&"function"!=typeof b||(c=b,b=void 0),c===!1&&(c=wa),this.each(function(){r.event.remove(this,a,c,b)})}});var za=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi,Aa=/<script|<style|<link/i,Ba=/checked\s*(?:[^=]|=\s*.checked.)/i,Ca=/^true\/(.*)/,Da=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function Ea(a,b){return B(a,"table")&&B(11!==b.nodeType?b:b.firstChild,"tr")?r(">tbody",a)[0]||a:a}function Fa(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function Ga(a){var b=Ca.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Ha(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(W.hasData(a)&&(f=W.access(a),g=W.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;c<d;c++)r.event.add(b,e,j[e][c])}X.hasData(a)&&(h=X.access(a),i=r.extend({},h),X.set(b,i))}}function Ia(a,b){var c=b.nodeName.toLowerCase();"input"===c&&ja.test(a.type)?b.checked=a.checked:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}function Ja(a,b,c,d){b=g.apply([],b);var e,f,h,i,j,k,l=0,m=a.length,n=m-1,q=b[0],s=r.isFunction(q);if(s||m>1&&"string"==typeof q&&!o.checkClone&&Ba.test(q))return a.each(function(e){var f=a.eq(e);s&&(b[0]=q.call(this,e,f.html())),Ja(f,b,c,d)});if(m&&(e=qa(b,a[0].ownerDocument,!1,a,d),f=e.firstChild,1===e.childNodes.length&&(e=f),f||d)){for(h=r.map(na(e,"script"),Fa),i=h.length;l<m;l++)j=e,l!==n&&(j=r.clone(j,!0,!0),i&&r.merge(h,na(j,"script"))),c.call(a[l],j,l);if(i)for(k=h[h.length-1].ownerDocument,r.map(h,Ga),l=0;l<i;l++)j=h[l],la.test(j.type||"")&&!W.access(j,"globalEval")&&r.contains(k,j)&&(j.src?r._evalUrl&&r._evalUrl(j.src):p(j.textContent.replace(Da,""),k))}return a}function Ka(a,b,c){for(var d,e=b?r.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||r.cleanData(na(d)),d.parentNode&&(c&&r.contains(d.ownerDocument,d)&&oa(na(d,"script")),d.parentNode.removeChild(d));return a}r.extend({htmlPrefilter:function(a){return a.replace(za,"<$1></$2>")},clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=r.contains(a.ownerDocument,a);if(!(o.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||r.isXMLDoc(a)))for(g=na(h),f=na(a),d=0,e=f.length;d<e;d++)Ia(f[d],g[d]);if(b)if(c)for(f=f||na(a),g=g||na(h),d=0,e=f.length;d<e;d++)Ha(f[d],g[d]);else Ha(a,h);return g=na(h,"script"),g.length>0&&oa(g,!i&&na(a,"script")),h},cleanData:function(a){for(var b,c,d,e=r.event.special,f=0;void 0!==(c=a[f]);f++)if(U(c)){if(b=c[W.expando]){if(b.events)for(d in b.events)e[d]?r.event.remove(c,d):r.removeEvent(c,d,b.handle);c[W.expando]=void 0}c[X.expando]&&(c[X.expando]=void 0)}}}),r.fn.extend({detach:function(a){return Ka(this,a,!0)},remove:function(a){return Ka(this,a)},text:function(a){return T(this,function(a){return void 0===a?r.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=a)})},null,a,arguments.length)},append:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.appendChild(a)}})},prepend:function(){return Ja(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ea(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ja(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(r.cleanData(na(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null!=a&&a,b=null==b?a:b,this.map(function(){return r.clone(this,a,b)})},html:function(a){return T(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!Aa.test(a)&&!ma[(ka.exec(a)||["",""])[1].toLowerCase()]){a=r.htmlPrefilter(a);try{for(;c<d;c++)b=this[c]||{},1===b.nodeType&&(r.cleanData(na(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ja(this,arguments,function(b){var c=this.parentNode;r.inArray(this,a)<0&&(r.cleanData(na(this)),c&&c.replaceChild(b,this))},a)}}),r.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){r.fn[a]=function(a){for(var c,d=[],e=r(a),f=e.length-1,g=0;g<=f;g++)c=g===f?this:this.clone(!0),r(e[g])[b](c),h.apply(d,c.get());return this.pushStack(d)}});var La=/^margin/,Ma=new RegExp("^("+aa+")(?!px)[a-z%]+$","i"),Na=function(b){var c=b.ownerDocument.defaultView;return c&&c.opener||(c=a),c.getComputedStyle(b)};!function(){function b(){if(i){i.style.cssText="box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",i.innerHTML="",ra.appendChild(h);var b=a.getComputedStyle(i);c="1%"!==b.top,g="2px"===b.marginLeft,e="4px"===b.width,i.style.marginRight="50%",f="4px"===b.marginRight,ra.removeChild(h),i=null}}var c,e,f,g,h=d.createElement("div"),i=d.createElement("div");i.style&&(i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",o.clearCloneStyle="content-box"===i.style.backgroundClip,h.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",h.appendChild(i),r.extend(o,{pixelPosition:function(){return b(),c},boxSizingReliable:function(){return b(),e},pixelMarginRight:function(){return b(),f},reliableMarginLeft:function(){return b(),g}}))}();function Oa(a,b,c){var d,e,f,g,h=a.style;return c=c||Na(a),c&&(g=c.getPropertyValue(b)||c[b],""!==g||r.contains(a.ownerDocument,a)||(g=r.style(a,b)),!o.pixelMarginRight()&&Ma.test(g)&&La.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+"":g}function Pa(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Qa=/^(none|table(?!-c[ea]).+)/,Ra=/^--/,Sa={position:"absolute",visibility:"hidden",display:"block"},Ta={letterSpacing:"0",fontWeight:"400"},Ua=["Webkit","Moz","ms"],Va=d.createElement("div").style;function Wa(a){if(a in Va)return a;var b=a[0].toUpperCase()+a.slice(1),c=Ua.length;while(c--)if(a=Ua[c]+b,a in Va)return a}function Xa(a){var b=r.cssProps[a];return b||(b=r.cssProps[a]=Wa(a)||a),b}function Ya(a,b,c){var d=ba.exec(b);return d?Math.max(0,d[2]-(c||0))+(d[3]||"px"):b}function Za(a,b,c,d,e){var f,g=0;for(f=c===(d?"border":"content")?4:"width"===b?1:0;f<4;f+=2)"margin"===c&&(g+=r.css(a,c+ca[f],!0,e)),d?("content"===c&&(g-=r.css(a,"padding"+ca[f],!0,e)),"margin"!==c&&(g-=r.css(a,"border"+ca[f]+"Width",!0,e))):(g+=r.css(a,"padding"+ca[f],!0,e),"padding"!==c&&(g+=r.css(a,"border"+ca[f]+"Width",!0,e)));return g}function $a(a,b,c){var d,e=Na(a),f=Oa(a,b,e),g="border-box"===r.css(a,"boxSizing",!1,e);return Ma.test(f)?f:(d=g&&(o.boxSizingReliable()||f===a.style[b]),"auto"===f&&(f=a["offset"+b[0].toUpperCase()+b.slice(1)]),f=parseFloat(f)||0,f+Za(a,b,c||(g?"border":"content"),d,e)+"px")}r.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Oa(a,"opacity");return""===c?"1":c}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=r.camelCase(b),i=Ra.test(b),j=a.style;return i||(b=Xa(h)),g=r.cssHooks[b]||r.cssHooks[h],void 0===c?g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:j[b]:(f=typeof c,"string"===f&&(e=ba.exec(c))&&e[1]&&(c=fa(a,b,e),f="number"),null!=c&&c===c&&("number"===f&&(c+=e&&e[3]||(r.cssNumber[h]?"":"px")),o.clearCloneStyle||""!==c||0!==b.indexOf("background")||(j[b]="inherit"),g&&"set"in g&&void 0===(c=g.set(a,c,d))||(i?j.setProperty(b,c):j[b]=c)),void 0)}},css:function(a,b,c,d){var e,f,g,h=r.camelCase(b),i=Ra.test(b);return i||(b=Xa(h)),g=r.cssHooks[b]||r.cssHooks[h],g&&"get"in g&&(e=g.get(a,!0,c)),void 0===e&&(e=Oa(a,b,d)),"normal"===e&&b in Ta&&(e=Ta[b]),""===c||c?(f=parseFloat(e),c===!0||isFinite(f)?f||0:e):e}}),r.each(["height","width"],function(a,b){r.cssHooks[b]={get:function(a,c,d){if(c)return!Qa.test(r.css(a,"display"))||a.getClientRects().length&&a.getBoundingClientRect().width?$a(a,b,d):ea(a,Sa,function(){return $a(a,b,d)})},set:function(a,c,d){var e,f=d&&Na(a),g=d&&Za(a,b,d,"border-box"===r.css(a,"boxSizing",!1,f),f);return g&&(e=ba.exec(c))&&"px"!==(e[3]||"px")&&(a.style[b]=c,c=r.css(a,b)),Ya(a,c,g)}}}),r.cssHooks.marginLeft=Pa(o.reliableMarginLeft,function(a,b){if(b)return(parseFloat(Oa(a,"marginLeft"))||a.getBoundingClientRect().left-ea(a,{marginLeft:0},function(){return a.getBoundingClientRect().left}))+"px"}),r.each({margin:"",padding:"",border:"Width"},function(a,b){r.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];d<4;d++)e[a+ca[d]+b]=f[d]||f[d-2]||f[0];return e}},La.test(a)||(r.cssHooks[a+b].set=Ya)}),r.fn.extend({css:function(a,b){return T(this,function(a,b,c){var d,e,f={},g=0;if(Array.isArray(b)){for(d=Na(a),e=b.length;g<e;g++)f[b[g]]=r.css(a,b[g],!1,d);return f}return void 0!==c?r.style(a,b,c):r.css(a,b)},a,b,arguments.length>1)}});function _a(a,b,c,d,e){return new _a.prototype.init(a,b,c,d,e)}r.Tween=_a,_a.prototype={constructor:_a,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||r.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(r.cssNumber[c]?"":"px")},cur:function(){var a=_a.propHooks[this.prop];return a&&a.get?a.get(this):_a.propHooks._default.get(this)},run:function(a){var b,c=_a.propHooks[this.prop];return this.options.duration?this.pos=b=r.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):_a.propHooks._default.set(this),this}},_a.prototype.init.prototype=_a.prototype,_a.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=r.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){r.fx.step[a.prop]?r.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[r.cssProps[a.prop]]&&!r.cssHooks[a.prop]?a.elem[a.prop]=a.now:r.style(a.elem,a.prop,a.now+a.unit)}}},_a.propHooks.scrollTop=_a.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},r.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},r.fx=_a.prototype.init,r.fx.step={};var ab,bb,cb=/^(?:toggle|show|hide)$/,db=/queueHooks$/;function eb(){bb&&(d.hidden===!1&&a.requestAnimationFrame?a.requestAnimationFrame(eb):a.setTimeout(eb,r.fx.interval),r.fx.tick())}function fb(){return a.setTimeout(function(){ab=void 0}),ab=r.now()}function gb(a,b){var c,d=0,e={height:a};for(b=b?1:0;d<4;d+=2-b)c=ca[d],e["margin"+c]=e["padding"+c]=a;return b&&(e.opacity=e.width=a),e}function hb(a,b,c){for(var d,e=(kb.tweeners[b]||[]).concat(kb.tweeners["*"]),f=0,g=e.length;f<g;f++)if(d=e[f].call(c,b,a))return d}function ib(a,b,c){var d,e,f,g,h,i,j,k,l="width"in b||"height"in b,m=this,n={},o=a.style,p=a.nodeType&&da(a),q=W.get(a,"fxshow");c.queue||(g=r._queueHooks(a,"fx"),null==g.unqueued&&(g.unqueued=0,h=g.empty.fire,g.empty.fire=function(){g.unqueued||h()}),g.unqueued++,m.always(function(){m.always(function(){g.unqueued--,r.queue(a,"fx").length||g.empty.fire()})}));for(d in b)if(e=b[d],cb.test(e)){if(delete b[d],f=f||"toggle"===e,e===(p?"hide":"show")){if("show"!==e||!q||void 0===q[d])continue;p=!0}n[d]=q&&q[d]||r.style(a,d)}if(i=!r.isEmptyObject(b),i||!r.isEmptyObject(n)){l&&1===a.nodeType&&(c.overflow=[o.overflow,o.overflowX,o.overflowY],j=q&&q.display,null==j&&(j=W.get(a,"display")),k=r.css(a,"display"),"none"===k&&(j?k=j:(ia([a],!0),j=a.style.display||j,k=r.css(a,"display"),ia([a]))),("inline"===k||"inline-block"===k&&null!=j)&&"none"===r.css(a,"float")&&(i||(m.done(function(){o.display=j}),null==j&&(k=o.display,j="none"===k?"":k)),o.display="inline-block")),c.overflow&&(o.overflow="hidden",m.always(function(){o.overflow=c.overflow[0],o.overflowX=c.overflow[1],o.overflowY=c.overflow[2]})),i=!1;for(d in n)i||(q?"hidden"in q&&(p=q.hidden):q=W.access(a,"fxshow",{display:j}),f&&(q.hidden=!p),p&&ia([a],!0),m.done(function(){p||ia([a]),W.remove(a,"fxshow");for(d in n)r.style(a,d,n[d])})),i=hb(p?q[d]:0,d,m),d in q||(q[d]=i.start,p&&(i.end=i.start,i.start=0))}}function jb(a,b){var c,d,e,f,g;for(c in a)if(d=r.camelCase(c),e=b[d],f=a[c],Array.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=r.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function kb(a,b,c){var d,e,f=0,g=kb.prefilters.length,h=r.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=ab||fb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;g<i;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),f<1&&i?c:(i||h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:r.extend({},b),opts:r.extend(!0,{specialEasing:{},easing:r.easing._default},c),originalProperties:b,originalOptions:c,startTime:ab||fb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=r.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;c<d;c++)j.tweens[c].run(1);return b?(h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j,b])):h.rejectWith(a,[j,b]),this}}),k=j.props;for(jb(k,j.opts.specialEasing);f<g;f++)if(d=kb.prefilters[f].call(j,a,k,j.opts))return r.isFunction(d.stop)&&(r._queueHooks(j.elem,j.opts.queue).stop=r.proxy(d.stop,d)),d;return r.map(k,hb,j),r.isFunction(j.opts.start)&&j.opts.start.call(a,j),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always),r.fx.timer(r.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j}r.Animation=r.extend(kb,{tweeners:{"*":[function(a,b){var c=this.createTween(a,b);return fa(c.elem,a,ba.exec(b),c),c}]},tweener:function(a,b){r.isFunction(a)?(b=a,a=["*"]):a=a.match(L);for(var c,d=0,e=a.length;d<e;d++)c=a[d],kb.tweeners[c]=kb.tweeners[c]||[],kb.tweeners[c].unshift(b)},prefilters:[ib],prefilter:function(a,b){b?kb.prefilters.unshift(a):kb.prefilters.push(a)}}),r.speed=function(a,b,c){var d=a&&"object"==typeof a?r.extend({},a):{complete:c||!c&&b||r.isFunction(a)&&a,duration:a,easing:c&&b||b&&!r.isFunction(b)&&b};return r.fx.off?d.duration=0:"number"!=typeof d.duration&&(d.duration in r.fx.speeds?d.duration=r.fx.speeds[d.duration]:d.duration=r.fx.speeds._default),null!=d.queue&&d.queue!==!0||(d.queue="fx"),d.old=d.complete,d.complete=function(){r.isFunction(d.old)&&d.old.call(this),d.queue&&r.dequeue(this,d.queue)},d},r.fn.extend({fadeTo:function(a,b,c,d){return this.filter(da).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=r.isEmptyObject(a),f=r.speed(b,c,d),g=function(){var b=kb(this,r.extend({},a),f);(e||W.get(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=r.timers,g=W.get(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&db.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));!b&&c||r.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=W.get(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=r.timers,g=d?d.length:0;for(c.finish=!0,r.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;b<g;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),r.each(["toggle","show","hide"],function(a,b){var c=r.fn[b];r.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(gb(b,!0),a,d,e)}}),r.each({slideDown:gb("show"),slideUp:gb("hide"),slideToggle:gb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){r.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),r.timers=[],r.fx.tick=function(){var a,b=0,c=r.timers;for(ab=r.now();b<c.length;b++)a=c[b],a()||c[b]!==a||c.splice(b--,1);c.length||r.fx.stop(),ab=void 0},r.fx.timer=function(a){r.timers.push(a),r.fx.start()},r.fx.interval=13,r.fx.start=function(){bb||(bb=!0,eb())},r.fx.stop=function(){bb=null},r.fx.speeds={slow:600,fast:200,_default:400},r.fn.delay=function(b,c){return b=r.fx?r.fx.speeds[b]||b:b,c=c||"fx",this.queue(c,function(c,d){var e=a.setTimeout(c,b);d.stop=function(){a.clearTimeout(e)}})},function(){var a=d.createElement("input"),b=d.createElement("select"),c=b.appendChild(d.createElement("option"));a.type="checkbox",o.checkOn=""!==a.value,o.optSelected=c.selected,a=d.createElement("input"),a.value="t",a.type="radio",o.radioValue="t"===a.value}();var lb,mb=r.expr.attrHandle;r.fn.extend({attr:function(a,b){return T(this,r.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){r.removeAttr(this,a)})}}),r.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?r.prop(a,b,c):(1===f&&r.isXMLDoc(a)||(e=r.attrHooks[b.toLowerCase()]||(r.expr.match.bool.test(b)?lb:void 0)),void 0!==c?null===c?void r.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=r.find.attr(a,b),
null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!o.radioValue&&"radio"===b&&B(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d=0,e=b&&b.match(L);if(e&&1===a.nodeType)while(c=e[d++])a.removeAttribute(c)}}),lb={set:function(a,b,c){return b===!1?r.removeAttr(a,c):a.setAttribute(c,c),c}},r.each(r.expr.match.bool.source.match(/\w+/g),function(a,b){var c=mb[b]||r.find.attr;mb[b]=function(a,b,d){var e,f,g=b.toLowerCase();return d||(f=mb[g],mb[g]=e,e=null!=c(a,b,d)?g:null,mb[g]=f),e}});var nb=/^(?:input|select|textarea|button)$/i,ob=/^(?:a|area)$/i;r.fn.extend({prop:function(a,b){return T(this,r.prop,a,b,arguments.length>1)},removeProp:function(a){return this.each(function(){delete this[r.propFix[a]||a]})}}),r.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&r.isXMLDoc(a)||(b=r.propFix[b]||b,e=r.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=r.find.attr(a,"tabindex");return b?parseInt(b,10):nb.test(a.nodeName)||ob.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),o.optSelected||(r.propHooks.selected={get:function(a){var b=a.parentNode;return b&&b.parentNode&&b.parentNode.selectedIndex,null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),r.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){r.propFix[this.toLowerCase()]=this});function pb(a){var b=a.match(L)||[];return b.join(" ")}function qb(a){return a.getAttribute&&a.getAttribute("class")||""}r.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).addClass(a.call(this,b,qb(this)))});if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(r.isFunction(a))return this.each(function(b){r(this).removeClass(a.call(this,b,qb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(L)||[];while(c=this[i++])if(e=qb(c),d=1===c.nodeType&&" "+pb(e)+" "){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=pb(d),e!==h&&c.setAttribute("class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):r.isFunction(a)?this.each(function(c){r(this).toggleClass(a.call(this,c,qb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=r(this),f=a.match(L)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=qb(this),b&&W.set(this,"__className__",b),this.setAttribute&&this.setAttribute("class",b||a===!1?"":W.get(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+pb(qb(c))+" ").indexOf(b)>-1)return!0;return!1}});var rb=/\r/g;r.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=r.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,r(this).val()):a,null==e?e="":"number"==typeof e?e+="":Array.isArray(e)&&(e=r.map(e,function(a){return null==a?"":a+""})),b=r.valHooks[this.type]||r.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=r.valHooks[e.type]||r.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(rb,""):null==c?"":c)}}}),r.extend({valHooks:{option:{get:function(a){var b=r.find.attr(a,"value");return null!=b?b:pb(r.text(a))}},select:{get:function(a){var b,c,d,e=a.options,f=a.selectedIndex,g="select-one"===a.type,h=g?null:[],i=g?f+1:e.length;for(d=f<0?i:g?f:0;d<i;d++)if(c=e[d],(c.selected||d===f)&&!c.disabled&&(!c.parentNode.disabled||!B(c.parentNode,"optgroup"))){if(b=r(c).val(),g)return b;h.push(b)}return h},set:function(a,b){var c,d,e=a.options,f=r.makeArray(b),g=e.length;while(g--)d=e[g],(d.selected=r.inArray(r.valHooks.option.get(d),f)>-1)&&(c=!0);return c||(a.selectedIndex=-1),f}}}}),r.each(["radio","checkbox"],function(){r.valHooks[this]={set:function(a,b){if(Array.isArray(b))return a.checked=r.inArray(r(a).val(),b)>-1}},o.checkOn||(r.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var sb=/^(?:focusinfocus|focusoutblur)$/;r.extend(r.event,{trigger:function(b,c,e,f){var g,h,i,j,k,m,n,o=[e||d],p=l.call(b,"type")?b.type:b,q=l.call(b,"namespace")?b.namespace.split("."):[];if(h=i=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!sb.test(p+r.event.triggered)&&(p.indexOf(".")>-1&&(q=p.split("."),p=q.shift(),q.sort()),k=p.indexOf(":")<0&&"on"+p,b=b[r.expando]?b:new r.Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+q.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:r.makeArray(c,[b]),n=r.event.special[p]||{},f||!n.trigger||n.trigger.apply(e,c)!==!1)){if(!f&&!n.noBubble&&!r.isWindow(e)){for(j=n.delegateType||p,sb.test(j+p)||(h=h.parentNode);h;h=h.parentNode)o.push(h),i=h;i===(e.ownerDocument||d)&&o.push(i.defaultView||i.parentWindow||a)}g=0;while((h=o[g++])&&!b.isPropagationStopped())b.type=g>1?j:n.bindType||p,m=(W.get(h,"events")||{})[b.type]&&W.get(h,"handle"),m&&m.apply(h,c),m=k&&h[k],m&&m.apply&&U(h)&&(b.result=m.apply(h,c),b.result===!1&&b.preventDefault());return b.type=p,f||b.isDefaultPrevented()||n._default&&n._default.apply(o.pop(),c)!==!1||!U(e)||k&&r.isFunction(e[p])&&!r.isWindow(e)&&(i=e[k],i&&(e[k]=null),r.event.triggered=p,e[p](),r.event.triggered=void 0,i&&(e[k]=i)),b.result}},simulate:function(a,b,c){var d=r.extend(new r.Event,c,{type:a,isSimulated:!0});r.event.trigger(d,null,b)}}),r.fn.extend({trigger:function(a,b){return this.each(function(){r.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];if(c)return r.event.trigger(a,b,c,!0)}}),r.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){r.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),r.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),o.focusin="onfocusin"in a,o.focusin||r.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){r.event.simulate(b,a.target,r.event.fix(a))};r.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=W.access(d,b);e||d.addEventListener(a,c,!0),W.access(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=W.access(d,b)-1;e?W.access(d,b,e):(d.removeEventListener(a,c,!0),W.remove(d,b))}}});var tb=a.location,ub=r.now(),vb=/\?/;r.parseXML=function(b){var c;if(!b||"string"!=typeof b)return null;try{c=(new a.DOMParser).parseFromString(b,"text/xml")}catch(d){c=void 0}return c&&!c.getElementsByTagName("parsererror").length||r.error("Invalid XML: "+b),c};var wb=/\[\]$/,xb=/\r?\n/g,yb=/^(?:submit|button|image|reset|file)$/i,zb=/^(?:input|select|textarea|keygen)/i;function Ab(a,b,c,d){var e;if(Array.isArray(b))r.each(b,function(b,e){c||wb.test(a)?d(a,e):Ab(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==r.type(b))d(a,b);else for(e in b)Ab(a+"["+e+"]",b[e],c,d)}r.param=function(a,b){var c,d=[],e=function(a,b){var c=r.isFunction(b)?b():b;d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(null==c?"":c)};if(Array.isArray(a)||a.jquery&&!r.isPlainObject(a))r.each(a,function(){e(this.name,this.value)});else for(c in a)Ab(c,a[c],b,e);return d.join("&")},r.fn.extend({serialize:function(){return r.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=r.prop(this,"elements");return a?r.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!r(this).is(":disabled")&&zb.test(this.nodeName)&&!yb.test(a)&&(this.checked||!ja.test(a))}).map(function(a,b){var c=r(this).val();return null==c?null:Array.isArray(c)?r.map(c,function(a){return{name:b.name,value:a.replace(xb,"\r\n")}}):{name:b.name,value:c.replace(xb,"\r\n")}}).get()}});var Bb=/%20/g,Cb=/#.*$/,Db=/([?&])_=[^&]*/,Eb=/^(.*?):[ \t]*([^\r\n]*)$/gm,Fb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Gb=/^(?:GET|HEAD)$/,Hb=/^\/\//,Ib={},Jb={},Kb="*/".concat("*"),Lb=d.createElement("a");Lb.href=tb.href;function Mb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(L)||[];if(r.isFunction(c))while(d=f[e++])"+"===d[0]?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Nb(a,b,c,d){var e={},f=a===Jb;function g(h){var i;return e[h]=!0,r.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Ob(a,b){var c,d,e=r.ajaxSettings.flatOptions||{};for(c in b)void 0!==b[c]&&((e[c]?a:d||(d={}))[c]=b[c]);return d&&r.extend(!0,a,d),a}function Pb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===d&&(d=a.mimeType||b.getResponseHeader("Content-Type"));if(d)for(e in h)if(h[e]&&h[e].test(d)){i.unshift(e);break}if(i[0]in c)f=i[0];else{for(e in c){if(!i[0]||a.converters[e+" "+i[0]]){f=e;break}g||(g=e)}f=f||g}if(f)return f!==i[0]&&i.unshift(f),c[f]}function Qb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}r.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:tb.href,type:"GET",isLocal:Fb.test(tb.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Kb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":r.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Ob(Ob(a,r.ajaxSettings),b):Ob(r.ajaxSettings,a)},ajaxPrefilter:Mb(Ib),ajaxTransport:Mb(Jb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var e,f,g,h,i,j,k,l,m,n,o=r.ajaxSetup({},c),p=o.context||o,q=o.context&&(p.nodeType||p.jquery)?r(p):r.event,s=r.Deferred(),t=r.Callbacks("once memory"),u=o.statusCode||{},v={},w={},x="canceled",y={readyState:0,getResponseHeader:function(a){var b;if(k){if(!h){h={};while(b=Eb.exec(g))h[b[1].toLowerCase()]=b[2]}b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return k?g:null},setRequestHeader:function(a,b){return null==k&&(a=w[a.toLowerCase()]=w[a.toLowerCase()]||a,v[a]=b),this},overrideMimeType:function(a){return null==k&&(o.mimeType=a),this},statusCode:function(a){var b;if(a)if(k)y.always(a[y.status]);else for(b in a)u[b]=[u[b],a[b]];return this},abort:function(a){var b=a||x;return e&&e.abort(b),A(0,b),this}};if(s.promise(y),o.url=((b||o.url||tb.href)+"").replace(Hb,tb.protocol+"//"),o.type=c.method||c.type||o.method||o.type,o.dataTypes=(o.dataType||"*").toLowerCase().match(L)||[""],null==o.crossDomain){j=d.createElement("a");try{j.href=o.url,j.href=j.href,o.crossDomain=Lb.protocol+"//"+Lb.host!=j.protocol+"//"+j.host}catch(z){o.crossDomain=!0}}if(o.data&&o.processData&&"string"!=typeof o.data&&(o.data=r.param(o.data,o.traditional)),Nb(Ib,o,c,y),k)return y;l=r.event&&o.global,l&&0===r.active++&&r.event.trigger("ajaxStart"),o.type=o.type.toUpperCase(),o.hasContent=!Gb.test(o.type),f=o.url.replace(Cb,""),o.hasContent?o.data&&o.processData&&0===(o.contentType||"").indexOf("application/x-www-form-urlencoded")&&(o.data=o.data.replace(Bb,"+")):(n=o.url.slice(f.length),o.data&&(f+=(vb.test(f)?"&":"?")+o.data,delete o.data),o.cache===!1&&(f=f.replace(Db,"$1"),n=(vb.test(f)?"&":"?")+"_="+ub++ +n),o.url=f+n),o.ifModified&&(r.lastModified[f]&&y.setRequestHeader("If-Modified-Since",r.lastModified[f]),r.etag[f]&&y.setRequestHeader("If-None-Match",r.etag[f])),(o.data&&o.hasContent&&o.contentType!==!1||c.contentType)&&y.setRequestHeader("Content-Type",o.contentType),y.setRequestHeader("Accept",o.dataTypes[0]&&o.accepts[o.dataTypes[0]]?o.accepts[o.dataTypes[0]]+("*"!==o.dataTypes[0]?", "+Kb+"; q=0.01":""):o.accepts["*"]);for(m in o.headers)y.setRequestHeader(m,o.headers[m]);if(o.beforeSend&&(o.beforeSend.call(p,y,o)===!1||k))return y.abort();if(x="abort",t.add(o.complete),y.done(o.success),y.fail(o.error),e=Nb(Jb,o,c,y)){if(y.readyState=1,l&&q.trigger("ajaxSend",[y,o]),k)return y;o.async&&o.timeout>0&&(i=a.setTimeout(function(){y.abort("timeout")},o.timeout));try{k=!1,e.send(v,A)}catch(z){if(k)throw z;A(-1,z)}}else A(-1,"No Transport");function A(b,c,d,h){var j,m,n,v,w,x=c;k||(k=!0,i&&a.clearTimeout(i),e=void 0,g=h||"",y.readyState=b>0?4:0,j=b>=200&&b<300||304===b,d&&(v=Pb(o,y,d)),v=Qb(o,v,y,j),j?(o.ifModified&&(w=y.getResponseHeader("Last-Modified"),w&&(r.lastModified[f]=w),w=y.getResponseHeader("etag"),w&&(r.etag[f]=w)),204===b||"HEAD"===o.type?x="nocontent":304===b?x="notmodified":(x=v.state,m=v.data,n=v.error,j=!n)):(n=x,!b&&x||(x="error",b<0&&(b=0))),y.status=b,y.statusText=(c||x)+"",j?s.resolveWith(p,[m,x,y]):s.rejectWith(p,[y,x,n]),y.statusCode(u),u=void 0,l&&q.trigger(j?"ajaxSuccess":"ajaxError",[y,o,j?m:n]),t.fireWith(p,[y,x]),l&&(q.trigger("ajaxComplete",[y,o]),--r.active||r.event.trigger("ajaxStop")))}return y},getJSON:function(a,b,c){return r.get(a,b,c,"json")},getScript:function(a,b){return r.get(a,void 0,b,"script")}}),r.each(["get","post"],function(a,b){r[b]=function(a,c,d,e){return r.isFunction(c)&&(e=e||d,d=c,c=void 0),r.ajax(r.extend({url:a,type:b,dataType:e,data:c,success:d},r.isPlainObject(a)&&a))}}),r._evalUrl=function(a){return r.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},r.fn.extend({wrapAll:function(a){var b;return this[0]&&(r.isFunction(a)&&(a=a.call(this[0])),b=r(a,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstElementChild)a=a.firstElementChild;return a}).append(this)),this},wrapInner:function(a){return r.isFunction(a)?this.each(function(b){r(this).wrapInner(a.call(this,b))}):this.each(function(){var b=r(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=r.isFunction(a);return this.each(function(c){r(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(a){return this.parent(a).not("body").each(function(){r(this).replaceWith(this.childNodes)}),this}}),r.expr.pseudos.hidden=function(a){return!r.expr.pseudos.visible(a)},r.expr.pseudos.visible=function(a){return!!(a.offsetWidth||a.offsetHeight||a.getClientRects().length)},r.ajaxSettings.xhr=function(){try{return new a.XMLHttpRequest}catch(b){}};var Rb={0:200,1223:204},Sb=r.ajaxSettings.xhr();o.cors=!!Sb&&"withCredentials"in Sb,o.ajax=Sb=!!Sb,r.ajaxTransport(function(b){var c,d;if(o.cors||Sb&&!b.crossDomain)return{send:function(e,f){var g,h=b.xhr();if(h.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(g in b.xhrFields)h[g]=b.xhrFields[g];b.mimeType&&h.overrideMimeType&&h.overrideMimeType(b.mimeType),b.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest");for(g in e)h.setRequestHeader(g,e[g]);c=function(a){return function(){c&&(c=d=h.onload=h.onerror=h.onabort=h.onreadystatechange=null,"abort"===a?h.abort():"error"===a?"number"!=typeof h.status?f(0,"error"):f(h.status,h.statusText):f(Rb[h.status]||h.status,h.statusText,"text"!==(h.responseType||"text")||"string"!=typeof h.responseText?{binary:h.response}:{text:h.responseText},h.getAllResponseHeaders()))}},h.onload=c(),d=h.onerror=c("error"),void 0!==h.onabort?h.onabort=d:h.onreadystatechange=function(){4===h.readyState&&a.setTimeout(function(){c&&d()})},c=c("abort");try{h.send(b.hasContent&&b.data||null)}catch(i){if(c)throw i}},abort:function(){c&&c()}}}),r.ajaxPrefilter(function(a){a.crossDomain&&(a.contents.script=!1)}),r.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return r.globalEval(a),a}}}),r.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET")}),r.ajaxTransport("script",function(a){if(a.crossDomain){var b,c;return{send:function(e,f){b=r("<script>").prop({charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove(),c=null,a&&f("error"===a.type?404:200,a.type)}),d.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Tb=[],Ub=/(=)\?(?=&|$)|\?\?/;r.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Tb.pop()||r.expando+"_"+ub++;return this[a]=!0,a}}),r.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(Ub.test(b.url)?"url":"string"==typeof b.data&&0===(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ub.test(b.data)&&"data");if(h||"jsonp"===b.dataTypes[0])return e=b.jsonpCallback=r.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(Ub,"$1"+e):b.jsonp!==!1&&(b.url+=(vb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||r.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?r(a).removeProp(e):a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,Tb.push(e)),g&&r.isFunction(f)&&f(g[0]),g=f=void 0}),"script"}),o.createHTMLDocument=function(){var a=d.implementation.createHTMLDocument("").body;return a.innerHTML="<form></form><form></form>",2===a.childNodes.length}(),r.parseHTML=function(a,b,c){if("string"!=typeof a)return[];"boolean"==typeof b&&(c=b,b=!1);var e,f,g;return b||(o.createHTMLDocument?(b=d.implementation.createHTMLDocument(""),e=b.createElement("base"),e.href=d.location.href,b.head.appendChild(e)):b=d),f=C.exec(a),g=!c&&[],f?[b.createElement(f[1])]:(f=qa([a],b,g),g&&g.length&&r(g).remove(),r.merge([],f.childNodes))},r.fn.load=function(a,b,c){var d,e,f,g=this,h=a.indexOf(" ");return h>-1&&(d=pb(a.slice(h)),a=a.slice(0,h)),r.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&r.ajax({url:a,type:e||"GET",dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?r("<div>").append(r.parseHTML(a)).find(d):a)}).always(c&&function(a,b){g.each(function(){c.apply(this,f||[a.responseText,b,a])})}),this},r.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){r.fn[b]=function(a){return this.on(b,a)}}),r.expr.pseudos.animated=function(a){return r.grep(r.timers,function(b){return a===b.elem}).length},r.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=r.css(a,"position"),l=r(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=r.css(a,"top"),i=r.css(a,"left"),j=("absolute"===k||"fixed"===k)&&(f+i).indexOf("auto")>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),r.isFunction(b)&&(b=b.call(a,c,r.extend({},h))),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},r.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){r.offset.setOffset(this,a,b)});var b,c,d,e,f=this[0];if(f)return f.getClientRects().length?(d=f.getBoundingClientRect(),b=f.ownerDocument,c=b.documentElement,e=b.defaultView,{top:d.top+e.pageYOffset-c.clientTop,left:d.left+e.pageXOffset-c.clientLeft}):{top:0,left:0}},position:function(){if(this[0]){var a,b,c=this[0],d={top:0,left:0};return"fixed"===r.css(c,"position")?b=c.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),B(a[0],"html")||(d=a.offset()),d={top:d.top+r.css(a[0],"borderTopWidth",!0),left:d.left+r.css(a[0],"borderLeftWidth",!0)}),{top:b.top-d.top-r.css(c,"marginTop",!0),left:b.left-d.left-r.css(c,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&&"static"===r.css(a,"position"))a=a.offsetParent;return a||ra})}}),r.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c="pageYOffset"===b;r.fn[a]=function(d){return T(this,function(a,d,e){var f;return r.isWindow(a)?f=a:9===a.nodeType&&(f=a.defaultView),void 0===e?f?f[b]:a[d]:void(f?f.scrollTo(c?f.pageXOffset:e,c?e:f.pageYOffset):a[d]=e)},a,d,arguments.length)}}),r.each(["top","left"],function(a,b){r.cssHooks[b]=Pa(o.pixelPosition,function(a,c){if(c)return c=Oa(a,b),Ma.test(c)?r(a).position()[b]+"px":c})}),r.each({Height:"height",Width:"width"},function(a,b){r.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,d){r.fn[d]=function(e,f){var g=arguments.length&&(c||"boolean"!=typeof e),h=c||(e===!0||f===!0?"margin":"border");return T(this,function(b,c,e){var f;return r.isWindow(b)?0===d.indexOf("outer")?b["inner"+a]:b.document.documentElement["client"+a]:9===b.nodeType?(f=b.documentElement,Math.max(b.body["scroll"+a],f["scroll"+a],b.body["offset"+a],f["offset"+a],f["client"+a])):void 0===e?r.css(b,c,h):r.style(b,c,e,h)},b,g?e:void 0,g)}})}),r.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}}),r.holdReady=function(a){a?r.readyWait++:r.ready(!0)},r.isArray=Array.isArray,r.parseJSON=JSON.parse,r.nodeName=B,"function"==typeof define&&define.amd&&define("jquery",[],function(){return r});var Vb=a.jQuery,Wb=a.$;return r.noConflict=function(b){return a.$===r&&(a.$=Wb),b&&a.jQuery===r&&(a.jQuery=Vb),r},b||(a.jQuery=a.$=r),r});
$j = jQuery.noConflict();PK�%"]8p޹�sudesign_audio/lib/bigplay.pngnu&1i��PNG


IHDRd�)��sBIT��O��PLTE������������������������ZZZQQQJJJAAA999333)))!!!������|||ssskkkfffZZZQQQ�����晙����������|||�����浵���������������������ž����������������������������������������������������������?�PFtRNS""33DDDDDDUUUUUUUUUUUffffffffwwwwwww�����������������������������E+:	pHYs��~�tEXtSoftwareAdobe Fireworks CS4�ӠtEXtCreation Time11/19/10-s�1	�IDATx��{[��mE��2GA���]����ʊ�Pg��N.o�73I&���c�ji&����M>��p�Ϲ�B��^-7*� B
ĩ�]_'���̨#A�� [�{7[o:�$ٮg_��S�#~�m�43��Jǔ��r<�f0���cJ��K,�U��gy�1���I�[���^0C�/�}$:�u&����T��\4u�j]̷ R�L��r+�z����\�`��4��h����
9�o�	���hPcɿ��5-��9��,�)�q������t������3F�W.I�!9dB��g_P�Mθ�&(}�d0]1�̇B?T��4F>�J��0G��b��@��3s�>r��)�1��(O�BQ��&L���ƴ�Yn�Qn�> 1� �*���('�d2'DB�����J��Z��v��R^D�3e���{v��Nn��l�I�li�9|�i�
Z4*��K�zVҒ�ˬ4�F�fFP�����DVw�� $o\[1���mo�iq{."�s)��F���9�]��u��=I�i	��Bm�tm� �$���s��.���K7�h�X�Ι�����Y�gF�m��{C驍� �4&wQNb2�ʬ/�B��F1k����q�x0�V�"m�!d'ywFs_��B��;چB5c��WT�/&}����E{��&��-���o&}�L�m��2
����Uw�ɚ�&sƳ"�~!{V����j��x��i8�+��7�!:���(���h��BL���Z��H��ݖ�~���C<$i�$��������B��ͮ.��B��v�`��	[0�KZ�����I��J�4�o���zr�t�z^��sy`Ѣs/S�Q���Kk�����$ZV�H�|�+�"v$b�H�=�t���_�>J�j��;|J��F�S8��5q��ā�m��~�VW�,�z�ՁN<�{�ٴ%E����.At+��KsA*
�a���9�����\=�b�+M�� Y�/K�؏Jծ{�j\�7X'�3���CK�.��m�|�d���oF�Y܋�'FQ���u�8c��U�ɶD��)JQS���^�Aa��Ld����s�
c<��rB�(g�C�<�лB-P�N޵�vj!�:�y���l�����R�Ny�Iq�:����_�1����g�V�t�z�.z��0�.��)�kH�˛̓�����g��z �<��ξ��Q�H;���+/�R���������_�%~�i�`��M�
CW��s�y�R-}(�e�n_sOsB��n۞���ant=_�8�zr�B5!���v����f&������(��1u��i�a�\�#T�P�QU t��%f��}q�:��S5�c|���1���Sn�P5��w�r�
ĩ�]_'���̨#A�� [0MW���4�7��0���q>���w��tLi1�*���|s �q�cJ���&U����c)D���Ι!�sb��4�
b�a��e|�u-b'�S�A5�{�hn+�<��&6�4��16�E���&ţ�b,��
p�e1�Y�S$#Z�O#-��!1�U Egp1�$%���#&�*?F�1��/Y�*�(�C��
��9�Jd�+�1�„ ��9ԡ)�1&b�i�(�1�1li�
\NR��`�PEќ���!�R�Y�nM�Be$ϰ��V�GbsH�^�@#v2R_�  �Z@�"m�M#�:e�DA�g�*x���TC�0��68u��ե� o`�`�$����a�!�~���SFgb7�i�X� 2�����VA��� 9H����1�}D79��
,'�@�C ��0x?��@ܡ&�BLcrg�9���H[/(f��1�3��f}�j��;��$�΅��юS�B5c�������#�<m��y(}gh�2�
���2
2��Y��xuCȎ4Ө���@�&F!�4�*-�B�o��3
�= Q ���UQp/7Ds.?1A(���	��
	�b7����%I�MJ��=�g��.��=�%��[����lp�o�z^����t.��=�/�Q�A�hi��H_aG"��sǑ��>��w���V�:rS�P}����[�,���tu��uBg�� �����s�Q�uN3�BϬ��_^��S�E9�=NӢ+��,8o��રY�IM��đ�z�=����(�8��Gq/
���2����WǷehx5l��4�x�n�����[���#���&$PƲ_�lt���9�Q�-��h��-�"���&;x�Z���A��^��d	��}����^ �/�
���8�?;5��F��f�6��zڐ	ڛ�Q:�񂾡,��A5��Nj�H�(�П�&e�M����Z�P>�0�F��9 �F��/��K��ƻ=Ja����
͌7�E%��:���Ž:�1sp	(�8P%C�GmT��9�{����ɏ�6NՄ��1�_���I���JIEND�B`�PK�%"]�N�h(h(#sudesign_audio/lib/controls-red.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!-- Generator: Adobe Fireworks CS6, Export SVG Extension by Aaron Beall (http://fireworks.abeall.com) . Version: 0.6.1  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg id="controls.fw-Page%201" viewBox="0 0 144 32" style="background-color:#FF000000" version="1.1"
	xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
	x="0px" y="0px" width="144px" height="32px"
>
	<defs>
		<radialGradient id="gradient1" cx="50%" cy="50%" r="50%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#f2f2f2" stop-opacity="0.2" offset="100%"/>
		</radialGradient>
		<linearGradient id="gradient2" x1="50%" y1="-7.8652%" x2="50%" y2="249.6629%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient3" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient4" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient5" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient6" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient7" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient8" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient9" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient10" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient11" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient12" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient13" x1="40%" y1="-140%" x2="40%" y2="98.75%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient14" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient15" x1="60%" y1="-140%" x2="60%" y2="98.75%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient16" x1="50%" y1="0%" x2="50%" y2="298.4375%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient17" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient18" x1="50%" y1="-200%" x2="50%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient19" x1="50%" y1="-200%" x2="50%" y2="110.9375%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient20" x1="55%" y1="0%" x2="55%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient21" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#FF0000" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c80000" stop-opacity="1" offset="99.4444%"/>
		</linearGradient>
	</defs>
	<g id="BG">
	</g>
	<g id="controls">
		<path id="Line" d="M 98.5 7.5 L 109.5 7.5 " stroke="#FF0000" stroke-width="1" fill="none"/>
		<path id="Line2" d="M 98.5 3.5 L 109.5 3.5 " stroke="#FF0000" stroke-width="1" fill="none"/>
		<path id="Line3" d="M 98.5 11.5 L 109.5 11.5 " stroke="#FF0000" stroke-width="1" fill="none"/>
		<path id="Ellipse" d="M 108 11.5 C 108 10.6716 108.4477 10 109 10 C 109.5523 10 110 10.6716 110 11.5 C 110 12.3284 109.5523 13 109 13 C 108.4477 13 108 12.3284 108 11.5 Z" fill="#FF0000"/>
		<path id="Ellipse2" d="M 104 7.5 C 104 6.6716 104.4477 6 105 6 C 105.5523 6 106 6.6716 106 7.5 C 106 8.3284 105.5523 9 105 9 C 104.4477 9 104 8.3284 104 7.5 Z" fill="#FF0000"/>
		<path id="Ellipse3" d="M 108 3.5 C 108 2.6716 108.4477 2 109 2 C 109.5523 2 110 2.6716 110 3.5 C 110 4.3284 109.5523 5 109 5 C 108.4477 5 108 4.3284 108 3.5 Z" fill="#FF0000"/>
	</g>
	<g id="backlight">
		<g id="off">
			<rect x="83" y="21" width="10" height="6" stroke="#FF0000" stroke-width="1" fill="#333333"/>
		</g>
		<g id="on">
			<path id="Ellipse4" d="M 81 8 C 81 5.2385 84.134 3 88 3 C 91.866 3 95 5.2385 95 8 C 95 10.7615 91.866 13 88 13 C 84.134 13 81 10.7615 81 8 Z" fill="url(#gradient1)"/>
			<rect x="83" y="5" width="10" height="6" stroke="#FF0000" stroke-width="1" fill="#333333"/>
		</g>
	</g>
	<g id="loop">
		<g id="on2">
			<path d="M 73.795 4.205 C 75.2155 4.8785 76.2 6.3234 76.2 8 C 76.2 10.3196 74.3196 12.2 72 12.2 C 69.6804 12.2 67.8 10.3196 67.8 8 C 67.8 6.3234 68.7845 4.8785 70.205 4.205 L 68.875 2.875 C 67.1501 3.9289 66 5.8306 66 8 C 66 11.3138 68.6862 14 72 14 C 75.3138 14 78 11.3138 78 8 C 78 5.8306 76.8499 3.9289 75.125 2.875 L 73.795 4.205 Z" fill="url(#gradient2)"/>
			<path d="M 71 2 L 66 2 L 71 7 L 71 2 Z" fill="url(#gradient3)"/>
		</g>
		<g id="off2">
			<path d="M 73.795 20.205 C 75.2155 20.8785 76.2 22.3234 76.2 24 C 76.2 26.3196 74.3196 28.2 72 28.2 C 69.6804 28.2 67.8 26.3196 67.8 24 C 67.8 22.3234 68.7845 20.8785 70.205 20.205 L 68.875 18.875 C 67.1501 19.9289 66 21.8306 66 24 C 66 27.3138 68.6862 30 72 30 C 75.3138 30 78 27.3138 78 24 C 78 21.8306 76.8499 19.9289 75.125 18.875 L 73.795 20.205 Z" fill="#a8a8b7"/>
			<path d="M 71 18 L 66 18 L 71 23 L 71 18 Z" fill="#a8a8b7"/>
		</g>
	</g>
	<g id="cc">
		<rect visibility="hidden" x="49" y="2" width="14" height="12" stroke="#b0b0b0" stroke-width="1" fill="none"/>
		<text visibility="hidden" x="49" y="17" width="14" fill="#FF0000" style="font-size: 10px; color: #FF0000; font-family: Arial; text-align: center; "><tspan><![CDATA[cc]]></tspan></text>
		<path d="M 55 7 C 50.2813 3.7813 50.063 12.9405 55 10 " stroke="#FF0000" stroke-width="1" fill="none"/>
		<path d="M 60 7 C 55.2813 3.7813 55.063 12.9405 60 10 " stroke="#FF0000" stroke-width="1" fill="none"/>
		<path d="M 50 3 L 62 3 L 62 13 L 50 13 L 50 3 ZM 49 2 L 49 14 L 63 14 L 63 2 L 49 2 Z" fill="url(#gradient4)"/>
		<rect x="49" y="2" width="14" height="12" fill="none"/>
	</g>
	<g id="volume">
		<g id="no%20sound">
			<rect x="17" y="5" width="5" height="6" fill="url(#gradient5)"/>
			<path d="M 21 5 L 25 2 L 25 14 L 21 11.0625 L 21 5 Z" fill="url(#gradient6)"/>
		</g>
		<g id="sound%20bars">
			<rect x="17" y="21" width="5" height="6" fill="url(#gradient7)"/>
			<path d="M 21 21 L 25 18 L 25 30 L 21 27.0625 L 21 21 Z" fill="url(#gradient8)"/>
			<path d="M 27 18 C 27 18 30.0625 17.375 30 24 C 29.9375 30.625 27 30 27 30 " stroke="#FF0000" stroke-width="1" fill="none"/>
			<path d="M 26 21.0079 C 26 21.0079 28.041 20.6962 27.9994 24 C 27.9577 27.3038 26 26.9921 26 26.9921 " stroke="#FF0000" stroke-width="1" fill="none"/>
		</g>
	</g>
	<g id="play/pause">
		<g id="play">
			<path id="Polygon" d="M 14 8.5 L 3 14 L 3 3 L 14 8.5 Z" fill="url(#gradient9)"/>
		</g>
		<g id="pause">
			<rect x="3" y="18" width="3" height="12" fill="url(#gradient10)"/>
			<rect x="10" y="18" width="3" height="12" fill="url(#gradient11)"/>
		</g>
	</g>
	<g id="fullscreen">
		<g id="enter%201">
			<path d="M 34 2 L 39 2 L 34 7 L 34 2 Z" fill="url(#gradient12)"/>
			<path d="M 34 14 L 39 14 L 34 9 L 34 14 Z" fill="url(#gradient13)"/>
			<path d="M 46 2 L 41 2 L 46 7 L 46 2 Z" fill="url(#gradient14)"/>
			<path d="M 46 14 L 41 14 L 46 9 L 46 14 Z" fill="url(#gradient15)"/>
		</g>
		<g id="exit">
			<path d="M 42 22 L 46 22 L 42 18 L 42 22 Z" fill="url(#gradient16)"/>
			<path d="M 38 22 L 38 18 L 34 22 L 38 22 Z" fill="url(#gradient17)"/>
			<path d="M 38 26 L 34 26 L 38 30 L 38 26 Z" fill="url(#gradient18)"/>
			<path d="M 42 26 L 42 30 L 46 26 L 42 26 Z" fill="url(#gradient19)"/>
		</g>
	</g>
	<g id="stop">
		<rect x="115" y="3" width="10" height="10" fill="url(#gradient20)"/>
	</g>
	<g id="chooser">
		<path d="M 135.2346 6.1522 C 136.2551 5.7295 137.4251 6.2141 137.8478 7.2346 C 138.2704 8.2551 137.7859 9.425 136.7654 9.8478 C 135.7449 10.2705 134.5749 9.7859 134.1522 8.7654 C 133.7295 7.7449 134.2141 6.5749 135.2346 6.1522 ZM 133.2735 1.4176 L 136 4.0054 L 138.7265 1.4176 L 138.8246 5.1754 L 142.5824 5.2735 L 139.9946 8 L 142.5824 10.7265 L 138.8246 10.8246 L 138.7265 14.5824 L 136 11.9946 L 133.2735 14.5824 L 133.1754 10.8246 L 129.4176 10.7265 L 132.0054 8 L 129.4176 5.2735 L 133.1754 5.1754 L 133.2735 1.4176 Z" fill="url(#gradient21)"/>
	</g>
</svg>PK�%"]/ݾ�3M3M-sudesign_audio/lib/mediaelementplayer.min.cssnu&1i�.mejs-container{position:relative;background:#000;font-family:Helvetica,Arial;text-align:left;vertical-align:top;text-indent:0;}.me-plugin{position:absolute;height:auto;width:auto;}.mejs-embed,.mejs-embed body{width:100%;height:100%;margin:0;padding:0;background:#000;overflow:hidden;}.mejs-fullscreen{overflow:hidden!important;}.mejs-container-fullscreen{position:fixed;left:0;top:0;right:0;bottom:0;overflow:hidden;z-index:1000;}.mejs-container-fullscreen .mejs-mediaelement,.mejs-container-fullscreen video{width:100%;height:100%;}.mejs-clear{clear:both;}.mejs-background{position:absolute;top:0;left:0;}.mejs-mediaelement{position:absolute;top:0;left:0;width:100%;height:100%;}.mejs-poster{position:absolute;top:0;left:0;background-size:contain;background-position:50% 50%;background-repeat:no-repeat;}:root .mejs-poster img{display:none;}.mejs-poster img{border:0;padding:0;border:0;}.mejs-overlay{position:absolute;top:0;left:0;}.mejs-overlay-play{cursor:pointer;}.mejs-overlay-button{position:absolute;top:50%;left:50%;width:100px;height:100px;margin:-50px 0 0 -50px;background:url(bigplay.svg) no-repeat;}.no-svg .mejs-overlay-button{background-image:url(bigplay.png);}.mejs-overlay:hover .mejs-overlay-button{background-position:0 -100px;}.mejs-overlay-loading{position:absolute;top:50%;left:50%;width:80px;height:80px;margin:-40px 0 0 -40px;background:#333;background:url(background.png);background:rgba(0,0,0,0.9);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.9)),to(rgba(0,0,0,0.9)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-moz-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-o-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:-ms-linear-gradient(top,rgba(50,50,50,0.9),rgba(0,0,0,0.9));background:linear-gradient(rgba(50,50,50,0.9),rgba(0,0,0,0.9));}.mejs-overlay-loading span{display:block;width:80px;height:80px;background:transparent url(loading.gif) 50% 50% no-repeat;}.mejs-container .mejs-controls{position:absolute;list-style-type:none;margin:0;padding:0;bottom:0;left:0;background:url(background.png);background:rgba(0,0,0,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.7)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-moz-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-o-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-ms-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:linear-gradient(rgba(50,50,50,0.7),rgba(0,0,0,0.7));height:30px;width:100%;}.mejs-container .mejs-controls div{list-style-type:none;background-image:none;display:block;float:left;margin:0;padding:0;width:26px;height:26px;font-size:11px;line-height:11px;font-family:Helvetica,Arial;border:0;}.mejs-controls .mejs-button button{box-shadow:none!important;cursor:pointer;display:block;font-size:0;line-height:0;text-decoration:none;margin:7px 5px;padding:0;position:absolute;height:16px;width:16px;border:0;background:transparent url(controls.svg) no-repeat;}.no-svg .mejs-controls .mejs-button button{background-image:url(controls.png);}.mejs-controls .mejs-button button:focus{outline:none!important;}.mejs-container .mejs-controls .mejs-time{color:#fff;display:block;height:17px;width:auto;padding:8px 3px 0 3px;overflow:hidden;text-align:center;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}.mejs-container .mejs-controls .mejs-time span{color:#fff;font-size:11px;line-height:12px;display:block;float:left;margin:1px 2px 0 0;width:auto;}.mejs-controls .mejs-play button{background-position:0 0;}.mejs-controls .mejs-pause button{background-position:0 -16px;}.mejs-controls .mejs-stop button{background-position:-112px 0;}.mejs-controls div.mejs-time-rail{direction:ltr;width:200px;padding-top:5px;}.mejs-controls .mejs-time-rail span{display:block;position:absolute;width:180px;height:10px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;cursor:pointer;}.mejs-controls .mejs-time-rail .mejs-time-total{margin:5px;background:#333;background:rgba(50,50,50,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(30,30,30,0.8)),to(rgba(60,60,60,0.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-moz-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-o-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-ms-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:linear-gradient(rgba(30,30,30,0.8),rgba(60,60,60,0.8));}.mejs-controls .mejs-time-rail .mejs-time-buffering{width:100%;background-image:-o-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-webkit-gradient(linear,0 100%,100% 0,color-stop(0.25,rgba(255,255,255,0.15)),color-stop(0.25,transparent),color-stop(0.5,transparent),color-stop(0.5,rgba(255,255,255,0.15)),color-stop(0.75,rgba(255,255,255,0.15)),color-stop(0.75,transparent),to(transparent));background-image:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-moz-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:-ms-linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(-45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);-webkit-background-size:15px 15px;-moz-background-size:15px 15px;-o-background-size:15px 15px;background-size:15px 15px;-webkit-animation:buffering-stripes 2s linear infinite;-moz-animation:buffering-stripes 2s linear infinite;-ms-animation:buffering-stripes 2s linear infinite;-o-animation:buffering-stripes 2s linear infinite;animation:buffering-stripes 2s linear infinite;}@-webkit-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-moz-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-ms-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@-o-keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}@keyframes buffering-stripes{from{background-position:0 0;}to{background-position:30px 0;}}.mejs-controls .mejs-time-rail .mejs-time-loaded{background:#3caac8;background:rgba(60,170,200,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(44,124,145,0.8)),to(rgba(78,183,212,0.8)));background:-webkit-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-moz-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-o-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:-ms-linear-gradient(top,rgba(44,124,145,0.8),rgba(78,183,212,0.8));background:linear-gradient(rgba(44,124,145,0.8),rgba(78,183,212,0.8));width:0;}.mejs-controls .mejs-time-rail .mejs-time-current{background:#fff;background:rgba(255,255,255,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(255,255,255,0.9)),to(rgba(200,200,200,0.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-moz-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-o-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-ms-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:linear-gradient(rgba(255,255,255,0.9),rgba(200,200,200,0.8));width:0;}.mejs-controls .mejs-time-rail .mejs-time-handle{display:none;position:absolute;margin:0;width:10px;background:#fff;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;cursor:pointer;border:solid 2px #333;top:-2px;text-align:center;}.mejs-controls .mejs-time-rail .mejs-time-float{position:absolute;display:none;background:#eee;width:36px;height:17px;border:solid 1px #333;top:-26px;margin-left:-18px;text-align:center;color:#111;}.mejs-controls .mejs-time-rail .mejs-time-float-current{margin:2px;width:30px;display:block;text-align:center;left:0;}.mejs-controls .mejs-time-rail .mejs-time-float-corner{position:absolute;display:block;width:0;height:0;line-height:0;border:solid 5px #eee;border-color:#eee transparent transparent transparent;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:15px;left:13px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float{width:48px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-current{width:44px;}.mejs-long-video .mejs-controls .mejs-time-rail .mejs-time-float-corner{left:18px;}.mejs-controls .mejs-fullscreen-button button{background-position:-32px 0;}.mejs-controls .mejs-unfullscreen button{background-position:-32px -16px;}.mejs-controls .mejs-mute button{background-position:-16px -16px;}.mejs-controls .mejs-unmute button{background-position:-16px 0;}.mejs-controls .mejs-volume-button{position:relative;}.mejs-controls .mejs-volume-button .mejs-volume-slider{display:none;height:115px;width:25px;background:url(background.png);background:rgba(50,50,50,0.7);-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;top:-115px;left:0;z-index:1;position:absolute;margin:0;}.mejs-controls .mejs-volume-button:hover{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-total{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,0.5);margin:0;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current{position:absolute;left:11px;top:8px;width:2px;height:100px;background:#ddd;background:rgba(255,255,255,0.9);margin:0;}.mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-handle{position:absolute;left:4px;top:-3px;width:16px;height:6px;background:#ddd;background:rgba(255,255,255,0.9);cursor:N-resize;-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px;margin:0;}.mejs-controls div.mejs-horizontal-volume-slider{height:26px;width:60px;position:relative;}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#333;background:rgba(50,50,50,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(30,30,30,0.8)),to(rgba(60,60,60,0.8)));background:-webkit-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-moz-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-o-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:-ms-linear-gradient(top,rgba(30,30,30,0.8),rgba(60,60,60,0.8));background:linear-gradient(rgba(30,30,30,0.8),rgba(60,60,60,0.8));}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current{position:absolute;left:0;top:11px;width:50px;height:8px;margin:0;padding:0;font-size:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px;background:#fff;background:rgba(255,255,255,0.8);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(255,255,255,0.9)),to(rgba(200,200,200,0.8)));background:-webkit-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-moz-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-o-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:-ms-linear-gradient(top,rgba(255,255,255,0.9),rgba(200,200,200,0.8));background:linear-gradient(rgba(255,255,255,0.9),rgba(200,200,200,0.8));}.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-handle{display:none;}.mejs-controls .mejs-captions-button{position:relative;}.mejs-controls .mejs-captions-button button{background-position:-48px 0;}.mejs-controls .mejs-captions-button .mejs-captions-selector{visibility:hidden;position:absolute;bottom:26px;right:-51px;width:85px;height:100px;background:url(background.png);background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:10px 10px 0 10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li{margin:0 0 6px 0;padding:0;list-style-type:none!important;display:block;color:#fff;overflow:hidden;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;}.mejs-controls .mejs-captions-button .mejs-captions-selector ul li label{width:55px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px;}.mejs-controls .mejs-captions-button .mejs-captions-translations{font-size:10px;margin:0 0 5px 0;}.mejs-chapters{position:absolute;top:0;left:0;-xborder-right:solid 1px #fff;width:10000px;z-index:1;}.mejs-chapters .mejs-chapter{position:absolute;float:left;background:#222;background:rgba(0,0,0,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(50,50,50,0.7)),to(rgba(0,0,0,0.7)));background:-webkit-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-moz-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-o-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:-ms-linear-gradient(top,rgba(50,50,50,0.7),rgba(0,0,0,0.7));background:linear-gradient(rgba(50,50,50,0.7),rgba(0,0,0,0.7));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#323232,endColorstr=#000000);overflow:hidden;border:0;}.mejs-chapters .mejs-chapter .mejs-chapter-block{font-size:11px;color:#fff;padding:5px;display:block;border-right:solid 1px #333;border-bottom:solid 1px #333;cursor:pointer;}.mejs-chapters .mejs-chapter .mejs-chapter-block-last{border-right:none;}.mejs-chapters .mejs-chapter .mejs-chapter-block:hover{background:#666;background:rgba(102,102,102,0.7);background:-webkit-gradient(linear,0% 0,0% 100%,from(rgba(102,102,102,0.7)),to(rgba(50,50,50,0.6)));background:-webkit-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-moz-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-o-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:-ms-linear-gradient(top,rgba(102,102,102,0.7),rgba(50,50,50,0.6));background:linear-gradient(rgba(102,102,102,0.7),rgba(50,50,50,0.6));filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,startColorstr=#666666,endColorstr=#323232);}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-title{font-size:12px;font-weight:bold;display:block;white-space:nowrap;text-overflow:ellipsis;margin:0 0 3px 0;line-height:12px;}.mejs-chapters .mejs-chapter .mejs-chapter-block .ch-timespan{font-size:12px;line-height:12px;margin:3px 0 4px 0;display:block;white-space:nowrap;text-overflow:ellipsis;}.mejs-captions-layer{position:absolute;bottom:0;left:0;text-align:center;line-height:20px;font-size:16px;color:#fff;}.mejs-captions-layer a{color:#fff;text-decoration:underline;}.mejs-captions-layer[lang=ar]{font-size:20px;font-weight:normal;}.mejs-captions-position{position:absolute;width:100%;bottom:15px;left:0;}.mejs-captions-position-hover{bottom:35px;}.mejs-captions-text{padding:3px 5px;background:url(background.png);background:rgba(20,20,20,0.5);white-space:pre-wrap;}.me-cannotplay a{color:#fff;font-weight:bold;}.me-cannotplay span{padding:15px;display:block;}.mejs-controls .mejs-loop-off button{background-position:-64px -16px;}.mejs-controls .mejs-loop-on button{background-position:-64px 0;}.mejs-controls .mejs-backlight-off button{background-position:-80px -16px;}.mejs-controls .mejs-backlight-on button{background-position:-80px 0;}.mejs-controls .mejs-picturecontrols-button{background-position:-96px 0;}.mejs-contextmenu{position:absolute;width:150px;padding:10px;border-radius:4px;top:0;left:0;background:#fff;border:solid 1px #999;z-index:1001;}.mejs-contextmenu .mejs-contextmenu-separator{height:1px;font-size:0;margin:5px 6px;background:#333;}.mejs-contextmenu .mejs-contextmenu-item{font-family:Helvetica,Arial;font-size:12px;padding:4px 6px;cursor:pointer;color:#333;}.mejs-contextmenu .mejs-contextmenu-item:hover{background:#2C7C91;color:#fff;}.mejs-controls .mejs-sourcechooser-button{position:relative;}.mejs-controls .mejs-sourcechooser-button button{background-position:-128px 0;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector{visibility:hidden;position:absolute;bottom:26px;right:-10px;width:130px;height:100px;background:url(background.png);background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:10px;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li{margin:0 0 6px 0;padding:0;list-style-type:none!important;display:block;color:#fff;overflow:hidden;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;}.mejs-controls .mejs-sourcechooser-button .mejs-sourcechooser-selector ul li label{width:100px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:10px;}.mejs-postroll-layer{position:absolute;bottom:0;left:0;width:100%;height:100%;background:url(background.png);background:rgba(50,50,50,0.7);z-index:1000;overflow:hidden;}.mejs-postroll-layer-content{width:100%;height:100%;}.mejs-postroll-close{position:absolute;right:0;top:0;background:url(background.png);background:rgba(50,50,50,0.7);color:#fff;padding:4px;z-index:100;cursor:pointer;}div.mejs-speed-button{width:46px!important;position:relative;}.mejs-controls .mejs-button.mejs-speed-button button{background:transparent;width:36px;font-size:11px;line-height:normal;color:#fff;}.mejs-controls .mejs-speed-button .mejs-speed-selector{visibility:hidden;position:absolute;top:-100px;left:-10px;width:60px;height:100px;background:url(background.png);background:rgba(50,50,50,0.7);border:solid 1px transparent;padding:0;overflow:hidden;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.mejs-controls .mejs-speed-button:hover>.mejs-speed-selector{visibility:visible;}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label.mejs-speed-selected{color:rgba(33,248,248,1);}.mejs-controls .mejs-speed-button .mejs-speed-selector ul{margin:0;padding:0;display:block;list-style-type:none!important;overflow:hidden;}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li{margin:0 0 6px 0;padding:0 10px;list-style-type:none!important;display:block;color:#fff;overflow:hidden;}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li input{clear:both;float:left;margin:3px 3px 0 5px;display:none;}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li label{width:60px;float:left;padding:4px 0 0 0;line-height:15px;font-family:helvetica,arial;font-size:11.5px;color:white;margin-left:5px;cursor:pointer;}.mejs-controls .mejs-speed-button .mejs-speed-selector ul li:hover{background-color:#c8c8c8!important;background-color:rgba(255,255,255,.4)!important;}PK�%"]C��B6B6!sudesign_audio/lib/bigplay.fw.pngnu&1i��PNG


IHDRd�<D�sBIT|d�	pHYs
�
���
ZtEXtSoftwareAdobe Fireworks CS6輲�tEXtCreation Time11/19/10-s�1�prVWx���m�0DIO��IW�G�߬�e:@�]�Aݴ�Dʢ����ؐ,�E�_�r��<��4��(�B�����,to&̀�P�k������N��N���)V�qZ�1����7p�]���Uh����z�z���l�|���"
��K��i;���5���@�zө�N�t0Y�DS4�_�ۓ~*�m�_�aG�{�h�%Տ�/΋�v���;i��l_<%�R�Ήߥ?L_w�w�������SϐĦv��U�����?g��!��j��=�E��{!֫��Z�/��6I؋������@S�}Z��-�T�}�'D/&�[J_�~S{�6Z�u�w/�@'V#��>���/W}��T�B!�B9~hB!�B!�B!��"�r�7y�糭��A��u�HmkBF���)�3�O�mkTSx��}�sG�7v�[���ه}aķߓ����/_Ar��2�N�kY���2��Y�G�U�V�m5���eV^��}�S��ճ^��j0{�;��b�No�������p8��Ý�3�૟��+�8�����?z���UĚI�I4��.��45��Y����U���l���j�m�ƋF�1i��_��׳��#8r���#���^6�g����'Clr��Zކ'�&��>��mA������tR�C���j���O��9
�vh�wJ'uZ�������w/��p�:�Oy�}~�#�_l�S�S9��	���a�b3��V�����+W3#d����Vc�~��'��5���pd�I�؊�����l��p���
�}hL�������H���`3�96�k��9<π�sxbO<�w��]��~_��'�Z0����	wo�����Z�t�3�`BÄ�����p�M����a�@���>_!�F@ڢ�x�	@@�a�;�����.���q�hI7����y,���Ma�n5z��#�WJ�R���_�L���]/F9���њ5��sу9.Zz���c3�n�R��&t^o�T8"��Cɽ�����oKQj�X�*�s�m��];N�Jq����i:N
8BG(Xi���z�����jL�ES�ap��rKs��LoAhؠ�ך�#I��ph�áq84��YI�����*��%e���6�h���qQ|�S��_�H�Ӣ��+�/�%&w�s���[�+5�\�ˡ�9T>���s�î��;l��F�if `}Sf�}�+��&�1��p0zM!��Y��"�zpt���	�h̡�G"@��I;���֨��h�Q�k�ij$���#Ći˗�X�h���%b�N��x�uE���"��q�o��Y`�3���)�)zA���z���`(��Zi\�|����[}�T��<c'�9����in��j�����A�h��
�rs�ݘ@���|���`.�lc��H
�.歑k�[��'掌�'�K�/�;��.�]���?2lܰ���tH�Ya[�w�f�ٌH���ԄC5�m��,��	1a��r��^Ү��1�5�!�wEX��Ww2ᘩ�Ռ-wh$���{�*[b�J��[4�ξ������0�l��ҹ�!�*�3�2�`�/~k�L8�d�Ƶ����s�8�aobaݑ_���\�j���:�_a(0��@�c�?�SeF	���>iz30�ɔNk���0$9�Ur��\.�$��k�Ď$S {E��EhQE�T#j���]�IK��O@=��P�`�E��)�8��C�8�r�)%�yH��+:~D�~��7�Fc\���k�%$���pn�8�s����،'x���}���W�t��C��$J�I9'JK�o��>��Z�4��kI0�Ya��YO.�)��J��0㫶��G�m#�X01��mx���`�|�������>�b�B�ՠԊ6Q�.R5��v�
�
,0e|a�/o���Gkҷ���sbz'�n�'��z��^��.��^��q~]�����N�EӤ�	=�NL��#�4g%2���,�`E7����!��>��M+1��<� �f�FK�j$��=(a.1����_j(&i�{F��4M+f�`-ωpC�G�L����m�M����ɂdMb�{���96��:G"�
���&j�>e�.�)��� �l�ى��[��w����6��F�*��+���`���T�V��UG"ms$$�(Vmq���ra��� �kbp$���݇�?��O�2�SP�O3�l�㐖�TFҏ+�.KSg�0\�
��������l�d��cl�q�@�f�N�M/
��\^��Ni��k�`�1��B�Ne�;��ZX�*gQ�An�eC�Pgs҈GOh���_[��4�8k��e����2��R>t� �a�e��S.�3�]����h�Go(��9h)�]���g8y��N�`��;jX���XQ��H�/
`�a`����T
���[K^��S���R�s�H]��7��|J����x��C㉰C�G7e�~�&�R�M~3L�y���e�}�`J��'��G°,�^n~
L�2LGq����=��$�~1`�l��|�4f�ܘ��8 �IϞ����
��F��b^$@){����3(�؉��qM!%��fY���Gr�T3���{l��QZYf�v�ؗ�A��fs�IeZ7.w�i�2c}~�WA� �ܯh:c{���2�p�P	3��e6���X�PUy�~j2�ϛ�U�U@��"!#��O��T�¶-J?����x)_�^S��cO#Y=�e>y�z¤�D�-�I9�I�"�v�h�|�J,GPd�V����sS��t�X�LK
���27*�D�VS�7����Ũ�$�(�Xh'HR��A���#����R�l
�X6�F�VY*�e�q}�0�箔
d3��-ٰ��WE��������E\���p�M�op�	��;O�Lw�?�ح*�[��i��jO*�kW��5�ܣ���E[�f:Jɲ�n��}��_��N��֧h�(*IO�9<ڑ�H�QW���E-��j\��
wrY�D.gdë�<,UF`�/mh�u�9l��+p��V�r��R�)�tL/���;[xD���=��wx:��\�^�N��}�:�լSt���_t�G*9[xd�Gr�#�j/{���yF�(�¼�Px��L���LZ=��/0���Ut����;������W�t�+V����x�
��c���%�H�6A7�Hw_�n�
�F0�^���'@������q�y5�� �#A�4�Nch�B�G���938g9�8a5a� �l\��E#nZ�<H��i�-G@�Я	����@��w)l��,?���D.c5e��ln~
�`y�T���g�/G��S-���Ѻdn�
��SK��-ؿ�"N��&�
D�0���8�����#Z̉�D[�h�vE�o$��CA��3�*�X��	'iR�t	�~-Hڢ��Y>�4��y��Au�r�qr�jr-A���S�#���F���#�?�Y�tcN�qM�4�ϔ�9��x�����#ڄmRm_��O�fN��̎,;�[��SN���`2n�4��6Q��ꦹ)����*�/��LD�q�f`;mW��-_�:�أ�xͭFܺNwN}z+�'�{�OX�P��8��PNӍӣ���|�ң�`�
�|4L��'��K�\J��\���{��{�zT�Ԣ������^�X��]��b��-/xM(y����!�|�e���Q ����ȝ���?��x8�C{3�p�T�� �c�^P�O��i�>�`�"���0&����s]7�a��g��71��o4��Jc�
Dn� �BI����ԃa~�W��b♁Q�.n��0/�VfW�V�����L4�I;7��cI��Q�;�;�]K�F���\$=}��z]7�a��S4@A�W!�̟eCv���x
�僉z��5����]ʏ�D.*=�8�J+��7����d�$b�E�8��S_�YrC|09�����
3���í~��G+yH��^����R`NjU��Z5D��+���K#ͥL}"#��ՏKt!�������n��՞��8� Y`E�Cw�vn�/^xW'����c9�a�a�\�8(Uk��|xa4]�|�Ƌ�����[��k�+�vڟ�v;���	q��F�6m����i�aB���L�x��l��t����~�ѵۘR�9zf�5��R|T����Jxm�٬p�}��#z_�A�-����U#��a���4���=�=�����y1��CK@gF�/�#�5��z7�g���Jq�k8ҙ�
g�LE��Ĺ�'��~X8;ͩz��QvM��kv�U�B�*O�5�,x���y��$��"����gWx��_��,<_�C����x�ЀRUR�����b�_�=a�|O�]x��Ϛ�QA~�Dž3�(s�L�%E�ҫ�r�D��:�x⪯��
Α{���)�&	����Na�S�}�S�-L���}j��v˞�p�re�*I�ԋ�+O�`�+ޝ\��=o����'^�'Pb�>�ŵw�i�B{?'ZD�4~��y�����6q滅�^y7�R������CT�P�ᝠ�	��5�.-ׯ��oiĿ�}E�v��^q����U��$�-$��BBwxee-�k�|��Y��t��s-�u�s�uŵ��%�KhU����е�.����Khq>e%5�W+k�]����n-�k�]�l����p������-��ZB�����^cn��ZF�2��e�_��ZF�2�b��r��y�tހtj�\K�Z:gҹ�����;VK�[ ��̻ZB��%tΝ�H�/+�ηA:יw�t�������d���6H�:�е�6��u�]-�o�̮3�j�]�l���ɼ�%�m��u�]-�k	m"���̻ZF�]g��2���63�_F�]-�o�t�3�j�\K�\:��,�=�,F�����Y��aC{�Z���kU�o��tuU^u�\���\�Ċ,(�[�c�\M_楢Wᶔ��$��ǂ��/Ƽ��Ҹo��{}��[s߿5��1�=�W�;�%�Mf��?z4W�Ŷ�z���U�qӖh��V[�lK�a.O�m��+�ȟ����^-�k]��%d4S�v-����<�J��
��W�{3�^�=��/=�Y9��7Ob�p�3�Lvaq29����M�31I�)y|�A3k�*r�Zک3E�rb�h�.�7���|�>&�_S/$����e���i�H����{Bz�'Y�������e�{dz���c8���^|������Sz�u/�^��P���?dχ���;ݡ�o�R�wE�	�.��oc��8��Q4����\�)��lD�$#X|8yYeg
Jteg�בe�"��x�1��o[�9���ս�$�@u�k	y�5c���3�"W!?���
��H"���$w���+�]�M�x�j󥵄(#�C�|�&�=�F2C+iG�i�6A;$d�bXr�j�- �&���=��Һ�U7�+w��L�Ks�f�O��lg�`P2Z��e��e�{��;�^K�l�lR\�����'����c��wzX8�.w�8b�+����{?Y�>�ʼ��ﴨ�����/�/�����H�3��#^��ze��=*A�ꎏK�0��}	�����rD�
�}��Sq̟P�������ۣR,��tOBB�����>}c�)Xb��HR�f=�{��o���o���4}E�h\��m�\�-�������5���z
����n�6�!t>Q��m��ۼ[�me����t'a��qI6��^��~�:?��t^��,��ߋ?fsm��:�|����{?��km����>�H1ﭢM����2�׿u��>�pm�pm�>�^��ri�zÑ�1Y!>EBG4�6�L�D�\�U3��!hf��*'�|��pV�l��k���ь0j��M�3�f��/���*��L�;�>��cR�r��	�9�s3���S�Hq��;j�)�N�sib���j��ob�ͣ������`��6���,A	�h����g9��O�E�(�����Du�7A���9%N�|{�Q��ؔt��٣��u��Ѽ�7���t�>�g�υ�E۽�h���&p������&�4/��=�zf ���n�{_|����V<;��ޑ-?���Y��У&i��Kx#TDtK�l�S<�Ť+B@$$]?3�>��)Yj�2Z�l��V��c:c0g�]�=�&ZH�ٯ���g>�%Q�Ŀ,�vqf���2�	=���\��G	�Q���.�'�t@��#|J�0&��'i0��?�'�z~���}&1�2'���?B2/�����z�x-y'B9[�	���_���`C	f1e��0V�
I��ɗ�,��w����&�`q�����s��m��]镦��Z�����7Yݭ�מ�#����a.,��xU¼�ݨ�W��	\��y�J�/�L�)E�x�VB�0���Ҭ���q�o���9�P�	?���Q/+eoĿ��HU߯_�@/�	}O��밬u�I�@���\�AW���{�i�g���MZo+?�4�M�s��R�mD<��	�
�)�O@];!��6�f��^�q@g����g�Q��+?���ݽ����P�
O��yL("wm:���JC9S{�o&R+cLj
�rEU�!�Wv�7�u�a:wV�~�5ᛨ��jAuW�,N�A�O�����rX��6�a��j)\K�?�����&�mI�?ʯɪ�L�֊���4��##yL
���~��y���rO��׾ϑ�o����О�&��$O?k��~�ڀ���r\ޑ��Ѷ�"��e�H3&D��f��C�J$��S:w33Q&��#���e�Y��I�߾�f��f>�aIV�
sR1i�	�l��i���)�ţ�H��o�zL�6�0��MD$lhR��p΄k˛�M����m��ce�����w��1l�m��o�V?P��e��m����h���M�ux��*��G4C����+��6A���n�"�	�	e��fæU�]��?Ш~���D����b���h�bۿ��8c4!�fJ�=��M芔��d#i�x�+����,�Lۯ��tճ���� �G} ��9���>�t��9����߬��ƭnF�oh��E�fA�;�=gs{z��3뜶.q�ۡU���ʅ���+6���tJ�Ǐ���9�f��OW���y]�����]8'vf�b}��9�����}yM���N�;�ih�{�t�9:�.��Cwa�0�t@�5��tˡ�U��C\��d\�-����mNp)�C0�%�b��[��l��ny	.���[n�K��p)��$ĥ�9�.ٖ�K�qɶ�ϤGZ���_���n�#\�-�����a�n
Ƹd[v��L#\�� s�(�%�����m�NnS�N�Y������:
���J��?���CX�����!H76���U��mm�i��0�3�((�PP8��u�~y��7O�����up��>�3��.�<���o��<쒔<F��?�}��3\���ORu������Q�_�q�O[��G��)W�m2	P����T20;�йGm8i_X�Ə���5x�ΛL��7��}h�)h��do�[i���66�{JQ��ɿ�U���zI��)��x�_z�S8�Ξ�y><���u~D�>���4����D��9<s�-���o�y���my࿜����˫pF�)_1�r��;x>��`F+0َ������k�?���w�}H��W��l��:�svZ��vZ۴��M[�OW�����f�']��w ��Nď��9������Mmκ{���6d�n5��ht�
O�/0�v�G;G�	l3���	�܀k��C�:t�.������`���s�}��O{��Gc�PDI~�G�5�|1;<$���t��5�>��s�f�.6����=�{�f����I���q?�!��JxI\��c�Κ�ٸ���݅�8��=��v�����-Ȼ�C�H�cs����pg�������6��K�˽�����|0w~��au���/i"̛ijV����ut�c�u��V�N�Ӏi��	���j�D��c��_[=2\[�_��h�}��I8kq��u�[?�����1>����	+�i�x��043���<\�F������vO�IrJ�R�W���r�O,��(�g�W�V�joˌ����˚^4�Y�W�Ͻ������x�I3½c�^�F�v�/�9=��^=Y��A����ަ��A�–8�+��{;�ގ��1�muA���i��F����n+}Oc�59~<���:����G�^���9Q3��ۡ��b�s�=�
�&cQ���s�c�9�����d�����λR��}��m\��āܛ�6�۰�z�;�A;ׂ��n���C#M��Ẅl�^�g�v��M���Y?9�N�����8�76�$HB��5_i�%�q}ь�tY���J3�z,͸M�3�[�4pA\�c^T�L$5�6Y�Ǿ˛�bh�s�V���J3a�)6^�L���*�I�f���,}���F� <PZI�(tBь��(v�[J��M&�VX3	bخnf$54�0}An�r{~l@���L��`�7nC;&�H�DM�ʼn��fp�E�S��Tj&��q2B�A3]�T��H�$Mߏ&��*�7�ؗƷ�4C�p��f<��%^5���aMcI�J�Uو'5���B�ae3���	s!���I���v!�be3���FЅ<�*[�DM>�/��^ي$ir�r!��f$I���!+��DM.v/d�\ٌ$kr%�6#TDe3���URڌPX��H�&W�i3B}V6#ɚ�T)]���'�g$�,ÓFd4k$�lA���5C4{\[��?�!�q[C�����	�зe_Y�I�q�(m���C���Mu��Ȗ��6}�e������€y�"O�`�q�2�����#�� �Ձ��#��9��n��4�8fal�'e��� `NZkmI�G�W�%bnBHB"B:�L��4��x�OE��y%k�ԁ�Ķƞ��c��Sc����w�Tb����V���c��&���5=�Q���� kh*[wE�1(J?v���y��?4D^�9�Ʈ�����؉�(m�ر��?4�,N�1wse�_+T�V����ȴ����\��i�D���
��Z�N�+�kq;��\��ieh�Z�N�+r&S�v�_�y��c�A+�΍;��0j"C��_VN�Ma��%M��`�h�vn�Xjو��f�NGc�䛖�_���>ک����f���3gF;�/��S��Q�v;�������ÒB;���O�X���3�+	;�����ʲ�eG7W������N��-�������AsPd���D�I$�%@c�0��W�E��+�%xe>�d��D�̇���尞���տc4z��W"��"X6����B�
9l��d����u������[���A{;B���S�F���'4�M,�P�W�
>�P&{��O�Pf��MaY�˳`�f����)9s'A�����"�e��܁���2yj���_��5w.e��N,����_n~{6;iS��.�=Q�朴O�?]�vO(�b{�kyM�d]rSg�مuva�]Xg�>�#6����'niz�%��R��0��+��EX\�v��'�,l8io�0&�x�>�<�4��s&h䉶FS&�����Mn�F����5y�E�x~1�&�[o� ��^W��ph[�\��1����-�.��� ���7��,1��;��C�u�L]$S���[������l���ڌ�EE28M��H����"�k[$�Һ���0�:f\'�Z�L�}�䏼GJ�3��1�ъ�2�*�ak��ak*�ab^��Ι)!_�N�&�(h&f]��d]�S�&��Jf��4�'���017����*SLL:�ҕ�0��hRb���ab��:yF�gb"��5�GW9��|劕3L佚�e�Jg���4�%���0���0h�g��4��ԗϬ�~&���$�Z@#�2�͢U*h�f�E��Ј�oR(�-�Ie��<�ZE���jYXQFC�:r�����a���B����W��jЯ�4몥1~��bc`*�i�	UQNc�8�zsF�Ԙ,}E��@��Ԙ�}Q���W՘�e}Y͚�j,Ԗ���B�jKkl��������ט�<��L[]ca��k,,Tm}��Ŭ�����%6�������X8\�*P[fc�j�l,��B#Oݠ҆��Ԇ	%�*�R%o�j�m�P�m�@ed��M�ѕ�0��Mj�t�6L(����V<B�'�Ҕ�0���XsÄ�`�]�
)��<�������e#�7w��n��]LJ�t�7lM�7lM�7lM�7L�/4P��&��D,k�ol�c9P-�5�߰5�5U�TX�Z�(�Gh�<�&���jpتE8lMU8�-�1�E[�cA&m��hq,�X[�c1���8�\W�c!u��8BP[�c!���8JBW�c���9:T[�c��u%966��&�����X�`ڪ�P[�ca�j�r,,f]e���-ͱp(��9��8����V�X8����T[�c� ��XΩ�:ujc��X�6֩�uj���8_���6>Q��(��O3�+t��DǼ���b�0mK-��,��*^��\��*t�ZJt
�^�F����t���Z��l��t�Ǔs���a��>�2.��/ڑ�6�k�A�צ����O�C{�}�lV���OV�I�>k4�w�=�zy�;��Na�;ֹ�w5
���pH����?h#��g�\����S�6�7�f�����d�eˇ�
��i�x�z�x��x�%�x��4j���D�f�f��
�)i�������H���`3�96�k��l�g��pxbO��g�.82���k���`��a�w��xA��+�Y&4�@��M��th*�6X��$ð�~�ŏ��7�����H�@�Ov�X|��u񤅌�FKʸ��x]��c�M�gm5z�w�*%Z)Bl�W�Y`Į��V�h͚���-=�T��c7�?�Ho:��7d*�Pԡ���Q�֎ҷ�(�i�����'w�8=*�IH'{�n\��8)��`��������jL�ES�ap��rKs��Lo)��9��5-G�����8�C�ph���,:�8�o�[Y�-)������@��hnpQ|>�)��#wZ�y� �� �D��u��x˺~�&�ˡr9T>���P���cn"�~��[`�
��0��d���o�c�l�o��xE3�C"F>�PH��O'
7|V�[����,"�9��Hh�5iG�p[�ucm1Jy��8Y G��#ĆiKy��1�xm:0A�X��S(t^}@�y�5xl��-���?�rX�����Ã�J�7�c��8Wk�q٢�%�o��S���:����f�p�HO#pS]Tk=L��x-�
�D��W��������W��(�B�;�� ����yk���Vf��r'掌�'�K�/�;��.�]��Q=�#��
۪!9M�$���eZ@p�h�͈D��OM8TܖKH�ҏ��-G�l�%�Z�?CY�;"��qW���
ppu'���^��r�F2*�箲%v�D�*�E#���ُ��Ko�_c�I+�)Ά��2>��+s^��R����H6Ya\;�:�>G�s�&��u��e�|����{���	�0��P��1�é2��VLo�4���dJ�5G�_l���*9if.��I�ȎõcbG��)�����"�����5�vG��.ᤥx����[h(xS��"���S�١D�h9ŀ�����(����;�o2*�Ƹc1�8KH�5����|qx�b�%�O,�L��콽sh�s�d��w$Q�M�9QZj}��7�Y�
�9T_K���z�D
�~�zraL9��Wjv�_���\<J(h�ǂ�I�o�ô���c؝�$�)�>�z��V���Ot��ѠԵ�lhm�`�)�S��xy#�=Z��%
<��;hv{<9�;�x�?os��{/S��D.r��v�آiRń�b'�vM�Z����ӌ{i�C��s`I�ns�_q���Ȧ��P~3T�%Q5�����0��P�/5��4�=��c���l���D���#{���	��6ͦ�@��d/W�4��&R3
 �s$l0Yu�D@(+�M�D}�],	RdM%A:��4�	?���
��-[lmF�b�@��̑�ֱ��@H�h�KYu$�6GB�b�'���(��G
B�&G��P��}(H�3��^�"�Bfy
�ifa�M3c�Ґ��@�q��ei�l�˽!�����;��Ps��x7.���Z#©����r��+��)mvQb��6�THߩ,}��5Y��B�,�!��l��lN��	
���b��K,�B�{Y�!|�a(c8��0,�C�B�Xf�?�B9C�lHk��|�b����2�9Jz�����D
�I=�����YJ�U�p�t���F��z��yN���L/����<e��)E�1G���<|C�:�����Q?~���p;4�;tS�nR/U1��7�4��_��З�t��x�Z~$������+�t�[K����LB�'�a�VnΧaKc�̍��^Q�e�`�Im��}���i1/��=qG����d�D�։8�����s�,���{C��#�C�����*����QZYf�v�ؗ�A��fs�IeZ7.w�i�2c}~�WA� �ܯxi4�W�ye*�Სf��lt/���H
����dܟ7�������kcD9�禍���
��kB*f�K�����W{��,�ȓo�&�'RlaM�IL���+D���(�Pb9�� ˴J<d�_�x���,����r`Zjh�����Q9%ʴ�Z��G�,.F��$�F7�B;A�j=���
ک�R�l
�X6�F�VY*�e�q}�0�箔
d3��-ٰ��WE��������E\���p�M�op�	��;O�L�_2�ڠ@oL�G��K�=�t�]q;��r�
,�/�mQHĚ�(%ˢ�!ϯ�ٗ~M:�Z����$=���hG�#UG]�by<�೪q�**��e����
���T�;�Y���Y�����pwa?�tL/���;[xd��u�� Q�.��H�#g�,�H.$X�eO�<�({�X��
�Sx�锑�	yM/���w�����3�x�7~����*�ŊC��!��_�cx�Y��d�!�&�f����P!҈�S6O��q���G�#������[�|��z�]z��L�G���938g9�8a5a� �l\��E#nZ�<H��i�-G@�Я	���L_���L�22��938g%��XM�%(��_zX��<a�t�ق��Q-�Tj��@�.���B��T���g�/G��-����:���,)q�g�/G��-����
���E���/���8�<c9�&��IM�%H�� i�&g�g�Ӭj�]6սˑk��5�ɵ��fN!���՟Ϗ��|~d9ҍ9��5�V�x?S��dN����_�hN�IM�|�n>m�9�2;�x�Lsl9N9�҃=ȸi��+�?�k���Ѓ�{��gǗ{H&�Ǹn����+myҖ/m�r�QP��V#n]
���>���=�',{��K�Dz(����Q��E>���a0�L>�C��F٥�	.�X�.�d��=�
s�=�
=*hjQBY�x�w/��q���x1k疌����o�x�K.�C6����:=ǣ@>gGÑ;aai&��p4���fᆩ�mA��
����=�r���+}D�`E���aL�9%��nr�8�ϴ�ob	�h�k�Ƙ����Aԅ��͟��� ��0nQ�.�3�Z]��g�a^H-�̮�m�j����Ùh�vn�ǒNݣ�w<w^��
�2�f�Hz�2S��nr�(�h���B��?���`����J-�k��-ѹ��O�\Tz�qx�Vpo4'Y3ȆIĆ�q6�b��`2r+=7��f�)�[��7��
V�8��A���:��z3�j2�V�ѹ�F�K��DF|q����B,yK55'��/�=M7qA��.�J��
��_��N8Vii�� r��0��qP��T����h�����
�۷���W��?]>n�����J��>��&�
���dρ'^��?x�\���%>x�ޥ���[�?w���?w�m�s��ҏ�֟;��ܱ#/��;�����*�]��k!�;����εt��}���εt�}J��~�Cۢ���е��v	���ZB����e��y	-Χ���je-�k�}�2ۭev-�k�maU�5���ZB���%tXK�ZB��@B�k���}S��ZF_���k]��ZF[�bY�:������A-�k�\K�L:�p��y�j	}$t�yWK�?��ιs	�ee���6H�:�εt�����̻ZB�	]g�����&�μ�e���u�]-�k�mcU9�w���
�μ�%t-�M$�yW��� ��̻ZF�2�f���ȼ���m��u�]-�k�K�6���_��"���ްt�<K>,ch/^�t�s��s��mߓ��ʫ.��߼�K�X��s�y5���˼T��`#ܖrЖ�C��Xp[�Ř�Y_�
z���|k�F�;�G���zG�D��,�!�G�檼��U��Z�j?n��s�jK�m�>��i�MP�{����=�ثet-�k���f�خe�b� ��Z	�X����o�u���'U���6+�]��I|f�b��.,N&�q���Iy&&�>%�9hf-QCE�TK;u��TN,-�Å����o��DŽ�k��6����b5?
	 =�QOH�$�S~�rӔ��{�x6���p��6�bUߋO����cJO�����q����pt�ov�;�-�Wj�Nc�h�?A��q�Mcl�G�:�F�\�@ⷛ�3�R�����d��//�l�LA����L�:��[d�{�8��#�m��=�?����Dc���z-!o�fܠz qF]�*�1��Va�I$����������OUm����eDwH㓏��g�H��ch�!M�:"
��&hc��l_K�|A����d�м�4RZ7��x�.x����~i�@����)���JF�{�������~O�zG��a)��헍�B��׼|#_��$�T�yL����N���.G~���a�'c#���W��~��^��������/�wFyċP�,{�G%(T��q)&w�/�15�S�Ȱ���Y�t*���ו=��4�w{T�E���IH��`�B:�اo?Kc2I��}PìG�3���:�m�����|���v�M�+�%���2xW��s3_O�����;��'��z�m�q�w븭��2w��$��6.��{?���{��OW�;������� �{��l�M�1Zg�r���v�Rr���w߇�)�U�	W�~Yf����]����-���-��g���Q.
_o8r=&+ħH�����(�k�jR6�,S^�D��w�*��v}
2�7�F
�9��|F��¬7ڣ�\s]�[e�i~��7L
T�5�3gxn�2�xJ)PqG�;�٩|��!M��YM\��M��y����,[�B؆���%(�
\9�,G��i��h4�c�At=���&��U6��i�o/3
����3{4��n�=���&0��n��G���жh������6��>R���E��'[����`ޭ�Bu����ъg���;���a�1˴�z�$
�x	o�ꏈni�mu�@��tE����b�ا8%K�QFK@�-�ӊ�~Lg欲롸���D�;��p�"��g�$������.�lQ�T�9�'�����(�=ʑ�إ�c����p�O��d��$
�4�G�]ϯ���$�_�5z�'@H�^�X�%��O(g+8�A�y���� l(�,����!��!�rC�S��\����,�s��p��-��+�Ҕ�_�\�w�Q�&�����S}D�}<̅��J�����j_7���Q �]�e�	:����JhFsvW��wS�/��Q�1<��>�G��<�e���������H��O�"��{����2�(����?�*��x�1���r:��I�m�G��	q�C�C�����<Һ#���#��	�k'���&��_�kY?�p��,3j�Pz�G�V��7=�u�Wʹ��=�	E�M��7]i(gj���Dje�I�!S���5D�ʮ�f�ޠ�7L���z�/�&|�_-��*���;��	���^Q���9��]-�k)�Ǔ±��D��")�g@�5Y�c�i�Zq�2���x�c$"�I!���: 5o�~V����9��{C8BR�Sޤq���g�U�OX�;�Y��;�8ڶV�����iƄ���B"Q}H�O�Du�J�nf&ʤ�D^���l>���:�����l���'>",ɪZaN*&�=�����1�T��!�x4���m\�i�f�����
M�ΙpmyS�I66^u��m4z��r�R�77�����B�M���X�l�>��R�B�m�"��ɳ��>P%����f��ߐte@��&�3��MP�>a?��]���lشJ�K6�կ�ݞ��}��V�ѼUb
Xl�W�g�&��Lɳ�y�	]��v@�lD#�oap�ݛ����i�Y����z����}�骵sxy5��Y'��[݌���\ۋ�m4��w
{����'�+g�9m]�j�C����[��Wl���^���s\�N�[����	a�fv�����]8'vf�b}��9�����}yM���N�;�ih�{�t�9:�.��Cwa�0�t@�5��tˡ�U��C\��d\�-����mNp)�C0�%�b��[��l��ny	.���[n�K��p)��$ĥ�9�.ٖ�K�qɶ�ϤGZ���_���n�#\�-�����a�n
Ƹd[v��L#\�� s�(�%�����m�NnS�N�Y������:
���J��?���CX�����!H76���U��mm�i��0�3�((�PP8��u�~y��7O�����up��>�3��.�<���o��<쒔<�3������|u�'���?��vw�(j�/��uا���#ld����6��N�Ik*��w�܃�6��/,�I���SZ��V�M�s��t�>4�4�{�1�M4��_	��=�H�|�_ɒ�@g�$����	�/=�)���fO��6����:?"z��~@W��m"F����E���m�w���_Ύ��OW���U8�Ք�_9�
�<Tl0��i�}��u�gb튵ǟ�x�;�>����sd6�i��9;-Rr;�m��ަ��ѧ������i�ӓ.��;{Z'��l�Xvvt�wtܦ6gݽc
]u2W��d4��|���e-�����yB%7��ӟ�H�B�O����{p�c�2w�O<;��!s�}V�O{x��=�<���*xI�D�����9���h�V�K;�h!�b�;?��C��l������4�-��Wd`�k�Rv���,�K�t?ۡrs�\+7��R����.3S�?�N͡�Ӆ���61�%��׀Pj�=�;?���0�Z�Ǘ�Y�M�Y�}bt�::B�n���ߥ��Ĺ-�a�"PZ��h�s,�d�Gd���+���1�����7=[����>��o��h\�SaOX��r����G�C{��q����m�N[�.>o����'��-�`�8
g@�]p��ɀ�z:v��Xu��L�z�=����EӉ�tl�t�ܫYo�t�yR���`�4�;1�%l�XK�֘ӓ�����;T?�>�m�nD.l�����]��#�툽-��VTI�|�V�o���җ�0��Q�dz�.�ø�{~~�E_]5�0p�nzϰz�(���ߞ^q��(
�Y�9ܱ��l��s2|��`��v�]���tW�6��m�@�M~��m�r��۝ˠ�kAsLn7�A⡑&�GT�p]B�n�۳g�H�&s�Y�����T'�Ԍt}��cț	�N$�Wݚ�4�渾h�o�,L\�f��
=�fܦ���-T������>��1/�n&��q�,�c���x1��9p��fb��0�/l&I�~��$R3^��>L�t��	(�$N:�h�kI�խ�V�&i+��1lW73��	�~�� ���=?6��Xj&lz0��7��rO�f�����OD3���lf*5��8�ܠ�.K�y�w�f����	\���@�K��u�!c8�x3\���m��Ͱ&��$m%ݪlē�p!���I�䄹��Vٌ$krn��y��I�d#�B^��H�&��X�lE�4�h��Oe3���]ڌ���H�&��P�lF�5�H�*��I��*)mF(��f$Y�+ȴ�>+��dM���.n���3�q���I#2��5E����?�!�=�-�d��¸��!���?�`�I�۲������8n���I��ӌ@�:�xd��?t����V���?�Na�<[�'k�r�8b��X�k^���@���V7��?
�^�0�Փ���f0'��������17!$!!�X�T�
Y�G	<��"�ܼ���vb[cO�1�1mly��?vA��^*���`Y�C+Q�DZgk���?���(E��A��?4����"k���Ib�<���	"/�qcWN��L��I�6c�X���I�ؘ����/�*�+Q��cdZ�XJ���B�\��i�ar-n���͵���WS���2�s-n��9��q;�/˼�c�1Ϡ��F�ƀ��W�A5��k�/+�ܦ������D�O4j;�L,��lDDn3��	
D���h�MK�/�Wy�Կb��t�S���3����
�|x٩�(����W\�\����a����Wܧ\,��ř˕���W\�\eYz����+PK�?�Wi��ߖ�~����f� �9(��WB"�$����1gY�+�"s�����2L��W"i�C[�rX�\���_�1�=Y�+Os,J��\!��6�N��W��R���ar�-�堽�!��)s�F����&�l(�+��l(�=��l(3OƦ����Y0s�\�ʔ��� �e���e���2]i�@�_�<5w�d��L�;���W'��]]Y�/7�=����)�e��(osNڧ۟�f�'�\��G�G{Y��I�>��W\��hʌr�Ϲ�5���r��s��]��\̺��N[����:m�N[�}�-Fl0�i�O�Ҽ�'J��%W�a��WH���|���೰�T�Ӂ'�D���=p5��y^'ض�'�M��Vhޖ7�����S����X��o�)D���0J{]�¡m)�sEK�|K�+7�4�?��_2[��mt]n�n��AYf���͍<�;��˩uaO]�S[ȵ�\[����l�-��B�E�=8����������k[���Z���0��f\۳ZqO�}҄��GJy3��1�ъ>�*�ak��ak*�ab.����)aj�Nf�&�(Qs&f3]��j]�ә&���|���4����01����*�-LLh:�ҕ�0�qiR���abj�:�G�c"�5�GW�����>L�ꚤ���}���5����0����]h
~��4�W՗����'���ğZ�#�2��U�~�f�������oRܢ-�Ie��ܟZ����jYXQ�C�:r����a��������W��jЯ�?�1~�� c`**��	UQd�8� sF��,}��@����}!���W��e})Кj�,Ԗ��B�jˁl���������<ڂ L[da�J�,,TmM��Ŭ�
���eA��.���Y8\�� P[d�jk�,��� #Oݠ:���<�	%�*�R%o�j�
��P�m�@ed��M�ѕ1��M�t5BL(���DX<B�'�Ҕ	1���X'Ą�`��]�i��<�J!��R!�s|#����j���]Lʱt�BlM�BlM�BlM�BL�/4P��!&��D,k*�l�c9P-�5��5
�5U
�TX�Z�(�Gh�<��!&����ت�ClM�C�-2�E[:dA&m��h��,�X[=d1���C�\W?d!u�DBP[Ad!��%DJBWCd���ED:T[Ed��ueD66�������Y�`�J"�P[Jda�jk�,,f]5���-'�p(��D�������VY8�ڒ"�T[Sd� �YΩ����9fuEw�uEu�d�5YgM�Y�u��9kr��HI�|�$L>QR%�&I��1]a�y-%6aږZX�Y�%�l����¢5�����jeQ��+�Yw�j��aq�0��l���(.�r?�8�����r�(����k��7�����y��W�9�-��֏�Oi�8�)�K>�����֏?�����֏�SZ��):�u�:�zҧ/S�?�/�xʀ>�mkBSx�]N��0������Qʫa�johl�U�&f��n�Ãs����fd�,>�Op��3]E�1�T	�яj�V��2ڃ��-����p�
�uy��Gp�odl`�d/�e>�v
9��]����A��ݩ�6�����ٞG�ÃT{1�H	�Q�l�H':�iу����ŏp�a'D�:�_�_�C��EymkBT���8�x�횉m�0]HI!)$����FR�?6�c<lHٱd��t���C"��+��RJ)��RJ�������kJ�߃��L��_SU��n7���s����s~�u�U�-U�yy9�c����/Ju�z?��i���>>>~�sm��+�v�u�Ց�νY�u�8����uN�?�WP>�1Js��WiV���_uK�E��ϸ�/r���ˆ_�gK�W]ױ���EY�cl��,[��T�YH�T�����������}x���L#}A� ���G��V�7���^�}>�iҞ��-���i��;}�LJ���X�&�T�P�3�T�#��ߨg���J�l e�'�=��?�͘o��n��a����|7��>��?ǐ�U�%�;�������/�m���N/��I���f�Qփ�z{��<�d��6�d�n�;�����Q��m�{{�5�$���iѦx��g<�$�"�^�%=��RJ)��S����t�e/�֔� ��a};k���_��y�?�9Ԛ�l�z��}m#��G�Kk!����k(�9�G��1�����z��,�Q�&�l�iV濊���#_�<��3�Ξm$�^9g
�{9&�w�&��:˙�u��f֚��R��:ֽL+mW���W^���z%�I���2���lo���Z�f?�k4�W���-�#��	?V/�c^��!�!{u̵ʴU���ٷ�A����Ge>G}�?����v✽��3��X~j����{�zT��A�O^��ʰ�>��?s�y��|����G)�P�</1�1~2�ў׆�R/�7��Ӿsm�sr��"�(����2��c�Ϲ;�~�u-��)}����<�U�1�g��:�a�p�b�5{��3�(���k�!m'mʞ���2��.�~[�)}G�κb��XE�L������p–�aԃ���7���7��Fy�0�@ߋL?󞕹��Khi�@=��RJ)��RJ)��RJ]M;�;����j7�]&SmkBT���U�x����i�`�Qqqqq�����!��	�C�O��Ml�S�$I�$I�$I�$I�$I�$I�q��O�9˵w���O�o]�s�s������,�Խu˲<^�0��t�c�}�av��=��7����_��{V9��z�}��ٿ�^��s��_���y~�?��}e�z���۶����������@��w��E՟�k�$I�$I�$I���@?
���=T���mkBT���`�x��ݻN�A��QA�x�E���W�K�XR��n�,��5�'�$VT��„��l��:'s&�X��|O��&$&��9����X����:��,���bY���`$8�����a�`��/o$f��K�bp5�f���3�	��`��M-Uw���<�-c�{<�����up:8.�\�e/��_�h�G%��5�{���y��'�Gׁ�	�%�CRÙ�A�<9$�{��e�2x���i[���+��L�ld�3OCKG�1˶a�����������l���MI�K�'nH
�A=�D�~=�oZ���׼?�Z������w�F#��<�x&ܕ�g�z找f��%�S=����tZi/HgBZ������ij�r}�#�T���
��Ae�A=�d��������L�A=��S}[ZZ�t6Ƞg��6-�
����W2d�3O�"�T����v:�LȠg��e��~���lg6��LȠg��G�Zz&|]\\��l���A�<ٯ�S�b�٠���z��~�J���}_/f�3O��?ծ�KΠg�T��V�
�{��a/Ƞg�ԑ*�
>���m5\^��\�j�ϙ�L��8�p��^�%�s���@�簝u�͋����9���%~?m�fº��En��J�3���<�y@�����?������͂u�͋\��_f������_f�\���?�Տ�����e�����߲����߲�q���q���q���q���q���	��-�p��Yq��Bm*������*\Y�|�mkBT����xx�흍�)��q ĉ8�D�^��>׻gI@��X�jjg�iЃ����`0��`0���?������ϟ|�:����s��e����Q��3|����ӧO|�:�2|�����.�}��;�7e�GF�����O��6���_�Q�v�������]T��]�^�ˮg�{>pj�z���k�u��o{�y���ye����?��{�-����x���/D:��3D��&򈼹e�^H�y�i#/OG�z��Ϫ��߯_��~�
:�sMe��#M��3Y�#=�2��Q�����Й���[\s=E��8�}E>�Gȩ�T�ڲ��T�g-��}�����Vf�������o�SVw�zV}�.�/�>�~�<Vrv�@>�!?�U���������1���<�#�����}��=�F[ ��~���QڋB�N�.�.+푹^ed��Lo+[\�-��k���
d�W���(}���6�q�$�#�?z�6��Bө�i���?�L���7�!�3�O_Q}Пu���o����[�=��tk�ȋ��M�����!'}/�Ƈd��r2��_�C���ﲨ�:������`0:8�����o�=��+8-�4}�۞�c�ĥX�dq�{bU�����q��©ή��m�!�ƶ�g*Ϊ�U\z��[��GA��=^�+ru�{��LV���	�U�?)�V>�ғ��)��x��|�Y�ҁ��gi��\�yi�^c�U���o��*=�����!����T���Y��?rf�g�����W��s�ʽV�n��*�V��X�#�=��F���ϫ��+[���F�~�yH�\L�~��[���O҇��h�5�ݵ����T����o��w�|Sf���ӟ�+���)���;���F���;:x
������)/�OS�y��U���o��2��e�)Ve3'w���gGg��=�J��^��`0��
ľ����u k�U,�Ks���ؑ5�nY�,��bXw{���w�&����3�Qה��N��Qev�	�]��Ʒ���gcH��˞��i����{���A�3���I�8��h��w��d��u�w���UI��W�q���8�����I�>�+���@��p��Qş���Gc�Z�����\ƪ����U���ߝ�]��/�:����3d�;ɫ:gB9�R�����|GW~����w�2��;�fz<AǏ�ߊg��_��l����y��������=����U��y3=� ��[�6_��3]U�_�����k�]���]�ײ�2��;��j���->��t|�+�i5���n����Οg�Z�Y|<�1NyŬ|E7�k�������?���z/k���>�<��=�Α}N����΅���>�u�Wy�d�ʬ���dz��`0*��\?W8�G������Y����:����Dg��c�g<��2+�������'�W��6��qn؟{�r�u�"w�<�Tk��.��\�r���n�O���>U쏘~c�#T?��+��y��{�Q��,�,^�qF/X�v8�.֩g��3}�ȸ�OP��~n%�hU�G4��(_��sn|W}Tg&x^c��,F�����ѭ���+�<��#+}/�Uw8B�Rh_�����|�33!m�r\7U9�m��({�ѝp���ve��w��[���x��G������]�߱?g;�,�n�ҽ�ow8�]���ו����b�����?��OV�=��Z�_�����#�ve�?��v��N_W�������r�YL���o;�����1�g�9pV^�G�~>�[_��v�NO�S��3��`0������Q����[����	veO\k^8֔��v<�Zbz����\��O�p���b�n$~�}���o�z�3�ј
mK���vU��]^�i�N���WA��#��x�딫���j��t��q��:���E=�
z%օ�q�)Cc��Y�E���q����yRG�-�+u(K\�h�P�'��*^ء��^���q�=m=y|K��vūe���\��rȊ�4���=���{W��1���;=ݷ��x��p�;o@>���Ș�T\Ԏ�+C��=*�ɫ|��G�JO�C��W]��x�1.��ﵠ9_E�б��
��V�q����)v�(��ʑ}��[G��w����Ǻ���{-�o��Sdו_˞��׃��2��;iT&�w*��w�����:�����g׭��S�O��s���j����%Z�[~_˯d�֮���+������w]�7��`0����]��k��I�u��+e�L]���ւ�oA^���;=GR��?��v쯱�;<��y�� o�$N�1紈=:ߥP�V��u��<�� <&����3K�yC��/�4��r�)i=��*/|Ύ^�]�Q�NН1q�G���w>ù{��<F�����V��r�2�n��lo�؍ا�|�m�o��'�qb��Ӌ��r�`e��ef����6
0�lz��sA�_������x7��췣*�U}��R�%�+���C�����_�	�ڟ~I\�Q��~�k�y��#_��jo~DyU���^���`5���p����k��o�?:��ˮ��C����w�������>?�Kv��:A���}E:���_�n+{�u��=����r����q͓�̳]>>��d�}+�����|L�����0���1��`0�l���e���g:��׺񶊝�`W�,3�O�?���]��\9�P����~�[��kO��W�i�Gc~�)��-<�w��.��3q�}��'v�u�w$V���n��v��(�r�����5��2���S;W���k�_�K�ϔ�8B/��h��E�ՠ�'�9�w?K;�x:�x�<��|@��c��Ͻ����V��y���c��@ۖ�Sw�8B��q���]��=��2�l�B�e6V}e��������R�(�������	V��e�ZT��4��ad��e2ޒ�+n�Y����B�����Tq��S����ߔ�<����[&�=�f��[|�����s�z�P�)G�����}{Zׅ�3���n7�j�p�W��wf�t��E�w��[ǽ�;�����`l?��`0��`0��`��{���~��������i`oL�y�>uo���i\q��K�|}����7��Svu9�G���쯿c¾#���>�,�jo��w{�Ն���ݲ�L��=�mW����2u_�����8د���jo�?���k��D���߱��m����w�>���#��}�����E:��OۡO;<���s��y����}�ڛ�k�}~����|�M���'8CT����o+�[W��������U����Q���r'����\��'�t�TY��w��z.D�=��W|��~q=_��y��M�����������Ǐk�t��bS=2�|�ұ�y�N�_}O��e��摽ۏ���tL�S6�q`C���jf��3�#��ܰ�?z�1���H�]�����\"�W���]����O;�2'@���@~tG�:�����{��u���7m1��Q]�PW�V�2�S���z]ϥz��s������3��]v�����xwҞ��:ڗ>�y��`���$j�?tU��mkBT����x���U�u�w�-I�HH��ZP^> ��DEK����F����R�-��� �������h�V!��Љ�0�fD@&L��#3P�ܽ�5{�9s�̝9w.{�x�;�����2&��EKGY:�ұ�����u��ujϗ�[,hJi	�_�t��n��[�K=,����>�|���1?|�]��[i�[`��A���L���~�R_K�X:��i-�S��ޖ�j2<�π��3��]y!m|��s69�_3�������[:��Y-�3����N7
��g�|�mځ��7E��[��?�͓M��s,}��pK#,}�4�}��j2<1��>��;���i>H��ɜw��=��:g�s
>�L�s-�g�|G#[@�������|/�w'��|p�{�����mg��?�;��	&���u�Y���]�t{�UWM_�x�>������|���[��ٳs߾}����A5���Pumm�555�ܹ�m۶�l����>��sW�?>��3�
�d��'�g�V̫,H�vğ}c�8O��%&�;{w�G������~z�'�|�}�]��﯃8�������Сw���쳟�7>�<��?��v�ݣ��y����v��3"��M_1y�i���ky��2��&�{�Y�8cƌ�[�l�<�p+�\Ix~�n���7n�x�}��wQ�=|>�X�}��Et1y��mc�}y�m��G�#�9�wx��>������3
_���Ǟ�ϑ�J�����ɋ�B��C��UWW���'�D��؋�$�d�9v�i%��o����n�����r�ݷo�/���F���"κ�Ϳ��f��߰�`ުU��\�hя��1_|���.�ڵ��ƍ�4gΜ�{���{��W��|��]�G�!��~��'�e��%K.�֭��"�[�/�_6��	�Ʒ
��Fދ��8k֬�;v�ܣ0����+�6m����_2`��$��\��+`C~���/�ۅ���)|Y#2>x�����[n�E�����n��	��7��"��3�|����YQQ�����z���E��BQ��(��t����X_��%{vYq�ʕ+�ٽ{w���ܻ�6��	��7����rľ���W]����1D��dm�q�]w]�&8c��1=�K��+<�4�(~�aڴi�m޼�A�K�����^}����ܻ��&H�<�;���I&Z��i}w|�F���Z��o�1
s��r��~L��ɜ�>�i�����3�K���9��:uj�źN���/z�$� 'H�<��D���8�4�����[o�k����Y����~��\�g���?���t������M_��w�}���.��#6�o��zb�k��g���tA���~���c��Y
�������8^��<d*~�%V���v��:?#�[d������~յǹ�/|��a$��π_�8>�<;f���~�	y��ڵk�m�ȁ��=������^n/�8{t�~���!>:�U�����ao�����d�ױ_p�_אh~�g�q�N�'*&���˗�d��~�y9/�W'������o+���	ه<�.:������r�=���0}�t_�J�
�{8|�*'/��w�����$&}�il�����=ۅwC���ܹ��1�r�{db�-�6���_�{�WdgX����R{�1�o��8Zb��mx�=�0�0�9)ާ�i���6�~'�������'��n&�H���=pC杣�i�ҥK�<쉽}o̘1��yϱe��r��d�5>`Ş={�a�7F�!/�l���m�"����e��w�w܁��;z�
7���J�V���&��i�]�l�Oŏ����%&cg|�D�u��0�t{��&�޷���C�F�Hx�I�&�؋���z,�]�lb�<@�a��_�_S�c����@�`'�����>�?���{�W�^��z��)�<�H�yɡ��߆g�Y�u߾���_~�Q�ȮW�\�m>C<���H���c���r����s�^�<�i�8��c�c/�9�ߏ<��w�S�L��y�t${�;7�i��b���� ����k�.��e�9rd�M,2�����\|��aÆUYݯc�TUU��nV��o�[�샟�}�>���K/ի8)2Q��9�����w�̛7O�;���E��;��c;���o��Yw����a�����I\�__߼y��}t��CL�@WT�C�+***�|�{�n���L�?����ȗ��o���WW���pr&#�{S��m �k����E������7Y��t�ߋ��Wd���L�8�s�;8���g�F���ޱ���3�6�Y�͂�F~��A�	�S�-|O��?��'�O?� ��R3�����������צM����I� {�ޱ��!;0m|��_�}�=��S�K.L�>�/�����y��/�=�<�e���z?������L�f�O�����N
G"�Ɋ������3%ځic���l�]���q�8j�(j�t��z�D}W$+�LPO��^��Gځic��"�����w�9��_�>u<�jj����[$+I'~�b���?���|�#ځ���|�ܓ�/���SS+>��~��j�'�$���^<�Y��&��ML)dp�{FyG�u�y�ˁJ=��<��c���o�b����|�|��׵l�G���F���B�Ǹg;Gd�p�
"&�(��	�عź����@:7HL�;J�?���x�d�8Ǒ�Nq�,��ئ�ob�t��)���t%�Gj���"1b��/>t>
�(:�=�/�oذ�>�;��a�ݑ��e��i��� ޅ�c/VWVV�}�Y��HӠ��
�6�q$��4�`��܏�u܏�^�Z�M�����׋="��Ѣ���z�G˶l�R,���еow/^�8ο)��G?�6`�Ԍ�ř)���x�̙3cm�"_q{�zJ��p��X���j��廗]vّf�Ɋ�#j��@
l��_��[��Ѷ91��)f�OV���}���>3ł?:��[�>�?\�R�+n�F�|��df��_�|?�����r��@�����O~�۽{����]~���ר�&;���݁��q�;vl����O�:U�ۋ��RSS#�?5o�E�6�|��Ѵ�j�ˋ�+s�{���j�������o���?�*��ϛR�B����R��z���?)��hݺu�*�OM|����%�,w��#-����[�m�6����)��}7u?������j��z1��<�@���k�m����s$��Wy��	>W���۟�^�k�F/��`G����j#��{�q76Q>�Q��=#���,�ǥ}�Q����<j�e%�~z��W�zD%�F�Q�T��\�:���H��RD+��9O/}�}������9�L�]�׸�"�l�����y.��t����6�X�eC��h�_�O���W�.ﺦ���W�{繃/�~�;�k����}Xfu���?������ԹJ�mrN����BK?�>ᮻ���݇��������,�7��6:��{�Z��+�pt��w�9/���h�������|en@�����O��F]{��w�8��'~�l/����_���o�U��>e�uȻ�
y���nu�K�9��,�%�����s}h������?_�݇m�*m|s�?�$�)��d�ßZ_��}�l�=�����W�>��*�d�怿1� s��u}�P#.��;r��z����k�+��֭[�_5��6�9�Β|��?�G�W�G>�����5S�}_��MP遢g�H�f�_��o�����(1M��q�M�|�ٯ��jTPx�P�>G�lz�g�M��}�_�lY����7G�Y��P����n�-���hE�/����S��;fR�}?%�'m|[���/JV�~��JT�>��iiꃸ��������q���J��/���@�?�����ၨ�ii�`���y���R���='͝;7�����m!��4�[�^��D���ɓ�f�E��;�9-���4��G3g��.�_��G��+��Ң9`i��
��i~�lذ����=(��J��(}�U����̯|-pG�ÿ�f�F��4=����kzT~��׮]7ߠ�9�i��J��f��񀖗�y��7��9`Ȃ>���?��ךp��q�;����z >���̂|͚5�T-��x���j�A���[�#G���;�<(xbeEE�w���
������wS�5�9�g@�t߉�:�=o�P���
��Z�bE�皤�o�ϖ��6���>I�X���������Mì_���'fA��S�w�A�p�9��=��3������{��dɒ%y�i�6�y�?[�4g�=CQ�Mޫ��&N7������3��%�-3�1M�|B�/�WUU��.�W�y�y�V�3J�<�oLv< 2�γ	ď�v�Y�w>?�4��-��Y'GO��U����	�*�����7��`S�3l�����d��#���r�i8��r%�9�~��qwq�Ν;w�Å�����}�x�U�������SG�O��!�|��������V�~�^�E���-%jS��ӫ�����}0�p��y�q1�V�1K�6�ߘ�<��T�ޝj}kjH�A`�Ef��_}����;����ȉ�v�zqIIɕ�Ǐ����s�-[��u��{�1>�i��9��s�J�Vs1��*�Ʒ
�7�1�_%&~�6y�[�x�2k"����/�OPo_�_}B����v��}�C�3M��I�Q�:g�6�m��1Ms*z�6�v��	�9f��X^^�͝��r%�)��w���Ծg_��ri������k�W%���KL
%����C_sN�i�H��Md�%�����}j��o��༃;g߱ĴQ�2m|�	Y�|m�2�R�	q�ۍ�?�7oޓ�.��*ԚQ��Lnty�O��Q���O�����9�0��'wt2�8��9�mV��6�팿,���:��X���>��O���;��9�l����6�I��oJ���t���`����#�0C>��0��GOD��w'���s�' g ��6�II��%:���rG^ v>�d���|�%�w���`�?�|B�i���{�.����Ʒ�k18{`/��#~ �0C>��?�}F�$�H����M;ן��oᯗ�6���-�ܲ�i��>WO�J�a�(����
�lr�Q�׏����7P�@�
(P�@�
(P�@�
(P�@�
(P�@�
(P�@�
(P�@�
(P�@�
(P�@�
(P�@C�_I��Q��
�mkBT����~x�흍��8FSHI!)$����FRHn��w��H�Y��x3��ꇤ����s�a�a�a�axI�����Ǐ��'U�{������o��_����ھg�W9�����������o'�GW
{>~����J��l�����o߾�����������)*/���N�\��ϱ�o��v�[iZ_ձa�JΝ�/:�����6�O�-���92b?�T����l�k�%?������_2����1�B��s��Y��5�>�:�>�c=1�����O�w��y�^�- �ڶ,��X��z��u��sM�#גU]�>H_���y�Y��v�!ۉ���_m�i�Ru�s�]�X�m�_g�)YY�)�m�]�y,���m� z�1��a�a�axE�ߓG�ק��o/�Y��\�k�6��x����j��gH���������|�y��u��.�������\��a�æ�M&�w����k�#�ϐ�$?�]�M�o��\��Ⱦ,�/��ڥ���Q�@��~6s?)}��,� l�����gX #�v�Q���g���B�����ٙ^��u�の�uh��m?�}{]��.~�}�v_��J;�x�o�gJ���Y]�޳�@��.�)��oqC����?}�>@�X���ߘ�'-����(�W�?���������������	�źv�Ɣ����O�ʙ�R����v�[K?[A}�?-�w����m�Ց�}<G�c�K���1}���u��x�LzަU��0�0�Pc[�<>�g\=��c��}�M�����ggg����	�DŽ���-B^��k_g?��F?���� ����v0||؎��=ǧH�P���g�s��/�hؑ�I
�t��~�{���n^�}���Z��yD������5���X���Wv��O)�"��c0��vY�����Z��|~�_%/�,��p\��ɹyΰ�Z�/���;/x����s��_��9?��P�ܯ5ݻ\�[��y|����č8�����g��ʱL{�?�0�0�_�k3���>��������z���_������\S��|<�)�b|�����7��a�a�axn.��t�a?l�^C��vk��ؽ#���~e���)��3<3^�����k�dl�c�&�jK+���o"e�<.�ʞ`���^(3z����u
���l�+6���v��<���ï�
�k7]�/l�c[`�O���n}���򚄫��G��뎱���zt��^v��2)?;Wm�r�5��o�c����Iz�?�����O�zx��{�&��!��e�z.����������"ѯ���
��1�����Gg��{+ҏ���l�w<�=}Gݽ��Fƨ�^�)�����zIp�G�����K��֜�{�{���e����G��12��ۭ��q���iumf��>�.���}�����~�a�?�0�0��[u���+�7�Svq�����֭�y΅�
�?ނ��}���X��w�Ŷ��v�?��ߩ�D��Zۓ�-q/�?߳�=��<��~����#������>���Fk���"q��z�r��Q�o	9��r�,��n�Y[;�o�:)@�-`ק-�7��({��߯�S����@�µ���K��9��֠�ɸ�>:�n�3��
_[�_*�mt�cm��C>�q��S���L���<�?�<n��ѯn!��>=���<�6�;��ǫ�s����a�a�a�{�xˌ�\�ފ��px�?0׋�#�5���z��я��c�]����x^��l�򼠕��(�f���:~����٣^l�i�n�59����W��~�\;�?v�n����6e�r�����UbS~v����^��UO7O(�|;+�S��G�4|?�f�����*?�r���W~�2�o�N��ٟ���S�9��~d�a�����և���mH�6��m�X�[��J����~�s.��y���m�4ٶO���|B��d���/�����b5��ɿ�y���U�?�0�0�0�0�0�0�0�.�P�~�*��1@G\⟿��K����rKX���s2�(ߥ�纎J���8���'>�X@▼�Q��Q�b���q��wx��b�)����_�K|���v� ��1��M�6ke�e-2Ǜ�5��9��?K^�E��~�9�ϱQﱮY��F�8��N?�~;:=J<�����-�t�ĒyNA���g��C��	\�N��X�K�s)'�^K�g\~��2}�6�}Գ����)��n]O��r�^��j�~�"��{p��29w�6��/�.�z-v�:�+����M{�W����JY��Z���굢`%��
�Ҥl9����ힶ�կ�#O�Uz+�U�?;��s���d�~v��N���D��7*.Y�+v:�ye;�8�}�~��|���+ÑޅN�9���}�{Bƞ#t���x��խs�Xɿk��S�V�/��uJ=o�G���<�ջL'����L��:�D]�6�j�f���gL��z�/�+ؽ[{����r��C�M�Y�q�~��[�{�y������y	c�zA������;��w���9��z�szW���H�����V�ax3���� �ף��mkBT�����x���[NSQ��bDD�F/��7�b�P/��8�p�8'��}��	��Mi�kŵ���R�ޮ�_�/�<5����u��c���U��qq���[�^J�z�F�j�r>&��8e�e����A�~yc�k�Ӗ���,���1+N�:�u2k��7R���}K,��z[\�upZ�}!ʹ v���'����'�xa��⡭='��}a*ƞ�@�<9l�����K�J��׊�]��
qi`O(l$�3O&$�1o�>��?�����t:VVV��ߖ�|����b�	�̓I�ӯ[�z�kޟ$��Տ���w�Z-��\���;E�	��=fψ�v�_�"�?_��f8T�Aa�A=�Ds:k{���v��C-�:нap6$�3O��(�
����g�z�ɰ����n��
�'��_Kg�/�F��� ��y2��C��v�{�
��'$�3OF���r����`�=!��yr�k���jm7�'$�3O*�P���C_/&�3O:�Pz��?}��@�<)*�P��,9��yRt�Za6���sA=�$F��t6������lp��\0�p����g�=a��c�5�2�P[}���i��}�Ӷ��)�5�=������O���0v߼H-�P�{f]zO�c��N����C鹠b�M���,�o^��?������?���s��g�|��������y��q�_޸�7o��7~��7~��7~��7~��7���7���7���7���7������Z��g͊�gj���?�?�>5���X*mkBT�����x��}+��(��H,��"�H$��"#�X$������,�Q����ԈZs�>U{�	�.�.T��}6�ڳ�-��F`���p]�k߅~��b�
�
О$�wݓٱ����|s��Co���A+�q3��lO�x�@�(�0�a��+?�	��T,�_��7��s\���Ϙ^Bl1)�C��+�k�(�FyN"8��dPC�_9��>O0&l�4��Im+���n�w��G�rŰ����<Q��q	�	+����H�}����e��q���~~�[).�5c��6,�����m�uO���9p\��<//?����N�:��M›p)� �Ĝ-�2p�'�uKq`���_�����/���6�4<~��77S����N��BQ�����맨�uM�{���5�%.B�NɊk:	k�N��m�9���*�u�U�|2���%;������]F�aג)��RE%HWc0Mg�>��)/tih�f���	ѸX�>����E����)��<,�6�s4���5�z�b�?��J��\<OM%O#(7�6�:�=	���ӋYA��ƒH
���L�s6��M�X��BcX�&ǘJ�te�.����	3.je(��?�<?�-1�$p�O=�x���	]<Jt¡�Vg��`|I,<丕}�F�Qj]�o%[Pa��6�XY��<��?�Yoh�F��067ၭ6JF�G[�wv)��7?,�@w�
�nM�Ǧ�m��k>?���L�j��=���%w�Z�izFTx��$��kP�8�E��m�	jAO����ހ��>~������؆���B9���	�֤8U��KC�v�jb�L���C��y����;�mjP.� ����Dk���w��U�E�€3�ܨ�����8x�U��J��s����\���ɟ�+;}s�F�Q(KI��Xݛ�ƨ
�1��+K����dX�];Jģ��c�x$��D�׷���X`i� ���@l̏�rn�m$���^�9΄�zBGϞ�Q=�nf�k�D�e;
<���a�>,�⢞�j��k�0B�[p(��$���Ǡ���p�4n��q`�XƓ�	�vϵ���.x�Hn���or�J���5���H�u����뇗�f����a����[Z:><�M@J�9����$�q]�}=H�k�3����鲺t�Q�=�,	7���߻����s
�>��3�����6[��g���RL�؍����?�(�&w�.7C#~B{�]��
��U�W�7��1jk~�e�cG��r����D�.=��K�����@�W�DZM�0倐����0�\��x��v�q�NZ�>#�
����BE�	��)���&y�A}t�?B��Y�m(�WIp�ɱ���|�2�+��\2�� ��)�l�8��tl�@Z.B�����e񅋍�RS��ƃm>d�I��l���'N
a�dĢG3�%���#�)?��$s�	_5=��Y�BR#-k"qGP-�e�"�f����%֩-ϓ37�����8�M9��ϊ�,���_*n;H����EBƱ��cl�~����
˝[��/sa�g�IE2�,z�1�t�:�kL�������ș壋G)��{7�o���nd������{@r�P�>�k�w�k׽��#�kXfy��E���A��B�9�uM���4P=�_�l���gW��؇�N��#�_n��G�pp,Z��Uu�6ȓ��V��Ӱ��0EK�7*|��]�{��75F\�Զ��zQ��z!��	uH�>��up����T٣�o3P)���[�^�6�����` -�d&�*=�%��fY�<�^��ط`_6����|h���3ء>��2 P��q��7ώ����,Ns�j�F�=B���`�큳�C��i�U�)R鐏@L��Ү�����ǧmb<2FH�Rq��ùF���X�i�䎲�Om�GA�����}:�*��u�f�:@ʫRH�.��6���6�j���c�GOpO-
��6H����K��J��U���:�Jǃ�����v<gz���� �1F*qm�-;�
I�7
?��O�(Yr
�de�
��F�
�	�ѥ��r��H��a���ۡ�>�,����3��D�Z��E��Ʈ�qq���7p�?��Ȍ�K����%ȧ$�;�?�Q�r�6�pP7`�a����^=����R�_����)m���>�D3#£�_'
�I��ɭu͋C��-R�ne㯄����ss���L��<ȭ/��R)|Lt_1���<u�}E
D�zl��$H�+�N_2�scۯ-�rH�V.��������֏'���(}�o	��:]謧�6�Fhlw���@��z�{6�P_�?�
E����h���߹���v��K�/�B�"M��h;�����б�o��)gRm �$�5�, �E�x�(?�:�g�U뵅F�4��� 	���߹�E4��!��q?l���A����Yv��s:mR�(G��Z�y�Gq�+w0)Nz����u�Y�-�&����"�Y	='I����8��{��m�L/~�����!����.�B�����A=���缱Y��|z��:f�#¬oh�2Xj��ǼI|1��i3A(|��vf1���
NK���L�ͫ�.����?�r�]�qBS�^#o�.l�%z�⁋
��Y��~i�䔃P��q�u&7(��U;B��l zF�x׎����M����,|PfV�֠�k��'�N��b̔/�$EN���
HA�i�Q=�u-/T�QAD9����g��W���%YZ�\���aԥ��5�O�jr����u"9��B�zp�̬�vl��l=��ɸY���y�ܾ5t�����mE��z�+���M���>�L�k�=�rr4����/g��E�r��~P��nB�[��\g[{����g��Y�vR�W'��
{Fe�m1���{�w�L��;�7�&$��x�c���0����n����&��u�@5sC�Cձm��8H��ef���t��<PJZ��@��������4�K|��#`}a�kRN�'�~IU!�k�W��L��Z�D�NK����̡U�������;��g��L~a(]��!Bjv�(�f������\��B�}�AuH�R�����g��M��<7�O��:���[�m6u�v����;3��=��w�w�n��������3pK��M�������{�.t�"��nt�?��di�b�C6��=��E	�����,��ѮO�
���0�h�v��G��;=��MV%����ʪ�r�����4�H
8r���K썀�x��A�:�2
�e�.���ݟ0N<g����'�����6��%��G�1�ַm}�^j�n�ҽ�S�0Cz���LX�3���U���M;^�^~Xc����a�vGHu"��
1��kN�K�T�?,���r�=�܎�X}6CBW6ۻ�F��\�3�m{4!]9�ử��J4n��5J�s�w��^�D��h����z������8���P�]�z���1�x��~��J8#c�%�Ͼ��cF{d�����o��@w�0�QsP���_́� ?3yB2Đ{|��5����}�>x{q(a���тa�?���Q�%��l���4�ςxmWI׆�G�C����1���k�Q��3iJh�,����K��R���������O`���ʲ���<!�[��Nw��a����Z���x�\Rtv��^ZJ��a\(��Z�PE���� 1��ޣ�h���y0�S�L!�y�QP̞�#R@ӱ&4�a�9'2��ċ�I�E�8X�Ir��
4��*y��b��˼�/#�
x����;�2R~������O7��h�՘U��^�k�
����(侠,���2���)�C�:(ِ;�Q3>��4�)�%���b6�B8�\��p�����e<��S������+�js��p����%<&t{3?���|N)p7b�����?�a�i�D�Wl����X���Z�>;u��)�ko)#W���S�n�cR�x�{[�sXv1��95�_��0K�����ՙ7�>�Tp�5���ٴ�l3�S�"؝�LX��睫[�5m�����Q="u}���pϘ*x�b�Չ����#iM+��@�Z!�	��Ϯ~j��Y�ݬ����$?5���mt�u�] �%�@��݅:4h8ۃ����tu�3�;�
ΑO�1A/r����
��R*5�����i�&j#Y2:�$Z(a�d�@�>'z
���L�����뇶��6Z��8|`�6�"�X1�_�z'
�F-���я�?��X^�A:?1�;��h/K�VB'��vOn�FS���Ƥ����Q{=kh7��M�wXQ�p�\v�͓�O/��.���
�N3��HKR��l�K�"�q��^W��h��1wt��h@���3�e6�N|������I;y��?8t[�[�!����$,ήL��e�"�z��%IކA�k��R�l!3u�8�ځy��?_�W��)�AbC��O�!rz��a��5S��n֗���#�<�43y��6"���R����߃C��Q�&>�[��#
BH�ǽ�{v�e��kO��T�lq(�UH�͵h��ݔ8�,@t�����ՂL�{p����/�*�L"�d_y��k,4�G̖��bD>,��.ok"�D;�|7�[.�D�C�A���#�i���l����ϟ�I֬�����D�q�]+�eE	��_�--����ڰc�����^���L��q�1~�C��C�����C�9��gN�����H�8Bkh��J��#Z�-`�V�o��M�a 9r$�պZ-�h�kh�
?C�$�	�^��tď��9d(�8P݅]ڶ���w[�wl��;��d��n�׆�o�K��d�H�ބ(D������In�I� M��_(��������5)6H/���Y�1�� �QR�k,n��XH��ʉ�����?>��df��&6����^EJ�m���t��{�C�����C�c`���0ʅv5��x<��\9Y��c����}1�06"״!֏��9�dl:'��1H"�<HN�&]�5��6�9�!I�1;"����YxA��K-�y�m|h�d
�"]�����U�.ak�gbbw24�������j-� Q���Od�-��:N�	dG��˥M�����I	V�G=�W�!r6�w�H3����p"��ۋ����#g6*x�9��k{H��<W�����BQߍO�MV��{Kh��^<�F�W
<�L���:w$|�oY��-Q]<ʫ��!�!垹��F�q@}3f�R�%���oĿM���r�D���+�N|�Y�Y���6�j�r1�1k4��i'X��f�\:�e�޼� �~�P9���1�ߍ��
��&7�8Q�ape�����5 9os�M�y�	�K-��u��u9��Bdx7H�V����&�_���!C�lgL �04���yS��}|�qٳ�k�����b�s:f�'/���㼳@!�]%���z#�=�J�s�`3�W ez<�PIG�C����0�@�4������5�5g��x�c��T�G��U�#�R�CC�?tdx��L`�Ɓ8����dgsT�?M6},_��� �\�k٬��lt΄l�s��:m"2��5�be\]\�˛��{xa�Lo��Q�lPwK7���?M^a,�_�lb(�1�?�����3��݌^7��:���ރ��^�us�ϚqB�8*���h�Gx��Y�C�m5�M~�{Sg�9n�RX�C}[����hO�tC��1#W3�*��:;�&_�G�ۂ�&�H|�����5�L���<4Ƀ��\b������D?]fM{V6*�S�<����e��0,�!��
A��ؾ����K��m��m���ߍ�r���O�oC������2�
���#��p'$�F�˿@!�{0�V��YW���oe�,��'��H'���`�r�1�����#�ͿMRS��Y����ZB�h�|�x��H�@
6�YziWl�wQ��}�yqs��!`��~y#�-O�Ց����I�X���m������y����|�*0o@��]ۓ�^(`P�q�ƒv��ef���v�'�OA=B����݂p��C�J#
��֞����q��5�
R������wV&�)ԩ��n@po��]��{3�v�:������Y���f*aW��_�&'
Jk0n����D�x��\/H����D�u�qZ�\ڌG+啵X�Z�T>z'7�Q��q������Ɍ�#K�R.�/C��V��g�Q�Ȭ�����\��`��?d��1y���uM�6Ƶ8ZX]8�^p��wQ�E��
&�1frR��Ki����$G�����ݜ����Е���h3'��������{���;;�~F��K�37�k���u<p��dʎ��+C�����R���Mz�Ə�7)nҀ���� lEGy�l��:̑�I���o�B�<A\���\6�d��F��q�ϡɅQ�[�1<k���N�>��S%|��Е�sTu�le���b�A}A�����ʹ�1�0�A{�K��ʘӺ�tj����dLI=r�	�PRg���_Lb�R���
Ş�l?�␔�)!��[��F��o��wi&k^�CV(t@p�W2���{h�x�H�GRn�͉�eCb�xԉ����6G�������Q��d27\�ثd�S��=\�F�f*�0�ۣ�OP���5(r�ZߙxQ�Z>�~G�AeN-��jY��7�Ҿn;�n?ӹ"P��x�}���/�N��W:݊&��׾��:x"ꭥу;��R�펔���c䛅љ�������ElmG§a=�h�¨BG_�u���YnZ쫭FYs �U�"zM&�:��Gn��u�.�DX���5Xn�����;�}�ԫ%XO?�~2&����Frjj���8��yA���*�W	������I�����9/��u�b)��Z�l:�s�� 8�5��J��>~�i�������I<�k��¶
�٤�^�S�x�[����s��GD����(�+��"E���HnֆA_��\F�Z���%������?�4`���w��_{�7��"��0�Y��@�f}������PEj�m��v:�Q������rN��[w��z�*���5�c?�j������f�7���?K_�P��', sZ(oT
|��Ó\-%�蔒�h���y������\	cK/	˧YGԻڐ����z&c"*�(,����y�E�q(�y�[���q`�a�7Xļ��~�����R���/��{h�h���"�g��=w���ݠ�՗���?���̶�uNh{�g�?tq���m�,�u�[�Y���ot��+�!�hf��.2]�ݹ?�&��wA�R���F�ľ붾Ue���%��d��l�i����q��Ms&�6�X�w-&�Y�3(���G9��{cׁ�֬ǿM��;����v��n�"���b��)�<�׾���e_�1���p���}��11��F#��YX��p�q]��s��,[�%*&��@�D�f��ҹA�ٙfs���,���>��3Y�ԕ;�:#hEL�ם[ROd��^G�A�˩f�~Y!����E���n��0�~��/�A��
�K�m���>^��WY�q�"���<цF����*c��:x�w�|�͞w��%�ehRg������d�9�̕���v�3�v
Dg��h�>>?��3�h�YDk�gC�(ʹƒ�ԕ���S����Ԝ|�
2Q��94�(�?OG�Q34�
f�cc��PopT�Ya��W(�>�@�t�X4�`�LG�ٞp��Ʉ�a��Űl\�[9�c�26��UM6f,����'����C���4�i<D�n��#�x��г
Hz5�[�
�_�����Qt��m�vN�C_��`��x���~
Mb
s�PEx���؇;�cW��*n\��?���׿v�:O��3@f����R�&�e�����m�[mٜC���5f(�M����Ni��YX�xШ���=�4
y�HO�<�0|���3���[��B	:d1�"Z�O$+Kx�i̒=�s��J����g���~�i[Rz'����G�#�v��}�>�?W~p�sϠ?��k��A��K�rŵ���k@�I�|>^x�s�?�\��`,D��̒�����5��W���^���w�D��M���Xf_8<%|8_왉pP�1����W��lm߃���f?4����:��́�_�Ԕv ���M�;k�:p�����_��sj؎qw]$F��}���y�
��,b'��N��=�o�����0,
������~��M���
Y�R���4�6+!��}@~u�j�ct�C��P.�Y(�x�׎����z�?70�WXFܣ�o�����3z����0���c8�R��G��g�0��T�U��򄽻��w�"/4��֏�����C�Q`[{O���c�n�]��+�{�{�����N!�3��<���V��yx�,!C
�b�.��lf���'��\ ן�����gu,μ���w-/��3ۥ����N���X(�c
����o�MD�s��a�#�#0{c
���%�uDWCB�Z�A��Z6�,؏�x�(Z%�����w���HbhTb2��<$��*c���nk���_�א����#{D+B<�!��S/�g�Ï`�9��.^]��ß��C��+>��3�+��5��]�q����p�j'
r�9��FDȬ)~:�����9Gm��x2���-?s�raG"yvU��pa;R���ă� �A�\&���
�?�#��n	��0�ee����d~o�q嶭�!!DzP^H)>�o��ȑ.�ļ�Զ=Hy�7�S�-M�
�?��8y�c���ߧq�|�#�5"�2Б�l�m#��U�����e�Τ�V���bM���͘�jA�c7�Z
�]>4�gb�
���s	2WRsKg�6���
's8qz�TT[�R�[w��)I��9�5x���Wj��
#�!nN+zP��ڔ�	�Kg��TE�,�����?��{�^R�Dݥ=�R�u^zîc������&D��'i74�S�J�ߔ��&H��U�G�[���cr�ͦ��<����׿~��4}څ��h���;���lpAZ�%�X�Z;t�Q?������y��k1+Ƴu6�[������D��c4�Ɯ����*d��B#!}�e>�samh����G3c^��8u9󼵕⸈߂�U�y��B;f"Y�i=�D�=����4��&�����|�C���3���g]�~���WgjhSIXU��"1A5Fr4�{����A��lj�w�T����t6<�/N�� �\����R�t��a|�i���>�T.�Wo>>�x��ϯ�Y���{緷m,J�{gg}�v~)�]��s!?w��X�����G�F��l!7��U��|Cn�fﳅ:.@mq%��臔���Ru?.��:��aB�ֺ��E#G�g'yX�D�u�SW��NJD)��21�ѵ�V��agW��P���q����Ȓ��s�?¶�@�g")���s\�T���{��f3g��o��^w:^�"��{��d#�!φt�}�,n�yWFKv�„X�4��|<��B+���8�i=�-;��X	5l=/xl��w���n�]� 
�+S�Ӽ,{՞�/Д�V���+<<
�����o �����ԇeNp�^O�����OvqR� �wHF3�݁�=o��;�`~k�R�wC���u¦�k�jE�|��qϩ���KV,���*?��xk��}Q�x�U���/M�����=��հp����=犐�^x�Bˏ���Kx���@�[���I���YB]T��➐����Kq�.ὀP��w����AG\�W�ϋ���9���2S���A\�Y\��y=Ǩ�Gj�����բ�M�@�tԂ��vD���z�+���Bĺ\������լ����6��k�6L��ʦ�R�_r�n�l|UAϯ<
���|��!��;��8�_1�g�sލ��C����� >�VB�~�,����˘_�&f���jp�/W�ԍ�wa�O ���H3����I`���u����1�ͤ������+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W����ݚ�w)���mkBT�����x��]	p�U.�7�BiI��o�閖���T�DGqEY\pTĕőQ��qT�eap�uE��M�4i�fiӼ&M�gϙw���%�ܗ���|�4}��w��
�
w΍"�%�'L(�s�y#��6������	��	�	S	��	g����)�Ӎ<�!���0����esUE�M�KX@XDX<,��s�	3X&��|MdyTY��o�ou}
��,�
�-#�$�"�!����9�	K�<�f9��r�=r�_���1��ݜ��d�j	�6���:~?>g=��j��e,gsYM(����������1������l`�. l&\��2�{7��mR�P�r���n^��O+���w�����#�:��x^��o2�_�cǎ7�߿����������q����'N�h#at0Z
���5��>D�ѣG��ψ��:�7�]
a������ǖ���w���}B<~.�^�E�/۳g����Ǐ7�)z�nF��q"�=��.B���w�g����A��&��u�lK�6�7�Qj[��A�_�{��Lwҿ�ǼG�ͭ����|<���䡙e�mmm��ڵ���qa�;'�-S
��o�����ڝ��+���)�_C��Y�G��.�y_�NC.�:���l����R�.�޾�r��lˋ�ݷ9rvG�ψxq���l�&�=+J|�[F�����㷚m�����H~y'����r����	$}�ޱc� /7���j߾}:�C�?�������N��E��#�{�,w�.޹s��b�c�����bc����|�x��(ޣ�@�;��Ç_Nz�-���e� W766~�t�	�)����ōo;x��l�pߊ�	|�[b�����N�>G�b��_h�?��޾�}��ݢrzAT� J.� y�,����e{����J�R��sl���w�pߪ]1�o~Kȿp?ɥ�({���D:o�1~�w?Nz�fzMT~&<�s�kz�/����3r%�>t�Г�ݝJt����O��
ܷ�b���ؿ�<�\����n3z&��.�[Υ>S�c�mM����`)�o%s�VɃ�9�Ar�ڂ������狊	
�����?������e��R��՗i�&ӏјڼKs���~������*~}���%,5���.�\Dqb��
?���θ�2��/��o	�?��㥬�=rj��l�61b:�O��Ȕp��gd��F��N?����"ә#��E,��Y��^E�"r
��
?��r"2��ev�l��Q	�_���:����|��<~Z���_E���x��v~vD>���q��\C���1��}���I�G�_�����k-�,K������憾�-���`�{��u�뽌~‡�@y��y]c�f���7'/�0�e�L�x���:��|�|T���l���:��R��.G,��"����|�}������u��677���Zj�X�c��H�I�g;ds��sΪ�b���}�'3�v���� �:ޛ�6�V�b�n�=joW755	�q9t����hQs��l5F���32��u��^lpy����b�a�g����{[ZZ:� �Fn���,t%����ɚ�	.]�\a�З6���G��!�%׾���XO�xlV�t������eU��@�#�i��\��z��]Lq�����:��?���	��I,[_����r,v���{�:��]���%Qܗd�LMr���]���K����N�mJt,���c��/��o���f9��r���)�ȏ�O��q�t���o��������<g�G���l����-�����<רq��+��c]�ֈ�Xl~%s/-W}늽{�4r�|OO�s����H��J�7���젬ӑ����Ή+���w��t������� q�LÑC�p6������.�}�Sd����p��*�E�;t,��t^����l$��c8v���&p�a�װ^�ߘ��1��\�5�>����7䬉Wh��w2��b�����Q��
����x'���7O�G�φ�^ζO��)�G����$�Y��~I�Lzlxv�?���~@�?��XPl�6��屫�=D��q�|���c���������=ӵ��6��@U�-����%�ǃp�u��Ȉ}s���lq�v#�XÑU���b!�{���s,��8�c�ޡ��B������kW�a��`�^V���M'��P�{a�dqd�����G�9�F��=f��x��I�y�Ż	i�|�%�a��c�\z�����!�ی���.���G�<Tc�l-[L,~
u�GT�CL<�Ǧ�}�(~F�ĺ���'9��~n�O�l��l9�Wy^@t9��jN@|�����3J�#6s�
��Z��V���8�7W�j:�p�@zn5�Q��Y��zظ
�_��3�ᅨk>�?�/�G�wB[.�(��o�5�:�.�Q\Ga<?��o�"���?M��T���P�D���u�0Ϩ<��=�[�\��1�o�� �m�K�~�ó�o���c��˜��c�D߯ƨ*b�d�1��H�ߡj��?�s]Q��o~�����>����}$t&)���q�Z[[cc����1��tB������߮��_���ظٝZ����1� �`
lR��P�wp�$�Ü��LIx�'-n���Q�Ԝ ������)�e�w���'��n���?���m''��֓��\뵎����+4��	��l�5MMM!���w:tH�I�{Tmk�$���m&�ō�i�]��U�}Ĺ��}Kx���}3�J��s	�����"k\��P��oU����vuuWc�T�꿿�֗^�M��T��g�����#�bI����Pv�o;����G`
X����׀%a����߯T{����O����o� z
������sط;���=q-��H��gݽ��>V�Q�ψ��X���8>F>_����5�I]�/-��ߦ�<�=��DE������m��f
��7��E�uIP�[�;��	��8���\Y<�bX�^�{�P>����{�в����@��4VC����<m���r91v��or��<���o���!��_��v��)�\��V�����f��y0�����t�=��G�G��3lt��zŜ��9��q��ɡ��:��of�'j�ro�����϶�
��%�{�7��/vy��9Z���ޏ�O�!��W�/}����؀��
�,�
o��h?�s�_2c�_��f?l�3�|�[��rA�u�{���r��n��bWX�g�-3>Pο�!�W��@�����rA����`���C��\gb/d��3F��aϿ�8�7���%�r���?��j��G,(2����*��W��9t�:�Qg�Ğ�����6@�y���a���A�+Ş:�Uι�Q-�3��L}�1��z*���+��?Z�s��9��^O��fW���Ԣ�/�:y���e��=�Sj�g��w��s�a�9��{w�Ow��g���>b���c^g���w��8e;�����ϽJ��N�}��r�W�;@�{``nioo����4���\g�>�ֿi;�T��Qf��4���W�����Y��R �t�o~��-�@�6�?�Z�9#?��`.Nw�w~���1,��\�0ԩ��jqG�Qc�ѷ���[���7�E�uX�h{	��uO���`����W�p�Xf��f��{׸L{���D[֝����7��o�����9J~L�dL���e����f.���.��\�w@V�g�f-�獺φ��1��$�Eq����H�}9rn$Β�Z��z�y��������g�{�"�L�fֲ��)�e}�Sד�����-��������r����Чz{{��r�p"w~�e���e��/�h���������=��5�z^��|�[B������p�7A���������킽>_�;୮c�gwc�F�����q�@���T83�]��~6k�p� �SnQ���Ph��]�������˔G�1��9��]V��-��d��T��=�l�����?�VA��}� �fP���'滻�e�Y}��o~���ؚ����Qn�5$Q>��0�Eܽ
�~Ay%�آ��
;�37^]__-q��x���k�S������c,W�;���c�����U�p��7�e�����и��1o��{�S̹���q�	�7�\�|�sK��gY���z7�Y��(�����o���s*�\�~m�_�O�Ρ�[��&�O�-��
+?�/ػ$1��:�5��s�������Ƽ��\A��P�a���~��7-q6����;9�9j�a�~��&~�Z�:���VY�(}�;H�K��kW�/�W���y��B���5�U����L��350��#��)�=��L�|Bx_�6i�K�g������A�_����>a�ˬ�J}f����
����	X� K��W���äR�{�|���(���b��,�f~�v���C���ˬI=q��<�~<�	0g s�e[��_��K�`�bg�,,`~��<�b�PH�o-�g�K׏e>�\�d~�1��\7�V���Z���ds~3\z�fۇBj���=z�H��T6~�`�.�7�Ŀn"c�=w;�y�g�Oc:�7n=��u����P�ma�!�9�(�#���߀������������������������������������������������������������������������������w#�֨:2iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/">
         <xmp:CreatorTool>Adobe Fireworks CS6 (Macintosh)</xmp:CreatorTool>
         <xmp:CreateDate>2012-11-13T18:40:53Z</xmp:CreateDate>
         <xmp:ModifyDate>2012-11-15T21:38:58Z</xmp:ModifyDate>
      </rdf:Description>
      <rdf:Description rdf:about=""
            xmlns:dc="http://purl.org/dc/elements/1.1/">
         <dc:format>image/png</dc:format>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>&
�� IDATx��}y�չ��T�6=3ݳ5�̰8�&,�J"(��j��1Ƙ�+��q��
��j�1.�c""oܽ���$�G�&7n�P��H��mf_����:�}N�[��gzz��>O=��S]}N��]λ�9�Q=��%;d����a��qP����fP��$��\��12$Ap!�@
���<,��#
���nq���r	��Iޫ�G8G����C"9d��P��7?)^'�kyQ`F
�M�A�!�R��0x��G��OH���sD�	@�x`�yP�QuG��ȿ;�H0�#�х���,����C~F���/�^�~���W-X�`�ԩSO�㊊��\.�_�"Ƙ.���4̈́aQ�0"�X�����q׮]��o��
# �[$(�4$ܒ��5��h��P$�z�[6n�:uj�ʕ+g�~��gVVVNq��%t1.MӴ�8�[���S�L&�]���;�l���=�ܳ��w����L0��3hn9R�P�E
yx�`=�Z�j�%�\�����]�}H�|y�A�eY眛�at755}��Ͽx�]w�lnnN���R��`g�r$QE�Br��M�>ݿr����<�̋JJJ&2�\"b�Soq�Mι����Y�8_c�i�3]\O^�eq�y���{ϫ����m�ݶeǎQd�a1��G���4 ���>d�V__�[�nݙs�Ν_\\\�̍K�4�iYV2��uvv�mll�t�޽w�����oz��:�k�ַB��~�����q��ՅB�c���8��[�i��1&E��w8�foo��_}�e�]�?]]]R4QE
�1镑$��V�^=mѢE��IH��a�C�m���5k�l߾}{/��Kg�h�y�^�_��_�,X0yΜ9_���>��vn�`������m�ݶz͚5{��	J/2��WF��E�|pմi�.t�\^9> %>,�J���|��s�=s�w�hllL�s��WMXI�L���ޟt�I�˗/?��_��w***�j��Q�3�L��{ァ�;�ߵ��%��PN�ǀ��p"�P��&�������s�=���L�,���=x��_o�����F9n�W��p���qh����>�o��������&	��,���}�ҥK�|ꩧ�ߒz%���p"ET�8�PD�/��s�9g���)�?���i677o]�r�>�`#�o6u�@�/Q�1���n���˗_WQQq��i:�`"��z�'n_�h���+����DCFq��Cr��mڴ��/}�K�����b-�<��/����p�ƪ�&�SA��W?u���X߸q�7�8�+=O%�/�a$�~��g�q���W"�",�].@2bJ�!�C������/Y|��ǟ�i�,⯹o߾׿�������y�_��3�
Nb�I\Q���|�Ȥ�e;��s+x��kjjN��P�4�����/̚5k}$�G)�F�d�7�H0(w��ܵ���M�6�G]]�<���`F��_^��o�5d�ԏD��%��#�*�td���'�eo����̙s���^���e��>�앓N:��R�+���h5 T���'&�544��c�9�����x��w߽⦛n�	��
R"����ٔK�%�k�����9,�����-˲v���i��5C�M)���X���+��s�>�!7RQ
`��N0�ܭ[�>j���9O�����k���s�y��`2�zc�#�\�������uq�RU��|���͒sZ�l��h4z���4��M�~�r��*�5[|���bYO7�׹�|ѐQUH��i�,��+��2M3A�������?��Ȁq*�b��ŵJ�� �@��o@|��Ðۏ�
�1� Ƙ~�.������m�s3#���O�`�� �t���F�u�?:T�H�Q`RO�L��{�-�,J$a:�h4�|�W.����G�)*G�F{�*�&"�D��ސ�i~1ɡtIKwO�S����-Z� �w�9�b��E��9~��1�"(Q>��C�H�x1ROtZoL�0���G�:N��H&��?��O�v�ڽ�[#�D�� �M�������a�Q���0�\W��s�wL]�|��\.������i(�wE�H�C�	 ?ҟ��P�4�
g�=��%������|��'o��������|VJ�k�0�b̂ݳ+�8����o��/���e�i���|�͋\.��䤱 ��7�w2�H����n����'�t�i�[��={��v�W�U�\�J0芖�-�85C�'�)P亇> C'�c�"c���~��/�߿�
�M�ة��z��e��Y��E6�&Bo5
��ӧ/Y�d���� c�6_}����F��7ɷtM���u�Niii�鍊n:A���)e/�@���/���5	��D"�������[��ryV�X��z/�gR7�}z� @�l�z��3JJJ&��eYƆ
�~��7��q-��Rms��FzQ�9gUUU3~�_<��g��l֬Y��c�4;�H,�pd�{��y��'�|r�]���'�^�z2\"A�2$�Pq�Fz���9s�\(��,��|gѢE���\>'/�������oo|뭷��9q�p�U�����W_�����[Dh���>���&L� �rɀ�V�AS��߳r���~�p�q�4{W�^�0r�!c
*����nw�ܹs��n\�n��pcá_�GA��	����x����i+..w��
;��{��8r��:��<묳.�eY|�޽o�[�n�c�2h***�^�x�---k/���~����x��_�~_cc�&���s�](^S�k@��	Uw��~�V����K�,+y�m�=	��P*o�,�D�����?��o?����~�J�:@�Y�O<��F�y).Aii�1w�q��-�4 ��~�?@$:v饗^"ԘeYhii�PD�h��f�
[:��ɓ/x��7���K�`x���|��׬Y������<��碋.:v�?u����p��g��3�D��s��{��">��v���9�]]]��_"�h�0�%mmmƫ���Q(w@]]�i�`�z���sB:�t��9���I$�Ɏ;�s���F<�?LZ�x��#O�2P1�rI:hv�׾k��̌a���u�]'#�r�Ol���kZ��ӧ�?˲��ظ����f�����T������C=�u��+��/��1
��&���e477�L|��y�g��9Y��r��$�����M�97�y睿"Ru*�9"�v��O9�����_
1���`׮]�[�e"�ܵ����^�W�;
�|���D��ϟ?�D�97֯_�]���UZWqī������9�---k��/1�դl	��6I�#�|�1_��W���$�U
���ev�L��H%�umٲE&*P5�a����f,^���!r���������0�n��i���/<N|�_��\�ؾ<}���5�,���L�t��8��/�n��[�^���d�[h�-񢻻{�\$2ƴ�3gNG��JN�d��0����v����#^z�I���ۻqÆ
�з�L�T��S6%�����HVUU5��1�@�z��2
�sn8p� �9RT\�*��DEEE�_|�m---ko���[�М3	
��}8|�p#�\>����+U�ɇ���r��`���Md`*�|nH���q�H���®���UԬ@�4x�ފBƔ bA ~뭷���!�&��:�n7?-œi����{������..d,yB,,0_z�v|��Gԇ��F4s��Gu��X��6���5MZ�1��q�\�t�nQ3����!J�3�<��~�œ^ˏ��I�y�h4z����_:o޼�Ȗ9u� �/�C�
���x<e`�ft������Ԝ3�{4S2��lڴ��y����	&r��Y�f�P����!�eI'"�͞=� ��h��;w>;w��	WHW;-���BG�={v2`q�J��i��Ƙ��/}i��׀���Z[[��|��WM�2�͛7� u�e�Vf��4�>c<3f̨���dw�s���DV2���7�M�<y��[`�P4=��/�w�%����xN>M��9a„qRoX��x<�U���$�v�������jN�`$�����7s��G��˧������"D�f4-��DVWWW�<cZuuu=��*����cHhϞ=�;w�3g�|٥�4A���p���T@����r�x�9oiiً�%A�K��9^��?�XZ
���`0��Z���5j���u��߿��c���=эa��U3�1^�@ 0��%Z[�l�&^;�r�$'@���q���Ԍ�z�U��� mL6*�F��_~��U�P�%K�|{�,�nؕ����g��Ο?����s�eY���~z7
p/��~����k�"�8�Y�d�)�����~�װQ2����o{�_��_���7��2��Sv�ȧ�I�|��~��'1��8�����[2`5�x�
�ړ��?�D�1�Ϝ9�Tr
5),��k$���\}��WΜ9��>ē�'d�A��S�N�%�eYVSS�Lzp��je��
�Σ�����N�0�L �G���d�c�F�oawww����]�dɇ�m��t�BZ��ԨtzԼy��P�D�?8��شi�f�|�^*'����i.��/��eY�gn���W���S��7XJ&���_~yU0��=�K<
$��)�S�����Y���W���1
�7p�i�Yz�7o777�-�EMc�]v�U^���ւR�!���CO8����'J�>��n�ܹ�#������-[z`�wN��}� jRX�K�zꩧe�VVV����G� ;�hظ���u��_>�wG�fl>�6H'��z�_�h�O<���{NҦ Q�_�\r�
7�D"�䉺���,Yr1��Z��X@_I�x(��'�h�И������k��J�=�eY���ܹ~��ϐ��?�!Љ�&�i.ٸq�)�����{���"�%2&-Þ49�R^��d2y�������-��Y�r�����fPe��K/����Mr}��N>�H�\֫��zKoo�Y��r�<��~���[[��:�>�w+�n��N�����Q[[�Y�l�r�z
��ӳ��o|vy��/�3���_|�&�;v��~���t��\�(Q�0�e�q�"wG!Dy��z�G�NJ�`�����>(ZR�Gހ���Avp���E<cƌ�|��'�TVVN�_�F�͡Ph�h]�O�����"��fc_뉡���g���}�M�|:�����޲I�Q�G��Njk�$���9q뭷�6MSƑyQQQhǎ7�5�L�qʗ��!#s4���%�SOP�`Є9Y�����Υn�;
F"���~/r��a�z��Ͳ֮]�w���2�?~���?����� ��/K�=�Vy��n=AI��3h�(��?���555�e�eY�ᄏA���ׁBۣ��'��POOϞ��4�5o޼k~���>����dteq�c8�$٪�r3����C��׾�X�@�����W\qŋ��V����pS����ŋ&•w��o���E�R��H&2��H����G_��� ��Ն�60�,Y2q�…���z��H2�/]���={�Đ
F_��}S�
̘`9R��l=�6l�p�aq��܁��R����T絙H���{�,i�H��$)�"�t�^�+��\,k�
�b�֭�� �~Yi񧡏�r|��i&E<���?��eHu^���_F�A��Y·�nI���]R�$1��H=8_0����a4m!s2M�L��O�����&��@������L?ɟ~���wܹ�#i"�oܸ�+�����KU~��R�ء��@��6�F�:�裏κ��Koq�\E�eq���ڹs�ӦM��P���;\mb�Τ6yK@�c�i&�l��ؼy��HK���"T]�YKy��z�)4yZ݈L�:u�Æ
�N�6�B]��ѻ��>���p7R�֓
�m۶�`ڴij���c�eY������_|�
�8�������sM�a�Nqu�1[���Ϋz��o�����i�N�شiӃ_��W�A�`���p�����֙g��D�(R	d�D���_�ꫯ~U��œ���CTEŖ����g���y睷��v��uLӌ���Kw�&��/ @��]������Вj �����t͚5kn���]�gg8՜R.��,z��~�ӟ�bŊ����'�Жe�h4���f�O~�0H0���"���)�hjjڼ~�����ZHJ�@
d
�����Jײeˎ��k�����!6x��3U��b�F P�N�����O�>�{�'��%:::>}�7~�}�m%)4��l9�S�L�Z�j޼y�WRRr��N;�a��x�g�u��
�`0���
�͔\�dɄ�o�y�����~P�a��裏����?��s�=wX}
��/��f�…_�2e��UUUSt]/V���4�C�m��։M\�%X�~!*�$ @6(��H�Vy�>���.���~�)�b#�Lvuuu����8���ּo߾|�A�-[ڶn��B�9s�}�_(;���kjjB�PhlEE����c�nwPl�&�I ����O�y�GV�\��ls4�uTi@;(�f������}��~��o|��zƘ;�Ƒt�<��$]4�1&7�d4�"
�@ۮ'��·~��+V�C�_��=�T:��h�i�UVYY���O�?�y�������2�8T�KJ��~��7=����	CBͿ��!u��&�e�n�*]�tAF��Y���I'�T�lٲO;��cƌ�\\\\�i��'?�K�Tz��Ro-3�jll��+���jժOv��� Z#B��v�I@$ь?��퍞s���N;���|ꩧ�RQQQ�zK�^o��rk���m�9OZ�7#��ñX�������޶�����Zm4gJ�nImz9��V)�@$i�pE�F��Z&7�9��j����:����P���~�@�&đ
RN��=�-*��S}��Ԥ�3�M3�4RBI-𡩧��)�tlD9��5	Pz����-0�D�Q�S텓~9�
�#�P��=�Q%Z*�����>_Rŕ_q��yD%'=R���v+0 G��Ө�)����2��( ���2��( ���2��( ���2��( ��l���:ihhP�Z���u2iҤϗ��HB@P���:�<���&M:�\�$�p*���B�$��]m�d`����8p�S���$l0��*���l
�p3�@8E
��l
�08���w��J!��Q��ݻ�hGo>�>���
��\Ij���f�$$9��q�7�I�
�CM�˕mb��1�������x���9QӴq��2ƘLQ�e�C$�q�#��v˲��������p�0�R��6H��C�-G!�$jZ�c>���)*//��z��u}
c��OuI����W�s��e��x<�NWW��X,֭��o3��#�"�db�<�����bjII�]�Oa���Y��"���w���A$y���s�i�jc�v���`@q@D�"�����񗗗�VTTt��i�Y�J�A�v@�0�"J��L��Ȥ��B�k�kqI˲��>��ٹ%�HDa�{�Ũ��w�y�PPF%�vd.���r�|UUUg�|�����![��Bܴ����4�O
�8�L&����h4�Aƭ��^�X��]�r��4M;V�JƘlz�U��,�`,����?b��\�!�N��$O��***���4M�{�e
B�4ͭ�h�O]]]��D/�9U1����ӊ���KJJ&�|���~2c,;7��4�O;;;Wwuu�s��� �2�DD�7�*��}�xZrsE��H䙎����<��|Մ��+��������\TT�MӦ�}���<�ǟ:|���~Q;���E�W��4/IDAT���6UZZZ[YYy��iǑ���x�4Ϳvtt<����(�
�*�|��Sb+�T�gVVVv\ �T���!�d��������p8|�TT�W�����fC�)t`���_���Kcr�K)"L�4�����+�Po�Z�A�������c��i������u�����
�+���Ҳ���ʰ"��҈n�����.�z��#ӬL�%����e3������f���H�����zj�L����FQQѕ��Jy;R��X,�����p�+�'���aD�*)�h)/]�uOmm�b��-;��ə�a�~�С{����&<'�\����PŖ���\�&o�����~EUU�.��4e�F"�x���yj�Z�.�F�'M��s��!���� R�uO]]��\�yȬ
�9�F��5�z
ٶ�Z�A�"-�8�V>rZ��r���MK�ǶX�������F�?mP$��W8�K��E��{�r��C
��ċɑn0~������q�;���V����]SI�y����A�l�%N���U¡PhNII�
�1�������W,P����'C
��ijze���]�z�FS[[�
����l��rc)�� �<�'����T`�b0<����n�XŒ��666n�H}BEW�I��H^I$�'E]�icǎ����˲�577�����\�O1�P�Ɲ�g-�khh�1�&M�drΩK�6e��I�������Ҳ�s~Q�z���B�y�3�}�:P�tǝ�P�BD�Tⲉ��^^^�Ų��{�[\rFkkk�u===aC�[�ݔ����>����Ų,���	�I�B�4�����UUU= V�iQ���z-���]�)%���!��4}�+p���
��cEd�����?qC>��'đ�(�v:ҝB5M�!�X�&M�M�Ӝ���s���k�<�)��`ee�ωA�R_=�>'F� �\?�幺��ᗒ��÷_P��F1!2@�-����|F�I��!c�"�T.�����b��A#k�������d+d�}�:�Nι]CEE�d�dzD	'��הU-��@]�R��SE�Pʕ���!�/�w��1��~�С��x�|�y����@=2ky�h�Fޔs"
wغvz<��@ �\�)��[ZZ�0��E�{��	҃���:e�ĉ������LPS����ғ��w��5���6����䜛�^�9�@Fty���~�r���_��f@\�׉�£
c�A%���p��X,օ�k�6)�\m��^i�>�����	&���¾Q�\���T��1��*�&X�x�'�B� ���+++� �%�o��׉T\�ms���z�"s�aﴴ��;w��%'/�}.�7jkk7�����s�!�/�2��ϦOZZZ���)E3�]�r�<���-�A+�l6Oyy�i���ݢ9缷���a�#�ca�r��+��|K���7VUU�g16�s���Oo��wtt< �.�i�6���B��u��G��T'�)(**�d��0�̱�����Qb�U�{'N������ì_�>�k ���	�www�3Ms��������r��a����UTTL�4m�8�sΓ���O��0��52��f��P(�����h����ڮ)݊���g#H�&Mӎ�����ŕ��>��N��H0t����d��e}HL4�&�ܢjH��v_P[[�q�ر�`�����,�d�i���2�����aw�S7A�8Z	EEE�"�}�D��՜����1Ɗ�~��c�9���@�����4M#�n	��~�h�Y�r�
�hX0�#\$8�;��d6b�4M��0a�yꗁ�1�K�A����w9�23�1Ɗ***NF�ޟز�S��
�{x<�Y 1g�0�*Y4�wD*�\.ל���G����C�X�)b˶��eY�i�r�n��!��d����V����1K�x<�W�Md�b�{������>҇~)�Lι�c2�|�0���d�YU��:'����2C"g������[���5ҥbN�����+&N�������,�D��ӻ5���MԼg���|A�S��Sq�2+..������b��LT�r�z�"]�g�2n�#�����4!��H�wII��C��#A) �/{<� +i�4�-&F��ꋤ����J�o&�ܒs�˲���Ӽ^�t�鍠�H֡i�d³�i�tk	��>F%I�R__�q̘1�з����A�4��ݻ�[j�$���"#�=0嵜g�����a��!�|T�,'b�U����VTT����{mGG�ndg;Ң"���ݻiα��ht�ݦ8_#ٚ��V�"^.Y�J&�Md`*�|nH���q�H��g�eY���c����u!��s�b�&ds���?O$�0n~�I"�d)���?c���������ێϙ��p�ӈfN@�D'2��Wy�|E�[��xM�+�皤��p��9�H�aD��<�'�C�F�X���}^&��8�{zz�hmm�� ��4C�-/��{� ��c�L���\.�a1d?A:R���q�#"ET��N�9�-��[�|T��ΗC�ٚ��
����������͏���8��h�# >��
voFA�|��`1��D����F��I�!j��ZS���.�F�����w;���+�zHޯ��x�؁�Fq�G"������Fv<�Ϧ


�s��8Fn缫���H'2�3]�Z��F=��H"����E�.g[
��M�EYAӴ2"�V@,�j�u=]>��z=��Ml544h��}b�>|��'��v�k<�T@*��&"cs�4�"{I���@���D�c��}�8�)Y�N�֨�4�m�H�������.�U��/�4M�8i�R<�&^;�r�$'@������~S�H�X����b�N�C�r�G����F��:t���4�*��e��������E*�"~�'����B�̣�h;���:�1����b��� Ӂ�ݻw����ʗ��hmm�]��4}�ھ�
���O��G�y�h5�x�
�ړ�����].�X�����
@ă�W�-&:�d�;k{zz��¹�S!
�r���n�b��������
Z�����w].י�<�r�d�c�^CCð6��
ڲ���Z�'�O-��1�tz����|5Y�h�b��rhP�
�=��>�
�I�&Y


���蝝����̦`��WVVNokkۆ�Yz�
�<�F�s��O*)鵶�����Y�������1
�7p2{�d�w�x<l���\.�q+))����}���,��x?lً9�5c��ݻw3�w�K3����21�]2&5K����NV��ҹ��p�i��\�/�c��$�֐�R2Ms[KK�����5���XR˜���e��J/0Y�)K3�Hj,9�<��[�W�5���n����noo�aY�>r�;^L���sy�6h����^�w���D�
mC�[t#S�E��E��Rj��/�X �
�y�����ݟ!�;f��pQ���$�<����sKKKk���U��1��J^�X�y$��۳gυ"F���
��]O�4i�-^s�������L������ߚ�)9�>�y'�;�W.kKK�˲ ��򔗗_��E˨s%�5㏍��666nDvg7�� h��,��u����˲������ls;oq��͙���� �Mt�\�+++��G��e#L��>�&�m!j�涎������w�H�	�E�%�ƌs��iǂ�:G"�EkB���۪�/����mmm�M��INw���I씵���.��������{������=��҂�6�t�JJJ�}>��$r�4�:�R�.ok�?+���i��������^;4~��(Rt�I��c4_Vr�\=�6Mj\b8�D�j�0a)͹�w����;�Pt@k���7��,���ko"���g����رce'9iqI@l��b�"�M[�cX����Mi�&�+�����|��r�&_3��Q�7$E�}B�;
g��8�eY{�W\>������a�'r���rƘGtfS��8C�'$�޽��^`�����
�f-�g�inonn~����p�k�7�zm�c���3���_VVv�pIK}�=�YE.��<(W���DZO�
=m`��%%%����V"ᶶ�;E��
F_��}R���zm�%��p�P$�[���T�B�{PTN)PDz���G�o
�xR��D�	���u���TVV����$zzzn�`Ps\�‚�^��OSO�6nܸE��"��|��������O8�5�I���aKGU:T�E�jM���S���/D�Xy��h4�����`w�!�J�_�����_�v��E�$�<�D�jiiyG�(T����~PC��]��95���P(4����ڜ
��H$�=p�p��g���j�v&��[�����b�555=�3�M��Y�P]�&
oK�'����Fd����3�R��s!2M�R�{���~;\w#e�l��7�bB.2!�4��---w����!��6�6��r��BƕC�4��c����
�B7�>D�"tz����0L���RSS�-�ϷD(��p�[���---�
W�S�3��|kPh�+QTl�
[��������$z�xoo�ݢ	t�`���?�A��'(���'�[hI� Ӳ�O����ttt��N5'�f�;�*��Χ
�ǖ��]��ddt���5vww�jkk��f@��@!b��> (a������;;;i!)�5�5��w��]�]�@�@ p�p���q���C0�����x��Ph����?��0M��X,�{��'��;T��{<EE�<��=MӎA&�-��<&vCpZ���v�, @����	���K�S�n�b�s�{,�ڙH$�o$�0�A�������������tMӦ��?�.�0cS{{�:����/D�pEmI��ݡPhvqq�)G
@�eY{-�:h�f�a��xc<o���a]��>����v����j���4m����5M;V�/�����i��F"�G:::��m�ԵҠwjQ@�,P��$m��\._EE�,����i��t풞��kA�E�Q�v@5Q�!h�z	�4w���<��޾���/o �2q@��ۭ�&ɶ��������	����\�SD�\��#_�6cSOO�sP�o�zH�lл}@���ȑ��
x<��`0x���-Z�p���.y��4m>s�M�!�4�����������tD���q��pn1@$94Ԕ��tot8,��p|>_iii�d��{��i���R�XP(f�g"�s圇9�]�i�3�o����)�B�V
OSOm�7$ۭR:�H"�����v��:@-����f5�V�K�6��߷}7�<�UW�E�BQ����d�q����^%"�hL�M^�)��V�R��:BM���amk�R@$)�"��'�2r�jG��*���F5 �8T\���BE�jI�ߏtq����6w��a���k0�(y�48:
�(����2:
�(����2:
�(��*��nMb�IEND�B`�PK�%"]A�ܗ�0�0.sudesign_audio/lib/silverlightmediaelement.xapnu&1i�PKx�f@P>&���AppManifest.xaml���J1E����I(Zep
�T��1���KB�os�'�N�.�n�p�}}����q ,*a(��S�uq=�-��˱�-+I;�cTό��ݷ*'����/>l�^��j	�X��:���R�qh���3d�O=�@��
a�	�	��eJR��{������3eԹ��͕���!����\>�ȿ�졨ͭ%82jw���xSO����C��PKx�f@()��.�SilverlightMediaElement.dll�}
x\Wu�yo�i�4�e�G��c;�mi4�?�ml�8V"Ŋ%;q0(��'i�yÛ�mEq��@JI?�t?ZJ�ڦ��k�l�iڅ��.�Ҳ�t),��Gh,t��9��ͯe�P��Hs߽�{��{��f��w�
Z�ӟ|��0\�s	�����n�ҎOK�_�1��)z
���%s�T2�WK�yţ-�=��g�'�����ܥӘ��l�~��q��� ���ގ�6��>�sGqY�
P�H��
�����W�Ÿ����xK�F>�/~��k�xL�ӆ�c����\(�u��z��&�������7j����Ci�iJVM	^�g�����j6_zR\�q�V��Y���K�����'z�
�*^Z6^���!��,�]$��aX�T�p����
�ݪӐ6d��u�^�%č#P�����h3��0h@bA�=r��AE��@?ׅ�7��0N��7G�7a8`�R{�
�B��
�b������/>܀�׵
��E���D{�̩�>��b_^L:��]݉,�w+��'�l�.*�=z#5�&*e���~�:�Q�4�L��@�C9{	�`ڮ}Á}Tr�k�F+R�VD��-���S���m^2����;ħh��]��.�NUɲ6!a=Ø(����4�:gB�	�Y�F�}Ȅ��U@�ĵ�g+ks�7M���m��J�vm�
hA�2���!�wT���rEm.}��B��~X�hEB�������-o��C�/��>q�$.��e��l��NcX]�Ln�$_z��D����K��"����K\v�e�/�ـ��^{ ��W���דI�B�
&<\�1�
�ۄG+���<^�0��v��'���b�gZ���� %l�w�M�!�%w�:�5���Ŧ�X�򢉲�Q~d�n����۰�����>,�@��q��6KN4)���l�U0�I�ATP=Bܠl��!k����GP�R�c�@��>�f�nҦ�*�Y�}H�2�qQΝ����O���q`��MK� �ʈ[,�o�A|Sq��}5��+#�6����U(��!{~B��c�8N"q���p#~~�(I��n�8�5Q���ꄈo�JdQɠ�ʖM�����^7p+��^����ȫ[��ݢ���(+"�"���[�����6
���d9������,���RG����
آ=ǀ�)j���J���BH�관P�;x�����mdDѡ^�M�B'��:LS1�^s�:�q:���,EORp�����k�ǝWC������u��k�-�g=�+����im��'*z7<���in����Wm��r��o�<�G
ڷA&�#��
�ݏiU���z�
V�k�&�qw�Iz-��v�=cB=����8;z���O�*�=�l�]�ތ_�Mv}�{��I���� �n�H
�g�g���}@׫��2:m�3B��1{�ߔ&^���_�O$<�h�3��:��$�A�5���i��2��0HI%�f�K4��}��[E7���^�5y��.�Λ�ƿ@��L��ꀋ)ko+����\�KAs��yY�sLD�*
(>�C��j])���ڟ���h�A锵��SB&�R��?4����ғE��-\c�4�]e�{鶿tW�@�w6�[��r��}�`��6xZ���7�)����`>�vm��p��6j��D�a��6i
6۞hۢ�8���Cߦ�z/�t�ظ�[zp���m7hO2�vK�׷��r����Ծ(�t�Sd�a�o�L�N/G��=�
�N��K��[M�[�s�['���G�)0����9�36h"�W��5c��}�dpTߤ="��=��w��N(ƥ��C-T.!��j���v�d���O�k�{���}�=7��&6�NQ7i��։����#�@�%�ú�jDA�D�
e���1���6l�)ý��G�T�q��,�ug�Xo�����>c1���v�UjԎ0ɰ�y}�dS��UV�k�*�TZy�x�y���dSH�K�P�/��ahou���5^�냂@�>�����V1�U�����4N��źL�Ī�����'\�G&Q!y�v�D��zmf=7�l�eM��v��
i���,�c�[[v�S��v�A����&��E~J�1�Z�G���>tM��W�H}�F���ª�޲ZUF����O-c�> 
�f�r��'{��sQl-��#�0���Z�5QP}�>!]"�Ў��AS�w
_̡{bFۧhP��%NTZ/vZ��!��,����j�����t��(���s�_\CѶ�p�)Q��5��X��
Wl�ο��@�>p����"����7�t��j��J��t��G+�-v�-���m89��/�ա���_�����[�\m�]�"�І�׷�[�-�#C��&c��@�Wi�e,�;f1[|ݖ�V����}�����]ey<Ȱ�����kZg5�ogo��'��s��i�6��d��0~���h����i}��e(
��=�ґ_�!*t�Y0�#G�iI}m�"���DN���A�ja,d�i�킁w �wc����^L��,2�ޭo����^�.�8�bk���y���]m*�v����n4n4-�?hȾzԿ��+�o���uU��x�O��_�����8�άKJ�wB)��ZJ)��J2�h��\1�j���產3j�`�秿A��r���)��rIKf=����L�6eeV=����b�H*
$Ba�O쬭l9_��0��d�>��1���ߺ7���;
�:�ӘMB�|p���,gl�a"y�H�"����al�|�|�H��l&K�υ\6_<�]*�
�����%%�,�r���Յ�/���g���~t�B2�.hJQɗ����~���F��"�4�,"W3��9���T�Rҙ�xV�a�>l@U��8imYYʇLT�4��"�sG���'��6��K�����T2��N.*z�^	_�`-E�W)�\�JI���J>MT�^g�(�K�WJ3T-�,aR[�%��˅!$W@��3�Li���2r��;�Me��|2�ɔ�_wf�i�|�f����Ϯ��"���ż�%�˃޴ޙI��z�a��sL�9�
E�^]-,}XO-̔V�
v,�܃^M]Χg��s��zf�ڢR�])`}��P�8lK���P$Z	I�*�B6YR�-ȾS��R��(:���2PQx<����gI��;����]ʤ�����s4��2R8N��<
W1U�e�f�Yd>��=�l�3���:= 2�%��.�o�2il����'T��$SgY��7-�G��p�7�bR���
T3�����JAI�F�K%5�D>u�PR�d~;�_q�g
����E���0��jv9����L!��P��o��QY�/�H�3����#~�ר�ר�k���ʉ��Kb����{D|`�Z��r�S��}XY2{
�?`����gh�-��ת�sё咺��D����I���-+}����M�]B�VƔ��$���X�Z_�
Og�8Y���ޣ�l�&��zWgȋJ��i4H/�IH�!j4��q��P�[lj�oL���ZQ�P.�|���\T���bL=��К���&��;��k,V%�ҭ�K�X:XcT�Z�\��l�W�T���#�A��qX[�cZr��JJ��s�L/c��C�U��޵T=�̟C���|Z�@�^��\���_u�_�!��W��1����҆�A#�^O�I���%n�iLg�+U>F�"A]D��jSUm�|���k�M��m��Lq9�%�Q��y\�b�ʠ[�P���Y]�qMf����"Ë͜�*��q_��qh+�jRK_M5ւy`����`�d~�ZY��9�A㾸�nC�S���o��B�����9~���T��i�[5ZRRg�_����7�yL]��*G�oĝ,f�h�j�q�Qpa6��������ƲƸe������k�h�,��}�ЋV��_�Y�ͫٗ�|y#e�䄱�y��LeJ+{ֺ��)d3yEHѐ��vǫ�Ƴ#9�kZ�4���D�[�x��<���/��Y�V��/�f�u����/Y��Ʀ_ 0��M�˧��2���Qс�g;�.�喡��YD_��`�A��N�����e�!�7�R
3hQg�7��_C�6�,%�L�3�	D|�D"6�"��'���b��` �'&);����D"�NV�{��S�F+����MyY6M*F��P���
V^_M<�;���[w��}��X�:?#Gz��Ӕ�Uy
���V����Y{_u�<�\R~�Es�er�.ū��Wͯ.�_]4��h�E]^���g��e��WU��%��uawm˸Y�PW�W�麬I]��~��,,K�`�Gp��E�\{�P�f�0"�X��2 �C��P��q9�"�p��F��?
�"���ţ�Dm�:��|
Z���.mq)�'���Ee2��.�N�{�jh�&u^m��5rH:�l|D�nw�Qo�9�?T^fV�r����q���Q4c�d���P"��B	-��X|Ϩ�Ey"��D�A_,���F��Alz��c�0��fX[ �y��?1\@������U�p-'$
�8m姶�j��v_W?�kf���/�B	�9`k|�x�iG�������`�8��ф?�u�1=����/���G	�F"�p4�#(�P$��B���`���A�/�l�}+w#�o�u!��j�T�:�.���a$Z'��5�`0�6���z�䉰D< ��D(J�C��C����#�@�.p-M����x�ˍk|�����+��l�:v_�0Ncִ8D�h�Nӭ�E�����`����GG�|
��y�2#�g
,�d�mD�Y��:�Sj�d�)�x=$:Urл �=ь�P%b���,ZDXu�i>�X>����Q�i��jG���Y��Bl���J�3�?z@�,�l�P��? q�O������ͯ�{��ơ02?̄���W��Q�l�m�b�@{+7����8���D���C�~֋�!��BD&����U�4K �h���:���s^�ј��QO���4�^��)���`YT�/
ƫ�
���P��X�r�|Qv��T�ƜMo+�"8���/�������ˀX����E��sj5$BG-�Y�BiD�P��ѵ��}z1RJ!P��fRho�#Iͪ�l�,>l����$ixt���3\;zu#z�k�)ަ�������S���1_���r�O�!^]���[1UG\�ASy^��W��O �V�-z�)���VW|�^���D�q��Sg&[�I���=��Pbﵡ��
��%�2y�I㗹�ϲ�14�{��"��<�%�<z��LѣoCyzx>�L�=���%mY���zS��~+ӻ��X{��b����J�ư�(�ۼ��^1J�W�U%�S�5���/kߐn�-��g/�D��]ǸhZ$p�4`���Vc��i$��Κ��Z����83�b�G�=�3�Y��*�(v��d.�E[���N�^�d�S��}�O$�Ԓ�/�(֌��X�1e3u��~k��Lӈ81R;-U���k��xƯb����E�tL`(P����Ln9���c�k�Y]���*���Pcs��&�닡��U�R�*]]e��9�����4�۵(�q<���8��K���[;0K*=��lXֈ���Иlz*e
C2�hM�d*��ԪH�]�3�}4T���o홑���Z��g�ԛ�ϲn7F�W��u�T�Ұw���!�H��,[��mi��P�r�c�Y�����H].��Z��6�G�v`�x�b�����;�+�!�S���d!�}7�u�j��EE;��nr9[�X+�*wm�#3˙���e�Y6L�ֵ�L�Zƹv�Q�&�u��Hb��r�#��s]MVJ'�<v'o��{!���Y�}�@0O�b�X(��G�h����&������BX,N,{&A_<Bt����a�}\N'|�p �L�h�g2��"���C!D��h��[�H<C`\��x(a�
��L�|�h4�D��\ DX�ɐ/�ʢ|gŸ V=�a_4B�q�#9���h{=�aA�kF�Ec���-
D�S�^Y7�����A��n#F-�����Yx	?5t0����D$&Z��F��c-�P4���X���3V0�ģ1�f�Fd�O���͉ƣt�fҬh�l	�l7�+��Jb��IR��(�Uz�k�e�x���1�}���r�f'Dzil�+v����:"�o��wޟ�������ž�`��6����Z�"�[;���vr�u��M�������?a��L�C1o��@��Wnk�w�dw��NJ���=�E��oG��n�_%ۢ�;�U�_zi����n�
�`�O`�	�^�W�I�["��^��]~W��d���{9|�|����~�f��۾����P��;���A;����/`�7�gN�����8���i5���or�,�?n��6'��)��N�0��;���Ծ�?��/r�w��t��I��w���	�<ĐO0��;���� �wq��� �S?�A���a|���=�w:��j�>�a��:*���בL�����z�m؅�q}��Ϲ~͆rp��w��$��;����K�{sO�Nw��u���t��	�n��t7q���=n��f7�{��x�gȣ�/H`j���p#�E=1R#�jG�s�t��Y�A��2�F�A�K~�������s(��.S�W>�a@����L��g�Y9�S��C�1?&S�S��<��W9���f�K�H>���6
ݶz8�qe���mT�4��8��!��ٍ:�� M��b�[�1pa�/�Ԧ�s����7��QO�l¶l�!R{��(ϒ���nDY���L�
��i�<��o
����P�="��20��B-X�9=5޲	����t�����z-�~�����6����h�)7��47�����6ƒ�D���_�S��-pϠH�Zs�|�E�VZ��a���TVOy9����Ԉ_���+�����>7��S�������zj1w���ʵ�	�𰞺����>|��u�����o�n�=p[P��ż}��S_��<���'�>�!�z���3z
�s8^�S!�{!g�"�`?D�A=�!�o@��S��7A�����߆����#��?�Sm�8?�S���S�"�p�p|�Т�#pE���9]�3+L8hޘv4���c���뮫�5>��"�y�q�F���;��?��A�3|��j|ʄ�l���`>��M
���9����8|���r�}�� Io����f��=~�z��#~-F��K��|
�~�7��p~=O:���vx��]z�Y����I�R�pY���/�U:��c
�����K���J��q�`���c�aǭNK��^�8��3ҳ�?w���W8��4�.%����HS��L?+�4)���8�37��ں��.B����zX��4�z���2�_����#>�m���'1|�uX��p}Vr�/��$m��H����
ƿ��W\߆8:��u�+n�p��������4��rr!	��ܧ��:_�Z:?�<�:Fyn��Ou�D�#�t9�;���޷0L�����k�|Dtm�x�	8��'�\׀|�kم���;��]������X�a�'���'��'�N��?��aR���c|w���Y~��$��	?#ݫ�����f���7�+2k<�>�J��n����w!$��:��t?�o#���oI�Y��@��o1������.�ܟ�p�{U�(k/I�?˗�[�
��[�i��w�gܧ�Tt�T��Dt�&�w"om���7�;m�ˏ�W�q���y���ܛ����O0|J�O�]�A�7 �W��o�g��pw��p�o����E�g�i�û1�
���N�����1ļ��C�3���–��g��Y��Z���f�8�`����a��������Z(�*��%�.������dE~��	�S�s�_�/�}�ې��Vۋ8N���K�_�����E[�_"��X;X`U�B��;ja��,�r�q�����`��^�*��ћ3��,)��fM�|1$X��Y��3n�eus)qs{RM��4L�͗d6s�BoR�T�/UR5�-��!舶XQӜ�	�b���>���L�
8�_J��Y%=~!�R�\-�P�����ڬ:v|
h
�#GP!4������8�H��T�z������29�9�֝Z���	t+��p�w�
Į T�u���t(o�u[��쪹�]Ҕ$m#�X�XH�RK�F�5�+�K�H�A=R��(���,���9�I
U�@�l�L��R)���\r��)��/c�󴫉���Wp"YR`n~yaAє��J	�f&��
�+�H�S��1�P��rMSl<O�<�����<3�^���L�,k��)&��䅠��WE:)hH�NL))��E�+Z&c�$��{�բ���Q�T���j�B��Z��9'p55�����M�uB��F��)z��l%bwj��2Ƃ7L�G�ZV����
���]5=g��
�;M�&�����HҊ��%�.w��4��R+b��R���{i����
%g�]�×�Q_��!(�E��\3����AAτcى�x�/ٝ:g��l�rnA�X˦��&4}SX^�V�&ov��7�5/b��
f<�w�Y��4��
<;I�C�sb������o��YUl�A�}"�O�Ws�l�^q��ܝE��S(�d��&�ʺ!�LQ(��1,��ZT-*"�n�.�
��3f�@N�ȼz�F�Rȑ!=c��/-���C�ֳ8����v��_�Qt�G�;�fJX��h���.�ö6E��Y�ͪ��C���f`��S�z%
+��655�����}�m�.�	��f�\&���:���,r�r&]KYim�Q4S5�z�c��b^-�2�"��[LVT%`�Mt�X�,	
�kVn�">�d�8V,���Z_�]]���N�s�Ǖ�prR��6�:��ײ�eu�����A2�6}��v��P���.�@�(��)8��s�/�Ƿ��ܜn���A8>/�-���JK�"h�����25���5��9�-Z/��UW�
���9�ip�S+z�e���,�#b<�!8Cj���G'��Գ
T�L��	6�9�Gy��F���6�|�,C+g�
Cd�:?�SDd2==:~�kh�h�,�?�c�Ԗ�(�M�bt�Q�Gwe���r��K�-�L�V}i8aSf�����8fR�&̴�T;GV��M�U2~@�����P��0�%I.���)+B#i����߀ZO��z��jf?Of�o��<N(��}�(�q��qU
aVCW@+��;����ĭ�>-
1�3.�.-�"F
y�1�Sm3�D�v�Ԏk�袯P�&�Ѵ:"F7�ƅe{m]vC{���>5���ljr�T-����t�b��c�e��I�L��Se7�@>J�/B��X���g���0�'!��]&d��fW�M�eDU�JRP���b3
���P3�!ߒU�im-�ҧN�*u�|.�e��d�N.��Q�=��9^�	{*��Ų������N��V�)l�l;���+�E�-��숌r�3)4èk���i��+��1���5��аd�� ��Y�|Lɢ-'|�uf.���j��m�F��aY��0c��>ɕ�N�Ǝ$��+b�P�w�2�eZ����^}�7�"�F�;�>�xl
���@��5���TL�1��q�*��o�7C
TL0��a8R�38�.����3�+%��!�y�p��#�`�N"|	���,�l����xp��k'H
i��2>8��9�����)�w}�k~�z'1�V��^U�BGΤ[��i�&��,1}p���F0}�~Ml�Q���_9�5�PQfg	�$�"s�!|�sJ,5*	�zm��2B�J�$+����qMDaV�Ϛ|e�D
�l3�dY8�9�f�������h�昋*n6�c���T��4fIc[����@+Q���l�;�eU0�C���yT�<��
\�$
��u�7�Pbx���nP����;�=��h�������ƥ��2Ą��"��U&�NT��fw9�h
�m8�n!�{��}���ҋ�W#H�(�%Hk�b�M 9n�Q#u��1E�nȀ�ִ��h�2J4m��C��L%�%ZTb~a�A��Nh7��ˈG��
���]PxS�R�]�\pX��ߊ4z���w�x�u��M�Ίq��&Q��w��А� ]7�u�]����1�;/H;��/���[F�1�V��D�U�pc�UB˽c�a�7��p��0wil�
�,
����*Z�ݨA�k�4G	���?f9��(�f��K�C��EԆD�G����0V���ܒE/�y��7].����!KOM}�F��!�JUEݺ ����jT�})}.$����ʗ{�K����K�zن�5F��H�RF���xnM�-���+p�h���zL�z7�X�\��)�y{��4$�,ύ��Obz�9#}��	��-Э��G���w��8?)����O��ٟ����C?�����������]��6��G��{\����V�$����=��
�;��{�;��~#��S���vW;���$��NQ���iA�����mmv�
CLH=�~�3!.S�t��Cr����>i�R�K��m-t�΁��Kr�_z��T�7jϥ�����=��†8�?��y��P>��h�o�
@n��l���ڐ�K_��6�
Þn��_E�u����
;m6
1N%_��
��g'�DxRg���:/�e^�E��̊V�_�`�"�����B��[��ޞ˭�
p�i(Z�w�����ӊ����$�n[gH2��J�_��p��a��u�0ᾼ��!a�
kCd*���-����/�!�J�w2��}qH��vL]�F�䢌˻�'Qf|e�^`+:{.GC�������p |[�6�]�
�>ގ
���<N�P�m�uQ�q����EJ����h����6�����{2����v7u��)����\���b^z��r���ey�Î�u�(���6�.JrD�M��Ġ���>�����!}ӎ6�\��p�}�n&CT���H(�G���f�"��-��$�O�7�;�%�U]�{ư�
ȫ���	�~�%w����%�O�����P8Iœ��C�T,���P2�NG@��(@&�2���ɹ��^���q��ռ��7�D�p������'���#'f�f.'�3��߼�7��/�����gt�ڪ-�19>3�ϖ�™bY<g�{����F+�B��#���+�@��KOփ΍��X6K��ŝuE�s��n��W?�V?���p�N����1����r��6:py
}�9�q�<pn���G���a��XO�������1�:�닣�Zi����wq�Ys��x���-�mDc����W����8~�/�^0����}c5J[.�v1/V��}�c�=�z<�W�OP*V�b�"�,�n�Oh��{Ծ��Xu��V�YbmL��{T2�7ƾ}��]��˵�>�Y��rE�r�7��G?���҄�g�������,�݌t��\d��쇮p��y�{я<�1VOj�0��2�_������i�i^���/��־��sTҫ��>�s�#��&Z�H�VMW+���_����������PKx�f@P>&���AppManifest.xamlPKx�f@()��.�SilverlightMediaElement.dllPK�0PK�%"]�hFh(h($sudesign_audio/lib/controls-blue.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!-- Generator: Adobe Fireworks CS6, Export SVG Extension by Aaron Beall (http://fireworks.abeall.com) . Version: 0.6.1  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg id="controls.fw-Page%201" viewBox="0 0 144 32" style="background-color:#0000FF00" version="1.1"
	xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
	x="0px" y="0px" width="144px" height="32px"
>
	<defs>
		<radialGradient id="gradient1" cx="50%" cy="50%" r="50%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#f2f2f2" stop-opacity="0.2" offset="100%"/>
		</radialGradient>
		<linearGradient id="gradient2" x1="50%" y1="-7.8652%" x2="50%" y2="249.6629%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient3" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient4" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient5" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient6" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient7" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient8" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient9" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient10" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient11" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient12" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient13" x1="40%" y1="-140%" x2="40%" y2="98.75%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient14" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient15" x1="60%" y1="-140%" x2="60%" y2="98.75%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient16" x1="50%" y1="0%" x2="50%" y2="298.4375%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient17" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient18" x1="50%" y1="-200%" x2="50%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient19" x1="50%" y1="-200%" x2="50%" y2="110.9375%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient20" x1="55%" y1="0%" x2="55%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient21" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#0000FF" stop-opacity="1" offset="0%"/>
			<stop stop-color="#0000c8" stop-opacity="1" offset="99.4444%"/>
		</linearGradient>
	</defs>
	<g id="BG">
	</g>
	<g id="controls">
		<path id="Line" d="M 98.5 7.5 L 109.5 7.5 " stroke="#0000FF" stroke-width="1" fill="none"/>
		<path id="Line2" d="M 98.5 3.5 L 109.5 3.5 " stroke="#0000FF" stroke-width="1" fill="none"/>
		<path id="Line3" d="M 98.5 11.5 L 109.5 11.5 " stroke="#0000FF" stroke-width="1" fill="none"/>
		<path id="Ellipse" d="M 108 11.5 C 108 10.6716 108.4477 10 109 10 C 109.5523 10 110 10.6716 110 11.5 C 110 12.3284 109.5523 13 109 13 C 108.4477 13 108 12.3284 108 11.5 Z" fill="#0000FF"/>
		<path id="Ellipse2" d="M 104 7.5 C 104 6.6716 104.4477 6 105 6 C 105.5523 6 106 6.6716 106 7.5 C 106 8.3284 105.5523 9 105 9 C 104.4477 9 104 8.3284 104 7.5 Z" fill="#0000FF"/>
		<path id="Ellipse3" d="M 108 3.5 C 108 2.6716 108.4477 2 109 2 C 109.5523 2 110 2.6716 110 3.5 C 110 4.3284 109.5523 5 109 5 C 108.4477 5 108 4.3284 108 3.5 Z" fill="#0000FF"/>
	</g>
	<g id="backlight">
		<g id="off">
			<rect x="83" y="21" width="10" height="6" stroke="#0000FF" stroke-width="1" fill="#333333"/>
		</g>
		<g id="on">
			<path id="Ellipse4" d="M 81 8 C 81 5.2385 84.134 3 88 3 C 91.866 3 95 5.2385 95 8 C 95 10.7615 91.866 13 88 13 C 84.134 13 81 10.7615 81 8 Z" fill="url(#gradient1)"/>
			<rect x="83" y="5" width="10" height="6" stroke="#0000FF" stroke-width="1" fill="#333333"/>
		</g>
	</g>
	<g id="loop">
		<g id="on2">
			<path d="M 73.795 4.205 C 75.2155 4.8785 76.2 6.3234 76.2 8 C 76.2 10.3196 74.3196 12.2 72 12.2 C 69.6804 12.2 67.8 10.3196 67.8 8 C 67.8 6.3234 68.7845 4.8785 70.205 4.205 L 68.875 2.875 C 67.1501 3.9289 66 5.8306 66 8 C 66 11.3138 68.6862 14 72 14 C 75.3138 14 78 11.3138 78 8 C 78 5.8306 76.8499 3.9289 75.125 2.875 L 73.795 4.205 Z" fill="url(#gradient2)"/>
			<path d="M 71 2 L 66 2 L 71 7 L 71 2 Z" fill="url(#gradient3)"/>
		</g>
		<g id="off2">
			<path d="M 73.795 20.205 C 75.2155 20.8785 76.2 22.3234 76.2 24 C 76.2 26.3196 74.3196 28.2 72 28.2 C 69.6804 28.2 67.8 26.3196 67.8 24 C 67.8 22.3234 68.7845 20.8785 70.205 20.205 L 68.875 18.875 C 67.1501 19.9289 66 21.8306 66 24 C 66 27.3138 68.6862 30 72 30 C 75.3138 30 78 27.3138 78 24 C 78 21.8306 76.8499 19.9289 75.125 18.875 L 73.795 20.205 Z" fill="#a8a8b7"/>
			<path d="M 71 18 L 66 18 L 71 23 L 71 18 Z" fill="#a8a8b7"/>
		</g>
	</g>
	<g id="cc">
		<rect visibility="hidden" x="49" y="2" width="14" height="12" stroke="#b0b0b0" stroke-width="1" fill="none"/>
		<text visibility="hidden" x="49" y="17" width="14" fill="#0000FF" style="font-size: 10px; color: #0000FF; font-family: Arial; text-align: center; "><tspan><![CDATA[cc]]></tspan></text>
		<path d="M 55 7 C 50.2813 3.7813 50.063 12.9405 55 10 " stroke="#0000FF" stroke-width="1" fill="none"/>
		<path d="M 60 7 C 55.2813 3.7813 55.063 12.9405 60 10 " stroke="#0000FF" stroke-width="1" fill="none"/>
		<path d="M 50 3 L 62 3 L 62 13 L 50 13 L 50 3 ZM 49 2 L 49 14 L 63 14 L 63 2 L 49 2 Z" fill="url(#gradient4)"/>
		<rect x="49" y="2" width="14" height="12" fill="none"/>
	</g>
	<g id="volume">
		<g id="no%20sound">
			<rect x="17" y="5" width="5" height="6" fill="url(#gradient5)"/>
			<path d="M 21 5 L 25 2 L 25 14 L 21 11.0625 L 21 5 Z" fill="url(#gradient6)"/>
		</g>
		<g id="sound%20bars">
			<rect x="17" y="21" width="5" height="6" fill="url(#gradient7)"/>
			<path d="M 21 21 L 25 18 L 25 30 L 21 27.0625 L 21 21 Z" fill="url(#gradient8)"/>
			<path d="M 27 18 C 27 18 30.0625 17.375 30 24 C 29.9375 30.625 27 30 27 30 " stroke="#0000FF" stroke-width="1" fill="none"/>
			<path d="M 26 21.0079 C 26 21.0079 28.041 20.6962 27.9994 24 C 27.9577 27.3038 26 26.9921 26 26.9921 " stroke="#0000FF" stroke-width="1" fill="none"/>
		</g>
	</g>
	<g id="play/pause">
		<g id="play">
			<path id="Polygon" d="M 14 8.5 L 3 14 L 3 3 L 14 8.5 Z" fill="url(#gradient9)"/>
		</g>
		<g id="pause">
			<rect x="3" y="18" width="3" height="12" fill="url(#gradient10)"/>
			<rect x="10" y="18" width="3" height="12" fill="url(#gradient11)"/>
		</g>
	</g>
	<g id="fullscreen">
		<g id="enter%201">
			<path d="M 34 2 L 39 2 L 34 7 L 34 2 Z" fill="url(#gradient12)"/>
			<path d="M 34 14 L 39 14 L 34 9 L 34 14 Z" fill="url(#gradient13)"/>
			<path d="M 46 2 L 41 2 L 46 7 L 46 2 Z" fill="url(#gradient14)"/>
			<path d="M 46 14 L 41 14 L 46 9 L 46 14 Z" fill="url(#gradient15)"/>
		</g>
		<g id="exit">
			<path d="M 42 22 L 46 22 L 42 18 L 42 22 Z" fill="url(#gradient16)"/>
			<path d="M 38 22 L 38 18 L 34 22 L 38 22 Z" fill="url(#gradient17)"/>
			<path d="M 38 26 L 34 26 L 38 30 L 38 26 Z" fill="url(#gradient18)"/>
			<path d="M 42 26 L 42 30 L 46 26 L 42 26 Z" fill="url(#gradient19)"/>
		</g>
	</g>
	<g id="stop">
		<rect x="115" y="3" width="10" height="10" fill="url(#gradient20)"/>
	</g>
	<g id="chooser">
		<path d="M 135.2346 6.1522 C 136.2551 5.7295 137.4251 6.2141 137.8478 7.2346 C 138.2704 8.2551 137.7859 9.425 136.7654 9.8478 C 135.7449 10.2705 134.5749 9.7859 134.1522 8.7654 C 133.7295 7.7449 134.2141 6.5749 135.2346 6.1522 ZM 133.2735 1.4176 L 136 4.0054 L 138.7265 1.4176 L 138.8246 5.1754 L 142.5824 5.2735 L 139.9946 8 L 142.5824 10.7265 L 138.8246 10.8246 L 138.7265 14.5824 L 136 11.9946 L 133.2735 14.5824 L 133.1754 10.8246 L 129.4176 10.7265 L 132.0054 8 L 129.4176 5.2735 L 133.1754 5.1754 L 133.2735 1.4176 Z" fill="url(#gradient21)"/>
	</g>
</svg>PK�%"]�/W�ddsudesign_audio/lib/controls.pngnu&1i��PNG


IHDR� �R�sBIT��O��PLTE�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������yyyxxxwwwuu�rrrpppnnnmmwiisiiigggdddccc```___^^^]]]\\\ZZZXXXVVVUUUSSSRRRQQQOOONNNMMMLLLKKKJJJIIIGGGFFFDDDCCCBBB@@@???>>>;;;999777666555559333222111000,,,+++*****.)))((('''!!!     "�-(�tRNS�������������������������������������������������������������������������������������������������������������������������������������������������������������������������o{	pHYs��~�tEXtCreation Time11/13/12��:ytEXtSoftwareAdobe Fireworks CS6輲�IDATX��V	[W
&����D#�H�V��[TH��(�*H
Z�&(FqAYTԀn��T��g��{w�L��+��z�/���ޝ;'o�c�)�d�h㡠���8�	TTc$�����|\1������Utγsn��k0ֈ��N��j!�zJ�o�[S�]/�?d�o���8����v:W�oN���ӹG%{��X�d�=F���#87�)u,ј8���Wn[�!;C[�)��~\����6�k��'���[�'�5�+q��g+"خ�f2��/,f,l��	��r��
�� '�mk�m����3�_����q�V�#BQ�n�� �0$�s�ݕׯW�P�vh!|�yL��� s�`�~ue��G��&�ЏuX��s��SJ��Vb%����Q��+�_ԩJu��P	C�^�M��^�A����2[,����t1d;����dV�Z힅g4����T�PM��6�n�䗨���1/��ˎh��,��m��p��x����.���-��N�QB�����#��ks���`�I0x�g�����*Ľ�S�����R-��]��������B�M@B�X�lٺky�zmU9����	�	� 5�I��-Q��f/�{��ü����B(��D�P�Ʈ�#^��t�@3@3F�:dŻ���ލo3AT`�
4���a�2�$�/��� �zP~(ӼE{l�y0A2"�ɨU������-�ťUQ��'��dt�"Ad~�P��!�J�W}���a4*��D-�#D懂�2�;����r�z�Y�d��4��׆HR��O�w
"�CA�CU�=5����J^D�rB��~� 2?t?�r��h��hC���1�������sR������M���L�E42���.�
��W�/@���Z���+F�nj2?�~�IO���0��-�c� �h����^�-H(?tr�b	�j*�c_D����h�F���5�̃)F�BR4i٧�����S�~|��"D��IEND�B`�PK�%"]��)\����,sudesign_audio/lib/flashmediaelement-cdn.swfnu&1i�CWS��x�̽y\��~�Y��}SD}7��Q�Aٜ���q``t��Y̊�-5�\2�DCPSK3�$�\�c�e�����-��������|>�����^����s�=��s�=�>�C�Dp��̈́t��gO�e5��U�Lm��l�C.e@��^-���9sf���8��">qĈ�	I�II��k�3���f[���@k+���F���y}��aO0�٪���h��j�&
e񬉭b�v[|b\"4d(��[�Uz�h}u��X�������*-e�g�k��r��V9*���ֱ�&v��`)e�L[�f��c�̆vAGw��֎+�T�W[-G�TMa�UhՎR��V�ZG;��͖�\�T�Sfe�vKg�����
������2we��a<�
&11�IJH̉A���Ѷ�8�d�]�"�>�(����G �0���75��Œ,ͤj�e
F���ˆy��Vr�?�
<���t�0�:��?��>���ԯ��À_	� sx"�ը7�l���"��奈���O	^|'H�W7������z{^��.~]\.�,Y.e��y����S6P����g�O�o�o��3��}w���w���t�c�Ҁ�����A�����U�-�����	��;�/��4�t��ۈn[���~��°�aa�������u�q�k�?-������
�L%=�yp#��id�y`�\�lʽ��YP�x��yo�v󢷅W7m{v��ݙ�������ǻ��i�d��~��k��k��6_���V��r��Yߤ��w��Qw�-<0�ú����(��w���q~�h@h� [�}���<�%����l���?˳T�	L܈���G����%q��ɿ�f�u��q���4�n,�ذ���yߎ��s��h�~-}"�����Ix���z}{��m�M޲b��a��mT��G4�k�&6�ֳ�&�R�4i˂��Iץ�ޜ������'��V�_S�o��ף#5-��xO�ϊ�ʖ��,]�f�ܷI��T�ӧo��N�xF��X����z���˭-�Mm������'׶��������t��XxF\����K*��^��Uk��%bWN����ؔ��tD��B�u������<�.�;���X�z����X��EϏ��y�
"���x�I�ȁ��--��II���}S������ˢ�g�4�H��dx��~�F֟��xm��3���􏝄L�_���Z�7_{"�6�X���x��Si
���O�%t5�.���}�|ٷ���s�c�w6܍�F��^"'e�}vL%̵��|49��t��=qt��, ��.� ��J��E<��h���%�w
�����!��~S��O��1$��K���}�BE=o�m/���
H�w�>�w��k^|u�V|ܱ�5��-�ȶ�Dhb���_,>��S�Jx��5�٠��	�qqc��'n8|��}g�uI�3�m�&���j<{~�Ѫ���_�2uʔ/���o�Ⴧ�V��Ib����[�y�ѠkD�]/b��/�m%�J��<1~E�|l3�,ݰ�G��������k��['x�x|�H�5-�S�6!�4�$�����Z"ȣ����Ϩ9��0���&�Km�[�Bm��>[?�xCc�~,����im�Jv7�m�S|9f�cQw�@퓙
����*�Ϡ⾟�S�QHȪ	��S�E;������W�M�'���@c]Q���"��#t����������ˁNJۖ��`s!fZ~��#Æ�۠�K
ק�Mz-��4!����ܦ��w�m��� �?�~�����w#��a����_�/������W�Z�[�-���Ǟ���sr兾�!�o�i�|�m�?%�����ɻ�'']�x�|q�}Ȁ�������=�N��72�ג�ķ��~?�����w�ތ:+=�z�6�Ւ��>G��ވ���J_p�����׉�Ͻ59��eu���]?��C 0��ܘs>g�܆���	� Zm��9��
�M��o�}��4ϗd}@x�<�;�+���s߱�	=�5
���
$�_RL����������?�v�K"����>z�OŸ����q�I�����
[o�g�H�˧�q��e�'���6^ϳ���mݾ�5�H�6��3D�W~�'�r�u�GB�{b[r��k�W��>x�t�١?-��ڼe���̭>=M�e�T�@����)�s�\�����47�������5u�m���2����9"4���i��l}���$"m�A����O��!k���7s���<�������e�Ip�m"8�we���S�EM���氕r���%��z�&+��-�)�̗�ͷj�ǀ,�&��pxTچ����F/\��{It�T2L����]�dЮ�k�g�o=1dk-�jK��#[�a�|�6�y��Y��g�������%�\����S.��6^�ܨAo��[|��tn�ȗNj[�c���ȖB�-�x��3K���$�@�F�/y	��e�{&5>7rڢԟ	�,�x�7���a�A�DϟJv�>���Id%�̯��}r�a�W��]��i��j
����U�ks�>��>�-��z��|��+ϥ�U�I�����>.L�tjѥ�K/�hp�sb�/'� �a���4~0m��>-�Z�걱�tZ�yg%_n}�n����U7g�ܴ}TT��ξ�K�����T���x��Z��ZJ��d���YOkz��4݈p�daa��׫ݨ?�٢O1�#������5����{��E��:腷澼�W��V7)��,���eR��-�	/eũ]5A
D<f~���5ۚ�O�0�Ͷ�Z��A�� �Z}���V����m$��ۢ��N�~E��xl>L��Z�%���gg����"=��NӬ.oܹ$xP���x*9�)Sf_$<98pq��\�����QQ��%�`"w�S���R����b|ӔA���9k�����S�~䗬%�OkKY~YY�o��d��W"��R�-��Y�"���'W/��?<�ƿ��T2�T�p�"o};r��$��U�;H���=����:��]�x�p��������%�xS�Zȫ�J��g�ȩ���'� UC��?Q��J���~���4
D��zԸ��M~`�
B�~�iW���B�n-���(���h�K����M;���L

������~�+'z�~�z[�<�, a�z����+ E�*�Q2d克$�����7j_-%��0�Ʃ�/��*'�1M]ڿ.�c�l�gN����>�-ݽ�~��9�M��=W-���o�C>80?�XZ��K�e�86�����SI�ҭ$t\T���	�w<	늭�E-��)!�T2����6��������Z+^����̡ƭD���в�F�٣���m}OC�u����������t��ZiH�N�2
�ޜ�yyBc�$f%"�rmwQܡ���7�Sh�J��{^���H�}��jt�)É���n
_8+�˫.TU�g{�����0��SS��ehH{8!��_��}�ˇ�'�=�2/����yՃ*�?]@=��ѫ��#����q+k�/c��O��8�g�Rʱ��'G�"����xaE��M���/�\!���>N/;�ѿj"z��L����V���^�lv婼]�k���>�lq�˜����i�˫'�#��T�c
�	�� �����{��3WL滍g���+��;C<��5�l�T�J川8Ӳ}tR˕����e�(O-:i��u�۵cv����
ҳ�N�s၏�~=܇M.��;��3�\��}���B��3%����i�����j�+%mK�y�ˉ��ձ%r�d�j����'ǻ����7	/6���T�����
�,�V�O�)�+��&�
	���B����&]����wo~i��y��Xf�oY	��7��,�z�*`�����_���y_"ļ=K�u	c�:wE[�]��Gˊ�F+yS4s~1�u����{/(3�+<v\�D�p�f�..q�z��x�����۲N}"�l����D!O��@�ثK^�=�~d�c*������'�Q��E��??��fF��۽Î�����D�āo7)��-%Q��7t�4u�ֱ�]+�Oxe�4�����E�Oc6o�0�D�v�kA-��ԃ�Ӷ��Ӗ:m?�WO>�iy�!�[��'��ع�=_Y8�u�j���9��b=��i{_=�XJҲ����?�MmY���9����-mD�CdKgl�r���[n�y��LI�A�,�^}�����7&��V֌�a=�X�K[�Dz_�b��E�?��O��~���𗼼���ӴK&�r�⁣��B�����۬Z�"�>i�U��&J��$
*8!5��h^�'�����C͟Ui�G��M�g����v�v�ʏo�z�|4ž�C�z��\�_�~�a`�i�.���Q
g>���ߊ7/��w�g�ϻn~=x����+^�����q����ڰ���7��6z�G=����q���^[���S�$2��E��i�/���Յ��S��}����"�At��2�"��-���w�_�y��\�=�"�f�ӈ�"�H�"[�n^�y�=�>c'�Z1�O�*:�Hy`������,z~ʪc�~C=�����>֫i��^��b�7Y�|��&* �[���*J�2L�J��7���)�7�i�tI@b��~��M{S��T"�m%�R��MO��4'�x�EH󱖭�C<�5���7�5��fɣ_�vm�$��6��…>-��o��M�qڢ����M.�~:8������ڕǟ���W ��Q���߲��Qo:�m�y�4?M�v��ˍ��+����)MK�ә�QIⶂ��g�>Ex��<w���&^o����7^�����k�XM���$Y����s_�ۿOܴq4��5�4�N�)oe�])KI�K$x��+��j#��SIjh�#
O�]�N���	ھ$��$l�'�Y�>) ��^��
,��g�9��{+��h��ml�L�"�����;!�z��}D6oL�n��y����Z^����a��D:��8^�~j�!o��Ɲ��tk~[�p�?��.�l�D<䵭38m�Y�煃#76�J��+�eaÒ��Itn=�D�3��F��Y�L��7�h�צ�9y�sKVo~��ƭ�Qg�/��q�B9�/?[�l^u�Ǧ�ݧ�L_����ʼnQ��
����/^��޾��V}�?{��ʪ�t	D��)�Ȑ�_�Sy�p�>~%Q�w��ح�p�‚��;��5��/�m�]���E~����S�Zzn�W�9���x����,Qig~����g�Y��')�M9��?�Q�����0�7��8�K��B�IK5����k>�W����_�h6-~a񅁫?Hj�S葬ڹ�r�ZI�j",����s�{���i��~ς����G���h�B��-8^K4y��Q�4��m����h�j�PU�W�3�3���Si�Wt�M�5�Ծ��yp��xiL�A����ZuR�,��y�V߂�	�7���c}ä-RiC��q<��6>��J��oȉ!�#w���tR��ӿ_��r�5�/���y{���7��k��A�M����$?����{_��CO���=,���u+�����'/$��%��	>�.�w��V�~u���L�]�d�|��<E��d�W����qbpޒf�܏Z����\�<0��vȮ��������;���P�H�f�gџ��;�����e�
2<f���\�:�J�Ba41�e�g7*<$�4��^��pxjA�ʈg5�6�ɾ�$K�,������w���%RUQ=����ƣ�B�A�O�[0��^������+�ח~��4�P^LQi�\S�O����_W�?�D��ӟ���T,������{Yps��w��MJ1�l���>�~�j}��*��!p�ϞDc}���!����j��M�Hp�T�g��j��)$h �i[U��f�)�*�=r���{���#��C�x�bž�۽�%����u��7&
���w6��ue�_o�{�6�����.�.�k���昔��k�ͯ.i&��
�n\�=<���s��*m�#����{�-+ތ\:``�;�^�ݾ��L����|]�M���rԅ����nh�G�,�UI=�;�oխ}�5�k!�Q76���|��ݫ�¯��R$�^�'-�A�]�ϲLy���NL������"=���q�g�W�];�.���/o��>�z���z/t��7��rO-���K]���_[�x�!5�>��ʾ�S
D}�T�����K2�����f�٬�ھ�~�����������\�����/�=�}��!0�h+��)��⿏'�\u��n?�g^�d��/���������[��cV~.�
����ON^���퍌���g��$���/FL�V^a�`"�j���>V��
�!��~]�Bh�?���	�ie���Oz�^H�_>��Q^M�׮�m�`���Cz�G&��@�[������Z�ǍC4r�Z�ݍ���湽�٨����q3N��<�4��H�ɴz�&B����뿫�}M<�ϧ_k��;k9�h%Dv��;��Dt�C��[�����V��.��G��ޚ!_������k���
�X��]A�.��=q���{�v��s
�M!'N-N_AHt!I��4�3��R5�Y/f�\��ϖ������7ׅO!‡��a.&ʞ�Q闾��5^"���'���Gz���O�[��H�穼mK�I��!����{�,~�wt�kAْJ�>�M��K�n\=���O���!-m�?<q�{�3jI(hrֻ�5��L�`D���q�jy=/����8�{�����/�,��r��C�	*?�f�;Q�p�¸?_[ybJN�޵�~�YrJ��)\}��5W��~���#����z~�+vW_�����{�z2I�R]�+���g�����'O��wj���I�"%�8�?i��N�[l�j�]Ҽt��F=O����b?z界

d��dĩci��νv`�B����=�������#�<��>v>sP�A�����7ƽ:�/Ē�T�_��Y���O��!�w�|1���'?�gm�������F\������ӯ6�}�)߾�����66����}󢁿��<{��I��W^�����&����C"H$�K���dH�H4D�lJ�H<I �$�$��dJ���d���dI!���J2�X��D&�)DG��2�1�q�'�l�y�4��_y2AL7�;Ƅ3=�^��a"��L3��3[��>�����J2B2B���,��;iH�ocXcXL�q!�a���<���-�I�p-!c4�d��� �1�\sΟ�q�a�
�Zl[C
��h�����	,%W������
�b��(���́%A�q���@\���O鍈M�����B&�z�
w��`���v��K�n�t
��ݙ����r~��g��[��n�4_CF���^�!�-GN����4�����ĥH׀
.�����+�i�ǒ�3�>��q(mJ��ơ�q(mJ��ơ�q(mJ��ơ�q(mJ��ơ�q(mJ��ơ�q(mJK鉰R��j`uPI��"@*��m�˱�fr2�A$�RD�(���XHۡX�X(�_��C��*��� ���B�"�)EP7�R��n	�K���%h9z�\�=�G=�Xt
�jZ��\�8.�]Nʱ���<($�"�h��Z�e�Z�UB���2����5f��lP�;côKX�К��`��3�s&�� �H{�C��úu$�!_�J��
D��}/q)`��`?�Rdk���<�I�t��d)`�
y�O�4���4�J�4���F��|:�O��,?ͧ�Lq)"C�}	)�Q��R�X�ل؊t�,C�e|j��ͷW�y�q��7S����f�
����+��
~�]�uW`]����t	`��0�q
`����n���"2d-���Z�}�ž֢�k�����Z�k-���Z�}�Ǿ�c_뱯���z�k=���j�<~#��q`��Fu�6Az1��K�x�&䤸�k1�ӛ� �<�f��@*M��kv3J�%�����s���i��!�(C+�� �{o��[��V�{o��)��V�=�V��f����\ww��=x��6���"�@J#�Z�ߎzގz��p�M��&�V�F�����N���ki�;�b)��/M��2�Dv�;Q��(�N��R����ӽ�b#��N`��-~�5����f@:��A�}H�H�|Z8
H[{G��Y��<�����~� '�,ῃ6��/���;8�w@�5����^~��=�1��!e	�]�a9�R��wQ?�~(��zۇ�܇m��6��m�~hm/�!��#�D<�xq	�Jx%<���Up5v5v,m ��{8�P?�~�Ñ�:��u����!��C8_�p�a�CX������R6��@�}��l�w��#G<�x�,�>�al�0X�{������al�0�y�<�rA9���GP�#(����v�<���֎`kGPΣ(�Q��(�y�<�rE9���GQN���c|��~@�8�s�9��Gy��<�Q��(�q��8��{�T��(�q��8�	��8k'`��<w��qē�g�"6�?��_�?��xW�I��$��~�H�:�}�DM���/�w
��S���V�7�O�*>��;��;��;��;��;��;�}���Π��@�'�B;�)�z9��E	�b��X�,Jx%<�����A۝^����O0�A`�@�uw{!��tLG`i$R�"%1�~� A�G������ l![���� A彾��Az,��g���"�0�&�,�xz��~�P(�G���=1�a�R�`:1)�c���'�!8��{X�o(�{!2H�X|?��4�10$�c�c�E8��H%��H%���C���0D)}#+!�����#=1����`�}��>�~���P�0D���`�8��	"�*"�Vົ!�7I( �J�H�����O�{1��� f����� ��$�/��@)�i��8�Hl3��? E_l�/�/�����pD19#�9[臶���Xy�A�H%��X���~���;� �������R{��@i�,�ZqH���~���Fè�f@i4��X��X��X��X��X�A�� ��3H1)�����*��)�̸��1�t\�ho	��@@*	M�#2���`:��^�3�(�$2��&~ ��4��#*{�?p0�'e�P�ô�o�ӑ��i%b� I@c�$��i:R������џ�Q=G"��p�
�D�$�O����81�y����3�����(��>�L8 ���*�JEK�&!&�^��)������و���G0�	H}�P�Pls(j��hD��6{�c:�A�a@���7��a" �0�j�3e��
���0=1Q�����(�s1�b8�����H��_09G���@�9w��8��8;#qvF���'~0K�a]9�M2驀��0�������� ���B9G�T���)=1�jc��<g����ϣA� @�F�'�3>g|4Z�釥I�ɀT��Qr�?Q����t�{���D�F�E���yʐ��HE�R�
��ʣ@~�*�(�%Q�$
�D��+�wά{W�?OC����0��8)r@��4�Ꜣ��a`۝\��!�	��;�c���t�d:XuRzR?�����?
y�')I�C�2��aZ��Q��������Lgc�O��+(5Cqb:�1@�DϩD[U���h�J�@�%�؋gJ�6�DϜ��h,p�R�M1p�D�'R�C�C�t�G"�h�TD�f`Z����n�#Y�N� %�F	�a�~0�o���~�� �9���O8 ��\�3��9�1遂<������x�/�w)����)%K��5��Q�8�|�$E� ��Ȑ�8��#
b�.�t7�Co��3�F�;���r��<+�m�e|J��3mw��������wg�C�|�A?�H� ��
���I�{\M"�5�אzi�z8�U:n4!�G~�.�
q�R�5��])��c��<R�j4��.��
�������+���c�_W�k�
�Է�ԣ|�N����J5�K�r�ztћTޙvݝ���R���&�%K�;u?ٕ|M�ij8��CS������$�~�\���=203����/ScB�x�[��V����er-f����e�-�j��%�c&�2VT�m������Gny��Ta��޼,�)]�A>|�6��xg��h���̟�cgq��*)���y���%��������������F�|�)�j"����ƣ��#�3����x����N�O�G���xDH�.��+=���D�#����������:O��������Z��$r߭����{�y�i���Y7t���/u�XL;���f�8�b	6�K\M�_�>�G��<f6��^Nə���ش0!�,K�����ċd��9C߸a��w��=����=
���ö��du��o��6�'���ÿ,5n�e����?S�� o2�x����	s^�}�(2���/�z�nG9 ���7#��ޘ��{�~���*z�r{���(X\y���m�f~�u֓��/�n�q�Y�ds�$''C��}7'iu�.�����@R����֓C�4�N�7}|����~X*��&t�2(�˙?�	>�Zľ�)?DtЄ?�P����7]��[���\�#|��O��R�ե���7�,�^����g>?�(�(��H:�m�)��{Ѽb�ҭm��};���i�S٬�#�xC�!qu�(l'q<�9q@t~�菈,�Du�<F\
��[�
.+��Zp�眵#��ۿ�W�iHS���O5��������~ �l��4l��gnl�?s�;�<�s�
������vݐ
�-�[H/q�����W��)�3��6psB>#Y�����=���_"=`�R!x�bHȨjFo2V�S"�t�G�Un1ۙr}���"��gA&1!�)��,֔��r���X������eFsEJDB\��`��V3�#F'$�F��vG���
!��G�@BI%�QL�*�]n�*)��_^���뢦�j��Z���~+�;ц��L�&�6ν��.��=����|��w.��n�+R��������a.���L5B�=��Hk��U���W��uP�uI�x��x_������z��R�Z5�*Vg���"J0�p�?-��;l���a7�U��<"��eЇ�b��J+tUed��?��I��~�Nn`~Y�_D�$`q_Rm��!m�����Ip���j���U9쬁6�F����Ir-��hd�fw���$�;r��3�E՗;L&[��e�� 	J0d��Ԑz���np(����@AH����a���ݣ��PҍJ�rf���М�Tc՗M��t�(Ǣ7��U�euX����u���P��m^�����’|P,�����Mz��
/��Q�w$=A˯P�
�lWj��Pa�q�C�����n��Jh՞���$�}��a�Q}�CA+yh��V}�z�#	hо<�@(�K����-��C~�dT�_�z����<��~����>7G�l��~��Q��G�^�������
��_�"��ʫ�S�s��G�=��Ǿs���ܗ�B�^z�K�k^��~�Y�,�˟�~�@��NS��%��"%���il�]��[��5�A���DZ5�wi�,NIӞi��՛���R[1)�sT��V��l]�Eo5 �7T�FUc�o4۽��v��&I���
�U_��)��:]\
[&*a,V��"��~xn��4�Y9j1�`CA���,�$δ�+��Џ8�a.�f�
��т��HM:�&���0�۹|�4��]owذ?������l]�n`���Y�Ti�Z8�H��\�Zfx�J��F��S��W�?f]��Z��7I8]�Y�wkO���,)���lv+���q��5����Ƙ���ۤ8�Lj�R��
�R%QA�М���+ys��ԅ��
V�4���h`�6��+�3 ��Vѱ���s�1@͂�0���u䫰ՙ���\K��M7�%:lHk5Itz��B�몭�	�'��RG�Xg�aG"]
�%�٩E��v�Kg�"
�J��b�V�c�R���X�`�A:��d��
L�
�9�R�7����v����B����9݄�^CᲠw�������:N��Qo]ug��6:��Z�
�N�k
�#B�:R8�8�t�D�����Y�j��9�v��.�dY��_��
�v��,S��M,���ԓ��^er�E��}yQ�8M�7�R�7���o��<�M ({��Φ���Lwz[/�B��{wH�U�J���K׾}x�:z~����!չ}�O{���KG����P.#ѹ64������t58��t��qf�f�u.��>n�1��QD��y��etji_"�l��N%:���r#0��*�SY:f\��6�Rʶ���`���ee�|m�+�3�j{�OY%[6-�Po�ym�&[�T���W�;��`��(9�����$�Jp �M�1�#��ݲ�2���	�`�;f�.m~�����e2\�X�5p�I2,3���v!h�қA�/�v���ak���,h�C.�ܽ�i�غo��b>�j_�sk�PcA�Pw�).Lä�Q[�$6pKH�:o7	d��!�6"�$���0�n��g>��*��Q���u�cк��`}��﮸��Fa1l"6E)�S5uhra�������	�pt\�t� ���=�B��N�i�ٻ��Q޾e�*Y�;	ѡ�L���^)�7��!CJ�1��0t����������Æ�Mҗ��M:�t�>�Ma(��$�%�C'ӡ��9�,���+�~����|{�Y��醄l3�#�C�@Q��޽�Q��A�v�H$!wх��@簚�*[��f���El�pQ֣1�C�KE��
�Pг��G���O�#.Ym��S SU55C��fG��zY��+\VMgN_����e`ˬu�v*�ԕ6ք�B�f�+��u��r0��v2X��(��c��_�b�������ͰĬ�Z��	t4�ӕ��ҙKu6=ݐl�:��e�~:�?�j9hB�t�-6�z��4��6.*28�H���c��"w5�t�	M4!�|�CE�����Y�z�3�4�0�sf���a5���u9��	�˳�h���3,��l`k�3iL����w”8'�N���2_p�P�m��n�1�9���fg@�Ɩ[�l���ts�3����X2@�@wA���o/Ш����@�����C}�BP���I=(��jk���M4�UƱv.�s�]��9˺hӗs�.�la��;T���`8>�����ݺtP��&��ۨ�uTUK�#����Ylm׋
�v�h:G����ڝk�O�!ؽt�&�z_8L���M+�˻,�m
(�]�c��	��cr��p�%t&ӽ<���I�x��v��t��� �1AXg��NͿs������tt��:Zڭ�RcM W�ـA��@��x�T
K�ӹ�D\�7U�Co�r��/�?j��F��D���N~T��E��P����J��rf���Z��H�u��-lw�^��)�j>�t�Xi�t���,p颽��F{Y%�_�G����\ƚ�I��4;7Io�ٙ��nQ�N�fn������tf4��Y��'΁c�-X��cmt�㱼ۣ�\�j�u,���6����d�`���:W,R�p@��}7ѕS7�6�nR\�8�4}��4���#|��:�������N��u��a�4GOӠ%g;�LW�
t��h�u�ak������(Ĭ�a�֡��QT���o76jPv��Ur8}���:LP(]�0�B���T�-�J�8͊�y��~�����.rŬ�<�~,��l��JB��R��#��:N�0�\@���n;ReN7�^<k�m�,MѮ�F����r3s]��\
g�O�b�K�y�qv��Nѐ�ő�B0�E-����SÉ��T��xDU��Q��na(�4|,�"8���r[l/�m�#��YEm�&�nSYfڼ(��0�>Fs�����,V�Mf
=C�+�ML�3X�i:�d��!
��8�p��s!J�x�����`�4�x
W���<�u�tB�X���@��B����04��a4���lTB5E_.g�ѿD��抩�Y�L�!�qq
���ԏ�<��>�>�o�DzaAOH�㤁��}!)����N��xq�Ů��#w�@C&g��
g�^��@)�SQ��岆t��^s�Vw69�ѐ�f����I	�����87�2�㝑��M�K�5
xkG;���a��,���y#,����l���ʜ݉�}Q��X�Q;�}Q@z{��M����e7;u��=][��w�:WR]u���7
�b�ns��-�6�t���l�'\�٠d.aS(҅�\�;��l��ک.�w �$�+5���3x���`�aL/���0�^��W�A���nE��C�pA��Eϊ�r�r�c���02^X�.��
�3�����ǧ�C���Wl����0�Y�Ⱆ��-�-�;Lv�܎gMk���AޙMJc�X�#ҰҌ�&u�����UC�̅?:W{6���>;c1w��_Į~=ue&�F�����pa�ս#�&ѱ8{�q���N7���Nv�s�&j��퉸N�q�w�Hr�4��1���M���Xgs�����[���,f�P��N��Q��+f�9�����OC"�>�ud	�SX���M�0a��)��:�w����Q��X���:�&_�F��s��sZ��V�j!�m8:��h�x�c�XW�~�;��N�(F�=v�A�	4��d�>nY�x��b���u�J��b2���Z����ĮQxwjS�n��i��NWD�/pwIs�̥x�X�����MP7�.~-w꣪F���ۛRԮ���^������U��yE���o�:��%Γ���˙2Xf��:�Őյ�l�3w�"֙K1%�!��2��ԋ�qEF{%W!��نq�L�j4��L�.��͖	ֻ�vD�����=����^.U�6�=��:�k/�h�]ߍ@�/>4�%�Y;Xg��o׌���w5.����߃�8�Ι��!x��f����3r"trE��v����Oii�}�@���>��wz�a���33�"D��pdO�'�Vc��{��b	 ������t�L���LI�.,��R��'�]Z@[�~`�|p|��yꑅ��x;�f\e��cj��k��3�����ƚ�I��$�I��������f�����v�|�S0�+G��BIOK:��z��f�j���M���$В~�M՝^EWX-�j�� ��_J�.�6pA���y�O�šq���C�NG��eR���{��*���u^�)�ļ����7�B.�}<�y7�}���m�'�u\oZr%^���w!5��v�*�I$����VK�n��v�7��s��ۂ�>kUA$W����9ЕCS�N��g.�=��7�f��0xr��������o�K�����B3[�.�h���r�,�:���zMP���ٷ�p�]&;�Pp!$�O��v_��t>^z�J�[@>;���M���5w U�m����ȏ�П���.vB}�A�oI�Q7S�^;��?N��`t:�hQ~f׋&�]�WM\G@��e�b�����e[���$�z��+�Oxa»?�>��{���0�H�H/�m�@����q��m}˝B=��um��i
�4��ro3�N�#�-@��������?=�wz���vp���w��>��n�I�
@�&���������A��z�k��*�R��WE�*�3�j�.'_���7V���W�3�s�yK��X��wI�B��%\��*��\e�h3�1�Gȝ�9^Y�����X�N��B�F1V�((P�sIs���]v^f���܋#d(ӴcE�r'O�B�'���D�r��\n��M"�$�L��,�^�1Y*�r�:�"���Qe��%���8��ڢ�n�!��q����낍�"oNlg�A.��"t(kgQf>�k�cPekҳ:3p�F�G'�=���:['�Bw��
m�Z~^N��1�ͦ�nQ�R��W�r�a��Y����`}W��؝�~�νF����f�)��5����9���=87�n9
h�*�G���e:X���b@�'�Ufd+t��\��{n]�ݧ GQ�F���(4J?`�tΑ��Jg��z�!�]/=���F���6���/Eq^�;eE}dhU
Mv~�N[�
�@(w��'.O�{I�L	u�b	��BL�p)m�.7�X��9��9��9�,ԩ���:�h�v$��/�S�+����F<�H�tTc^�Vr�@U���x�����U"U��y+���`�dWN�.�KO+�(��:�F�=Q)L���iD
�.;C�Π�����\p#��boL�T(v��8RY��#e)�&T�4��������X�F�T��R>Op\�g�3���T�QI�~�9��f䚒e
�cDj�<mnH��X�i�y�J��F��Ը&��ՙ*���V��Anm��$��ԉ��)ڛЫ+���}ao*�EM�5'9��ci���YI��΃�.P'�M�ˬ,l�p����
emu��f����pX쬋d�8J�$�Y���Y�W l��cw"v�:�)�RJ�{a)���|�õ(�\+8��
�2�Ԣ�Bn��ekt��wn�ؠ�%�(U�͗{����_3�?���^4l�W�ꫥF|�����!�-�W����X��c_�u|���d��1/�9|u����ת�c�]5��?^��kXx:�!�x0v7��ل^6Ґ����s���f��+��t㕸I��6aZ�=�KR�4��9Bz~�{�)�J���R<�Ka��I�=�_"�[�!M�����=��<E�6�(;C�NW)�y:��@�����/�i��˚C'h9t-h��
��B%M�:e�ce�7���Щ̙Shaחr�t�2C��]��Æ"u��.�=���]Fv�����x��Cm:X1�(�Z-v���tYq�\J�SܳK�0kPa<�yVs�!���u���(h>\U��~�8"!K���
�s��Jn�q���p��5���O��6q�=�y�u��L{�r�ю<�d􌒩�������p�{���;}�H��K�pti��L�
R~\A;���tN�L�*E�"f'IL�t�=s�i��*���o{��"���,|sR�.��ˈf�
}5�`�Vg��U���ݗ�_��L�ތ�ۙ��~��Oo4á�3S6=�p�/s�=�G#��%�?�|�c� ^��t�O^!�4�y)�)�l������.N)�&���Įo	x�^���Ǔ���������K�&���ϴX
EV}��p�w����,gMЇ��r��<����E���J����8��v)��F����h3��H#|�9��1�W��OO�qwO�з�!/�q�S`�X�1���#�\ds��)���������� +qK9�� v}$�4�i��XX�7�X|��Jo|��̟��Kbs}ᅫ�[ZR�5P���ͅ�l1�2W5��vI�X��7��"
��'�&�?o,(�[]d8��~H���B:�F�}�+����1��q���Bh����!)��bp�e�F�_�`	�(�mG����b;���C�t����
P��R/L��N���Eװ��x���ȁ�a�m�l���I�I����L��Jv8iL\t��\�ҫ���^��R֧�}��Į�d�p��C)�N�v����,V�Ο+�]��Iۿ��>��?!�u����/�$�(�;}�(��O���/T:��RI�I�ƋK�(�J!�T���O*���/2DT�rF�[9#qZ���+g���	i�����#���u�T��J5�M���q���D�{9�X���C9�7s��
YЧeg��+)0��EhP�A
=�2�'�6�!��sp�T��lqx��7J�
l=p���m��a
�ӇS��g
��	����b
3�h�vh�2����8z(���̻S�BD:W��bΠ%�a��D0�(�I�)&��LbF1��"0�i~/R�*B4��E&�P��{Y��z���^v�L���8vf
��P�%�2�i����0�x:S��|�10J*��S_
�ndm�Y���Q�.~�R�Y��� ��DF#��r9��>)�3a�Ȝ�qOl��E�
K{6�=�����ޱwǯ���P*��/�ڔ��/L䌐nR����8�L睮iX�*��#�MЙ����T;�v
�*���"c(U*9���/
`*�5,c�d��3��zX(
t�i�J���V�I�SR��cG��/�+8�? f�ǀ^���f���T���`m�
��2� Wo�Z�զr��b�%�����&�<��sJ�b��c�JH�1���	����C����f��-:x&AB.���\|pD�Օ�S6.���X��D��B�VS|��"*�O�G#e��!�{)럧�PI��� �p$�����0�1L�۸�`W��Gr�����V�
�y�}Ϳ _�ݩ#>l��n|}�MFߟ�j2qd~���R��قUva�GU�ƹw�8��jPw��~5޷c34:��P;{�m�ܣ�J@_�����_�)\ZB�q*�c��{!��ьߠ0�6�9ce�X���3��=�ġ6'�!���=�R�������U.��R�C����6I��)H7W�t�����wP��l���ĩXr��j��h^�]=D�f#LV�c��N	�	�\��Ֆ����pb˅1`ir>�}����)Ш�U*��9ߡ����}��t���>1�E[��@�Z��s�f�@\b��wzC;���_M�^��
�}9�Zͽ�\c�0�|�X�|��˜�83��ұ��f$�W!d_����w虝�L�n#¿RG��@VO0a*���5[Y��b����A���}�ڼ���jd�W0%���!̒{�p�\�9= �qN_/���>���Ŵ�,��q����/����\�Z#5��-�����Q=�^�Y�?��~�T��N�	�-����� �Z.=@��f
r5��
�.;<6csT��
�O�:���
G\���N/�1E1�:�|��f�8ߧ�31
>7Y;�{����
ng��q=€S
�g��J�P!�2L�s�O�
�4�cR/�v����X
?�0EJ�vip�I	p'!Vg��Sb]>��<M��F�Vf&�5X���!����F
�J��	�Gf`kgF�FE��~�� /?O�P�c��K�o���#�V�I��=�%ny���ө+^�$M���7KR�!�s���V����LW�5e�B���+&����iE03.uC����@v��:�|�x�*_[��!�Q��*�*�
�&_��Q�k<��=3��
m���ʳO[����*���^&�']�k�XU���ߙ[�N�%A�	��u�]׬=(�WV��
A��]��[��PCo�ׄ�{w��w齷�>g�}%���������̙3���9s�}I�ߤS/%�1~�A���2���Z#����4�7�����|��ԞV%\E����;��]�g�ֱN����wb�*���Vz"�~�&���J"Y��(?�O�٦�CoV�6��}��i�������x¢��FS����]Hgb����l�4��z8K_Dt���-����S	��/�4�}�2Obi塑��<��f�������)P�-@ϞU뭿�&��Y�[8Ϟ���b���,D͢s��W8��~l�LR�r&Lu�a-�{|'|Ғ\2,���/ѓ'�}���Oբ���G%��=����ʿn�%y���Ey2����ך>��ԫA/�
���3�؏��C���m�+���;��?���V�Vh{i��4�XD��f1�>���Xz,��5~���ߋ}��6�w�5*�������M�xKo�nS�]���4h?.�p��lѲB(��06���?��FS�2fԂ�`vj��KҷYi��$�Û�|�ۢ��|a~NwC3���?k�P��b�=��w�}� ����[}�#�ҷ-��;Jʳ�COWR�����Ұ�7��������[��F���
��)Ϩ��k�6%��R�Q��y�՗Qo=�Y�D�Fu	{��o}עM�p"6�2O7#�9&�ᩓ��e~��V:��;���ۧ�/o�
�瑫�p��v~���kTh���+�|�����JG�/���q��k\�g���z�xM��E����M�����z�W�S��r"j;6�{��8��ϰ�Z�/h`���FSK��c5
�]�/Q�����Ⱦ�l�
��mU`��F�_���6p��Ԉ�!�7p�8R�7��Eg�ZW�q����~�J��j�׭�hU���[���-�|�y�h~A��-�k��9�~�o���g5�'�W�*5o��q����
�=���u�?���/Z�x����?�,��ӟ�ꭾjE/ԪK_-x����Ng�OH_-g�z�T�Q�뺦��t�ʪ�U+V�TM�Z�jr�G�>V�N�'�֯ڰj�$��U}����,i<K�’f�����,i)KZƒ6#���%��6��<�Gx���t�']@�?�ؽ�:r�M��'ͧ�"�zR1�׉�5�:s��.FR7#�;��I�)�'2��4#i:�ˌ��F�ZD�8`$"�a#騑t�a�q��fR�b�����do�+���|�J>o%_��/ZUsD�CO&� IH�ɒ�lĪ$pX�Yr[�*�F�|�'��>�L#|(9���L�K.֓�H�4�d[r7"��eF2u=�z�|�x��;Fr��ɞJ��g��Cȭ�T`6����}�_�W����ҟ��_~ՊUN,����	�1��_�njc,&�e	�d��a�ob[��ML8f�ؘo�����?���?��}���2�P�7���j���U���5y}ю�����=��0�G���lV�vGf0ÎJ�
�t���d8�G�<����<�r�ݙ�o؅�2dt�B#�ue���c�wgF�}&b�g=\�s=�S&Y��^���[�b����V��1/����0[��e�p�%f�c�ʯ�c�Q	��g̯d�j�� ��~;BQ���b�
eFŦ��nS�t_������p���*~Z�N��,P�b3�H���t_�������m)�e�|V��Qh(g�eT�Rk s�[�}�Ҧ���*��3��ۂK�b�<N�
B�$��X�0+3QXU���!���Y
�*BTG��^C�5�%�G�|�G�ʂy����j#񸈩+b뉘���C���k b���g�~����E��^�_�KQ���(<)��k�yIx^�W��U�yMx^�7�'Uxϛ���4������[�yGx�{Wx~'�
��E�������Q�|$<̈́�c�I���d
Os��������|*<�Lx�,<�υ��Rx��VB���|-<�Ok�i#<�
���Mx�.<��
���/��Gx��`m���#��tB:�x�u�XC�'��
���@?�?0��F8
c��`$�����(uTF�G���`,0uL&���&*LE8
�΄=�	sIs���<�����"&�-A�:�r`�X��k�u�z`��&&jl�2��-jlC|;D~P�x��b������_{���C�a�p8~N'�S�i�p8�.0Q�"p	��į"���:p񛘏[�w�{L<V��gs���D{.b; �����.@W����z��>@_ ���A\�F8
�#��@���Fc���8`<0�L&S���4`:0h%���`0�����B`�X,�ˁ�J`�X��a�Yl@|#�	�LSl�ہ d`�O ^;��@1P�~�<��F������L�A.��G�c�q�GfR��N"~��4p����\~�D�K\T��E�+�"���:�o"���w�{@)
>
�uѠ-�ht^
RD����
:a��BdXt��A؝�.@W��htG�E�E4�h�����to]<�������_�5�xf�.��C�a�p`�<�J<3�< ��c�q�x��VZ`h�	��3�I�d`
0����`0��Յ���FX�`���"f!��:-B�X,��!��J����hŁ5�Z`��lD��ͺx~+�����~�� �(�|�E�]������%w?��=@+����������!�0p8
�?'����p8��Y�p�\.!�2p�
\�ŋ�ʋ7�n��;@�*����6k�7��/A}/A}/A}/A}�:�Zg��!^ǎ�z�=�^(���5��k��n�������Á�HC�<C�5
���cL&��Ɇ���=���f���`.0h%�A�߁��3I�;.���o)��J`��	k��.�b-5}Q4MM���D�OE�u�h�U���)VfS�ʦX�M��b
6]��
�F��h��6#��
lCہ PE��v�@	���
����Fs?z}�`t@)@)@)�0&�z�7D3�ً�Y�h�#R�N xY4�X�a�iv�OE3��j�5À�a@�0�fP3�6�f�b`�0�f�D����fg����ۂ]İ.��+`aͮ׀�
�&��4���6��"��!2J
���M�NnA�	C4EB{S~h�,�=�#�EV�Ȃ5ga�e�,�:���Tda@Y]Š�0�,*�� �0�,*�� �0�,*���2X�Y�v�ܳ���a
OOS�腮��}�\����!�PS|2������`��L�3�Y�`�X,�+�U�`��l�A�(2E��N�(v?��=�������x�8�#p8	�G%;��p8\.WM�u�&p��m-�|{�#�Ns��@��݀�@�'��,�Ro��}����HZ�� K��Á�H �F��1�X`0�L&�-��`�3��e&�Y�K�� >�M����"`1�yK�e��}�`9�@�? ;Y�<�*`
��l�[��@P���]�n`/�8��#�Q���N?n��?���)˒W��$fU�dOӒ��%?�$w��]�k��ȿ�͒w�M-�;Kf��l��(��Cxa{���@'a���݀6�쎠'�X�>{��s���n�_Y�EK�ڒ/Yr(X�X�cK�nɑH4�d�%ߴ�[��ܒ_X�KK�ƒo[��%�Bb0��f��W-��%�,9��-�{K�E��G]D�#\@}��M��eK>g���`Ǘ�)
��"�K�e��|���̰d�%�d���BA^C3�aR�ْ�"�Ғ~K~jɀ%[X�Kn��0��"�oK ��%m���?-�K~eɿ��V�����[r"J|g�b��Xy��%�#�8�8��	��H�� �t����)ȟ���\�:q���dwDc-y�T�`c�ּ�+�U�p]ȿ[�[KB�pH��7��V�DkK棞���&�!,����2�?�t[���ƴ�;!=�q�.��d7�;�؏�vClDz"���3��c�\������	�V�[K�cIx�r+J����N�E`*0͖�_�k����R���<`�m�����a!� *,�E�Ŷ|�����|�����RK�_bc��k�u������<�냘��)`�6۲j<n�H��	2�26
�g����e|���U�?��Ö�!���n[�b\ԿJ[�����I��d6����N�٢�~�z2��9h��C�
��-Z�?�wҖ���9DOg��d�����n�����6*�]����J�7a[)Z����@')�aL��+TD���i�g�Ok�@ML}M��הm�Y�wD�bMy�ה)5�_k�V5�|k��사�������Dx�iˑ5e{����Y¼jB�5aj5�%�wA^W����z�eM��R^��)�?	e���5(��^>x����H�"~m�xT� i?
�Ԕ�=d?��VS��.��~w`�}�'���H�@�.j�� �=�"�g����& �w [��m��(���y%��O�I�NH)�����d5Sm����>U
vOT�#��R����'E��V�z�~[�u�G¬ѥu�]�n)W@�Ga/D�I��� p"G�?B�Xj�O <I�`�֧��՟��>�SO�9����7��!`max���^�.?]���`���\�̅Bv6�UF��K��f�HvH["�b��kxp����t��yF]��S��)F�����bd>1��r��e��r��gD#��pF4�Y�Hn6�6�m6��6��6��6��F0�F��F0�F2���l<'7A6?��D�-`'��E#��!�y�E#��_�V��np&"5�� �]#YV	���
l#1�L&���]�0��j�Fn����#{!����`
�O��^�������\�UGc�t�l$g@���9���r�?���|`p���v�_�5F%9��R�9_�9����AL4Q1<�"_N��$E^@��Lw
�;E~�"O �i�`]�`]�`�S�>���﨧�S0�)2%E6I����"�$��"�C�y�W���_��(
ɿ�,[�`�S�o]��
—�G|�1
N��S0�)��LV
�9�"�#}���D|�b�G�7"�L��,�[�|�ǘ��@A��V�D���V��?���px��G��O��M����R�
�Ƚ�Nd�=@p�ȹ���]�Y�o#�Pp�BE3i �� ~2��-2� 3��T��!�:�5��S}EƿZ�5����x�H�/�B�2%U>�X��
E���o�-,U&�)����+0�uW��4�݀
@w`��aF*F��KE�S1ѩPB*���	O�Re	K����L����zP	2�!܈�*�
�b�#�#���B坑n�v��A�:`�:Q'й]Ho6[�#ƛ2y?����H���@:a���l�H�D��� ��!�ϴSa��I�V��79'�.Q�P�C��f8�""�e 6S�YL�ˑnI�ҩ��xt��H���C;�F���WuP3"�u�SθMi���e�
W���\5��Q��1�X���6C!�,��*�/KӪŪ��a�O5�2?1�c�����_I%wpj��;E�6����k���v�[4^�bC�%�'���m@�BӮz�tE�����Q�����q�5D�(�oePH"Ec�٪
$9yJ��U#�6A4Ū�ݯۇ]�Ո�ʧ���T���D��V��d���[S�#O}1���cw�ji��;/e���?��E[��?jr��ˮ/뾵Pv�vt$l�a��,�7EeT`�/11�>����&��TvIy?�2ּ�B�JQ�ѼN��U��3�eּ':2��r��yV�ͰuyC�$7�L��VvG���ybb,7��Vf��[޺�D�ڮ�)E�+��k:��js��`z��	�������q�T7���)R�g��ڶ�a�e(
�'i�=�i]W�
�ރ;/S�c��i���q�bzw,kTVd��YH^gmFOj�����8���p��pL�!�H}D�G7K����!��̟^���ӫ{�	U�t�}��"�3��y�ay뾜�o��#rO���nXzY�Q����O�[y�yn��K�Z��:��>�3"���[]���o#t]�h���-NY��`�a�%�z�CT��ׅ����)����w���m$+i�G�Q�����b���D~E&�"�J!�k"/Q���oO#�*1_���j�xQ�RI�1q�$/@K�&���mM��������G�����5�~O��S�4���"�#���4#�1�t� �*��LJ6'�E�D>!Ғ*���H�t�Y��>�־PC�Rѯm�4�L_3��i�5�b�0-�[���1��ߘV��8X��4�?��=��Ŵ�fZ��V%�1�j[��ځ$���$�#H�N ����H��]Ajuy�;�c=@�	���Do��}@�����d?�z�A��)��DyzH� ���P�g���|8H� ύy>�� ��B&�_�M�E�*:N��l�U�W�D�:	�ɌɪP��iM�T%8�V�6]�X��	�,���F�w�@:ڍg���QŹ�lg���]��BU�,U�"_��Kg)��L�+JU�Ԩ�f+���Z�\V%m5���e�ש:�+��ڈ~enB��f�,�%�Z�8�nQ;�������D�:�iAF�Ih!ӊT����L���T=*V�KT�.�f�Jjw��0��{g���U��:=8�$�����������A��� �N����קA�9�,H�s ߞ�=��ݸ�ںȔ�_R�\F�?� �q�?Zm&�Z;���k�יv����S����q��N�='U��\1۪+�ގ�*���8i����	A��C	���]�r�+'t�εN�S���T��J���}��ǵ�Ԣ6@с��2H��Qt�ӫa\�m���j7�I�y�<�|EG):Z52��v2V�2N�1^�'��DE'):Y�)�NUt������L���,U�lE�(:W�y�5��Jr�j}��d���"xO�bЎl.F�@��Ö���̶!ޅ-EnW��[ڝ��V��d�@{�ՠ���>l-h_�4����6��gA�6�mD| �:�m̶�a[A��m���v��,:���d����t�:�mAmc@ul9;��q��3Y[��bK8��]����n�Z�E�*�O��j2;:���hZ��C���6�i�yR�ô#��cG�b�;��ǹ�#�\;���N#8õ�4Ϻ~�1��M\pl⢓����+Np�	�9�u'��H���h���r�I�A�vW�=G����bX6����-�"�t	k��u]�:�.g�@W0:KV��W�κ���YW�5J�k3�X7p�3:m6��odt�lb=��z�na�arE���v�[�-�h�Z�r�~�l��%�:�f��V�����}Ut����N�<R�!��|�uZ�������8Eǃ>�MpF6���&���&��fS@����{�4�}l:�~6��	z��=�f�f�id�L;��\��:9U�|V;��y�zk�U�(�P�0'�"�ɟkgX��:�Ktښ��.ӵ��
%�RM�*�Y��kT]kA���zg$tZ���R>�6���V,��l��ԋl3�%��2�
z�m�ʶ�^cA��@�=��MVz��Co��fj�PM�t�Y�&�D�m�t�?�v�A;�=�9�.����kD�{U%�ݯ?%�]��5AWb~�r�Q��U�qL�����	]-��*��b�V�g=��yE/��^T��\v����9p��ͯ����A������-��6�~t �:�w��apt�
:������c�p��?����<���m
���:��_a��kgШ��a��upÎn�	�7..�P�)v�
��.��xW���:�wg/D�)8̫z���a���2��5��<n�6h]�1H�}�U��,N�c6�1��������"����-�.�ȫ�*��`�5m-�R�A����Q�6�u|(������n�#��*a;Hն�Z#
�y�"]�G�_�FtcM�[�1]���jAN�R��Z9Yk�vvp:vr:�9��NG�.����w+
��>�rZ��8�h?zT�B�p�8��9�G8�G9����`"�'@���Iy�1� K���SA��i��cL6�.s�q�+-�0h��T�5KQǿ��&t�]�sQ��΄~8�~����[��F^��BE)�X�s��K
Z?�Tc�U�
EW�	R�m��;J�w�*4y��-�k@����m�u����J��I�b�]��.6��nT�qX7��7+�x���uշ���m5���n3���P'Z�It�ji9�5%;�bC�|%�:bw9���N��	�:y�(��Np@��A�C�vAø�#��Q�Ǡ�:�=����ӑ�G�ô�Nk�~B�뤢��:Nc���g@�gA��@��A�@��A��@��A��t����G�t���t���t�����Ӂ;F�w�N�8�
ʎׯB��&��5D��ڞ��ו�o(��T�Vxm��I�3uZ۳tR�l�6�����;�|Hk�.��잱AO)u�%�T���T�v�o{OhLz�Ѥg�LR`��ܢΦ�RS)�+Z7���N=��N��#��	�8A_'/�	�9��R�'h�V9��qRC�`��G/�'1�q+�3�)�/��_��]��69�a��U�V+X�l`���u�Hn�ǂn�ǁn�ǃn�'�nU�ݦ�]�NP��@��P��H�w�R�N��b��}�w�AЧ���a�c�.�R��i�3�2��sណ��g���Y(xX��wD�n2�'��l��#�d�cBݙl�yBo0O)p�3Ee-t�t�I��bJhK���R<�d��,w�J�+�*V9U�vRk}�uR���N��	6:y��`����(z�lðN��AO�A��z�����9���JoԬ_T�~Ii㲚�+J?W��)=\Wz���pS���m��;J�w�"�rO�3^g;�x���R���7x�i��O}+vti7-��MK�5�=�eĚ�^�2c-}�iY�B�oZ"����+���%cc�C��6���8�ݘ#��7�Q��G��*�0�㨑�6ُh�w'Л�N��f�Sf����,^�ڌ�?�����P�*�$���`Y稪�&;OU�<.PU3Mv��Mv	��sMv���Mv�Mv=�Mv
]�KMv}��Mvô�J��4�
|��n�VE��d�M�_o�;���Mv״�f��3���d��U�C�ٖ�ȡ�O��i��V���vV���L����ji,���:Z�^K�diF--���ZZgK�ji],M�Һ��D6��n��d�1~�d��ރX�L֓XGL���؏�l��4;���+�}�_���ٕ=z��1�����Q1;ʴ`)-���O�JX�A��9�
�6.�l�q�dCQ�b�a��_3�p7L6���2�H�{�dy���-�o��F�Jx;���0�,6Ʋ*���q�U�x˪�`:u�M�|�c��x��M��l>Ŋm�T+�nǧY�=爵����Da:��Ӏ���LK���"���V��F:��A�3���"�>���R���P�K[��J��k�y�"��p��
�j:�h�NԗBU��/�������
K��*�JK��[XZ��--�5���k-��u�V;�zK�DwK� �hi�`n�����o���j�-4��-��;�q徆���cm����nfY�&g4U�:/D�P�ru܇���*7�b;Q�4JaW*�,�}چ��i}��w��R��F�Y�_�{���}dVI�~2�j��G;QM�T�&{�~�����`6�j���\k�c�|����|�ŎcJ��~�9�l��U>����V��b�0�<h�ӘX������|��bj�N���������R;�1���]���=����,�P7CS�#�j��.����e2��Bf}�b����c�:㚳0�[j��a��殮��[��n�!��w�clxw1��{���:n��=�c��|{�����K������xf0�M6���Ʀ 0?ds��>f�&Z����~�14�{��b��΃����q��mh�3V�
��,�!����0B�VƎ ��XuCK8�X�nh��3�CK<�XC�r�"�U�pܕ
���5��|�#Ym2g��T�4�
V��Y/��^�Y?�`5�s��GVs6際8�ah��r6�GOqV�����$$���c�潁u���u���m=�u���!C�;Ag[�|��U�����§��6��-�����~a��:�О�nZ�R��A��ϸP����37!cư`�Z�3�"-���lV�^j��Z,s��d�.[�r�+5[�;|׬Զ�Q�";�{�ڛ^�u�ҭ[X�74Me����w#$\��A�P�����wY�W�Hj��sS�ۋ,���2��*�KK�T�˘��
⹦�Y��QhԿ�֫�Ǩo��N���xl���I������;��)�؄}Ղ
�Pog�V6���d^��$t�0��]D�.B4	��3�
7��]���w�J�)X0��h��E��[�On�GE2�
��~�߼_8�_4���t�A*��|�
Ӈ/:���yY�!B|��U��.��0�>\%҆�i?�9B4���XMSr=H�qK��~��w�y���� 3�?J�z��т}Cc��{K���4�#����R�
�:�ļx�bpY���nɊ
�<��C��b�8�⨶���^<�3��o--�qr���'����rUMK� "��	�u�@�>�(�!�j�!a�@1���N`�+>�|P\�ʊOv��j,">(\�`����H`�[nH�\�M�7&u��m�MiO�bm����ư�1�^����g��#�gt���Rg
�ƃ�4�2˕�IWr�0:��/_f�b��QӨ��4�]N�G���ځ����r���z2V���ʑWVz��w�'�#=���DX�JO*���酮��r*�|_�,�ȕ�R��p1�1�^��iO��ŷ	��`�,��'�BO_��4��L ���撹T�����U|���W���V;��"�F���j�'��b�f��[/r�����l^��F��$���"�m�b�(��'�o!f�9�����(h�^$|�ū<5(��?a ��3�_�l5 �hR �@'�w�"�_(E�!�jc��g[-�;DN�?C4��l�Ej��RM��[��;o��z����,�K�-u���NGu��(q:�TGvE%љ��;U���ʂ�Ţ�na�+�5�P�`��݄�H��^$��`�����?�����`�88H��·\�Y�\֊��ZaqY�"��.ku�u���w�
$��'�N����%H|A(��։���D�Ɉ����)�DU������l���@�t��ِm�y��
n�<��s���:D�m��������D��C�U���^�ಶDX]����]"�%����,���DH�����8��һDx��j��Į
�+G�c�V�s�e87���r抄�4�6���wU1��9�O��(��l;�/M�mh�h[;���o�X۩�������"�Z�DZ��a4�3j`�ë��<X)�I��u��g��!��<g���yi9��|%��}Y��I��ʲ��Zy��[܃�=����Ξ�uַ_���`����w��9�r�ڵ��v�$Ԏ�
�1�.J[�G��I
<��i�i���Y�iy���Z�k̙���64�홑�|l��y_4��N�esJ��N�S���N�A�o8���p�/R�©\���S��NuAj`8��A����S�N�t�-m(|P�i5Fϻ���
?���k��,YgDK�9��ÓY��ڮ$��<W�$���;S�6�f|�H��4n%�$��y�e�<wm��vF�Qk�Vj^��o�GAbt�1��c�b4�U;&uIoog��41c��k�6��x�6��EI�bk�,�bb���Q=�nPQܞ�a�Ħ��رī�)�j-��v-L�W\܌G:��������:��ʗ�!
��)��i���U���B�6�^���p]�ځivcz$,bb�@��0|7DIa��MQ�>�.H�n����sv\=邊�f;\?��V��8
d�p�*�ê���,3�Z�l�n�R�1���v�m���Ⱥg�^mF=�HQ��I��y3��f���2-�g�;g�64�Y���'�̶�^-0G�xisI��>���p����zB]��ͳ�&���)��|U4�:�+�hC��H����l��OUg1�Xo
��-Q�H������M1\��d��mm�b�G�).�F�y%4܄*ԋK����/��3l7����R��tD��GP�g��0u���Ҫi������#�N�W�o�y�:�x%݌�m���#U���z���P>FB���d��	gO�Gf�d��m�t�ya�2����1�Y����0�`���N$��U��x^&�,��+�b81��Y�'�`��b���q�Hx�ͫo,-�KK���"�����`����,���#RWښ��=9t=��'<�����8D�Ky���7]�����4�W�#�����b�R�Ua&�ģvJ9�|�ȃ�6A��D�*J�o�|mWB��F�>�ᣟ�����U�S��&/�ڥ(]l�1N��V.8%��E�5��ň��2'#u�t�t�K'�W(��j����آ������Z��h�i��E������no;��	���j9���Uw��t�s����a$�^Bv򈲓C��=�(��ʱż�r���m�����N�6�[����֜�9u�U��I���G���d;�q
�<�Ɣ����w�Tx�ͼ��gh�F��H���D�{��������+U��/�6�Et'�)��`�X�j�#?��dlZ�kl�Z���.�k�c�U$lH��W�aU�i��3��&.}�z�m�&��f���Ȯ�-4�B
gn%�6[U����v;-H��Ag���E��C�\=l�,P#綒IҍX�w�D��aKV����qQ�;1�a�Vhk�Ҋ�%����Ŗ8�����E�,�Z W���e�a���L!���{hj�t=����������T���2��ƌW�Ah�T�9*~p��py5]�U�xUIu��{�N�B�;��*�,�Ν{_?%�TM��؈�j�&��5�����Ԉ���,��܁�\�#��d�5��AvATg;��xA�Vt�#U��*us������q|�������
� R��K�?�;�V��6SO�Rwۚ[�M��-5<Tj��WX�|=_,�G��"Q�r#2�𚠲#m��נ��^���:�R��&�BM�*_�ɢ��H�D�&�3����F�q�H���ƴ�ٌ���<�ةX�|�Af�㰹���M����l����C<�u���m��ډ0��=v��{l�P�:��A���2ӟ�[̮/�g�u�N��4��w�M�zq���\����J~/��i��>J8G���1M���9�j&������nt��T�1�~A��]ud���F���t�-NY�Ey��t8���*��#8JU�ģ����q��LU$&F�"R�3����s�z�|���j�(,�k*�`���>?�3�9=�X��j�`o���z�[v�x^tGP�⺦�>�'FUNy��`iu
3�3\���9Z�B�����@�7��{�f����6��M���A;�׎$ف}����3��GB�e���^�‹hoa��������c����Yq􂎬�
�MG�i�h����(�\���>��m'���`��c�;����.�N}N����ȣ�-/�#ͧo,�<�7��B=7o�&�N[y��v�&�7IE 7���jiC�mԃ�a��6?�s�kGmz_�I:ُ���^�Z��<O�m��ss{���:.�2=m�2�����7��7��1��v�{|��夸�.
ҕ�՝q��g��3��^}Ti����R����u�uţГ!�����	!۹�|�Aw_�V�\�Ѝ��d�_��'���}<�D~$QG��h����(?Ƴ�q�!\
��l�=�K���g�ır�fmvR�����H�yc*��,"c�H�.|sl���رؑ�$w��"���Ǯ��sX���KO�Y�9�gl�Y;��]R�~�.L=�	�`���Yr�|�1Y?�0����f��f6l�y�n�y�V���W���O����<�u:3_Di��W�Z���JaL7��<~�Mì�3�-
��h,
�a8�Dz`�G��
t*���g���̘-�Z^�G,UR������^��7�Zi7�_�Z�V��:���6l����&�uw`�?o�~TF��[f��۾�o��[e�V���bB��Ѝ���Fz\�8-;Jdi���-��iwl��;�MT�'2/s���,��T�D)�\z�XH�=K�&���P!zy�I�=U,q�*�l��A��3��|�I�	��N�Q#0�F��ޙf�.ӫv�?�^����mzy`������=f�^�k���L��gf�7�V`��q��3��͌C�W��MoL�0�Snf�����꧑L��C���Le����tJ�6��F�w8�P�o�M�y�
�kNE��<���Z�լ�BM�KC�Úq��
7Ǧ��o�8jf3}�f�q��6ǩۿ3������EO��O��G�t^��Y�i�,�(��a��e��F	m�)��G	m++�~�Ц���B�nԅP��	�8ﳥo�]P���Nr�*��KJ��4/(c)�K�Y+�C�F`I�1��?ⱆ�����\�g�B�=�,��AE`	�X
*�@c�Y0�w������{�
j�)���J^�n%��CdE ��"s�:���C�GG��Y�ģ�tR8���3����Rj��
��![\�`��ϛA�&��Ir�q��ь+aj���.��et�K��_:G���z2���%��o-�ҿU��_��;K�~X�9�"3�,�*��[�:XO��eHÜ��&��Aύ!�_K�c
�w��z-�}Z�Y"�n��ٶ-0�]e���n�M�.�7-�xȏ��)���L�2۔���*�KK��pTQa��6-��jw�A=R�a��QY�(�t��̣6'Ec�ڜη-��������	�l�a�Y�7��53Ι��f�q��M7�͌�o��`f\4}��E3��k.��M�|3p�̸b���+f�Uӷ�\53����f�q��-7�͌�o��af�4}��M3��[kn��M�z3p�̸c�6��;f�]ӷ��53�f�Qj����R3#����l�o��ڀ���D�Ta&��Lc*1���3O����2O���)3o������"U�<߰P=E��w�9�-��G'a�`%z�W�U��y^�ӈi%�óf�k;;�/�!�m�J�6C����i�|�%*}�yoST���6=�T��������i�^��i��J�s���J_p�1��U�����җ�t���t��MV��K����W{���wY	���{���q��s�W�G��sR�����Wz�^)
��yK�B��T#��KY���Jx�}��1Tv����23�){U�!��L�M��
{p���H�
ܠ�� ›Ǧ� �{ٛ���M�W+�	��(
���nZ.g+�V/!�,+�^Y0]���z���\W�ʴ�R�ph�����{H��Y}���l'��X�:�HY�'DT?F�ӑI�QJэ���0)�*;�ӰWKt;R��#S^r)����F0u�LNK��$�o��}�;Y�_����udY�L�.]��Be��}%��%��+�T�₳����UG����C��6�Z����J��t{S�r_�7�\A�q��-�V��l!D߬�/�`xJie/C�c)��4��z�B.1
���T3��Z
��;J���E� +�ș�c�̷��<���۝D���m�S4bM�kD�� �59���P�7%�8m�UlG7F�o6iߔ�k$,�UF���JQi)9��ؖa^w������M�:�Ҩ��it!�c�pC]�+��@��][���Q�m>��SsY󹰗o�I�Ed����3��= �6��^$�r��>FJ��zv����|u�DahM��c��!u��jv"X��`��S4:p�6��:V�_�
�ں&�,pu��;��X�c�&洈޽ɢMV�YBU�T�!uY�
4�did���UV�UXe������_L�ط0������@HE���T#�Ѕ*Mz�)�L7�l'Z���:��mp�)���T�,3}
Mx�U1S��̧5
�4��Y�Ej��S9���9*l��[#[w�̘���F ݅�)��0-j�ha&Ԡ%_!�Շ{BӅ��f���+�rZ����o��M;�x�X�q��|��w!�1{�k�����)Z)T����*DC�}j=R�[�ejXO[z�(i���-$
��xh�	�t��<�e��dm(B�e�*;Q�v�zS���{��y۹��S#�8��o�c��z�!n3���%��z�� b�8(b	_�[��Ͳ������#���K`�R�W��Ŷ ��Լ����"Q+���ez���^*���D	P;�i�0�Z.Ȓi�G��=
�b|%vb�P��T�T���R�(?p�5�4--%E���ZĸObȋG.�w�SO���Ǫ))�44�.;�)����h}�����d�%#2R6�M	�E�Ϥ@���Ec�XcG�)ꒊ5�+�:S-��\ꁮvbkΓ�QϿ,C7Z�`�נ�ؾ�����RI�q��Cm�h����d)��NҦڲ��|t�`Y�0u��^O�`ɛ�H�.Q�6��8_���a�FSz�UB7�3BYD5ba�(:L�<�=����%�	j�S�q0�"�\;�$�����R�$�O��k6
}�;��+4�,2�v��j���&L���U�*�_gM�3����j�b��;�@ŸF0�q�m#���O�Z�?����?kmw/��9��ч�k酄k,m�3�-���R�-9W�W|s�Za��#�Lg�:R����A�X^.�p�h�''%a��'=O6ɓZj�k(�sJ��u��qЌ㩛8N}N��l^-�o]e�q�?�p2�����n�ĩ�B8kR�=7�{�`�jq�Ó1\�ًݩO[�9�Vt�[0�ԑ�[�&�N`�E�����s%,t�P�8J�W�6���;���Ҏ��w4/����4�t����ÐUHy�w(���5�0rX�*>����9�E�.��HJwe8c懟��ʞœokūoke��א��"AWNZ�rr��|��=�4�>q�����ھ0�O�R�j���H�����_������
�R��u�T��X����x�Xb��,-Ggt9)�t
Na�~���ʫ����&S��ƒ�6p��[{
[���¥�n�|�mw@y�#v^��p?�TӘ}3�Mf�
��Rc�6Aj|
�&JM��&I͈Ӻ1N�l��Ma�dh�-���)\��Ԅf��`,e,z>��z%�\��6_�m��C� VX^Nb��c��J4��tDs���>�Ih���v�w��;�����v`YqwƱ�Ē��,�׃YP��r�D�0�����!H��W�{o̜"3Q7�yd泈��A���N�4�e�Ŧ�c�T,0!$�AIN�O
�&;�y��Y\׍f�0|��>ǥt`'?'�9U"��Χ�Q�]��d�����@O��5�I?nr�zW�"�i���+���v��������͋���Ѽ�sј�I�"{"�B�(m�E�S텟;�"����d*Tf�u�jsG_���]V�~���Ř��n�qN�i�u�5�5�v�^�.g��@=q��p8�/�t/�8:���xA���S�����R5����%]�)����YI[����x�ZQv�� <�՜fr*�&0��2��)�}�w�����X�:O��-��>Kv�&����^H�*+Ջ�r�(��$������uu��p�#�°v��3��NtΛ\No4���<��Ne�d�6�bg.�pw"px�D'_m���GMF%u�(ٙ���ęT�$�Y;m�;�i�u�e_��{�`^�Ç2r��A�7�>1p�����9���Q�=�l��5ߴI��q��D?�(&z�6��d|t������Nw���gg���;g�gȼ�ŴI0qa��;�=.v�"Z�����ˆڽ���Ƭi�=�T�����<������1TaIT}Enu�3}��=��]��Tj�5m31�$xi5hU�7��;�-֤��d�9���7�g(W�8܌y� o%�-"n����V��Z�zPl8X��1�.�
��͢XN��zq���NO��)O�B��>�v7L���S%'�P;$�!��3�< �
܍k���L93/�$��%yЃ���W�q�����)���6�hW#���eͰ��2���V��������2F	%�^_7��6���>��t�LI�o�zdc�)�G�(Z��>K�����-.�Wd•��u����?�\*r%XlQ ��;�qcX��*���R$m+g�^:XY�h�bi��.����fq5�eO��A?�L�T��<\^�$�'�|X�F�?����ju,QO���q��Ј��>���x睪l2�e�94�+�$�L�U[�|�!��my�a�ڨ�m��˻Ǩ��#����D�M��}�<�*R΀+�>2ʡ���/{���v��$��S�2����0�bc��e��\=]�X����v�i��X�a��q��y��u/4�}�P�^��ݶo�9v����
��0�0VjS=�W�eF۟�*�_@f���q�`�QV:�a?�9�G������+��pV�#[M�D#�~I�H�U-�;�	t�$�9K�g��
��g�s�2��G��E�Q�?�#�?��#���N�P��=BmD1����A<�5���:�:��5\9���h�F�@)s�sY�]�}\��,��:�ќw��KY�C���9_:���1C���ܞXy�'���=�oOz�ۓ�=5f�(}�NW��-�է>]��)�;�#��m,0�N������me��꒠Ίi\o�}���/�E'�y0�@90#�ef_u�x�zU�0�=�ka�iAo.oa�}�(���P=��^H�#�oC/���f?R�}s~�
q�,��B�#�H�aA�7��G��M��B�W)��*��V��%�T1�J���j�<�JKik��S���QC����n�5U��N�����i�M��*�4ѼKF�]RN�6P2�l���~�3���*�GЪ�қzS���>eK���[�Tuόmz�7��ؘ݀����)��&�6x�60`�LY�m�����|�?7/��_���F�q"nĉ�sN�8���P"��5;�V�ɳ��m�iУw�3h>��u�t��9�(��1[j�n�RįV%�P�K��]�o�rAQ�
���ʴŴ� mq���v��CMW�!T;�5�u5Ll�h;L�C�e&T)�c�%
=�*���&3z�15t�T�}�Q��o(���);DE���냫��eՂ4e_�/��s�e�̕rd�őx*��S �j������Q�N0�M7�a;G͒��.�G�H�G�i�<����W�XL����hM�,��*L�\8�[�&�����Dy���>c�����b��*@��}���j*J�1$Ai�s���u��f��x^�����zY�;B�z�,�
m��"�H���֢q3����50{@����x/c\�5�î��p�u��:b4\�r�:��]-d����FS�|ۓ��+�V��zi_e�@�%h���<*}���|�P�O]?K�3�W�Yf����`yV��I��2Z\J�X���R-���>��-/%_�@+J�W(��R��
�[J�KM��DB��[�T
��B!:$Z���Uc�N��5ӯB�4��z��u�ef�F<��qsq�&"�������a�JQh������z<�s�2}UX�Z�E�eز�y-P�ԣ-ƾSf"M߈	��+�Y��z*Z%��9$�t0���RaB�^������V�܈��ު�#�<���3$���hS�P&��V/δܫ���+;,�G���֝��7m����S6-	�����<q6�r��z,8�
U���F$ڠ	c�fa��pɷֳ�w�͞�a䎃�v�o�<���2�+�����p��gT�L�_�;�k�V��,�D.	��-�'�xP�DT�I�`*�m���$6t�̳4���Y�Y�<����E���v�Ir�VC�C��!�����0�����$�pJ
����x4�o���F9�	ɒ�]2,��)��0cRE�3��.Փ�Q�F�D���)*%�5�𘆱�oyc
+��?R�gD�uް̀4���22˦�E���e����DE�1�";|N��+�6I��{��.G@|$�^�9)�1B�F��L�7ӊ
m�Bf4��
���W��pB�Z�H4���{qv/z��ĩÜ?F�B�oA��:���~	i��6�����P�ż�fӋD�|�M8����|��y����׬�a��Vߩߦ��#��+!�ErJ%d�H�[	�W$�VB���}���D�~������s�֐5��a5$4����H��4Q~�q~�D?#���3Zߩq�J\�O;�G�l����κ0B�`�(��yB.���o���H��R;D�`т=U�E�S��6ኰg)��k�ٳt���h�/h��&:�R[��#hZ'�m����@�/�ݢ�k�@$�� ��m��;i�N�RZ4�ֻ��5�v�m
�MY��=�]��8@q	�*AQ�FJ�}�P6�};l���Q{� ��D>�OESb)UA�-�0�2	h�S����KY��w�D�s�?�Q8�'D�߅�.�F	���M#Rv�ߦ��.�ե�86�H��󼛎~��HVs�xҖ�,�j�mH��� �=,
X�I�Onn�j����A_U��h�AN�`�/C�>j�>4܄A��(�9G�Щ�{�0$Z�D%DE){_����O��H$Ԫ�_�`4�
�9Ȣfo���X�o+R}%��]�St�����BᢖzOG�wq����]��	s�����mE5��X��b%Y&-W�szd��*B�Z��4Sj�瀨�V+�������$����3�=�E��Js}L��W9��FY�ꭗE
�*����T5�;Y��o[�L�Oh2c�%� j�Be�*�L3��aZ�@�.~b���ϐ"fYgW�b~Y3E�%Ⱥc�� ��@vœ��$��x�:"u�@dk����f�I�g�b4���p.�Llx�pH|.M��]�!r�<�9���������<eT"����+`�r�MS1�UQ���PKm��☎j/��(1�D+����!F��ɖ\�d���u	2�d�+ �q�2d�%�"� �^Y�/C�Y�d��)�M��!���W��8�RC�X��PϽ���G���OoV��T,KU�?�7+5��ޒ|Px���"������`��J�0"Z]D�B3��?4�1�Q��a�
���#�{?�?"�ӄ�a؟|�W�{���m�/^��5eFIk��%�m,�_*��A|�]����]j�,���_v7�-�ܮ�a��sp¥�����V�������c4㿋2��v[�=0
�Z�Œi����}�`?�>`5�B�A4�� G�N��S��a��Y��x،��&>��:5Z@?��Y-G,��>��G-��z5�~�{�ʧ?�����=D��,�az|ny���˛F�/-�Qz�~%�%�;Sݙ�kW��/�~e�61��x6}�Jm��߱�����q����!��|�]ž�]�V>��[OZ����6�ͭ���c޷�)	K����*���=c,B�cp�ѵRn+��@ /k�b�`3�8;`�e���X�Z��D�
#��Z�7b�ϟ���o�[�>�v��4)ж^��/P7~̟�V@�I������NO���{����64O���)��j�
�k�׍��8>U��/xu?e~�f��X�;�򠍏{���~��}k��b��bCY�����������jz�6��z}��?l�<b�A��e�M�(��*7�(kN�R7l������?f��<n����]�G�0��/G��*7սe:�–��d��5-L��
�0�![*��+����GC�S%e�:�lH��cf�f�<��C�U�{��#Lo����Es��k�m�/v�����sd������j4��77Cw -�So2�'��[
s���<InF	4�Ms0zȢ��l۟+ۖy��:�F��9�~�[â䮆��<1tʉA͚��~��䡙�fX�w�{
�9vƛ��c���9z5�~
<��y
̡�g�Q`.Y
�C C9�M+}V.O���/	�(�]6��n�Ρ���x����ީG��4���%X?X#�@����"���ߠ���������"9�o�H>!C�'� 
�����Ic��f��-ʗ�&p?;LlvY���v��Q1����'�j�O�����4KVIl'ؘ;8��8��W��P��)e ��?���_`�O~�g�A��e���m�4߀�?��l6�(�lm��=�!6<cd��J3׀�m���q�g(��g
e~���9,`~��u�Q(��2@���	n��]e6�n9��es��&����XƸ�GUT
9�I��ð�t?��$�{�������,~��s�S�*#�L��=�R��|��b�н�K��ڪ2�h�6��J���o	�I���)C��/cc���Lc�p���NV>�2����r;��=�����]��T$Q����C���|�N�r�cЪc$�^�c��J�+�~��J�VV_϶:/����/ײ�иq�M�SEp����	�M�r{���_�㸔�\
�^z��M6�"��%����$.�_htj�}Z�	�X�@���q;D]税BQ�p*��ԅF�~l!�e�2~k�>�B����|2��#6x��D�:��*��|1�#��F�6^�ҫ�1ͣL�f�
_�!��N8"L�x�V��;Sn�1�b�<�a�p�<u�u�F����f��
�wF��t���>c~���\�S"�˕h谀��,Ф?��T��
q�
�k�
)��?`^�~,e�t�o�پG�g|�\�X3h/�Z�FۏhZ����Zg�-$+7����z��.�<����x�d?��U�u�7�w�?6����m�����f�F�ц�Q_�|^�Xh�o�Q#jj|�
�׺8	5D���.2�DG=IH.�*ؽ��=�T�
�mL'u��BSK��;oj舦j	�6�J#��T����Q�`L��p��PH�#ÿ�ڥ�'*;�mY��ˈ�U�+:�6X����jVy.�,T
*<����\��'��֘;��h,�`�nR�wa�l���}M�a����E���!I8�������S_I�qP3�PJ�2�x�t#���Џ	�U�?*������锼�I������	���5�וֹ�^���+��e�G5#7]��SE�_�嚂Σ�:�T��AE�h��-�C��?_<a0�лJ�Lܲ8a.��a!�U?��b��R娊��U.��Ժ2IE��j�r�-��!���Ѭ\�7�64.K6��8<�h�@��d�1`ҳ��A�X�{{����X�B�1{`�nP��0L�e���!� �?rR�kO��`*�Xx�`���|�J���Fu�V.L��H�rM�h{.��~�]��>y�'��#��
��:�m�E*�N��_
��s���.�Oq�~۞�_�)z��B!�O
3.�](��B�Ba:x��z+:ͅ�%������ʒ�3��RqI�%J���%bU���Smy��l9m�����q��e^j宓�?*�	"0j�7U��L�&`���U$�C@�=���P���̄+_��Z�MsԐ�	���o�� �j�3D��V��V*�D�������S6�Ű�"��+M�(h������w`*U�:��S^qGU�I�3y�Y�Bhe	e���
�FQ��4��5�wD�Xcx��E6n5!F���>�:�`yY�̴X�"��sG���A��b;p��q��Z:���t}؇�����#d�<ʺľ��?�sx��G��+���H5���|��T�)Nk~��@Fy2�Znn^B}��H6&{����r-M��!����^��R^2�y��U��RXS���O˔����A��?��;�$LC�X2���J@[�
�!�zn Ah�Ѽ��)�FCg��r@t�Y�H��7Q�s֙$����|���K�L���b
U��^\ey��
��hn����A��RG`̟�"��t�T�e���!z�2��Z~Jl�!A˪���Yb��UAFӳ��o){���a��`oY��nl��q��
�Ժڃ
=k��B�e�/��*��9W�eI{�� 
8V�oE�+ͤ�s�l��c��!�lVѫc��Ե��ev���cNo�Ժ�(�y8��n[j�v
�U+����Zӳf�J�Oi��y7zZ�Z�X{��h�rE{�P�8�K���i����M4�7�V=O�\O��\_�Q�9,V�aZ�}/X,��3�G^3r��%�W��6}�v�l�qĐ�i���k�σ�|[��t�҇BH��V�M/��=�p����+�]Ph�՞�i��RR�Nқ���B�ʥ�W�7�%K�A�p�w�Q��QЯ�ch�ۆY��d��VM��:��}Kz��y3[\�T�*�ZG7�Q�<��}57V^N㪴/.[�c�x0��W���!jy�0��J���F�Q�"M�R����鼁��/��C��A�2�襎9X�z�tT�t��0�z˭iH��"�~�d�Y��`ʆE�kF�k4�m3�>>�~��$xC�C �'��m� �����]�S|����j�Zz�O�3�ٴJ�Nr(�����+70�[Wmm1ZV�Z@g���3*�4��ȟ�f�21
Ny�l�!��m�x�wu���nתnb�gX�z�~}Z�y3��ΛY���y����q�;��!�{��T�b_�2��5���lʌ�s��aʌ�@|����P�w@Zr�}U�乮��Pd��h
<Ǖ��T�B?�m�L����X�m�b�j�Mq�n�Z����סc��BXs1����a�H�ޱ�?K$g�x؟-�O�D�Z$��T؟#���L�F$�
�\؟+��w>��Ɍ�.���Hv	�S�]"�-�I���›,��"�@��o��}-�{h.ɅZU-�EZ]-�~��4y_���;K9o���ڈ����5��.�l�W�R��C�w8�k�*b�G�s$�_M�k�Z�����(������u\OIn��ct�j[����y����l��w��Nh~"c;��EjI���؎��U�?$��0�C�
�;����8���Aº)J�۞	�Kb�[gY�4M�-�i���T�f.I��L���H8?HH�8GU*�9K}FC�P�����拓���Ш�]�� U�O_�\DwP�]FU聠=R�m�����Qݶ�<��,�͍�;�u�h^%B�Ԙ�԰I��ǡ��O%FS��yɘ�D�D��^�����K /(�R�S5,���k8�Z"8=xRSPeS5�L������P��G\����Tӫpy/�0��c
�*)�d���*�Qfj��4�`��@SW�F�Xnȫ�� 8?$/[Ȼ�J]���[2?�6�Q�6K]�1��h��(��!�6Q
R��rՋR��R�s��B��Q(��ӅE�/���"uu�i�Щk���[�ֺ���fKu|��i�Л��>�O�Ȋ�=�@�I��R�
_ok�RL�WJ�B�_
�,�{ۂ襂��kg����B!U(L(f���9.p��_�@�]��V�'qu���gj�F�FI/.v��]_���%�a�6�6J��a׵f��5�k�����M�J]ל�D�3ɘ�h��+:/�(}�V'e`�C
�)�4F�$�:",ܛ���D�|���&�k+�:��� �Ď��t����j0���	��'�}W}C���k)�n��&J�[(�!��7�hW��h����uh���0ͅ$���hJ�NU��4�1�x}�f�T�d����W���RS.��k��+H�j�S��!����� J<)� �BxN&�K�1�T�s˥Sz|��35�N��Ѷ����Z��B�H�`F-�\\T|$��)Gbp�7��j�)3e�Y�}@�D`����G�Ҵ�S	O�{�X۪�ʪ*������{4��$To:�=.꽥 |7e�i���m����/�+գ8e���\oG��!Ǡ�ա���f߅�ɺ��y=��H�����NE��H@Pzn��F�q���(�`������S`�wHk[%�/�-�lk8K��	�Ԩ��U�<�۝��+��4�a�S�5��"�N=2�0wLR�i'�ą�mJ�=;"LW8�T�9�c8�9��y"�_��h��I�|aĻK	-"KF�q�"�*�Zx��CjxL�u�<����ߑƊ�d�ߑ�fҊ{}��R���i���z�,�����_���.�_J�5�q5�b��Ԭ�ZEsH��ՅB��`�dk!�1}�!�4���ݺ�p��k{:���&�0�$�~��#��a�PWZ���̓���ms�3�w)��)�[�!���R1��a���������D3�7`�*cE4h�VS
sw�q�l���*$ ٔx,Xok����^�-�g8�`�B솩<�S�Q&���3h�3����>���"���``��Β���@��G�������c)�TdԀR4ž�����23���F��\�(��dHR��A�;%d��H��H�D�NEK���p̚�r�i����$꿢ت�U,����S��gz��N�!�����D;����}z���z �mTb݈Z�5$|@/�\�+T���}�^�}H���n7)L#k�qp�D𰐈�MSDpx!��Z�f3��M�Pwn���[4�?
�T�{3ȦϩNe4\�(�.��1#���2�|�}H(>�\N��i�eF�)��k>�y�0����.>
):*�4'��Q.y~Š������������Qhn���#Ff�:^KU�����ĀsG^�A辤8A�ܗ������g�>6�5
e!�!&a���a"��; 7�íy
���
��S<��y-\��5��@í$�n�p{���f3����S����=��P<('��<L8��[�-���5�1@�o����l����(�"����cp���m�����3���R~�qce�3���*}��JO���g�ƺ�*WE��`��YԑK�q�T����Ӈؤ�f�2%Z���O�-�O�G�l��[퟼bk�0ٱ�Q�f�m��_�ǎ��j�a�м�џ�ͷ��i�=�ܞl1�+.�i����!O����2^�e��j�V�~��w��IC�8�WWr�p8\�PzYu���.�v�(����3p��D��ikT}ސ���Z;LNTss�]�a��SN�ܮ��������w���S{o�8����S{;l��{��QpyV=J���'�"x�?���W�O�E���/����`��[�]���
/k��D�//�C��WH�1pe��F~"q;C5��M��~X���i>�Ց5�@�Q���w��*s"�69�Ič�u9��h�LD���8���#0��7@[�S�i��q�Z��d("���:C�
Q7ꔪ���=�b�R�%�ʲ��8�P�S������R�i�����62Q�óh�l�Y#��t��Fʬ����3��/�s�+�S$�?DŽ�!��HΑ��� ��%avK��G��c)o�����l�᥆�
~H�f�A>�
��,�`e�SSG��)[�����!�#�(�J��T,k_e����)�����L��ƥ��{l��c�TL�/H��NV
�6w�\�X�]��P0�
��T(P_|��bj��F_*�:�0��'h�\9�z$�]�4`�$�UD�
�H>�����5`O�!"c��1cص�R�Q\>��y�(�J�,K�U���R�a�K�g�#"�^�1��1��Z��MQm��4�8�ͷ�׵������#���K�?�
�C9g�5����9?>�� В/Oq"�5�q�Y	����R��3��j��Յ�88lܑ5;M���#�$�t$y_-��c���ٶl`_y��Y�}h���4���s��O"�l�����n���;�0Z�>0~�5>~#v J�"-rʖ�	 ��%•�����q�37f�$G@�Q���Ju��G�կ�
fg�@���y�}�WX�u`s���<npܸ��x��QM{y�'��e�����!���S/�W�~X��5�"�&ߥ�;����~��2�{>D����ID�L��z��8�:l��&�_�{�0ó��O~�:$bN�^��p�qџjf�l\��MO5�ܦ�S.��s	d�T:�����p>N��Z�N�$�9�#ܔ��9�=&�H��;m�@W14�r��u��{N�Y�0�1"9�T6V(��tv£+1�X�b
�_�
��1Y�~�:��W�U�/"���2�KYVUTu�hY'x�2�~���ۼ�:��{|4����;?7i���6��-�}��ȏ��p@?ῆ*�̥wk|�*�F{���t�e�{+�����)�~`x�<؃�YC/�)�<�\�	��"�s8\yL2�����~[�#�
�6<�D�m3��.]Fu��W0������YGT��1h��d|?#\S˹����Kb�P�|z|!�T�A�\�E�p|1NgLO,ȟq���ֲ�y���"O9�#�2SB�8S�f�|�CtKG��#�
��,ZƂ���%��%�p[	_�f��+L�wH�e����釈�R �4�<@���G�k�
��B�
[��=.���	�R�t���)u�P��ʳ�}���5��n�S8��I���2糿�����wX�Tt��{�(`h���3+ �B_J��D���t"��W����9kײ�$����`��cG���P�T��a�gc4+hw*<�ᔃB�F@�#�Z������#_�� ���U]0�'\�S����n�Z�4f�g���e�3ȓ���!/o����B�a�z�Z^ķGỶ����
}(�I���
�X�ɕ�qT�u��紟�J�\M�ƺ���o�i��qtc���qL���q�766$B?���E�9Q�i��a�z�nD���Hڔ'�Z��r�_jZ��`_�+�������B;4���l[!�Ö�!�]�(,�`�,-�N�3%����JZ��0�i�Ȣqv�ϒ�	i�{v�8VK�8XV-�d㘆k%�7>�c�l3�d��{\���Ѷ�8Z}L�uz�
�+qb�]��%����8�-D�ωDt~��N��S�0Aa�-�
�EK
	��u_�N���pa�ƙ�&��ƈV�P��a%2���6�{di��(n�5��4N>�0r��i�G1�?�:6IT/�p1(���zz��i��[dS�!�Zn��y�(��~M��Im8|������k���t�Ձ
|�<��A3�����p}0�\4�f��0���\�����T�-!A��4�+�S϶�x_ZlT��	�iI
z�-���r-��4j�	vl�^q
�cě��ù�t4���ۧF�wj�ix�b�~I7���������!�I�ޗ�-|)3�	���v�K�Ƭ��ļD���uM�x+�6%ɋf���6o�)�	P)�8IWBg�Q�l���E�A�z�Bv�~���>���P��u
���)y����N�+�=z
�:�L��9c�!�!��+�W�#��TY���v>��yT��$��L��a~3����E����mk������6��-���_[�� |���ᓖ��OY�� |���˛��Zނ |��2A���
��-�� ����	��ޢ ���aoI^���ݚ׋0Ώ��i�cp�7<њ�zSr��x؞"���������M�<�F<l7}`kM�ۚ�Rk�Pk�Z���` SyI7�ڿ�>��k�?�C�:b�=�2C[+;i�Z���2��V��
�l&��,^�f#�kz�
�)�#�^��D��R|��K�و�Y�8����֯��c��O��։���Dr��lO�z���پ]Kn�?i� �E�h�(�R�3M�oI\v��Hn�5�Er��"��nn�*����H�J��U���\�6�|M�iM$_�ԯ���x��#�v�|�ob�}��9w��'�+����}�)�����:��,��7)kk}s}���?W��)T��l�:C�3$B=���f�uL�y��ϣ�~���yf�~��?�[��y�B�U����d�3�{L����8,��|��)�ЌzRʻM�"�����t�g>~�(������<ԥ}�>�v�@�L��B�\CG�r�oc�H��j��v 箊TY�v�@]X���t
��*@��[�~!p��
�������Zn������(��#~�3Kp��>�*��D���߀�|����Ah'@V6;n����(�H�FP��e	���h)A7|"5�""���D�
�l��	=p���	�-�|[x+��6�3ޣItVW��R������2O���:.�b��^�H8���6B<7�aˡ~��d����*&����`.Q���2�Mm
_��״��T��:|��'P�p}��v��s[�W�U�_�A:��_�z/����E�b&�~b=�g���G
O&_޷�T�c�0�	
��qRj�\�c���)W��X�.����|
�Џ5W��Ÿ����ZY�L�s��$�%g��K�e��ݓV�~�P�8�{O�Fo�^�J�����MQ�5���=�V��b�C�T��H���*�n�fх�B�.���5�	c�����Ve����,#��R�H���L����j��e�ԩ7��+	|L���Kd�n�3��c�s ����KE6�Z����w�75�#��
o���ɬ�V?��s�r�8S��c
]}��
:�\—#n=���:�\>��f�;�5���%��ך*�bx)�3� ��̎��`�^ϫ�_�2�n6K.6R�l4�n��@w�
+Y�D�қM&�MR����+�6sn�6=�N1Ǡ�ҋo��L���wP��Q����?�F*�ZL�Ѭl�+&�Oe�0
�B�D����eCw���y��ˊ�T�D�j����m9�
�-f��ʢ���2h#���M��|iP�e�)������.�I؊�(\ʱ�rԔ}-��xr�4�G�U���7M8����wӈȷc�u�z�aO�Ig�_�}	��KA#f�k`g�r@�a���[k.m9a�yRBcȋe�!/�A����lc1�qnPc�9�qj�ǔx�j��D|~�p(Ϥ����wkE�}_|����a�<�}�<�͗Fz9a���@���)�E��E>e)��o�3�v&ef�me�7gC#�g�d`����9%�;hc���cH��[�*������!�{���i����=f{���t�{��������ʹ���Sa�vV�V����v��7�SӈT�|�J�3$5�ƥ�0i+?p
N�����+��T��&�f��
�_��P��k8�V���p=�9���S����Rr�;�0~Ϣ����PV��#�\1�X2|WThc�5*�ܩ�n;��ml��:�������
�7��o�|9�a�|�uzo�ش_
��#8�:��j-�Ͷ3��v���$��2�%��,#gT%��#`
eXZ�1��N��N���3v�fݛk�w��yv���2�f��"9��"9���"�K$t�H����D���ӽ�����Gð����a�u}���[��uV��6}���f��2_@�GK�⏕��(���:}�����IN6}�{ԛ���L,Jy� ��!,{�4��Ue����ϡƿ�u�/���ζ>�4?�	��N�!��a'�E�9-�:��̑�:tZw�n��qGk��l���2��p4�IJ���ͧ^��r=�<�T�4ݲS�޽���N�,�Nі�NH�����,!	2��� �T@d.C�U�E�
����i���gwi��o�Ea�D����x�0�������
hK�#-}�x7�_�§M�}�4t��#ғ�9�i>�l���"a���N�m��^�,&���flś%���Ke�'����z��;�V�6:�ih��kZ�h���@�
'��#���N�͋Sh��`��柶�Ε7x�
���R(�3��X“�����m��YN�O�}�
��6�Ǒ��)|�
�@�)D=;��W������
�k�n��hȿH���M�X�6��ȗM��9P<��\�zD�ea�.shr���`eV����x��F�;%��Dyŋ�%��3�K6Xd�
�?<�P���]���&J��M.�@���iٍ�w��R�fJ.�ܗ����x�aR���-�X�Jc/㠵�N�sf��y0\W1�f�մ"�q��w�9-�:�Q�+)���3<�S�2]�+����^�wݿ��|�19o�ƴl㡻����淖�8ͻ�N:W�J�lz�	�{j��Ln@t��-o8�-��;���vӛDgo�Q�v@H�x�~Z�S5�b��w8�q���%�5�8��G��{�Q��z�zo��\���(�{[�2�{w;��=�r���뀽`g��\�������e1�hQ����Fd�;oT.#����T{��Q�{D�=�m�{XÖV���U<�����?	4�2�E�vr�h���}�q��O$��ƫ��"y@4�n������Q�Q�߼^��~V���[��y��?�_��ĒɃ��`{mo��l{�mo��s�D���]����������k{E��l�W�/z��5�nK�ݖ&1��t�^�"�H�]�+1��+�N�������B3�n/�d�E� �����x�M,dg�F��cp����=��q����l���'�;�������d���,C�J�-̴|հ����"e�����J>��v���+;��>�ڣ<Z��Ѳ.��uq�[l)8i�&k; �Z ��AW5t��N����M�n5�`#2�6"�p����x��Dxa��Bs3��U��viuce�H1�V�X��I<�l}$���1�CWT�Xp�J���U��-�]"��tH�ȣ�4�;��+vLO��;���Ҏ�i��FI���Nf���1U���J[��˶LO�L�Nq�ǖ���zH��V.�L����|����	�K��e_ъ�hi�5J]�q�:*�}��T;�"-�r=T.�r�lǵ�=E�V��WyWXT��Wj�⎫�Z�j_��j������q=��s��xި�q=��,d�s��3s����[�›5<��&��{E��/�o�h�@$?��CV��!ڳ"����j����%ڏ���›��,�G���h?*��/+�?�O��퟊�g����?�υ�/�?�/�7(ڿ�/��/Y1�[��+�DŽ��h?&�_	o�h�
���ʅ���s��؀s�W���y�?�r���M�SM�o�����; ��E��
�JXWY�b�
�k�����-%�Zj�9����b�̨�vr�{<������e������-%�k7$����~�_)� �j)~�m,�C��S7�a�����>D�׸
�gq_-2�a+%��d/s[�l����F�{h�4�Ƹ�0���_J���|3�[�);��0���o�/��ؑ7"�g�đ�f>u�%K�9��ϝ�ω���~�m���/��/	z�@�o���׍�i�_q����B'�����r�I�&�	i=�`���,1��|N
�����C�Ү}���eN-t�8�p�zh;7����f�'�Yմ�=n6=ٕ��7}��2Յy��q�|����dZ�@���8w?�+sفR>�)y�~	._�Xd+!��I[r%��e%|D��Kz�'��ODº���h��c��9��q7���"��K�_H�Ta}BwK��,y�tqM�e?���Bx>�ᦟr�7�@�$��{�d�6��m��O)��dͿ��;*fBF�[2��꽫�	Ȩ^V�"E5�2j�dԉ�B�](<t���Ba�Ba��
�­$�
Y^}�L^}�,��)ŗc�V��3]��C�Y�?ۥ��?��{����x��찗��e���:֟V��eT�ml���D�ϸEǨ�u;�“q�����n[M�mZ�<W�1�a�����i�3�J|?].���f��^뿤��e��ٍ�1�Th���E���W�M�]�q�dx��!ؾ���m{�L���e��4�ǜ:D�
m��6`mI�b�Լ��C4�,��'N��.uQ�lz���������8p�dB��nz�[�Һ�m^EL����W���q�OE�y�my����uEz����܏'{uH��ָĘ4��u��Φ��6��F���RR�����K�}Bi���Pry�n��E�o��j�oz�[�]�]/���x.M�yh�Ǿsq��W�{\���'Z�(�*1��t�g���*%ol� s5cJ+	5]\4��>F�x	� +r�r�d9}�V�M8C��bв�C57�眹��@�wānL~k�e}�0���w�#0��(&��"�ܓA��
D���l&��l���)@3�,_B��-^B�	��A.���Un��i��DK�zٝw��7���]�?��
�x�E�j�����s��{�7���e��@�1ەz��WܐR|lt��c���J��I����)>�q��c��[]��8�(��~G)>>��c���n�4-��i�ۭ&<�v�u���gz�6��$��.M>��q��q�=���m���W{�՚^wC�R�^��@3�u�Hb�y�Oݿ���U��T�}T�3"����j��
5�{E��v�
Z�7�;oRZ�o���e.�ؔ�I�C��S؇8%���qZ$ψ��ɳ"a�gE��%Ή�7"m�F$ϋ��~��>;��K����D��G�%�X�O�X>~.Z��®c������6��E\
$�;��$�I�@>_��AH>��������H��.��y�m�oč$o�m+�|�jyX�Kq~ĥռ�.�YS3��.w��
f�����Z/��oH�[�<����s3����w�jm|�S9���p���d��2s�2�2g����(#�Uډ����P�&��T�j�k�`.h�\�L9n%��(��^Q�Z���W.�?`���3�0�Я�X��b[Χ�v�υ�AȾ*H���c��B����8d�Ÿ��5y@�!�ﺲ܇�YVH���rmw�;�OC.����}�+†r_�>�*h,y{q�����o��=��0$��z����l��J!�>4�	}~���8��{�+eƛk�Q���-��
�Ց2�c�[[W�[{�%�Y{k9����lk�����nk?ͯ;ݖ~�~[���h�m��wSh������W�O���XZ* �	�~���m�� 9��C���z�r�������]�����5�7����'���-�����g9?w��n�K�?�ſr����]�����)���2����
�q�⭶���b=Ϻ�?�o�Ϲ�o\��+�A(���^f���B��Θ���y��y
�uw̟����G�9$7׎�)>��~O�L�qM)��`|���|x35vѧ�I�?C>�;6�v_,},���/�	�@,��\�R�Mpo,�j%�X�
.�t���
��?*��}��r��|��¾�?���R�8�_1����I�E�z���u(�3��b�, �>|8��Iy��2F(��������\�
x?-Ɩdh�Ge��1v��Z��KOp��������1�IpA�lu����뉀$N�(��ߖ'c��b�p���钨���o�l�i�=��C�}F��T�\�S����-�6�A�˹�g�J�5V �T�l�7�+�9t�9����f�.��jf,��jD�'��DH�8Ĝ�2;qfvi%:8��Η����(y9�@�g�w<�*ޑKJ?S;g�]�@Ό)�h�@~0�9W1��bE�mN�=s����i�K0���7�^0oy!�-����<�*��]�x�Ϙ�,ٳ��+�g�bw~O�g�c��0=Tj�M�x��~��_����귿��	���7�
]�*�}�� o�PK�%"]`}��q;q;"sudesign_audio/lib/controls.fw.pngnu&1i��PNG


IHDR� ����sBIT|d�	pHYs��~�tEXtCreation Time11/13/12��:ytEXtSoftwareAdobe Fireworks CS6輲�wprVWx����Q�0���%�
KС[�s����^�@
!	7�wg‘˓@�����O9�������몪�,�R��$��s�����������������������?�ׅ뵡���|���V�GB��^L�_5�׮^j(�)_����'��Uն���Y?n*�˴����Q:7�Th�T[TM��a�5�#�,Q���6� �c�*[�i4�?����CMa���X��"��k�ǻWnXw�W�.$��[l��o�j������@j�Dx�6�����s�OE^_C)ڌ��H�f����rh/%.M(n�Yc����	7	��{>>>>>>>>>>>>>>>>>>>>�m�$I�$yK)����~�/�*'y�Gy����o�ҹ�k�r}HmkBF���)�3���mkTSx��}is#7� g��v��y1��~�����{���(i��CJv��8x������׌W����	T��P%�R��i���B�Ld&2��w�w��O�W׳��ӫk�M�����gpY9��|��d}�l�����5��������t}�uzy��bM�6㓓w׃1��߻x}��7�-z?��Y�u覆����Gp��?���z����	<}�[m&��9�;#�{�gwm��ko38�ί�BCL���0�Qip".��e�L8QyrA�TM�r&nN���b3�/�h�T���=������vgx���ܥ�nr�pqq�͗9�Lz/{o�޲��-o�!��c(�)�e�{s�ak�5��b��.�dع!��8j�Aw��GG{��W���}�z&q���U��*�`����=��O�i�q4��\���s�q�!O`��6�񏂪�)|Y��ƹ�tzN7���3�������u|Z��Ѫ�b�J>_4@�"�����L�!���}`�����~�=�&�@a�_����Jd29k�k-���O[�b���$���zf=syd�K7��.[6�]���u�B`n�%�©R�����CY[�����!�����୵D�#p�������EQ�JS�1�- *�[�Dm;A'�tN�E%��x�|�]�z;|������b'4X�0:��2����9~�ぐ��AN����������M��7Q�f%�%�_b���9Ky�@�L��]zֺ�����?�DU��c�o��ar�Yh�u�9ў�Dd*�$"�&�>}��A�&̒�bV�%ɗIc�/.���tF�r�ع1~W�2�ʈ�8�6�'�W�Z	��J�gm�b��Jy�����<��@������Z4�������C
���6k3}iFK������#i�Т�[./�V �lb*�_�kc*���5��'��2��G	,��d�)Xtn�EO`Q�X!���#����H7@,��Ĥd�@r^�!S�Q�	Fg3����,�G�Ylŕv�s1[�dFE=ߺ�#Cs8A�D�4B�Գ�&�3���Jyb=����]�Z��ʱ�U!���؛�	^=��+����t�
�'�+�ܭ��A���`��١c�J����"M�G���qj��5_����4g]�;���T	#_`��o$��h���f�z_#K��	M�@�/�4h�	4�
m�.7)�r�����^����w*��z�lL�&��W6��p��x�Ҝ��"a��XC�c�wG�`z&M�HZ�C��ܖ�"j:�!+�M9C�p2/�z�g��;{T%3�$EQ9����EьD�u�����-�I��g�]�y��R%OR�j��O43��vc,C5�`���B<��X"�CE��9�V�n���fm�p5S�&�XZ&K���F�[X2w�%K"�Gb�C+�=Z���X�xx%wb-�Vp�#L����:�VY���:�,P������b&��%R��-��H(�&��@k$�	�."�؅D�"2��e�|�&�x�~IL�\�N&��s�w��"q�����
���.�~eܵ�W�I����pOW���i��BL�G�O�ۢ�a��7�S�d��6�O�N�-�le�_��7$�.YQ�N)S�����	��:��y���K�Y�c��߰���RSҵ��9��\�^��M�i�	_��|�����t!�P���D�fYFD�u�HNV8c@���gW��^�kcIz�����j���5j�8�c�?�0l�w�@����:�k����v�-�,Q�����U�,Z�в��Ĝ5w,400�U��h������<��T\�P����4��
��/���F�f��)��L r&�uiz��fBU~.�Y4+�$4v�#o/]W�9p0�ؐS��L��%1��̳@�*�/�sEm;B�Lj�c�����T8����$f�&q_���kJ�(fD3�l�7Cc�E�ZZ�k�z\�,�h�ܼ���EyŪ\]��63C2��ia��b�KTA/zkL�Bu]�C�{����Y�|XhԈ�o�&�B]`rɆtu�*fo ��=��A���[4i�4�b���[�$o�{�A�t�b�Q���W|�u���5~'8�&K�I"#����I^��0E�{��:�&��J}M8,JF(^�I��E8]D��Xz�b���SD˒$F>Ȗ)I���#1[M�7�qFe5{�mm�E���[�,,X�'��#q?E%i�P*�Pph�Rb�#�4l6ٟ>��������ؒ�3�Pc%]�]�e2z�dEZ1���T� E����,�H"��
[���6�hl�4�n��V)pEع�xT�>:�	�fx�u�!�9���X����z�����ܢP��U�0d;E٣ԂyFI��vX�R�M�mc�>
��UܠyR`b֭���(o:ס��T�>�]M��›��+q�Y�5�0��'��ą̗X4�4X�7`l'�9�C���ۘ����a\�4��TÜ���Mxs��Wx�<�ˤt�0��`׺Pk���E�,�M7N�V����
}���f�y�r~IK�g�x�E��g��W����-r�Q0ΛD`ʸV�7�"��_(�9q���1�1�`�k�G�~)�:>�ke%DN�EX��NI>t#���_�Ҙ�!���b]���:*�UR�{�x-(��5P���q&`����ʖ����؆5E���,id���G�J�:\I�H�m,��93�ZJ�,�#eh�oF'�w�#���5�eJ�+%�tM�8���/D���'�#����
#���q�h2�W&��H\��e3RWq�C��\�]R�\�>i�%.��ôG_Ci<b)���y����@շ��H�~�?������`�#V��Q��<�=�g��ᰖ �GP&�m4�}&I�O�	,`?/ �D"1�Q�v�s�܎|-��$���A��g��_��*z���v��	��:¶ ��t^b�
u��V�ɳˊg��	zo03!ސm�*A�13�߹�x�F"����-(��_3J��"�e �Yr��|A5�#�
�6&ss��8��~��e�vD�Žh7 ڈ�Lђ'�Yr��"A��#Z�}.�v Ϣ����j�|.�T��e��H��I[��I��b_��uz īt�wۑk!ȵ��Ղ\�E!����\�gO�|��閂tˎt7�x?P��*��%��m%���v���8��������>��x֎�kA��ֱG)7�z�ސ(�B{I?��e��v�d�{��!S;r��j%O+]�S��V+nm��O��yC�Y�/��{\��d�[D��Ĕ�;�T�Q)e�u<)���8w��/%�&����$��%¨��-��A��g]�K{_45o��;��׊|���Rn���a���e��٬
���c�f%����c��TR�=9��qwύ���y�=��,ԟz
?��nPU5�����|���|��L�q5<���:�(A\}h��Sp6�@�)��~��-�lIw�����y�+��+KY4���j�:���a6���!��M4���P*�m0[-V6���#+Ƹ�ݿ'��hla)z�L_���Az2S��)�.6
)x[�����^R���޹<���������1,D�
�ܓ�ߔ~����k$T��#eS��)��s��Y��eS|��O!."?��^w���ᡶr�[�%k��nIYb5_��ܓ��O~%{O�/^!Å^�����z���΋ҧ���XP8��z9_,󨽛.��U~�������	��9#6��A`�aA��u� 
��������ߢ�`4|w}0R�+�c�VG{��QA	7��~�c����7��������`����#�|+�뽒~�s����[O�����ă���AoM;�q�w	}q�����X��Fi�K
�1p�Ȭ��gJH��ȕV�3��)�_w��:�ٻ��4�1�8=��/�~�{K:D(�{!<q��ӛ!�e�K���H#��ܓ-���ho>T��6���=��{�����v���J��N��:�8:���`Õ2AJ��9��3Q9�y�T�uZ��j<�c<_��o��:���(�(�ӿ5L\e��*���@o���Y����yJ��o�I�W���Z̨%��is*����'��	�_K��G���O���Y�������.�hVCX+�gṜ�E�Wj5���uI�(���<7�ů���L�ќ�{�#���J�{�%f�����	�sa@T{C�gJ���t~~�l{�o�*�X�惴�9��M�
d�'RF��V�N:w��Φ��s'��t~���;	�I�XB����$�{(���5y�D'�;	�KhS�v����@ߑ����$�+��NBw�=�ЉzB��;G'�?d��wҹ���t�s��!ߧ,Ş���Nfw2�Õټ�ٝ̾w2����E�]֯߇�f���2�˼�d�$��*�Νt�2�:��I�*�|��w���$t�y�I�NB�H�ȼ�$t'��̻NBw�FB�E�]'�;	�e�u���6>�]g�uҹ��]�]'�;�\%��W�]'�;��e�u2���?�Wą
V�3o���~��'�]I뤇���w'�g ���%���"�����!;j����w���t�٠�[�sa�H�2���y/Y�I�����x-0<?�㵨1��5�o�m_HnS��i�~*�
-R��;�GY��sJ?`k�5x��5m���5�q׶h��>ڢ̘��-�DBO��+�n$��Y����FF��f'�;���߳��K
��	�����`J���gj�>~v$��z����l@kꁘ)?A[�h���'�ߤ�C���Җ>"���jP?�͌�GX��s����r��<��/&��k�9�3x�fX�F�H
$W�3��A�$~|;��d��ߴ�G������ߝF���^��F=�ǃ����mNX��%"`M�B�~3��_ ��_���=�h�<�
���;���O�H�/��8��󜍽�Vo��;`m��2-|;:�38�p�t�����J�}�F<w�sz�����p	�7!ƴnA	�.1�2Q*�PB�l\�h_�9�S����X_����޷&���Ni�'���5"�//�ٗ_G,�6��W\�:R{NrH��x�i�/�C��#�
y�'j�+`�H��;刢�u]��(���"?I�����K)��y&�F��o4+M9�$�zc������<�爃_�	�Y�~U�)�}V�~��-����s�*|}�_����^�;�e��2�5���E�Z��6�}�a#ߎ��(�ȼ'~e��w&����y6�[���-=�0a���tF{Ѓ�k��b
à�~�&�[��_��跎�[�"oI���P��RZ��D��3z�F���ô��y>�[���sz7�6|R쭺��2�
�-��D�w������u�"�I�ٻ"��pC;_��~r�����T\6�=��.~��`b�c�0er}�p?K��V���^����*w�ߒ��j��,������,���,�n���n�~�݁�B?ߙ��mk��g�<��@_~��*�췔�J�m�eE��6��KҮ���;�Q�Elx�Q[ϴ\�kSf�*G��+f�R�+�Lv�<��q��+F:vD�~܇�����63Z,��QS��>E3*2dj��B����]�G�m��)��!�	�k�g�L����o/��F���,CO	k��+j�~��5�q/��$녶���{V�
������-��!�{Kޚ+�I>Nyn�^��~��w��ԷK���3�qy�Fv�X铜(����e礖��U�Am'޽��xun�_�5�y83���Pņ���u�s��fJ�@Ɉl�����2^�$X�
�(�ʧ�*���u[Do�
�<'L�lA�]qBUn���Jl_��{�G��Nɿ��o��zϵ�q�6�	�	\�>ږS�qF�}���k�%YDI�5I�E-'<���=�������#�nJ��kn��ܑ��>H=��lܭ7'�R"����֊�V���0)���X{EY�/R�kwwn떷�2�|�5��D�PL�	sz9�a���Ŕ0���f����qpE�9�b}'����w�
��%���O�ق��!����S�/$��D��״�u�"��R���X��i�������'��%Rw�����Ɏ�nY��~��[?A;�[v�Kaͷ�j�/�o���ӡ,�9y�Di���B���O����fԺ+��h����w�g�'g^���|�]�*Գ��Q��S���5����4�݌�u;E\��Y���,���5Q,����H��e��g'��!����}I��Y���Nx��~����c�sZK,a�$��؎�_������ڛ�ʷ���}X�,�3���i��8��h��q��������*��w��2�^COV��q�����U�ZS�>�����;��)*�I��B��c%�K�w�*���)}�LY$��$vK��=�c�=H��S��:;�zϷ|xi�hGr?�vJ�5�h@�F.E�(�uI�L�D�|i�m/�8��I�{�a��/8�	�T��j���%��z�!�(Nt�F��P��UOı���+�
mj��T*}�e��6�v���@����!���o@��OZѤ�g���U�d'���dG�!�|�g��j��3�ϻ�?��I���^](�bs-m�U(_A���$+Z��C����Hh8#K%�9����kbx��n���t
D���^�3Zs�˼��4*��Hď���5[/��յ��A�����Z�ی��8����F�*���=���o&^־1�ϡ+���ht0�����C���M���d"�ѳ���=��'�Vڨ��ש� O־���E�����wף�}���qw��p_A��%�~6��)>sn�U�p�_!���	y�����ݵ@�GI@`���]�0lF��H^/�?���1��xxu���Zm�f<}��v��ߞ�a�����`n?vC(�����L����{��P�wA��F�!\���r~F��S�+�H�aLo�_n�G�s�g�����g� ��/��h���<����a�o�dͣ�>�`����`�>ߜO����wsxzq�G��=�y�Ǯ�x�W�\ϧ������������}�$�����J�4l�VKË=��s&õ�z�-y
x�&�Ki����B�QcY���؃[)�J�!`�����$�O���(���:�gċ��J�ZZ�ZI{����l��J����\k}i%������1̴�f�4�J�Vҡh=�5(�%�zʹ���P/i�Z{�6�@�hc�z��_��/���]_��Ԓ�����FMO닫�����jP\�uWk�k��v�6��δ�3
����i}aLm@:_�
���<4YEs��FF�~$���?�|UJ3�ؙ�'����g+�x6�O:Ӕ��=��L+A{Ji���c��WJK�4����ZPJ�|�G��@-��j�Y����<�.�R�%O�0U(�Z��u�	e���Z)TK~����4�`�Z���}��4RJ�VZi%hA)����O�L)A�Jɟi%_+1����VZI�ǗZI�K�w�ŏ�j%��ܕVZ�%�%h%��Z�@�k��aj�QK�V��*%�=�i�?ikJi�%�B�I�)%���0���x������R+ʹ����V�K�������O"����Ks�$#RK+�o�𓶠�fZ�k%��'-��:�QK���O����RZ�Hn���QZ�'}S)��g���?)��'}S)��g��f���R�g.~�gJ	`r��o*��|���H-ʹR`<#�H�$!b����`Q��Vڳ�V�i%�̢Y4O1���g+���Js��f�V����\�č���O�`Y0>9�^,�:׋3\�O�q]�7>�)�j�����7�.�W���B��m�w�\�x�o�sq#��ѱp�;3�H��t@Kѓ1-E�Лw8%����/Cq9��kz������={:ϨttAN�����3����+�y2��P�O��ґ�_�z���-}N{�ԇ�g�?��x��]Rf2�{���g2�����l�E�-zi�)Op�gZK��.�����-��'�|�cN�ɓ�ٯ'�D�	�0Mޓ!�qFOh��z�ޯ=���р��٩�/{����@��S݂�٩����.kqa�����0ӆ.�Mh�W&�\^]��*N����مm��������=�;$�����������|,�L������B��9=�
	�f|xF�c@���g�z4-��'₯�/
�@�}
"}���
1����3�mE��}��X!�7`.@�7�'b
=��t�����Cr�Mhj�H�Х9�
f�[6''���)�w�O`��S,ퟠk��$�������c���&מ#�#t�Pk�-�m���q�9%��/��M�y�J^�+��}�ݹ��i�s��ι�'�_\(�������b�F�HO�`b���h3�!]�����O.py� �3�wF�tb<C��������0�=x��ǜH�v]��t_���#υ��� d~�7�����3������	�x3��H"e��#1��J,���<�V������x�}��\;�Y;�1F���F���h�����&�M::�Ǣhi���H����ZH��c����}����EF��3�C�;a�G��L?f�Q=4��`���Ʈԃ�M0sB?H�0F��@��YmE^�����X<�i7\L�)���`b�<6%��[uR�Ve%hQ;�ȍB+$W�������*��~q�-���MfqmE�d�,kߍu�#�WMg{�m'W6��%2`���c����*�;<8쬉Y\Z�nMpiM�Ԛ�Қ`�5��5��YrN����4k"ؒ5!��ք�k�	���5mɚ������5�ݾ5����5�i�'hkMx�0�Z�&����D�g-�	_ST��pM0�ڴG�g�Q��=��
x�ؚ�;��&t�Dm�	�HQ[k"��-�	�e��N {���lO"���JgM�KkB�&�B�7=�tL�V~	��˸fK0g��	X%��7�����l��qO0��4ح8(Y[�P���(��|�[qR4�H���b*�
U짰�G̨�x*�V\�f�
��[qV4�H���b*�
U�h*gn���5�yN&�Xn��J��<�'���u�p�_j���#�n�1p�*3>{gWt�b�N��I@��b�pp
�g�X�%���#�(�3|G��3	@�1�	Y��6��np&nNǘ.��gp!�_LE#���`&;h앳�3�\�s3<w�2bh0
G\\\��w����F�;F܆�m��aF̆����YF\Q�q����̝�D`��AQu�N�g��t�z
b?��vNn�)������5?9�V��K�fTՌ����n2�x�j1?��ۘ��.}�g�����n~����ԟ���g��Y�$���V0�O�d#��b�[�Ӧ��n$�7����i��!�y����wji�J
�BRtn�&nP��u�S�/r�~�BTyBRQ�@�GIy$ʶ>�dq,��z�%��bq�ȸ\M�,+2��d�mF��NU�e~D_�l���&/c��E�6����rԠ~�Ӧ�����ڎ7O/���>u̠:u�����qa"������N9#�cO7�}�d8��+:"U��D�P�	3�
5s����ɵϤ\�y�R��+��?V@E�7�^;	�
	�ރ-��77>~B���	�}?v�Wk��r�KM��Q$f[$f[,���dç8��z��(l5
���}�F> 5����q�DY��N�D�(��uc��1�Y?
Č�o�H�kI{���䰌6X��$����4�l`F+�E+e*�����Z�R�HT �Y�y��4&����T�(��8	ƒ�㻵������Y�{�@-��ܰH�+1h��n�����ׅ1J�A�|� Ŋۏ|7fu��iP`���@qc���5 A�ǐN�a�:Pf�t���+2M"�S簦�Т'1L9�n�������&��k1��^QS6	t��9�ϛr��k1��ű�t�D��S��Oc��2�Y[��5:�0l�	^���s��Qe}�}�
.�h����
�e ��,�TL8�T�P��S#�q䱺<��l��^m��ņ.�t�U�X{��
q߀@n��i�.^�l��~�J��FA�u`?�u�kc��Bļ��u�;��a��M��O�74G	�h���_��O��Џ���~<���x��V�ȳ�_���u��ƓgS�ʓ�l�U�<+��7!l۝gJ�9�^�~��RrH'J��Ϣ��GB���P�Qrt+�N0q��4V�n
���V|�J����
�2]
�LJT�F�A���a�=aaQ
 i��)���2��)�AN�p�q態2��E�QSm�"�֮��Mݱԅ�c�T{8���n��Z������dw
�z��ʭ�^�`��p���L�l.���8Nv�;}��2���J�Q��0��+��㑜�^?t�ث
a�;�������`V�F�������s#iW��9���arNB��Lx�C/�N��~9n��yo�X�#l�5F�E�,���f7B#�	�Q���F}�Or"�N�8Cn:�"�L5c��z�-*���}�'<�p#@��hBX$K�1׍º0B"TS�A�\Ǐe����B�6΢(H������:)��(@'L��E��Qج��K�y1�thZ+�(j�1�,
|�0c1���qB~�0�(���uת"*��:��E�N����,�n���t(����X�}��AP�0���x
&��Y�q
0s�_x�{�S�(�3��p7N�G�{���|/�	��F ��L�`t�]S�u�qk��P�ܞ_�;n�NQ������"�.`L:��Jk,[�3X8�(=Q'�b]��l=EM(�fF����"#1UFs\�\P&J�(��5��T�5�Q��}2�x��x����,�-n<��h3�TuCJy:���&=ɒm<�޸�c!O��<���0�1��(O�7�A��b�vz{QlBѭ���(j�k��T)�J>� w؏��QC9��GAvĔ�R�s�KX�PC�9rG�	�5ԗ�A��y7U޾N�b{�Z�$�۬5p�\-d��&�Ic@��֢'4��HB79�R6�k��
��ˌ�t@�ԃ�0��E
���q-���`LA�\��Z(3��sef�v`�Ie^䏩�\(��,N��P��F���’(�.誨'QNv:�:N�
@	�98�	���ud�y=��L����:�ġ��\fn�J���q�37��0DL�0u�Ÿ�e��D-����@Z��!��a7b�*�C�H�
��'ҌD�Ni0ɑC�Dk��uJl�����d4�L�A�I�+T۩G+
Ld+ap_�0`;x�����s3��0�c@CC�;3�����e��� 3��U��)��Af�i<����qf����A3==3��w��@_J�x��[�$��E�n7�slO8߿a��o`��T:������0j����#�~,x���/?�|�֡�G�o u.�X#i�`���M*����)Dh+r5YF�k�3���/ru)���_�m5��T����18`���P�3d�,���.��QR@���3Jt����[u	�LxD�C`�;����n�׉�V1J��2���XLn7HY(-���Ы+ǹY��I�q(~���Z:Oސ&�sQ4#�����Z��4"K����I��:i�ՠ�m4�$t̒V�бA�[���n��魤$�l�L�j���Tc���Bͤ/��df�E���c���e0��n�Z0f0H]��~a�r�M�2��]�va�r̨��v7J-�\���`Fn���&�T,��p��.�V�
�^�ϝj�_�n�X�(��S��Q���dmP��gmP��OimP���k��jm$<����wtJ��>���_(&�l�3`̨B?1�ن���Q�6>tܟ�ʕOz�ޕo)�|fP�@���Y���,���r�V�V%3ا�����c���d��}��>uj�fV$a��0K�(�e��Gz�z%#��,6�##��IB�
�##��	��##˅�셦摑r�(��5����x����<ҳ�\�eba��&�F�Q%FR��(�Fj�e�H-S�L�]j�i"�L�2M���Q���25��D�M�*��ڥF��R�Ԩ���.5*g)�J��J�R�r�R�Ԩ���*5*g'5L�*3���X
���d`�R
�%�N�:!g-Lc��rƒ�����4��d��sƒ>�m-�Rc��]S��P��)h<#ʻ�A�ޠnoP�7��T��T
��T
��T
��T��T
��T
��T��T
��T��T��T��T��T��dB���voP�e ���稔_�\��{ܛ�~����I�|���\8�y�_�x �c�����x�E����7�=�E���������yd�����(<��)9ː�G2��(C�$C�ϩ�A�Y�v��i��cX��9�Тz�!�u���F�������彈��!_�0������_��HɊX�W��?Q��D�6㼌��C���G��t���z%�]ok�]^�uE��0���F��el��]��"��Нi�]�]^�5Hr{a]o[Q]O��k��A]_��kW��1]_8�-�T�tἯ
�T�tI��qUD7a
��yU@�6*bύ�΍��EɌ�ZJWGs��� .�o�Ӫh.cQ������/!�,0\�%U��@�uG���h��Z�:�k�1Ձ\k����Υ�8���Z�]-���Ү:�k+y�c��Z�:�k���C��ڱ2�k����VvC}��o-|�n#z�m%x�w�EԵ*v�׽ň*b��jy�2p�x��¸m�D�
��"�c��ڢ��B��[�ڢ��B��l#j�ܭDm�K-��Q�z�l���Fu��)�Q[kUGm��:jk;�Q[��T����%A�Z�b��q�![;Q[������Z[�S��Յ��ZK�\��2�b��}7?�Q��?���21��3�����g���������~�8�E�
:����~���|�o��(۝���owf��owf������(ʪ�0-�W��Yg���i�z�9�������[?Ӌ��!�]���r߿EM5��8w���z�h��b�sD����$�yK��2�[?E�]��Ɯ��C�x�A��g��f���dž�.V�N
�}:���(ʪCC�V�u�rd���C=ᥳ�KՁ��V�
����X���Bk�Y�j��>,���T}X�����Pk�\�a�����B�ݕՇ�Z;OKNª?���P�n�j����BmITsX�-��j˾5���N���B-gv�Y��LYj)�jN
���5�Z��sB-�P�1��:��PK�\sH���Pv�U#�ecg������m\q�����A=��aazT
�,��8�N��q0�/΀����
�q,h��SA��B�r�����>�:	��HPی��#A�ӳ���N�>�:u���ϡ�;
Զ#5��ڢ��4P["՜j�15��ڲo�i��s��0P�i]sh[sH능��9	�R��j�j��SG5ǀZjƚS@-�t�!��C�1��p���]���4܋�t'�v��muݶ�n[]��n��V�@��B�Օ�����ՕA��B���ՕC���t��r`�mu�`�mu`�mu�P�mu
�n[�V�����ǣw��OE�d���w��������D������N���	�beg������4�Q�g�q�s�������p�;ڎ�a��pG������xy�z�K'-��Z�5�'�q˚�K�2�F��*U��V�<~�V�՜O�)0�\��E����|O
Jj�9)[��[���2����.m�#vl1m��#�h9�;�`�3���Y�Qڙ1�f�?�t��'�,q��5xz;{���i%���"��^�HM��5�"�,�VQ�Z =��"�AīE�"�^3扼w,k����j���i�9w+[��e�K{$�TW�[U�V�ǂ��3$���1B��@�(<nYT^���G,��+|QSqU^����̭�b��[%��@�1jm#���ۜ����N��'�x��J���w��w[���<��:<;ɣ���h�ó�;�t��W�����k�Urr���*9�����{ּ�fɇ�n��b����8b��sovG�$:%q���p.�D,O�p�[^��EK4t
*Z��SP�M�����}�`�����˴��I^�%��%Z���+�D-o���<�ɍ�Մ	5hz�=���D������=R�#�n����c�sv���1���A��?��IG@j�����K��q
zr
z�qo��½%hѥ��J�K->�;���d�*���4�NA���2�]k���\ü���)*t�(ib0��.�g��R��@\]�3qs�+��f l��Ł�L邦���=������vhx���ܥˈ������x���p/�G+�_
��jM-��k�m�$��єW���ܫ�#���d7����[�����h!�Vn�L�b�m���?u������$;����\�݋#앺�7ׅp��Ԇ�Sp��Q=�i��7� bn�+�w}�6��P����e����%�m�%)�;�~\�RP\�td) ��Bђ���3/͍�Q���-�%�/�l<��e����y~��D���lO�P�0fI��wc?,�Df_��t[G0Y�^l@��0I��b�6��� @���[�b@td�ܹ�.��A�5M�qY�> �0��w�l���ܳ�Kc�Q�(�>����2'����1��1������Ht5Q��6�Nr�0%�L	���Fă�'76��|�%�akI����k�L4B��|p��u�Τ��|p����н�52t�3����6���o�|`[1�V���m�|`[1�6���o�|��1���6�Eе5�i>\<�"4��e&#��d�G�ًs�2�\�"���b$5�����6�>}*#S�_����Ik2H�(�h��)��.�x�s5=/ܞ���"_�zW�z�9��}�X�?��t��'.`	-�
���vXT�f���<:?�����#$�'ٝ�i�:?�s�Ss|A��3��<��nr���|G������)*t*F�9R�6%T������"�q��Zt�M'�[���/��tS���ǧY������T\4'��!Y	�9G,�F�u������(��,X�4^8�W�
W��(�š�����S]\��*Sy�@�dy$�#Y�ru{�v���w�K�"oC�ږ'�#OG���j�����;2|ނ!���T���=	)1M��{Rr�p�p�p�p��ǖb�O(��X��w�$uOSQ�q|:�'���s����H{8�V��\E�&��9Ha��\��#.���u�}0���W��:�1�K�w�,�C��XX�C<�G]Ǎx����l�Ү��
��
L�@�8.`���R�H4-��GS�`%���2t�eON�Bh�	k7�4L�|7�!���/P�ō|'Uu�8̭�`�:^z����3�g����%>s�u��`t>����U@(��L��xpK�QP�Dq�n��Xx���u�&c��-󽔱�Ճ��#�	���8�Z(���N�{n6�" U-�f��hF����>N߭%wt��w��o):������:5�{a�G0W+2�ѕ���D�2�	�)�<��i\��6�*�
��]�;Q�6�)lNK݉&ȸ�&�+�S�4=�o��r2=���|�.TNmF}��������?SmƠR"��2X�g�qj��̩͸�a���B��'�rj3�^�n
Lhћ�E��f�
�'��Mh��� p��0Qm�
�he��30��/{$ڛ�1���e��+�cV�6�@iNj�3���r�W{�V����e�%&I���j
9+ �9	�)���'b�
���.�����"���4�p��(�p��jO0Ѧ@P�ua��#��ot�E�M�L��q�X��X�E<qKD�,�n��0re�+>��P�d�&y��@����䬻ĨrQ;۹����Q�ƙc!x��`��%;,����5�m�VpRcFdh+���"��ׯ~����vj��z���I�N��8^��J��@n;`�����#�$�19f$߲���%��V�\��'�lk�iMf�f�۬�Sզ��U0P,
�.��_(w3l��/��
Nj���v�/�`S%h؇��qC����!L���!�'��"tȓ�*V:��F�7����ܝBÝ�v{��;��$�$֙��j筍�$9�����m��n��^�ĩ1�k�75&{����P�I�N򾿒7o�;%�kB��B
��K�5����5�kk�+5�f��	�[ݢz��^3�1�m�W��F_i�[������ښ�~{��0���-|��oA�n�_��:�twꉭ]�J=�t�.}�����n?��	#
�	�I]�R�RM���%�锚�+����
��Y6��j�<]�A���T����E�JAGm�B]���/�U��_��Zr������Ƞ��Y�VГΩ��^wD������9=s.� ���*#/�-5F�Zam�E^��\]4�����n�,�����HU�{��hț�� \]?[U���C��ji�-#�ohe�V&ݳe�9�d
ָ��Tj�	�.=�C���qv�j��& Z��$����g�<�����<;a���2�辶r~tՂ��].G�4�r)^W{^x����ٜ�c��~�닛;~ֽ��y�5ȓW y@�t��V�����>{�~�=�C�q'��|^��R�p��$�n�{���	"}e���N��2E�%����\�����~?�ȯ�v������pjR�YadWTm�"q����~�	����8=�-m�0�Q�r��mt����N�xt]<������1�
�X2�^�f3ɘ4�:ۓ��pZIFeP�$�2�V��]�;��I�߉d�
���$#��G���\@��2ҽ����kz{�vkf���,��eҳo�R@6�' ;�;�Żt�V���7_Y7��"��]Y�|��ʺ�xT�ne���k�ʺ��x�ģ��h��2%Z��`X(�.��
��jG�[ �xN�f�	�����9NȜ���8��T�l%��T�f�hb�����u�o�X˫7�~';����FF������1sM:FI༅|�m�#��t�/���hQ�J6�����:߉�N4�ND�Sd4��OT'.G],��B1q�57��Fc���Fe4��k{�|�`̆�J0��~';�����!
�Q�(��-��4��V<�5���h4fc��pli4f��l��Fcُ�}�ܹ��P,�:��k�HLf/�Db.S�@	xM��k�y؀�N�㹦o6�u.Մ
j¯.l`���cFؠ��w��'�<%��1�XTΉ�b�H����LM��f���E_��`Q�J�����H��zfjT�Z�j���z�n���n�t�6W�m�9�����
��-s9��H�6��w��U��x�z��\��M�I��>�%`�.m�+�
�F�t�sc���Oҭ��m��aw�;����sM�~��f�1�ww�{P��vˍ���N��Ƹɑq���N�)K<W�7�ʲ�̶.��u*�Z����̊��t'n_�p����Z��;�
�wj����s�
�_.;ډ��O
�@�I���N"���3��A����P�ۊ�
��oE�:ߊ���P_���?��hj�-�ý��	�MF}���"�Ar[N�G�
���yq�^��f��ՙ�����g>�n,~o��^���)��'��m���~tz��OO��C���Ë~�&�X�\���s�~�a򣼡�O:�=�;��t��I��>ϓ��{,0{���GA?|7��ؘ��GY��ȏ������'�x=��C���#��\a �)L����ѐL�3�G�?/�+�$�RC�쑣���@�M���Q��v��w�$��lV�I�
�؉�N���@p����Ru�:L�S�h�6������`����s;�~�=@�<���B�c�(}���u�<N3=J�k(���֝a�\�A@�OgnX�妖U�����Qٻ ��C�t��FN���O.Ց������G�J�)
��̉��c��@�N���c.��\�[8��\�&|�!.�Kgތ��g,a�H'l�(+g����g`.�Y�r��:���
ί'��꬈���gՐ�t��9+��SZl���KeZ�z�@ʳ�`۠�0�Y٤ۀR�v7?@�L0�^�����`@%�N����Ww������~�	�(ønm`BL��P��a��d�'�Z���%��40t&����&�5'�>6����/$���o��|���*�I͢Z0��q�!q��1Ob,��"܄�g��+�����F��S�j9O1��z`J�	�9w�ªy���{�`
��q}?�-��W��iD8
�+�N��v�_d�W��~��	�r'fH>�����M�&����Bs��	��u�a
׀A3�L�1\
��bh��p
44���U,1�k���\ԷK����}��5��B�G\f׀C�Ă��\��
^ˬ�8h�)3�k��u\�����q�c�����qQ�J,�hh�w.g�x��2��\j��@C�؂�-��{ys8��>~�C�G;�fɑW�v�<N�Ɛ�̇��G��#|�]��]�tt���'��#��|�1�"���<��C�|�G	��>`2���m���
��r���.+���o��$��������C��)��'�K�>Ȝ��1z�j~Ɯ�ʃެ��w�[H�#��>�#�i/{�w����=賻�������S�
.4���^��hU$�4�q��.�g��&��?����Lܜ����f ���b*9���x{y��r6�s���s3<w�2b�l����x�X���n&����po�[e�+m1��%܃=�ޛ�p[{����;�v�'��
���Q�c=�8��`�lq��3��O%�2Va���'�~�y-~�)������rC��1.0��<�!O`��L�?
�N1���Ís1���n4��g��]�~{KG}W�h�F�F$�%*�|���H����2yl��/$2���S:������[�G0c�_����Jd29k�א,�>��I�u*���L�<@L�g�3�[\�b�p�ec�UO�p)P-�V[2(�*u�[
;;��E��a�^�[�0��bs���E��Ѣj�"[��	DO(MO�T���<o������9M��l�����v������G?�.xS���`1�訲˰��~��B�O9��Y��gd�/�cs7��D�������b|Q�1C��,�e3�3w�Y����L UMsL�I��l>o�ɵg�9׉�D{���l��$�d�xD�Mk��0K�/�Ya�$_&�Q����h�^���	b��]I�+#��`��^�j%pf*�j��1���"�+
�o>�S���u�v�c+kј2_k�{��5�o�K۬��-Z�>l&2���B�Kl��[��V ���, ~�����:fr�����ʬ��I$�,���`ѹ)=�E�b�h�g����#��������y�W�LqGA&�͘�R^�4��V\ig=�%MfT���?R04�DNTM#tO={i2?#�����'֓�Ћp�U����K_biH��9�������O0��`y����:��xov���c��k�H�*��qj�G�ƱD��,$�1��G����/U�������#Z���Y�����hlB�/��4��fM�B���M
�\��)`�W`~=��o���kb:0elp
���\�� ��H�*ƿ�5�;F�qwD�g��􌤕�;��m�+ ����bݔ3d'#�G|v���GU2#OR�3��[�H�Z���l��™tk|���'	-U�$E���D3�_l7�n�2T��i�,ģ���%��1d Q�0]��m��:�j�69W3uhr��e�J\m�й�%�pg�]��$�x$�>��٣1_����Wr'���k�/i�%n�6V�)�s�]D�(EOVEhf1H��n�ז�G$w�
XW�5�x�b�@�B"v��u�2I�h\<J�$��D�Iq��pqN��"R$N����]Z��pѥد����J<i�y�` ���ҕ0-�X�iR�`b�`|[�>L��|*�����I��I���,�kc�����%+��)eʕ#7�!7A[�>B ��)�!�t;����VjJ���3#G@�ӛk��+�	:M9��u�/rpՓ.�j":�H�,ˈh�.��
gL{���z��+@ym,I����>W���:�Fmy�Gf�
�贀+��G����X�	rlg۵����D�gg)����Y���eK��9k�Xh``ګ+D�<E���-hyⓩ�ڡ4Qׇi�8��V҇�fz�l3���o&9��r��4=�l3
�*?���,��M
;�����8blȍ��C&Ӎ’��Lc�Y��|ɗɹ���M&�DZ]ЈGE|*@[�p3r���o���5�[3��]6����ɢ|-�ǵn=�gH�Yn��T̢��bU����`��!��ˉ����%ty�*�Eo�IY���p��E�j��p��A!5"��ƪI�P�\�!]]�����k����D��z��MZ#M�X�8��5��<��^}�<]�As��/��_�}��}�_�	���o��H���i�8�%LF瞶�N����R_�����nNQ�%�޵X&uā�Ѳ$���eJ37���H�V�
h��AY͞~[ۧ�Fk>�� և��G�H�OQI�:��:����H,
�M����j�kh���&����ya0�XIj�2�DY����)Y�V�%{A.U/HQ�%<1�?�Ht{��m��>�%���8:�U
\vn3�����n�����'b��g5�
��֣e����
����!�)���3J�F��*�zo�-hs`�Q�t��͓C�n�w���Gyӹu_�:�9�hf(�ޜ�(�\�3�
��l<��&.d�Ģ�����c;��W�ސën��6&�o�5p�+�$=�0��4}��-)�z�<�ˤt�0��`׺Pk���E�,�M7N�V����
}���f�y�r�����j��^B\���
�ȡD�8o�)�Za�L�:~�`�_��yL���8$�`�ͮ)���t���-�9!aAB:%�Ѝ�K~Kc�(��uiF��WI��)ⵠ���|x.,~�	���Dl��e�Bi�3�aM��-/KY����ҵW�%�<�~K�h�L��*��H�����ݵů���H�3�i�B��,}r�_]�:N;iX}rY��=;>��W�����Ͷ���x�yWk���\�o	
&�&�y�R��#�+��v�kA�/$�&���(?D�"%U�;��#�Lv��a��h਋��<H�]V<kG@O��x��)�l�W	ڌ�Y�Υ�;7��u�mA���Q�M�q-��˒������n@�1���ĩ��$�/K�#Z(�vD��F��e���8�˒��	�E�Z�sI�yͯ$�T��sI��7.k�hG�X�4�Hڂ��H�(�:�Ю�!^�sмێ\A�EG��z�.
q�m��z>{b��'�H��[v������?W9��ݿ,�ߎh+A�UG����Y�,]<L�H��eųv\���=J�i՛��D�g�Kb�	���/k���$��c����ѐk%W+yZ�B���Zqk+<=�xڧ����|���:L%�x�~��F��Q�[7��ҹ�I�s�x�R�iBn)O�P"�:���1���M������hj�V#w���X�=��,Ji��t?����Y	��5<6~�լY��-7t��"��/AO��y\��s#�Wsy�=��,ԟz
?��nPU5�����|���|��L�q5<���:�(A\}h�L�Ud>�@�)��~��-�lIw�����y�+��+KY4���j�:���a6���!��M4���P*�m0[-V6���#+Ƹ�ݿ'��hla)z�L_���Az2S��)�.6
)x[�����^R���޹<���������1,D�
�ܓ�ߔ~����k$T��#eS��)��s��Y��eS|��O!."?��^w���ᡶr�[�%k��nIYb5_��ܓ��O~%{O�/^!Å^�����z���΋ҧ���XP8��z9_,󨽛.��U~�������	��9#6��A`�aA��u� 
��������ߢ�`4|w}0R�+�c�VG{��QAI�r�n����l��w����<��`��V�#�y+�轒�s����[O������}���AoM{�q�w	q���
�z�X��Fi�K
�1�ȩ���IH�+ȕV�3��)�\w��:�ٻ��4�1�8=��/�~�{K:>(�{!<q��ӛ!�e�K���H#��ē-���ho>T������=��{�����v��J�޴N��:,8:��v_Õr@J��9��3Q9�a�T�uZ��j<�<_��o���9�'��(�(�ӿ5L\e��*���@o���Y�P�K��S��}#��"]��bF-��N�M����>�O��Zr���t\�?����2W��w���[�<�YX
a�|L���r.�_�mԜ��%������ܜ�\2eFs�n�y��/�(1����G�[�#��I�Q�
͟)qޛR�:��,�|Uʱf�iMs^ӛ(�H�R:�H3�Gh��NBw���n'�;	�I�y	�㝌�d�,��NFw2�=�щ�cBW:����t�;��I�H:'>�	�逜�I�NB�:�$t'��#	�g)�����t6�>���osv2��������d�{$��Z�ٝ��$�,�MY�I�NB߽�.�;μ�z�ά��@:w�w�t~���]f�u���]�]'�;	]%��6�ѝ��2�:��hǮ3�:��I�.�Νt��q�E�]'�;	�e�u���U�~e�u2���]�]'�;�mcU�E�]'�;	�e�u���?�Wą
V�3o���~��'�]I뤇���w'�g ���%���"�����a�=�j��Y���W3���A}���Š��e���^���㵝�Z`x��kQc^Ck�ߘ۾�ܦJ��T��@z��e-�)=���Q��rk�\վ���9���E�<��e��Pl�&z�^Ѩv#�?�Z�-72ڴ7;���NF���_jx|L�ůP=W�m�]�ɳ�H��w'�9��_�
V-��(�9|�TF�=|��pKDR}M+>�ԛ��40dJ��3�cmeD��z�8����W���;N�
�&�6B�oωM=V~�|=Vv��%͸����{}���z������5�@Ȁ���W$в�'�ߤ�C�iK?=ƿԏz3���9�������<��LyT?C�j-�/��+��=�����7�k���m��8�����G�MK���W�+�$�U�=��/��I*i_�̻Yܺ>�^�s�od�$e�OP��7/�L�:Ϥ��7����TK�Lo,[�\y߾�����5�3�ѯJW"U��jُ�����W�b�^��������K~g��,ÀY��_`���/1a��g6�혫�b��{�W�{g�1�^���`���/
qQ��C
flZ�^J���5y6�1������3�w��Y���K��X_��xi;��5����f}�g缠�O��E���ϲ�ݦ�]�TGj�ɒ�n��4���|qH�#����Y�fw��C�K�?��z��m�r*���>���J^��o^��'�aYᵺ�uΒ��}��u��<����A>�i^Q�0Q�u՘��J�w4�v)�Z�e:Y74�^��h���ah��w�ON��7���&��}_��/�L�|o�L�n�g��*�!�V�DsoU�}�;"~+G�:�%��ѡ.�%���D��g���Z
m�<L��_�ʺ�6}5�ӻ�j��b_��e�}�V��cu�Ǝ�Lo�>�~I��G~�Xڽ�Ӡ��M|7�{�^��|˝W��Jt^��+q߽<�J�7�J|��-�Ry��\�'{K����W���H:��>P5���Up�ȏ�Rŧ(WE�L
Uv_�\ ���+~q��k�<r�k��%Y��!��z�~N�)��	�g���;k�~��5�o/��&+ör���}<%L�*Ӯ��w~Kx��w���z�b��S|����'}���h�Wd��(�6�=�3`�Or�����Z�I���U�Am'����xun�_��$�d���"�
;��K�g4����H���j�#I�&�3���20Wm��ޘ��^�<'L�lA/�]qBUn���Jl_�ӿ�G��Nɿ��o��zϵ��q�6�	�	\���S�qƚ|���k�%YDI�5I�E-'<����������#�nJ��kn��ܑ��>H=��lܭ7'�R"�xԜ�"T�|���0)����zEY�/ҽ����P�l�>��iV\G`n�XU��UEh�����H��s뷼��@	Fypk���tL�!�YCIFi{J|	�yA;@ē�i>�n�(�{q�T�I��?�W�5��߆e]�H��kE�7��x����-��>j��}d��#i�8{�c�[־�g��O�N���RX󭼚��-�"zbF;��y�����'s���¸��b�j��n��L.���O�~�_�H�ޮ"�j���kZ�zR�/��+�w"?��V�Gk�.�Q�93�9�{��T���֚���}��]b�HӢdy|T���}�%ٹ!�]1�B@k�X�9�zc��5���s^�3����7~���1��HQw]�H�ܥ6����+���2��?�Z�E[\��_Q�����H= {��#�q�B���&K�w�|ix/�8��Z�ս�0h��?��d��q
����p���b��>�b�;�O���"!�!$�_H^@��f��B2)��~E9�hO'Y��N�1��ސ|�o���H�?��+��Y�T��왅�1}�v�����h����s��G/Ŋj$4����rd��6nOл��R��I���g�Y\��*�Ow��}���|�b��g��fԨ;����v��v��$�d�)$��SH�}�Ų89-�����6��9l�FU'�;)��I��Z
�I<���Ż���Z�ی��8��(b�̀d��J}k�=Z�f�_־1�ϯ���bp���]��W�JW�l3���D<;�g�'t9L{�5�Oh�$��"	��}��x�����rڑ
����]���c�~8Ɲ���}1�~{�/yc�g��<�W���cU��W)yʄO�w�d��Z��#�7���t�ݻ�ƀ�������G �8�_����[K@���<C�O/p��'D��	��Vx��3���J%G-�\��=[�ZI{�Xi%
�B{s��>�������J�fZ{��V�k%_+�P����X�i��fZI�u����B��@C����Z=_닯A�ZIî���gj��F�ZI�������jcp5(�ֺ���5�s
�\�Zg�ؙ��ZI�´�0
�6 ��ԂOGW����9�Z
#��
?W�z��t�*��V���BQKڳ�c<��'�iJ�מZi���=����t�1~R�+��V�EZI{-(�h���#�k���M��C��z�Z
�j)Ԓ���*�P-��:�����Js��%?VKЂR�i0]�^��>~R)�@+������|��'}���u��ϴ����V��y+����K���%�;��G��SK�J+-�w�����k-h �5�O�0��%_+�P�Ӟi�4�@���5�4�L!�����J�V�Jie<[ѿdtji��fZ��J\+�%~�zJ	ZX�'zj	��9~����V�7g�I[PJ3�ĵԋ��H��%x��'��O�L)��g$�SC�(-𓾩�Vڳ�|s���^
񓾩�Vڳ�|3�O
E)�3?�3�09~�7�R`>c�Ih��fZ)0�K�J��L�TK�(PJ+��R+ʹsf�,����Jڳ�VZj�9WK�@+io�Z��J�V�F�\�'J�,��A/p����.�'�td���LqU���O��!]��tX��CtH	o��߱wp�����e�G�x��ߙ��@/�ߦZ���i)z+�����L/�2��)�����X�`�ٳ�S�JG���B���Cw�?�J�s7OFS���^:�1�U����iO���"��'E��ܷ�K�|E�<&c�x�[�,zo�)NՁ{?�*�[�'�]����o�-�o�-��޵�'��_ON��B?`�d�G�=�e��{���ȇ�����'έx
d�9�-hО�z���H�&.�q���3m����ԁ�zpe���ե�����b��b�^� ��������x�Gw�{T���>]����\��ŗɱ�38�_6�O��7�gнӳ!�܌�^c���3��M�������	Q�<�@zL��Xx�н�9�d2L�ʔ�y�����xs�&����w׃���ˉ�S�Q�#�8ܜ�6N�l;ݧI?<��e��@d�;||p�`7��axߋ�6��>5I_њS���(��ı��t��G�n?Jv�2w����n3�^z~�1v{|!z~����
�L�-n��~�[�O���D���2����)������Azg$��;��x0��OIg�'�P�a�y�89I�9�8I̅ZO����<�\�=��A��o�'�#�g�1L�!T�ǡ��f�#48���`�GbP��X�W�y2��=/��'S��ǹvx�v�c�&�?�&��
k7?M�{9�ttF;�E;��>g�$Q�ᵐl���l�?@��7�K��������2���G��<<��K0��nP�7��	� �X�`L�g�y!R�c��pM0��D�G�g��9�XؔD:n�IQ[���E��w"7
��\���N6ks�D�Q��cb7�ŵ��	���}7r`�	d�^5��Idඝ\�l�g�<��A��blpx�B��T��!Y�ǧ��1��|D'\����!˅�u���t;��6�V`���#3�K3�������&In#�[jt��q_�:������.�����5��[VU��Yq$#Eڌ�꿏� 2�Y͉n#����?�SpS��)��)������.�bWL�_VU���·�)H$�LQ�?F���������H��V��")+Za
�d�h�)�:k�)<Ҁ�ݠ)��>�g
KɌ�A�%�+�J��Q�0%f�j�)�$�V����F�/�nLȌ7P=S��v�����mreS�6�S�,L���5��ԖBRS
i��`�:&H�h[c
��>�5e4"�a��T0��-*v���T�Y��T��&F�s�U��&f�Y���`̢ae�D�-+uk�ƴ;j�
��ĸtγ����ļ��#����Y4������e��y���/>�bc}c�˻���u�W�+��D,�\�w���2��?=|n�f�`���7_ۗkR�..�����k㽼x
Ae��?��.��o���z�..~g_^��@�xo��ŕEMWvR.޸�ߙ���.>8���C^;z���禗oL����[܅b�\����
�	��"�����uQ�Q���yN<X8�_�s�s�pЪ��d;s���eؑk��@�Нw3�Y�ܦ�y}���ȇ�BBB�d�2wnm��`8�M>�`�7�����S���:u]��떍O��%�԰��ͷ�e�����Ư��H��~����c*|y޾��!���h<Ҿ��}}���.����!�����������:���u���	.{�̿ۜ�g����ƈ~�3>S������ט��	N'Q<g�~ƥ��̉T���{�_���v�`����st^.��񤥷/�ʆ�-q�3մ)Zz�헏D�e�kY3�຾y�8:bF�}N���s������_[�������2p�5�fY�Fľ`�^���~���9�	�1=}x�F���Ɔ�K�"É��>,3��ՇY%Y��	_�\��^��y���z�?�o���-��M�Q'������oZK�謬	�IP�iX�ww'�5͢k��nSn�i�6�r��|k�]��w��>)0��y�xG�� ����^W�IAA��w�.tn>�:L��}m�|wJb&yY�ͣ��=>X?���i �a9tݎdX�T�9�E���a���������f��>JkBqI1�P���p�!N�N����|D�tXs�
����LD�J���h�`��\O@EFTLԬ�B;ũ�%PQ��D�@�j��.��q�ӁF����*LjJ�ߊ�r�D�:5.8����KÖ#LR���R�
�1�����&Zk�t�i)��e"b��)�8Y�b���M��h��Q	�eϕ�m��A`��h�	�!��Y��Eg�d�E3cd��\T�/[X%�C9g3��,9�R\��daV��x+o�V��
'�m�{ņ��F,�Vt/��z��q�b���Y�\ؼ\�v��J��Fb���xɵ@�
���3m�.?fc�L�%����؊����q�>����E�3���x����|��I��Z��J$��6�Q��l��Š�d��i�d�$%�U�Bִ_�B����j��i�4�6EN�O���3k���[��[Ņ�8��^��pT��D9iMIVZ㜶[{#�����T�iN����6IA��r]��Km^��BLZz�-;��e�ф��ң�0	��p���T��Ul���1��h[�������}k� �<���+�z�n��lP��4 ���߼�q'�y�0U��AY!"I,B�O�f�p�D�X�9�w1�#.�:���� ������
�TL�>3��^g��T�������'�1_Ƥ.Q��=DtkADd�gTyPh�R�R&�eP�`��,P���
Q8rFc��z���2��������fV��N���h�l��`~B��x�����2�˜4��ߎe����&�ɚQJ��H��0�J��7AD�<��Qĵ�	,��Z�L)�o0�ż��(�%�0֯��sO�J�{�J��wލ�Z�R�8�5�$��wn{�l�0����(]1�s
�ޏ5\V^,+;+-2��D��l�,�xtb1`�B \�ѥ#\Q:����aEz2��*�Є��t��D:�*���Jd���D��^��sF+���L�@�vT�P*a #R2��.�7�:3ݦ@=3݌��̓���t�fI��
Ȥ��^㪑��}��X���Ъ/�%�ے	��yz��VA&�'x�xN�DcI�̨^��i�`��ɤJ���(���,@"+{Ò�F����
���`�AU��)O8�A l�g�ˆ��m�X��
�^�,�o �)�a�rG�x�
R��L�fJ�Tb4UhoDm�dG�R��|<�n�i)Q+�0O�8��PA�R)��t3X%X��P|2�
8��J}ɓ��!Z�U�<��<�-�0h63�S�Z�c�jv�������i�=2�,	#�4TӁ������L����
 �?e2*!�8S#2]\�2ٛ�$�W1���"�cBq2ڙ�p1����=ea�9C��~�J�n��0	G�A�S�U��5�����ֽZ*����DxJnΑ��eD��S���q�@FKn�r��M�+�N��u���
2����- {˜6'[\�J���-Uϰ'��n����	*bv��Lщ��a���"�4@r�BBG����L�x�W._�̴�X��t2��L
�O��[[�SDF�Js��,�L��^ur�L4li
lX)s��<g�_�N��i6:M��:etL���4"4[���4����NO�Y�T
�-%+�3��!w���`Oa��{�{�:oNT��(o��(veK�>�"�#�\?nI�������A=v���@o\�	�U��̡��@Mƈ;�[Ȳ-gj�t�Y�e��)�ϙ�F�)��ZF�Ɵ��X�t� �
�H�1�B2�
���7��P�>p�Fi<���U)Z�h
�5D����;�oJ��d��!v��Ҟ�����I������qz���y��'~(G��PCw�S��%o�!k�O�h��	��1��VM��c�����nvz�k2;����1OI\��$=��8��m��8~J?e�O�S�Q��h'��	e5S|Ȍ	V��	����1�x3J�L��a3J�`sB�a�l�3��6'�z�c0
f�"����`l�(��r #��ęQ�Ǭ��A���l)���}2Ӎ����L7Y*�'3�d7�Of�ъs��t�M�>��F�=����6+<3����Q<Ӎ�G�s6��� �
,�@&�*�؉��Vk �zZl�&1�ɔo�`ٔ_)�8Nf:aJ���x2��U*�'3=^0�*	Ȥξ��U����7�L��c�z��[�<�cN¬�0���Dzm�(�0VI�/��%�(��W�$�����(�r�.za-<JBn�
��aM�4� ;V£8��(�
�&S*�B�f@R[hT��C�R���b��Ш"5�F��14*�H��Q3�64j)��F�H�14j���B�&H�)4j��B�&@�-4j��B�&8ieh�\�;S)�&h)�L����d�*u�-%��NAM�R��+�e
��T��'`)�ݵHb,���H�ims	H��
�Q�~�Ok��3ҍ޽g&s�:ڳ����=�h�:*۳�f��YG�d���Y2{��<�=�h�̞u4Kf�:���g-�ٳ�f��YG2{��<�=�(Cf�:�'�g�T���	���uT_z�q��
�ƅw���_�6���Ɵ>?\��e�v�ʛ��~�� �@ڮ��������w���=����g\s��߇�/��i�f��S�&[��x$i}GL����>Gk}uǡa[qGٷ߬�c�_(�X�|��cI�
;���u$岎�7�7(븋�]?	���Y���j��)������f3Nj����ߗ%���em�Ƥ#�9=�e6�M�#��5�f<�l3�4��KS�$g�����Ni�7uJc�1��a�q�曻�ɬG:���sH�����Y��G�ew4w��y�͝���ʒ3Z8�Cѱ���R��%_�t�
g��+��ϩ�D�M�z?����}q����@f?4�۷
��cǨ�\/���uTf�*8��C[U����#�.�j�,���'i�]�b�]���w�]��=е�z�]�1��?�J�e�s��]�>�j�e�s�FZv>�j�E�s��^v=Wᆲ�l�x�[���&ng����%�3wN��-x��q����Y:OL��ǹ(���9�*��K�f#o7�7�s��f�a7�7�-�͘n�o2��[��7�s������j�,����h��\�`�����w��\����͵;{��\/5��Z��l��˞�Z���i��?ˎ�Z]��g�T�n�*�P�e^m�8����_�D������8|����t��ad�?�0����PQ$^s�Q\h��u��wφ��mB��mBE߾�>��˃>�(ϹT���Ru�)�x�Rm�u�
s�AK+���2�$
��^���􊬦jf+?wNՐG����+v\[up:⭵U�G�j��]���+��5U{����O�f�h�dr�3�^J�xX���J:[��<�R!U�IU�IU�IU�t}Y*��7��*�����X��j�]U�ZK�r�j��r�j#�r�j��r�j�r�js�r�j��Lu�r������(P�eJ��j�
��.�B���[(�Z��
T+w�\�Ԋ�[�S+e\�zj��-O����ک�z�P:�R'*�V��B��J�0W
l`y�A����8ކ�*gĖ�2�Q=�ʥ2eRQ�t�Z*ߢX*wu�*��R�T�E�T�I��V,�C�\'�6�g�Lju�r��ڈ��2���Y�eR��ŖˤV����r]]��ڎ*�ֲ�P!�v�
R+WL�Bj��-TH��K�R+�u�>j+��R)�
�Q+�n�8j�(�F�SG�Ҩ���P�RK
�V"�90��lR����z��������0vƓ���T������=aoO���^�	{#*{�^�ʞ�7KfO�˒����	{Y*{�^�Ȟ�7OeO؛��&d���y2{�^�̞�7KeO�Q����5aoRvZ&����+{{�uebQ�L,j(��<���<�(c��F��8��s|nr�q��>¿���˽���h�қ�1�l�Y�W>4tw�->u�8�x��,s2ȌV7�YF�(���F,)��Y-�FҬ��u9��a�+%�!����0��|�&���I`��$,�[+�� �7H-�ߟ�7�qҎw_j��@��Ӱ!$	i�2�&��ܨ歭<�8�Z���!/Y�#�O▚y�*[���Hj�L�n���ŧV�_����	�5p�V�M빐j�	�Y��B(hÜ��#��
���b{åi�Ѻ(�7��o�j��`�&�gh=��h5�s���4���!��u�S�ሉc����^���i�J����Cѐ�:|��Z��B�t���k�FH����R��f��T���*!M�����fˑ��ҡOHw裾�>z^�]I�J�	)	̸��JB��T?�I/9䌴�J��HK�5
���Z��HK<�QpNKTb�9-Q�g�D��`FK4�~AK�f��оN��j�+�&�MNO�'�DO4en��{��m6oC�Y���Ю���r��q��np�
���q78�ǵ$/-��ÍՑ ���}�5�ύF�=yz���{����h�;��=������|m_�A������vӽ~m0���k�wq�>��}y}e�5
^.l0�����ˋ7��Cﭒ���p/�]o܇��}�p�0�Ň���ھ(a蹗/���1�B�o����[b�\����
�{yE�5/OV}f��V'����Y�y�y�5�3�(Rd,|���>)�u�P����F��1�;�lP�Ky���8������f��)
� ��<	��;@:�'�V!tO+f�]���.�;\�6<7����n����Baڧ?q�y1���TT��xH�'����H�,�%̤
D(��ThB��<�
L�	�+R��
��4f}��RW��'T���!��W
sEB�1.Y_�Fc�a�@E&T��8d��j.D���p���-0QkO'T���
�4+��cB&E�>�L�Uso��KU���6����mBF
Bِ�é&�b�%��*�F��&�X�Ȝ�MM�s�P�0/��*�������Cd-�C�џ���M"kh�%�������
��2��ٰ��`�fA��$�]K`X"i�����t�
��a	r��ga	t�qa��6X�6�%tXB6�%dX�7�%xX�7�%xX�7�%xX�7�%dXB��%tX¶�%#A�
K�:Xl)��uS�n�	LK>�z�\48��ޓ�^]=���o��s�䋷��Õ�l�M�ť�4T����\[��ׇ���Խ:o������!��6�	r��tɦ��
�W�;A� o�[ܴI��ʢ�ϟ�@X�� 3���,��^�u��N���7v��a�_�	xqe&���'�ׇ�kg�ks���`_~����omE��߽cz�w�������el������-+�}�ƍ�½��x���]�Z:Q��x!��M�\�Α�"G&��N���>9`�o�ء����[물˜3�߬>g��S:�~B������v{�KnG#�x0��\��_��/��+��ʿ�s�����Ӷbu��9����/8c1�&7��rrgSp���>��95�⾺~�'�+�7�9���[�Ƹ��'�cÑ���>	rj95���AN� �f�0����U�'!F2�2�C��:Af7cbL:�M=|�2��*��*�r�EG�=����>8�c_\I8�� A�����>� ÈxSA����F\JStɿ��*�#c>q���(Ul�$�KĜ���c���l�I�)��%���T�C�(V$�H3�0��r	@-&#�����#��Ra�B*Tq��R�	�i��dhBF"֗�#�"�X�Ȱ��&���ф(Y������a��Y]��2��<ޙ�9�"\@-e���������;K62 �����_�TBe2,Y}Z1$��!�b�
O�0��a�)���>�CnG�����l��h���/P�ϐl�t��I��jW��U�#��"���*UֲcR������XKS�p
:��	����t�i2%�GӠ��ɔ��0��F�l�ͻ#�Ա�佩ޢ)�+�DY.B�" �9�K�&�Xu�PF2sQ��>֠�	��;��X�t��uǹ��& 7"$/ޯ6�Ǻ�LPN{2FsɊވ��R�8�"C��72!��H� Ȩ�/�D>��iCƵ$�50`�1[�.�)��ޚ`JPk�KV�	���FL�2��QŠ��&�B�:�-�:S4�h"��{vS���c�۽^���D��mX�-�22����5�.|2�!#�h���	�C9ܩ�S��E4گj�S~�4��)�B��la�-)��-B�-qQ�l��5ړ B��Ѻ����ǎ�֨Q�uV��4�%�S�D�"��t����u�i�ē�;�0+�y%|�,�o_���o��	w�D���	m���`�ٜ7�}ퟒhק��D;�f|J
�N��O�\f�Yo����jE|���&jE<���Xն�}K\�̾�CK����>�@�1)��Է�
��9�>�I�}N���?�mX�#m_W�h���q��V�u�b_��;7-	1lx��vΛ���)�T<��lOꮥv-�� ({� ��#�Ǐ!C����i>{����Əy��@�KG����p�(Z�
'����N�Xp����]��%��܁f�4�s�M�܊��r��3o=r`�z�����Qb�GE�G�WW8pԴ_:p���y�r}��X(}��a�>H�W��Z����:�{�7
�YJ��BDw5���O
�{ʗ� ��޵�>;W�z�Jg9�✃Qo�rOzuX
������'�Д��V�ʇ�I��S#F<()�S�#N��t��Y����gub�sJ�q�>�%@�'J���+m�"�dY+�c����P�;-��nF��E,��X�2�r�Rc�f�!Z��Tќ�.VH�l&�y�B��+V����h{FS�\��� h�D�z���|�H��a�Ϯ�v%�c`؝"qB7N2�b;��$~���F�q@>f;��p�Q�NՐ;��	c����rw�k"�:Mu�ox3TD^z�ac@>ݲ��Þ��%���(�����=oo/\�wV,���O��-��~p>��or���bT��,���{�߁�$ȸ-�c���0�p��5��_z���Z��}�{���w��4��-Ew>�K��B,>�E�>��e0�T�g�_��Z�p��w���-�^��B�"1y4Zzt�B
��
���Ѡ��s�`4�b�l����?<����v��:�\h�&���]�,�'tw��r�ӕ�(+w���.�ᝡ�"��4\-r)��\'rã)�N䎆�$rG�j��15�ܶ�?����,r���q���tE���ả\";�lM��%/Y-y��V��&��N��g$��4r�I^V��Eɻ���*y����佹�׻��%�+y�psF�P��|#�j�۟�I���L�vF�F�;T������E#Ï/wGC)��[�Ղ�zք�s/�N��x��e�OT��=����Z��$��%��J"�1���W�0<iIB�/$1��_�Ѻo���\%߇�,�G;̌|�헌ȥ�Bv����u�q�;#�y{Ɲ�;��%�'/q��D�B�̥}`H$uU�i���U�3���^�@iA�V4_��������*rI�Ƚ�l7!�"��(r����X���¶���T�	rã7���4�[Z{QɌ���$pۺ�����{#�ow��K�O^�D�& �}���
 �w3���V��!��r��m�ÀΒ�?>�zR�'�X��g�ո2�8��,���Ŝ?}��'?Ջ8�C	T|�VN&���RN$Y�ȕ�ָ�K�zWn��%�G��ʪ�\Y�kwK����e�L\Y��C�oV��qI�.21oG7����ǵ�`ָS�GofY{�)�T�_�5;��۾S��NUY��W��(����`�X�����5(���^�� �=�,��2:dߨ?�J=�j��c�zu���a�X�I��K㷆��I�؟�qe��s���ys�_�}��{͇'/`O��H�>�>`��Ҙ�g��E(����W��PeF{a�P8�L���M��׶�Ӷh�mU����2<:[��Էϖvq�H [�� �-Y�ā\ɺի��ZD�S��a��1_�Δj�E\��zDs��� O�����~��P{��G�P�\oh�&�j��J}�R�������e���Z�}�]ǰ�J���c_י+B���a�;,�q�C�juFyG(=��0'�jwE0��#�as��;�-�g�!�����[�w�hN������2��������N1)���u��Ɏ�2�c4tHuD"�|���i�ȸGD{$:)8
7�k�?��I��둶��C���=��$��xT,��b�I��F�|�43M�f|�l�X�u��$m%O{���k>̭0c���¨)W�E�e��%�F�T���K��v���"�)/4`�����#uLN�K�N�v�x�%g8��#��%r�؝�B�{�B�/b�`K�1�w�r��*���}��I‚��X<�N�!�JF����b�1�}&����F���b�����5��cc�
���*I�B/��[t\��hXg�¦�C7떝�y�V�Ć�rB��R����RJ�u��ݍ��"9�=JǻB��):�\v1�����qP:쪳�KsZv��`�g�V��67��nKy�HPc)��^� �c2��A�1�p�9+U��F?%d�Z�@FI)u�lddJ&�d�U�a�
�*P�pQ
ұ���eƙ�A_��[?a�ؼ�/�B��0�X0�j;}���bi��H&{��ך��pLTl��13�uԫ���� ���G�1^�j����d0!������{E2Y�PC��p
�ꨔ�x{����urG���OU�!Kc�߰�	3r�ff�j��-�s��T�oY8������ A�2&��̀�5���ԲX�@̀�\�(\�f0r�o3H�@�@�M�p��A�e�
8�@Π��Y�ap����km@�:��́�9������@΀�ay�l���.P3�x�s\�@d\�\��0�����tQ%0�?�������e���s�ڭ��[�����ps�����8�ڮ��]�e��y����������0���ξ�Ɐ���`��f_�������?^B��ᵵmm����⷇����;+<���ÿ�w_�;����K����o�6����2a?3�#�����~�-����δ�^\� �[S<~�fw��zx{m
�o���H���=ڣ���mkBSx�]N��0������Qʫa�johl�U�&f��n�Ãs����fd�,>�Op��3]E�1�T	�яj�V��2ڃ��-����p�
�uy��Gp�odl`�d/�e>�v
9��]����A��ݩ�6�����ٞG�ÃT{1�H	�Q�l�H':�iу����ŏp�a'D�:�_�_�C��EmkBT���~gx���!�0@�u��`0D0��.���V�����dv�23���sݥy�祕(��K��(��C�I+Q��[n�M+Q��S��gѿ?�,�7�D��<�J�o9MӻV���!�q����^�0Q~v���Qe�r�͟�mkBT���~	nx���1
 A����{((~6�9W}FU��)��u��==�~��?�9+�m^[S�mkBT���~�Hx��ѱ	!DA���7h`b`�i �5��̓���o1$~��֖N�a��)�4�`�/�ĐVlb��9�wl�peECs���mkBT���~��x��ѱ	@�쿴��)�CЁz���%ᐾt����]}0MN�/�mkBT���~�	x���ǍA�)�?zr�,��@E�U��?���O�ϖ~���������-�$����������I�������z��#���7x��z�F����o�$���|������I������������>����_u��F����o�$��z�������I����H�����r���������<����_u:�F����o�$��x<������I��p������#���7x����F����o�$��ݎ��Wm6������<��_��#���7x��Z�F����o�$��\���W-������O�ϖ~����~�����b��ymkBT���8�x�횉m�0]HI!)$����FR�?6�c<lHٱd��t���C"��+��RJ)��RJ�������kJ�߃��L��_SU��n7���s����s~�u�U�-U�yy9�c����/Ju�z?��i���>>>~�sm��+�v�u�Ց�νY�u�8����uN�?�WP>�1Js��WiV���_uK�E��ϸ�/r���ˆ_�gK�W]ױ���EY�cl��,[��T�YH�T�����������}x���L#}A� ���G��V�7���^�}>�iҞ��-���i��;}�LJ���X�&�T�P�3�T�#��ߨg���J�l e�'�=��?�͘o��n��a����|7��>��?ǐ�U�%�;�������/�m���N/��I���f�Qփ�z{��<�d��6�d�n�;�����Q��m�{{�5�$���iѦx��g<�$�"�^�%=��RJ)��S����t�e/�֔� ��a};k���_��y�?�9Ԛ�l�z��}m#��G�Kk!����k(�9�G��1�����z��,�Q�&�l�iV濊���#_�<��3�Ξm$�^9g
�{9&�w�&��:˙�u��f֚��R��:ֽL+mW���W^���z%�I���2���lo���Z�f?�k4�W���-�#��	?V/�c^��!�!{u̵ʴU���ٷ�A����Ge>G}�?����v✽��3��X~j����{�zT��A�O^��ʰ�>��?s�y��|����G)�P�</1�1~2�ў׆�R/�7��Ӿsm�sr��"�(����2��c�Ϲ;�~�u-��)}����<�U�1�g��:�a�p�b�5{��3�(���k�!m'mʞ���2��.�~[�)}G�κb��XE�L������p–�aԃ���7���7��Fy�0�@ߋL?󞕹��Khi�@=��RJ)��RJ)��RJ]M;�;����j7�]&SmkBT���U�x����i�`�Qqqqq�����!��	�C�O��Ml�S�$I�$I�$I�$I�$I�$I�q��O�9˵w���O�o]�s�s������,�Խu˲<^�0��t�c�}�av��=��7����_��{V9��z�}��ٿ�^��s��_���y~�?��}e�z���۶����������@��w��E՟�k�$I�$I�$I���@?
���=T�� mkBT���x�x����	�0PG���:��8BGp��ҍ�'���#!9I�?�KpNN)��o������Us�l����{��o��g��p��19S�<��N���ߘ�9������{��<���l���ߘ�|��1�e�o�ٹ���������5�&��mkBT����#x���	� DQ��b+���lHF����c���T2����SY������b*Olb����wl�uB;=f>��'mkBT����'x���!
��ѽ����b�,�˄=�Ȁ��^���g��/��u}2��i�����y���O���?�#�?~l��������`;��mK����)迮k��4�NA�eY��v
����?
�S���t��i�����8���O����ቷw�@�$!�'5�mkBT����xx�흍�)��q ĉ8�D�^��>׻gI@��X�jjg�iЃ����`0��`0���?������ϟ|�:����s��e����Q��3|����ӧO|�:�2|�����.�}��;�7e�GF�����O��6���_�Q�v�������]T��]�^�ˮg�{>pj�z���k�u��o{�y���ye����?��{�-����x���/D:��3D��&򈼹e�^H�y�i#/OG�z��Ϫ��߯_��~�
:�sMe��#M��3Y�#=�2��Q�����Й���[\s=E��8�}E>�Gȩ�T�ڲ��T�g-��}�����Vf�������o�SVw�zV}�.�/�>�~�<Vrv�@>�!?�U���������1���<�#�����}��=�F[ ��~���QڋB�N�.�.+푹^ed��Lo+[\�-��k���
d�W���(}���6�q�$�#�?z�6��Bө�i���?�L���7�!�3�O_Q}Пu���o����[�=��tk�ȋ��M�����!'}/�Ƈd��r2��_�C���ﲨ�:������`0:8�����o�=��+8-�4}�۞�c�ĥX�dq�{bU�����q��©ή��m�!�ƶ�g*Ϊ�U\z��[��GA��=^�+ru�{��LV���	�U�?)�V>�ғ��)��x��|�Y�ҁ��gi��\�yi�^c�U���o��*=�����!����T���Y��?rf�g�����W��s�ʽV�n��*�V��X�#�=��F���ϫ��+[���F�~�yH�\L�~��[���O҇��h�5�ݵ����T����o��w�|Sf���ӟ�+���)���;���F���;:x
������)/�OS�y��U���o��2��e�)Ve3'w���gGg��=�J��^��`0��
ľ����u k�U,�Ks���ؑ5�nY�,��bXw{���w�&����3�Qה��N��Qev�	�]��Ʒ���gcH��˞��i����{���A�3���I�8��h��w��d��u�w���UI��W�q���8�����I�>�+���@��p��Qş���Gc�Z�����\ƪ����U���ߝ�]��/�:����3d�;ɫ:gB9�R�����|GW~����w�2��;�fz<AǏ�ߊg��_��l����y��������=����U��y3=� ��[�6_��3]U�_�����k�]���]�ײ�2��;��j���->��t|�+�i5���n����Οg�Z�Y|<�1NyŬ|E7�k�������?���z/k���>�<��=�Α}N����΅���>�u�Wy�d�ʬ���dz��`0*��\?W8�G������Y����:����Dg��c�g<��2+�������'�W��6��qn؟{�r�u�"w�<�Tk��.��\�r���n�O���>U쏘~c�#T?��+��y��{�Q��,�,^�qF/X�v8�.֩g��3}�ȸ�OP��~n%�hU�G4��(_��sn|W}Tg&x^c��,F�����ѭ���+�<��#+}/�Uw8B�Rh_�����|�33!m�r\7U9�m��({�ѝp���ve��w��[���x��G������]�߱?g;�,�n�ҽ�ow8�]���ו����b�����?��OV�=��Z�_�����#�ve�?��v��N_W�������r�YL���o;�����1�g�9pV^�G�~>�[_��v�NO�S��3��`0������Q����[����	veO\k^8֔��v<�Zbz����\��O�p���b�n$~�}���o�z�3�ј
mK���vU��]^�i�N���WA��#��x�딫���j��t��q��:���E=�
z%օ�q�)Cc��Y�E���q����yRG�-�+u(K\�h�P�'��*^ء��^���q�=m=y|K��vūe���\��rȊ�4���=���{W��1���;=ݷ��x��p�;o@>���Ș�T\Ԏ�+C��=*�ɫ|��G�JO�C��W]��x�1.��ﵠ9_E�б��
��V�q����)v�(��ʑ}��[G��w����Ǻ���{-�o��Sdו_˞��׃��2��;iT&�w*��w�����:�����g׭��S�O��s���j����%Z�[~_˯d�֮���+������w]�7��`0����]��k��I�u��+e�L]���ւ�oA^���;=GR��?��v쯱�;<��y�� o�$N�1紈=:ߥP�V��u��<�� <&����3K�yC��/�4��r�)i=��*/|Ύ^�]�Q�NН1q�G���w>ù{��<F�����V��r�2�n��lo�؍ا�|�m�o��'�qb��Ӌ��r�`e��ef����6
0�lz��sA�_������x7��췣*�U}��R�%�+���C�����_�	�ڟ~I\�Q��~�k�y��#_��jo~DyU���^���`5���p����k��o�?:��ˮ��C����w�������>?�Kv��:A���}E:���_�n+{�u��=����r����q͓�̳]>>��d�}+�����|L�����0���1��`0�l���e���g:��׺񶊝�`W�,3�O�?���]��\9�P����~�[��kO��W�i�Gc~�)��-<�w��.��3q�}��'v�u�w$V���n��v��(�r�����5��2���S;W���k�_�K�ϔ�8B/��h��E�ՠ�'�9�w?K;�x:�x�<��|@��c��Ͻ����V��y���c��@ۖ�Sw�8B��q���]��=��2�l�B�e6V}e��������R�(�������	V��e�ZT��4��ad��e2ޒ�+n�Y����B�����Tq��S����ߔ�<����[&�=�f��[|�����s�z�P�)G�����}{Zׅ�3���n7�j�p�W��wf�t��E�w��[ǽ�;�����`l?��`0��`0��`��{���~��������i`oL�y�>uo���i\q��K�|}����7��Svu9�G���쯿c¾#���>�,�jo��w{�Ն���ݲ�L��=�mW����2u_�����8د���jo�?���k��D���߱��m����w�>���#��}�����E:��OۡO;<���s��y����}�ڛ�k�}~����|�M���'8CT����o+�[W��������U����Q���r'����\��'�t�TY��w��z.D�=��W|��~q=_��y��M�����������Ǐk�t��bS=2�|�ұ�y�N�_}O��e��摽ۏ���tL�S6�q`C���jf��3�#��ܰ�?z�1���H�]�����\"�W���]����O;�2'@���@~tG�:�����{��u���7m1��Q]�PW�V�2�S���z]ϥz��s������3��]v�����xwҞ��:ڗ>�y��`���$j�?tU�@mkBT�����x���!NQPdC��� �e����X,��c(<��t�`z'�zK8?9�﹛�/&���.��b<�Ϳq���3�ÉMg;��z*��2b��C���|fߴ�P������Z���_�y��������Z�����y���5���g��_f��e;���2��Y��?~�Ǽ��J�7������3����i%��mkBT����tx��ػJ�A���$(�XZ��,҈`�؉�L��K�,�o��[���=�|/�"E� �xf�)�9�n����u���^��������pxQҟ�s��zk�\� �>U������8�_�F��r3��g����o���Q��W�g��*���n2�ܗ�_��>��Ѯ��*���������l6{*�3�|�Yw ��ث���L��]��̟���b�H�q�SϺ�����tu��ϝ�s�쫼L�q�SϺS�7F��#���x���o�j[���?|��Q�g�YV-��+���^�����]��iS��mmkBT�����x��ч����˙��MؠY��߯�?�L�{�d��m3`�d��V}>�66HV���66HV�^�66H�l��l3`�d���h3`�d��V��66HV�n�66HV]��66H�l��ri3`�d��V���66HV�N�66HV��66H�l��ph3`�d�~�o3`�d�n�k3`�d��Vm��66HVm6�66HV���66H�l�j�j3`�d�r�l3`�d�b�h3`�d���~���	�R���mkBT�����x��ұ
�0��E���C�q��C/��Rw�Xk��UU�����z�����"���>��>0�l���
�<�y�fK�mkBT����%x����iAPK��-�,��$Kȷ�"��L�$�IK~f!g��~\x,�"���z�o�_ϏY�4��~��0��ݏu�z�z����v����[(��ᄒ�5�1�Ag���k۰����J�d{���t�\rX����u͔lᄡ���s1���Ag�t:��Ag�I��1�M���fJ�w_�SJ9l�2����Yɔlᄡ5�r؆Mx~��]����ݗ���}
yB����E`�i��r��n7�r��2��Π30+�4�S��.p�mkBT����x��ױ��@`1��G��XH�������"������%�[�����v'�I6�߫M)m^�b�zkx<]6�c?����������t��J���n������g�7Ŋ{j��B��^�L�5�����gf������FM6՛Y=z���g�?��i�d�g��>/��ߝN�4�gͨ/�Eo��YL{<�,�)z��s����p8���J���Ѝ���W�X�n���wa��s�y�h��v�}Y�=/�o|4Ӱ�K��mkBT����ax��ѡ� DQ�����R.$p"og��3[�{u�U"��ؿ�s�-����1F<қ8���&��cjk->���w(%2����mkBT����8x���1
�0�@��x�N�x6W���	\=N��ĥ�-��G�fy�'�6�H�R�c��z��m���$�S��%�ao�y����X��V��Hm2>����u��}����c솽��c���wq�s�_����C�����
�mkBT����~x�흍��8FSHI!)$����FRHn��w��H�Y��x3��ꇤ����s�a�a�a�axI�����Ǐ��'U�{������o��_����ھg�W9�����������o'�GW
{>~����J��l�����o߾�����������)*/���N�\��ϱ�o��v�[iZ_ձa�JΝ�/:�����6�O�-���92b?�T����l�k�%?������_2����1�B��s��Y��5�>�:�>�c=1�����O�w��y�^�- �ڶ,��X��z��u��sM�#גU]�>H_���y�Y��v�!ۉ���_m�i�Ru�s�]�X�m�_g�)YY�)�m�]�y,���m� z�1��a�a�axE�ߓG�ק��o/�Y��\�k�6��x����j��gH���������|�y��u��.�������\��a�æ�M&�w����k�#�ϐ�$?�]�M�o��\��Ⱦ,�/��ڥ���Q�@��~6s?)}��,� l�����gX #�v�Q���g���B�����ٙ^��u�の�uh��m?�}{]��.~�}�v_��J;�x�o�gJ���Y]�޳�@��.�)��oqC����?}�>@�X���ߘ�'-����(�W�?���������������	�źv�Ɣ����O�ʙ�R����v�[K?[A}�?-�w����m�Ց�}<G�c�K���1}���u��x�LzަU��0�0�Pc[�<>�g\=��c��}�M�����ggg����	�DŽ���-B^��k_g?��F?���� ����v0||؎��=ǧH�P���g�s��/�hؑ�I
�t��~�{���n^�}���Z��yD������5���X���Wv��O)�"��c0��vY�����Z��|~�_%/�,��p\��ɹyΰ�Z�/���;/x����s��_��9?��P�ܯ5ݻ\�[��y|����č8�����g��ʱL{�?�0�0�_�k3���>��������z���_������\S��|<�)�b|�����7��a�a�axn.��t�a?l�^C��vk��ؽ#���~e���)��3<3^�����k�dl�c�&�jK+���o"e�<.�ʞ`���^(3z����u
���l�+6���v��<���ï�
�k7]�/l�c[`�O���n}���򚄫��G��뎱���zt��^v��2)?;Wm�r�5��o�c����Iz�?�����O�zx��{�&��!��e�z.����������"ѯ���
��1�����Gg��{+ҏ���l�w<�=}Gݽ��Fƨ�^�)�����zIp�G�����K��֜�{�{���e����G��12��ۭ��q���iumf��>�.���}�����~�a�?�0�0��[u���+�7�Svq�����֭�y΅�
�?ނ��}���X��w�Ŷ��v�?��ߩ�D��Zۓ�-q/�?߳�=��<��~����#������>���Fk���"q��z�r��Q�o	9��r�,��n�Y[;�o�:)@�-`ק-�7��({��߯�S����@�µ���K��9��֠�ɸ�>:�n�3��
_[�_*�mt�cm��C>�q��S���L���<�?�<n��ѯn!��>=���<�6�;��ǫ�s����a�a�a�{�xˌ�\�ފ��px�?0׋�#�5���z��я��c�]����x^��l�򼠕��(�f���:~����٣^l�i�n�59����W��~�\;�?v�n����6e�r�����UbS~v����^��UO7O(�|;+�S��G�4|?�f�����*?�r���W~�2�o�N��ٟ���S�9��~d�a�����և���mH�6��m�X�[��J����~�s.��y���m�4ٶO���|B��d���/�����b5��ɿ�y���U�?�0�0�0�0�0�0�0�.�P�~�*��1@G\⟿��K����rKX���s2�(ߥ�纎J���8���'>�X@▼�Q��Q�b���q��wx��b�)����_�K|���v� ��1��M�6ke�e-2Ǜ�5��9��?K^�E��~�9�ϱQﱮY��F�8��N?�~;:=J<�����-�t�ĒyNA���g��C��	\�N��X�K�s)'�^K�g\~��2}�6�}Գ����)��n]O��r�^��j�~�"��{p��29w�6��/�.�z-v�:�+����M{�W����JY��Z���굢`%��
�Ҥl9����ힶ�կ�#O�Uz+�U�?;��s���d�~v��N���D��7*.Y�+v:�ye;�8�}�~��|���+ÑޅN�9���}�{Bƞ#t���x��խs�Xɿk��S�V�/��uJ=o�G���<�ջL'����L��:�D]�6�j�f���gL��z�/�+ؽ[{����r��C�M�Y�q�~��[�{�y������y	c�zA������;��w���9��z�szW���H�����V�ax3���� �ף�OmkBT�����x���
�@PJ�J�K�D�v`�`	t�n̬"N�@�m�.�I>;�6)��/����ެ����R=�K�w̆�g`�ڥ���7e�l�׻���w�=S��>�va��QKe>�g�){���Nf��RW�lײ�|����3�2���g�7�O�����=fs��d�駱�OZ���bu1��Y���Lh�~��y��{�����mkBT����Jx���!
�0����`ę��k����,�_�m�����9g��w��c�|�w���Ky'J��轗w��
'�9OԄ�D�mkBT�����x��ӱ
 1��2��_�H��\��X|�n�3R��l��P��;�}mkBT�����x��ױ	B1P+kGp]��.`#�"6.a%�����u�σCny�I���9����O��!���0�<��cu�K�Vw�l���Ku��I�Wwa�)����0�.Nm~���?|�+5�O�S�mkBT�����x��ѡ
�0��_�7d`b`�R>)�s��6�Z�w��9r�E�3��E��d�e�~��Z������@l>��٤
!mkBT����x��ѱ��@EQJ�\�Kؒ\�B2				$$��r2�o��I'���~J)����ݯ�ګR���q�gid������!��m�Z�=���k+���eie���<ϭ��������C��8����C���a��T�=����[��*��xJ�Rq/q���mkBT�����x��ѱ
�0D��?E&t�ƕI�	�w��tc��U5���̬����ϵV��{8jFD}t��.J�@k7��mkBT�����x��ӡ
BA�@PB�����ڰ�AR�r����;��&yY;��Ҳ��n�0/�)����4��,���na��Y���o��%����2��݉��?d^���nax/`�7~<�$&·�mkBT���ǘx��ѡ
�0��?�W4	qP��^:�쥏�z�9�1j��3�Z��y*3?�n��{�x@��7,*mkBT�����x��}+��(��H,��"�H$��"#�X$������,�Q����ԈZs�>U{�	�.�.T��}6�ڳ�-��F`���p]�k߅~��b�
�
О$�wݓٱ����|s��Co���A+�q3��lO�x�@�(�0�a��+?�	��T,�_��7��s\���Ϙ^Bl1)�C��+�k�(�FyN"8��dPC�_9��>O0&l�4��Im+���n�w��G�rŰ����<Q��q	�	+����H�}����e��q���~~�[).�5c��6,�����m�uO���9p\��<//?����N�:��M›p)� �Ĝ-�2p�'�uKq`���_�����/���6�4<~��77S����N��BQ�����맨�uM�{���5�%.B�NɊk:	k�N��m�9���*�u�U�|2���%;������]F�aג)��RE%HWc0Mg�>��)/tih�f���	ѸX�>����E����)��<,�6�s4���5�z�b�?��J��\<OM%O#(7�6�:�=	���ӋYA��ƒH
���L�s6��M�X��BcX�&ǘJ�te�.����	3.je(��?�<?�-1�$p�O=�x���	]<Jt¡�Vg��`|I,<丕}�F�Qj]�o%[Pa��6�XY��<��?�Yoh�F��067ၭ6JF�G[�wv)��7?,�@w�
�nM�Ǧ�m��k>?���L�j��=���%w�Z�izFTx��$��kP�8�E��m�	jAO����ހ��>~������؆���B9���	�֤8U��KC�v�jb�L���C��y����;�mjP.� ����Dk���w��U�E�€3�ܨ�����8x�U��J��s����\���ɟ�+;}s�F�Q(KI��Xݛ�ƨ
�1��+K����dX�];Jģ��c�x$��D�׷���X`i� ���@l̏�rn�m$���^�9΄�zBGϞ�Q=�nf�k�D�e;
<���a�>,�⢞�j��k�0B�[p(��$���Ǡ���p�4n��q`�XƓ�	�vϵ���.x�Hn���or�J���5���H�u����뇗�f����a����[Z:><�M@J�9����$�q]�}=H�k�3����鲺t�Q�=�,	7���߻����s
�>��3�����6[��g���RL�؍����?�(�&w�.7C#~B{�]��
��U�W�7��1jk~�e�cG��r����D�.=��K�����@�W�DZM�0倐����0�\��x��v�q�NZ�>#�
����BE�	��)���&y�A}t�?B��Y�m(�WIp�ɱ���|�2�+��\2�� ��)�l�8��tl�@Z.B�����e񅋍�RS��ƃm>d�I��l���'N
a�dĢG3�%���#�)?��$s�	_5=��Y�BR#-k"qGP-�e�"�f����%֩-ϓ37�����8�M9��ϊ�,���_*n;H����EBƱ��cl�~����
˝[��/sa�g�IE2�,z�1�t�:�kL�������ș壋G)��{7�o���nd������{@r�P�>�k�w�k׽��#�kXfy��E���A��B�9�uM���4P=�_�l���gW��؇�N��#�_n��G�pp,Z��Uu�6ȓ��V��Ӱ��0EK�7*|��]�{��75F\�Զ��zQ��z!��	uH�>��up����T٣�o3P)���[�^�6�����` -�d&�*=�%��fY�<�^��ط`_6����|h���3ء>��2 P��q��7ώ����,Ns�j�F�=B���`�큳�C��i�U�)R鐏@L��Ү�����ǧmb<2FH�Rq��ùF���X�i�䎲�Om�GA�����}:�*��u�f�:@ʫRH�.��6���6�j���c�GOpO-
��6H����K��J��U���:�Jǃ�����v<gz���� �1F*qm�-;�
I�7
?��O�(Yr
�de�
��F�
�	�ѥ��r��H��a���ۡ�>�,����3��D�Z��E��Ʈ�qq���7p�?��Ȍ�K����%ȧ$�;�?�Q�r�6�pP7`�a����^=����R�_����)m���>�D3#£�_'
�I��ɭu͋C��-R�ne㯄����ss���L��<ȭ/��R)|Lt_1���<u�}E
D�zl��$H�+�N_2�scۯ-�rH�V.��������֏'���(}�o	��:]謧�6�Fhlw���@��z�{6�P_�?�
E����h���߹���v��K�/�B�"M��h;�����б�o��)gRm �$�5�, �E�x�(?�:�g�U뵅F�4��� 	���߹�E4��!��q?l���A����Yv��s:mR�(G��Z�y�Gq�+w0)Nz����u�Y�-�&����"�Y	='I����8��{��m�L/~�����!����.�B�����A=���缱Y��|z��:f�#¬oh�2Xj��ǼI|1��i3A(|��vf1���
NK���L�ͫ�.����?�r�]�qBS�^#o�.l�%z�⁋
��Y��~i�䔃P��q�u&7(��U;B��l zF�x׎����M����,|PfV�֠�k��'�N��b̔/�$EN���
HA�i�Q=�u-/T�QAD9����g��W���%YZ�\���aԥ��5�O�jr����u"9��B�zp�̬�vl��l=��ɸY���y�ܾ5t�����mE��z�+���M���>�L�k�=�rr4����/g��E�r��~P��nB�[��\g[{����g��Y�vR�W'��
{Fe�m1���{�w�L��;�7�&$��x�c���0����n����&��u�@5sC�Cձm��8H��ef���t��<PJZ��@��������4�K|��#`}a�kRN�'�~IU!�k�W��L��Z�D�NK����̡U�������;��g��L~a(]��!Bjv�(�f������\��B�}�AuH�R�����g��M��<7�O��:���[�m6u�v����;3��=��w�w�n��������3pK��M�������{�.t�"��nt�?��di�b�C6��=��E	�����,��ѮO�
���0�h�v��G��;=��MV%����ʪ�r�����4�H
8r���K썀�x��A�:�2
�e�.���ݟ0N<g����'�����6��%��G�1�ַm}�^j�n�ҽ�S�0Cz���LX�3���U���M;^�^~Xc����a�vGHu"��
1��kN�K�T�?,���r�=�܎�X}6CBW6ۻ�F��\�3�m{4!]9�ử��J4n��5J�s�w��^�D��h����z������8���P�]�z���1�x��~��J8#c�%�Ͼ��cF{d�����o��@w�0�QsP���_́� ?3yB2Đ{|��5����}�>x{q(a���тa�?���Q�%��l���4�ςxmWI׆�G�C����1���k�Q��3iJh�,����K��R���������O`���ʲ���<!�[��Nw��a����Z���x�\Rtv��^ZJ��a\(��Z�PE���� 1��ޣ�h���y0�S�L!�y�QP̞�#R@ӱ&4�a�9'2��ċ�I�E�8X�Ir��
4��*y��b��˼�/#�
x����;�2R~������O7��h�՘U��^�k�
����(侠,���2���)�C�:(ِ;�Q3>��4�)�%���b6�B8�\��p�����e<��S������+�js��p����%<&t{3?���|N)p7b�����?�a�i�D�Wl����X���Z�>;u��)�ko)#W���S�n�cR�x�{[�sXv1��95�_��0K�����ՙ7�>�Tp�5���ٴ�l3�S�"؝�LX��睫[�5m�����Q="u}���pϘ*x�b�Չ����#iM+��@�Z!�	��Ϯ~j��Y�ݬ����$?5���mt�u�] �%�@��݅:4h8ۃ����tu�3�;�
ΑO�1A/r����
��R*5�����i�&j#Y2:�$Z(a�d�@�>'z
���L�����뇶��6Z��8|`�6�"�X1�_�z'
�F-���я�?��X^�A:?1�;��h/K�VB'��vOn�FS���Ƥ����Q{=kh7��M�wXQ�p�\v�͓�O/��.���
�N3��HKR��l�K�"�q��^W��h��1wt��h@���3�e6�N|������I;y��?8t[�[�!����$,ήL��e�"�z��%IކA�k��R�l!3u�8�ځy��?_�W��)�AbC��O�!rz��a��5S��n֗���#�<�43y��6"���R����߃C��Q�&>�[��#
BH�ǽ�{v�e��kO��T�lq(�UH�͵h��ݔ8�,@t�����ՂL�{p����/�*�L"�d_y��k,4�G̖��bD>,��.ok"�D;�|7�[.�D�C�A���#�i���l����ϟ�I֬�����D�q�]+�eE	��_�--����ڰc�����^���L��q�1~�C��C�����C�9��gN�����H�8Bkh��J��#Z�-`�V�o��M�a 9r$�պZ-�h�kh�
?C�$�	�^��tď��9d(�8P݅]ڶ���w[�wl��;��d��n�׆�o�K��d�H�ބ(D������In�I� M��_(��������5)6H/���Y�1�� �QR�k,n��XH��ʉ�����?>��df��&6����^EJ�m���t��{�C�����C�c`���0ʅv5��x<��\9Y��c����}1�06"״!֏��9�dl:'��1H"�<HN�&]�5��6�9�!I�1;"����YxA��K-�y�m|h�d
�"]�����U�.ak�gbbw24�������j-� Q���Od�-��:N�	dG��˥M�����I	V�G=�W�!r6�w�H3����p"��ۋ����#g6*x�9��k{H��<W�����BQߍO�MV��{Kh��^<�F�W
<�L���:w$|�oY��-Q]<ʫ��!�!垹��F�q@}3f�R�%���oĿM���r�D���+�N|�Y�Y���6�j�r1�1k4��i'X��f�\:�e�޼� �~�P9���1�ߍ��
��&7�8Q�ape�����5 9os�M�y�	�K-��u��u9��Bdx7H�V����&�_���!C�lgL �04���yS��}|�qٳ�k�����b�s:f�'/���㼳@!�]%���z#�=�J�s�`3�W ez<�PIG�C����0�@�4������5�5g��x�c��T�G��U�#�R�CC�?tdx��L`�Ɓ8����dgsT�?M6},_��� �\�k٬��lt΄l�s��:m"2��5�be\]\�˛��{xa�Lo��Q�lPwK7���?M^a,�_�lb(�1�?�����3��݌^7��:���ރ��^�us�ϚqB�8*���h�Gx��Y�C�m5�M~�{Sg�9n�RX�C}[����hO�tC��1#W3�*��:;�&_�G�ۂ�&�H|�����5�L���<4Ƀ��\b������D?]fM{V6*�S�<����e��0,�!��
A��ؾ����K��m��m���ߍ�r���O�oC������2�
���#��p'$�F�˿@!�{0�V��YW���oe�,��'��H'���`�r�1�����#�ͿMRS��Y����ZB�h�|�x��H�@
6�YziWl�wQ��}�yqs��!`��~y#�-O�Ց����I�X���m������y����|�*0o@��]ۓ�^(`P�q�ƒv��ef���v�'�OA=B����݂p��C�J#
��֞����q��5�
R������wV&�)ԩ��n@po��]��{3�v�:������Y���f*aW��_�&'
Jk0n����D�x��\/H����D�u�qZ�\ڌG+啵X�Z�T>z'7�Q��q������Ɍ�#K�R.�/C��V��g�Q�Ȭ�����\��`��?d��1y���uM�6Ƶ8ZX]8�^p��wQ�E��
&�1frR��Ki����$G�����ݜ����Е���h3'��������{���;;�~F��K�37�k���u<p��dʎ��+C�����R���Mz�Ə�7)nҀ���� lEGy�l��:̑�I���o�B�<A\���\6�d��F��q�ϡɅQ�[�1<k���N�>��S%|��Е�sTu�le���b�A}A�����ʹ�1�0�A{�K��ʘӺ�tj����dLI=r�	�PRg���_Lb�R���
Ş�l?�␔�)!��[��F��o��wi&k^�CV(t@p�W2���{h�x�H�GRn�͉�eCb�xԉ����6G�������Q��d27\�ثd�S��=\�F�f*�0�ۣ�OP���5(r�ZߙxQ�Z>�~G�AeN-��jY��7�Ҿn;�n?ӹ"P��x�}���/�N��W:݊&��׾��:x"ꭥу;��R�펔���c䛅љ�������ElmG§a=�h�¨BG_�u���YnZ쫭FYs �U�"zM&�:��Gn��u�.�DX���5Xn�����;�}�ԫ%XO?�~2&����Frjj���8��yA���*�W	������I�����9/��u�b)��Z�l:�s�� 8�5��J��>~�i�������I<�k��¶
�٤�^�S�x�[����s��GD����(�+��"E���HnֆA_��\F�Z���%������?�4`���w��_{�7��"��0�Y��@�f}������PEj�m��v:�Q������rN��[w��z�*���5�c?�j������f�7���?K_�P��', sZ(oT
|��Ó\-%�蔒�h���y������\	cK/	˧YGԻڐ����z&c"*�(,����y�E�q(�y�[���q`�a�7Xļ��~�����R���/��{h�h���"�g��=w���ݠ�՗���?���̶�uNh{�g�?tq���m�,�u�[�Y���ot��+�!�hf��.2]�ݹ?�&��wA�R���F�ľ붾Ue���%��d��l�i����q��Ms&�6�X�w-&�Y�3(���G9��{cׁ�֬ǿM��;����v��n�"���b��)�<�׾���e_�1���p���}��11��F#��YX��p�q]��s��,[�%*&��@�D�f��ҹA�ٙfs���,���>��3Y�ԕ;�:#hEL�ם[ROd��^G�A�˩f�~Y!����E���n��0�~��/�A��
�K�m���>^��WY�q�"���<цF����*c��:x�w�|�͞w��%�ehRg������d�9�̕���v�3�v
Dg��h�>>?��3�h�YDk�gC�(ʹƒ�ԕ���S����Ԝ|�
2Q��94�(�?OG�Q34�
f�cc��PopT�Ya��W(�>�@�t�X4�`�LG�ٞp��Ʉ�a��Űl\�[9�c�26��UM6f,����'����C���4�i<D�n��#�x��г
Hz5�[�
�_�����Qt��m�vN�C_��`��x���~
Mb
s�PEx���؇;�cW��*n\��?���׿v�:O��3@f����R�&�e�����m�[mٜC���5f(�M����Ni��YX�xШ���=�4
y�HO�<�0|���3���[��B	:d1�"Z�O$+Kx�i̒=�s��J����g���~�i[Rz'����G�#�v��}�>�?W~p�sϠ?��k��A��K�rŵ���k@�I�|>^x�s�?�\��`,D��̒�����5��W���^���w�D��M���Xf_8<%|8_왉pP�1����W��lm߃���f?4����:��́�_�Ԕv ���M�;k�:p�����_��sj؎qw]$F��}���y�
��,b'��N��=�o�����0,
������~��M���
Y�R���4�6+!��}@~u�j�ct�C��P.�Y(�x�׎����z�?70�WXFܣ�o�����3z����0���c8�R��G��g�0��T�U��򄽻��w�"/4��֏�����C�Q`[{O���c�n�]��+�{�{�����N!�3��<���V��yx�,!C
�b�.��lf���'��\ ן�����gu,μ���w-/��3ۥ����N���X(�c
����o�MD�s��a�#�#0{c
���%�uDWCB�Z�A��Z6�,؏�x�(Z%�����w���HbhTb2��<$��*c���nk���_�א����#{D+B<�!��S/�g�Ï`�9��.^]��ß��C��+>��3�+��5��]�q����p�j'
r�9��FDȬ)~:�����9Gm��x2���-?s�raG"yvU��pa;R���ă� �A�\&���
�?�#��n	��0�ee����d~o�q嶭�!!DzP^H)>�o��ȑ.�ļ�Զ=Hy�7�S�-M�
�?��8y�c���ߧq�|�#�5"�2Б�l�m#��U�����e�Τ�V���bM���͘�jA�c7�Z
�]>4�gb�
���s	2WRsKg�6���
's8qz�TT[�R�[w��)I��9�5x���Wj��
#�!nN+zP��ڔ�	�Kg��TE�,�����?��{�^R�Dݥ=�R�u^zîc������&D��'i74�S�J�ߔ��&H��U�G�[���cr�ͦ��<����׿~��4}څ��h���;���lpAZ�%�X�Z;t�Q?������y��k1+Ƴu6�[������D��c4�Ɯ����*d��B#!}�e>�samh����G3c^��8u9󼵕⸈߂�U�y��B;f"Y�i=�D�=����4��&�����|�C���3���g]�~���WgjhSIXU��"1A5Fr4�{����A��lj�w�T����t6<�/N�� �\����R�t��a|�i���>�T.�Wo>>�x��ϯ�Y���{緷m,J�{gg}�v~)�]��s!?w��X�����G�F��l!7��U��|Cn�fﳅ:.@mq%��臔���Ru?.��:��aB�ֺ��E#G�g'yX�D�u�SW��NJD)��21�ѵ�V��agW��P���q����Ȓ��s�?¶�@�g")���s\�T���{��f3g��o��^w:^�"��{��d#�!φt�}�,n�yWFKv�„X�4��|<��B+���8�i=�-;��X	5l=/xl��w���n�]� 
�+S�Ӽ,{՞�/Д�V���+<<
�����o �����ԇeNp�^O�����OvqR� �wHF3�݁�=o��;�`~k�R�wC���u¦�k�jE�|��qϩ���KV,���*?��xk��}Q�x�U���/M�����=��հp����=犐�^x�Bˏ���Kx���@�[���I���YB]T��➐����Kq�.ὀP��w����AG\�W�ϋ���9���2S���A\�Y\��y=Ǩ�Gj�����բ�M�@�tԂ��vD���z�+���Bĺ\������լ����6��k�6L��ʦ�R�_r�n�l|UAϯ<
���|��!��;��8�_1�g�sލ��C����� >�VB�~�,����˘_�&f���jp�/W�ԍ�wa�O ���H3����I`���u����1�ͤ������+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W��|�+_��W����ݚ�w)��2iTXtXML:com.adobe.xmp<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27        ">
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
      <rdf:Description rdf:about=""
            xmlns:xmp="http://ns.adobe.com/xap/1.0/">
         <xmp:CreatorTool>Adobe Fireworks CS6 (Macintosh)</xmp:CreatorTool>
         <xmp:CreateDate>2012-11-13T14:35:45Z</xmp:CreateDate>
         <xmp:ModifyDate>2012-12-31T15:05:33Z</xmp:ModifyDate>
      </rdf:Description>
      <rdf:Description rdf:about=""
            xmlns:dc="http://purl.org/dc/elements/1.1/">
         <dc:format>image/png</dc:format>
      </rdf:Description>
   </rdf:RDF>
</x:xmpmeta>
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                                                                                                    
                            
<?xpacket end="w"?>�Э	�IDATx��Ml��O�G%�"#)�k$S�$4���Qsӡ�r)�C��&��=�D��}h�Y�R=D���R��ٕ#���JNE�i*ؖ@RiqW�vWz\-���$v�HΛ�7o߼y;T"B��:�9�
�ೇR��FMǹ8��PX�(&�bjuf@}�l�r�@��(��ؗc�?Xa(����h4n�����}��h�
����@F)e1��*�+�����8���i�>X��+���>}&��h�N˲���7�$"X�%������h�N����.\X����J�rA)�TJ}I)��R�g�6D�?"�&"���b�n�R� �m���F��$�*{{{��������S�<�M�
� ���k�YѪϵZ��������j�����V���]g�V����c9P�V]�m�I`y?�h4�tZ���Pf�����}�J%������bWW׈R*(��E��"Rj4"��X,�0��>x�&��I��	�w����@=�X,܁�ժ_��4�z�~9�n�`

��J�"@6�G��:X.�M ��T*�ǽ�
1�Կ4;�h"B�R]��
O�<Y������K�8�4����5�����J��X,��v�D)����7E�X,Vn�\�����H488�4�r�n�M�����٭S-��3��J��I$f�6���~D;a�vvdd�h��Ǎ��M�,"b�DD��_��T?-�w�F�1�~};��777�z}___�V��
�g)ӑE��7o�����REd���E���$5Z o��EB"�0?~<��E
@����8FFFL�v�ax�ѣG ��ϛar'q���a�Ճ	���E��!�u�Ԇ��h�6�H``` �����j�
Ggj�R�/�{MPJ��K��~h��?�u�z�O����Qccc�(s������K�^�t���:��1�O>�ĸr��l+9o�i��&���Rj@)���4p2 Ej+���1L��]�h���g��ғF�v�az��@���ؘ&w*���/�lx�[�����d2y�kYJ��E�_D��oA����@�R��

-�X�T�ݾ��.u�8a��D�MFUz����nڶ�/a���ul��h�t�X�{�Q�����0�*�,�J���r��5#�ouuմ,+���i��?oA�y'|gJ�R>�H��R��h4����"rE)ŝ;wB���k"��Ӣ��|
��G��ښa۶_7��������������@frr�3`||��	ܻwϤyC�^YYajj��YYY��]�����M�KXgs<
䷶�2���[[[�n�4N���CCC�������}����%��%�԰R�"�X"�-"["�oy/�m�l:����F��W��h�����err��1��=2�����	055e
�<�8jm���6ʅB��<a���.�'�<��{��1�Q����h�?�/^����]�ј���20!"e�h]D
�F�����n���O'�6��.��w�@�ƍ�i����6����i~%�����{�.�������yt٥���3��ݻ��������D�y����le^xᅢ_Ns&��[��Vׯ_?���,�,x��}^�%΁�t�	V�������۷�0�.���N:���I���T�n�rfx�"�R���~6�w }T�1=��	�r N��0�ʌ�"�c�oA2�����J)C�	3����M|��TjN�x���\�L~�Ѵ�Y�uP��B�^��,kٲ�ip^#(�~������ޞY�׏��,�J�o���Ԝ��U��`˹���y��4�Ɂl�>(~��Q�Voٶ��m�q��uI�)�$�~hggǴ,+�n�i7'�̑�-&������؜ww�E�j�*z�,�-�¹����T�7t[[[f�^O��UM_��	:kdp��J�p���.��&Z��ѳ�
4�¢KX]�t�-x^D~	��p6�x����{%)�8�J����b��Rs�\n�U>���"������I�낊�/8���8@*5�w?
?�WG�̽g��B��w�2�G3���3>�4�'��z�=9=���b�;��3�e~�9��8u�$"��J8�?/�u���5���իM��>���o?���FK�N��|�\n1�J�5��r�	7ρ	gQ�%��1~||\�Ŷ������=�����׮]3t9?������0N�����D�i���A$r��i��A���6�
��E��ԔaY�w,�*��(�~��*�~����!�@���I#bߎ��>ˡ���-J.�(8��9�l�6��r�N>�m۳�m<���x�~��a�v�O�,+��+��?!R��e�}Z��}N٥͸<����9�\��RJ���2��@'��S�\�*��
IEND�B`�PK�%"]nz6h(h(sudesign_audio/lib/controls.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!-- Generator: Adobe Fireworks CS6, Export SVG Extension by Aaron Beall (http://fireworks.abeall.com) . Version: 0.6.1  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg id="controls.fw-Page%201" viewBox="0 0 144 32" style="background-color:#ffffff00" version="1.1"
	xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
	x="0px" y="0px" width="144px" height="32px"
>
	<defs>
		<radialGradient id="gradient1" cx="50%" cy="50%" r="50%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#f2f2f2" stop-opacity="0.2" offset="100%"/>
		</radialGradient>
		<linearGradient id="gradient2" x1="50%" y1="-7.8652%" x2="50%" y2="249.6629%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient3" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient4" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient5" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient6" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient7" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient8" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient9" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient10" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient11" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient12" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient13" x1="40%" y1="-140%" x2="40%" y2="98.75%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient14" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient15" x1="60%" y1="-140%" x2="60%" y2="98.75%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient16" x1="50%" y1="0%" x2="50%" y2="298.4375%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient17" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient18" x1="50%" y1="-200%" x2="50%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient19" x1="50%" y1="-200%" x2="50%" y2="110.9375%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient20" x1="55%" y1="0%" x2="55%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient21" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#ffffff" stop-opacity="1" offset="0%"/>
			<stop stop-color="#c8c8c8" stop-opacity="1" offset="99.4444%"/>
		</linearGradient>
	</defs>
	<g id="BG">
	</g>
	<g id="controls">
		<path id="Line" d="M 98.5 7.5 L 109.5 7.5 " stroke="#ffffff" stroke-width="1" fill="none"/>
		<path id="Line2" d="M 98.5 3.5 L 109.5 3.5 " stroke="#ffffff" stroke-width="1" fill="none"/>
		<path id="Line3" d="M 98.5 11.5 L 109.5 11.5 " stroke="#ffffff" stroke-width="1" fill="none"/>
		<path id="Ellipse" d="M 108 11.5 C 108 10.6716 108.4477 10 109 10 C 109.5523 10 110 10.6716 110 11.5 C 110 12.3284 109.5523 13 109 13 C 108.4477 13 108 12.3284 108 11.5 Z" fill="#ffffff"/>
		<path id="Ellipse2" d="M 104 7.5 C 104 6.6716 104.4477 6 105 6 C 105.5523 6 106 6.6716 106 7.5 C 106 8.3284 105.5523 9 105 9 C 104.4477 9 104 8.3284 104 7.5 Z" fill="#ffffff"/>
		<path id="Ellipse3" d="M 108 3.5 C 108 2.6716 108.4477 2 109 2 C 109.5523 2 110 2.6716 110 3.5 C 110 4.3284 109.5523 5 109 5 C 108.4477 5 108 4.3284 108 3.5 Z" fill="#ffffff"/>
	</g>
	<g id="backlight">
		<g id="off">
			<rect x="83" y="21" width="10" height="6" stroke="#ffffff" stroke-width="1" fill="#333333"/>
		</g>
		<g id="on">
			<path id="Ellipse4" d="M 81 8 C 81 5.2385 84.134 3 88 3 C 91.866 3 95 5.2385 95 8 C 95 10.7615 91.866 13 88 13 C 84.134 13 81 10.7615 81 8 Z" fill="url(#gradient1)"/>
			<rect x="83" y="5" width="10" height="6" stroke="#ffffff" stroke-width="1" fill="#333333"/>
		</g>
	</g>
	<g id="loop">
		<g id="on2">
			<path d="M 73.795 4.205 C 75.2155 4.8785 76.2 6.3234 76.2 8 C 76.2 10.3196 74.3196 12.2 72 12.2 C 69.6804 12.2 67.8 10.3196 67.8 8 C 67.8 6.3234 68.7845 4.8785 70.205 4.205 L 68.875 2.875 C 67.1501 3.9289 66 5.8306 66 8 C 66 11.3138 68.6862 14 72 14 C 75.3138 14 78 11.3138 78 8 C 78 5.8306 76.8499 3.9289 75.125 2.875 L 73.795 4.205 Z" fill="url(#gradient2)"/>
			<path d="M 71 2 L 66 2 L 71 7 L 71 2 Z" fill="url(#gradient3)"/>
		</g>
		<g id="off2">
			<path d="M 73.795 20.205 C 75.2155 20.8785 76.2 22.3234 76.2 24 C 76.2 26.3196 74.3196 28.2 72 28.2 C 69.6804 28.2 67.8 26.3196 67.8 24 C 67.8 22.3234 68.7845 20.8785 70.205 20.205 L 68.875 18.875 C 67.1501 19.9289 66 21.8306 66 24 C 66 27.3138 68.6862 30 72 30 C 75.3138 30 78 27.3138 78 24 C 78 21.8306 76.8499 19.9289 75.125 18.875 L 73.795 20.205 Z" fill="#a8a8b7"/>
			<path d="M 71 18 L 66 18 L 71 23 L 71 18 Z" fill="#a8a8b7"/>
		</g>
	</g>
	<g id="cc">
		<rect visibility="hidden" x="49" y="2" width="14" height="12" stroke="#b0b0b0" stroke-width="1" fill="none"/>
		<text visibility="hidden" x="49" y="17" width="14" fill="#ffffff" style="font-size: 10px; color: #ffffff; font-family: Arial; text-align: center; "><tspan><![CDATA[cc]]></tspan></text>
		<path d="M 55 7 C 50.2813 3.7813 50.063 12.9405 55 10 " stroke="#ffffff" stroke-width="1" fill="none"/>
		<path d="M 60 7 C 55.2813 3.7813 55.063 12.9405 60 10 " stroke="#ffffff" stroke-width="1" fill="none"/>
		<path d="M 50 3 L 62 3 L 62 13 L 50 13 L 50 3 ZM 49 2 L 49 14 L 63 14 L 63 2 L 49 2 Z" fill="url(#gradient4)"/>
		<rect x="49" y="2" width="14" height="12" fill="none"/>
	</g>
	<g id="volume">
		<g id="no%20sound">
			<rect x="17" y="5" width="5" height="6" fill="url(#gradient5)"/>
			<path d="M 21 5 L 25 2 L 25 14 L 21 11.0625 L 21 5 Z" fill="url(#gradient6)"/>
		</g>
		<g id="sound%20bars">
			<rect x="17" y="21" width="5" height="6" fill="url(#gradient7)"/>
			<path d="M 21 21 L 25 18 L 25 30 L 21 27.0625 L 21 21 Z" fill="url(#gradient8)"/>
			<path d="M 27 18 C 27 18 30.0625 17.375 30 24 C 29.9375 30.625 27 30 27 30 " stroke="#ffffff" stroke-width="1" fill="none"/>
			<path d="M 26 21.0079 C 26 21.0079 28.041 20.6962 27.9994 24 C 27.9577 27.3038 26 26.9921 26 26.9921 " stroke="#ffffff" stroke-width="1" fill="none"/>
		</g>
	</g>
	<g id="play/pause">
		<g id="play">
			<path id="Polygon" d="M 14 8.5 L 3 14 L 3 3 L 14 8.5 Z" fill="url(#gradient9)"/>
		</g>
		<g id="pause">
			<rect x="3" y="18" width="3" height="12" fill="url(#gradient10)"/>
			<rect x="10" y="18" width="3" height="12" fill="url(#gradient11)"/>
		</g>
	</g>
	<g id="fullscreen">
		<g id="enter%201">
			<path d="M 34 2 L 39 2 L 34 7 L 34 2 Z" fill="url(#gradient12)"/>
			<path d="M 34 14 L 39 14 L 34 9 L 34 14 Z" fill="url(#gradient13)"/>
			<path d="M 46 2 L 41 2 L 46 7 L 46 2 Z" fill="url(#gradient14)"/>
			<path d="M 46 14 L 41 14 L 46 9 L 46 14 Z" fill="url(#gradient15)"/>
		</g>
		<g id="exit">
			<path d="M 42 22 L 46 22 L 42 18 L 42 22 Z" fill="url(#gradient16)"/>
			<path d="M 38 22 L 38 18 L 34 22 L 38 22 Z" fill="url(#gradient17)"/>
			<path d="M 38 26 L 34 26 L 38 30 L 38 26 Z" fill="url(#gradient18)"/>
			<path d="M 42 26 L 42 30 L 46 26 L 42 26 Z" fill="url(#gradient19)"/>
		</g>
	</g>
	<g id="stop">
		<rect x="115" y="3" width="10" height="10" fill="url(#gradient20)"/>
	</g>
	<g id="chooser">
		<path d="M 135.2346 6.1522 C 136.2551 5.7295 137.4251 6.2141 137.8478 7.2346 C 138.2704 8.2551 137.7859 9.425 136.7654 9.8478 C 135.7449 10.2705 134.5749 9.7859 134.1522 8.7654 C 133.7295 7.7449 134.2141 6.5749 135.2346 6.1522 ZM 133.2735 1.4176 L 136 4.0054 L 138.7265 1.4176 L 138.8246 5.1754 L 142.5824 5.2735 L 139.9946 8 L 142.5824 10.7265 L 138.8246 10.8246 L 138.7265 14.5824 L 136 11.9946 L 133.2735 14.5824 L 133.1754 10.8246 L 129.4176 10.7265 L 132.0054 8 L 129.4176 5.2735 L 133.1754 5.1754 L 133.2735 1.4176 Z" fill="url(#gradient21)"/>
	</g>
</svg>PK�%"]�|�ߨ�&sudesign_audio/lib/controls-wmp-bg.pngnu&1i��PNG


IHDR�0g���PLTE��������þ����������̶��������������������������������̎�������̯���������������̩��xxx��̸����̪�������̿����������̾�������̥����̸����������µ����̿���������������������´�������̿����̾����������ì�������̳�������̺����¢�������������̵�������̣�������Ĺ�������̭�������������������������������̾�������̨�������������������������������������������̸���������������������̶�����������xxx�����̮��������{{{jjj���������������sss�����������̌�������������̺����������̲����������������������������©�������́�����yyy���wwwkkk������iii���������ttt��������ª����̆����������������̝�����uuummmggg������ooo���������ppp���vvv���nnn�����̵��~~~www������lllqqq���������nnn������hhhooo���������rrr|||���zzz������jjj��̙����̖��fff���tRNSW&�_��0�tĖa�����2ˁ�W��R)��8���B��-=PZC����>��#7�I[��:�*M�����O�1XB��]�
5u�G|[ ������(,�7O�9�ǐ���Ι�������V�JT��G���k��A�v���Ǚ/�.����˔TW.Y�a!�������l}���"������a��������;�ę�����������������������˙�����������������L�I����!�IDATh�cse	�3�m��ضm�m۶۶m=��o�0Ae&ՕλU9�K��aC`��Wy�^��[����cG��9�kr�̙n�����
���z�#�¸<�DzxKL��0��$���/������0���W~�,��]VvIL!0Ck��,�e��3��<���_����r�>,��ٱ3�T�A����Y�Ρ�|�����
�9�s�
lKo�{۪L��^�c �:~u[9(g̫Ta	�w��%��ؤ@��L�a��*)
Lڀ�n�pQKaM��_SI-��@7A��w�T��gp
Tc�;]�u�uTS��._%�ԍ��o��vaq����k����e?
)���o���꧞�_riH�0�q�t��S��4�bu>��r*ڽ����\;!�	��RL��l����jY�5��Ѡ8/5�|�|�IM�N�襦��el:5MXL��>jZw��KM�i��KM����Njz�C��Դ�,��ej�^H��m���J�3*����n*�'��⡢k�4�bվ�
�Tti~
��Q�� 8�6*��GC��AE��^�QQC��D�Ϧ������Oy���w

�uROɮ��u���gP����pA���TS�ɠƷTRM�iϣ���KG�PMʔ9����fɨ��M��7ҝԲ�����&m��Ҭ����W��S7{,T1wfAaM��K�1�x2z	�|�Ͷ'�n�(�]�n�a5��((p�|u�EW�����5�q��u<�i���j�q��#���H�Z�����6fkL!0�꫒J,<T��0��,��M�)�g��,�tL�(��6�S��o��n�_����j�I�U>���U�G,��Æ`���kd��עIEND�B`�PK�%"]�]h(h(%sudesign_audio/lib/controls-green.svgnu&1i�<?xml version="1.0" standalone="no"?>
<!-- Generator: Adobe Fireworks CS6, Export SVG Extension by Aaron Beall (http://fireworks.abeall.com) . Version: 0.6.1  -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg id="controls.fw-Page%201" viewBox="0 0 144 32" style="background-color:#00990000" version="1.1"
	xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve"
	x="0px" y="0px" width="144px" height="32px"
>
	<defs>
		<radialGradient id="gradient1" cx="50%" cy="50%" r="50%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#f2f2f2" stop-opacity="0.2" offset="100%"/>
		</radialGradient>
		<linearGradient id="gradient2" x1="50%" y1="-7.8652%" x2="50%" y2="249.6629%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient3" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient4" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient5" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient6" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient7" x1="50%" y1="-33.3333%" x2="50%" y2="152.0833%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient8" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient9" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient10" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient11" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient12" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient13" x1="40%" y1="-140%" x2="40%" y2="98.75%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient14" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient15" x1="60%" y1="-140%" x2="60%" y2="98.75%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient16" x1="50%" y1="0%" x2="50%" y2="298.4375%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient17" x1="50%" y1="0%" x2="50%" y2="238.75%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient18" x1="50%" y1="-200%" x2="50%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient19" x1="50%" y1="-200%" x2="50%" y2="110.9375%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient20" x1="55%" y1="0%" x2="55%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="100%"/>
		</linearGradient>
		<linearGradient id="gradient21" x1="50%" y1="0%" x2="50%" y2="100%">
			<stop stop-color="#009900" stop-opacity="1" offset="0%"/>
			<stop stop-color="#006600" stop-opacity="1" offset="99.4444%"/>
		</linearGradient>
	</defs>
	<g id="BG">
	</g>
	<g id="controls">
		<path id="Line" d="M 98.5 7.5 L 109.5 7.5 " stroke="#009900" stroke-width="1" fill="none"/>
		<path id="Line2" d="M 98.5 3.5 L 109.5 3.5 " stroke="#009900" stroke-width="1" fill="none"/>
		<path id="Line3" d="M 98.5 11.5 L 109.5 11.5 " stroke="#009900" stroke-width="1" fill="none"/>
		<path id="Ellipse" d="M 108 11.5 C 108 10.6716 108.4477 10 109 10 C 109.5523 10 110 10.6716 110 11.5 C 110 12.3284 109.5523 13 109 13 C 108.4477 13 108 12.3284 108 11.5 Z" fill="#009900"/>
		<path id="Ellipse2" d="M 104 7.5 C 104 6.6716 104.4477 6 105 6 C 105.5523 6 106 6.6716 106 7.5 C 106 8.3284 105.5523 9 105 9 C 104.4477 9 104 8.3284 104 7.5 Z" fill="#009900"/>
		<path id="Ellipse3" d="M 108 3.5 C 108 2.6716 108.4477 2 109 2 C 109.5523 2 110 2.6716 110 3.5 C 110 4.3284 109.5523 5 109 5 C 108.4477 5 108 4.3284 108 3.5 Z" fill="#009900"/>
	</g>
	<g id="backlight">
		<g id="off">
			<rect x="83" y="21" width="10" height="6" stroke="#009900" stroke-width="1" fill="#333333"/>
		</g>
		<g id="on">
			<path id="Ellipse4" d="M 81 8 C 81 5.2385 84.134 3 88 3 C 91.866 3 95 5.2385 95 8 C 95 10.7615 91.866 13 88 13 C 84.134 13 81 10.7615 81 8 Z" fill="url(#gradient1)"/>
			<rect x="83" y="5" width="10" height="6" stroke="#009900" stroke-width="1" fill="#333333"/>
		</g>
	</g>
	<g id="loop">
		<g id="on2">
			<path d="M 73.795 4.205 C 75.2155 4.8785 76.2 6.3234 76.2 8 C 76.2 10.3196 74.3196 12.2 72 12.2 C 69.6804 12.2 67.8 10.3196 67.8 8 C 67.8 6.3234 68.7845 4.8785 70.205 4.205 L 68.875 2.875 C 67.1501 3.9289 66 5.8306 66 8 C 66 11.3138 68.6862 14 72 14 C 75.3138 14 78 11.3138 78 8 C 78 5.8306 76.8499 3.9289 75.125 2.875 L 73.795 4.205 Z" fill="url(#gradient2)"/>
			<path d="M 71 2 L 66 2 L 71 7 L 71 2 Z" fill="url(#gradient3)"/>
		</g>
		<g id="off2">
			<path d="M 73.795 20.205 C 75.2155 20.8785 76.2 22.3234 76.2 24 C 76.2 26.3196 74.3196 28.2 72 28.2 C 69.6804 28.2 67.8 26.3196 67.8 24 C 67.8 22.3234 68.7845 20.8785 70.205 20.205 L 68.875 18.875 C 67.1501 19.9289 66 21.8306 66 24 C 66 27.3138 68.6862 30 72 30 C 75.3138 30 78 27.3138 78 24 C 78 21.8306 76.8499 19.9289 75.125 18.875 L 73.795 20.205 Z" fill="#a8a8b7"/>
			<path d="M 71 18 L 66 18 L 71 23 L 71 18 Z" fill="#a8a8b7"/>
		</g>
	</g>
	<g id="cc">
		<rect visibility="hidden" x="49" y="2" width="14" height="12" stroke="#b0b0b0" stroke-width="1" fill="none"/>
		<text visibility="hidden" x="49" y="17" width="14" fill="#009900" style="font-size: 10px; color: #009900; font-family: Arial; text-align: center; "><tspan><![CDATA[cc]]></tspan></text>
		<path d="M 55 7 C 50.2813 3.7813 50.063 12.9405 55 10 " stroke="#009900" stroke-width="1" fill="none"/>
		<path d="M 60 7 C 55.2813 3.7813 55.063 12.9405 60 10 " stroke="#009900" stroke-width="1" fill="none"/>
		<path d="M 50 3 L 62 3 L 62 13 L 50 13 L 50 3 ZM 49 2 L 49 14 L 63 14 L 63 2 L 49 2 Z" fill="url(#gradient4)"/>
		<rect x="49" y="2" width="14" height="12" fill="none"/>
	</g>
	<g id="volume">
		<g id="no%20sound">
			<rect x="17" y="5" width="5" height="6" fill="url(#gradient5)"/>
			<path d="M 21 5 L 25 2 L 25 14 L 21 11.0625 L 21 5 Z" fill="url(#gradient6)"/>
		</g>
		<g id="sound%20bars">
			<rect x="17" y="21" width="5" height="6" fill="url(#gradient7)"/>
			<path d="M 21 21 L 25 18 L 25 30 L 21 27.0625 L 21 21 Z" fill="url(#gradient8)"/>
			<path d="M 27 18 C 27 18 30.0625 17.375 30 24 C 29.9375 30.625 27 30 27 30 " stroke="#009900" stroke-width="1" fill="none"/>
			<path d="M 26 21.0079 C 26 21.0079 28.041 20.6962 27.9994 24 C 27.9577 27.3038 26 26.9921 26 26.9921 " stroke="#009900" stroke-width="1" fill="none"/>
		</g>
	</g>
	<g id="play/pause">
		<g id="play">
			<path id="Polygon" d="M 14 8.5 L 3 14 L 3 3 L 14 8.5 Z" fill="url(#gradient9)"/>
		</g>
		<g id="pause">
			<rect x="3" y="18" width="3" height="12" fill="url(#gradient10)"/>
			<rect x="10" y="18" width="3" height="12" fill="url(#gradient11)"/>
		</g>
	</g>
	<g id="fullscreen">
		<g id="enter%201">
			<path d="M 34 2 L 39 2 L 34 7 L 34 2 Z" fill="url(#gradient12)"/>
			<path d="M 34 14 L 39 14 L 34 9 L 34 14 Z" fill="url(#gradient13)"/>
			<path d="M 46 2 L 41 2 L 46 7 L 46 2 Z" fill="url(#gradient14)"/>
			<path d="M 46 14 L 41 14 L 46 9 L 46 14 Z" fill="url(#gradient15)"/>
		</g>
		<g id="exit">
			<path d="M 42 22 L 46 22 L 42 18 L 42 22 Z" fill="url(#gradient16)"/>
			<path d="M 38 22 L 38 18 L 34 22 L 38 22 Z" fill="url(#gradient17)"/>
			<path d="M 38 26 L 34 26 L 38 30 L 38 26 Z" fill="url(#gradient18)"/>
			<path d="M 42 26 L 42 30 L 46 26 L 42 26 Z" fill="url(#gradient19)"/>
		</g>
	</g>
	<g id="stop">
		<rect x="115" y="3" width="10" height="10" fill="url(#gradient20)"/>
	</g>
	<g id="chooser">
		<path d="M 135.2346 6.1522 C 136.2551 5.7295 137.4251 6.2141 137.8478 7.2346 C 138.2704 8.2551 137.7859 9.425 136.7654 9.8478 C 135.7449 10.2705 134.5749 9.7859 134.1522 8.7654 C 133.7295 7.7449 134.2141 6.5749 135.2346 6.1522 ZM 133.2735 1.4176 L 136 4.0054 L 138.7265 1.4176 L 138.8246 5.1754 L 142.5824 5.2735 L 139.9946 8 L 142.5824 10.7265 L 138.8246 10.8246 L 138.7265 14.5824 L 136 11.9946 L 133.2735 14.5824 L 133.1754 10.8246 L 129.4176 10.7265 L 132.0054 8 L 129.4176 5.2735 L 133.1754 5.1754 L 133.2735 1.4176 Z" fill="url(#gradient21)"/>
	</g>
</svg>PK�%"]sudesign_audio/lib/index.htmlnu&1i�PK�%"]�[z6��loadmodule/loadmodule.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="content" method="upgrade">
	<name>plg_content_loadmodule</name>
	<author>Joomla! Project</author>
	<creationDate>November 2005</creationDate>
	<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>PLG_LOADMODULE_XML_DESCRIPTION</description>
	<files>
		<filename plugin="loadmodule">loadmodule.php</filename>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_loadmodule.ini</language>
		<language tag="en-GB">en-GB.plg_content_loadmodule.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="basic">
				<field
					name="style"
					type="list"
					label="PLG_LOADMODULE_FIELD_STYLE_LABEL"
					description="PLG_LOADMODULE_FIELD_STYLE_DESC"
					default="table"
					>
					<option value="table">PLG_LOADMODULE_FIELD_VALUE_TABLE</option>
					<option value="horz">PLG_LOADMODULE_FIELD_VALUE_HORIZONTAL</option>
					<option value="xhtml">PLG_LOADMODULE_FIELD_VALUE_DIVS</option>
					<option value="rounded">PLG_LOADMODULE_FIELD_VALUE_MULTIPLEDIVS</option>
					<option value="none">PLG_LOADMODULE_FIELD_VALUE_RAW</option>
				</field>
			</fieldset>
		</fields>
	</config>
</extension>
PK�%"]Ձ�$��loadmodule/loadmodule.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.loadmodule
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Plugin to enable loading modules into content (e.g. articles)
 * This uses the {loadmodule} syntax
 *
 * @since  1.5
 */
class PlgContentLoadmodule extends JPlugin
{
	protected static $modules = array();

	protected static $mods = array();

	/**
	 * Plugin that loads module positions within content
	 *
	 * @param   string   $context   The context of the content being passed to the plugin.
	 * @param   object   &$article  The article object.  Note $article->text is also available
	 * @param   mixed    &$params   The article params
	 * @param   integer  $page      The 'page' number
	 *
	 * @return  mixed   true if there is an error. Void otherwise.
	 *
	 * @since   1.6
	 */
	public function onContentPrepare($context, &$article, &$params, $page = 0)
	{
		// Don't run this plugin when the content is being indexed
		if ($context === 'com_finder.indexer')
		{
			return true;
		}

		// Simple performance check to determine whether bot should process further
		if (strpos($article->text, 'loadposition') === false && strpos($article->text, 'loadmodule') === false)
		{
			return true;
		}

		// Expression to search for (positions)
		$regex = '/{loadposition\s(.*?)}/i';
		$style = $this->params->def('style', 'none');

		// Expression to search for(modules)
		$regexmod = '/{loadmodule\s(.*?)}/i';
		$stylemod = $this->params->def('style', 'none');

		// Expression to search for(id)
		$regexmodid = '/{loadmoduleid\s([1-9][0-9]*)}/i';

		// Find all instances of plugin and put in $matches for loadposition
		// $matches[0] is full pattern match, $matches[1] is the position
		preg_match_all($regex, $article->text, $matches, PREG_SET_ORDER);

		// No matches, skip this
		if ($matches)
		{
			foreach ($matches as $match)
			{
				$matcheslist = explode(',', $match[1]);

				// We may not have a module style so fall back to the plugin default.
				if (!array_key_exists(1, $matcheslist))
				{
					$matcheslist[1] = $style;
				}

				$position = trim($matcheslist[0]);
				$style    = trim($matcheslist[1]);

				$output = $this->_load($position, $style);

				// We should replace only first occurrence in order to allow positions with the same name to regenerate their content:
				if (($start = strpos($article->text, $match[0])) !== false)
				{
					$article->text = substr_replace($article->text, $output, $start, strlen($match[0]));
				}

				$style = $this->params->def('style', 'none');
			}
		}

		// Find all instances of plugin and put in $matchesmod for loadmodule
		preg_match_all($regexmod, $article->text, $matchesmod, PREG_SET_ORDER);

		// If no matches, skip this
		if ($matchesmod)
		{
			foreach ($matchesmod as $matchmod)
			{
				$matchesmodlist = explode(',', $matchmod[1]);

				// We may not have a specific module so set to null
				if (!array_key_exists(1, $matchesmodlist))
				{
					$matchesmodlist[1] = null;
				}

				// We may not have a module style so fall back to the plugin default.
				if (!array_key_exists(2, $matchesmodlist))
				{
					$matchesmodlist[2] = $stylemod;
				}

				$module = trim($matchesmodlist[0]);
				$name   = htmlspecialchars_decode(trim($matchesmodlist[1]));
				$stylemod  = trim($matchesmodlist[2]);

				// $match[0] is full pattern match, $match[1] is the module,$match[2] is the title
				$output = $this->_loadmod($module, $name, $stylemod);

				// We should replace only first occurrence in order to allow positions with the same name to regenerate their content:
				if (($start = strpos($article->text, $matchmod[0])) !== false)
				{
					$article->text = substr_replace($article->text, $output, $start, strlen($matchmod[0]));
				}

				$stylemod = $this->params->def('style', 'none');
			}
		}

		// Find all instances of plugin and put in $matchesmodid for loadmoduleid
		preg_match_all($regexmodid, $article->text, $matchesmodid, PREG_SET_ORDER);

		// If no matches, skip this
		if ($matchesmodid)
		{
			foreach ($matchesmodid as $match)
			{
				$id     = trim($match[1]);
				$output = $this->_loadid($id);

				// We should replace only first occurrence in order to allow positions with the same name to regenerate their content:
				if (($start = strpos($article->text, $match[0])) !== false)
				{
					$article->text = substr_replace($article->text, $output, $start, strlen($match[0]));
				}

				$style = $this->params->def('style', 'none');
			}
		}
	}

	/**
	 * Loads and renders the module
	 *
	 * @param   string  $position  The position assigned to the module
	 * @param   string  $style     The style assigned to the module
	 *
	 * @return  mixed
	 *
	 * @since   1.6
	 */
	protected function _load($position, $style = 'none')
	{
		self::$modules[$position] = '';
		$document = JFactory::getDocument();
		$renderer = $document->loadRenderer('module');
		$modules  = JModuleHelper::getModules($position);
		$params   = array('style' => $style);
		ob_start();

		foreach ($modules as $module)
		{
			echo $renderer->render($module, $params);
		}

		self::$modules[$position] = ob_get_clean();

		return self::$modules[$position];
	}

	/**
	 * This is always going to get the first instance of the module type unless
	 * there is a title.
	 *
	 * @param   string  $module  The module title
	 * @param   string  $title   The title of the module
	 * @param   string  $style   The style of the module
	 *
	 * @return  mixed
	 *
	 * @since   1.6
	 */
	protected function _loadmod($module, $title, $style = 'none')
	{
		self::$mods[$module] = '';
		$document = JFactory::getDocument();
		$renderer = $document->loadRenderer('module');
		$mod      = JModuleHelper::getModule($module, $title);

		// If the module without the mod_ isn't found, try it with mod_.
		// This allows people to enter it either way in the content
		if (!isset($mod))
		{
			$name = 'mod_' . $module;
			$mod  = JModuleHelper::getModule($name, $title);
		}

		$params = array('style' => $style);
		ob_start();

		if ($mod->id)
		{
			echo $renderer->render($mod, $params);
		}

		self::$mods[$module] = ob_get_clean();

		return self::$mods[$module];
	}

	/**
	 * Loads and renders the module
	 *
	 * @param   string  $id  The id of the module
	 *
	 * @return  mixed
	 *
	 * @since   3.9.0
	 */
	protected function _loadid($id)
	{
		self::$modules[$id] = '';
		$document = JFactory::getDocument();
		$renderer = $document->loadRenderer('module');
		$modules  = JModuleHelper::getModuleById($id);
		$params   = array('style' => 'none');
		ob_start();

		if ($modules->id > 0)
		{
			echo $renderer->render($modules, $params);
		}

		self::$modules[$id] = ob_get_clean();

		return self::$modules[$id];
	}
}
PK�%"]:k��!pagenavigation/pagenavigation.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.pagenavigation
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JLoader::register('ContentHelperRoute', JPATH_SITE . '/components/com_content/helpers/route.php');

/**
 * Pagenavigation plugin class.
 *
 * @since  1.5
 */
class PlgContentPagenavigation extends JPlugin
{
	/**
	 * If in the article view and the parameter is enabled shows the page navigation
	 *
	 * @param   string   $context  The context of the content being passed to the plugin
	 * @param   object   &$row     The article object
	 * @param   mixed    &$params  The article params
	 * @param   integer  $page     The 'page' number
	 *
	 * @return  mixed  void or true
	 *
	 * @since   1.6
	 */
	public function onContentBeforeDisplay($context, &$row, &$params, $page = 0)
	{
		$app   = JFactory::getApplication();
		$view  = $app->input->get('view');
		$print = $app->input->getBool('print');

		if ($print)
		{
			return false;
		}

		if ($context === 'com_content.article' && $view === 'article' && $params->get('show_item_navigation'))
		{
			$db       = JFactory::getDbo();
			$user     = JFactory::getUser();
			$lang     = JFactory::getLanguage();
			$nullDate = $db->getNullDate();

			$date = JFactory::getDate();
			$now  = $date->toSql();

			$uid        = $row->id;
			$option     = 'com_content';
			$canPublish = $user->authorise('core.edit.state', $option . '.article.' . $row->id);

			/**
			 * The following is needed as different menu items types utilise a different param to control ordering.
			 * For Blogs the `orderby_sec` param is the order controlling param.
			 * For Table and List views it is the `orderby` param.
			**/
			$params_list = $params->toArray();

			if (array_key_exists('orderby_sec', $params_list))
			{
				$order_method = $params->get('orderby_sec', '');
			}
			else
			{
				$order_method = $params->get('orderby', '');
			}

			// Additional check for invalid sort ordering.
			if ($order_method === 'front')
			{
				$order_method = '';
			}

			// Get the order code
			$orderDate = $params->get('order_date');
			$queryDate = $this->getQueryDate($orderDate);

			// Determine sort order.
			switch ($order_method)
			{
				case 'date' :
					$orderby = $queryDate;
					break;
				case 'rdate' :
					$orderby = $queryDate . ' DESC ';
					break;
				case 'alpha' :
					$orderby = 'a.title';
					break;
				case 'ralpha' :
					$orderby = 'a.title DESC';
					break;
				case 'hits' :
					$orderby = 'a.hits';
					break;
				case 'rhits' :
					$orderby = 'a.hits DESC';
					break;
				case 'order' :
					$orderby = 'a.ordering';
					break;
				case 'author' :
					$orderby = 'a.created_by_alias, u.name';
					break;
				case 'rauthor' :
					$orderby = 'a.created_by_alias DESC, u.name DESC';
					break;
				case 'front' :
					$orderby = 'f.ordering';
					break;
				default :
					$orderby = 'a.ordering';
					break;
			}

			$xwhere = ' AND (a.state = 1 OR a.state = -1)'
				. ' AND (publish_up = ' . $db->quote($nullDate) . ' OR publish_up <= ' . $db->quote($now) . ')'
				. ' AND (publish_down = ' . $db->quote($nullDate) . ' OR publish_down >= ' . $db->quote($now) . ')';

			// Array of articles in same category correctly ordered.
			$query = $db->getQuery(true);

			// Sqlsrv changes
			$case_when = ' CASE WHEN ' . $query->charLength('a.alias', '!=', '0');
			$a_id = $query->castAsChar('a.id');
			$case_when .= ' THEN ' . $query->concatenate(array($a_id, 'a.alias'), ':');
			$case_when .= ' ELSE ' . $a_id . ' END as slug';

			$case_when1 = ' CASE WHEN ' . $query->charLength('cc.alias', '!=', '0');
			$c_id = $query->castAsChar('cc.id');
			$case_when1 .= ' THEN ' . $query->concatenate(array($c_id, 'cc.alias'), ':');
			$case_when1 .= ' ELSE ' . $c_id . ' END as catslug';
			$query->select('a.id, a.title, a.catid, a.language,' . $case_when . ',' . $case_when1)
				->from('#__content AS a')
				->join('LEFT', '#__categories AS cc ON cc.id = a.catid');

			if ($order_method === 'author' || $order_method === 'rauthor')
			{
				$query->select('a.created_by, u.name');
				$query->join('LEFT', '#__users AS u ON u.id = a.created_by');
			}

			$query->where(
					'a.catid = ' . (int) $row->catid . ' AND a.state = ' . (int) $row->state
						. ($canPublish ? '' : ' AND a.access IN (' . implode(',', JAccess::getAuthorisedViewLevels($user->id)) . ') ') . $xwhere
				);
			$query->order($orderby);

			if ($app->isClient('site') && $app->getLanguageFilter())
			{
				$query->where('a.language in (' . $db->quote($lang->getTag()) . ',' . $db->quote('*') . ')');
			}

			$db->setQuery($query);
			$list = $db->loadObjectList('id');

			// This check needed if incorrect Itemid is given resulting in an incorrect result.
			if (!is_array($list))
			{
				$list = array();
			}

			reset($list);

			// Location of current content item in array list.
			$location = array_search($uid, array_keys($list));
			$rows     = array_values($list);

			$row->prev = null;
			$row->next = null;

			if ($location - 1 >= 0)
			{
				// The previous content item cannot be in the array position -1.
				$row->prev = $rows[$location - 1];
			}

			if (($location + 1) < count($rows))
			{
				// The next content item cannot be in an array position greater than the number of array postions.
				$row->next = $rows[$location + 1];
			}

			if ($row->prev)
			{
				$row->prev_label = ($this->params->get('display', 0) == 0) ? JText::_('JPREV') : $row->prev->title;
				$row->prev = JRoute::_(ContentHelperRoute::getArticleRoute($row->prev->slug, $row->prev->catid, $row->prev->language));
			}
			else
			{
				$row->prev_label = '';
				$row->prev = '';
			}

			if ($row->next)
			{
				$row->next_label = ($this->params->get('display', 0) == 0) ? JText::_('JNEXT') : $row->next->title;
				$row->next = JRoute::_(ContentHelperRoute::getArticleRoute($row->next->slug, $row->next->catid, $row->next->language));
			}
			else
			{
				$row->next_label = '';
				$row->next = '';
			}

			// Output.
			if ($row->prev || $row->next)
			{
				// Get the path for the layout file
				$path = JPluginHelper::getLayoutPath('content', 'pagenavigation');

				// Render the pagenav
				ob_start();
				include $path;
				$row->pagination = ob_get_clean();

				$row->paginationposition = $this->params->get('position', 1);

				// This will default to the 1.5 and 1.6-1.7 behavior.
				$row->paginationrelative = $this->params->get('relative', 0);
			}
		}
	}

	/**
	 * Translate an order code to a field for primary ordering.
	 *
	 * @param   string  $orderDate  The ordering code.
	 *
	 * @return  string  The SQL field(s) to order by.
	 *
	 * @since   3.3
	 */
	private static function getQueryDate($orderDate)
	{
		$db = JFactory::getDbo();

		switch ($orderDate)
		{
			// Use created if modified is not set
			case 'modified' :
				$queryDate = ' CASE WHEN a.modified = ' . $db->quote($db->getNullDate()) . ' THEN a.created ELSE a.modified END';
				break;

			// Use created if publish_up is not set
			case 'published' :
				$queryDate = ' CASE WHEN a.publish_up = ' . $db->quote($db->getNullDate()) . ' THEN a.created ELSE a.publish_up END ';
				break;

			// Use created as default
			case 'created' :
			default :
				$queryDate = ' a.created ';
				break;
		}

		return $queryDate;
	}
}
PK�%"]f�;��!pagenavigation/pagenavigation.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="content" method="upgrade">
	<name>plg_content_pagenavigation</name>
	<author>Joomla! Project</author>
	<creationDate>January 2006</creationDate>
	<copyright>(C) 2006 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>PLG_PAGENAVIGATION_XML_DESCRIPTION</description>
	<files>
		<filename plugin="pagenavigation">pagenavigation.php</filename>
		<folder>tmpl</folder>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_pagenavigation.ini</language>
		<language tag="en-GB">en-GB.plg_content_pagenavigation.sys.ini</language>
	</languages>
	<config>
		<fields name="params">

			<fieldset name="basic">
				<field
					name="position"
					type="list"
					label="PLG_PAGENAVIGATION_FIELD_POSITION_LABEL"
					description="PLG_PAGENAVIGATION_FIELD_POSITION_DESC"
					default="1"
					filter="integer"
					>
					<option value="1">PLG_PAGENAVIGATION_FIELD_VALUE_BELOW</option>
					<option value="0">PLG_PAGENAVIGATION_FIELD_VALUE_ABOVE</option>
				</field>

				<field
					name="relative"
					type="list"
					label="PLG_PAGENAVIGATION_FIELD_RELATIVE_LABEL"
					description="PLG_PAGENAVIGATION_FIELD_RELATIVE_DESC"
					default="1"
					filter="integer"
					>
					<option value="1">PLG_PAGENAVIGATION_FIELD_VALUE_ARTICLE</option>
					<option value="0">PLG_PAGENAVIGATION_FIELD_VALUE_TEXT</option>
				</field>

				<field
					name="display"
					type="list"
					label="PLG_PAGENAVIGATION_FIELD_DISPLAY_LABEL"
					description="PLG_PAGENAVIGATION_FIELD_DISPLAY_DESC"
					default="0"
					filter="integer"
					>
					<option value="0">PLG_PAGENAVIGATION_FIELD_VALUE_NEXTPREV</option>
					<option value="1">PLG_PAGENAVIGATION_FIELD_VALUE_TITLE</option>
				</field>

			</fieldset>
		</fields>
	</config>
</extension>
PK�%"]@4pagenavigation/tmpl/default.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.pagenavigation
 *
 * @copyright   (C) 2013 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('bootstrap.tooltip');

$lang = JFactory::getLanguage();

?>
<ul class="pager pagenav">
<?php if ($row->prev) :
	$direction = $lang->isRtl() ? 'right' : 'left'; ?>
	<li class="previous">
		<a class="hasTooltip" title="<?php echo htmlspecialchars($rows[$location-1]->title); ?>" aria-label="<?php echo JText::sprintf('JPREVIOUS_TITLE', htmlspecialchars($rows[$location-1]->title)); ?>" href="<?php echo $row->prev; ?>" rel="prev">
			<?php echo '<span class="icon-chevron-' . $direction . '" aria-hidden="true"></span> <span aria-hidden="true">' . $row->prev_label . '</span>'; ?>
		</a>
	</li>
<?php endif; ?>
<?php if ($row->next) :
	$direction = $lang->isRtl() ? 'left' : 'right'; ?>
	<li class="next">
		<a class="hasTooltip" title="<?php echo htmlspecialchars($rows[$location+1]->title); ?>" aria-label="<?php echo JText::sprintf('JNEXT_TITLE', htmlspecialchars($rows[$location+1]->title)); ?>" href="<?php echo $row->next; ?>" rel="next">
			<?php echo '<span aria-hidden="true">' . $row->next_label . '</span> <span class="icon-chevron-' . $direction . '" aria-hidden="true"></span>'; ?>
		</a>
	</li>
<?php endif; ?>
</ul>
PK�%"]4M�FFfinder/finder.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="content" method="upgrade">
	<name>plg_content_finder</name>
	<author>Joomla! Project</author>
	<creationDate>December 2011</creationDate>
	<copyright>(C) 2011 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>PLG_CONTENT_FINDER_XML_DESCRIPTION</description>

	<files>
		<filename plugin="finder">finder.php</filename>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_finder.ini</language>
		<language tag="en-GB">en-GB.plg_content_finder.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
		</fields>
	</config>
</extension>
PK�%"]c|���finder/finder.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.finder
 *
 * @copyright   (C) 2011 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Smart Search Content Plugin
 *
 * @since  2.5
 */
class PlgContentFinder extends JPlugin
{
	/**
	 * Smart Search after save content method.
	 * Content is passed by reference, but after the save, so no changes will be saved.
	 * Method is called right after the content is saved.
	 *
	 * @param   string  $context  The context of the content passed to the plugin (added in 1.6)
	 * @param   object  $article  A JTableContent object
	 * @param   bool    $isNew    If the content has just been created
	 *
	 * @return  void
	 *
	 * @since   2.5
	 */
	public function onContentAfterSave($context, $article, $isNew)
	{
		$dispatcher = JEventDispatcher::getInstance();
		JPluginHelper::importPlugin('finder');

		// Trigger the onFinderAfterSave event.
		$dispatcher->trigger('onFinderAfterSave', array($context, $article, $isNew));
	}

	/**
	 * Smart Search before save content method.
	 * Content is passed by reference. Method is called before the content is saved.
	 *
	 * @param   string  $context  The context of the content passed to the plugin (added in 1.6).
	 * @param   object  $article  A JTableContent object.
	 * @param   bool    $isNew    If the content is just about to be created.
	 *
	 * @return  void
	 *
	 * @since   2.5
	 */
	public function onContentBeforeSave($context, $article, $isNew)
	{
		$dispatcher = JEventDispatcher::getInstance();
		JPluginHelper::importPlugin('finder');

		// Trigger the onFinderBeforeSave event.
		$dispatcher->trigger('onFinderBeforeSave', array($context, $article, $isNew));
	}

	/**
	 * Smart Search after delete content method.
	 * Content is passed by reference, but after the deletion.
	 *
	 * @param   string  $context  The context of the content passed to the plugin (added in 1.6).
	 * @param   object  $article  A JTableContent object.
	 *
	 * @return  void
	 *
	 * @since   2.5
	 */
	public function onContentAfterDelete($context, $article)
	{
		$dispatcher = JEventDispatcher::getInstance();
		JPluginHelper::importPlugin('finder');

		// Trigger the onFinderAfterDelete event.
		$dispatcher->trigger('onFinderAfterDelete', array($context, $article));
	}

	/**
	 * Smart Search content state change method.
	 * Method to update the link information for items that have been changed
	 * from outside the edit screen. This is fired when the item is published,
	 * unpublished, archived, or unarchived from the list view.
	 *
	 * @param   string   $context  The context for the content passed to the plugin.
	 * @param   array    $pks      A list of primary key ids of the content that has changed state.
	 * @param   integer  $value    The value of the state that the content has been changed to.
	 *
	 * @return  void
	 *
	 * @since   2.5
	 */
	public function onContentChangeState($context, $pks, $value)
	{
		$dispatcher = JEventDispatcher::getInstance();
		JPluginHelper::importPlugin('finder');

		// Trigger the onFinderChangeState event.
		$dispatcher->trigger('onFinderChangeState', array($context, $pks, $value));
	}

	/**
	 * Smart Search change category state content method.
	 * Method is called when the state of the category to which the
	 * content item belongs is changed.
	 *
	 * @param   string   $extension  The extension whose category has been updated.
	 * @param   array    $pks        A list of primary key ids of the content that has changed state.
	 * @param   integer  $value      The value of the state that the content has been changed to.
	 *
	 * @return  void
	 *
	 * @since   2.5
	 */
	public function onCategoryChangeState($extension, $pks, $value)
	{
		$dispatcher = JEventDispatcher::getInstance();
		JPluginHelper::importPlugin('finder');

		// Trigger the onFinderCategoryChangeState event.
		$dispatcher->trigger('onFinderCategoryChangeState', array($extension, $pks, $value));
	}
}
PK�%"]��`�jj
vote/vote.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.vote
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Vote plugin.
 *
 * @since  1.5
 */
class PlgContentVote extends JPlugin
{
	/**
	 * Application object
	 *
	 * @var    JApplicationCms
	 * @since  3.7.0
	 */
	protected $app;

	/**
	 * The position the voting data is displayed in relative to the article.
	 *
	 * @var    string
	 * @since  3.7.0
	 */
	protected $votingPosition;

	/**
	 * Constructor.
	 *
	 * @param   object  &$subject  The object to observe
	 * @param   array   $config    An optional associative array of configuration settings.
	 *
	 * @since   3.7.0
	 */
	public function __construct(&$subject, $config)
	{
		parent::__construct($subject, $config);

		$this->votingPosition = $this->params->get('position', 'top');
	}

	/**
	 * Displays the voting area when viewing an article and the voting section is displayed before the article
	 *
	 * @param   string   $context  The context of the content being passed to the plugin
	 * @param   object   &$row     The article object
	 * @param   object   &$params  The article params
	 * @param   integer  $page     The 'page' number
	 *
	 * @return  string|boolean  HTML string containing code for the votes if in com_content else boolean false
	 *
	 * @since   1.6
	 */
	public function onContentBeforeDisplay($context, &$row, &$params, $page = 0)
	{
		if ($this->votingPosition !== 'top')
		{
			return '';
		}

		return $this->displayVotingData($context, $row, $params, $page);
	}

	/**
	 * Displays the voting area when viewing an article and the voting section is displayed after the article
	 *
	 * @param   string   $context  The context of the content being passed to the plugin
	 * @param   object   &$row     The article object
	 * @param   object   &$params  The article params
	 * @param   integer  $page     The 'page' number
	 *
	 * @return  string|boolean  HTML string containing code for the votes if in com_content else boolean false
	 *
	 * @since   3.7.0
	 */
	public function onContentAfterDisplay($context, &$row, &$params, $page = 0)
	{
		if ($this->votingPosition !== 'bottom')
		{
			return '';
		}

		return $this->displayVotingData($context, $row, $params, $page);
	}

	/**
	 * Displays the voting area
	 *
	 * @param   string   $context  The context of the content being passed to the plugin
	 * @param   object   &$row     The article object
	 * @param   object   &$params  The article params
	 * @param   integer  $page     The 'page' number
	 *
	 * @return  string|boolean  HTML string containing code for the votes if in com_content else boolean false
	 *
	 * @since   3.7.0
	 */
	private function displayVotingData($context, &$row, &$params, $page)
	{
		$parts = explode('.', $context);

		if ($parts[0] !== 'com_content')
		{
			return false;
		}

		if (empty($params) || !$params->get('show_vote', null))
		{
			return '';
		}

		// Load plugin language files only when needed (ex: they are not needed if show_vote is not active).
		$this->loadLanguage();

		// Get the path for the rating summary layout file
		$path = JPluginHelper::getLayoutPath('content', 'vote', 'rating');

		// Render the layout
		ob_start();
		include $path;
		$html = ob_get_clean();

		if ($this->app->input->getString('view', '') === 'article' && $row->state == 1)
		{
			// Get the path for the voting form layout file
			$path = JPluginHelper::getLayoutPath('content', 'vote', 'vote');

			// Render the layout
			ob_start();
			include $path;
			$html .= ob_get_clean();
		}

		return $html;
	}
}
PK�%"]m*�~~
vote/vote.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="content" method="upgrade">
	<name>plg_content_vote</name>
	<author>Joomla! Project</author>
	<creationDate>November 2005</creationDate>
	<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>PLG_VOTE_XML_DESCRIPTION</description>
	<files>
		<filename plugin="vote">vote.php</filename>
		<folder>tmpl</folder>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_vote.ini</language>
		<language tag="en-GB">en-GB.plg_content_vote.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="basic">
				<field
					name="position"
					type="list"
					label="PLG_VOTE_POSITION_LABEL"
					description="PLG_VOTE_POSITION_DESC"
					default="top"
					>
					<option value="top">PLG_VOTE_TOP</option>
					<option value="bottom">PLG_VOTE_BOTTOM</option>
				</field>
			</fieldset>
		</fields>
	</config>
</extension>
PK�%"]'��wwvote/tmpl/rating.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.vote
 *
 * @copyright   (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Layout variables
 * -----------------
 * @var   string   $context  The context of the content being passed to the plugin
 * @var   object   &$row     The article object
 * @var   object   &$params  The article params
 * @var   integer  $page     The 'page' number
 * @var   array    $parts    The context segments
 * @var   string   $path     Path to this file
 */

if ($context == 'com_content.categories')
{
	return;
}

$rating = (int) $row->rating;
$rcount = (int) $row->rating_count;

// Look for images in template if available
$starImageOn  = JHtml::_('image', 'system/rating_star.png', JText::_('PLG_VOTE_STAR_ACTIVE'), null, true);
$starImageOff = JHtml::_('image', 'system/rating_star_blank.png', JText::_('PLG_VOTE_STAR_INACTIVE'), null, true);

$img = '';

for ($i = 0; $i < $rating; $i++)
{
	$img .= $starImageOn;
}

for ($i = $rating; $i < 5; $i++)
{
	$img .= $starImageOff;
}

?>
<div class="content_rating">
	<?php if ($rcount) : ?>
		<p class="unseen element-invisible" itemprop="aggregateRating" itemscope itemtype="https://schema.org/AggregateRating">
			<?php echo JText::sprintf('PLG_VOTE_USER_RATING', '<span itemprop="ratingValue">' . $rating . '</span>', '<span itemprop="bestRating">5</span>'); ?>
			<meta itemprop="ratingCount" content="<?php echo $rcount; ?>" />
			<meta itemprop="worstRating" content="1" />
		</p>
	<?php endif; ?>
	<?php echo $img; ?>
</div>
PK�%"]^�y��vote/tmpl/vote.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.vote
 *
 * @copyright   (C) 2016 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Layout variables
 * -----------------
 * @var   string   $context  The context of the content being passed to the plugin
 * @var   object   &$row     The article object
 * @var   object   &$params  The article params
 * @var   integer  $page     The 'page' number
 * @var   array    $parts    The context segments
 * @var   string   $path     Path to this file
 */

$uri = clone JUri::getInstance();
$uri->setVar('hitcount', '0');

// Create option list for voting select box
$options = array();

for ($i = 1; $i < 6; $i++)
{
	$options[] = JHtml::_('select.option', $i, JText::sprintf('PLG_VOTE_VOTE', $i));
}

?>
<form method="post" action="<?php echo htmlspecialchars($uri->toString(), ENT_COMPAT, 'UTF-8'); ?>" class="form-inline">
	<span class="content_vote">
		<label class="unseen element-invisible" for="content_vote_<?php echo (int) $row->id; ?>"><?php echo JText::_('PLG_VOTE_LABEL'); ?></label>
		<?php echo JHtml::_('select.genericlist', $options, 'user_rating', null, 'value', 'text', '5', 'content_vote_' . (int) $row->id); ?>
		&#160;<input class="btn btn-mini" type="submit" name="submit_vote" value="<?php echo JText::_('PLG_VOTE_RATE'); ?>" />
		<input type="hidden" name="task" value="article.vote" />
		<input type="hidden" name="hitcount" value="0" />
		<input type="hidden" name="url" value="<?php echo htmlspecialchars($uri->toString(), ENT_COMPAT, 'UTF-8'); ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</span>
</form>
PK�%"]}$*�%�%pagebreak/pagebreak.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.pagebreak
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\String\StringHelper;

jimport('joomla.utilities.utility');

JLoader::register('ContentHelperRoute', JPATH_SITE . '/components/com_content/helpers/route.php');

/**
 * Page break plugin
 *
 * <b>Usage:</b>
 * <code><hr class="system-pagebreak" /></code>
 * <code><hr class="system-pagebreak" title="The page title" /></code>
 * or
 * <code><hr class="system-pagebreak" alt="The first page" /></code>
 * or
 * <code><hr class="system-pagebreak" title="The page title" alt="The first page" /></code>
 * or
 * <code><hr class="system-pagebreak" alt="The first page" title="The page title" /></code>
 *
 * @since  1.6
 */
class PlgContentPagebreak extends JPlugin
{
	/**
	 * The navigation list with all page objects if parameter 'multipage_toc' is active.
	 *
	 * @var    array
	 * @since  3.9.2
	 */
	protected $list = array();

	/**
	 * Plugin that adds a pagebreak into the text and truncates text at that point
	 *
	 * @param   string   $context  The context of the content being passed to the plugin.
	 * @param   object   &$row     The article object.  Note $article->text is also available
	 * @param   mixed    &$params  The article params
	 * @param   integer  $page     The 'page' number
	 *
	 * @return  mixed  Always returns void or true
	 *
	 * @since   1.6
	 */
	public function onContentPrepare($context, &$row, &$params, $page = 0)
	{
		$canProceed = $context === 'com_content.article';

		if (!$canProceed)
		{
			return;
		}

		$style = $this->params->get('style', 'pages');

		// Expression to search for.
		$regex = '#<hr(.*)class="system-pagebreak"(.*)\/>#iU';

		$input = JFactory::getApplication()->input;

		$print = $input->getBool('print');
		$showall = $input->getBool('showall');

		if (!$this->params->get('enabled', 1))
		{
			$print = true;
		}

		if ($print)
		{
			$row->text = preg_replace($regex, '<br />', $row->text);

			return true;
		}

		// Simple performance check to determine whether bot should process further.
		if (StringHelper::strpos($row->text, 'class="system-pagebreak') === false)
		{
			if ($page > 0)
			{
				throw new Exception(JText::_('JERROR_PAGE_NOT_FOUND'), 404);
			}

			return true;
		}

		$view = $input->getString('view');
		$full = $input->getBool('fullview');

		if (!$page)
		{
			$page = 0;
		}

		if ($full || $view !== 'article' || $params->get('intro_only') || $params->get('popup'))
		{
			$row->text = preg_replace($regex, '', $row->text);

			return;
		}

		// Load plugin language files only when needed (ex: not needed if no system-pagebreak class exists).
		$this->loadLanguage();

		// Find all instances of plugin and put in $matches.
		$matches = array();
		preg_match_all($regex, $row->text, $matches, PREG_SET_ORDER);

		if ($showall && $this->params->get('showall', 1))
		{
			$hasToc = $this->params->get('multipage_toc', 1);

			if ($hasToc)
			{
				// Display TOC.
				$page = 1;
				$this->_createToc($row, $matches, $page);
			}
			else
			{
				$row->toc = '';
			}

			$row->text = preg_replace($regex, '<br />', $row->text);

			return true;
		}

		// Split the text around the plugin.
		$text = preg_split($regex, $row->text);

		if (!isset($text[$page]))
		{
			throw new Exception(JText::_('JERROR_PAGE_NOT_FOUND'), 404);
		}

		// Count the number of pages.
		$n = count($text);

		// We have found at least one plugin, therefore at least 2 pages.
		if ($n > 1)
		{
			$title  = $this->params->get('title', 1);
			$hasToc = $this->params->get('multipage_toc', 1);

			// Adds heading or title to <site> Title.
			if ($title && $page && isset($matches[$page - 1][0]))
			{
				$attrs = JUtility::parseAttributes($matches[$page - 1][0]);

				if (isset($attrs['title']))
				{
					$row->page_title = $attrs['title'];
				}
			}

			// Reset the text, we already hold it in the $text array.
			$row->text = '';

			if ($style === 'pages')
			{
				// Display TOC.
				if ($hasToc)
				{
					$this->_createToc($row, $matches, $page);
				}
				else
				{
					$row->toc = '';
				}

				// Traditional mos page navigation
				$pageNav = new JPagination($n, $page, 1);

				// Flag indicates to not add limitstart=0 to URL
				$pageNav->hideEmptyLimitstart = true;

				// Page counter.
				$row->text .= '<div class="pagenavcounter">';
				$row->text .= $pageNav->getPagesCounter();
				$row->text .= '</div>';

				// Page text.
				$text[$page] = str_replace('<hr id="system-readmore" />', '', $text[$page]);
				$row->text .= $text[$page];

				// $row->text .= '<br />';
				$row->text .= '<div class="pager">';

				// Adds navigation between pages to bottom of text.
				if ($hasToc)
				{
					$this->_createNavigation($row, $page, $n);
				}

				// Page links shown at bottom of page if TOC disabled.
				if (!$hasToc)
				{
					$row->text .= $pageNav->getPagesLinks();
				}

				$row->text .= '</div>';
			}
			else
			{
				$t[] = $text[0];

				$t[] = (string) JHtml::_($style . '.start', 'article' . $row->id . '-' . $style);

				foreach ($text as $key => $subtext)
				{
					if ($key >= 1)
					{
						$match = $matches[$key - 1];
						$match = (array) JUtility::parseAttributes($match[0]);

						if (isset($match['alt']))
						{
							$title = stripslashes($match['alt']);
						}
						elseif (isset($match['title']))
						{
							$title = stripslashes($match['title']);
						}
						else
						{
							$title = JText::sprintf('PLG_CONTENT_PAGEBREAK_PAGE_NUM', $key + 1);
						}

						$t[] = (string) JHtml::_($style . '.panel', $title, 'article' . $row->id . '-' . $style . $key);
					}

					$t[] = (string) $subtext;
				}

				$t[] = (string) JHtml::_($style . '.end');

				$row->text = implode(' ', $t);
			}
		}

		return true;
	}

	/**
	 * Creates a Table of Contents for the pagebreak
	 *
	 * @param   object   &$row      The article object.  Note $article->text is also available
	 * @param   array    &$matches  Array of matches of a regex in onContentPrepare
	 * @param   integer  &$page     The 'page' number
	 *
	 * @return  void
	 *
	 * @since  1.6
	 */
	protected function _createToc(&$row, &$matches, &$page)
	{
		$heading     = isset($row->title) ? $row->title : JText::_('PLG_CONTENT_PAGEBREAK_NO_TITLE');
		$input       = JFactory::getApplication()->input;
		$limitstart  = $input->getUInt('limitstart', 0);
		$showall     = $input->getInt('showall', 0);
		$headingtext = '';

		if ($this->params->get('article_index', 1) == 1)
		{
			$headingtext = JText::_('PLG_CONTENT_PAGEBREAK_ARTICLE_INDEX');

			if ($this->params->get('article_index_text'))
			{
				$headingtext = htmlspecialchars($this->params->get('article_index_text'), ENT_QUOTES, 'UTF-8');
			}
		}

		// TOC first Page link.
		$this->list[1]          = new stdClass;
		$this->list[1]->liClass = ($limitstart === 0 && $showall === 0) ? 'toclink active' : 'toclink';
		$this->list[1]->class   = $this->list[1]->liClass;
		$this->list[1]->link    = JRoute::_(ContentHelperRoute::getArticleRoute($row->slug, $row->catid, $row->language));
		$this->list[1]->title   = $heading;

		$i = 2;

		foreach ($matches as $bot)
		{
			if (@$bot[0])
			{
				$attrs2 = JUtility::parseAttributes($bot[0]);

				if (@$attrs2['alt'])
				{
					$title = stripslashes($attrs2['alt']);
				}
				elseif (@$attrs2['title'])
				{
					$title = stripslashes($attrs2['title']);
				}
				else
				{
					$title = JText::sprintf('PLG_CONTENT_PAGEBREAK_PAGE_NUM', $i);
				}
			}
			else
			{
				$title = JText::sprintf('PLG_CONTENT_PAGEBREAK_PAGE_NUM', $i);
			}

			$this->list[$i]          = new stdClass;
			$this->list[$i]->link    = JRoute::_(ContentHelperRoute::getArticleRoute($row->slug, $row->catid, $row->language) . '&limitstart=' . ($i - 1));
			$this->list[$i]->title   = $title;
			$this->list[$i]->liClass = ($limitstart === $i - 1) ? 'active' : '';
			$this->list[$i]->class   = ($limitstart === $i - 1) ? 'toclink active' : 'toclink';

			$i++;
		}

		if ($this->params->get('showall'))
		{
			$this->list[$i]          = new stdClass;
			$this->list[$i]->link    = JRoute::_(ContentHelperRoute::getArticleRoute($row->slug, $row->catid, $row->language) . '&showall=1');
			$this->list[$i]->liClass = ($showall === 1) ? 'active' : '';
			$this->list[$i]->class   = ($showall === 1) ? 'toclink active' : 'toclink';
			$this->list[$i]->title   = JText::_('PLG_CONTENT_PAGEBREAK_ALL_PAGES');
		}

		$list = $this->list;
		$path = JPluginHelper::getLayoutPath('content', 'pagebreak', 'toc');
		ob_start();
		include $path;
		$row->toc = ob_get_clean();
	}

	/**
	 * Creates the navigation for the item
	 *
	 * @param   object  &$row  The article object.  Note $article->text is also available
	 * @param   int     $page  The page number
	 * @param   int     $n     The total number of pages
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	protected function _createNavigation(&$row, $page, $n)
	{
		$links = array(
			'next' => '',
			'previous' => ''
		);

		if ($page < $n - 1)
		{
			$links['next'] = JRoute::_(ContentHelperRoute::getArticleRoute($row->slug, $row->catid, $row->language) . '&limitstart=' . ($page + 1));
		}

		if ($page > 0)
		{
			$links['previous'] = ContentHelperRoute::getArticleRoute($row->slug, $row->catid, $row->language);

			if ($page > 1)
			{
				$links['previous'] .= '&limitstart=' . ($page - 1);
			}

			$links['previous'] = JRoute::_($links['previous']);
		}

		$path = JPluginHelper::getLayoutPath('content', 'pagebreak', 'navigation');
		ob_start();
		include $path;
		$row->text .= ob_get_clean();
	}
}
PK�%"]��^pagebreak/pagebreak.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="content" method="upgrade">
	<name>plg_content_pagebreak</name>
	<author>Joomla! Project</author>
	<creationDate>November 2005</creationDate>
	<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>PLG_CONTENT_PAGEBREAK_XML_DESCRIPTION</description>
	<files>
		<filename plugin="pagebreak">pagebreak.php</filename>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_pagebreak.ini</language>
		<language tag="en-GB">en-GB.plg_content_pagebreak.sys.ini</language>
	</languages>
	<config>
		<fields name="params">

			<fieldset name="basic">
				<field
					name="title"
					type="radio"
					label="PLG_CONTENT_PAGEBREAK_SITE_TITLE_LABEL"
					description="PLG_CONTENT_PAGEBREAK_SITE_TITLE_DESC"
					class="btn-group btn-group-yesno"
					default="1"
					filter="integer"
					>
					<option value="1">JSHOW</option>
					<option value="0">JHIDE</option>
				</field>

				<field
					name="article_index"
					type="radio"
					label="PLG_CONTENT_PAGEBREAK_SITE_ARTICLEINDEX_LABEL"
					description="PLG_CONTENT_PAGEBREAK_SITE_ARTICLEINDEX_DESC"
					class="btn-group btn-group-yesno"
					default="1"
					filter="integer"
					>
					<option value="1">JSHOW</option>
					<option value="0">JHIDE</option>
				</field>

				<field
					name="article_index_text"
					type="text"
					label="PLG_CONTENT_PAGEBREAK_SITE_ARTICLEINDEXTEXT"
					description="PLG_CONTENT_PAGEBREAK_SITE_ARTICLEINDEXTEXT_DESC"
					showon="article_index:1"
				/>

				<field
					name="multipage_toc"
					type="radio"
					label="PLG_CONTENT_PAGEBREAK_TOC_LABEL"
					description="PLG_CONTENT_PAGEBREAK_TOC_DESC"
					class="btn-group btn-group-yesno"
					default="1"
					filter="integer"
					>
					<option value="1">JSHOW</option>
					<option value="0">JHIDE</option>
				</field>

				<field
					name="showall"
					type="radio"
					label="PLG_CONTENT_PAGEBREAK_SHOW_ALL_LABEL"
					description="PLG_CONTENT_PAGEBREAK_SHOW_ALL_DESC"
					class="btn-group btn-group-yesno"
					default="1"
					filter="integer"
					>
					<option value="1">JSHOW</option>
					<option value="0">JHIDE</option>
				</field>

				<field
					name="style"
					type="list"
					label="PLG_CONTENT_PAGEBREAK_STYLE_LABEL"
					description="PLG_CONTENT_PAGEBREAK_STYLE_DESC"
					default="pages"
					>
					<option value="pages">PLG_CONTENT_PAGEBREAK_PAGES</option>
					<option value="sliders">PLG_CONTENT_PAGEBREAK_SLIDERS</option>
					<option value="tabs">PLG_CONTENT_PAGEBREAK_TABS</option>
				</field>
			</fieldset>

		</fields>
	</config>
</extension>
PK�%"]�54س�pagebreak/tmpl/navigation.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.pagebreak
 *
 * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

$lang = JFactory::getLanguage();
?>
<ul>
	<li>
		<?php if ($links['previous']) :
		$direction = $lang->isRtl() ? 'right' : 'left';
		$title = htmlspecialchars($this->list[$page]->title, ENT_QUOTES, 'UTF-8');
		$ariaLabel = JText::_('JPREVIOUS') . ': ' . $title . ' (' . JText::sprintf('JLIB_HTML_PAGE_CURRENT_OF_TOTAL', $page, $n) . ')';
		?>
		<a href="<?php echo $links['previous']; ?>" title="<?php echo $title; ?>" aria-label="<?php echo $ariaLabel; ?>" rel="prev">
			<?php echo '<span class="icon-chevron-' . $direction . '" aria-hidden="true"></span> ' . JText::_('JPREV'); ?>
		</a>
		<?php endif; ?>
	</li>
	<li>
		<?php if ($links['next']) :
		$direction = $lang->isRtl() ? 'left' : 'right';
		$title = htmlspecialchars($this->list[$page + 2]->title, ENT_QUOTES, 'UTF-8');
		$ariaLabel = JText::_('JNEXT') . ': ' . $title . ' (' . JText::sprintf('JLIB_HTML_PAGE_CURRENT_OF_TOTAL', ($page + 2), $n) . ')';
		?>
		<a href="<?php echo $links['next']; ?>" title="<?php echo $title; ?>" aria-label="<?php echo $ariaLabel; ?>" rel="next">
			<?php echo JText::_('JNEXT') . ' <span class="icon-chevron-' . $direction . '" aria-hidden="true"></span>'; ?>
		</a>
		<?php endif; ?>
	</li>
</ul>
PK�%"]f ph��pagebreak/tmpl/toc.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.pagebreak
 *
 * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="pull-right article-index">

	<?php if ($headingtext) : ?>
	<h3><?php echo $headingtext; ?></h3>
	<?php endif; ?>

	<ul class="nav nav-tabs nav-stacked">
	<?php foreach ($list as $listItem) : ?>
		<?php $class = $listItem->liClass ? ' class="' . $listItem->liClass . '"' : ''; ?>
		<li<?php echo $class; ?>>
			<a href="<?php echo $listItem->link; ?>" class="<?php echo $listItem->class; ?>">
				<?php echo $listItem->title; ?>
			</a>
		</li>
	<?php endforeach; ?>
	</ul>
</div>
PK�%"]P�Ltt$confirmconsent/fields/consentbox.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.confirmconsent
 *
 * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('JPATH_PLATFORM') or die;

use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Language\Associations;
use Joomla\CMS\Language\Text;
use Joomla\CMS\Router\Route;

JFormHelper::loadFieldClass('Checkboxes');

/**
 * Consentbox Field class for the Confirm Consent Plugin.
 *
 * @since  3.9.1
 */
class JFormFieldConsentBox extends JFormFieldCheckboxes
{
	/**
	 * The form field type.
	 *
	 * @var    string
	 * @since  3.9.1
	 */
	protected $type = 'ConsentBox';

	/**
	 * Flag to tell the field to always be in multiple values mode.
	 *
	 * @var    boolean
	 * @since  3.9.1
	 */
	protected $forceMultiple = false;

	/**
	 * The article ID.
	 *
	 * @var    integer
	 * @since  3.9.1
	 */
	protected $articleid;

	/**
	 * Method to set certain otherwise inaccessible properties of the form field object.
	 *
	 * @param   string  $name   The property name for which to set the value.
	 * @param   mixed   $value  The value of the property.
	 *
	 * @return  void
	 *
	 * @since   3.9.1
	 */
	public function __set($name, $value)
	{
		switch ($name)
		{
			case 'articleid':
				$this->articleid = (int) $value;
				break;

			default:
				parent::__set($name, $value);
		}
	}

	/**
	 * Method to get certain otherwise inaccessible properties from the form field object.
	 *
	 * @param   string  $name  The property name for which to get the value.
	 *
	 * @return  mixed  The property value or null.
	 *
	 * @since   3.9.1
	 */
	public function __get($name)
	{
		switch ($name)
		{
			case 'articleid':
				return $this->$name;
		}

		return parent::__get($name);
	}

	/**
	 * Method to attach a JForm object to the field.
	 *
	 * @param   SimpleXMLElement  $element  The SimpleXMLElement object representing the `<field>` tag for the form field object.
	 * @param   mixed             $value    The form field value to validate.
	 * @param   string            $group    The field name group control value. This acts as an array container for the field.
	 *                                      For example if the field has name="foo" and the group value is set to "bar" then the
	 *                                      full field name would end up being "bar[foo]".
	 *
	 * @return  boolean  True on success.
	 *
	 * @see     JFormField::setup()
	 * @since   3.9.1
	 */
	public function setup(SimpleXMLElement $element, $value, $group = null)
	{
		$return = parent::setup($element, $value, $group);

		if ($return)
		{
			$this->articleid = (int) $this->element['articleid'];
		}

		return $return;
	}

	/**
	 * Method to get the field label markup.
	 *
	 * @return  string  The field label markup.
	 *
	 * @since   3.9.1
	 */
	protected function getLabel()
	{
		if ($this->hidden)
		{
			return '';
		}

		$data = $this->getLayoutData();

		// Forcing the Alias field to display the tip below
		$position = $this->element['name'] == 'alias' ? ' data-placement="bottom" ' : '';

		// When we have an article let's add the modal and make the title clickable
		if ($data['articleid'])
		{
			$attribs['data-toggle'] = 'modal';

			$data['label'] = HTMLHelper::_(
				'link',
				'#modal-' . $this->id,
				$data['label'],
				$attribs
			);
		}

		// Here mainly for B/C with old layouts. This can be done in the layouts directly
		$extraData = array(
			'text'     => $data['label'],
			'for'      => $this->id,
			'classes'  => explode(' ', $data['labelclass']),
			'position' => $position,
		);

		return $this->getRenderer($this->renderLabelLayout)->render(array_merge($data, $extraData));
	}

	/**
	 * Method to get the field input markup.
	 *
	 * @return  string  The field input markup.
	 *
	 * @since   3.9.2
	 */
	protected function getInput()
	{
		$modalHtml  = '';
		$layoutData = $this->getLayoutData();

		if ($this->articleid)
		{
			$modalParams['title']  = $layoutData['label'];
			$modalParams['url']    = $this->getAssignedArticleUrl();
			$modalParams['height'] = 800;
			$modalParams['width']  = '100%';
			$modalHtml = HTMLHelper::_('bootstrap.renderModal', 'modal-' . $this->id, $modalParams);
		}

		return $modalHtml . parent::getInput();
	}

	/**
	 * Method to get the data to be passed to the layout for rendering.
	 *
	 * @return  array
	 *
	 * @since   3.9.1
	 */
	protected function getLayoutData()
	{
		$data = parent::getLayoutData();

		$extraData = array(
			'articleid' => (integer) $this->articleid,
		);

		return array_merge($data, $extraData);
	}

	/**
	 * Return the url of the assigned article based on the current user language
	 *
	 * @return  string  Returns the link to the article
	 *
	 * @since   3.9.1
	 */
	private function getAssignedArticleUrl()
	{
		$db = Factory::getDbo();

		// Get the info from the article
		$query = $db->getQuery(true)
			->select($db->quoteName(array('id', 'catid', 'language')))
			->from($db->quoteName('#__content'))
			->where($db->quoteName('id') . ' = ' . (int) $this->articleid);
		$db->setQuery($query);

		try
		{
			$article = $db->loadObject();
		}
		catch (JDatabaseExceptionExecuting $e)
		{
			// Something at the database layer went wrong
			return Route::_(
				'index.php?option=com_content&view=article&id='
				. $this->articleid . '&tmpl=component'
			);
		}

		if (!is_object($article))
		{
			// We have not found the article object lets show a 404 to the user
			return Route::_(
				'index.php?option=com_content&view=article&id='
				. $this->articleid . '&tmpl=component'
			);
		}

		// Register ContentHelperRoute
		JLoader::register('ContentHelperRoute', JPATH_BASE . '/components/com_content/helpers/route.php');

		if (!Associations::isEnabled())
		{
			return Route::_(
				ContentHelperRoute::getArticleRoute(
					$article->id,
					$article->catid,
					$article->language
				) . '&tmpl=component'
			);
		}

		$associatedArticles = Associations::getAssociations('com_content', '#__content', 'com_content.item', $article->id);
		$currentLang        = Factory::getLanguage()->getTag();

		if (isset($associatedArticles) && $currentLang !== $article->language && array_key_exists($currentLang, $associatedArticles))
		{
			return Route::_(
				ContentHelperRoute::getArticleRoute(
					$associatedArticles[$currentLang]->id,
					$associatedArticles[$currentLang]->catid,
					$associatedArticles[$currentLang]->language
				) . '&tmpl=component'
			);
		}

		// Association is enabled but this article is not associated
		return Route::_(
			'index.php?option=com_content&view=article&id='
				. $article->id . '&catid=' . $article->catid
				. '&tmpl=component&lang=' . $article->language
		);
	}
}
PK�%"]�5�77!confirmconsent/confirmconsent.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.9" type="plugin" group="content" method="upgrade">
	<name>plg_content_confirmconsent</name>
	<author>Joomla! Project</author>
	<creationDate>May 2018</creationDate>
	<copyright>(C) 2018 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.9.0</version>
	<description>PLG_CONTENT_CONFIRMCONSENT_XML_DESCRIPTION</description>
	<files>
		<filename plugin="confirmconsent">confirmconsent.php</filename>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_confirmconsent.ini</language>
		<language tag="en-GB">en-GB.plg_content_confirmconsent.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="basic" addfieldpath="/administrator/components/com_content/models/fields">
				<field
					name="consentbox_text"
					type="textarea"
					label="PLG_CONTENT_CONFIRMCONSENT_FIELD_NOTE_LABEL"
					description="PLG_CONTENT_CONFIRMCONSENT_FIELD_NOTE_DESC"
					hint="PLG_CONTENT_CONFIRMCONSENT_FIELD_NOTE_DEFAULT"
					class="span12"
					rows="7"
					cols="20"
					filter="html"
				/>

				<field
					name="privacy_article"
					type="modal_article"
					label="PLG_CONTENT_CONFIRMCONSENT_FIELD_ARTICLE_LABEL"
					description="PLG_CONTENT_CONFIRMCONSENT_FIELD_ARTICLE_DESC"
					select="true"
					new="true"
					edit="true"
					clear="true"
					filter="integer"
				/>
			</fieldset>
		</fields>
	</config>
</extension>
PK�%"]�p�|��!confirmconsent/confirmconsent.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.confirmconsent
 *
 * @copyright   (C) 2018 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\CMS\Language\Text;
use Joomla\CMS\Plugin\CMSPlugin;

/**
 * The Joomla Core confirm consent plugin
 *
 * @since  3.9.0
 */
class PlgContentConfirmConsent extends CMSPlugin
{
	/**
	 * The Application object
	 *
	 * @var    JApplicationSite
	 * @since  3.9.0
	 */
	protected $app;

	/**
	 * Load the language file on instantiation.
	 *
	 * @var    boolean
	 * @since  3.9.0
	 */
	protected $autoloadLanguage = true;

	/**
	 * The supported form contexts
	 *
	 * @var    array
	 * @since  3.9.0
	 */
	protected $supportedContext = array(
		'com_contact.contact',
		'com_mailto.mailto',
		'com_privacy.request',
	);

	/**
	 * Add additional fields to the supported forms
	 *
	 * @param   JForm  $form  The form to be altered.
	 * @param   mixed  $data  The associated data for the form.
	 *
	 * @return  boolean
	 *
	 * @since   3.9.0
	 */
	public function onContentPrepareForm(JForm $form, $data)
	{
		if ($this->app->isClient('administrator') || !in_array($form->getName(), $this->supportedContext))
		{
			return true;
		}

		// Get the consent box Text & the selected privacyarticle
		$consentboxText  = (string) $this->params->get('consentbox_text', Text::_('PLG_CONTENT_CONFIRMCONSENT_FIELD_NOTE_DEFAULT'));
		$privacyArticle  = $this->params->get('privacy_article', false);

		$form->load('
			<form>
				<fieldset name="default" addfieldpath="/plugins/content/confirmconsent/fields">
					<field
						name="consentbox"
						type="consentbox"
						articleid="' . $privacyArticle . '"
						label="PLG_CONTENT_CONFIRMCONSENT_CONSENTBOX_LABEL"
						required="true"
						>
						<option value="0">' . htmlspecialchars($consentboxText, ENT_COMPAT, 'UTF-8') . '</option>
					</field>
				</fieldset>
			</form>'
		);

		return true;
	}
}
PK�%"]`,�$$josdewplayer/dewplayer.swfnu&1i�CWS�^x�Ŝ	\T���,þ��ㆸ�(8���@�(�
00�3��hM�TQL�!��&���bjL���Z�D�֚6��I�o��5�I�D�wy�;3�������3����{����L�C�BQ24'�f��޽�T3����aH�*]V��В��
UU��݉
*�U.�4��Vj�#5Ҵ� �L����r]��ǟ2}��~�4CQL.4lht��Z�Mv�l����'��
����jL�kv��\���j��`1"��e6"��d-g"�-���.	��`n4"����@*I�r9U
��Y��L���šv"��P���&k�U9���᤭9��\�h��l�2�L6+�E��Ӫ�jlv-2Ub��YQek2:��ζJ�1�f-2�����&�W2�[mDx�j]u��L.D?J�k�:�o��E��Di(���g�j���a�SS��jv1�ʵ��5&#�c�x��w��嫨Tތk��B�FU�YЅ\���ak�VS�r��7���Ho�.,�������es��~�@-x������Uf�����L�j�Ո��ذӢ���h��s��#���e2��E��5��et��pYls̨����� �;��<����΀�tA��i�9Mt�$�Z*Fv�E�6�m��z6��^�v#�	[@O��e��j�� 8���:�闋�C%�0�&#�Z-�t��A�t:�Xg3���r\��_�"*�9�f���� ӄ�d��Z
� ���)c�Ɋ�֎�"��d'�-5�L26�ak�sn�"ƾ�����2��Ld�,��Ow�q���jYhk2g�Mv4��x��hk�6l�E�₍G�v��&���L�ѵ�I6+mu6�?#n����(:��M�F��L ��1���3g#�82�U
�b�B:`{���s��\FGv�*�Cy╤�ab�DT��&�Wg4�IG�[�u�'3�`ot֡f�YR��rr�7:2�Z��ԙ\dj�#�ъ�`7�Q#��N��)�K��-r�xe�}[Qq>S.�1�E�1�-؍�+�\A��1T�M��@bT=YxA��d���m0�+��ɦ��s�w��.��%|��D�L2T���h6�:l�B"י���Mf<�y.#��U6�G�L��a^`th���E;��4P�;�k���;	O��5#�7���"˶��4��)B2qkq@0�%D2�ӫL8^Vc��at�!�y��g�Q�@��:�|�s��'(�M�:�g�dHmB��F�q5���D��^9�+qbT��H�E�T��B�.���
�T��"	�')R�D��)Vb]"jW㤪Vb=�z?R%���'WA�U�W��_!�Vh���!�\i=�u��C҇.�]X��>t�� ���4��t���\�	suRF��X��)��-�H!r�PDtx�T�a�8?r4ãV�G��~kxԒ{�
�֟_+ڣVX���zԊ��o�Z�Z*�Z���Q+V�,Z+��Z�2��n��9Fb�0��U[F\6����xgd3�L���y/�	�,�@�G]6�qB�h�.f�=X6������i�3G�
��<�G���X�J|o+�� |�e=ű�����g��{Z6Sr�=�)�t�bI�`M{����� 'W��c2�f�z\��C!?�z���(GdŶF�9R�F�j$_M���%��bW��]�$�f���NҴ�!�@|�K�`Ԯ�J�H\���q�LăH�R/9���3!#F��IM����G*e!�r��`K$-%��!�H�FK
�&�n�Hgh|]��,�2�h�d,��+1�ޯ�S*
ȘRx=�L��iz:)Vq�^�φX�\:a�D�c+sHäֱE��Q�k����� ]��Irq&�k�ˠ�n'�y��3�ݼ?�����;���&#�5�̳DĽ��9��H���'��M��?���1X,V�PA@2���@��ѣ�臌*7����;�X��;m���X�L�+D�iPL���4KY^>�Q�?�}U3�J�]�uu�uuB�>��L�
���)L�/��Ewx�p5�.��խ�g���B��t}n>�>h�ۙ���<}��)��ئ&�����
��}����ɚ:�I8���3��!Y�r����^�ݻ|A54Z�|��Y �P"a�0��O=�m���IA^ޚ�>��N�����C�Al�
}M~@�U+D4!���"�qѧ
�wW"����^�Wo>�=z%u�����u$fR�d��> ���oL@R� -��Xf�>���ܨ���w���q#�ĭ�懠��`�3L��k�d	���I�)�[~��g��Et.�5drh�Z�%��L�2��k#U+�pT�ش��e��O�C�CKS�
^M<,HR��\���X�Ú(��D_!\.g������Nvb{��k�{�����{��J!��IOsh�Q��f�"��&jH{u$G������'	���$s�'�I/�y�j]�wMf;�"�T���F:5X[�uX��:�&���I)B��"�@��Y���G���v1KF�3�n�z�i����_y�;�,��ͅ|k�p[?A��s�o�e@C_-5��RC_-	�Bt��
�%�u�C��"�Kʃ�NL���� �=L��~,[O�=��xiF�.%�Jyx]=��\m�Sm+���]=Z$

�0��e�����Q^Q2��Vj|o�V��X:�U��G�XG�;r���P7�ݵG�s*VI��	�5��<�M^�˩�'T�p�J?G��|�G�Y`_��0-E�)�/|�o�]-���T��^K�J\c0��Ɗ���tĝ�kd��yF�X'� !9G0ga�j�(D=	Z��D�l�o�T��U�X��y�*h���C��wr�n�[7w�0y�`��T�5��E	u�
�?2!M�2�Hx�wj�ܝ��Fx��MY�}x=�?Sonz�A	�qj���Y���Hg)�8?���Ęv4򭲥�7|D�>XL�B��~�5+��b\��x̓�Dɫ�ar��4���m�P_=��H<�\�3ۡ>e&�3�]�_�p��}���f�C�Q��[�h��$��ѻ��Q4�?�N�^9"?,C!��44��L�*�w���cBq��H��v"ѹ��l�J�Z�C��n�]p�nˢ��q*i��z�C��=��ml���oO�����B��!�O�����E�4ëP����[3�S��&	G�j����C��ݷs�5�	I�ɟ<�S'��2���ZR'Jw#�Q�{,�H�^B/@�
�\p�q^g� ��rv�-��[��!N|Gƺ��'���Fy��R@6��(n�E�vl8�{��"O���r/"�}�h��^ʱ���	��>n�
�G,�a��^;�5�{�G�Z�AƟ�Yx�Ї�fw��\��&�`�<?��c?5�����D�]���;��{���'t�������)�^M�Э�OgIb��h�Sw�I�y��	���Y��~�sp�+�����:ރ��7z�����B%�|��S9=�lԴ"�z��������]��a�Ȱ0��>�a����^��[���>����2�^�v����~6չ\����U�V��w�)5��j�5����
8��t�7įо^en�(���՝z�x,G�Ǚg��Ǫ��"�z�V��f
�K9}	��
�d�H� �'HEP%]Ľ� qw&9�C��N^��DE����	1�#��x�
��y��U�w��g'��K5yjpCy\C�!n� �����	��P�TW�d�Dz6$�-�f����<C�4���x�>���ڧ6S�J��IO	9�����nDF��@(�1q�\�Ex�D��
���B���O=�z<�գ�?��g���(ǡ�8V���:H����*\f��ܛ�|$8��@���t��/�W,x$�߮�x�]ʡ�z����?��G��g�!��|�)��	I�\=Rj
��YM�t�#����{��ƙ���
w�>{��u)�6�9:�4lC�!mH\c`?�o��k
PN��^
Qr��2��с�C�~��8��c�oFw>�s��iU�d=��ڏjW��@�{n��<�7��mB�p��=�P.�A��h�Z~�C�������
���Ѣ��T�~�W�FA)a۩�
*�B�o�_�P�I�d��.�I�I���Z�z"��mb5)h�N�v��pQ��;�ɸ괞���9��z��'`����
�:Wu)�<4l��e��T~J�0b����w{�ۊ;1�zn}���'�^��Z�C*�stLj�����XK��?:����o�;��	�Q��7���8"�왈nj�Fe^���tR}��!�OnfU���[��e���S�N'��y26��#K�C��T���"v��.�Z�P���Z�3.���;�t��"f�'���(�(�{���ѩw�Hj�����u|
�v��(KW�UlN�i�݆D�6�ܕ�{�ŋ˦!�쒽~w�ѿ��_4��I��=t����]I�s��YG��v��μ��?�`���w{8X�]
�l՝t�[��>���ճ�ŋ{7ս[6��L����^�1t��	�E���k���hY[�`S@���'[w$F?s���޲�+���m��;�Q'[��r�W�4��t̨�S����K�3%�Q�/);N�\��7���gF�oܣ��ް���CG�:�r]���Ѵ�='�%�Q����8nK���l��D���؍ɧ��.[Z켛Y5��W���?��0u`!����&6��w�Vk�U��?�3,�������fx���g<{�2�bf}�~��{��B�[�S�\V�Jq�(k�$x�����Z���O�Y��o��i1/������p'ᵿm��U��f��i~zN��o�LJF��_��V�
!3��+�̪��&�왾��9%�&7���&�������_�Q=ӷ��Zޚ|�,��B0��E��]���"�1l] gmkS�ef��v8kۂttԨC��Q�?jx���t`]��1���t
J?�u
+H睮�����tq،~WK�BXA:�3� fYg�:゘Y��f4�Q����e^��tn�/T�3[A���cLm� �R��U��ݩ+3�r�Mrw�e���2�Ȟ��<&��E7��,?��ԓ鞨o��N�M�83sw�'���{��h��4.�޵�=H6=۪L����M�Nf	d�/�t�͌"�F�i&-5��y=��
��������(=HZZ�F\A�h��~�MW�HԬ7��6)���w���Qji�4�=.�E2
�c4��E�#��S�� ��x�>`���$�Ҡ]M܃4QЌ��Y4��м\)�&���2�HZb��o+�U$wє32��ZE�	�Ks?ʀ�Cr�_C���(��h~+�o�Fm'F	��`+3�ϰ;�A�Y�5�QT�k�A`�pf�t����;�%�����?���sÒ�]�>���ᒨ�	f
$�g#��ܰ�����".��s��u�uf���ݼ#��\/s$.�n���'�*����e>.�O��<���O��vygv5�ٷE ~ױ,��vJ೨���E+讃,��D�d��>�m����;�U�ד�t�A^���O,�>["�I���&>����%Ѩ�6)<�@�;T�	���ә��z85���[u|,g9�P˹��'���ȡ48��}l3��\f?s1��2��#���OH�יY�D#L�۹$�/�>!�.�vC��-f��?
FIy��M-5���j7D�F��\'3
���qF�$�`�ef$я����˅�(���@��귙Q���*ťPc�B�I�PH�aȧ��T,��e�݆�X:�����K�Żȡ�,s9�����be;�ˡ���'�j�vH�'�/�I�.�u����� 9t)ۂ\}AXs�uf��C���t���X��O��ۤ� �u��!���ѭ ���!��e�_�A�3��Ϡ!׸[��C�e�4\^�"�|����N ���f��w/��.�B�a94�Sf����XZ?�*;|�i�2K��X�Q��o~���tO���Y2�S����&c�ΙY�q�̲1���^w�:�P�*&��	�'��%QV�ׅ�q�o������7o�D�!���_=z�//#v؈��gCu�s�#�vM��0�0׶��lCO�Nm��G	
2&�/�Ÿ~ȸ�@���[2���X��>���'�ՍX�*�a?����<ECuʨ�H�閅o��3��__��G�yt������_��z�>mܟ^J���1.�>��ͥ��)�\���Dw�#���֏��Wt~Pud��ۚc���tC\�*����P�F��F�ǟ��C�ZY��ɛ��*�|�pfD���>|1c���6�ƍU�
��hc��-�S";%1��r�b̾nI<"q?��q���l�$��WD�JĄ���$��$y'����|�0�'�����ȿ�BK������IxȐͷ�ʦ�,=���y�Y��k.S��b�B�C7ٵ���+���:���݀�1���f(�#c���ٞR����ݕ���<��q�.���$?|=p�a���?�P��#�/Y<�KB���c?x��٥P-�_y�}�������*I���� �qLǔq̲pN�e��c�s�r�Y�1+8fǔsL9ǔsL�TpLE7��1p��c*9��c*9��c�8��c�9����c�#�9��cj8��cj9��cj9��c�8��cLZN���sL=��sL�4pLǘ9��1�� [8��1��r��c�c���8��1v7's�J�Y�1+9�1�qp��c���W's��c9��c9��c�8��cVq�*�Y�1���1��An��i����cVs��Y�1k8f-Ǭ�����c�q�:�Y�1�9f=�l�
��2[��*��(ӂ�-�r�$*P��?T�����Kb A@!�@�D�@ � 
�h�� �X�� ��NI�@4$�� 0-C�@`���H`$�$0
���`��X�0�RH 
�4��@:��&0�IL`2S� ��d�	�4���O �l���3��,f���`s��<r� �<�0�w���=z
(��(��E��� �X�J(`)��P���e,`+(��
TP�Y@5F��P@-u�0P@
��-X�`�������'���Fh`�h��V��s
kX�:���
���EQ��D�[��� Ib A�
@D0�hb���H` �`0C
�0F��HF0L�8RH`<�L`���T�,�id�
�f0���`9�0�|0}!z
x�"�x�����R�l�X@*��@
u���z�X�``%\4�@3-�`-������:QT I��� B@�b@�` h��`h�@L`hS@L`����4�Ёv6������v��X
b+@k�
�К@l�
ڕ :h��5�]/���M�C@�1�D����8�A�1�Y 悸�"K@\b%�u Z@t���:">L��R��%)A��$)M�2%i�$J�2I��$�$����pQ�JR�$�KR�$5�RH�N�t�d���xl)`� ���e
l' �C�^Đ��I�(%<�~��K��)qH���.������c��%��u�@$A�,���S��z뭻D�!y�a���D�X9����د�vh2FU�%�ޯ�=��6t����?ҍ|�:nm"��Tp�]dp�ģ���fvl�����	��,.v�u|���7�~�웷�݀\%\|��V���et��kـ������N���.D~5�ʊ����d�*cӛ�o*n�V)�>�כ�l\�c�����R�E�{�����s—>�n�����{�5���?�n�p�b�!��Ho{�9h�vf�bO"F�����k���LʉEt6+Ʌ8�Z2�y��Z��zh������ë�ֶ1��Vj\�ߨ�~��f�"gg�������
þ����!{���v�]B�h�᭘*�ب�1����BӰ>Z\l�eY�V��S>�ʦ�G�˧��^p,cW���/��)$t#v-��Z�?cQ�r�;�;��l�磐盲�8�����h7��%�n�S⮈�d�
Lỉ��ߐm��
;��?��#_؝>�8����}{I��ğ��T�LB��hk�J�����.U{!O\��b���}E�@�i`a���+��\i ��8��w(�
�]X�Di�>;��/٠��J�'t�����:���&��'�:i2��H�`�H��خ�)�*k�������F2��Ā֝����CM<���S��9��t����5�o6��A|?<\ln?K#�Y��,
G���Y��/w�met7����2U��`�݇6D*�R�!`8F�
?>tm�m��IKB��
�d�G���W21��p��_긟)f��"/�z	�W�^����#�߾�Ԙ�ʝ&q�G�s5J�+2�ch'a��d?�,����~��
>��L�u�~y=��qe6c����dp�8���͏�����wttܕ��Gҟ��`ߐ���}T*��|�ȿ6�;��-lJ�*@���Ό�ב�S�㌂�޺f�u{�Ͼt�[��읝޺e���}���|�u��M���Y�&���[�Ϭ0�����Ҽu���S���រ[�Ð7�մ���u_Nk���/��}���i�>s�Y�E������Iw��/͹��W4��~i�-�����>=4�?X�I�;9�酗��~�
�Gm�O�9Y�?3uT�Ȇ�k�E����d��҆랟15���Պ���v�oj+-��#fb�;Q��7�F�K�H������>�9�,;iDj�R.u�,��H�ۅ��S��J��6)����/�n��.����o���EPK�%"]�Dj��josdewplayer/josdewplayer.phpnu&1i�<?php
/**
*# Josdewplayer based on mosdewplayer, Joomla 1.7 native plugin
*# License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
*# By infograf768
*# Version 2.0 compatible with J 1.6/1.7
**/

defined( '_JEXEC' ) or die( 'Restricted access' );

jimport( 'joomla.plugin.plugin');

class plgContentJosdewplayer extends JPlugin
{
	public function __construct(&$subject, $config)
	{
		parent::__construct($subject, $config);
	}
	
	public function onContentPrepare($context, &$article, &$params, $page=0 )
	{
		// simple performance check to determine whether plugin should process further
		if ( JString::strpos( $article->text, 'play' ) === false ) {
			return true;
		}

		// define the regular expression for the plugin
		$regex = "#{play}(.*?){/play}#s";

		// perform the replacement
		$article->text = preg_replace_callback( $regex, array(&$this,'plgJosdewplayer_replacer'), $article->text );
		return true;
	}

	protected function plgJosdewplayer_replacer ( &$matches) 
	{
		$LiveSite = JURI::base();
		$plugin = JPluginHelper::getPlugin('content', 'josdewplayer');
		$pluginParams = $this->params;
		$thisParams = explode("|",$matches[1]);
		
		// Get params values
		$autoplay = $pluginParams->get('autoplay', 0);
		$autoreplay = $pluginParams->get('autoreplay', 0);
		
		// Look for and replace general parameters by local ones if present
		for($i = 1; $i < count($thisParams); $i++)
		{
			if(!strcmp($thisParams[$i], '[AUTOPLAY]')) {
				$autoplay = 1;
			} else if(!strcmp($thisParams[$i], '[AUTOREPLAY]')) {
				$autoreplay = 1;
			}
		}

		//Multiplayer
		$playList = explode('*', $thisParams[0]);
		for($i = 0; $i < count($playList); $i++)
		{
 			if ($i >0) {
  				if (strpos( $playList[$i], 'http') !==false) {
   					$path .= '|'. $playList[$i];
  			 	} else {
   					$path .='|'.$LiveSite.$playList[$i];
  				}
  				if ($pluginParams->get('multirect', 1)) {
  					$player = 'dewplayer-rect.swf';
  				} else {
  					$player = 'dewplayer-multi.swf';
  				}
  				$width= '240';
	  		} else {
  				$path = $playList[$i];
   					if (strpos( $path, 'http') !==false) {
  						$path = $path;
  					} else {
   						$path = $LiveSite.$path;
   					}
  				$player = 'dewplayer.swf';
  				$width= '200';
  			}
 		}
 		$height = '20';
 		$value = 'mp3=';
 		
 		//Playlist player
 		if (strpos($path, 'xml')  !== false)
 		{
			if (strpos( $path, 'http') !== false) {
				$path = $path;
			} else {
				$path = $LiveSite.$path;
	  		}

 			$player = 'dewplayer-playlist.swf';
			$width ='240';
			$height = '200';
			$value = 'xml=';
		}

		$text = '<object type="application/x-shockwave-flash" data="'. $LiveSite .'plugins/content/josdewplayer/'.$player.'" width="'.$width.'" height="'.$height.'" id="dewplayer" name="dewplayer">  <param name="wmode" value="transparent" /><param name="movie" value="'. $LiveSite .'plugins/content/josdewplayer/'.$player.'" /><param name="flashvars" value="'.$value. $path.'&amp;autostart='.$autoplay.'&amp;autoreplay='.$autoreplay.'&amp;showtime=1" /></object>';
		return $text;
	}
}PK�%"]�4��EEjosdewplayer/josdewplayer.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="1.7" type="plugin" group="content" method="upgrade">
	<name>plg_content_josdewplayer</name>
	<author>infograf768</author>
	<creationDate>July 2011</creationDate>
	<copyright>Based on mosdewplayer</copyright>
	<license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
	<authorEmail></authorEmail>
	<authorUrl>http://info-graf.fr</authorUrl>
	<version>2.0</version>
	<description>PLG_CONTENT_JOSDEWPLAYER_XML_DESCRIPTION</description>
	<files>
		<filename plugin="josdewplayer">josdewplayer.php</filename>
		<filename plugin="josdewplayer">dewplayer.swf</filename>
		<filename plugin="josdewplayer">dewplayer-multi.swf</filename>
		<filename plugin="josdewplayer">dewplayer-rect.swf</filename>
		<filename plugin="josdewplayer">dewplayer-playlist.swf</filename>
		<filename plugin="josdewplayer">index.html</filename>
		<folder>playlist</folder>
		<folder>language</folder>
	</files>
	<config>
		<fields name="params">

			<fieldset name="basic">
			
				<field name="autoplay" type="list"
					default="0"
					description="PLG_CONTENT_JOSDEWPLAYER_AUTOPLAY_DESC"
					label="PLG_CONTENT_JOSDEWPLAYER_AUTOPLAY_LABEL"
				>
					<option value="0">JNO</option>
					<option value="1">JYES</option>
				</field>
				<field name="autoreplay" type="list"
					default="0"
					description="PLG_CONTENT_JOSDEWPLAYER_AUTOREPLAY_DESC"
					label="PLG_CONTENT_JOSDEWPLAYER_AUTOREPLAY_LABEL"
				>
					<option value="0">JNO</option>
					<option value="1">JYES</option>
				</field>
				<field name="multirect" type="list"
					default="0"
					description="PLG_CONTENT_JOSDEWPLAYER_MULTIRECT_DESC"
					label="PLG_CONTENT_JOSDEWPLAYER_MULTIRECT_LABEL"
				>
					<option value="0">JNO</option>
					<option value="1">JYES</option>
				</field>
					
			</fieldset>

		</fields>
	</config>
</extension>PK�%"]�V� josdewplayer/playlist/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK�%"]��ʥRR(josdewplayer/playlist/playlist-small.xmlnu&1i�<?xml version="1.0" encoding="UTF-8"?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
    <title>Ounage Playlist</title>
    <creator>Dew</creator>
    <link>http://www.blup.fr/</link>
    <info>The Best Playlist</info>
    <image>covers/0.jpg</image>

    <trackList>

        <track>
          <location>mp3/test1.mp3</location>
          <creator>Bedrich Smetana</creator>
          <album>Má Vlast</album>
          <title>La Moldau (Vltava)</title>
          <annotation>I love this song</annotation>
          <duration>32000</duration>
          <image>covers/1.jpg</image>
          <info></info>
          <link>http://fr.wikipedia.org/wiki/M%C3%A1_Vlast_(Smetana)</link>
        </track>
        
        <track>
          <location>mp3/test2.mp3</location>
          <creator>Antonin Dvorak</creator>
          <album>La Symphonie du Nouveau Monde</album>
          <title>La Symphonie du Nouveau Monde</title>
          <annotation></annotation>
          <duration></duration>
          <image>covers/2.jpg</image>
          <info></info>
          <link>http://fr.wikipedia.org/wiki/Cesaria_Evora</link>
        </track>
        
        <track>
          <location>mp3/test3.mp3</location>
          <creator>Jean-Claude Petit</creator>
          <album>Le Hussard sur le Toit</album>
          <title>Le Hussard sur le Toit</title>
          <annotation></annotation>
          <duration></duration>
          <image>covers/3.jpg</image>
          <info></info>
          <link>http://fr.wikipedia.org/wiki/Le_Hussard_sur_le_toit_%28film%29</link>
        </track>

    </trackList>
</playlist>
PK�%"]
2��#�#josdewplayer/dewplayer-rect.swfnu&1i�CWS_x��|	X������aP�]ㆂk4��DT
0��03�
���T	&��$&61m��ִ1�b5����kLc�&cҦ�ڤ�����s�=g���=�g�Μ{�g�g��}�xYd)c1�,Y��c��<}ww73fV�a,���^��a2+����<^?�+�q����r��E�L���L:#S���<�?u�-a�d��lC�`<\al��;��8S������q�X���MV��󪝮
�T8r�p\Vkw�K$(��r��P�������HB�4:|��
9|�j��l��go����Yk��_.�{��������n~fw����sy����-�U29K��QX�,�p�Ԣܳ��c�j�f�~���]�p9�~c%��~��]���������@mq|-�I_��q�,��d�3Y��_�szAU��	p76K����>p�W;+�@�/�PI=����Z!���|bC����3���]��sl��p5�Y�'}Y~fz%����lvy���T�E[<n�V��!�J��j���: wK,��NmP��m8�9����������*+>���pl�.����vVQ���3���w�{4�B�f^�eU��g��brVɥ��.�k��
8yh:+2��T8�?�B��6a�h��-����Z���bp&�y\.嫄����4��N��Y�7_E7q�<�*�]*ĸ�E�pO9*�n�v��tfw;kU�ˍ�8�������Y.&�J�����uT�79E>��C�;�z
�<���y.����|
���.Wz�u�&���h��U'�����
\�hsp"^|P��V�E��K�g
!�F��zZb ��8�Z�S���Ė�L�ϧ�÷�N9�G�u��)�P\���-�����
A�i5��i����_��k]�:(���Y��毮v�kD|#�br�������C����&O�ă��ClE@�';��f�9���H^(WA��ε���!,�����N�]Ԥ�r�<���^Q1��r�)�)�,������(_"�ZB��
�Њ]�������u���<�N��2W;+s�.��%����Z^{s�~���/���5��q����݄�X˳�o@�d�8��[�Ld��<��,@.a/.�eJ-��_������~a�$w�����o�{��^�ɨ �Dj��:fr�_�˱�����xD�v����3�ܽ:f���Q�,-�_�(�~kSa���ʑ��ZL����8�>\,di�;�$�dA��t����A����(l�Ѽ�.�\l/��^p��z���E3S��Q�_����_�։�p9e�)�2����I`�P&p�H�%Z%�ꟼV=�Z��*��U�A��A�b�\�[FW��V���HЪ��U��\U���*��U��VY�ȂUq����T��ņ�Ł0��ɽJ���精��1���E�r�I�0[0h	Z+=���5ӵ��&�VڲJ����_�-\H�����Å�x@Y��O+u7u?�JI�2����J9���K{�u����g�l�t��\�<��81J`A�WpF��-����p8�
�\�M^S�z��3�-LW��[DLF�"1Ke��q���
*[��HkK8����ł$��9�4�O,J��a:�<Z
(V��H�^��J�(�4V��bӨ0�$���"��K"̎Qg[�C@��+ܢ1��Nw[�U;y�q
3��������dY�2�/��y¦	�?'�gF.xa�U.����I0#����,h�#"���c��� N��:���˹�Lm<9W0Ы��dՆ�y�b3siP�g��d���yM1�������,k��$5Ƹ4���L�l�i
��TH�iR���uA4��B2�@�b?��A�P��jqĕ*2�c��w3�<��f��  ��!�ga�����^�6��m�1���^��l��6ed��	ryU��҃��&�.Α6ͽ9��A|��.V�9����29�|E�pz�F�zy):C$8��Jvn��u�4M3>� W,�)�
n<��5+��$W���:!��R���y;�@��X�/���$J�P�~��T�J&��,T����bUb�>�q�S�"A{�|�p�ͥ�@�&-��RŚ彊���&�f��*�;�6��XQ`�*n�Aqid�:�Oi�9�p.1ы%�!���Nz4��f�r��jU�(A�*�Ր�Ӕ�)2�/�[�s�������bNu��Oі-��<�u��
ƨ�$ֲ^���-",ZC��
�t\�H�(ʅ�^���;i�QM���ey^�4��V�"xw�
�Z�R�ⵇ0Pz:�,��G�YT�j�8�O��UHg�@x
_��1���˂B5���Rj!�k�:K��Y(�؊�Yw~����),�)����+Q��h�"#N}�"��~��IS���P�����qW	�r*i+Ӽ�JR����phNj�սq��Suo���
��j��f��H��
��+�5!�V%��1O�.=\v�)�g���l�բ����kp��M�ծ�^5�D(:�Fo��G�I���P������M���T\O�X�ͥX=p#ѱH)�۷���&L>A#/։px�(�l^�F���4�i���J�!��cc�r��W�#g-ɨ�Wg4�
n2��/aTh�ݬ��D롕p�
`H@�cTS�&��s5v~���*٧z��	[zT'�~2`�X�SND�0������m�s[C~[�I������������O�+gx�`"q�z�.J�%�Z�h�2�L�l�±ZF�8t���#r�lK/�ɫx���mѴg�ı�%9��a�r�:������dwAh��{Kq���L�u��Ti��bWt!~P�xr](I����G{��
�
zҢ3��R���h������[�\Cz�����I�]�q�����!
t�zD��2Jt�<�� G�=:#N-�B{?����.Qy��[�U��<�d��V�|V��~��2��q��M��\p�Uu'�l�qד�&8+�\r�T�x�$�	��g�����(a�ƅ���$I���AQ,�F76�
��4܃�tS���L踱	���n�M���<y�eI=��_����8Iz���Ӵ[CS��Gl
��w��3�0^���g�h��0�<���W�
�����"j��N��. �N)y"Q����r�r�A�`
%�����C�h�O�xI�n�|���k������+�eTS?�6
ce_�i˶��^"�VxJj�mb�>Y�s�[>33���>��4I+pe,�I5�����~l����8��V��<E�����A�31=|�eB>�;
l~bz4G�����qX�S��g�D.=�?I{W���O�}*�g�;�-QLo�a*�2��̢��l�MȎK��7![)�Vބ�iI��M�~!�~q�_J�_ބ�$;q�g$�37!�|!���
K~�$�k@)�g�\�l�g���*`v�N�F�2�������<����NynWxf��3+�gV�,�3KṪO��By�
Ṋ�\��<)_a��~8�Uޙ'n޼y���n�P�X����R���a��� �9���L�L'!K_4��e��EZ?%+�X�җ�JͿ�a����S�zx�!���ϖ�2��Ԧp���h��E�9��o�xr b��	�l��`B����L�3$���Ƚ����̮`g��0��A��F�ӗi��Cm`y��BNڌ�LM�-E��s����V�zL��=�b�����+v��ի�3���r�9���9����7�q0���6r~�ث�d
c7��P�YE�YE�YE�YE��u��ě��4J+�:�������fC�mYy���e��F�����w��Y���(��5H��JTз�}�*�zU6�u*N�a�2z���_��9�A��@X}����=g��'�׫��-��-Y��'�D�<�"��Wo|�i3$�΃��bdB��%$_1����MoX�X�������n���v?ݜ�D2ӳo����ʕ+,!��q���R���^y�uG&��{�F�b6>n3&�ϑ:>�����7�Uq�39���썺�g�̍�ۋ��ȩ!ݧ?\�������ֿ���$�ă���C�_�u���}�>{�g��%Ϲ�K�	װ֑K��\�67�T�\�1V�����θ*��q��z0#��Pr�I��>��\�0�*R5M��g4
�ڶ�h��h2F�ص̘sY��̘v�9h��	��YT~2�Q?Er�R/��Zی���x�?�_��D>�<ݿ�#c�Y��d~ꋘ��zԚ�����5L�'��O��>�QWX53w)�~�2�sl{�{��^x�T^�W�i��d�����ۆ�]�i����=��?Ekb���0��Cӓ��C�,gf�Aŗ�H�l�1\�_�dS~Ԩ�{Mæ"A�������4��Q
����>�Q3��g ��;�‹�	w�@��|�?�.���4�l�{��/�u�)	�C��V.:U�j�l|�g�?_�ְ�G^k�?�����sQ��u���FwG������6@#��%s��E��m�5�d�m�~2�Ll�H$�M���|��v1�f"GFs�	u�?q/���$���#�"��^��p!�)l$p�+3�L�����(�	��|[���-E�f
�w
�e
�w-�e-�YK�-&�{����-눽�-�	�zb�Ė;��w[JM	����RJ�-%��[��^;��Nhʈ�eĖ2bo9���Д{+�-�^��Ah��JbK%����[El�"�V[�	M5�����$�:�-NBSC�!��{7[6��Elq{k���ĖZb����&4nb����!�z�-^B�%�z�-���-	����#����~b��� ��-BSG�#��{7[6�M���Ė����ĖzBSO�m �4{��[�-[��[�-[	�Vb�Vb�6b�6b�6B��ػ�ز�ػ�ز��� ��$��$�6��{ܟ�@]���l�@C�©M�40�� �E 3J�Di�H�Ң�Y4J�Ai��,��!�x$H@i	ȬJKDi�H��Ғ����QZ
XP������(m2��"3+XQZ2�����H��҆ �!(m(J��P�pd6��@i#��(�6��F�1(�dvJ���!�8�6�M@iQ�D$�@i���$�6�e"�L���̦ �T�6�MCi�Q�t$���f"��(�V�6	f�����6���Ҳ��
��Afs�`.J���棴�(m,Di��"���-F�%(m)2��ݎ�r��2����"AJ�Gf�(m9J+@������B��	V����l5J+Bik�����#A1J[��֣�;P�HP��J�Y)J���2$(Ci�Ȭ�9P��U��*dV��(͉̜(��m@Js!�Z��Fin$�4/2󢴍(͇�(͏�HP����&���mF�z�ր̶��-(m+lCiې�v����Df;5i���5�nK8b�K[�5["���%���{�%	��Z���˰YZ,�Ŷh�^h��,���͂M�2	�}YF v$.��d�؇,�;�a��d ���%	�_X�!;�ہ�V$��o�
�ٸ�e.`�,@�B\�ڲ�X�-X-ː+�%�XS-XH-�H�%Ӳ�kpVDK1`�܁�R\���R�X,b�\�*$�e�A,V#� �	��X6"և˰�X��U�R�����eb1�-��f�a͘�f#���fL^s`���� -f�ي�o��@ZL'�X1q̘-�L$��0�@3��ao����E.AZ�_s����FD�z1��gf`D�7 ��cƀ1��C�܀�6�ŝO2 �{��`2���I��f%�%e �{�4A�z�:)AtjR��D�%9D�$l@��#�~Q��A�t�Mՠ���AET�An
ڢB�&
�d�O� �_|�իP��"6_���h��S@�6�-&_�ċǾI,���0�8ڌ|Gل��H�0~��;r��c���c�/��������	��(�'6��oژ�}�x�XW�V7��_�Ha	�����^oz����r��'.�l״�:�*l�㣰��ϫ�N�ӞNX��f�%ێ7rJ�p���oy����7O�<�h�Ї��,�
���(��p�C:mL� �qG����G^+�1�=m���4�KU"g����s���/���V����V��>Q}|�O��;r�L
լ�8@��W$?N��7Ԗy\����J��NyOg�~�G�JVETQk��9����o���o�xZp�v�`6ExY0���MUtIQu�Wu�ݖ���%El��.{�.	O�Q�L���)bSo ��+��y
�)\�֝(��ga:c���?�c;
���΁l�ww^���6�f�g�Ykkk7��F+?��ɏ�l �J��~�p5�9�E�i(���j���3���ŋ<�c���"~��Cc-ewO�7 �3i��X՝�=��K!����������4�,ff�?�@����)��!��m,�;��ԉ/�p����Z|����>�6�܌1��6���|���l�ٞȞ�V��
���o�˫�uhmɜ�)Y��=��L��t�(�x���z��o�<r�L���יn0wx���az����PrȰ�ꚁ�g�o��ۅu�"gsA>o/�wiz�G_��m���Á����/�k�%{:k���zu���'T�|r�06���2Tl����(�>��7���O�蠂�8:H&��t�E��q:h��z:XG�8�h:�!�?��}:h��ct���tPH�� �Ld��J��y:x�v�A5��AX��+e��.�M6#���Y�6��l8�g��o�+y�����?y)�<�>�:��t�������'��7����W'�;j�N�g�C���9��~M�����{�f���ᬣ&z�7���O�6����Χ^e2zB��,|�Q]�y��K�)Ps�|?���5��T@g��?�Pt�+Vl�'�ś���S+2:���>��Y�����w߳���͢<�N-��S�7����XG䈭>�,9Tx�Y�{:�_�h~���.,h�j�DF�q���_]��^��@)'�`/r,���Lh?��Ndb�_}���Υu#f?ڏ��!Pj�ū-gG֌tn���F�Uj�߯�����[��
huv��҃��_ߵ��@�3��o,���™�w&4�:Ƨ՜��z��~��I�>��p�m�ۺ�;?T�̥FnH�Kaݓ�I��:��n�!�tw���L��϶��<��Uŷ2&�ҽ�=��'NZ1�Iv�Ы��'��ؑ�62�|�P��3.t|��{تG_S�ڱ�ANJ�'�*��Rx�k��"v����/��o[)(ձb�U�?8i��8�J8�Ğ�ŤN�K�r���.U���Y;�G����P��S��o�N7L3?z�<���x�{�C���;�
J�n���%�/��sUۤRCg�?�8��{�%�)J}u!���[�~ټ��T�����y�5��k�l�����YK��Xr��"E�����|��7g���ŕߧSϮ[�nM�Ko4J������L͕�+�Vg׭y��%�>viFE:hu����a���N����F���զ�~�'{���&��ĄO�zx�3��
<��S�S�+,�nX͔hq��{&5�����פZ�_K�<�`?U<�t���������{��jl�V���w�3)�D��sO�����ϵK��?���Y��_��l�h�v���/��N��S*(�1k��Tg��~V�SQ�(�@���K��<I�=�(�v�|G*%4�s��@��ۤRB(^��:*%�KY���R)�9�`�U�Qe�ﰃ���͑��Jl�����sL�%�vg|�T��pz]*�{ۼ���d!����A�g��?�)Q*ý���BY�{'i�QZ�t���	�3�Z�8��e�C$CN�4���yS4�%�r��ȫ�T�D>C]X�]+sP$�L�?�R|%��g��TJ��+.<�(�*í�tPJ伬�ڈ�
L�%�R)Q=DZ��U�A(}PDk��7�B����t;�UQY���2
�
���S�Z� Cke��G���ZR��B=�9W�AQj�h����� 4
�8�|�,��D����6l9�(^��[j%ڒ�&���Tj%z��Q�A+�&З\��G��
yפR�-A+Z��JJ)�6o�T�v�҃B!�R�+
�By�8%Aj�f����ۿT��r��l�{��*��Jߐ&x@j�M�~]�����Ԉ���׭]R)����@�=��NH���TRH
�=4g��|��O�(#�t��ς^=;��v����:�E�w�<%�.j���h)dvя�d�!}}�iG���w�����B�a_?�z#-O��>V��M��G�N����D�hr�!�<�BwO�����_OѾ�J����Fk��O�����o��CÂz(�p�����~L:��7�ԫGg7u���&�%��&��Y
�N��#	��M�F�|J_�.�¾>�;E)����,�"}��H���ӏ�Ja��:�4���#��&����d_'_*�}�1ʆJɾ��}�����+J��Ȑ�[��d��{����v1<P��~r��@l�V-�1m�0�i�'���P�lƤ����]�2I�M;>e�W�e�c[?����j[�ݘ���R�C��$=�	�eA�]R)��.�څ�t�ֿ��G�ֻieAm�c[��jXa���TP�tПf`	�4�v����J#�z��JC�����!!���h_�eF��qF~�=���
G�ЉפZ�Cy��'�����'m�G��ȶ��[*�m��6*�X�SK��Z6c�J�zܠ�k7g�IЍYvc��M=n���x^5r.��ɜ���4]�0v[)f�W�qz��]�zU7�L���5q�y{�]�lO�ȼ��q{
C�M�4��<�E�]9{�;ٚ�אuI���n�5ÐK˙x�x;�*��l
PK�%"]j�m��+�+#josdewplayer/dewplayer-playlist.swfnu&1i�CWS�qx�ŝ\�U���\���\tTD�!�
/��(�8Ch�����qfP�:���Q��ʤ�6]+[��LA]H��̶�l��R���w��;��}�33���~���;�{��9�9�<�y�yߗwmȯ����Pf(���o޼�Tm(�Ȑ
����?��_��4A'�]��]?�XgOY����e�߱-�E���))���;��S���|y�W#t�O�����T2��t����G>ݦ
����*>W�}�3n0 ,�&(e�"���e�
S�D�Z��X�A��}���]A�J�>jii��ؿDR�t,�Ċqm�H�����"3�a�J*l5���_녯%��Bc��r�vci��Xk��d�ӎP!��2s�ƁX���������yv�́%U�R'r�kL'j�#5�mBj�JP��:����2}��>2.x.)8^(�X�0��J�Uv8���Y������ JFQr2��DTfr���6��ja����d1-w.gr��TS���z�|s�����T*�Gv���ZK�k�„J��v��l#��."���RF;�nZ�����I��B��Az�vv�hm9�&��RnE�:���4ڝxX�L���I4C�iy��X���BVX-&�U�
*j~+M�J�`8���Pk4[��
�sj�������t��i�A%u��&;)�a2U��xPjl�FTVg7��s ���0�n��2�2��8UX��)��9XyT�kq�L�&��G�u�ӌm�\6�iv��K�����$�0�0a�(�MD�UZ4�����`�n']Tcv�J�֚�#+nQ����+�1ך�R�6�D���N6� ��A��=g*7[p3�MV�׎�"��\+�&��EL�R����,�p�u�Q�"&���k3s)�p�STg+3:Mh��Ҹ�L��C��j�^ks6̶.3��՘m(��x��*���FN�S$�(Td3RC]f��#lr�c��BK�F�ڄ� �f7�'��ىќ�Ѥ�'5�t����XS���l�܅8��h��5ة}��1�}�4ٗa�+�1�9♔��Dy�(�C��Tc#�_q�*qM5�6���9*Q���pN�4�Yn����FѾ ;%W�k�<�C']�g�Nr�YL����k��Bk�l=��3������)eS�B�Y��4"�bvĊ��0�
b�Ւo�=�0�Z`����ٹ��v;.Q�h,+
���tZkݍ��Tj�q��"6�tΐC��d��XQ������M�L����XA�Z���a7R{45�9flۂ#�Zf�4��d��M�G��Dh�ʒ�4YpC���g�[���XVg�1�4��c�����p���^"�x"��$L'��R`�����.�$ʙ���n�Y�~�J��c�;p��$��AF2%ib)s�dL���,hn.K��-��
����aLv��@M��X��.3�k�$FTa��(d-/'3�XSS"8r6��@<��&��C<.�&KH�kM�:4
�\�l"W��Zg���'�i–Yj���1�4��l���Z�-i�N�q��R�ϕC�b_�gT-+F��v��I�v6�ūp���'D9�K�8��@L�b�Y��F��ϫ����9�?)"'���n��W��d�H F�Mu�6uMԨi�0����<�;�AH�	�uN��"Ix`�:���b��#�P$+C��M��׉���2�"l�-F�~x�"$e�	��K�q�	D�*����YqW�D<��D
"��Y,w��v�j��"�6�� D�B8;C�U�o�\�%�^U�Wq}C$uYJ�9.>�1VZ���*� �'y���5����GO�S��Ra mR���G��z��X�1@�F��<
bpq���ድ�"�\8�@2�}d9${�gv\�t�'�Ş��N����(H�Mڳ1��b�v��1�yc�+�BV��K2i�Au�M&��T�B���6��d��Y!�@1C��
�+߀�-��[	���*;�ڕX�)h���t8�xu���v�})���LM�WǤѲ{K-�ɥ�#��c�X�$�J\�y���	yY�b5���E5Fxx��3���p���$W�p�����mt+rYc�<�,P��˺�
p�r��3POMib&��,��5`;��ㅊ��K�<�^�mID�άd��O��,
ۇ��0Hπ=�ep���'�SE#��g6 #�h<�0��C�q�me��IB��ú���f8���tM��Y$)����r��#W��B uE#�Jė�*�/�]q��Ko_�Grrw�y1�����mu�ΓBԤ�����ĺ�)���H�@3H�1:?�i0F�[�1�3z�#�`\ȷ����lV|�S����y��iB�qz�,��B��)?^�3�ꑴ/FŒΡ�kB�C&�kb��T<��R�Q�e��=�$���u�EC�d>�XX��<����TǴ,VD���t�t";�Ȓt���}����i�~9@���w�2~�Ghh����(dl�L!�Ho`���WIb�o�qq����p��Lҗv�b�`<O��f��u��9�S�(�D��:�3iLǩ3�7����B��9�|��)��w�Ԯ0�
��q^u�pZ�T�/�{���c�����=]���.�v�,a��6;�����4|��&�3`fw%�즤�ݕD��	So����bg�y9����R%ٱ�-�=�f�*�5��?/�#����I��RW��&W�7�K�I�-�:�<�b���	��/
����s�B�N��‘���=Q����W��F�	2��*��sE�')�#�4�I6� A����F#����˩�+T���(�g
v��@���HG������f�w�]"]	 
�P��.�
)��d���Ez���:b���U�G��#e%$�Pf,,��
I��Tq�>D�Z�w�4��Q����y�*h�Y�e����ʼ�e�!��`�`U��ݎb,5���R!Y�2��{�;��N���D��С<-����B])lz�f�Bj��à�F�*�T�D����j�����w��|o�ѝ�`>!I�%�UmZ���87�x�D�}gj!rRK���+�Dșθ��M�3K!?e4tMy���8�kJ��tƚ��\�[�j�x�q����gu�Il���%�=2HVCý����,��k�u$"i̒b%��*�hܬ��-t��v��N�:Xs/K���bW�"�=��l9F��j,��l �J-�9�;27A�ڄ��n�B�V�BV3|2�j'(n�<W��
�0$,9�3	҄�[7�]��t�ʽ���%�+r�N����`�!�5?�^)�FÅ��b���=����x�&<�cM@g�RΖ�������ެ�Z�h��V�$7X�Zd�
���[��u�HI�zah5t/"-���h��n���-����n��҄ŭ
ݰ���Ռj�n�Sø��ҩ��eN�_��p�~��Bo�r^:�����rR�����ƴݫ�9���T�pOi�~���kR�e�q����M��T�����4R�e�څ�W��u$#">@�^b�������>�z��AN���u7^�дIݤ��Mچn���&mc7i����bk���R�ʇ����WG�Շ]R�K
��[��Fޛ#�(�����XF��C�U�[���r��c.?�\k�rM�1כ�ϵ�-�=��喫�-צsU���-��s�r˵5&��s��&6���_�܌��86VMl�1����#��D����m��<wa8o�[�-⾇�����l���2O`��Ճ�ǂ���|���-H6�����A��`���I��$z����"�^�^XvN�{�#C���IHĻY9����w��G�n�0�;�nϼ�&-Wx�6i\���{5m�Xv�s��XVq��{�H?�T�̀�`�u����9r�>NgaF�~���@�ԟY��hD3��P�w�b��+��Ò>=Ի�a�3��
C���N6H�t�g*;vZJ�-�g�麢UZ���G�Y��[i�׀;n��c�6rҢD��T���
�Wz��1?L����0$D���]}]-��-'܍���(�o�;�3`Y�6�O�{�bl�O4�*��]��+�&?�Y��ޕ�՝R�Vw��Sx�2��-9�*�
9{o����o�*�pB�����Ȗ��E{��"�4���%3Pzқh�M�ؑy��{����D�Lm���~�y���\����aE�
���<�>�s�y�?��J��qHw�Q��r6�
���s�:��I�9�,�	���B��_>[�NX|h�1ԣ7���|*�Y�͂����6�����<�>�F��=w�XE@���B��e��+J��C|�$�;Yi�8.�����L�u��@!�,�E�eI�7>��" \��CP�V�QdI����
��]c/�����B2�4��U�V)0����P�V��n�+�{|+uơ4_X�$��R�I�(��r���%���"��d'�ѠM_��b��	B�vv\���-x©�z���KԚ^�S�m�D��;7�ԇկЙy�ݿa���6u�Ύ��ӳ�ƿ�2:�S�?�y���,���I�x
%��f$W�|ɻ��z���(gX�m����m��{�4�N�{�aO�;ð3��^g���2��m�s,hE��*�N�đ#�/_�d�_L*��,_$:���j�
������l�T��VqQ}8�>�{+K
K�Q�z�L��oSW1�i���p*��Mfo��{x=$]�,�lQ-�@��SH��[`��u���".����DG���z#��S|�"�A���bvO�%p�)(>�
 �@m�S��л���6R�׭@���^�[>�=�������
�TK���nSûM��R���g�[��77�^I{F���<l/D���?�����%�x@��P���B�<j���5�f�D�^�Cw`7ű;�s���ہ�=
NO��j�@.�Y��=fl?�~�h$8s�`���yW~��x���A�5!������p�Q+��S-��<�,������mw��*aޏ9<q��u��{��{��+�$�mm?)lBvI�����G�����F.7�جo���+��K�J�1Y	c�}��0tg��c:ʟ���>U_���}-M?�z^g��)��W�y�~�uɛ��T�?�߬	Ӿ<�b���mL�ǫ��-w��A]��D�җ��#�b�w����O1u��T���� ��0����I3�Y(��K���kz�Ь�x.+�O����9F��k����oH9�QJ'u�J�>B�ҟl�[�g}�p�i��Ԩ������
��L�	�i��닁ځ�MK�?܄���bS-��/���6���~ȴx��Y�
Zuz8.x�{�}�o���?ۅ?��cg���*���#]�K�Y�̉D�.���	��4a��W]���F�M��sq��[F��&���`�-iƬ�-�Jٜ�C[5��^�A�>��=6r���sS�򽃭������1���_+�<��xל�Z"�o���F�N���gS{}��㸰b��8-,��A�#Ca��Ή_�D1rw�$�
"�J��F��VI|į�����םG��K�䝜����r� �����B���ϯ��h����>�p�օ�S?|0-����>[��mэsn���ba�5�X��{<%�ܷ�]�6U �M�a��Y��^R�6�f(����
�ME�(:���Yp@&��潡*�/6���k^	jS��B��^$�&d�ǔy_��ک>��B��$s��9��c
9f���9f�,����c�p��Y�1ES�1ES�1�S���c�c��)��)�R�)�2�)�q2ǘ8��1&�)�r�)�
���
���J������9��1US�1US�1�S�15S�15�A��Z����X8��1V��r��clcsq2�,嘥��c�c�;�88�1�q&s2�89��c�8��c�q�2�Y�1�9f9�,�z���.�8��c8fǬ���cVr�J�Y�1��8�cVs�j�Y�1k8f
Ǭᘵ��c�Rf�cP�ReZ�%Q�D
����
_|P��_�$�@�@0!�� T"a���D@$QD
@1�n��>� �8��@?���?� �x�@�H �!`(�~�0�$��H�H`)����`c�8�0�TR��D&0	��`�H �t2��`
S�
�4��L2��f�@6��0��`��� ����` �<� �|�0�w.w0�y��������.`�X��(�#%��y�P�	�TP@%f�TP
@55`���`�
�KX
��_'u����,��X�J0ϕ�`5�X�Z�J@j׈�\'�
�$*P���D �B�D����>���~�`@��PP}#H`$�H`4c�x&�f�@�d0��L`:3� ��������0�;�@X�-`1K(�@	e�(�3hV@
�X��;N�X@=
�`���5�\:QT I�T5�A��^D�
@H������b"� 5	�dF�8�TH�b::H���!u�z� u��Xb!K �b)�j��.��2X	�k$��\�d��1�0�@�q�� �1�T�@�
b6��A���� ��X	b-��A\M�{��R��F�zKR�$%K�DI�!Iy��H��%�&I�D)$P#JZIJ��\I*��zQ
�։�N�l�0
��n"���o� ����6��?D�J�n��ޏ�ʅO��q85ِ_�W�H����[�	Buq�/]:��&�ni�!����@�~ѧc�}�U���-�91}��S�ϝ�@(�SY��?���]Es/Ӆ����ܽ�olF�T��4���J��dy-.�B[‘o��A�6U0IU�2�ʅ���xr�B��L��]2��M�F���|M�g������EE�O�q��7�AW��c�'Z]�_.����Z׆��R�Q�p��w�O
�q��n�6(��MO�6F>��ه�6�վ0���/��Ԥ=1��ZH4������GқoKR������;���%~4��
{��Z���w�c��#�]I�bN��E?�&��W���~���+!Y�+��T�C��mDf:a�R.92<�%}>�M�ӓ��E��ҳo���N�!�8T����c=jUUW�._�^�z�>g�)랇��Y��eK���pn��d�&�����l��S����Xz秦�SW��_�z�����^�1e���ꠕE���������C�������N�n���#��+��?�
��j��׍��d}���9��u�m��У���
�~�����3e��7�/ɯn��zD7�J˸g�[�殗O��_��.4�b������<s���
&���9��|��v�'�5�D=8���!h���$�|?qd��)��wS�OW��e�vf�n2g���;;���
{�
!k1�V����9&F��MZ볼����jSG`b }�?�~�ݖ�3����X_N���C�^��B���v5�_��'�G�gn��.�6���(<f�����p�W6���Z�z�7���Ox��'��P6�2���<f�<�K���j����z��}�p�rl���¾4�k�}�ߣ��2���$��/�>��<`���ϯ��܅KA�A����%L�6���/>���h���ulk��C�'\]��;�z�,��~��F�J���|���N�� ��C'};�
���&�l�\4_�)(ѦJ�����/,U\|����nޖy�e�����_T�z���&K��wukN�����3n}c_{�W�����O"��wӇ~�7#�p��mCVD^�c=)'��,!'bojIo�f�K���]��@[R�˔�m��d�l�V�PI�$E���>���Ϙ��3��}�Zv��:l�a��xg1_�|[����ۆ&����`�㳵���z?>&��/3��.>	�E|�S�v�H���T8r������ެ��b5����jF��$����&��	b�3�q�Xy���S��gu�~s�)b-�ĺK�q4��m*?+F�oA���*�����T!�o21]GCm����T>
t�v����
�=4gJ�d9^d�+��*�va��H����l^�F�5���qbj"���|S���qdV��R#���'���T���bKc'��J�5Y)M�#�D��i����A}'?�n�}~�mwb�Y�ݞ�q����7�.��2I,n"�K��^��S/MB���s/Q�7W�Me��/'�����}9�{��"�3������—�o���g�t�Ӌ)����q��f�h9����z�/^���LF�z��aQ%[S�b�����{�t�ZI�$�7��V>͚GdB��hW��64_����������k��Gf�;d�%��읟f<�Pb�կ�<z2*�m�V�K�TƄ��]�e��M߸����-,��%rL�xݬ.ƅO#����hy�̙�]�Y���q��Mţ:�\)�Jz-�oI�iB����c��!�u��1N������EVgr�+��{������g�����td}��_\Ϣ��d�&߫��������‹�8*� _ǟN��k�5��d����څt�i�d�{��Fx���~�gڿҷ�z��3���cz��=凴s6O��Şiߥ�<ӾM�y�}3�\�g�ד�j=�1٠qO�19yR_M:{�3��I�^}��$�W�}>)ث�>�x֫�Oll�N�%��"n�1�h�I�}����GX�,�Ch$�oq:�o;�}@L���s�|:����Σ��S��W֟"h��$-��3-d�9uT��f(�[��^�īO|�qGI!�1��Tb�Ν?���wU+�${W�K��,���h�<�P�:�s�
T�CM�M��폶��e�{ξ�S�s��Rg�_���3'�7gy4��\nQp��{����|���o�JKǡ�.um���D��7>�m:����7V4aH�:m4���+-�tc��tO��5
>��Cj����wά4���v�F��x�J��s��7]L�h�77���Rd���ZO0��PT���"���X���"j���[}�Ƶ�j�1"��ػ-�wu"�֧j�����U�}�P��ػ&TG6�n�eT9�z?+KQD�O�b�ބD��=ߖй��y�
q�dz�^�9��'#G͙�m%zu�߿w_ǚܶ��&�֡O��u�:��y���Z3[w�c�ܽ��~,'=���5]~!�ƹ��*�Ju̹s޼�u�t�
GW�NP�b��);�.^�%�t�����#vnt�K���h㖸�ǎ��}�Y�p��c@��i[��RG7_�����j*uL�,w�t���A���)[�,]q廦
{�R{�����)��O�uT�#KW���H��yDY (u|g����7�N{šXO��R#�6���T>�bZ���UԱ��>�'�ju|т��spϻʴT�cUWv��?����O�w��P�ڱ�>��$�bj}0Rs��;��������F�0�p��a>���>��r}�kh���U�V��S��'���E��R����Ko��V��ju��$�c��S�c���>�h�6(㞝O��δ�>b����,И]��;~+���>-����JuL�d|����q�sˊ�hYT���R�R�>���產e�5�<S�hN+���MA�:��'tL)RU��E:P��.r�'�RDs��X[���NG��RA:8�G� C!� ����Eƙ�Έ�5:��u�T-:6t�W�� ����e#HǙZ�y���)H���{iq;5wj��/�&�;��B�i�ZdNPS6��E'��4f�Ԓ霨j<�N�M��f�tN�ɵ��WD��|�~a��Z6ɤgS���B_���Y�ʔ"΃L�9��R��P�0ɬ�J�9ϼ�']���):]�Δ"ރx�y+����:Ѫ�w\t���N�rm<�&yQ�N07J]-u��W_�"���a���E�#��㛣��R��o�0���R�]sY��4PЈ����Z4��P�X!��#�0�HXb����V$vѐ3�w;ՊF��_I��Cb�O��*S��%�
fZ�~@&FZ�F�a��� �2m �ީ��G�a��c5Li0�][�&���?,��}Â�&�
DY�pA� ����]�7,��ӈ��h�pq=��)q}��vސX}��C7]c��C�|���"��_d��E�G�S�<#����B?�X�g9[%�QTG�r���t�A�h2\\��ش��S��D+��6:� ��y�Ż'D/t� ��V�D�{�hx�6�=1G�=X�	�ٿО�㺆*���:ޗ��w��\�9��WU��P�|��>���c.��8��^�]�ٓ��'�.��Ps1�v.��ְ�'�Ye.�|B\���������׏^�R����v�K���O�2� ��y�
����gJA��ƭX\?�ǔ����ׁR,��x�)q}狂R\5%3W!��n��6@>�v!XP��~(�
 v+�d��AL/.�wC#X0�b�]`�be3���n��'��2#�v�G��o��]�,sa�����l
r1�)nA��]L))��^��t��eK>�wm�܂�Y4��~ꏢYA�s4U���O&��#����A��-
��A�ؖ���_��E�W\W�q����h�I�t������БW�ZC��Z�����l�ɇ�V�8,�?faJAX���K��Ҟ�)��Y0�C��cM���sf���Y4���c����{G	�x�l���o��
��� K=<PK�%"]�V�&josdewplayer/language/ru-RU/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK�%"]��׆$$>josdewplayer/language/ru-RU/ru-RU.plg_content_josdewplayer.ininu&1i�; $Id: ru-RU.plg_content_josdewplayer.ini
; Joomla! Project
; Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved.
; License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

PLG_CONTENT_JOSDEWPLAYER="Контент - JosDewPlayer"
PLG_CONTENT_JOSDEWPLAYER_AUTOPLAY_DESC="Автоматическое воспроизведение при загрузке материала. Рекомендуется устанавливать 'No' и определить его в материале, если несколько плееров на одной странице."
PLG_CONTENT_JOSDEWPLAYER_AUTOPLAY_LABEL="Автовоспроизведение"
PLG_CONTENT_JOSDEWPLAYER_AUTOREPLAY_DESC="Эта настройка будет повторно воспроизводить mp3 файл, когда используется один плеер."
PLG_CONTENT_JOSDEWPLAYER_AUTOREPLAY_LABEL="Повторое воспроизведение"
PLG_CONTENT_JOSDEWPLAYER_MULTIRECT_DESC="При воспроизведении нескольких mp3 файлов, рекомендуется использовать прямоугольный мультиплеер"
PLG_CONTENT_JOSDEWPLAYER_MULTIRECT_LABEL="Прямоугольный мультиплеер"
PLG_CONTENT_JOSDEWPLAYER_XML_DESCRIPTION="<span style="_QQ_"font-weight: normal; color: #000;"_QQ_"><strong>Native MP3 player for Joomla 1.7.x</strong></p><p>Общие параметры могут быть переопределены в материале.</p><p>Для вызова плеера достаточно написать <br /> {play}путь-до-файла-из-корневого-каталога-joomla/mymusic.mp3{/play} <br />Например, если mymusic.mp3 находится в папке images/stories/ получается такой <br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Синтаксис:</span></strong><br /><strong>{play}images/stories/mymusic.mp3{/play}</strong></p><p>Чтобы локально переопределить параметры, добавьте "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">|</span>"_QQ_" между каждым параметром:</p><ul><li>[AUTOPLAY]</li><li>[AUTOREPLAY]</li></ul><p><strong><span style="_QQ_"color: #ff0000;"_QQ_">Например, синтаксис при использовании 2х параметров:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOREPLAY]{/play}</strong></p><p>Josdewplayer может проигрывать mp3 файл, расположенный в Интернет. Просто убедитесь, что вы указываете полный путь до этого файла (включающий "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">http</span>"_QQ_"), даже если он на том же сервере, что и ваш Joomla сайт.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Синтаксис:</span></strong><br /><strong> {play}http://anysite.com/anyfolder/mymusic.mp3{/play}</strong></p><p>Josdewplayer может проигрывать различное количество mp3 файлов. Набор последовательности таких файлов следует указать один за другим. Mp3 могут быть расположены локально или удаленно, используя те же параметры, что и при воспроизведении одного файла. Используется 'Звёздочку' в качестве разделителя: <span style="_QQ_"color: #ff0000;"_QQ_">*</span><br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Синтаксис:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>http://anysite.com/anyfolder/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>images/stories/anothermusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]{/play}</strong></p><p>Новое в версии 2.0: Josdewplayer может проигрывать плей-листы. Загрузите xml файл (пример файла находится в папке с плагином) и используйте его в тэгах.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Синтаксис:</span></strong><br /><strong>{play}images/stories/myplaylist.xml{/play}</strong></span>"PK�%"]����--Bjosdewplayer/language/ru-RU/ru-RU.plg_content_josdewplayer.sys.ininu&1i�; $Id: ru-RU.plg_content_josdewplayer.sys.ini
; Joomla! Project
; Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved.
; License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

PLG_CONTENT_JOSDEWPLAYER="Контент - JosDewPlayer"
PLG_CONTENT_JOSDEWPLAYER_XML_DESCRIPTION="<span style="_QQ_"font-weight: normal; color: #000;"_QQ_"><strong>Native MP3 player for Joomla 1.7.x</strong></p><p>Общие параметры могут быть переопределены в материале.</p><p>Для вызова плеера достаточно написать <br /> {play}путь-до-файла-из-корневого-каталога-joomla/mymusic.mp3{/play} <br />Например, если mymusic.mp3 находится в папке images/stories/ получается такой <br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Синтаксис:</span></strong><br /><strong>{play}images/stories/mymusic.mp3{/play}</strong></p><p>Чтобы локально переопределить параметры, добавьте "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">|</span>"_QQ_" между каждым параметром:</p><ul><li>[AUTOPLAY]</li><li>[AUTOREPLAY]</li></ul><p><strong><span style="_QQ_"color: #ff0000;"_QQ_">Например, синтаксис при использовании 2х параметров:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOREPLAY]{/play}</strong></p><p>Josdewplayer может проигрывать mp3 файл, расположенный в Интернет. Просто убедитесь, что вы указываете полный путь до этого файла (включающий "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">http</span>"_QQ_"), даже если он на том же сервере, что и ваш Joomla сайт.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Синтаксис:</span></strong><br /><strong> {play}http://anysite.com/anyfolder/mymusic.mp3{/play}</strong></p><p>Josdewplayer может проигрывать различное количество mp3 файлов. Набор последовательности таких файлов следует указать один за другим. Mp3 могут быть расположены локально или удаленно, используя те же параметры, что и при воспроизведении одного файла. Используется 'Звёздочку' в качестве разделителя: <span style="_QQ_"color: #ff0000;"_QQ_">*</span><br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Синтаксис:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>http://anysite.com/anyfolder/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>images/stories/anothermusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]{/play}</strong></p><p>Новое в версии 2.0: Josdewplayer может проигрывать плей-листы. Загрузите xml файл (пример файла находится в папке с плагином) и используйте его в тэгах.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Синтаксис:</span></strong><br /><strong>{play}images/stories/myplaylist.xml{/play}</strong></span>"PK�%"]�V�&josdewplayer/language/en-GB/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK�%"]Jc+
+
Bjosdewplayer/language/en-GB/en-GB.plg_content_josdewplayer.sys.ininu&1i�; $Id: en-GB.plg_content_josdewplayer.sys.ini
; Joomla! Project
; Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved.
; License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

PLG_CONTENT_JOSDEWPLAYER="Content - JosDewPlayer"
PLG_CONTENT_JOSDEWPLAYER_XML_DESCRIPTION="<span style="_QQ_"font-weight: normal; color: #000;"_QQ_"><strong>Native MP3 player for Joomla 1.7.x</strong></p><p>The general parameters can be overriden in the article.</p><p>Simple usage is {play}path-to-file-based-on-joomla-root/mymusic.mp3{/play} <br />If mymusic.mp3 is in images/stories/ it gives: <br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntax:</span></strong><br /><strong>{play}images/stories/mymusic.mp3{/play}</strong></p><p>To override parameters locally, add a "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">|</span>"_QQ_" between each parameters:</p><ul><li>[AUTOPLAY]</li><li>[AUTOREPLAY]</li></ul><p><strong><span style="_QQ_"color: #ff0000;"_QQ_">Syntax using the 2 parameter:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOREPLAY]{/play}</strong></p><p>Josdewplayer may play a mp3 file wherever it is on the Net. Just make sure in that case to use the full url of the source (it has to contain "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">http</span>"_QQ_"), even if it is on the same server as your Joomla site.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntax:</span></strong><br /><strong> {play}http://anysite.com/anyfolder/mymusic.mp3{/play}</strong></p><p>Josdewplayer may play multiple mp3. A set of arrows lets pass from one to the other. mp3 can be local or remote, using the same parameters as the single player. Use the Star as separator: <span style="_QQ_"color: #ff0000;"_QQ_">*</span><br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntax:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>http://anysite.com/anyfolder/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>images/stories/anothermusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]{/play}</strong></p><p>New in version 2.0: Josdewplayer may play playlists. Upload an xml file (a sample one is included in the plugin folder) and use it in the tags.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntax:</span></strong><br /><strong>{play}images/stories/myplaylist.xml{/play}</strong></span>"PK�%"]琭SS>josdewplayer/language/en-GB/en-GB.plg_content_josdewplayer.ininu&1i�; $Id: en-GB.plg_content_josdewplayer.ini
; Joomla! Project
; Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved.
; License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

PLG_CONTENT_JOSDEWPLAYER="Content - JosDewPlayer"
PLG_CONTENT_JOSDEWPLAYER_AUTOPLAY_DESC="Autoplay on article load. It is advised to set it to 'No' and define it in the article if multiple players are on the same page."
PLG_CONTENT_JOSDEWPLAYER_AUTOPLAY_LABEL="Autostart"
PLG_CONTENT_JOSDEWPLAYER_AUTOREPLAY_DESC="This setting will autoreplay the mp3 when using the single player."
PLG_CONTENT_JOSDEWPLAYER_AUTOREPLAY_LABEL="Autoreplay"
PLG_CONTENT_JOSDEWPLAYER_MULTIRECT_DESC="When multiplayer is implemented, use the rectangular player"
PLG_CONTENT_JOSDEWPLAYER_MULTIRECT_LABEL="Rectangular multiplayer"
PLG_CONTENT_JOSDEWPLAYER_XML_DESCRIPTION="<span style="_QQ_"font-weight: normal; color: #000;"_QQ_"><strong>Native MP3 player for Joomla 1.7.x</strong></p><p>The general parameters can be overriden in the article.</p><p>Simple usage is {play}path-to-file-based-on-joomla-root/mymusic.mp3{/play} <br />If mymusic.mp3 is in images/stories/ it gives: <br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntax:</span></strong><br /><strong>{play}images/stories/mymusic.mp3{/play}</strong></p><p>To override parameters locally, add a "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">|</span>"_QQ_" between each parameters:</p><ul><li>[AUTOPLAY]</li><li>[AUTOREPLAY]</li></ul><p><strong><span style="_QQ_"color: #ff0000;"_QQ_">Syntax using the 2 parameter:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOREPLAY]{/play}</strong></p><p>Josdewplayer may play a mp3 file wherever it is on the Net. Just make sure in that case to use the full url of the source (it has to contain "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">http</span>"_QQ_"), even if it is on the same server as your Joomla site.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntax:</span></strong><br /><strong> {play}http://anysite.com/anyfolder/mymusic.mp3{/play}</strong></p><p>Josdewplayer may play multiple mp3. A set of arrows lets pass from one to the other. mp3 can be local or remote, using the same parameters as the single player. Use the Star as separator: <span style="_QQ_"color: #ff0000;"_QQ_">*</span><br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntax:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>http://anysite.com/anyfolder/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>images/stories/anothermusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]{/play}</strong></p><p>New in version 2.0: Josdewplayer may play playlists. Upload an xml file (a sample one is included in the plugin folder) and use it in the tags.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntax:</span></strong><br /><strong>{play}images/stories/myplaylist.xml{/play}</strong></span>"PK�%"]�o�^
^
>josdewplayer/language/fr-FR/fr-FR.plg_content_josdewplayer.ininu&1i�; $Id: fr-FR.plg_content_josdewplayer.ini
; Joomla! Project
; Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved.
; License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

PLG_CONTENT_JOSDEWPLAYER="Content - JosDewPlayer"
PLG_CONTENT_JOSDEWPLAYER_AUTOPLAY_DESC="Jouer automatiquement au chargement de l'article. Il est conseillé de choisir 'Non' s'il ya plusieurs players dans la même page et dans ce cas de définir ce paramètre dans l'aricle."
PLG_CONTENT_JOSDEWPLAYER_AUTOPLAY_LABEL="Jouer automatiquement"
PLG_CONTENT_JOSDEWPLAYER_AUTOREPLAY_DESC="Jouera le mp3 en boucle dans le cas d'utilisation du player simple."
PLG_CONTENT_JOSDEWPLAYER_AUTOREPLAY_LABEL="Jouer en boucle"
PLG_CONTENT_JOSDEWPLAYER_MULTIRECT_DESC="Afficher ou non le multiplayer rectangulaire dans le cas d'utilisation du multiplay."
PLG_CONTENT_JOSDEWPLAYER_MULTIRECT_LABEL="Multiplayer rectangulaire"
PLG_CONTENT_JOSDEWPLAYER_XML_DESCRIPTION="<span style="_QQ_"font-weight: normal; color: #000;"_QQ_"><strong>Lecteur audio mp3 pour Joomla 1.7.x natif</strong></p><p>Les paramètres généraux peuvent être définis dans l'article.</p><p>Usage de base: {play}path-to-file-based-on-joomla-root/mymusic.mp3{/play} <br />Si mymusic.mp3 est dans images/stories/ cela donne : <br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntaxe :</span></strong><br /><strong>{play}images/stories/mymusic.mp3{/play}</strong></p><p>Pour définir les paramètres dans l'article, ajouter un "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">|</span>"_QQ_" entre chaque paramètre :</p><ul><li>[AUTOPLAY]</li><li>[AUTOREPLAY]</li></ul><p><strong><span style="_QQ_"color: #ff0000;"_QQ_">Syntaxe utilisant les 2 paramètres :</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOREPLAY]{/play}</strong></p><p>JosDewplayer peut lire un fichier mp3 où qu'il soit sur le net. S'assurer dans ce cas d'utiliser l'url complète du fichier avec "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">http</span>"_QQ_"), même s'il est sur le même serveur que Joomla.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntaxe:</span></strong><br /><strong> {play}http://anysite.com/anyfolder/mymusic.mp3{/play}</strong></p><p>Josdewplayer peut jouer plusieurs mp3. Des flèches permettent de passer de l'un à l'autre. les fichiers mp3 peuvent être locaux ou sur un autre serveur, utilisant les mêmes paramètres que pour le player simple. Utiliser l'étoile comme séparateur : <span style="_QQ_"color: #ff0000;"_QQ_">*</span><br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntaxe:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>http://anysite.com/anyfolder/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>images/stories/anothermusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]{/play}</strong></p><p>Nouveau dans la version 2.0: Josdewplayer peut jouer des playlists. Télécharger un fichier xml (un exemple est inclus dans le dossier du plugin) et utiliser cavec la mˆme syntaxe qu'un player simple.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntaxe :</span></strong><br /><strong>{play}images/stories/myplaylist.xml{/play}</strong></span>"PK�%"]m��
�
Bjosdewplayer/language/fr-FR/fr-FR.plg_content_josdewplayer.sys.ininu&1i�; $Id: fr-FR.plg_content_josdewplayer.ini
; Joomla! Project
; Copyright (C) 2005 - 2011 Open Source Matters. All rights reserved.
; License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
; Note : All ini files need to be saved as UTF-8 - No BOM

PLG_CONTENT_JOSDEWPLAYER="Content - JosDewPlayer"
PLG_CONTENT_JOSDEWPLAYER_XML_DESCRIPTION="<span style="_QQ_"font-weight: normal; color: #000;"_QQ_"><strong>Lecteur audio mp3 pour Joomla 1.7.x natif</strong></p><p>Les paramètres généraux peuvent être définis dans l'article.</p><p>Usage de base: {play}path-to-file-based-on-joomla-root/mymusic.mp3{/play} <br />Si mymusic.mp3 est dans images/stories/ cela donne : <br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntaxe :</span></strong><br /><strong>{play}images/stories/mymusic.mp3{/play}</strong></p><p>Pour définir les paramètres dans l'article, ajouter un "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">|</span>"_QQ_" entre chaque paramètre :</p><ul><li>[AUTOPLAY]</li><li>[AUTOREPLAY]</li></ul><p><strong><span style="_QQ_"color: #ff0000;"_QQ_">Syntaxe utilisant les 2 paramètres :</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOREPLAY]{/play}</strong></p><p>JosDewplayer peut lire un fichier mp3 où qu'il soit sur le net. S'assurer dans ce cas d'utiliser l'url complète du fichier avec "_QQ_"<span style="_QQ_"color: #ff0000;"_QQ_">http</span>"_QQ_"), même s'il est sur le même serveur que Joomla.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntaxe:</span></strong><br /><strong> {play}http://anysite.com/anyfolder/mymusic.mp3{/play}</strong></p><p>Josdewplayer peut jouer plusieurs mp3. Des flèches permettent de passer de l'un à l'autre. les fichiers mp3 peuvent être locaux ou sur un autre serveur, utilisant les mêmes paramètres que pour le player simple. Utiliser l'étoile comme séparateur : <span style="_QQ_"color: #ff0000;"_QQ_">*</span><br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntaxe:</span></strong><br /><strong> {play}images/stories/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>http://anysite.com/anyfolder/mymusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">*</span>images/stories/anothermusic.mp3<span style="_QQ_"color: #ff0000;"_QQ_">|</span>[AUTOPLAY]{/play}</strong></p><p>Nouveau dans la version 2.0: Josdewplayer peut jouer des playlists. Télécharger un fichier xml (un exemple est inclus dans le dossier du plugin) et utiliser cavec la mˆme syntaxe qu'un player simple.<br /><strong><span style="_QQ_"color: #ff0000;"_QQ_">->Syntaxe :</span></strong><br /><strong>{play}images/stories/myplaylist.xml{/play}</strong></span>"PK�%"]�V�&josdewplayer/language/fr-FR/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK�%"]�V�josdewplayer/index.htmlnu&1i�<!DOCTYPE html><title></title>
PK�%"]�ߟ$�$ josdewplayer/dewplayer-multi.swfnu&1i�CWS�_x�Ŝ	|TE�諗t:�BV�@C 0!;	4{�!��,	�t�N�I����amP	J4��a�q\�4��o�ppy���,�3��N�{Ouw"�9��=�7����SU�Ω�����T�%q*27��s�׮]#���%�bG*ђ*��i3��
suu���t���K����6��C:�DOD���^m*���SUܡ%zM�����,e��*67�-�c5�&�=�X��Ҋ�սFj�.�gN��VC�K���B<V��B��V{�h٬n�t�ef[��X���pp�q����%ir�Y.���W�&�&s��Y�nR�=�js�����^����:윖1~��e�g����u܊j�:�����%�������R��ꦅ,t�6Z�:O�b�����NJEE�y.m�m�@��$�L#YY��H��]�:�T�=<\�����r��B��C-^n��
R}�z�*6��^�hbM��f��M�"3����h�׀w�,��7��Ƥ�a\T�k����q�=f��?��:�L`�e��a�!V7�d���a����iIE��]o���{���Bn��
�rQg��n�X�E�>^.ux�6R�\[kq���K#�
��Yo&5�.�P7q;n+�"�(���iI���e�YB�'����B[�@��{��Y�5���J5�֝_fH|b4��f#�uMfw�<�0�T�٤�
z�M'��EVPs*l�&���
��^g7s��Kt�,�V;5ۘa$f��Ix>��o��h�cn�fƿ*��5f��̶ԛ�Y�
Y�+�2���iY�Xg�̱Y�d.#�<,e���9�ѳ�T��M*�f�u[3 �g�v�u�?�����";��͢E��FXm|깳�n�ծ�B9rt�����=��AW���ZG���PW�|��E��5t���[lN�|+���d��g���lh�)@�xQ�.�B'�:;��z��

�od�.7۩㘝�5�s�f^���M]�Ll���+3m�N�q�"3i�\@��Lm�nlq�i7�I��\Mˮ3[mf����q��sM���V%�L>�L`�K��0Y���Ss�\�|��bo&s��Q1��Zc��l�с-�Xh�v45��c��\����Z��ln3x �d�V��$:�M�)����El��8LM���H[�L���()�ѕ^m��"�.��u��>������<�=�����M�ЀyS����m���.-͉��؇�ĩ��Q�ғ��*�Kd:~�M���V]˸?j�--K�4�R%ե�=M�z-����$��N?�:�@�^�!P�E�E�j}(��0��Aޏ.�]d?��~t��b|uaD�h$sa��`����:�b���-
��H���-���A����h'Ak�<>%�j2ӧT�O��K���R��
���X*ާTԀ��)��S*f�Ru>�t>��,��S*Q�,(�)~���V�#��R�4��U�Fzo��
":#�t潴�d�{�O���gt���#�$���R����}Y&��>�Я!�j?w�l"i�� �|�A�r?]Vr!�աt��[J�k��=�߼�a���H��ËyKE��8��n3t�`_�؝L"��*��ƈ�D��T��T���j����'oX�D3��j�z#��`����Vں>MR�dC�f�"���!�CG����Ƃ�kU2�@&E�r�x�t$T̨
�5���1�h��#�:x�Z�%��
��(��
�*����jP���h�^Y]m�hNT<�����+ZM	�S������3�F!�f+��[/@��a,�`j�V1+Eu|҃T�}���s��bV�Z�l�rV�ln��20���S��5��8Q7��ݟ`(�%{ mM%��l‚�J?}l8��ż�a��r�0�2e1[}1��}j(�vX�
�����aMP�V�Tie�B�|�x(���6����n�ҳ�"�YK?g�f�JS�eM�eMR�~��,���h��O�
�
+�[���7�gv�xg��*�����4���g~q��)��!�陔K�R�l~C��_Ҩ㳳��J����E��(���(,�V.��7.C�%�/*�C1�>J"�n�"�,��V#��L�ХY�o�P�.�DC1&�Z�ǫ4�䛊�JE�&�C(Z�S#������ՕB{���������Z���2K�m������e��~ �us`L�P@��e����L��~c�1R*�����V��N*BѮ(�=���"_*������2X�5S�_c��bת|)��f��!�Z:�	J���*����\���l"�(!������uυk�Ɗ���bH���j~i^��:J�z��NNb7��-s��ar�������J
�%�Q��=_,�,������娟��R�X$�(�B�l,]�c�H�R�����A�Kr+�p<��X�����Rm��f��o�rP�r��AYL|E2�+�A�:%��H�41[��.���C|h�~#�;+�MZ�R����?X�>;0�Er��������������2	iZ�^������)�X
�/�� �<���A<[O�x�F�/c��B:���M���P;'�gW���@#�L������M	v
�_��7jk
����y!����?*�rܐ��$���1���T�R�9%
DZ�hQnЁ^�W@-y��XޡKG���s%����IG���m01�e�u��=:0�nT17A*�mo��������ۛ���֙�;������5�ձE	ARr����5�(L�J$����"zok`���֪'<�%��v��4ޠ��;��7���s���Q	w5B���(V��o#��	YR������J�����-�p���'��4C�B�t��ߎwX��HG,�0��ܱ�5�ɌR)OX�	�[��"�������	qD�/ٯv�'�[LK����8HI����R�V��Ow�C!zu��#"y{W�����L�=�5��P:��)iGgp�ve+���?Z/�y������3B�M|���-�*�vC7���y��+=&���&��P'�����n��0��=��p�ݞ���y(�ʻ�ΐ|;{p��O�\�=�A���	x��>O(T>B��	Y�"�^��v3�����IP>����}8`D�r��-�B�Ow�ז�;t���( $�;��N�R���!���OQN#�q�{,�
D�_B�H����~{�0X�Z5���-��$�#�M49s�vg��=`Z)a�T����#\5����c=���E�mw����K9޴�:!�X���WY����r��?��Zc�~�7T;�`df�B?:��
Qz�q/�E���0���,r����2]���;�ѳ]'�&�;�W���_=��P"5+�����	���}�.�/��Gy��+�j��/��_�
WO@��߃�b�lpH�[���~>��� �:B�ZK���X��Ut+�n��Ǟ���c+������`Os���`���o���ؑ�`�p��`G�{����I���6~����3��;��Z���5;_Q{�w&����s�m���xA�e�C���q�{���|��q%2Я����VS"]��%�7�y�?#G��Una���0�=����>#m{m�'x(��I�1L �e�o���_�:�G����xAs���VT(Tķ�2c�^�v(0B��ᩮ��8��ِ<���?f�Y�ʧ�$jw����_��~����OOJ��COJo>NJ�I� 2�m"��ȉ���қH-�i�[<%�xJj���)��S~-�����gPH�rj�aJ`
4�	��4:��T��0��������_�
�|y��$��0�+0��v�����(ק�?#���]�&���s��7�����&"e�}�h��I�N•��U�U��ݴ?�OV����]w�;�";�FP��+ʂ�%�p�U�YC	�&�N)%]$����4�����R�7�|���ItD�3u�h\kG^Z�����vK\Ma�齚�3��#��2�M�_�D��t*Z�YBL$r�=jo7���	"%W�!f�����F�㿝�ϕ�U�~`�Rw{�w�?zyꧫ�y�ա�%x�W�*�B�(ft�w�tZڊa�7�P9��4�u%���:&�:�{��tڰF��|�ڕ���$������|�)y^rla������}�J^����7~� !3�7�i ��G��ߩ�o���F�"��GQ��E]�*L
z�BT��`^�wr�r���B3y��B�i� j�l���;����=ȑ��}ro�쥡���n%XnE�[�R�܋6
Z�;btjz֦n���&]gn���2��a��.]�y	-���j�{c�l����n�
t�b�gZ0�q2��7�ݺD��Hp
����d�B�I�{�Γ�\�|�v��*�J;y6(`���2՘�ٹF������Ͻ���rCx�I>�#��J��^��统��P���2\�8L�.+�� �ڸ�����H�����/nR�hJ��'��3��t�N��Όg���+�:3���j�O��ܙ3�nc��׊5]�W������ឝ��w�tIFD�FD�Fd�ۘR�	5�5;#��%��X];��8�&����2�A����U� M�AeQ��� ��R�8A��+�	��(�iH�K�&!�t��]��.�_3q��:QdZ�"��G�� 9��q�����{
C���ŧRċ~�լ�{�gM�"��|C�E�5Y�Y��m���s���\��s#��Y	��	�����]]R�lI���'���SUGc�|
�����v��$�D���<���}]�ԑ��o=ѭ�`L�������W*A�O�:���{L� 2��Z�ȕ�|�r�)�r�Y-��J`V�j�Y-0kf����
���
���J���A�,0f�1L��T	L��TL��TL���8Y`,c���
L���
L���	L���L�����(�c��i��i�F�i����:�M�$0Mc����!0�q�S`�^A���V`�
�K`\�����-0�,A��4L��4�:�Y'0�f������A`6̆K(�L����F��(0f��l�M�Y`6�	��l�-�E`�
�V��*0�f��lf;��I�VUF{Q�UD
�!���`��#�@�%EE �0��@ �H��B ���"0�A�!�@<	$"��@�$#0�K� 0)� 0�aC���pFHE`$#�@i�F �t� 0���C����@ �L�#��@�� ������& 0�ILB`2S���T�!0
��䡃�!���f 0&f!0���A����\�!0��,@��
X��B��(B��E#P�@	��"p�X�����.E�f�!����@`+(C��r��U�B`5kX�@�T"`F�
�jt�jj� `A��:��G����hD���ۄ@v8p"����p#�F�� Ќ@3�X��z6 Ђ@؄�	��lA`[؆�6H$=Ѳ�6)�ƫ�Zt#@O~��@D"�@�B �Ѳd#0��"0���@ �Q�!0�1�E��!��@&��F �\&"0	��LE˦!0�|f 0�Y�F`����
X�@���bJ�	��,E�f�!�����e�X��*0#P�@
j�G���5 `C�	;N�"�B��@3�؀@،�oA`���I5D�P�G1��F�8���ڡ(HEm���Cm&�Y�8	�)����L����|
P{#����v	��X�b9kPkF��Z�ZQlD��ڵ(�X�b�P�U��C�`#P�E1�G���b�9(NA1��(����(�@q5�U(֣؄��
(na�L��ie)Z�+R�"e)�4E��H���J�jɩH�e)*<Z���4E���R�6�RD�I�L�䔥�lڷۙ2R��$A��������g���Ad���V�[ ݺ8��NBI���e�-)C�Z�`z'N~�"d-��f^</N�H�_M���&�/�ē�R�\~����M����W5W˪5����['߲l�2�:�Gڦ�/뽃�ŧ<� z�Mo���-�ܸo�=W�_���=����}H�'����ص��3�ٓF���	������%J���"x�Y�.�w�Ɣ��GlE�+�qϲ�y���wu�r?��d��H�����.ܫ���9���<�<�@�~e,y5��ޢ[�;����ܧ�[�~�[�,�<J��M��J�dc荄?�L���t�Lk�'�L;X֪em�B���� ���:x���zݺ(�
`0�-wKS��F����^�ix�3�6�L�[U��V��	�w/�y�R�NĮ���bW��]M��C�#��´dӦDߑ:kT:����s:;\�Q~7�^��k$�,$���I�y�C��}�nW��tMz)Ϫ�f�mR���Z~/;U�\�q�F��4|�QJ%ч��Q�?�6%8/���E�*]��l��(�m�P����d�ȶn�8�*��Fd�"W=	�ҥ��t-�ZMF��IKYE�E��$��%��s�'qy��.\��y$���=8.�j��<�c�J�NJ
�Xh$�72���x�|^C�	K�w>��ɧe�~y)S�Q�d9�5��� �uvv���&�x����C�VW�GN��4uL���ӛ�ĜI��@������95�ޑ5�sm���4��^V1kw„�?t�n}%��6P5����^K{��O	�iµ���8:�1�k�jI��{�xgZa	��O5�g��ֻ̨$�fц�S�ey@���>���p��1�,q���ާȓ2��A���'�(?ދ�3�
����߭�T�rt��ΘH�.DE��Ǚ{.��%���~��g�?�׌=]���(i��}7#��6��ӟ�����_�M~I����Q&����g�����k^I���J^񧾞~��c���‱�bzd��}>�\��]���!BE��BڝKg4��T7�$������UaZ���_���a�	Ѯd���Vh�}H���>]$��d��]=��z4(�\R3a�.RC��
C�d�S_��Ej���!l�P����&�U�.2��z����̨]ܵi�\�o߷�/���n��M�& &|ך�	��^���X��&H�����E�s�H�����6�㙾��w�zCF޶w��m,؞H�>_T�]��K� -�
���{t�;}�K��؎����m�?y�ֺ6
�H��ݣ��]���^�+O%����O�g�V��薠c��O!=��m{�6��V�hL����Q�.|�q*�!��8��^nU���WN�rT/�U�Ҭo?�w�Ε��:��>�I|��On�=��V�f�4�|���N�C}�����ѧΩϩ�o��Q�����5&}����=���]�Ωr4I��e�r�$�]�<ӝ�w��e��i��v�^��z�/㳗�:@�0��:p�wkQw��L3��_���8�Z�G_��ں��NV|W�F�Z��r���+�W޳���]r�e}�5�S�[�AO�M�:�O�"�X�a�%٦�g�
}�3�.o��l
���D��GO����+O{��wĔvÜ�I`ԉ�;?�w���g�m�&nԈ���{���FSţ+$����v_���oڶ��F�7���?.{�e���ݒb��;�p�q�
ɨS��7|���h���
LE�ʸ�I�V��Z���Y/�j�_'�l����CJ��S�V>����#�ߞZc�N6|�/5qË�Voy|��O�M	��|�c�b�n��?;�oľ�ֈ��'��cW�'=��|��e9����!�f{�nj���ܬ��$��b>V������y����}o\w�	��{i��s{���J��t���;���"fޱ�g{�U{3&]�������V/x{�'������?'�Q�y;���ޜt����R2
����N�F��8�%T0
�u���(f948{7_��;0���&nk�xf�	�b�KX��n����CG�4�0�0�������#�]�
ia�f�D�Yl�av2¸Y�0�S���,���-�f|�j���y����Y^���ݫ+{�����q�]qw�����YlM�+���͂�����<�DC����nVdظ�Ú����c�Ql=C\(���� [�|���'��|=[u]�(<آ_r����"D��V#��<��~����lE7�E�V�n�gBц���0� !��?�Lڕ(�Cߙ<�B��i=}L2�d��̂��vrGQ��[CfK3�B-�����D�O�� ���a�	S$�㿵s�XZ����o+�U,wA�=���lyiއS0���X�)7��%�o+:�yB%gڒ� 1�V�faf��`F�Yc�Ŭ�����%�6`�o.�f�`��f`���$�
O��۸)b�c#$Q��L���\±�y����EB^c#�u�%n�K{DG�9��>�HB�w���sh�N����>��$!�?|
����z1��!��Y�|� fQ��E+a�a�hO2B^�#|�	y�	�f�t',:��_���'��VH6a����$&Q��$��]	O<�퍔l¼~�e)1�G�QB^�ac9ϡF�X.���s<>�P�O��$f�6�|,d���n�_f�d�,1�II�7�h���]H��D��'&�k�����~��y}��QJ^?q�F	y]��`ԓ�wq�0��n�`$���΍�$��S�#�z)7
�7ԄF��-n�}�IF	)Ԓ�C9�зs�	�R��)��
O�G�bbw�z����2�v	���|z�ϓ��C����.�P�����|ro�1soǴ~B�L���rZ��XH��0���KPȡOr�čRr�M�p����M|� ��K�JX��:�Ƙ�_���V�A�;	�2诲0��T+fЈ�‘��w��F��_Nᛄ����ljx�������� ��RL8<������9t�È�?��O?�7�bZ�Œ���vn����z�l����A≚'c1�j�NА���3����̳���~'d���=]J�O�'s�s����Z�Q��v�#nPK�%"]���qqfields/fields.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.7.0" type="plugin" group="content" method="upgrade">
	<name>plg_content_fields</name>
	<author>Joomla! Project</author>
	<creationDate>February 2017</creationDate>
	<copyright>(C) 2017 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.7.0</version>
	<description>PLG_CONTENT_FIELDS_XML_DESCRIPTION</description>
	<files>
		<filename plugin="fields">fields.php</filename>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_fields.ini</language>
		<language tag="en-GB">en-GB.plg_content_fields.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="basic">
			</fieldset>
		</fields>
	</config>
</extension>
PK�%"]��ig``fields/fields.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.Fields
 *
 * @copyright   (C) 2017 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die();

/**
 * Plug-in to show a custom field in eg an article
 * This uses the {fields ID} syntax
 *
 * @since  3.7.0
 */
class PlgContentFields extends JPlugin
{
	/**
	 * Plugin that shows a custom field
	 *
	 * @param   string  $context  The context of the content being passed to the plugin.
	 * @param   object  &$item    The item object.  Note $article->text is also available
	 * @param   object  &$params  The article params
	 * @param   int     $page     The 'page' number
	 *
	 * @return void
	 *
	 * @since  3.7.0
	 */
	public function onContentPrepare($context, &$item, &$params, $page = 0)
	{
		// If the item has a context, overwrite the existing one
		if ($context == 'com_finder.indexer' && !empty($item->context))
		{
			$context = $item->context;
		}
		elseif ($context == 'com_finder.indexer')
		{
			// Don't run this plugin when the content is being indexed and we have no real context
			return;
		}

		// Don't run if there is no text property (in case of bad calls) or it is empty
		if (empty($item->text))
		{
			return;
		}

		// Simple performance check to determine whether bot should process further
		if (strpos($item->text, 'field') === false)
		{
			return;
		}

		// Register FieldsHelper
		JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR . '/components/com_fields/helpers/fields.php');

		// Prepare the text
		if (isset($item->text))
		{
			$item->text = $this->prepare($item->text, $context, $item);
		}

		// Prepare the intro text
		if (isset($item->introtext))
		{
			$item->introtext = $this->prepare($item->introtext, $context, $item);
		}
	}

	/**
	 * Prepares the given string by parsing {field} and {fieldgroup} groups and replacing them.
	 *
	 * @param   string  $string   The text to prepare
	 * @param   string  $context  The context of the content
	 * @param   object  $item     The item object
	 *
	 * @return string
	 *
	 * @since  3.8.1
	 */
	private function prepare($string, $context, $item)
	{
		// Search for {field ID} or {fieldgroup ID} tags and put the results into $matches.
		$regex = '/{(field|fieldgroup)\s+(.*?)}/i';
		preg_match_all($regex, $string, $matches, PREG_SET_ORDER);

		if (!$matches)
		{
			return $string;
		}

		$parts = FieldsHelper::extract($context);

		if (count($parts) < 2)
		{
			return $string;
		}

		$context    = $parts[0] . '.' . $parts[1];
		$fields     = FieldsHelper::getFields($context, $item, true);
		$fieldsById = array();
		$groups     = array();

		// Rearranging fields in arrays for easier lookup later.
		foreach ($fields as $field)
		{
			$fieldsById[$field->id]     = $field;
			$groups[$field->group_id][] = $field;
		}

		foreach ($matches as $i => $match)
		{
			// $match[0] is the full pattern match, $match[1] is the type (field or fieldgroup) and $match[2] the ID and optional the layout
			$explode = explode(',', $match[2]);
			$id      = (int) $explode[0];
			$output  = '';

			if ($match[1] == 'field' && $id)
			{
				if (isset($fieldsById[$id]))
				{
					$layout = !empty($explode[1]) ? trim($explode[1]) : $fieldsById[$id]->params->get('layout', 'render');
					$output = FieldsHelper::render(
						$context,
						'field.' . $layout,
						array(
							'item'    => $item,
							'context' => $context,
							'field'   => $fieldsById[$id]
						)
					);
				}
			}
			else
			{
				if ($match[2] === '*')
				{
					$match[0]     = str_replace('*', '\*', $match[0]);
					$renderFields = $fields;
				}
				else
				{
					$renderFields = isset($groups[$id]) ? $groups[$id] : '';
				}

				if ($renderFields)
				{
					$layout = !empty($explode[1]) ? trim($explode[1]) : 'render';
					$output = FieldsHelper::render(
						$context,
						'fields.' . $layout,
						array(
							'item'    => $item,
							'context' => $context,
							'fields'  => $renderFields
						)
					);
				}
			}

			$string = preg_replace("|$match[0]|", addcslashes($output, '\\$'), $string, 1);
		}

		return $string;
	}
}
PK�%"]�|f..joomla/joomla.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="content" method="upgrade">
	<name>plg_content_joomla</name>
	<author>Joomla! Project</author>
	<creationDate>November 2010</creationDate>
	<copyright>(C) 2010 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>PLG_CONTENT_JOOMLA_XML_DESCRIPTION</description>
	<files>
		<filename plugin="joomla">joomla.php</filename>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_joomla.ini</language>
		<language tag="en-GB">en-GB.plg_content_joomla.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="basic">
				<field
					name="check_categories"
					type="radio"
					label="PLG_CONTENT_JOOMLA_FIELD_CHECK_CATEGORIES_LABEL"
					description="PLG_CONTENT_JOOMLA_FIELD_CHECK_CATEGORIES_DESC"
					class="btn-group btn-group-yesno"
					default="1"
					filter="integer"
					>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>

				<field 
					name="email_new_fe"
					type="radio"
					label="PLG_CONTENT_JOOMLA_FIELD_EMAIL_NEW_FE_LABEL"
					description="PLG_CONTENT_JOOMLA_FIELD_EMAIL_NEW_FE_DESC"
					class="btn-group btn-group-yesno"
					default="1"
					filter="integer"
					>
					<option value="1">JYES</option>
					<option value="0">JNO</option>
				</field>
			</fieldset>
		</fields>
	</config>

</extension>
PK�%"]'/�"�"joomla/joomla.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.joomla
 *
 * @copyright   (C) 2010 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

/**
 * Example Content Plugin
 *
 * @since  1.6
 */
class PlgContentJoomla extends JPlugin
{
	/**
	 * Example after save content method
	 * Article is passed by reference, but after the save, so no changes will be saved.
	 * Method is called right after the content is saved
	 *
	 * @param   string   $context  The context of the content passed to the plugin (added in 1.6)
	 * @param   object   $article  A JTableContent object
	 * @param   boolean  $isNew    If the content is just about to be created
	 *
	 * @return  boolean   true if function not enabled, is in frontend or is new. Else true or
	 *                    false depending on success of save function.
	 *
	 * @since   1.6
	 */
	public function onContentAfterSave($context, $article, $isNew)
	{
		// Check we are handling the frontend edit form.
		if ($context !== 'com_content.form')
		{
			return true;
		}

		// Check if this function is enabled.
		if (!$this->params->def('email_new_fe', 1))
		{
			return true;
		}

		// Check this is a new article.
		if (!$isNew)
		{
			return true;
		}

		$db = JFactory::getDbo();
		$query = $db->getQuery(true)
			->select($db->quoteName('id'))
			->from($db->quoteName('#__users'))
			->where($db->quoteName('sendEmail') . ' = 1')
			->where($db->quoteName('block') . ' = 0');
		$db->setQuery($query);
		$users = (array) $db->loadColumn();

		if (empty($users))
		{
			return true;
		}

		$user = JFactory::getUser();

		// Messaging for new items
		JModelLegacy::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_messages/models', 'MessagesModel');
		JTable::addIncludePath(JPATH_ADMINISTRATOR . '/components/com_messages/tables');

		$default_language = JComponentHelper::getParams('com_languages')->get('administrator');
		$debug = JFactory::getConfig()->get('debug_lang');
		$result = true;

		foreach ($users as $user_id)
		{
			if ($user_id != $user->id)
			{
				// Load language for messaging
				$receiver = JUser::getInstance($user_id);
				$lang = JLanguage::getInstance($receiver->getParam('admin_language', $default_language), $debug);
				$lang->load('com_content');
				$message = array(
					'user_id_to' => $user_id,
					'subject' => $lang->_('COM_CONTENT_NEW_ARTICLE'),
					'message' => sprintf($lang->_('COM_CONTENT_ON_NEW_CONTENT'), $user->get('name'), $article->title)
				);
				$model_message = JModelLegacy::getInstance('Message', 'MessagesModel');
				$result = $model_message->save($message);
			}
		}

		return $result;
	}

	/**
	 * Don't allow categories to be deleted if they contain items or subcategories with items
	 *
	 * @param   string  $context  The context for the content passed to the plugin.
	 * @param   object  $data     The data relating to the content that was deleted.
	 *
	 * @return  boolean
	 *
	 * @since   1.6
	 */
	public function onContentBeforeDelete($context, $data)
	{
		// Skip plugin if we are deleting something other than categories
		if ($context !== 'com_categories.category')
		{
			return true;
		}

		// Check if this function is enabled.
		if (!$this->params->def('check_categories', 1))
		{
			return true;
		}

		$extension = JFactory::getApplication()->input->getString('extension');

		// Default to true if not a core extension
		$result = true;

		$tableInfo = array(
			'com_banners' => array('table_name' => '#__banners'),
			'com_contact' => array('table_name' => '#__contact_details'),
			'com_content' => array('table_name' => '#__content'),
			'com_newsfeeds' => array('table_name' => '#__newsfeeds'),
			'com_weblinks' => array('table_name' => '#__weblinks')
		);

		// Now check to see if this is a known core extension
		if (isset($tableInfo[$extension]))
		{
			// Get table name for known core extensions
			$table = $tableInfo[$extension]['table_name'];

			// See if this category has any content items
			$count = $this->_countItemsInCategory($table, $data->get('id'));

			// Return false if db error
			if ($count === false)
			{
				$result = false;
			}
			else
			{
				// Show error if items are found in the category
				if ($count > 0)
				{
					$msg = JText::sprintf('COM_CATEGORIES_DELETE_NOT_ALLOWED', $data->get('title'))
						. JText::plural('COM_CATEGORIES_N_ITEMS_ASSIGNED', $count);
					JError::raiseWarning(403, $msg);
					$result = false;
				}

				// Check for items in any child categories (if it is a leaf, there are no child categories)
				if (!$data->isLeaf())
				{
					$count = $this->_countItemsInChildren($table, $data->get('id'), $data);

					if ($count === false)
					{
						$result = false;
					}
					elseif ($count > 0)
					{
						$msg = JText::sprintf('COM_CATEGORIES_DELETE_NOT_ALLOWED', $data->get('title'))
							. JText::plural('COM_CATEGORIES_HAS_SUBCATEGORY_ITEMS', $count);
						JError::raiseWarning(403, $msg);
						$result = false;
					}
				}
			}

			return $result;
		}
	}

	/**
	 * Get count of items in a category
	 *
	 * @param   string   $table  table name of component table (column is catid)
	 * @param   integer  $catid  id of the category to check
	 *
	 * @return  mixed  count of items found or false if db error
	 *
	 * @since   1.6
	 */
	private function _countItemsInCategory($table, $catid)
	{
		$db = JFactory::getDbo();
		$query = $db->getQuery(true);

		// Count the items in this category
		$query->select('COUNT(id)')
			->from($table)
			->where('catid = ' . $catid);
		$db->setQuery($query);

		try
		{
			$count = $db->loadResult();
		}
		catch (RuntimeException $e)
		{
			JError::raiseWarning(500, $e->getMessage());

			return false;
		}

		return $count;
	}

	/**
	 * Get count of items in a category's child categories
	 *
	 * @param   string   $table  table name of component table (column is catid)
	 * @param   integer  $catid  id of the category to check
	 * @param   object   $data   The data relating to the content that was deleted.
	 *
	 * @return  mixed  count of items found or false if db error
	 *
	 * @since   1.6
	 */
	private function _countItemsInChildren($table, $catid, $data)
	{
		$db = JFactory::getDbo();

		// Create subquery for list of child categories
		$childCategoryTree = $data->getTree();

		// First element in tree is the current category, so we can skip that one
		unset($childCategoryTree[0]);
		$childCategoryIds = array();

		foreach ($childCategoryTree as $node)
		{
			$childCategoryIds[] = $node->id;
		}

		// Make sure we only do the query if we have some categories to look in
		if (count($childCategoryIds))
		{
			// Count the items in this category
			$query = $db->getQuery(true)
				->select('COUNT(id)')
				->from($table)
				->where('catid IN (' . implode(',', $childCategoryIds) . ')');
			$db->setQuery($query);

			try
			{
				$count = $db->loadResult();
			}
			catch (RuntimeException $e)
			{
				JError::raiseWarning(500, $e->getMessage());

				return false;
			}

			return $count;
		}
		else
			// If we didn't have any categories to check, return 0
		{
			return 0;
		}
	}

	/**
	 * Change the state in core_content if the state in a table is changed
	 *
	 * @param   string   $context  The context for the content passed to the plugin.
	 * @param   array    $pks      A list of primary key ids of the content that has changed state.
	 * @param   integer  $value    The value of the state that the content has been changed to.
	 *
	 * @return  boolean
	 *
	 * @since   3.1
	 */
	public function onContentChangeState($context, $pks, $value)
	{
		$db = JFactory::getDbo();
		$query = $db->getQuery(true)
			->select($db->quoteName('core_content_id'))
			->from($db->quoteName('#__ucm_content'))
			->where($db->quoteName('core_type_alias') . ' = ' . $db->quote($context))
			->where($db->quoteName('core_content_item_id') . ' IN (' . $pksImploded = implode(',', $pks) . ')');
		$db->setQuery($query);
		$ccIds = $db->loadColumn();

		$cctable = new JTableCorecontent($db);
		$cctable->publish($ccIds, $value);

		return true;
	}

	/**
	* The save event.
	*
	* @param   string   $context  The context
	* @param   object   $table    The item
	* @param   boolean  $isNew    Is new item
	*
	* @return  void
	*
	* @since   3.9.12
	*/
	public function onContentBeforeSave($context, $table, $isNew)
	{
		// Check we are handling the frontend edit form.
		if ($context !== 'com_menus.item')
		{
			return true;
		}

		// Special case for Create article menu item
		if ($table->link !== 'index.php?option=com_content&view=form&layout=edit')
		{
			return true;
		}

		// Display error if catid is not set when enable_category is enabled
		$params = json_decode($table->params, true);

		if ($params['enable_category'] == 1 && empty($params['catid']))
		{
			$table->setError(JText::_('COM_CONTENT_CREATE_ARTICLE_ERROR'));

			return false;
		}
	}
}
PK�%"]tKh��D�Demailcloak/emailcloak.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Content.emailcloak
 *
 * @copyright   (C) 2006 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\String\StringHelper;

/**
 * Email cloack plugin class.
 *
 * @since  1.5
 */
class PlgContentEmailcloak extends JPlugin
{
	/**
	 * Plugin that cloaks all emails in content from spambots via Javascript.
	 *
	 * @param   string   $context  The context of the content being passed to the plugin.
	 * @param   mixed    &$row     An object with a "text" property or the string to be cloaked.
	 * @param   mixed    &$params  Additional parameters. See {@see PlgContentEmailcloak()}.
	 * @param   integer  $page     Optional page number. Unused. Defaults to zero.
	 *
	 * @return  boolean	True on success.
	 */
	public function onContentPrepare($context, &$row, &$params, $page = 0)
	{
		// Don't run this plugin when the content is being indexed
		if ($context === 'com_finder.indexer')
		{
			return true;
		}

		if (is_object($row))
		{
			return $this->_cloak($row->text, $params);
		}

		return $this->_cloak($row, $params);
	}

	/**
	 * Generate a search pattern based on link and text.
	 *
	 * @param   string  $link  The target of an email link.
	 * @param   string  $text  The text enclosed by the link.
	 *
	 * @return  string	A regular expression that matches a link containing the parameters.
	 */
	protected function _getPattern ($link, $text)
	{
		$pattern = '~(?:<a ([^>]*)href\s*=\s*"mailto:' . $link . '"([^>]*))>' . $text . '</a>~i';

		return $pattern;
	}

	/**
	 * Adds an attributes to the js cloaked email.
	 *
	 * @param   string  $jsEmail  Js cloaked email.
	 * @param   string  $before   Attributes before email.
	 * @param   string  $after    Attributes after email.
	 *
	 * @return string Js cloaked email with attributes.
	 */
	protected function _addAttributesToEmail($jsEmail, $before, $after)
	{
		if ($before !== '')
		{
			$before = str_replace("'", "\'", $before);
			$jsEmail = str_replace(".innerHTML += '<a '", ".innerHTML += '<a {$before}'", $jsEmail);
		}

		if ($after !== '')
		{
			$after = str_replace("'", "\'", $after);
			$jsEmail = str_replace("'\'>'", "'\'{$after}>'", $jsEmail);
		}

		return $jsEmail;
	}

	/**
	 * Cloak all emails in text from spambots via Javascript.
	 *
	 * @param   string  &$text    The string to be cloaked.
	 * @param   mixed   &$params  Additional parameters. Parameter "mode" (integer, default 1)
	 *                             replaces addresses with "mailto:" links if nonzero.
	 *
	 * @return  boolean  True on success.
	 */
	protected function _cloak(&$text, &$params)
	{
		/*
		 * Check for presence of {emailcloak=off} which is explicits disables this
		 * bot for the item.
		 */
		if (StringHelper::strpos($text, '{emailcloak=off}') !== false)
		{
			$text = StringHelper::str_ireplace('{emailcloak=off}', '', $text);

			return true;
		}

		// Simple performance check to determine whether bot should process further.
		if (StringHelper::strpos($text, '@') === false)
		{
			return true;
		}

		$mode = $this->params->def('mode', 1);

		// Example: any@example.org
		$searchEmail = '([\w\.\'\-\+]+\@(?:[a-z0-9\.\-]+\.)+(?:[a-zA-Z0-9\-]{2,24}))';

		// Example: any@example.org?subject=anyText
		$searchEmailLink = $searchEmail . '([?&][\x20-\x7f][^"<>]+)';

		// Any Text
		$searchText = '((?:[\x20-\x7f]|[\xA1-\xFF]|[\xC2-\xDF][\x80-\xBF]|[\xE0-\xEF][\x80-\xBF]{2}|[\xF0-\xF4][\x80-\xBF]{3})[^<>]+)';

		// Any Image link
		$searchImage = '(<img[^>]+>)';

		// Any Text with <span or <strong
		$searchTextSpan = '(<span[^>]+>|<span>|<strong>|<strong><span[^>]+>|<strong><span>)' . $searchText . '(</span>|</strong>|</span></strong>)';

		// Any address with <span or <strong
		$searchEmailSpan = '(<span[^>]+>|<span>|<strong>|<strong><span[^>]+>|<strong><span>)' . $searchEmail . '(</span>|</strong>|</span></strong>)';

		/*
		 * Search and fix derivatives of link code <a href="http://mce_host/ourdirectory/email@example.org"
		 * >email@example.org</a>. This happens when inserting an email in TinyMCE, cancelling its suggestion to add
		 * the mailto: prefix...
		 */
		$pattern = $this->_getPattern($searchEmail, $searchEmail);
		$pattern = str_replace('"mailto:', '"http://mce_host([\x20-\x7f][^<>]+/)', $pattern);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[3][0];
			$mailText = $regs[5][0];

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = $this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]);

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search and fix derivatives of link code <a href="http://mce_host/ourdirectory/email@example.org"
		 * >anytext</a>. This happens when inserting an email in TinyMCE, cancelling its suggestion to add
		 * the mailto: prefix...
		 */
		$pattern = $this->_getPattern($searchEmail, $searchText);
		$pattern = str_replace('"mailto:', '"http://mce_host([\x20-\x7f][^<>]+/)', $pattern);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[3][0];
			$mailText = $regs[5][0];

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = $this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]);

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@example.org"
		 * >email@example.org</a>
		 */
		$pattern = $this->_getPattern($searchEmail, $searchEmail);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0];
			$mailText = $regs[4][0];

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = $this->_addAttributesToEmail($replacement, $regs[1][0], $regs[3][0]);

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@amail.com"
		 * ><anyspan >email@amail.com</anyspan></a>
		 */
		$pattern = $this->_getPattern($searchEmail, $searchEmailSpan);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0];
			$mailText = $regs[4][0] . $regs[5][0] . $regs[6][0];

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[3][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@amail.com">
		 * <anyspan >anytext</anyspan></a>
		 */
		$pattern = $this->_getPattern($searchEmail, $searchTextSpan);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0];
			$mailText = $regs[4][0] . addslashes($regs[5][0]) . $regs[6][0];

			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[3][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@example.org">
		 * anytext</a>
		 */
		$pattern = $this->_getPattern($searchEmail, $searchText);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0];
			$mailText = addslashes($regs[4][0]);

			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = $this->_addAttributesToEmail($replacement, $regs[1][0], $regs[3][0]);

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@example.org">
		 * <img anything></a>
		 */
		$pattern = $this->_getPattern($searchEmail, $searchImage);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0];
			$mailText = $regs[4][0];

			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[3][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@example.org">
		 * <img anything>email@example.org</a>
		 */
		$pattern = $this->_getPattern($searchEmail, $searchImage . $searchEmail);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0];
			$mailText = $regs[4][0] . $regs[5][0];

			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[3][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@example.org">
		 * <img anything>any text</a>
		 */
		$pattern = $this->_getPattern($searchEmail, $searchImage . $searchText);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0];
			$mailText = $regs[4][0] . addslashes($regs[5][0]);

			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[3][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@example.org?
		 * subject=Text">email@example.org</a>
		 */
		$pattern = $this->_getPattern($searchEmailLink, $searchEmail);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0] . $regs[3][0];
			$mailText = $regs[5][0];

			// Needed for handling of Body parameter
			$mail = str_replace('&amp;', '&', $mail);

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = $this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]);

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@example.org?
		 * subject=Text">anytext</a>
		 */
		$pattern = $this->_getPattern($searchEmailLink, $searchText);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0] . $regs[3][0];
			$mailText = addslashes($regs[5][0]);

			// Needed for handling of Body parameter
			$mail = str_replace('&amp;', '&', $mail);

			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = $this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]);

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@amail.com?subject= Text"
		 * ><anyspan >email@amail.com</anyspan></a>
		 */
		$pattern = $this->_getPattern($searchEmailLink, $searchEmailSpan);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0] . $regs[3][0];
			$mailText = $regs[5][0] . $regs[6][0] . $regs[7][0];

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code <a href="mailto:email@amail.com?subject= Text">
		 * <anyspan >anytext</anyspan></a>
		 */
		$pattern = $this->_getPattern($searchEmailLink, $searchTextSpan);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[2][0] . $regs[3][0];
			$mailText = $regs[5][0] . addslashes($regs[6][0]) . $regs[7][0];

			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code
		 * <a href="mailto:email@amail.com?subject=Text"><img anything></a>
		 */
		$pattern = $this->_getPattern($searchEmailLink, $searchImage);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[1][0] . $regs[2][0] . $regs[3][0];
			$mailText = $regs[5][0];

			// Needed for handling of Body parameter
			$mail = str_replace('&amp;', '&', $mail);

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code
		 * <a href="mailto:email@amail.com?subject=Text"><img anything>email@amail.com</a>
		 */
		$pattern = $this->_getPattern($searchEmailLink, $searchImage . $searchEmail);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[1][0] . $regs[2][0] . $regs[3][0];
			$mailText = $regs[4][0] . $regs[5][0] . $regs[6][0];

			// Needed for handling of Body parameter
			$mail = str_replace('&amp;', '&', $mail);

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for derivatives of link code
		 * <a href="mailto:email@amail.com?subject=Text"><img anything>any text</a>
		 */
		$pattern = $this->_getPattern($searchEmailLink, $searchImage . $searchText);

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[1][0] . $regs[2][0] . $regs[3][0];
			$mailText = $regs[4][0] . $regs[5][0] . addslashes($regs[6][0]);

			// Needed for handling of Body parameter
			$mail = str_replace('&amp;', '&', $mail);

			// Check to see if mail text is different from mail addy
			$replacement = JHtml::_('email.cloak', $mail, $mode, $mailText, 0);

			// Ensure that attributes is not stripped out by email cloaking
			$replacement = html_entity_decode($this->_addAttributesToEmail($replacement, $regs[1][0], $regs[4][0]));

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[0][1], strlen($regs[0][0]));
		}

		/*
		 * Search for plain text email addresses, such as email@example.org but not within HTML tags:
		 * <img src="..." title="email@example.org"> or <input type="text" placeholder="email@example.org">
		 * The '<[^<]*>(*SKIP)(*F)|' trick is used to exclude this kind of occurrences
		 */
		$pattern = '~<[^<]*>(*SKIP)(*F)|' . $searchEmail . '~i';

		while (preg_match($pattern, $text, $regs, PREG_OFFSET_CAPTURE))
		{
			$mail = $regs[1][0];
			$replacement = JHtml::_('email.cloak', $mail, $mode);

			// Replace the found address with the js cloaked email
			$text = substr_replace($text, $replacement, $regs[1][1], strlen($mail));
		}

		return true;
	}
}
PK�%"](q���emailcloak/emailcloak.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="content" method="upgrade">
	<name>plg_content_emailcloak</name>
	<author>Joomla! Project</author>
	<creationDate>November 2005</creationDate>
	<copyright>(C) 2005 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>PLG_CONTENT_EMAILCLOAK_XML_DESCRIPTION</description>
	<files>
		<filename plugin="emailcloak">emailcloak.php</filename>
	</files>
	<languages>
		<language tag="en-GB">en-GB.plg_content_emailcloak.ini</language>
		<language tag="en-GB">en-GB.plg_content_emailcloak.sys.ini</language>
	</languages>
	<config>
		<fields name="params">
			<fieldset name="basic">
				<field
					name="mode"
					type="list"
					label="PLG_CONTENT_EMAILCLOAK_MODE_LABEL"
					description="PLG_CONTENT_EMAILCLOAK_MODE_DESC"
					default="1"
					filter="integer"
					>
					<option value="0">PLG_CONTENT_EMAILCLOAK_NONLINKABLE</option>
					<option value="1">PLG_CONTENT_EMAILCLOAK_LINKABLE</option>
				</field>
			</fieldset>
		</fields>
	</config>
</extension>
PK�a"]n��!((content.xmlnu&1i�<?xml version="1.0" encoding="utf-8"?>
<extension version="3.1" type="plugin" group="finder" method="upgrade">
	<name>plg_finder_content</name>
	<author>Joomla! Project</author>
	<creationDate>August 2011</creationDate>
	<copyright>(C) 2011 Open Source Matters, Inc.</copyright>
	<license>GNU General Public License version 2 or later; see LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>PLG_FINDER_CONTENT_XML_DESCRIPTION</description>
	<files>
		<filename plugin="content">content.php</filename>
	</files>
	<languages>
		<language tag="en-GB">language/en-GB/en-GB.plg_finder_content.ini</language>
		<language tag="en-GB">language/en-GB/en-GB.plg_finder_content.sys.ini</language>
	</languages>
</extension>
PK�a"]m�jk++content.phpnu&1i�<?php
/**
 * @package     Joomla.Plugin
 * @subpackage  Finder.Content
 *
 * @copyright   (C) 2011 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;

use Joomla\Registry\Registry;

JLoader::register('FinderIndexerAdapter', JPATH_ADMINISTRATOR . '/components/com_finder/helpers/indexer/adapter.php');

/**
 * Smart Search adapter for com_content.
 *
 * @since  2.5
 */
class PlgFinderContent extends FinderIndexerAdapter
{
	/**
	 * The plugin identifier.
	 *
	 * @var    string
	 * @since  2.5
	 */
	protected $context = 'Content';

	/**
	 * The extension name.
	 *
	 * @var    string
	 * @since  2.5
	 */
	protected $extension = 'com_content';

	/**
	 * The sublayout to use when rendering the results.
	 *
	 * @var    string
	 * @since  2.5
	 */
	protected $layout = 'article';

	/**
	 * The type of content that the adapter indexes.
	 *
	 * @var    string
	 * @since  2.5
	 */
	protected $type_title = 'Article';

	/**
	 * The table name.
	 *
	 * @var    string
	 * @since  2.5
	 */
	protected $table = '#__content';

	/**
	 * Load the language file on instantiation.
	 *
	 * @var    boolean
	 * @since  3.1
	 */
	protected $autoloadLanguage = true;

	/**
	 * Method to update the item link information when the item category is
	 * changed. This is fired when the item category is published or unpublished
	 * from the list view.
	 *
	 * @param   string   $extension  The extension whose category has been updated.
	 * @param   array    $pks        A list of primary key ids of the content that has changed state.
	 * @param   integer  $value      The value of the state that the content has been changed to.
	 *
	 * @return  void
	 *
	 * @since   2.5
	 */
	public function onFinderCategoryChangeState($extension, $pks, $value)
	{
		// Make sure we're handling com_content categories.
		if ($extension === 'com_content')
		{
			$this->categoryStateChange($pks, $value);
		}
	}

	/**
	 * Method to remove the link information for items that have been deleted.
	 *
	 * @param   string  $context  The context of the action being performed.
	 * @param   JTable  $table    A JTable object containing the record to be deleted
	 *
	 * @return  boolean  True on success.
	 *
	 * @since   2.5
	 * @throws  Exception on database error.
	 */
	public function onFinderAfterDelete($context, $table)
	{
		if ($context === 'com_content.article')
		{
			$id = $table->id;
		}
		elseif ($context === 'com_finder.index')
		{
			$id = $table->link_id;
		}
		else
		{
			return true;
		}

		// Remove item from the index.
		return $this->remove($id);
	}

	/**
	 * Smart Search after save content method.
	 * Reindexes the link information for an article that has been saved.
	 * It also makes adjustments if the access level of an item or the
	 * category to which it belongs has changed.
	 *
	 * @param   string   $context  The context of the content passed to the plugin.
	 * @param   JTable   $row      A JTable object.
	 * @param   boolean  $isNew    True if the content has just been created.
	 *
	 * @return  boolean  True on success.
	 *
	 * @since   2.5
	 * @throws  Exception on database error.
	 */
	public function onFinderAfterSave($context, $row, $isNew)
	{
		// We only want to handle articles here.
		if ($context === 'com_content.article' || $context === 'com_content.form')
		{
			// Check if the access levels are different.
			if (!$isNew && $this->old_access != $row->access)
			{
				// Process the change.
				$this->itemAccessChange($row);
			}

			// Reindex the item.
			$this->reindex($row->id);
		}

		// Check for access changes in the category.
		if ($context === 'com_categories.category')
		{
			// Check if the access levels are different.
			if (!$isNew && $this->old_cataccess != $row->access)
			{
				$this->categoryAccessChange($row);
			}
		}

		return true;
	}

	/**
	 * Smart Search before content save method.
	 * This event is fired before the data is actually saved.
	 *
	 * @param   string   $context  The context of the content passed to the plugin.
	 * @param   JTable   $row      A JTable object.
	 * @param   boolean  $isNew    If the content is just about to be created.
	 *
	 * @return  boolean  True on success.
	 *
	 * @since   2.5
	 * @throws  Exception on database error.
	 */
	public function onFinderBeforeSave($context, $row, $isNew)
	{
		// We only want to handle articles here.
		if ($context === 'com_content.article' || $context === 'com_content.form')
		{
			// Query the database for the old access level if the item isn't new.
			if (!$isNew)
			{
				$this->checkItemAccess($row);
			}
		}

		// Check for access levels from the category.
		if ($context === 'com_categories.category')
		{
			// Query the database for the old access level if the item isn't new.
			if (!$isNew)
			{
				$this->checkCategoryAccess($row);
			}
		}

		return true;
	}

	/**
	 * Method to update the link information for items that have been changed
	 * from outside the edit screen. This is fired when the item is published,
	 * unpublished, archived, or unarchived from the list view.
	 *
	 * @param   string   $context  The context for the content passed to the plugin.
	 * @param   array    $pks      An array of primary key ids of the content that has changed state.
	 * @param   integer  $value    The value of the state that the content has been changed to.
	 *
	 * @return  void
	 *
	 * @since   2.5
	 */
	public function onFinderChangeState($context, $pks, $value)
	{
		// We only want to handle articles here.
		if ($context === 'com_content.article' || $context === 'com_content.form')
		{
			$this->itemStateChange($pks, $value);
		}

		// Handle when the plugin is disabled.
		if ($context === 'com_plugins.plugin' && $value === 0)
		{
			$this->pluginDisable($pks);
		}
	}

	/**
	 * Method to index an item. The item must be a FinderIndexerResult object.
	 *
	 * @param   FinderIndexerResult  $item    The item to index as a FinderIndexerResult object.
	 * @param   string               $format  The item format.  Not used.
	 *
	 * @return  void
	 *
	 * @since   2.5
	 * @throws  Exception on database error.
	 */
	protected function index(FinderIndexerResult $item, $format = 'html')
	{
		$item->setLanguage();

		// Check if the extension is enabled.
		if (JComponentHelper::isEnabled($this->extension) === false)
		{
			return;
		}

		$item->context = 'com_content.article';

		// Initialise the item parameters.
		$registry = new Registry($item->params);
		$item->params = clone JComponentHelper::getParams('com_content', true);
		$item->params->merge($registry);

		$item->metadata = new Registry($item->metadata);

		// Trigger the onContentPrepare event.
		$item->summary = FinderIndexerHelper::prepareContent($item->summary, $item->params, $item);
		$item->body    = FinderIndexerHelper::prepareContent($item->body, $item->params, $item);

		// Build the necessary route and path information.
		$item->url = $this->getUrl($item->id, $this->extension, $this->layout);
		$item->route = ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language);
		$item->path = FinderIndexerHelper::getContentPath($item->route);

		// Get the menu title if it exists.
		$title = $this->getItemMenuTitle($item->url);

		// Adjust the title if necessary.
		if (!empty($title) && $this->params->get('use_menu_title', true))
		{
			$item->title = $title;
		}

		// Add the meta author.
		$item->metaauthor = $item->metadata->get('author');

		// Add the metadata processing instructions.
		$item->addInstruction(FinderIndexer::META_CONTEXT, 'metakey');
		$item->addInstruction(FinderIndexer::META_CONTEXT, 'metadesc');
		$item->addInstruction(FinderIndexer::META_CONTEXT, 'metaauthor');
		$item->addInstruction(FinderIndexer::META_CONTEXT, 'author');
		$item->addInstruction(FinderIndexer::META_CONTEXT, 'created_by_alias');

		// Translate the state. Articles should only be published if the category is published.
		$item->state = $this->translateState($item->state, $item->cat_state);

		// Add the type taxonomy data.
		$item->addTaxonomy('Type', 'Article');

		// Add the author taxonomy data.
		if (!empty($item->author) || !empty($item->created_by_alias))
		{
			$item->addTaxonomy('Author', !empty($item->created_by_alias) ? $item->created_by_alias : $item->author);
		}

		// Add the category taxonomy data.
		$item->addTaxonomy('Category', $item->category, $item->cat_state, $item->cat_access);

		// Add the language taxonomy data.
		$item->addTaxonomy('Language', $item->language);

		// Get content extras.
		FinderIndexerHelper::getContentExtras($item);

		// Index the item.
		$this->indexer->index($item);
	}

	/**
	 * Method to setup the indexer to be run.
	 *
	 * @return  boolean  True on success.
	 *
	 * @since   2.5
	 */
	protected function setup()
	{
		// Load dependent classes.
		JLoader::register('ContentHelperRoute', JPATH_SITE . '/components/com_content/helpers/route.php');

		return true;
	}

	/**
	 * Method to get the SQL query used to retrieve the list of content items.
	 *
	 * @param   mixed  $query  A JDatabaseQuery object or null.
	 *
	 * @return  JDatabaseQuery  A database object.
	 *
	 * @since   2.5
	 */
	protected function getListQuery($query = null)
	{
		$db = JFactory::getDbo();

		// Check if we can use the supplied SQL query.
		$query = $query instanceof JDatabaseQuery ? $query : $db->getQuery(true)
			->select('a.id, a.title, a.alias, a.introtext AS summary, a.fulltext AS body')
			->select('a.images')
			->select('a.state, a.catid, a.created AS start_date, a.created_by')
			->select('a.created_by_alias, a.modified, a.modified_by, a.attribs AS params')
			->select('a.metakey, a.metadesc, a.metadata, a.language, a.access, a.version, a.ordering')
			->select('a.publish_up AS publish_start_date, a.publish_down AS publish_end_date')
			->select('c.title AS category, c.published AS cat_state, c.access AS cat_access');

		// Handle the alias CASE WHEN portion of the query
		$case_when_item_alias = ' CASE WHEN ';
		$case_when_item_alias .= $query->charLength('a.alias', '!=', '0');
		$case_when_item_alias .= ' THEN ';
		$a_id = $query->castAsChar('a.id');
		$case_when_item_alias .= $query->concatenate(array($a_id, 'a.alias'), ':');
		$case_when_item_alias .= ' ELSE ';
		$case_when_item_alias .= $a_id . ' END as slug';
		$query->select($case_when_item_alias);

		$case_when_category_alias = ' CASE WHEN ';
		$case_when_category_alias .= $query->charLength('c.alias', '!=', '0');
		$case_when_category_alias .= ' THEN ';
		$c_id = $query->castAsChar('c.id');
		$case_when_category_alias .= $query->concatenate(array($c_id, 'c.alias'), ':');
		$case_when_category_alias .= ' ELSE ';
		$case_when_category_alias .= $c_id . ' END as catslug';
		$query->select($case_when_category_alias)

			->select('u.name AS author')
			->from('#__content AS a')
			->join('LEFT', '#__categories AS c ON c.id = a.catid')
			->join('LEFT', '#__users AS u ON u.id = a.created_by');

		return $query;
	}
}
PK�%"]�=�bbcontact/contact.xmlnu&1i�PK�%"]=�S����contact/contact.phpnu&1i�PK�%"]��2�22�sudesign_audio/install.phpnu&1i�PK�%"]W�4�	�	!\sudesign_audio/sudesign_audio.xmlnu&1i�PK�%"]�2��GG!4"sudesign_audio/sudesign_audio.phpnu&1i�PK�%"]�4sudesign_audio/index.htmlnu&1i�PK�%"]��FN�F�F5sudesign_audio/gpl-2.0.txtnu&1i�PK�%"]�(8PP|sudesign_audio/lib/loading.gifnu&1i�PK�%"]:��d��!��sudesign_audio/lib/background.pngnu&1i�PK�%"]5��f�,�,1��sudesign_audio/lib/mediaelement-and-player.min.jsnu&1i�PK�%"]�1P����(��sudesign_audio/lib/flashmediaelement.swfnu&1i�PK�%"]��֡sudesign_audio/lib/bigplay.svgnu&1i�PK�%"]s+���#6�sudesign_audio/lib/controls-wmp.pngnu&1i�PK�%"]l[{T#�sudesign_audio/lib/controls-ted.pngnu&1i�PK�%"]E�ϲh(h(%z�sudesign_audio/lib/controls-black.svgnu&1i�PK�%"]	��)�R�R&7�sudesign_audio/lib/jquery-3.2.1.min.jsnu&1i�PK�%"]8p޹�)>sudesign_audio/lib/bigplay.pngnu&1i�PK�%"]�N�h(h(#0Jsudesign_audio/lib/controls-red.svgnu&1i�PK�%"]/ݾ�3M3M-�rsudesign_audio/lib/mediaelementplayer.min.cssnu&1i�PK�%"]C��B6B6!{�sudesign_audio/lib/bigplay.fw.pngnu&1i�PK�%"]A�ܗ�0�0.�sudesign_audio/lib/silverlightmediaelement.xapnu&1i�PK�%"]�hFh(h($(sudesign_audio/lib/controls-blue.svgnu&1i�PK�%"]�/W�dd�Psudesign_audio/lib/controls.pngnu&1i�PK�%"]��)\����,�Xsudesign_audio/lib/flashmediaelement-cdn.swfnu&1i�PK�%"]`}��q;q;"�7sudesign_audio/lib/controls.fw.pngnu&1i�PK�%"]nz6h(h(�ssudesign_audio/lib/controls.svgnu&1i�PK�%"]�|�ߨ�&@�sudesign_audio/lib/controls-wmp-bg.pngnu&1i�PK�%"]�]h(h(%>�sudesign_audio/lib/controls-green.svgnu&1i�PK�%"]��sudesign_audio/lib/index.htmlnu&1i�PK�%"]�[z6��H�loadmodule/loadmodule.xmlnu&1i�PK�%"]Ձ�$��*�loadmodule/loadmodule.phpnu&1i�PK�%"]:k��!9�pagenavigation/pagenavigation.phpnu&1i�PK�%"]f�;��!�	pagenavigation/pagenavigation.xmlnu&1i�PK�%"]@4�	pagenavigation/tmpl/default.phpnu&1i�PK�%"]4M�FF�	finder/finder.xmlnu&1i�PK�%"]c|���#	finder/finder.phpnu&1i�PK�%"]��`�jj
1-	vote/vote.phpnu&1i�PK�%"]m*�~~
�;	vote/vote.xmlnu&1i�PK�%"]'��ww�@	vote/tmpl/rating.phpnu&1i�PK�%"]^�y��NG	vote/tmpl/vote.phpnu&1i�PK�%"]}$*�%�%?N	pagebreak/pagebreak.phpnu&1i�PK�%"]��^{t	pagebreak/pagebreak.xmlnu&1i�PK�%"]�54س��	pagebreak/tmpl/navigation.phpnu&1i�PK�%"]f ph��م	pagebreak/tmpl/toc.phpnu&1i�PK�%"]P�Ltt$�	confirmconsent/fields/consentbox.phpnu&1i�PK�%"]�5�77!ݣ	confirmconsent/confirmconsent.xmlnu&1i�PK�%"]�p�|��!e�	confirmconsent/confirmconsent.phpnu&1i�PK�%"]`,�$$��	josdewplayer/dewplayer.swfnu&1i�PK�%"]�Dj����	josdewplayer/josdewplayer.phpnu&1i�PK�%"]�4��EEA�	josdewplayer/josdewplayer.xmlnu&1i�PK�%"]�V� ��	josdewplayer/playlist/index.htmlnu&1i�PK�%"]��ʥRR(B�	josdewplayer/playlist/playlist-small.xmlnu&1i�PK�%"]
2��#�#��	josdewplayer/dewplayer-rect.swfnu&1i�PK�%"]j�m��+�+#
josdewplayer/dewplayer-playlist.swfnu&1i�PK�%"]�V�&DB
josdewplayer/language/ru-RU/index.htmlnu&1i�PK�%"]��׆$$>�B
josdewplayer/language/ru-RU/ru-RU.plg_content_josdewplayer.ininu&1i�PK�%"]����--BKU
josdewplayer/language/ru-RU/ru-RU.plg_content_josdewplayer.sys.ininu&1i�PK�%"]�V�&�c
josdewplayer/language/en-GB/index.htmlnu&1i�PK�%"]Jc+
+
B_d
josdewplayer/language/en-GB/en-GB.plg_content_josdewplayer.sys.ininu&1i�PK�%"]琭SS>�n
josdewplayer/language/en-GB/en-GB.plg_content_josdewplayer.ininu&1i�PK�%"]�o�^
^
>�{
josdewplayer/language/fr-FR/fr-FR.plg_content_josdewplayer.ininu&1i�PK�%"]m��
�
B��
josdewplayer/language/fr-FR/fr-FR.plg_content_josdewplayer.sys.ininu&1i�PK�%"]�V�&ǔ
josdewplayer/language/fr-FR/index.htmlnu&1i�PK�%"]�V�<�
josdewplayer/index.htmlnu&1i�PK�%"]�ߟ$�$ ��
josdewplayer/dewplayer-multi.swfnu&1i�PK�%"]���qq��
fields/fields.xmlnu&1i�PK�%"]��ig``C�
fields/fields.phpnu&1i�PK�%"]�|f..��
joomla/joomla.xmlnu&1i�PK�%"]'/�"�"S�
joomla/joomla.phpnu&1i�PK�%"]tKh��D�D��
emailcloak/emailcloak.phpnu&1i�PK�%"](q����=emailcloak/emailcloak.xmlnu&1i�PK�a"]n��!((�Bcontent.xmlnu&1i�PK�a"]m�jk++PFcontent.phpnu&1i�PKII`�q