diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 10ad225e..43761261 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -2,4 +2,4 @@ Contributing to ccdproc ----------------------- Contributions for ccdproc should follow the [guidelines for contributing to -astropy](https://github.com/astropy/astropy/blob/master/CONTRIBUTING.md). +astropy](https://github.com/astropy/astropy/blob/main/CONTRIBUTING.md). diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml new file mode 100644 index 00000000..9358e80e --- /dev/null +++ b/.github/workflows/ci_tests.yml @@ -0,0 +1,104 @@ +name: CI + +on: + push: + pull_request: + schedule: + # run every Monday at 6am UTC + - cron: '0 6 * * 1' + +env: + SETUP_XVFB: True # avoid issues if mpl tries to open a GUI window + TOXARGS: '-v' + +jobs: + ci-tests: + name: ${{ matrix.name }} + runs-on: ${{ matrix.os }} + if: "!(contains(github.event.head_commit.message, '[skip ci]') || contains(github.event.head_commit.message, '[ci skip]'))" + strategy: + matrix: + include: + - name: 'ubuntu-py38-oldestdeps' + os: ubuntu-latest + python: '3.8' + # Test the oldest supported dependencies on the oldest supported Python + tox_env: 'py38-test-oldestdeps' + + - name: 'macos-py310-astroscrappy11' + # Keep this test until astroscrappy 1.1.0 is the oldest supported + # version. + os: macos-latest + python: '3.10' + tox_env: 'py310-test-astroscrappy11' + + - name: 'ubuntu-py39' + os: ubuntu-latest + python: '3.9' + tox_env: 'py39-test-alldeps-numpy119-cov' + + - name: 'ubuntu-py39-bottleneck' + os: ubuntu-latest + python: '3.9' + tox_env: 'py39-test-alldeps-numpy119-cov-bottleneck' + + - name: 'ubuntu-py310' + os: ubuntu-latest + python: '3.10' + tox_env: 'py310-test-alldeps-numpy121' + + - name: 'macos-py39' + os: macos-latest + python: '3.9' + tox_env: 'py39-test-alldeps' + + - name: 'windows-py310' + os: windows-latest + python: '3.10' + tox_env: 'py310-test-alldeps' + + - name: 'ubuntu-codestyle' + os: ubuntu-latest + python: '3.10' + tox_env: 'pycodestyle' + + - name: 'ubuntu-build_docs' + os: ubuntu-latest + python: '3.10' + tox_env: 'build_docs' + + - name: 'ubuntu-py310-test-alldeps-devdeps' + os: ubuntu-latest + python: '3.10' + tox_env: 'py310-test-alldeps-devdeps' + + steps: + - name: Check out repository + uses: actions/checkout@v2 + - name: Set up Python ${{ matrix.python }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python }} + - name: Install base dependencies + run: | + python -m pip install --upgrade pip + python -m pip install tox wheel + - name: Install graphviz dependency + if: "endsWith(matrix.tox_env, 'build_docs')" + run: sudo apt-get -y install graphviz + - name: Print Python, pip, setuptools, and tox versions + run: | + python -c "import sys; print(f'Python {sys.version}')" + python -c "import pip; print(f'pip {pip.__version__}')" + python -c "import setuptools; print(f'setuptools {setuptools.__version__}')" + python -c "import tox; print(f'tox {tox.__version__}')" + - name: Run tests + if: "! matrix.use_remote_data" + run: | + tox -e ${{ matrix.tox_env }} -- ${{ matrix.toxposargs }} + # - name: Run tests with remote data + # if: "matrix.use_remote_data" + # run: tox -e ${{ matrix.tox_env }} -- --remote-data=any + - name: Upload coverage to codecov + if: "endsWith(matrix.tox_env, '-cov')" + uses: codecov/codecov-action@v2 diff --git a/.gitignore b/.gitignore index da48c617..71b51f82 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,7 @@ pip-wheel-metadata .tox .*.sw[op] *~ +*.asv # Mac OSX .DS_Store diff --git a/.readthedocs.yml b/.readthedocs.yml index b4d0b259..d180ab09 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -4,7 +4,7 @@ build: image: latest python: - version: 3.7 + version: 3.8 install: - method: pip path: . diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 7b1f4f8e..00000000 --- a/.travis.yml +++ /dev/null @@ -1,85 +0,0 @@ -language: c - -# Setting sudo to false opts in to Travis-CI container-based builds. -sudo: false - -# The apt packages below are needed for sphinx builds, which can no longer -# be installed with sudo apt-get. -addons: - apt: - packages: - - graphviz - - texlive-latex-extra - - dvipng - -env: - global: - # The following versions are the 'default' for tests, unless - # overridden underneath. They are defined here in order to save having - # to repeat them for all configurations. - - NUMPY_VERSION=stable - - ASTROPY_VERSION=stable - - MAIN_CMD='pytest' - - SETUP_CMD='ccdproc' - - CONDA_CHANNELS='astropy' - - ASTROPY_USE_SYSTEM_PYTEST=1 - - # List runtime dependencies for the package that are available as conda - # packages here. - - CONDA_DEPENDENCIES='memory_profiler' - - matrix: - - SETUP_CMD='egg_info' - -matrix: - include: - - env: PYTHON_VERSION=3.7 - SETUP_CMD='--cov ccdproc' - - # Do a windows run - - os: windows - env: PYTHON_VERSION=3.7 - ASTROPY_VERSION=stable - NUMPY_VERSION=stable - - # Try Astropy development versions. This requires them to be - # compiled during setup which takes some time. - # Building against numpy dev was removed because it was causing - # failures due to numpy dev/astropy dev conflicts unresolvable - # in ccdproc. - - env: PYTHON_VERSION=3.7 - ASTROPY_VERSION=development - NUMPY_VERSION=stable - - # Check for sphinx doc build warnings - - env: PYTHON_VERSION=3.7 - MAIN_CMD='tox -e' - SETUP_CMD='build_docs' - - - env: NUMPY_VERSION=1.16 - PYTHON_VERSION=3.6 - - # Try numpy pre-release version. This runs only when a pre-release - # is available on pypi. - - env: PYTHON_VERSION=3.7 - NUMPY_VERSION=prerelease - - # pycodestyle test, see setup.cfg for tested pep8 warnings/errors - - env: PYTHON_VERSION=3.7 - MAIN_CMD='pycodestyle ccdproc --count --show-source --show-pep8' - SETUP_CMD='' - -install: - - git clone git://github.com/astropy/ci-helpers.git - - source ci-helpers/travis/setup_conda.sh - - -script: - - pip install tox tox-pypi-filter --upgrade - - pip install -e . - - $MAIN_CMD $SETUP_CMD - -after_success: - # Upload coverage results. - - pip install codecov - - codecov diff --git a/AUTHORS.rst b/AUTHORS.rst index d0a05093..68302d9c 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -10,23 +10,30 @@ Project Coordinators * Matt Craig (@mwcraig) * Steve Crawford (@crawfordsm) -* Michael Seifert (@MSeifert04) +Coordinators Emeritus +--------------------- + +* Michael Seifert (@MSeifert04) -Alphabetical list of contributors ---------------------------------- +Alphabetical list of code contributors +-------------------------------------- -* Jaime A. Alvarado-Montes (@seap-jaime) +* Jaime A. Alvarado-Montes (@JAAlvarado-Montes) * Yoonsoo P. Bach (@ysBach) * Kyle Barbary (@kbarbary) * Javier Blasco (@javierblasco) +* Attila Bódi (@astrobatty) +* Larry Bradley (@larrybradley) * Julio C. N. Campagnolo (@juliotux) * Mihai Cara (@mcara) * James Davenport (@jradavenport) * Christoph Deil (@cdeil) +* Timothy P. Ellsworth-Bowers (@tbowers7) +* Forrest Gasdia (@fgasdia) * Carlos Gomez (@carlgogo) +* Yash Gondhalekar (@Yash-10) * Hans Moritz Günther (@hamogu) -* Forrest Gasdia (@EP-Guy) * Nathan Heidt (@heidtha) * Michael Hlabathe (@hlabathems) * Elias Holte (@Sondanaa) @@ -34,21 +41,23 @@ Alphabetical list of contributors * Jennifer Karr (@JenniferKarr) * Yücel Kılıç (@yucelkilic) * Kelvin Lee (@laserkelvin) +* Pey Lian Lim (@pllim) * James McCormac (@jmccormac01) +* Abigale Moen (@AbigaleMoen) * Stefan Nelson (@stefannelson) * Joe Philip Ninan (@indiajoe) * Punyaslok Pattnaik (@Punyaslok) * Adrian Price-Whelan (@adrn) +* JVSN Reddy (@janga1997) * Luca Rizzi (@lucarizzi) +* Thomas Robitaille (@astrofrog) * Evert Rol (@evertrol) +* Jenna Ryon (@jryon) * William Schoenell (@wschoenell) * Sourav Singh (@souravsingh) -* Brigitta Sipocz (@bsipocz) +* Brigitta Sipőcz (@bsipocz) * Connor Stotts (@stottsco) * Ole Streicher (@olebole) -* JVSN Reddy (@janga1997) -* Jenna Ryon (@jryon) -* Brigitta Sipocz (@bsipocz) * Erik Tollerud (@eteq) * Simon Torres (@simontorres) * Zè Vinícius (@mirca) @@ -58,7 +67,25 @@ Alphabetical list of contributors * Jiyong Youn (@hletrd) * Michael Gully-Santiago (@gully) +Additional contributors +----------------------- + +The people below have helped the project by opening multiple issues, suggesting +improvements outside of GitHub, or otherwise assisted the project. + +* Juan Cabanela (@JuanCab) +* @mheida +* Aaron W Morris (@aaronwmorris) +* Sara Ogaz (@SaOgaz) +* Jean-Paul Ventura (@jvntra) +* Kerry Paterson (@KerryPaterson) +* Jane Rigby (@janerigby) +* Kris Stern (@kakirastern) +* Alexa Villaume (@AlexaVillaume) +* Brian York (@york-stsci) +* Sylvielsstfr (@sylvielsstfr) + (If you have contributed to the ccdproc project and your name is missing, please send an email to the coordinators, or -`open a pull request for this page `_ +`open a pull request for this page `_ in the `ccdproc repository `_) diff --git a/CHANGES.rst b/CHANGES.rst index 6dd5a24b..b9820636 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,114 @@ -2.1.1 (unreleased) +2.4.1 (unreleased) ------------------ New Features ^^^^^^^^^^^^ +Other Changes and Additions +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Bug Fixes +^^^^^^^^^ + +2.4.1 (2023-05-30) +------------------ + +New Features +^^^^^^^^^^^^ + +Other Changes and Additions +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Bug Fixes +^^^^^^^^^ + +- Fixes a crash when attempting to filter an already-empty ImageFileCollection, + instead simply returning an empty ImageFileCollection. [#801] + +- Fixes minimum astropy version in installation requirements. [#799] + +2.4.0 (2022-11-16) +------------------ + +New Features +^^^^^^^^^^^^ + +Other Changes and Additions +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- The sigma clipping option in the image combiner now always uses the + astropy sigma clipping function, and supports specifying the + functions to use for estimating the center and deviation values + as strings for common cases (which significantly improves performance). [#794] +- The image combiner now allows the optional overwrite of the optional + output FITS file. [#797] + +Bug Fixes +^^^^^^^^^ + +2.3.1 (2022-05-09) +------------------ + +New Features +^^^^^^^^^^^^ + +Other Changes and Additions +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Bug Fixes +^^^^^^^^^ + +- In python 3.7 the ``version`` method from ``packaging`` must be + imported directly. [#786] + +2.3.0 (2021-12-21) +------------------ + +Other Changes and Additions +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +- The ``rebin`` function has been more clearly marked with a deprecation + milestone. It will be removed in v3. [#780] + +Bug Fixes +^^^^^^^^^ + +- Fixes compatibility with ``astroscrappy`` version ``1.1.0`` and deprecates + old keyword arguments no longer used by ``astroscrappy``. [#777, #778] + +2.2.0 (2021-05-24) +------------------ + +New Features +^^^^^^^^^^^^ + +- Image combination is faster for average and sum combine, and improves + for all operations if the ``bottleneck`` package is installed. [#741] + +- Pixel-wise weighting can be done for sum and average combine. [#741] + +Other Changes and Additions +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Bug Fixes +^^^^^^^^^ + +- When filtering an ``ImageFileCollection`` by keyword value, and not + explicitly using a regex search pattern (``regex_match=True``), escape all + special characters in the keyword value for a successful search. [#770] + +- Return mask and uncertainty from ``combine`` even if input images have no + mask or uncertainty. [#775] + +2.1.1 (2021-03-15) +------------------ + +New Features +^^^^^^^^^^^^ + +- Improve integration of ``ImageFileCollection`` with image combination + and document that integration [#762] + Other Changes and Additions ^^^^^^^^^^^^^^^^^^^^^^^^^^^ - Add memory_profiler as a test requirement [#739] @@ -14,7 +119,16 @@ Bug Fixes ^^^^^^^^^ - ``test_image_collection.py`` in the test suite no longer produces - permanent files on disk and cleans up after itself. [#738] + permanent files on disk and cleans up after itself. [#738] + +- Change ``Combiner`` to allow accepting either a list or a generator [#757] + +- ``ImageFileCollection`` now correctly returns an empty collection when + an existing collection is filtered restrictively enough to remove all + files. [#750] + +- Logging now preserves all of the arguments when the keyword argument + names are not used. [#756] - Workaround malformed header keyword names [#743] diff --git a/README.rst b/README.rst index e7a386eb..c37cdd1d 100644 --- a/README.rst +++ b/README.rst @@ -1,14 +1,15 @@ ccdproc ======= -.. image:: https://travis-ci.org/astropy/ccdproc.svg?branch=master - :target: https://travis-ci.org/astropy/ccdproc +.. image:: https://github.com/astropy/ccdproc/workflows/CI/badge.svg + :target: https://github.com/astropy/ccdproc/actions + :alt: GitHub Actions CI Status .. image:: https://coveralls.io/repos/astropy/ccdproc/badge.svg :target: https://coveralls.io/r/astropy/ccdproc -.. image:: https://zenodo.org/badge/12153/astropy/ccdproc.svg - :target: https://zenodo.org/badge/latestdoi/12153/astropy/ccdproc +.. image:: https://zenodo.org/badge/13384007.svg + :target: https://zenodo.org/badge/latestdoi/13384007 Ccdproc is is an affiliated package for the AstroPy package for basic data diff --git a/ccdproc.cfg b/ccdproc.cfg deleted file mode 100644 index bc946666..00000000 --- a/ccdproc.cfg +++ /dev/null @@ -1,5 +0,0 @@ -[ccdproc] -# auto_logging = True -# Whether to automatically log operations to metadata -# If set to False, there is no need to specify add_keyword=False -# when calling processing operations diff --git a/ccdproc/__init__.py b/ccdproc/__init__.py index 432308a8..73c00cac 100644 --- a/ccdproc/__init__.py +++ b/ccdproc/__init__.py @@ -8,34 +8,26 @@ # Affiliated packages may add whatever they like to this file, but # should keep this content at the top. # ---------------------------------------------------------------------------- -from ._astropy_init import * +from ._astropy_init import * # noqa # ---------------------------------------------------------------------------- -# set up the version -from pkg_resources import get_distribution, DistributionNotFound +# set up namespace +from .core import * # noqa +from .ccddata import * # noqa +from .combiner import * # noqa +from .image_collection import * # noqa +from astropy import config as _config -try: - __version__ = get_distribution(__name__).version -except DistributionNotFound: - # package is not installed - __version__ = 'unknown' -# set up namespace, unless we are in setup... -if not _ASTROPY_SETUP_: - from .core import * - from .ccddata import * - from .combiner import * - from .image_collection import * - from astropy import config as _config +class Conf(_config.ConfigNamespace): + """Configuration parameters for ccdproc.""" + auto_logging = _config.ConfigItem( + True, + 'Whether to automatically log operations to metadata' + 'If set to False, there is no need to specify add_keyword=False' + 'when calling processing operations.' + ) - class Conf(_config.ConfigNamespace): - """ - Configuration parameters for ccdproc. - """ - auto_logging = _config.ConfigItem( - True, - 'Whether to automatically log operations to metadata' - 'If set to False, there is no need to specify add_keyword=False' - 'when calling processing operations.' - ) - conf = Conf() + +conf = Conf() +del _config diff --git a/ccdproc/_astropy_init.py b/ccdproc/_astropy_init.py index 6e29c563..bd453245 100644 --- a/ccdproc/_astropy_init.py +++ b/ccdproc/_astropy_init.py @@ -1,133 +1,13 @@ # Licensed under a 3-clause BSD style license - see LICENSE.rst +import os __all__ = ['__version__', 'test'] -# this indicates whether or not we are in the package's setup.py -try: - _ASTROPY_SETUP_ -except NameError: - import builtins - builtins._ASTROPY_SETUP_ = False - try: from .version import version as __version__ except ImportError: __version__ = '' - -# set up the test command -def _get_test_runner(): - import os - from astropy.tests.helper import TestRunner - return TestRunner(os.path.dirname(__file__)) - - -def test(package=None, test_path=None, args=None, plugins=None, - verbose=False, pastebin=None, remote_data=False, pep8=False, - pdb=False, coverage=False, open_files=False, **kwargs): - """ - Run the tests using `py.test `__. A proper set - of arguments is constructed and passed to `pytest.main`_. - - .. _py.test: http://pytest.org/latest/ - .. _pytest.main: http://pytest.org/latest/builtin.html#pytest.main - - Parameters - ---------- - package : str, optional - The name of a specific package to test, e.g. 'io.fits' or 'utils'. - If nothing is specified all default tests are run. - - test_path : str, optional - Specify location to test by path. May be a single file or - directory. Must be specified absolutely or relative to the - calling directory. - - args : str, optional - Additional arguments to be passed to pytest.main_ in the ``args`` - keyword argument. - - plugins : list, optional - Plugins to be passed to pytest.main_ in the ``plugins`` keyword - argument. - - verbose : bool, optional - Convenience option to turn on verbose output from py.test_. Passing - True is the same as specifying ``'-v'`` in ``args``. - - pastebin : {'failed','all',None}, optional - Convenience option for turning on py.test_ pastebin output. Set to - ``'failed'`` to upload info for failed tests, or ``'all'`` to upload - info for all tests. - - remote_data : bool, optional - Controls whether to run tests marked with @remote_data. These - tests use online data and are not run by default. Set to True to - run these tests. - - pep8 : bool, optional - Turn on PEP8 checking via the `pytest-pep8 plugin - `_ and disable normal - tests. Same as specifying ``'--pep8 -k pep8'`` in ``args``. - - pdb : bool, optional - Turn on PDB post-mortem analysis for failing tests. Same as - specifying ``'--pdb'`` in ``args``. - - coverage : bool, optional - Generate a test coverage report. The result will be placed in - the directory htmlcov. - - open_files : bool, optional - Fail when any tests leave files open. Off by default, because - this adds extra run time to the test suite. Works only on - platforms with a working ``lsof`` command. - - parallel : int, optional - When provided, run the tests in parallel on the specified - number of CPUs. If parallel is negative, it will use the all - the cores on the machine. Requires the - `pytest-xdist `_ plugin - installed. Only available when using Astropy 0.3 or later. - - kwargs - Any additional keywords passed into this function will be passed - on to the astropy test runner. This allows use of test-related - functionality implemented in later versions of astropy without - explicitly updating the package template. - - """ - test_runner = _get_test_runner() - return test_runner.run_tests( - package=package, test_path=test_path, args=args, - plugins=plugins, verbose=verbose, pastebin=pastebin, - remote_data=remote_data, pep8=pep8, pdb=pdb, - coverage=coverage, open_files=open_files, **kwargs) - - -if not _ASTROPY_SETUP_: - import os - from warnings import warn - from astropy import config - - # add these here so we only need to cleanup the namespace at the end - config_dir = None - - if not os.environ.get('ASTROPY_SKIP_CONFIG_UPDATE', False): - config_dir = os.path.dirname(__file__) - config_template = os.path.join(config_dir, __package__ + ".cfg") - if os.path.isfile(config_template): - try: - config.configuration.update_default_config( - __package__, config_dir, version=__version__) - except TypeError as orig_error: - try: - config.configuration.update_default_config( - __package__, config_dir) - except config.configuration.ConfigurationDefaultMissingError as e: - wmsg = (e.args[0] + " Cannot install default profile. If you are " - "importing from source, this is expected.") - warn(config.configuration.ConfigurationDefaultMissingWarning(wmsg)) - del e - except: - raise orig_error +# Create the test function for self test +from astropy.tests.runner import TestRunner +test = TestRunner.make_test_runner_in(os.path.dirname(__file__)) diff --git a/ccdproc/combiner.py b/ccdproc/combiner.py index 2e6eefc5..e068437c 100644 --- a/ccdproc/combiner.py +++ b/ccdproc/combiner.py @@ -4,14 +4,52 @@ import numpy as np from numpy import ma + +try: + import bottleneck as bn +except ImportError: + HAS_BOTTLENECK = False +else: + HAS_BOTTLENECK = True + from .core import sigma_func from astropy.nddata import CCDData, StdDevUncertainty +from astropy.stats import sigma_clip +from astropy.utils import deprecated_renamed_argument from astropy import log __all__ = ['Combiner', 'combine'] +def _default_median(): # pragma: no cover + if HAS_BOTTLENECK: + return bn.nanmedian + else: + return np.nanmedian + + +def _default_average(): # pragma: no cover + if HAS_BOTTLENECK: + return bn.nanmean + else: + return np.nanmean + + +def _default_sum(): # pragma: no cover + if HAS_BOTTLENECK: + return bn.nansum + else: + return np.nansum + + +def _default_std(): # pragma: no cover + if HAS_BOTTLENECK: + return bn.nanstd + else: + return np.nanstd + + class Combiner: """ A class for combining CCDData objects. @@ -22,8 +60,8 @@ class Combiner: Parameters ----------- - ccd_list : list - A list of CCDData objects that will be combined together. + ccd_iter : list or generator + A list or generator of CCDData objects that will be combined together. dtype : str or `numpy.dtype` or None, optional Allows user to set dtype. See `numpy.array` ``dtype`` parameter @@ -33,7 +71,7 @@ class Combiner: Raises ------ TypeError - If the ``ccd_list`` are not `~astropy.nddata.CCDData` objects, have different + If the ``ccd_iter`` are not `~astropy.nddata.CCDData` objects, have different units, or are different shapes. Examples @@ -54,17 +92,20 @@ class Combiner: CCDData([[ 0.66666667, 0.66666667, 0.66666667, 0.66666667], [ 0.66666667, 0.66666667, 0.66666667, 0.66666667], [ 0.66666667, 0.66666667, 0.66666667, 0.66666667], - [ 0.66666667, 0.66666667, 0.66666667, 0.66666667]]) + [ 0.66666667, 0.66666667, 0.66666667, 0.66666667]]...) """ - def __init__(self, ccd_list, dtype=None): - if ccd_list is None: - raise TypeError("ccd_list should be a list of CCDData objects.") + def __init__(self, ccd_iter, dtype=None): + if ccd_iter is None: + raise TypeError("ccd_iter should be a list or a generator of CCDData objects.") if dtype is None: dtype = np.float64 default_shape = None default_unit = None + + ccd_list = list(ccd_iter) + for ccd in ccd_list: # raise an error if the objects aren't CCDData objects if not isinstance(ccd, CCDData): @@ -254,8 +295,13 @@ def minmax_clipping(self, min_clip=None, max_clip=None): self.data_arr.mask[mask] = True # set up sigma clipping algorithms + @deprecated_renamed_argument('use_astropy', None, arg_in_kwargs=True, + since='2.4.0', + message='The use_astropy argument has been removed because ' + 'astropy sigma clipping is now always used.' + ) def sigma_clipping(self, low_thresh=3, high_thresh=3, - func=ma.mean, dev_func=ma.std): + func='mean', dev_func='std', **kwd): """ Pixels will be rejected if they have deviations greater than those set by the threshold values. The algorithm will first calculated @@ -266,6 +312,7 @@ def sigma_clipping(self, low_thresh=3, high_thresh=3, Parameters ----------- + low_thresh : positive float or None, optional Threshold for rejecting pixels that deviate below the baseline value. If negative value, then will be convert to a positive @@ -277,31 +324,40 @@ def sigma_clipping(self, low_thresh=3, high_thresh=3, value. If None, no rejection will be done based on high_thresh. Default is 3. - func : function, optional - Function for calculating the baseline values (i.e. `numpy.ma.mean` - or `numpy.ma.median`). This should be a function that can handle - `numpy.ma.MaskedArray` objects. - Default is `numpy.ma.mean`. - - dev_func : function, optional - Function for calculating the deviation from the baseline value - (i.e. `numpy.ma.std`). This should be a function that can handle - `numpy.ma.MaskedArray` objects. - Default is `numpy.ma.std`. + func : {'median', 'mean'} or callable, optional + The statistic or callable function/object used to compute + the center value for the clipping. If using a callable + function/object and the ``axis`` keyword is used, then it must + be able to ignore NaNs (e.g., `numpy.nanmean`) and it must have + an ``axis`` keyword to return an array with axis dimension(s) + removed. The default is ``'median'``. + + dev_func : {'std', 'mad_std'} or callable, optional + The statistic or callable function/object used to compute the + standard deviation about the center value. If using a callable + function/object and the ``axis`` keyword is used, then it must + be able to ignore NaNs (e.g., `numpy.nanstd`) and it must have + an ``axis`` keyword to return an array with axis dimension(s) + removed. The default is ``'std'``. + + kwd + Any remaining keyword arguments are passed to astropy's + :func:`~astropy.stats.sigma_clip` function. """ - # setup baseline values - baseline = func(self.data_arr, axis=0) - dev = dev_func(self.data_arr, axis=0) - # reject values - if low_thresh is not None: - # check for negative numbers in low_thresh - if low_thresh < 0: - low_thresh = abs(low_thresh) - mask = (self.data_arr - baseline < -low_thresh * dev) - self.data_arr.mask[mask] = True - if high_thresh is not None: - mask = (self.data_arr - baseline > high_thresh * dev) - self.data_arr.mask[mask] = True + + # Remove in 3.0 + _ = kwd.pop('use_astropy', True) + + self.data_arr.mask = sigma_clip(self.data_arr.data, + sigma_lower=low_thresh, + sigma_upper=high_thresh, + axis=kwd.get('axis', 0), + copy=kwd.get('copy', False), + maxiters=kwd.get('maxiters', 1), + cenfunc=func, + stdfunc=dev_func, + masked=True, + **kwd).mask def _get_scaled_data(self, scale_arg): if scale_arg is not None: @@ -310,8 +366,38 @@ def _get_scaled_data(self, scale_arg): return self.data_arr * self.scaling return self.data_arr + def _get_nan_substituted_data(self, data): + # Get the data as an unmasked array with masked values filled as NaN + if self.data_arr.mask.any(): + data = np.ma.filled(data, fill_value=np.nan) + else: + data = data.data + return data + + def _combination_setup(self, + user_func, + default_func, + scale_to): + """ + Handle the common pieces of image combination data/mask setup. + """ + data = self._get_scaled_data(scale_to) + + # Play it safe for now and only do the nan thing if the user is using + # the default combination function. + if user_func is None: + combo_func = default_func + # Subtitute NaN for masked entries + data = self._get_nan_substituted_data(data) + masked_values = np.isnan(data).sum(axis=0) + else: + masked_values = self.data_arr.mask.sum(axis=0) + combo_func = user_func + + return data, masked_values, combo_func + # set up the combining algorithms - def median_combine(self, median_func=ma.median, scale_to=None, + def median_combine(self, median_func=None, scale_to=None, uncertainty_func=sigma_func): """ Median combine a set of arrays. @@ -348,15 +434,28 @@ def median_combine(self, median_func=ma.median, scale_to=None, The uncertainty currently calculated using the median absolute deviation does not account for rejected pixels. """ - # set the data - data = median_func(self._get_scaled_data(scale_to), axis=0) + + data, masked_values, median_func = \ + self._combination_setup(median_func, + _default_median(), + scale_to) + + medianed = median_func(data, axis=0) # set the mask - masked_values = self.data_arr.mask.sum(axis=0) mask = (masked_values == len(self.data_arr)) # set the uncertainty - uncertainty = uncertainty_func(self.data_arr, axis=0) + + # This still uses numpy for the median because the astropy + # code requires that the median function take the argument + # overwrite_input and bottleneck doesn't allow that argument. + # This is ugly, but setting ignore_nan to True should make sure + # that either nans or masks are handled properly. + if uncertainty_func is sigma_func: + uncertainty = uncertainty_func(data, axis=0, ignore_nan=True) + else: + uncertainty = uncertainty_func(data, axis=0) # Divide uncertainty by the number of pixel (#309) uncertainty /= np.sqrt(len(self.data_arr) - masked_values) # Convert uncertainty to plain numpy array (#351) @@ -367,7 +466,7 @@ def median_combine(self, median_func=ma.median, scale_to=None, uncertainty = np.asarray(uncertainty) # create the combined image with a dtype matching the combiner - combined_image = CCDData(np.asarray(data.data, dtype=self.dtype), + combined_image = CCDData(np.asarray(medianed, dtype=self.dtype), mask=mask, unit=self.unit, uncertainty=StdDevUncertainty(uncertainty)) @@ -377,8 +476,26 @@ def median_combine(self, median_func=ma.median, scale_to=None, # return the combined image return combined_image - def average_combine(self, scale_func=ma.average, scale_to=None, - uncertainty_func=ma.std): + def _weighted_sum(self, data, sum_func): + """ + Perform weighted sum, used by both ``sum_combine`` and in some cases + by ``average_combine``. + """ + if self.weights.shape != data.shape: + # Add extra axes to the weights for broadcasting + weights = np.reshape(self.weights, [len(self.weights), 1, 1]) + else: + weights = self.weights + + # Turns out bn.nansum has an implementation that is not + # precise enough for float32 sums. Doing this should + # ensure the sums are carried out as float64 + weights = weights.astype('float64') + weighted_sum = sum_func(data * weights, axis=0) + return weighted_sum, weights + + def average_combine(self, scale_func=None, scale_to=None, + uncertainty_func=_default_std(), sum_func=_default_sum()): """ Average combine together a set of arrays. @@ -394,7 +511,7 @@ def average_combine(self, scale_func=ma.average, scale_to=None, ---------- scale_func : function, optional Function to calculate the average. Defaults to - `numpy.ma.average`. + `numpy.nanmean`. scale_to : float or None, optional Scaling factor used in the average combined image. If given, @@ -403,40 +520,57 @@ def average_combine(self, scale_func=ma.average, scale_to=None, uncertainty_func : function, optional Function to calculate uncertainty. Defaults to `numpy.ma.std`. + sum_func : function, optional + Function used to calculate sums, including the one done to + find the weighted average. Defaults to `numpy.nansum`. + Returns ------- combined_image: `~astropy.nddata.CCDData` CCDData object based on the combined input of CCDData objects. """ - # set up the data - data, wei = scale_func(self._get_scaled_data(scale_to), - axis=0, weights=self.weights, - returned=True) + data, masked_values, scale_func = \ + self._combination_setup(scale_func, + _default_average(), + scale_to) + # # set up the data + # data = self._get_scaled_data(scale_to) + + # # Subtitute NaN for masked entries + # data = self._get_nan_substituted_data(data) + + # Do NOT modify data after this -- we need it to be intact when we + # we get to the uncertainty calculation. + if self.weights is not None: + weighted_sum, weights = self._weighted_sum(data, sum_func) + mean = weighted_sum / sum_func(weights, axis=0) + else: + mean = scale_func(data, axis=0) + + # calculate the mask - # set up the mask - masked_values = self.data_arr.mask.sum(axis=0) mask = (masked_values == len(self.data_arr)) # set up the deviation - uncertainty = uncertainty_func(self.data_arr, axis=0) + uncertainty = uncertainty_func(data, axis=0) # Divide uncertainty by the number of pixel (#309) - uncertainty /= np.sqrt(len(self.data_arr) - masked_values) + uncertainty /= np.sqrt(len(data) - masked_values) # Convert uncertainty to plain numpy array (#351) uncertainty = np.asarray(uncertainty) # create the combined image with a dtype that matches the combiner - combined_image = CCDData(np.asarray(data.data, dtype=self.dtype), + combined_image = CCDData(np.asarray(mean, dtype=self.dtype), mask=mask, unit=self.unit, uncertainty=StdDevUncertainty(uncertainty)) # update the meta data - combined_image.meta['NCOMBINE'] = len(self.data_arr) + combined_image.meta['NCOMBINE'] = len(data) # return the combined image return combined_image - def sum_combine(self, sum_func=ma.sum, scale_to=None, - uncertainty_func=ma.std): + def sum_combine(self, sum_func=None, scale_to=None, + uncertainty_func=_default_std()): """ Sum combine together a set of arrays. @@ -455,7 +589,7 @@ def sum_combine(self, sum_func=ma.sum, scale_to=None, ---------- sum_func : function, optional Function to calculate the sum. Defaults to - `numpy.ma.sum`. + `numpy.nansum` or ``bottleneck.nansum``. scale_to : float or None, optional Scaling factor used in the sum combined image. If given, @@ -469,24 +603,31 @@ def sum_combine(self, sum_func=ma.sum, scale_to=None, combined_image: `~astropy.nddata.CCDData` CCDData object based on the combined input of CCDData objects. """ - # set up the data - data = sum_func(self._get_scaled_data(scale_to), axis=0) + + data, masked_values, sum_func = \ + self._combination_setup(sum_func, + _default_sum(), + scale_to) + + if self.weights is not None: + summed, weights = self._weighted_sum(data, sum_func) + else: + summed = sum_func(data, axis=0) # set up the mask - masked_values = self.data_arr.mask.sum(axis=0) mask = (masked_values == len(self.data_arr)) # set up the deviation - uncertainty = uncertainty_func(self.data_arr, axis=0) + uncertainty = uncertainty_func(data, axis=0) # Divide uncertainty by the number of pixel (#309) - uncertainty /= np.sqrt(len(self.data_arr) - masked_values) + uncertainty /= np.sqrt(len(data) - masked_values) # Convert uncertainty to plain numpy array (#351) uncertainty = np.asarray(uncertainty) # Multiply uncertainty by square root of the number of images - uncertainty *= len(self.data_arr) - masked_values + uncertainty *= len(data) - masked_values # create the combined image with a dtype that matches the combiner - combined_image = CCDData(np.asarray(data.data, dtype=self.dtype), + combined_image = CCDData(np.asarray(summed, dtype=self.dtype), mask=mask, unit=self.unit, uncertainty=StdDevUncertainty(uncertainty)) @@ -561,7 +702,8 @@ def combine(img_list, output_file=None, sigma_clip=False, sigma_clip_low_thresh=3, sigma_clip_high_thresh=3, sigma_clip_func=ma.mean, sigma_clip_dev_func=ma.std, - dtype=None, combine_uncertainty_function=None, **ccdkwargs): + dtype=None, combine_uncertainty_function=None, + overwrite_output=False, **ccdkwargs): """ Convenience function for combining multiple images. @@ -658,6 +800,12 @@ def combine(img_list, output_file=None, sum combine, otherwise use the function provided. Default is ``None``. + overwrite_output : bool, optional + If ``output_file`` is specified, this is passed to the + `astropy.nddata.fits_ccddata_writer` under the keyword ``overwrite``; + has no effect otherwise. + Default is ``False``. + ccdkwargs : Other keyword arguments for `astropy.nddata.fits_ccddata_reader`. Returns @@ -673,8 +821,12 @@ def combine(img_list, output_file=None, elif isinstance(img_list, str) and (',' in img_list): img_list = img_list.split(',') else: - raise ValueError( - "unrecognised input for list of images to combine.") + try: + # Maybe the input can be made into a list, so try that + img_list = list(img_list) + except TypeError: + raise ValueError( + "unrecognised input for list of images to combine.") # Select Combine function to call in Combiner if method == 'average': @@ -702,6 +854,16 @@ def combine(img_list, output_file=None, if ccd.data.dtype != dtype: ccd.data = ccd.data.astype(dtype) + # If the template image doesn't have an uncertainty, add one, because the + # result always has an uncertainty. + if ccd.uncertainty is None: + ccd.uncertainty = StdDevUncertainty(np.zeros_like(ccd.data)) + + # If the template doesn't have a mask, add one, because the result may have + # a mask + if ccd.mask is None: + ccd.mask = np.zeros_like(ccd.data, dtype=bool) + size_of_an_img = _calculate_size_of_image(ccd, combine_uncertainty_function) @@ -713,7 +875,7 @@ def combine(img_list, output_file=None, else: memory_factor = 2 - memory_factor *= 1.5 + memory_factor *= 1.3 # determine the number of chunks to split the images into no_chunks = int((memory_factor * size_of_an_img * no_of_img) / mem_limit) + 1 @@ -815,6 +977,6 @@ def combine(img_list, output_file=None, # Write fits file if filename was provided if output_file is not None: - ccd.write(output_file) + ccd.write(output_file, overwrite=overwrite_output) return ccd diff --git a/ccdproc/conftest.py b/ccdproc/conftest.py index 9a9f969d..2b662f45 100644 --- a/ccdproc/conftest.py +++ b/ccdproc/conftest.py @@ -14,28 +14,9 @@ def pytest_configure(config): config.option.astropy_header = True except ImportError: - # TODO: Remove this when astropy 2.x and 3.x support is dropped. - # Probably an old pytest-astropy package where the pytest_astropy_header - # is not a dependency. - try: - from astropy.tests.plugins.display import (pytest_report_header, - PYTEST_HEADER_MODULES, - TESTED_VERSIONS) - except ImportError: - # TODO: Remove this when astropy 2.x support is dropped. - # If that also did not work we're probably using astropy 2.0 - from astropy.tests.pytest_plugins import (pytest_report_header, - PYTEST_HEADER_MODULES, - TESTED_VERSIONS) + PYTEST_HEADER_MODULES = {} + TESTED_VERSIONS = {} -try: - # TODO: Remove this when astropy 2.x support is dropped. - # This is the way to get plugins in astropy 2.x - from astropy.tests.pytest_plugins import * -except ImportError: - # Otherwise they are installed as separate packages that pytest - # automagically finds. - pass from .tests.pytest_fixtures import * @@ -48,10 +29,6 @@ def pytest_configure(config): packagename = os.path.basename(os.path.dirname(__file__)) TESTED_VERSIONS[packagename] = version -# Uncomment the following line to treat all DeprecationWarnings as -# exceptions -# enable_deprecations_as_exceptions() - # Add astropy to test header information and remove unused packages. try: diff --git a/ccdproc/core.py b/ccdproc/core.py index 97be12de..863164de 100644 --- a/ccdproc/core.py +++ b/ccdproc/core.py @@ -5,6 +5,7 @@ import math import numbers import logging +from packaging import version as pkgversion import warnings import numpy as np @@ -17,7 +18,7 @@ from astropy import nddata from astropy.nddata import StdDevUncertainty, CCDData from astropy.wcs.utils import proj_plane_pixel_area -from astropy.utils import deprecated +from astropy.utils import deprecated, deprecated_renamed_argument import astropy # To get the version. from .utils.slices import slice_from_string @@ -843,7 +844,7 @@ def transform_image(ccd, transform_func, **kwargs): The syntax for transforming the array using `scipy.ndimage.shift`:: - >>> from scipy.ndimage.interpolation import shift + >>> from scipy.ndimage import shift >>> from ccdproc import transform_image >>> transformed = transform_image(arr1, shift, shift=(5.5, 8.1)) """ @@ -874,7 +875,7 @@ def transform_image(ccd, transform_func, **kwargs): if nccd.wcs is not None: warn = 'WCS information may be incorrect as no transformation was applied to it' - logging.warning(warn) + warnings.warn(warn, UserWarning) return nccd @@ -968,7 +969,7 @@ def wcs_project(ccd, target_wcs, target_shape=None, order='bilinear'): return nccd -def sigma_func(arr, axis=None): +def sigma_func(arr, axis=None, ignore_nan=False): """ Robust method for calculating the deviation of an array. ``sigma_func`` uses the median absolute deviation to determine the standard deviation. @@ -990,7 +991,9 @@ def sigma_func(arr, axis=None): uncertainty : float uncertainty of array estimated from median absolute deviation. """ - return stats.median_absolute_deviation(arr, axis=axis) * 1.482602218505602 + return (stats.median_absolute_deviation(arr, axis=axis, + ignore_nan=ignore_nan) + * 1.482602218505602) def setbox(x, y, mbox, xmax, ymax): @@ -1110,7 +1113,9 @@ def background_deviation_filter(data, bbox): return ndimage.generic_filter(data, sigma_func, size=(bbox, bbox)) -@deprecated('1.1') +@deprecated('1.1', + message='The rebin function will be removed in ccdproc 3.0 ' + 'Use block_reduce or block_replicate instead.') def rebin(ccd, newshape): """ Rebin an array to have a new shape. @@ -1302,13 +1307,22 @@ def median_filter(data, *args, **kwargs): return ndimage.median_filter(data, *args, **kwargs) +# This originally used the "message" argument but that is not +# supported until astropy 5, so use alternative instead. +@deprecated_renamed_argument('pssl', None, '2.3.0', + arg_in_kwargs=True, + alternative='The pssl keyword will be removed in ' + 'ccdproc 3.0. Use inbkg instead to have ' + 'astroscrappy temporarily remove the background ' + 'during processing.') def cosmicray_lacosmic(ccd, sigclip=4.5, sigfrac=0.3, objlim=5.0, gain=1.0, readnoise=6.5, satlevel=65535.0, pssl=0.0, niter=4, sepmed=True, cleantype='meanmask', fsmode='median', psfmodel='gauss', psffwhm=2.5, psfsize=7, psfk=None, psfbeta=4.765, verbose=False, - gain_apply=True): + gain_apply=True, + inbkg=None, invar=None): r""" Identify cosmic rays through the L.A. Cosmic technique. The L.A. Cosmic technique identifies cosmic rays by identifying pixels based on a variation @@ -1317,7 +1331,6 @@ def cosmicray_lacosmic(ccd, sigclip=4.5, sigfrac=0.3, [2]_. If you use this algorithm, please cite these two works. - Parameters ---------- ccd : `~astropy.nddata.CCDData` or `numpy.ndarray` @@ -1342,6 +1355,26 @@ def cosmicray_lacosmic(ccd, sigclip=4.5, sigfrac=0.3, Increase this value if cores of bright stars are flagged as cosmic rays. Default: 5.0. + inbkg : float numpy array, optional + A pre-determined background image, to be subtracted from ``indat`` + before running the main detection algorithm. + This is used primarily with spectroscopic data, to remove + sky lines and the cross-section of an object continuum during + iteration, "protecting" them from spurious rejection (see the above + paper). This background is not removed from the final, cleaned output + (``cleanarr``). This should be in units of "counts", the same units of indat. + This inbkg should be free from cosmic rays. When estimating the cosmic-ray + free noise of the image, we will treat ``inbkg`` as a constant Poisson + contribution to the variance. + + invar : float numpy array, optional + A pre-determined estimate of the data variance (ie. noise squared) in + each pixel, generated by previous processing of ``indat``. If provided, + this is used in place of an internal noise model based on ``indat``, + ``gain`` and ``readnoise``. This still gets median filtered and cleaned + internally, to estimate what the noise in each pixel *would* be in the + absence of cosmic rays. This should be in units of "counts" squared. + pssl : float, optional Previously subtracted sky level in ADU. We always need to work in electrons for cosmic ray detection, so we need to know the sky level @@ -1471,6 +1504,7 @@ def cosmicray_lacosmic(ccd, sigclip=4.5, sigfrac=0.3, updated with the detected cosmic rays. """ from astroscrappy import detect_cosmics + from astroscrappy import __version__ as asy_version # If we didn't get a quantity, put them in, with unit specified by the # documentation above. @@ -1483,20 +1517,65 @@ def cosmicray_lacosmic(ccd, sigclip=4.5, sigfrac=0.3, if not isinstance(readnoise, u.Quantity): readnoise = readnoise * u.electron + # Handle transition from old astroscrappy interface to new + old_astroscrappy_interface = (pkgversion.parse(asy_version) < + pkgversion.parse('1.1.0')) + + # Use this dictionary to define which keyword arguments are actually + # passed to astroscrappy. + asy_background_kwargs = {} + + # This is for handling the transition in astroscrappy versions + data_offset = 0 + + # Handle setting up the keyword arguments for both interfaces + if old_astroscrappy_interface: # pragma: no cover + new_args = dict(inbkg=inbkg, invar=invar) + bad_args = [] + for k, v in new_args.items(): + if v is not None: + bad_args.append(k) + + if bad_args: + s = 's' if len(bad_args) > 1 else '' + bads = ', '.join(bad_args) + raise TypeError(f'The argument{s} {bads} only valid for astroscrappy ' + '1.1.0 or higher.') + + if pssl != 0: + asy_background_kwargs = dict(pssl=pssl) + + else: + if pssl != 0: + if (inbkg is not None) or (invar is not None): + raise ValueError('Cannot set both pssl and inbkg') + + # The old version of astroscrappy added the bkg back in + # if pssl was provided. The new one does not, so set an offset + # here that we later add in then take out. + data_offset = pssl + + asy_background_kwargs = dict(inbkg=inbkg, invar=invar) + if isinstance(ccd, np.ndarray): data = ccd crmask, cleanarr = detect_cosmics( - data, inmask=None, sigclip=sigclip, + data + data_offset, inmask=None, sigclip=sigclip, sigfrac=sigfrac, objlim=objlim, gain=gain.value, - readnoise=readnoise.value, satlevel=satlevel, pssl=pssl, + readnoise=readnoise.value, satlevel=satlevel, niter=niter, sepmed=sepmed, cleantype=cleantype, fsmode=fsmode, psfmodel=psfmodel, psffwhm=psffwhm, psfsize=psfsize, psfk=psfk, psfbeta=psfbeta, - verbose=verbose) + verbose=verbose, + **asy_background_kwargs) + + cleanarr = cleanarr - data_offset + cleanarr = _astroscrappy_gain_apply_helper(cleanarr, + gain, + gain_apply, + old_astroscrappy_interface) - if not gain_apply and gain != 1.0: - cleanarr = cleanarr / gain return cleanarr, crmask elif isinstance(ccd, CCDData): @@ -1521,19 +1600,22 @@ def cosmicray_lacosmic(ccd, sigclip=4.5, sigfrac=0.3, readnoise.unit)) crmask, cleanarr = detect_cosmics( - ccd.data, inmask=ccd.mask, + ccd.data + data_offset, inmask=ccd.mask, sigclip=sigclip, sigfrac=sigfrac, objlim=objlim, gain=gain.value, - readnoise=readnoise.value, satlevel=satlevel, pssl=pssl, + readnoise=readnoise.value, satlevel=satlevel, niter=niter, sepmed=sepmed, cleantype=cleantype, fsmode=fsmode, psfmodel=psfmodel, psffwhm=psffwhm, - psfsize=psfsize, psfk=psfk, psfbeta=psfbeta, verbose=verbose) + psfsize=psfsize, psfk=psfk, psfbeta=psfbeta, verbose=verbose, + **asy_background_kwargs) # create the new ccd data object nccd = ccd.copy() - # Remove the gain scaling if it wasn't desired - if not gain_apply and gain != 1.0: - cleanarr = cleanarr / gain.value + cleanarr = cleanarr - data_offset + cleanarr = _astroscrappy_gain_apply_helper(cleanarr, + gain, + gain_apply, + old_astroscrappy_interface) # Fix the units if the gain is being applied. nccd.unit = ccd.unit * gain.unit @@ -1550,6 +1632,42 @@ def cosmicray_lacosmic(ccd, sigclip=4.5, sigfrac=0.3, raise TypeError('ccd is not a CCDData or ndarray object.') +def _astroscrappy_gain_apply_helper(cleaned_data, gain, + gain_apply, old_interface): + """ + Helper function for logic determining how to apply gain to cleaned + data. In the old astroscrappy interface cleaned data was always + gain-corrected. In the new interface it is not. This function works out + the Right Thing to do given the inputs. + + cleaned_data : `numpy.ndarray` + The cleaned data. + + gain: float + The gain to (maybe) be applied. + + gain_apply : bool + If ``True``, the cleaned data should have the gain applied, otherwise + the gain should be applied. + + old_interface : bool + If ``True`` the old, i.e. pre-1.1.0, astroscrappy interface is being + used. The old interface always gain corrected the cleaned data, the + new one does not. + """ + if gain != 1.0: + if gain_apply: + if not old_interface: + # New interface does not gain correct, old one did. + return cleaned_data * gain + else: + # Do not want gain correct + if old_interface: # pragma: no cover + # Old interface gain corrected always so take it out + return cleaned_data / gain + return cleaned_data + + def cosmicray_median(ccd, error_image=None, thresh=5, mbox=11, gbox=0, rbox=0): """ diff --git a/ccdproc/extern/bitfield.py b/ccdproc/extern/bitfield.py index 05878389..b09f45cd 100644 --- a/ccdproc/extern/bitfield.py +++ b/ccdproc/extern/bitfield.py @@ -12,7 +12,6 @@ import sys import warnings -import six import numpy as np @@ -163,7 +162,7 @@ def interpret_bit_flags(bit_flags, flip_bits=None): ) return None - elif isinstance(bit_flags, six.string_types): + elif isinstance(bit_flags, str): if has_flip_bits: raise TypeError( "Keyword argument 'flip_bits' is not permitted for " @@ -248,7 +247,7 @@ def interpret_bit_flags(bit_flags, flip_bits=None): def bitfield_to_boolean_mask(bitfield, ignore_flags=0, flip_bits=None, good_mask_value=True, dtype=np.bool_): - """ + r""" bitfield_to_boolean_mask(bitfield, ignore_flags=None, flip_bits=None, \ good_mask_value=True, dtype=numpy.bool\_) Converts an array of bit fields to a boolean (or integer) mask array diff --git a/ccdproc/image_collection.py b/ccdproc/image_collection.py index 95c1eb42..6f7a5d27 100644 --- a/ccdproc/image_collection.py +++ b/ccdproc/image_collection.py @@ -366,6 +366,10 @@ def files_filtered(self, **kwd): Value comparison is case *insensitive* for strings, whether matching exactly or matching with regular expressions. """ + # If the collection is empty, self.summary == None; return empty list + if self.summary is None: + return [] + # force a copy by explicitly converting to a list current_file_mask = self.summary['file'].mask.tolist() @@ -448,7 +452,9 @@ def _get_files(self): else: files = self._filenames else: - files = self._fits_files_in_directory() + # Check if self.location is set, otherwise proceed with empty list + if self.location != '': + files = self._fits_files_in_directory() if self.glob_include is not None: files = fnmatch.filter(files, self.glob_include) @@ -718,6 +724,8 @@ def _find_keywords_by_values(self, **kwd): pattern = re.compile(value, flags=re.IGNORECASE) else: + # Escape all special characters that might be present + value = re.escape(value) # This pattern matches the prior behavior. pattern = re.compile('^' + value + '$', flags=re.IGNORECASE) @@ -993,8 +1001,8 @@ def hdus(self, do_not_scale_image_data=False, **kwd): do_not_scale_image_data=do_not_scale_image_data, **kwd) hdus.__doc__ = _generator.__doc__.format( - name='HDUList', default_scaling='False', - return_type='astropy.io.fits.HDUList') + name='HDU', default_scaling='False', + return_type="`, ` ".join(('astropy.io.fits.PrimaryHDU', 'astropy.io.fits.ImageHDU'))) def data(self, do_not_scale_image_data=False, **kwd): return self._generator('data', diff --git a/ccdproc/log_meta.py b/ccdproc/log_meta.py index 262741f3..963e4f4b 100644 --- a/ccdproc/log_meta.py +++ b/ccdproc/log_meta.py @@ -10,10 +10,8 @@ from astropy import units as u from astropy.io import fits -import warnings -warnings.filterwarnings("ignore", category=DeprecationWarning) +import ccdproc # Really only need Keyword from ccdproc -import ccdproc # really only need Keyword from ccdproc __all__ = [] @@ -66,9 +64,15 @@ def log_to_metadata(func): """ func.__doc__ = func.__doc__.format(log=_LOG_ARG_HELP) - (original_args, varargs, keywords, defaults) = inspect.getargspec(func) + argspec = inspect.getfullargspec(func) + original_args, varargs, keywords, defaults = (argspec.args, argspec.varargs, + argspec.varkw, argspec.defaults) + # original_args = argspec.args + # varargs = argspec.varargs + # keywords = argspec.varkw + # defaults = argspec.defaults - # grab the names of positional arguments for use in automatic logging + # Grab the names of positional arguments for use in automatic logging try: original_positional_args = original_args[:-len(defaults)] except TypeError: @@ -82,8 +86,7 @@ def log_to_metadata(func): defaults = [] defaults.append(True) - signature_with_arg_added = inspect.formatargspec(original_args, varargs, - keywords, defaults) + signature_with_arg_added = inspect.signature(func) signature_with_arg_added = "{0}{1}".format(func.__name__, signature_with_arg_added) func.__doc__ = "\n".join([signature_with_arg_added, func.__doc__]) @@ -104,7 +107,11 @@ def wrapper(*args, **kwd): # so construct one unless the config parameter auto_logging is set to False if ccdproc.conf.auto_logging: key = func.__name__ - all_args = chain(zip(original_positional_args, args), kwd.items()) + # Get names of arguments, which may or may not have + # been called as keywords. + positional_args = original_args[:len(args)] + + all_args = chain(zip(positional_args, args), kwd.items()) all_args = ["{0}={1}".format(name, _replace_array_with_placeholder(val)) for name, val in all_args] @@ -139,7 +146,7 @@ def _replace_array_with_placeholder(value): try: length = len(value) except TypeError: - # value has no length... + # Value has no length... try: # ...but if it is NDData its .data will have a length length = len(value.data) diff --git a/ccdproc/tests/coveragerc b/ccdproc/tests/coveragerc deleted file mode 100644 index c269b9fa..00000000 --- a/ccdproc/tests/coveragerc +++ /dev/null @@ -1,32 +0,0 @@ -[run] -source = ccdproc -branch = False -omit = - ccdproc/_astropy_init* - ccdproc/conftest* - ccdproc/cython_version* - ccdproc/setup_package* - ccdproc/*/setup_package* - ccdproc/*/*/setup_package* - ccdproc/tests/* - ccdproc/*/tests/* - ccdproc/*/*/tests/* - ccdproc/*version* - -[report] -exclude_lines = - # Have to re-enable the standard pragma - pragma: no cover - - # Don't complain about packages we have installed - except ImportError - - # Don't complain if tests don't hit assertions - raise AssertionError - raise NotImplementedError - - # Don't complain about script hooks - def main\(.*\): - - # Ignore branches that don't pertain to this version of Python - pragma: py{ignore_python_version} diff --git a/ccdproc/tests/data/a8280271.fits b/ccdproc/tests/data/a8280271.fits index 67974ce4..b7a93af5 100644 --- a/ccdproc/tests/data/a8280271.fits +++ b/ccdproc/tests/data/a8280271.fits @@ -1,2 +1,2 @@ -SIMPLE = T / BITPIX = 16 / NAXIS = 2 / NAXIS1 = 536 / columns NAXIS2 = 520 / rows OBSERVAT= 'SAAO ' / observatory source TELESCOP= 'SAAO 1.0m' / OBSERVER= 'crawford ' / observer INSTRUME= 'STE3 CCD' / DATE-OBS= '2013-07-13' / UT date OBJECT = 'rf0420 ' / IMAGETYP= 'object ' / IRAF image type FILTERS = 48 / Filters 10*A+B RA = ' 22:04:08' / ra DEC = '-00:55:31' / dec RA_OBS = 331.0334 / ra in degrees DEC_OBS = -0.9253 / dec in degrees EPOCH = 2000.0 / Equinox of RA,Dec UT = '00:57:33' / UT at Exposure start ST = '21:45:06' / Siderial time at Start exp MJD-OBS = 56486.03997 / JD-2400000.5 at Start exp EXPTIME = 150.040 / integration time in secs SECZ = 1.176 / Air mass at start exp TRIMSEC = '[ 17: 528, 1: 520]' / Useful part of data BIASSEC = '[ 4: 13, 1: 520]' / Overscan region BSCALE = 1.0 / DATA=BSCALE*INT+BZERO BZERO = 32768 / GAIN = 1.9 / e-/ADU RDNOISE = 5.0 / e-(rms) read noise CCD-TEMP= 180.2 / CCD Cu block temperature COMMENT = END ���ƀӀԀрԀـрրրҀ׀׀ր׀ҁ$�&�/���%�+�%��,�$�/��$�#��$�'�7� �)�4� �&�&�/�)�+�5� �$��'�%�,��� �*�&��(�%�/�#�'�+�!� �'��*�8�/�&�,��-�&��0�4��)���&�*�1�!�+�$�'�#�#��%�!�7�"�*�'�(�-�%��4�)� �$�-�5�#�7�1��&�'�'�&�4�%�#�&�'�� �)�,�'�!�5��(�,�%�'�&�'�,�'�%�)�"�-��.�(��� �-�*�$�&�1�-�"� �'�!�'��5��"�#�"��(�(�$�+�-�5�'��'�;�(�'�*�,�1�,�,�.�*�8�#��3�)�'��%��!�/�4�+�1�;�(�/� �/�$�(�#�'�%�.�&�%�!�%�!�2��%�*��!�$�1�(�)�)�'� �%�5�/�%�,��2��"�)�%� �&�'�7�!�0��*�!��'�'�&�!�)�/�-�%�*�%�%�.�+�%��.�(�'�.�*�)�+�#�,�$�*��)�2�.�,�-�*�+�)� �,�&�#�%�%�#�>�.�0�-�#�"�/�/�)�&�-�+�/�$�-��(�*��*��/�+�*�$�!�)�*�5�2�3��,��)�"�,�&�4�!��!�/�+�'�0�'���)�(�)�+�+�/� �$��&��3�&�1�-�9�%��#��'�#�1�-�.�!�/� �&�*�)��%�"�1�3�#�6�2�1�/�%�-�3�(�$�%�$�!�(�$�)� �+�1��-�"��$��(�0�,�,�*�$��� �&�0�,�5��:���6�*�;�2�(�0�$�$�/�,�(�(� �%�1�'�3�*��*��0�$�4�"�$��1�+�(�'�(�1�(�*�(�"�,�+�)�*�-�1�&�8� �$�+�*�.�$�,�)�(�.�5�*�&�$�-�+�2�*�-�#�'��,��%�#�'�#�)�.�'��(�)�0�&�'�*�"�*�*�2�.� �0�8�9�&��/�#�1�$�"�-�%�.��!�/�)�#�0�#�-�2�؀Ԁ܀ـ؀Ҁـ׀ՀƀڀՀ݀ހրԀ׀ـڀՀրڀրہ;�9�.�-�6�5�$�3�2�.�5�3�-�8�<�0�8�(�)�&�1�5�.�7�5�/�+�#�/�$�%�2�.�4�"�8�9�+�2�:�'�8�5�3�)�3�-�/�>�+�"�&�3�.�*�-�*�-�-�(�!�(�!�9�/�.�2�,�*�)�,�*�,�!�-�)�7�1�9�+�/�5�6�@�#�*�5�,�*�3�(�2�,�5�/�+�/�%�.�-�1�0�%�(�,�0�-�&�*�-�4�4�/�$�%�2�,�0�&��)�.�*�+�2�2�$�#�%�-�3�(�0�.�1�C��4�-�*�+�1�%�%�*�%�/�8�7�"�+�5�'�7�,�;�*�-�$�/�&�5�:�%�(�1��)�*�)�4�2�3�5�1�2�*�/�,�'�)�<�?�(�3�,�+�3�3�2�+�>�,�7�0�+�*�&�9�+�,�6�2�,�7�2�/�'�1�B�>�+�7�/�3�8�6�7�+�+��:�5�0�+�-�*�4�.�$�!�/�6�!�&�0�1�:�2�8�+�3�7�%�'�,�6�;�1�)�.�)�9�+�*�.�1�5�7�+�'�2�5�3�1�.�)�+�1�+�+�&�(�5�%�$�)�/�2�3�.�+�&�4�#� �/�;�6�6�-�4�.�0�)�/�/�*�:�3�'�)�*�,�9�2�/�5�;�'�'�7�5�.�+�-�/�2�0�%�%�0�/�'�,�4�*�3�*�$�-�7�+�3�&�.�-�'�5�6�/�*�3�-�:�(�,�-�4�1�)�4�3�5�/�+�3�!�0�+�)�?�+�4�6�;�(�@�6�,�2�+�)�:�6�6�0�.�,�)�1�7�&�B�'�8�%�3�4�7�0�%�0�*�2�3�+�4�/�-�(�/�8� �?�7�+�9�/�6�2�5�3�.�/�4�*�:�-�;�)�3�7�,�A�/�%�1�7�*�7�A� �+�+�=�(�2�"�2�9�,�6�9�'�*�=�5�7�,�5�2�$�2�3�'�6�(�1�1�.�6�9�7�5�4�,�)�8�=�(�.�0�5�0�5�'�=�2�=�7�3�.�'�3�6�5�-�9�1�/�1�'�6�:�/�.�3�)�&�7�5�/�3�5�6�;�5�,�7�6�.�ــ܀ր؀݀Ӏۀڀʀ׀؀ڀրــۀۀ؀Ԁـ߀րց0�*�4�6�6�+�,�7�)�6�2�-�0�0�5�.�7�(�&�1�-�*�C�<�?�7�)�+�.�-�*�!�(�4�-�(�*�:�9�1�-�5�&�1�6�6�(�'�8�3�.�:�0�2�2�%�7�+�7�-�+�4�#�:�<�1�(�B�(�6�2�3�0�+�,�7�/�!�2�(�7�*�(�*��.�4�1�/�B�0�8�(�*�1�+�0�%�0�-�5�,�4�7�/�;�3�6�8�&�3�1�2�0�&�+�'�)�(�#�;�+�3�&�/�%�(�;�G�&�7�=�.�:�7�7�!�+�/�3�/�#�-�6�0�)�=�5�'�3��'�%�,�@�8�,�1�/�=�'�.�,�7�5�*�.�;�>�&�#�,�*�;�+�(�/�%�*�5�.�3�-�7�:�2�.�+�3�*�,�=�*�'�0�$�)�1�9�(�.�-�%�7�?�+�6�+�6�9�5�2�.�.�5�2�;�,�.�2�-�+�(�7�<�/�5�.�7�7�.�+�9�1�*�6�4�/�*�*�3�%�/�$�)�&�-�/�2�6�4�D�-�+�'�/�1�E�3�<�2�*�2�*�.�/��(�&�)�-�*�+�#�/�7�8�+�-�-�)�7�7�3�9�)�/�1�+�!�-�1�5�/�/�0�1�,�.�1�+�2�*�(�7�/�:�/�%�3�2�%�2�7�(�,�,�0�.�,�/�$�-�>�3�3�4�,�>�0�=��/�'�5�.�"�0�%�"�%�8�2�8�.�0�/�0�3�/�-�9�:�9�.�4�3�(�A�7�%�'�9�:�/�2�3�8�+�4�4�4�.�-�6�)�'�+�)�$�+�-�*�0�1�;�5�5�/�2�/�9�)�"�$�,�6�3�-�*�7�:�8�/�-�/�+�6�(�9�'�0�;�1�'�,�+�5�*�&�%�-�0�+�-�,�0��6�1�$�6�6�/�'�+�,�1�,�6�2�-�7�8�7�0�!�7�2�6�,�+�/��*�)�-�:�1�$�/�6�-�5�4�3�/�5�5�/�-�5�8�,�>�+�.�(�1�/�)�8�5�3�"�*�2�0�2�8��3�/�/�0�)�*�.�:�<�+�/�9�4�3�(�8�/�1�1�)�,�ـ݀ـڀـ؀Ӏ܀ۀȀڀۀــԀڀ߀Ӏ׀ـۀۀ؀ׁ(�0��3�(�,�7�3�<�3�1�'�:�3�0�'�'�8�,�5�;�7�;�#�3��.�@�9�+�(�7�9�$�5�%�$�3�'�'�!�)�/�0�2�;�3�+�3�-�#�'�/�2�/�6�3�/�+�"�3� �,�/�1�7�;�1�,�1�6�3�*�.�3�6�5�)�4�0��2�1�0�6�3�9�/�.�2�/�2�9�*�1�)�.�)�(�)�)�0�#�@�8�$�'�%�2�,� �4�,�+�:�7�.�4�;�/�4�3�*�2�-�-�.�,�-�+�2�;�*�*�4�+�1�)�7�&�6�3�'�1�.�7�+�7�7�(�'�(�3�.�,�#�1�,�2�1�1�@�/�(�-�6�6�:�4�4�'�4�8�%�/�2�5�*�;�-�*�2�2�4�.�5�*�(�.�4�6��*�,�2�7�-�.�.�/�2�*�+�3�F�9�.�6�5�-�9�2�'�5� �>�0�9�)�:�/�7�>�2�5�1�+�/�+�4�*�4�-�3�$�1�/�7�,�(�#�-�(�3���.��.�2�/�-�/�8�/�-�=�3�/�,�$�+�@�-�#�-�8�/�.�=�2�$�0�$�%�.�+�2�*�,�1�0�"��'�*�'�-�*�6�)�4�9�;�5�8�$�*�%�'�&�(�.�0�:�!�:�'�,�7�'�1�#�-�$�*�2�'�/�9�(�7�)�(�)�0�1�,�5�'�0�<�.�'�/� �*�3�;�#�-�(�#�1�#�*�.�(�0�0�+�(�$�1�1�,�.�%�$�$�4�-�-�5�A�&�0�(�.�7�4�)�0�%�-�-�2�*�(�<�'�+�%�5�5�8�9�2�<�/�)�4�9�-�'�/�-�-�7�;�3�&�/�+�-�,�(�/�7�-�7�,�4�+�;�9��4�/�7�0�(�5�:�4�9�0�3�%�/�#�7�*�(�0�2�7�,�0�)�0�D�%�/�3�3�3�$�/�4�1�-�=�=�/�0�,�6�1�*�'�-�&�5�(�2�.�.�6�*�/�+�8�+�,�*�5�9�*�1�7�,�1�/�6�.�)�;�>�2�-�4�2�/�7�2�E�8�8�0�$�/�/�=�:�7�;�5�7�2�8�'�ր׀ۀ݀րڀـԀۀʀ݀ـۀڀրҀـڀڀ؀Ԁ׀׀܁5�?�4�.�$�"�,�5�1�,�'�4�1�.�7�5�!�/�/�7�+�5�5�!�1�4�5�0�+�9�-�2�1�'� �-�)�5�4�6�#�,�&�.��0�/�/�-�&�>�&�:�.�9�0�,�1�9�#�1�(�$�%�:�,�5�8�5�,�3�.�-�,�/�+�%�1�6�0�9�0� �-�4�5�,�"�!�7�'�+�(�1�-�.�'�1�-�*�3�.�-�6�7�1�/�&�)�&�/�0�5�'�&��+�$�3�&�+�7�-�2�(�+�%�)�6�1�(��&�;�:�#�-�2�-�4�1�$�-�+�(�-�$�2�6�+�/��6�0�!�-�6��9�,�,�2�"�/�(�4�/�+�.�5�%�-�;�/�(�2�/�3�.�+�6�+�(�.�*�/�=�)�5�2�"�0�*�4�2�#�.�*�*�3�2�@�)�;�#�,�+�/�9�!�(�$�(�<�/�,�(�1�+�+�)�+�*�(�;�0�(�1�1�+�/�7�2�3�3�*�'�.�"�1�#�'�"�2��'�4�/�2�=�2�-�,�.�2�+�(�'�5�8�%�*�&�5�/�6�/��)�1�2�3�1�"�/�5�/�+�2�+�,�0�+�/�$�/�-�/� �.�0�/�(��1�-�'�%��*�0�1�)�<�<�1�8�7�,�2�0�5�$�)�/�1�1�%�%�/�4�0�>�6�%�4�=�,�1�8�)�&�'�%�2�/�%�3�*�1�2�:�2�.�7�3�.�*�3�/�8�3�/�*�7�8�*�:�*�A�!�(�-�.�4�=�5��0�;�%�3�(�2�0�.�,�(�-�3�-�7�/�5�/�1�5��3�*�C�7�1��,�-�/�'�'�*�$�<�0�&�6�2�?�7�*�%�4�.�4�D�2�1�8�&�)�+�,�2�,�/�.�5�2�-�<�+�8�+�(�.�.�&�#�1�,�/�4�*�-�8�/�.�1�+�4�8�.�#�3�+�/��5�:�9�-�/�<�+�/�)�2�5�1�9�,�3�.�5�&�+�+�"�:�!�0�4�5�!�*�@�5�<�"�$�.�7�.�3�+�3�4�!�0�@�<�'�6�-�7�3�,�,�+�-�8�,�)�ڀހڀـՀـԀـՀǀ݀ـ׀׀׀ӀڀՀԀԀ׀ր׀ׁ&�/�6�(�-�:�/�6�/�3�/�8�3�5�+�2�*�*�5�'�*�/�>�2�$�9�5��0�:�>�)�%�'�'�6�'�1�*�'�1�-�,�3�/� �%�,�#�>�0�1�7�/�+�&�.�1�1�,�/�$�*�*�0�7�+�(�"�&�-�*�#�/��+�%�(�3�0�'�-�(�>��#�$�+�5�-�/�+�,�$�2�2�(�6�+�3�2�+�%�,��/�,�7�%�3�,�)�+�'�0�/�$�=�,�4�#�(�/�,�1�.�5�-�,�+�5�)�%�'�8�1�/� �2�7�C�#�4�)�(�&� �)�)�%�3�&�/�+�:�$�4�-�&�/�/�2�.�)��3�/�,�:�)�5�/�/�5�2�2�0�)�1�,�/�)�-�+�5�1�/�.�.�'�2�6�*�!�#��*�%�<�-�1�'�-�6�#�-�*�6�,�1�<�4�9�*�(�1�7�+�%�5�4�6�;�3�%�/�,�0�%�/�3�8�,�9�9�$�-�*�(�-�/�%�8�1�)�/�9�>�1�&�4�%�$�3�+�(�/�2�)�+�-�1�.�#�5�8�1�.�"�*�2�-�-�$�-�5�(�*�8�+�)�)�/�*�%�,�7�+�+�'�-�%�#�<�,�+�)�)�9�"�*�,�<�6�7�&�;�3�+�*�(�*�+�*�(�/�;�,�0�5�1�4�,�:�1�3�0�=�,�)�(�4�-�+�,�/�7�%�"�+�$�1�-�)�7�4�0�1�7�'�)�<�+�6�%�*�,��)�9�4�#�/�/�(�2�2�,�+�0�4�)�!�&�(�1�.�)�.�-�;�.�9�(�+�)�.�/�1�6�7�1�0�4�1�,�,�*�,�3�"�9�-�-�1�1�2��;�%�5�/�/�1�(�-�;�'�)�1�5�3�.�+�/�1�+�3�-�0�'�+�&�7�,�"�/�6�'�%�2�+�+�1�5�6�"� �1�(�6�*�(�'�/�3�(�*�4�)�7�)�(��,�3�3�0�"�-�3�2�5�!�)�&�5�;�3�3�,�/�)�1�4�-�&�%�7�6�0�/�#�,�7�1�%�-�*�-�2�&�&�+�,�,�-�'�,�'�5�>�րۀԀ؀ۀ׀؀܀րʀԀ׀րـӀրۀӀ׀ր؀ހր�+�3�4�.�,�)�3�$�+�(�/�"�+�+�;�0�0�$�0�(�"��.�,�&�/�,�@�$�2�/�9�8�1�+�%�,�.�+�!�2�1�8�,�&�1�(�2�(�2�1�-�,�1�3�%�(�9�'�+�!� ��'�3�#�'�)�2�;��)�(�+�-�+�-�+�9��*�-�7�&�.�%�7�/�8�1�5�5�3�'�)�1�+�+�0�5�1�1�0�1�;�+�)�-�7�/�$�+�3�0��'�-�+�%�!�.�)�#�/�.�,�(��%�-�)�'�2�#�.�5�'�$�*�-�&�4�2�!�-�*�6�,�5�*�3�/�$�2�-�0�1�5�'�9�(�.�9�1�+�.�;�5���2�/�*�%�-�9�1�/��2�5�.�(�6�&�)�7�3�5�(�'�/�&�&�/�+�"�)�%�#�&�/�3�3�'�(�B�4�*�+�0�,�$�:�,�"�6�%�)�5�0�)�/�-�,�'�0�2�7�-�)�F�%��;�-�"�0�0�)�.�2�&�0�.�:�3�1�0�-�-�)�,�(�5�%�)�$�2�(�5�)�4�+�1�8�)�(�#�2�3�2�.�(�,�1�&�+�3�)�.�9�3�)�'�1�6�0�%�:�-�-�/�+�(�0�8�%�-�)�*�4�/�/�!�1�,�+�(�;�.�$�=�9�:�+�1�$�&�#�+�4�)�1�5�*�(�!�+�;�@�1�+�-�/�!�5�*�#�<�&�0�"�#�.�4�%�2�/�/�4�'�+�4�+�,�8�2�'��,��-�*�(�9�/�*�6�1�1�(�/�'�'�6�%�#�%�/�4�/�'�*�$�0�)�&�3�(�)�!�7�$�/� �*�9�#�,�*�1�,�/�(��-�-�6�2�6�*�$�6�'�,�.�-�/�*�1�"�:�,�,�"�5�5�!�#�#�#�!�)�9�2�2�)�/�%�(�/�6�7�;�.�,�7�*�/�)�/�-�)�-�3�1�6�4�1�-�7�+�-�$�7�"�-�@�1�/�0�7�1�*�(�+�)�1�'� �4�)�-��0�)�3�/�3�.�2�4�:�4�%�3�6�*�(��3�&�-�8�1�=�1�/�5�"�0�׀рـՀ׀ڀڀــ̀ـۀ׀ـ݀ۀ؀׀ӀҀր׀܀ف'�?�&�$�(�+�7��5�-�0�1�3�4�*�$�,�/�/�:�3�%�/�+�.�#��+�!�5�,�6�1�!�+�+�.�*�2�3�)�&�F�(�-�5�0�(�=�-�.�3�0�*�7�9�$�-�2�)�=�,�*�8�)�3�%�%�3�9�+�)�>�4�9�*�,�&�)�!�0�%�-�4�5�#�/�3�1�/�4�2�'�)�2�,�3�0�2�-�-�,�)�(�*�6�4�4�/�0�3�'�/�#�$�+�&�!�)�-�/�0�7�'�$�/�$�/��8�3�,�(�,�.�)�-�/�?�6�@�+�&�+�%�"�4�2�$�%�(�0�*�%�5�$�.�+�"�"�5��%�6�'�*�6�)�+�-�?�3�,�)�(�0�1�2�+�7� �!�1�(�+�-�(�"�4�7�8�2�2��,��;�3�.�)�3�%�.�2�,�'�/�+�/�/�-�4�1�-�.�6�+�%�%�1�.�*�3�$�4�'�5�4�+�2�-�'��#�/�/�7�/�4�<��)�!�4�2�C�/� ��&�5�$�%�%�+�0�5�/�2��)�%�&��5�9�*�-�(�)�/��(�$�1�5�'�,�&�,�(�*�2�$�%�7�-�2�1�1�1�"�-�8�-�!�!�5�3�-�+�.�)�?�(�5�/�$�*�;�-�-�0�-�2�-�!�&�'�,�5�-��-�7�.�5�2�8�(�+�"�0�4�/�!�7�4�3�/�9�0�1�'�4�/�9�8�3�/�1�!�#�%�*�0�*�0�1��/�6�4�1�*�0�'��&�7�+�/�=�*�*�1�+�+�'�5�!�-�(�#�:�(�3�(�+�2�4�;�)�/�4�4�6�#�6�)�/�5�)�/�7�1�!�8�-�,�,�#�,�4�.�%�-�&�/�-�,�#�7�/�-�&�(�5�(�$�0�*�2�#�'�2�)�/�%�1�$�/�*�0�(�-�-�-�4�)�1�/�2�%�$�4�.�-�+��&�*��$�5�2�4�-�(�(�&�/�:�)�+�'�/�+�&�+�9�0�0�)�.�<� �4�1�,�:�"�/�1�0�>�2�2�3��-�.�2�3�+�2�.�:�+�1�+�;�܀ր߀ڀ؀׀׀րڀŀրՀڀڀـՀՀڀ׀ր܀ـ׀ց.�4�)�>�,� �3�'�)�6�*�-�.�,�(�1�7�7�5�*�&�)�1�3�)�9�0�$�0�1� �/�"�#�/�,�*�&�,�1�%�)�)��,�/�*�(�)�+�5�,�0�2�4�4�1�7�8�1�,�,�9�)�#�2�6�5�)�+�7�2�(��6�&�/�/�-�0�0�4�/�)�%�"�8�0�2�-�3�/�-�-�.� �)�9�7�5�.�,�0�3�#�&�.�%�.�6�/�+�5�+�4�-�'�,�5�7�1�.�7�0�'�,�&�5�,�&�2�+�/�2�.�&�/�(�*�-�!�0�"�8�.�#�2�,� �4� ��<�0�0�/�;�1�$�)�,�*�/� �)�2�3�0�:�.�.�Y�/�+�%�-�#�0�*�*�/�+�7�4�&�7�/�(�'�4�)�.�*�'�*�/� �*�/�2�-�?�*�5��$�"�/�$�2�1�/�1�7�-�*�=�$� �+�0�0�,�0�)�4�6�7�)�3�&�'�B�3��4�0�/�0�*�(��*�!�-�;�,�4��.�*�)�.�+�/�*�2�1�(�+�2�'�,�*�)�2�2�7�)�.�1�@�*�<�+�*�/�-�,�)�2�/�-�%�/�=�/�!�$�+�.�'�/�2�1�*�1�2�&�,�1�*�1�'�&�&�:�+�,�3�,�,�2�3� �,�7�2�9�&�!�;�%�#�9�*�2�*�+� �7�'�(�)�%�.� �:�2�#�.�9�(�(�,��+�9�%�-�(�(�(�-�0�1�4�/�2�$�9�!�(�4�-�)�+�%��4�/�+�.�*�,�%�3�,�6�-�2�+�'�)�>�+��0�3�%�.�$�5�%�&�%�)�.�.�=�2�(�4��-�-�2�4�3�1�)�,�&�)�+�/�*�/�9�4�8�'�,�1�.�"�*�"�4�*�-��3�'�-�/�3�*�&�$� �=�'��#�4�1�+�,�,��,�9�,�-��6�!��1�2�&�%�1�.�6�$�'�%�1�'�2�5�+�(�1�,�/� �)�2�!�-�3�*�4��:�1�3�/�,�4�2�.�'�-�4�2�2�:�/�+�&�1�4�-�)�-�2�4�=�ـڀ׀ـ׀׀׀׀ՀƀԀۀڀ؀ՀրҀӀ׀րՀڀڀց7�3�3�)�7�0��3�/�&�3�"� �.�8�4�+�0�/�/�,�&�6�*�/�!�/�+�:�2�"�)�-�*�-�.�,�/�!�)�2�$�0�,�A��+�3�:�.�-�/�)�"�1�/�2�(�/�-�+��$�$�1�3�/�#�/�)�8�&�6�%�#�+�3�4�/�"�,�.�/�2�/�8�5�#�3�,�?�7�3�*�-�=�)�0�+�0�)�,�%�;�+�2�&�,�)�3�'�>�3�,�/�2�3�.�5�/�&�0�3� �8�+�5� �0�/�%�'�2�)�/�(�9�.�#�&�/�.�/�.�4�"�0�9�2�*�%��/�%�5�/�(�8�*�7�$�-�(�0�!�.�%�5�/�1�.�%�C�&�=�0�+�#�2�+�-�*�(�1�;�(�!�(�%�3�+�'�*�.�#�2�,�(�,�/�(�2�%�4�9�&�'�,�*�7�2�*�2�/�7�2�1�,�"�*�7�-�-�6�&�3�2�'�=�2�2�+�*� �0�-�,�"�7�+�3�8�*�%�'�"�&�2�1�3�.�/�0�(�(�4�8�'�5�8�(�1��*�0�)�!�4�5�'�8�-�<�3�/�*�'�0��%�+�'�1�-�/�&�#�-�0�*�3�(�&�-�4�-�&�,��&�0�>�!�&�)�1�?�3�,�$�0�$�)�'�2�(�*��%�2�4�3�%�(�"�#�/�4�1�&�'�.�0�&�1�%�$�"�7�+��4��)�/�$�"�9�-�+�%�+�0�/�/�.�.�1�?��&��2�G�,�(��6�.�/�E�6�-�0�-�0�9�,�<�4�+�-�0��$�+�7�&�-�&�6�,�'�4�+�#�+�(�/�,�,��-�$�'�2�)�+�>�&�<�5��5�+�,�.�3�(�2�1�.�(�1�*�/�0�=�-�%�'�4�,�.�'�)�-�1�$�,�!�6�0�'�)�,�4�$�3�5�9�$�*�5�#�(�,�)�)�"�+�+�,�6�'��5�+�&�0�"�,�2�*�-�%�&�8�,�-��(�.�,�2�'�.�(�*��2�;�-�>�)�4�6�$�1�%�3�#�-�.�&�-�/�"�<�1�2�/�Ѐ؀րЀ݀؀րրҀŀրـ؀ۀ؀׀ـ׀ր؀׀рـӁ1�7�/�/�/�+�*�+�&�+�.�)�5�7�&�4�4�1�-�0�(�B�1�)�/�'�#�5�(� �/�8�<�+��.�(�0�7�4�;�8�2�%�,�5�0�$�'�:�6�(�'�/�4�-�-�/�+�-�#�%�#� �1�3�.�$�:�0�(�(�)�2�-�*�+�0�2�1�(�+�=�(�-�+�/�3�!�'�;�*�&�"�3�"�-� �#��/�"�3�/�&�,�#��8�%�/�1�.�!�%�/�-�'�)�)�3�1�)�)�-�+�/�.�)�'�'�0� �1�/�%�,�*�1�/�-�5�*�4�#�8�(�8�.�%�"�2�,��-�'�1�+�/�$�0�*�$�.�+�%��.�/�/�'�3�4�!�/�4�.�4�(�$�0�)�!�1�*�3�6�-�!�)�(�-�6�,�;�7�4�*�*�5�0�%�&�+�0�1�&�.�)�5�7�(�-�0�5�2�,�=�/�/�&�.�6�;�%�!�0�%�8�)�&�!�-�-�/�0�)�-�,�,�"�7�)�#�/�-�/�,�1�0�2�-�*�#�'�2�'�!�/�.�5�'�/��4�%�/�+�'�'�,�.�2�&�.�.�1�+�/�$�"�.�,��.�)� �)�-�,� �'�,�2�)�@�/�9�4�+�$�/�4�)�)�0�(�+�&�-�.�,�%�3�/��/�6�%�0�%�2�(�%�)�-�(�/�'�+�%��>�.�D�:�,�1�#�*�+�+�4�0�5�,�)�*�3�5�+�0�.�)�-�7�7�$�%�2�0�/�:�)�)�1�+��*�(�0�3�.�$�3�)�:�>�9�#�2�*�$�6�2�4�)�-�!�)�+�'�-�+�3�5�4�$�*�,�(�/�+�*�0��#�'�)�(�/�.�2�.�/�&�#�0�%�)�-�.�&��5�5�2�&�)�/�+�.�,�&�+�6�8�/�2�(�1�3�*�"�5�'�(�+�*�+�(�*�=�/�4�7�1�+�!� ��1�+�(�"�#�(�+�)�2�,�B�/�1�3�%�8�0�3�!�(�&�*�.�+�.�(�.�1�,�7�(�'�!�*�(�)�?�*�+�3�<�"�.�%�2�"�7�,�,�*�2�ـ؀ՀـՀۀӀҀрǀӀ݀׀؀؀Ӏ؀݀րրЀڀՀځ4�.��*�2�+�-�"�-�/�5�*�'�9�0�-�.�'�)�'�(�5��+�1�1��1�*�4�(�6�-�+�,�'�!�%�%�4�%�-�/�.�#�/�:�1�0�+�.��0�)�+�)�7�6�*�,�2� �/�/�&��?�)�-�5��.�&�-�2�$�*�'�4�/�/�4�#�$�#��/�(�)�0�%�3�1�/�)�2�'�E�/�0�&�$�+�'�"�"�,�$�%�7�4�'�.�%�.�+�$� �.�'�&�1�+�)�8�/�#�.�$�.�-�'�9�1�0��5�-�.�#�7�)�!�0�0�-�.�5�)�)�&�%�#�(�-�.�5�!�)�*�)�(��+�:�/�%�'�*�+�6�-�+�&�2�/�$�!�/�1�/��%�/�,�.�,�-�&�-�.�5�%�-�3�@�#�1�7�'�4�!�,�-�.�.�(�#�*�#�$�>�-�<�/�,�.�+�)�-�,�+�8�*�.�+�*�'� �2�#��'�/�0�-�%�)�*�1�$�$�+�3�,�,�3�,�/�7�'�1�%�4�=��1�-��2�5�-�1�%�!�1�,��4�0�/�2�>�7�)�"�+�'�)�%�-�(��.�!�#�&�1�=�(�*�1�4�)�/�3�,�5�,� �&�'�3�'�"�%�5�,�.�-�#�&�-�,��/�+�%�%�5�(�1�)�/�.�.�8�%�9�(�+�"�.�5�$��7�%�+�/�$�+�,�#�&�3�*�#�%�1�(�$�)�&�=�*�(�.�8�7��#�*�(�1�5�-�-�+�-�2�2�+�/�9�!�&�%�2�5�(�1�&�'�5�1�#�0�/�.�0�(�+�$�/�!�3�4�(�-�2�/�3�,�'�(�/�4�.�4�0�&�)�+�/�(�/�,�0�+�-�%�,�4�1��6�$�;�5�'�3� �0�)�,�<�-�(�5�5�0�:�:�%�"�-�7�9�*�2�$�'�,�1�4�2�/�7�/�7�2�1�,��-�=�4�%�+�1�9�3�6�,�0��6�4�9�9�/�.��1�'�$�/�7�0�?�0�-�3�/�2�1�*�2�7�8�&�4�7�1�3�3�9�1�,�,�5�Հـ܀؀ۀԀրӀ׀΀ԀۀրՀڀրـրӀ׀ԀրՀՁ �!�0�/�4�1�"�/�)�1�1�6�)�%�;�1�(�.�*�!�0�4�.�"�,�*�-�%�2�/�6�+�1�2�.� �)�&�+�3�*�/�(�7�9�6�5�:�8�+�*�*�1�'�/�*�,�3�"�1�/�.�-�!�-�'�(�9�(�<�$�9�&�,��0�&�5�'�#�2�.�1�.�,��:�&�6�)�6�+�)�0�%�!�,�-��2�-� �5�+�#�-�+�)�)�"�.�(�#�.�!�-�"�-�!�5��-�*�'�+�0�6�+�$�+�5�#�*�7�0�6�%�7�%�-�6�/�0�/�0�2�"�)�,�8�4�+�8�!�'�<�5�3�3�'�2�1�;�3�=�6�-�4�4�.�/�&��2�0�1�6�(�2�$��'�3�*�1�#�$�2�/��:�!�1�%��&�)� �0�-�/�%�*�*�-�1�1��4�(�6�'�%�/�!��1�.�)�:�%�-�+�/�&�(�1�(�:�7�*�#�*�+�/�<�,�'�.�:�(��$�.�0�+�.�(�$�*��#�1�.�1�$��=�9�/�/�/�,�+�%�)�+�%��-�+�)�+�&�.�/� �)�-�&�/�/�(�,�1�$�;�,�'�4�/�"�3�2�)�#�-�0� �,�4�.�+�5�/�0�%�-�+�5�7�,�'�(�/�/�9�5�(�*�-�2�4�2�!�7�"�'�2�1�(�,�5�'�*�-�)�5�#�*�+�3�3�+�?�"�%�-�0�0�!�4�&�,� �.�(�1�(�/�/�-�0�;�2�.��&�-� �$�.�&�%�'�%�&�4�&�;�-�)�5�4�!�1�+�0�5�-�3�/�#�#�(�/�-�+�-�'�"��9�7�/�(�2�9�0�2�9�;�/�*�1�.�%�(�4�.�&�*�&�0��,�0�'�2�/�%��0�0�0�*�%�/�K�1�&�%�.�)�'�9�-�7�3�-�4�2� �0�8�+�2�4�%�"�/�'�-�&�"�#�)�+�-�.�+�0�!�3�)�(�)�-�3�#�4�,�<�+�$�!�@�8�-�$�:�0�8�.�)�)�*�/�/�+�2�$�#�*�&�(�1�3�5�;�?�C�րӀڀՀՀҀ׀ـՀƀ׀Ӏ؀ـ׀Հ׀Ҁـڀ׀Ԁрׁ%�;�$�5�'�,�4�1�/�%�3�$�'�,�2�1�+�&�+�.�0�4�:�#�7�#�4�(�7�1�4�3�$�)�1�*�*�3�2�&�-�4�=�/�*�/�6�(�#�%�0�-�.�%�.�(�+�:�,�.�8�#�)�$�1�&�9�>�/��'�$�#�!�2�*�,�%�*�2�(�9�$�.�9�"�'�+�"�5�+�(�1�!�)�*�.�1�9��&�)�*�'�3�,�)�%�'�0�4�2� �+�&�6�5�&�%�4�.�6�*�-�.�5�)�6�,�.�3�,�7�&�-�5�+�-�7�(�)�2�*�0�0�1�3�/�.�3�0�.�-�-�%�+�3�2�4�6�,�)�+�'�(�3�&�/�0�)�2�=�'�2�%�*�.�3��+�.�+�0�&�.�4�+�1�)��.�/�0�/�0�+�+�0�&�0�0�6�/�4� �;��/�#�&�;�.�;�%�-�0�2�'�1�)�2�,�,�(�3�5�-�&�#�&�,�0�.�,�*�-�5�1�4�&�'� �6�-�,�;�+�%�5�*�'�/�%�*�+�)�1�'�5�0�-�,�#�0�1�&�9�/�?�&�5�'�-�)�&�)�(�!� �%�;�(�"�>�!�-�)�%�/�5�5�)�(�/�%�-�-�4�1�7� �&�1��'�(�-�/�+�'�/�-�-�*�2�"�-�'�)�0�2�/��+�+�/�1�,�%�1�$�6�1�)�*�2�&�.�5�+�*�.�6�0�)�&�/�/�9�5�&�&�,�-�+�%�4��-�-�"�.�/�1�!�/�/�-�/�$�'�1�0�8�4�+�)�,�.�-�(�+�7�4�.�+�)��&�%�7�'�5�&�%�2�8�*�1�.�)�(�3�%�+�,�6�/�1�2�&�1�-�6�"�+�/�/�*�#� �5�'��'�2�+�4�)�)�=�1�7�(� �+�0�.�3�4�(�+�&�.�*�"�)�.�3�:�)�-�3�,�,� �6�+�+�&�&�"�)�-�+�&�"�)�/�'�$�)�-�6�3�0�7��2�+�*�5�0�3��$�2�2��4�0�4�(�&�(�0�+�,�(�1�*�/�3�+�1�2�+�%�7�6�-�.�׀ՀـԀ׀׀Ӏ׀׀Ȁ؀؀р׀ڀՀڀՀ؀ӀրԀـف/�0��3�'�9�(�6�2�3�3�)�;�#�-�1�"�/�$�#�,�(�/�3�)�"�2�#�� �'�&�.�#�&�$�)�)�(�*�8�2�$��)�1�-�(�%�/��6�(�'�%�4�+�/�9�0�(�&�,�,�&�+��(�/�;�4� �/�4�)�4�5�%�,�5�/�*�+�!�*� �)�*�!�,�(�%�*�?�#�&�+���)�&�"�*�3�(�/�'�9�(�/�*�4�'�/�*�4��8��)�+�.��-�*�5�/�%�'�+�/�0�/�$�&�5�2�4�)�)�7�9�(�/�+�-�-�0�8�-��1�2�0��*�1�7�2�%�)�)�.�(�+�)�;�8�%�"�4�/�(�/�%�,�)�#�+�+�*�"�#�*�3�4�+�-�&�+��2�>�(�*�1�:�,�3�4�'�.�'�&�;�"�'�9�1�%�9�0�3�.�*�<�'�"�2�5�1�.�+�/�'�4�&�1�*�4�+�/�)�3�&�)�4�+�&�3�)�6�3�,�(�;�'�2�4�/�1�,�-�)�/�)�)�.�2�7�*�(�4�&�1�#�0�,�/�7�0�5�&�%�2�&�&�/�5�0�7�+�"�0�(�/�$�5�4�,�(�4�1�(�.�3�2�+�,�(�$�.�)�+�(�.�&�)� �/���!�&�6�-�1�"�/�(�7�3�*� �7�-�5�0�+�)�2�-�*�.�8�7�2�5�/�#�'�$�(�)�,�*�(�!�,�(�(�"�*�)�'�'�(�'�;�!��4�)�)�-�!�'�(�-�=��:�/�%�+�0�9�(�,�(�(�:�$�1�5�%�3�4�*�!� �5�2�'�9�(�7�)�#�-�-��'�.�(�(�.�2�-�)�-�(� �,�1�=�2�7�#�6�'�1�/�.�3�1�1�-�1�2�>�,�$�-�7�*�&�,�4�2�-�.�-�"�/�%�3�-�&�3�5�9�2�-�+�)�0�*�-�2�0�4�,�1�'�%�,��&�.��"�&�+�/�3�.�3��-�3�0�5�7�.�5�)�0�+�'�$�'�0�'�-�1�.�!�$�4�-�'�%�'�$�.�'�2�9�,�8�5�׀׀Հ׀؀ـր׀ՀǀҀՀ׀ӀӀԀՀՀ׀܀׀؀Ӏف&�%�4�6�1�/�:�)�?�1�1�*�(�!�'�)�)�.� �(�4�-�1�#�*�+�'�$�(�7�'�$�(�'�*�)�.�)�,�4�(�*�'�&��'�+�.��2�0�/�-�(�,� ��0�;� �+�,�-�-�"��6�6�$�+�,�%�,�3�+�4�5�'�"�3�1�3�*�*�,�+�,�9�2�0��+�,�'�/�-�#�4�%�-�,��.�&�.�*�*��/�A�%�!�'�)�$��9�)�%�(�4�(�)�1�D�*�)�/�$�)�1�-�:�0�(�.�,�0�7�'�%�/�1�1�,�9�%�+�:�"�,�7�.�2�2�5�"�*�)�0�5�-�+�*�'�1�*�"�,�-�.�'�'�*�-�3�%�.�*�4��-�,�&�6�'�4��6�+�#�,�'�!�1�#�,�$�1�.�/�-�/�6�#�#�*�%�1�+�1�/�*�1�"�/�1�.�/�3�7�/�'�4�6�2�)�4�)�5�/�3�:�3�%�*��/�"�"�2�!�.�'�+�1�&�0�.�/�9�-�*�4�.�.�?�6�5�.��$�'�*�/�-�6��%�7�+�/�*�,�/�9�$�'�2�,��/�-�,�%�1�#�*�4�*�'�<�.�/�#�&�(�8�2�&�2�$�.��3�/�5�%�*�%�#�3�2�&��(�&�$�)�*�,�-�>�$�>�-�)�-�+�&�,�.�#�+�)�/��%�0�0�1��(�'�7�1�*�9��&�(�$�)�/�9�,�0�2�+�1�%�'�*�*�&�(�4�/�2�#�&��4�.�)�*�*�'�!�+�"�,�)�@�$�/�1�+�5�9�&�,�&�$�*�+�.�%�$�&�"�)�.�4�.�2�$�)�.�)�6�.�4�.�:�'�-�6�9�-�!�)�-�+�.�"�-�!�3�4�4�#�1�-�#�4�+�1�#�+�2�%�.�2�-�0�+�(�+�'�3�"�&��,�6�/�;�/�/�.�-�4�$�.�<�)�*�2�(�-�*�6�/�-� �1�)�2�+�-�'�%�3�"�&�,�+�,�7�!�9�-�1�-�4�#�1��(�2��&�&�'�3�(�0�/�%�/�7�ՀԀ܀ӀրــՀ׀ȀڀՀҀڀրۀրԀ׀؀ـ׀րՁ,�&�,�1�#�*�2�-�(�(�:��-�(��7�-�-�%�5�$�,�0�2�.�&�5�'�"�(��!�.�2�8�&�/�3�3�"�'�(�%��6�5�� �'�+�2�"�8�%�3�/�(�,�'�+�7�7��!�!�/�-�0�5�1�,��8�-�*�0�-�.�,� �#�+�(�-�5�(�%�*�3�5�$�*�0�"�4�*�%�+�%�1�-�2�3�%�&�3�$�)�4�/�&��*�)��,��+�4�1�.�'�0�/�1�&�+�3��/�3�0�6��(�&�2�(�-�1�7�/�"��)�3��1�)�(�3�(�2�/�3�*�*�/�$�1�&�0�/��4� �/�/�<�/�&��/�/�*�2�*�0�'�<�1�%�6�"�(�,�!�"�0�-�'�-�/�8�0�+�3� ��#�-�1�-�"�)�!�+�+�+�*�0�#�/�4�!�(�(�"�&�1�2�5�"�&�1�,�5�%�*�.�)�0�*�7�#�8�*�"�$�&�.�4�)�$�+�*�/�2�!�1�)�.�3�$�/�2�(�3� �(�&�-�:� �,�*�#�*��/�!�3�-�1�,�2�-�)�(�0�$�#�'�"�-�0�'�3�!�5�-�2�'�3�(�/�(��4�'�'�(�,�#�!�2�,�3� �)�/�&�$� �'�#�<�3�0�$��.�&�3�-�7�/�%�2� �3�1�&�0�0�+�.�.�(�%�2�+�0�)�5�3�9�,� �,�+�/�+�7�0�%�,�1�$�5�)�/�+�+� �)�%�5�5�0�0�&�(�.� �)�*�*�.�*�(�8�/��#�%�+�)�$� �)�*�#�'�*�,�4�*�2�+�$�5��/�4�2�0�+�'�'�+�&�9�)�#��)�,�&�"�(�.�.�5��'�'�5�3�.��)�)�!�0�)�"�*�5�$�0�4�"�)�+�%�$�5�/�6�/��0�'�"�*�/�)�/���6�%�3�)�$��'�1�/�$�%�5�+�"�/�/�,�5�0�(�'�)�5�0�&�2�1�(�%�9�0�-�8�+�(�-�4�#�+�,�*�0�6�3�-��5�-�%�-�&�΀րԀрՀӀԀՀҀȀ܀ՀрҀԀ׀ۀـ؀Հր܀؀Ձ3�4�.�&�'�@�&�#�"�6�1�.�3�3�&�4�8�6�%�%�)�2�+�,�/�$��$�(�)�2�%�2�)�$��(�0�/�+�1�%�+�.�*�1�$�4�4�3�(�+�%�7�)�0�.�'�:�1���4�2�'�"�%�.�(�0�*�,�%�1�+�4�(�/�&�.�!�1�2�/�3�4�$�3�"�"�0�.�-�0� �-�D�;�!�%�-�+�!�4�)�+�3�&�'�*�'�6�5�2�"�4�!�&�3�,�!�'�@�%�0�-�.�)�8�/� �#�/�1�&�%�8�5�0�2�/�/�/�=�+��7�'�(�'�)�:�0�;�)�!�#�(�&�+�%�2�-��;�+�8�6�,�;�%�)�7���0�/�.�-�%�.�0�-�*�*�2�"�-�#�.�,�+�+�$�5�-�6�/�#�$��.�(�-�'�'�1�*�3�$�9�2�*�#�"�3���+�;�.�'�4�+�#�1�-�2�'�#�*�)�'�1�)�&�2�(�1�"�'�$�-�+�6�(�,�7�$�<�6�5�,�,�:�%�,�7�&�7�2�(�&� �'�+�1�-�%�4�%�+�.�=�0��0�/�D�+�+�3�+�'�#�4�&�3� �)�!�'�=�:�%�#�*�,�.�+�1�-�*�>��0�(�+�#�*�!�$�0�,�-�#�)�0�3�1�)�1�.�!�)�%�(�$�#�.�#�2�4�1�5�&�)�%�1�/�$�/�'�'�.�$�"�/�,�%�%�-�1�1�>�4�'�*�&�*�'�+�%�+�.�3�7�,�%��3�'�'�/�)�8�&�%�/�4�3�*�7�(�,�.�$�4�-�,�%�2�,�6�/�0�.�0�%�8�.�%�0�-�1�&�+�%�C�(�%�.�/�#�%�*�/�,�6�5�)�&�(�/�4�.�(�+�$�5�(�2�1�.� �-�%�=�)�'��/�,�3�2�"�&�9�$�)�'�"�3�'�&��.�(�(�%�3�&�&��&�!�4�"�7�5�)�&�2��4�.�/�4�(�3�&�5�)�0�'�)�"�5�%�-�)�3�/�#�/�+�-�(�/�>�8�+�-�!�*�+�/�'�'�.�3�(�Հ׀րԀЀӀ؀܀ۀπ׀Հ؀Ԁ׀րր׀؀ր߀рӀԁ:�2�(�/�*�!�/�+�+�.�"�(�+�-�4�'�:�'�-��$�)�/�6�*� �3�-�$�&�5�#�*�#�.�4�0�+�4�"�<��(��*�0�#�$�2�1�-�'�4�.��%�)�&�2�$�)�5�>�!�6�!�0�7�0�(�5�$�3�%�&�*�,�'�,�-�0�)�5��!�7��-�/�.�/�#�'�0�1�0�;�+�!�*�1�+�.�0�#�2�,�+�*�(�*�)�2�/�8�"�9�-�+�3�;�5��-�/�*�*�)�"�/�.�0�'�/�,�5�,�(�5�*�7�2��1�3�1�$�8�*�+�.�3�/�'�:�-�"�0�2�+�+�(�(�,�-�%�+�(�+��-�3��/�/�2�-�'�5�/�)�,�#�/� �+�,�$�;�#�!�)�/�-�3�(�-�7� �%�5�#�'�*�3�$�&�+�/�7�1�#�,�5�0�)�+�%�/�#�"�/�.�+�2�*�+�A�(�2�0�,�/�,�*�"�/�4�&�.�/�,�(�(�.�5�:�/�+�%�-�,�+�/�5��<�"�6�1�1�3�#�&�'��$�&�5�8�,�5�+�0�!�(�,�+� �-�#�1� �.�(�,�(�(�*� �:�/��#�4�,�,�.�(�'�/� �/�/�/�)��'�$�)�#�+�4�/�'�&�+�"�,�'�3� �=�'�+�(�(�.�)�.�0�1�'� �D�'�(�!�$�$�+�/�+�,�;�(�0�.�*�/� �:�!�-�/�3�.�3�7�1�$�5�-�1�+�(�3�'�'�-�0�6�#�,�1�8�3��0�2�6�2�%�6�'�'�2�'�0�4�.�6�)�$�0�*�.�#�"�+�'�8�*�+�&�0�5�&�&�.�5�4��1�6�)�1�$�(�*�#��*�/�-�:�*�/�2�-�7�!�(�,�.�+�&�*�/��3�(�2�*�5�/�-�+�5�/�2�)�0�.�!�/�0�&��&��1��.�%�0�#�3�/�+�+�&�*�/�*�-�0�1�'�1�0�3�*�6�7�.�/�#�-�A�G�'�0�2�(�8�/�5�.�&�0�3�8�1�'�"�2�+�/�-�/�)�؀ـЀԀՀԀ؀׀Ҁɀ׀׀Ԁ׀ۀ؀рԀրՀրրԀԁ/�-�%�-�,�(�(�+�2�8�+�#�9�6�"�%�&�*�,�,�4�5�$�-�(�%�.�8�#�.�.�0�3�6�-�7�*�0�(�0�+�/�,�/�/�)�0�0�'�"�'�$�-�%�/�!�.�,�#�'�2�0�-�3�0�*�-�2�� �;�"�)��'�:�-�.�#�/�+�6�*��4�!�*�2�%�,�-�#�"��3�.�%�-�9�/�4�(�4�:�!�+�)�#�(�9�)�-�(�0� �0�'�-�%�!�(�,� �)�"�,�/�3�.�:�(�'�,�(��'�3�2�(�-�(�2�,�0��$�!�&�*�.�)�:�5�5�5�,�3�%�1�3�$�4�5�5�#�#�4�-� �*�)�/�3�&�)�*�.�-�6�)�.�1�<�8�%�#� �)�3�%�)�&�.�(�6�+�:�/�1� �#�)�+��'�-�+�/�%�,�/�4�$�.�9�$�+�%�:�.�)��)�0�.�*�)�(�#�4�0�/�%�.�,�7�,�%�*�0�+�"�(�3�'�(�%�#�&�/�1�/�5�1�0�#�)�3�'�0��5�2�4�)�-�2�"�*�5��(�'�&�1�2�3�/�*�2�)�/�%�/�,�6�:�3�3�)� �'�(�/�+�-�)�2�,�-�(�'�)��7�&�1�,�-�5�1�*�1�-�%�7�*�=�*�1�.�#�,�4�0�;�-�*�/�'�,�,�8�0�2�*�'�7�/�$�/�'�&��(�,� �%�1�&�(�=�-�)�*�-�#�)�/�'��.�+�4�,�&�'��3�.�+�(�#�$�#�7�(�(�@�)�/�1�6�-�+�&�,�!�)�(�-�/�/�*�-�+�-��B�'�*�$�%�*�)�1�0�:�4�)�+�)�#�*�$�*�+�(�/�/�4�$�&�-�+�8�;�$�(�6�!�+�&�*�.�1�-�3�7�7�*�)�.�*�-�.�-�(�!�(�7�#�6�.�.�*�*�1�.�+�1�&�$�9�4�+�9�"�3�?�+�5�%�.�5�#�$�(�2�,�%�&�#�3�0�/�/�3�0�#�/�/�0�/�*�+�1�-�3�+�#�0�6�/�'�2�.�'�,�/�(�8�Ӏۀ܀Հрـ׀׀ՀƀҀ׀׀ـԀրրـҀ׀؀׀ԀՁ,�:�(�-�7�3�(�*�/�-�-�0�-� �8�)�0�.�5�.�'�$�%�.�'�-�'�7�+�"�/�"�$�%�1�%�%�)�#�1�)�-�"�)�1�0�/�$�*�(�(��*�-�5��,�?�-�5�)�-�3�*�*�)�(�(�$�1�8�#��.�+�-�0�'�-�+�9�3�/�,�6�"�#�$�0�#�&�7�/�8�'�'�+�,�)�/�(�)�.�4� �0�.�3�.�-�*�!�&�-�7�*�'�5�#�&�6�,�6�2�0�*�3�2�"�:�/�/�� �$�)�&�%�4�/�,�6�.�(�/�D�,�(�6�5�,� �2�2�(� �2�0�+�-�/�5�+�7�3�4�(�)�,�,�%�'�3�&�6�1�.�5�'�2�2�#�%�/�,�)��2�5�'�-�%� �+�.�1�4�)�%��-�%�3��2�*� �$�+�$�.�,�-��*�&�%�#�/�/�2�5�1��-�%�#�.�!�%��%�7�0�"�4�3�)�,�8�*�-�6�(�/�-�5�-�'�0�(�6�(�"�0��.�1�$�.�5�8�-�0��8�-��(�3�:�+�,�4�2�9�#�6�'�-�%�7�#�/�=�+�7�4�?�'�*�#�.�3��/�9�7�2��$�-�'�9��)�*�*�3�,�8�!�0�*�#�%�-�6�,�*�#�/�#� �+�%�(�&�"�1�.�.�/�2�-�%�%�.�5�2�,�*�-�*�.�-� �1� �/�4�2�4��-�2�*�'�'�,�2�/�8�+�,�'�,�(�/�#�,�1�.��*�+�'�5�.�-�/�%�'�&�*��/�,�3�6�)�.�&�%�,�4�&�6�2�(�#�%�/�0�0�'��2�/�&�2�/�/�7�'�5�+�4�*�+�+�.�=�,�)�1�3�1�3�,�<�2�&�2�1�.�&�+�&�'�(�-�*�=�'�1�3�+�,��+�"�)�)�2�)�6�+��1�(�2��+�%�/�/�1�)�)�,�2�'�5�#� �)�,�)�;�(�5�!�!�2�,�/��2�5�6�/�'�(�0�-�"�B�0�(�7�+�'�/�+�3�2�3�4�#�B�-�؀Ѐ׀܀ـԀՀڀՀʀҀ؀ـԀۀ׀ր׀׀؀܀׀ۀԁ&��,��6�"�/�.�-�/�$�/�&�.�)�,�+�/�0�'�%�,�9�7�'�4�.�,�*�!�,�&�;�&�%�+�0��)��(�'�*�4�)�+�)�3�)�.�)��)�;�.�0��%�!�1�6� �%�1� �.�4�/�1�&�,�*�,�(�/�#�3�,�'�"�!�/��H�9�'�+�:�&�2��,�/�&�+�$�*�/�1�/�&�3�!�2�(�)�,�3�'�)�2�5�/�+�'�&�.�7��0�(�/�,�2�!�,�&�$�/�-�2��,�/�4�2�4�"�%�#�,�2�/�4�1�,�7�+�+�9�'�)�-�%�'�1�!�4�2�-�1�7�3�9�@�+�-�.�&�,�-�5�0�#�+�,�.�4�5�0��,�4�=�,�!�#�*�8�'��*�7�-�6�.�&��8�%��!�(�1�&�.�+�0�.�'�6�0�.�)�/�=�)�/�-�-�"�7�'�(�%��!�/�)�(�!�'�'� �(�$��.�+�0�(�)�3�#�2�.�(�0��.�5�+�;�/�*�+�&�(�.�&�#�-�2�'�&�+�1�-�(�'�%�)�#�-�)�)�)�4�$�)�!�<�1�/�3�4�)�2�(�%�(�9�5�$�(��0�3�)��+�#�(�.�#�/�6�,�6�,�(�2�1�,�3�1�2�'�+�&�5�.�6�+�(�'�1��8�-�,�1�2�4�8�)�+�6�#��/�*�.�3�9�"�&�-�&�*�,�5�-�"�,�=�"�%�7�/��1�/�)�)�#�-�)�7�-�:�!�,�-�(�*� �.�1�/�%�0�7�,�6�6�/�*�4�$�4�9�0�2�0�4�5�'�2�2�)�7� �,�$��!�!�2�&�8�!�0�?�&�+�>�)�%�7�3�+�,�"�)�-�"�*�.�)�2�5�.�&�,�>�$�#�3�2�/�7�/�5�+�.�*�'�"�)�-�-�%�,�.�"�/�%�)�/�.�-�&�4�0�,�2�/��/�2�-�*�(�&��"�4�%� �5�7�'�1�$�+�7�0�'�$�3�0�+�0�6�3�*�"�,�8�5�.�*�=�,�,�7�4�1�6�-�1�ـրԀӀԀՀҀـр€؀ՀЀЀۀـ׀ԀԀԀ׀ҀրӁ9�1�"�%�;�,�,�&�&�.�4��.�(�0�4�,��-�/�#�,�/�9�1�&��7�8�*�%�+�-�8�+�.�%�+�0�!�"�*�+�%�3�#�'�6�+�%�)�#�4�#�/�7�1�2�+�$�&�!�2�"�&�-�3�-�8��!�'�3�0�2� �9�!�+�$�0� �-�#�&�-�-�%�2�,�9�-�.�5�(�,�4� �.�0�)�+�3�1�*�0�2�/�3�4�2�(�/�0�!�)�9�-�3�/�'�6�.�(�9�7�:� �)�3�'�1�5�&�(�"�(��)�+�/�6�=�/�7�+�.�8�.�%�2�5�1�,�1�(�*�*�,�8�2�.�/�7�7�8�/�'�'�9�-�&�)�,�-�:�-�)�1�+�(�%�'�9�)�,�/�.�%�.�"�/�3�!�1�1�'�2�/�)�'�(�&�/�*�&�(�3��.�(�.�*�3�0�&�6�(�,�3�)�0�.�8�(�#�%�+�6�9�+�'�@��/� �2�(�,��%�6�&�"�*�,�.�$�)�,�(�!�'�0�6�0�&�.�-�(�+�8�)�4�2�,�#�1�#�1�)�'�'�)�5�!�.�&�1�-�"�+�.�+�.�/�'�)�-�0�/�+�1�&�(�&�.�&��%�*�4�(�0�3�:�)�*�$�'�-�(��(�4�'�+�'�+�4�'�*�3�(�#�*�)�(�*�,�-�-�+�&�6�,�4�)�)�6�)�,�3�<�;�7�/�#�2�5�0�%�1��1��"�%�*�'�/�&�,�)�/�+� �1�4�-�6���'�-�*�+�:�/�)�.�"�+�%�.�-�5�+��4�,�"�6�0�+�-�6�+�&�-�-�'�3�&�!�)�1�&�,�!�3�.�+�;�-�*�/�/�,�!�>�9�$� �>�4�2�,�4�6�,�7�9�-�(�.�.�3�*�.�/�-� �3�'��)�'�'�*�0�0�.�+�%�%�6�5�%�5�3�0�0�-�4�$�+�/�*�6�(�$�&�*�6�+�.�+�2� �/�7�-�)�&�"�*�+�/�#�7�&�<�1�4�"�1�'�3�*�+�5�-�2�&�7�;�#�2�*�%�?�׀׀׀؀ր׀Հ׀Ӏǀ؀ـــ؀ހӀ؀܀ۀ׀ӀҀف&�/�*�2�3�+�)�2�5�%�1�;�%�0�/�/�/�6�%�1�0�2�&�(�.�+�+�.�&�:�+�&�&�1�(�7�%�/�%�)�&�3�)� �&�,�6��(�,�)�4�&�1�,�2�!�/�"�.�-�0�#�2�.�/�"�0�%�=�*�<�5�!�8�'�-�,�0�7�5�2�+�1�(�5�/�+�4�3�5�!�&�3�.�7�0�/�)�1�,�!�2�%�/�/�;�"�(�,��-�+�/�&�!�0�$�#�,�+�/�-�5�!�4�6�3�/�*�6�+�(�.��%�3�+�)�;�.�%�,�&�)��/�+�@�+�6�9�5�8�'�*�2�0�<�*�"�%�!�9�/�;�/�*�-�3�(�(�,�"�2�3�&�%�=�(�%�;�+�,�4�)�#�/�5�1�#�*�$�)�A�%�/�*�6�0�0�,�%��/�0�$�*�#�1�'�7�1�2�.�%�(�/��/�,�3�,�%�*�0�'�6�2�%�5�#�'�0�.�*�(�9�-�-�=�+��3�%�.�3�0�0��1�!�'�:�%�%�/�*�/�/�'�#�'�(�2�3�,��4�-�/�/�.�#�$�#�&�$�'�&�-�� �*�0�%�+�+�-�%��(�,�7�3�*�*�<�1�<�#�7�/�-�-�$�(�1�1�-�(�"�0�'��,�,�*�1�9�4�/�2��3�)�%�0�&�4�*�%�,�+�&�%�5�)�,�.�-�*�1�&�5�(�4��%�4�.�4�6�%�-��5�/�%�(�$�)�1�"�7�1�4�.�'�$��8�/�'��!�'�-�#�"�3��4�+�!��(�"�.�+�7�/�(�%� �<�+�B�3�*�(�+�7�$�$�1�/�1�2�3�/�2�-�+�8�*�8�'�/�?�/�1�(�-�3�$�)�0�*�&�/�)�'�/�/�-�'�'�,�#�8�9�(�,�"��,�4�-�+�-�3�)�'�(�(�,�=�*�(�0�-�&�7�7�.�4�-�-�/�6�7�1�2�7�5�)�%�;�?�2�4�/�!�*�3�%�/�5�0�2�,�*��0�/�"�1�+�)�+�3�'�8�/�3�9�,�6�'�?�1�рրՀڀـ؀ՀՀڀɀՀрրҀڀՀ׀ڀӀ܀рրրׁ#�1�.�3�+�!�#�$�9�,�&�.�:�!�/�0�%�,�'� �/�8�)�5�,�)�,�7�5�"�.�7�#�,�'�'�#��'�&�,�5�1�.�2�$�(�.�2�.�8�7�'�'�0�#�/�(�$�;�0�(�%�0� �7�#�#�(�+�4�,��1�&�+�/�)�3�2�1� �,�$�2� �$��+�+�+�.�*�3�5�$�/�,�4�6�)�"�&�0�6�6�2�%�+�/�/�2�!�/�%�*�-�/�2�'�4�"�6�4�-�3�+�1�)�4�&�-�+�'�5�=�.�5�/�$�2�/�-�+�+�+�-�'�8�@�-�J�3�1�.�,�?�3�5�:�9�)�1�&�/�3�1�A�5�+�)�0�)�?�$�"�*�8�8�.�/��+�-�!�%�%�(��'�%�)�-�*�,�5�.�=�$� �0�2�7�0�%�(�/�*�0�'�/�/�9�+��(�5�-�/�-�#�,�&�(�-�1�(�)��%�)�!�8�.�3�!�3��.�+�4�#�3�.�$�)�2�8�;�'�:�.�&�+�/�;��#�6� �3�)�!�:�$�%�1�)�&��0�,�,�5�4�0�*�-�.��$�+�2�!�)�*�1�-�&�;�1�.�1�3�3�.�%�)�/�4�$�D�*�/�/�!�3�&�2�4�"�5�'�2�.�/�"�'�)�&�.�%�#�8�/�6�+�1�'�!�&�/�.��)�%� �6�/�9�&�&�'�/��$�.� �#�%�/�#�(�'�:�&�*�&�2�+��!�&�4�$�.�1�3�0�0�"�"�)�-��%�1�3�!�2�4�2�0�J�,�;�2�)�*�3� �,�)�)�*�.�/�(�!�!��'�#�,�$�/��$�1�8�/�-�2�-�*�,�$�.�)�5�,�'�&�%�&�)�/�,�:�%�3�&�1�1�/�%�+�-�"�$�/�-�1�$�(�>�#�/�0��.�4�)�&�'�)�*���(�%�(�7�(�-�+�(�0�-�-�,�<�-�&�6�1�"�7�.�:�!�-�'�.�:�)�/�-�1�+�*�(�-�'�/�*�0�/�"�6�;�,�.�-�"�/�&�$�2�6�2�,�؀Հ׀ր؀ԀррҀÀـрրրҀրڀ؀ԀրՀӀۀց2�4�-�&��-�#�(�!��5�6�.�/�+�)�)�(�5�+�;�#�'�4�7��5�*�'�.��-�)�.�"�#�(�-�$�1�*�3�1�/�4�4�)�#�/�#�>�3�9�&�/�5�"�6�(�(�3�)�)�#�4�$�+��%�&�4�;�-�#�/�7�*�%�+�4�2�'�2�'�7�!�9���2�5�-�&�%�*�-�&�.�,�*�/�+�(�&�,�&�'�7�-�/�/�)�*�7�-�/�+�+�,�C�.�&�&�;� �1�.�"�(�*�)�(�/�*�3�0�"��7�,�0�"�)�(�:�)�5�9�?�/�<�@�>�=�:�@�E�6�)�3�'�@�+�%�3�>�<�.�%�*�1�3�'�2�#�"�.�.�$�0�+�!�1�-�(�/�/�/�/� �%�-�-�.�+�0�,�+�*�(�/�.� �-�)�)�+� �=�'�5�8�(�'�,�+�)�'�3�-�;�.�3�%�/�'�1�'�'�1�.�;�"�/�4�%��5�;�-�*� �'�3�0�&�0�4�'�1�/�-�2�'�0�2�)�/�,�&�0�'�7�&�@�,�.�#�)�'�.�/�*�.�'�*�,��*�"�-�)�1�*�#�"�'�$�'�)�(�-�"�!�+�/�'�/�.�%�1�(�(�0�/�0�"�9�%�/�7�(�0�/�$�/�&�/�'�#�)�/�$�1�2�"�&�3�'�-�1�*�*�/�/��,�5�#�-�/�0�+�#�.�1�5�1�*�'�� �*�+�(�1�6�5�/�%�/�*�'�)��&�.�&�1�-�2�*�'�1�-�'�)��2�"�(�'�9�8�*�(�,�$�-�0�:�4�9�3��)�)�7�/�(�.�3��&�1�/�7�+�/�2�'�:�*�1�.�.�4�<��#�7�0�8���+�'�"� �2�-�&�0�*�6�,�9�,�.�*�5�#�%�1�)�2�3�+��6�)�1�%�*��2�6�/�.�)�+�1��.�0�!�.�2�,�#�/�,�+�"�.�*�,��/�,��K�%�(�3�-�;�3�0�(�*�&�,�&��1�1�)�+�5�6�*�/�-�5�#�'�$�*�#�+�)�ՀՀԀՀԀՀ؀рՀǀԀրӀրڀ؀Ԁ݀Հ׀؀ӀԀҁ5�)�9�"�4�2��#�.�0�%�-��,�,�2�/�3�&�4�(�#�.�*�/�*�&�'�3�-�%�1�.�*�2��!�,�1�.�+�'�(�*�8�&�%�)�/���+�(�$�)�$�/�'�2�)�"�.�4�'�:�!�*��6�+�,��*�'�)�(�1�1�5�.�+�2�2�1�1�"�-�3�$�-�3�1�2�7�,�.�'�6�&�"�3�;�2�'�/�/�$�(�,�4�-�A�+�-�'�'�*�6�4�'�(�'�7�-�5�*�'�5�&�4�(�#�.�;�,�7�)�-�,�#�.�,�,�1�8�5�4�.�8�4�;�8�;�1�9�3�8�6�6�L�8�1�+�8�/�2�&�1�0�!�*�1�(�)�3�4�!�)�*�)�'�$��+�2�4�%�-�3��,� �.�.�>��-�%�$�-�#�*�,�$�.�.��"�"��$�*�'��)��4�5�"��&�-�1�2�$�(�,�+�/�-��1�)�$�2�5�-�,�-�3�&�)�+�0�+�4�5�)��#�9�-�&�,�'�(�3�3�+�2�9�-�!�7�"�.�/�.�+�&�-�.�#�)�/�,�3�0��-�(�2����&�-�'�'�(�/�*�%�-�3�/�'�,�%��0�7��*�3�5�%�&�3�,�-�+�7�-�-�8�0�*�6�)�#�5� �-� �(�,�/�*�$�#�+�$�3�,�)�&�0�&�*��/�+�3�&�%�+�(�$�'�3�*�$�+�$�&�'�+�%�$�'�.��&�(�3�&�4�&�'�0�$�5�-�+�4�&�2��,�&�1�1�(�*�'�"�"�/�1�*�*�0�.�2�,�(�1�(�3�1�/�.� �&��-�+�)�/�&�.�&�;�)�<�3�8�3�*�*�/�,�.�.�)�8�-�+�%�"�!�<�2�'�*�.�<�2�.�+�"�5�$�*�-�(�+�)�9�%�(�7�:�+�/�9�*�"�-�@�.�2�+�.�)�1�&�(�3�;�)�2�5�4�'�0�+�-�.�9�5�9�1��5�A�/�+�#�-�7�,�.�-�/�1�8�&�'�'�$�0�-�-�*�.�1�1�2�-�:�ӀـԀՀ׀րрـрǀ׀܀ۀـ؀׀Հ؀րՀ؀ՀӀс.�/�(�$�'�+�4�#�2��-�2�.�$�-�-�/�5�6�-�*�,�.�,��6�3�-�)�&�.�1�#�3�(�1�$�-�$�0�3�,�#�)�<�)�-�)�.��2� �7�(�-�#�#�-�%�5�-���%�1�)�#�,�,�+�/�)�(�"�+�"�/�5�.�%�)�5�0�9�*�+�*�-�<�)�'�4�!�!�"�.�)�7�(�2�/�4�#�!�%�1�,�'�;�+�%�-��+�+�/�3�5�.�4�7�,�8�(�1�1�*�+�,�$�9�.�*�1�:�/�1�:�8�+�2�-�<�7�4�+�;�.�=�@�<�L�E�>�W�G�7�F�:�=�9�3�/�2�4�&�.�2�&�(�"�1�*�!�4�+�1�8��.�:�"�(�*�-�-�-�-�!�"�0�*�6�.�9�5�&�2�%�*�*�%�&��&�"�0�6�"�%�1�3�'�-�&�3�'�5�,�.�/�/�3�,�"��/�/�(�(�6�6�*�'�&�4�)�+�'�+�'�2�4�"��2�+�&�%�%�7�(�*�$�'�3�3�,�+�'�&�0�'�$�2�#�3�(�.�'�-�&�5�-�'�)�+�-�7�*�0�5�2�4�1� �$�+�.�2�3�.�&�2�)�/�+�>�*�+�/�&�"�)�+�#�/�)�0�/�-�$�*�3� �,�)�(�5�4�!�!�#�1�.�1�1�/�0� ��%�&�+�'�%�.�%�+�5�$�*�2��)�&�1�)�2�"�.�6�*�+�(�0�5�&�0�9�B�2�0�8�%�,�+�2�3�!�+�-�*��+�0�-�-�(�(�%�5�(�0�*�+� �,�1�B�,�-�/�.�5�'�+�'�3�/�&�1�,�3�:�+�&�&�$�+�0�6�%�1�*�,�7�,�$�'�&�)�7�(�(�.�(�,�#�+�)�.�+�0�$�*�8� �*�-�9�0�'�/� �-�/�%�4� �+�)�!�4�=�(�.�-��:�*�4�*�0�(�'�2�@�2�+�-�&��+�-�!�-�+�$�.�&�5�.�&�2�+�$�1�!�:�.�%�3�%�/�,�2�,�%�3�/�'�/�'�4�/�4�0�*�'�9�5�ր׀ۀ؀րՀՀԀۀˀڀԀ܀ӀЀـր׀ـҀڀڀրҁ,�2�5�@�#�&�,�'�0�!�,��&�8�2�+�%�/�1�2�%�"�%�!�6�*�2�'�3�5�,�%�:�0�1�/�/�2�)�(�#��+�+�'��8�-�.�4�/�"�/�*�0�*�!�*�0�/� �)�/�4�'�$�'�1��-�&�-�,�%�3��*�/�$��3�)�1�'�-�&�&�3�-�-�0�+�.�/�'�%��+�0�0�'�1�)�%�&�.�2�/�=�.�:�-�.�"�7�.�0�*�/�&�5� � �2�1�)�!�+�8�9�/�/�5�+�1�/�-�'�0�&�1�'�<�4�9�>�@�:�J�M�O�F�N�9�J�F�I�M�4�8�F�:�B�)�%�)�2�7�&�=�+�-�-�.�2�(�*�2�%�.�-�+�4�:�!�%�)�+�*�/�2�$�-�,�1�+�/�.�,�8�*�+�#��7�!�"�-��+�,�(�#�&�/�9�%�-�(�5�%�2�)�1�9�7�'�'�(�:�.�%�+�.�2�-�2��%�&�1�*�2�6�3�7�$�.�&�*�,�%�#�&�+�)�+�(�@�+�1� �7�&�*�3�0�'�'�3�(�/�*��!�1��-�&�-�-�+�(�&��/�%�)�2�,�+�2�'�+�2�4�)�3�)�3�/�%��,�3�%�.�/�7�$��)�)�5�)�0�(�1��'�(�.�.�)�3�-�2�?�/�3�"�+�'�-�0�7�/�(�,�/�$�:�#�2�=�/�+�/�3�4�3�*�>�,�/�%�0�3�'�#�/�.�&�&�+�1�(�7�-�/�+�)� �*�8�'�2�)�/�*�4�$�.�.�"�(�.�4�/�3�.�*�(�*�4�1�'�3�1�3�+�+�0�.�+�=�.�*�+�&�2�-�+�.�+�!�1�-�2�4�0�/�)�0�!�$�'�-�)�$�/� �%�*�$�,�1�!�+�4�.�*��)�/�+�@�.�"�'�%�.�&�0�,��"�!��/�1�0�4�%�#�/�(�,�)�-�/�+�&�.�7�$�*�.�(�-�)�*�"�&�9�.�%�0�,�)�:�4�'�1�5�+�#�;�#��0�(�$�#�&�9�!�0�0�0�=�8�ـՀԀ׀׀׀ր؀׀ǀ׀ڀրԀ؀Ԁ׀րրՀҀԀڀӁ/�#�0�"�<�2�$�4�-�.�%�*�8��5�"�2�%�+�$�,�3�1�1�-�,�0�:�6�/�.�3�%�)�"�,�,�)�%�!�/�.�(�5���&�/�6�/�'�4��!��&�1� �"�/��#�0�-��*�4�)�*�+�*�&�*�'�6�)��.�0�1�%�&�6�%�4�%�;�+�0�3�'�2�+�$�.�:��*�<�$�'�0�4�9�+�#�1�/�*�'�+�0�!�1�6�1�%�-�&�1�%�0�.�'�9�5�.�4�'��/� �0�/�-�3�-�:�%� �3�C�/�G�F�?�;�E�[�P�^�S�g�k�[�Q�]�T�G�C�C�9�/�9�9�7�8�0�.�-�2� �/�&�%�(�0�1�,�/�"�9�;�;�3�+�/�)�*� �0�&�*�+�+�0�6�1�3�)�4�'�+�"�-�'��.�/�(�2�$�6�'�%�0�(�/�+�+�#�&�7�%�0�)��'�"�,�=�0�+�*�-�#�)�/�/�&�2�1�)�"�'�'�%�*�� �;�9�,�#�-� � �0� �-�,�1�!�%�2�%�-��9�8�)�(�3�1�3�/�.�)�1�(�(�-�5�'�*�-�(�*�(�'�$�1�.�3��+�3� �!�%�9�#�%��-�,�4�(�)�-�0�$�1�,�0�+� �)��)�,�6�.�)�,�*�!�%�'�&� �3�:�)�2�(�&�'�-�$�E�@�6�*��'�'�#�4�*�<�(�4�1��2�+�8�'�,�)�;�'�7�*�,�*�,�$�2�%�.�.�&�,�+�'�#�)�;�*��'���(�(�7�+�1�*�E�+�$�.�0�0��(�$�1� �5�.�2�+�$�0�'�1�2�.�1�7�7�&�(�8�'�4�/�+�(�4�,�,�2��.�.�+�-�.�0�$�2�.�/�+�5�9�(�(�9�.�1�%�2�&�.�6�,�&�#�*�0�#�1�*�+�*�5�.�?�4�-�"�5�1�'�#�1�3�$�/�&�$�,�9�/�6�;�0�(�3�8�5�(�'�,�$� �*�4�2�&�(�-�,�6�:�-�+�-�6�-�+��2�5�=�2�ۀ׀׀Հۀۀ؀ԀЀÀՀրπЀ؀Հۀր׀ԀҀՀЀׁ/�,�(��+�+�,�2�3�-��$�&�+�'��1�2�#�6�3�,�)�*�1�%�'�/��.�#�6�5�9�.�4�3�0�'�(�1�,�'� �/��*�*�7�5�)�4�7�-�0�-�0�1�&�"�!�#�$�)�,�#�(�.�*�)�2�8�5�&�(�/�"�-�(�%�(�2�)�+�1�'�3�0�!�-�$�+�,�*�%�"�+�*�-�"�,�'�+�!�1�/�#�?�$�0�-�0�3�+�$�%�&��,�'�,�/�<�%�)�.�*�&�'�4�'�,�.� �1�*�3�1�*�3�.�*�3�8�9�I�K�Q�Y�e�X�k�t�o�w�z�l�T�e�Y�E�;�=�4�G�,�2�2�9�:�2�?�9�%�-�/�-�+�*�(�F�/�7�)�3�*�)�@�1�/�)�*�6�#�+�#�/�"�'�,�-�3�/�'�'� �"�+�,�(�*�6�,�+�0�&�3�$�/�)�#�*�0�/�7�2�.�!�'�8�)�1�0�6�+�3��!�(�/�"�/�&�1�.�"�'�-�8�,��/�(��!�%�-�*�'�(�1�'�-�,�-�#�*�'�2�.�8�1�3�'�3�+�%�*�(�#�(�-�7�5�,�+�"�%�/�/�*�)�'�'�*�7�%�*�*�.��+�.�1� �1�+�2�/�,�6�1�,�(�)�1�'�'�#�2�*�,�/�2�/�2�#�(�$�(�'�%�1�+�(�)�4�(�+�)�-�+�6�)�)� �3�(��*�&�2�3�1�!�,�*�+�-�!�)�$�5�#�2�(�2�)�'�*�/�%�%�)�-�#�)�0�2�*�,�,�+�,� �0�1�*�.�"�!�*� �1�1�)�'�(�6�*�2�$�'�/��/�%�7��-��6�4�4�5�'�<�-�4�.�7�*�%�/�.�&�'�*�.�*�1�-�'�&�5�.�&�&�.�/� �-�,�7�.�.�(�+�5�+�.�&�:�.�+�.�)�)�-�!�%�8�/�-�)�/�,�.�2�3�2�*�7�*�%�#�(�*�*�7�<�!�2�(�'�#�,�,�*�(�!�0�2�&�(�/�$�:�*�.�1�/�*��.�'�#�*�(�,�8�,�׀׀րրր׀ـڀՀɀҀӀӀ׀ـ׀׀ӀրԀڀ΀ۀ؁ �%�3�(�!�/�.�8�6�2�+�)�/�$�$��,�1�.�'�'�$�,�6�1�'�.� �'�8�!�(�2�$�.�5�/�%�1�%�-�/�5�!�0�(�;�;�6�5�7�/�)�%�/�/�'�@�)�$�*�-�'�(�"�(�<�4� �3�2�*��"�=�$�'�1�.�+�%�1�4�5�A�7�&�'�&�&�-�4�-�,�-�5�2�+�%�+�'�0�*�.�(�6�/�&�#�+�)�+�.�1�/�3�4�7��'�1�)�3�8�*�,�'�1�,�*�+�)�6��=�+�7�5�'�2�:�3�2�C�B�N�@�V�a���k�����������y�w�q�X�[�L�=�B�/�)�/�7�/�/�-�"�,�%�)�2�!�)�2�'�#�,�0�'�%�/�(�3�+�*�2�.�*�0�3�0�.�*�,�4�"�'�%�(��+�2�5�7�(�;�+�+�%�+��"�0�.�7�1�;�)�(�.�&�+�3�8�2�,�0�.� �&�"�%�-�"�1�*�"�+�.�-�4�"�!�/�&�-� �/�%��3�'�'�1�4��/�-�.�1�-�.� �7�2�;�$�7�/�#�/�0�)�7�/��3�$�/�7�-�,�"�+�3��4�/�,� �.�'�&��-�%�&�1�4�"� �-�,�*�*�7�)�(�4�'�4�,�(�0�'�&�+�� �1�)�*�2�)�/�-�3�&�)�3�+�4�$�8�5�3�)�*�1�=�-��"�8�1�2�+�)�*�%�1�'�(�3�+�.�"�/�%�-�*�7�,�4�)�;�,�)�2�!�+�3�+�!�+�)�-�&�(�%�0�#��'� �1�'� �4��+�"� �!�*�"�'�(�$�(�,�(�,�0�-�!�)�(�7�)�*�)�#�=�5�)�%�+�'�%�'�2�&�(�-�2�1�1�1�.�)�6�5�2�)�#�+�4�0�/�1�6�/�(�.�$�.�2�.�1�&�,�)�2�&�,�.�8�,�%�-�/�/��&�+�*�/�(�>��(�*��&�2�"�0�.�7�0�,�8�/�0�/�8�*�2�4�0�/�*�9�*�8�3�+�6�#�6�.�:�2�*�"�*�Ҁ؀ՀـՀՀՀ؀ЀƀрӀրۀـӀՀրրـԀրրց6�3�.�$�/�*�%�4�$�)�+�#�2�-�*�'�3�3�3�(�6�5�9�,�8�#�4�-�9�.�/�%��1�%�%�3�*�'�)�8�3�#�!�)�.�%�5��!� �&�1�7�,�1�3�+��'� �'�(�:�'�/�'��%�'�0��(�,�1�*�,�1�$�)�6�0�8�/�(�)�)�*�1�2�2�$�$�'�.�-�1�*�(�#�(�3�*�6�(�-�0�5�4�!�(�-�+��$��*�#�%�:�/�*�&�)�"�%�"�4�+�3�/�3�,�-�*�)�'�.�5�$�=�1�?�H�F�X�]�o���������݁܁߁ԁ������p�_�^�S�?�;�A�7�6�3�;�$�1�/�>�+�)�&�/�+� � �4�'�$��+�%�+�+�,�(�*� �5�3�+�$�4�-�"�*�0�-�-�"�+��$�%�+�-�&�,��*�:�)�5�-�)�2�%�%��#�.�"�#�+�.�+��7�0�2�)�*�&�'�/� �%�'�)�1��5�'�1�,�*�3�"��#�*�9�0�)�4�*�7�,�8�,�5�4�7�4�3�)�$�.�/�,�+�"�-�/�*�*�1�-�$�-��.�+�%�1��+�%�!�'�,�1�.�4�-�+�+�2�6��5�0�%�.�'�"�#�0�(�'�"�2�+�.�8�)�/�1�/�#�)� �*�+�%��!�,�)�$�:�*�7�9�'�+�#�+�)�0�.�'�*�'�$�0�2�)��/�+�.�3�0�-�)�#�,�'�3��&�3� �&�1�+�#�(�7�'�-�6�/�,�+�'�/�"�,�;�0�1�6�.�'�)�0�8�3�&�,�$�2�"�-�2�,�0�1�2�*�)�8�"�$�#��:�5�9�*�,�1�+�)�+�3�<�8�5�0�)�0�'�-�2��+�0�7�1�1�,�1�,�"�7�)�#�%�3�)�!�)�%�/�%� �3�0�'�5��$�:�6�"�/�;�3�+�(�.�/�,�)�/�)�.�4�2�#�1�'�*�,�/�'�5�/�/�%�(�$�+�$�%�,�(�)�8�/�'�.�?�+�2�$�9�,�2�(�-�/�0�3�ӀЀՀـ׀Հ؀܀ՀǀـԀՀрՀҀـՀЀπڀԀՀЁ0��%�8�#�<�#�$�0��9�$��1�"�,�(�.�5�*�/�)�6�2�&�0�*��1�0�2�%�4�(�*�0�&�"�+�;�9�/�(�/�4�'�+�9�(�3�7�4�"�*�%�4�,�.�3�"�#� �3�(�.�)�7�-�%�,�4�2�-�+�4�+�"�0�(�)� �+�)�7�;�#�,�!�3�%�&�,�3�0�*�/�)�0�(��0�4��/�"�1�/�'�;�&�0�&�-�%�-��*�'�*�/�+�!�1�*�%�.�.�+�0�:�0�#�%�.�:�9�,�/�/�%�5�=�/�\�k�S�l�x�������/�O�;���ہ����f�W�\�M�=�A�7�2�9�/�:�,�'�+�'�)�%�3�+�8�0�6�)� �)�(�/�2�&�1�-�)�:�'��0�#�.�.�8�+�,�,�,�/�+�1�6�(�)�+�4�*�,�+�*�)�.�)�0�1�+�&�&�0�/�.�*�0�J�-�&�'�-�*�+�&�)�3�&�%�0�3� �0�1�6�/�C�&�,�4�?�/�.�-�(�#�(�5�#�+�3�.�+�)�+�.�+�#� �(�-�.�(�,�(�'�&�)�3�0�+�/�0�1�.�/�!�7�*� �.�3�=�1�#�*�#�+�,�-�1�-�*�1�/�+�-�)�.�&�'�/�#�%�)�.�.�(�)�2�(�.�(�-�1�/�"�/��3�+�6�+�'�$�6�/�5�$�*�*�3�1�"�2�)�(�#� �-��3�,�+�$�%�*�*�� �+�(�-�.�0�3�+�<�(�%�'�!�:�,�3�#�.�"�1�"� �-�(��$�,�4� �&�8�,�=�-�-�1�/�-�6�!�3�(�!�%�1�&�-�$�5�-�&�+�9�0�:�4�#�.���'�:�!�+�)�+�!�1�$�,�)�9�&��.�)�8�)�9�"�"�4�*�%�.�"�(�+�"�7�%�+��+�-�+�1�0�'�,�.�#��4�)�+�+�&�-�4�%�5�/�,�(�.�$�3��&�.�-�'�-�;�+�+�;�+�0�.�'�.�1�1�1�'�*�+�/�-�5�-�4�,�2�3�2�3�4�9�׀׀΀Ӏـր׀ڀҀ̀րڀՀ̀рۀЀ׀ր؀؀ր׀ف4�7�0�1�$�+�-���"�:�!�5�*�5�/�$�4�'�:�)�:�/�-� �'�+�2�>�1��.�2�5�4�*��$�-�&�,��1�&�5�=� �/�8�4�/�(�2�7�1�,�%�#�!�%�)�1�.�)�0�$�+�/�%�1�4�5�,�'�5�7�"�,�-�-�%�1�9�1�*�*�5�+�5�&�-�/�4�4�)� �*�*�4�1�+�2�3�0�)�-�5�$�6�$�/�0�+�+�!�/�5�/�-�3�(�(�:�� �#�,�"�%�5�.�"�)�.�-�,��'�1�=�5�B�C�M�Y�r�����ł�U�x�����邻�p���Á��]�_�N�H�:�5�6�1�2�%�/�/�6�'�A�1�/�3�=�,�%�'�/�.�#�?�*�+�.�'�0�*�,�7� �/�%�&�1�/�#�8�#�,�+�1�$�)�B� �-�*� �.��*�/�(�,�1�,�/�1�=�)�,�;�3�4�-�%�%�.�.�7�,�"�(�$�)�*�)��,�&�$�0�,�3�"�!�,�,��"��$�(�.�2�(�'�>��!�'�6�4�3�/�$�;�/�1�1�>�2�2�-�%�)�3�'�&�-�%�+�"�"�5�+��$�+�#�2�.�2�.�0�!�)�2�%�(�)�3�$�!�'�*�(��1�+�1�2�)��)�9�-�3�"�"�9�5�&�4�+�2�'�3�'�&�-�0�/�'�0�&�9� �'�'�+�+�*�%�0�)�5�%�3�*�*�$�*�)�'� �)�%�+�1�(�)�'�,�&�)�0�#�9�#�-�%�2�-�0�7�4�-�A�+�&�'�4�#�1�!�)�$�(�.�2�.�'�9�-�/�#�&�'�1�4�5�%�#�,�(�3�7�'�1�.�4�5�%�6�1�0�:�,�,�,�3�'�#�#�5�4�1�/�2�"�1�+�,�0�!�#�>�/�0�&�2�+�3�'�.�5�,��%�1�*�3�8�)�.�,�&�$�1�*�)�/�&�'�-�1�.�8�6�2�&�5�+�+�%�+�)�#�'�&�2�;�3�,�9�&�%�*�2�<�/�,�/�5�#�'�5�3�-�7�1�'�4�%�,�ҀҀ׀րՀӀЀրԀȀԀՀրрրՀҀՀҀԀր׀ـ݁(�1�+�.�,�1��$�.�#�+�!�1�3�8�,�/�.�9�)�/�$�2�'�1�4�#�$�$�/�6�'�/�,�'�(�/��-�3�%�&�*�+�4�'�$�+�2�5�8�-�4�5�(�,�!�/�(�%�*�<�-�,�'�'�(�)�(�(�1�,�,�'�*�*�/�/�/�6�*�/�0�.�+�.�5�(�-�)�+�+�"�'�#�2�$�$�%�&�1�1�%�%�)�4�5�.�(�*�6�.�.�*�+�1�)�*�0�.�9��/�(�2�)�-�;�&�1�3�-�0�8�4�6�7�-�E�@�8�J�C�d�^�~���Ă�e����c���t�j�炱�,��ˁ��s�R�G�<�=�;�/�:�-�(�:�/�;�,�/��)�5�3�0�1�)�9�=�!�#�%�1�%�.�"�&�#�+�&�.�4�%��'�*�0�0�/�.�+�+�%�'�+�3�-��*�(�&�+�.�+�0�5�.�!�*�(�)� �"�1� �3�2�)�9�*�&�(�5�:�6�-�)�+�#�9��&�9�+�(�'��2�6�.�)�1�9�+�3� �*�0�%��0�)�'�%�(�:�"�-�&�'�)� �'�&�"�5�3�/�0�6�9�$�$�$�+�)�;�"�&�!�4� �2�1�-�6�)��*�"�(�+��&�#�0�*�+�)�0�,��+�5�)�/�#�3�.�,�#�'�#��&�-�%�$�'��%�$�'�/�*�(��)�+�/�1�+�$�?�(�6�/�)�&�4�#�+��4�*�4�3�9� �/��3�-�/�#�6�*�-��(��/�$�1���'�!�&�2�(�'�.�'�8�(�+�4�6�3�/�3�0�)�6�#�0�-�7�/�,�+�1�<�/�$�+�.��'�6�%�"�'�2�1�7�&�*�5�;�'�/�3��2�*�'�,�*�'�0�/�-�(�$�-�.�"�4��*� �%�&�!�0�4�-�+�0�,�/�%�3�*�,�,�(�-�0�4�:�0�(��+�-�+�!��7�+�!�3�+�4�;�2�2�"�9�(�"�8�1�>�+�1�*�#�-�4�5�%�9�,�4�&�-�-�,�/�3�2�؀؀ـ׀ԀՀԀ׀ـŀՀր׀ـՀӀ׀؀ր׀ӀӀ؀ԁ�2�-�&�-�4�/�'�,�-�)�0�/�!�'�"�$�3�8�8�2�&�(�1�-�2� �)�'�.�5�'�"�$�*�+�.�.�+�/�4�.�.�:�4�3��!�3�)�'�0�"�4�5�-�%�2�-� �(�3�#�*�)�.�#�-�+�+�0�+�%�3�!�1�+� �+�5�7�+�+�,�-�.�(�!�1�)�0�'�'�!�5�2�-�<�6�4�)�8�4�&�*�*�%�%�*�.�"�0�"�6�+�+�+�*��)�)�+�7�1�(�.�4�-�6�-�0�(�3�2�1�)�+�-�(�=�9�O�Q�W�y�������P�������F�3��o������遗�q�a�J�5�2�2�5�?�/�>�-�1�'� �2�)�0�7�3�*�0�/�4�6�+�:�1�%��)�'�2�0�(�6�/�(�'�(��+�0�-�3�$�+�/�#�(�,�;�+�'�1�1�4�-�'�+�.�.�/�2�'��-��)�4�+�5�"� �0�2�&�1�"�?�-�-�+�(��,�!�'�6�)�'��4�'�)�%�%�'�,�+�+�,�(�.�$�5�)�&�!�1�4�4�(�'�8�3�8��-�*�)�+�;�+�(�)�-�-�*�*�9�0�&�)�0�3�'�*�.��7�,�&�'�4��,��,�(�)�4�.�$��2�'�"�,�/�.�%�/�&�&�)�7�2�/�1�1�%�"��.�$�$�+�2�F�0�#�/�#�+�'�"�9�$�8�#�$�'�)�&�-�2�#�=�"�.�)�2�%�2�/���-�,�2�,�&�2�!�'�+�%�+��/�(�!�7�(�&�#�&�(�'�;�/�)�3�!�9�)�&�$�%�2�/�.�1�.�,�*�5�/�(�(�.�%�/�+��*�!�:�&�8�6�'�6�*�%�9�0�/�+�+�1�-��(�*�(�%�!�+�7�,�'�3�,�5�/�!�(�,�$�8�-�%�:�#�+� �*�$�)�.�1�,�(�.�/�-�7�&�0�)�1�3�#�$�-�:�&�4��,�'�0�5�G�#�;�&�&�&�(�-�'�1�+�*�/�(�'�0�4�2�$�!�/�+�-�(�&�8�рۀπۀԀӀ؀ӀۀƀҀրԀЀ߀׀рҀڀրՀՀ؀Ձ%�0�%�'�.�+�.�7�4�)�0�4�2�%�*�'�"�-��6�0�"�+�$�!�.�.�%��)�,�8�'�'�2�(�.�!�+�'�/�2�6�,�>�/�(�$�3�+�1�(�'�+�%�-�,�/�*�1�5�3�(�/�4�%�3�+��-�/�/�4� �+�!��:�(�4�(�8�'�#�/�*�*�0�.�*�5�-��@�"�3�A�'�%�1�/�!�3�.��(� �)�-�-�3�$�#�/�&�)� �/�)�/�1�'�$�!�5�+�+�$�/�1�4�'�#�0�+�/�;�3�1�-�N�D�9�S�}���Â�n�ۃs�����ӄ���Y��M�ち�}�^�P�B�F�D�1�7�*�)�5�$�'�+�6�1�"�-�+�)�:�)�0�1�.�2�1�7�1�!��.�/�#�+��-�+�+�&�-�8�4�+�4�5�+�/�8�1�5�1�2�+�,�.�0�3�4�%�3�1�.�-�/�%�)�*�!�+�#�$�(�)�*�5�5�/�"�#��*�-�,�/�+�'�(��5���(�/�(�)��+�(�(�-�1�$�#�3�-�+�'�+�/�-�"�/�&�+�1�&�$��1�*�:�%�2�"�&�(�4�/�'�6�%�%�-�)�/�$�3�%�&�4�&�(�,�+�&�&�:�"�/�,�%�0��)�)�/�2�'�-�/�.�!�%�,�5�0�+�$�8�/�-�'�6�$�$�'�"�.�*�+�$�%�9�8�2�)�!�0�'�9�+�"�(�9�%�(�3� �1�*�(�)�1�(�1�0�(�7�)�.�/�%�.�+�1�0�+�,�*�#�2�&�%��.�*�)�'�$� �%�2�,�/�,�#�(�+�4�)�>�0�-�+�+�7�:�9�5�,�%�4�"�(�)�5�4�4�,�.�'�,�(��2�)�1��(�.�1�'�/�*�/�*�3�)�1�,�+�*�*�'�$�2�@�*�6�)��&�&�.�1�&�"�$�"�*�!�9�,�2�#�$�/�)�(�,�/�3�4� �%�4�9�/�,�4�+�7�7�8�'�4�-�4�2�8�3�9�'�&�+�*�4��#�#�4�&�'�.�2�4�-�-�-�ԀրӀՀ׀ӀրـӀŀ׀׀ҀԀр׀րրڀՀր׀ՀՁ&�6�9�4�*�$�0�6�0�/�-�)�(�/��>�4�7�(�/�!�4��2�5�/��/�4�/�.���'�!�-�1�'�,�)��7�,�'�.�9�3�)�#�1�%��2�6�,�,�*�'�2�/�)�4�'�(�-�'�4�-�-�,��)�'�.�+�7�'�#�/�%�(�)�(��$�(�(�#�#�3�*�5�8��/�1�&�0�4�6�-�)�-�-��5�8�+�)�.�$�)�-�/�0�&��)�"�&�6�)�6�)�+�(�1�8�&�/�-�6�'�)�2�0�=�7�7�4�,�R�W�i�q���Ԃ'������c�Å����Q�}��J����x�q�E�Q�?�9�2�1�8�3�2�3�'�$�)�'�/�&�/�9��3�:�/�A�,�2�$�!�.�1�1�1��.�,�)�,�3�-�(�*�9�#�5�(�1�5�*�2�/�/�(�+�/�3�,�*�"�1�#�)�(�6�.�1�/�.�#�4�'�%�$�-�+�2�6�0�1�/�*�7��-�+�*�%�*�.�.�0�@�,�+�/�$�&�-�.�'�:�4�(�.�'�7�*�&�5�(�4�.��)�.�0�/�!�,�,�&�8�/�1�)�,�*�-�/�.�(�.�/�'�#�*�%�.��4�,�-�$�)�%�4�)��+�"�)���*�-�-�6�$��1�*�5�.�*�+�)�2�!��0�0�0�%�-�'�-�4�'�3��*�,�"�;� �/��)��.�"�0�.�)�"�#�'�+� �1�6�.�-�-�*�5�*�%�-�/�'�'�"�)�"�(�;�!�9�1�,�/�3�.�-�4�/�/�,�'�,�-�C�;�7�+�-�+�-�2�*�*�=�(�&�-�#�#�6�/�0��1�,�,�&�*�3�%�/�8�*��5�0�3�$�(�/�*�-�0�.�/���6�0�+�=�'�0�0�'��/�)�/�'�.�)�,�/� �%�"�/�3�0�+�/�1�1�&�-�&�6�%�+�/�*�8�2�.�1�)�-�0�/�0�:�*�)�)�,�;�(�(�*�3�'�*�(�)�(�%�<�.�5�&���7�,�4�/�8�6�/�,�׀ڀ׀׀׀րҀ؀׀ǀӀԀԀ؀ՀՀ܀Ӏрڀ؀؀ՀӁ-�#�1�8�:�.�:�%�-�.�1�6��5��,�#�-�,�0�:�+�8�$�5�.�.�5�)�4�&�-�(�$�5�*�,�1� �3�!�9�)�(�-�3�+�4�%��/�+�(�/�)�'�-�3��#�%�<�"�)�'�)�"�1��*�+�)�7�.�&�(�0�1�)�(�'�2�2�)�6�)�-�#�-�6�*�(�-�)�5�2�-�3�)�&�,�7�1�%�3�8�&�.�/�0�1�+�;�'�'�-�1�&�8�0�)��/�7�3�$�.�9�*�0�%�+�'�3�1�+�8�:�:�9�6�I�Z�_�����͂ ����������ӄi�񃁂�G�偶�y�k�T�E�C�6�E�B�7�6�>�1�3�:�1�(�/�:�0�8�.�%�1�$�#�0�*�6�3�)�4�/�'�8�#�.�5�1�'�/�2�&�0�5�!�(��"�1�$�.�=�-��+�(�'�0�2�&�-�$�&�6�2�1�)�#�,�.��!�.�4�(�4�.�#�+�/�0�"�-�1�-�&�"�*�,�-�*��=�$�-�0�/�%�+�+�(�+�-�(�2�"�)�.�/�,�7�'�1�*�)�4�/�'�$�/�4�-�6�-�-�/�/�.�/�&�6� �7�#�7�(�$�+�<�2�'�0�0�*�-�2�.�1��.�&�0�+�+�0�*�>�(�(�,�0�1�:�,��1�.�%�-��/��4�2�6�5�'�)�*�$�%�5�+�2�5�$�(�2�/�'�"�2�,�"�+�5�"�3�+�$�&�3�'�,�,�/�1�)��*�%�&�3�"�(�2�0�(� �$�/�'�5�.�,�7�)�1�+�1�#�%�6�#�*�+�+�2�2�!�$�6�3��+�-�&�&�3�+�1�"�*�!�(� ��2�-�'�'�-�.�5�-�/�,�3�#�-�9�5�,�)�.�5�"�5�"�"�+�'�,�5�.�)�'�3�4�$�-�*�#�6�6�.�/�#�(�0�*�7�'�/�7�%�*�#�5�&�:�5�*�1�7�&�%�1�3�%�0�,�,�.�1�2�/�1�#�6�%�-�2�*�"�*�+�3�%�4�+� �+�/�7�(�%�5�#�+�ـӀЀՀՀ׀؀ـԀɀπـ׀ـ؀Հրր׀Ԁր׀ڀف0�*�'�#�-�0�8�5�(�'�#� �.�*�-�/�-�#��1�+�/�5�7�)�-�9�8�$�0�2�+�"�7�+�6�"��"�'�*�(��'�5�0�&�3�$�)�4�0�%�*�%�3�0�1�6�-�0�&�2�.�,�&��-�.�*�3�$��5� �)�&�/�3�(�0�+�2�*�'��&�"�2�7�,�2�#�-��1�%�&�+�-�#�3�-�0� �3��-�(�0�&�:�/�(�$�?� �%� �+�+�2�/�2�5�3�3�:�.�B�%�#�/�-�6�"�8�7�(�A�B�D�P�a�h���ҁ��q���5���-�@�S�������=�끯���b�F�;�A�,�8�=�7�2�3�.�/�6�(�-�3�/�/�$�2�(�7�+� �*�1�1�0�/�'�%�6�)�7�+�&�"�%�(�.�-�-�+�,�'�-�/�$�!�6�/�+�%��4�+�'�&�4�%�4�!�1�%�&�/�/�,�-�*�/�#�+�8�!�-�,�4�/�'�*�&�'�1�&�6��7�'�%�3�9�&�0�%�3�$�2�(�!�)�(�5�'�0�'��0�,��-��+�)�#�1�3�!�0�$�)�/�2��-�*�4�(�+�2�1�)�(�!�5�$�$�/�8�(�6�#�&�+�,�$�1�.�)�0�*�3�2�)�-�.�&�$�)�(�-�1�-�#�=�!�/�&�,�3�/�(�%�1�2�1�&�(�4�)�*�3�"�8�+�4�,�-�,�0�5�0�-�7�;��7�3�%�/�"�0�/�-�*�*�,�'�"�(�"�-�*�5�.�-�%�#�"�*��!�3�/�(�/�.��&�1��)�%�,�*�-�3�(�3�1�(�6�.�+�*�5�2�4�!�.�)�-��3�(�2�'�%�3�5�,�:�&�&�+�&��)�&�5�,�&�5�!�*�+�-�/��&��)�.�3�(�*�;�#�-�)�7�,��*�,�*� �-�$�-�%�%�3�/�,�-�&�,��/�$�+�*�&�0�0�(�%�/�2�*�)�"�*�3�-�+�/�)�1�3�4�'�$�-�7�7�)�,�+�4�2�/�6�*��)�'�+�؀ҀـЀ؀ـՀр׀ȀۀրЀ܀ր݀ـۀՀЀڀր؀ׁ6�#�/�)�1�)�<�'�5�/�0�*�,�-�7�.�1�/�9�4�"�2�$�(�"�(�%�)�+�3�-�.�.�>�"�'�4�;��-�>�%�.�(�&�%�*�:�)�*�*�+�#�3�5�+�,�3�3�1�(�.�1�&�9�'�%�!�+�+�+�-�2�%�.�'�'�-�.�-�7�+�/�+�5�*� �6�-�&�'�$�)�%�#��%�:�"�'�.�0�-�%�(�3�'�4�,�+�8�.�'�'�5�3�6��5�,�,�#�;��/��4��!�+�;�+�*�&�-�@�5�2�7�4�A�K�M�Z�����Á�C�x�˃�v�}�m�P��΂k� �������X�b�A�3�C�;�1�1�;�A�#�5�#�A�,�8�5�*�4�-�(�&�3��*�1��2�'� �!�.�(�)�$�2�,�+�$�(�5�/�#�!�3�2�+�2�9�/�/�(�5�8�,��(�/�3�.�5�.�%�$�+�8�7�5�0�&�2�2�&�+�1�'�!�-�+�5�,�/�/�3�/�$�/�%�#�+�7�9�*�#�(�9��+�#�,�2�%�5�.�-�-�-�,�)�%�%�+�0�)�0�,�"�(��1�$�7�.�0�'�5�4�5�,��(�!�5�B�0�%�+�1�)��(�(�#�2�/�/�"�$�'�4�(�2�)�"�+�(�%�#�&�"�:�,�(�3�"�4�@�/�:�'�'�(�9�.�-�3�/�!�/�&��*�,�.�+�#�$�-�0�'��(�%�8�+�-�.�$�%�#�0�/�#�/�1�.� �/�4�+�)�)�#�-�6�!�,�5�'�8��0�7�5��+�*�/�.�;�*�#�5�;�4�*�"�:�3�/�3�$�;��+�)�3�0�5�+�*�%��/�+�0�*�"�/�2�)�-�1�'�,�.��&�5�)�)�)�!�'�4�&�'�5�5�)�2�<�"�'�/�"�9��1�$�-�/�1�*�5�2�1�7�0�2�&�%�/�0�1�+��3�>�3�5�)�*�5�0�;�5�.�5�:�&�.�)�7�4�6�(�#�,�+�2�/�<�*�'�0��/�-�1�0�0�8�,�+�4�/�7�"�؀؀؀݀؀؀׀׀ӀŀӀ؀ۀڀӀҀր܀րրՀڀ׀Ӂ,�7�0�(�$�0�<�(�C�3�-�6�/�3�6�"�/�<�7�)�(�.�(�)�*�*�-�/�1�*�5��"�7�=�,�.�)�*�(�%�'�.�+�)�(��&�-�/�)� �-�$�5�/�"�9�+�.�:�,�,�#�+�,�$�/�,�'�.�"�/�+�.�7�#�0�,��%�0�%�4�,�/�7�*�-�8�/�.�1�$�0�&�'�0�%�*�,�+�)�&�2�2�%�+�,�4�(�)�1��6�+�2�,�&�%�%�.�.�/�/�)�*�*�4�/�)�6�#�?�5�(�+�<�7�+�O�K�>�V�_�w���ʁ��/�|���Ƃ��カ���`�,�ځ����s�N�O�:�A�>�=�:�A�8�0�4�3�.�)�)�"�-�2�1�;�1�/�;�.�3�)�5�#�%�!�6�,�/�)�#�,�0�0�4�/��%�%�(�$�+�)�!�0�+�'�%�4�3�!�&�&�7�*�.�'�"�'�5�/�/�=��6�&���+�$�,�-�)�,�!�3��"�,�)�&�%�-�*�$�/�2�.�"�$�7�*�/�,�&�,�1�2�5�$�.�2��'�3�2�2�/�+�4�(�"�(�'�+�0�2�#�,�/�,�'�"�!�(�1� �0�5�1��%�)�0��(�/�.�*�+�"� �,�"�1�'�(�*�0�/� �/�:�'�+�/�'�'�.� �)�%�*�/�3��!�*�1�$�%�+�1�+�*�0��/�5�7�'�,�-�*�(�3�#�,�2�+�"�3�&�@�0�&�3�/��2�1�,�$��8�$�)�0�/�*�.�)�'�6�(�9��0�#�5�1�/�1�1�%�(�'�(�/�,�1�+�)��&�"�0�-�+�2�-�'�%�/�2�2�"�+�3�8�-�!�(�)�.�,��#�2��5�0�2��+�+�1�>�(�=�4�&��2�'�(��&�/�1�0�)�(�3�5�&�'�/�+�*�!�!�+�7�4�0�)��5�,�4��2�/�+�+�5�%�+�/�*�(�2�)�'�'�7�4�.�4�*�-�&�2�/�$�/�'�*�6�9�:�2�"�0�3�5�2�)�/�*�.�0� �)�ۀـڀӀ؀ӀـڀԀˀڀՀڀՀ׀؀րՀـӀҀրրԁ$�+�-�*�)�%�#�&�-�+�6�6�&��/�*�'�'� �)�.�(�*�*�/�0��*�$�)�.�,�3�*�&�6�)�#�/�/�-��!�,�-� �/�,�%�-�*�/�8�1�*�2�:��.�+�3�#�.�2��0�4�3�2�+�-�,�*� �(�1�*�'�8�0�*�1�.�*�6�5�0�<�&�/�/�/�1�+�.�#�3�+�-�2�(�1�1�-�1�,�%�'�"��&�-�,�+�)�(�#�&�#��1�5�+�5�.�&�4�,�3�-�$�,�"�"�6�I�=�/�/�1�6�=�F�@�d�n���������@�F�E�e�\�5��ف����w�^�K�S�5�I�/�E�7�1�5�4�(�'�4�=�+�)�,�!�0�6�8�.�)�/�)�(�%�)�2�)�+�6�6�*�+�.�&�%�0�'�'�4�&�+�0�9�0�&�%�'�1�&�4�.�.�2�&�(�3�0�4�7�9�/�4�%�.�:�3�0�#�*�3�7�4�(�,�2�"�)�/�2�*�+�#��%�5�/� �-�+�#�/�-�%�'�*�$�/�2�)���/�,�)�/�%�*�%�)�-�2�(�$�+�/�1�&�+�/�)�+�/�0�0�-�3�)�'�0�/� �1�9�-�,�/�*�/�5�5�1�(�=�*�&�-�/�)�*�$�+�2�/�1�"�/�"�4�(��"�*�%�3��#�+�5�+��%�)�5�&�0�,�-�-�#�*�%�)�/�'�2�)��0�%�5�'�(�A�2�-�,�)�4�0�'�/�&�5�.�,�!�,�/�*�0�!�(�/�&�5�,�'�1�-�%�*�)�(�.�#�2�'�'�*� �:�/�/�!�$��'�1�-�-�,�(�%�7�,�8�(�1�-�#�,�/�'�#�)�0�*�"�0�)�-�#�6�(�3�/�:�*�+�%�6�*�6�,� �%�/�&�)�0�!�2�'�/�/�'�$�-��(�2�&�3�5�8�1�3�&�,�#�$�*�0�1�+�,��*�)�&�'�1�/�&�,�#�5�+�5�+�&�*��*��"�,�.��/�+�'�)�3�G�"�.�1�!�8�2�2�"�1�-�5�׀ՀҀ؀؀׀րڀ׀ƀ݀ЀҀրҀ܀ՀЀ؀րπՀրԁ3�&�*�4�*�.�1�)�-�'�/�'�$� �2�%��0�(�6�&�3�*�/�/�$�:�6�-�9�6�-�.�1�.�%�0��6�$��+�'��%�(�,�7�'�"�(�5�&�%�-�A�3�2�6�0�<�3�+� �/�+�'�)�/�6�$�6�-�(�1�4�;�*�%�&�&�*�+�8�)�3�)�&�,�.�!�+�1�7�-�'�%�/�!�,�.�/�7�%�-�.�:�)�-�)�5�/�4�+�+���0�/�4�2�6�8�*�/�3�-�2�6�,�-�*�0�3�9�7�*�(�)�1�,�:�=�H�M�T�d�v�����Ł�����ԁȁ����u�v�J�J�G�C�D�<�F�-�7�.�+�'�+� �!�6�2�:�/�)�%�*�0�!�.�.�0�-�&�.�-�*�'�+�%�)�.�(�2�1��/�!�4�/�/�=�0�,�-�!�'�$�,�8�+�*�.�+�6�&�(�,�$�(�,�5�&�&�0�:�-�$�6�*�)�'�9�)�;��'�+�"�)�1��1�"�7�.�5�$� �'�+�'�9�1�4�1�8�)�+��-�(�-�6�*�!�*�-�"�!�8�.�/�#�)�.�#�3�*�&�"�-�+�(�-�*�(�4�#�/�2�6�%�.�8�6�'�,�+�-�-�+��)�'�)�*��-�!�A� �/�,��2�&�/�2�"�"�2�%�)�)�,�#�(�3�-�:�)�&�(�:�7�(�7�/��3�-�(�)�+�-�*�.�%�(�'�&�'�(�2�1�&�+�4�!��4��0�3�-�"�-�,�)�7�&�"�4�)�2�;�"�*�$�'�0�0�.�:�+�&�+�!�3�0�/�1�$�:�-�(�'�/�=�)�)�+�$�%�/�$�2�)�7�)�&�0�2�1�'�$�!�-��#�4�1�/�+�+�%�1�$�%�&�2�,�0�+�>�0�*�-�%�(�)�)�?�&�$�*�(��*�#�-�(�.�1�/�"�2�&�'�+�%�&�0�'�'�/�3�$�&�3�%�.�4�!�)�(�$�&�/�#�(�*��9�)�!��.�0�%�*�4�+�6�,�.�2�+�$�)�)�2�&�+�׀ӀրۀԀ׀ـӀՀȀـҀӀӀ׀׀Հ׀րՀ׀ր܀ց1�3�2�&�0�:�6�,�2�'�$�;�*�0�0�&�/�"�0�-�#�$�*�#�)�'�)�&�2�.�4�+�&�,�#�'�"�.�*�*��,�*�+�.�%�0�'�*�4�5�-���%��/�%�5�,�/�-��-�&�+��/�+�0�"�(�4�#�*�/�8�4�.�4�2�-�'�5�.��/�'�&��-�#�1�'�-�&�7�)��+�*�+�*�5�(�/�/�/�0�3�+�,�%�3�'�,�,�0�-�-�7�*�(�+�*�'�!�.�6�=�"�5�+�(�;�)�,�:�1�.�.�'�;�B�<�U�U�a�n���������������������x�n�X�C�=�>�<�6�1�/�-�2�7�!�%�9�0�5�3��"�7�-�3�#�)�3��7�"�(�+�-�-�2�6�$�0�/�#�*�$�%� �#�-�&�!�-�,�-�)� � �5�-�5��/�#�(�%�(�#�$�6�,�(�&�*�.�"�&�"�$�1�#�!�*�5�7�)�6�0�(�1�4�*�5�&�,�5�0��)�6�+�/�/�7�;�.�2�/��+�3�0�8�(�)�/�3�)�-�,�*�,�.�/�1�,�*� �5�#�/�!�0�1�1�4�7�"�,�,�*�0�3�8�'�"�1�1�+�.�5�*�'�+�.��9�-�2�,�;�+�(�6�&�2�'�,�,�1�8�(�1�(�&�5�3�'�!��%�&��2�+�#�'�.��!�7�*�%�"�4�.�*�1�*��+�!��/�2�#�0�1�+�+�/�$�'�$�3�-�3�7�/�%�5�&��%�9�0�9�.�*�2�2�.�,��-�#�-�!�3�$�.�*�'�+�/�1�0�.�*�3�*�'�'�-�-�6�)�9�3�%�6�*�.�.�&�-��/�0�#�,�2�-�/�'�,�/�%�&�2�+�-�)�#�2�=�.�%�$��(�"�)�;�4�$�(�$�(�6�/� �-�'�"�0�6�(�1�/�/�.�"�+�-�$�.�)�-�*�%�0� �:�6�0�)��"�$�*�9�+�(�@�5�3�%�6�#�#�/�4�$�,�0�6�0�.�&�#�4�7�/�.�4�7�ҀՀӀӀҀր׀Հ׀Ȁـ؀׀ـԀՀӀ؀րր׀րրҁ"�1�1�*�(�2�4�1�,�*�!�6�%�7�0�*�"�2��*�4�'�1�2�3�7�$�2�1�7�+�6�2�2�!�8�"�;�(�%�5�0��/�(�)�*�+�2�*�"�1�0�,� �+�*�$�+�3�3�#�/�2�)�*�*�/�*�A�)�(�!�0�#�4�1�/�(�%�*�.�,�,�:�$�3�1�2�%�4��2�=�2�6�:�)�)�)�%�4�%�1�'�;�#�%�5�,�0�+�,�2�)�+�)�5�2�'�%�+�#�-�$��.�2�*�5�%�(�0�*�0�%�(�7�7�;�5�-�>�B�F�R�[�S�X�j�j�z�����������m�p�k�Q�V�5�9�;�/�A�&�-�5�7�4�+�>�5�0�/�+�2�7�&�4�(�(��,�*�&�7�,�%�0�(�)�%�-�+�&�%�<�5�/�+�6�7�*�-�+�5�*�%�/�7�&�,�!�<��7�)�"��.�+�/�'�2�2�.��/�(�)�$�1�#�1�1�4�)�(�)�%�+�'�1�'��#�+�&�3�*�,�1�-�,�&�,�'�#�-�+��$�%�.�3�,�#���*�&�,�3�0�#���;�/�*�(��/�%�=�'�&�,�+�!�.�.� �*�5�6�"�1�)�$�1�'�5�'�*�"�'�5�"��!�,�#�.�%�3�+�1�2�-�+�*�,�7�%�+�1�'�&�1�'�'�)��(�'�-�.�/�3�%�*�(�&�)�*�'��#�1�7�*�&�8�5�'�4�2�#�+�)�0�$�*�6�%�*�)�"�0�%�-�)�-�/�)�)�#�&�)��+�$�,�0�/�!�)�9�.�!�)�6��.�-�%�,��#�+�(� �$�/�0�.� �$�0�+�,�/�*�)�6�*�#�*�'�)�$�&�-�#�$�)�-�0�&�/�*�#�)�/�7�0�9�,�2�4�$�+�*�3�8�,�9�1�/� �*�"��)�4�&�&�)�-�*�!�4�.�1�7�*�8�)�3�0�0�)�5�-�1�6�#�.�)�3�'�7�3�/�'�(�+�3�5�;�4�*�6�3�-�3�)�0�.�1�.�4�;�'�(�5�7�7�Ԁ׀Հ؀ڀҀҀՀ׀ɀ؀ڀրڀ׀׀Ԁ؀Ԁրր؀ӀӁ0�!�*�1�.�&�0�&�-�%�'�-�$�/�1�*�1�&�6�4�*�)�/�/�2�)�(�-�'�)�:�(�*�+�"�:�5�4�&�/�#���1�0�(�)��)�"�3��3�%�"�%�.�0�*�#�(�(��,�-�3�*�2�)�0�(�$�-�1�(��/�"�&�7�&�5�,�$�2�-�*�2�*�&�8�%�&�.�8�6�3��)�#�)�*�3�#�/�/�"�6�2�2�*�1�4�:�(�7�3�0�,�>�7�)�-�'�)�,�,�*�+�9�(�3�#�+�'�"�.�$�'�)� �)�.�;�9�B�K�I�Z�T�]�c�g�m�f�i�[�`�\�C�^�L�J�<�4�1�=�3�)�4�&�-�*�5�>�%�5�/�#�4�5�6�6�2�1�+�'�5�(�9��-�'�.�1�3�"�1�!�(�/� �.�.�!�(�/�,�1� � �-�"�.���/�)�3�%� �(�+�1�'�)�'�-�/�9�'�%�-�,�3�0�5�&�-�?�5�$�"�#�,�:�$�#�2�/�/�=�-�0�$� �"�-�#�6�'�(�.�(�&�.�;�/�$�*�)�!�&�/�(�+�/�(�#�%�)�(�'�(�.�,�4�&�0�0�)�7�/�:�(�,�$�/�5�-�"�%� �4�.�1�&�#��#�5�.�.�7�'�1�3�.�/�*�'��,�1�%�'�(�)�&�0�'�!�$�7�$�)�&�%�(�+�;�1�)�:�0�3�+�4�$�3�8�*�0�0�/�.�+�+�*�/�(�"�'�<�.�/�0�'�,�/�5�-�&�(�4��2��4�7�+�$�,�-�&�%�3�(�&�-�*�)�/�8� �,�-�5�!�'�0�&�)�)��2�+�/�1�,�%�'�4�3�$�.� �+�8�(�-�)�3�$�'�+�-�+��.�.�3�&�'�*�-�+�5�4�)�.���/�0�(�+�)�(�(��(�1��$�%�2�)�.�/�#�1�4�)�7�2�2�6�B�/�&�7�+�1�.�8�3�*�2�*�%�3�/�1�)�'�4�1�8�0�%�*�+�)�/�7�3�/�>�-�)�2�5�/�9�-�&�.�5�1�,�,�Ԁ؀ҀӀր؀ԀՀҀȀۀ׀ـրڀ׀ҀڀӀ؀Ҁ׀Ӏԁ2�'�-�6�/�2�9�0�)��2�/�+�,�(�-�%�5�4�(�#�.� �'�'�+�)�/��*�2�.�$�.�,�7�(�0�4�2�!�7�1�3�&�.�'�6�$�1�*�-�1�$�.�'�1��+�'�,��0�,�-�/�1�"�'�1�&�7�%� �/�9��0�(�%�!�*�5��2�,�9�)�3�!�&�7�-�&�%�.�'�'�.�0�0��0�-�'�,�/�8�1�+�-��+�*�%�)�.�=�)�-�(�,�'�(�/�3�3�.�1�)�+��0�2�-��/�5�(�/�4�2�1�9�8�B�F�F�C�=�D�X�c�S�W�b�i�S�@�X�I�H�C�5�F�1�6�3�:�.�+�)�7�0�*�,�8�4�)�)�&�/�$�$�)�7�.�7�*�(�'�7�1�*�,�%�5��%�0��'�5�1�+�0�1�1�"�.�'�,�1�$�1��1�*�)�5�)�,�5�4�1�5�,�5�)�5�0�*�*�"�+�D�'�)�"�<�)�(�5�/�*�.�-�)�,�.�(�2�%�.�;�3�0�)�&�2�9�1��,�.�0�-�*�&�+��#�4�,�3�3�:�#�/�-�(�+�5�)�4�(�3�+�'�6�'�<�1�+�%�$�2�5�$�:�2�,�-�1�8��&�(�5�)�+�.�-�5�+�5�#�1�4��#�7�0�/�2�7�'�3�0�(�9�(��+�)�-�)�%�(�3�(�0�'��$�)�*�-��1�&�,�)�2�-�-�,�2�,�$�*�-�:�"�3�0�6�+�/�&�%�(�$�-�)�3�!�(�'�"�5�+�/� �1�'�!�)�9�-�0�$�+�:�(�*�)�3�)�,�5��+�2�4�1�1�&�+�(�%�+�6�(�3�.�'�%�2�(�$��(�*�*�)�(�#�:�'�(�,�/�$�0� �4�2�'�<�,�'�&�%�)�,�&�4�8�9�-��6�9�;�/��<�.�-�)�2�2�/�)�>�3�;�/�/��.�"�.�1�2�:�$�0�-�&�4�-�1�&�)�7�3�,�/�7�.�/�)�%�)�8�'�(�D�+�&�/�8�7�:�-�8�:�/�2��րՀՀ܀ӀՀрՀӀƀ׀ҀԀՀـԀҀԀӀڀӀՀӀց.�.�#�-�)�#�+�+��(��%�*�5�%���-�4�1�.�(�,�1�,�>�.�+�.�,�-�/�(�'�3��+�!�7�5�4�+�!�$�-�+�4�#�)�$�#�$�)�'�B�4�)�-�-�0�-�(�/�%�3�-�"�7�/�"�%�%�-�-�.�.�-�0�,�,�7�,�+�(�)�(�/�/�&�#�3���2�+�:�0�"�$�+�/��&�"�/�'�7�-�/�*�(�)�-�-�6�,�0�/�*�%�-�0�'�7�)�"�/��)�>�/�6�0�3�'�-�3�.�2�'�(�1�3�1�6�3�*�>�5�4�O�N�R�U�9�L�9�E�E�=�6�C�2�0�%�)�4�0�-�4�+�!�#�,�#�.�+�&�)�'�3�#�-�+�,��5�,�3�+�0�(�.�0��-�"�'�-�6�+�.�+�<�*�.�5�3�3�'�0�'�#�%�2�%�:�&�-�!�'�;�>�#��+�(�1�'�*�+�+�+�,�3�4�0�:�/�6�*��.�#�+��/�:�5��,�!�<�)��'�+�*� �%�,�5�,�/�/�4�%�)�'�:�+�,�4�*�,�>�0�%�$�0�#�-�*�-�-�0�#�7�(�+�)�+�(�0� �3�=�,�$�3�.�1�)�,�,�3�(�4�)�)�,�*�!�/�/�,�/�'�'�)�(�=��)�7�)�/�,�-�5��*�.�(� �0�5�,�0��'�3�.�!�/�(�6�5�;�1�,�*�#�%�1��&�5�3�&�!�.�)� �1��+�%�)�(�(�$�1�-�/�'�(�1�%�1�3�0�#�/�(� �'�(�"�5�#�)�,��"�!�'�"�/�&�3�3�-�(�1��$�5�.�$�2�&�/�$�/�.�"�-�"��)��)�:�/�.��.�'�,��)�%�>�0��(�4�'�0�1�-�+�/�.�-�&�/�0�'�3�$�8��5�(�1�+�/�-�2�0�-�/�*�0�;�3�#���&�:�2�$�&� ��/� �$�-�7�/��1�&�-�-�7��*�/�,�2�'�)�+� �,�!�)�8�#��0�%�*�+�#�*�.�؀ՀӀӀ׀Ҁۀր׀ɀۀـՀԀՀՀӀր׀׀׀ӀՀׁ7��-�+�!�)��,�$�,�,�;�;�(�-�+�-�5�+�*�.�(�&�7�,�4�#�,�4�3�/�0�*�*�#�*�!�/�7�(�,�"�-�)�4�/�+�!�-�4�-�,�*�+��=�6�$��%�!�(�"�.�!�'�*�(�/�0�,�'�*�=�3�(�-�(�4�1�4�%�*�.�)�!�-�'�0�0�-�2�4� �*�(�-�3�/�:�"�5�+�.�"�,�'�$�*�/�(�&�)�.�&�$�'�7�*�,�#�0�+�2�.��(�<�.�3�3�&�*�/�.��,�)�0�#�-�)�6�=�.�$�-�@�;�:�5�I�D�=�F�B�K�[�<�=�D�.�/�=�1�)�.�:�$�+�(� �)�+�&�2�'�,�(�*�0�3�&�'�+�.��'��5�,�%�3�'�-�-�7��!�$�.�'�+�-��7�)�"�(�"�4�*�'�.�*��,��$�*�-�+�9�0�&�0��*�(�!�(�2�%�5�7�1�,�/�2�3�2�'�&�+�/�-�/�)�1�(�8� �"�/�9�.�5�$�+�2�'�-�)�7� �/�B�(�9�1�0�,� �)�0�5�>�,�7�7�,�*�,�(�+�/�-�6�0�9�%�!�,�)�$�)�&�%�%�.�0�3�-�7�+�,�:�&�(��#�.�*�*�2�(�6�$�#�!�&�2�+�!�3�*�!�1�'�)�%�(�'�(�,��'�6�%�"�.�$�(�2�3�'�,�3��4�,�4���)�2�0�)�)�2�4�!�$�0�0�-�'�1�%�(�1�%�#�2�)�/�)�.�&�'�>�$�1�+�/�/�&�'�)�#�/�"�)�)�#�7�-�4�$�3��)�/�%�1�-�!�&�4�%�7�7�)�(�(�0�#�$�/�.�'�+�(�.�(�:�1�'�(�3� �&�)�+�5�,�/�/�6�'�2�=�-��2�/�(�.�8�$�$�,�-�.�4�,�.�/�6�:�1�#�'�-�&�2�)�/�'�+�+�$�(�(�0�5�)�/�'�"�'�-�6�*�+�1�(�0�-�(�'�2�/�!�-�1�/�?�,��#�,�5�%� �6�(�'�,�,�#�+�Ԁ׀Ԁр؀ҀӀրӀȀԀ׀؀ڀՀրրրԀڀӀӀԀՁ3�+�2�)�2�+��'�)�!�*�!�1�5�1�5�+�/�%�+�3�-�2�-�&�1�0�3�0�-�2�8�/�/�6� �'�+�5�'�)�0�8�#�+�$���/�7�-�+�-�-�#�(��+�+�+�0�%�5�(� �7�/�)��3�+�2�)�.�"�.�2�%��7�%�#�'�'�.�/�/�(�*�+�/�*��,�"��*�3�6�%�/�2�8�*��.�+�)�.�'� �(�,�"�4�'�*�'�&�-�%�0�'�&�*�#�$�0��&�-�+�#�)�1�%�4�?�0�*�@�+�8�D�7�6�4�<�9�3�+�D�@�7�9�A�'�I�;�E�2�4�A�C�9�+�/�<�8�4�4�&�.�/�'�(�7�*�/�&��*��)�1�'�#�-�-�/��)�(�1�2�"�'�-�%�-�2�+�)�(�/�&�&�)�-��9�$�(�&�(�0�!�3�0�-�+�?�5�3�)�-�4�!�'�-�&�,�.�%�,�2�/�)��2�#��$�*�&�*�+�(���7��,�=�'�&�-�3�(�9�/�-�%�#�(�(�4�5�$�=�!��,� �'�7�-�'�4�!�(�=�)�(�9�'�-�+�.�3��-�3�-�,�.�'�/�(��"�+�%�/�"�*�'�-�'�3�-��-�2�2�%�.�%� �.�2�-�,�.�-�$�2�-�+�2�/�-�)�8�/�,�%�,�-�-�'�&�*�0��!�)�*�,�$� �%� ��!�*�'�/�(�:�!�0�#�/�/�:�/�7�+�"�1�0��'�� �%�%�'�4��+�/�/�7�7�%�!�$�4�(�,�1�+��-�*�*�6�+�"�+�4�!�$�.�&�&�8�,�'�*�$�-�"�&�/�%�$�2�/�,�/�2�1�)�*�(�#�.�8�,�5�,�/�,�&�"�9�-�9�(�)� �+�0�)�*�'�"�-�-�0�<�0�+�,�7�-�*�/�&�1�/�!���/�0�$�*�-�/�!�"�&�)�$�0�.�,�0�+� �(�)�/�B�$�'�+�-�4�:� �,�5�1�.�1� �7�-�2�+�$�5�'�1�#�*�2�׀ԀՀ׀׀؀׀րۀĀрրπۀՀЀӀ׀ڀրڀՀԀ؁,�$�.�/�2�.�4�'��0�5��(�(�$�+�-�&�)�1�.�*�-�.��/�)�6�3�!�(�0�)�"�*�/�6�'�7�/�1�6�*�9�.�;�*�<�%�"�-�/��%�0�)� �&�8�4�,�+�$��7�%�$�2�*�� �'�,�(�.�$�5�"�9�&�8�!�&�*�)�'�2�1�*�*�/�+�"�*�,�4�$�1�.�+�.�,�6��9�.�1�'�)�4�'�&�'�*�.�.�*�4��&�7�-�%�-�1�-�+�%�/�*�)�3�8�:�#�6�&�1�"�2�#�-�:�*�0�.�2�9�<�0�<�,�8�=�7�9�8�1�I�5�6�2�@�4�7�)�-�+�/�&�/�2��6�+�3�;�3�8�*�(�(�)�*��'�-�7�+�3�#�*�(�9�5�5�*�/�&�8�)�-�@�/��#�(�&�+�*�/�6�� �-�#��,�/�!�+�2�/�'�7�4�1�"�/�+�6�3�-�(�+��.���3�)�(�*�*�/�/�&�"�3�&�3�.�<�.�.�'�+�'�&�,�3�-�(�5�.�&�3�-�4�,�1�"�#�*�0�)�.�6�+�4�1�"�*�'�)�*�(�/�/��#�*�1�!�+�+�/�*�-�4�%�-�$�7�'�6�)�!�)�0�*�.�,�-�)�*�#�/�$�6�*�-�0�3�-�� �)�(�!�'�-��6�5�%�+�#�*�(�)�&�,�.�0�/�&�-�'�&��,�%�(�0�1�7�!�"�6�4�#�*�'�(�2�-�3�>�$�'�+�3�0�,�&�/�<�-�'�#�6�4��,�0�3�#��*�.�$�.�*�0�+�3�-�)�*�5��,�)�#�+�1�"�2�.�,�/�,�1�5�/�!�4�*�1�-�.�5�%�)�,��4�)�4�3�*�+�;�3�"�&�"�"�.�5�.�5� �0�/�/�%�+�)� �4�"�1�+�6�*�/�1�4�6�*�)�5�*�-�.�/�7�-�$�.�.�,�2�)�4�*�*�9�5�"�0�"�*�"�.�$�1�<�1�/�#�#�1�,�+�'�(�.�6�)�/�'�.�!�0�7�+�8�,�(�׀ԀۀЀـۀ׀ԀۀĀ׀ՀрӀ؀؀ــ݀ـՀրՀЁ#�%�*�.�&�(�1�.�*� �&�(�+�0�.�-�@�1�2�+�$�,�&�<�+�)�(�.�7�,�-�&�!�+�'�'�)�-�0�.�2�-�#�5�-�0�#�)�-�)�(�#�-�2�!�&�A�@�*��>��+��0�*�0�,�!�%�&��'�1�%�6�#�&�#�0�)�'�2�2�*�.�&�/�+�)�/�,�/�8�2�9�%�3�&�!�/�1�)�!�;���*�.��3�,�1�.�1�7�%�"�*�$�,�0�4�.��$�+�7�6�"�'�&�2�#�2�(�(�.�&�C�*�-�-�,�%�,�*�:�)�)�;�5�/�*�>�7�@�2�.�=�<�$�3�8�-�+�%�%�/�2�2�*�/�&�,�7�.�$�/�'�'�5�+�2�/�&�%�7� �(�)�.�"�+�/�=�.�*�&�"�,�+�)�-�/�3�-�!�(�*� �*�.�7�)�%�� �6�.�1�/�%�.�5�"�2�%�*�.�&�%�+�.�,�1��%�3�2�.�!�0� �1�(�3�,��/�"�5�.�+�/�+�3�6�*�-�*�/�)�.�,�+�0�7�/�,�/�4�0�*�-�,�!�(�/�6�%�(�'�"�#�(�3�*�+�&��"�"�/�3�7�.�,�+�0�)�.�-�2�&�/�2�1�.�7�)�/�$�.�.��#�$��2�(�/�3�)�!�(�/�+�2�)�(�%�$�1�/�!�.��(�+�3�%�-�/�'�.�8�/�(�&�+�.�+�%�1��.�%�-�4�1�5�(��+�/�$��)�*�3�&�+��2�;�-�2�#�&�%�1�2�7�#�,�1�"�)�3�.��=� �%�5�/�,�8�8�2�$�.�-�1�/�$�(�3�&�/�;�3�&�"�'�:�-�&�@�&�2���)�5��%�#�+�,�-�.�#�/�%�,�0�*�5�3�'�+�+�-�&�.�+�'�*�!�.�3�&�1�+�-�#�(�5�,�+�%�1�%�/�*�(�3�+�,�5�%� �'�7�2�0�'�&�)�+�2�*�0�,�1�=�!�'�*�3�.�3�*�5�/�.��7�7�5�)�2�4�.�+�=�6�&�4�5�ـԀ܀؀ԀԀՀՀՀǀՀ׀ۀــՀҀրӀրրԀڀ؁+�-�9�6�/�-�+�9�4�#�=�/�,�'�(�&�!�)�(�,�.�!�-�$�2��0�4�2�&��-�0�1�1�/�/�2�0�/���)�0�6�0�'�.�1�*�(�+�0�&�'�*�-��+�,�0��3�1�;�*�%�/�/��)�A��%�'�2��*�5�#�%�%�%�6�-�2�#�'�&�(�%�*�3�(�3�&�(�*�2�1�&�-�/�1�/�*�&�.�0�-�0��9�$�/�/�6�.�3� �3�!�-�7�#�2��2�7�&�@�3�2�1�&�'�4�#�.�6�-�-�9�)�4�)�/�.�7�8�2�0�5�<�1�3�6�;�/�$�2�2�6�4�-�%�<�8�%�<�3�4�9�-�-�(�:�1�5�*�3�=�&�1�8�(�0�+�-�/�+�*�"�/��)�&�&�-�)��=�+�-�9�)�-��%�6�%�%�)�(�-�&�� �(�$�$�.�,�/�(�,�3�-��&�1�9�.�-�(�1�!�1�(�(��%�%�7�4�+�,�(�2�+�0�6�'�$�(�)�:�7�!�&�7�1�&�2�)�3�-�3�.�,�(�.�4�0�.�*�+�7�$�#�-�+�#�*�(�/�6�5�)�!�5�+�4�+�+�5�/�-�"�&�)� �)�2�2�4�/�,�6�)�(�(�1�/�4�0�1�*�B�)�3�-�5�,�'�,�'�(�7�$�+�-�4�%��-�&�,�-�%� �.�&�.�)�/�'�/�"�2�-�$�,�'�*�+�1�3�1�%�2�+�)�2�+�3�%�<��!�/�.�)�%�2�8�/�6�/�)�&�4�5�-�.�)� �!�/�4�.�4�/�#�%�/�.� �'�&�,�*�3�"�*�(�2�/�/�5�,�3�-�5�2�(�(�'�/�'�4�$�'�)�)�8��,�'� �!�2�,�/�1��)�2�.�(�%�3�(�$�)�!��%�0�5�7�-�-�(�-�(�/�)�!�2�3�+�"�%�!�(�+�.�2�;�(�,�/�2�,�*�@�3�#�*�#�8�2� �.�#�#�8�*�,�(�"�C�-�)�/�3�-�+�)�#�-�/�%�1�$�(�.�5�1�%�4�ـЀӀ؀Ѐ܀׀Հ׀ʀ׀׀Հ݀Ӏр؀׀׀рӀՀڀց0� �)�,�:�1��*�'�)�(�2�)�%�/�+�)�)��2�8�5�%�'�/�>�1��,�+�&�$�*�$�6�/�2�+�2�"�.�/�-�*�(�$�"�,�,�2��'�%�.�'�3�)�0�5�.�*�&�3�<�-�1�-�(�.�&�8�+�7�*�*�8�*�<�-�$�0�/�)�"�:�%�'�4�$�4�+�$��,�2�&�-�1�%�0��5�2�A�/�;�/�(�)�+�*�,�,�(�&�+�$�8�>�(�%�)�1�%�*��)�-�2�0�3�-�/�!�+��.�;�4�)�!�"�"�(�)�-�%�,�*�%�B�2�2�(�/�/�=�0�-�(�(�0� �3�8�*��(�;�.�,�+��*�"� �2�!�)�4�.�7�-�(�#�%�2�!� �6�-�(�'�&��1�6�,�'�1�"�4�+�.�-�#�(�1�5�3�)�#�'��3�/�0�;�.��7�+�%�-��2�+�1�$�3�'�-�/�-�!�)�,�+�'� �;�/�.� �!�(� �&�'�0�(�.�*�-� �3�1�8� ��,�8�6�%�3��"��*�#�*�+�2�&�#�5�1�-�(�6�;�"�2� �-��"�+�5�-��.�1�'��,�&�%�/�3�2�.�+�,�+�:��/�+�-�+�3�*�0�)�)�'�&�,�-�)�%�!�'�3�)�(�1�:�5�-�1�.� �"�.�'�)� �7�.�,�$�.�0� �-�$�.�3�0�7�7�&�'�(�0�&�%�'�*�'�/�+�7�4�2�%�0��)�/�1�,�1�:�4�'�0�'�1�"�.��.�3���(�$�8�*�2�2�$���)�1�$�/�#�(�%�3�!�(�.�7�/�&�!�3�2�!�3��'�!�%�.�/�(�.�2�3�*�-�3�*�0�,�(�%�-�,�+�!�6�7�,�%�(�-�1�*�2�,�$�!�(�*�+�,�"�8�3�(�9�.� �(�&�$��+�&�(�=�/�=�!�0�/�%�9�)�"�+�0��!�9�+�&�6��-�/�+�/�.�#�%�#� �7�*�8�2�/�1�3�5�&�4�5�3�<�'�)�(�؀Ԁрۀ׀րӀ؀ӀÀҀԀӀۀڀـҀ؀׀ՀӀ܀Ӏс'�&�0�.�2�1�)�1�,�*�&�1�5�&�&�-�4�-�)�)�-�)�-�4�%�-�+�'�%�!�)�+�#�*�#� ��2�0�'�,�*�<�!�-�;� �"�-�)�&�(�2�5�)�)�0�0�!�5�,�-�#�2�%�/�+�*�'�9�'�/�%�,�)�A�&�8�)�%�2�.�,�5�/�$�(�*�'�(�*�*�1�.�/�1�'�'�!�0�0�'�'�0�"�.�2��0�"�-�%�/�4�+�*�*�0�+�/�1�0�F�'�#�-�=�!�(�5�,�2�'�7�"�9�(�5�$�+�3�(�4�+�3�)�3�;�*�+�.�0�2�:�%�+�2�5�.�2�2�.�3�-�'�0�+�0�-�'�)�/�-�5���)�-�#�-�"�)�,�-�+�#�/�2�.�*�4�%�%�,�,�'�5�1�9�(�#�%�/�(�%�2�+�'� �3�'�,�+���1�4�2�"�+�.�*�'�%�/��,�)��+�6�!�/�%�2� �.�-�/�(�-�$�$�1�)�"�(�$�&�(�2�)�2�1�+�-�,�)�+�+�4�-�7�)�/�1�6�'�0�*�6�-�(�"�-�0�#��)�,�5�+�!�$�,�$�3�*�&�$�3�+�3�+�&�%�+�(�'�;�2�1�-�'�9�7�/�"�"�.�#�+�.�$�/��,�(�'�/�2�*�-�+�'�0�3�,�8�*�0�/�0�(�+�)�4�"�?�+�1�)�1�:��2�!�'�2��&��2�.�*�'�2�'�/�0�1�9�#��+�'�!�%�+�)�/�:�-�%�)��/�-�5�3�'�)�$�!�(�!�"�+�+�'�#�'�&�*�$�.�%�.�8�%�,�%�,�)�*�0�(�4�!�1��-�$�5�(�$�2�4��*�'�5�+�&�%� �'�-�-�4�.��7�!�+�!�'�!�,�,�0�"�&�/�7�$�7�'�9�/�#�.�/�&�2�*�/�(�1�<�#�+�1�4�2�%�,�2�-�/�-�)�/�/�9�2�/�0�.�0�0�.�/�7�/�'�*�2�/�$�3�.��-�-�;�+�+�(�$�$�5�1�&�1�*�"�(�*�2�3�/�ԀԀӀՀրՀҀـԀ̀ԀҀՀۀҀрҀ؀Ҁր׀׀Ӏց+�(�/�$�%�#�*�,�+�)�.�0�'�+�.�/�&�&�$�,�4�4�1�*�+�+�6�)�5�8�.�2�:�3�1�3�/�0�&�'�)��*�9�2�,�*�0�7�!�&�2�/��.�2�/�.�+�$�"�$��,�0�+�(��.�-��$�.�$�5�0�2�*�#�>�/�3�%��)�4�1�*�(�*�1�!�1�&�0�-�(�2�+�"�*�'�'�(�0�'�0�*�.�!�-�%�"�-�%�9�.��"�+�*�,�.�)�*�1�!�)�'� �5�5�"�'�'�A� �2��5�2�1�!�.�/�-�(�9�&�/�3�+�,�&�8�7�.�6�4�7�.�*�!�2�1�+�%�.�2�2�)�)�1�%�+�0�%�/�'�$�8�/�"��2�+�)�'�>�)�,�+��"�0�*�9�6�,�#�,�!�)�&�(�)�.�&�0�)�*�%�3�� �.�5�*�*�3�+�$�-�8�%�-�&���(���$�5�,�.�4�9�!�0�9�%�&�'�/�4�%�+�"��'�"�*�$�/�.�'�$�8�5�$�/�#�0�$�!�.�0�*�-�*�2�+� ��$�0�1�,�)��/�/�2�,�"�5�0�/�+�*�-�%�/�1�/�6�*�5�)��(�$�2�.�4�1�(�5�'�)� �7�3�5�'�3�0� �%�'�1��1�3��,�#�2�#�+��3�(�+�.�3�1�1�,�1�2�.�0�"�,�&�3�.� �/�2�+�4�1�,�&�%�%�%�,�%�1�0�)�9�.�3�+�2�)��3�4�(�*�(�/�(�1�$�-�/�,�4�%� �*�(�!�+�/�,��%�:�$�4�(�)�$�-�#�+�*�5�*�4�3�/�9�/�7��4�+�)�0�+�!�(�,�/�.�%�/�)�.�1�1�#�!�/�)�.�0�%�2� �*�1�/�4��'�)�7�+�+�'�1�%� �,�+�9�-�4��7�/�4��6�,�6�.�*�3�-�$�:�9�3�+�/�!�/�4�#�8�.�7�-�6�/�0�/�1�;�:�+�#�$�<�%�%�,�1�+�'�/�+�'�&�/�4�/�7�0�%�1�׀րրՀ׀րҀ׀ՀȀ׀ԀӀ׀ـ׀ӀӀ׀րրӀրӁ:�#�;�2�+�,�$�(�(�&�4�-�)�*�*�'�8�;�1�)�+�3�"�,�0�%�2�'�+�&�)�)�0�6�'�*�0�1�/�/�'�.�'�+�1�-�-�'�2�!�4�'�5�*�2�1�(�*�1�)�#�4�1�2�*�'��/�.�/�4�4��)�%�/�'�3�'�$�3�'�(�<�4�)�/��0�0��-��0�%�%�7�*�*�:�*� ���,�*�#�#�-�#�+�$�-��+�&�%��*�,�#�5�*�+�'�1�9�,�)�)�+�&�/�,�.�!�9�7�)�3�'�%�'�)�7�9�7�*�5�(�/�(�$�/�<�6�9�/�:�:�,�,�0�*�(�"�+�&�7�-�*�-�)�1�2�/�4�2�$�!�0�1�'�,�0�(��&�,�0�/�(�!�.�,�'�!�&�6�*�%�0�!�,�1�/�*�4�%��/�3�)�0�2�*�*�,��1�'�?�,�/�0�+�,�7�$�,�$� �.�,�3�%�+�,�1�3�(�-�/�0�5�,��2�,�2�#�$�)���-�/�*�'�)��&�-��/�%�.� � �&�9�)�:�)�5�8�,�=�/�2�)�'��+�*��/�;�-�0�$�/�8�!�'�;��.�.�:�+�.�-�-�-�$�-�3�0�"�-�,�%�&�6�+�4�:�0�+�2�+�'� �5�(�-�:�0�-�+�-�(�-�'�(�(�4�7�5�*�+�3�/�3�3�.�3�*��)�'�/�&�#�0�/�/�9�,�+��(�+�3�.�,�#�!�)�,�'�$�7�(�)��#� �+�3�2�,�%�,�,�4�(�@�"�!� ��7�*�,�+�"�+�$�"�6�/�3�#�'��)�*�3�'�!�2�/�,�"�(�-�0�.�&�-�&�*�.�%�)�'�+�-�3�/�6�(� �)�%�'�1�+�-�8�7�/�&�,�+�)�-�'�.�$�'�+�%�*��*�*�/�2�/�+�'�-��0�1�;�$�1�5�.�/�+�1��,�*�'�1�'��)�*�)�.�"�-�6�)�$�0�'�(�;�+�/�9�"�&�(�9�(�%�5�3�*�=��3�#�ۀۀ׀؀Հ݀Հ׀րǀԀڀ׀ӀՀۀ׀׀ـ׀ՀՀ؀ׁ7�!�(�.�7�'�5�0�%�;��&�)�$�%�+�(�,��-�,�6�+�+��1�'�)�&�9�!�"�#�'�#�2�0�#�8�1�+�+�6�#�+�%�*�#��;��$�)�"�*�0�,�"�'�)�*�/�)�.� �(�+�$�-�*�*�0�!�&�&�)��#�'�1�9�#�3�)�-�)�0�4�-�'�4�(�2�)�,�,�%�$�,�!�0�-��)�)�'�.�:�&�,�)�(�0�3�/�,� �%�1�)�&�+�/�-�1�+�0�'�+�*�+�6�&�+�1�*�1�/�/�3�&�+�4�%�*�-�?�*�1�)�:�7��)�+�(�&�*�%��(�-�(�2�*�+�'�-�3�,�'� �/�"�#�&�.��/�3�,�1�*�$�&�#�%�*�0�9�&��$�+�,�4�"�/�7�*��'�-�(�.�-��+�6�1�.�#�#� �&��2�+�'�,�(�4�(�/���/�,�(�/�(�#�/�&�*�2�-�4�7�.�5�)�+�'�,�+��'�&�&�1�*�$�2�3�/�3�/�1�"�!�/�"�(�+�-�(�#�0�)�2�4�,� �)�/�.�+�1�&�,�&�8�"�*�,� ��+�(�)�$�%�1�/� �,�(�4�:�/�!�1�$�%�=�:��;�$�/�$�&�*�/�-�<�1�6�*�0�%�)�%�/�7�/�%�&�/�4�)�(�&�)�6�)�+�+�(�(�&�,�.�1�&�/�'�'�2�,���:�1�*�#�/�+�%�$�*�'�/��*�!�*�2�3�#�,�!� �$�0�'�!�&�2�+�!�/�&�(�9� �'��.�#�.�&�-�"�#�,�(�)�"�-�$�(�)�3��7�0�&�)�'�(�'�0�-�*�+�-��+�&�1��1�,�%�1�%�&�3�1�-�.�0�#��(�)�/�)�2�*�(�.�,�<�1�/�(�)�2��)�)�0�!�.�.�.�-�6�,�4�3�2�'�+�%�0�5��'�1�&�*�*�1�+�*�!�0�$�2�'�.�%�1�*�1�+�"�2�3��7�+�9�'�&�9�7�(�/�7�6�6��3�,�)�>�)�ՀӀԀ׀ՀӀـۀՀĀՀۀڀҀӀՀ׀рրրրՀՀҁ(�.�+�3�<�7�/�/�'�0�5�(�.�3�-�-�@�%�$��#�5�$�3�'�'�.�"�!�.�2�*�$�0�)�)�"�/�)�*�$�,�"�<�2�3�(�0�+�,�/�(�.�/�2�)�2�$�0�,�1�#�1�*�,�)�2�)�#�%�.�!��,�+�0�.�"�-��'�(�;�2�+�*�+�&�!�'�/�#�&�0�+�1�(� �&�2�#�-�9�,�-�5�/��/�7�3�+��$�.�1�(�.�+�5�'�:�9�+�&�7�-�'�7��#�.�*�3�.�2�(�+�,� �)�&�*�'�+�*��3�-�+�;�&�+�2�&�:�2�/�8�'�-�2�4�+�.�$�5�&�1�2� �:�0�$�+�2�+�4�)�>�!�%�,��"�.�9�/�+�*�+�'�!�)�3�-�6�)�&�1�&�0�2��!�'�(�'�+�/�6�8�!�1�9�!�-�0�*�-�2�)��+�&�.�+�,�-�5�6�)�.�#�-�/�<�*�4�8�2�4�%�3�1�4�,�6�)�1�/�%�%�+��(�#�"�1�!�*�'�'�+�)�/�.�6�*�1�%�/�!�'�*�/�.�3�6�0�'�"�'�/�'�0�(�'�+�)�B�$�,�2�4�0�3��/�+�,�6�6�1�*�0�#�$�/�5�'�-�+�3�.�:�1��%�"�*�4��,�%�(�#�/�(�;�1�2�,�+�*��'�/�)�3�!�"�1�5�/�8�$�*�)�'�*�/�1�7�+�0�)�,�(�'�'�.�8�6�3�4�8��2�)�+�&�'�7�#�1��'�*�(�!�!�.�,�-�-��!�2�(�+�&�2��-�)�*��"�3�2�6�-�-�(�5�,�5�!�'�1�*�.�8�)�,�&�:�*�-�2�%�$�)��,�6�7�-�*�"�#�)�2�,�"�(�0�(�&�/��,�7�+�0�'�"�*�0�1�1�5�*�!� �)�&�)�-�*�-�&�6�*�/�*�6�+�0�#�&�'�+�.�1�/�(�(�;�%�3�5�1�*�6�;�=�+�,�7�.�-�*�2�4�'�.�.�/�2�,�.�"�+�5�4�7�'�/�!�5�Ԁ݀ۀԀ׀׀ҀӀԀ€؀ӀҀӀ݀؀׀؀؀׀ـԀ؀ҁ'�$�5�3�$�'�2�(�,�/�,�(�7�)�1��(�%�.�%�-��%�8�3�+�-�&�%�1�/�.�)�3�#�/�(�-�$�.�1�5�+�)�'�+�(�(�)�$�/�.�)�6�7�2�-�0�/�/�,�!�2�1�.�*�/�:��(�(�<�.�/�)�(�&�;�*�,�%�1�$�'�/�"�*�+�"�)�4�+�'�6�9�/�/�.�+�3�%�&�&�1�9�*�4�(�$�/�-�2�(�&��"�'�.�,�4�)�'�'�&�.�*�)�*�'�2�-�+�,�1�"�@�0�2�4�%�)� �6�'�,�-�0�1�'�(�+�8�)�.�,�#�'�%�0�1�+�&�1�'�6�7�+�*�0�B�'�1�:�)�&�4�0�$�&�9�$�-�+��/�(�;�$�3�,�<�!�!�%�.��(�$�#�5�&�,�,�)�'�'�.�!�+�0��-�'�'�#�.�8�2�,�3�)�+�!�(�&�9�4�(�(�&�.�,�*�,�%�&�6�*�)�/��/�+�2�(�/�$�*�)�/�'�.�B�+��)�)�'�4�8�+�"�-�'�'�1�,�,�1�!�*�,�,�)�,�0�4�*�6�8�"�0�$�4�+�.�(�)�)�$�)�#�0�&�#�4�"�(�+�)�,�1�:�,�/�'�2��2�-�"�'�0�$�6�(�'�*�-�(�0�3�)�-�2�(��/�"�+�(�-�*�;�+�.�&�.�,�+�)�$�(��/�-�)�0�-�3�%��.�-�!�$�1�2�*�,�4�$�$�!�1�#� �*�,� �.�3�+�)�'�-�3��$�(�)�)�/�2�0�$�)�"�!�.�)� ��3�2�(�/�'�3�)�5�*� �)�/�*�+�5�)�)�.�.�#� ��1�4�3�0�"�/�&�+�:�2�7�*�'�.�!�.�+�'�+�8�,��#�:�+�4��3�'�$�%�;�9�/�%�%�)�/�,�4�/�-�2�*�)� �(�)�.�-�$�0�(�+�2�-�'�/�2�+�-�+�"�1�;�8�-�2�$�-�+�/�2�'�6�5�-�5�&�,�.��-�,�%�,�:�9�/�:�,�*�!�=�+� �9�ڀπ׀׀ۀӀԀрۀȀ׀ڀӀӀ׀ր׀ր؀׀؀׀րӁ1�6�5�1�*�&�+�,�)�&�8�(�#�+�4�2�/���#�6�-�*�(�#�"�%�&�(�9�'� �(�,�-�-�0�8�#�8�,�%�(�(�)�1��0�*�/�%�1�/�*�+�*��-�3��)�-�(�9�4�1�1�*��&�)�)��4�4�%�,�+�'�)�1�.�"�/�2�1�5�!�)�#�-�&��,�*� ��+��+�<�"�1�.� �7�(�+�'�4�(�7�&�2�)�!�*�%�5�,�(�/�3�*�+��2�/�(�!�/�)�1��-�)��'��.�'�8�%� �(�(�/�%� �*�,�&�0� �$��3��.�3�0�1�*�+�)�/�1�1�$� �,��&�%� �5�*�;�)�%�!�*�*�%�7�8�%�/�"�3�(�8�*�.�%�-��!�,��2�-�1�*�*���+�/�6�"��:�/�'� �3�*�6�&�'��*�*�'�#�(�,�'�*�0�+�$�-�,� �5�&�1�(�7�&�*�'�*�:�.�%� ��1�0�2� �,�0�3�+�3�"�7�5�E�0�2�2�#�&�3�-�%�/�,�'�0�'�%�3�&�6�9��,�-�.�5�*�2�3�/�%�2�0�0�%�5�+�3�"�.�1�%�'�5�1�2�&�*�$�:�'�-�-�'�,�*�$�7�-�(�,�1�.�2�(�(�)�,�1�2�%�)�'�$�4�%��,��(�5�(�+�=�%�.�/�/�/�.� �&�+�+�*�(�'�+�$�(�/�,����+�&�+�-� �(�2�3�#�+�!�4�#�"�2�5�&�-�-�"�$�)�/�,�1�(�5�'�7�/�3�8�2�/�'�+�=�(�-�,�'�4�7�0�4� �&��$�-�%�'�*�%�"�&�3�,�>�.�'�.�%�/�1�2�3�)�=�,�+�$�%�/�,�-�1�*��3�5�4�*�$�-���B�&�#�)�0�+�9�/�'�!�%�/�4�,�.��,�#�-�*�/�8�-�-�1��'�-�1���5�/�.�-�!�.�2�-�+�'�5�"�(�$�*�*��0���%���+�2�+�5�-�8�ՀՀӀԀ؀ҀԀррǀڀҀҀրӀ׀րـԀրԀՀ؀ԁ)�%�+�)�-�,�+�!�0�#�%�#�-�2�,�%�*�(�1�&�8�.�+�7�&�1� �6�6�)�,�-�7��/�"�)�"�2� �$�/�$�.�+�-�'�"�!�.�(� �!�.�1� �,�,�5�$�%�-�1�'�5�'�3�!�5�.�(�2�&�!�3�,�1���,�%��/�%�(�.��7�)�0�.�1��#�(�+�%�4�8�/�+�2�.�)�1�.�/��)�"�5���%�+�-�+�&�,�,��#�,�0�%�2�,�(�,�:�/�3�(�,�+�0�/�'�1�2�"�-�/�8�)��0�/�%�-�1�0�!�-�(�*�$�6� � �/�0�#�*�7�+�5�'�*�)�*�*�'�#�6��)�#��!� �+�(�-�1�3��+�3�#�+�/�1�1�-�(�*�+�"�4�!�+�%�-�,�!�'�:�.�;�+�*�.�"�!��*�)�-�/�,�"�*�+�,�)�(� �1�3�%�#�3�9�/�3�#�'�'�%�'�+�/�+�*�,�2�+�!�1�$�5�1�=�)�,�0�2�,�9�+�(�0�/�(�)�1�$�8�*�5�0�/�*�'�,�/�/�6�3�1�.�$�!�3�!�3�.�+�0�%�(�,�2�9�'�.�*�7�3�,�/�'�0�,�2�!�*�2�(�*�1�2��"�"�.�)�1�%�(�2��'�-�(�)�/�&�4�%�!�,�(�&�,�7�9�'�$�/�:�3�)�,�$�*�#�(�3�'�(�(�,�,�4�*�2�)�+�,�+�"�+�)�"�#�+�7��0�)�/�+�4�#�+�-�*�"�%�!�*�&�*�/�#�(�%�0�,�!��+���5�0�(�7�"�0�+�/�"�(�'�"�)�(�(�2�#�(�,�-�+�!�1�'�=�0�*�,�-�8�(�%�.�(�2��5�(�0��5�5�+�#�5�%�&��+��*�*�/�.�,��� �/�/�,�3�*�6�0�+�.�-�(�+�4�3�%�5�2�-�$�=�/�0�0��/�'�-�+�%�&�8�3�5�>�#�.�3��%�"�7�-�9�.�)�>�$�*�8�3�1�.�'�&�1�'�,�.�րрӀԀр׀Ԁ׀рǀ؀Ӏ؀؀؀ڀڀԀҀрրրҀց/�*�3�(�*�,��#�,�7�/�'�*�'�9�!�!�2�6�!�'�,�,�+�$� �.�,�7�$�%�7�$�'�*�"�#�!�"��.�/�%�&���%�%�$�/�(�2�+�!�$�%�'�4�3�#�3�/�/�)�2�%�!�/��#�)�1�*�+�9�4�*�&�)�(�-�/�&�*�B�)�+�3�+��1�)�#�0�4�%�"�1�5�+�+��(�4�#�1�+��/�*�0��/�$��-�8�+�*�,�!�2�3�7�*�#��,�(�&�'�'�&�'�$�0�5�+�)�)�,�$�3�'�7�5�3�)�'�$��)�.�3�$�-�,�4�-�,�(�(�)�)�)�9�+�7�2�!�/�)�;�"�)�3�(�*�+�6�-�'�8�!�/�)�*�-�2�:��0�"�.�0�.�%�(�+�(�/�(�&�1�1�-�(�*�'�,�7�)�5�#� �1�2�4�(�/�*�*�-�-�(�9�5�/�3�'�,�&�7�3�6��(�*�9�(�)�%�&�1�3�%� �9�(�/�+�)�*�&�#�%�3�&�,�'�$�-�;�3�+�,�,�#��/�+�!�)�)�&�)�+��1�"�4�8��.��'�*�"�+��,�4�,�*�2�*�.�3�8�;�*�8�0��2��/�*�-�#� �)�*�+�7�)�*�/�.�/�%�6��-�/�(�*�#�"�"�)�(�*�(�4�*�'�&�1�)�#�6� �%�*�(�.�.�&�4�-�3�,�&�-�)�+�>�0�2�-�/�&� �-�)�%�*�)�-�$�2�)�.�/�7�1�)�/�3���!�)�+�.�7�%�(�6�"�1�.�+�/� �(�2�/�3�$�)�2�-�*�!�7�1�'�(�-�,�+�"�"�1�-�5�3�)�-�;�.�*�*�.�(��=�)�"�2�"�+�2�+�.�+�$�'�=�5�*�1�"�#�'�.�0�.�*�.�+�$�!�$�'�,�"�-�1�5�+�<�4�+�,�'�&�+�&�&�-�(�/�$�/�*�$�0�-�/�,�.�2�)�2�.�/�5�-�*�4�&�%�-�-�4�/�7�:�.�/�0�,�4�1�/�=�4�&�$�ӀрԀ܀Հ׀ՀրՀȀՀՀրԀڀр׀܀݀рր׀Ѐԁ)�"�0�1�,�/�5�,�.�7�)�"�.�-�-�4�/�2�&� �"�.�/�%�&��%�>�*�)�1�6�+�)��"�2�/�,�4�2�-�0�+�+�-�(�&�7�'�/�2�%�$�4�$�&�&�!�+�)�/�%� �!�4�'�(�7�2�-�-�4��7�"�*�7�'�+�/�/�5�,�'�6�6�7��%�'�,�)� �'�3�1�1�&�1�+�3�/�.�$�+�-�+�*�+�*�-��,�!�-�1�%�1�-�(�'�3�7�(�;�6�.�-�(�'�+�,�8��(�.�&�(�*�0�(�.�9�/�"��)�.�:�)�(�"�0�+�%�4�/�5�$�)�*�$�7�6�0�'�'�/�&�$�'�%�'�$�9�/� ��)�,�0�3�&�2�+�/�/�-�-�-�4�.�.�*�-�,�%�%�+�&�/�%�)�7���1�!�/�7�'�+�(�)�$�)��*�1�%�(�.�1�#� �+�'�$�&�*�7�%�/�'�+�3�$�1�'�6�$�0�#�3�0�,�:�-�4�:�9�3�"��"�2�2�1�#�9�3�)�3�1�+�*�/�!�3�/�-�8�-�!�.�(�*�!�(�'�/�,�0�(�-�#�$�%�-�2�,�.�-�'�*�6�7�8�"��6�2�-�0�5�)�*�-�"�(�%�%�&�/�-�.�(�+�"� �!�6�1�2�$��%�,�,�(�0�+�*�%�)�$�+�%�'�1�!�5��+�%�&�0�,�3�-�1�$�"�+�&�4�5�"� �$�/�*�� ��(�-�1��1�-�'�+��/�+�7�!�+�1�'�1�%�0�-�.�)�(�,�#�>�%�)�-�$�/��*�(�*�)�'�(�'�%�,�&�$�,�%�;�*�0�3�3�'�0�.�)�,�'�$�(�'�'��)�#�$�"� �/�(�'�+�/�$�/�'�)�0�-�$�&�)�'�2�6�-�6�'�/�-�2�/�(�4�#�&�2�1�0�-�-�2�(�.�'�1�)�$�/�0�3�9�0�+�7�0�.�&�4�!�+�"�-�.�,�!�*�(�!�3�+�-�2�%��/�(�-�&�3�5�3�0�%�#�4��0�ԀррـՀրՀ׀ԀɀҀـՀ؀ـӀ׀׀ր׀׀ڀրՁ'�!�@�*�6�'�+�'�-�3�.�"�/�4�'�3�-�0�;�(�(�'�4�(�5�/�+�.�-�%�+�0�0�3�-�$�*�%�2�2�,�)�1�+�)�&�-�.�$�-�1�)�2�.�1�)�4�+�'�&�.�*�2� �$�2�(�(�9�2�-�*�(�@�-�.�"�1�-�$�#�/��"�1�/�0�)�$�(�*�0�/�/�2�4�+�%�/�4�2�#�(�7�9�+��.�*�,�!�;�-�.�0�!�2�(�+�,�(�"�-�3�%�-�1�&��$�/�!�:�/��(�(�'�7�(�/�0�*�%�5�&�&�#�)�!�&�-�5�?�+�/�*�2�(�0�7�2�7�2�"�/�2��%��0�.�1�(�<�'�#�#�*�(�$�,�-�(�/�&�)��)�(�'� �'�%��"�+�4�3�+�-�*�1�7��#�'�-��)�*�-�-�*�-�4��"�#�-�*�2�)�(�&�/��+�&�-�3�%�+�5�)�4�(�)�5� �)�5�6�1��*�1�'�+�"�3�$�+�6�.�.�'�'�(�-� �*�!�*�-�+�3�0�3�0�-��.�2�.�)��)�"�#�/�� �*�,�;�0�,�%�3�1�.�5�-�.� �.�6�(��9�2�.�)�4�3�#�"�;�,�,�(�#�.�9�*�+�2�'�0�(�-�(�/�-�*�'�%�%�*��=�,�2�)�-�/�3�'�!�*� �'�.�+�.�.�#�.�5�(�'�2�)�$�-�0�7�.�'�'�'�1�,�2�)�1�*�/�'�1�*���(�/�,�%�/�)�3� �%� �)�+�'�-�+�0�!�0�*�6�(�(�/�)�'�"�.�#�!�(�0�0�4�+�'�&�3�'�/�/�"�,�,�%�1�0�*�!�-�*�'��"�2�*�%�0���2�0��/��5�1�&�*� �'�+�$�,�1�*�#�,�'�7�-�'�1�$�*�+�/�2�0��#�,�+�%�,�)��'�<�"�1�7�-��<�+�1�(�+�(�6�/�'�(�3�&�&��-�/�8�6�-�5�,�.�'�A�!�$�&�6�&�+�/�.�'�-�9�ՀـԀڀԀԀԀ׀Ӏŀ׀؀ـπր׀ـ׀ՀۀՀ؀ӀՁ�1�*�3�%�.�.�3�/��'�#�!�5�8�/�6�+� �2�4�@�,�)�+�/�$�+�8�*�+�/�+��9�)�-�'��.�%�&�5�$�:�/�/�.�.�.�2�.�)�4�-�2�%�)�:�'�&�+�"�*�%�,�/�3�$� �&�"�=��0�2�*�6�(�-�%�&�8�4�0�&�%�-� � �"�/�"�&�)�+�3��1�4�4�$�+�(�!��$�-�%�4�?�*��!�-�-�'�1��/�3�*�1�$�5�&�)�6�6�%�'�.�(��'��-�-�5�6�/�#�"�.�(�/�-�,�*�*�9�%�%�*� �/�'�+�-�8�$�+�(�)�"�#�2�&�0�/�3�0�+��2�8�.�)� �'�/�+�0�>�=�.�(�/�/�7�+� �B�2�(�3��-�2��.�,�#��(�'�%�/�$�'�'�1�/�+�7�/�)�,�'�4�$�1��.�/�-�'��A�!�%�*�,�;�9�'�,� �4�&�)�3�6�7�/�7�)�/�-�/�$��-�/�)�.��.�"�+�0�+�"�"�*�*�&�<�6�0�$��2� �+�!�0�#��+�+�'�3�*�.�/�4�1�)�0�*�2�*�'�#��%�'�$�5�%�6�1�*�(�!�=�*�:�/�*�0� �;�$�&�3�,��0�3�.�$��/�(�/�3�8�0��(�$��0�%�)�(�'�2��#�1�2��(�9�.�'�.�*�*�(�"���,�&�6�.�+��)�.�'�*�5�+�"�*�;�6�6� �7�-��-�%�'�&�+�7�1�0�(�0�+�7�$�/���+�/�0�"�'�-�%�'��&�&� �/�9�*�,�1�1�6�"�4�0�*�/��/�%�)�5��5�,�/�!�,�.��'�3�+�3�.�'�%�(�2�/�)�)�+�)�'�&�&�'�*�-�,�*�'�1�4�!�7�%�3�/�,�=�1�0�1�/�,�.��9�0�(�,�9�5�+�1�%�%�)�+�6�/�B�<�2�4�&�.�5�&�*�1�/�-�0�;�'�$�-�7�0�2�%�*�1�)�'�0�.�9�'�؀ـۀހـ؀ـ׀րʀӀՀӀ؀؀Ԁ؀Ӏ؀ЀـӀڀف/�.�$�%�-�0�)�-� �.�5�3�@�+�,�)�*�4�4�/�"�5�"�$�*�.�)�%�2�-�.�/�1�+�)�+�1�.�*�1�2�-�6�(��#�&�)�,� �*�(�'�7�2�,�.�*�(��-�&�&�,��$�.�-�4�%�+�+�)�"�*�.�"�/�'�3�*�,��%��6�%�5�*�-�2�%�)�'�3�2�;�1�1�'�2�(�$�7�&�-��7�3�+�(�$�#�'�'�1�A�+�2�-�(�*�*�,�#�*�/�/��,�!�3�6�&�$�B�3�0�/�)�4�3�-�.�#�-�0� �'�<�-�/�<�#�$�7�2�+�2��+�+�0�0�,�'�0�:�)�*�%�6�.�/�7�-�+�5�/�/�(�,�%�'�"�*�+�)�/�%�&�(�:�*�.�-�*� �-�1�(�4�(�8�%��)�+�0�*�)�*�/�,�#�.�/�2�/�,�&�/��+��,�8�/��*�&�6��5�)�+�"�)�3��%�)�3��$�+�$�-�8�,�*�#��%�'�4�-�,�!�(� �'�#�5�0�&�3�'�9�0�1�5�3�1�(�/�"�+�3�>�'�(��&�&�-�3�-�!�!�.�-�'�2�*�"�-��1�+�&�3�+�!�#�9�2�.�'�*�,��*�0�'��#�%��(�)�3�.�-�1�#�'�.�5�'�2�&�5�+�,�,�#�0�*�0�)�"�/�(�3�0�&�-�)�'�0�3�3�&�)�2�5�&�"�&�)�+�#�.�#�0�'�(�/�+�1�&�)�8�)�$�8�5�$��1�'�$�)���*�%�(�"�9�*�%�-�.�.�+�$�(�0�(�.��/�+�#�*�/�'�(�,�,�.�2�8�,�'�(�1�:�.�-�,�6� �"�.�#�%�/�&�%�0�7�+�7�(�.�0�/�#�'�8�-�3�(�5�%�.�4�,�5�-�1�*�7�+�%�)�0�=�/�)�+�8�1�)�'�!�?�,�+�4�6�%�6�)�)�8�-�3�.�+�:�.�/�4�-�!�1�,�&�/�.�4�(�!�3�*�-�)�/�!�A�%�,�)�<� �-�$�?�ڀӀԀ׀׀؀ՀԀӀˀՀՀՀ׀׀ҀрՀӀрӀ׀Ҁׁ2�.�.�0�0�0�+�0�+�3�7�3�(�,�4�*�6�1�.�5�1�4�2�6�/�.�+�3�#� �-�!�&�#�/�6�7�3�0�,�*�/�6�%�1�2�%�2�%�)�0�)�(�"�!�1�5�2� �&��)�1�+�3�0�%�%�+�2�+�/�1�$�+��(�.�!�{�*�,�+�(�,�(�&�'�(�/�"�"�/�-�&�&�)�2�+�0�1�#�"�1��0�&�*�-�,�'�+�-�/�$�,�#�6�9�!�-�&��1�4�/�3�'�/�%�+�3��%�"�!�1�,�/�7�*�$�;�&�+�(�%�2�3�&�(�/� �4�5�3�$� �+�)�(�(�6�;�,�5�/�*�4�+�4�8�/�1�+�3�)�$�.�%�#�/�/�0�5�6�*��&�)�8�)�!�0�!�$�9�'�A�,�,�,�(�-�8�+�0�(�-�1�+�*�%�&�%��+�)�3�)�#�1�/�'�#�/�%�)�&�/�&�+�1�-�&�'�'�3�/�-�!�.�#�"�:�;�%� �(�7�/�0�.�,�%�)�+��*�'�0�2�+�/�3�2�'�%�'��&�$�3��4�-�'�'�+�0�/�.��(��+� �,�.�;�.�2�$�/�5�#�&�+�.�9�-�'�<�.�5��'�6�8�0�*�5�!�!�2�2�+��+�%�(�-�,�+�/�%�.�/�+�!�%�*�-�8�'�+�/�'�&�0�&�,�;�$�*�'�/� �/�&�'��,�!��(�+�4�/�4�%�4�)�)��,�:�)�/�)�0�*�0�*�)�2�#�3�4��&�&�/�&�@�2�'�'�"�1��'�#�,�#�-�'�"�7�-�*�0�"�&�%�.�,�7�$�(�&�&�,�$�0�.�.�(�3�:�"�/�1�-�#�&�(�4�"�.�+�5�*�0�)�5�8�,�-�-�,�:�0�&�$�-�)�$�2�0�6�5�)�.�3�/�7�&�)�$�*�&�6�%�0�#�3�!�4�3�6�,� �)��.�(�"�!�2��)�2�+��)�/�,�/�1�*�2�.�.�>�'�&�-�.�5�*�%�-�+�&� �4�!�,�1�6�-�Ԁ؀ـрـՀӀրՀʀӀ׀ڀ܀ڀڀՀՀЀπــԀׁ1�3�*�&�0�+�$�,�'�:�$�(�,�+�2�!�)�+�+�/�)�.�5�$�%�?�(�'�(�%�7�*�+�!�3�0�/�-�!�1�3�+�%�,�'�'�/�-�'�0�&�!�*�0�#�(�7�*�)�0�0�*�(�0�+�'�#�*�+�+�%�&�/�+�6�"�%�:�2�O� �+�#��*�$�*�,�4�.�%�)�1�2��.� ��/�'�&�7�)�4�/�.�1�1�%�)�+�&�$�(�*��-�%�%�$�4���)�)�0�(�'�1�0�(�1�.��5�)�)�(� �(�-��/�8�*�"�-�*�$�0�'�(�%�.�'�'�(�.�+�+�-�9�+�'�/�(�,�.�-�1�-�(�)�.�1�3�(�.�0�1�(�2�*�/�/�6�)�)�(�2�5�*�%�/�0�+�3��6�4�5�5�*�+�/�"�)�"�+���*�#�,�*�#�*�'�9�'�:�,�2�2�+�6�-�"�!�&�+�"�:�'�)�-�+�5�+�+�#�$�*�)��-�-�>�4�.�-�+��#�0�3�!�$�/�(� ��$�*�+�$�3�!�+�1�3�5�%�+�6�,�1�#�+�+�3�7�1�2� �8�)��2�!�!�&�5��+�8�/�!�'�-�3�!�3�*��)�.�.�%�,�*�4�'�7�5�'�6�7�&�(�#�1�&�>�+�2�+�.�(�4�.�(�"��-�7�!�:�7�8�(�"�.�)�-��+�&�&�&��)�:�5�-�'�/�1��)�)�*�*�.�2�.�/�*�,�� �*�(�2�2�(� �.�>�+�.�$��2�&�0�(�0�,�#�"�/�-�0�/�9�/�7�?�#�*�1�+�,�+�$�+�4�%�-�5�)�5�/�&�-�+� �4�2�1�1�(� �6�*�&�+�,�+�0�?�(�)�+�/�0�'�'�6�4�-��,�(�'�*�%�,�:�"�)�%�.�3�%�4��!�-�,� �/�3�6�*�&�1�+��9�;�/�(�'�*�2�1��6�?�%�(�-�/�8�$��1�,�/�*�/�7�+�,�-�$�#�%�,�@�,�/��'�&�7�)�*� �(�ـ؀׀Ҁր׀ـҀՀǀҀӀՀрՀӀրۀ׀ӀրՀրҁ8�$�-�.�-�'�)�&�+�5�$�)�)�3�)�,�2�*�0�&�1�"�1�#�+�0�.�)�(�1�%�/�+�,�*�'�5�2�-�4�-��8�4�.�)�.�0�&�$�%�%�/�+�3�.�&�'�/�/�/�2�9�'�4�(�%�/�*�0�*� �#�$�(�*�-�%�&�*�:�,�,�&�*�0�$�1�'�-� �.�)�)�&�#�.�)�&���+�5� �3�&�&�)�-�2�'��'�+�+�9�&�$�1�)��+�(�)�6�/�4�.�(�.�6�$�4�(�'�'�(�%�4�*�0�"��)�-�0�8�;�*�"�#�.�4�'�+�%�%�!�!�%�&� �1�)�.��)�*�&�/��&�.�%�4�0�%�.�*�#�-�,�%�&�,�%�)�!�1�3�$�2�-�$�*�*�=�*�'�)�(�,�+�*�8�-�$�6�� �'�1�(�8�#�&�#�*�*�/�'�-�&�*�$�'�/�4�/�4�-��*�2�+�.�)�#�*�&�$�(�6�$�.�/�*�1�-�>�*�0�%�#�$�)�'�'�;�+�+�&�3�$�.�3�-�/� �,�1�)�,�3�(�)�+�&��*�4�7�"�+�6�,�-�5�-�2�&�(�%�:�'�/�1�,�*�*�!�3�*�,�?�)�$�9�9�7�@�-�(�&�/�'�+�(�(�-�&�.�)�.�4�7�-�%��.� �%�$�(�.�8�/�"�2�'�,�.�'��$��"�+�)��:�)�,�2�+�!�/�'�5�-��(�'�(�/�5�+�&�1�6� �)�.�/�+�/�#�,�.�-�+�(�/�1�1�0�'�/�3�&�2�/�$��'��,��+�.�%�0�(��+�$�&�2�3�2�%�)�<�'�(�)�4�+�&�2�"�+�'�*�$�.�3�&�4�>�'�*�%�&�-�2�'�%�2�+�/�;�0�0�3�"�'�#�)�3�.�/�/�(�&�.�#�,�'�*�/�)�'�1�'�%�1�-�1�9�!�<��0�$�9�-��+�%�0�,�)�"�5�-�/�)�(�3� �1�9�$�+�2�5�1�2�)�&�2�4�9�,�6�%�6�(�-�.�*�ڀӀ׀Ѐ׀ЀԀ׀Հˀр؀ۀՀՀЀՀԀـրրՀҀׁ8�$�:�/�#� �*�%�-�.�0�.�0�/�/��,�'�8�.�+�,�0�7�#�!�1� �7�*�+�-�/�)�*�,�5�5�/�+�&�$�(�*�0�0�,�'�3�!�-�$�#�%�'�(�2�+�&�,� �$�,�.�,�'�,�1�1�2�7�3�+�/�(�%�'�/�0�"��*�.�3�3�8�-�2��4�2�!�'�5��1��*�*�.�)�'��/�,�%�(�"�0�/�3�'�+�'�<�'�#�0��%���8�+��#�<�'�+�)�5�%�1�/�.�1�#��+�4�1�+�%�)�+�,�1�-�$�6�5�0�/�-�'�)�2�-�(�$�*�%�5�*�:�(�$�-�!��4�&�*�0�'�'�.�)�$�2�%�+�$�5�#� �.�7�!�-�!�/�+�-�4� �/�$�)�*�+�.�+�!�)�+�'�-�*�,�<�)�(�-�3�6�/�!�,�*�#�)�/�.�-�8�5�&�0��+�*�'�-�8�-�%�-�>�;�9�3�*�-��)�5�)�3� �9�1�)�+�(�-�.�)�1�#�2��/�,�,�*�-�+�)�"�+�4�-�5�;�7�&�%�)�(�=�&�%�:�&�1�!�-�'�/�"�)�/�0�2�/�-�'�&� �A�(�-��4�+�&�!�(�.�#�'�%�-�7�2�'�:�:�3�/�#�2�+�*�%�3�-�2�(�%�#�'�'�4�)�,�&�(�-�&�<��4�.��'�+�:�/��&�$�0�6�2�*�2�"�%�,�!�/�2�#�/�1�%�"�'�-�&�0�3��,�-�)�/��2�%�+�.�-�+�+�%�*�4�-�!�%� �(�,�%�4�+�'�)�!�,�4�;�)�%�'�&�/�9�,�'�5�,�4�6�*��,�,�)�'�-�-�(�0�!�)�4�+�(�)��,�"�2�&�0�*�!�?�.�*�@�3�/�'�(�-�!�/�9�*�'�=�2�/�3�-�+�/�&�:�/�"�'�&�'�,��0�.�1�!�/�'�!�2�2�;�6�7�*�5�(�/�*�)�=�+�:�/�,�.�%�/�$�(�7�8�9�$�3�-�)�(�6�/�=�'�#�ـրՀրـՀՀՀ؀ƀՀۀԀрـՀ׀ۀր؀Ҁ׀рՁ&�5�.�#�%�0�&�+�+�+�5�/�4�3�5�(�,�/�1�/�-�-�7�+�-�#�0�%�%�3�&�.��.�$�:�(�/�2�,�1�%�1�5�:�#�+�'�)�!�,�-�,�;�3�)� �3�1�/�3�(�6�-�-��%�#�-�6�(�0�*�1�0�-�%�1� �,�"�1�0�-�6�.�1�(�2�9�"�(�1�(�*�8�+�(�/�+�%�5�.�+�5�(�7�"�5�'�)�+�+�!�$�*�4�)�4�/�*�2�(�/�8�:�:�+�#��*�*��(�.�1�0�3�&�&�+�3�-�)�4�+�*�0� �$��6�/�)�-�.�)�+�0�5�2�8�3�+�.�-�,��8�+�#�)�'�)�4�4�4�)�'�'�>�"�>�!�&�)�/�$�:�.�8�4�5� �(�1�(�%�!�3�-�!�-�-��"�7�-�-�)�#�.�.�$�,�)�0�(�+��3�)�1�2�'�,�)�.�-�0�%�&�(�)� ��7�#�)�2�5�/�/�!�/�#�+�.�4�(�)�/�+�,�+�&�*�-�/�*�5�2�!�.�)�'�%�+�%�'�0��+� �*�7�%�0�"�(�5�-�+�1�5�-�'��0�#�,�5�7�.�/�+�+�'�'�-�6�'�'��%�-�0�;�+�%�6�/�6�<�/�.�6�)�&�&�'�-�)�"�*�*�!�-�+�,�$�1�-�*�'�)�%�=�:�)�)�1�.�/�)�'�2�3�.�(�-�0�#�3�:�!�-�'�-�=�)�=�(�,�-�!��(�#�2�:�/�-�*�9�0�4�"�%�$�*�5�*�'�/�(�6�(�*�#�!�"�*�.�1�(�1�3�,�+�3�$�*�7�(�!��2�7�7�%�;�3� �6��'�8�<�2�+�/�1�-�3�3�$�#�5�'�7�.�%�)�*�)�/�0�3�$�8�0�.�/�-�-�*�$��$�+�-�'�(� �0�'�1��1�3�'�2�)�$�/�*�1�"�0�*�/�6�1�/�,�*��(�*�,�3�)�1�'�+�0�0�%�4�!�4�6�7�1�%�-�&�5�1�$��$�>�,�3�%�4�+�*�3�)�׀ր׀Հ݀Ԁـ׀ڀ€׀ԀрҀۀրրӀ׀؀ՀԀՀց(�3�&��4�-�+�2�+�1�'�.�4�!�8�-�*�/�/�-�'�%�4�!�+�.�-�-�$�+�$�)�.�9�2�*�,�*�,�3� �)�"�&�7��.�2�0�-�,�)�/�*�2�9�(�5�%��5�-�8�)�:�,�(��-��+�3�'�0�(�-�*�5�-�6�7�&��6�,�/�/�+�0�-�$�(�5�0�#�3�#�"�!�!�*�+�1�7�&�.�#�(�'�#�,�+�$�0�%�(�*�,�*�4�-�/�.�.�3�6�'�8�-�*�)�/�/�#�&�*�&�&�.�#�,�%�-�2�-�1�)�/�"�.�/�)�+�7�)�0�.�&��.�'��"�0�&��&�.�1�/�/�8�'�-�$��1�$�;�&�.�:�2��-��2�,�6�%�%�2�.�-��(�/�1�/�2�&�*�,�-�,�,�(�,�1�(�0�0�/�)�'�*�"�,�.�6�.�-��(�)�)�*�-�6�(�(�$�)�&�+�'�.��%�'�&�+�'�3�+�(�,�*�*�!�'�7�&�&�+�$�&�"�+��-�1�)�/�-�6�2�7�4�<��,�#�9�*�3�/�-�(�2�%�*�#�'�1� �"�%�.�'�8�6�,�/�%�-�0�)�'�0�"�6�!�-�&�/�(�)�'�#�$�(�(�+�)�%�+�&�/�*� �(�0��2�.�+�+�0�(�*�!�%�3�2��7�2�(�)�6�)�*� � �7�0�#�$��0�/�,�,�#�)�%�#�"�%�3�8�+�(��!�$��+�#�<�.�'�3�+� �2�*�-�'�<�'�*�2��#�'�&�'�/�4�4�0�*�%�2�/�-�$�#�*�7�-�'�-�7�/�-�-��3�)�4�%�.�-�#�(�0�&�/�,�%�*�6�(�'�,�@�&��4�.�1�/�&�0�0�0�0�.�+�&�"�-�8�4�/�"�*�-�)�%�+�+�0�(�)�0�$�)�%��0�#�0�$�%�+�7� �6�(�$�5�<�4�4�&�4�!�"�*�#�'�,�*�5�,�4�7�;�5�A�+��)�+�2�)�6�&�+�/�/�.�,�,�0�1�/�0�׀ـ׀Ӏ؀ր׀ӀԀ€؀ــӀՀրڀӀ׀ӀҀ؀Ӏہ>�;�"��4�'��-�/�0�/�7�,�7�5�3�%�=�&�)�&�'�/�)�0�#�5�#�;��2�/�'�1�0�0�)�+��#�/��1�&�2�7�(�,�8�"�.�2�:�*�.�+�/�(�*�*�-�/�+��'�4�"�!�2�/�$�/�3�3�&�'�)�,�$�%�)�7�$��*�%�%�-�0�0�(�)�+�/�&�1�+��3�+�#�%� �4�/�0�2�.�*�2�!�8�,�)�.�%�'�/�3�)�.�;�%�$�.�-�6�.�%�,�#�1�,�.�-�!�)�&��9�)�.�)�%�/�#�3�%� �1��2�%�/� �3�#�%�)�.�0�-�/�(�)�,�&�#�%�"�)�.�+�/�*�%�+�3�4�*�%�,�$�!�$�.�+�/�!�*�,�8�4�7�"�+��%�,�*�,�0��4�,�'�4�.�.�%�.�*�!�.�?�-�&��.�3��-�*�'�+�/�.�1�#��+�(�*�7�&�'�"�+�#�9��'�#�:��+�*�1���+�$�7�1�/��.�-�*��)�"�0�)�-�,�#�%�$�%�:�$�4�,�,�>�3�/�0�)�%�,�'�,�'�,�.�(�3�.�/��(�7�)�(�&�*�'�&�4� �#�+�-�*�4�)�"�*��-�-�(�*�7�2�$�>�6�<�)�3�,�!�2�-�*�+�,�-�*�-�2�/�*�.�,�9�(�.�2�.�,�3�6�-�)�-�(�"�#�1�0�.�-�'�1�2�-�&�*�6�1�)�-�*��(�"�&�/�-�6�.�*�!�8�-�5�&�.�2�5�-�,�/�%�8�+�-�,�*�$�2�3� �)�#�(�*��/�)�)�0�&�2�-�'�0�)�7�%�#�(�,�2��*�0�2�%�3�&�1�)�)�&�-�.�%�*�(�)�,�/�1�.�5�%�+��.�3�(�'�8�)�1�.�5�'�.�*�9�7�8�-�,�.�6�-�0�1�*�$�'��5�-�.�*�*�*�>�8�*� �$�.�)�-��/�/�/�1�)�8�)�+�(�)�0��3�"�,�-�1�/�6��&�6�1�3�*�6�-�/�׀ӀۀԀրҀՀԀՀƀ؀׀ڀՀڀԀЀԀ׀׀Ԁ؀܀Ձ8�1�*�!�2�*�3�#�/�7�3�/�4�5�/�-�/�*�5�-�3�'�.���$�-�7� �6�:�'�+�7�6�4�3�+�1��(�6�*�+�0�8�(�)�+�(�/�.�7�,�*�1�7�*�.�*��-�8�9�-�&�"�)�-�&�*�-�%�.�1�"�%�1�-�#�*�2�/�0�%�%�:�-�*� �'�.�*�2�-�/�5� �"�#�$�;�(�4�(�&�.�0� �+�'�7�.�(�=�/�5�+�#�'�,�3���:�,�/�)�-�/�.�1�+�(�$�4�)��/�2�.��(�,�,�,�,�/�9�'�*�)�*�+�.�&� �/�%�-�.�+�*�,�/��'�2�1�*�'�-�0�:�.�-�/�$�2�8�'�,�3�%�6�,�)�/�'�'�#� �'�'�4�-�3�+�*�*�*�8�#�)�5�'�3�,��(�!�'�1�:�)�"�)� �6�/�$� �"�)�2��5�/�-�&�0�*��.��2�$�(�&�+�,�/�)�1�&�'�>�(�0�,�2�$�+�&�3�4�)�0�)�4�+���)�9� �#�3�(�;�)���9�(�.�#�/��'�2��*��+�)�-�.�*�2�.�/�/�#�(�$�*�'�-�&�%��0�)�.�$�0�-�6�*�%�&�-�1�3�.�0�2�*�0�'�0�'�%�*�0�*�0�)�*�*�%�/�:�,�1�6�0�,�'�/�3�.�.�1�.�)�6�/�/�&�0�<�+�7�(�1�2�'�'�/� �5�'�+�#�-�%�-�,�+�2�#�*�7�.�0�%�+�.�3�(�/�0�7�,�#�&�!�.�%�'�#�-��(�.�6�!�&�)�,��)�"�9�'�1�'�0�(�,�$�.�)�)�)�3� �2�"�"�"�/�'�)�)�(�(�,�)�"�0��,�4�-�*�(�%�'�-�'�*�3�/�!�;�.�� �'�1�*�)�+�.�,�/�-�,�9�.�1�7�.�+�(�*�4�'�2�/�,�'�$�.�5�%�7�#�%�3��4�6�-�4�1�-�'�3�%�1�.�)�-�&�(�'�3�*�7�1�#�(�4�+�$�,�.�+�܀؀Ҁ׀Հ׀ր׀Հ��׀׀ҀـрӀЀр׀Ѐۀـ؀ҁ5�)�/�E�/���0�,�1�!�+�;�"�#�4�#�2�&�)�(�2�0�2�/�6�#�"�1�+�%�!�+�/�,�)�.�2�5�%�0�.��-�*�%�4�1�)�"�,�"�!�)��*�-�(�'�;�0�'�.�&�'�*�7�)�5�+�#�:�$�-�!�2�1�+�9�-�*�9�%�&�3�(�$�/�6�)�2�5�)�"�4�+�3�)�/�1�!�"� ��0�+�8�.�"�'�"�0�*��+�/�,�*� �3�/�2�0�1�$�/�.�0�&�@�#�-�%�2�&�%�1�1�2�1�(�0�9�7�.�8�*�8�$�-�4�0�2�/�+�.�+�6�5�-�'�-�.�$�3�.�/�5�)�)�>�.�'�2�#�4� �1�/��+�'� �'�"�'�5�/�'�1�%�/�,�'�%�0�'�,�/�5�$�3�+�+�/�+�.�$��!�&�.�)�#�8�#� �4�"�+�)�.�0�$�-�5�&�"�(�,�+�6�!�!�+�*�#�0�-��?��+�&�.�8�3�)�'�&��'�+�)�.�,�(� �3�,�"�5��4�(�,�/�*��,�+�/�4�1�%�5�'�)�'�&��+�!�&�,�-�/�1�(�/�3�/�!�'�,�/�-��(�!�$�/�!�)�3�"�&�/�'�(�#�)�+�*�&��5�&�*�3�-�%�)�,��6��/�+�)��*�)�'�%�/�7�5�+�+�'� �/�2�)�'�2�(�3�#�(�"�/�,�%�,�5�.�)�2�.�-�2�"�(�4�&�1�*�/�/�.�,�3�$��5�1�,�)�/�!��"�/�.�+�!�+�&�5�*�)�#�/�%�4�&�'�2�"�)� �&�.�'�!�+��'�&�7��,�&�.�"�$�.�&�&�'�7�7�6�&�6�/�$�&�(�$�0�3�1�-�,�'�,�*�-�=�-�7�?�1� �7�5�)�+�-�4�3�/�1�(��1�1�*�'�$�-�#�#�(�*�)�.�'��/�*�(�9�,�"�&��/�2��0�5�>�/�(�%�6�1�$�5�&�-�,�!�,�-�1�+�%�(�'�/��0�,�+�3�4�'�׀׀ҀӀҀҀڀـ׀ǀـ܀ր؀׀ԀՀԀ׀ՀՀڀۀց7�&�6�$�2�.�(�4�/�5�+�)�9�,�'�?�3�9�3�+�9�9�*�/�*� �0�7�7�&�4�.�(�:�'�5�*�3�)�+�4�.�!�4�.� �-�(�*�0�2�0�#�'�1�*�!�6��$�+�+�#�'�!�>�1�3�6�<�(�*�-�#� �/�4�*�+�/�6��/�� �'�4�1��.�$�%�1�2�%�*�&�)�(�(�8��/�*�-��"�1�+�-�'�3�,�/�#�&�0�)�$�2�%�'�(�2�%�#�1�-�!�%�+�&�.�,�.�%�9�-�+�6�3�'�5�'�"�-�)�.�'�%�<�6�0�+�*�'�*�7�2�0�)�'�2�+�3��1��7�1�+�-�.�$�/�(�$�)�)�#�*�8�3�#�)�1�-�3�1�(�(�.�&�-�&�-�'�&�0�+��+�-�&�)�+�-�0�+�$�!�*�*�+�)�5�2� �/�+�1�;�$�-�0�0�,�0�*�(�/�-�-�'�/�/�$�#�0�(�-�"�)�%�1�+�0�$�:�7� �,�'�8�(�1�(�%�6�!�*�5�*�"� �&�,�+�7�$�(�5���1�3��*��-�,�*�-�%�%� �'�0�2�#�+�)�1�&�%�2�2�*�#�1�$�0�,�*�3�'�%�%�.�%�2�#�&�!�3�#�'�-�"�$�.�)�#�3�<�5�)�/�1�%��1�*�.�+�6�'��+�"�(�%�*�4�4�+�-�3�6�8�"��"��'�$�(�0�6�1� �2�$�'�,�'�"�0�.�%�*�4�/�3�!�#�+�)�,�4�#�8�.�3�2��+�$�6�$�1�&�#�*�$�%�4�%�2�/�-�/�#�1�!�0�8�'�/�5�1�2�4�&�2�)�,�)�5�,�$�,�)�#�$�5��6�*�)�,�0�&�,�"�+�*�.�"�,�5�-�-�/�(�,�5�-�'�'�/�2�.�%�.�,�+�*� �/�/�,�D��&�-�/�/�/�/�)�0�8�(�-��"�,�'�/�)��4�3�.�.�+�3�0�*�1�4�3�%�/�.�!�3�$�)�(��&�+�,�C�6�!�%�"�4�-�ۀՀ׀ҀՀڀӀԀ؀ȀрրЀـ׀׀рրԀՀــրҁ(�'�-�/�6�1�(�,�7�4��*�1��"�0�2�3�,�2�/�(�)�0�'�,�%�(�1�7�+�#�4�0�3�7�+�3�1��,�;�:�'�%�&�-�7�/�3�8�0�,�'�"�+�&�-�&� ��#�;�'�1�-�#�#�0�+�-�-�*�;�-�)�%�1�/�.�%�)�*�5�(�'�)�3�2�1�.�4�*�"�)��(�&�8�$�7�*�)��*�$�%�0�,��-�'�#��%�3�0�/�"�*��6�&�-��'�0�3���&�+�$�!�(�9�0�.�/�,��.�/�$�,�#�'�0�*�(�#�!�/�"�2�'��/�,�1�6�"�)�&�'�2�0�7� �5�)�(�*�0�(�-�$�'��.�%�%�1�,�,�)�2�<�*�9�)�+�#��6�,�,�,�8�%�4�0�#�2�$� �(�3�)�)�-�4�*�'�2�"�)�(�.�1�5�+�(�+�%�+�,�=�'�+�'�.�+�"�,�(�7�9�4�+�-�3�'�$�&�9�0�-�)�-�/�4�*�*�+�*�-�'�,�'�.�'�2�'�%�4�8�!�2�4�'�,�1�!�1�1�)�(�.�#��/�4��/�-�/�3�)�*�3�'�.�,�&�-�6�;�5�%�.�-�#�3��$�0�%�5�5�/�,�'�1�,�9��#�*�$�"�+�!�+�+��.�#�(�)�,�3�"��1�,�&�'�*�5�-�/�"�&�'�/�-�+�4� �)�(�$�!�#�(�,�1�/�(�!�,�5�&�0�!�(���,�1�/�2�0�"�/�*�/�&�.�-�%�;�,�3�8�*�7�+�0�3�5�&�+�&�-�0�1�/�$�.�'�)�1�0�3�+�+�.�;�3�'�!�.�,�&�,�3�/�*��'�!��1�0�4�$�+�2�"�/�.�-�!�6�-�'�'�4�,�.�0�3�$�'�*�7�%�-� �2�/�+�%�'�'�$�*�%�'�-�8�&�"�0�(�*�)�)�2�&�6�&�#�'�A�.�-�"�'�.�/�/�6�:�+�)�4�3�0�0�&�$�3�-�-�0�4�:�+��#�2�2�"�)�/�?�3�,�;�ԀрՀՀ׀Ԁ׀׀ՀƀՀՀ׀ӀՀڀՀՀ؀ԀҀـՀԁ#�3�'�@�1�?�:�.�-�+�3�/�1�:���'�!�#�/�2�'�,�!�,�#�(�,�#�0�.�+�7�(�.�4�)�/�,�,�0�/�"�(�.�)�+�%�'��(�*��1�2�/�$� ��(�#�0�/�%�(�/�%���!�*�7�,�6�$�7�.�"�6�8�'�,�*�.��'��&�&�.��0�0�'�'��2��!�&�D�6�7�2�,�(�6� �0�/�2�+�!�2�#��*�+�/�#�!�)�0�7�%�6�/�&�%��1�6��)�.�(�$�+�6�3�/�.�$�"�#�(�5�3�4�*�/�)�1�,�'�-�.�)�/�2��"�*�"�'�/�.�!�2�.�2�2�*�3�%�.�'�(�1�'�(�(�(�#�*��2�,�-�0�#�+�&�/�!�#�6��&�*��'�/�)�/�$�2� �-�� �!�"�5�-�*�1��(�%�)�+��,� �+�!�+�(�3�1�0�,�/�*�3�/�6�#�3�'�2�/�-�,�*�5�7�-�(�!�>�,�3�8�.��+�9�3�:�,�,�+�#�6�4�)�*�!�(�2�1�$�;�/�+�3�-��'�,�$�3�!�.�)�.�/�#�#�#�1�.�0�&�/�'�$�%�*�0�-�#�7�'�1�*�+�,�%�)�'�9�2�,�2�'��%�'�2�.�-�)�-�-�!�-�*�0��1�"�+�,�/�#��1�$�0�-�-�-�.�+�1�.�-�3�$�+�0�1� �*�'�7�&�*�'�-�7�'�%�(�3�-�%�6�(�/�0�)�5�4��7�(�*�,�,�/�G�%�/�/�'�-��$�$�*� �(�4�"�:��&�1�)� �"�&�&�0�0�*�/�%�*�-�&� �/�(�"�,�.�$�/�/�0�+�.�%�%�'�5�,�)�-�%�.�+�,�.�,�#�5�-�!�#�/�$�$�!�-�1�.� �7�)�6�"�%��3�/�/�+�#�(�*�-�3�&�#�3�,�#�)��/�9�1�,�1�+�&�$�/�-�:�.�4�*�%�+�/�+�/�5�:�-�+�(�0�(�6�/�3�*�&�1�'�3�3�4�(�؀Ӏڀڀ؀؀ۀՀҀȀ׀ԀԀҀ׀ڀӀӀՀՀՀ؀܀ׁ&�%�3�(�2�.�-�-�7�5�&�5�.�+�7�$�)�*�(� �*�%�)�4�)�#�1��4�(�4�0�1�,�3�-�>�#�*�5�+�/�"�,�4�,�(��'�0�#�6�(�:�5�-�0�(�'�*�,�$�*�#�!�2�+�5��*�%�7�#�'�3�/�+�-�1��*�*��,�(�$�!�1�-�(�-�$�4�*��'�6�*��2�/�$�4�2�/�)�3�*�5�)�&�1�+�*�$�1�'�(�,�'�,�2�$�"�+�/�$�2�,�)�+�%�(�1�%�5�"�&�-��0�/�,�+�5�(�+�%�-�"�(�&�5�*��/�&��1�1�/�/�!�(�6�'�*�8�1�-�/��&�&�&�'�/�$�)�;�,�3� �8�6�3�+�6�+�4�3�4�7��/�-�*�3�8�-�3�=�8�"�5�,�$�3�(�-�5�*�'�'�%�%�$�(�,�2�+�0�-�;�1�+�9�*�+�+�(�&�+�!�(�(�1�%�!�"�#�)�6�/�)�7�6�4�(�+�.�*�"�'�+�4�3�7��*�,�%�B��*�/�<����2�;�'�'�(�+�(�+�.�2�*�2��3�'�)�5�*�*� �#�!�'�/�&�*��/�,�2�-�;�&�"�1�/�'�+�+�-�)�2�*�'�)�#�"�7�6�6�#�'�3�#�'�+�+�3��-�'�1�+�:�3�6�1�4�>�+�,�1�-�0�!�&�,�/�,��)�;�#�2�9�2�5�0�-�-�/�7�%�;�(�+�.�'�,�&��*�*�,�(�*�2�'��'�'�+�%�-�*�'�+��&�0�'�/�%�'�3�.�2�(�&�$�"��0�"�-�3�.�3�6�6�5�*�!�-�(�4�+�/�(�8�(�'�5�'�8�,�.�4�2�)�(�+�)�(�,�7�)�*��*�/�-�*�)�2�*�+�3�'�/�5�(�#�2�,�*�'�0�5�.�!�-�!�)�9�'� �*�-�1�7�3�5�5�.�+�7�*�0�7�3�,�*�)�+�0�1��5�!�/�'�7�6�'�'�)�'�+�6�2�1�'�(�!�2�$�+�2�+�*�8�Ԁրր݀ӀӀۀـڀɀՀԀрՀـ؀׀ӀՀԀ׀ӀՀԁ)�<�'�)�/�0�.�.�(�-�2�5�-�,�*�%�+�(�&��(�'�.�4�.�,�$�*��1� �<�.�6�,�!�&�4�%�%�(�1�(�/�4�*�&�+�+�3�%�"�#� �,�%�8�3�#�:�2�)�$�*�3�!�1�-�2�1�,�/�,�'�-�/�(�>�!�0�0�3�'�5�/�-�1�(�,�'�%�,�6��-�-�#�(��)�'�$�/�&�,�/�*�'�*�&�/�5�+� �*�0�4�.�&�#�:�!�"�-�%��0�/�1��*�"�%�2�(�,�'�.�<�*�(�4�&�/��&�2�.�(�*�*�3�'�$�1�-�-�2�%�'�&�%�+�<�5�-�&�'�/�/��(�/�-�2�-�3�6�%�$�+�(�4�-�,�)��-�0�'�%�#�2�.�%��2�2�2�/�0�3�(�*�+�-�/�&�%�.�(�5�+�,�'�/�'�%�-�"�1�!�/�.��*�3�%�6�/�+�*�3�+�5�.�)�,�$�,�%�&�'�5�(�(�/�!�+�+��$�2�2�&�%�)�7�/�)�'� �/�+�0�%�'�&�"�(�/�!�-�'�(�1�1�)�,�)�.�8�'�.�/�(�-�%�/�#�,�&�6�'�/�+�$�5�1�(�-�,�)�(�5�,�1�/�,�(�*�%�.�8�$�1�%��/�*�.�4�$�$�+�*�!��*�*�)�/��.�9�7� �(�.�(��!��$�%�2� �'�/�;�8�#�+�*�!�#�/�!�/�,�'�!�8�1�(�)�%�/�/�&�0�7�+�*�/�"�4�*�)�0�+�2�$�%�3�7�(�-�&�0�&�'�5�!�'�+�/�9�)�3�/��#�#�5�/�)�1�5� �.�:� �,�&�"��%�&�&�2�6�*�)�.�%��/�!�'�(�%��)�+�,�.�+�*�!�8� �2��/�+�-�$�/�)�+�-�/�3�,�-�'��.�%��'�(�/�3�4�/�&� �5�%�$�-�5�)�+�1�:�%�<�-�"�*�+�6�&�/�6�-�.�,�%�1�%�0�5�1�/��(�1�-�*�&�/�+�9�%�(�'�4�/�׀׀ԀՀـ׀ՀӀԀƀր׀ۀӀـԀ؀ҀҀڀހրـׁ:�*�.�0�'�$�6�'�0�6� �*�5�)�.�.�4� �1�5�'��'�0�'�)�0�-�-�1�)�"�'�'� �%�1�/�1�*�1�-�)�.�0�-�,�"� �1�)�2�/�+�$�/�,�1�!�&�(��6�)�(�%�+��.�+��-�(�-�8�0�7�,�3�7��!�5�+�2�#�0�'�*�2�4�+� �2�#�+�.�-�0�&�&�+�2�*�,�&�,�-�)�0�!�%�%�(�3�*��+�)�)�3�,�&�-�-�)�0�+�+�*�6�*�/�;�9�&�*�/�*� �(�1�5�2�(�,�+�0�)�&�-�*�4�;�/�9�.�(�0�,�=�.�0�)�6�*�(�$�+�6�5�2��,�2�-�(�0�'�*�,�'�1� �)�!�6�.�'�=� �+�4�#�1�&�#�(�'�$�+�2�*�-�/�%�-�6�!�/�6�:�2�(�3�@�'�>�,�*�&�,�0�3�3�!�5�/�8�0�'�'�&�+�,��0�'�*�1�)�4�)�&�-�4�*�6�4�$�.�.�+�0��+�$�.�)�1�/�1�!�#��%�+�5�'�*�0� �0�1�'�/�.�/�+�*�)�&�7�(�2�'�)�.�(�4�)�0�.�2�.�;��#�+�5�%�A�<�<�'�.�.�1�/�'�)�)�*�1�"�#�*�F��3�(�/�0�,�6�)�4�,�%�-�2�.�%�(�*�%�6��/�'�#�+�(�(��$�&��0�-�%�+�8�1�,�(�$�*�$�)�*�/�'�"�#�1�&�-�'�&�)�"�*�/�-�7�)�2�5�$�*��(�'�*�.�/�%�$�(�/��8�/�(�2�.�+�)�!�2�2�0�.�1�2�#�'�0�3�"�)�/�+�%�(�*�(�0�-�"�%�"�:�"�+�-�1�#�3�)�.�1�/�*�"�+��(�(�.�/�/� �*�(� �)�1�/�/�;�3�3�'�1�3�0�6�.�+�.�9�.�.�2�$�1�'�*�+�.�*�(�5��-��1�'�:�-�*�,�&�8�>�7�.�7�.�2�$�2�(�(�(�1�)�.�-�2�(�/�1�)��'�0�-�*�(�ڀۀ׀ӀՀՀՀր׀ǀրπ؀Ԁ׀ՀӀӀ؀Ѐ׀Ҁـҁ"�,�4�.�*�#�8�-�#�$�1�3�,�'�9�1�&�1�/�1�*��(�.�%�)�/�-�'�(�(�2�(�2�4�*�.�#�,�0�9�8�/�+�*�4�&� ��(�+��5�(�'��)�$�-�5�/�(�7�1�/�)�+�/�%�(�(�#�2�)�*�3�2�1�2��/�2�+��0�+�'�-�$�.�.�*�&�&�#�/�#�(�/�,�2�!�+��<�$�+�2�(�)�0�+�(�%�/�2�.�'�0�%�4�,�3�2�0�,�(� �3�+�!�0�3�.�*�2�<�'�0�*��-�4�2�/�'�$�/�(�4�/�'�5�%��$��(�.�&�)�1�1�2�-�3�5� �2�+�4�*�:�3�=�4��>�#�$�'�)�-�+�(��(�+�%�)�,�/�#�$�/�$��#�.�2�5��:�0�5�.�0�#�-�9�)�1�2�6�$��/�(�6�*�(�*�-�#�(�1�.�,�7�3�)�#�6��1�+�4�%��3�+�1�<�9�"�7�(�#�%�-�&�&�1�%�&�&�3�.�%�0�4�2�;�)�2�'�(�/�)�*�4�9�!�#�(��2�*�3�/�1�.�(�.�"�*�(�,�1�+��"�9�,�+��+�*�/�'�,�4�!�3�0�2�-�/�)�1�-�.�(�+�1�1�.�*�+�#�9�)�*� �)�/�*�3�%� �.�+�4�/�+�,�-�"�:�)�4�.�*�8�0�(�(�3�+�+�/� �,�5�)�!�%�*�.�!��(�-�)�4�'�*�.�'�/�+�,�$�,�)�3�1�)�)�1�� �+�3�+�+�1�*�*���(�0�!�&�&�(�*� �&�5�-�1�&�*�'�1�+��$�,�&�$�3�,�$�)�1�+�&�#�(�#�&�0�3�/�/�)�0�1�:�(�1�8�-�)�9�+�/�(��)�)�+�+�%�(�%�&�*�+�)�.��4�)�-�"�,�3�/�'�6�#�1�4�<�<�6�$�&�7�+�/�*�+�#�4�A�9�+�-�"�1�-���3�'�&�/�,�-�*�(�/�%�/�?�2�-�0�E�%�0�6�+�+�0�'�&�ۀـԀۀӀӀ؀րԀŀՀԀـԀӀ׀Ӏ؀ـހրՀр؁.�)�6�8�'�,�,�7�3�(�6�-��,�(�9�)�4�0�2�+�1�&�+�-�)�/�(�#�-�+�)�'�*�-�*�"��,�,�0�1�3�(�8�&�5�,�)�9�)�8�(�$��'�2�!�3�.�'�/�&�*�-�'�%�#�3�,�*�3�'�#�5�*�,��$�/�+�+�-�(�4�-�3�-�%�$�)�6�2�)�+�0�+�.�0�"�6�+�=�,�*�0�/�%��%�*��'�3�2�.�/�0�,�)�!�7�-�(�6�"�!�,�(�0�1�$�.�#�+�/�(�$�'�,�,�0�-�-�7��6�"�0��.�3�/�)�-�6�/�.�.�%�,�5�%�2�'�&�.�'�-�&�,�$�'�!�0�2� �� �*�/�)��)�<��,�$�)�#��*�'�,�/�%�+�/�0�'�-�/�0�,�%�7�'�,�3�-�3� �'�,� �)�*�2�$�%�/�'�'�-�)�/�)�,�)�1�%�8��)�)�)�(�2�/�#�!�'�*�)�� ��#�)�5�*�.�)�'�3�2�1�-�1�$�+�5� �-�-��(�2�)� �8�+�&� �'� �%�2�.�+�"�$� �6� �%�+�%�9�0�+�#�-�&�*�$�-�0�%�-�+�*�)�@�/�.�9�'�-�*�-�(�'�-��/�9�%�'��5�-�*�*�%�(�4�+�-�*�.�/�@�/�,�(�+�4�0�/�/��(�3� �7�.�)�2�+�-�.�0�(�9�:�2�/�B�0�+�*��0�$�6�/�7�/�*�5�+�#�%�0�3��1��!�,�8�2�-�(�4�-��6�1�-�/�%�,�*�&�6�2�)�:�-�!�7�2�9�(�;�0�8��+�1�#�%�)�(�*�2�(�/�'�2�6�2�7�&�!�&�;�,��(�4�<�#�"�2�%�-�+�1�,�/�1�1�'��!�3�)�7� �4�'�3�,�)�/�(�)�0�'�'�(�!�'�;�)�1�9�'�'�'�%�-� �,�$�3�%�&�&�1�.�5�'�1�4�<�*�'�.�3�+�7�;�+�,�,�'�9�5�-�0�/�)�'�7�,�%�C�/�ۀـԀ׀ՀԀ׀րՀǀڀҀҀԀ؀րۀ׀Ӏ؀ԀـՀہ"�"�(�,�-�)�/�$�'�3�)�/�-�#�.�-�%�-�1�3�$�5�$�2�7�5�(�0�'�-�/�*�)�<�/�=�-�'�3�&�/�.�5� �5�'�0� �.�/�!�1�4�+�/�+�"�(�4�4�(�'�.�3�0�(�)�-�/�/�#��-�+�,�$�*�*�3�.�.�%�/�%�)�.��9�'��#�-�"�)��!�5�-�5�,�#�&�&�*�-�2�,�(�-�/�#�9�5�)�*�.�-�*�+�0�,�-�2�/�4�1� �'�.�'� �/�/�9�0�#�*�!�2�"�-�&�/�)�)�,�,�.�+�0�/�5�/�7�(�.�,�<�!�'�0�3�5�:��'�'�'�*�)�4�1�.�-�.�4�5�,�3�.�8�1�4�+�5�3�%�*�)�,�,�3�=�*�+�0�(�4�4�"�-�)�4�0�3�$�/�'�"�$�6��+�5�(�1�3�&��/�+�&�3�-��#�1��+�6�3� �&�+�3�%�)�*�!�%�2�-�,��)�,�)�/�4�%�9�)�1�&�$�1�4�)�*�'�5�+�.�1�&�/�*�5�/�+�1�1�$�/�!�$�-�/�1�-�&�.�)�0�)�#�!�/�5�3�3�3�-�-�"�%�0�.�<�.�-�!�*��&�5�'�7�'��%�0�3�+�.�7�,�*�1�)�/��&�7�/�.�,�2�$�'�7�*� �.�0�0�-�+�+�6��!�1�+�$�#� �4�,�#�/�+�7�-�3�'�$�0�*�<�%��1�)�0��+�*�0�'�$�7�8� ��6�4�:�'�,�4�+�6�)�$�8�)�$�/�(�2�/�-�&�-�&�,�-�4�,�'�3�%�.�#�+�(�-�*�(�+�)�%�/�-�/�+�1�6�)�&�(�*��(�.�$�)�'�*�#��-�7�)�.�0��<�$�,� �5�0��*�0�3���3�5�#�/�3�,�,�*�2�&�$��#�+� �3�)�-�#�)��2�3�3�2�1�,�-��(�3�/�7��$��5�.�/�.�#�4�"�/�/�-�#�1�7�1�-�.�5�"�(�+�'�1�'��6�7�׀؀րԀ׀؀ۀրӀ��րԀӀՀԀ׀Ҁ׀ԀԀ׀׀ڀׁ7�1�-�>�2�3�,�,�7�2�1�5�'�'�@�&�/�3�,�-�5�-�:�)�-�(�(�/�"�3�3�(�%�8�2�6�*�/�!�.�1�*� �1�1�!� ��7�0�0�'�)�-�-�>�2�$��!�'� �0�%�#�(�&�-�'�,��.�2�.�$�&�/� �-�(�&�%�5�%�"�)�.�5�)�4�#�)�-�,�%�/�%�$�(�0�+�9�5�/�$�-�!�-�2�-�+�-�)�%�6� �.�*�*�3�'�,�3�;�,�9�9�*�&�%��)�0�(�+�%�!��4��+�%� �,�.�0�'�&�!�.�$�-�'�'�)�+�-� �.�+�!�6�0�3�(�0�3�*�4�$�0�,�&�)� �,�-�,�-�$�<�(�<�/�)�9�;�)�%�<�3�.�!�$�'�/�-�4�*�"�+�'�;�$�2� �+��-�,�-�+�-�1�.�&�(��+�-�*�)�/��-�.�.�/�"�5�&�/�6�'�&�1�,�#�1�/�)�%��'� �&�/�/��%�.�$�/�0�#�*�4��-�/�7�%�&�-�0�&�!�%�8�6�,�8�.��.�0�5�*�.�9�%�'�*�.�7�;�/�#�-�'�+�#�/�"�+�5��$�/�%�8�'�2�'�/� �*�.�1�,�-�*�,�1�)�,�'�8�*� �,�+�,�3�+�/�*�)�)�8�-�-�6�9�6�#�*�+�#�&�$��8�.��+�7�&�,�3�#�4�5�6�)�:�&�1�'�5�0�)�*�)�(��#�*�$�$� �!�"�1�/�*�4�0�*�1�$�%�1�!�/�#�$�$�5�$��%�$�&�*���"�5� �1�7�2�&�)�+�/��,�/�7�#�.�4�1�/�3�=�+�+�'�,�)�&�'�)�.�(�#�,�.�0�(�&�-�&�,�2�5�2�3�,�&�/�2�*�'�%�,�,�0�(� �0�)�;�+�3�*�6�2�:�$�.�.�-�'�,�$�!�'�-�4�/�2�4�&�,�$�$�A�/�-�'�'�4�)�-�.�+�(�(� �4�2�/�.�*�-�7�.�-�$�.�$�2�,�"��2�3�:�ڀҀԀӀр؀׀ڀՀĀҀր؀Ӏ݀ՀԀրՀ؀ڀ׀Ҁׁ%�'�3� � �(�4�*�0�1�7�%�7�)�4�*��4��'�2�'�"�/�1�-�F�/�.�.�1�)�%�)�(�+�/�5�1�1�)�$�&�.�*�(�'�)�+�5�A�$�0�+�(�$�/�-�#�#�"�"�-�"�!�4�-�4�)���-�%�)�.�&� �&�)�)�-�#� �+�8�-�/�+�#�.�)�(�.�;�,�&�&�+�.�&�2�#�>�3�/�)�)�-�%�(�3�&��(�'� �0�,�2�$�(�%�8�*��+�%�#�(�:�)�/��,�?�&�*��"�%�%�*�-�1�1�$� �%�5��%�"�'�6�&�$�?�,��$�#�,�5�5�)�+�8�0�!�7�,�1�"�0�4�,�0��+�6�+�'�*�/�%�-�)�!�!�0�'�7�,�3�*�&�/�!�4�(�*�!�0�5�0�$�8�7�$�(�,�$�*�1�%�%�+�'�/�/�)�-�*�$�>�)�,��)�5�/�-�1�/�-�'�+�5�%� �-�!�-��/�/�1� �(�-�+�;�(��2�/�(�1�*�3�/�'�(�0�:�*�-�(�-�0�+�0�)�.�"�2�1�/�<���-�(�0��&�)�)�'�+�/�+�%�!�*�.�2�%�&�"�)�)� �2�1�)�&�1� ��-�$��7�-�(�1�0�)�$�-�&�,�#�)� �(�+�3�&�2�*�&�*�*��.�8�9�*�<�1�*�%�,�1�.�'�-�-�/�/�*�-�'�0�'�)�0�/�)�;�/��*�7�)�1�+�'�$�/�&�;�'�7��3�#�/�*�%�-���+�"�$�*�&�-�%�(�)�+�9�.�'�0�=�+��6�)�)�+�2�3�"�-�2�!�#�=�(�/�(�(�2�.��$�+�/�#��5�%�"�'�)�'�#�%�.�/�/�6�3�#�&�.�$�)�4�0�<�(�8�*�/�@�.�-�"�.�/�'�&�-�+�:�/�)�/�#�/�$�0�1�"�(�-�-�*�,�.�)�'�+�.�(�6�+�2�4�/�4�+�7�#�1�3�'�:�*�&��-�/�2�2�/�+��2�%��)�-�#�%�׀р׀Ԁـ׀ԀЀр��ӀՀԀـրۀҀҀӀـӀ׀Ҁҁ?�(�<�1�5�"�+�6�2�)�.�'�&�.�$�&�(�8�+�6�%�-�/�"�/�'�*�*�'�5�,�'�8�,�)�,�*�)�,��3��7�(�1�*�)�(�)�,�-�+�5�� �+�2�%�*�*�,�*�3�-�5�/��%�,�3�5�+�'�)�4�%�(�4�'�1�&�*�3�/��,�5�1�8�'�6�3�0�/�(�.�2��)�7�#�.�$�+�1�/�/�'�)�,�+�*�2�.��"�3�3�2�+�-�+�)�*�(�9��)�/�(��%�0�"�+�9�.�"�#�$�0�/�(�'�$�,�5�+�1�-�4�0�%�&�,��*�4�/�%�2�*�)�8�,�+�4�5�1�.�.�1�-�$��+�.�0�-�/�2�)� �1�2��;�&�&��&�'�7�&�1�(�7�1�/�4�/�)�"�3�1�/�&�%�#�/��'�+�%�+�(�1�)�$�*�)�:�*� �$�)�)�;�0�#�)�4�1�%�,�.�5�*�1�.��%�0�(�"�'�6�'�2�"�-�"�5�$�8�&�0�+�#�'�5�*�5�)�%�*�2�(�9�5�/��/�3�2�(�(�1�)�#�+�8�1�>�$�+�/�)�/�0�/�#�/�(�*�8��.�.�2�,�0��)�5�-�)�!�-�;�(�%�%�9�!�6�1�.�)�2��$�.�%�-��)�*�3�+�-�4�%�4�$�-��0�+�4�0�-��+�+�4�$�)�-�'�)�1�"�%�%�-�0�$�/�,�+��5�&�3�,�+�%�(�,�<�,�&�,�)�*�#�$�(�#�+�/�=�)�*�,�(�5�!�)�-�7�)�2�!�9�+�1�/�-�9�$�&�4�,�/�#�*�/�=� �-�5�-�2�'�7�.� �*�3�/�#�"�(�0�)�(���*�"�0�(�&�7�0�2�+�%�(�*�"�/�-�(�.�-�/�+�+�-�.�2�'�4�/�)��%�'�-�-�.�3�.�7� �(�(�0�-� �+�/�'��/�&�&�/�3�*�.�&�/�+�)�-� �-�$�(�9�)�1�.�,�)�-�3�0�,�6�,�3�5�2�.�+�2�-�܀؀؀րրـҀЀ؀ÀԀրҀ׀׀ڀԀՀӀԀՀ܀րׁ#�:�)�5�'�&�#�.�*�7�2�*�1�� �+�&�7�0�/�=�'�3�*�6�0�'�'�$�.�'�+�2��-�"�8�.�"�(�(�.��-�7� �-�4��(�.��.�*�+�(�'�1�.�/�'�/�5�*��,�.� �/� �#�'�,�'�*�4�7�3�5�+�-�-�/�1�%��6�/�#�-�'�0�+�&�"�#�1�%�0�%�0�4�+�/�2�/�+�$��)�*�/�/�6�5�/�7�,�1��3�'�)�)�1�%�'�/�+�)�5�*�)��'��4��(�-�!�:�,�,� �7�1�$�2�1�,�*�4�+�%�%�+�:�)�/�+�2�&��+�#�4�1�2� �+�+�"�-�1�3�-�(�9�.�0�3�/�3�-�-�&�<�,�)�$�4�$�:�)�!�"�4�)�!�0��+�2�2�)��+�#�2�2�2�&�)�4�'�&�/�.�5�+��$� �'�+�!�#�&�"�"�2�'�&��2�*�.�,�*�3�B�'�/�%�)�2�)�)�)�4�,� �;�&�#�/�%�'�-�+�6�;�+�"�*�)�'�!�(� �$�+�#�0�)�.�2�1�!�3�5�#�)�.�'�-�,�5�+�6�)�.�-�"�#�&�,�$�/�1�8�3�*�$�/�6�4�=�+�!�4�%�0�0�)�'�-�1�-�'��3�4�,�-�*�)�$�'�)�)�5�&�-�+�/�,�'�1�8�&�3�/�#�*�3�(�/�(�/�(�+�.�%�'�(�%�+�:�&�4�4�(�/�-�/�5�*�"�3�/�5�3�%�%�)�/�3�2�&�9� �/�'�.�-�&���7�#�.�!�+�$�(�%�$�)�*�*��*�5��&�*�*�(�(�1�?�5�1�+�2��.�,�5�:�"�(�)�9�&�0�3�+�/�!�)�&��3�8�1�1�1�:�%�7�$�%�,�.�(�3�(�!�-�$�5�;�/�-�.�9�.�"�(�;�+�'�-��7�/�.�,�)����5�@�+��+�)�-�)�)�+�&�5�8�2�(�(�'�+�5�1�0�4�2��3�,�%��.�/�>�*�#�2�&�)�2�Հ؀׀ӀրՀ؀Հ׀ÀـӀӀڀـڀӀҀӀԀـӀր؁.�)�'�2�-�*�%�,�)�1�5�9�5�,�1�/� �#�:�-�)�%�.�1�<�3�0�6�*�.�/�4�)�%�+�/�1�1�5�/�2�9�-�-�'��+��*�*�3�.�$�/�*�/�-�6�+�*�(�7�0�*�2�+�*�(�2�1�0�(�%�;��.�;��#�1�0�*�0�.�"�@�#�2�.�+�/�+�'�5�%�3�,�!�4�"�+�(�7�+�&�$�.�)�)�9�#�+�)�)�)�*�#�*��(�%�/�#� �*�1�%�+�+�'�0�$�2�2�*�%�,�*�,�(� �#�1�!�!�3�(��+�.�,�+�C�$�&�4�,��+�0�'�5�*�1�5�+�5�/�'�1�0�&�2�.�.�-�"�$�3�3�*�*�3�1�(�!�7�!�!��'�;�%�4�8�+�)�/��0�+�/��%� �&�-�+�1�#�!�)�0� �9�'�4�5�'�7�&�"�/�3�5�.�)�/�&�6�(�0�&�0�&�2�&�2� �1�1�*��2��'�1�&�.�8�'�/�4�-�(�%�.�#��,�%�,�&�0�-�-�,�0��3�4�1�.�)�'�4�+�.�0�;�'�2�/�/�*�5�-�&�/�7�3�(�%�$��1�'��)�#�+�-�3�2�*�#�6�-�*�'�)�3�+� �.�,�-�.�0�0�$�4�#�*�(�.��'�3�@�5�)�#�2�+�.�4�5�"�0�/�6�5�+�*�:�*�(�0�8�=�+�#�(�)�6�&��-�-�2�0�"�*�#�3�!�*��.�9��&�%�1�*�4��(�2�*�4�*�%�*�&�2�-�5�)��)��6�5��'�/�2��.�:�9�0�0�3�&�$�"�,�-�&�+�<�,�#�+�,�&�#�1�+�0�;�,�!�#�"�"�"�.�&�(�%�/�6�,��-�3�+�&�#�&�-��$�0�+�/�+�+�)�%�2�'�&�/�1�#�8�0�'�2�'�=�&�+�7�2�+�4�7�0�'�&�5�:�,�+�,�'�/�.�*�,�+�4�7�3�0�.�$�-�0�2�$�2�+�/�+� �/�%�+�%�2�)�8�*�/�*�ۀӀҀـــ׀؀ՀĀ׀؀ۀ׀؀܀ՀӀۀۀրրրс/�)�,��/�*�+�0�'�/�2�$�.��2�'�-�9�1�'�*�'�/�-�5�8�*�%�$�-�"�3�!�2�,�1�*�%�4�)�%�3�!�"�(�(�7�4�$�8�)�"�(�4�/�1�'�5�1�-�/��*�*�0�&�1�(�#�)�0�-�:�.�3�1�2��.� �-�#�&�*�&�*�+�-�&�5�*��'�'�)�"�3�.�%�+�6�/� �&�&�>�4�"�:�+�(� �'�.�+�,�1�/�0�9�0�5�/�#�/�,�0�$�*�;�?�2�-��4�'�*�6�1�5�/�#�5�#�$�)�/�$�(��/�$�0�#�0�)�(�-�/�(��&�(��(�)��(�&�*�5�/�&�+�/�"�3�%�.�=�4�2��%�5�$�(�8�+�:�"�-�,�'�/�#�1�2�'�+�8�%��"�2�6�'�(�'�1�#�&�3�1�&�$�-��*�*�,�)�*�0�7�#�4�2�'�.�)�=�'�/�;�8�)��7�,�)�-�#�,�(�"�'�@�2�4�%�)�*�4�"�'�0�!�.�%�/�0�6�,�%�-�3�(�9�*�)�%�,�/��,�5�0�2�6��(�)�5��4�"�,�&�3�*�'�%�1�:�$��3�+�(�1��+�.�(�.�*�2�-�1�.�6�3�0�$�&�$�-�1�*�0� �.�$�$�,�!�6��'� �'�"�%�(�2�-�'�'�&�.�1�1�)�*�'�4�+�'�%�!�(�/�0�%�+�+�#�/�/�*�)� �5�,�"�3�#�,�&�/�?�+�+�:�8�:�/�(�(�'�$�"�0�/�.�7�(�*��/�.�<�+�#�7� �"�5�9�/�*�2�9�6�&�0�&��(�*�&�:��/�)��+�/�"�+�1�;�-� �%�5�/�-� �)�*�0�.�-�0�4�(�1�+�#�-�1�4� �*�.�/�%�%�3�+�$�,�4�-�'�2�-�3�,�'�6�+�1�$�7�,�+�+�-�+�=�.�6�3�2�+�-�3�+��5�4�/�2�3�5�,�3�'�'�/�7��6�3�2�3�+�,�3�%�2�)�B�'�-�2�&�&�-�Հ׀ـۀրրـۀրÀЀՀ܀Հրր܀р׀ڀ׀ӀӀс$�+�%�*�)�2�<�6�(�)�*�*�-�&�4�&��,�0�"�0�G�-�(�/�2�4�5�+�(�1��2�4�3�,�.�8�/�%�)�*�/�-�$�2�0�,�'�7�%�/�%�'�+�&�2�9�#�2�%�.�7�+�4�3�,�7�$�7�/�.�/�'�,�#�(�-�)�)�)�.�4�,�+�4�-�-�>�*�6�(�:�1�8�(�$�1��+�,�%�(�+�"�-�.�#�.�*�(�$�=�'�/�)�3�!�#�1�E�)�2�"�$�2�7�=�%� �#�)�)�/�#�B�"�)�+�'��,�'�%�!�0�5��&�-�*�"�.�'�5�#�%�1�)�0�#�.�=�.�%�3�/�1�)�)�)�!�&�3�*�$�2�/�'�&�.�:�-�/�$�6�/�*�0�1�1�-�0�&�-�+�,�3�$�'�'�0�'�)�/�(�8�,�3�+�#�,�!�"�7�4�(�)�(� �%�7��$�+�-�$�#�(�*� �-�*�&�;��2�,�,�+�-�/�-�"�-�"�0�&�&�3��)�'�1�;��#�3�:�3�*�.�2�+�#��,�#�$�+�%�,�+���.�4�/�6�%�&�'�E�(�/�-�#�4�#�-�$�9�$�3�'�/�,�:�/�,�)�"�?�1�,�,�5�#�,�"�&�*�$�(�)��*�!�,�,�(�0�2�'�8�.�'�$�-�'�'�2�#�"�'�1�"�,�,�3�&�4�.�+�(�#�1�/�)�&�*�)�.�)� �*�!�)�#��1�/�8�)�*�"�3�+�/��0�0�*�"�0�'�;�1�.�+�'�"�/�,�,�"�$�-�2�*�"�'�"�.�)�%�&�(�*�&�5�!�:�+�)�.�,�#�&�.�6�$�*�-�4�)�.�'�)�+�0�%�(�,�*�9�/��+��4�-�)�(�-�*�"�/��%�)�,�4�0�(�%�1�)�1�$�*�4�.�#�.�-�)�)�(�+�+�-�5�<�2�-�<���2�9�0�*�0�%�%�0�,�)�+�3�.�&�(�%�2�/�?�C�-�1�-�:�.�+�;��7�!�.�@�<�3�,�+�<��#�:�,�1�8�1�؀Ԁ׀ҀҀ׀ҀՀҀĀӀڀ܀؀Ԁ׀ՀրՀ׀؀րۀՁ1�-�*�#�1�0�&�)�/�5�/�3�5�7�/�3�'�,�%�8�)�3�%�5�3�.�)�%�(�'�'�4�&�$�)�+�/�4�#�&�8�'�2��/�3�.�+�2�$�5�#�2�1�*�3�%�3�*�&�/�+�.�'�-�'�'�%�5�'�1�>�5�'�&�9�)�'�;�,�2�(�0�(�8�1�/�)�%�2�9�(�+�+�4�#�(�.�4�!�*�.�'�(�*�1�)�)�#�5�&�-�&�(�(�4�"�/�*�*�3�8�-�0�9�+�&�,�(�*��/�+�$�(�$�/�+�+�)�3�%��0�4�'�0�$�7�3��+�+�$��-�(�-�.�%�#�7�6�/�+�*�!�1�-�3�/�$�(�%�*�2�)�,�,�-�,�1�(�)�1�.�$�.�(�2�.�#�+�1�/�2�(�%�.��.�(�,�/�.�+�(�6�.�0�3�#�3�'�)�4�8�*�$�+�$�"�(�5�1�*�+�%�1�&�0�.�"�?�&�'�!�&�0�$��3�,�,�&�!�*�&�2�'�+�)�3�0�!�<�#�,�.�3�)�(�"�)�/�,�'�$�(��=�+�!�,�:�,�'�3�7�.�1�6�*�9�.�-�*���-�2�*���'�"�5�'�,�)�6�&� �!�(�$�)�*�%�&�4�/�+�0�/�.�+�*�/�0�*�1�#�?�/�9�/�/�6�-�-�/�.� �'�/�6�!�'�4�$�,�'�1�#�3�0�9�(�+�1�1�.�+�-��3�.�.�0�/�5�'�5�3�1�4�6�-�)�5�.�#�-�+�&�0�!�3�.�+�3�-�,�(�'�0�(�8�/�7�4��-�2�9�'�)�1�/�+�2�3�#�$�%�/�-�1�6�)�(�+�-�.�+�-�/�*�5�+�)�*�2�+�7�+�*�.�2�/�+�$�3�-�/�$�+�*�&�(�+�$�+�"�"�+�,�'�6�(��!�1�-�0�$��)�0�'�#�-�6�7�)�:��:�-�.�/�5�7�4�7�*�3�*�'�%�"�3�-�$�*�%�6�-�+�+�)�(�<�)�!�4�/�/�3�5�/�"�&�/�+��%�$�.�6�6�ـҀ׀ۀҀՀހ׀؀ŀր߀ڀ؀؀ՀրԀҀҀր؀р݁&�+�+�1�/�'�2�!�+�9�%�'�3�2�4�+�F�2�-�*�-�:�2�&�&�7�;�$�3�/�-�&�2�,�/�)�,�"�1�"�>�-�%�)�3� �!�%��5�&�9�-�3�'�%�(�9�0�0�1�!�.�0�&�-�/�'�.�2�'�/�3�+�1�(�.�-�E�/�/�1�)��%�'�3��3�-�*�&��/�1�.�&�,�E�,�0�&�3�1�/�+�5�+�'�3�.�7��:�:�.�+�-�5�7�2�-�)�&�5�&�-�-��4�$�/�#�!�#�/�*�3�*�&�.�/�,�&�1�.�+�*�$�%�-�+�/�<�'� �7�$�-�(�%�'�&�)�#�4�#�@�*��*� ��1�(�2�,�-�:�)�)�2�4�$�5�#�,�0�%�"�"�5�5�%�3�,�&�2�1�/�3�0�1�$�.�/�)�/�2�$�0�.�)�0�2�/�6�-�1�(�,�)�#�"�!�/�+��-�1�&�$�.�*�#�1�/�*�#�)�3�4�3�/�'�6�-�#�7�'�:�0�$�.�2�4�#�'�%�,�;�1�&�&�.�'�+�*�$�.�+�-�5��%�-�4�'�*�.�(�*�(�)�!�3�.�2�3�&�)��0�$�0�3�,�,�2�5�-�.�*�6�-�)�2�)�(�,�,�+�,�6�%�#�'�.�(�%�+�$�,�2�1�,�#�*�2�7�-�/�!�+�!�'��.�.�2��/�,�"�.�<�*�%�)�)�'�,�/�.�>�5�'�!� �*�-�1�2�3�0�%�4�,�,�:�0�5�+�=��(�5�/�0�(�&�3�!�3�)�,�%�0�%��0� �$�2�+�)�&�&�/�%��<�.�,�*�4��'�%�'�,�/�,�-� �-�.�(�%�0�;�#�.�3�*�*�(�,�(�7�#�:�.�.�1�0�(�'�0�-�-�,�-�)� �4�0�+�&��)�/�7�+�"�+�&�-�,�:�3�3�,�.�6�+�)�"�"�7�2�0�5�$�&�+�&�(�)�5�-�6�!�0�8�+�1�+�1� �.�%�4�5�$�!�5�&�/�$�%�)�)�%�/�8�%�+�2�*�7�/�׀Ԁ؀Ӏـր׀΀ԀȀррԀՀـՀԀրՀր׀ՀՀӁ/�!�(�)�&�5�/�4�/�9�!�'�+�*�%�%�,�2�+�&�%�'�'�4�1�:�(�,�-�%�/�8�7�3�8�4�(�/�+�/�2�:�5�3�1�0�&�2��6�#�*�*�#�8�+�7�-�-�%�,�/�-�%�0�1�-�#�+�0�-�!�1�1�)�)�-�*�(�3�+�/�8�3�3�.�)�.�#�)�$��$�5�0�/�'�1�/�:�$�'�!�-�0�&�<�8�)�3�/�2�3�*�#�$�/�&�"�#�/�2�)��&�!�4�+�4�-�0�'� �"�+�"�+�#�2�/�1�5�.�1�-�)�&�"�*�2�.�,�,�(�*�+�.� �,�&�7�-��,�1�4�!��#�-�*�3�.�*�%�-�6�-�$�)� �5�*�)�.�,�$�%�/�&�0�'�4�,�%�/�#�(�2��!�%�*�%�8�1�)�'�<��*��'�,�/�2�7��%�/�2�(�(�*��!�9�+�*�6��'�(�*�/�@�5�)�&�!�*�%�/�,�,�<�5�(�"�2�*�1�'�%�0�"�5�&�1�*�*�-�*�8�$�1�*�0�+�'�"�+�-�-�1�1�-�'�6�'�5�7�)�&�-�$�&��0�#�;�3�.�.�/�-�'�*�0�)��+�*�<�+�1�5�,�5�/�%�%�)�,�#�8�;�*�0�!�,�-�*�%�/�1�9�$�'�/�"�$�0�C�.�%�'�1�/�$�+�2�4�.�$�/�)��&�+�0�4�(�-�)�,�4�+�5�-�#�-�*�'�-�9�-�.�*��(�*�)�5�+�#�+�2��)�3�+�(�3�+�#�"�(�4�:�0�4�&�2�/�"�&�2�+�*�+��+�0�(�%�(� �3� �#�!�/�/�5�.�#�'�/�4�#�6�6�4�'�/�7�,�+�'�1�'�.�1�'�+�1�8�)�%�+�0�%� �"�.�5�&�1�%�9�?�)�4�'�3�2�)�%�#�8�1�7�3�2� �'�#�%�!�'�0�2�#�(�4�(�8�3�2�0�1�+�3�.�.�*�9�)�.�(�,�,�)�+�5�.�$�*�#�/�#�1�5�3�3�0�7�'�,�:�2�ԀـӀրҀՀՀӀր��ԀҀր؀׀ӀۀրـԀԀ׀ӀՁ+�'�)�.�(�&�3�>�,�#�,�-��/�4�4�0�(�+�,�.�(�-�.�0�0�6�/�1�8�)�,�!�1�(�0�/�-�-�#�5�%�/�3�/�,�1�0�!�+�*�0�/�&�2�'�-�+�8�'�*�!�,�/�0�/�*�1�*�/�1�%�2�-�'�0�%�0�3�%�7�*�,�/�/�9�(�&�*�� �*�7��'�/�%�!�.�'�-�4�+�-��+�(�"�$�)�$��%�)�6�-�-�%�*�'�(�5�#�*�)�3�%�2�!�'�;�$�6�"�<�&�#�)�;�(�*��'�$�(�/�3�7��)�)�9�%��%�-�$�9�3�/�+�-�0�8�,�3�1�*��-�%�2�.�.��;�4��'�+�!�2�(�2�1�1�/�(�-��*�+� �)�.�-�-�0�4�/�0�6�5�,�%�0�)� �4�(�'�.�%�1�,�2�"�,�#�$�1��<�!�.�.�+�.�7�7�*�"�+�+�(�4�4�0�/�1�*�5�(�)�"�5��0�2�2�6�/�&�)�,�1�%�2�0�2�'�0�%�*�3�3�/�%�%�*�7�1�"�-�(�+�'��(�+�,�-�'�A�,�3�5�5� �-�(�*�)�$�3�1�+�4�'�4�4��-�.�/�&�1�#�)� �%�=�+�"��)�.�6�+�/�2�.�/�)�6�)�&�&�.�)�+�%�+�5�)�'�3�'�'�0�!�?�/�+�5�.�,�1�1�5�%�)�&�/�+�%�)� �*�$�6�+�'�*�)�%�1�%�#�7�+�A�,�+�0�&�+�6�+�5�*�*��%�/�$�,�"�)�%�,�2�0� �(�+�*�/�3�)�/�5�2��3�*�%��:�4�"�:�'�+�.�2��(�&�%�,�&�-�.�2�7�*�(�2�-�#�#�2�.�;�6��5�+�/�$�0�4�%�&�.��)�"�%�%�@�'�-�(�,�%�-�*�$�7�!�(�3�*�4�(�-�/�)�+�-�%�!�4�4�2�,�.�&�(�6�5�'�4�2�.�4�,�7�+�)��-�6��+�*�3�&�,�8�>�6�"�4�6�,�8�0�4�(�׀ـҀրӀր׀Հڀɀր׀׀Ҁ׀рπ׀ӀՀрۀրЁ,�*�0�,�4�/�0�5�-�.�/�/�1�6�%�4�$�"�4�*�'�2�(�<�4�3�$�"�/�,�"�3�1�*�5�*�%�;�/�)�0�1�*�(�*� �4�5�-�0�*�/�4�6�,�(�0�/�.�1�A�!�4�+�#�&�#�(�;�-�-�'�-�8�-�7�&�&�+�"�)�6�!�&�-�$�2�)�2�*�#�=�#�/�/�.�9�"�0�&�#��!�$�-�)�.�%�+�)�'�1�5�@�$�1��#�7�'�'�,�.�)�1�6� �&�2�$�/�*�4�4��&�,�'�.�+�.�-�3�+�$�8�6�/�9�/�4�'�-�3�,�.�,�#�3�,�-�3�+�4�,�+�#�,� �-�3�+�%�"�$�*��3�2�"�+�#��(�/� �-�'�!�*�$�$�0�/�&�.�F�.��*�&�!� �"�+�"���3� �*��$�,�#�8�&�,�*�(�,�5�2�8�$�/�(�(�.��/�)�'�*�!�)�,��!�<�7�'�(�4�0�.�4�9�)�2�1�+�'�&�+�0�0�3�0�4�.�(�-�2�!�1��'�'�-�1�-�6�3�2�.�-�9�0� �2�1�-�+�2�,�+�6�)�+�.�.�+��)�+�$�1��>�,� �.�"�#�2�.�2�)��$�)�(�*�>�%�+�-�(�.� �3�$�(��,�/�(�6�*�/�/��/�/�/�)�%�(�.�'�/��8�&�7�)�3�1�%�'��*�(��5�!�/�(�)�,�!�&�4�,�*�-�*�)�4�,�.��+�/�)�$�5��0�*�-�=�#�5�+�&�.�/�#�1�5�+�5�/�'� �/�4�8�6�*��8�'�*�)�0�*�+�;�)�)�+�1�+�9�6�/�/�%�&�0�(�3�7�-�+�7�.�0�'�*�'�%�'�1�(�'�=�9�&�$�+�0�+�#�;�3�2�-�%�*�2�$�.�'�&�7�)�"�%�9�%�)�*�8�/�"�0�3�-�&�9�(�+�(�)�4�)�0�/�0�,�*�,�,�(�1��=�7�/��*�,�%�'�.�*�7�1�/�3�%�,�=�0�7�/�+�6�Ҁր׀׀ـՀրրՀȀрӀԀրڀ؀ҀڀՀԀ׀ՀӀՁ0�*�%�+�%�3�5�%�1�.�(�#�,�)� �/�+�3�<�:�.�$�1�5�/�+�1�,�(�-�2�"�0�!�3�+�3� �"�8�.�!�6�)�$�'�.�-�/�'�!�-�'�&�.�+�*�)�)�4�"�/�2�.�(�&��*�-�,�)��2�/�%�(�=�%�3�,�2�(�-�.�!��'�-�.�!�&�.�(�.�!�/�-�,�:�-�-�8��3�%�/�(��(�#�*�/�/�)�1�*�.�.��+��&�+�1�0�+�.�-�+�0�"�(�'�+�+�8�+�+�2�;�*�(�-�0�4�)�(�2�-�+�*�#�5�!�1�#�-�2�*�/�%�7�+�6�6�)�-�/�%�%�3�.�%�'�.�2�1�5�,�2�#�*�&�#�5�+�;�3�'�(�*�6�+�:�)�?�3�:�5��3�4�$�"�#�+�#�-�#��.�+�-�0�"�:�1�5��,�"�4�,�=�;� �)�2�*�5�/��)�,�?�8�"�1�&�$�+�-�+�1�#�/�0�2�!�%�$�*�/�-�)�6�,�-�<�2�3�-�6�%�+��0�'�1�-�2�$�-�/�+�-�2�/�,�&�"�3�6��)�4�/�%�1�-�'�=�%�2�*�0�+�0�*�+�0�"�:�!�9�5�/�+�,� �*�2�(�+�5�1�,�%�.�4�1�1�)�.�/�)�,�(�/�<�"��2�7�!�!��:�2�*�)�,�$�%��/�'�6�5�-�/�+�.�$�,�3�*�+�%�,�2�0�-�7�$�+� �+�/�)�+�/�)�-�#�8�/�0�3�1�%�6�/�/�+�9�0�*�"�(�)�-�1��/�'�.�-�(�*�-�)�$�(�8�'�0�.�$�.�(�3�6�0��$���#�)�2�9�#� �1�$�8�A�7�/�.�/�7�+�.�/�-�%�.�1�+�(�*�.�-�<�$�;�'�6�)�*�3�!�+�)�)�4�#�.��)�.�-�-�,�*�+�#�2�'�6�0�2�%�2�/�6�2�3�:�/�'��1�*�)�6�2�+�"�1�*�#�4�6�/�2�4�3�'�+��%�#�5�3�0�8�3�-�3�ррҀ׀ڀـրπԀƀ׀ՀրـۀـڀڀـЀԀӀ؀ԁ)�)�1�'�/�-�2�#�/�9�.�;�/�9�'��&�-�/�0�(�,�%�.�0�#�2�'�$�-�'�4�-�,�&�+�1�+�%�#�3�'�,�.�&�-�:�*�-�'�*�$�*�,�%�+�-�6�/�7�6�,�!�-�-�,�)�-�$�$�*�6�7�$�4�0�-�*�+�)�0�5�)�+�6�1�7�2�,�,�8�4�%�0�$���#�2�0�3�&�)�#�!�%�&��9�1� ��+�%�+�&�*�.�&�+�.�$�:�&�3�!�(�.�+�%�"�0�$�-�+�-�"�"�/�'�.�,�+�&�1�%�(�1��3�)�#�&�0�4� �#�5�%�'�+�+�#�/�2��,�#�'��8�6�0�1�&�$�)�&�4�6�&��1�/�4�3�6�.�,�(�)�0�3�&�*�$�#�<�,�3�.�'�!�/�-�'�'�1�/�8�1�,�/�"�+�*�-�6�.�*�%�)�2�)�(�2�,�)�3�2�%�;�0�'�5�-�3�'��;�-�5�)�)�.�"�+�!��2��+�5�#�&�&� �+�)�1�4�+�)�*�-�"�'��%�%�)�'�.�/�.�*�!�1�!�%�#�0�%�*�9�&�/�$�2�%�4�%�4�)��$��0�1�2�*�/�+�%�2�+��3�,�*�=�1�!�1�$�(�4�.�'�/�%�4�2�1�-��-�5�)�0�/�'�.�(�.�*�,�-�2�-�-�)�!�/�6�@�/�$�'�2�*�"�'�*�0�.�2�1�.�3�'�/�2�+�%�;�4�/�0�2�&�(�*�+�G�%��/�'�(�)�6�1�%�3�8�.�4� �"�+�)�,�)�.�$�)�"�.�3�*�1�.�,�*�(�#�.�.�-�(�%�,�%�2�2�0�$�)�'�/�!�'�"�&�9�+�+�,��/�.�%�3�5�6�-�-�-�4�-�"�'�,�,�#�3�*�3�,�(�'�#�0�:�*�+�/�)�0�*�)�7�%�4�%�<�+�3�)�:�%�2�8��+�7�*�,�6�2�2�*�/�0�*�(�-�/�/�1�&�-�*�;�$�0�"� �.�2�4�.�#�(�-�,�)�)�8�-�)�ـ݀Ԁ΀р؀׀րՀɀրՀӀՀـ׀Ԁ׀ڀՀӀրӀԁ-�1�)�6�2�0�@�.�4�4�:�A�,�-�5�(�4�(�/�1�,�'�-�4�3�)�0�'�0�1�'�2�!�$��/�-�.�2�.�-�3�*�/�<�0�2�/�6�#�,�%�(�3�)�:�&�$�)�(�!�(�-�&�,�&�&�*�+�2�-�0�3�%�.�1�1��-�0�3�#�+�+�+�1�2�3�0�"�)�:�.�2�(�#�&�.�4�1�2�<�#�+�'�3�7�(�0�9�3�/�&�.�0�-�+�!�*�1�+�2�.�1�.�2�-�4�-�(�-�<�:�%��1�7�/�1�#�1�)�*�2�.�"�7�'�*�%�!�2�&�'�3�6�8�(�#�"�#�0�,�0�!�%�7�*�+�@�/�4�*�!�/�/�2�+�-�6�-�'�#�*�5�6�$�,�&�+�3��4�0�0�,�*�2�/�)�;�+�2�-�&�$�1�/�)�&�%�,��,�1�(�1�-�&�:�'�4�)�(�#�6�(�6�*�.�%�!�,�.�(��-�/�&�"�-�$� �$��-�$�.�,�3�/�2�1�1�:�$�.�-�/�+�0�,�&�-�*�/�"�(�+�0�)�.�7�$�'�-�7�)�"�/�!�5�1�/�'�3�"�/�5�-�,�'�'�,�%�-� �5�1�:�2�4�0�&�$�5�4�2�3��&�%�/�+�1�/� �+�'� �5�0�&�)�(�&�5�,�7�-�#�'�&��2�/�*�)�'�,�/�5�'�-�)�-�/�+�0��*��$�!�$�%�-��%�(�'�$�$�'�6�*�1�5�-�(�0�)�4�0�6�0�0��'�)�3�'�2�'�'�'�#� �+�$�6�-�.�-��%�7�)�'�'�4�-�*�&�'�*�,�1�,�,�%�/�%�/��+�!�8� �1�)�8�*�+�0�<�4�0�3�5�!�/�#�)�-�2�+�(�1�$�%�7�5�.�"�%�6�&�0��*�;�$�'�+�=�&�*�(�/�0�0�%�*�)�:�,�)�/�!�.�6�0�%��7�#�#�&��/�"�;�=�0�'�*�&�*�1�3�9�-�5�1�3�5�/�(�5�3�!�%�(�/�3�*�5�-�3�1�6�ـԀրـՀӀՀ؀ЀĀՀՀ؀Ҁ؀ҀҀ؀ۀ؀׀ҀҀׁ%�)�6�;�6�3�<�6�/�,�*�-�+�3�0�,�+�%�#�/�%�6�*�6�5�'�+�8�6�+�-�)�/�9�*�2�*�,�0�3�5�+�+�� ��!�/�*�(�2�)�#�%�-�/�/�)�$�)�$�*�<� �#�,�(�5�0� �+�0�9�+�(�,�,�,�.�+�1�(�>�:�=�*�0�%�3�&�/�)�%�4�.�;�+�/�"�*� �2�1�-�1�/�-�&�&�,�)�,�(�/�2�(�/�)�*�%� �4� �2��.�*�7�1�'�%�$�*�(�&�-�'�#�"�(�)�8� �)�#�%�(�0�-�.�3�5�"�(�)�/�*�*�)�!�4�*�.�0�(�"�;�#�*�*�+�/�&�!�+�7�(�+�1�%�3�'�*�.�1�,�)�!�1�)�-�&�+�,�&�0�%�2�%�'�0�-�'�8�(�%�.�,�)�+��"�,�%�$�,�'�*�%� �2�4�!�"�.�,�(�$�3�!�5�'�&�%�-�$�&�/�=�/��-�)�/�<�+�!�%�$�'�*�/�.�"�+�+�,��2�/�!�2�4�.�7�$�,�-�)�.�(�0�0�"�0�.�*�-�/�'�+�5�&�0�$�+�)�2�9�;�'�*�3�(�'�1�0�4�8�'�-�2�5�7�"�'�,�.�3�)�/�+�*�.�,�.�&�5��+�)�/�)�1�+�#� �*�0�*�,�&�.�,�!�+�.�$�0�4�1�:�,�0�"�5��1�.�)�*�*�"�'�#�$�7�-��;�0�)�4�2�'�%�'�3�.�/�4�2�*�*�.�)�'�$�2�7�,�3�%�,�*�)��+�!�+�)�+�3�3�;�>�,�2�,�3�2�0�1�*�(�-�)�)�(�-�'�'�9�7�&�,�/�3�%�*�4�)�+�+�*� �<�!�%�(�'�+�'�*��6�&�%�"�-�1�'�#�)�2�7�$�2�*�2�"�2�'�/�/�(�@�0�+�!�1�/��+�3� ��/�)�%�'��5�*�6�'��-�,�!�#�*�.�+�>�6�#�6�5�(�"�1�(�9�,�1�2�"�9�/�3�0�.�-�5�#�+�.�2�/��/�ՀӀ׀ԀـՀԀـրÀ؀ր׀׀Ӏ؀Ӏ׀ՀҀ܀ԀԀځ1�.�-�3�%�5�1�4�2�/�,�*�7�$�-�7�/�+�/�/�'�)�+�-�1�+�-�*��'�!�/�0�+�2�.�1�!�2�0�1�!�5�*�-�+�7�'�6�*�7�&�*�)�)�%�-�*�$�5�.�4�/�(�!�-� �+�#�-�6��(�-�+�.�%�+�!�(�2� �0�&� �4�-�+�/�1�&�(��.�-�*�0�7�(�-�-�)�4�0�#�(�&�7�7�!�,�.�#�0�/�$�)�1�+�,�)�$�%�8�4�+�"��%�!�%�,�*�%�$�+��-�$�4�)�'�'�!�4��'�!�)�!�4�5�2�$��'�.�0�!�+�0�1�+�.�+�#�7�1�+�)�'�0�1��/�/�)�5�-�+�/�!�,�.�/�6�"�>�$��(�(�.�*�#�*�5�$� �6�.�6�+�>��4�5�7�'�/�.�$�7�-�!�,�/�$�2�"�!�#�)�&�/�7�0�.�$�2�2�,�/�#�6�(��-�&�)�(�*�0�,�#�#�;�#�&�0�*�.�.�,�2�4�0�+�,�$�"�0�+�1�!�,�*�.�1�.�!�'�*�%�'�1�1��/�+��%�(�&�/�)�/�� ��'�&�6�(��/�!�5�1�/�/�/�(�%�6�7�)�/�2�!�2�'�;�'�'�%��(�-�+� �'�&�,�-�-� �(�$�,��&�:�)�/�,�(�3�.�#� �+�:�2�0�,�#�/�2�1�.�%�'�)�*�>�)�+�3�#�9�+�+�,�'�-�/�,�2�0�2�.�(�2�*�(�*�8�.��1�-�7�0��5�)� �*�4�&�)�(�!�(�-�.��3�(��"�-�&�7�'�1�#�(�#�+�/�*�*�)�3�"�2�"�/�)�7�-�&�/�,�'�'��.�,�-�'�/�$�+�&�(�(�!�'�(��'�'�$�#�(�*�%�0�#�4�$�/�9�/�5�'�'�&�)�)�0��=�/�#�=�/� �"�0�,�#�(�&�>�5�&�,�/�)�(�*�/�/�9�+�/�(�!�A�1�1�>�2�+�*�7�2�,�0�&�3�,�)�<�@�(�/�B�Հ؀ـրԀــЀڀĀ׀ۀր؀ӀـҀ؀׀ԀՀ؀ـׁ7�9�4�)�"�.�6�5�.�*�1�-�.�5�*�)�9�*�,�%�)�6�6�-�)�*�)�0�,�(�3�'�-�,�/�$�%�+�&�5�2�*�+�!�-�+�!�/�)�(�6�+�+�/�1�0�%�(�)�#�"�7�;�(�%�%�2�)�'��,�'�-�-�+�"�1�,�#�(�%�8�2�/�$�8�$�'�-�&�.�1�&�/�&�&�#�(�-�,�"�%�0�.�,�/�/�1�1�"��,�5�2�$�/�2�5�(�(�7�3�0�'�(�1�/�(�0�"�$�3�*�%�7�$�'�2�&�*�/�.�-�&�8�6�!�$�0��1�.�-�'�)�$�.�!�'� �7�0�/�/�1�*�(��0�/�-�$�*�)�)�)�.�.�)�&�-��%�*�'�*�5�,�3�(�*�%�'�?�9�+�7�9�,�'�#�(�0�1�4�4�/�$�1� �5�0�!�&�1�)�8���*�1�(�*�/��5�/�4�'�,�2�+�3�(�(�+��&�1�,�(�4�$�-��2�4�&�1�!�.�1�'�(�.�#�*�%�-�'�=�8�8�3�*�(�!�'�%�-�'�9�'�0�,�$�#�/�*��'�-�&�3�,�2�2�$� �%�1�-�(� �+�$�)�'�)�1�-�3�)�*�+�7�:�#�(�"�7��1�:�+�5�#�%�4�4�9�2�+�.�6�3�-�*�!�,�5�'�/�/�#��#�1�3�2�&��$�4�.�!�%�3�(�/�2�-�*�/�1�4�&�+��'�5�,�3�0�0�!�5�'�/� �*�*�.�$�$��&�8�7�(�!�"�6�#�8�,�#�*�!�!�3�1�)�#�=�9�-�*�(�)�3�1�/�!�,�)�#�/�:��*�%�.�$�-�$�&�'�(�&�$�1�!�-�#�-��+�!�/�8��)�(�$��1�+�+�4�"�*�0�4�%�&�3�'�.�,�"�1�)�#�2�9�0�1�4�%���-�$�1�-�(�4�!�0�"� �%�/�4�1�7�1�)�&��*�.��6�)�<�0�>�-�)�$�+�2�(�-�1�*�9�,�1� �5�-�-�&�'�6�3�*�1�B�ڀ׀ـՀրՀ׀׀׀ƀـӀӀրՀӀ׀ۀՀրр׀ـԁ)�%�+�#�&��A� �,�.�7�*�+�/�+�8�%�-�+�'�/�3�2�'�&�2�#�(�1��+�1�+�'�"�,�+��-�0�*�'�1�/�.�=�)�'�/�'�-�/�/�5�0�+�.�.�/�-�$�+�.�!�*�'�-�+�6�+�8�$�1�%�2�%��9�)�-�0�+�-�(�*�#�'�!�(�%�,�%�"��0�-�,�%�-�+�"�.�1�+�5� �4�+�*�'� �1�2�/�-�5�'�1� �/�.�)�2�.��#�+��0�&�4�*�-�5�-��!�%�3��.�7�0�/�0�2�'�(�3�&�*�*�5�/�!�/�/�5��2�#�"�"�/�#�5�3�$�&�/�/�6�0�%� �*��)�/��/�6�#�&�*�-�2�(�$�$�$�=�3�$�#�$�3�/�*�%�(�,�$�-�#� �.�1�'�8�%�.�4�4�%�/�5�.�<�0�+�(�(�#�.�0�#��5�.�)�&�/�'�-�%�.�(�)�$�.�1�4�'�#�(�4�*�/�4�#�"�+�(�.�0�5�*�.�'�)�#�(�+�/�-�,�2�&�4�-�%�2�'�:�)�8�/�'�0�*�-�1�4�3�+�$�)�2�!�1�*�0�,�3�$�4�3�3�(�%� �5�*�:�+�)�.�)�'�'�'� �-�8�*�7�$�0�!�!�/�6�&�/�.�)�'�#�5�*�*�%�/�&�'�3�&�#�3�2�'�/�.�1�*�2�/�1�*�2�-�%�2�+�,�/�*�-�9�=�.�1�0�+�4�,�&�$�)�+�,�-�&�6�.�%�3�'�1�*�-�#�(��1�2�+�.�.�(�!�.�(�0�,�0��0�.�)�.�-�!�%�-�)� �0�,�3�2�1���9�/�'�$�2�-�*�(�.�)�(�.�0�+�!�$�-�/�,�/�(�'�'�(�$�.�0�4�,�1�2�4�2�3�-�-�/�4�9�7�%�/�*�%�+�5�2�"�#�,�3�-�3�+�/��3�1�4�5�/�9�&�+�0�-� �"�0�"�-�(�:��5�)�/�3�-�-�)�5�*�'�'�)�1�.��+�,�&�%�2�3�,�+�рҀր؀Ҁۀ׀؀׀ÀӀրԀՀրҀڀ؀׀׀րԀԀׁ;�4�2�)��>�+�5�7�3�*�6�-�+�)��0�3�,��8�-�:�6��0�7�)�4�'�3�+�-�+�C�2�>�A��#�2�+�(�5�.�-� �%�)�(�+�/�%�+�8�/�*�3�2�(�*�+�-�1�)�/�#�,�+�#�/�3�)�0�3� �.�)�/��(�+�6�5�7�!�/�-�/� �1�+���9�)�!�0�*�1�%�5�.�)�+� ��+�$�3�,�,�,�&�"�#�4��8�+�/�&�#�4�%��'�5�!�(�4�*�7�%�%�/�&�/�*�%�.��2�"�-�+�4�(�/�-�/�,��+�*�)�-�.�$�0�� �"�.�/��*�,�%�/�%�:�+�3�.�"�'�8�2�*�#�%�"�*�&�!�)�"�*�/�5�+�*�-�.�'�#�1��-�)�+�%�)�0�&�-�.�'�3�0�'�"�3�)�1��?�/�2�.�1�4�-�5�8�/�/��#�'�$�+�$�0�,�5�&�.�-�+��/�1�1�1�+�)�/�$�/�4�1�/�+�(�0�+�$�*�(�-�'�/�5�'�-�)�*�)�)�)�1�.�&�6�)�'�7�(�'�.�'�9�+�.�)�;�-�2�,�#��.�&�+��#�/�0�,���)��*�+�#�3��&�&�)�2�4�*�.�*�-�8�,�/�/�3�$�+�'�6��)�+�(�+�#�.�%�(�+�%��+�0�2�'�.�)�-�%�4�!�0�,�$�0�E�-�,�,��&��/�1�0�*�4�$�+�3�-��$�:�*�#�$�+�$� �%�6�%�&�0�,�*�%�7�+�2�!�+�+�-�/��5�#��(�9�-�+�,�1�'�+�)�!�$�4�+�)�/�#�#�)�+�3��0�'�2�&�+�6�'�"�(�(�.�+�(�)�5�#�#�,�0�*�-�&�-�,�+�&�0�0�'�'�'��0��5�%�-�+�6�'�-�#�%�*�+�,�&�2�0�'�?�+�3�-�2�!�,�9�-�%�5�9�%�.�'�#�(�,��+�5�-�2��-�7�(�.�$�)�+�&�%�5�&�"�&�)�(�6�<�>�׀րڀՀӀՀ׀րրȀՀـҀԀӀ׀׀׀Հ׀րـ׀ԁ �*�6�0�+�+�2�2�0�'�+�/�-�"�,�.�1�+�+�1�.�&�&�)�'�0�/�/�3�(�3�5�+�/�(�4�+�$�9�+�,�,�)�+�,�9�1�6�"�*�+�+�'�&�4�)��)�+���#�-�+�4�*�-�*�+�2�6�'�)�4�+�-�'�:�2�%�/�1�7�1�5�0�5�(�*�'�6�%�#�$�9�'�+�1�'�3�,�(�,�0�%�&�:�9��-�%�=�.�1�*�0�-�3�/�.��2�'�(�(�3�-�/�-��!�2� �4�!�,�*�%��+�(�*�+�0�-�*�7�)�9�<�&�0�)�#�+�8�'�-�-�1�+�2�1�1�0�,�4�2�2�/�-�;�.��1�$�(�4�-�6�0�$�-�7�0�'�'�&�/�-��"�1�3�/�/�7�6�4�(�/�(�4�/�/�$�%�/��&�6�3�-�"�-�2�"�)�.�+�*�.�6�?�*�3�.�+�*�#�/�$�*�7�*�-��/� �.�%�)�*�9�!�0�-�#�+�,�#�,�*�$�'�)���:�'�+�1�/��)�2�&�1�5�%�-�*�2�!�+�.�#�*�7�)�*�6�/�&�/�+�.�1�-�-�&�,�#�-�"�*�3�!�.�2�(�1�-�3�/�-�#�)�"�)�:�"�5�.��+�*�.��0�4�3�/��-�/�$�'�*�*�3�&�'�4�)�3�6�6�(�7�6�6�)�)�7�#�%�*�$�"��9�2�-�%�!�,�,��)�/�,�1�1�)�*�'�+�,�!�*�,�#�2�/�(�/�4�-�7�,�8�.�8�.�/�'�'��#�-�)�0�9�$�%�9�+��2�(�)�.�(�4�"�%�-�)�9�7�/�*�:�)�/�%�1�*�0�4�)�+�.� �,�7�1�3�.�7�0�;�+�1��4�'�&�#�1��+�4�*�$�-�4�6�!�!�'�)�"�3�%�$�/�&�&�'�*�0�-�1�:�!��.�'�1�&�+�,�#�$�'�/�"�/�0�$�.�7�2�5�(�/�:�*�&�(�/�7�3�,�"�/��1�3�+� �(�-�+�=�:�,�/�&�4�ــӀՀ׀ҀҀՀԀɀۀڀրӀπրԀ؀׀рՀրրց8�*�3�,�*�#�%�,�#�'�*�(��/�/�:�4�2�/�0�,�5�%�/�1�/�*�5�#�,�'�)�9�%�4�0�6�.�/�+�)�)��.�(�1�,�-�/��*�$�+�$�/�/�-�+�6�6�1�3�1�#�)�/�1�"�)�+�0�*�2�>�3�1�)�+�%�'�$�.� �2��#�1�(��/�-�&�/�(��)�0�+�.�4�-�*�)�%�(�'�;�-�.�"�#��,��+�1�!�*�0�/�*�#�&�3�'�?�,�%�'�,�-�%�:�'��"�.�&�.�-�-�1�,�#�'�$��1�+�-�*�0�/�4�1�*�(�2�%�+�.�.�-�-�4�0�!�$�%�!�$��1�'�2�1�.�.��,�(�8�-�/�.�3�#�1� �,�)�*�.�'��4�(�,�=�6�+�/�4� �7�2�/�5�*�,�/�/�6�&�&�)�,�-�*�/��,�1�&�*�3�(�7�,�)�#�(�0��%�(��*�"�;�*�4�*�4��(�-� �1�.�.��.�&�8�+�3�:�-�(�5�/�%�+�%�(�.��9��+�)�1�,�'�+�.�.�,�*�%�)��/�5�4�+�0�*�.�(�?�(�(�*�&�5�/�3�(�.�$�'�:�'�.�:�,�,�<�'�1�4�-�.�+�1�,�1�&�+�3�;�4�,�0�/�1�1�7�6�+�)�'�/�(�/�,�4�)�.�4�!�+�.�*�-�!�%�-�5�8�*�.�'�+�,�.�+�5�&�#�,� �2�(�2�)�&�/�4�,�'�,�)�(�/�-�/�%�,�0��$�9�(�*�+��-�<�+�1�&�5�/�9�,�&�;�5�/�5�!�&�"�&�5�5�$�'�-�*�0�2�&�.�4�5�;�#�.�4�-�3�(�-�=�"�1�$�&�$��.�&�"�(�%��1�*�'�&�1�3�9�$�'��*�-�*�/�0�!�$��0�+�0�!�,�:�+�-�=�)�9�/�-�#�0�)�#�,�,�2�+� �/�/�,�0�,�/�&�-�'�1�9�#�,�4�)�#�%�"�)�9�0�&�+�/�!�2�,�,�-�"�;�6�ـրҀՀـԀӀԀ׀ƀՀۀ׀րـԀрۀրڀ̀Ԁ׀؁(��+�#�)�-�?�1�*�#�%�/�0�"�&�,�0�3�.�-�)�-�'�2�,�)�!�2�*�3�1�$�/�(�.�)�6�?�2�/�-�-�/�)�%�#�4�7�0�+�&�0�.�)�+�+�%�A�.�$�.�,�3�$�'�1�<�+�/�4�0�,�2�(�$�3�1�'�*�1��0�)�&�#�9�/�)�,�:�+�5�.�#�-�*�0�$�*�-�1�5�#�/�'�/�)�!�#�(�)�)�6� �!�&�!� ��#�0�$�#�%�,�!�/�-�#�,�$�3�,�%�1�"�%�4�,�)�8�'�8�+�(�&�*�)� �,�$� �2�+�%�9�3�1�%�4�,�,�#�$�.�:�%�0��1�-�-�)�/��-�)�0��*�!��/�'�)�(�%�/�:��*�.�3�#�(�)�2�.�)�&�+�$�(�(�)�A�0�(�&�-�$�#�1��%�7�.�/�%�:�1�+�1�3�)�'�(�"�$�$�&�)�+�$�+�1�7�2�<�$�1�)�%�*� �$�3�5�)�2�.�&��)�(� �)�+�(�,�5�2�'�3�/�.�$�'�7�/�.�0�$�*�+�/�!�� �6�'�%�9�%�%�3�8�+�6�/�*�3�4�'�/�.�-�7��7�*�/�'�*�.�/�)�$�/�#�7�-� ��,�7�,�%�2�0�,�+�$�.�%�6�+�'�1�.�/�%�7�0�'�*�"�'�%�,�(�0�/�-�.�!�'�.�&�2�=��*�-�%�/�(�4�-���-�;�'�2�%�(�/�"�/�*�8�:�+�$�%�+�"�'�)� �+�:�6�2�$�.�)�+�+�4��)�,�0�*�/�0�+�!�7�"�(�)�2�0�-�.�5�1�-�/�!�9�6�'�0�.�8�+�&�.�'�*��,�#�(�3�,�0�*��*�5�%�5�#�!�0�&�'�'�.�!�3�+�)�*�'�6�+�.�/�#�"�+�,�.�7�.�)�)�0�&�2�0�#� �(�2�0�-�5�2�'�9�5�-��&�!�;�%�)�4�=�%�-�)�2�6�(��0�7�.�-�+�,�,�+�,�'�-�6�.�4�0�0�-�#�ӀԀӀ׀؀ـ׀рրȀӀڀڀрۀՀրҀҀ׀ڀӀԀց2�#�<�-�0�3�(�� �8�-�2�%�,�/�(�/�)�$�/�+� �'�)�-�(�0��)�.�&�'�3�$�/�'�)�!�"�,�'�&�0�!�0�+�!�#�%�8�&�4�9�$�,�,�*�-�3�&�(�,�-�7�(�<�8�-�-��,�$�%�%�*�+�&�%�1�+�/�-�)�0�#�$�)�+�'�(�'�&�1�*�8�&�.�(�2�1�'�6�&��4�)�!�,�0�%�5�)�'�$�,��)� �&�.�(�,�0�(��/�4�&�-�*� �4�.�-�'�.�3�-�0�,�5� �5��7�#�8�/��,�/�0�1�.�;�+�4�+�)�0�&�-�5�7�!�%�.�1�,�'�)�7�9�$�-�'�.��!�/�'�)�1�*�=�'�$� �!�(�-�)�.�8�#�5�*�'�/�-�(�4�"�!��0�"�)�(�5�+�&�%�5�.�-�(�-� �%�2�(�+�+�0�%�/�!�9�%�5��4��,�,�4�)�#�(�'�5�+�-�'�-�(�0�2��7�3�0�)�)�'�+�,�-�0�5�*�0�,�,�,�0�2�+�+�&�-�C�4�+�1�1�1�-�%�*�,�=�$�5�0�,�,�)�7�:�0�'�4�,�*�*�&�5�%��)�-� �.�%�!�#�'�'�&�/�/�!�%�2�"�2�*�,�:�2��"�-�$�:��-�4�$�/�-�$�2�/��&�&� ��-�&��3�&�+�4�'�+�.�6�$�#�/�(�2�"�$�)�*�(�&�*�+�(�-�$�-�/�+� �#�(�*�&�/�,�+�1�;�0�5�3�1�2�'�'�*�&�B�*�+�1�.�#�.��6�.�1�1�*�!�+��4�,�!�0�3�)�/�/�+�)�3�1��,�'� �)�-�!�.�'�/�-�-�5�(�(�)�,�'�"�+�3�-�-��-�'�/�%�*�0�0�,�(��)�0�*�3�%�1�(�-�%�+�$�.�+�)�+�+�)�-�"�-�6�4�-�9�4�5�*�)� �)�/�,�4�/� �#�3�:�!�2�/��6�*�)�6�/�&�0�)�*�/�0�%�#�2�?�$�3�(�׀Հ؀؀ՀՀـ؀׀ǀӀـ׀Ҁـ׀׀րـՀӀӀӀف7�!�6�$�-�'�)�3�!�0��(�*�3�6�/�*�0�1�'�/�'�/�1�%�*�+��&�+��.�(�.�(�:�0�)�'�0�8�4�8�'�'�+�'�"�)�3�)�0�/�.�*�5�%�&�$�*�'�*�-�,�)�.�7�+�-�&��/�)�3�&�!�#�-�3�,�$�+�%�%�+�+�7�!�"�0�$�+�5�6�9�4�(�,�,�/�(�2�!�)�/�:�)�.�+�,�%�:�1�&�+�-�%�/�+�$�"�0�-�/�(�)�9�5�,�/�'�3�2� �%�,�/�/�)�#�0�1�'�5�0�2��'�%�#�2�$�$�*�'�0�-�0�!�)�1�#�0�'�2��.�-�/�-�0�"�0�/�/�'�&�,�5�'�(�4� �'�/�'�7�.�*�1�(�-��%�%�&�/�#�"�/�+�6�$�.�'�,�+�(�6�(�:�(��%�)�2�3�+�%�$�)�/�0�!�7�1�(�0�(�+�'�*�3�1�*�+�&�*�)�-�6�3�6�'�'�1�3�2�+��'�(�+�&�+�1�)�4�%�5�)�/�(�!�*�$�$�&�1�9�(�*�%�+�+� �"�/�$�$�3�(�,�:�'�%�6�7�.�&�*�+�.�/�&�!�'�,�$�&�/�%�+�-�(�"�0�5�2� �0�#�3�$�-�+�+�1�.�4�3�/�)�(�-�*�1�+�2�!�,�"�*�+�;�5�*�,�$�3�.�"�4�/�*�2�9�#�4�4�3�$�0�-�,�$��&�*�5�-�.�7�&�0�'�'�'�2�0�.�&�*�1�*�#�'�0� �+�-� �5�(�'�1�5�*�&��5�4�3�@�-�$�1�,�+�3�)�5�#�0�/�9�4�2�-�"�-�*�"�+�!�>�6�5�%�-�-�4�2�.�%��)�-�(�$�4�5�+�#�!�6��)�&�'� �,�-�+�,�&�/��:�9�7�%�,�/�4�8�,�!�2�%�*�6�1�6�6�*�/�-�)�6�.�(�/�'�5�1�'�%�6�2�0�1�,�2�-�3�.�+�/�-�.�/�)�/�0�&�/�3�!�8�#�/� �1��%�-�'�2��"�,�ր׀րπՀڀҀـ׀ƀր؀ҀЀրՀ׀ۀۀҀـ׀ր؁9�'�-�3�)�2�8�+�2�%�*�-�.�,�(�)�.�0�5�&�$�'�/�%�6� �2�,�4�&�$�<�1�,�0�3�)�%�)�.�-�+�;�-�+�1�$�(��)�,�!��)�3� �(�;�-�4�*�1���%��0�5�!�*�'�,�-�-�<�#�0�-�-�,�8�+�,�7�#�+�,�*�1�$�-�3�(�'�+�)�(�6�,�(�8�*�'�0�1�,� �%�'�)�4�%�+�-�,�'�-��*�4�5�1�-�0�'�*�5�'�&�-�(�-�+�1�6�.�/�*� �5�4�-�8�/�/�*�6�)��)�-��3�3�#�%�-�4�#�/�.�9�*�3�+�#�&�+�$�"�'�,�$�.�1�1�)�'�/�,�2�)�*�6�,�-�)�(�?���"�.�'�4�!�0���%�3�8�'�#�1�*�#�*�-�-�1�0�,�2�/�,�"�/�2�*�'�,�'�5�0�2�'�)�4�.�/�2�$�/�7�1�,�'�)�2�&�/��&�*�(�!�+�-�.�5�#�6�(�/�,�4�5�%�/�-�#�-�"�%�0�9�&�&�+�2�"�/�&�-�7�&��2�2�4�+�2�5� �+�3�/�0�'�*�/�,�,�/�)�*�)�!� �.�5�/�+�(�%�4�+�6�1�!�.�4�-�,�&�8�4�7�+�*�0�/�0�� �%�;��+�%�+�.�/��%�0�*�4��'�,�0�9�!�,�,�$�-�-�4�&�+�1�(�.�*�(��-�3�(��%�4�%�:�1�+�$�-�%�)�0�.�-�4�-�.�5�/�2�+�6�.�(�/�$�+�0�*�.�/�$�/�,�'�-�*�7�)�/�7�2��/�*�(�'�,�/�*�*�/�)�.�.�"�/�+�-�"�� �-��(�.�$�7��"�2�+�#�5�7� �(�+�&�!�2�'�$�4�0�4�+�'�$�(�"�3�&�2�0�+�-�-�%�,�-��+�+�4�#�7� �4�1�.�0�)�*�!�2�#��'�/�6��'�%�)�,�"��4��'�<�(�0�$��1�/�(�6�-�5�:�'�=�,�.�&�)�8�ڀր؀ՀՀ׀݀ـՀÀـӀҀՀՀڀӀ׀Հڀ׀րӀԁ+�(�)�,�2�/�+�-�6�%�$�.�5�%�0�%�*�0�,�9�1�2�)�1�4�*�1�)�/��'�0�:�*�#�$�&�7�*�7�)�6�"�)�3�8�3�'�1�8�,�'�/�:�*�-�-�+�1�+�#�5�-�!�$�.�,�.�+�-��%�0�(�#�,�/�3�1�/�+�5�8�2�.�3�2�/�+� �7�4���/�0��-�'�/�$�&�:�/�&�0�.�5�4�'�)�4�)�+�,�*�*�&�,�-�*�-�.�,�(�.�1�-�-��)�*�*�2�/�,�-�1��9�.�6�*�$�,� �&��8�+�/�#�=�/�4�-�5�#�+�'�+�-�/�(�2�"�.�/�4�(�0�%��-�(�6�$�*�%�7�*�*�-�,�3�/�+�1�=�2�2���0�)�0�.�-�#��1�2�.�/�-�6���*�'�2�.�0�(�3�%�3�'�,�)� �0�4�#�6�/�&��.�$�*�)�.�.�(�%�$�,�(�'�)�,�/�3�(�8�3�0�3�&�*���*�6�'�*�4�-�5�&�.�*�$�)�6�.�+�,�/�"�$�6�(� �#�)�?�/� �,�8�.�-��,��3�*�(�2�9�&�.�-�-�,�#�,�@�5�)�'�)�2�,�.�2��7�$�'�5�-�)�2�)�5�%�)�7�(�'�/�#�%�,�-�/�$�%�/�5�,�+�"�*�"�/�#�/�7�'�.�2�+�'�.�5�0�0�+�(�"�2�:�2�*�-�*�%�-�.�/�/�'�#�%�!�%�(�4�(�"�.�,�7�4��-�,�*�&��(�+�.�.�+��/�$�(�)�,�!��8�/�0��/��$�&�+�0�4�6�)�8�%�,��,�#�#��!�.�-�1�!�0� �:�$�#�0�(�)�'�4�*�#�9�/�(�+�0�5�-�/�%�#�2�/�6�'�2�%�2�+�3�4�#�$�.�/�*�$��-�-�,�7�)�+�*�<�?�+�*�+�8�(�*�,�=�(�,�'�8�*�1�,�)�&��6�6�+�6�8�6�>�$�0�-�7�-�2�;�9�%�3�'�,�'�(�2�'�؀ԀՀրـ׀׀؀ՀǀՀ؀׀ՀЀրրԀҀրԀԀՀՁ-�6�"�.�/�(�:�.�&�*�,�+�1�%�/�/�0�9�(�#�?�-�:�.�.�#�-�!�-�$�.�$��5�5�!� �'�0�1�6�-�+�*�)�)�6�(�+�*� �-�&�0�(�.�(�8�,�0�)�+�"�2�)�/�,�-�*�.�,�,�/�-�"���0�'�$�+��%�,�+�<�%�"��)�$�7�*�*�-�-�7�9�$�0�/�/�4�+�?�<�/�*�)�.�6�&�+�.�9�+�)�'�4��(�-�'�-�0�.��/��"�#�9�(�*�.�)�)�)�+�/�-�1�(�9�'�2�8�'�6�/� �.�)�.�1�.�(�7�+�6�%�+�1�)�/�?�3�<�+�-�4��/�)�'�)�!�9�"�/�1�1�,�(�(��&�!�*�-�&�5�*�%�6�$�,�)�0�$�$�(�>�$�3�*�#�.�2�*�.�(�2�)�7�.�%��0�&�4�'�+���.�,�.�;��9�-�2�%�(�'��/�"�%�'�)�%�1�-�"�%�/�1��2�5�%�7�-�/�7�4�,�4�1�+�'�0�!�*�%�"�)�)�+�-�$�:�0�.�-�1�)�!�/�3�'�7�#��1�/�2�9�-�/� �1�#��!��(�+�"�&�/� � �7�2�2�#�0�$�,�1�5�*�#�2�:�'��$�/�:�2�!�,�*�*�/�1�)�'�0�#�5�)�+�0�&�!�$�%�*�(�"�!�3�)�0�*�0�/�!�4�*�*�-�6�!�"�'�)�#�)��,�&�2�6�>�+�.�1�3�.�7�0��+�3�*�,�*�(�2�4�*�+�-�)�&�(�(�5�)� �.�B�+�!�3�/�3�&�'�?��+�*�>�#�+�#�/�$�+�)�(�-�2�!�/�%� �1�'�$�8�'���%�-�3�%�)�1�1�-�$�+�+�*�+�+�'�2�1�-�0�2�>�+�5�1�%�&�'�4�:�0�2��7�5�+��!�.�(�"�.�2�%�.�,�4�!�)�'�%�+�3�0�:�*�$�'�2�"�5�,�7�*�:�*�&�(�/�9�,�9�?�9�3�+�6��-�4�/�3�׀؀րӀπ؀׀ـՀˀԀ׀Ӏ؀؀ۀӀـրڀӀҀـՁ2�3�0�/�0�"�2�&�/�.�2�,�=��'�)�3�+�2�&�0�,�2�-�(�3��/�*�6��#�:�1�7�%�5�+��7�0�/�4�6�5�(�)�#�5� �/�&�)�!�1�/�&�-�"�-��/�*�/�+�-�-�(�'�*�9�%�$�/�6�*�'�0�+�'�8�3��1�2�'�/�#�5�'�%�(�/�,�-�+�� �1�6��%�;�$�,�,�%�-�:�#�(�&�/�9�.�%�0�+�6�+�'�*�1�+�1�&�-��4�/�+�(�+�*�,�.�.�)�$�'�*�-�*�)�'�6� �(�/�+�%�9�,�'�'�2�,�1�;�4�2�)�8�.�� � �)�1�*�-�7�$�'�0�5�'�8�0�%�&�(�&�&��-�/�+�&�&�8�-�&�,�)�5�4�'�.�!�0�,�1�/�+�'�"�#�.�*��,�4�'�'�.�5�3�&�-�-�'�"�&�%� �2�4�-�/�"�5�0�(�� �5�)�-�+� �*�2��1�5��)�2�4�,�0�!�#�,�%�2�8� �4�.��(�-�0�2�(�(�*�'�)�$�%�#�/�%�1�)�(�7� �&�,�'�$�!��4�%�1��/�(�,�9� �#�,�)�1�'�.�4�"�*�.�)�-�8�*�2�"��1�*�3�$�'�'�2�.�-�%�4�$�/�1�$��+�"�)�/�&�0�*�,�(�/�1�/�.�)�0�4�2�#��&�/�$�%�/�%�-�'�.�$�'�/�0�.�G�9�*�0�.�1�/�1�=�0�)�(�0�1�*�%�"�"� �2�+�1�0�"�/�9�5�<�!�0�$�)�*�(�.�#�4�3�1�3�;�/�/�%�1�7�(�-��-�3�&�2�*�,�*�*�/�3�=�%�.�&�"�$�-�!�-�0�*�=�,�7�5��'�%�*�5�E�$�0�%�9�;�(�#�.��6�?�)�)�1�� �'�"�&�*�0�&�)�<�/�-�"�8�0�.�-�#�'�$�/�8�(�2�)��8�)�1�,�3�-�'�5�0�+�-�<�"�3�.�(�2�/�*�%�-�&�'�:�+�)�#�0�4�7�Հ׀׀ҀҀӀڀԀҀŀ׀׀ـӀրӀրՀրрۀԀـց#�(�+�/�)�1�*�+�:�'�2�'��*��@�.�(�/�+�-�'�-�%�5�1�3�'�2�)�/�$�%�0�.�2�(�7�5�.�(�-�/�+�)�'�#�.�0��$�3�3�+�'�+�/�-�/�%�3�)�/�6�1�/�2�"�)�.�&�+�+��"�&�'�/�3�"�0�1�9�-�2�-�&�'�5�2�.�.�-�'�1�&�%��*�+�2�8�-��5�'�-�+�?�'�$�7�+�3�%�+�+��4��&�)�(�!�<��'�3�2�.�%�/�#�)�8�.�1�#�1�1�&�1�,� �0�B�0�/�-�2�+�&�7��+�#�2�"�/��0�.�%�1�/�/�4�:�3��#�+�"�-�$�#�+�.�4�'�-�/�<�5�>�;�'�(�(�1�1�'�2�'�*�-��,�-�)�5�/�-�+�5�1�-�.�#�-�;�/�%�'�/�-�.�,�/�!�-�.�,�+�*�!�)�2�-�4�0�(��.�/�"�/�"�-�/�*�%��%�1��#�1�:�0�&�#�'�!�+� �$�+�/��%�)�0�(�0�+�+�/�5�*�#�-�*�+�9�/�-�*�5�*�,�,�5�/�(�"�2�,�+�/�6�,�+�,�4�4�"�+�1�7�1� �!�3�2�+�%�5�%�'�(�1�)�/�2�4�*�#�8�/�4�.�0�$��*�/�1�5�6�+�(�"�,�+�*�+�0�/�-�/�$�(�)�5�+�1�"�!�-�*�(�1�,�-�-�$�1�/�)�+�&�%�%�-�6�-�-�/�*�(�3�*�'�,�"�8�3�9�*�"�0�.�,�1�)�&�.�+�2�.�(�8�*�:�(�-�1�#�1�)�-�/�-�-�#�7�,�2�/�+�-�#�+�"��*�9�,�.�%�+��*�3�7�+�(�&�0�0�4�1�7�3�+�<�)�1�,�9�2�*��-�-�#�5�2�:�5�)�(�%�0�.�-��+�&�7�.�.�3�/�$�'�"�5�$�2�4�3�0� �%�7�#�(�6�:�.�1�0�)�3�4�!�5�.�%�'�)�!�'�*�-�1�2�'�-�(�/�-�&�-�:�!�#�'� �2�րրрԀԀ׀׀ـӀǀրڀӀրԀ؀׀ր׀ۀـ׀Ҁہ)�+�-�%��/�,�)�/�,�.�$�#�#��:�)�4�$�0�#�)�.�+�%�3�!�1�,�*�/�(�0�1�#�&�6�7�1�1�'�0�/�/�1�&�)�(�+�2��;�&��,�8� �0�*�1�*�%�$�2��-�4�A���'�&�)�-� �+�)�'��1�:�'�5�4�-�'�+�3�'�/�5�/�.�'�!�0�)�/��%��*�-�-�3�:�4�/�,�%�.�*�&�%�1�$�8�(�&�5�%�.�1�'�*�+� �2�:�1�.�+�7�*�*�*�%�1�*�*�,�+�2�!�;��3�$�3�5�,�-�,�+�4�,�,�+�3�2�0�&�&�.�$�)�(�-�.�-�8�)�:�(�0�+�%�J�'�/�)�.�&�'�4�-�/�)�:�-�0�4�/�0�'�;�$�"�,�+�,�+�*�)�-�$�+�+�*�#��-�$�)�#�/�'�/�-� �)�/�4�%� �&�2�)�9�$�-�+�-�!�*�.�/�1�*�3�0�(�7�0��'�"�&�-�'�,�7�+�$�+�8�1�+�"�,�.�,�3�4�)�#�0�,�1�)�3�0�=�-�2�)�!�'�&�1�%�%�2�"�4�.��8�4�(�,��&�-�&�+�,�"�#�"�?�)�+�2�!�;�(�*�#�%�1�*�(�*�0� �1�"�(�/�.�:�2�7�2�/�#�,�8�)�.�!��)�2�-�*�.�/�'�,�$�/�(�#�&�/�8�*�,�!�)�8�%��*�)�*�8�?�'�-�%�!�4�.�"�*�*�*�1�*��2�%�9�"� �)�"�;�!�(�+�1�)�&�.�2�*�3�,��)�(�!�"�4�(�+�,�2�#��'�*�(�(�&�-�0�"�+��*�-� �*��.�&�&��)�+�-�.�)�*�&��.�3�8�0�,�%�5�)� �3�;�/�)�2�/��9�8�&�7�%�+�)�,�/�&�'��3�#�'�/�'�2� �3�4�2�)�%�1�&�(�6�0�3�"�3�*�/�-�*�;�,�)�*�*�0�7�4�(�%�/�5�,�/�+�2�'�,�0�2�5�-�,�$�-�2�,�*�*�Հ׀ՀـۀՀـՀҀɀ׀ҀڀՀրрـ܀Հր׀Ӏڀԁ ��2�>�5�(�&�4�9�$�)�.�1�%�-�*�.�0�/�0�-�7�,�0�-�5�!�1�/�/�3�)�:�&�,�5�+�1�.�'�+�4�*�2�&�0�4�-�"�,�/�%�$�+��1�0�+�0�(�+�0�,�*�,�0�9�.�"�0�8�,�*�/�3�+�4� �/�)�*�*�,�'�*�5�+�3�.�2�+�%�!�,�)�:�'�&�,�&�-�1�8�%�/�:�#�2�1� �-�$�-�(�(�#�&�.�6�?�2�:�+�%�1�$�3�(�&�+��/�+�,�*�*�/�.��-�'�&�1�1�$�4�*�/�$��9�4��-�$�.�,�$�+�2�'�8�(�6�4�+�$�!�(�!�/�/�3�/�!�0�5�2��3�*�/�"�0�6�1�'�0�?�2�"�1�2�)�;�0�/�$��4�� �'�%�9�1�"�#�%�$�-�(�-�'�$�5�4�*�)�/��8�/�.�.�5�7�$��-�,�$�3�%�'�.�6�2�+�%�+�&�/�+�7��*�$�&� �'�+�+�*�+�3�4�/�1�"�-�"�5�2�*��)�.�0�+�2�4�4�$�.�*��'�)�,�6�'�(�4�0�+�/�+�#�/�)�0�*�)�+�%�#�/��-�.�2�)�-�)�2�)�0�2�,�.�2�4�&�%� ��%�2�0�:�(�0�)����-�&�0�=�$�,�#�6� �%�-�.�!�*�(�/�$�*�%�+�!�)�,�+�4�0��9�)�0�3�.�%�-�2�(�)�;�+�-�0�+�,�-�H�0�*�(�(�3�-�)�)�-�2�#�+�1�.�.�3�"�0�!�(�*�&�4�/�'�0�%�$�1�1�1�0�*�"�5�6�)�%�&�'�,�!�4�"�,�/�)�2�*�,�0�%�-�)�*�(�-�.�!�.�(��:�4�)�*�&�#�8�%�)�+�3�-�*�0�4�/�&�%�)�4�8�-�6�'�%�/�%�&�4�&�3�,�'�$��.�2�8�(�:�.��+��#�'�(�#�+�1�3�,�(�.�*�4�&� �*�5�3�7�5�+�(�+�+�'��(�'�1�5�,�5�-�*�$�ـ؀ـԀՀڀ؀րրǀԀՀ؀ԀـրրրӀՀրـՀՁ4�+�+�6�2�'�-�3�5�>�7�)�,�(�8�$�#�/�,�$�(�/�-�>�'�:�)�3�7�2�&�)�/�%�%�)�7�1�-�1�0�.��.�,�#�,�0�-�+�$�0�2�!�8�/�+�:�#�*�0�-�.�0�4� �$�%�0� �/�+�#�/�+�1�-��2�,�/� �3�(�#�2�3�6�+�=�7�"�5�0�(�-�$�'�-�*�,�*�7�*�(�+�4�7�/��)�&�*�!�2�0�)�%�1�'�(�3�)�.�+�)�"�2�%�2�/�(�;�&�5�8�*�%�,�+�&�1�.�*�0�:�-�/�3�-�*�*�*�1�2�+�0�&�5�7�8�!�/�%�/�)�-�A�(�;�)�1�&�-�!�$�$�&�'�-�,�&�,�/�&�(�.�'�+�)�5�%�(�/�&�.��+�5�*�3��#�#�:�!�#�(�,�&�)�&�6�)�/�/�#�"�'�!�6�0�(�)�.��(�'�(�1�+� �+�"�$�.�)�/�+�'�;�@�1�#�-��#�(�$�.�)�.�/�)�&�(�*�6�5�.� �,�'�+��%�-�/�+�/��(�,�'�3�%�'�4�/�1�.�'�(�%�0�2�.�'�0�(�)�0�,�(�+�/��*�&�&��.�'��/�:�.�'�-�!�'�(�(�0�.�*�+�+�4�$�,�5�*�/�����4�$��4�,�'�-��9�,�"�2�,�;�(�(�#�9�1�0�,�0�1�,�5��-�4�'�*�(�4�-�-�&�2�&�.�7�$�2�#�P���+�'�,�*�$�$�1�!�,�(�;�)�,�.��'�&�7�%�#�)�*�-��/�-�(�(�1�+�/�"�+�-�%�:�2��3�1�.�&�*�2�(�5�0�;�&�!�1� �*�%�0�1�+�&�1�(�7�.�2��'�,�1�0�"�/�5�.�-�+�)�!�-�/�;�&�/�$�1�"�/�-�<�3�1�(�,�(� �)� ��7�$�5�0�,�7�"�1�(�0��.�#�&�0�#�+�!�2�+�'�4�*�&�.�5�.�3�4�/�%�$�.�.�%�.�5�<�9�%�0�#�0�6�Հـ׀րԀՀЀπ׀��ڀՀր΀׀Ҁ؀؀ڀԀــҀځ(�;�-�.�6�(�)�&�$�'�-�.�1�3�$�7�)�1�+�'�*�0� �%�:�:�2�8�-�7�5�8�+�+�+�3�(�%�1�-�)�(�/�1�+�(�/�=�)�'�0�6�0�1�#�"�(�*�*�#�!�)�.�*�� �)�#�&� �5�6�,�-�=�'�%��1�3�6�2�(�!�'�*�)�3�*�2�1�&�7�/�(�,�+�,�'�,�/�.�9�'��*�-�6�/�(�+��2�-�*� �3�3�3�,�5�:�/��,�/�.�)�-�,��(�0�5��6�)�+�1�-�,�1�7�4�7��.�2�-�2�0�"�/�,�5�&�*�6�0�%�0�*�*�'�+�/�#�(�"�&�#�6�"�1�'�5�'�2�1�-�!�)�/�-�"�0�0�)�1�0�1� �$�3�0�+�(��'�)�,�=�*�3�:�/�+�5�(�0�.�2�2��1�.�.�6�$�4�(�%�,�2��*�/�8�2�,�)� ��/�6�)�*�,�3�)�4�%�$�4�3�/�+��7�*�:�5�7�"�$�(�0�*�.�+�8�#�>�,�%�0�,�,�-�#�/�8�1�1�*�0�*�#�2�1�'��*�+��'�3�7�5�1�/�(�+�8�.�.��!�-�,�)�)�!�(�(�+�8�,�&�,��"�5�/�$��*��1�7�]�o�h�2�-�� ��,�)�3�!�3�0�'�,�#�*�&�(�+�*�$��2�.�3�3�2�6�/�!�-�*�&�1�/�#�+�.�7�,�!�)�,�(�7�+�6��-�=�&��(�"�)�,�*�(�*�0�4�,�*�;�"�&�+�'�2�/�+�7�&�&�-�8�&�-�9�$��(�#�'�6�"�/�.�-�0�%�3�$��.�/�,�.�8�(�)�2�)�*�4��/�,�+�1�6�/�0�6�(��&�8�2��/� �:��.�*�!�7�*�#�&�2�,�-�-�#�'�.�2�6�/�-�7�)�$�>�5�4�;�0�/�.�1�#�/��,�!�7�0�+�'�+�*�3�:�+�5�)�!�*�4� �4� � �3�2�5�9�(�$�'�*�*�-�&�.�C�0�Ҁ؀ҀӀ׀Հۀڀ؀ÀҀрրӀӀڀҀՀ؀؀Հ׀ҀӁ;�5�'�)�#�+�1�8�.�/�5�7�+�4�1�4�'�:�*�#�/�2�-�4�(�/�!�(�7�"�:�2�/�(�%�1�(�7�+�*�%�%�*�-�)��&��(�$�-�&�-�2�:�.�,�1�1�8�&�*�*�"�)�/�)�-�3�)�.�$�)�9�/�'�7�5��#�1�%�4�&�!�1�+�2�-�,�$�*�)�$�+�.�)�4�/�!�3�/� ��<��1�&�%�%�/�5�/�"�+� �$�,��1�-�)�7�.�5�7�&�2�4�)�$�2�+�&�)�1�(�#�,�8�'�*�#� �.�5�8��2�0�#�6�(�,�0�#�!�1��'�.�/�,�/�3�%�(�$�-�=�*�:�*�/�,�9�7�0�(�)�&�/�*�-�$�&�3�+�*�/�4�'�"�'�+�#�#�-�3�#�-��3�;�)�$�3�%�*�(�'�$�(�+�#��&�)�2��+� �$�0�,�*�1�/�%�*�*� �7�?�%�+�3��+�)�5�6�&�2�7�*�5�1�6�1�0�/�(�)�(�/�+�*�7�5�,�)�)�$�0�4�&�5�=�1�-�%��/�1�(�.�,�/�2�=�$�2��'�8�+�.�&�.�-��,�3�%�)�3�>�#�3�*�2�)�.�&� �)�*�"�0�.�$� �!�+��'�'�2�*�9�e�����-�/�!�;�'�'�.�$��+�0�'�(�!�0�(�,�/�.�*�1�(�1�3�4� �9�+�3�(�4�$�;�6�/�6�.�+�$��'�*�-��+�5�6�6�.�/�5�2�4�6�3�-�*�+�'�0�$�2�"�&�1�)�(�"�1�4�1�(�+�+�1�/��-�'�.�*�0�.�2�&�:�@�.�.�>�,�.�&�!�,�)�*�-�/�,�(�$�4�(�$��!�.�0�/�,�3�3��1�3�*�3�/�+�8�0�-�2�'�-�%�&�&�3�,�*�4� �'�-��2�,�)�/�0�6�2�$���)�.�%�0�-�2�)�5�3��'�)��8��-�1��'�+�5�/��*�(�3�$�<�/�/�*�+�+�(�0�)�0�5�3�)�*�׀Հрۀ׀؀ԀڀՀĀ؀؀рՀրҀـր؀ـπڀ؀ׁ2�+�5�'�5�'�-�+�)�4�/�3��*�@�3�5�)�1�7�-�,�+�:�)�'��*�,�/�,�$�+�+�%��'�)�'�0�/�-�4� �*�.�2�4�-�#�"� �0�6�-�0�-�*�$��4�)�1�&�3�#�,�/�9�$�/��.�3�(�+�(�2�$�:�%� ��7�#�#�/�.�#�,�'�#�-�,�7�-�*��.�-�-�'�2�&�5�,�-�,�)�.�(�2�.�8�0�5�,�1�*�)�@�*�)�/� �$�/�/�1��#�+�0�.�0�(�0��*�*�-�'�*�)�.�2�9�&�&�&�#�$�.�%�.�3�"� �/�2�"�&�%� �+�,�'�%�0�+�&�6�/�:�:�.�;�1�&�'�'�3�(�%��0�,�%�'�-�%� �/�-�$�*��'�?�%�,�5�1�'�%�3��!�'�'�*�/��/�'�1�"�)�3�&�%�%�+�'�+�6�&�&��0�-�'�/��5�0�0�*�/�=� �/�2�/�2�#�#�*��*�%�)�2��/�"�2�1�.��3�2�(�/�+�$�1�,�'��,�&�/�"�/�-�%�/�:� �$�#�$�(�+�4�1�2�'�2�/�*�2�3�-�+�@�.�7�3�4�*�1�-�)�,�)�;�$�1�#�2�5�$�*�3�)�"�4� �$�-�l�̆����=�&�!�)�.�)�,�5��,�)� �.�/�3�.�$�/�8�+�&�(�%�%�/�-�4�*�-�)�+�$�.�(�0�'�8� � �*�+��)�/�%�.�1�#��(�%�*�)�8�2�4�,�2�"�*�@�&�.�#�*�0�9�6�.�"�"�*�(�'�)�$�1�1�(�!�3�&�%�(�*�.�'�#�$�&�7�%�.� �1�%�%�-�'�(�6�*� �'�)�/��)�1��#� �0�'�4�(�$�+�@�4�*�#�,�-��1�'�/�.�6�9�8�"�&�+��0�-�+�+�<�(�/�+�3�.�/�-�+�.�.�*�4�0�!�$�$�6�3�8�%� �5�&�.�&�*�*�2�/�-�1�.�/�#�-�3�*�*�,�&�1�,��+�2�ۀ؀݀Ӏ׀׀рπՀ̀րҀ׀րՀЀπــրՀڀрׁ2�8�+�-�!�3�,�7�6�-�+�%�)�!�-�&�(�.�6�)�+��'�5�9�%�'�)�!�8��7�-�)�5�#�'�"�%�3�8�!��+�+�-��(�2�$�)�>� �+�5��*��0�6�)�0�&�/�4�2�'�%�7�.�%�+�#�!�/�,�2�2�6�$�4�#�.�0�-�/��0�&�(�-�'�3�8�+�&�#�,�%��)�2�/�4�-�5�'�-�8�4�0�0�"�!�4�.�1�+�3�&�5�/�3�9�/�'�)�0�0�)�-�2�-�(�,�!�&�$��)�!�2�7�#�(�3��*�.�!�2�+�2�1�)�+�:�)�+�4�)�.�/�(�&�*�2�/�(�-�0�#�)�%�3�&�0�1�-�9�1�)�)�5�+�.�+�4�&�)�,�(�*�(�'�,�#�*�4�,�0�'�4�-�)�/�9�)�0�/�1��,�7�5�-�/�.�*��8�2�'�3�'�%�(�&�4� �#�.�/�(�.�/�4�-�1�"�.�-�(�.�$�1�,�-�/�'�,�+�0�'�-�4�=�$�&�(�)�6�!�(�5�0�2�4�8��-�0�,�)�,�'�4�%��#�+�3�+�,�1�A�,�.�+�,�&�0�,�;�%�'�+�-�*�#�/� �&�>�-�/�-�3�!�1�#�+�-�1�"�'�4�/�!�0�-�*�0�F�5�A�3�-�*�8�8�.�*�'�)�!�(�(�0�'�.�&�6�?�2�&�4�#�0�0�7�7�-�,�(�5�(�0�2�-�-�1�/�1�+�0�,�1�%�8�*�#�#��3�%�'�(�/�)�)�.�%�$�$�)�)�(��$�,�/�$�2�1�,�0�&�!�)�%�:�'��5�-�3��=��%�*�%�9�1�(�)�)�)�(�1�7�(�6�.�0�.�.�&�*�4�*�,��4�$�;�!�(�-�!�+��1�+�/��%�%�3��.�"�'�.�/�=�6�#�0�1�3�,�%�=�.�3�-�-�-�1�1�0�.�2�3�3�'�2�.�;�.�7�A�'�1�(�'�/�1�#�.�)�"�!�9�1�2�6�*�1�%�3�3�'�1�/�-�8�'�7�/�Ѐ׀Ӏڀ׀ڀր׀πÀԀҀ׀р؀Ҁ׀р׀ӀҀӀ׀؁8�1�(�+�3�=�+�(�3�'�0�-�$�,�=�*�*�+�4�.�"�#�,�)�(�!�*�(�!�*�&�5�-�1�6�3�2�4�&�/�4� �*�4�7�2�,�1�,�5�3�(�&�%�<�'�'�2�2�1�*�-�6�$��$�,�<�7�(�"�,�1�)�)�3�1�4�*�5�(�9�/�"�+�-�1�8�/��,�2�)�6�"�(�.�(�(�,�4�(�:�,�<�=�/� �3�+�.�7��)�/�#�2�(�)�+�*�+�.� �/�*�*�,�,�2�+�,�&�,�+�>�+�)�,�.�,�0�*�*�#�%�.�&�%�$�/�8�5�'�2�'��0�#�3�+�(�+�,�9�)��*�(�-�)�'�*�0�2�6�0�4�)�!�0�0�1��-�0��-�#�5�3�(�-�'�(�$�3��.�1�'�(�2�6�+�(�;�&�*�-�&�4�$�%�*�0�;�=�9�)�1�:�*�%� �*�)��/�0�5�'�"�/�&�%�.�"�/�,�4�-�/�,�&�%�/�(�5�5�)�(�/�'�3�0�%� �)�+�(�"�9�-�4��/� �,�-�-�3�+�1�*�<�2�#�$�*�#�/�.�)�1�/�$�1�5�%�&�2�1�6�+�%�!�2�0�,�0�-�!�0�*�%�&�0�*�0�'�*�*�$�3�,�(�3�#�*�)��3�&�1�<�&�2�)�/�/�"�0�.�'�2�%�%�3�+�#�9�0�+�.�!�#�3�(�*�'�#�+� �%�2�.�,�%�%�.�*�5�4�6�5�9�7�(�-�,�-�4�+�7�(�7�*�(�9�/�'�*�,�:�+�1�8�+�4��(�#�!� ��6�0�1�0�%�'�0�9�#�/�*�(�.�=�/�!�/�3�;�$�%�(�(�/�1�'�'�5�%�.�/�0�2�2�-�6�#�8�3�'�#�1�'�2�"�3�"�'�+�$�+�)�'�&�*�"�*�/�*�6�*�0�'�(�+��'�1�4�4�"�)�2�'��2�3�#�&�/�3�*�6�(�%�)�%�)�+�'��1�5�4�*�*�.�/�$�.�*�#�!�,�6�.�1�4�2�(�)�'�'�6�"�+�ԀӀրՀր؀րڀ׀ǀـڀрրր܀ӀӀ܀ՀրրӀс=�'�6�?�$�>�,�5�5�+�%�,�-�3�.�(�#�5�,�2�/�2�0�*�/�+�4�&�)�3�-�,�1��6�(�*�$�#�#�3�.�/� ��(�-�*�(�4�&�%�7�(��*�$�/�0�/�&�.�-�,�)�2�-�4�*�,�5�&�-�%�4�*�-�&�*�*�,�*�3�@�(�-�-�7�,�/��(�(�0�-�'�1�!�1�)�*��6�%�,�4�#�%�'�'�+�/�,�,�+�"�-�+�%�&�*�#�3� �/�%�/�4�7�&�0�'�%�/�0�+�+�&�/�,�4�(�&�0�,�6�1�6�"�7��0�,�!�-�/�2� �#��&�,�)�(� �)�3�#�=�%�)�)�1�'�:�4�1�*�'�7�2�-�#�+�+�+�$�(�-�-�(�!�'�,�'�/�6�.�2�,��2�(�)�+�'�(�'�1�-�+�,�(�$�*�1�0�$�'�.�-�-�-�,�5�&�(�'�&�&�1�)�*�)�)�+�6�*�$�)�#�(�+�.�!�9�-��$��(��'�1�7�#�,�3�0�/�*�#�.�'�/��)�*�'�$�B�!�1�*�0�4� �5�*�1�*�7�0�-�/�-�,�"�'�1�6�8�2�#�+�*�.�3�0�,�$�%�6�5�4�,� �2�6�"�&�,�1� �+�2�-�4�2�3�/�3�%�3�3�1�,�/�!�%�*�3� �-�'�(��$�+�3�$�$�-�(�-��,�3�9�+�/�'�-�#�%�/�6�0�(�)�+�8�(�4�-�,�#�&�*�#�+�3�0�!�3�/�8�)�&�%�/�!�"�4�=�1��4�)�'�.�&�/�1�6��,�&�(�*�9�-�1�6�0�&�/�.�4�'�7�,�)��9�)�8��(�(�1�)�(�%�0�-�'�2�0�$�,�3�%�-�%�2�+�-�)�0�+�(�&�.�'�*�/�+� �#�7��+��2�+�*�5�1�;�6�"�+�:�2�*�'�)�6�*�9�5�.�+�,�7�7�)�)�8�*�$�4�4�2�,�1��,�0� �,�)�.�-�+�#�%�%�1�3�)�1�.�9�=�4�.�(�0�:�5�ՀҀՀڀЀԀрـրĀ؀ӀрՀԀӀӀ؀؀ӀӀՀ؀ԁ+�,�(�.��&�'�*�0�-�2�7�1�.�5�*�&�+�0�+�*�2�$�4�.�$�$�'�5�*�&� ��'�/�3�7�.�'�4�-�'�0�2�(�&�6�7�5�3�-�/�.�,�'�'�+�+�.�7�$�1�%�"�.�&�3�7�/�:�*�#�-�.�:�7�$�)�/�$�1�/�.��!��)��*�.�$�#�&�,�3��/�1�0�+�4�'�+�$�"�'�/�;�-�-��@�"�*�9�*�4�0�-�*�"�*�-�,�'� �/�&�$�)�2�(�+�!���6�1�.�+�#�;�$�/�A�2�/�/��&�1�)�5�3�2�0��(�.�"�$�7�)�&��0�,�2�%�4�/�#� �7�)�6�%�)�/�6�#�,�2�(�'�&�5�-�.�.�(�*�!�&�&�.�5�(�-�3��+�/�/�+�3�'�)�*�"�,��1�(��+�3�-�)�/�%�-�/�#�/�"�5�1�3�1�*�.�+�)�'�)�!�$�.�!�(�6�'�+�/�+�/�(�0�6�1�$�.�5�3�1�%�+�/�+�(�)�'�.�#�!�/�-�(�2�,�3�)�0�)�2��4�7�2� �$�&��1�.�-�,��0�)�,�'�-�'�&�3�)�+�-�+�3�4�/�+�0�9�,�+�-�0�+�)�1��7�/�.��#�-�&�)�"�*�4�8�3�:�1��&�!�'�%�#�&�'�1�'�!�&�%�%�,�-�'��4�(�/�=�0�*�5�1�%��"�4�&�+��'�"�%�+�+�!�&��$�-�.�%�(�(��>�%�'�6�1��,��"��,�#�"��@�&� �+�%�)�&�.�>� �&�+�)�7�%�*�.�;�.�)�&�(�)�*�*��'�8�%�3�+�/��1��)�0�+�,�'�&�9�(�"�.�9�5�%�,�� �/�+�=�8�#�/�7�+�+�=�-��%�*�1��/�4�$�#�2�8�+�3�>�+�&�5�=�$�5�1�/��1��/�5�7�#�>�&��/�!�/�,�!�8�-�,�'�'�$�+�*�8�4�.�;�1�,�3�;�&�*�*�3�'�ڀӀڀӀրԀӀ׀րĀҀ΀πۀ܀؀Հр؀ӀրۀրՁ!�0�3�(�&�3�)�2�0�&�+�-�*�3�8�/�+�1� �4�1�+�7�,�.�*�/�+�+�4� �(�#�"�&�/�,�(�-�&�%�&�/�.�&�2�(�&�6�1�%�6�2�&�!��2�4�*�:��,�.�-�+�-�0�+�&�)�(��%�0�*�/�(�4�'�0�&�+�)�(�'�3�6�'�7�,�0�7�=�/�%�7�0�(�0�'�1�%�5�;�"�&�,�.�8�6��/�-�/�4�(� �#� �*�+�9�!�#�$�&�-�5�-�(�.� �/�0�'�%��%�,�.�7�6�8�'�3�-�.�(� �/� �.�#�+�0�8�2�)��'�/�!�,�.�7�3�9�-�"�+�+�"�"�!�2�5�4�+�1�#�(�4�'�!�.��%�7�-�*�5��(�:�2�/�,�+�,�*�0�-��2�4�6�,�&�$��0�7�)�*�/�'�-�,�2�.�,�"�+�.�-�4�%�*�,�0��+�-�.�0�-�0�*�%�-�,�&�'�-�*�0�,�+�+�'�%�&�)�!�*��9�,�-�+�8�(�'�'�"�#�&�,�.� �.�-�0�+�%�$�-�$�)�+�,�(�/� �$�9�*�/�*�$�1�,�.�+�+�!��"�*�6�3�D�-�$�%�0�1�*�/�#�/�(�+�$�"�,�$�3�B�0�$�0�.�$�1�$�1�.�<�,� �$�1�"�B�3�'�'�7�1�5�,�'�(�-�1�,�/�2�+�$�(�6�+�$�'�+�5�%�&�+�(�$�,�)�(�%�6� �+�#�&� �1�*�3�6�5��0�*�*�1�.�%�/�0�1�6�2�#�/�!�'�+�9�,�,�,�+�1�3�,�2�6�+�'�=�5�-�-�,�)�(�9�,�'�(�"�=�2�%�.�4� �1�+�2� �5�,�0�,�!��5�%��-�(��,�%�)�4�,�"�7��/�,�0�+�(�C�(�4�"�/�2�.�&�%�+�2�,�)�$�-�6�,�(�)�)�(�.�)�)�8�+�1�4�.�*�*�.�*�/�+�'�"�:�%�.�0�)�+�"��5�+�-�$�+�"�'�.�%�2�'�(�+�ӀԀ׀׀Հـ؀րҀ΀Ԁ؀ـҀ׀ӀӀ׀ۀԀԀԀԀՁ0�+�(�0�$�(�1�+�)�)�-�&�6�"�"�+�0�!�2�2�,�)�.�.�2�-�.���8�)�5��'�/�.�&�1�"�*�*�2�+�*�4�$�%�.�)�-�*�7�'�&�/�4�+�3�/� �#�:�-�,�/�&�%�+�2�=�-�'�/�)�(�5�'��)��+��'��*�7�-�*�+�)�)�&�(�4�/��6�4��'�'�%�$�'�#�/�=�3�7�#�5�2�/�/�@��5�0�3�-��+�.�&�'�)��3�/�+�=�/�-�$�4�1�<�"�-�6��)�/�$�5�-�1�&�-�,�!�'�0�+�(�3�!�-�.�+�,�'�%�5�(�.�#�+�+�.�$�*�5�"�5�)�7�'�=�+�0�*�4�)�*�.�,�*�1�$�(�.�,�-�2�0�'�0�.�&�&�!�-�0�,�)�+�'�*�0�%��,�(�$�+�/�#�$�&�$�'�.��(�&�,�+�6�&�.�(�&� � �5�'�?�;� �*�-�&�#�)�*�!�2�%�,�6�.�5�$�$�&�:�5�#�.�,�#�+�/�(�$�$�&�2�&�%�$�)�,�-�-�/�6�(�2�"�%�0��*�1�.�,�5�,�'�,�3�8�(�'�3�,�%�*�%�/�$�7�*�6�$�/��#�1�3�+� �"�(� �%�/�0�/��*�-�.�)�)�8�$�-�2��+�+�D�'�)�0�(�!�4�)�-�(�(�1�*�(��%�)�)�/�(�'�/�2�1�%�,�)�&�'�!�,�,�1�<�1�0�(�4��7�1�1�5�-�%�*�&�:�#�2�,�/�%�$�$�)�/�5�%�+�$�-�$�5�*�+�1�1�-�!�,�1�0�#�/��#�#�$�?�0�%�*�1�"�-�!�7�?�6�4�0�4�+�2�0�2�:�&�.�5�*�3�%�,��.���2�1�'�A�)�&�(�6�*�8�&�!�)�-�3�'�&�+�,�>�0�.�$�)��7�$�'�5�:�,�=�0�&�%�2�*�-�#�2�0��-��-�+�"�+�7�.�2�/�(�#�,�0�'�3�(�1�"�'�1�0�4�9�3�,�/�؀Հ؀Ҁր؀րӀ׀Ȁ؀ـހ׀׀Ԁ؀ڀՀՀրՀـ؁.�,�:�.�:�8�+�0�-�1�'��'�3�'��*�1�6�9�>�%�*�3�6�*�+�/�'�1�$��,�!�'�*�'�$�&�!�(�)�1�-�.�*�-�&�;�7���1�,�(�*�-�(�+��"�"�.��7�*�0��-�+�.�&�,�"�3�$�-�/�/�,�%�-�/�+��)�.�$�0�4�'�*�'�*�/��1�2�+�(�'�-�,�-�-�2�1�4� �*�#�'�'�-�-�-�#�1�(�0�4�3�+�-�,�%�'�)�-�"�0�4�%�#�2�'�5�:�/�.�*�0�,�1�.��+�$�9��!�4�.�&�-�6�%�&�.�(� �.�&� �%�2�/�9�(�"�*�/�,�/�%�8��*�'�%�1�3�/��9��'�+�%�*�)�5�1�/�/�)�3�7�*�+�!��)�*�*�,�1�/�'� �+�0�3�(�(�#�'�3�'�)�(�)�.�)�-�.�0�-�.�!��-�"�/�'� ��1�3�,�)��9�*�5�/��$��0�*�0�&�!�.��)�*�$�#�,�(�!�;�(�*�#��/�5�+�$�9�'�/�6�9�=�#�*�&�.�+�3�(�2�2�+�7�+�(�#�(�-�+�0�,�'�"��.�/�'�1�(�.�3�$��0�1�0�$�3�1�*��(�&�/�'�*�0�7�0�2�"�!�/�$�>��7�)�3�&�:�"�&�)��3�2�#�*�&�'�-�%��2�#�(�+�%�*�'�5�5�0��,�/�?�-�2�7�0�!�0�5�1�9�*�+�(�/�7��.�$�4�%�+�-��)�4�"�0�!�-�/�)� �&�'�/�&�.�-�'�'�*�3�3�,�0�'�1�%�.�/�*�#�4�.�)�%�!�+� �)�#�*�1�/�&�(�'�4�.�-�+�"�!�)��-�$�*�"�4�(�(�/�)�8�-�+�$�7�)�&�2�5�7�5�1�5�+�,�"�+�*�%�/��2�+�0�/�4�/�/�#�/�8�0�)�<�0�)�(�3�)�%�0�"� �8�7�5�&�,�:�)�/�7�:�8�*�.�*�=�'�7�6�,�/�(�3�؀׀؀ҀԀՀԀրՀȀ΀րրӀــԀ׀ـրՀрӀҁ+�*�$�3�1�;�,�%�,�-�/� �.�.�-�.�3�$�.�!�+�.�)�,�3�+�+�$�$�0�&�'�)�2�-�3�3�/�?���"�'�!�4�#�-�4�8��"�$�*�/�"�-�+�0�-�%�/�/�*�%�&�&�/��*�1�-�'��4�)�*�+�,�3�5�9�%�/�8�0�%�2�5�+�%�/�)�-�,�"�@�3�$�2�6� �4�*�.�+�9�(�3�4�+�*�&�%��/�3�$�+�1��(�/�$�&�-�-��,�&�,�,�.�.�,�(�4��5�(�-�&�'�;�'�2�,�-� �0�#�&�*�.�:�'�3�"�3�'�-�2�-�2�&��&�#�.�"�D�+�:�$�8�/��.�!�0�%�6�,�/�*�%�3�1��/�(�'�)�'�'�-�/�&�(�%�,���5�.�2�1�-�-�*�"�1�1�!�%�.�3�/�)�.�'�"�-�.�/�+�'�%�3�"�$�/�*�#� �4�-�,��/�4�2�0���5�(�&���'�3��#�'�2�(� �,�.�'�/�4�2��<�.�%�4�0�-�#��(�.�1���/�*�A�,�#�)��#�/�4�-�%�'�-�*�2�/�*�4�$�,�9�)�+�7�,�1�)�-�#�/�*�3�4�+�$�6�1� �/�&�:�.�2�;�*��/�+�5�%�%�3��&�3�+�-�"�9�1�6��(�?�.�)�:�)�,�/�7��2�.��7�-�'�%�*�.�0�,�,�,�(�&�)�$�3��/�-�#�%�(�-�%�,�6�2�0�5�+�'�2�6�!�'�'�!�0��2�+�0�!�-�7��(�/�,�2�(�(�-�'�4�3�)�2�1�1�"�$�)�1�-�/�3�&�6�-�'�+�%��.�2�1�/�6�!�'�#�%��)�$�+� �3�%�3�'�#�,�,�+�,��1�1�)�'�/�(�/�-�6�'�/�+�+�!�$�1�"�/�/�+�;�!�1�+�"�,�+�/�1�/�1�$�2�"�/�)�$�)�,�1�*�+� �.�0�,�)�.�5�&�9�.�+�9�2�+�)�'�2�+�5�)�2�ր׀ۀ׀׀؀׀܀ӀȀҀр׀ҀـӀ؀׀ՀՀ؀Հրہ5�)�*�3�"�*�?�9�&� �$�*�&�6�1�/�2�(�+�/�-�+�*�-�:�*�3�-�7�-�)�&�*�4�<��(�6�R���8�3�/�3�-�/�%�*�0��/�'�%�'�)�,�0�2�+�9��,�/�-�/�2�+�/�+�2�7�>�0�/��$�+�%�#�%�.�-�#�+� �3�.�*�"�(�/�-�'�,�'�1�,� �0�4�#�3�-�%�#�#�/�5�/�/�9�#�#�?�/�+�4�6�1�3�*�!�+�,�#�$�#�)�4�,�.�!�0�*�*�0�"�)�"�+�-�(�#�$�'�&�.��'�(�3�/�&�)�/�?��-�2�)�;�%�-�/�#�/�'�"�0�(�$�,�*�.�/�&�+�,�2�$�"�7�(�'�.� �.�1��'�/�)�3��'�,�'�1�3�*�'�/�8�.�.�(�0�.��&�.�'�3�,�/�/�%�"�%��.�#��$�/�.�.�#�/�.�7�*�'�"�+�4�$�,�)�6�-�&�-�%��/�'�&�+�%�.��,�:��'�,�#�+�.�,�2�*�$�)�*�%�7�F�(�*�0�/�:�*��2�*��,�(�+�&�(�/�'�+�*�*�#�(�"��%�/�*�7�,�-�5�+�.�&�7�,�*�<�'�2�1�)�2�$�$�3�1�&�$�0�3�*��*�8��(�$�-�#�(�0��-�5�(�&�1�6�.�;� �*�&�-�2�=�3�,�"�$�)�=�+�'�)�%�*�&�2�3�#�1�.�-�-� �:�/�2�1�2�,�,�/�+�/�,�%�9�/�)�1�)�/�/�%�,�!�.�+�"�#�'�&�,�3��$�0�5���/�+�"�/�1�)�/�-�0�#�&�/�>� �-�0��'��#�9�&�'�$�.�-�-�/�*�*�.�.�)�,�,�-�/�&�.�+�*�!�%�5�/�%�+�&� � �+� �,�(�,�-�5�.�0�)�+�&�'�"�+�%�&�'�7�'�1�;�%�'�8�+�/�)�/�+�0�5�*�!�8�+�;�8�&�2�)�:�"�(�#�&�!�/�.�1�8�$�3�4�-�0�,�.�2�4�؀Հրրр؀׀ӀҀɀ׀؀ր݀ـӀрԀ؀ــրڀׁ*�*�6�.�5�=�0�#�=�-�3�&�"�*�;�)�4�'�'�(�.�-�0�1�3�*�:�-�/�;�,�4�-�'�(�.��,�*�/�&�/�!�+�(�&�7�*�/�0�;�-�8�+�5�&�2�'�,�7�%�-�/�%�$�,�7�*�)�.�)�.�'�,�'� �1�,�3�%�/�&�$�7�&�1�+�,�'�%�*�'�*�!�-�'�-�,�,�%�*�'�%�1�6�0�*�%�%�3�#�*�3�-��+�%�$�$�1�)�,�,�$��#�,�&�+�;��(�'�3�9�'�!�5�)�!�4�>�&�,�&�(�&�/�1�4�)�3�.�6�6��9�2�5�)�!�#��+�)�2���2�1�.�,�2�%�4�2�0�7�(�,�,�*�3�-�'�!�3�+�(���,�0�&�'�,��-�&�/�)�%�$��0�2�#�-�>�2�.�9�8�*�5�7�0�$�*�*�(�'�#�)�4�#��%�*�)�0�4�%�0�%�%�;�6�1�"�3�5�9��5�4�,�1�1�3�5� �.�*�(�7�2�0�.�(�.�-�"�4�%�5� �3�$��3�$�7�,�)�'�&�(�)�'�+�#�%�6�3�5�.�)�(�%�%�.�%�,�(�(��,�/�0�*�"�+�-�*�'�3�$�.�*�'�/�%�(�)�*�-�/�$�9�.�/�0�5�3�6�+�(�'�)�(�"�#�'�/�/�0�$�$�4�)�3�%�+�8�(�3�+�,�.�+�.��/�*�,�9�+��(�6�)�-�*�;�&�1�-�&��!�3�/�*�-�&�(�2�-�!�$�.�/�'�6��1�.�<�/�+�/�,�1�$�/�3�0�-�&�-�2�.�-�$�)�:�3�2�/�#�.�8�7�/�*�.�2�-�(�)�+�5�0�'�#�#�(�&�*�7�-�+�"�'�/�.�*�A�0�&�)�8�(�3�(�(�$�:�#�3�#�,�2�(�/�2�-�-�'�#�/�0�'�$�#�3�2�/�+�=�2�.�/�)�5�8�)�'�*�+�1�*�2�0�/�,�.�7�"�/�-�)�5�.�>�,�2�&�4�,�)�,�*�<�,�6�-�-�?�#�1�ـ׀րـ؀ӀԀـԀʀՀـۀր׀рրـڀҀրՀӀЁ,�/�)�9�%�7�4��'�+�(�'�*�1�*�-�-�/�,�*�-�/�.�(�#�1�)�+�4�,�.�(�,�%�/�5�8�.�)�5�0�4�*��-�%�-�-�-�-�'�#�:�'�4�&�&�9��*�)�/�3�.�*�/�(�!�%�'�'�&�!��5�(�0�-�-�>�3�%�4���/�*�-�#�.�)�,�)�+�3�;�/�6�,�2�0�0�?�2�3�.�(�<�)�!�%�*�(�8�%�3�/�3�0�6�*�3�/�*�"�*�,�9�4�%�'�/�/�+�>�!�)�2�.�+�1�5�/�-��-�)�0�(�1�$�$��/�%�$�#�"�'�(�+�1�2�"�$�.�/�&�#�%�'�%��5�+�'�2�+�#�+�.�5�"�+� �'�*�7�,�0�/�.�!�4�1�.�&�6�0�)�/�5�'�&�*�&�/�,�+�'�'�,�*�/�,�*�-�"�%�-�#�,�4�.�2� �/�'�0�+�)�(�!�*�%�(�+�/�*�-�3�5�5�$�4�(�+�$�8�.�)�,�(�+��4�%��:�+�*��5�/��1�7�-�!��/�<�1�3�"�$�,�1�+�.�.�)�.�(�ف)�0�,��4�5�6� �%��'�*�4�+�/�&�+�(�,��/�-�1�*�=�%�'�*�0�%�,�&�+�(��4�6�/�?�-�+�3�/�*�(�&�'�'�)�5�'�*�2�!�'�!�<�2�+�0�&�/��+�5�"�#�3�+�(�(�1�-�$�0�%�.�+�%�2�(�9�$�&�5�4�'�5�!�,�%�%�%�.�*�1�-�+�)�-�1�$�1�"�)�5�/�"�+�1�-�3�-�+�&�(��2�'�%�%�(�/�'�.�#�%�7�4�0�(�#�#�"�!�8�6�1�*�2�)�'�-� �-�,�*��/�!�'�2�,�,�/�,�5�0�$�7�'�(�7�-�%�6�'�-�.�4�%�%�)�)�5�.�1�+�8�.�+�+�.�$�%�,�)�4�.�"�1�-�*�4�+�9�1�-�+�)�2�2�/�1�0�-�6�,�-�4�)�-�,�/�#�-�'�(�.�%��6�4�2�.�1�2�ՀՀ׀׀Ӏ܀؀؀ҀĀ݀ڀۀ׀ҀӀӀ׀ۀԀـ؀ڀՁ1�6�+�2�#�0�(�)�#�)�.��-�D�'�.�'�/�1�#�?�"�+�(�+�?�2�.�2�/�&�.��%�%�"�)�$�&�-�7�-�@�2�)�,�;�4��7�0�&��'�)�&�7�1�/�1�+�#�0�1�&�8�)�'�7�:�&��5�"�/�)�/�,�'�#�1�2�%�-�%�3�)�0�<�(�.�1�*�.�1�1�"�"�/�#�#�!�3�.�*�4�6�1�'� �9�1�+�#�,�/�'��,�'�2�$�,�)��2��+�+�2� �<�7�0�/�/�:�1�4�+�.�'�,�*�5�%��$�"��#��(�*�+�/�)�'� �+�#�#�.�/�#�%�(��+�2�$�)�9�+��*�3�4�(�$��+�'��'� �,�)�/�� �+�/�"�.�.�+�:�)�+�9�0�'�2�"�7�*�/�+�2�#�0� �4�-��3�2�&�0��/�(�)�.�$�*�/�-��2�"�0�9�/�'�+�1��(�.��*�&�.�)�.�3�(��)�&�7�-� �.�#�C�(��0�$���1�+�)�$�%�%�0�%�0��,�'��3�&�8�0�)�*�4�9�%��&��'�&�$�1�)�!�5�2�,��%�/�/�!�$�(�3�(�,�)��7�0��7�-�+�4�)�"��0�1�+�(�!�&�!�%�/�!�#��6�/�-�/�)��"�.�)�1�#�2�*�'�+�'�'�+�$�&�-�&�.�(�+�:�-�-�%��,�%�0�0�,��8�.�/�*�+�.�,�'�+�%��/�2�(�=�+�+�3�)�/�)�&�3�2�(�,�.�B�&�=�2�*�*�3�1�/�)�,��,�-�.�.�0��4�)�)�'�&�4�2�3�3�:�0�!�)� �(�0�7�3�$�0�%�2�(�*�-�5�*�&�$�%�'��)�&�!�6�.�.�5�$�-�3�/�,�3�#��%�'�#�*�.�+�"�6�)�2�%�4�2�$�'�*�,�,�0�!��0�4�5� �B�,�/�<�'�9�-�<�/�1�*�4�"�'�4�)�#�-�7�.�5�1�.�)� �5�7�ҀڀӀրր׀Ѐ؀ԀˀՀڀՀ؀׀؀ڀ؀ҀՀՀрڀ؁*�$�0�<�1�.�1�2�1��-�4�)�-�:�&�)�8�&�,�-�1�$�"�1�5�4�5�%���2�%��0�3�4�+�+�*�!�+�2�2�3�4�%�1�-�*�%�%�+�)�,�(�/�2�.�%�%�-�9�0�!�-�.�3�%�0�,�2�"�'�'�)�*�%�-�0�-�*�!�'�-�)�/�&�*�3�1�)�0�,�-�%�4�4�'�!�)�'��$� ��,�"�4�0�/�)�(�,�%�'�,�#�'�1�0�*�5�-�+�'�)�/�/�*�:�$�&�-�0�&��+�%�"�'�3�*�%�#�5�#�5��5�*�,�5�*�(�*�6�%��0�/�'�,�5�-�6�0�?�(�-�"�9�*�.�5�+�5�'�)�-�+�1�,�3��1�1�&�+�4�&��4�!�&�(�-��/�&�,�1�/�2� ��*� �5�3�!�B�%�)��&�/�.�$�:�'�-�"�.�)�1�*�3�(�(�%�*��&�(�(�&�,��!�%�=�/�.�&�)�-�$�!�-�&�7�'�,�/��+�&�'�?�,�-�-�#�)�.�(�#�#�.�#�!��*�2�@�1��.�&�/�*�+�1��-�"�.�%�3�.�/�2�4�7�/�)�)� �3�/� �/�,�&�1�0�*�%�$�2�-�)�!�'�3�0�&�(�)�'�-�1�-�/�#�+�/�#�(�5��/�4�%�5�&�)�,�%�)�/�-�2�#�)�9�(�)�!�*�/�%�*�0�)�,�/�#�"�*�(�.�9�'�4�)�0�-�&�$�.�+��'�/�$�%�1�0�$�!�#�-�'�"�&�!�4���3�"�5��-�7�!�/�6�!�,�'�+�-�3�#�+�%�'�9�;�,�:�.�,�1�/�*�/�(�+�+�&��+�(�&�(�%�,�!�.�1�#�&�+�.�*�0�)�4�.�+�"�%�9�'�1�'�,�-�0�5�+�&�7�(�.�4�)�-�)�2�.�$�-�-�8�*�:�5�%�2�*�!�+�2�)�,��6�-�6�3�2�%�*�(�/�"�$�:� �!�'�1�3�3�.�*�/�8�$�+�,�5�1�5�)�3�"�7�ҀԀրԀڀҀ؀Հ߀ÀӀԀ׀ԀӀ؀؀րҀрӀ؀׀ف:�0�&�3�/�,� �*�-�+�3�-�3�+�1�&�!�9�2�/�*�&���*�+�-�,�-�3�'�7�6�3�7�+�-�3�%�"�-�%�)�,�&�)�4�&�-�/�-�2�2�/�%�)�,�&�&�3�)�(�'�"�/�*�-�'�2�5�4�"�%�7�0�.�'�!�1�(�6� �3�*�2�)��&�+�%�2�)��7�-�-�%��&�*�%�*�3�#�!�*�(�+�3�%�'�'�%� �1��1�+�.�+�!�7�6�*�,�/�4�$�,�-�)�,�,�*�.�,�3�.�*�<�0�(� �/�$�(�&�,��"�&�'� �#�2�+�#�'�(�(�1�/�&�+�$�0�2�/�%�<�*�&�#�-�$�;�/�7�'�-�)��1�(�'�)�4�$�.�1�.�-�(�%�%�,��1�2�)�#�2��)�/�%�3�*�/�*�2�#�"�.�.�"�%�!�3�8�.�(�.�!�1�2�*�&�2�3�.�4�(� �4�-�'�/�%�!�'�(�-�*�)�)�(�,�#���2�(�)�� �-�:��5�'�8�+�+�'�.�)�.�$�7�;�2�'�*�0�*�'�2�!�1�(�6�$�,�*�/�,�!�-�4�)�;�6�/��&� �)�)�0��.�'�1�&�'�4�3�"�*�;�$�6�+�1�3�*�4�4�+�+�"�9�-�/�/�-�0�%�.�*�)���%�+�;�'�3� �4�)�!�.�+�8�+�,�5�9�+�(�#�2�:�*�$�%�1�/�%�3�-�5�/�)�/�)�2�6�5�2��0�7�1�/�.�.�4�-�)�+�3�.�%�%�1�9��e�4�4�-�+�9�/�1�6�2�3�+�"�-�+�&��*�)�3�2�)�7�+�)�*�/�,�'�%�.�)�%�%�0�"�)�'�0�"�8�2� �,�+�.�1�%�%� �)�6�'�,�%�5�8�-�0�(�&�(�$�#�&�8�'�8�-�&�*�%�&�:�,�&�%�&�0�6�/�/�%�)�(�1�,�(�5�,�1�%�&��%�%�$�5�+�-�.�1�*�)�1��-�+�-�*�3�%�3�;�#�+�/�0�7�.�'�:�׀ـҀۀҀڀـր؀ȀՀԀր؀΀ր׀ՀՀՀӀҀ׀с1�.�*�0�7�,�,�/�2�7�(�)�-�(�5�-�(�.�/�2�)�1�0�)�,�'�#��/�4�5�$�2�+�+�)�'�*�5�$�5�5�%�.�-� �'�@�+�-�2�;�+��(�<�*�#�(�1�$�#�-�$�)�,�*�'�(�.�4�,�*�-�4�*�-�-�'��)�:�*�)�)�*�/�#�)�#�.�'� �.�"�#�"�%�*��5�/�7�%�+�-�(�6�+�-�'�*�0�-�/�*�6�/�1�!�3�+�#�)�+�?�*�-�,�.�'�+�3�3�)�,�(�+�0�-�3�#�&�2��$�*�+�)�&�$�0�&�/� ��.�-�!�(�+�5�*�2�&�%�4�.�(�(�)�1�'�&�,�5�/�@�!�)�$�5�,�'�)�-�1�3��!�5�6�%�+�$�,�,�&�#�"�+�-�E�1�1�/�*�%�*�1�4�/�-�)�.�2�(�,�%�+�2�+�5�"�&�'�7�)�/�3�/� �4�2�,�3�8�3�+�%�'�-��+�3�(�*�-�(�.��2�+�+�&�2�,�$�'�'�-�-�-�1�%�/�6�*�5�%�$�)�(�(�2�+�0�&�6�3�+�*�)�9�/�0�%�1�'�'�,�*�/�6�0�3�"�-�$�2�#�-�3�"�*�-�/�0�*�6�5�,�:�&�3�-�+�%�2�)�+�/�4�'�+�+��*�)�1�'�(�$�5�-�.�.�4�1�1�-�+�'�-�$�)�)�9�,�,�&�*�8�2��1�*�2�,�5�3�#�3�,�8�/�3�.�)�$�(�#�'�(�-�4�&�.�5�#�6�9�&�(�1�(��3�,��a�=�#�-�-�&�"�+��C�+�'�-�*�9�'�,�6�2�*�,�(�)�/��,� �1�'�/�/�*��2�'�-��.�)�;�.�*�*�'�%�<�.�,�/�/�1�&�0�-�)�'�*�-�3�+�0�1�/�+�)�/�8�&�)�3�*�0�"�8�&�/�;�6�2�0�5�&�,�3�5�%�!�#� �#�,�;�'�'�.�=�*�6�<�>�&�/�2�6�5�9�;�&�:�'��+�3�0�.�/�#�3�+�0��1�ҀԀՀӀԀ׀ڀԀրǀۀրՀԀՀـ؀ҀՀ׀Ӏ׀Ӏׁ!�&�'�.�:�/�+�*�)�)�"�(�3�!�'�,�)�"�)�'��,�&�+�)�(�,�2� �4�&�!�+�+�6�-��2�-�!�(�1��1�6�0�+�&��=�)���)�-�7�/�)�+�1�*�,�+�(�-�)�*�)�/�5�,�1�8�3�3�%�2�%�*�4�&�3�5�2�,�)�0�%�/�$�1�#�1�/�-�6�)�4�"�0�*�,�(�5�&��'�+��+�#�#��/�2�'�$� �(�9�+�-� �3�4�.�7�%�*�)�&�!�:�5�+�&�$�2�7�#�&��$�-�'�4�*�,�#��+�-�%�+�0�0�-�5� �(�)�)�+�1�%�)�-�)�+�'�.�3�"�2�-�*�7�.�0�'�-�,�"�1�(��(�+�!�0�$�=�5�$�,�/�.�(�+�'�0�9�2�)�(�'�,�*�0�"�#�3�-�"��'�&��.��&�(�$�*�/��*�+�(�5�'�3�#�)�!�(�!�(�%�-�:�4�-�)�#�(�$�#��+�.�-�+�%�/�.�#�+�-�.�1�(�5�$�B�)�0�&�>�,�3�/�)�%�(�%�.�F�$�.��/�'�(�%�/�5�.�'�)�.�'�0�"�(�6�,�2�5�0�(�-�+�/�6�/�&�$��&�"�2�)�.�1�'�*�5�0�#�9�3�%�*�,�!�'�)�3�/�/�3�'�8�)�/�)�#�(�4�3�1�1�8�$� �(�1�-�7�%�8�,�+�,�1�3�*�)�*�'�/�/��-�.�.�/�1�0�2�'�+�'�6�1�(�/�#�&�'�"�/�)�-�5�"�)�(�k�#�&�$�*�'�"�)�#�1�*��4�*�+�)�&�%�%�-�5�"�1�"�(�%�3�5�'�'�7�3�&�,�4�/�(�,�3�,�9�'�3�?�'�+�#�2�.�4�*�-� �2�'�&�-�2�$�/�6�2�)�/�1�0��,�)�.�.�0�7�5�/�%�&�%�*�6�*�7�*�2�9�'�-�,�7�(�+�/�+�(�&�0�-��#�/�1�!�:�0�*�-�4�1�.�+�%�(�2�2�'�/�'�.�/� �5��2�؀ۀՀ؀ԀҀـрԀɀۀ׀Ҁ؀׀րـ׀ր׀րڀـӁ5�0�5�+�<�5�6�3�&�4�9�+�&�'�3�*�3�0�,�,�(��+�#�0�%�)�-�1�.��(�8�/�$�+�*�>��/��+�/�)�8�&�3�+�*�,��(�'�,��.�*�(�"��1�4�-�#�4�)�2�$�5�+�.�4�%�*�$�#�2�.�� �'��&�.�2��3�$�0�.�)�6�$�*�8�-�-�3�"�/�#�+�0�/�-�-�&�/�*�-��!�-�=�1�"�7�,�-�+�,�,�-�/�2�&�(�)�7��(�1�-�+�/�C�+�(�.�0�1�!�2��?�%�'�,�(�#�"�,��'�0�$�2�2� �)�.�7�+�'�$�2�)�.�,�(�1�*�%�1�,�1�=�.�3�(�.�5�0�+�!�-�.��4�4�&�-�#�0�#�.�*�,�2�3�+�(� �0�=�&�4�1�(�,�/�.�*�.�-�*�*�.�:�%�&�"�,�1�!�-��'�+�$�1�/�%�<�3�/�(�+�(��/�&�%�+�+�&�!�+�,�2�+�9�+�"�.�/�.�'�1�(�(��'�/�1�&�,�'�$�5�0�.� �'�1�*�*�"�1� �*�$�+�:��'�3�.�(�7�1��"�,�'�&�4�)�&�!�$�7�+�,�&�5�(�1�*�'�,�*�*�+�&�!�&� �.�8��3�&�0�4�,�/�9�#�1�'�.�%��#�5�.�)�'�"�(�-�.�'�+�*�+�,�+�-�(�$�/�)�#�/�$�$�,�4�2�&�*�7�,�.�+�3�*�&�,�+�-�D�)�/�&�)�4�/�.�0�.�'�+�*�/�%�!�+�+�/�$�'�3�.�,�.��#�)�*�-�,�!�.�!�/�'�#�#�!�7�1�-�3�.�.�%�"��%�7�1�7�$�,�(�/�0�1�,�)�*��(��(�)�4�)�/�(�'��/�$�,�.�8�!�,�+�4�-�%�*�,�8�-�"�+�3�-�6�(�1�5�+�7�0�4�)�*�!�3�D�+�1�+�!�1�/�&�&�.�3�*�1�8�9�/�8�7�!�'�)�/�*�7�(�3�"�*�1�4�C�2�3�.�A�+�ЀҀـր؀ҀӀրրȀ܀Հ׀ـԀ؀ڀՀրրـӀԀׁ/�,�$�+�6�2�1�7�"�*�-�*�.�#�6�1�"�1��(�9�0�,�A�,�-�/�#�5�,�.�)�8�5�'�-�1�$�/�(�=�6�7�/�0��)�/�,� �#�&�B� �)�%�#�*�2� �-�5�)� �.�,�/�)�*�8�-�)�,��.���%�+�.�6�&�*�.�,�.�+�1�"�)�*�$�%��:�0�1�$�"�+�.�'�&�+�'�"��#�)�.�-�#�0�0�-�3�0�-��"�/�*�.�%�2�/�2�+�*�(�/�8�3�.�7�/�(�'�.��#�:��2�-�(�&�*�-��/�.�+�-�)�$�+�+�*�+�4�,�!�/�4�-�-�.�-�1�!� �#��7�-�%�<�"�,�-�(�%��4�+�;�&�'�(�0�%�-�*�$�1��3�)��&��'�/�,�"�)�5�*�5�2�6�'�2�4�$�&�-�,�&�'�!�/�#� �(�2�2�'�.�-�.�/�/��"�#�,�/�2�#�9�%�!�"�1�6�&�$�5�'�1�,�$�5�3�;�3�-�"�0�-�3��(��%�1��(�.�'�&�0�3�0�,�)�6�-�+�/�&�'�9�(�-�3�#�.�.�!�1�)�+�.�!�"�8��+�)�$�,�+�'�)�/�-�*�$�0�-�'�!�.�0��(�<�(�!�.�!�-�)�+�"�'�"�)�)�%�!�,�*��2�+�-�-�+�(�2�'�!�/�/�(�*� �"�0�-�*�2�&�.�3�!�+�)�&�.�%�)�(�+�1�"�+�4�(�.�/�-�%�"�/�5�$�!�1��5�,�)�,�,�5�/�$�1�*�.�0�2�&� ��.�&�'� �'�8�"�5�0�5�3�$�)�.�)�2��-�1�;�2�-�)�1�'�-�1�"�#�8�%�0��5�+�6�'�,�(�#��"�(�7�-�@�(��0�4�$�-�+��)�-�(�'�>�,�"�#�.�(�&�$�3�.�,�.�'�'�%�)�/�(�-�%�?�*�#�#�+�$�6�'�<�+�!�6�.�+�3�'�%�'�/��4�:�&�2�'�4�*�/�)�4�.�,�6�+���݀؀рЀӀԀր׀ǀ׀̀Հрр׀ՀՀՀ׀؀Հ׀Ձ-�'�+�/�4��&�,�0�+�/���1�(�)�'�'�2�$�5�*�+�6�.�*�6�*�%�3�-�(�2�3�(�(�'�1�-�<�2�?�4�2�=�&�%�A�/�1�.�-�3�'�&�1�,�/�0�#�$�,�2�$�'�(�!�.�)�.�+�<�7�+�#�*�8�"�(��-��'�"�%�/�"�4�1�1�+�1�0��3�.�(��(�6�1�$�/�1�D�/�*��,�)�)�0�+�1�-�*�'�%�1� �.�/�2�+��#�.�'�!�(�,�&�'�-�(�7�'�4�0�(�&�*��%�%�"�,�$�/�#�1��(�-�%� �$�-�(�7� �/�%�/�4�.�'�+�3�%�,�#�$�-��#�2�/�"�5�&�2�%��+�/�,�8�(�!�0�&�2�!�#�&�%�*�/�0�)�)�/�,�*�3�(�+�!�5�2�2�+�*�$�/�%�3�,�-�/��#�2�%�*��+�%�8�'�,��3�3�$� �#�/�%�.�0�#�(��&�$�*�,�&�+�-�'�+�,�4�.�.�'�)�4�*�3�.�-� �3�4��5�+�)�"�2�-�2�6�3� �'�.�)�&�3�3�7�7�8�*�#�+�)�'�.�+�&�$�-�6�/�#�;�(�'�(�,�1�,�$�*�)�&�#�4�)�2�'�1�4�*�(�'�4�2�+�3�3�)��'�'�3�5�/�(�'�5�/�"�;�*�8�1�$�&�6�-�2��.�.�+�'�.�(�)�4�&�1�+��-�3�*�'�*�9�&�4�'�9�"�1�,�4�,�*�3�-�$�+�*�*�)�(�%�"� �.�%�#�,�$�&�&�/�+�&�+�#�"�3�2�)�/�*�(�.� �$�%��-�'���:�4�2�%�$�-�+�)�,�0�0�3�2�!�'�7�/� �'�$��%�)�/�,�*�/�7�&�2�,�'�!� �=�'�/�*�4�,�2�2�5�4�9�-�'�*�%�&�,�*�1�.�"�=�0�+�=�7�!�3�2�-�(�$�4�<�.�)�(�(�)�-�3�0��*�1�3�2�5�/�&�.�*�5�-�0�,�6�+�0�8�1�&�׀ԀԀԀԀրڀՀՀƀ؀ӀԀҀ׀ڀՀԀՀрр׀Ѐҁ0�0�)�2�-�#�1�,�'�(�0�/�0�$�+�)�1�5�,�)�5�1�-�,� �-�0�3�+�=�"�)�)�4�&�3�1�)�,�-�6�,�(�9�'�3�.�#�%�%�-�*�0�&�-�-�.�&�-�&�!�/�6�&�)�*�,�1�1�&�$�%�1�2�1�,�+��#�,�/�/�-�&�6�'�,�"�:�%�/�1�'�.�,�$�0�*�0�"�.�5�0�8�1�-�2�)�+�0�;�"�*�+�+�0�$�5�.�(�-�+�*�$�1�)�!�9�+�.�'�-�.�$�'�)�#�(�(�'�:�-�*�&�#�/�/�(�+�5�1�"�,�+�*�1�$�-�/�5�*�-��+�+�+�0�,�-�,�6�-�7�1�(�)�0�,�!�$�)�+�:�/�/�%�+�6��'�(�+�-�.�"�(�&�%� �+�+�#�/�+�4�*�.�.�2�3�)�+�)�0�=��0�#�.�%�*��$�'�+�/�/�;�"�"�+�,�6�0�5�,�'�9�.�#�'�:�(�&�6�+�*�&�,��$�.�:�,�#�3�)�9�/�/�+�+�'�#�!�/�5�.�(�/�!�6�%�#�3�)�2�(�/�+�)�,�/��-�&�%�-�>�+�-�.�$�7�!�2�&�+�!�1�.�.�5��(�7�4�0�2�)�(�*� �#�/�:�)�1�1��&�6�(�&� �"�"�4�/�>�*�&�&�)�7��+�!�+�$�.�8�;��'�3��3�-�1�,�"�.�(�-�(���-�.�#�$�*�(�%�"�/�)� �7�*�)�-�6�$�"�!�"�%�5�*�*�*�2�)�0�+�)�$�'�(�2�%�+�$�9�,�'�<�$�'�:��#�1�6�+�*�/�9�&�@� �.�'�,�$�9�%��%�-�-�/�!�%��4�1�-�.�'�3�&�4�/�1�6�*�$�5�=�#�'�%�$�/�)�3�(�1�*�0�1�+�%�/� �-�8�2�(�'�-�#�/�'�5�/�&�2�'�.�'�7�.�+�$�(�.�9�&�.�0�0�-�*�(�:�*�!�+�)�)�9�(�.�&�-�1�&�2�4�:�6�*�:�%�7�-�/�=�ۀՀڀڀۀրрـՀˀـր׀րԀӀـրր׀׀Ӏـׁ&�'�)�+��1�5�/�)�2�/�.�'�(�.�7�+�'�0��.�!�'�-�,�/�,�*�:�3�8�:�(�*�0�.�5�+�#�.�*��#�9�"�-�'�(�#�$�+�(�%�4��/� �'�1�&�2�/�$�)�/�&�6�2�,�C�+�#�%�,��6�+�#�/�/�'�/�5�"�/�-�1�#�+�8�#�6�.�/�4�&�6�*�(�(�"�%�/�2�0�#�)�3�)�-�-�#�1�&��%�$�1�-�/�%�+�1�)�*�(�%�3�)�>�2�.�(�9�)�&�:�;�'�+� �.�,�-�1�&�'��.�(�2�*�'�$�,�5�*�/�.�*�/�(�'�+�%�,�)�(�-�"�7�3�!�5�3�(�/�%�8�0�%�0�-�+�*�.�$�-�.�7�3�(�7�3�:�:�.�:�� ��+�0�/�3�3�1�-�8�,�3�)�2�6�+�%�2�+�2�#�.�4�,�-�&�&�7�)��"�(�1�-�!�3�/�$�!�!�-�7�,�,�1�4�(�,�%�/�0�*�"�-�-�2�)�/�"�/�-�/�3�$�1�<�%�-�7�&�.�3�(�5��6�&�"�,�/�'�=�-�8�7�4�*�!�)�*�/��'�%�,�/�$�/�/�%��%��1�2�$�0�&�$�+�/�*�0�/�&�0�.�/�0��!�2�5�&�'�+�#��3�3�#�5�(�(�-�3�-�$�(�)�5�1�%�/�5�#�)�/�'�4�0�3�%�!�&�(�$�4�)�-�/�8�%�*�/�)�!�)�/�8�%�=�'�,�-�7�3�)�,� �$�5�&�,�&�5�/�-�.�+�$�1�.�<�.�,�+�0�,�/�-�<�<�/�5�H�>�(�2�6�4�/�"�*�$�)�/�(�0�'�6�0�"�-�.�-�1�)�,�5�'�*�+��/�6�-�3�.�+�!�#�"�"�-��(�7�&�C�*�6�&�/�0�%�<�(�*�(�1�0�,�"�0�+�/�1�0�#�.�$�*�)�1�%�$�/�*�0�%�)�"�8�+�%�)�&�0�3�+�-�$�&�'�3�&�8�.�*�%�<�/�'�4�4�/�*�3�-�.�7�1�րрՀ׀؀Հր׀рˀրۀҀـր؀րۀۀр؀ҀրՁ2�1�-�3�"�7�/�.�)�5�#�.�*�3�4�2�*�=� �1�&� �/�(�+�3��)�/�9�-�5�"�3�4�#�,�-�&�*�(�3�#�6�1�/�.�$�!�)�/�0�&�9�)�4�(�'�(��6�,�$�,�8�#�3�6�1�2�4�8�+�*�'�3��,�$�:�.�3�B�.�'��-�-�-�*�%�5�&�#�*�,�(�.�-��)�-�8�/�2�7�,�(�&�4�3�5�)��(�(�*�&�0�/�&�3�:�+�.�'�/�-�*�/�)�(�.�1�4�/�5�'��0�#�/��%�.�6�*�'�/�(�-���2�*�"�-�/�)��+�6�.�!�*�'�(�-�/�)�0�4�(�&�7�;�+�.�-�7�'�7�6�,�*�0�.�(�$�*�3�&�/�+�*�+�(�+�#�*�&�2�.�4�1�%�-�-�'�-�,�,�+�$�2�-�&� �.�*�6�"�,�/�2�-�&�$�3�9�&���.�?�!��4�3�)��.�)�)�'�%�6��#�/�&�*�!�2�.�'�%�.�9�(��+�%��-�,�&�.�$�(�'�*��'�-�/�1�+�2�8�#��+�)�&�)�-�*�1�'�0��-�3�(�)�$�-�#�'�3�.�0�(�+�(�#��)�8�:�%�%�.�%�/�3�/�*�'�2�&�'�+�(�"�,�%�$�8�.�0�4�)�-�"�.�&�)�(�*�)�5�0�9�)�%�0�*�3�&�0�$��*�2�(�6�,�/�:�+�E�.�!�,�3�*�.�-�+�*�2�*�9�-�+�-�-�$�,�,� �+�1�5�)�5�%�,�&�1�(�1�6�*�7�-�-�1�1�&�$�!�2�+�1�+�0�7�&�)�+�3�*�)�&�#�'�(�)�3�9�'�(�(�0�4�-�-�+�+�"�"�0�#�#�)��1�,�'�+�%�0�,�(�$�(�(�(�0�4�)�0� �*�.�"�(�+�*�&��C�)�'�/�'��4�#�2�:�4�4�&�3�#�.�)�$�!�%�0�.�3�3��$�+�9�,�4�5�.�2�)�*�%�'�6�&�6�)�/�(�#�6�+�7�4�ـր׀πӀ׀ԀڀրɀЀԀՀ׀ՀۀӀр׀ҀӀԀҀ܁-�.�)�0�"�/�,�*�=�2��(�)�%�(�/�(�)� �4�)�%�$�*�'�*�"�5�7�0�1�2�)�:�(�(�,�)�1�0�&�2�)�$�6�*�-�%�"�2�/�%�(�#�,��$�*�7�'�'�)�:�,�6�4�-�4�+�+�/�.�/�+��$�&�0�+�#�)�4�5�(�!��:�0�%�-�5�4�.�2�*�&�4�!��4�!�#�*�(�6�=�%�5�/�)�"�7�(�+�/�,�2�-�� �7�(�,�*�/�*�2�/�+�+��6�-�.�:�+�-��/�%�$�7�2�*�(�&�'�$�1�*�0�'�*�&��)�3�/�(�"��1�&�)�6�!�)�/�/�1�>�+�.�&�*�,�&�-�/�4�,�.�3�+�+�,�+�.�/�2�3�9�&�3�)�-� �(�8�,�#�.�.�$�(�%�,�)�'�2�*�%�.�-�)�.�/�,�/�7�!��2�)�*�3�,�)�1�%�*�2�*�/�'��"�+�*��'�:��/�,�2�+�+�;�3�4�#��&�%�6�*�1�+�1�,�!�.�$�#�<�2�7�/�)�#�-��?�1�6�7�"�/��#�(�&�#�,�<�"�5�/�2�'�0�)�+�3�+�,�6�+�"�,�<�)�/�=�,�.�,�)�/�%�2�.�*�%�7�&�(�9�:�+�1�+�6�-��0�'�$�,�4�#�-�1�.� �3�4�#�%�/�)�1�0�)�(�3�.�(�-�-�)�4�1�-�(�.�+�-�)�8�(�7�%�)�,�-�5�&�"�#�+�$�'�+�7�"�0�6�%�%�/�7�0�+�/�#�(�>�+� �;�%�/�.�0� �.�*�!�'�6�'��#�,�0�2�)�0�,�*��,�0�!�9�3�*�6�.�/�-�'�&�2��9�0�#�4��#�'�(�/�*�7�>��/�/�,�-�-� �4��%�0�6�/�4�.�-���+�(�'�/�-� �"�!�2�*�/�%�*�6� �/�,�3�4�&�%�/�6�2�,�.�0�+�+�-�*�1�,�2�)�3�-�3�"�,�9�-�4�;�+�(�1�<�5�+�#�+�+�2�.�ҀӀՀ׀؀׀ԀӀՀǀـҀ׀׀Հـ؀׀Ѐր׀׀Ӏց$�7�(�6�%�,�7�/�/�:�-�.�'�%�/�'�A�)�2�/�8�"�4�0�7�0�-�/�%��'�$�3�*�.�.�9�,�.�*�)�.�1�-� �,�6�*�*�+�;�1�8�#�)�2�,�1�-�,�'�(� �(�0�0�)�&�.�*�'�5�.�'�4�*�!�0�(�-�4�;�:�(�$�"�;�7�5�,�4�)�*�-�.�!�,�#�5�'�4�3��-�*�/�+�5�7�&�&�.�&�0�*�/�"�4�0�5�%�&�5�+�;�2�/�#� �*�3�&�(�8�$�)�!�5�/�6�2�,�*�4�*�/�+�/��0�.�#�#��%�4�0�'�"�(�(�'�)�+�5�(�+�-�0�1�<�/�'�*��=�,�&��,�#�$�2�?�%�#�<�+�,�2�'�-�.�0�'�%�.�(�2�1�,�<�/��*�%�0�.�&�.�-�'�#�'�-�.�4�&�$�D�,�+�*�/��$�"�1�/�$�.�2�%�&�"�%�+�(�)�/�)��(�,�0�0�0�+�8�3�4�*� �>�!� �1�1�2�)�&�'�<�5�"��4�&�%�6�%�8�)�'�/�0�&�!�-��%�'�-�,�(�3�&�+�'�'�7�)�5��'��-�1�2�%�3�.��5�)�+� �2�2�7�1�� �2�� �)�&�-�0�4�1�'�'�5���6�/�!�)�-�2�!�%�-� � �1�4�9�$�*�&�2�"�+�(�6�!� �)� �*�#�(�)�2�.�3�3�/�6�,�6�'�0�-�,�*�4�(�:�"�/�+�$�,�&�%�;�.�2�%��*�(�4�/�"�!�.�!��5�7�7��)�0�0�%�3�#� �#�5�7�)�,�*�)��9�1�4�3�%�/�#�2�-�8�%�/�2�)�5�1�8�,�2�3�+�&�(�7�2��,�%�.�*�4�)�%�-�(�)�2�1�)�>�/�=�6�'�'�,�"�'�(��&�*�+�0�.�(�2�$�'�7�%�&� �1�&�,�(�!�)�.�&� ��/�+�(�0�@�)�+�4�8�3�7�/�2�-�'�*�)�<�*�,�?�:�.�)�.�,�ҀҀۀЀԀ؀ڀրՀĀրڀԀ܀рӀՀрրրـԀ�؁1�/�.�5�3�6�6�%�3�+�&�6�.�/�6�6�-�2�-�1�3�4�6�'�*�#�6� �5�<�*�)�4�"�(�.�7�$�-�4��8��)�3�&�-�*�8��)�1�4�%�'�6�3�4�$�6�,�� �"�(�$��/�&�!��4�,�)�)�$�1�(�'�4�,�3�-�0�#�#�#��'�-�7�)��6�.�+�4�1�9�/�$�'�,�)�)�-�,�.�.�2�-��!��,�%�:�2�.�2�,�+��#�&�3�.�*�.�0� �'�7�1�G�4�(�@�2�$�4�$�-�3�5�!�/�-�,��4�'�1�@�-��3�,�-�1�1�*�"�(�-�<�)�'�)�5�(�(�+�.�1�1�/�,�"�3�3�5�1�+�;�2�!�&�1�/�6�-��-�*�,�%�$�2�,�,�,�.�+�5�)�'�9�*�1��'�+�)�7�$�,�0�,�+�-�,�-�*�*�)�5� �/�(�%�/�"�+�-�/�9�#�<�6�2�3��(�1�(�9�,�&�0�*�*�-�1�0�)�1�'�+�(�-�:�%�2�.�)�!�(��(�;�%��2�2�3�$�/�6�2�1�8�(�.�)�%�*�)�0�.�0�$�#��4�(�3�3�:�'��-�.�&�.�&�9�-�5�0�.��+�,�.�4�*�.�5�<�-�+�,�=�&�,�3�/�,�$�1�5� ��8�4��1�?�%�+�+�+�,�.�'�4�%�"�9�/�0�$�)�+�&�'�/�+�4�4�'�%�2�'�2�$�#��2�,�#�+�-�-�2�,�$�)�0�5�.��0�.�/�.��,�*�/�+�6��,�4�1�*�$�/�0�%�9�!�9�6�'�*�&�#�?�#�(�1�%�4�'�+�+�+�2�:�)�.�)�'�*�$�.�5�*�6�)�/�8�!�*�0�.�$�3�&�$�*�$�0�(�!�&�1�8�$�6�/�/�5�4�,�&�-�"�;�#�)�6�.��.�'�0�"�,�,�!�#�0�+�2�(�2�7�&�,�,�-�-�I�&�)�/�-�5� �$�1�&�)�!�*�1�2�,�2�0�,�@�D�B�9�5�)�1�ԀۀՀ؀ӀҀ׀��܀ŀڀ׀ـҀ؀׀րր؀րрՀҀ؁+�1�3�*�"�;�%�"�*�7�.�)�2�/�0�)�:�5�(�6�/�8�!�)�/�1�%�+�*�:�.�)�.�+�1�-�2�C�#�)�+�+�#�3�%�)�*�0�&�$�$�1�4�*�5�%�*�#�6�*�-�.�#�3�1�:�,�*�3�3�5�/�/�)�4��)�0�2�4�3�5�#�/�'�)�4�)�+�#�&�-�(�-�2��*�&�+�6�)�*��4�5�7�*�(�*�*�3�3�"�-�,�&�/�-�"�+�+�%�!�"�/�$�(�)�+�"�/�=�/��2�*�.�$�3�2�'�-�#�%�*�;�&�+�#�4�3�%�"�)�4�!�(��*�3�)�'�-�%�*�%�&�/�5�1� �!�.�)�4�'�%�,�%�-�'�-�.�/�)���#�'�)�/�)�-�1�,�%�2�$�%�/�!�2�&�!�1�)�3�%�)�.�-��2�$�(�1�/�)�#�,�2�3�)�1�(�)�!�4�*�8�5�*�2�4�*�.�,�/��-�&�)�;�8�2�/�)� �/�(�!�-�-�2�$�/�/�(�.�.�.�'�2�(�-�+�.�2�*�&�'�(�;�3�&�8� �2�-�0�7�-�*�'�*�0�'�3�#�-�-�(�/�&�"�*�$�!�,� �9�(�%�7�4�#�)�0�)��,�5�,�4�4��(�1�-�#��.�/�+�)�+�2�"�+�-�8�'�/�"�1�&�-�&�$�'�/�E�!�/�'��,�.�'�2�$�/�%�-�&�+�%� �4�(�.�4�)�(�/�;�.�%�4��2�-�'�&�$�"�)�&�(�#�,�-�+�)�0�-�7�+�4�&�6�"�+�/��"��3�+�'�&�*�!�(�1�2�2�:�&�/�7�.�*�1�$�-�+�#�5��&�%�&�%�(�-�+�%�*�/��;�1�+�$�!�8�:�1��/�/�&�!�.�/�.�!�#�.�-�*�3�+�.�/�2�4�/� �2�*�,�+�(�1�,��%�.�#�!�(�2�/�1�2�-�(� �%�:�(�/�(�/�+�$�(�)�9�1�8�-�0�,�/�.��1�*�/�-�7�:�(�0�/�$�5�,�%�րҀـԀـڀՀԀՀŀ؀׀ԀՀ؀ҀՀՀրۀӀ؀ހׁ3�2�.�%�&�.�:�2�5�*�&�!�(�-�;�%�H�!�.�5�1�.�#�/�3�(�2�)�*��*�,�6�)�"�.��4�4��,�)�5�,�%�4� �)�'�2�(�'�.�'�3�'�)�$�#�(�1�(�4�'�&�$�,�$�)�,� �3�%�1�/�+�'�*�.�(�9�#�3�,�7�#�&�.�(�%�.�)�#�,�)�'�/�'�=�9�!�0�1�!�#�+�+��1�2�)�)�*�5�'�@�"�.��2�%�4� �(�8�0�.�6�1�4�+�.�+�/�0�+�*�-�0�!�#�2�/�(�-�%�+�)� �$�+�+�8�(�-�2�*�(�+�3�'�&�+�/�#�'�3�&�"�'�/��2��5�"�+�)�&�'�!�+�5�+�,�#�,�3�4�*�*�-�5�+�/�(�=�.�.�$�-�&�.�1��2�#�&�%�.�+�D�4�%�5�,�!�.�.�,�9�&�(�2�$�)�)�:�*�*�%�)�*�"�)�&�/�4�/��(�*�0�4�3�#�+�6�+�$�%�!�7�'�$��B�)�5�(�3�+� �)�7�0�0�)�0�(�1�"�$�.�)�1�7�,��.�.�(�%�0�5�-�5�%�#�.�.�$�#�(�&���#�#�3�'�+�-�)��-�#�&�.�2�/�0�-�=�3�%�&�-�.�0�#�0�0�%�2�5�*�D�0�2�+�6�+�"�&�/�$�,�#�(�)�&�!�%�)�/�0�4�1�0�#�-�0�.�)�-�5�%�/�&�(�-�$�&�,�*�5�)�,�4�8�,�)�'�$��0�.� �,�+�/�3�.�2�4�.�(�,�-�"�)�"�(�5�'�$�-�,�(�0�'�,�(�(�'�,�(�+�.�.�!�#�'��8�+�8�*�/�-��-�(�4�(�:�,�/�)�*�+�%�-�/�.�-�(�2�"�2�,�4�3�0��2�.�)�#��,�&�/�(�$�.�3��1�-�)�:�'�9�5�5�6�(�+� �'�5�7�5�3�"� �#�7�/�.�,�$�5�$�8�&�)�1�6�0�+��7�%�4�.�0�-�7�-�"�%�1�4�7�7�3�.�:�3�ӀրӀـԀԀ׀րԀƀррՀ׀׀׀Ԁր׀ԀրҀπف&�.�6�,�&�2�)�0�*�+�5�%�0�0�-�*��'�-�/�+�9�,��-�2�:�1�/� �.�6�<��4�+�1�1�9�6�0�(�4�3�5�0�<�5�8�/�5�.�6�9�(�.�"�9�/�)�:�5�%�4�2�(�/�2��.�/�3�!�,�*�?�2�-�-�(�7�+��7�4�/�3�(�2�3�.�,��/�+�;�3��0�,�2�(�?�(�*��-�0�/�*�3�,�8��%�+�2�.�0�8�%�6�'�&�?�*�&�*�*�'��-�+�-�!�)�6�"�)�6�1�,�&�*�$�,�)�$�#�*�)�!�-��-�,�)�1�*�6�2�1�*�1�%�+�.�,�$�%�5�,�/�)�'�)�2�/�#�!�(�#�(�+�'�!�?�.��4�-��0�3�+�"�(�#�9�6�+�#�1�+�$�4�)�(�1�'�.�*�*�7�'�8�8�$�(�*�1�/�-�%�%�.�4�2�/�9�*�+�1�'�!��)�&�!��/��+�-�(�*�,�,�'�*�"�.��>�+�0�:�"�,�4�:�3�0�)�#�6�%�/�?�!�(�*�)�#�*�-�/�"�)�!�(�.�'�/�+�)�-�2�#� �#��#�<�/�(�0�/�+�4�0�0�2�/��-�+�,�*�&�/�5�2�(�/�-�5�&�!�)�3�1�/�(�*�0�*�%�-�2� �+�4�+�%��/�-�.�*�/�+�2�0�(�0�&��"�/�-�(��'��(�#�(�+�B�*�&�+�%�!�%��3�/�2�'�(�)�9�1�5�.�#�9�#��%�$�-�2�.�.�,�1�,�$�'�+�*�)�"�0�#�0�/�4�)�)�/�%�.�2�(�.�-�,�/�%�%�3�0�(�'�,�0�3�6��+�,�)�%�*�*�5�+�(�-�-�.�'�!��!�&�&�5�/�2�+�&�-�1�2�!�1�'�0�;�*�-�/�!� �-�'�-�-�5�+�!�)�$�1�0�-�-�,�)�(�2�-�,�5�.�'��&�+�5�+�7�,�8��3�+�3�/�2�$�4�5�2�;�,�6�1�.�)�5�-�9�5�8�+�2�؀؀Ҁ؀Հڀ؀ԀՀǀЀۀڀӀրـۀ׀րـ׀׀ۀҁ2�B�2�<�/�.�/�(�B�2�*�'� �7�'�(�/�1�'�/�#�&�/�$�%�'�$�,�*�"�&�/�+�.�/�2�0�%�2�.�%�+�*�-�!�-�6�4�0�&�&�%�/�%�%��4�$�8�%� �*�0�*�9�;�"�)�$�6��0�/�&�)�-�"��5�0�8�/�2�'��-�-�)�(�*� �4�1��0�(�=�+�'�9�&�9�&�6�5�-�4�-�-�2�-�4�3�'�*�.�-� �+��-�,�.�(�%�/�&�%�'�/�(�3�.�7�-�5�!�-�2�+�+�'�2��0�/�&�'�,�)�.�*�+�3�#�)��)�/�*��0�3�.�/� �-�/�8�!�1�6��2�"�'�0�1�5�*�+�+��+��0�5�$�+�(�+�.�-�$�-�3�'�'��2�&�-�+�8�5�1�#�#�<�.�4�,�/�-�0�*�=�'�8�'�*�2�/�*�1��/�3��,�/�.�!�/�)�#�3�:�+�/�9�/�;�2�+�6�/�/�#�#�)�7�5�'�1�7�,�'�*�!�'�#�-�$�2�+�(�1�3�.�#� �+�<�2�9�'�+�'�$�*�*�"�/�(�$�%�+�"�%�,�+�(�$�6�0�/�,�0�*�&��!�!�4�!�1�#�#�8�,� �&� �+�3��$�3�1�+�%�%�5��/�5�5�,�7�'�1�8�.�#� �%�*�)�-�$�7�+�-�*�"�6�-�"�0�*�'�-�$�3�1�(�1�5�.�(�-�;�$�3�(�6�"�)��1�7�(�/�(�&�*�+�/�:�/�7�3�1�.�+�$�(�<�/�.�1�1�,�*�1�"�#�;�2� �*�,�)�'�0�%�;�,��'�)�+�+�2�.�/�+�7�.�-�,�(�,�'�<�8�0�-�-�/�*�*�'�6�&�7�'�(�'�"�)�)�.�$�!�!�/�1�#�-�8�9�-�(�!�,�,�5�/�*�-�*�:�1�5�0�7�-�-�?�7�#�<�/�#�7�*�,�5�*�5�#�6�$�2�%�-��!�0�$�1�)�3�9�.�.�!�2�+�(�'�;�3�"�+�#�(�1�-�'�׀׀ڀր؀ՀӀ؀рɀ݀Ԁ׀րҀـ׀׀րۀӀـڀׁ*� �2�/�#�%�5�0�%�6�(�1�!�2�5�.�4�4�1�2�6�.��)��'�(�$�$�$�0�,�!�/�4�1�!��7�5��'�1�%�2�)�+�*�.�3�'�-�)�/�$�6�1�-�:�!�$�-�+�(�&�*�,�,�2�%�+�&�2�&�1�"�*�*�3�(�'�+�$�2�1�/�+�"�6�.�-�)� �.�&�2�*�1�C�%�'�/�*�+�#��,�=�1�(�(�.�(�+�9�/�/�(�1�1�"�*� �,�.�4�*�2�9�+�'�,��)�%�-�2�+�2�-�/�5� �!�&�6�,�2�0�+��%�*�#�.�5�0�-�&��*�.�8�5�/�2�,�%�.�*�$�;�#�%�.�&�"��(�-�;�/�0�2�2�-�"�(�0�*� �2�/�#�!�4�&��-�-�#�.�2�"�(�.�$�'�*�>�'�,�*�%�)�#�@�+�+�)�*�)�!� �*�0���%��*�3�%�2�"�5�'�1�7�-�#�$�0�1�/�6�2��4�#�/�.�3�)�0�/�/�-�(�-�4�7�3�6�*�/�:�#�7�7�8�.�#�*�,�*�+�)�0�6�,�$�:�/�)�&�6�-�"�(�'�>�/�4�:�@�0�!�/�#�0�(�.�)�$�/�'�+�6�(��2�-�&�;�*�$�/�(�,�+�+�&�2����4�5�)�%�&�.�+�%�!�$�$�1�-�!�$�-�(�/�)�+�-�,�.�8�'�)�/�$�1�+�2�,�+��&�/�3�'�,�2�-�4�#�!�>�6�9�#�<�/�3��5��-�2�5�6�4��2�+�)�*�7�7�#�/�(�.�)�!�6�$�'��,�-�(�&�0�2�*��(�-�3�-�%�0�0�*�1�6�)�2�+�5�5�,�3�)��#�/�(�&�5�0���.�(�+��0�*�1�0�,�,�(�,�!�#�)�*�*�&�)�9�)�+�*�$�9�&� �)�,�'�/�-�+��.�2�+�4�-�0�)�5�(�&�)�1�0�5�$�'�"�1�/�&�"�"�4�+�,�?�)�%�(�,�1�4�+�.�+�&�2�1�0�5�ڀӀۀՀــ׀׀ӀÀـڀՀӀր׀рրր׀؀ڀԀԁ1�+�&�1�3�0�/�1�(�,�-�7�)�<�)�*�,�!�&�6�2�7�4�6�*�4�-��'�/�4�%��$�<�%�/�)�+�+�!�0�.�+�:�$�*�'�1�&�$�1�&�.�/�)�2�,�9�5�-�$�0�0� �!�+�#�0�&�/�!�-�2�2�7�&�/�-�2�-�4�"�4�3�/�+�-�/�,�.�.�6�!�5�*�(�&��!�%�#�,�0�1�2�4�-�+�8�+�%�,�+��+�8�&�(�&�,�8�+�0�%�9�-�%�1�2�4�$�/�'�*�)�-�%�3�'�1��B�2�3�.��/�/�5�)�"�)��/�5�+�,�'�3�3�%�*�#�+�3�7�3�8�*�'�0�.��#�$�6�.�;�!�3�-�)�@�.�.��&�(�/�&�0�/�/�+�%�.�+�%�"�*�.�&�0�/�"�1�$�3�6�*�6�3�&�4�.�/�(�(�/�%�4�#�(�!�.�,�,��&�+�&�%��,�+�'�%�>�)�5�#�*�.�(��$�)�.�,�(�1��*�&�*�(�<�"�%�>�,�)�(�(�<��'��,�5���2�'�,�3�.�.�"�*�9�5�&�7�-�8�.�%�1�"�-�0�$�2�.�#�2�0�7� �.�%�*�+�+�9�8�0��&�%�$�/�)�5�6�+�3�#�"�4�#�-�1�"� �9��*�'�4�(�*��+�+�0�$�"�2�/�/�"�6�'�2�.�0�2�,�/�'�?�7�$�*�.�,�!�%��*�"�+��*�)�0�,�&�.�(�*��-�#�(��)�/�&�/�$�!�2�+�-�3�,��.�(�+�,�&�,�"�-�/�<�1�/�*�<�)�+�-�,�+�6�'�,�+�7�'�-�5�#�$�*�0�'�)�!�)�+�,�-�'�#� �1�2�/�*�#�-�&�/�%�(�-�/�+�-��4�-�3�C�*�0�1�1�-�0�&�A�3�$�'�)�%�-�%�)�5�*�'�*�&�3�!�#�-�-�+�8�,�+�3�$�*�-�,�>�#�3�+�0�/�;�"� �*�0�.�<�7�+�'�(�.�/�!�&�8�+�:�*�%�؀րՀӀՀπ׀Ԁπŀ؀րԀ׀׀؀׀ڀ׀րӀ׀ڀՁ6�/�5�;�(�0�5�$�7�0�-�$�&�,�"�#�'�6� �.�4�,�-�2�-�$�/�'�/�#�8�/�(�3�.�%�8�3�1�+�.�.�2�0�)�$�$�0�3�%�.�8�0�$�8�%�'�-�3�2�6�)�$�=�-�4�'�4�3�)�"�#��<�1�!�7�,�'�/�-�%��2� ��#�%�#�:�!�!�/�2�+�*�'�)�'�.��0�#�-�,�.�1�!�2�-�$�#�(�6�/�2�-�4�#�%�/�6�*�+�.�%�/�1� �/�'�"�=�2�,�/�#�*�%�/�"�5�-�6�.�(�#�9�'�/�0�3�'�$�'�,�3�7�.�+�!�%�*��,�'�/�1�3��3�)�6�.�&�7�+� �.�*�*�3�-��1�8��$�'�"�'�1��5��;�3�/�4�'�.�2�/�@�2�#�+�/�1�6�'�%�&�8��,�,�&�'�%�)�+�/�+�9�1�(�8�0�/�)�+�"�&�&�6�*�'�*�-�(�(�"�.�(�5�'�'�-�.�+�/�.�6�<�$�6�-�4�8�$��4��-�1��4�)�4�<�#�+�)�9�'�1�2�)�)�2�/�)�'�#�0�-�+��&�'�/�+�(�(�2�0�*�2�+�5�-�1�*�+�+��*�7�'�$�.�-�(�=�-�/�-�.�*�*�%�0�$��4�+�3�0��2�4�-�*�,�*�0��7� �.�"�2�,��/�1��9�)�*��/�/�!�'�/�"�'�+�/�7�,�/�(�'�&�(�(�.�$�+�!�'�-�+��$�-�/�+�(�.�1�=�$�6�6�1�-�(�.�*�)�%�%�!�4�%�)�-� �+�1�!�0�+�8�+�;�(�,�;�+��*�2�%�0�1�$�)�/�+�'�,�4�%��(�$�-�+�*�!�,�&�,��*�<�(�1�%�'�/�*�2�$�)�,�;�3�/�3�/�$�&�/�$�/�,�.�%�;�,�)�5�.�&�/� �<�&�+�'�3�+�'�#�3�)�*�0�8� �1�(� �%�1�0�/�/�,�+�*�2�/�(�7�&�1�(�*�,�*�-�'�&�5� �Հـ׀րڀ׀Ԁ׀׀Āـ؀Ԁ܀Ԁـ؀ҀـԀրՀڀс2�6�2�<�5��)�.�%�9��)�$�%�,�'�.�1�7�2�)�#�1�.�9�(��1�3�$�#�0�+�'�)�&��+�$�+�)�1�8�'�+�*�+�,�*�1�5�)�)�)�:�(��.�%�8�'�&�,�'�%�0�3�0�#�)��/��/�)�.�,�9�2�-�"�;��/�&��$�-�%�+�%�-�4�2�(�+�7�&�#�'�.�+�#�6�1�"�#�+�"�#�4�%�#�2�1�(�*�-�'�(�0�-�'�A�(�3�(�'�1�3�,��3�$�+�4�(�(�3�%�8�%�'�(�3�/� �-�%�)�%�#�"�#�'�#�*�$�)�/�!�1�)�(�:�#�)�"�#�%�#�"�3�2�*�/�6�*�.�&�(�(�#�(�3�-�8�3�4�2�3�/�&� �9�5�6�*�'�2�#�*�"�1�:�*�,�(�%�'�*�)�-�*�&�%�/�&�'�(�3�.�%�6�$�)�,��,�,�"�:��'�3�0�+�1�2�)�(�2�'�.�=�!�'�9�!�%�%�.�'�1�6�1�.�3�7�$�)�3�4�+�)�/��0�:�/�+�'�%�&�'�'�3�&�&�0�"�,�2�6�2�*�-�.�.�)�3�$�&�.�5�"��0�0�+�!�1�%�6�(�-�&�"�#�2�)�+�&�)�(� �(� �2�'�'�&�(�%�1�0�4�)�-�+�'�,�(�1�5�+�/�.�"�/�*�'�&�(�(�&�0�'�.�7�"�$�0�,� �)�)�.�*�?�&�*�)�#� �0�8�"�0�+�,�-�*��5�-�)�*�%�.�8�-�"�:�+�1�1�+�5�"�)�2�&�"�5�0�)�%�%�-�*�+��.�&�2�$�3�)�#�"�/�=�6�(�,�!�%�+�%�#�>�#�1�4�(�&�)�.�'�(�%�(�-�%��'�9�5�/�3�(�!�,�4�-�.�5�8�1�)�$�+�/�)�'�!�0�5�*�6�-� �0�2�.�,�4�<�1�2�1�7�0�+�3�6�3�'�&�%�.�$�4�,�.�(�3�%�=�2�#�3�.�/�'�!�%�-�-�/�/�)�5�+�-�(�*�,�&�'�#�րڀҀրրՀӀ׀Հ��ԀՀ׀ـۀـ׀Ԁ׀ՀـπڀӁ1�,�7�+�'�,�&�-�-�)�7�4�"�)�)��.�!�9�)�.�*�'�*�/�%�.�1�+�3�+�,�)�5�1�.�(�6�,�#�#�7�6�$�7�'�,�&�1�,�,�'�2�0�/�3�+�,�+�3�'�'�0�7�-�'�/�%�.�+�6�!�0�4�/�<�.�%�/�-�.�0�>�;�)�>�3�1�/�2�1�2�#�5�2�=�*�0�*�&�%�0�,�/�)�<�)�$�.�&�(�.�5�*��2�-�!�&�$�6�)�&�2�5�&�)�.�"�-�,�*�&�.�*�0�"�4�*�5�'�&�-�/�4�,�$�$�&�-�1�%�&�-�%��3�3�'�6�3�+�.�)�5�3�(�6�3�-�/�'�8�0�/�=�-�,�:�+�2�'�7�!�+��*�)�9�+�>�"�4�)�&�)�(�/�)�.�)�2�)�&�/�4�-�5�0�,��1� �-�,�$�4�)�4�+�,�0�)�,�.�3�%�7�;�+�,�(�1�-�!�(�&�1��+�-�)�-�+�,�-�)��+�,�-�,�*�(�%�+��*� �&�/�3�'�#�2�3�/�8���-�%�*�4�.�&�$�8�!�2�/�'�%�)�'�,�&�3�-�3�<�3�)�+�&�4�/�-�#�(�+�%�/��-���3�$�8�$�1�)�!�&�.�(�*�?��3�3�*�(�)�/�1�'�*�,�$�0�.�8�1�9�2��1�/�(�3�/�'�/�*�,�-�$�+�"� �!�)�*�.�,�%�7�-�4�"�(�7�5�/�9�$�1�)�*�,�*�,�$��/��-�#�2� ��)�/�1�1�%�'�+�0�/�-�(�9�/�2�)�7�5�,�,�:�$�+�5�/�)�+�.�$�/�0�%��"�*�/�.�$�"�*�1�&�3�4�7�5�5�*�/�+�-�5�6�(�8�5�(�,�&�9�'�,�+�%�.�,�+�/�,�+��!�;�8�$�(�-�2�(�/�8�+�3�.�4�*�0�+�-�4�)�*�1�&�)�0�6�3�&�6�,�)�9�/�2�2�+�+�(�-�.�*�)�3�(�/��$�(�+�+�0�!�:�%�6�2�:��-�ـӀ׀րۀԀـπԀɀڀـ݀ԀҀҀ؀ӀррՀ܀׀Ձ,�/�7��.��"�&�2�#�;�$�-�/�/�2�6�3�.�!�/�6�-�/�'�1�'�)�-�$�(�7�<�%�%�:�)�/�9�2�2�$�/�(�-�:�!�(�.�2�/��"�/� �3�6�!�2�(�3�,�+�5�2�0�-�&�.�$�"�'�%�'�%�.�0�3�5�2�<�0�/�*��3�+�1�&�-�%�/�$��*�%�0�5�2�/�-�8�,�-�2�2�%�.�*��%�9�*�=�*�'�'�)�3�$�)� �7�'�/�)��-�%�+�#�5�'�*�'�.�,�!�&�(�+�5�/� �=�%��:�+�'�0�-��-�4��3�1�0��6�!�:��-�0�-�(�!�'�1�/�(�!��-�.�9�*�&��1�5�#�,�+�*�.�6�!�1�$�)�-�5�+�)�,�+�7�*�5�!�%�)�5�+�$�/�2�)�.�+�/��,�)�)�%�2�%�%�'�*�+�3�-�(�+�'�%�-��'� �.�#�*�.�&�0�(�&�!�)�4�,�/�-�.�1�)�=�0�4�.�+�/� �%�3�%�1�.�*�(�#�(�;�+�'�0�&�)�'�,�:�-��&�!�+��+�0�"�+�(�+�+�;�/��/�2�)�)�0�,�"�8�!�*�)�!�)�.�1�0�.�4��&�$�.� ��'�&�+�%�)�-�*�/�.�2�!�)�)� �%� �4�$�0�$�'�.�'��%�%�$�0�%�.�/�*��"�!�-�*�8�.�8�"�8�+�(�*�'�)�5�.�-�*�6�*� ��(�,�4��/�"�0�-�$�"�)�0�*�!�*�)�*�-�6��+�'�3�1�&�2�/�)�'�#�"�,�7�-�/�+�(�4�-�0��3�1��0��9�-�'�"�.�4�:�*�0�-�&�&�.� ��&�&�/�,�%�(�%�"�*�0�*�)�)�.�4�,�'�,�+�)�&�/�2�!�%�/�%�� �1�3�-�-�4�/��0�2�+�/�'�8�,�.�3�$�2�6�2�-�$�%�+�0�=�&�9�3�>�.�)�9�*�0�%�.�4�+�3�3�(�/�,�(�7�+�.�%�-�ڀ׀րր׀ڀՀۀԀǀրԀրр؀ۀ؀ـԀ׀Ԁڀڀف+�1�1�?�0�4�7�(�;�/�7�4�*�1�9�1�-�0�&�5�)�1�/�6�9�.�&�,�$�*�0�,�0��+�4��.�&�3�6�&�-�+�+�"�(�,�;�0�$�!�5�(�2�3�;�.�2�&�.�#��-�(�)�+�&�3�)�$�3�%�'�'�+�7�*�,�#�!�*�,�1�3�.�,�+�5�&�*�2�)�-�)�-�E�7�3�+�#�0�,�-�-�9�2�5�)�*�-�7� �/�/�-�/�#�6�+�1�5�5�*�/�+�*�+�)�3��+�+�6�5�*�*�+�/�9�#��.�#�7�.�,�0�&�)�5�8�(�5�3�&� �,�.�)�*�*�)�'�.�@�-�.�'�!�1�4�+�8�"�5�.�!�'�8�3��'�'�(�/�"�*�0�6�.��%�'�1�%�+�*�)�6�"�,�*��>�)�7�!�4�/�*�,�"��0�$�-�"�+�2�0�0�7�.�4�*�+�/�)�5�!�)�#�:�2�/�+�5�+�/�6�$�'�'�*��$�6�+�7�4��(�%�;�1�'�4�.�(�)�(�2�+�)�/��7�%�*�3�$�%�2�2�)�4��0�-�-��+�1�/��%�'�&�)�*�)�8� �8�)�&�7�9�-�!�/�(�B�0�"�2�6�"�2�+� �+�7�;�%�&�)�%�*�*�7�.�2�(�+�8�=�#�1�5�!�4�/�&�,��(�8�3�,�2��/�&�)�/�2�,�,�+�,�,�,�0�.�'� �)�2�>�2�+�+� �5�3�6�'�+�&�4�!�*�$�(�-�(�2�(�$��)�/�$�@�/�$�/�1�.�)�/�%�$�>�2�0�(�-�-�)�-�(�8�'� �(�!�/�$�6�6�+�%�.�-�$�=�6�4�-��@�-�*�-�0�5�"�(�,�)�-�-�/�/�*�&�1�)�7�.�!�+�&�,�.�4�'�.�)�9�*�&�'�(�*�$�$�4�'�,�3�.�'�5�*�/�&�5�(�.�/�6�+�3�+�3�/�#��'�!�+�$�.�"�7�0�-�0�7�#�G��-�+�&�/�0�0�3�,�$�.�,�%�1�$�9�)�׀Հ؀Ӏ؀ـԀۀրǀրҀՀހԀՀ׀րـ׀Ҁ׀Ҁց%�.�+� �2�+�<�!�'�1�.�3�/�0�3�.�7�-�,�.�-�6�(�5� �2�7�(�)�0�'�(�$��/�*�3�-�!�*�2�'�'�,�"�*�+�5�3�"�*�.�%�9�,�-�2�2�/�1�9�*�(�0�%�(�0�0�7�.�&�%�-�3�.�'�2�*�#�'�,�%�-�!�$�,�)�9�*�/�%�/�5�1�6�'�1�-�0�+�/�;�'�-�,�-�"�(�8�)�&�%�/�&�#�+�'�;�)�%�)�7�&�3��)�0�1�2�3�/�)��%�7��<�(�/�'�.�*�(�,�,�$�$�1�*�)�4�/��3�-�2�2�5�%�+�,�"�/�)�&�(�+�-�)�'�1�/�%�*�-�'�,�)�1�1�*�5�.�&�&�'�&�'�.�5�:�C�/�%�%�4�2�*�1�/�4��(�/�+�1�-�*�(�'�)�(�2�7�!�,��/�/�7��-�4��+�*�,� �+�,��%��*�%�/�/�&�2�8�(�(�3�)�+�.�0�.�"�+�(�'�2�)�.�$�"�1�$�!�'�!�0�&�'�$�7�,�4�#�)�)��4��$�/�%�(�7�/�3�-�3�2�/�,�-�)�%�#�,�1�%�<��"�2�+�&�*�+�&�6�*�2�%�)�7��!�'�&��5�#�&�&�2�*�5�4�&�(�,�.�/�:�2�0�.�%�%�1�$�"�.�&�1�/�2�*�6�*�-�7�)�1�'�'�/�3�-�0�5�#�*�:��5� ��(� �6�.��,�"�*�2�-�&�'�%�1��/�*�0�,�&�-�=�&�1�)�.��%�-�+�+�-�'� �"�-�(�3�&�9�)�#�&�0�*�.�+�-�&�!�(�+�0�5�)�(�'�!�#�:�A�,�1�$�$�+�&�-�8�7�)�'�'�)�-�2�1��'� �&�#�;�:�'�6�-�2�6�4�*�,�1�)�#�3�-�9�8�9�,�2�,�)�%�!�)�0�/�*�:�#�*�/�3�&�0�0�,�-�(�,�3�6�2�0�,�/�0�5�<�3�&�"�&�1�)�(�)�4�/�#�,�6�6�.�%�#�'�8�؀׀׀؀ЀՀրրҀ€ۀԀ؀Ԁ׀؀؀րҀԀր׀ր؁+�*�8�0�3�(�5�.�5�:�1�3�8�:�<�)�/�'�&�-�%�/�,�.�)�1�)�(�<�<�!�,�+�6�6�3�#�4�'�0�#�1�2�,�/�*�.�/�(�+�5�7�&�"�%�+�'��/�2�-�%�*�0�#�'�#�6�*�;�4�'�'�>�3�5�+�4�/�&�8�0�5�$�)�#�$�/�-�0�*�,�4�'�/�0�#�1�)�'�.�-�$�6�/�!�1�5�&�2�4�"�5�1�+�6��2�!�1�7�(�3�/��)�9�6�)�&�!�*�#�+�'�)�|�݁F�%�#�0�>�:�&�#�)�=�+�&�,�)�,�.��+�'��!�� � �-��!�#�*�2�,�,�+�-�!�*�.�)�)�.�'�)�3�'�3��$�6�,�.�;�.��<�1�:�-�-�/�-�)�&�(�&��:�3�=�0�.�(�)�*�&�&��+��,�,��5�8�"�$�0�(�)�5�8�;�7�D�6��4�-�+�!�1�#�*�$�5�#��-�+�.�0�"�/�!�$�0�/� �'�7�.�)�2�1�+�1�!�/�+�>�,�-�0�'�+�2�)�2�&��)�.��-��5�-�%�%�%�,�"�%�!�,�2�#�-�/�(�.� �;�8�+�"�#�'�(�)�0�.�0��*� �*�.�+�(�2�,�+�'� �3�)�9�0�.�3�/�'�3�0�-�.�-�/�+�4�'�)�"�/�,�2�&�,�$�,�-�"��%�/�(�$�"�,�#�-�2�/�)�$���,�/�*�*�*�%�+�!�7�'�$�-�#�*�&�0�-�/�&�.�'�-�&�+�'�"�(�*�2�.�7�2�0�%�&�0�2�3�"�+�&�-�"�'�0�*�#� �+�/�)�&�*�/�3�0�/�5�8�3�6�.�'�/�,�1�/�&�:�<�-�.�/�-�-�%�5�%�%�.�2� �/�/�.�*�9�'�%�;�,�0�!�'�,�0�,�)�0�,�6�)�$�$�)�)�)�'�*�&�$�#�$�-�5�%�.�"�"�*�+�;�1�(�:�3�,�!�(�)�/�"�'�-��6�5�-�(�8�+�)�1�)�/�4��Ҁ׀Ԁ׀ՀрրрӀƀـրրـҀՀπӀ؀րրڀՀׁ+�*�1��5�.�1�>�:�&�(�.�;�$��-�+�#�6�*�*�+�*�(�9�+�+�0�4�$�'�-�5�.�.�+�*�$�6�0�+�'�/�#�#�0�-�6�$�/�%�,�B�(�!�:�'�&�"�.�,�#�,�+�$�(�,�.�2�.�#�8�*�7�'�(�/�-�/�*�2�2�.�!�2�7�3�%�'�1�&�"�5�+�1�1�2�:��#�.�5�3�+�1���*�0�4�1�'�'�6�/�0�"�/� �+�+�)�9�3�1�/��5�'�3�(�'�.�%�2�,�Q�R�6�/�*�/�+�/�"�3�)�.�-�*�(�)�"�/�/�#�/�&�,�-�&�*� �$�(�*�/�$�,�.�*�'� �-�)�/�.�)�(� �"�)�%�*�#�(�-�(�2�+�4�!��+�=�.�4�/�1�A�/� �1�.��6�5�%�2�2�.�/�1�.�1�0�.�,��,�3�'�1�5�0�$�0�2�$�3�.�/�$� �'�'�1�"�,�.�#�0�+�1�&�%�1�(�#�,�!�2�)�$�2�,�5�=�,�;�%�'�(�+�7�.�/�3�*�%�:�,�6� �$�,�+�"�0�/��)�-�%�*�#�)�,�*�?�+�&�%�1��$�-�#��.�*�+�)�7�#�0��1�5� �2�0�&�%�0��.�#�)�*�+�%�(�.�#�3�$��2�*��-�+�/��&�.�2�0�I�-�5�$�)�7�+�+��,�2�(�-�-�%�*�1��-�:�3�4�/�2�3�,� ��/�)��%�/�+�7�+�,�3�=�(�&�!�(�"�%� �,�/�&�&�5�*�(�-�,�.�1�+�!�&�%�+�/�*�'�'�0�-�+�*�2�$�&�;�(�$�+�5�.�4�)�2�)�!�;�$�3�*�4�)�8�0�-�-�/�1� �*�0�-�1��(�,�)�-�*� �2�%�0�&�"�/�4�2�-�&�(�)�+�6�-�1�7�*�1�,�:�6�/�*��,��+�-�$�!�!�'�-�7�5�,�5�)�%�'�2�&�)�5�/��4�"�0�-�8�)�:�5�(�.�;�,�6�,�1�(�%�/�ҀՀҀ׀ۀـ׀ՀՀŀրՀӀڀրր׀ڀՀ؀Հ؀րρ)�+�3�5�'�?�5�%�.�'�:�-�*�,�3�C�-�+�!�%�,�9�"�&�1�7�-�2�+�2�4�.�%�2�/�%�.�)�+�3�2�(�9�'�%�,�8�/�(�5�/�>�?�+�'�!�;�/�)�)�(�#�4�9�/�%�*�#�1�2�(�)�)��&�-�5�$�'�2�'�7�/�/�!�6�*�0�0�+�&�'�/�*�-�-�+�)�+�/�&�%�3�+�+�,�$�/�$�$�,�6�(�0�"�.�+�/�+�+�/�1�-��'�7�*�%�,�1��-�/�+�7� �#��1�4�#�"�1�#�)�%�%�+�"�"�)�+�,�+�(�6�/��(�1�,�&�/�0�9�*�&�3�)�/�&�8�+�;�/�.�8�,��"�(�0�#�0�:�7�0�6�6�/�/�4�&�,��-�7�'�/�3�+�4�3�.�2�+�/�(�*� �6�-�)�4�#�1�$�1�4�&�0�*�7�+�%�2�#�&�'�2�4�6�#�'�3�(��+�,�%�&�)�*�J�-�/�8�%�&�-�.�0�(�*�2�3�*�/�3�1�+�'�7�1�-�"�+�&�.�*�)�(�-�%�#�2�*�4�;�+�.�/�)�5�%�5�1�(�1�7�)�"�#�#�#�5�0�1�'�*�%�'�)�+�(� �:�#�<��&�/�5�#�2�$�!�-�6�"�+�#�/�$�/�0�4�5�#�(�+�(�1�(�-�/�0�*�6�2�'�?�'�*�2�&�(�.�4�6�%�!�(�$�)�/�'�+�/�&�-�'�*�6�5�5�+�(�*�-��3��9�-�%� ��+�/�&�-�*�'�2�'�)�3�$�-�%�+�(��"�#�"�+�+�-�%�)�8�,��>�&��(�9�!��:�*�?�/�,�3�'�'�"�-�-�'�!�-�9�-�+�'��&�*�<�(�%�2�)�.�+�"�1�$�.�#�#�"�"�!�$�0�+�%�-�-�;�(�%�6�-�3�*�)�&�?�%�/�&�)�7�(�>�#�2�4�2�;�/�+�/�#�7�B�4�*��0�*�+�!�.�7�$�5�%�*�=�%�;��4�)�&�:�9�3�-�1�+�-��)�ԀՀڀՀۀ؀؀׀րŀЀՀՀԀڀӀـӀڀրπՀӀځ �5�+�3�'�.�&�2�)�/�2�.�+�3�,�(�$�.�$�7�(�#�+�'�(�6�,�.�2�3�%�1�5�D�4�'�.�.�7�6�6�)�%�-�'�4�%�*�%�<�9�'�"�-�%�"�7�6�#�+�2�/�6�(�2�&�(�,��4�'�(�)�*�#�$�&�*�&�.�6�.�2�/�%��<�(�.�0�'�,�*�/��"�(�#��*��/�-�1�4�(�7�/�*�%�(�%�'�<�/�-�%�� �%�%�.�9�'�3�+��3�1�3�,�*�'�)�.�*�.�*�.�&�/�)�-�$�)�,�-�&�%�4�'�.�+�-�-�2�#�.��#�+�(�=�6�$�7�8�,�1�1�*�5�&�2�5�)�+�)�+�2�1�)�&�,�/�1�,�+�(�"�"�4�,��(�7�(�-��7��+�4�*� ��$�#�)�1�'�/�*�,�)�'�,�+�7�-�&�"�1�+�/�*�5�$�.�-�+�6�"�(��1�+�)�2�%�"�3�-�/�(�1�#�6�3�,�*�-�,�-�4�+�/�4�!�/�3�-�&�A�-�-�$�'�'�0�%�6�.�-�-�(�%�!�+�1�3�%�/�5�)�/�-�.�2� �3�,�'�5��-�$�8�>�%�'�&�0�@�*�6�5�-�/�"�"��(�!�)�-�4�%�2�1�1�9�)�-�1�$�&�+�9�%�$�'�%�"�*�1�$�5�5�C�1�3�,�&�)�8�%�#�'�1�+�'�.�$��,�5�-�'�,�/�0�(�'�-�$�-�1��'�+�.�)�-�%�-�.�(�)�&�4�5��2�%�!��5��/�5�(�6� ��&�0�-�)�/�3�-�/�"�&��1�+�%�+�'��!�!�8�*�!�*�-�!�4�+�0�)�*�/�+�+�'�3�'�$�&�(�*�"�$�$�-�-�'�#�)�!��+�2�0�/�!�6�/�2�&�/�8�$�(�+�+�&�#�&�+�+�;�)�2�4�'�,�0�.�&�8�9�)�#�,�9�-�,�.�6�-�+�>�2�6�.�'�(�$�)�;�3�(��%�5�1�&�.�/�-�,�,�+�3�0�7�7�׀Ԁ׀ـ؀Հ׀ր؀ʀԀڀրՀрӀրրۀҀۀ׀݀Ձ*�3�6�9� �)�'�$�4�-�/�1�0�/�7�,�)�.��/�2�/��2�!�7�'�"�!�5�.�%�/�+�-�.�7�?�1�+�(�*�'�5�"�9�%�4�&�/�&�*�0�4�8�+�'�'�%�(�/�-�.�.�1�"�/�(�1�3�0�7�4�2�1�+�(�+�)�(�+�2� �&�6�%�$�#�)�.�%��+�,�1��(�-�2�3�0�'�.� �)�+�:�&�0�)�8�/�)�4�!�<�)�3�*�$�/�1�:�9�+�7�+�1�#�,�/�4�#�,�#�'�)�#�-�!�1�4�8�.�'�%�0�0�0�:�(�(�(�*�>�'�6��"�'�1�(�#�4�-�,�2�-�#�!��'�&�1�&�)�!�.�9�)�#� � �6�)�'� ��-�*�&�2�.�3�.�.�2�+�)�$�/�0�1�4�*�'�8�&��#�,�)�+�2�)�(�#�,�#�2�*�3�%�(�&�'�'�.�&�1�4�<�4�&�6�$�*� �,�6�&�0�+�&�3�%�(�&�3�1�*�$�*�+�!�%�%�:�2�8�.�$�;�-�3�&�0�/�3�5�'�2�&�0�+�4�%�4�-�2�$�-�+�%�3�1�%�,��%�+�0�.�)�/�3�1�/�/�3�6�;�*�*�(�$�1�+�C�+�5�!��*�"�(�:�1�*�"�.��%�3��6�&�#�$�$�+�#�0�"�&�3�/�/�)�#�"�*�-�:�%�:�.�*�#�%�0�&�-�8�0�&�'�*�4�)�.�9�(�+�"�0�(�"�5�+�)�6�2�5�-�.��2�2�*�4�2�<�,��(�(�+�0�(�7�5�"�$�>�&�"�1�!� �+�<�3�,�+�&�/�,�(�"�+�;�!�,�-�9�2�2�*�/�)�,�"�5��'�!�8�+�-�6�,�0�,�(�+�)�*�+�3�/�,�.�(�.�.�6��+�3�(�&�4�-�*�6�+�&�/�-�9�#�"�.�'�-�#�;�/�*�1�(�+�8�5�9�,�#�(�:�+�3�.�'�-�&� �*�(�,�*�)�0�)�!�(�'�@�7�-�,�*�,��5�(�1�6�%�3�$�6�րـӀ׀܀؀րՀҀŀр׀рր׀Ԁ׀ڀ؀ԀՀЀـځ2�0� �3�3�5�,�/�/�.�;�&�=�2�/�#�/�*�,�&�'�-�+�6� �(�(�-�-�&�@�)�;�5�(�)�/�+�+�)�1�1�1�(�1�8�'�(��-�'�,�.�+�(�.�2�(�#�(�0�3�+�&�4�+�5�2�+�-�)�/�*� �1�)�<�0�#�$�D�3�3�*�0�&�#�7�3�%�)�)�<�,�)�0�&�1�5�+�)�%�'�%�!�(�!�:�-�'�?�,�.�-�%�)�/�,�8�"�3�%�)��'�$�!�.�.�:�.�#�7�%�(�(�%�4�&�)�)�.�-�+�-�%�)�1�0�"�-�1�3�$�&�:�,�+��%�6�-�1�4��/�(�+�&� �4�2�+�8�6�$��,�.�/�/�+�!�"�%�+�0�$�'�0�:�/�-�)�(��%�6�2�&�$�,�+�/�&�&��)�)�0�(����.�+�#�%�$�&�.�2�2�'�6�5�2�&�-�%�6�(�/�)�/�+�!�&�.��6�2�*�.�4�+�-�9�0�,�2�-�$�2�/�%� �7�5�%�!�,�.�/�9�0��<�-�%�-�3�1�.�!��&�%�3�(�,�.�,�+�.�'�2�5�"��#�.�/�!�'�-��6�+�-�*�.�/�3�$�$�-�"�-�%�2�+�#�0�5�$�2�/�&�-�%�-�,�4�%�5�@�/�/�)��&�;�+�7�/�$�%�/�,�*�*�4�9�7�%�/�7�*�.�;�#�4�"�(�:�2�3��.�-��&�+�.�-�$�2�,�+�;�#�*�#�2�#�)�'�2�%�7�'�*�0�-�$�,�8�3�#�,�.�9�-�/�&�D�"�.�'�)�+��*�.�%�&�&�-��-�4�&�*��)�6�)�'�"�$�(�&��-�2�.�/�,�2�-�-�(�+�/�-�0�-�7�'�7�(�0�/�4�'�3�$�0�4�'�(�.�&�-�&�/�5�&�1�$�"�3�'�-�2�?�-��%� �/�5�-�)�%�$��3�'�+�/��%�#�$�,�0�/�$�7�:�-�.�,�/�*�+�1�6�0�/�)�=�5�(�3�!�0�.�5�&�ՀЀـր׀Ѐր׀րɀӀ؀Հ׀Հ׀ۀ׀ՀӀՀՀҀՁ�/�;�.�2�&�&�&�%�*�'�2�/�6�-�+�/�9�%�$�)�+�+�4�%�)�;�<�$�6�1�'�+�,��,�+�=� �.�*�.�'�!�'�3�3�8�+�2�/�!�*�$�*�#�/�.�#�)�4�+�,�$�0�/�&�/�:�*�'�)�"�2�(�&�(�"�)�'�*�3�-�(�*��)�,�7�5�+�5�,�*�/�.�&�-�1�!�,�3�,��#�.�&�.��$�+��"��0�%�+�7�-�1�7�.��(�2�8�3�*�-�6�.��-�.�!� �&�-�2�$�-�1�#�,�$�&�(�(� �*��'� �*�,�)��0�(� �"�-�*�+�2�/�5�4�*��-�2�0�2�)�/�.�)��7�4�+�-�3�/�"�,��-�-�)�/�)�*�'�,�'�6�(��3�)�*�*�-�-�#�)�-�'�&�#��+�-�1�7�/�+�$�*�/�4���7�0�"�5�3�'�0�(�%�3�,�6�9�-�$�-�/�'�*�3�+�.�)�%�2�&�/�.�3�/�%�-�/�-�%�5�5�#�)�0�>�(�3�-�5�'�1�6�$�%�*�5�0�/�(�(�)�0�&�4�:�-�5�-�8�)�,�'�(�$�$��,�+�6�#�&�6�1�*�2�:�%�#�,�)�/�6�!�&�,�%�)�.�4�.�)�1�#�#�*�,�*��&�0�6�/�*�*�3�%�&�H�%�*�-��(�7�=�#�+�6�*�6�(�5�5�,�%�%�#�1�+�/�.�0�'�-�-�1�5�6�9�3�,�7��-�)�,�+�%�'�1�/�3�'�(�6�(�(�.�(�,�4�(�$�/� �'�,�+�/�.�'�9�$�$�-�6�&�*�(�/�2�*�;�.�3�(�2�/�.�3�*�,�-�1�'��6�5�*�*�!�1�/� �&�#�.��(�#�.�.��$�6�)�:�+�-�0�/�.�#�-�0�5�/�/�'�A�-�4�%��)�.�.�*�%�%�7�/�'�1�5�"�/�*�&�6�+�3�6�,�4�.�'�.�9�2�"�/�2�!�+�/��"�(�+�;�0�+�5�/�,� �;� �(�5�܀րրрրӀӀՀՀˀրҀЀـڀ؀ՀӀԀۀӀ׀Ԁׁ.�"�9�:�1�-�+� �&�,�-�"�-�)�-�3�!�'�.�)�%�(�1�"�,�6�/�0�'�,�.�0�:�'�#�&�2�)�%�,�(�'�-�3�,�*�=�6�0�-�2�+�*�3�-�6�#�3�8�1�5�*�,�-�7�2�1�1�'�"�-��"�)�+�0�+�:�8�7�.�3�"�*�+�0�,�8� �+�.�=�+�$�.�'�/�8�1�5�#�'��*�1�+�,�9�7�;��-��$�(�&�'�!�7�1�"�"�)�0�1�.�$�0�'�/�.�2�7�o�7�)� �'�.�/�$�0�)�.�#�)�#�/�#�+�7�,�2�!�$�*�*��=�-�*�$�/�+�/�1�.�1�*�.�"�2�&�7�,�&�7�/�1�1�+�3�9�2��(�#�)�+�1�)�#�0�+�4�(�3�,�;�5�/�)�*�1�(��'�&�+�*�1�0�+�-�(�0��*�1�2��/�5�/�*��-�0�-�%�*�*�'� �8�-�*�)�(�3�%�7�.�&�+�0��+�1�*�'�3�3�+�+�*��9�2�-�+�4�1�)�+�1�#�.�.�1�0�-�2�1�1�.�'�.�5�.�,�#�'�/�'�4�)��/�.�.��"�5�,�1�'�+�'�)� �,�:�.�3�0�*�*�1��0�,�*�*�+�(��-�:�4�)�&�*�,�+�'�-�;�.�.�5�!�1�%�3�'�6�2�B�6�/�1�/�3�(�7�'�,�)�!�!�5�%�#�$�*�3�+�'�5�.�$�6�'�1�3�#�%�.�)�+�.�"�3�#�/�*�&�'�'�3�1�3�&�3�-��(�5��0�'�+�0�*�-�/�2�-�6�,�7�)�)�*�=�"�#�/� �,�)�$�%�2�2�"��2�,�5�'�)�.�3�&�)�$�6�/�0�+��#�$�-�3�1�.�-�8� �5�2�'�'�7�#�.�'�1�:�.�'�"�>�&�+�-�&�3�4�0�6�/��3�)�,�)�/�+��$�,��)�1�/�.�+�-�/�!�3�*�,�&�1�+�)�+�$�-�,�/�0�>�%�3�+�-�*�2�0�0�$�/�-�6�1�&�Հڀ׀Հր؀рր׀€ڀր؀ҀڀՀـՀՀր׀րҀՁ/�<�6�(�&�?�3�)�7�2�;�!�)�1�/�)�2�(�3�1�1�+�6�)�2�(�+�5��(�9�.�7�+�.�=��4�4�)�#�*�*�=�*�2�&�+�#�0�#�;�$�(�(�(�.�&�(� �-�+�'�,�'�:�-�+�3�2�$�+�8�*�"�'�$�-�/�$�.�-�2�0�%�.�0�#�(�.�3�2� �'��/�-�$�*�#�(�3�3�-�6�,�+�)�*�+�2�,�1�3�-�+�4�)�,�'�-�-�6�&�%�$�+�'�5�!�#�'��%�'��.� �;�&�,�'�*�)�(�+�3�.�$�-�7�0�.�&�%�2�'�1�*�#�4�'�)�#�/�&�$�#�5�2�-�)�.�,�5�3�'�)� �5�-�7�#�0�'�7�0�,�1�+�.�5��>�.�+�3�&�1��3�$�(�.�,�&�9�;�'�2�%�-�.�4��2�0�5� �*�/�+�0�-�-�-�4�1�$�/� �'�3�)�.�&�)�.�;�1�-��3�%�1�(�8�$�*�/�8�/�-�0�1�/�*�'�1��2�/�;�-�!�-�!�0�)�&�(�'�2�3�/�.�,�.�/�0�+�;�2�0�*�5�5�/��&�7�"�5��+�)�5�'�'�)�/�*�.�(�$�&�#�*�*�-�9�*�5�'�;�/�5�)�/�"��.�)�*�7�(�'�9�)�-�/�@�1�1�6��+�)�3�%�+�-�;��#�.�:�*�0�/�-�*�*�.�'�4�)�,�7�%�/�)�,�)�-�,�-�=�+�:�$�$�)�0�3��4�/�/�.�3�*�+�)�-�*�&��1�*�,�/�%�&�/�0�*�/�+�,�#�+�,� �,�5�.�+�.�%�1�.�;�/�)�-�.�5�(�.��%�1�-�2�'�%�/�&�*�&�/�3�2�+�/�4��7�-�*�0�%�*�&�"�*�9�-�7�.�%�2�#�*�7�1�-�D�+�"�&�/�'�'�8�/�)�,�)�3�"�?�1�9�(�2�7�4�2�5�9�4�+�(�&�1�&�>�-�*�3�2�#�%�"�@�1�9�0�-�#�1�1�-�8�-�:�0�;�/�+�؀ڀՀӀԀـ׀ЀـĀـԀۀڀԀ؀րҀڀҀ؀؀ـӁ*�6�/�-�)��.�6�%�*�2�/�#�.�4�7�4�'�*�,�.�,�-�2�4�'�*�&�%�6�#�)�8�$�-�+�6�)�2�+�?�0�0�0�+�4�3�/�/�,�F�1�7�4�"�/�%��,� �@�1�/�'�-�)�-�-�'�2�2�8�)�&�)�-�<�.�-� �$�'�,�'�C�/�!�8�+�5�(�*�.�%�-��5�-�2�)�5�4�(�-�/�/�/�$�-�#�3�-�&�.�&�4� �$�3�+�2�'�2�(�/�*�6�&�1�2�,�7�6�6�(�)�.�+�6�-�*�$�%�.�+�+�*�4��$�@�+�)�;�)�+�,�(�'�#�0�/�%�)�+�(�-�/�-�'�!�<�3�'�3�2�(�#�#�.�/�+�"�-�!�%�4�6�-�-�4�.�&�&�-�0�1�,�&�&�,��/�'��,�!�&�0�9�/�$�-��+�.�2��(�1�.�.�*��,�+�-�2�4�5�0�>�#�,��/�$�3�&�-�(�1�1�$�'�0��*�#�+�,�8�-�&�,�1�"�1� �)��'�2�7�5�+�(�/�0�,�7�+�)�4�3�5�(�$�6�3�/�#�.�!�1�)�&�*�-�+�0�/�-��4�/�*�2�&�'�&�3�&�%�.�"�.�,�+�+�,�,�.�2�*�#�-�)��(�$�(�)�-�"�,�2�'�"�1�/�)�%�)�$�'�,� �*�/�"�,�%�/�#�#�3�>�1�2�=� �+�%�,�+�5�,�.�;�'�0�+��3��3��-�)�+�.�&�1�-�#�-��.��'�-�0�)�-�*�3�.��"�1�5�(�#�&�&�%�.�)�6�.�1�0�#�-�%�+�'�$�*�!�9��+�'�,�+�(�+��*�-�-�%�9�'�/�0��*�*�&�3��'�>�5���#��<�(�&�5�"�"�0�+�,�+�-�%�)�%�$�(�+�<�5�)�1�$�4�0�+�'�)�/�4�,�!�.�)�2�(�/�'�&�-�/�2�9�/�-�6�)�#�1�2�"�.�1�:�.�(�'�2�.�/�(�+�6�9�:�-�%�-�.�1�*�&�ڀـۀـӀڀՀπҀɀــڀԀڀڀ؀ՀՀҀրրـՁ5�$�'�+�.�#�*�5�/�4�*�)�/�.�%�&�,�)�,��!�!�7�(�2�+�1�,�(�,�#�1�1�/�2�/�3�!�6�,�/�-�%�0�'�7�/�%�+�*�.�%�4�3�#�/�-�5�)�.�,�(�,�%�;��/�+�#�"�1�+�7�2�>�3�-�-�4�'�+��0�)�,�;�-�,�6�)�-�'�(�+�+� �(�,�"�3�6�;�*�(� �*�/�#�%�'�-�&�.�+�1��$�3�)�6�'��&�;�,�2�#�"�9�)�/�-��"�(�+��&�9�8�(�)�+�1�-�8�/�)�'�.�!�"�+�,�/�/�%�!�,�.��>�$�*�/�:�@�:�5�,�/�4�1�/�(�&�%�4�$�&��,�/��*�(�)�)�+�(�-��6�&�*�(�-�"�.�$�'�3�1�=�"�0���.��*�(�/�=�)�.��'��*�,�0�6�$�7�2�+�*�1�%�$�&�5�,�2�-�9�-�0�-�+�!��*�+�'�2�'�-�&�+�0�#��1�8�(�'�7�.�'�2�)�+�)�6�.�*��,�/�(�5�#�:�4��,�7�)�+�!��6�-�%�0�/�'�4�%�'�#�5�)�$�4�1�:�2�5�+�0�0�1�5�&�.�9�"�,�9�(�5�+�1�(��4�(��.�3�.�!�0�2�>�:�2�(�0�(�F�*�$�2�*�0�7�(�&�6��7�2�)�.�'�+�*�(�.�4�7�.� �$�/�'�&�/�0�1�%�*�,�'�5�+��+�2�+�+�,�9�$�(�#�.�*�+�'�2�0�8�'�"�9�0�$�)�!�+�$���+�$�-�/�6�(�+�*�'�#�'�7�0�.��#�!�&�'�4� � �%�2�0�(�)�)�8�3� �3�/�"�3�2�;�+�1�3�+�'�0�)�1�+�<�!�.�+�2�/�.�2�2�-�-�3�2�0�1�/�.�1�)�(�3�)�&�3�/�%�7�1�*�/�0�,�1�5�6�0�.�5�0�.�(�9�*�-�1�7�+�%�&�*��0�7�2�,�%��,�=�1��,�+�$�1�%�0�2�րԀڀ؀ՀڀڀՀ؀ŀ܀؀ՀԀ؀րрր؀рՀ؀Ҁׁ0�,�1�-�:�-�3�-�0�0�)��4�5�/� �"�"�/� �)�(�2�6�*�9�1�2�4�5�4�-�0�/�'�8�,�:�-�0�1�1�4�#�,�6�#�+�(�0��>�*�(�3�,�*�!�+�&��'�/�1�,�6�(�)�)�6�3�3�/�+�6�)�,�%�+�6�)�(�'��/�=�)�3�1�)�$�'�&�1�/�1�*�-�&�+�$�1�,�*�/�+�/�'�*�/�&�!�!�1�'�%�'�6�'��/�#�4�%�1��0�/�'�.�<�,� �0�-�#�/�/�"�5�)�,�%�#�/�0�+�#��7�-�3�3�,�%�&�(�$�#�-�2�,�'�-�*�#�!�4�+�-�#�*�0�'�#�1�#�.� �"�)�"�*�9�/�-�-�.��;�%�+�,�&�#�/�$�?�7�-��&�#�#�8�!�&�1�)�-�5�/�6�*�A�'�%�0�)�+�%�%�0�+�&�2�6�1�%�&�,�$�=�/�6��*�"�7�(�,�!�-�1�-�$�/�&�6�)�5�#�,�+�/�/�=�(�#� �9�4�&�'�)� �#�1�?�$�#� �(�7�,��%�"�;�-�"�1�/�$�"�.�0�7�6�.�3�.�&�&�/�.�2�1�)�,�#�,�*��&�$�,�4�.�1�&�7�1�-��.�0�&�5�3�+��1�+�#�.�#�*�/�9�&�.�*�4�-�1�&�8�.�(�9�2�)� �1�!�+�2�)�*�(�6���0�'�#�)�/�,�!�)�3�2�0�*�%�8�#�8�*�-�-�/�-�*�,�)�/�+�3�-��&�+�(�3�)�/�.�8�/�5�&�2�*�%�*�+�'�2�*�(�'�-�2�.�%��)� �.�,�+�2�#�2�(�1�)�-�+�/�0� �0�-� �.�#�3�&�J�'�*�+�;�)�,�$�3�'��-�+�+��/��(�"�$�"�7�7�2�,�+�>�4�5�-�-�$�3�A�4�3�+�.�,�8��#�7�/�3�'�"�.�,�)� �(�1�9�1�4�*�1�2�,�5�%�'��)�&�$�/�.�%�6�2�7�*�%�9�;�,�<�&�րҀԀ׀׀ҀՀՀՀŀրԀҀրЀ΀ՀՀՀ؀Ԁր׀Ӂ.�+�)�:�3�#�5�4�9�(�D�/�-��0�3�%�%�$�%�5�'�-�&�#�4�(�2�%�+�'�'�:�$�%�/�4�2�2�'�0�1�7�0�1�9�+�0�)�/�'�0�(�2�(�0�&�'�*�9�+�0�#�)�4�5�'�*��$�&�-�%�+�#�$�)�+�(�#�2�/�&�:�0�*�(�,�*�-�-�*�*�)�,�0�%�*�/�,�%�,�0�*�&�+�1�,�-� �+�.�,�7�(�/�$�.�+�!�/��*�0�'�,�-�)�/�8�1�)�/�)�.��)�3�(�$�#�#�+��'�.�3�*�*�2�4�$�0��'�$�*�%�+�%�7�-�/�1�)��.�#�#�"�/�"�#�.�.�+�)�0�/�0�7�$�2�1�'�1�,�/�-�#�4�#�7�:�-�4�$�%�/�$�1�7�5�'�+�%�,�&�(�&�1�.�2�-��-�3�'�1�)�C�*��,�)�)�(�#�0�&�%�2�$��.�+�&�6��0�%�(�,�%�$�2�3�-�"�&�(�3�5�-�$�7�-� �.�:�-�(�%�5�$���&�/�)�,�$�)�*�*�(�0�.�/�(�/�(�-�-�#�5�*�$��!�-�%�"�*�4�/�C�-�,�0�"�"�&�!�)�'�/�6�1�2�6�*�)�8�4�#�5�1�(�1�-�&�%�1�7�)�"�'�)�!�3�(� �1�/�+�'�*�(�"�/�5�$�8�1� �=�0�0�.�+�/�!�0�1�2�*�6�)�%�'��?�/�0�+�+�3�B�&�6�'�)�*�5�4�6�)�2�2�#�-� �&�5�C�+�/�'�5�,�*�(�$�)�$�+�<�*�9�#�,�;�2�(�6� ��=�3�(��%�*�)�)�&�(�"�%�9�$�1��&�=�#�/�!�,�&�;�.�0�6�5�-�7�(�*�,�7�#��0�0�/�6�0�4�/�1�-�/�*�8�0�)�,�,� �#�,�"�-�3�C�#�*�.�4�0�;�6� �5�0�%�+�.�/�0�&�+�&�*�.� �+�8�/�2�5�(�7�0�;�>�$�1�/�1�/�%�(�6��7�&�2�<�3�׀ԀۀҀڀӀրՀԀȀڀـ׀׀׀׀ր׀րՀҀ׀׀Ӂ/�/�5�,�*�*�&�2�4�;�'�.�3�7�-�4�5�#�5�'�/�1�/�1�+�/�)�'�'�.�7�.�"�&�6�-��.�)�3� �/�*�2�+�=�)�;��0�*�,�3�:�,�$�(�-�(�6�)�=�7�,�/�>�1�$�*�(�2�(�/�%�+�6�'�)�.�0�2�*�.��!�5�$�)�*�,�)�(�0�6�4�(�1�3�/�*�#�&�5�/�.�-�/�.�#��+�%�#�,�'�)�%�9�9�(�-�.�/�)�7�-�)�+�+�-�*�7�.�*�/�+�#�0�3�(�/�+��6�/�(�%�+�!�6�>�-�&�6�+�2�%�"�,�/�0��-�4�1�1�!�"�$�0�%�$�+�/�0�#�.�*�*�/�"��(�$�8�)�1��+�&�9�*�+�3�6��,� �*�)�/�-�&�/�+�&�/�&�&�)�6� �-�*�"� �)�#��4�.�2�&�,�&�'�/�!�/�2�+�'�2��(�'�/�+��/�0�1�-�-�'�5�%�1�%�'�#�7�B�*���)�/�/�)�3� �0�%�/�,�1�/�,�0�+�.�(�-��%�)�*�*�(�-�0�*�.�'�5�*�4�/�(�'�0�(�&�/�-�)�2�$�0�0�-�&�*�0�&�2�.�.�&�)�.�*�+�)�+�'�-�/�0�/�7�)��%�5�2�1�.�=�#�0�+�-�'�7�?�&�.�1�#�1�%�$�%�*�+�4�+�)�,�&��+�&�3�7�*�0�1��)�<�"�+�<�)�2�1�.�4�$�-��1��#�"� �0� �%�!��%�8�1�+�4�)�<�*��.�-�2�3�)�0�-�4�/�*�,�#�/�+�5�1�%�1�1�,�,�$�)�3�,�7�#�"�)�#�-�2�.�1�)��4�6�7�0� �0�1�(�'�.�5�C�*�*�1�)�2�3�-�"�)�,�4�*� �,�0�+�1�/���;�-�)�8�'��'�.�3�"�+�)�+�7�5�.�*�)�7�,�9�/�#�*�&�5�1�%�-�-�-�)�)�*�7�3�/�0�.�'�-�-�%�*��(�/�$�4�*�:�ԀՀӀ׀ـҀӀրՀ€׀ՀҀ׀рՀրڀрՀՀҀЀ؁-�)�1�/�<�+�1�&�2�#�(�1�*�5�,�(�,�-�(�)�'�1�3�+�%�.�.�+�,�/��(�4�'�5�!�-�6�#�#�4�&�9�+�8�(�6�,�-�+�%�3�0�/�>�$�5�3�$�2�-�&�+�"� �/�,�5�&�3�)�,��+�'�1�/�#�7�4�-�*�!�,�)�0�0�$�.�%�,�$�&�-�&�)�&�$�)�*�)�1�:�$�-�-�0��!�6�$�2�"�-�+�"�7�+�1�-�(�5�(�/�9�+�7�4�$�0�4�"�1�(�3�0�,�%��9�.��2�*�'�,�)�%�&�)�(�'�$��9�#�4�&�#�4�6�4�3�2��"�,��3�0�$�/� �?�8�/�4�&�#�/�)�+� �3�%�)�#�+�/�)�2�*�*�(�-�"��6�)�'�&�*�"��'�-�0�-�7�)�,�)��5�)� ��'�)�%�#�6�'�0�4�'�+�.�$��'�6�'�.�"�2�(�(�/�/�(�/�*�(�8�-�&�-�*� �-�*�9�*�-�&�0�+�#�/�3�.�,�)�;��)�1�4�1�'�$�,�)�(�9�/�%�4�3�1�$�!�1�/�)�+�!�9�*�;�%�+�7�.�"�1��%�*�-�$�4�.�"�)�'�0�7�8�1�"�(�.�0�'��)�#�3�,�0�2�:�,�*�0�.�3�:�#��.�%�&�7�'�2�0�'�!�*�/�.�$�$�0�.�-�+�2�$�(�:��#�"�+� �.�)�(�*�6�+�+�0�*�,�*�<�3�.�/�&�'�&�-�7�,�'�7�#�+�#�+�3�'�)�)�3�0�8�/�0�.�@�&�/�(�$�+�9�'��2�3�$��7�6�+�-�6�2�$�5�9�(��0��$�!�/�;�&� �3�/�1�.�-�3�-�,�1�(�%�&�2�"�$� �:��/�)��)�(��3�0�2�&�'�%�/�+�0�'�*�/�)�4�'�(�3�)�5�6�.� �*�2�*�F�)�-�-�.�.�'�(��0�2�8�.�8�1�-�.�-�$�5�4�2���6�,�(�0�6�*�(�)�6�(�*�׀րԀՀـ؀ԀڀՀǀҀـ؀рӀҀՀրрՀԀրԀց4�(�2�!�#�1�"�5�)�6�7�,�*�*�(�4�=�)�,�3�)�/�2�/�(�+�'�0�+�)�'�6�,�(�6�7�'�1�(�0�?�+�%�;�(�)�$�!�,��*�+�8�'�&�.�4�0�)�!�*�%�0�<�1�-�5�/�=�#�<�+�.�'�1�/�&�#��$��9��+�4�"�.�;�<�4�:�5�*�2�+�*�!��-�!�;�"�+�/�'�(�:�2�8� �&�1�7�'�'�-�+�2�(�0�,�+�%�+�4�$�$�)�2�-�2�/�,�(�'�+�#�*�(�+�1�/�%�+�0�#�)�3�*�:�.�)�*�.��0�&�-�(�1�'�$�/�)�1�-�-�"�.�,�8�3�)��/�%�*�1�<�/�,�"�.�,�$�1�%��%�#�)�(�4�-�0�,�1��'�+�$�!�&�2�.�0�2�3�'�5�%�%�7�"�:�.�%�.�;�&�-��(�)�2�.�*�,�6�)��%�3�5�&�2�5�'�%�9�7�,� �)�"�&�*�<�'�5�)�,�6�6�*�%�&��)�.�/�9�?�9�3�-�:�9�$�9�)�+�:�5�7�"�(�5�3�!�8�#�)�*�-�2�&�-�1�$�"�1�2�2�&�%�+� -�2�$�+�3�9�#�4�,�%��+�:�)�4� �0�)�3�4�!�6��1�4�$�-�8�*�3�6�.�6�;�5�+�-�8�,� �(�/�0�/�!�0�+�$�-�+�+�2�,�+�.�-�$�$�:�1�/�(�)�+�;�#�&�7�#�'�%�)�7�,�1�0�,�3�"�.�+� �1�*�8�/�'�2�3�@�-�/�/�2�/�0�+�/�'�/�8�+�'�.�5�&�1�0�,�,�,�+�+�-��2�/�-��*�'� �0�.�:�+��;�+��8�#�(�*�3�$�,�$�"�3�2�+�4�3�/�,�*�*�*��/�2�.��-�/� �,�/�2�#�0�-�+�%�%�&�.�+�*�-�&�2�5�-�6�<�3�'�.�(�$�,�,�4�1�)�,�7�5�0�.�&�'�/��5�7�5�"�%�"�*�(�)�7�2�/�>�%�#�'�8�!�2�ЀҀހπЀـрـՀȀ؀ހ׀؀܀܀րـԀ׀րЀր؁/�0�1�2�*�2�3�$�+�2�9�-�&�2�9�*�&�2�)�4�1�+�1�7�8�&�/�"�5�8�&�0��*�,�4�3�/�-�"�#�$�,�(�)�.�4�,�$�(�7�%�1�,�'�8�-�$�4�.��)�2�2�%�.�*�*�*�*��*�/�/�/�,�1�%�(�%�(�/�*�#�2�/�0�&�0�*��"�2�,�(�5�#�/�+�"�+�.��)�/�;�%�+�-�$�5�&�+�)�/��%�&�-�-�#�,�)�2�(�&�0�8�9�,�(�1�:�0��2�,�'�2�$��'�-�.�8�5�,�*�/�"�)�$�$�'�-�*�&�&�6�,��(�*�*�1�(�6�.�M�6�/�1�+�5�-� �,��4�5�&�0�,�!�&�4�,�6�/�0�9�*�)�'�&�+�*�.�/�#�#�1�� �&�.�&�'�)�$�/�1�2�)�0��+�-� �&�&�!�(��+�7�)�-�!�,�)�.�#�&�)�*�*�$��+�*�-�*�8�'�$�2�$�2�*��4�-�-�(�)�3�"�-�&�6�0�/�&�'�8�1�#�)�)�4�4��'�#�'�0��,�8�&�#�&�,�-�.�!�$�2�%�4�6� � �0�+�;�-�2�,�1�!�+�(�2�1�1�/�"�*�-�2�1�/�9�3�/�*�A�/�,�)�(�=�0�$�3�%��.�$�(�"�!�1�(�,�"�,�2�)�'�)�*�0�2��#�7�1�&�0�)�4�2�3�*��(�1�-�&�3�7�)�4�+�-�%�,�/�+�-�*�&�0�-�1�"�0�&�-�3�&�#�$�-�6�,�-�0�0�-�+�8�$�8��5�/�.�+�,�.�2�%�'�3�+�0�-�,�3�(�5�&�)�0�$�)�3�4�*�/�2�"�+�"�/�/�'�*�&�#�3�1�.�+�-�.�-�.�/�$�/�.�1�,�4�0�0�1�0�&�3�.�-�)�+�"�*�0�$�6�/�-�$�:�2�+�(�&�0�0�.��2�&�+�1�(�*�$�-�/�*�)�/��6�3�"�5�2�2�3�.�#�$���.�1�+�/�7�*�9�/�.�/�.�րـրӀ׀׀ۀՀՀƀ׀Ԁـ׀πԀҀҀЀԀ׀׀׀ځ2�:�"�=�3�#�3�"�%�6�:�&�5�,�*�)�6�'�6�&�(�B�7�*�5�8�6�5�+�*�0�/�-�'�,�"�*�/�2�9�,�6�1�3�%�*�-�+�'�0�)�*�.�)�)�&�1�%�3�$�#�7�.�6�2�(�)�%�'�,�%�,�*�;�;�+�%�2��'�$�.�'�'�/�*�,�.�?�(�?�0�'�*�.�,�!�1�$�"�)��+�4�+�*� �5�@��5�"�)�%�0�,�/�0�-�-�5�(�)�/�-�/�!�%�+�*�1�)�+�+��%�+�<�!�:�6�/�2�3�&�#�0�'�+�5�!�.�(�/�(�#�9�?�-�0�%�7��0�&�$�#�2��/�-�.�*�1�+�3�"�3��)�(�2�+�'�!�$�'� �9�3�,�.�/�(�'�#�0� �+�/�&�8��*�.�+�/�+�.�.�.�+�,�:�)�+�*�%�.�+�-�1�!�7�$�)�0�5�,�)�#�0�2�3� �6�.�3�*�%�+� �,�2�.�5�'�$��5�+�5�%�9�5�/�0�(�+�+�!�6�,�(�:�5�0�"��,�)�.�.�+�.�)�"�$�.�3�>�)�0�!�(�-�+�)�"�+�/�&�0�0�,�*�)�1�5�5�'�5�/�%�*�/�/�$�"�)�-�$��*�/�"�#�+�0�0�1�'�0�!�.�*�+�+�*�(�+�.�&��%�&�4�%�1�0�%�2�-�)�5�*�)�4�.�,�2�.�(�%�3�0�1�)�%�.�-�%�3�8�1�,�2�'�3�(��!�%�'�0�2�-�3�"�.�%�/�#�(�(�0� �&�!�'�,�+�+��7�'�+�3�,�,�8�"�/�,�,�+�8�"�(�&�-�2�-�1�-�0�)�(�+�"�(�/�&�8�.��!�'�*�2�2�*�1�)�/�3�/�)�.�6�%�%�%�0�-�2�3�.�3�+�+�-�%�/�'�.�5�-�3�$�-�/�+�/�,�/�*�"�)�"�7�3�+�9�2�)�0�2�+�3�1�5�.�1�+�8�1�/�$�)�,�*�&�.�6�3�%�7�*�0�*�+�+�4�/�/�1�6�2�7�4�*�ՀҀހՀӀڀԀՀՀɀրЀڀՀ׀ՀրӀՀЀ׀ԀրՁ3�.�'�;�-�%�.�7�3�.�%�*�0�:�0�,�-��0�1�8�(�0�&�1�(�6�0�/�*�7�2�,�)�&�1�2�/�%�5�<�+�0�%�>�-�4�/�0�+�6�;��8�-�-�5�:��%�&�-�.�+�1�*�.�$�2�+�*�.�"�-�5�8�4�&�!��-�'�/�,�0�4�3�-�?�(�/�3�#�=�1�1�.�%�(�(�(�&�!�(�"�6�.�,�2�0��"�*�$�"�%�&�(�-�3�#�-�,�,�,�+�,�'�&�*�4�3�5� �)�'�/�.�/�!�,�-�!�#��&�(�1�4�5��2�(�.�(�,�/�)�!�-�$�2�3�.�/�)�%�+�1�.�(�2�4�!�)�+�#�(�-�*�%�2�)�2��/�'�,�+�*�2�0�&�'�+�*�+�(�)�5�1�;�0�(�+�(�)�5�2�)�(�2�$�*�1��0�*�3�/�3�2�!��.�(�#�5�0�&�#�0�0��.�&�0�5�(�'�+�,�/�+�.�4�&�1�%�*�-��.�,�'�-�*�:�0�7�8�&�/�*�0�/�$�&�.�+�6�&�2�2�%�-��0�'�0�+�%�+�'�9�(�2�(�*�!�%��:�'�#��(�,�6�,�/�*�1�2�)�-�*�+�.�$�'�&�*�/�/�'�5�*��-�+�/�1�7�/�/�"�6�;�2�3�%�.�(�0�(�-��� ��$�/�"�0�.�!�)�+�)�-�7�"�)�*�0�-�)�#��*�$�<�-�*�1�&�3�3�4�(�%�4�,�%�%�#�+�;�/�+�(�0�*�&�*�$�5�0�'�+�:�)�5�!�&�$�9�1�"�8�'�/�-�)�.�&�*�/�+�)�&�5�6�2��$�6�%�5�"�.�,�7�+�6�(�#�)�/�'�,�.�(�.�*�(�-�2�/�/�5�,�.�!��/�3�0��)�&�9�7�0�%�8�1�,�-�.�$�%�6�)�4�'�%�,�0�)��6�(�6�$�*�6�%�&�5�8�+�"�;�5�&�(�4�*�'�(�(�&�9�-�4�$�=�.�,�,�1�#�'�-�0�*�(�/�%�;�Հـ׀׀ــՀҀ׀ƀրـހҀԀՀր؀؀߀ր׀ـԁ5�0�3�+�3�!�%�.�&�)�-�2�'�'�+�*�2��)�,�&�2�+�5��,�(�+�/�.�0�'�+�1�(�+�,�-�8�.�)�6�:�/�%�*���4�9�'�,�0�0�1�.�7�2�(�'�5��-�4�,�+�/�$�&�%�*�%�$�,�0�6�-� �6�,�)�/�!��!�.�1�/��/�&�0�/�%�&�/��'�/�4�(�0�.�/�6�*�/�,�-�.�)� �-�5�0�!�'�+�/�"�/�-�0�,�#��0�+�(�+�#�5�#�6�0�"�9�6�*�1��%�7�"�.�-�2�2�2�$�3� �(�*�$��4�.�)�+��)�7�*�/�)�$�(��0�+�'�/�*�'�'�,�(�.�#�?�*�!�6�0�*�-�)�*��,�'�%�*��/��#�%�.�-�2�/�.�-�"�&�&��3�(�(�&�,�5�C�*�2� �)�,�)�5�'�$�7�&�,�+�$�4�!�%�'�-�2�"�#�5�+�%�&�%�>�%�9���-�*�4�:��'�6�3�6�/�"��'�3�1�4�;�/�#�+�%��2�6�8��.�)�&�6�-�&��&�+�*�.�;�0�$�+�'�3�0��#�2�1��,�(�1�+�/��0� �3�&�#�9�)�1�(�1�$�2�"�:�9�)�7�3�#�/�)��4�/�*�#�/�&��(�.�%�%�3�4�&��)�#�6�4�9�.�,�*�%�(�'�(�0�'�'�0�2�%�0�.�'�)�(�+�)�)�)�.�)�;�-�-�9�&�5��3�&�'�(�!�/��*�/�3�*�-�.�,�$�2�-�#�,�*�,�� �*�.�%�1��)�-�(�)�&�%�)�(�*�!�!�.�)�2��-�*�)�'�+�/�/�� �1�&�,�$��,�(�2�)�.�(�)�&�#��+�,�#�/��-�,�*�&�*�*�.�,�6�#�$�%�*�0�,�)�:�1�$�-�7�(�-�<�(�.�8��$� �*�3�/�0�"�2�1���5�*�+�1�0�1�*�+�;� �(�'�4�;�3�1�$�&�.�4�=�9�2�/�*�րՀ׀ڀрڀҀЀ؀ƀԀڀр݀рՀӀ؀ӀՀՀڀҀ؁-�'�(�+�1�1�$�1�+�*�7�D�/�*�+�*�0�#�.�4�0�*�*�2�(��4�'�7�$�/�5�2�2�"�+�%�,�(�+�A�8�?�6�,�)�2�.�=�=�/�2�B�$�7�/�*�5�&�4�"��*�,�/�#�-�&�$�2�.�(�5�2�&�)�%�%�.�/�3�8�$�"�-�.�-�-�(�3�3�)�-�#�&�%�+�)�/�4�9�4�-�3�)�3�+�2�'�-�/�,�1��(�-�$�)�)�#�&�,�0�%�)�-�,�+�5�6�(�2�'�0�'�)�&�3��-�*�/��#�%�*�(�&�%�&�'�*�(��3�&�*�2�3�*�*�-�1�"�%�3�5�'�)�)�5�#�0�8�!�-�,�!�'��-�)�)�,�.�(�*���*�0�0�/�8�1� �(�9�3�>�,�-�&�,�8�"�)�(�*�.�-�&�5�#�&�#�)�-�4�(�+�/�$�&��/�2�-� �*��!�.�%�.�+�.�+�1�4�&�+�5�1�%�.�$�-�4�0�1�)�!�+�%�,�8�7�1�3�+�-�-��6�!�*�(�1�1��,�-�3�$�$�1�-�&�3� �3�*�*�*�4�-�)�-�*�-�0�9�,� �)�0�*�+�%�$�1�-�+�-�.�(�.�"�0�3�8�)�.�'�(�8�+��'�+�-�/�0�7�(��-�!�-�0�5�1�%�!��+�1�,�*�-�4�4�0�!�+�2�+�0�1�(�'�6�,�7�3�0�2�&�0�'�+�<�0�.�/�:�%�/�#�%�(�-�"�2�/�!�(�/�.�4�%�1��,�*�(�(�;��%�"�-�1�.�&�0�.�(�-�,�*�/�/�+�)�5�*�8�+�*�&�5�/�0�5�+�/�&� �0�)�*� �/�'�.�*�)�,�-�(�.�?�#�+�*�%�/�!�"�%��3�)�-�-�0�;�(�3�'�-�.�%�%�3�*�6�4�+�-�+�9�-�%�!�%�+�2�7�(�&�2�3�$�'�6�3�'�!�2�<�+�+�'�'�6�$�"�0�3�3�1�(�1�*�-�3�(�-�,�1�4� �7�4�#�#�$�.�$�ՀۀՀــҀ׀ڀրƀӀրրр׀рրЀ׀րڀ׀Ҁԁ,�)�/�-�(�$�$�+�)�>�4�9�*�4�-�*�)�0��2�.�/�2�&�,�(�#�7�7�)�#�"�2�1�&�/�4�/�(�%�-�'�7�'� �"�+�5�4�*�"�9�-�.�(�0��+�*�&�,�#�-�6�/�-�*�/��+�2�'�)�5�1�4�-�-�'�*�6�4�6�/��.�2�#�3�,�4�#�"��1�-�'�8�/�*�0�/�.�<�(�4�)�1�+�&�*�(�3�%�"�(�!�)�&�'�+�#�(�)�(�9�(�)�*�%�4�A�1�/�.�)�(�/�2�"�"�#�!�,�4�#�*�#�,�+�/�'�*�4�'�&�'�-�"�3�/�"�-�(�7�'�;�"�1�/�9�)�:�(�.�'�%�;�+�8�(�.� �&�2�-�'�-�/�-�7�%�/�/��3�-��(�%�>�:�*�%�'�4�$�-�$�/�2�-�&�-�%�0�'�!�&�%�=�'�(��#�7�/�$�&�,�,�(�3�3�/�,�-�2�-�$�+�/�5�'�%�$��3�1�/��'�4�"�/�4�$�2�/�-�+�,��/�0�3�/�,�.�+�+�8�(�0�&�-�/�2�6�*�+�,�6�/�/�*�-�"�$�#�/�3�&�+�#�&�8�'�B�&�3�+�*��)�;�2�9�/�!�.�*�2�$�.��.�!�+�1�$�%�4�+�'�/�'��'�+�/�%� �'�#�/�(�&�,�6�&�.�3�#�,�,�9� �0�*�4�!�5�2�/�*�*�-�/�(�"�(�3�'��-�/�%�/�'�,�#�)��,�"�2�%�*��2�+�'� �*�=�)�#�3�&�2�.��+�*�5�#�%�4�*�0�.��,�0�*�)�(�)�-�$�3��3��)�0�+�1�,�2�+�,�(�<�$�8�6�.�*�,�4�7�/�#�)�,�(�&�;�-�/�(�)�+�)�-�*�'�(�0�*�-�+�3�,�,�+�<�,�)�'�!�1�1�4�1�-��#�%�.�/�0�3�(�%�*�0�4�%�%�:�'�(�6�-�*�*�"�"�:�&�9�,�"�;�1�:�#�4�-�)�*�-�+�*�2�'�*�0�6�Ԁ׀ـ؀р׀׀րр��րۀՀ܀Ҁ݀րրր׀ӀրՀց$�9�4��5�(�#�%�3�+�"�7��8�4�'�*�2�,�1�(�+�)�-�+�.�"�/�<�-�1� �@�.�:�3�/�,�1�+�1�#�,�(�*�7�&�0�0�1�+�)�4�.� �+�:�2�+�&�2�#��1�#�0�3�.�)�#�1�&�-�-�(�%�/�-�&�/�,�5�2�/�3�*�0�*�<�5�+�,�*�.� �,�0��/�.�*�/���.�(�(�/�*�&��%�/�5�5�.�*�+�*�-�-�&�*�,�,�-�4�$�3�+�,�/�5�,�4�2�+�:�+�%�1�-�3�2�$�+�)�+�/�,�7�.� �(�,�,� � �+�'� �/�"�2�+�&�'�(�/�"�1�,�-�1�1�1�%�+�)�'�/��$�3�5�-�5�$�"�,�%�3�)�,�&�(�-�)�9�-�)���,�(�'�%�,�0�$�'�-�@�*�-�1�'�4�/�$�3�.�+�-�.�4�'�'�-�%�7�%�*�1�+�9�4�*�(�)�.�.�6�1��/�/�&�%�/�,�0��!�(��)�/�,�#�#�'�/�!��*�+�.�&�/�(�.�5�*�4�.�2�'�5�'�#�.�*�;�$�&�,�)�4�3�2�3�'��0�-�)�,�!�3�;�(�"�.�2�/�4�-�#�*�)�,�7�:���/�0�4�*� �8�-�*�2�!�-�5�'�+�-�+�%��3��#�7�(�&�+� �)�1�'��-�'�1�!�-�+�2�.�,��*�)�*�'�*�1�1�-�.�7�%�%�'�&�(�0�#�.�5�5�2�2�5���*�0�-�2��'�8�)�"�0�'�,�-�*�+�(�2�)�2�.��,�#�$��*�"�0�2�8�0�(�/�=��3��"�6�'�.�%�1�2�'�+�-�+�7�3�-�/�5�%�#�'�*�6�0�<�%�!�!�� � �3�&�7�*�'�-��'�"�/�0�!�9�8�)�1�.��6�3�/�.�+�+�+�*�4�(�-�4�/�.�/�"�%�$�+�<�*�*�.�1�:�+�1�0�2�$�*�#�*�0�3�2�!�%�6�!�1�*�3��'�/�,�րԀԀրπրՀӀ܀Ā׀ـ؀؀րԀ׀׀ـրπՀ׀ׁ,�$�$�'�7�;�-��5�,�"�9�<�1��(�%�9�"�.�+�5�%�(�/�+�8�$�)�0�4�3�.�1�:�)�(�,�,�$�'�'�#�-�1�)�(�D�*�(�(�!�$�(�'�*�2�3�+��6�,�#�3�$�&�#�)�2�3�4�'�"�1�,�0�/�7��.� �#�<�*��-�.�&�7�'�4�*��-�(�(�-�$� �,�"�.�/�"�,�%�,�2�-��$�,�#�(�/�%�+�-�/�,�'�,�)�(�'�)��!� �/�'�'��*�$�-�2��%�-�)�2�/�0�!�1��%�&�3�$�)�$�1�%�-�#�-�-�*��&�1�.��+�+�'��0�*�*�*�5�'�8�-�1�2�"�/�"�0�'�"�)�1� �0�'�,�-�/��=�5�)�#�2�1�*�"�/�(�3�,�%�6�1�4�3��/�,��(�"�6�5�+�,�/�%�/��2�'�)�0�)�;�8�+�$�#�2��3�1�)�2�/�5�,�"�&�'�$�3�$�*��+�*�:�6�+��!�.�3�;�/��/�#�@�(�%�2��#�,�/�8�2�&�(�9�'�,�"��!�0�0�0�3�4� �+�$�)�1�*�%�1�%�3�.��$�7�%�"�+�7�-�!�,�-�'��-�"�&�<�#��*�4�&�5�,�)�*�(�.�+�/�/�#�)�6�6�$�5�0�4�$�)�5�/��%�(�-�+��2�3�/�.�!��6�%�5�,�$�7�&�*�6�/�*�.�+�2�5�'�/��*�)�-�2��+�+�!�/�)�+� �,�!�'�2�,�-�/�$�/�'�4�+�/�-��)�(�3�)�-�$�'�0�+�5��*�1�3�2�5�.�<�0�&�5�#�� �)�3�"�$�2�"�*�(�)�$��.�1�,�,�*�"�,�2�*�)�$�/� �#�+�7�+�+�%�+�'��'�1�/�7�.�5�0� �6�*�*�3�.�'�'�6�#�0�.�)�5�*�2�"�2�0�*�-�&�*�%�&�-�2�+�2�*�5��2�+�2�7�.�+�/�5�3�+�.�+�4�-�%�/�րـՀ؀ӀրԀ׀ՀǀՀ܀Ҁ؀ۀ؀׀܀ՀԀ׀؀ـف5�8�0�*�3�1�*�0�6�-�-�&�*�+��2��8��(�(�*�)�/�+��5�/�4�?�$�3�7�2� �*�-�<�'�+�1�%�%�.�5�(�)�"��1�+�&�1� �=�+�/�/�-��1�,�.�-�-�,�4�!�-�"�5�6�&�+�5�,�,�+�/�*�3�-�'�+�;�'�-�-�$��*�)�+�+�/�#�.�+�"�?�2�$�8�0�5�-�)�%�-�#�&�6�2��-�*�*�+�-�*�-�2�?�-�.� �1�%�&��1�+�,�+�.�3�1�/�$�$�*�0�0��)�&�!�,��0�*�'�-�,�(�0�-�)�5� �8� �-�-�%�*�/�+�4�(�*�.�#�H�-�+�'� �-�!�%��+�*�7�)�4�,�3�!�.�/�!�*�$�$�$�8�$��"�'�0�9�!�-�1�(�-�!�0�4�2�/��$�'�(�-�/�,�)�(�1�2��$�*�2�2�+�*�0�/�"�,�<�'�3�)�-�*�!�4�*�,�&�.�5�.�*�,�<�.�(�0�/�5�*�*�/�%�+�$�+�$�2�'�:�2�'�/�%�#�-�/�,�.��,�/�$�2�,�)�+�$�/�"�/�/�*��/�.�4�(�.�1�4�0�*�,��#�4�,�)�+�)�5�'�)�0�-�#�*�0�,�9�/�=�(�/�*�-�#�%�;�'�#�%�'�)�8�<�)�'�*�(��&�3�&�+�.�+�-�-�'��&�:��5�$��(�&�$��1�&�1�#�-�,�,�3�+�-�*�/�)�6�"�/�-�4�*�6�/�0�$�,�=�.�'�"�!�(�)� �)�7�#�.�0�"�)�5�(�(�+�.��:�3�)�*�$�"�!�)�,� �*�7�"�3�"�.�!��.�#�2�0�0�7�)�2�$�/�1�.�1�%�'�3�*�+�.�/�3�1�,��@�:�(�.�3�-�/�3�+�)�(�(�)�'�*�*�+�%�/�&�/�(�/�-�,�0�*�'�4�0�.�)�-� �+�-�*�+�,�=�1�"�<�%�*�8�0�2�<�'�+�:�.�1�/�&�;�,�.�0�-�&�%�4�ӀـҀҀـ؀ۀڀҀɀ׀ۀ׀׀րڀ׀Հ׀Հ݀Հ܀ׁ0�9�+�*�-�*�%�/�:�9�1�)�<�-�/��!�6�+�2�0�6�'�,�4�5�*�#�8�1�*�6�+��/�-�2�1�(�5�*�#�;�+�.�(�,�'�7�6�%�*�'��+�)�'�$�#�(�.�-�*�.�/�#�-�(�/�$�7�#�3�6�3�+�&�#�2�-�*�)�,�)�2�)�%�,�@�)�4�1�&�7�)�.�)�1�"�-�(�2�/�,�.� �)�0�2�)�8�(�(�-�3�2�/�+�<�/�4�/�#�7�$�1�+�4�*�(�-�4�-�0�1�=�3�"�2�1�4�.�&�1�/�$�"�'�2�0�)�6�0�-�0�2�+�/�"�/�2�,�0�5�)��5�*�"�#�/�/�*�'�-�-�4�%�)�#�0�%�2�'�$�#�*��<�)�+�'�-�'�!�4�3�5�%�/�<�"�+�,�*�)�=�)�(�+�.�"�*�/�*�$�-�3�,�*�+�)�9��9�&�,�)�)�5�+�'�%�2�4�"�$�.�-�4�)�%�*�#�7�2�'�/�/�,�2�(�#�1�0�(�2�1�+�)�!�?�-��/�7�&�'�9�+�'�!�0�'�.�(�-�:�'�(�%�#�4�!�$��'�-�2�,�+�>�-�/�2�)��%�-�&�)�-�1�%�.�%�1�2�%�/�0�-�/�'��#�&�%��,��%�.�/�,�/�5�0�1�'�#�)�%�1�-�+�&�$�3�#�5�6�#�8�5�2�7�+�$�/�$�4�3�(��1�2�*�5�(�/�"�"�*�)�.�9�1�"�$�5�$�5�&�)�$�/�2�,�:�$��(�*�/�0�0�.�1�+�3�%�)�$�.�/�+�*�(�/�1�3�*�.��)�1�,�+�4�%�'�%�-�2�,�6�0�#�"��*�.�,� �;�-�!�%�,�1�1�.�,�0� �.�'�#�3�(�+�+�4�+�2�!�/�$�*��)�=�,�.�)�+�#�*�>�'�-�3��&�2�*�/�+�$�/�)�%�$�-�9�-�*�1�)�2�-�6�*��&��+��+�,�7�;�$�'�%�4�+�1�+��*�+�#�:�1�6�*�4�4�:�4�ՀրҀЀՀՀ؀ڀՀŀӀՀԀ׀ـրՀۀ׀׀Հ׀Ԁځ)�&�$�/�(�7�%�0�)�*�/�1�.�.�/�-�/�'�&�/�,�#�,�$�>�-�.�'�,�*�$�1�#�5�*�+�+�.�-�&�1�<�,�+�'�0�(�,�)�+�2�/�&� �9�4�*�,��,��>�!�%�#�!�&�(�/�;��*�4�!�;�(�2�,�6�*�!�#�*�0�(�6�$�&�1�1�.�*�.�0�,�$�%�*�#�$�2�7�<�'�1�+�3�%�'�?�3�'�+�0�0�1�7�'�+�,�@�"�/�9�#�-�$�1�*�)�-�/�0�.�/�?�8�(�'�6�*�&�/�0�%�+� �+�1��-�*�"�2�+�/�4�*�+�9�1�)�*��(�$�1�;�(�'�*�)�"�.�5���6�:�5�/�/�%�.�5�/�,�3�%�4�&�+�/�-�+�0�(�*�#�(�3�(�.�5�*�$�<�0�6�-�'�%�)�-�'�4�"�1�$�)�%�$��.�-�4�.�.�5�&�3���)�-��*�,�/�#�+�2�%�/�3�!��#�+�5�*�,�*�1�5�%�3�)�(�+�!�#��*�-�*�-�!�*�6�%�+�,�.�)�%�5�,�-�1�+�0�,�-�:�+�,�/�$�5�'�-�2�,�%�'�+�*�,�$�&�!�+�.�.�&�/�/�+�*�.�$�+�0�!�,�.�'�B�5�0�0�:�<�'�.�'�)�*�'�.�)�(�)�1��(�'�1�4�/�0��$�1�+�/�+�+�$�&�=�(� �!�1�)�3�0�8�/�*�6�,�3�2�/�*�)�5�2�3�,�/�$�(�6�%�.�5��#�0�#�-�2�.�&�(�(�4�.�-�-�:�.�%�.�.�)�&�(�"�/�(�4�&�2� �(��#�3�%�7�,�2�)�/�%�8�0�/�4�1�"�7�'�1�7�-�,�,�$�.�&�'�"�,�*�)�*�!�%�/�1��%�,�0�1�5�$�#�7�"�(�)�(�,�/�2�)�&�.�2�.��>�+�3�1�8�#��%�8��.�6�3�7�)�*�/�+�/�5�5�%�#�7�$� �<�2�/�!�2�)�+�@�0�,�,�*�2�%�"�3�0�*�ـՀՀӀـրՀӀ؀ɀ׀ՀՀ׀׀ҀՀԀҀ׀؀Ӏ݀ց"�5�3�2�"�(�+�6�3�7�(�.�1�4�$�1�*�0�1�%�4�!�4�E�&�2�*�.�0�:�*�.�%�.�-�7�7��)�$� �!�!�0�(�(�#�(�6�"� �%�+�*�/�;�&�6�,�,�(�+�0�0�#�(�(�5�+�7�1��2�-�5�#�?�"�1�4�I��+��-�"�2�0�4�&��*�&�5�+�+�*�.�>�+�!�-�6�/�3��-�*�+�(� �2�7�4�5�*�"�7�6�$�-�&�-�.�'�,�2�3�/�+�*�)�3�.�4�/�4�,�%�1�#�&�$�)�-�&�5� �!�%�7�2�&�"�.�0�+�+�8�-�4�-�,�0�2�-�)� �A�,�,�*�,�(�.�6�.�'� �'�2�"��2�.�*�,�-�,�"�<�/��%�&� �+�.�+�/�*�$�"�,�"�%�(�,�"�*�%�(�1�$�5�&�(�+�9�&�$�4�/�+�+�'�'�*�*�'�%�+�-�9�)�"�'�-�+�/�.�,��*�*�*�,�+�1�%�)�H�)�0�/� �0�+�-�4�1�:�5�2�1�!��(�'�$�3�3�'�)�&�.�-�'�6�,�-�&�'�%�+�!�#�&�'�/�'�+�/�)�*�,�#�$�,�/�*�1��"��/�,�.�;�*�5�/�3�2�'�/�4�'�0�/�5�(�*�'�)�6�+��7�&�'�6�&�&��%�%��0�+�*� �&�5��*�'�*�,�8�%�%�8�1�5�1�#�$�A�9�/�4�)�/�2�0�1�"�2�1�0�9�1�+�2�1�/�2�(�.�,�/��'�/�2�5�2�*�)�)�8�/�6�0�*��-�1�&�+�(�4�-�+�-�#�3�!�$�)�)�5�+�+�(�)�(�'�3�.�1�%�)�-�/�+�B�%�-�-�-�#�*�$�.�+�5� �.�+�(�,�,�)�3�-�1�0�/��)�%�.�)�$�$�1�)�+�>�/�%�3�.�&�&�5�&�)�%�#�/�-�/�;�-�%�1�+�5�1�*�*�5�+�-�+�0�0�1�*�&�/�-�+�/�.�(�4�0�3�-�#�0�3�+�2�/�0�4�1�׀؀րԀ׀ր؀ـڀɀӀӀր׀؀׀րրրրހЀҀځ0�.�=�*�1�,�1�'�/�'�+�-�2�2�,�+�&�.�6� �)��+�1�,�5�&�-�7�/� �'�,�&�%�*�,�/�@�4�,�!�/�4�1�9�*�1�$�#�*�@�,�*�-� �-�<�%�)�(�.�,�&�0�6�'�/�(�'�+�&�#�*�+�;�'�(�/� �0�"�#�7�(�8�/�#�)�/�-�(�%�.�0�#�2�7�#�+�/�1�5�+�-�,�&�2��"�-��#�/�C�)�(�6�4�&�1�%�/�3�8�.�0�6�'�2�5�,�%�1�-�%�4�3�!�&�.�9�7�+�5�*��"�*�'�+�)�!�0��)�)�&�"�%�#�'�2�%�9�0�/�<�+�3�,�'�/�+�'�9�,�#�,�(�:�/��0�1��1�(�(�-�1�+�3�+�1�)�9�,�.�3�"�3�!�/�)�0�)�0�%�-�#�.�/�-�$�#�5�@�0�+�7�(�*�,�4�%�0�/� �'�4�1�0�(��/�,�/�)�0�*�.�$�.�'�4�3�-�+�(�2�(�)�1�6�/�%�1�+�0�9�/�3�+�*�2�"� �2�0�0�-�1�"�*�!�#�!�%�-�*�.�/�.�0�)�?�(�,�)�2�3�'�/�4��6�,�&�8�&�"�"�2�#�*�-�+�1�6�%�-�,�9�6�(�'�%�4�)�.��0�-�5�0�3�6�0�3�9�:�-�-�/�$�*�,�+�%�$�*�+�1�1�5��-�'�0�7�'�-�%�%�2�/�0�5�-�)�*�&�$�.�.�'�3�/�'�,�0�=�/�*�4�.�)�,�%�$�6� �+�/�"�'�5�!�.�/�0�#�/�6�'�:�+�%�8�*�)�/�!�#�$�"�2�+�+�)�.�6�)�-�,�/�*�7�/�!�;�)�+�%�+�=�9��(�8�#�1�(�)�-�3�)�1�/�3�'�.�4�(�&� �(�2�,�"�0�/�*�*�'�,�8�&�%�'�,�3�)�&�*�)�(�0�)�2�+�%�4�<�*�/�+�)�0�*�6�/�<�-�+�8�)� � �,�4�+�,�%�$�)��/�4�%�*�-�%�<�&�5�+�&�2�)�0�׀ӀЀـ؀Ԁ׀ـրˀ؀؀πҀـЀ׀؀ـՀڀ؀Ӏׁ(�*�/�.�,�=�*�9�:�&�+�3�5�)�$�"�#�,�+�!�$�'�'�.�'�"�+�)�!�-�)��/�/�(�(�9�*�/�3� �2�*�9�:�5�7�-�6�8�$�.�)�*�/��8�+�*�*�'�(�-�.�3�/�0�$�2��6�)�&�4�#�5�#��+�-�(�+�:�2�-�%�(�/�9�0�/�)�)�2�0�+�1�/�#�3�!�)�1�4�,�7��(�-�,�(�*�9�*��%�0�&�-�E�0�*�%�-�'�!�,�2�/�#�)�,��"�3�0�4�%��*�"�)�2�/�9�*�0�3��"�5�+�&�3�3�7�/�&�/�)�-��.�'�-�/�+�+�=�%�(�5�.�+�6�;�'�<�(�&�,�"�"�2�1�0�-�7�+�+�-�.�-��/�5�%�2�5�2�)�.��(�$�$�*�-�(�2�+�.�/�<�,�9�1�5�1�%�5�+�*�+�-�/�.�+�&�4�-�'�%�!�5��*�,�(�1�2�7�&�&�.�8�"�0�-�$�2�)�'�)�=��:�3�&�%��.�<�3�!�/�-�(�-�-�-�-��9�7�-�:�,� �7�3�.�-�/�-�%�+�4�/�/�#�(�)�7�'�.�1�<�3�'�'�2�3�*�*�$�)�,�!�,�)�4��"�1�*�/�&�8��)�/�.�*�/�-�:�&�1�3��)�/�'�*�4�9�8�1�-�.�'�&�/�#�(�'�+�6�A�*�/�&�1�$�6�5�+�#�1�)�+�+�!�/��(�&�/�(�-�2�,�7��'�0�/�.�'�)�#�1�.�+�#�-�(�*�9�-�3�2�!�.�4�/�1�7�+�%�'�&�6�%��.�7�*�*�3�'�,��&�1��+�+��7�!�-�*��&�5�*�-�1�.�)�2�8�.�4�0�,�+�)�'�*�-�(�9�7�+�3�+�*�7�$�"�#� �0�%�2�,�"�3�0�4�4�!�*�#�+�/�3�,�.�)�"�(�+�5�+�.�2�4�$�K�/�'�0��.�4�5�-�(�,�/�/�(�#�5�)�1�"�5�2�-�0�:�,�,�5�(�3�&�ۀրр؀ۀ׀ՀԀـ΀ԀԀԀ؀Հ؀ـՀڀրրҀـԁ6�)�!�/�&�.�-��8� �(�.�/� �+�2�&��/�0�5�7�0�:�&�9�-�-�-�/�*�,�8�1�0�.�-�+�,�,�/�"�+�2�2�%�<�9�'�-�%�+�-�(�*�%�+��;�$�(�+�+�-�*�1�&�+�&�!�!�%�(�"�/�*�*�!�(�*�&�+�-�&�7�-�1�,� �%�,�-�1�,�%�,�(�$�2�-�5�4�<�7�5�3�1�3�0�.�9�-�'�*�1�)�%�(�)�/�6�<�0�&�/�>�1�7�3�8�+�"�.�(�)�8�(�)�/�.�-�.�,�$�1�&�0�!�"�.�/�-�,�-�,�+�,�6�0�*�0�'�5�#�-��%�(�*��-��.��9�*�0�&�.�&�-�%�!��2��/�3�(�/�1�"�/�9�%�/�.�+�*��'�-�3�A�0�0�-�0�3�/�/�2�'�;�'�.�2�#��1��"�+�0�:��$�0�.�1�*�+�-�2�-�%�0�7�/��'�.�1�"�3�%�4��/�5�.�3�(� �%�+�%�)� �(�2�(�8�(�/�$�'�%�'�#�,�4�8�)�7�8�3��,�,�&�)�6�7�%�&�.�&�#�-�#�&�1�3�+�-�&��+�.�-�)�,�+�8�)�1�)�:�0�2�'�3�1�*�'�!�%�.�;�)�*�7�2�)�,�5�>�(�7�,�:�-�!�%�.�#�0�/�'�9�1�'�4� �.�&�7�5��/�(�+�4�.�)�0��.�+�=�0�4�)� �/�'�#�/�2�%�0�2�"�/� ��+�+�$�4�&�+�'��0�#�%�2�/�'�0�7�8�&�+�+�-�(�.�4�<� �5�8�,�+�,��.�/��&�3�0�)�,�7�3��8�"�5��(�%�)�1�#�.�!�%�0�6�0�,�&�6�-�-�&�+�%�'�9�$�*�2�/� ��*�,�7�,�8�,�5�(�/�6�'�/�3�.�*�*�1�"�3�6�*�'�'�1�-�/�,�.�1�1�"�*�2�*�)�+�'�*�$�5�&�.�%�4�*�*�9�0�,�/�6�,� �'��.�:�=�+�4�6�ԀрրӀـӀҀЀӀ��рــ׀ՀՀҀՀڀрڀڀ؀ց<�#�'��)�;�)�-�&�=�'�0�/�;�/�"�-�)�-�+�)�3�5�6�&�4�0�+�2�4�5�,�(�4�'�!�.�4�+�*�+�.�-�7�=�1�4�/�?�.�1�2�%�.�/�4�'�-�4�)�,�6�*�'�.�)�2�0�'�+��9�-�(�&�.�&�>�1�*�3�,�&�*��3�)�-�7�'�9�"�!�3�"�,�"�+�!�'�+�6�.�&� �3�2�+�5�1�+�,�'�-�<�#�)�;�3��"�&�3�+�0�1�.�!�*�"�7�%�&��(�(�,�3�*��/�%�(�2�1�&�7�(�(�-�2�3�/�2�2�'�&�)�4�(�,�+�+�)�'�'�2�!�(�3�/�1�7�%�(�%�.�0�)�%�0�+�%�2�1�,�*�5�>��,�&�/�*��1�3�)��)�/�"�+�+�*�!�'�2�(�1�/�'�/�+�&�2�+�/�.�!�)�'��0�/�0��2�1�%�1�*�-�2�/��$�5�,�(�+�"�(�)��2�(�#�"�-�4�&�&�3� �*� �#�/�+�'�-�3�.�/�,�/�3�)�:�*�-�1� �)�4�(�.�8�'�,�.�-�*�/�$�*�(�0�&�2�5�)�$�+�+�*�-�6�5�3�;�+�%��/�%�,�,�2�/�5�-�1�1�-�7�"�4�5�1�2�,�*�'�*�*�0�+�,�4�4�/�-�.�,�6��1�3�,��.�?�1�!�;�7�8�'�'�+�-�3�$�1�2�,�;�2� �/�'�'�1�-�*�)� �%�1�7�*�3�%�2�2�5�,�)�-�&�!�1�!�&�%�,�*�*��(�+�%�#�/�7�4�)�1�$�,�-�&�.�,�0��!�,�*�,�!�)�'�-�,�'�0�6�3�0�&�$�+�2�'�)�2�,�&�6�/�'�*�*�'�)�/�1�*�!�,�)�2�0�/�0�6�2�0�'�.�-�#�<�-�4�4�3�$�0�#�.�)�#�%�0�!�(��$�*�'�#�.�5� �.�9�-�3�%�,�/�+�)�2�2�/� �9�6��7�%�-�/�+�(�4�4�1�%�-�3�.�1�4�,�(�1�ҀԀԀۀрՀ׀׀ӀȀـ׀ԀԀڀڀր؀ҀՀՀӀӀ؁6�#�(�=�!�8�2�(�+�=�-�A�4�!�+�-�*�/�,�+�)�9�,�/�3���'�1�+�-�5�!�'�/�)�)�.�*�-�9�(�7�(�.�)�A�.��,�$�(�+�2�.�.�>�2�(�6�8�0�3�&��*�-�(�0�,�.�+�/�.�.�)�7�.�%�(�1�-�"�)�'�(�.�4�1�&�:�0�/�3�$�$�,�.�1�.�5�#�)�/�4�3�1��(�4�6�*�.�#�*�'�)�"�*�"�!�5�"�.�-�-�(�0�5�4�'�$�'�5�3�+�<�1�4��,�$�-�.�5�-�>�2�,�+�)�'�/�'�#�'�,�0�+�%�.�3�)�-�*�3�+�+�#�7�4�2�3�%�5�/�'�,�-�5�1�9�-�!�(�0�3�'�+�1�3���4�#�%�6��+�)�'�,���:�/�+�+�)�)�@��6�&�%�,�%�7�+�*�1�'�*�5�5�)�.�3�/�.�� �&�+�/�1�+�+�1�/�9�6�"�9�.�&�/�.�-�:�(�=�#�,�(�%�/�0�,�-�$�,�$�4�-�&��5�)�!�7�)�0�)�+�'�0�$�%�0�#�/�*��'�!�>�)�0�*�0�.�,��.�+�0�2�2�.�?�/�#�#�5�:�0�+�3�+�0�+�)�#�'��/�(�&��2�*�+�/�0�*�)�(�!�&�'�+�4�(�(�*�%�0�1�+�+�(�/�(�'�/�.�2�3�0�4�-�,�!�(�2�/�0�4�0�/�(�+�&�1�'�0�'�'�=�0�%�(�(�0�)�$�$�%�&�+�1�;�.�,�&�5�-�"�*�&�"�2�)�-�5�-�1�+�<�'�#�B�1�/�1�-�@�/�+�$�#�C�'�;�%�'�2�6�&�)�-�3�3�-�2�&�&��,�2�1�4�(�0�7�6�0�*�.�+�*�!�*�/�5�)�'�5�6�)�&�*�,�6�1�(�+�&�%�)�B�'�-�)�3�2�,�7�,�-�/��"�5�0�&�'�,�#�5�#�*�5�9�-�6�5�$�@�/�5�(�/�)�(�-��#�1�8�0�,�1�*�+�/� �+�5�(�4�π܀Ԁ׀ــ׀؀րĀ׀րӀ؀ӀՀ܀ԀۀՀӀԀӀҁ+�%�(�1�4�&�6�/�&�*�8�.�/�(�5�+��*�5�)�#�&��7�+�>�:� �:�(�'�-�,�1�/�%�6�2��)�7�$�-�0�0�2�6�3�2�0�(�5�!�,�,�;��*�5�!�4�'�%�*�(�2�7�-�0�)�*�9�'�4�+�9�)�;�2�=�C�+�'�4�(�/�1�3�)� �%�0�.�)�+�.�&�0�5�:�*�4�%�.�7�#�+�8�,�2�-��>�1�+�-�.�,�6�0�=�'�/�'�2�/�-�4�'��+�8�,�#�5�'�5�/� �-�-�8�.�'�(�6�*�1�%�*�-�(�&�2�/�)�%�/�-��.�-�2�3�$�(�/�-�3�+�/��5��<�'�6��$�7�"�5�-�6�8�!�C�$� �,�&�.�?�%�(�(�!�&�<��.�'�-�(�#�+�5�%�0�*�+�%��3�2�6�3�-�4�'�6� �%�'�5�(�'�2�9�5�)�(�0�1�,�/�,�#�9�)�'�'��<�-�)�+�,�+�*�/�&�.�'�%�'�*�6�(�+�.�/�6�-�/�,�0�)��*�5�0�-�2�5�.�*�,�-�.�*�,�/�0�.�2�6�'�,�1�3�(�-�8�8�+�/��.�)�/�+�2�%� �#�.�.�-��/�-�0�#�&��+�3�&�&�)�!�*�:�.�5�,�(�/�-�,�(�$�+�2�(�(�/�,�)�%�)� �&�%�)�/�2�-�+�-�:�"�*�)��)�,��3�'� �8�#�%�1�'�/�1�6�5�7�#�$��$�3�2�$�1��*�3�*�.�)�)�6�&�+�$�-�'�"�/�/�$�+�,�9��&�'�*�(�-�:�*�)��.�4�)�*�-� �*�#�,�)�(�%�+�2�1�.�2�(�<�0�*�3�4�3�&�/�2�,�9�#�'�)�-��F�/�,�%�"�6�)�1��-�+�/�,�-�+�7��"��,�*� �-�+�-�)�'��-�'�+�'�7�0�;�7�9��3�6�%�%�0�$�,�+�$�7�$�"�"�3�3�/�0�/�-�+�/�:�9�)�,�/�7�&�<�,�Ԁ׀׀݀Հ׀ր׀Հǀ܀ـڀۀрԀ؀πـ؀ր؀׀Ӂ:�#�8�'�(�&�.�,�-�6�(�+�1�+�1�+�'��9�(�6�5�!�8�#�1�2�.�/�$�+�/�4�+�(�.�7�2�=�4�,�0�(�3�2�(� �"�+�/�1�.�)�"�4�0�(�0�#�!�3�,�,�$�1��)�0�)�9�B�1�1�7�2�%�'�'� �.�*��'�'�$�6�&��2�#�,�%�(�!��9�-�(�$�)�.�5�/�$�,�%�8�(�-�*�.�'�%�1�&�+�2��4�5�*�"�)�-�/�,�!�,�.��/�(�*�0�%�(�/�+�$� �'��(�#�&�:��-�*�$�1�0�%� �-�.�&�.�"�(�(�:��0�%�,�*�(�"�(�#�'�$�8��)�>�3�!�6�.�(��$�5�#�/�6�'�&�(�(�,�#�#�%�0��.� �,�7�&��.�$�0�(�1�*�5�,�'�6�+�)�'�1�%�*�-�,��)�"�9�3�)�%�#�/�&�.�;�+�-�2�&�'�.�/�*�%�'�*�3�/�2�-�-�-� �$�;��(�8�"�%�)�,�*�9�(�(�1�0�-�(��%�)�6�3�>�'�4�&�D��2�*�#�'�"�3�/�/�2�/�4�/�'�$�-�;�%�.�,�*�$�/�/�"�)��+�&�)�*�)�0�0�/�'�#�+�.�%�/�#�.�0�,�2�4�2�,�.�8�7� �/�!�<�1�9�<�$�7�*�)�.�2�%�)�,��'�;� �)�/�!�+�3� �%�-�*�:�%�/�/�!�4�,�1�/�!�0�"��+�'�"�4�&�3�#�!�0�1��)�/�0�*�)�+�"��'�*��;��6��)�&�)�1�&�&�*��*�#�"�)�8�/�-�6�0�7�7�!�%�-�.�-�%��3�(�#�4��0�(�/�"�9�/�%�.�0�-�,�/�5�"�6� �1�0�-�/�'�*�)�*�/�7�)�,� �$��2�$�-�4�4�*�&�:�.�8�&�+�(�)�6�+�(��-�'�"�)�-� �-�$�#�*�4�)�-�,�5�5�-�/�.�+�3�/�&�,�-�-�#�5�(�4�-�9�7�؀ՀՀ׀؀Հր؀Ԁƀրڀـր׀؀ҀՀՀ׀Ҁ؀Ӏف6�<�5�-�#�+�!�7�+�7�3��3�7�-�0�-�$�� �1�#�-�4�)�,�3�/�(�-�(�3�-�<�)�#�.�.�+�2�'�2�/�$�(�%�)�4�=�/�2�3�*�(�#�2�)�4�&�%�+�&��#�:�/�/�3�#�-�1�4�)�5�3�)�(�*�.�-�"�$�1�"�/�:�*�/�6�+�5�0�0�)��3�3�&�%�#�8�1�/�2�8�1�/�*�0�)�.�!�7�.��9�)�*�*�$�+�-�3�5�.�1�4�%�0�&�%�)�9�'�(�.�+�.�2�/�)�*�)�#�1�1�-�.�/�,�,�#�)�8�+�1�1�(��8�.�&�/�*�*�6�'�(�5�*�.�1�� �'��/�)�.�.�-��+�$�#�-�'�"�!�/�/��-�5�(�%�(�5�9�/�+�-�5�8�-�1�2�=�0��&�)�;�"�/�(�6��-���5�4�'�0�,��-��/�&�0�4�*�)�5�*�"�0��"��+�&�#�+�3�!�,�0�$�8�(�'�%�6�6�(�8�!�.�)��6�(�&�+� �*�)�,�3�2�1�%�&�0�(�4�.�'��%�,�*�6�2�'�(�,�)�4�0�+��2�.�)�1��,�/�)�-�6�6�6�%�0�2�-�6�.�1�$�)�,�0�)�"�+�,�&�)�,�/�$�9�7�"�"�-�/�)�)�2�1�#�4�-�*�2�/�4�(�0�#�(�$�'�3�9�(�7�)�0�+�4�1�$�2�/�-�7�.�#�-�0�1�!�*�7�/�6�-�'�+�(�2�$��/�1�*�$�-�2�/�>�/�+�-�.�,�%�.�3�(�'�-�*�+�"�4�'�#�/�.�0��3�$�-�,�+��/�)��1��+�0�3�+�(�,��� �0�+�2�7�3�-�2�'�%�,�'�:�3�-�!�8�4��$�:�*�#�*�2�.�+�+�/�%�+�/�$�-�.�4�(�)�%�1�*�(�*�(�.�)�*�)�)�9�0�8�+�*�0�1�,�.�4�1�(�!�6�,�/�1�,�,�)�0�5�+�+�+�0�%�8�1�"�(�4�*�7�ڀڀ׀րۀ׀ҀԀـǀҀۀӀրڀڀրҀրӀրԀՀӁ9�,�4�3�0�/�5�$�-�0�&�/�-�%�+�&�0�#�3�7�-�*��'�/�,�%�5�1�#�4�=�3�>�'�/�.��.�$�.�/�3�$�0�(�1�2�0�(�+�,�-�-�/�"�/��+�"�(�'�7�*�-�*�"�%�<�/���5�(�,�(�-�$�6�)��2�)�+�#�-�*�0�'�.�=�/�5�/�%�'�%�&�.�-�'�/�2�+�'�/�*�/�-�+�+�-�8�+�,�-�"�$�)�,�%�*�*�/�(�3�/�,�,�0�3�,�4�*�"�,�,�/�.�&�/�&�1�3�6��(�8�)�'�)�2�,�)�3�5�4�8�*�(��#�,�5�&�/�&�)�0�#��+�#�(��1�&�8�4�*�*�<�.�7�-�/� �:�-�$�6�%�&�,��/�,�'�*�+�(�+�,�'�*�*�.�2�4�/�9�+�5�2�6�4�9�6�$�0�.�0�1�!�!�8�3�-�#�(�.�/�&�1�2��0�/�<�5�&� �-�4�'�*�3�/�!�+�3�2�'�%�1�&�#�+�.�%�/�(�'�/�0�6� �/���3�-�+�/�.�-�0�2�-�5�/��<�&�"�(�(�+�"�,�)�)�0�)�)��,�:�'�/�$�,�'�)�/�)�6�=�#�/�.��7�*�2�,�-�%�3�2�'� �+�)�.�%�(�(�:�(�,�)�!��+�-�%�%�,�%��)�#�0��$�1�!�"�/�!�$�#�0�6�6�/�#�)�#�8�$�-�2�'�9�-�1��0�,�.�-�5�0�)�,�2�0�1�+�&�+�/�%�&�$�:�>�2� �&�4�*�$�� �"�1�*�,�.�)�3�&�3�2�8�(�6�*�*�#�*�1�3�2�3�)�(�,�'�'�*�'�%�(�+�*�*�)�+�+�/�&�(�+�&�-�3�)�<�9�+�$�7��/� �4�*�(�*�,�$�(�&�-��)�9�8�.�)�'�/�*�3�(�$�)� �&�9�/�5�/�6�(�'�'�0�)�� �*�(�0�-�0�-�+�(�%�1��1�.�-�"�9�+�/�0�*�;�,�,�#�-�*�9�׀ӀӀ׀؀Ҁ؀ԀՀĀـڀՀҀ؀ՀۀӀӀ؀րՀЀف)�-�/�)�,�'�.�0�&�-�,�*�3�)�(�/�8�$�.�3�4�.��2�A�)�/�"�)�%�7�$�,�8�+�/�0�.�+�%�/�*�$�2�1�1��#�-�2�)�$�#�3�4�+�$�5�&�0�/�1�,� �,�+�+�5�6�+�.�'�0�3�5�,�.�-�/�9�$�,�"�0��1�/�%�;�-�#�.�.�'�)� �/�"�.�,�&�,�'�#�,�'�&�+�,�0�!�/�;�,�.�4�4�,�3�,�,�,�9�6�!�(�)�7�;�/�*�.�0�1�2�*�$�0�.�'�-�0�1��=�-�-��'�6�2�-�,�&�-�>�.��2�&�8�/�+�(�0�(��"�/�3�-�5�3�*�*�)�#�+�3�'�,�&�*�+�!�!�#�!�-�'�8��2�(�)�-�)�7��0�.�2�9�*�)�%�2�&�+�'�5�.� �+�3�.�/�8�)�-�*�-�'�,�9�+�3�,�;��0�'�)�'�%�+�1�.�2�%�!�%��1�,�(�,�.�"��)�)�&�+�2�0�'�-�+�7�&�"� �*�1��%�2�)�)�2�'�,�,�-�$�"�#�'�1�-�*�,�%�-�*��(�=�+�(�)�6�1�+�)�-�-�/�0�#�7�2�0�3�:�.�*�8�(�'�$�6�+�-�)� �*�.�2�*�)�-�0�,�7�7�'�7�:�*�+�!�4�.�6�!�/�)�<�3�2�2�,��%�/�&�8�7�&�1�*�.�2�9�)�$�-�,�!�)�/�7�#�-�$�*�:�5�-�5�!�4��.�*�'�(���'�%�-�/�%�(�.�+�0�/�.�)�,�,�(�6�#��1� � ��>�0�4�6�!�&�1�"�4� �/�(�/�2�&�#�/�?�*�'�1�+� �6�-�3�$�+�2�"�!�-�-�2�6�+�%�3�'�"�4�0� �&�,�5�+�!�1�,�)�4�,�-�6�.�(�+�!�-�,�'�*�1�7�)�/�*�5�,�2�8�+�4�3�/�(�6�/�%�9��/�=�,�+�7�5�%�(�-�,�2�+�4�1�$�*�(�4�!�/�,�)�@�9�/�&�4�Ѐ؀Հր؀Ѐ׀րڀŀՀـրـԀՀԀـ؀ԀـڀӀف5�2�*�1�*�=�2�*�-�-�*�/�%�+�9�*�0�6��'�7�+�8�9�2�4�,�#�'�7�&�1�%�=�3�#�7�5�0�'�*�4�)�$�=�!�0�+�.�)�/�!�&�1�*�)�#�-�&�6�,�!�9�!� �$�,�/�2�0�$�1�'�2�"�.�&�*�,� �7�'�(�(�4�&� �#�,�(�/�/�#�.�&�"�.�/�$�/�(��$�5�5�2�2�7�*�/�1�;�'�$�%�%�8�'�6�/�+�(�/�,� �*�,�/��#�5�%�*�-�)�&�5�-�$�-�!�,�2�7�'�,�(�%�&�8��5�/�0�2�,�)�(�)�#�:�(�%�4�9�7�&��1��#�3�%�+�-�1�1�-�.�4�#�)�3�-�(�3�&�3�'�3�+��-�4�$�$�,�/�#�6�-�"�3�2�-�%�.�-�'�&�(�+�#�+�1�&�5�+�0�1�'�0�5�%�,�+�.�0�!�%�5�4�$�2�/�%�.�6�<�0�%� �/�&��,�-�%�-�2�:�%�#�2�%�1�-�,�*�.�2�-�,�-�$�2�,�!�"�*�(�(�,�,�?�-�.�(�6��=�(�)�"�*�2��/�+�-�*�2�.�%�#�*�4�'�$�"�(�(�(�"�%�"�(�#�)�.�)�)�0�6�-�!�2�#�(�%��6�1�1��(�%�*�&�.�)�*�&�*�-�2�+�5�)�1�&�+�4�.�1�/�3�,�*�.�(�!�7�!�/�2�)�-�3�#�&�,�0�'�/�1�2�1�#��'�(�/�5�'�!�3�)�'�9�-�)�#�<�$�4��&�"�3�9�;�+�/�'�0�,�/�%�!�$�6�2�'�-�-��2�7�-�.�1�&�3�3��'�,�3�%�'�(�2�0�%�/�5�!�,�+�-�*�)�G�)��5�-�-�#�)�6�*�'�-�3�$��:�,�<�*�)��(�%�-�3�?�4�/�0�*�*�,�'�3�-�2�-�%�-�%�4�.�3�5�5�&�#�%�.�<�)�6�$�(�*�1�5�*�+�/�.�1�'�-�*�6�+�6�<��,�)�6�'�2�8�*�*��րـրҀ؀Ӏ׀؀Ѐƀ׀Ӏ؀؀рۀր׀ԀҀ؀ڀ׀ځ-�/�/�.�/�,�(�/�+�(�0�1�4�1�1�9�'�3��,�0�5�2�7�� � �4�*�@�+�%�+�"�=�0�,�0�*� �%�&�2�,�*�+�#�:�1�,�,�(�(�5�$�+��/�1�0�(�4�)�)�(�.�'�+�1�#�.�(�&�*�/�$��"�-�5�;�#�6�1�0� �-�1�*�*�-�.�(�/� �2�.�2�0�/�'�6�+�(�.�/�)�1�.�(�&�.�*�1�)�9�'��+�3�3�#�5�%�%�(�0��)�'�,�.�$�%�2�(�'�*��1�,��0�*�/�#�#�3�)�1�)�(�2�'�%�:�-�'�/�3�/�"�%�-�,�%�3�+�*�&��&�,�,�(�3�2�/�&�.�#�,�#�/�?�0�5� �6�5�,�;�*�.�(�/�"�&�+�%�-�5�/�%�2�$�1�&�$�$�3�3�+�)�)�)�+��(�,�0�4�%�$�/�3�#�.�3�1�0�3�3�*�&�1�,�4�+�&��!�)�2�1�&�)�3�"�'� �.�.�/�%�,�.�+�&�+�'�.�0�-�9�&�*�0�%�1�+�"�3�)�6�5�)�/�,�+�%�1�+�2�#�4�-�+�)�#�-�)�/�#�,�7�4�'�*��0�2�0�.�+�2�4�*�3��4�1�'�/�(��$�#�$�)� �4�'�1�(�&�-� �,��$�%�2�8�$�+�+�"�'�2�3�.�*�"�2�1�,�$�"�2�+�+��(�2�%�)�,��3�(�%��+�/�"�+�%�0�-�7�,�&�0�+�%�.�*�8�,��;�+�)�*��1�'�)�(�%�,�&�:�*�%�,�'�"�*�)�,�3�,��$�%�3�1�-�3��.�+��0�0�6�/�3�*�"�.�*�-�'�+��&�+�2�5�&�,�(�/�,�2�5�%�,�,�+�"�&�2�!�"�"�4�(�%�+�5�5�/�/�"�0�)�%�$���(�0� �.�0�'�*�)�)�$�0�7�%�(�/�6�3�=�+�(�+�1�8�-�/�5�9�#�+�$�-�+�5�#�&�+�-��0�-�6�(�"�&�(�-�=�$�Ӏ׀ՀԀۀڀـԀ׀ŀـ׀ۀـۀԀ؀ۀրڀр׀րՁ:�2�8�=�!�!�;�/�*�2�0�&�6�1�%�4�1�4�(�8� �(�*�8�=�(�%�0�*�-�9�2�1�2�4�9�)�$�0�=� �(�+���!�(�%�8�#�+�&�2�+�*�"�"�6�&�'�#�+�(�0�3�(�/� ��%�5�&�!�1�/�/�.�)�/�"�'�&�+�&�2�1�9�/�/�2�*�%�%�&�$�'�;�!�7�8�%�/�<�2�'�*�,�%�&�+�.�)�)�,�&�"�)�/�$�#�-�$�$�2�.�)�/�4�'�&�)�7�)�8�3�6�(�'�'�(�-�&�+�+�*�,�)�%�(�2�&�5�*�0�'�+�9�'�*�+�#�3��(�4�(�(�-�,�$�'�-�-�*�+�*�&�'�"�6�,�!�-�,�%��+�0�"�3�/�-�3� � �-��,�3�3�-�:�:�*�5�3�-�&�#�(�1�%�%�+�'�+�*��&�+�4�/�,�*�'�.� �'�/�(�&�+�)�+�1�%�%�9�5�(���*�!�-�!�"�8�/� �-�-�2�0�3�"�&�(�.�)�#�%��;�.�7�1�4�:�;�2�'�$�-�4�F�1�.�+�=�(�.�2�;�-�*�0��1�2�*�+�*�,� �3�-�9�!�4�)�)�=�#�&�5�*�0�1�'�-�4� �)�'�/�-�*�0�&�'�+�*�.�+�*�"�0�1�4�1�3�"�/�&�*�+�-�:�+�&�;�0�,�%�%�/�-�+�5�*�'�/��-�2�5�&� �/�3�;�$�%�$�3�0�1�/�3�!�0�*�2��(�*�'�5�5�-�2�*�*�(�6�/�6�2�1�5�*�'�$�*�2�9��0�'�'�3�$�)�.�"�3�(�+�(�(�/� �/���0�:�*�+�?�$�$�)�=�)�<�-�+�%�,�3�'�-�/�)�2�+�0�-�#�6��+�&�'�#�$�"�%�7�,�"�.��:�0�*�/�-��,�%�6�*�#�)�/�*�0�0�%�.�*�/�,�/�(�-�.�4�"�1�7�7�%�(�)�:�!�/�,�'�/�/�2�3�1�/�&�,�2�+�/�/�:�$�/�)�7�+�&�Ӏ؀ـЀҀԀրӀՀǀӀՀ؀Հ؀ЀՀրӀӀ܀ЀՀҁ/�5�-�5�3�5�1�,�.�9�2�*�)�+�,�%�0�-�:�.�%�3�,�1�(�#�)�1�.��(�/�.�'�"�/�(�)�/�$�*�3�)�,�1�.�1�$�-�*�:�-�+�1�0�-�8�,�)�-�1�%�1�0�2�3�.�+�/�-�0�*�.�/�<�,�"�,�)�'�%��.�/�2�0�.�/�2�2�+�'�1�/�/�)� �)�&�8�7�4�:�-�2�(�1�#�3�,�'�1�-�#�*�"�*�#�+�-�!�!�'�.�&�1�2�1�5���-�2�:�(�2�$�+� �7�'��.�*�1�*�/�'�&��0�$�7�,�*�!�.�)�;�8�4�"�"�"�-�*�(��1�1�-�2�-�1�.�'�1�!�"�4�8�'�0�!� �6�4�*�)�1�#�3�/��$�5��-�(�#��!�$�-�%�9�2�,�%�(�0� �(�$�.�!��"�0�'�+�'�.�%�4�+�)�)�'�,�,�-�*��!�0�)�'�1�3�/�3�4�2�+�9�)�:�'�,�2�1�$�/�6�3�!�&�7�$�'�-�'�1�,�4�1�7�7�+�2�/��$�:�+�)�-��2�/�'�0�;�"�5�+�+��5�%�%�'�#�$�/�"�)�(�&�%�,�)�;�-�3� �)�%�3�-�*�%�.�%�-���%�"�#�4�)�*�)�*�-�(�%�)�'�,�-�'�2�?�)�+�&�2�%�/�-�,�,�3��9�0�&�!�1�!��&�)�(�(�1�8�7�.�� �1��0�*�/�;��6�(�0�0�(�%�$�-�5�+�/�.�0�0�)�"�-�,�+�/�@�,�)�(�"�+�3�.��'�(�3�%�,�9�$�*�/�/�<�$�*�+�.�"�3�+�+�3�!�0�*�'�-�0�&�.�8�+�1�3�-��'�'�1�%�!�'� �%�-�'�7�/�2�.��5�"�0�*�"�/�+�5�%��%�-�&��*�'�2�+��5�-�5�-�2�1�0�-�6�@�"�)�5�*�7�&�3�.�8�+�7�+�'�7�'�5�&�7�+�$�9�-�)�.�6�'�(� �+�@�2�-�'�+�ۀӀπ׀׀Ӏـ׀ـŀр؀׀ՀҀ؀Ԁ׀ՀՀրՀ܀Ӂ8�*�5�/�%�5�2�'�*�-�4�1�%�0�!�-�+��2�&�!�3�+�+�'�$�4���/�/�#�)�4�)�.�+�7�&�*�+�3�1�*�1�'�0�*�+��1�&�/�#�0�4�3�/�/�)�0� �5�&�/�-�/�*�/�8�1�(�/�2�"��"�7�&��4�'�7��0�3�*�4�1�*��0�.�)�)�/�!�)�.�(�/�/�#�)�2�4�(�(�/�1�0� �3�(�(�0�<�+�+�:�.�>�1�,�3�+�7�'�8�1��"�+�4�(�'�'�3�%�0�/� �0�,�'�,�)�"�+�&�3�$�$�#�6�*�(�9�!�"�"�(�.�&�"�0�$�/�'�-�/��/�/�/�&�/�2�'�)�/�5�%�5�1�!�&�"�-�#�5�&�.�&�"�&�2�$�:�7�&�"�&�+�&�+�(�)�7�"�"�2��*�"�(�+�'�'�0�6�8�$�"�1�<�*�#�2�/�.�+�>�0�)�-�)�(�)�!�+�0�)�%�+�1�)�3�)�+�%�.�(�4�3�/�$�)�2�#�.�&�6��)�8�'�-��'�9�1�)�.�*�/�(�)�"�2�'�'�-�*�4�&�/�+�,�"�3�+�$�)�)�.��)�7�0�)�"�0�%�2�9�%��8�4�(�.�(�/�+�'�+�4�5�,�)�(�,�(�1��&�+�/�*�:�*�*�)�7�.�7�+�)�+�4�+�3�4�/�3�,�1�+�,�4�6�#�'�&��.�*�)� �3�1�?�)�-�)�.�/�3�%�2�.�+�,�'�.�3�$�+�%�0�5�)�/�.�(�,��'�1�4�(�4�+�/�-�6�%�:�.�1�7�5�'�/�0�.�!�4�*�/�7�/�+�)�(�2�%�2�)�(�'�<�9�-�+�*�+��/�*�%�9�)�-�%�8�2�,�2�&�+�.�*�!�+�+�5� �"�&�8�&�>�/�'�9�)�5�/�"�'�/�&�)�,�8�*�/�#�'�-�8�1�:�+�/�$�/�)�1�"�-�7�1�/�'�-�-�#�+�'�+�-�*�.�(�1�4�2�1�2�%�1�4�)�:�&�/�+�)�2�ր׀Հ܀րՀՀ؀рÀրӀ׀Ӏ׀Հ׀׀ۀ؀Ԁ܀րׁ,�7�#�4�-�1��)�-�?�"�8�0�/�$�!�.�<�2�7��#�(�/�!�0�%�+�)�-�8�8�=�1�#�5�4�-�3�3�$�;�8�.�/�;�4�+�0�'�-�-�3��0�1�1�2�3�2�"�#�$�-�1�&�7�6�/�,�.�.�8�5�3�!�%�%�-�7�5�(� �/�+�6� �,�/�1�$�.�5�*�/��/�"�-�5�8�6�+�.�0�"�2�"�5�%�1�6�#�)�0�#��,�-�!�9�1�0�'�-�2�0�*�$�3�%�+�,��)�/�2�+�&�&�4�+�5�/�&�3�,�,�'�4�=�1�!��"�/�&�2�9�4�+�+�(�*�/�!�.�'�0�"�+�"�/�4�(�1�7�'�3�$�)�"�(�6�(��.�!�$�$�&�2�-�)�%�-�.�$�+�)�(�0�4�)�*�1�0�*�5�+�!�#��&�-�'�&�.�$�%�/�.�&�1�2�0�5�(�7�8�*�2�.�.�5�-�2�+�%�1�&�"�'�9�'�+�5�3�(�/�;�'�,�.�.�-�6�/�+�3�&�8�"�7�'�,�$�(�0�*�-�%�7�6�(�,�-�6�5�1�/��/�1�+�/�-�-�)�-�%�2�2�0�1�*�4�-�+�/�4�/�(�+�&�8�'�%�0�,�)�2�/�-�'�,�4�0�4�.�$��2�9�,�'�:��8�)�/�*�-�%�.�4�(�,�+�3�(�1�+�#�'�$��*�&�$�:�/�+�"�%�1�.�$�+�3�4�(�/�7�0�/�1�%�*�)��#�6�"�1�0�1�2�0��6�"�2�.�:�=�$�-�'�+�'�4�7�+�*�3�0�7�0�8�%�5�-�&�!�+�"�2�)�&�)�3�%�-�2��5�)�/�&�!�)�.�1�+�+�4�-�&� �5�"�4��*�B�+�/�;��3�5�+�'�2�)�/�(�1�(�)�?�*�(�(�/�,�6�'�.�7��>�8��7�)�1�8�*��/�2�*�1�<�A�*�1�0�$�+�)�+�$�+�3�0�4�,�'�)�:�.�!��7�-�8�2�%�&�)�,�)�'��4�/�%�0�.�ۀӀԀԀӀـڀـӀƀ׀Հ׀ՀԀրڀЀ΀Հۀ݀Ԁ܁2�4�8�0�/�*�1�5��-�6�"�)�+�!�'�$�)�#�$�)�6�4�-�3�#�+�&�5�(�#�&�/�(�&�(�(�1�(�-�5�.�+�:�+�5�'�.�/�-�-�+�2�'�$�,�4�(�4�"�.�-�%�3�(��0�'�0�'�%�&�1� �2�%��/�!�+�.�6�+�0�,�$�4�%�<�%�-�4�$�.�1��3�)�#�$�+�3�$�;�#�,�0�,�4�@�%�*�.�'�)�'�/�*�6�3�8�'�*�/�7�/�3�&�(�'�3�1�/�#�1�!�)�0�/�!�:�+�&�#�3�%�.�-�+�'�/�/�3�%�'�8�'�/�(�&�/�&�&�*�(�+�+�+�$�-��%��9�'�5�/�(�-�2�.�/�%�-�2�/�.�8�4�8�2�-�*�#�.�.�+��*�8�6�%�3�$�&�2�6�5�,�-�+�9�.�9�(�-�(�&�(�4�$�1�/�&�(�0�)�4�)�-�!�0�'�#�*�/�7�'�;� �(�2�0�.�*�.�&�-�0�.�'�!�2�-�*�4�'�(�'�/�#�/�%�$�#�)�1�1�/�-�*�*�2�&�-�*�,�&�/�+�1�6�/�,�/�C�#�%�2�4�#�1�"��"� �0�5�7�0�1�2�.�+�#�/�2�%�/�-�+�$�(��-�0�#�$�*�"�$�2�+�'�+�)� �2�;�)�,�3�,�0�,�#�,�)�5�(�,�-�$�*�-�+�/�,�,�-�$�!�%�/�4�)�+�5�(�(�+�!�#�+�(�.�!�+�/�)�%�,�9�/�&�.�&�*�3�/�0�/�/�0�7�#�'�%��1�6�+�1�-�1�3�-�(�2�+�(�0�9�,�#�)�$�-�*�(�#�/�-�&�"�;�'�#�'�,�6�0�*�'�/�/�4�+�,�"�+�'�/�0�*�/�,�*�0�.�-�#�+�2�5�/�7�(�-�)�$�"�/�)�6�8�4�#�+�?�%�&�.�(�*�8�7�/�(�-�1�2�)�'�0�>�/�0�3�#� �$�/�*�.�4�,�0�4�1�.�9�+�,�3�)�1�1�0�-�+�7�&�*�6�.�5�7�0�0�$�&�ڀ׀ՀӀՀՀҀ܀ӀȀր؀ـՀ׀րՀـ׀ҀҀۀԀՁ.�+�5�6�#�+�/�0�,�!�-�.�/�!�'�6�-�%�0�'�/��9�!�7�&�2�-�'�1�/�0�%��/�7�)�/�+� �1�%�1�#�-�'�4�.�+�.�)�4�/�!�6�/�8�$�.�3� �,�;�/�(�#�'�3�/�-�*�5�1�0�(�1�,�*��(�.�%�6�0�4�6�*�:�)�&�5�,�)�+�+�+�8�(�6�"�)�;����*�4�-�/�*�)�&�+��#�.�2�$�/�,�0�*�2�(�(�&�-�6�#�5�)�6�5�*�!��#�+�-�+�"�#�!�6��(�,�%�'�.�4�0�@�,�1�%�+�)�3�/�-�:�.�(�&�%�0�%�.�;�.�+�%�%�/�&�$�&�,�0�)��>�)�.�3�3�+�*�,�-�.��#�*�(�&�"�(�+�(�4�+��0�"��(�!�(�*�*�-�5�;�*�0�#�*�,�)� �4�-�'�.�0�%�#�%�"�1�9�-�*�+�(�$�2�2�*�5�(�:�)�(�*��)�0�3�)�5�)�#�#�$�1�.�+�2�-�,�;�%�.�"�-�0��)�5�2�'���2�$�6�*�&�>�!�=�0�;�%�7�)�)�,�6�&�,��/��3�+�1�1�(�0�2�"�)�"�&��6�/�9�&�%�-�.�-�(�2�5�,�8�&�3�/�+�-�5�3�*�+�'�8�+�)�.�)�4�*�(�1�1�:�2�.�(�&��'�5�*�2�8� �.�&�&�'�$�-�4�.�*�$� �<�'�*��+�'�/�A�8�+�/�#�"�1�)�'�2�5�7�2�*�'��+�-�.�7�0�5�4�'�*�2�4�1�/�"�=�2�1�,�+�3�0�'�8�!�*�*��'�%�*��.�+�5�7�/�.�1�!�,�)�&�)�:�-�/�%�/�(�*�(�-�*�7�"�#�9�+�/�+�5�!�-�-�,�7�.�/�2�9�&�0�*�5�%�4�#�%�2�/�)�*�-�)�/�+�-�(�3�/�8�6�>�5�.�6�-�)�4�2��;�0�*�$�0� �3�:�*�-�/�&�'�/�)�2���+�3�2�6�7�܀րڀӀ؀׀ـ׀ӀǀրـۀԀـ׀ӀӀҀ׀ۀـ׀ف!�6�(�/�#�,�8�'�:�/�(�+�(�5�)�.�&�/�>�5�3�+�*�B�?�&�,�0�*�!��8�&�-�,�.�*�%�-�$�3�*�&�'�1�7�/�.�+�)�)�$�,�,��"�*�#�-�&�3�(�-�#�2�&�2�2�(�)��/�1�1��8��0�#�(�.�)�2� �/�0�-�-�.�.�'�%�(�(�C�7�-�#�+�5�-�?�)�1�'�)�9� �%�*�+�*�2��2�$�/�+�2�;�.�3�"�$�!��-�*�+�0�*�5�$�(�7�,�$�:�4�/�'�,�B�2�*�7�'�2�)�)�)�5�4�)�"� �,�1�.�%�$�$�'�7��/�2��2�-��(�!�,�5�+�3� �4�+��2�/�*�7�2�1�3�)�'�0�+�+� �(�+�-�'�'��(��.�,�(�0�1�'��'�'�1�7�)�+�.�/�%�*�&�/�&�/�)�+�9�)�5�-�.�+�.��"�$�%�5�.�9�&�-�=�-��0�/�-�)�*�.�/�*�*�1�#�(�1�(�"�D�1�#�-�.�1�*�6�#�3�.�0�$�-�3�.�+�+�)�"�6� �$�1�#�-�*�-�4�A��(�5�.�-�$��%�1��/�-�*�&�+�4�'�'�+�-�8�*�(�8�.�+�/�6�"�6�!�:�%�4�4�&��2��"�3�(�$�:�3� �*�,�+�(�2�/�-�*��(�#�-�&�&�&�.�-�.�(�6�*�'�6�)�0�-�"�-�(�1�5�%�%�4�'�3�-�!�0�,�-�)�)�3�-�(�,�!�6�8�3��$�%�3�$�)�$�#�=�+�1�%�&�7�2�8�5�(�3�'�%�+�+�0�0�?�+�*�.�)�5�.�,�'�/�/�6�'�(�(�0�,��&�(�.�/�,�0�6�-�5�-�9�6�=�)�0�.�%�*�2�)��3�1�1�.�$�-�,�)�,�)�,�'�/�+�,�0�%�+�!�3�%�0�+�,�!�%�)�2�%�4�=�,�/�/�7�3�3�4�4�"�0�,�4�/�/�,�+�/�%�'�'�#�7�*�&�6�&� �$�)�;�2�Հ؀ڀր׀ԀڀրـʀӀՀ؀؀׀րӀЀ׀؀Հ׀Ԁׁ8�'�7�,�*�7�0�*�5�)�2�5�3�,�+�0�+�A�0�-�,�*�:�+�$�-�!��5�'�&�7�:�-�,�%�7�5�'�+�/�.�%�/�/�)�2�6�(�$���)�0� � �$�5�/�3�'�4�#�!�?�3�-�&�+�-�+�.�.�2� �1�(�/�%�3�.�3�0�+�0�5�2�-�"�2�#�&�0�5�/�(�&�,�2�+�*�$��*�.�/�+�'�)�,�.��(�(��,�)�6�3�/�/�4�3�%�.�.�7�-�(�3�5�0� �,�'�,�$�!�+�1�,�,�-�+�6�*�,��,�$�4�*�+�1�-��3�.�(�'�#�1�2�#�0�4�0�3�/��!�2�#�(�,�)�-�'�+�-�)�.�'�4�%� �*�/�$�&�(�(�)�2�.�'�"��0��-�!�'�%�&�-�1�)�+�)�7�+�.�'�"�+�)�-�!�4�#�.�+�0�#�$�)�4�$�+�'�/�(�)�1�6�?�%�+�*�0�3�'�4�*�.�)�+�*�0�0�8�%�/�-�-�,�,�7�+�1�9�'�2�0�-�0��:�$�/�-�+�(�.�1�!�.�2��$�+�8�+�7��#�!�&�-�2�.�;�%�2�'�3�� �#�(�8�*�-�-�+�-�1�*�/�/�0�*�-�+�2��;�-�"�!��2�4�6�+��0�-�1�2�$� �1�,�3�'�4�+�'�0�*�.�/�0�3�%�1�$�1��0�(�0�9�$�-�1�)�-�3�1�4�7�(�)�-�.�0�/�"�,�&�2�*�,�(�<�1�)�0�%�2�5�.�8�<�!�/�-�!�,�6�+�)�,�-�6�$�4�"�.�3� �-�!�0�*�:�:�5�"�)�:�*�.�7�$�.�1�+�,�$�'�/�-�/�+�)�"�,�0�+�+�+�/�-�#�4�6�3�.�5�.�'�$�$�%�;�+�9�,�%��'�-�'�)�1�-�*�2�(�-��!�1� �/�2�3�#��"�&�(�3�+�1�+�.�5�,�5�%�)�*�'�7�/�$�5�&�=�)�*�@�/�'�*�'�0�3�7�+�.�,�2�,�8��1�׀܀׀ՀҀӀـ׀܀ƀ؀׀ڀԀրրڀՀ׀Ԁ׀ڀ׀ց0�.�3�/�3�+�6�3�:�.�3�1�'�4�2�/�)��3�!�4�0�.�3�7�+�;�*�5�*�0�&�+�0�*�#�4�4�4�.�"�2�&�4�.�#�3�+�)�/�)�8�2�8�(�+�'�*�(�+�1�+�-�0�)�8�)�,�/�2�7�(�)�-�2�6�!�.�4��0�,�/�(�(�2�%�9�0�6�'�-�!�4��/�/�'�#�-�4�4�,�,�)�9�!�+�3�,�'�+�.�6�)�"� �/�&�%�0�'�5�)�'�%�:�(�2�3�%�+�/�*�@�!�4��,�*�!�,�-�'�8�+�!�+�)�>�3�.�)�C�6�2�2�+�1�3�3�!�/�-�3�(�-�-�0�(�/�3�.�2�&�3�&�,�&�'�+��)�&�8�-�,�9�7�2�(�7�1�)�6�0�)�&�*�4�0�(�0�6�)���*�.�"�+�5�'�8�'�"�$�%�+�+�+�2�0�.�/� �*�+�+�%�2�/��%�+�)�,�&�%�)�-�(�,�3� �-�,�.�(�4�,�*�+�2�4�%�#�0�(�-��0�3�#�,�0�/��0�!�1�%�"�,�!�0� �/�8�)��,�!��*�&�+�9�,�$�'�'�6�0�'�'�9�+�3�-�-�1�&�?�,�0�-�&�4�/�0�$�/�'�.�=��.�&�5�)�+�/�(�-�!�8�.�)�+� �-�;�#�&�*�,�1�,�-�+�"�&�0�5�)�)�+�/�8�(�#�4�1�6�?�(�4� �7�1�3�&�!�2�"�'�)�'�&�#�+�"�+�A�3�/�-�*�1�5��/�8�1�/�*�#�*��:�'�+�+�/�"�(�.�+�3�,�,��8�*�.�)�'�,�-�)�&�)�'�/�,�,� �+�8�4�/�1�3�(�'�-�0�/�1�1�,�4�&�2�+�9�3�#�2�/�/�(�,�'�?�/�-�6�%�&�0�'�0��6�=�+��7�1�4�,�%�.�-�.�3�+�6�:�(�2�,�%�'�:�5�'�5�(�#�#�5�)�+��0�(�,��0��2�0�,�4�"�)�$�)�1��+�/�+�,�.�(�5�(�/�π؀րЀ݀ՀҀրӀǀԀӀ׀ҀՀـ׀Ӏրـր܀րہ1�<�-�3�=�$�+�1�5�3�2�3�/�.�6�2�&�)�3�-�/�)�2�>�8�-�!�.�1�*�#���5�(�9�3�3�:�2�.�!�1�*�3�2�"�(�/�(�:�2�"�.�%�(�!�)�(�+�'�.�-�7�<�)�(�.�5�1�1�,�4�2�4�%�)�.�#�3�+�*�%�/��;�5�"�,��!�)�&�%�/�/�'�!�%�'�/�+�5�8�4�5�$�(�&�0�&�)�)�9�(�9�+�7�0�+�'��(�'�#�)� �/�,�'�3�&�2�5�/�%�,�)�)�5�/�*�.�"�/�-�'�4�(�!�/�7�2�<�%�/�-�&�#�)�1�7�*�+�+�&�/�,�&�"�,�8��3�/�,�,�%�%�+�4�&�,�)�3�*�0�/�!��4�.�/�.�.�(�1�!�#�)�-�3�*�-�'�(�(�"�*�+�(�%�+�.�0�-�1�,�%�%�+�7�/�(��3�(�-�.�5��"�!�3�#�%�%��0�*�3�3�+�5�(�)�(�5�0�*�%�9�)�8� �/�(�'�'�*�.�:�0�5�(�C�/��1�/�+�,�#�7�2�1�,�(�(�+�*�0�'�/�1�*�.�(�%�+�0�'�-�<�2�4�%�*�1�*�2�(��7�0�-�/�$�4�'�)�2�0�*�*�'�/�'�2�/�)�(�0�5�'�,�(�7� �4�"�0�4�+�5�+�"�(�1�#�$�'�#�'�(�+�<�.�0�,�4�-��%�+�+�6�0�*�#�3�,�+�*� �(�8�%�$�*�,�%�-�0�3�(�/�(�*�+�/�8�%�5�&�+�'�'�/�'�*�+�0�.�'�1�2�)�+�/�%�'��,�"�=�*�7�*�+�,�2�)�"�%�2�*�1��9�&�0�&�)�&�)�/�-�*�9�$��-�+�*�%�+� �*�6�4�#�1�(�2�3�,�+�.�/�)�.�%�/�,�<�#�7�(�&�'�,�"�.�'�)�:�-�$�-�!�-�/��2�7�$�-� �-�*�"�3��-�5�4�%�+��7�%�#�0�0�.�,�'�)�1�)�+�(�,�3�9�/�/�-�8�5�)�ՀӀրҀ׀ـ؀ՀՀƀԀӀՀۀԀҀӀՀ؀ڀ׀ـӀց1�'�#�,�-�*�,�+�/�2�0�.�)�-�5�9�)�/�%�%�,�%�5�(�!�0�'�/�(�%�3�)�(�=��$�1�7�4�5�9�/�1�8�-�(�/�8�;�)�&�2�(�+�#�6�&�5�8�.�0�&�+�4�(�*�$�(�-�/�.�1�&�.� �+�'���3�4�*�!�&�7�(�*�"�5�+�.�&�+�3�$�)�$�+�#�$�2��+�.�-� �#�4�5�%�4�4�'�+�+�$�'�+�$�/�7�0�-�%�(��2�<�+�,�&�&�,�:�)�/�0��0��!�1�/�(��5�)�)��*�4�"�0�.�-�,�1�1�1�1�5�/�2�,�+�+�*�.�!�/�9�+�!�<�-�*�.�(�&�,�'�1�.�2�7�+�+�)�0�)�,�/�)�*�0�9��3�,�4�$�-�(�$�-�1�,�1�&�&�&�*�7�5�.�/�'�&�+�&�.�'�+��+��'�5�"�$�0�:�.�0�)�,�'�'�/�1�2�(�+�2�+�,�/�5�&�1�%�$�,�/�+�(�)�0�+��/�1�4�1�4�,�"�4�5� �"��4�,�)�,�.�1�%�'�-���*�/�"�0�3�(�,�+�$�1�+�(�:�"�&�#�#�'�7�)�9�3��:�+�6�3�2��$�$�0�:�.�6�%��%��1�6�#�9�(�2�'� �&�3�2�3�"�-�-�&�3�,��4�/�.�1�'�6�)�#�'�,�%�2�'�1�.�(�3�9�,�"�(�3�2�)�'�)���-� ��6�2�-�:�#�+�(�0�)�7�9�1�0�-�*�'�/�!�=�+��E�)�1�4�.�-�,�)�0�:�%�+�2�*�5�,�%��.�+�$�.�*�%��1�0�'�$�4�/�)�(�'�.�-�.�&�&�-�*�5�'�"�=�*��)�6�+�!�6�*�'�'�6�)�*�4�<�(�,�/�$�)�/�,�0�)�+�7�1�.�,�#�-�2�,�&�%�$�$�1�9�)�)�/�$�.�#�-�;�.�(�;�0�6�/�-�#�3�*�0�!�*�)�(�1� �+�0�*�:�-�(� �0� �/�؀ڀӀՀր؀ՀۀـɀӀ׀ՀӀրрԀҀــր؀׀݁0�2�+��,�.�6�/�!�'�6�5�.�)�%�:�+�+�0�.�/�0�'�3�4�.�-�(�4�.�8�3�/�'�*�/�5�2�2�/�$�+�%�*�+�'�4�+�2�1�-�+�%�� �1�$�7�%�3�2�)�(�&�'�7�0�&�(�6�3��"�%�-�*��-�)�"�$�3�,�:�(�4�*�2�#�(�-�7�/�!�#�*�.�-�"�.�0�,�1�*� �*�!�+�)�$�3�2�*�.�(�4�1�-�/�%�1�0�/�#�,�&�+�)�+��)�/�,�+�.�#�*�/�8�!�:�/�1�'�.�4�%�/�5�+�*��(�*�4�"�%�*�2�$�-�*�%�,�&��/�%�*�;�*��6�+�#�)�(�(�&�7�@�0�1�3�!�1�/�!�,�6�6�"��4�<�'�&��*�(�4�0�'�*�+�0�%�/�"�2�&�%�*�8�,�2�'�)�%�5�-�8��9�+�A�"�+�*�/�)�/�7�&�1�2�9�&�5�-� �&�%�8�0�,�D��,�0�3�2�-��'�(�+�'�2�%�3�7�"�/�+�5�1�8�.�/�2�5�.�3�0�;�%�!�(�*�)�*�0�1�6�.�&�:�:�4�/�0�3�@�:�*�/�.�'�/��/�+�2�1�&�0�+�'�+�-�-�,��1�#�.�!�.�(�6�+�6�%�-�.�'�(�=�*�&�,�2�/�%�1�)�!�&��&��4�@�4�1�$�)�)�&�/�3�1�2�0�*�%�'�/�*�(�6�(�0�1�0�8�'�,�/�)�'�'�+�+�/�'�"�>�/�.�;�1�%�2�(�*��0�%�*�.�+�5�+�'�'�%�'�!�&�)�!�)�8�8�/�-�$�2�"�-�#�.�'�'�$�6�.�2�"�-�)�!�/��&�-�"�6�%�4�,�1�)� �2�&�%�0��*�0��/�.�;�*�-�2�'�5�1�.�-�*�'�)�)�0�/�(�+�'�3�"�+�'�7�$�,�.�1�)�0�0�'�2�3�)�-�(�!�2�.�)�'�(�3�1�(�;�6�.�"�8�%�2��!�&�)�'�2�!�2�9�)�(�4�9�)�Ӏ؀րـՀր׀؀րɀԀ؀Ӏــ܀ـրՀــӀՀҁ>�?�)�0�0�)�2� �6�-�+�=�3�7�+�&�&�/�/�(�#�:�+�(� �1�-�,�$�/�#�-�)�1�.�'�$�>�7�$�5�.�.�/�0�*�.�#�%�8�,�)�1�#�#�1�*�2�0�,�'�#�/�0�+�3��0�2�(�6�6�-��.�6�*�!�.�.�-�&�,�%�)�:�.�-�"�/�-�0�.�(�'�$�(��4�#�0�-�+�*�+�(�=�9��1�$� �)�6�=�0�+�4�'�5�,�3�%�.�#�2�(��(�%�'�"�%�+�'�$�'�.�6�.�5�!�+�/�/�/�+�'�4�%�)�)�(�+��,�1�-�$�8�/�"�3�*�.�)�'�#��)�%�2�'�'�,�$�/�-�+� �3�,� �-�!�1�.�(�"�"�.�9�+�+�-�"�!�!�>�!�.�)�5�/�%�&�%�)�'�/��$�7�-�1�&�3�1�(�,�)�2�)�-�&�&�0�,�2�+�,�)�4�+�+���-�)�+�+�2�,�)�2�.�2�3�/�#�-�/��+�0�-�$�#�C�,�3�1�*�0�8�/�(�1�.�*�-��/�.�/�+�)�+�.�5�5�/�/�(�1�/�:�.�'�(� �(� �;�3��'�4�1�(�.��,�2�%�8�*�/�'�/�9�(�(�(�(�+�)�,�)�%�+�*�*�/�7��*�/�)�,�*�,�5�/�'�&�,�*�4�3�0�0�9�;�(��&�-�0�$�0�+�/�%�#��4�&�/�-�.� �.�/�-�(�7�+�2�,�&�+�6��)�2� �0�"�)�)�,�-�/�-�/�1�(�2�&�"�%�+�"�'�%�,�%�,��9�"�9�<�+�(�.��+�2�,�1�&�,�(�+�%��*�2�,��.�/�4�+�)�*�3�+�-�6�/�#�3�,�2�.�$�$�!�-�5�.�3�,�2�+�,�)�7�1�,�+�/�&�4�0�3��$�(�&�$�"�,�$�-�?�%�)�!�+�#�'�1�$�3�1� �+�#�6�&�$�/�"�*�)�(�7�-�<�'�!�/�#�2�0�/�2�+�-�,�/�3�)�<�3�)��2�րՀۀҀ׀ӀӀӀҀ€ԀԀ΀׀ҀԀҀ݀րԀр؀؀ց2�.�-�(�9�#�%�/�#�+�7�*�/�.�8�/� �/�$�"��1�6�'�'�/�0�1�9�+�0�8�(�#�#�@�6�%�'�2�7�'�1�,�/�/�2�)�1�&�(�&�3�(�&�3�'�5�#�$�6�4�.�4�=�)�(�-�;�#�)�*�2�.��%�&�3�.�6�-�&�7�/�,�-�8�#�,�1�.�$�*�2�*� �0�"� �"�5�?�,�,�<�-�-�(��/�'�7�-�+�)�(�=�0�-�3�-�)�'�)�0� �-�'�1�B�:�*�'�1�+�)�)�$�0�2�+�4�8�4�,�,�"�,�(�1�!�,�#�6�2�-��<�(�/�*�0�/�)�$�1�6��3�.�/�(�&�)�4�,�6�2�.�3�&�*�%�)�(�/�2�'�:�3�6�$�4�+�+�"�,�-�/�)�?�G�)�.�5�6�2�'�,�1�/�+�*�#�=�0�3�/�'�+�/�'�*�(�3�/�2�3�(�:�%��-�2�1�0�*�6�%�,�,�*�)�:�)�B�.�/��/�0�-�-�/�8�3�$�(�%�&�0���4�*�%�0�&�%�(�,�+�+�(�"�%�0��4�6�)�&�+�*�/�3�'�+�*�&�$�.�2�%�,�-�:�+� �;�+��%�7�#�-�'�0�"�#�-�1��*�(�-��.�:�.�,�.�3�/�)�.�&�3�'��3�)�&�+�7�'�(�$��$�'�5�1�C�%�1�&�6�%�'�*�,�'�9�,�7�'�,�.�2�0�3�*�/�)�+�"�7�'�(�/�-�3�$�2�5�"�2�+�'�(�"�2�'�2�)�$�.�!�&�(�+�/�+�&�1�,�+�.�,�+�!�*� ��(�'�,�-�(�*�*�7��/� �&�,�'�(�+�'�(�-�.�+�'�1�1�'�)�,�6�!�.�+�#�,�!�4�/�&�)�"��*�9�/�1��/�'�(�,�"�#�7�*�/�%�$�1�.�/��%�"�1�/�.�/�$�9�7�%�&�?�=�'�3�#�/�3�9�2� �'��2�<�"�%�0�0�0�&�7�5�#�(�+�<�!�:�2��-�-�&�8�5�&�׀ՀـՀڀҀ׀Հ׀ÀӀ׀Ӏ׀ـրрրӀڀҀӀ؀Ձ-�'�3�%�"�#�,�C�6�#�(�)�%�.�B�"�/�+�5�,�*�1�%�.�&�6�'�3�2�)�%�+�$�'�'�3�/�-�.�,�-�1�)�5�1�/�-�>�3�&�6�#�2�,�(�*�7�.�9�-�"�&�-�)�5�4�)�,�*�+�(�5�1�1�@�-�+�&�"�.�*�2�-�)�4�(�6�.�/�/�-�&�5�7�,�3�+�2�,�+�0�.�,�1�+�0�(�7�*�+��4�5�'�(��)�2�+�&�)�1�'�4�4�:� �+�,� ��,�/�5�2�,�'� �/�;�-�/�/�1�:�.�/�)�7�7�,�-�3�)�*�;�'�)�+�4�)�4�.�2�%�/�+�*�0��+�1�)�+�-�)�-�'�*��.�/�-�2�6�5�.��3�-�,�0�-�5�+�$�$�*�6�)���#� �6�#�(�.�#�(�6�$�'�3�'��&�+�1�&�+��%�-�:�6�0�$�9�*�$�(�&�4�-�9�'�,�%�(�(�1�-�/�*�'�4�/�9�+�.�%�(�.�%�%�0�,�"�5�4�$�%�-�.�)��(�0�'�7�,�,�/�*�4�1�(�4�*�%�.�#�+�)�:�9�,�6�3�2�0�*�.�7�.�8��/�+�.�8�%��%�:�2�+�+�'�.�#�&�,�+�4�(�:�*�5�*�3�7�1�/�2�)�1�.�7�-�%�9�3�(�/���%�0�$�-�-�+�2�%�#�/�'�&�4�,�!�.�#�,�%�%�-�!�+�7�2�.�,�)�2�$�(��0�)�2�9�2�(�'�(�.�'�%�3�2�!�7�)�2�2��1�*�2��2�3�.�7�)�-�1�%�.��"�1� �.�,�,�"�)�-�)�/�.�%��3�(�1�&�-�1�.�/�%��(�*�&�/�-�&�.�9�0�,�)�7�-�!��$�1�%�4�)��/�,�0�0�(�8�*�)�#�/�"�4�,�-��4�5�/�%�.�(�6�#�(�,��,�+�+�"�/�4�,�-�(�)�-�/�0�*�&�,�"�-�1�'��2�*�'�/�C�.�1�0�(�1�7�)�5�6�7�.�-�ҀՀـՀրـҀ؀ՀŀҀрԀրـր؀׀ڀҀԀԀҀׁ-�'�*�#��0�(�=�*�0�0�%�3�)�-�A�*�4�3�"�5�4�7�2�1�+�2�1�.�-�4�+�6�'�8�-�*�,�/�/�!��3�,�-�'�'�5�/�-�3� �$�$��,�$�7�*�0�<�1�0�.�.�>�"�,�-�.�'�/�+�+�/�6�)�*��,�"�+�*�/��1�,�1�8�*�.�0�2��&�3�,�2�/��*�%���)�%�(�A�!�(�+�*�3�$�-�8�5�=��0�.�)�%�1�%�'�#�2�4�)�5�/�/�!�3�-�9�)�(�-�*�/�*�/�3�'�+�*�2�!�?�/�7�*�&�,�/�1�1��*�.�'�+�$�4�!�6�5�4�5�5�5�.�5�(�+�'�1�4�)�.�$�$�8�)�&�0�:�*�3�8�%�5�,�.�3�,�&�:�-�,�,�/�)�&�&�(�!��$�*��9�7�*�/�-�$�3�8�.�8�$�%��$�.�5�&�+�/�*�$�)�,�/�&�/�4�*�2�:�3�-�*��&�+�'�"�3�2��2�-�0�.�)�-�4�-�1�*�4�/�#�,�;�$�,�7� �-�!�4�*�,�*�6�!�.�)�.�&�$�6�%�.�!�6�*�*�*�)�1�/�0�*�*�)�/�%�0�3�)�5�%�-�%�(�-�7�4�/�#�+�.�+�%�'�.�2�1�,�.�4�/�!�(�'�8�$�0�/�-�1��0�!�/�0�0�>�4�.�/�"�/�$�.�'�?�1�/�,�&�;�!�+�'��3�"�,�/�'�/�6�/�2�0�.�/�'�%�2�(�5�+��&�$�(�+� �)�,�)�!�4�.�"�5�$�,�,�,�$�.�7�1�%�4��+�,��6�%�1�7�*�#�/��/�'�&�+�*�'�)�+�)�!�$�,�)��1�(�+�/�#�.�-��9�-�1�+�0�)�'�%�-� �7�(���#�.�2�(�3�*�)�&�!�$�.�%��/�/�,�&�+�1�*�4�(�#�3�(�&�;�'�5�#�!��*�8�0�(�5�4�-�+�.�.�0�+�%�(�-�-�8�@�*�0�5�1�>�0�1�%�,�.�׀׀ۀрՀрۀԀ׀ŀ׀Ҁ܀ՀЀԀրЀ؀؀ՀրՀց/�+�9�)�/�&�&�<�)�-�&�3�3�0�>�(�-�7� �'�+�#�,�(�'�/�3�(�:�&�1�.�7�)�/��#�)�)�/�!�(�2�%�1�'�$�.�+�*�4�7�(�1�(�9�/�)�&�$�-� �(�-�;�#�5�'�3�5�.�5�1�&�-�&�+��*�/�>�*�4�&�3�0�7�/�@�0�.�(�2�*�+�6�)�(�1�'�8�2�%��,�"�(�1�#�%�-�*�)�)�6�2�#�0�(�2�>�9�(�.�8�-�-�"�&�/�+�(�,�/�7�4�+�3�+�+�(�*�.�0�#�.�>�1�&�7�9��%�)�7�3�0��;�#�/�,�2�%�$�#�+�&�+�$�#�*��9�$�7�,�,�*��,��-�4�+�*�6�.�3�)�.�(�0�����#�7��2�'�%�%��-�,�*�'�.�?�'�6�;�1�*�4�'�&�,�.�6�*�.�+�4�1�&�,�+�%�0�+�%�(��%�+�/�3�1�-�8�:�&�$�3��#�2�0�7�-�0�+�#�*�,�(�6�%�$�$�+�5�6�"�-�2�?�+�/�*�6���(�(�"�$�?�4�8�:�7�2�%�-�&�*�!�3�<�5�"�-�3�/�,�9�$�/�2�0�'�8�)�+�(�'�,�0�*�3�+�>�$�,�0�#�)�1�1�%�!�2�4�3��<��2�-�:�.�*�,�9�/�.�-�%�-�"�$�2�-�0�4�3�$�2�3�3�6�!�-�#�"�+�$�*�3�0�-�*�0�-�-� �1�.�&�*�#�/�-�)�(�(�+�4�$�&�)�=�1�/�-�&� �2�$�4�'�+�&�)�-�"�"�5�*��,�$�7�/�"��*�!�:�3�/�-��)�5�9�!�-�2�*�2�,�/�'�0�0�)�$�=�*�'�+�&�'�.�(�.�,�(�'�2�:�7�0�.�)�#�/�/�9�2�.�'�$�/�+�.��(�'�&�:�3�3�+�0�&�-�/�:�+�2��(�/�'�,�'�0�=�5�&�&�8�2�+�)�0�,�1�5�.�#�/�/�.�/�/�2�:�0�+�0�,�+�+�/�&�0�.�؀ڀڀڀ׀ـրـӀƀр؀Ԁ݀ڀԀՀـۀــ؀ڀց(�:�,�%�-�&�+�2�%�%�7�/�/�2�+�1�5�&�5��+�1�2�+�&�!�*�%�7�/�2�-�*�)�#�)�4�.�*�-�*�$�8�2�3�"�7�/�%�)�)�!�-�2�%�4�/�"�-�0�3��0�"�'�'�6�0�,�+�+�%�"�5�(�,��'�5�7�$�#�)�� �(�2�2�/�%�)�-�0�,�,�5�)�.�4�%�%�/�&�/�)�'�-�'�*�(�1�'�3�/�*�5�+�-�1�/�+�$�'�-�%�#�/�(�%�,�1�'�%�'�#�7�9�.�1�-�;�,�+�*�$�)�+�?�&�'�.�)�+�.�)�*�+�/�;�)�1�*�+�)�!�-�*�4�"��6�2�#��.�&�(�#�%�5�$�-�/�-�)�*��8�2�*�/�:�2�z� �*�#��:�.�)�=�#�%�)�&�$�%�*�$�(�*�&�(�0�(�.�#�'�/�1�2��6��*�,�9�/�)�1�)�,��)�/�,�*�,�/�/�<�)��'�,�.�'�%� �+�2�7�+�-�4�#�1�.�*�(�+�;�+�5��$�'��+�/�/�*�4�+�2�)�/�-�+�>�*��/�+�-�#�1��4�,�0�,�$��0�-�2�.�-�0�4�-�(�/��,��+�.�'�*�.�4�9�1�0�!�5�'�#�*�1�)�'�8�:�4�%�,�)�1�)�,�'�)�.�1�*�%�!�+�-�0���1�1�3��,��'�3�(�;�$�,�*� �/�$��2��.�/�+�4�-�'�,�+�.�3� �3�+�0�,�+�5�+�4�4�+�@�*�1�,�(��<�#�/�#�+�&�/�4�2�0�/�5�9�'�-� �.�%�6�0�3��-�0�'��+�'�2�:�*�$�6�/�.�*�2�0�+�7�5�#�.�2��9��*�7�(�%�-�%�+�(�2�1�$�;�.�(�)�.�*�.�$�4�,�.�0�1�(��A�%�/�-�"�-�)�,�-�/�-��"�-�*�/�2�.�(�2�%�(��+�,�,�'�&�"�)�-�0�+� �.��*��0�/�3�+�,�0�B�/�-�܀ۀҀ׀ڀҀրՀ׀ʀ؀׀Ԁ؀؀Ԁր׀ҀڀЀӀ؀Ձ-�)�4� � �7�&�-�0�2�$�&�.�'�'�,�-�2�&�/�'�)�5�,�,�9�+�+�1�7�1�@�+�.�-�'�3�2�2�8�-�/�+�,�+�'�,�4�3�,�&�7�*�,�!�*�/�1�7�5�8�.�0�*�5�.�)�2�2�-�(��0�%�/�5�*�!�/�)� �+�0�8�2�%�+�*�.��1�-�'�:�.�&�,��0�$�.�%�6�6��,�3�-��+�7�;�3�,�*�0�/�.�/�*��!�/�#��"�*�8�+�,�+�;�2�)�2�5�,�1�!�(�.� ��!�*�%�*�/�0�1�-�3��$�/�&�/�(�/�!�/�7�A�*�4�*�+�(�(�$�4��2�,�7�$�*�*�%� �+�7�)�1�%�#� ��*�4�,�%�1�+�-�-�*�.�%�'�+�,�3�"�&�/�0�&�+�5��(�1�)�1�/�'�'�(�*�0�+�3�5�/� �.�.�+�+�6�+�,�-��-�%�,�8�8�*�/�,�,�)�<�3�$�5�#�)�/�1�)�-��,�(�/�1�-�0�"�,�1�2�+�1�,�(�'�*�(�5�*�.�+�'�3�.�,�0�@�<�#�)�+�0�)�3�%�3�3�)�2�0�/�.�%�&�2�0�7�3�*�!�'�&�)�*�)�(�-�&�'�'�*�-�+�3� �3�+�)�.�-�@�.�.�&�.�%�'�&�(�4�4�*�)�5�+��-�-�+�)�5�!�+��)�-�1�(�*�"�3�&�*�.�4�"�.�*�1�.�)�6�"�4�%�2�5�*�%�*�#�(��*�'�8�.��%�3�2�1�&�)�)�"�-�5�'�4�2�(�4�1�0�%�$�)�*�3�#�*�%�*�&�$��5�(�&�&�3�*�&�4�'�+�+�2�.�#� �%�=�)�&�1�)�*�;�%�&�2�7�+�2��+�/�&�2�:�/�/�%�&�-�%�6�*�+�)�)�-�%�:�(�%�!�2�'�$�8�;�5�2�"�(�'�.�3�(�/�"�+�1�)�)�9�+�)�0�$�2�(�*�5�+�.�+�'�0�.�.�!�1�#�'�7�,�,�2�&�/�3�+�ҀӀ؀ԀրԀ؀Ӏ؀ɀрրҀ׀Ҁ׀ـ׀݀ـՀ؀րӁ2�&�7�(�4�3�&�2�/�*�-��1�0�4�1�'�'�=�3�2�)�2�6�+��"�4�.�/�/�/�.�/�0�:�/�-�,�$�/�5�,�/�7�$�3�(�(�,��0�'�/�1�3�'�6�3�/�$�#�%�$�%�1�&�5�!�)�#�2�/�(�4�&�/�!�0�1�%�0�&�%�"�,�"�=�-�&�0�-�&�!�(�1�!�#�#�'�$�)�,�2�0�.�3�6�'�)�*�$� �3�/�5�*�4�0�6�,�3�-�8�#�-�.�"�*�/�*�#�*�,�'�0�%�.� �7�3�%�-�&�!�+�9�1�/�%�"�*��(�2�4�+�,�0�2�#�&�/��$�*�&�,�%�6�'�.��'�4�-�+�0�-�'�/�+�2�/�.�'�$�+�2�4�*�/�/�;� �$�3�"�&�)�0�,�#�-�.�.�7�)�/�)�*�9�&��"�0�%�;��1�=�?�+�3�(�!�1�5�,�-�)� �7��(�&�4�&�/�$�*�2�$�!�/�5�2�/�(�&�*�0�+��0�.�2�)�&�0�:�4�*�*�#�0�2�$�'�,�0��*�2�0�3�$��%�!�+�,�9�/�%�7�7�1�/�"�)�'�)�,�+�%�(�*�&�%�*�$�'�#�&�8�*�&�3�1��4�1�$�+�-�'�)�)�/�3�%�(�(�'�0�-�)�"�1�5�4�&�3�'�)�+�1�/�2�2�/�%�)�/�)�2�2�(�2�!�'�=�.��)�1�'�/�*�/�2�1�-�/�5�9�#�+�0�5�'�%�5�-�-�1�)�.�4�,�0��+�'�7�,�*�4�!�&�,�/�&�.�-�!�,�/�)�&�"�2�-�4�1�1�.�%�9�$�#�+�"��.�+�'�7�'�)�.�5�6�1�+�5�*�-�1�,�&�)�?�/�7�-��+�-�#�"�&�4�#�.�*�;�!�1�0�*�#�3�2�&�!�5�8�/�+�-�!�9�0�(�"�*�+�0�8�.�3�3�#�:�/�<�/�5�,�/�4�)�2�%�4�-�.�*�%�:�1�$�5�'�6�"�1�5�=�0�6�-�+�2�.�5�/�)�%�,�؀ـ׀Ѐ؀ր׀ր؀Ā؀ڀۀҀ؀Ԁڀր׀ڀӀ܀Ҁց+�3�;�*�/�/�)�+�(�/�6�0�2�>�>�7� �3�)�+�/�9�%�0�/�,�)�*�6�,�+�)�)�/�+�'�$�3�:�$�4�8�/�#� �<�3�!�,�3�1�5�0�%�5�;�1�&�,�6�8�+�#�5�4�.�2�-�4�$�0�(�+�)�=�)�/�)��)�&�-�2�-�/�*�$�/�-�.�'�/�,�/�5�-�3�6�+�,�2�4�&�.�-�'��/�,�4�1�*�;�6�,�'�+�2�'�*�+�6�.�/�&�4�)�&�(�&�)�*�1�/�5�4�8�.�)�'�3�&�2�'�*�*�9�8�3�9�6�(�(�(��&�.�+�'�,�7�4�4�)�!�"�6�+��2�2�0� �&�-�.�/�*��-��0�!�$�)�<�,�"�'�/�-�0�>�/�1�*�,�%�1�%��'�)�5�&�.�$� �&�0�"�+�+�7�)�$�%�5�)��#�%�#�%�/��,�7�#�:�1�+�*��2�,�.�.�*�3�,�&�3�0�%�1�/�!�(�*�)�2�#�-�1�#�%�$�,�+�.�)�)�.�8�?�0�2� ��3�$�,�+�,�*�.�4�)�&�$�2��3�&�,�*�*�%�"�&�5�0�%�)�4�.�4�0� �-�&�4�+�+�4�1�%�"�-�3�$�*�+�/�.�/�%�.�8�,�0�+�2�$�(�6�-��3�-�,�,�:�$�2�*�:�(�'�+�5�0�9�-�(�3�1�(�5��-�1�/�*�4�#�$�4�"�4�&�$�)� �$�!�3�,�*�0�%�-�(�3�)�/�*��'�&�*�,�4�+�,�+�4�3�2�-�,�9�0�%�,�;�;�0�0�-��0�5�-�<�(�+�8�-�+�4�'�'�2�&�%�.�5�-�%�2�,�/�)�%�5�&�4�-�(�3�)�4�+�*�+�.�$�1�)�*��)�1�-�2�/�1�7�/�"�6�(� �)�&�/�2�5�!�,�-�,�:�,�*�/�!�5�)�+�3�!� � �'�.�5�$�+�+�*�,�"�1�4�/�/�6�3�)�)�7�*�*�2�%�7�3�%�*�-�1�,�'�-�/�,�+�2�.�ـڀՀԀՀӀԀ׀ӀǀԀ׀ـрۀՀՀր׀ހր׀׀ځ�+�3�1�8�+�(�0�8�)�"�+�$�)�*�"�/�'�0�$�/�.�#�!�+�7�/�.�*� �-�3�%�)�"�9�5�-�"�'�)�%�-�-� �7�!�.�0�2�*�"�+�&�5�1�+�;�+�(�+�5�=�.�1�.�&��-�*�6�+�,�-�$�9�%�6�(�.�7�/�5�(�.�5�2�1�*�+� ��+�0�/�)�+�%�)�,�%�*�#�.�&�0�,�?�)�7�+�6�<�,��7�%�2�+�0�)�"�1�&��(�)�)�!�/�!�5�+�1�'�&�'�(�0�"�4�+�,�3�+�/�.��#�.�%�/�0�+�)�0�/�)�&�,�+� �.�/�"�2�(�<�&�(��7�/��,�(�'�)�.�3�)��(�&�-�'�"�>�4�8�5�)�)�4�(�'�4�=�)�"�+�3�$�0�%�%��.�%�.�0�!�%�.�&�0�3� �6�'�&�$�$�3�-�(�!�%�6�)�)�*�"�5�)� �6�*�*�/�$�5�3�0�,�*�(�5�,�&�+�1�3�%�+�/�.�/�;�+�4�3�%�/�"�+�/�+�-�/���%�,�6�.�0�3�'�-�1�2�"�-�"�)�9�%�!��&�(�/�$�(�,�(�)�(��)�1�,�1�,�,�$�,�5�*�0�:�3��/�9�0�"�0�,�� �/�"�1�6�?�'�1�>�.�*�+�,�%�3�*�3�5�%�1�#�.��$�3�)�*�&�0�7�%�&�#�+�0�2�-�'�%�E�,��2��1�&�)�%�!�*�-�9�2�(�;�/�(� �!�$�0�.�'�/�/�2�1�,�+�*�0�6�"�8� �,�3�3�*��'��7�'�)�0�+�3�,� �+�'�)�#�-�4�5�$�1�,�)�'�+�9�(�3� �)�+�3�.�/�/�0�4�*�/�(�(�+�.�#�(�5�)�8�-�:�.�/�)�-�/�!�/�+�/�.�(��/�-�+��-�)�(�,�$�1��1�:�4�,�,�*�+�%�-�A�,�/�"�5�0�-�&�/�/�/�8�/�:�8�6�.�$�*�*�.�1�-�6�6�2�1�#�0�-�"�Ҁ׀ՀӀ׀׀ԀրӀĀҀՀր׀Ҁ؀؀Հр׀ڀՀրׁ,�)�0�'�7�3�+�+�&�#�-�,�+�1�*�%�5�:�/�/�;�2�6�6�+�+��7�,�)�,�*�1�/�)�1�#�'�'�-�*�'�*�#�:�'�.�,�<�4�'�0�2�.�"�3�"�$�4�-�C�*�+�3�@�(�#� �&�#�:�3�(�&�+�&�3�(�4�'�$�*�9�1�=�3�/�0��*�+�-�1�4�(�+�!�%�!�2�.�-�3�(�*�,��8��8�,�)�<�4�-�.�/�*�1�-�(�)�:�%�%�+�!�1�+�9�'�(�9�&�#�/�-�#�7�;�-�)�(�.�2�.�1�0�2�-�5�-�'�)�)�(�)��1�3�/�*�!�/�'�,�+�(�#�-�,�3�*�*�"�/�-�-�,�/��-�-�3�<�&�1�1�+�0�&�4�)�6�)�#� �(�#�.�+�0�.�!�/�&�)�0�,�%�!�*�'�4��,�!�(�&��.�*�/�0�0�3� �.� � �.��5�*�6�1�1�,�+�6�-�&�&�/�.�-�)�4�#�*� �#�$�#�4�9�*�-�0�5�:�+�'�'�0�+��5�/�4�4�3�*�%�.�#�!�+�3�,�5�&�%��/�'�*�B�:�1�3�&�)�<�.�� �.�5�0�-�!�#�8�6�,�0�/�2�&�&�4�3�3�"�,�7�%�)�5�1�*�3�(�/�,�-�;�1�+��%��)�4�,�%�/�+�/�(�9�,�:�2�/�&�$�*�/�'�!�2�%�0�%�%�&�/�5�1�+�-�4�0�-�-�4����2��%�(�1�!�'�+�9�=�"�-�2�>�%�+�0�!�2�"�-�"�;�(�3�"�#�1�,�(�-�&�5�+�)�7�-��5�!�3�'�,�0�,�+�-�'�(�4� �&�7�3�0�6�2�:�4�4�)�/�=�/�/�2�5�#�3�(�"�*�-�-��/�$�3��'�&�+�,�,�*� �4�0�)�3��/�:�7�/�'�%�*�)�2�)�1�-�-�.�(�*�5�2�#��'�8�>�1�-�*��0�+�$�)�.�+�%�9�1�/�-�,�3�)�7�-�2�8�8�4�$�'�-�ڀـӀր׀р؀؀ր̀؀ـՀрԀ׀ـԀ׀Ҁ׀܀ڀ؁2�(�%�3�'�:�6�)�-�,�1�)�4�$�(�-�3�,�2�)�4�.�&�&�4�(�4�-�%�*�7�.�1�-�0�.�3�'�-�+�,�3�0�/�'�4�4�.�+�6�&�)�3��#�0�(�6�+�&�2�7�7��3�+�)�&�*�,�;�)�#�-�0�'�*�)�/�-�1�,�4�7��&�&�4�*� �/�)�$�.�$�'�*�1�/�7�(�#�+�$�(�5�1�1�8�-�!�+�.�3�!�+�,�&��(�"�.�#�� �.�'�*�%�(�)�2�&�$�9�5�!�'�,��+�$�-�'��*�3�>�,�8��6�#�&�1�+�.�'�!�2�(�%�.�!�$�"�-�,�+�'�)�&�'�,�'�"�(�!�"�+�+�!�'�,�%�'�'�-�#�#�(�#��1�/�*�0�,�,�'��*�7� ��.�'�$�D�0�*�'�)�2�'�5�(�+�5�4�2�"�:�6�.� �,�'�/�0�,�A�#�*�$�/�,�,�,�#�8�#�3�0�.�&�3�0��1�7�/�&� �#�#�3�9�+��.�'�3�9��(�4�+�)��/�1��3�+�&�'�-�-�0�8�-�-�5�,�-�(�,�-�'�'�0�0�(�7��/�.�*�/��2�2�"�,�-�,�9�&�!�$�,�+�,�,�1�/�'�)�0�$�1�+�=�.�0�'�0�+�#�!�.�$�$�-�)�.�4�<�"�5�/�+�'�#��3�"�.�,�3�2�.�*�'�7�,�0�*�'�%�4� �2�*�(�9�&�*�-�4�5�6��'�%�.�,�+�'�-�)�7�#�0�+�"�3�(�+�+�-� �.�.�9�(�.�2�%�5�%�?�2�/�-�#�0�(�*�)�3�%�-� �!�&�"�-�;�)�6�2�&�3�+�*�)�.�"�%�2�;�'�:�3�,�5�/�2�(�.�3�#�.�7�-�"�6�)�-�.�2�.�2�/�(�2�/�.�3�,�"�-�<�0�3�.�'�+�-�'�6��#�,�'�5�+�"�(�2�:�(�-�3�+�.�'�+�/�'�5�2�&�.�.�,�7�/�9�2�3�-�*�2�:�1�*�%�&� �ۀրՀ׀؀ՀӀҀԀȀڀр؀ՀՀ׀ӀՀ؀Հ׀րԀׁ�4�"�/��)�.�)�5�+�/�.�,�-�(�7�*�!�+�2�3�.�3�,��&�2�%�3�7�.�6�"�'�+�2�-�'�3�6�2�1�1�/�'� �0�-�$�0�2�/�5�&�&�'�-�,�+�/�1�+�$�(�$�/�9�"�-�'�,�,�)�%�.�,��/�,�7�,�4�3�*�=�/�)�/�"�6�4�.�&�8�-�)�-�%�4�%�(�0�:�.�2�%�0�"�*�3�6�2�&�4�+�#�;�*�2�+�2�6�%�(�+�0�"�,�)��/�3�)�*�3�*�<�*�5�(�%�2�6�(�:�'�A�,�+�3�4�/�"�#�3�;�1�1�/�+�,�'�.�.�/�(�,�4�/�0�*�(� �+�(�2�,�/�)��*�&�&�,��!�*�(�)�.�.�.�'�+� �)�)�/�*�8�,� �*�.�*�)�.�+�'�%�&�2�1�;�)�+�/�*�&�1�/�4�1�'�5�'�,�6�9�)�7�#�4�(�/�(�*�(��'�"�$�3�1�5�:�0�"�*�%�3�1�*�2�4�3�(�#�2�&�/�!�)�#�/��/�)�'�.�-��5� �-�$� �)�&�'�-��)�1�(�'�*�+�3�'�%�*�1�6�,�$�(�0�-�=�=�3��/�!�.�7�4�'�0�)�'�1�/�(�&�)�'�-�.�$�5�@�$�)�*�%�0��$��9��.�/�%�%�)�.�5�/�)�'�&�0�)�$�$�2�!�7�)�+�'�:�+�/� �6�*�3�6�-�*�0�7�0�$�+�,�/�(�-�*�6�-�'�'�'�%�*�(�1�0�'�%�(�$��&�+�.�#�,�.�3��)�0�,�3�9�.�8�/�&� �'�-�7�5�/�2�0�*�+�$�2�7�<�/�8�'�3�'�)�*�(��/�3�$�#�/�.�.��5�9�,�:�?�/�%�(��3�+�+�.�7�.�#�)�(�-�1�0�"�.�+�;�$�$��2�5�)�5�#�3�=��/�;�/�)�'�%�&� �,�4�'�1�&�2�)�*�C�&�1�,�:�&�.��5�'�.�-�&�,�'�,�*�/�0�6�3�&�/�΀Ҁ׀րԀ׀Հ׀Ԁ̀ـՀՀ؀րπՀԀۀۀڀ܀Ԁف0�0��,�2�/�(�%�!�-�!�.�6�5�4�*�+�1�/�*�)�)�/�"�7�$�'�%�5�0�3�'��D�-��6�%�.�*�*�,�(�6�$�+�"�0�9�1�'�1��&�&�/��"�&�0�$�%�/�1�*�*�*�3�'�-�%�'�1�'�0�/�)�.�!�&�1�,� �2�)�/�!��)�7�@�2�3�5�(�2�)�,�(�5�&�4�+�7�&�+�3�5�'�"�&�6�0�#�+�)�-�2�+�+�/�$�:�0�-�,�*�+�7�.�)�6�2�)�/�'�$�$�-��$�:�1�(�*�-�1�+�+�/�-�!�0��/�1�*��#�$�,�2�*�4�7�(�2�'��'�'�"�5�=�'�,��+�2�1�,�#�.�#�.��,�0�7�+�*�&�/�,��"�%�'�&�3�8�,�'�-�$�,�9�)�"�$�!�-��0�4�*�0�C�*�$�)�1�4�$�*�$�(�1�-�,�2�(�)�%�'�*�%�/�4�*�/�<��*�2�;��2�5�.�"�.�'�4�+�-�4�2�$�1�'� �2�3�'�-�+�)�/�.�&�3��0�.�'�.�*� �(�@�0�/�-�!�6�&�2�+�(�)�,�)�� �*�'�'�.�/�(�*�:�+�4�'�%�-�.�4� �0�0�.�8�0�/�2�-�+�&�*�)�0�#�!�*�)�3�7�9�1�3�'�,�/�#�%�4�/�#�,�,�,�%�(�1�:�#�3�/�!�#�3� �8�5�.�,�-�4�$�5��.�%�!�-�$�(��(�2�,�-�)�)� �7�"�3�'�2�*�'�5�-�2�+�'�.�3�"�3�+�&�.�/�"�*�<�'�'�/�#�!�9��5�&�'�.��,�/�(�,�*�2�!�/�!�$�.�8�!�*�.�/�5�'�.�+�-�9�%��7�/�/�6�%�.�,�-�,�1�#�3�2�#�'�*�+�.�1�&�-�*�1�#�,�/�/�-�)�=�.�%�$�.�)�0�,��5�%�(�/�5��,�)�0�-�2�/�*�*�.�.�)�6�,�-��$�+�$�5�/�%�0�=�;�'�(�:�2�)�2�+�ـ׀րӀڀ؀؀րрĀր؀րӀԀӀ׀Ӏ׀؀ڀــӁ.�8�#�5�3�)�7�3�'��1��+�'�+�-�&�6�2�2�$�*�(�-�)��5�2�*�4�3�+�!�*�/�3�/�(�'�.�*�$�)�#�)�0�"�=�%�/�)�,�.�1�%�+�&�7�7�)�2�*��&�)�-��/�)�6�:�4�9�1�6�(�4�"�1�)�$�5��3�-�'�3�-��!�8�2�'�*�)�%�)�*�0�&�0�0�%�3�)�2�(�%�(�7�$�/�2�*�+�#�1�'�*�'�'�+�4�7�'�/�#�.�6� �'�1�$�0�0�6�-�*�#�2�+�$�0�'�%� �-�*�,�4�0�*�-�.�/�1�4�4�'�&�)�)�0�G�0�%�2��(�+�9�$�.�/�"�-�*��'�#� �)�1�"�*�&�5�2� �+�(�$�.�=�0�8�'�.�$�!�#�)�%�*�#�(�0�+�6��1�$�%�'�&�"�0�#�!�*�*�6�)�/�2�!�#�-����1�%�$�6�1�-�)�+�)�%�,�/�4��5�)�*�:�)�)�%�.�8��9�/�+�2�*�(�.�#�)�-�7�:�(�5�-�/�+�7�0�4�&�0�1�4�2�"�3�#�5�4�.�+�2�.�-�3�8�'�'�(��+�%�0�%�!�#�#�"�4�&�0�,�+��0�#�*�'�(�0�6�/�.�(�.�"�6�1�'�"�<�.�.�6�.�1�/�1�,�*�5�,�/�1��+�=�"�2�0��3�9�#�&�/�&�1�+�&�)�-�<�.�*�/�*�.�$�&�1�'�$�$�7�0�"�.�6�8�3�3�3�!�.�(�2�$�&�#� �'�2�!�7� �%�6�/�0�$�1�-�*�7�3�2�*�&�3�$�'�-��$�0�*�*�(�-�0�#�)�,�1�-�1�&�&�/�+�$�+�.�$�8�-�+�<�&�.�"�-�.�*�'��1�%�5�0�!�0�#�2�'�#�B�;�2�4�5�1�,�3�>�2�$�&�'�,�&�1�.�"�-�)�6�)�-�*�,�8�0��,�"�7�'�/�7�7�2�"�/�.�)�7�/�-�"�=�$�-�&�A�)�-�,�2�6�(�&�?�2�'�Ԁր؀ԀԀ؀ЀՀ؀ƀ؀׀؀׀Հ߀րր׀Ҁ؀ЀրՁ)�2�(�/�,�%�2�$�1�(�2�7� �1�*�=�)�6�-�6�-�9�+�%�'�1�,�7�#�.�"�)�1�-�;�?�1�;�%�!�;�3�-�'�(�)�5�,�2�5�%�*�:�$�4�0�&�1�)�*�(�3�%�(�)�4�)�*�+�� �5� �'�-�+�(�-�)�*�"�.�)�0�:�*�.�%�1�?� �+�(�7�"�$� �(�#�2�(�+�/�-�%�-�$�.�%� �2�)�*�2�-�%�5�"�'��&�.�-�/�9�-�(�*�6�2�%�#� ��3� �,�'�5�+�(�"�1�)�)�4�'�0�%�,�0�+�!�0�)�>�-�=�;�0�+� �0��-�'�;�2�#��(�6�5�*��$�.�(�*��1�*�(�+�!�+�/�-�+�&�$�)�/�+�,�.�)�'�(�(�3�(�/��*�-�1�0�)�/�&�-�.�3�4�*�*�0�,�7�-�.�.�1�,�5��)�&�(�$�7�1��3�,�$�,�+�0�'�+�3�'�(�)�"�.�&�)�'�,�+�/�7�#�.�5�&�*�(�(�-�.�)�4� �4�0� ��*�)�$�&�(�-�(�-�'�.�7�!�9�$�6�(�"�4�'�&�'�"�3�4� �&�/�%�*�)�#�(�1�0�%�6�*�/�"�&�5�6�%�-�/�+�%�'�(�1�;�)�)�)�"�)�/�1�+�3�-�1�/�%�8�.�$�-�1�'�(�3�*�+��)�-�,�.�#�)�,�+�/���.�*�*�5�/�'�#�4� �*�1�3�-�>�+�5� ��(�+�*�-�.�3�'�;�)�"�%�%�/�(�)�'�.�,�#�6�+�,�&�>�.�6�!�!�!�$�/�2�/�'�6�%�5�&�5�7�9��-�6�)�&�'�$�%�+�#�,�9�(�0�/�'�*�;�.�/��/�#�;�0�0�4�1�&�,�(�-�/�/�+�'�)�:�7�4�&�/�!�-�'�'�#�+�.�0�3�4�%�$�:��!��+�7�*�$�,�*�'�)�)�1�*�&�3�3�(�4�-�*�!�(�1�%�4�&�+�+�+�:�2�7�&�(�,�,� �'�&�#�׀܀р׀ـԀ؀Ԁրŀ׀ր܀рـ׀Ԁ׀ـӀڀԀՀց%�*�'�.�,�4�.�2�A�)�!�+�"� �.�1�%�1�-�3�$�/�0�)��,�+�/�+�$�)�1�=�1�8�-��2�-�+��+�+�(�(�+�&�/�4�)�7�)�2� �,�'�/��+�4�2�4�#�*�+�)�#�)�1�%�.�)�%�'�$�/�,�A�5�1�,�/�-�4�-�%�=�'�)�:�)�$�9�1�2�)�;��/�(�'�!�4�!�3�)�2�+�*�%�3�/�:�)�&�)�.�+�4�0�+�4�+�(�1�1�3�-�/�;�1�#�7�:�.�#�0�%�$�,�/�,�#�,�+�+�"�'�+�#�+�,�-�'�-�)�+�8�'�7�3��"�&�1��'�&�;�*�#� �#�%�4�+�,�&�0�%�0�/�)�$�'�-�2�5�/��.��(�%�)�,�-�*�+�2�"�+�(�"�,�0�-�-�$�<�<�,�,�&�+�6�,�5�4�$�8�1�&�"�0�.�$�1�#�+�$�+�1�'�'�'�5�0�3�-�+�'�*�"�6�&�*�,�9�#�%�'�'�+�5�%� �4�*�-�8�%�8�3�#�"�$�/�0�-�8�)�*�'�&�0�1�1�*�9�*�>�*�.�-�/�/�,�+�(�)�1�3�+�+�(�'�7��9�=�#�#�)�'�=�4�'�+��;�-�9�-�7�0�-�-�%�%�)�-�+�)�.� �'�(�!�0�'�(�$�9�:�%�%�+�)�0�)�)�.�&�,�)�$�$�5�,�1�)�(�/�1�(�#�/�.�5�2�0�)�4�%�1�5�*�A�0�;�4�$�#�/�(�0�-�0�/�+�4�'�:�#�7� �'��2�'�0�+�0�.�)�/�5�,�&�&�3�!�&�!���0�%�#��0�3�3�9�/�9�:�:�$�*�,�7�!�.�-�*�/�<�+�&�)�(�7�*�4�0�$�+�*�'�/�+�+�)��1�$�5�.�.�5�+�#�0�-�"�'�$�!�&�)�6�,�%�/�)�,�5�!�+�5�(�8�/�@�'�*�3��.�/�1�*�,�5�2��1�(�?�-�<�5�0�,�1�-�+�!�-�4�!�/��.�,�@�*�+�'�@�؀рՀۀրրۀ؀ր��Հ׀ҀҀՀԀـҀڀـҀրՀځ5�"�&�!�3�4�"�-�+�*�'��)�"�9�5�,�6�0�)�*�1�'�+�*�!�>��5�#�2�0�$�-�6�7�#�-�$�,�.�.�&�*�3�/�'�%�*�(���+��.�&�9�)�+�3�*�'�(�!�*�+�4�9�,�-�+�7�*�,�!�3�(��&�0�2�0�-�%�!�8�-�,�5��(�5��,�*�%�)�/�0��.�+�(�,�"�,�+��7�A�-�(�3�-�.�,�-�7�%�+�+�2�%�0�-�#�4�;�&�.�(�)�#�1�.�"�'�1�(�)�,�)��/���9�*�7�2�7�,�-�/�6��'�"�-�$�7�(�"�/��6�5�2�9�*�'�/�$�5�,�*�,�2�!�)�*�5�(�-�=�%�+�/�-�#�,�-�%�(�+�(�-�+�&�%�-�+� �6�-�#�$�2���(�5�&�*�'�4�-�'�5�$�"�-�&�%�%�-�-�6�+�3�,�#�.��$�"�+�$�,�5�-�9�6�#�!�/��8�*�4�+�,�)�0�.�4�8�2�*�#�-�#�(�(�)�8�1�%�,�2�,�*�.�#�!�$�=�*�-�'�.�:�&�,�5�'��,��#�)�#�(�5�2�%�&�%�.�.��&�3�(�6�)�B�*�8�-�4�*�-�/�=�+�!�'�*�1�$�-�/�$�7�*�"��*�#�,�-�3�'�&��+�+�)�)�/�$�1�)��0�-�*�'�+�,��.�%� �:�'�#��#�.�(�5�.�.�0�@�<��3�!�/�-�1�!�+�-�<�'�+�+�)�1�*�/��&�*�/�0�'�0�2�2�0�/�/�/�+�+�+�5�'�(�*�#�)�(�+�!�(�?�0� �,�3�&�(�0�+��)�5�#�3� �(�+�)�3�$�.�+�'�/�0�5��0�(�6�"�)�&��/�2�*�+�(�0�-�2�*�'�+�1�-�(�(�4�*�)�)�0�/�2�-�5��1�8�0�'�-�.�$�/�3�$�"�;�%�<�*�5�%�#�%�*�6�"�0�/�0�,�/�&�!�3�)�1�.�5�1�!�(�$�.�.�'�8�ۀ؀ԀԀӀԀՀԀՀŀҀր΀ـۀӀԀրԀՀՀـҀց$�'�)�0�3�)�1�-�1�:�,�/�,�8�.�&�3�6�:�/�0�+�*�;�/�3�1�*�$�%�4�$�.�'�)�-�'�$�%�8�$�&�$�'�1�A�/�0�.�2�3�-�2�/�1�)�(�%�)�&�!�3�(�/�2�3�2�)�0��,�,�4�/�.�E�$�)�.�#�0�)��,�,�%�,�)�*�'�>�,�*��.�%�&�)��/�+�*�-�0�,�'�)�%�8�)�+�/�&�,�(�,� �.�/�1�,�#�2�*� �+�+�3�)�2�)�'�$�6�2�)�+�0�(�%�)�5��)�,�.�9�+�5�>�'�/�/�)�*�.�7�+��'�&�(�6�$�1�/�*�"�,�0�/�(��*�+�/��;�(�#�'�&�2�1�)�%�(�(�,�)�2�)�&�&�,�*�4�/�$�)�?�9�/�#� �*�'�2�2�)�)�.��/�/�.�$�.�-�'�2�!�4�&�+�.�(�.�/�/�%�#�)� �"�%�2�4�,�/�1�/�1�)�)� �2�4�.�%�+�(�5�%�+�+�.� �-��#�9�*�+�)�+�4�,�/�*�(�(�5�0�;�.�!�+�)�&�#�+�(�-�.�%�)�(��=�,�%�.�'� �(�+�2� �1�1�3�7�0�/���b�1�)�3�9�3�2�&��*�#�'�*�1�1�%�&�)�,�*�.�)�!�%�#�)�(�,�1�$�.��"�2�$�%�,�.��)�,�&�1�3�+�+�+�0�1�/�/�%�.�)�-��/�2�/�"�0�'�-�)��/�$�8�1�,�4��(�.�)�3�3�#�$�5�'��*�!�1�.�,�/�#�4�'�$�(�$�/�%�6�7�&�/�#�4��.��1�/�/��7�.� �4�4��+�.�8�)�*�/�2�#�,�3�&�%�)�)�3�;�7�3�0� �2�3�/�4�%�*�,��-�'�&�2�3�.�"�-�.�*�-�-�%�;�5�/�,�1�1�0�!�1�%�.�4�/�>�9�&�#��:�9�(�3�>�'�&�*��'�/�/�'�/�1��,�5�)�5��0�1�5�-�,�0�'�5�/�-�8�׀րՀԀр؀ڀۀ׀ŀӀӀЀՀ؀րր׀ۀ׀ԀـӀс'�&��1�$�)�(�4�'�4�4�%�/�.�%� �+�&�(�&�!�-���3�&�/�(�+�(�-� �+�#�!�3�(�<�*�5�2�+�$�*�&�8�/�#�)�*�(�6�-�;�$�3�/�2�%�&�)�3�'�7��6�%�/�2�&�7�+�)�7�.�"�(�,�+�*�8�"�*�(�"�(�'�.�4�%�%�1��'�-�4�6�1�.�(�)�%��@�:�/�6�9�5�(�(�*�+�*�$�� �$�)�7�-�,�"�#�0�1��/�5�3�&�&� �2�*�+��7�)�)�.�.�,�#�.�(�4�(�*�+�7�8�7�.�*��-�-�+�)�.�#�'�-�)��,�(�-�"�.� �/�/�2�7�*��.�$�'�+�&��.�,�,�/�*�6�2�(�4�:� �+�"�-�-�)�%�1�>�#�(�1�7�/�'�7�-�0�(�9�'�)�3�4�)�3�2�=�#�2�7�/�)�;�/�(� �!�%�0�)�7�+�/�2�+�*�1��,��%�7�8�.�1�7�5�%�4�/�#�!�1�9�#�,��*�"�.�1�%�.��"�.�&�/�-�/�7�,�)�#�1�+�1�.�1�*�'�$�2�(�,�,�5�%�+�)�$�8�3�)�-�/�%�)�1�*�2�t�&�(�*�-�3�;�)�4�-�6�+�)�5�0�1�1�-�&�-� �+�*�5�/�:�5�'�*�/�&�,�-�7�,�)�*�/��.�+�/��%�!�"�,�)�#�)��%�0�%�)�"�&�/�/�)�*�+�#�4�0�%�.�#�4�,�(�!�'�'�%�:�.�4�$�&�+�'�%�$�*�-�.�(�5�1�.�/�,�+�5�0�-�5�1�,�3�7�1�1�2�-�/�$�'�&�5�)�0� �)�/�/�1�>�+��)�"�-�)�)�.�*�2�;�5�+�.�,�'�3�9��-�3��/�&��3�&�,�@�-�(�)��+�2�5��1�+�0�(�)�"�)�"�-�3�*�-�,�=�.�0�!��3��4�8�5�&�'�4�$�.�)�,�$�0�<�.�)�*�3�,�2�+�*�;�.�3�&�,�7�/�,�(�Հ؀߀ՀӀҀ׀ـՀŀ݀׀؀ҀՀ׀Ҁ׀܀Հ؀׀׀ځ4�.�1�3�:�1�/�/�'�6�3�0�#�#�7�&�#�*�7�$�.�!�#�+�+�0�0�(�+�-�'�+�(�2�/�,�8�,�1�,�2�.�#�4�;�;�6�:�/�.�6�<�/�2�'�+�3�3�$�&�2�)�$�'�'�$�:�-�+�7�-�+�*�-�-�(�-�0�6�7�%�6�2�;�/��)�$�!� �&�$�-�+�+�6�'�0�,�3�?�,�B�.�+�0�0�2�.��/�$�7�1�(�*�%�*�*�$�*�/�3�0�,�,��5��$�)�$�,�=�'�+�'�*�1�6�)�+�2�,�/� �&�6�/�+��.�,�'�-�*��!�,�,�)�*�9�3�3�)�'�.��7�%�.�4�C�*�8�#�)�)�+�&�2�*�%�3�-�&�,�2�&�&�*�)�$�)�4�-�$�-�!�*�0�&�%�%�-�@�/�*�!�2�-�&�'�&�0��&�&�,�/�.�(�%�(�&�-�3�+�=�.�%�,�!�2�/�+�+�@�0� �0�'�;�-�%�/�,� �,�,�6�,�)�2�*�(�5�+�*�#�:�5�*�.�4�-�:�.�%�(�#�5�%��#�)�� �,�.�4�)�&�:�0�3�4�+�3�9�3�$�&�6�2�&�!�/�'�(�7�$�8�"�)� �,�)�-�1�,�3�*�/�-�6�)�6�)�2�1�#�-�5��*�"�7�<�'�;�6�*�.�&�"�3�)�=�1�9�!�1�'�#�-�)�#�4�/�+�/�(�*�*�(�%�*�,�7�4�3�)�/�1�+�-�%�+�$�#�0�(��)�'�-� �)�C�(�*�-�)�5�!�&�-�6�+�!�%�*�*�)��2�'�+�'�*�(�)�.�4�7�)�1�2�'��7�%�0�,�9�,�/�0�+�/�+�4�,�)�!�$�,�/�4�+�.�'�%�!�2�)�2�/�%�)�,�)�$�%�/�/�#�0�.�/�(�7�'�(�%�/�/��/�+�.�%�7�1�"�0�6�+�:�-�3�.�/�$�!�0�.�#�$�-�.�/�3�<�3�7�9�3�*�.�8�+�*�!�,�1�1�/�*�(�8�3�*�)�%�&�1�4�*�5�݀׀׀Ԁ׀ր׀ӀӀĀ׀Հ׀؀؀׀؀׀ۀЀՀӀӀӁ)�2�:�6�6�+�+�9�*�&�#�A�+�'�$�&�7�*�/�8�(�3��7�-�1�'�6�,�*�%�2�+��2�0�.�#� �+�*�/�1�2�-� �+�%�$�3�#�+�*�1�.�0�-�(�+�.�4�3�5�(�/�3�,�3�'�2�$�%�3�+�0�.�%�/�*�+��1�(�%�1�(�$��4�/�*�&�#�*�/�,�'�(�"�.�%�;�#�+�.�*�,�/�+�,�&�$�0�&�*��7�:��"�%��2�'�+�-�'�1�#�"�/�#�(�"�+�(�2�!�.���/�%�-�&�+�5�:�*�/�+�"�%�9�'�;�;�1�5�)�$� �,�(�*�4��+�.�<�&�)�)�)�+�,�4�%�)�$�/�'�-��&�/�8�(�0�.�*�5� �+�,�#�)�)�0�'�.�&�0�#�3� �!�)�5�>�*��0�-�.�(�-�+��6�0�$�/�%�-�1�-�0�4�2�(�7�/�2�)�0�'�)�(�'�1�7�.�-�-�0��0�(�"�/�(�;�$�/�7� �/�(��*�%�+�(�%�%�5�(�A�3��$�1�1�-�*�"�1�7�8�0�3�=�/�(�&�4��,�1�"�*�/�/�.�-�*�2�-�4�5�(�-�"�%�+�4�'�#�$�5�2�0�+�$�'�+�-�-�(�'��.�1�'�$�*�.��8�+�-�/��1�'�$�*�5�)�&�#�0�+�'�1�0�,�A�3�)��1�3�5�3�!�%�:�)�"�(�/�-��$�*�(�/�:�$�2�(�.�-�4� �:�0�#�"�*�.��,�&�.��)�!�"�)�$�&�2�3��#�6�)�2�&�*�1�6�2�2�'�-�.�*��.�/�$�,��1�)�3�3�)�2�&�)��#�(�2�,�/�)�.�-�;�#�)�>�,�*�.�1�2��5�2�+�)�+�$�%�/�3�'�+�6�'�:�"�#��,��5�'�*��&�5�'�"�-�,�#�$�/�/�+�/�(�%�/�+�0�7�$�+�,�6�2�5�+�'�-�,�(�)�'�)�1��+�%�+�-�&�(�+�(�'�0�&�Հ׀րӀՀԀۀԀԀŀԀԀ׀׀ـҀڀրԀۀ׀ҀՀՁ%�/�-�'�5�?�?��/�*�'�/�&�)�(�$�2�#�)�5�&�/�6�9�+�+�*�%�4�*�7�4�3�*�*�)�;�/�/�9�'�!�0�%� �'�%�7�2��5�+�3�2�.�.�+�.�4�-�1�)�8� �1�5�&�)�(��0�&�'�/�%�/�"�*�*�-�%�=�=�,�2�2�,�&�&�.�/�:�/�.�/�)�"�*��:�.�)�$�*� �6�8�/�$�8�/�&�/�)�*�&�%�*�,�#�*�(�8�(�+�.�5�/�4�)�%�,�,�&�1�6��&�,�3�&�*�2�0�)�+�*�)�)�"�.�(�(�+�0�+� �)�%�-�(�7�/�,�/�*�*�%�*�8�/�%�,�-�'�>�!�8�"�&�!�+�%�/�"�'�0��0�+� �(�/��9�)�"�)��+�)�/�0�'�+�&�4�/�#�+�1�0�*�*�.�,�-�-�,�,�8�-�,�'�2�)�1�/�,�/�$�/�'�5�*�&�8�#�7�P�&�)�+�0�-�'��+�3�+�+�+�3�$�0�$�,�%�+�,�,��+�8�+�'�,�%�,�'�5�/�1�(�-�/�)�+�0�,�+�,�-�*�*�4�)�$�'�:�1�3�*�.�4�1�*�(�/� �+�1�)�,�)�)�.�+�/�<�:��&�"�&�(�)�+�.�'�,�!��1�3�/�*�,�;�'�.�#�6�.�'�3�'�5�+�"�5�&�4�0�,�C�5�&�+�+�2�&�,�1�2�!�-�-��-�2�'�/�2�1�0�6�'�(�4�0�0�+�,�8�$�)�#�%�5�/�%�3�*�1�&�+�!�1�+�'�,�'�6�(�0�-�.�.�!�%�$�1�!�/�2�,�$�)�5�)�*��<�+�!�+�#�!�)�)�/�%�'�!��4�+�.�%�)�&�+�2�*�"�'�#�!� �%� �7�2�&�-�+�3�&�(�2�0� �(�-�6�(�,�(�3�3�#�"�6�4�2�6�1�'��,�,�4�-�5�+�%�1�+�+�)�-�-�>�(�7�2�-�%�;�6�(�)�2�7�-�'�;�5�6�&�%�3�3�4�#�0�2�.�8�1�.�Ԁ׀Ӏ׀ՀӀրӀ؀ˀԀ׀׀р׀؀ԀҀۀ܀Ӏ؀׀Ӂ&�*�$�F�+�9�4�4�>��"�3�5�.�$�+�7�3�,�-�2��+�3�%�5�&�<�6��+�-�)�.�.�*�(�"�'��,��4�(�3�3�3�.�*�6�#�!�/�4�.�&�(�3�*��*�5��5�#�/�:��)�3�+�-�'�&�(�*�/�#�:�*�0�>�$�5�+�&�+�'�(�2�,�1�-��*�%�7�(�.�(�+�)�-�3�+�&�%�/��1�3�3�(�2��$�/�)�*�/�*�*�3��)�.�+�)�-�7�9�#�*�%�.�1�4�%�5�*�6�%�?�-�0�;�0�.�-�,�'�2�,�(�.�$�2�(�,�)�.�5�,�-�3�%�%�)�1�+����*�+�"�3�2�(�.�)�5�3�C�+�(�4�/�)�(�!�%�0�4�.�+�8�,�#�(�.�2�*�>�,��0�5�-�!�-�;��4��-�-�1�+�,�4�#�(�2�)�.�6�:�,�)�-�)�9�-�-�%�'�.�-�*�/�'�#�*�&�2�(�*�.�%�)�*��/�3�*�*�9�1�&�8�3�3�=�.�1�1�)�'�0�2�0�4�6�4�3�2�4�,�-�"�1�%�)�0�0�6�'�3�8��J�.�,�?�/�/�.�7�&�*�1�2�&��-�/�/�-�2�+�4�2�3�@�,�-�4�0�'�8�?�-��(�.��+�/�'�1�/�&�4�.��!�%�1�-�.�/�"�*� �-�0�'�&�+�2�*��'�(�8�%�,�9�.�(�4�3�9�/�5�&�&��+�,�/�2�%�:�0�/� ��3�:�*�0��-�,�#�/�6�0�6�-�)�#��-�+�+�%�/�$�&�$�4�3�%�&�-�-�/�5�(�-�(�*�/��,�%�3�2�/�/�)�$�*�%�2�.�,�$�(�2��*�1�.�1��"�&�3�&�3�,��)�+�1�.�)�)��*�,�(�#�0�3�*�2�&�)�6�,�+�.�1�<�8�+�.�)�3�"�#�:�*�8�&�,�)�+�*�2�)�/�/� �/�0�(�(�'�0�7�'�3�3�,�"�7�4�9�-�#�3�+�*�)�&�1�ހրـրڀԀր؀׀ŀ؀րրӀ׀ۀ؀؀πـ؀ր؀Ӂ'�,�/�'�6�9�9�7�%�$�*�/�,�(�?�$�.�$�.�'�#�/�-�5�*�:�!�:�#�6�7�(�0�+�&�%�/�%�3�7�'�)�3�/�(�(�0�4�8�)�+�3�1�%�+�#�.�/�'�)�-�,�8�*�-�*�8�!�4�1�+�4�'�,�1��8�3�2�,�-�.�!�0��(�0�&�7�8�1�#�+�+�'�7�&�-�#�(�+�&�-�*�/�6��/�0�,�!�-�/�(�%�C�+�"��5�-��'�4�(�3�2�$�+�)�0�-�9�&�-�$�/�/�#�%�3�(�*�$�&�!�'�+�*�3�&��5�/�4�)�%�,�+�(�-�/�,�.�,�-�2�1�5�!�8�.�-�/�/�0��0�+�(�!�$�/�1�+�'�0�)�(�7�!�$�2�%�;�&�6�%��9�%�,�(�#�3�#�-�!�"�,�8�+�&�'�/�,�0�2�)�+�,�"�+�'�#�,�/�(�.�,�)�/�2�*�+�1�/�5�=�'�'�:�-�0�,�)�/�2�*�)�!�'��6�)�9�/�4�&�4��&�/�-�3�*�2�%�#�.�)�4�$�,�&��'�(�0�4�.�/�1�'�+�(�;�1�)�*�7�#�6�*�4�"�+�,�4�-�/�,�%�)�-�/� �/�"� �8�/�-�0�4�*�/�:�"�0�/�=�,�2�,�-�(�8�2�"�2�'�9�'�'�$�.�8�"��:�+�6�2�=�#�&�/��,�3�/�'��&�/��2�'�:��)�&�!�*�*�,�,�"�4�'�/�:�0�+�2�3�0�&�9�&�/�"�,�7�(�$�.�$�'�.�0�5�.��)�,�1�,�1�+�/�'�(�#�/�*�=�(�/�2�5�)�1�(�1�7�(�"�)�4��+�*�#�0�+�4�%�*�-�+�2��-�+�)�)�$�+�2�=�'�!�,�.�+�8�,�.�0�3�5�>�#�-� �3�)�;��2��$�9�#�(�9�3�.�;�&�"�0�,�-�)�,�-�)�)�)�1�,�;�8�!�/�.��(�5�8�*� �6�,�0�/�*�.�7�#�)�'�.��.�/�$�6�'�Հـ׀Ӏ؀׀׀׀ـƀـՀҀՀЀԀրڀр؀րրԀՁ:�,�3�&�/�*�*�4�,�%�"�/�+�/�1�.�9�,��'�9�2�'�+�.�9�2�&�=��)�0�0�3�7�'�3�.�F�*�-�.�3�%�2�#�$�-�4�/�7�4�#�5�3�0� �7�2��>�)�+�/�>�&�1�%�'�+�+�6�+�/�"�+�'�(�"�-�/�/�"��,��/�)�7�+�%�#�)��1�'�'�"�+�9�#�5�-�4��%�+�,�'�(�2�/�'�7�$�-�)�+�+�+�,�,�.�+�+�-�7�.�&�(�%�8�$�1�/�'�(�-�*� �0�'�&�&�;�#�/�$�0��:�%�!�/�,�8�'�)�1�-�+�(�/�0��+�.�,�'�(�0�)�)�3��/�,�,�%�?�(�,�)�(�9�'�+�-�/�*�/�"�+�(�0�7�"�6�)�-�(�:��9�2�1��,�&�1�'�3�,�,�;�-�$�.�#�6�.�9�%�"�(��,�+�0�,�9�8�3�.�3�0�-�0�2�+�#�%�,�%�%�*�>�'�$�-�0�'�/�#�2�'�'�%�+�)���0��*�*�(�8�%�'�+�*�*�$�2�&�,��-�#�2�-�&�7�1�(�0�$�$�&�5�-�(�/�$�'�1�&�3�&�3�.�8�/�&�/�3�+�%�!�*�0�#�3�)�4�6��<�&�-�*�3�#�$�-�6�/��(��'�+�;�+�*�5�1�(�/�*�3�)�+�0�(�/�&�5�-�(�1�/�'�8�%�)�>�2�)�1�8�2�1�%�/�"�3�.�.�+�(�/�1�/�2�+�3�/�!�9�0�7�(�/�'�7�0�#�?�,�'�3�8�.�2�1�8���I�.�2�)�4�%�&�*�=�/�.�'�0�7�!�-�'�5�#� �&�(�(�*�.�/�2��2�;�?�+�&�1�'�(�+�%�)�'�'�"�,�+�4�2�0�*�0�8�/�(�,�.�5�#�(�7�#�*�$�%� �!�/�8�.�+�2�.�*�<�/��"�,�0�)�9�$�,�*�*�4�5�%�,�1�"�/�5�(�9�/�:�#�5�#�/�=�-�8�!�*�(�/�7�/�!�*�*�,�р׀ՀӀր׀ۀ׀Ѐǀ׀ՀրԀրրրՀ׀րـԀ؀ҁ1�1�9�'�*�'�0�8�8�*�/�.�5�*�'�"�,�,�+�*�7�2�)��)�(�#�#�"�+�&�#�C�/�,�'�)�(�(�"�+�'�#�5�0�4�&�+�3�/�3�/�/�)�5�6�%���,�&�,�+�+�)�8�)�*�-�4�$�)�&�*�6�*�)��+�.�.� �'�!��(�'�%�)�.�)�&�"�'�&�(�+�"��1�0�.�.�<�&� �8��*�'�'�(�!��7�"�6�%�1�$�,�)�*��)�!�(�'�0�0�&�*�1�6�)�"�)�4�/�'� �2�)�:�%�2�"�%�$�*�:�.�1�#�)�!�(�=�-�/�/�/�+�1�%�*� �$�4�.�.�,�*� �*�9�<�4�6�7�.�0�$�.�.�&�#�(�/�/�5�#�+�-�9��)�&��-�"�/�@�)�$�!�/�,�#�5�9�)�.�'�/�!�!�!�'�-�+�.�#�4�&�*�#�+�-��%���6�;�,�!�,�<�9�-�8�5�,�.�*�6�%�/�,�$�/�7�/��+��.�)�+�A�+�1�1�-�*�*�'�#�,�#�$�,�&� �-�.�*� �1�5�/�'�&�*�/�"�)�0�4�%�'�'�!�*�0�+�$�.�*�&�.��)�%�+�1�.�"�,�!�;�1�0�/�2�+�=�#�!�,��*�&�(�*�5�,�)�#�/�0�,�"�,��"��;�7�#�4�/�*�*�!�<�$��'�-�1�#�$�+�*�-�.�-�'�)�,�,�'�.�+�4�/�'�/�,�#�-�)�&�%�!�&�1�2�(�1�/�$�1�&�5�%��'�"�6�0�(�2�3�+�3�,��/�!�3�#�'�*�)�%�7�+�/�)�/�)�-�,�/�.�%�3�,�)�+�/�)�+�&�,�+�-�)�6�+�2�6�&�*�#�5�*�)�#�'�,�,�+�1�+�)�)�0�1�1�,�+�2�6�6��.�5�.�0��)�1�)�.�4�1�.�)�+�3�6�+�0�5�0�2�3�.�,�5�'�8�3�.�:�)�0�9�/�)�!�1�/�'�3�,�)�:�2�/��.�+�0�*�5�-�/�ӀҀրڀـ׀؀׀؀̀րՀ؀׀ՀԀրՀ؀Ӏրрրف*�7�+�2�/�&�2�'�3�"�(�2�,�-�,�G�6�'�&�+�'�3�-�1�.�+�$�&�4�"�4�4�%�!�.�3�)�%�-�.�$�2�(�(�.�7�$�9�.�0�-�/�+��5�8�2�*�,��0�$�#�4�(�6�:�1�A�*�&�0�-�1�4�.�$�1�1�#�"�.�$�%�'�� �-�7�)�!�+�3�1�+�,�*�,�/�5�+�/��#�'�/�)�1�,�&�6�:�-��*�7�5�<�2�!�%�$�%�5�'�/�.�&�*�4�/�3� �(�0��%�-�3�-� �(�0�,�0�%�.�(�-�5�*�3�-�2�(�3�)�+�&�.�5�6�/�0��2�3�+��-�.�#�"��$�6�9�,�#�0�3�4�"�#�-�:�-�%�5�9�4�*�$�.�"�'�)�,�,�/��2�%�1�.���1�3�,�$�6�8�/�1�4��,�3�?���5�0�.�+�+�+�,�,�)��1�,�!�5�'�'�*�&�*�+�0�+��/�1�/�1�)�4�1�.�'�.�.�/�4�4�+�#�+�-�1�+��-�#�(�)�.�.�,�/�'�!�8�&�.�.�6�.�(�)�;�<�7��0�/�.�(�#�9�4�3�(�1�&�3�(�/�:�0�/�;�-�!�+�:��,�,�*�&�%�0��(�0�,�.�)�$�-�,�%�.�5��&�+�)�.�-�.�*�#�,�8�%�'�$�-�6�#�4�5�-�.�/�)�5�+�$�#�4�0�-�(�"�1�)�*�-�/�.�"�&�+�&�1�(�;�"�-�2�=�&�'�*�$�)�'�-�>�5�(�,�(�-�(�!�-�&�*�0�0�4�%�7�&�7�%�&�#�)�2�/�(�-�'�*��5�'�/�,�,�-�-�;�)�+�3��0�"�&�,�+�'�*�)�9�&�0�,�/�/�*�'�!��0�)�8�!�#�+�5�&�4�-�)�0�1�/�)�(�-�#�/�0�4�'�/�2�+�%�5�,�8�,�(�9�)�'�%�,�0�'�1�/�/�/�,�.�/�/�,�.�.�*�.�!�;�-� �2�2��'�+�*�7�/�:�*�1�"�,�ՀՀـ׀܀ӀրҀӀƀ׀ۀՀ؀ڀ׀ҀՀՀՀـՀՀՁ<�#�*�%�3�)�%�+�1�*�*�%��.�,�'�1�)�*�,�$�-�/�'�"�)�/�/�/�#�#�%�+�,�-�(�*�1�8�*�$�'�1�!��3�+�0�*�$�+�8� �*�,�+�-�.�5�#�.�2�&�=�'�6�5�.�9�'�1�:�.�*�+�'�=�0�$�-�+�/�1�'�&��/�,�)�4�:�$� �2�,�,�5�(�-�-�.�2�/�5�1�%�%�)��$�(�/�(�1�.�+�!�&�3�5�8�7�%�'�+�*�2�1�5�&�!�#�4�5�'�*�.�$�4�-�!��(�+�)��+�'�1�%�3�2�,�+�8�)�)��$�5�$�'�'�)��+�-�8�-�(�$�4�%�.�7�2�'�,�6�*�)�,�!�$�%�%�/�%�2��$�4�(�2�'�0�,�-�1�-�1��)�2�+�)��!�1�.�$�/�0�5�%�-�*�0�3�,�-�,�&�"�%�'�#�'�"�-�'�(�&�)�/�4�$�7�1�1�'�&�4�/�!�/�/�5�1�&�*�2�4�5�)�3�"� �'��� �)�&�.�*�5�%�3�.�>�5�(�9� �5�/�/�.��7�1�0�,�$�/�+��4�"�5�)�$�$�.�6�(�+�.��&�%�#�:�)�(�&�.�)�2�(�'�$�3�(�,�2�%�7�)�+�)�&�5�7�&�%�3�(�'��=�'�4�.�1�3�&�(�+�%�7�(�.�7�!�+�/�1�&�4�-�.�.�)�$� ��(�C�,�-�)�*�3�%�.�/�6�3�0�-�$�'�"�%�.�)�.���0�/�0�*��4�*�1�C�-�,�(�-�5� �%�,�1�+�"�>�*�(�0�*�6�3�$�(�-�'�,�4�/�!�)�3�*�)�%�3�1�$�6�(�/��.�5�*�/�)��8�%�/�'�4�3�,�/�2�-�-�.�3�/�"��1��$�$�0�)�'�-�/�1��+�3�*�.�-�4�$�3�+�)�"�&�6�#�'�%�.�+�"�-�9�*�+�3�(�9�4��5�0�+�'�/�0�/�0�!�/�*�1�<�&�+�1�*�0�)�&�-�'�-�׀ـۀڀ؀ـ؀ҀـȀԀ׀Հр؀ՀրԀ׀ԀڀՀ؀Ձ1�'�,�.�9�;�-�)�,�,�$�-�4�8�&�8�/��%�/�&�1�:�8�2�'�4�.�>�(�0�3�5�+�0��/�+�,�A�(�4�#�+�(�/�'�,�-�-�5�-�)�/�0�3�$�&�-�)�A�$�"��)�)��0�2�!�#�+�/�*�*�%�(�3�/�-�#�4�(��9�/�*�7��5�/�)�.�9�#�1�/�5�5�1�,�$���-�0�4�)�.�)�.�7�&�,�-�.�)��+�$�&�)�&�?�,�/�0�*�'�<�;�>�5�&�%�,�$�&�0��+�(�$�+�:�%��;�0�.�7�'�+�8�+�%�*�6�-�2�!�%�2�-�5�-�*�3�,�3�3�3�$�"�+�7�8�4�+�*��&�)�/� �,�,�,�0�/�,�)� �-�)�#�,�%�:�/�,�,�/�1��2�*�/��3�/��&��8�)�%�,�#��-�&�(�=�,��*�@�+�%�!��)�,�)�&�+�1�/�+�)�2�/�'�#�� �0�%�!�$�/�,�+�-�.�3�#�,�$�&�)�0�/�2�1�0�.�,�!�#�&�&�'�#�'� �4�%��(�*�)�4�%�'�5�2�(�"� �3�6�<�1�)�"�+�,�*�0�*�:�(�-�!�!�(��0�4�(�'�2�)�;�)�-�-�'�2��2�2��0�.�-�'�'�"�0�/�3�%�-�)�4�5�'�0�/�/�=�+�'�5��(�5�<�)�%�)��$�)�*�,�.�5�+�;�'�:�-�*�-�0�,�4�8�4�0�,�2��,�0�4�2�.�4�7�/�1� �/�6�-�4�3�/�*�/�0�"�-�#�)�1�%��+�'�/�"�,�$�)�)�/�)�#�*�1�&�+�,�5�(� �+�(�'�8�*�.�(�*�4�'�)�0�7�#��,�(�+�!��*�8�9�%�(��(�/�+�,�'�-�0� �*�+�+�$�0�"�,�=��2�#�%�4�)�5�"�%�%�0�,�8�.�5�/�/�+�(�/�*�(�)�&�,�/�+�&�'�1�+�(�,�#�,�6�+�B�+�/�1�4�+�/�0�:�5�'�ӀـրՀ؀ՀՀ׀πƀ܀րҀڀր׀ӀՀ׀Հ؀Ѐ׀ԁ)�9�4��1�1�.�/��*�2�*�-�"�1�0�-�7�'�"��<�@�)�B�5�5�4�)�1�*�6�-�=�/��&�*�(�+�&�/�'�;�%�.�*�2�*�!�)�&�+�)�*�-�+�0�&�-�*�-�4�3�6�0�2�,�2�2��'�-�.�!�'�,�"�-�(� �7�4�5�'�4�!�*�*�*�&�,�/�!�'�.�3�&�)�/�(�%�+�'�)�4�#�.�(�(�/�-�+�(�-�8�&�0�/�3�(�1�!�$�*�%�&�8�"�+�'�-�'�$�-�2�,�$�(�+�-�2�.�1�)�-�#��4�,�&�"�0�8�5�.� �"�'�� �2�'�4�4�.�=�)�-�%�(�-�&�&�)�'�+�(�%�,�#�0�3�1�0�)�1�+�3�0�$�'�0�,�$�-�+�'�,�6�+�*�!�,�'�)�-�"� ��(�)�.�3�,��!�(�$� �%�<�7�.�2�5�.�)�&�%�(�&�.�!�+�5�*�(�(�$�+�)�-�)�0�6�/�/��+�8�#�(�(�&�6�)�-��*�/�+��!�'�A�)�-�%�-�!�2�%�'�'�;�&�,�4�)�%�+�1�5�=�.�'�-�+�-�'�*�*��1�!�#�,�3� �5�&�/�7�,�-�+�"�+�.�4�$�+�$�-�!�'�3�0�#�)�2�'�2�0�,�/�+�;�/�-�(�1�'��+�2�8��'�6�&�7��)�/�%�.�,�5�-�#�/�-�,�)�,�1�:�*�3�-�<�-�-��)�%� �+�2�/�/�4�-�*�+��3�&�4�'�"�3�:�)�,�3�0�)�/�4�5�1��4�)�#�,�-�+�#�*��1�5�,�!�$�0�.�/�.�,� �/�$��4�*�9�+��1�2�2�2��&�4�(�3�+�%�.�*�*�/�1�!�,�0�+�5�7�"�'�2�(�6�)�*�)�.�'�"�"�$�5�/�5�3�%�*�*�'�)�(�-�2�/�9�)�.�5�7�-�9�@�.�4�/�.�+�,�-�*�<�-�7�*�(�%�:�%�9�$�6�#�0�<�7�-�/�#�+�,�)�;�0�9�2�рՀрԀڀڀۀҀրƀ׀րԀ׀ր׀ڀրՀڀр؀ՀՁ#�7�2�'�>�C�'�1�2�0�%�+�+�>�+� �9�+�'�-�.�-�"�2�(�8�.�-�)��5�4�2�-�%�/�/��,��2�,�1�#�*�.�#�6�*�,�5�)�+�-�1�/�2�%�(��%�9�"�.�-�1�/�-�)�7�&�/�5�(�!�2�6�-�*�*�/�/�/�/�(�2�6�.�)�5�)�-�(�5�0�0�+�-�4�-�4��"�0�,�'�-�"�,�(�2�)�%�(�-�2�-�"�/�-�'�.�8�'�)�.�1�%�,�$�+�)�.�.�2�/�3���"�&�%�'�)�%���4�.�#�%�&��/�7�3�*�8�.�*� �1�/�.�6�(�1�/�(�)�+�#�)�)�*�*�3�+�/�)��1�&���6�1�.�9�8�4�2�2�9�*�4�%�'�.�+�+�)�'�+�,�.�!�+�)�.�,�*�4�&�/�+�1�,�*�/�0�(�!�.�+�+�1�$�#�&�1�,�4�+�+�,�/��*�%�%�/�1�'�3�,�3�)�.�4�>�-�/�!�-�.�&�=��6�+�1�/�.�4�(�$�3�<�)��6� �,�:�2�,�)��"�-�%�&�+�4�-��/�*�$�$�&�5�(�+�.�!�+�&�4� �.�&�(�4�2�7�.�)�4�"�2�=�6�%�.�0�.�/�,�!�1�1�4�+�*�6�*�(�5�#�(�-�6�-�(�.�3�+�+�%�)�'�)�)�/�;�,�4�!�'�2�/�7�2�1�'�3�:�/�"�%�)�"�/�7�$�-�6�;� �<�)�!�/�+�%�1�*�4�*�5�!�4�+�&�$�*�*�5�2�-�.�)�%��%�+�3�7�*�-�7�'�,�&�-�.�+�+�,�(�4�(�-�&�0�)�*�.��3��,�+�:�%�%�,�*�(�(�2�6�,�#�/�+�!�&�/�+�3�6�%�*��1�,�,�%�(�%�"�7�#�C�/�/�/�-�2�*�7�2�5�5�0�%�6�'�3�#�/�.�)�/�2�4�%�*�6�3�,�+�3�;�+�-�0�1��4�!�2�<�7�(�'�.�,�8�0�6�'�-�+�*�/�9�/�-�ӀրՀԀր؀ڀԀڀǀրԀՀҀӀ׀ր݀ـ؀׀܀׀Ձ.�8�'�8�5�:�6�7�#�4�$�4�/�;�0�.�#�:�%�&�)�3�;�.�<� �+�5�'�7�0�-�'�-�3�/��&� �*�@�+�-�,�/�-�!�!�/�'�-�.�0�-�+�*�'�&�/�&�4�,�-�-�.�4�'�'�$�+�+�%�'�,�%�1�&�"�*��0�(�.�0�6�+�"�.�*�,�0�,�.�"�2�&�*�(�<�5�%�$�<��%�&�.�5�%�*�#�#�'�2�-�,�-�%�(�0�/�(�:��9�/�+�)�9�)�)�=�.�0�0�0�2�*�5�.�+�0�%�$�1�)�5�'�8�#�3�,�/��-�-�7�F�/�)�.�0�'�7�*�6�(�$�0�/�/�3�1�6�,�"�)�-�%�%�4�4�+�-�(�0�2�)�&�/�*��)�$�-�$�/�5�"�1�,�.�,�6�-�3�2�4�*�;�+�%�3��*�'�(�4�'�0�/�*�?�'�.�-� �3�1�4�/�0�3�+�9�*�+�.�%�.�'�0�,�?�/�#�'�+�+�1�<�1�,�5�.�&�2�/�/�-�.�-�3�+��)�)�-�'�.��+�,�5�&�.�%��,�2�-�/�5�!�)�+�5�A�?�4�8�+�/�&�%�<�)�)�:�+�(�.�)�7�5�-�1�.�'�-�-�(�#�#�#�9�)�1�+�2�*�.�$�4�0�,�+�'�7�"�/�+�,�-�+�$�/�5�+�1�+�*�/�#�6�(� �'�5�:�7�#�+�-�@�$�,�'�#�.�)�)�.�/�3�/�+�+�+�2�!�(�3�"�.�%�$� �)�)�.�'�1�5�1�3�/�*��3�)�%�1�+�3�,�;�.�(�-�3�1�'�,�$�*�*�/�)�)�4�,�3�)�/�*�0�?�4�:�2�4�'�*�,�5�-�1�/�5�0�,�,�,�+�<��(�7�-�-�/�*�,�+��.�*�,�&�6�1�8�1�0�3�)�+�&�7�$�:�8�3�#�,�.�&�4�2�5�+�#�1�%�-��.�+�1��,�,�'�0�+�+�6�?�0�0�.�1�+�1�6�)�0�0�-�/�,�"�*�7�+�;�0�3�$�1�(�Ӏր؀ՀـЀԀڀՀˀڀր؀ր׀π؀؀Հ׀Ԁ؀׀ց�.�-�'�+�3�-�6�.�)�%�1�%�)�!�1�3�/�/�,�/��-�)�1�+�2�,�'�*�.�0�2�,��(�'�"�3��+�2�'�8�1�2�$�4�+�)�'�+�,�+�*�3�&�-�1�1��)�+�*�+�'�6�;�#�(�<�2�/�%�(��*�)�,�.�0�.�,�"�+�1�5��4�1�1�-�(�*�)�1�/� �!�-�)�#�%�1�,�$�'�*�%�-�9�&�1�,�(�(�2�9�2�/�/� �7�"�%�3�2�#�+�/�:�-�.�&�8�+�'�!�(�*�+�5�*�$�4��(�%�(�(�-�!�%�)�*�5�!�-�8�9�2�-��3�%�-�4� �5�*�#�9�0�-��7�3�)�3�1�8�.�-�!�$�0�'�,�-�1�,�9�-�-�*�6�*�(��&�/�2�&�.�&� �!�)�1�%�)�1�&�$�,�*�*�%�-�/�-�0�*�'�4�8�%�@�)�-�4�3�.�.�4�%�?�-�0�,�'�$�-��;�&�*�2�0�6�+�2�0�6�%�"�6�8�%�.�'� �+�,�-�4�+�'�'�2�0�4�*�$�.�8�'�+�&�(�/�)�/�*�5�/�'�1�1� �&�(�-�-�4�A�3�(�!�C�(�'�=�+�.�0�1�9��8�,��7�'�3�*�)�4�'�5�6��2�(�3�3�%�*� �2�#�9��.�(�5�)�0�-�&�0�/� �8�"�:�,�$�/�&�&�$�3�1�3�-�+�)�'�4�,�"�+�)�%��,�&�-�4�&�/�7�-�)�;�*�$�0�0� �)�3�&�/�6�3��*�0�/�1�0�(�,�2�0�!�2�+�#�"�5��:�+�2�0�3�/�2�:�(�/�*�/�4�)�+�5�&�&�3��3�,�!�)�1�,�2�/�;�0�4�#�6�,�1�*�&�'�/�3�'�5�&�3�0�9�2�&�7�,�!�)�*�9�'��1�1�*�,�/�0�/�+�4�%�:�'�&�0�#�-�(�7�0�:�3�(�.�,�)�#�"��.�'�!�/�,�"� �,�=�*�9�.�,�:��7�-�,�1�$�5�>�,�4�׀ЀրҀՀԀҀրրɀЀӀـԀ׀׀ـրрՀӀԀրՁ<�,�)�3�6�,�.�+�(�@�-�7�7�#�,�+�%�4�%�*�)�$�)�%�/��'�?�.�%�3�=���2�+�,�#��#�+�)�=�+�%��+�3�'�/�1�%�0�-�.�3�!�4�2�+�#�.�-�(�=�3�-�'�9�6�-�2�-�5�%�$�7�5�<�1�-�+�(�6�&�*�B�3�"�,�:�/�(�!�)�*�(�0�*�,�1�#�+�/�.�&�,�2�1�5�1�<�)�0�%�!�*�-�3�)�.�&�*�/�%� �.�5�)�*�(�/�/�*�2�+�-�1�/�7�'�(�-�%�.�$�6�9�!�-�-��2�.�+�!�/�*�5�$�0�)�(�*�0�*�-�+�*�*�1�*�*�)�%�(�*�!�$�2�!�5�,�-�-�.�&��&�%�*�6�3�+�%�&�,�)�.�$�&�&�1�0�0�-�'�1�*�.�/�*�4�+�:�+�+�8�,�3�3��%�2�3�5�6�$�&�3�$�1�+��2�-�%�,�/�%�#�0�,��3�1�+�!�6�*�4�+�(�/�)�;�/�$�/�'�%�,�'�%�2�,�3�,�*�!�.�-�%�2�+�#�.�/�1�*�,��/�*�-�#�!�-�+�(�$�,�1�'��&�+�5�4�-�/�8�'�6�*�+�)�*�(�"�%�3�.�1�*�(�"�%�6�5�'�+�+�&�1�'�7�0�/�7�(�$�#�+�)�4�&�!�0�+�*�0�/�1�(�1�(�%�#��1�)�+�0�&���;�'�0�(�<�+�'�1�.�;�'�/�(�/�$�0�(�'�1�.�(�0�/�2�.�)�(�.��#�0�(�-�.�'�0�.�,�6�3�%�!�+�&�-�1�-�7�'�1�%�:�#�*�0��>�#�/�'�+�+�3�C��+�$�0��-�3�*�/�,��7�"�0�,�(�$�4�0�$�0�/�.�"�*�*�%��#�,�-�(�5�!�#�7�,�2�*�*�$�&�3�%��3�0�(�%�%�&�:�.�-�*�5�"�$�6�B�)�,�6�7�2�0�(�.�%�#�2�2�+�2�)�<�)�-�.�9�7�,�=�-�.�*�/�3�;�5�7�׀߀׀׀ڀҀڀԀՀȀր؀ـۀЀ׀܀րՀ؀ڀۀ׀؁/�-�+�"�'�+�0�+�5�(�;�3�)�+�0�'�)�8�1�+�'�0�6�(�'�&�2��3�,�4�4�3�3�/�8�/�*�,�.�-�3�'�-�+�2�0�"�%�&�)�+�-�'�-�'�.�$�#�.�3�,�)�6�&�1�+�,�&�4�(�5�8��,�2�%�6�5�'�3�/�'�+�)�0�2�"�(�)�)�,�/�%�#�3�'�+�=�,�%�4�&�&�+�"�%�1�1�7�)�,�*�(�$�$�)�+�%�1��2�*�0�2�4�7�#�/�/�)�*�-�(�0�1�)��#� �7�G�*�/�(�,�9��%��-�$�&�:�-�4�.�8�)�%�9�%�*�(�)�7�7�'�5�5��5�)�3�+�/�%�$�%�>�+�=�$�$�.�/�!�6�(�)�2�/�.�4�#�*�-�6�'�)�,� ��,�0�*�+�3��-�-� �*�3�*�6�2�3�0�2�,�1�'�,�#�,�.�,�+�1�+�4�3�@�*�/�+�3�&�&�,�5�(��0�2�2�6�0�-�$�0�5�"�)�+�(�4�+�*�)�)�A�$�5�"�6�"�,�9�+�+�.�+�)�'�*�)�%�&�6�5�1�)�)�4�$�/�2�(�(�"�.��+�3�1�-�(�3�&�0�7�*�$�*�*�&�"�,�<�)�-�4�.�+�:��#�$�'�%�%�7�'�!�5�?� �+�,�,�.�+�&�,�%��,�-�%�(�4�%�+�0�3�7�+�2�.�-�&�-�5�4�'�4�$� ��3�4�7�3�'�+�.�)�%�=�'�3�"�-�-�.�<�2�3�.�+�.�'�-� �&�'�6��(�*�)�*�&�3�&�(�/�&�&�*�1�2�'�9�'�2�6�&�/�&�5�9�.�5�/�.�5�2��*�)�&�+�'��%�2�0�)�!�$�&�!�0�3�'�-�1�#�=�8�2�2�+�5�4�-�*�7�:�&��)�(�*�'�/�0�"�+�;�*�-�)�)�(�1�6�(�-�6�(�$�&�4�*�)�+�3�7�)�*�/�'�'�7���)�2��3�.�<�-�/�.�(�5�0�*�7�'�8�4�(�*�+�-�&�ҀրՀր׀Ԁڀ׀Ҁ��πӀҀӀրՀڀ׀׀Հ؀׀ԀҁB�2�'�#�4�)�1�/�$�&�"�8�.�5�'�3�/�(�/�&� �0�!�.�.�!�1�+�5�/�2�.�&�&�.��'��#�1�2�1�*�+�2�&�+�)�6�,�/�/�)�/�(�7�&�6�$�+�/��4�(�%�5�6�.�+�3�4��-�0�8�)�5�.�7�)�)�-�/�*�=�*�3�(�'�5�0�(�/�*�&�4�2�!�/�/�%�$�'�#�0�$�%�8�#�3�)�3�0�)�1�!�6�/�(�1�"�-�+�&�'�(�+�*�2�,�6�6�+�1�*�,�&�,�(�,�0�4�'�&�+�'��/�%�4�'�/�2�7�'�&�&�2�$�-�(�+�6�!�3�.�'�/�!�+�=�'�$�'�%�&�(�8�/�,�*�4�+�&�-��9�#�&�'�1�-�*�%�+�&��,�1�,�#�1�*�(�;�4�$� �.�%�3�+�*�&�*�"�&�(�#�/�#�#�.�%�5�*�0�!�-�%�2� �)�0�!�!�'� �5�+�/�#�&�-� �2�%�1��1�(��6�'�0�)�-�'�+��)�&�#�.�/�$�"�(�-�.�*�*�5�2�4��-�$�8�%�1�&��*�@�,�4�/�#�,��*�3�7�*�-�1�*�$�,�'�)�%�)�/�)�)�/� �B�5�/�*�/�/�%�5�"�+�5�6�$�.�'�0�0�+�(� �3�7�+�4�%�)�$�7�/�*�#�)�!�0�*�8�#�)�%�2�-�"�.�0�"�9�$�#�)�7��(�1�8�.�7�/�-�'�)�+�4�#�/�9�&�2�-�5�2�7�'�+�(�-��(�!�!�9�0�9�+�(�-�)�.�-�+�2�!�)��0�2�/�'�%�/�5�6�0�'�*�)�2�%�0�*�?�9�-�2�:�3�-�:�'�4�*�)�-��A�*�.�0�-�0�2�-�)�'�1�.�-�.�0�2�/�+�+��(�>�'�,�1�/�+�#�-�*�6�2�1�6�2�9�%�)�"�*�2�1�:�(�7�)�*�!�,�*�1�+�,�$�5�5�;�:�.�/�*�1�*�1�+�7�+�+�/�0�3�$�*�:�.�2�8�.�"�0�րۀ؀׀ҀрـԀր��рԀՀ؀Ԁր׀ԀҀԀ΀րՀՁ)�)�.�1�3�0�4�-�?�.�6�3�(�-�2�-�/�8�+�9�+�+�-�'�3�0�&�)�4�)�.�1�(�)�%�6�.�3�7�3��0�3�0�2�6�=�+�(�%�/�5�/�<�2�/�7�'��+�0�,�.�'�#�)�6�1�5�,�.�(�5�)�!�'�/�=�(�(�*�)�*�,� �0�)�'�$�5�*�$��$�3�-�)�%�)�,�4��+�,�8�2�/�4�3�0�!�.��,�2�3�*�*��4�'�.�2�-�%�4�$�5� ����'�,�.�2�+�:�9�7�#�3�'�.�)� �1�,�$�-�'�.�6�,�5�!�*�.�,�+�)�(�+�2�$�/�0�,�#�+�.�3�$�#�,�"��3�+�$�'�/��+�A�6�2�6�!�2�7�,�,�6�"�$�$�&�,�-�-�/�!� �*�3�!��#�;��)�4�/�#�(�*�0�/�%��=�*�1�,�'�,�.�9�#�%�/�/�2�.�(�(�*�4�1�+�'�!�.�7�'�&�1�.�*�)�/�/�>��'�%�%�"� �4�$�"�+�&�$�)�(�.�&�)�/�"�+�(�)�-�0�%�0�'��+�/��4�$� �)��.�=�)�.�-�/�4�;�+�)�'�$�%�2��!�)�4�'�(�(� �,�+�0�2�9�"�)�(�/�4�� �*�7�+�;�7�-�'�)��*�'�1�.�&�!�%�*�0�1�1�*�*�'�-�2�/�2�#�2�)�!��(�%�&�,�,�#�-�*�%�/�1�,�'�/�:�/�1�0�*�"�/�4�(�/�3�,�%�*�9�"�2�2�)�,�1�4�5�4�/�-��-�-�!�0�1�0�*�/�+�.�5�0�'�.�5�%�-�:�(�2�*�+�6�+�/�+�&�5�7��-�/�&�-�*�)�(���-�)�:�%�-��&�-�$�/�#�-�/��.� �'�.�2�%�0�.� �.�$�%�)�#�*�-�5�+�;�;�#�/�4�3�)�7�&� �&�,�)��6�*�)�'�4�'�/�(�%�+�/�/�2�$�2�8�/�<�2�0�'�*�'�.�9��/�+�3�0�Ѐр׀րր׀ԀՀӀˀڀӀԀрҀـ׀ӀڀՀրԀڀׁ/�#�+�.�,�8�:�.�5�)�5�/�1�8�1�2�,�*�.�'�2�.�0�0�.�*�1�+�+�!�2�5�+�#�4�/�.�=�+�$�.�0�+�;�)�(�&�-�(��&�'�%�'�)�7�%�*�%�6�0�'�?�2�)� �1��.�2�+�-�'�%�#�3�!�%�,�%�'�/�0�,�/�#�"�'�*��-�%�.�+�9�#�5�/�0�-�#�*�/�(�3��&�*�)�,�0�+�/�)�%�-�/�'� �1�#�/�,�*�+�9�*�)�,�-�/�&�-�3�$�%�,�4�1�)�3�<�0�7�*�"�$��:�.�2�-�-��6�%�%�'�+�%�.�+�4�'�#�(�(�&�2�#�/�+�5�*�9�+�1�$�,�%�(�$�.�&�'�-�%�6�)�*�'�,�/�6�.�*�,�/�%�"�2�(�/�7�-��-�*�(�-�5�+�.�(�,�1�+��.�/�(� �=�*�0�0�7�9�9�-�-�<�*�5�2�)�7�+�/�%�(�*�#�!�)�8�7�+�/�1�/�6�+�&�#�1�.�/�)�7�4�!�*�5�,�.�,�:�)�"�-�0�2�*�1�&�?�&�2�0�#�/�*�1�.� � �#�/�*�/��9�%�/�*�7�%�0�*�-�.�+�;�-�#�)�,�/� �2�-�5�2�7�+�3�(�3�)�-�3�"��*�4�)�+�.�7�-�*�+�3�&�)��'�&�%�-�1�"�,�3�0�$�(��,�/�/�4�.�-�#�2�%�6�%�!�+�<�&�5�0�(�.�1�,�%�-�)�!�)� �(�/�!�'�$�1�*�2�-�-��*�/�!�;�1�.�)�)�)�/�2�7�+�6�)�2�@�3�5� ��!�'�0�)�3�5�7�,�3�4�+�+�(�0��'�"�$�%�7�.�-�*�.�(�"�-�/�/� �%�/�,��5�4�5�*�1�1�0��4�8�#�-�5�&�2�&�#�$�7�!�*�'�,�(�!�+�4�,�+�(�0�5�!�0�-�9�/�6�3� �=�2�,�7�/�3�5�/�&�5�9�-�0�)�2�2�"�#�7�3�'�4�:�A�0�(�8�)�'�)�Ԁ׀׀׀Հ؀؀Հрƀ؀׀ՀրԀրր׀ՀՀڀրր؁1�,�2�3�4�)�'��5��+�,�7�/�3�+�)�-�/�6�3�1�,�:�2�(�4�0�7�5�*�-�"�.�0�(�%�2�'�(�1�/�,�#�1�-�(�)�:�2�'�+�/�)�'�+�,�*�(�)�)��1�2�'�*� �0�$�9�(�(�(�)�:�,�-�8�,�+�-�"�0�4�1�)�)�(�4�:�-�*�.�$�"�'��(�)�"�2�*�7��)�-�1�-�0�)�.�7�(�(�(�2�7�.�"�.�=��5�5�0�,�%�.�#�%�!�/�;�*�+�5� �&�,�2�(�1�4�*�(�$�.�/�&�&�/�3�#�!�4�%�-�$�1�3�(�)�0�+�2�+�-�)�,�*�1�0�!�+�&�3�"�+�8�6�7�#�2�.�*�9�0�+�&�%�&�#�*�?�-�-�(�'�7�%�2�)�*�(�,�,�&�*�?�/�0�5�5�-�,�'�0�>�-�5�#�=�#��5�/�,�.�*�(�/�1�+�"�2�&�0��)�1�,�&�0�*�7�7�*�7�/�&�.�2��8�,�)�#�)�"�,�-�/�1�'�*�*�*�/�+�/�-�3�4�-�0�4�5�4�.�5�(�)�*�#�"�+�9��/�(�/�6�=�.��0�(�6�-�-�,�(�%��/�0�(��0�*� �+�A�&�)�-�'�0�*�)�.�:�)��,�!�-�6��*�&�5�+�*�%�,�2�-�*�'�1�&�6�"�!�D�+�(�+�(�9�:�"�#�-�8�'�+�/�"�.�)�3�/�,�4��(�4�*�<�&�5�#�$�2�)�%�+�4�-�-�1�-�<�)�)�.�/�/�'�+�2�5�4�#�$�#�$�/�7��+�-�6�)�)�3�!��/�)�,�5�5�/�1�)�"�.��%�#�(�*�0�/�)�4�.�2�%�)�-�/�6�+�%�!�,�*���,�4�)�$�)��/�)�0�1�5�)�#� �/�&�*�2�)�*�-�,�(�2�'�1�*�.�)�+�/�/�/�/�3�/�1�/�1�&�1�/�*�*�5�4� �7�:�#�+�"�8�+�%�5�7�8�-�2�4�%�,�;�3��7�)�6�׀ԀҀՀӀրـ׀Ҁ€րՀـЀՀ܀Ҁ׀Ԁـ؀πրՁ.�1�-�0�1�*� �.�2�0��+�6��#�-�(�5�-�+�*�'�1�*�-�1�%�%�?�)�4�+�0�7�3�!�*�.�&�2��)�:�!�:�/�+�/�*�'�'�.�0�'�(�+�-�:�6�/�-�#�/�/�3�+�.�.�$�5�"�*�0�+�/�0�8�5�1�/�-�1�,�1�0�/�*�5�,�'�0�/�-�-�%�*�3�)�%�0�,�-�(�0�%�'�-�+�+�0�8�>�&�+�6�)�.�6�!�9��+�)�/�*��/��&�#�:�%�(�1�$�+�$�"�/�.�3�/�.�6�*�4��#�%��#�2�#�(�(�$�'�&�/�!� �9�3�/�8�*�#�'�+�)�'�2�&�/�6�@�*�/�&�&�/�)�&�8�/�-�%�(�%�,� �(�+�0� �1�!�0�)�6�.�&�&�$�.�#�+�5�%�/�9�<�+�(�'�%�+�?�-�(�5�)�/�1�+�-�&�/�.�)�9�&�(�*� �,�-�,�/�&�!�"�9�2�,�+�'��)�%�3�*�8�/�(�)�*�+�)�.�*�/�*�3�-�-�2�1�,�(�5�2�"�4�9�,�.�%�!�4�1�3�"��3�3�/�5�"��,�/�6�)�,�5�(�3�.�.�0�-�'�(�$�1�,�5�0��5��*�4�)�(�3�/�,�$�5�,�%�9�(�&��+��/�2�3�)�2�5�*�6�(��0�0�(�)�0�(�,�%�)�%�5�/�$��"�0�/�2�-�'�-�*�2�#��5�'�.�(�+�.�.�6�*�1�,�2�&�)�.�5�!�.�*�(�)�(�'�-�+�)�*�.�+�4�>�-�8�-�-�0�:�*�-�&�,�5�$�(�%�*��,�,�*�/�!�6�'�+�+�'�*�4��!�%�&�*�/�'�%��+�5�-�9�7�3�'�,�%�+�)�*�)�+�-�'�7�+�5�.�2�'�/�B�+�&�(�8�*�(�8�*�-�3�1�.�1�/�2�,�2�4�4�*�4�+�*�-�5�(�.�:�!�;�3�3�/�.�.�$�-�5�3�0�/�8�+�3�#�1�4�/�5�6�8�.�(�1�-�2�؀Ѐ׀ـ܀Ԁր؀׀ŀ׀ր؀؀ԀڀـՀ׀Ԁ׀րҀց*�$�(�3�)�+�1�$�(�2�&�7�$�3�*�2�)�8�/�0�/�0�"�/�6�!�*�1�0�*�0�2�0�&�9� �-�3�*�-�7�1�-�0�-�+��-�+�9�.��,�3�)�.�:�%�2�6�#�(�9�1�/�/�!�'�0�.�4�-��'�(�9�/�%��'�)�3�%�%�-�%�*�5�5��*�(�+�#�+�+�+�'�4�.�*�+�,�(��"�5�+�*�(�*�.�4�3�<�1�&�*�-�*�"�-�/�!�/��-�#�/�&�.��5�#�3�*�/�&�0�3�1�-�'�3�-�(�1�3�(�'�,�!�5�<�!�7�-�%��8� �*�A�#�$�/�%�8�)�5��*�-��6�4� �%�+�+�6�5�3�.�)�$�1�%�$�.�4�#�0�%�7�&�/�$�/�.�2�,�7�*�-�+�*�/�(�3�,�8�+�(�3�+�#�-�-�)�'�'� �-�4�)�'�6�'�(�%�-�%�+�2�#�'�.�)�*�!�+�+�#�2�+�%�#�3�)�"�$�)�%�+�5�;�"�*�/�2�/�2�/�%�,�8�+� �:�'� �6�%�$�)�+�%�*�5� �3�'�1�#�!�5�6�&�,�,�0�'�7�/�)�%�3�&�+�*�,�"�'�1�)�+�$�)�)�7�&�%�,�)�8�+�&�)�'�(�*�*�+�"�/�1�.�+�7�/�3� �(�4�,�%�(�%�/�'��� �)�*�-�(�.�,�'�*�1�*�8�'�*�*�%��3�,�(�%�,�&�3�'�,�'�3�.�*�&� �*�+�0� �0�/�(�/�-�,�$�*�4�,��,�%�$�&�$�)�1�4�"�0�2�3�6�-�+�*�1�5�,�/�)�*�'�=�+�,�+�2�+�,�1�"�3�4�2�-�4�'�3�2�.��3�:�-�+�6�1�"�'�/�%�*�+�/�*�)�,�,�3�"��/�(�0�#�"�)�$�.�&�2�1�%�+�*�$�5�,�.�1�(�<�'�"�2��&�.�*�6�*�3�#�#�(�/�6�&�(�/�/�%�/�-�/�5�;�.�%�)�3�*�,�+�6�#�$�"�)�5�-�ڀԀـڀԀԀ׀ր׀À݀ӀـӀڀ؀Ԁ׀Հ؀Ҁ׀Ҁԁ8��,�7�1�@�,�1�5�:�%�0��2�3�4�)�;�7�)�(�/�.�*�)�)�4�'�.�(�.�0�6�-�.�2�'�/�'�.�,�0�-�3�/�(�1�+�.�0�4�;�+�(�0�4�+�'�%�,�(�,�1�+�)�0��)�#�.�(��1�2�*�;�+�,�0�3�-�7�+�3�/�1�-�,��.�.�5�3�5�!�&�+�,�!�9�7�5�/�2�&�+�*�)�0�?�(�)�(�/�1�,��/�'�$��*�)��2�#�)�,�"�-�&�/�!��2�,�/�!�$�.��$�+�!�9�3�2�1�/�/�,�/�%�&�%�/�'�.�/�3�1�.�'�%�"�(�/�-�)�'�%�/�,�5�)��+�'��.��)� �-�,�.�)�"�*�,�2�-�!�!�-�'�'�)�<�(�)�-�'�(�3�)�0�+��&�1�!�,�9�)�!�%�2�&�+�(�7�/�1�$�*�&�/�/�8�(�*�;�%�(�.��&�(�4�%�'�+�3�4�.�.�$�'�8�/�/��0�5�(�.�6�*�.�/�#�!�5�%�4�0�9� �4�$�4�/�6�4�9�'�)�(�-�%�0�5�/�0�$�'�*�/��(�/�7�(�7�8�'�)�6��.��&�-�,�%�.�/�8�6�4�-�'�.�.�*�'�@�6�&�3�*�$�1�%�.�*�2��+�/�1�3�4�#�)�'�6�;�#�%�*�0�!�3�2�2�*�"�5�/�/�+��/�?�(�*�.�5�-�0�%�#�,�+�"� �&�&��!�3�*�5�,�#�3�(�/�'�3�.�&�-�(�,�*�0���3�3�.�)�#�4�/�,�,�.�$�/�,�5�/�9�=�$�+�7�%�/�2�2�(�3�'�8�9�!�3�6��'�)�+�5� �5�0�)�/�/�2�'�(�0�5�/�;��;�*�,�,�8�+�*�/�2�)�-�$�0�+�&�1��,�,��2�.�-�(�1�/�@�.�=�(�1�!�/�'�5�)�.�.�+�,�'�%�&�*�4�5�/�/�,�5�1�!�0�/�(�0�2� �9�-�4�:�-�2�2� �0�7�/�3�Ԁր׀рЀ׀рՀـÀ܀ـ׀Հ׀ـڀրπԀրՀӀԁ0�'�/�1�%�'�-�/�&�!�/�0�&�2�/�%�?�(�1�!�,�"�-�.�:�1�1�-�9�4�%�*�-�"�%�1�*��,�2�)�%�+�8�3�*�1�'�&�)�(�*�,�'�-�0�(�8�*�*�*�)�5�/�$�&�*�'�&�0�&�.�&�%�/�$�/�(�/�(�0�%�*�2�-�)�8�� �4�2�*�8�'�+�#�*�'�.�,�*�/�'�5�0�+�-�1�/�/�7�,�1�.�*�2�)�3�.�.�#�2�9��2�#�/��3�*�1�)�)�(�)�.�6�*�%�(�=�*�'�(��#�(�5�'�6�+�&�+�*�0�#�1�+�&�)�$�4�-�(�'�$�0�0�.�(�-�,�0�*�*�&�(�)�0�,�/�0�8�4�)�7�%�5�&�1�:�/�(�'�5�%�-�,�"��"�2�)�,�%�-�'��)�,�*�%�&�(�'�)�+�1�2�-�*�$�&�!�<�+�4�-�&�&�7�(�+�2�"�2�+�%�-�)�$�*�3�)�3�&�(�(�0�;�(�(�&�0�$�,�4�2�-�"�'�,�#�,�&�4�+�,�0�/�*�,�+�*�1�%�+�$�(�/�'�*�(�"�7�>�1�5�"�*�6�%�0�%�1�"�5�*�/�-�8�.�,�(�'�4�/�.�+�&�(� �.�7�7�-��2�-�-�,� � �6�#�,�&�'�)�0�.�(�.�(�0�/�(�3�2�(�4�-�'��5�.�*�3�6�&�7�+�.�$�$��)�"�7�(�1�!�=� � �3�&�.�7�8�1�"� �$�(�'�(�-�.�,�2�+�3�$�&�+�/�&�*�(�&�*�!�)�+�.� �>�8�<�7�0�1�/�$�3�5�:�,�0�$�#�-�/�*�"�/�,�(�-�(�6��<�2�2�+�#�*�*�2�5�4�'�4�4�8�(�,�*�-�0�(�0�*�4�&�*�/�-�'�+�7�)�=�+�3�%�&�0�&�'�$�2�,�!�3�$� �-�3�;�)�'�+�,�"�,�%�1�3��1�.�/�3�(�#�8�/�>�(�/�.�5�/�/�2�&�1�+�2�1�9�6�3�"�2�1�'�*�&�Ҁр׀ӀրԀՀـӀÀрڀՀҀ׀Ԁۀր׀Ԁـڀрԁ,�>�,�1�*�,�3�+�1�4�%�/�3�7�3�.�)� �+�5�%�#�)�.�7�.�'�4�6�'�(�(�)�:��1�1�3�,�$�5�:�*�+�(�4�%�,�0�*�+�"�$�2�*�6�/�2�,�.�2�+�6�/�1�4�9�+�8�2��%�.�1�#�-�!�#��/�/�0�(�1�5�#�7�3�/�(�*� �*�8�'�4�/�/�,�0�!�-�+�,�*�!�*�)�,�0�&�*�*�%�+�2�,�4�/�1�"�-�/�#�$�)�4�*�2�(�4�1�,�#�!�4�/�7�)�2�=�%�7�.�-�,�(�&�.�9�,�7�+�(�6�0�.�-�2�0�2�,�%�.�'�,�'�$�4�-�%�#�,�+�+�.�0�'��'�5�4�9�1�#��&�-�$�(�)�+�(�/�1�(�%�-�(�3�6�7�2�#��*�3�9�6�-�5��2�6�:�5�$�=�*�(�*�1�,�6�&�/�'�7�%�"�!�*�-�/�,�6�&�+�7�(�*�%�+�$�%�+�6�+�(�;�%��(�'�.�)�/�2�.��)�-�4�0�+�:�.�+�#�-��4�%�8�4�5�1�;�0��3�0�3��)�3�4�1�5�"� �*�+�/�,�/�"�'�-�5�/�&�(�'�+�+�+�$�0�1�+�(�&�;�,�'�-�.�/�%�/�,�2�$�=�/�)�4�;�(�3��*�9�,�%�:�%�%�*�3�3�3�)�&�%�)� �8�+� �.�0�3�)��!�-�'�)�)� �'�5�<�.�/�+�'�(�'�&�4�+�,�'�.�.�1�/�(�#�4�$�,�?�+�7�(��(�-�.�"��+�/��&�3�+�,�1�(�+��'��,�0�*�+�7�%�*�-�+�$�2��.�6�*�&�+�6�4�*�(�3�%�/�%�.�(�'�(�+�&�!�(�"�0�/�8�/�,��7�)�$�0�.�3�0�-�6�3�)�1�#�%�'�5�:�/�.�,�2�%�(�%�1�/�4�*�0�/�1�,�3�2�7�.�)�2�;��0�,�,�!�2�,�#�)�6��,�0�+�0�+��3�!�(�=�+�@�6�2�ՀՀπـԀՀπӀր̀Ԁ׀Ҁր׀Հ΀؀Հ݀׀؀Ӏԁ;�7�/�0�(�'�-�*�&��)�4�.�,�3�'�%�(�#�(�<�#�7�2�3�.�$�&�#�4�+�!�1�*�0�6�,�4�"�'�1�+�5�:�*�0�(�+�'�-�,� �1�2�%�/�8�-�.�%�*�+�.�4�'�&��4�$�/�2�0�&�6�3�#�2�0�0�'�.��1�D�5�$�)�(�.�1��"�/�/�+�-�3�%�/�'�.�-�$�.��3�/�&�8�'�6�,�0�!� �(�.�4�7�6�3�'�!�7�1�;� �7�,�(�.�)�$�"��3�2�(�4�!�*�*�-�,�*�(�5�%�+�)�&�,��)�*�)�2�1�"�7�-�%�'�/�(�2�-�.�(�3�-�+�*�*�-�!�-�#�2�(�.��)�&�2�)�(�7�+�(�$�3�-�+�+�*�&�*�&�-�2�*�+�'�$��3�)�,�/�*�.�.�$�0�C�'�,�$�;�0�4�+�3�6�(�/�0�2�>�+�"�3�0�8�(�2�,�/�%�-���%��9�)�8�8�1�&�.�*�/�%�2��/�.�+�"�$�.�5�$�0�*��/�!� ��(�0�.�)�$�#�!�/�-�4�4�(�(�0�4�8�!�6�#�'�'�$�6�3�&�"�-�8�9�%�3�*�+�2��(�&�*�1�,�*�3�/�'�'�)�.�-�#�.�-�%�/�.�1�2�.�)�(�)��7�0�'�)�8�4�/�1�!�'�A�(�0�6�6�&�1�#�4�)�&�%�#�)�)�4��+�)�0�?�*�%�1�$�2�/� �#�+�%�*�)�,�*�$�4�5�%�&�'�2�0�5�7�(�#�7�6�3�*�/�!�7��/�4�*�$�2�/� �6�+�,�,�&�.�0�*�*�(�4�%�(�/�!�*�� �-�/�,�4�$�(�&�!�"�!�4�)�+�7�+�.�'�.�0�/�8� �+�2�#�*�$�&��+�/�7�-�+��1�#�6�-�B�)�5�0�/�5�)�-�/�&�'�3�)�*�)�1�#�.�.�.�,�'�(�7�6� �*�/�2�1�2�,�'�1�+��0�3�.�3�2�2�$�/�8�4�;�9�.�"�րۀӀ׀ՀԀՀՀրɀҀҀ؀؀ԀҀԀԀԀՀҀ؀Ӏف.�$�'�&�*�!�(�/��%�%�4�/�1�+�6�/�.�!�5�(�-�.�6�0�*�+�:�*�-�1�,�-�4�/�!�/�(�)�/�*�-�2�-�3�.�"�/�*�'�*�0�0�3�&�2�/�(�0�*�"�*�9�;�*� �$��-�'�0�(�.��+�-�1��)�4�1�+�7�%�#�-�5�&�(�!�(�%�'�$�,�(�%�'�:�0�/�'�$�6�)�)�7��,�.�4�0�*�6�<�&�7�(�(�-�%�-�"�-�6�2�2�)�"�%�/�4�4�,�(�&�7��5�6�1�%�5�.�(�&��$�;��'�-�(��4�%�/�*�*�3�1�.�"�#�6�%��"�0�5�/�&�#�$�&�/�+�"�+�1�0�+�2�+�9�/�2�3�%�.�-�*�-�!�3�+�(�$�&�#�3�,�%�"�.�3�9�*�'�(�5�4�)�9�)�3�7� �)�-�&�$�1�/�/�+�.�7�(�2�!�+�#�3�,�-�%�/�*�*� �1�-�7�)�'�,�3�&�.�+�-�&�2�$�)�0�#�3�+�1�0�5�(�(�-�/�+�.�1�$�1�5�*�-�%�%�5�/�.�,�6�1�4�(�-�-��/�8�+�'� ��,�!�<�3�$�#�3�+��/�5�6�)�=��+�;�/�9�#�#�0�&�/�$�!�3�1�*�7��!�1�/�4�!�,��4�*�1�=�(�(�5�(�/�+�7�.�'�/�&�#�-�+�.�$�+�#�7�,�'�*�.�'�-�%�+�5�4��/�1�(�0�,�2�5�2�-�-�-�)�/��.�8�(�*�>�&�)�*�7�3�$�%�4�.�2�0�!�&�#�#�.�1�+�6�6�+�0�0�*�&�4�1�(�4�&�@�:�&�-�,�+�,�8�*��*�)�/�/�,�'�%�4�%�4�8�"�&�,�'�9�6�&�4�,�&�+�5�#�4�1�-�#�-�%�*�0�)�!�*�.�3�!�&�9�'�*�2�9�#�-�,�>�(�!�.�*�+�/�-�'�$�)�/�1��7�#�&�*�7�*�-�1�:�'�-�7�.�+�+�(�2�6�5�+�*�+�6�9�*�-�Ԁ׀ۀ؀؀׀Ԁ׀׀ǀրՀـҀڀՀ׀ۀҀـӀ׀ـՁ�.�)�7�,�5�2�1�.�,�2�#�"�'�4�&�.�2�(�'�6�.�0�$�0�-�7�-�,�'�+�*�4�/�+�3�)�&�&�%�'�?�/�5�5�9�0�!�,�+�*�+�+�1�'� �+�)��4�-�)�1�5�.�%�-�)�)�'�0�(�*�0�)�+�&�-�$�1��1�)�'��$�(�;�.�9�4�)�5�,�1�&��4�'�&�1�#�.�/�4�(�5�)�+�9�&�,��)�#�-�2�+�6�'�-�(�%�!�'�,�&� �2�/�6�)�/�2�1�6�1�3�,� �)�0�.�2�+�)�5�2�&�*�+�+�7�%�'�)�)�+�&�/�#�2��/�4��+�-�5�(�.��&�'�%�&�/�/�.�/�"�)�,�)�)�(�7�/�0�%�7�(�(�1�3�+�%�-�'�+�(�9�,�!�4�.�/�%��2�$�,�1�"�%�(�-�,�8�#�(�/�#�%�.�'�:�.�=�/�7�%�*�$�.�<�2�)�%�2�4�3�+�.�/�3�-�!�5�)�*�&�*�7�'�.�&�)�/�8�:�2�0�-�3�9�'�0�+�1�#�/�'�2�3�2�,�*�=�*�0�%�)�)�(�/�-�*�1�'�1�"�'�5�*�+�)�9�/�)�+�'�!�,�/�7�/�%�0�%�*�/�8�)� �.�'�*�,�-�!�(�$�%�(�5�&�&�/�'�&�7�9�!�+�&�2�)�,�,�2�(�&�/�0�+�-�6�1�4�-�-�*�1�+�2�#�,�$�)�!�5�.�+�/���'�1�%�)�(�-�+�1�)�,�+�!�(�"�,�/�7�5�0�1�$�*�0�)�1�,�"�9�+�3�-�,�0�-�0�+�.�$�-�+�(�0�-�0�&�5�-�5�.�4�"�%�.�(�+�.�*�)��)�A�+�4�$���/�'�4�&�-�&�,�4�(�-�5�*�?�?�>�+��#�1�9�.�2�4�1�-�)�+�-�+�!�*�1�2�2�1�0�+�2�*�3�(�>�'�9�7�-�-�.�?�1�)�6�$�8�4�,�0�,�5�'�2�)�&�-�+�=�(�!�2�+�2�2�/�;��-�/��;�؀؀ԀҀՀրــԀȀՀҀހ؀ԀԀՀـڀҀրҀڀց&�:�+�0�8�$�0�/�&�1�,�0�"�-�#�:�4�"�+�$�5�+�/�-�<�+�4�>�*�3�'�2�-�-�"�0�'�6�/�;�+�-�+�1�.�,�.�%�)�2�*�,�1�3�-�1�;�/�-��$�,�(�&�'�.�2�%�'�)��&�4�4�7�*�(�5�2�-�.� �+�'�/�%�$�#��/�&�)�,�+�3�.�/�)�5��6�;�#�.�)�,�1�%�$�2�!�$�%�+�/�5�(�+�,�3�-�'�4�+�/�2�+�/�'�1�$�-�.�$�)�2�/�)�1�.�)�7�)��!��)�#�'�(�,�'��"�0��&�<�/�3�7� �3�(�2�-�/�2�4�5�,�0�(�*�$�/�/�+�+�)�!��-�3�(�*�0�"�3�/�+�-�*�-�4�;�*�/�#�3�.�2�*�2�3�#�)�$�'�,�,�-�E�%�/�,�%�/�6�*�'�'�(�6�6�/�5�-�,�3� �)�5�)�5�(�0�2�7�"�'�0�#�&��-�+�1�*�+�&�!�1�7�"�%�0�#�.�-��.�+�,��5�=�/�8�1��.�%�.�*�6�1�7�3�-�6� �&�4�/�'�+�'�0�1�+�-�-�+�2�/�+�+�-��'�*��3�0�(�6�-�9�*�'�0�&�>�*�+�0�)�'�7�4�%�"�)�#�,��@�2�3�%�5�$�3�0�/��*�5�3�.�.�+�"�2�(�+�<�,�+�<�,�-�4�-�3�4�@�3�3�/�2�%�'�!�!�+�.�/�2��1� �+�*�-�&�%�*�,�4�4�'�)�-�&�:�'�)�)�(�.��4�)�'�*�(�#�1�4�3�-�,��'�+�+�,�!�"�+�)�9�%�$�-�,�(�'�:�;�5�$�4�0�)�,�/�*�-�!�3�:�.�&�.��4�.�<�,� �$�:�6�?�$�+�!�"�)��/� �/�/�*�"�(�-�)�*��0�,�!�-�&�.�+�*�3�4�$�;�(�)�$�,�6��-�2�/��9�-�:�8�1�=�7�*�=�2� �)�,�7�*�)�;�'�-�6�+�,��/�#�:�݀Ԁ׀ԀրրԀڀӀɀӀۀԀ܀րـր׀Ԁۀ؀ӀӀЁ-�1�8�%�2�!�-�7�2�-�5�&�(�4�)�/�-�)�,�2�$�(�0�*�$�'�4�4�!�1�1�+��7��2�-�*�2�4�-�+�7�$�"�1�&�3� �)�2�?��3�/�1�&�$�"�'�8�%���.� �&�3�$��0�%�!��.�,�7�,�)�3�.�-�,�1�-�,�4��,�-�"�6�)�0�3�0�%�/�;�1�'�&�)�8�(�+�6�'�5�+�.�/�*�&�(�.�(��0�4�/�2�3�'�)�'�/�3�(�.�2�)�3�,�(�-�'�*�'�3�3�&�)�+��!�1��,�&�'�'�5�'�$�5�&�-�*�2�3�0�/�3�#�0�%�-�!�5�#�%��(�'�)�4�/�(�/�,�4�+�$�3�7�3�5�(�&�&�!�&�,�1�)�4�4�#�&��)�,�-��'�%�&�0�(�*�3�5�'�/�7�0�#�)�0��1��(�(�+�$�/�1�/�$�)�,�,�6�%�"�,�.�,�6�7�$�0�)�/�+�4�"�-�1�0�5�-�4�<�(�2�.�*�$�1�+�4�4�/��%�-��.�%�0�0�!�$�(�/�$�)�(�)�+�/�#�+�%�*� �'�-�4�&�/�8�2�2�+�.�-�0�(��,�*�.�,�#�!�*�&�)�.�6�1�*�#�2�5�.�'�4�2�1�-�-�/�*�'�)�A�'�$�-�,�8�+�.�+�.�&�*�/� �/�/�+�6�(�/�4�,�0�6�!�&�*�/�-�#� �%�2�-�+�.�!�1�*�6�/�%�"�1�!�"�+�&� �7�-�-�0�:�)� �'�*�/�+�.�*�7�'�-�-�/�/�5�-�0�-�0�8�/�>� �'�1�3�0�*�(�-�#�7�+�'�%�0�/�%�(�!�'�'��1�/�,�6�"�#�/�'�)�+�"�+�*�%�1�&�6�#�%�1�,�%�+�2�2�-�)�2�"�(�%�)�&��/�,�>�4�3�/��5�&�!�!�6�(�*�$�)�'�&�)��9�)�'�.�)��6�3�-�*�#�(�/�3�4�"�)�8�7�/�0�7�1�7�2�=�-�3�2�;�9�؀݀ـրрҀ؀ـрŀπԀӀ؀ڀ׀ـӀۀڀՀ׀ڀЁ6�8�7�+�'�/�;�1�1�(�+�7�)�-�)�,�9�&�)�.�7��1�&��"�)�.�$�;�)�*��?�"�&�#�(�6�#�%�3�,�&�+�-�8�6�.�,�-�%�'�5�3�3�/��.�/�:�7�-�2� �0�,�%�1�,�(�*�2�/�!�)�$�3�(�&�7�!�-�0�(�$�7� �$�1�-��6�+�&�"�.�(�%�!�'�/�!�+�%�)�2�3�$�'�/�$�&�'�%�6�)�3�?�$�'�*�)�%�*�7� �ځ:�0�)�(�2�4�"�$�'�+�,�4�/�$�/�6�)��,�"�1�/�+�4�0��:�$�2�5�+�.�.�3�+���=�(�;�'�7�1�+�$�.�-�$��3�'�,�4�5�0�/�2�&�:��+�#�3�*�5�"�!�8�"�+�)�0�-�,�*�'�<��5�6�#�&��8�+�0�0�!�4�7�<�7�0�/�)�*�6�5�4�7��/�<�/�&�'�/�-�.�2�4�7�2�5�+��#�5�,�,�#�0�+�8�*�.�-�"�.�3�,�5�+�-�+�(�*�,�)�,�+�"�$�#�*�,�'�+�"�7�7�&�1�&��@�5�+�2��?�2�%�-�/�/�%�(�:�-�+�.�,�(�*�)�$�6�,�'�)�4�,�-�)�)� �.��%�1�%�2�!�,�5�!�+�&�0�,�-�(�8�"�*�*�/�.�7�7�4�2�7�<�.�%�*�/��*�'�-�8�-�%�5�2�'��+�3�+�*�/�$�'�)�*�7�-�4�,�*�-�3��'�.�2�&�2�,�-�+�/�1�!�-�+�"�0�8�+�)�%�.�0�(�(�!�3�7�3�0�-�/�)�%�)�*�!�(�/�(�(�1�%�.�'�5�)�2�%�1�-�?�*�)�(�,�1�.�.�7�2�"� �'�#�#�0�/�/��/�(�6�)�/�*�1�/�2��7�'�*�%�'�/�0�,�+� �/�8�&�8�1�6�1�)�6�0�5�$�)�/�0�%�7�)�2�0�6�+�1�,�5�(�)�+�:�4�2�4�4�6�&�6�7�:�7� �/�*��#�*�!�3�2�,�׀׀ۀԀԀۀրЀրÀրՀրۀ׀ـՀ׀ـ׀؀ԀӀہ#�,�1�.�'�-��/�.� �/�-�3�%�%�-�$�3�%�4�+�2�"�)�&�4�1�/�$�.�+�%�.�7��*�*�-�3�$�,�$�.�#�(�'�!�)�+�2�/�,�3�(�9�*�2�/�+�1�-�.�+�7�+�!�,�&�!�*�.�3�3�.�*�3�,�*�$�0�1� �$�-�3��/�0�7�3�'�-�+�%�)�'�/�/�9�*�.�0�+�%�%�-�$�.�%�-�&�#�-�-�+�3�.�*�)� �'�)�;�-�5�+�7���@�<�8�+�7�-�%�.�$�$�0�,��!�(�5�1�,�7�'�(��*�4�&�5�/�0�&�'�.�$�/�'�,�,��,�+�1�7�)�1�.�.�/�!�<�7�/�*�&�0�*�+�0�#�#�)�&�3�&��)�$�.�:�.�1�/�"�'�$�+�'�+� �4�(�+�(�'�5�2�&�&�2�*�2�)�,�&�1��&�2�A�1�-�&�)� �0�#�5�%�*�A�"� �*�'�3�&� �(�6�0�#�0�%�.�4�'�+�)�/�7�%�6�/�4�-�-�-�>�)��%�3�(�,�'�(�2�0�#�3�+�#�4�4�5�8�.�+�"�+�-�'�'�&�%�&�&�'�/�(�&�9�3�(�5�1�,�-�7� �&�<�&�+�%�-�-�9�/�,�+�-�'�/��5�+�/�&�,�-�0�#�;�.�/�)�)�*�'�*�/���*�'�/�5�'� �-�,�5�*�-�0�0�"�/�-�*�5�8�4�3�5�%�3�)�8�(�%�)�&�2�7�0�0�E�2�-�)�*�-�0��7�7�-�0�8�0��,�+�'�'�!�,�9�3�)�3�%�+�0�&�3�#�(�/�@�/�/�/� �(�(�/�/�'�3�&�/�,�,�2�'�4�1�6�/�5�(�*�2�5�'�+�2�4�4�-�/�3�2�<�6�+�/�(�*�0�"��'�*�)�%�%�7� �2�&�+�2�*�2�3�1�'�5�/�+�3�)�#�"�6�<�!�4�*�'�/�*�)��7�.�0�/��(�:�-�5�1�/�6�,�+�5�4�*�0�4�.�8�4�1�,�+�9�(�/�րԀ؀Ҁހڀ׀؀рʀ׀؀ــ݀ҀՀՀӀրҀ܀рׁ5�7�A�/�0�%�)�&�-�1�+�0�5�*�'�#�+�/�3��8�&�+�)�%�'�$�/�/�+�1�6�#�)��+�0�3�1�,�+�%�&�2�=�-�-��&�2�&�/�-�-�3��<�1�*�9�2�&�'�0�'�9�/�:�)�)�!�/�#�-�3�/�6�'�2�0�0�'�)�6�2�+�0�5�-�:�.� �5�-�2�#�%�+�-�-�*�*�)�$�/�$�(�0�7�)�$� �)� �-�"�*�#�0�2�)�2�)�3�1�.�5�>�;�-�-�-�B�3�/�8�-��*�&�9�-�)�(�%�*�*�.�+�.�)�&�'�,�6�+��3�(�%� �/�1�)�/�1�,�)�"�,�(�(�)�$�(�9�)�&� �%�,�/�*�'�.�3�9�1��!�%�/�&�%�)�/�1��%�/�,�1�4��.��&�2�!�-�5�-�/�'�3�1�2�-�'�&�.�+�$�'�+�/�&�3�&�-�7�5�)�3�&�"�+�$�%�3�%�0�(�&�7�3�.� �,�%�/��'�0�/�)�&�)�,�+�%�8�&�+�<�6�)�.�,�/�(�0�6�(�)�+�6�.�6�+�*�(�/�+�+�)�%�1�'�1�5� �2�'�'�4�'�&�-�0�9�*�)�-�/�/�1�7�.�1�-�)�0�&�$�(�0�+�6�%�$�%�+��#�)�0�*�/�0�'�,�0�,�&�+�/�*�%�%�)�2�.�+�5�!�8�$�3�"�9�4�%�.�-�)�2�6�-�5�/�*�'�=�3�6�&�$�+�,�)�.�&�3�$�*�6�9�*�$�(�#�'�3�"�-�%�)�3�-�%��,�2�#�(�,�*�/�2�-�)�+�(�7�%�0�-�,�:�(�)�1�$�-�0�*�1�5�"�&�$� �/�/�/�,��8�:�,�.�2�-�,�-�2�1�)�%�%�+��&�*�#�)�+�)�-�9�'�&�%�)�*�%�(�1�-�7�1�8�-�-�-�!�,��-�#��5�.�+�4�>�"�)�0�$�2�&�&�(�,�6�%�)�1�#�1�*�%�0�+��1�(�;�%�7�3�0�%�3�+�+�@�)�1�=�Ӏ׀ۀՀـ׀Ӏ׀ՀɀӀրՀــՀҀ؀ـ؀؀׀؀ҁ4�/�"�>� �/�@�)�-�/�8�4�.�/�3�*�'�-�$�=�)�/�(�(�/�0�<��.�:�1�,�4�+�4�/�.�-�.�6�/�!�-�1�-�.�*�,�*�$�:�'�'�8�+�&�/�1�(�<�+�.��F�.�&�$�3�3�,�/�/�)�%�+�(�%�0�-�<�,�(�5�&�1�1�0�1�(�9�+�1�/�6�;�#�.�$�+�,�8�8�$�-�7�)���+�*� �/�5�3��4�)�6�,�,�(�(�6�(�1�4�/�(�)�-�:�7�/�2�+�*�7�4�&�5�+�&�*�)�-�.�1�=�'�)�-�5�*�7�5��,�0�'�$�2��6�.�-�$�/�.�'�*�6�+�-�$�5�)�9��#�'�#�0�.�*�,�7�/�-�)��&�,�-�"�&�!�&��(�1� �+�+� �-�1�/�'�<�.�'�%�)�/�.�*�-�3�*�*�*�(�3�5�2�)�7�&�3�*�-�@�.�4�4�*�&�"�)�1�2�(�7�.�+�7�5�3�-�/�/�&�3�2�3�)�)�%��0�+�"�-�,�,�)�:� �)�0�/�+�9�(�/�.�/�.�"�9�-�7�0�(�!�+�-�%�'�,�(�/�4�.�"�,�<�.�0�$�+�!��)��3�1�2�4�"�-�)�%�'�-��8�&�-�6�$��&�'�0�'�7�7�*�)�.�)�/�+�#�%�(�!�6�%�(�+�'�$�1��4�3�'�(�+�.�-�+�+�+�3�(��7�+�%�/�$�*�-�"� �)�/�2�+�-�.�1�)��$�6�3�=�&�(�)�.�*�0�$�)� �+�+�,�-�*�&�,�3�0�4�+�1�3��1��5�+�$�*��"�,�*�&�-��.�0�(�@�-�+�4�+��(�)�+�-�'�$�1�.�)��*�)�;�+�'�'�3�+�$�0�.�!�.�,�-�-�0�(�3�1�2� �/�1��0�=�!�#�.�.�/�>�0�2�&�'�/�+�+�(�3�6�0�&�1�-�+�7�=�(�1�6�-�7�(�4� ��3�6�1�6�&�"�4�;�5�-�8�1�#�*�+�)�#�܀Հڀր׀ڀԀՀրŀ׀ՀԀҀ݀րԀрրՀӀԀՀԁ'�0�9�5�'�$�)�8�,�;�#�5�1�3�"�@�1�,�+�1�,�'�4�"�1�-�2�2�,�/�1�/�(�7�=�"�0�5�1�)�$�'�:�.�$�(�2�4�,�4�,�,�2�2�4�6�)�0�(�5�*�!�;�(�!�,�3�3�(�5�,�.�+�!�,�/�)�*�1�)�,�&�4�*�+�2�0�,�$�1�+�$�0�*�/�&�0�'�5�!�2�-�)�/�*�0�%�9�.�(�;�7�.�2�2�%�+�(�#�+�.�/�%�+�.�.�5�7�%�2�&�'� �1�&�;�0�'�*�&�$�-�/�-�,�!�,�%� �(�*�3�/�5��3�-�"�+�%�2�&�'�3�)�)� �%�&�,�&�)�-�#�%�$�*�(�&�&�(�7�0�1�+�-�1�*�)�+�&�5�1��-�.�%�'�>�$�,�8�+�"�)�%��1�<�/�,�5�&�-�/�.�-�(�%�-�C�"�3�'�9�'�@�2�9�(�.�-�$�$�#�"�0�+�-�-�"�-��7�(�*�6�)�%�,�%�(�2�,�4�+�)�3�+��#�3�-�-�+�3�+�&�*�$�&�)�1�7�-�)�)�$�<�1�+�5�+�3�+�*�&�-�,�*�/�#�"�.�8�.��)�1�*�-�#�/�+�9�*�,�2�(�0�+�5�+�8�5�*�4�*�3�&�(�.�2�*�*�2�9�-�9�1�%��7�'�3�1�#�8�-�,�6�,�%�4�8�/�&�.�*�)�3�/�.�2�*�%�!�+�;�/�&��/�1�%�/�&�!�.�'�,�+� �)�2�*�5�/�/�$�,�/�1�1�7�.�6�&�:�#�*�0�1�3�(�,�(�+�3�'�/�)�.�)�3�(�*�*�)�,�"�-�'�%�"�&�/�+�/�2�&�-�$�1�-�.�.�0�+�/�'�6�2�)�(�.�$� �'�'�&�5�1�,�0�0�7�+�0�+�-�-�/�.�-�.�/�#�+�*�&�3�'�-�"�#�+�%�+�0�#�.�+�0�"�/�%�+�'�1�0�1�,�2�%�&�.�;�)�-�-�0�5�$�/�8�$�.��)�4�'�%�&�/�.��!��(�0�,�ՀـԀՀ׀րր׀ӀĀ؀׀րЀπՀӀ׀׀Ӏڀ׀Հҁ9�+�.�+�$�*�5�4�'�/�+�+�0�+�.�$�"�9�,�0�-�<�!�/�)�%�-�,�'�1�&���*�:�5�(�8��1�8�"�$�+�0�4�*�)�+�0�)�/��3�)�'�-�#�3�.�0�/�*�,�(�+�/�,�0�"�+�-�.�5�'�-�2�3�)�+�.�*�+�4�4�2�/�;�3�,�8�C�-�'�$�4�/�/�,�2�2�'�&�7�3�/�-�)�%�)��2� �0�&�8�-�/�'�$�,�&�.�,�3�)�7�4�+�;�7�+�*�0�4�"��*�:�2�-�1�+�*�!�+�*�+�+�%�+�(�-�+�)�,�4�5�.�4�*�4�;�"��%�,�*�+�/�/�+�,�"�&�.�*�/�-�*�>�(�(�7�*�(�(�'��%�#�/�&�(�*�+�(�5��+�%�*�"�'�8�3�*�>�1�?�/�%�.�+�7�'�4�$�/�,�.�>�%�!�.�.�2�2�/�(�)��&�.�%�6�0��8�0�5�,�3��$�%�%�4�)�%�+�-�+�.�5�*�*�(��.�,�,�'�2�?��.�-�4�+�'�*�1�)�4�)�%��)�:�)�!�'�3�$�-�/�8�+�(�/�-�"�0�-�*�+�7�2�/�>�-��.��/�:�9�#�(�-� �0�/�1�%�/�,�-�2�6�*�0�#�(�/�1�0�+��8�)��&�5�!�-�*�,�.�2�'�<�.�,�&�.�(�)�*�1�/�7�*�%�/�'�(�,�(�-�:�5�/�3�(�.�7�3�'�#�9�-�%��1�6�(�5�0�-��)�(�,��*�-�"�)�)�4�,��6�0�-�$�(�+�2�4�1�1�/�)�'�/�4�#�)��2�/�$�%�*�/�#�3�(�.�<�+�=�,�8�4�(�2�3�$�*�2�$�*�5��1�*�7�+�*�%�7�.�'�!�-��"�#�2�*��&�2�,�/�+�(�)�5�9�0�-�6�1�+�/�6�+�(�1��-�(�(�'�-�0�#��*�.�/�%�*�%�7�7�*�;�+�&�.�(�1�,�%�.�)�)�6�&�:�.�3�3�)�'�7�׀ۀ؀Ӏ׀Հ׀׀ـĀ׀׀ـӀ׀ــՀրՀՀӀ׀ׁ%�%�*�"�)�5�'�2�;�6�;�2�0�5�*�)�"�'�,�%�1�<�'�*�4�3�8�7�)�5�<�&�+��.�0�)�(�,�%�*�2�0�5�&�2�2�0�+�&�(�(�1�%�%�4��7�%�*�=�#�6�/�)�1�*�.�0�)�&�*�@�%�+��0�(�)�0�+�)�(�+�0�4�/�'�-�/�'�3�)�(�.�-�4�3�'�/��/��2�-�6�2�)�3�!�&�+�"�1�-�'�,�&�/��$�3�$�� �0�)�-�+�#�#�#�/�&�,�&�$�6�%�0�.�-�2�/�2�+�!�$��(�+�)��5�6�-�*�+�8��,��5�%�/�9�2�.�(�6�,�%�.�-�,�4�)�1�%�:�'�-�%�9�0�-�1�<�!�2�/�1�)�&�)�7�'�#�3�*�.�,�-�'�7�:�/�2�(�/�1�9�"�*�%��.�7�*�4�(�(�,�5�.�*�-�1�*�5�'�'�/�*�%� �1�)�#�%�1�/�0��9�'�+��%�-� �-�:�.�(�8�!�*�/�.�(�4�.�$�+�3�,�.�.�.�4�)�2�+�6�1�#�#�4�/�(�@�/�0�3�5�&�/�)�/�,�+�.�&� �4�/�)�2�*�$�-�0�(��%�*�7�)�1�!�%�<�/�,�5�,�*�/�#�1�9�0�*�/�3�"�5�0�"�:�.�(�1�%�0�/�#�#�0� �,�4�9�-�4�*�-�4�'�!�+�1�(�8�)�.�3�&�(� �#�)�*���'�)�+�%�=�:�*�0�#�1�$�4�,�)�-�0�1�(��-�0�'�(�/�'�+�/�.�.�,�;�0�/�9�%�'�/�1�0�-�/�#�7�+�#�1�/�1�5�.�*�)�1�'�6��4�/� �/�'�#�2�2�+�0�'�.�'�*�,�/�2�8�3�2�5�0�(���5�.�-�%�9�3�=�6�1��&�-�'�1�@�3�'�5�#�)� �&�!�,��0�%�"�.�/�2�$�*�'�'�*�4�%�+�-�/�1�)�7�#�(�"�-�%�*�&�3�/�(�6�1�:�3�4�'�!�,�0�2�*�Հ׀ր׀Ԁ׀ـՀր€ـۀ׀ր܀ӀـӀ׀ՀۀӀ׀ہ'�2�6�-�7�/�!�,�/�+�7�.�3�!�+�*�"�<�,�2�4�,�)�4�+�(�1�%�*�,�*�.�)�/�)��.�-�4�"�4�-�;�*�0�/�$�,�,�#�"�-�,�1�)�)�$�.�.�2�6�.�)�1�4�1��$�*�2�(�+�&�:�'�$�%�(��"�$�$��,�/�,�)�*�+�2�(��5�-�%�2�!�'�/�:�,�<�'��2�7�-�/�.��#�)�,�*�1�%�3�1�6�'�*�,�&��0�-�2�)�3�)�.�0�-�+�+�*�0�$�"�/�4�0�:��1�%�(�-�.�/�,�,�&�/�1�1�-�&�3�"�4�)�,�1�4�9�&�-��5�+�1�+�/�+�-�)�3�0�.��8�.��2�+�.�/�2�*�%�1�)�!�0�-��(�0�*��-�&�'�1�/�.�$�#�(�3�&�/�1�5�&� �2�-�(�*�0�)�%�/�2�/�&�:�.�0�1�"�3�!�"�&�'�>�1�3�/�0�*�$�#�!��7� �(�0�.�,�,�*�%�"�4�?�;�/�(�-�4�<�;�"�(�"�1�&�2�,�/�&�+�!�/�-�'��7�6�2�(�*�,�2�5�.��0�%�%��(�(�.�,� �>��%�!�+�3�/�5�2�3�5�$�*�*�/�1�(�3�#��.�3�,�%�2�*�+�1�.��-�+�1�1�(�1�-�,�'�#�$�$�,�'�3�1�*�5�$�.�'�*�#�2�%�4�=�)�-�(�8�3�.�/�+�'�.�/�/�'��,�)�)�1��-�)�)�%�1�8�:� �9�!�!�"�0�.�3�%��;�.�"�,�/�&�&�-�.�(�?�1�,�,�+�.�+�4�5�9�-�.�2�3�)�(�*�'�*�+�0�6�'�1�5�2�0�$�-�4�)�(�1�.�/�7�-�3�6�5�0�-�8�4�8�3�(�4�%�3�)�6�/�7�9�0�!�1�+�'�0�-�2�9�)�(�8�1�.�'�%�+�5�.�1�9�3�1�-�.�'�%�0�*� ��.�1�0�+�*�4�%�3�6�#�.�8�2�/�7�)�3��>�9�3�4�Հ؀ӀԀـ΀Ԁ׀рɀ׀؀ՀՀԀЀրـ׀Ԁۀ؀؀ׁ.�(�3�8�+�9�7�%�-�-�,�9�7�(�+�0�6�)�#�1�.�,�-�2�1�)�.�,�)�6�:�/�+�,�,�%�2�'�(�2�.�(�:�#�+�/�&�*�,�%�&�+�/�)�#�*�2�*�3�7�%�(�*�"�)�+�5�!�/�%�0�+�6�+�.�/�,�-�0�)�2�7��(�+�-� �'�&�2�+�!�H�/�/�2�8�6�0�*�7�#�-�'�,�7��8�1�%�2�0�,�1�#�3�3�=�%�1�1�@�$�%�*�)�,�+�)�(�'�2�&�"�;�(�#�2�)�#�'�3�0�*�*��4�4�(�)�*�-�'�2�0�,�0�.�+�!�*�!�*�4�+�8�+�0�%�*�$�'�(�.�(�3�/�/�/�)�C�)�#�1�/�*�3�4�:�%�%�)�)�2�2�.�(�*��)�-�6�,�&�3�#�5�%�3� �2�%�1�$�.�5�-�+�4�0�%�)�-�&�&�3�&�7�/�0�2�1�'�2��5�"�/�#�#��4�#�)�'��4�6�/�/�5�8�5�0�'�.�/��(�.�$��,�*�:�3�4�#�+�*�+��,�0�)�'�+�"�1�#�3�)�7�,�'�&�3� �%�(�+�/�0�+�/�8�4�3�2�'�/�+�/�0�3�1�0�-�+��)�7�-�5�&�&�7�$�+�'� �)�'�)�&�)�*�/�*�3�*�%�-�)���(�.�%� �,�1�%�$�-� �/�*�,��0�-�-�2�@�#�&�4�$�,�1�+�-�/�0�3�.�6�-�+�/�*�!�$��$��1�'�'�9�6�.�3�(�1�4�.�8�%�8�+�2�3�)�-�4�/�&�2�#��.�*�+�)�0�%�,�$�1�1�(�7�(�'�2�0�2�,�)�5�5�/�7�(�1�6��#�-�+�#� �6�5�7�)�&�2�&�&�+�5�.�(�%�9�0�-�"�"�-�$�3�5�2�'��(�7�1�&�0�)�&�,�1�&�/�'�$�.�3��,�5�)� �-�*�+�(�"�1�-�.�-�5�-�4�2�,�&�<�&�(�3�3�$�'�-�&�,�/�#�'�3�%�)�3�%�ЀҀ׀ԀԀՀ؀Ӏրƀ܀Ӏ׀ــڀҀۀππԀπ׀ҁ*�/�3�3� �%�$�+�0�+�:�8�0�:�.�%�)�)�.�.�8�5�.�+�1�9�*�/�$�:�)�4�.�;�#�/�%�)�+��7��+�&�/�-�,�4�%�%�-��+��;�.��%�5�)�)�+�.�'�1�$�-�$��/�#�3�6�,�'�+�*�&��#�*�/� �7�2�#��%�,�/�-�"�)�(�0�9�(�/�1�?�5�5�1�2�#�)�#�/�#�'�/�<�!�+�+�.�(�,�%�$�*�3� �#�!�1�,�%�/�,�*�/�,�/�(�5�+�(�.�#�)�&�(�0�,�/�0�7��.�&�%�)�.��%�1�"�*�)�2�9��(�+�/�+�2�*�'�0�-�4�+�!�/� �%�"�&��-�/�'�1�*�4�1�=�$�5�%�/�.�(�%�(�(�-�%�4�1�+�(�)�&�5�0�8�)�1�$�)�=�5��%�'�1�)�/�4�(�4�*�/� �*�-�&�5�-��4�/�,�� �)�.�%�,�8�B�"�"�.�'�4�*�+�+�1�)�0�#�/�$�,�/�%�)�.�2�"�'�3�-�.�!�/�;�-�7�'�2�+�+�$�8�)�5�)�0�#�*�(�(�9�0�(�/�&�(�+�*�-�6�&�1�(�3�#���-�.�/��3��'�0�<�(�%�1�2��/�?�5�+�4�0�&�0�)��6�2�5�/�6�(�"�*�2�$�(�7�&�1�0�4�/��3�*�-�)�*�$�4�*�)�+�&�,�*�9�)�(�(�(�3�%�$�/�*�"�7�/�+��4�4�2�!�(�*�'�2�'�;�'�(�+�"�&�3�'�(�3�4�#�/�(�,�7�8�1�1�5�)�8�"�%�(�'�3�2�%�+�-�9�1�/��.�'�1�&�5�+�2�,�+�/�6�)�-�+��(��0�$�+�#�'�'�:�#�'�/�*�*�-�'�*�/�/�1�,�4�6�*�(�!�6�#�)�$�7� �+�1��*�*�$�/�*�3�*�)�1�3�*�7�5�<�+�(�4�0�*�/�)�F�-�3� �1�;�-�2�-�)�3�)�3�+��-�;�0�1�-�2�,�ҀҀրրր׀׀ՀՀÀ؀Ҁ׀ր؀ӀԀրـڀ؀׀Ԁځ-�,�0�.�.�5�.��/�)�*�1�/�0�*�-�0�#�2�+�/�%�4�-�/�-�4�)�3�$�&�&�(�,�"�'��%�1�*�+�*�1�.�,�5�/�2�+�*�1�+�.�8�1�&��.�%�,�0�#�1�%�$�1�,�*�$�.�7�'�*�$�7�'�7�,�$�@�*�!�)�.�8�(�/�/�>�#�,�*�+�0�'�+�>�2�4�/�*�0�:�5�1��0�(�$�)��/�2�)�+�2�*�!�(�4�0�%�-� �+�8�,�5�$�,�*�.�-�,�%�2�'��+�'�*�'�-� �)�2�6�'�3�-�3�*�+�"��4�#�7�9� �%�(�!�'�"�(�:�6�!�#�-�/�/�.�!�#�2�&�)�9�4�+�6�6�%�!�*�3�9�/�0�,�1�=��+�*�-�-�&�7�4�/�*�6�(��)�=�?�)�+�)�,�.�'�3�0�*�;�.�<�+�.�/�6�!�-�%�7�/�1�6�%�$�5�,�+�%�4�;�8�0��6�+�-�4�$�'�#��!�2�-�*�,�*���*� �*�%�!�3�0�#�1�2�3�0�.�'�&�3�*�&� �.�$�<�+�'�+�*�5�/�+�5� �)�0�<�0�*�,�.�0�(��-�.�(�/�5�/�7�1�.�#�.�4�-�+�(�9�<�8�2�;�6�.�1�)�/�(�5�7�4�'�4�-�*�+�$�.�;�8�.�0�6�3�+�(�9�(�%�2�+�6�9�0��.��3�)�'�.�*�$�-�6�9�5�%�.�/�'�-�$�+�+�+�#�)�!�(��#� �-�3�1�1�2�%�-�6�,�'�*��1�-�&�-�1�:�"�)�"�+�+�%�"��3�)�+�*�2�2�7�)�3�%�+�#�/�*�+�"�*�'�&�/�'�:�-�9�!�<�(�0�(�2�/�-�-�#�(�1�6�#�&�*�%�+�:�/�3�"�5�(�'�#�)�'�7�7�8�7�0�1�"�-�)�"�'�%�$�/�$�9�*�1�,�/�<�,�)�*�5�1�,�)�/�-�1�4�6�)�*�$�#�%�%�.�+�)�+�"�1�3�6�;�+�*�%�.�ЀӀՀр؀Ҁ؀ӀԀǀҀԀ؀ՀրӀԀ׀ڀЀ׀Հ؀Ձ-�+�!�1�5�/�4�0�0�+�+�4�+�1�(�8�2�*�2�'�!�8�;�=�*�&�*�>�7�0�%�&�:�$� �0�#�%�*�1�-�-�(�%�+�0�&�"�*� �+�3�-�)�)�&�&�)�)�-�$�.�*�9�/�.�0�-�+�<�'�0�#�-�-�5�3�#�)�;�,���#�/�)�!�6�7�1�+�)�/�0�*�2�7�1�/�5�*�#�<�"�4�0�/�0�-�,�4�>�%�,� �1�2�,�6�"�,�,�%�/�+�5�)�/�-�(�1�,�7�*�)�3�&�,�+�$�)�3�/�*�(�(��2�;�4�'�.�3�$�"�1�8�'��5�+�$�3�3�(�7�6�1�/�0�&�&�9�%�*�4�&�1�,�0�(�,�+��0�-�,�!�'�#�4�3�#�*�1�,�6�4�4�4�5�/�3�+�.�+��7�/�3�.�-�+�5�,� �(�5�+�8�-�!�=� �(�=�2�&�'�#��2��$�)�,�*�8�%�/�.�"�+�.�/�-�#�1�1�7�"�4�2�'�&�)�/�"�1�6�+�#�2� �#�0��%�)�#�*�%�8�%�5� �,�2��+�/�3�*�%�*�2�)�4�=�%�/�$��+�2��2�)�&�&�8�)�/�(�1�%�.�$�&�"�8�)�4�(�9�1�$�1�&�"�)�.�)�*��/�1�,�#�*�4�-�/�0��#�.�,�.�2��3�(�(�)�2�-�-�3�(��+�/�%�2���4�/�0�'�.� �6�,�/��)�5�1�)�&�'�%�'�4�@�*�(�/�'�)�-��*�&�+�(�'�4�+�4�+�'�6�,�&�$�'�,�-�,�%�4�!�.�(�-�,�)�.�'�/�(�/�*�/� �2�7�*�4�%�$�6�.�+�2�4�.�.�/�0�'�2�%�1�#�&�&�-�(�0�'�*�"�-��.�,�1�'��(�/�(�.�6�&�'�,�.�!�(�/�)�3�(�4�3�-�!�1�'�7�1�+�!�4�2�$�'�7�$�8�-�+�.�:�*�/�-�.�8�4�/�)�1�'�'�$�-�0��8�%�3�*�4�0�-�6�рـԀ׀ҀۀҀրԀǀՀҀۀۀ؀׀Ԁրـ׀׀ր؀ׁ,�-�+�:�2�3�%�6�3�-�)�"�4�2�;�8�,�3�3�2�0�'�+�(�*�3�$�$�.�/�,�B�)��/�&�)�;�$�.�%�7��@�-�7�(�"��'�/� �-�-�8�&�%��9�2�6�-��0�.�0�� �A�#�7�3�9�4�8�.�1�1�5�!�)�'�$�@�0�!�0�%�$�*�*�=�)��0�*�$�)�2�,�0�%�+�>�*�-�2�9�9�/�&�%�-�'�"�-�1�+�!�*�0�$�$�"�%�A�1�?�-���+�2�$�/�K�%�:�2�*�/�#�-�$� �/�#�2�0�$�%�/�0� �%�-�5��+��6�1�+�-�%�-�(�+�1�2�-��9�.�>�'� �1�4�2�#�+�0�7�9�'�(��/��0�+� �%�,�-�+�&�/�<�/�1�5�(�.�'�5�0�,�/�"�+�)�5�+�4�'�#�(�2�.��*�,�!�-�$�,�-�1�3�,�'�1�,�'�2�+�'�/�+�%�$�3�)�3�*�1�%��/�*�+�/�*��2�)�:�)�$�)�7�-�+�3�(�=�"�*�+�6�6�(�+�3�(�'�:�*�$�0�-�-�)�+�.��2� ��&��.�-�%�1�,�8�'�-�)�+�,�*��*�4�*�,�&�#�-�.�2�%�&�*�(�#�*�*�2�/�"�,�'�,�3�8�/�1�.�%�$�%�)�/�/�0��!�"�'�,�)�-�#�+�*�0�'�!�$�"�+�%�$�&�+�(�,�=�-�'�1��7��.�(�$�.�'�-�'��.��!�$� �&��0�&�0�+�;�7�/�#�&�(�,�.�/�%�.�7�$�*�1�5�0�+�9�.�!�2�2�#�.�0�)�/�*�/�0�5�-�(�@�.�0�.�,�8�@�'��0�.�(�*�+��/�,�0�:�)�/�-�;�"�8�*�&�1�1�:�3�1�/�"�.�+�$�-�!�4�/�3�(�(�/�.�*�!�*�1�4�@��1�8�'�5�"�)�7�@�4�1�1�1�D�0�+�3�(�*�.�'�7��2�/�*�&�7�%�.�*�4�<�)�.�)�(�.�݀Ӏ؀Հ݀ԀՀـրƀӀڀـ؀ۀӀ؀րҀրЀ؀ӀՁ<�*�$�6�"�8�+�/�!�*�$� �3�&�<�0�/�%�$�,�)�&�$�7�3�.�5�.�*� �/�%�7� �*�<�&�1�2�.�!�.�#�!�'�#�/�2�)�&�7�%�#�6�1�1�,�/�1�)�6�9�#�6�0�8�1�4�/�)�(�#�2�/�,�.�*�,�4�.�"�,�3�(�1�&�&�+�1�.�)�+�6�$��.�1�6�/�,�5�7�1�,��3�#�E�*�)�4�%�8�*�$�-��#�%�4��7�/�7�0�1�1�-�1�"�4�1�4�1�'�"�3�+�*�#�.�>�'�5�&�'�-�)�.�#�2�0�.� �)�0�2��,�+�!�+��%�/�(�/�(�+�"�6�0��-�.�'�7�!�)�&��,�,�*�#�/�)�.�$��1�1�1�-�.�&�)�7��&�4�(�0�/�!�*�7�'�;�.�4�*�#�1�8�/�-�-��$�-�/�7�0�'�,�#�-�)�7�2�1�*�!�5�(�)�+�'�"�+�,�*�0�,��2�5�/�/�3�)�5�8�)�-�%��'�7� �+� �6�"�.�'�'�-�&�3�$�.�,�&�+�,�/�3�(�6�(�)�)�&�%�2�0�*�*�#�'�'�)�0�9�,�0�*�*�$�,�3�*�0�3�.��%�9�+�&�.�0�4�2�5�&�-�'�%�3�3�4�"�&�'�,�/�,�*�-�%�'�,�=�+�!�(�*�-�.�'��)�1�,�'�%�*�-�$�&�'�0�/�8�3�1�.�8�$�(�-�)�'�0�(�6�.�+�*��#�*�)�*�1�%�6�6��3�2�*�)�.�.�,�2�1�*�+�4�5�#�*�(�4�:�0�#�#�(�1�+�,�)�,�+�#�2�!��(�2�1�+�+�7�*�(�'�:�.�0�%�-�%�0�!��%�<�7�#�.�.�,��+�0�+�#�;�&�+�*�*�.��/�6�+�$�'�&�;�-�+�1�/�$�#�5�0�0�(�%�&�+�7�)�&�$�)�0�#�*�5�(�#�.�6�)�7�"�6�2�;�,�-�3�'�&�/�-�7�5�5�*�8�8�&�5�%�.�+�0�7�)�3�Հрրր׀ӀـڀҀĀԀ݀ۀҀڀր׀׀؀ڀ׀ـՀԁ/�$�0�$�0�-�%�6�0�2�/�2�0�"�2�-�:�(�/�#�2�1�4�+�'�&�)�'�&�+�/�%�C�%�9�6�2�.�-�+�'�3�"�"�&�(�/�"�4�/�3�+�8�&�0��0�1�(�9�.�8�)�"�6�+�5�5�9�/�+�&�*�B�*�,�4�7�&�-�/�&�3��)�*�0�%�2�(�*�(�5�)�3�(�0�6�&�/��?�)�0�*�%�9�/�'�.�6�'�(�0�*�/�&�7�1�'�*��'�+�)�7�:�2�'�&�0�-�,�-�/�*�4�(�*�/�&�&�.�'�/�+�&�8�0� �'�+�0�1�.�)��8�(�)�3�5� �:�%�&�,�/�,�6�5�+�&��+�)�5�%�!�+�/�.�7�"�*�&�%�+�.�.�/�,��-�:�"�$��-�.�#�!�3�+�)�/�*�1�(�*�2��.�3� �/�&�+�%�)�*�/�0�+�7�/�-�2�#�*�-�,�#�1�7�(�7�4�1�6�*�/�/�(�-�/�3�7�/�A�-�*�7�(�-�)�+�"�'�*�$�%�/�+�:�.�8�6�9�0�%�1�#�.�3�+�&�-�%�2�=�!�7�/�)�2�"�,�&�0�%�+�=��6�%�&�/�/�'�0�4�0�/�3�2�4�(�3� �&�,�.�%��,�6�.�)�&�(�/��+�4�%�'�*�*�&�2�6�/�-�(�-� �,�0�.�'�$�3�)�8�-�)�-�6�2�#�#�5�/�+�!�)�/�-�/�1�5�9�?�?��'�/�+�*�0�8�(�-�0�+�!�9�2�2�.�)�,�%�5�%�/�$�+�3�5�.�5�/�$�'�+�/� �*�"�(�(�'�(��2�*�0�;�,�)�)��-�1�0�*�+� �,�&�0�+�%�)�'�9�)�'�3�'�6�-�+�(�+�8�*�*�.�/�,�/�4�-��&�"�)�/�6�9�/�%�)�,�0�8�'�"�$�!�*�1�%�'�9�)�0�)�)�)�*�;�2�.�3�4�2�0�-�$�+�/�5�&�2�#�)�0�#�;�2�/�,�8�8�3�/�8�3�6�0��1�6�"�-�6�+�0�׀Ӏ׀ۀــ܀Ӏ׀ŀπڀڀڀ؀ҀҀڀрӀـՀՀׁ1�5�6�2�.�,�$�'�3�6�.�.�,�-�-�/�:�5�3�6�0�0�,�2�#�%��/�$�3�,�4�4�1�+�5��,�1�+�1�3�.�B�9�/�*�.�7�0�6�2�#��#�/�#�0�1�/�(� �)�1�&�(�:�4�/�,�4�3�(�-�-�+�'�7�/�(�7�-�7��4�%�)�1�.��!�'�#�8�6�3��:�0�)�2�(�/�/�6�'�1�*�6�7�+�*�*�%�&�'�.�-�+�+�)�)�"�(�@�7�0�*�)�.�&�"�!�<�,�,�,�/�5�/� �1�5�$�'�&�/�,�'��&�0�)�+�(�9�6�)�%�-�"�'�)��4� �.�4�#�#�!�-�1�*�$�6� �*�/�*�)�2�7�/�"�%�%�'�,�$�&�/�0�3�5�3�(�,�&�/�<�(�5�>�&�-�'�0�6�+�)�*�(�'�,�+�5�0�(�'�-��!�)�2�$�)�'�(�-�0�3�5�(�1�%�'�/�'�6�1�3�-�&�'��1��#�$�)�0�1�1�8��2��.�$�6��/�%�'�*�/�'�&�4�*�,�7�0�*�'�(�0�1��*�7�3�*��*�-� �<�3�2�*�3�+��+�-�6�#�4�+�'�2�%�+�/��+�'�8�3�.�'�-�5�:�4� �+�)��(�)�-��(�,��(�5�-�*�0�'�*�,��&�,�&� �'�+�)�#�5�/�;�*�)�)�/�7�8�)�/�4�0�7�"�1�+��(�9��%�%�.�/�*�.�*�)��9�:�(�/�)�/�(�-�.��-�"�9�5�1�&�4�!�6�)�;�-�(�$�+�/��$�+�-�&�1�/�,�%�'�3�0�*�4�3�*�3�'� �%�%�-�3�)�'�/�%�"�+�.�9�/�%�!�/�!�.�+�5�(�.�-�+�/�.�-�-�2�(�+�3�*�.�)�1�'�,�,�-�-�&�3�*��-�1�1��%�0�5�'�,�$�-�(�!�0�#�!�-�)�9��2�.�)�7�"�&�2�#�.�.�0�2�"�$�.�-�8�0�"�,�+�)�*�)�5�-�1�׀րрԀրՀԀӀԀǀـՀ̀րՀڀ׀ր݀րـ׀Ҁׁ/��&�)�/�.�6�#�+�-�=�0�*�2�)�0�=�8�1�/�)�7�'�3�2�-�2�,�+�)�&�&�$�3�1�#�1�-�&�)�%��$�/�-�+�#�!�$�3�-�(�,�0�)�%��+�4�'�$�1�"�(�/�2�-�0�8�6�<�8�"�$�%�+�-�)�8�0�+�*�?�.�1�2�"�'�+�+�/�(�.�.�,�4�4�&�1��(�0�;�0�3�'�1�/�'�M�1�-�3�0�(�0�(�%�0�%�,�+�#�'�7�/�'�!�*�0�/�'�&�(�0�(�7�-�.�$�:�,�<�%�.�,�1� �'�1�'�)�(�&�:�+�+�1�*�+�2�/�2�%�)�1��&�4�;�5�'�1�9�'�-�)�.�2�8�8�+�+�0�.�'�+�(�'�2�*�$�2�(��)�/�2�/�-�/�.�-�2�0��3�7�/�.�7�.�'�)�,�'�0�$�6�%�(�5�4�(�#�,��.�2�"�"�+�3�-�%�8�6�-�)�*�+�(�+�!�#�(�)�(�'�*�4�0�)�&��%�(�"�+�-�5�*�,�.�0�(�/�)�5�&�!�)�*�,�'�+�(�%�'�$�;�*�%�-�+�&�/��3�!�+�%�+� �)�/�)�,�0�,�8�4�/�.�/�<�'�+�#�*�'�/�"�!�/�&�,�*�1�,�#�%�/�1�3�7�=�8�0�4�2�*�9�$�8�)�,�)�1�8�0�.�,�3�(�&�+�-�(�+�*�-�)�3�4�5�1�/�*�-�/�4�/�)�.�)�)�0�*�%�5�+�.�-�#� �+�&�0�#�.�#�,�9�'�!�/�0�%� �)�)�/�+�&�*�1�%�,�,�,�'�%�!�(�8�8�>��(�$�&�1�+�$� �"�3�-�4��)�-�>�"� �*�'�-�3�5�*�,��*�$�"�.��)�3�)�%�'�3��*�2�1�*�%�;��,�"�*�'�(�*�.�3�1�)�-�"�&�@�&�A�-�.�,�)�0�&�+�0�;�&�%�:�$�4�%�/�,�.�-�%��%�.�0�1�#�:�,�'� �%�0�:�3�0�*�%�0�6�0�8� �4�؀ڀրր׀ր؀׀ҀĀԀԀՀՀԀ؀րՀ؀؀׀ۀ؀ԁ&�;��0�-�2�%�6�(�$�"�%�'�3�1�*�)�1�6�5�+�-�8�2�&�&�.�-�,�<��$�8�%�0�;�&�1��6�4�+� �,�%�0�%�,�/�)�0� �2� �3�$�2�0�'�.�+�0�7�$�.�$�-�-�"�'�8�"�*�.�,�8�4�*�*�+�2�)�#�3�*�$�2�+�*�'�,�0�.�"�5�3�-��1�1�/�1�'�+�)�2�&�-�$�.�:�1�)�&�-�1�9�;�!�'�&� �7�'��*�,�,�*�:�%�.�.�%�7�(�%�"�)�,�$�'�'�-�"�-�'�.�/�7�3�'�3�$�*�'�1�+� ��6�#�+�6�'�'�-�*�'�%�/�%�&�1�5�.�/�3�"�#�#�&�1�.�,�.�'�,�*�$�%�!�*�%�$�)�/�*�*�%�'�+�&�%�-�3�(�!��1�#�$�"�1�*�/�-�)�'�8�4�9�/�4�+�)�>��(�-�4�0�'�;�/�%�)�<�-�3�"�5�/�/�)�"�+��'�4�(�5�-�7�(�.�,�-�6�.�(��,�&�(�)� �*�*�2�3�"�/�0�3�'�3� �-�.�.�/�'�)�*�%�6�8�6��'�*�.�4�4�(�'�2�0�:�)�%�!�3�'�-�+�7�$�'�5�4�7�-�%�(�0�0�-�,�,�+�3�'�)�9�%�/�/�0�+�,�*�&��-�1�3�/�(�?�#�*�%�'�-�,�*� �'�+�8�"�.�-�*�6�0�@�/�,�,�.�+� �&�%�*�2�/�1�'�-�"�-�4�8�1�2�*�-�*�+�5�+�4�"�.�5�'�-�%�*�/�3�!�'�0�)�*�+�*�+�1�/�.�,�&�'�/�.�'�3�0�.��+�;�#�2�#�9�4�$�)�<��/�+�%�-�'�-�,�,�1�'�.�'�(�(�+�0�(�"�.�,�)�0�$�5�3�(�1�'�7��+�2�0�*�%�$�,�3�)�"�8�*�&�)�(�*�'�4�%�0�.�>�*�&�1�*�(��2�3�(�7�3�-�1�:�)�*�+�%�8�&�1�,�%�-��-�-�>�)�;�3�+�5�Հ؀ۀ׀ր׀׀׀׀ʀހـՀԀـԀـԀـӀ؀׀Հ؁-�9�(�'�.�1�.�+�-�)�?�0�'�;�/�/�$�)�&�0�6��/�'�0�-�9�+�&�4�'�:�'�-�+�-�#�0�/�,�0�*�)�)��#�.�3�2�)�,�#�/�3�)�+�%�6�/��.�0�:�#�4�-�6�)�6�0�7�5�,�*�1�9�$�%�)�$�,�6�7�.�9�/�3�0�,�*�7�*�-�-��4�#�0�)�*�+�)�&�/�$�3�-�� �(�1�+�'�+�0�)�,�1�&�1�&�!�/�%�&�3�'�2�)�7�*�.�*�4�$�-�$�/�2�8�2�!�>�4�'�&�)�1�*��-�4�'�/�&�&�0�-�*�)�(�1�0�%�-�4�&�5�3�(�-�!�.�*�/�8��)�/�7�*�+�0�/�,�+�+�&�"�)�%�1�(�-�6�3�*�0�$�=�!�6�-�3�6�*�!�-�-�1�*�/�+�&�'�0�"�*�/�"�)�!�.�.�+�'�)�,�#�/�4�3�0�-�'�(�'�6�/�&�#�)�)�+�$�)�5�+��7�-�,�#�.�&�!�%�!��3�'�&�9�'�3�+��+�1�&�-�)� ��!�1�*�/� �-�1�8�#��-�+��.�.��3�+�=�/�-��%�9�&�-�4��-�0�'�!�@�(�8�2�2�'� �'�;�3�*�0�1�*�.�(�+�%�,�-�7�(� �&�.�'�"�(�>�+�/�.�8�3�B�&�'�8�/�,�5�,�3�*�&�(�)�(�#�#�*�3��0�'�$�3�+�)�!�.�(�*�(�/�(�%�8�7�2�1�-�/�(�/�$�6�)�$� �'�"��*�(�7�'�+��$�%�!�$�(�+�1�7�-�-�#�<��4�<�"�'�1�2�*�� �-�*� �)�'�%�*�+�+�"�'��/�0�:�9�(�'�4�%�$�,�3�)�:� �*�0�'�%�)�)�+�(�+�.�5�)�(�(�,�*�$�/�/�)�,�&�4�<�-�0�1��'�.�1�+�-�0�/�.�5�;�%�3�%�+�*�3�/�+�6�2�9�#�-�,�7�&�4�0�@�/�+�)�5�<�-�5�:�/�+�*�*�ԀԀ׀ۀ׀ՀրՀӀɀՀԀӀԀԀ׀׀ՀՀӀ׀ӀՀӁ5�,�'�G�$�+�1�*�/�)��1�4�-�'�&� �)��<�.�A�0�3�6�,�+�)�*�%�-�)�3�3�.�+�9�)�3�3�4�7�)�$�%�(�*� �#�1�)�5�*�;�7�)�+�*�'�*� �0�-��-�$�(�&�&�9�+�-�)�3�'�2�1�2�,�*�&�(�%�3�+�/�+�-�/�/�(��'�"�-�/�.�,�(�)�%�0�(�3�"�1�/�� �"�"�,�#�!�'�$�'�3�2�3�(�,�;�.�.�*�,�0�&�&�+�#�8�'�+�'�%�%�/�%�!�2�0�-�&�4�+�/�,��;�*�0�!�'�)�.�&��3�'�*�$�,�4�,�&�$�7�2�;�0�3�&�$�#�'�%�:�'�0�(�;�0�,�/�.�3�#�2�;�-�)�<�(�1�2�4��8�#�2�#�'�9�.�3�&�'�/�*�1�0�%�)�7�)�/�2�)�&�/�-�/�8�3�*�9�*�$�5�.�)�+�.�-�%�#�!�,�'�(�0�/� �,�!�9�(�3�3�'�*���/�"�4�)�&�2�-�+�+�2�-�#�+�+�(�*�'�3�(�/�6�'�(�(�/�!�-�2�/�(�(�,�%�1�,�)�*�$�3�6�+�/�"�2�/�6�2�:�4�-�&�1�)�&�%�4�7�-�!�+�*�*�7�/�'�3�.�/�,�5�0�&�-�)� �6�+�(�6�/�/�(�+�0�/�+�<�-�'�7�)�*�1�-�)�/�1�3�4�.�.�%�,�/�.�$�/� �'�(�,�7�*�8�$�/�9�4�3�/�1�/�0�*�1�*�-�#�0�/�1�7�'�1�!�1� �1�'�4�7�4�(�#�)�'�2�%�&�5�/�.��!�.�:�.�"��)�%�)�*�-�'�(�-�'�$�3�#�/�)�'�(�-�!�*�$�+��+� �)�/�$�"�7�,�8�.�,�;�7�%�*�/�1� ��%�2�(�1�!�5�.�$�;�-�,�%�"�6�/�"�/�/� �*�0�+�'�5�5�/�.�*��9�+�.�0�&�3�6�+�*�&�)�5�*�%�5�3�,�.�5�,�&�&�.�%�2�/�'�8�րڀـ؀׀׀Ҁ׀ՀʀӀـ׀Ӏ��Ҁ؀׀ــՀҀՀՁ(�6�7�'�%�;�,�)�-�3�-�#�-�'�1�*�!�&�9�%�.�4�%�4�,�)�)�%�)�/�4�5�%�3�(�,�'�2�.�6�$�.�>�&�'�0�#��,�(�,�3�1�$����-�,�;�2�0�5�1�1�(�/�-�"�3�*��-�,�/�,�'�'�4�2�7�/�*�5��/�*�9�0�*�/�(�7�6�.�/�#�*�/�,�.�4�)�(�%�;�#�,�+�0��$��=�;�&��*�+�*�>�'�.�%�?�&��#�!�2�4�(�+�(�-�3�7��2�(�+�*�)�*�.�:�0�0��-�3�%�)�(�)�)�0�'�+�*�0�&�0�6��2���6�'�(�!�-�#�'�3�-�3�-�,�'�+�+�(�/�'�-�/�4�%�:�)�4�(�*�,�5�2�7�"�)�(�)�/�*�.�/�-�7�/�*�*�*�*�/�-�#�2�2�*�2�&�6�/�(�+�1�/�4�3�2�3�$�'�#�$��9�+�)�!�(�(�/�+�-�-�#�-�+�*�-�%�(�5�1�)�$�5�)�6�/�%�2�1�*�,�'�'�1�+�%�1�0�.�1�4�+�1�(� �:�-�5�1�(�)�)�0� �'�1�2�1�)�5�0�/�0�(�?�/�)� �.�1�5�1�*�)�-�)�&�'�+�6�(�3�:��$�3�1�#�/�7�,��1�(� �#�2�-�#�$�0�-�,�5�,�'�*�0�'�:�!�&�)�!�2�/� �0�6�.�.�#� �.�0�.�5�+�5�=�)�(�5�)�0�4�7�&�(�+�+�0�.�%��#�.��-�9�!�*�,�5�+�1�:�'�6�$�-�)��0�1�)�0�.�#�.�,�-�6�"�+�*�/�,�-�/�2�(�6�+�>�(�8�&�/�+�6�<�4�,�5�-�4�+�'�-� �0�1�&� �$��1�#�-�)�2�/�'�2�3�+�7�/�'�.�-�$�'�#�3�1�$�5�/�1�0�<�*�(�.�2�0�$�*�:�'�/�!�2�9�'�!�4�"�/�1�0�'�!�&�+�,�:�2�*�$�/�1�.�0�3�(�5��,�.�-�-�,�5�րڀրЀՀՀՀրԀŀۀԀ׀Ӏ׀րҀԀրԀՀ׀Ҁ؁3�-�.�)�*�5�%�7�;�<�A�5�0�2�)�.�1�'�.�/�2�/�%�0�%�*��!�*�#�,�.�.�(�(�+�&�&�(�3�4��4�0�)�,�,�1�0�.�#�+�)�/�'�/�'�2�*�+�/�'�,�'�2�/�+�3�"�,�&��(�#�$�0�0�3�)�+�/�0�5�,�5�-�$�-�;�7�1�,�(�)� �4�0�1�#�:�*�'�2�'�-�.�)�2�1�4�+�%�,�-�,�'�(�+�"��%�1�-�/�.�2�1�'�3�*�'�-�)�*�%�+�(�3�;�5�#�:�3�$�/�-�%�/�:�.�*�-�.�"�1�3�)�.�*�+�$�8�3�"�3�&�8�1�%�-�/�8�)�&�>�,� �>�.�2�-�*�0�7�9�!�0�+�%�/�(�&�0�%�&��1�)�,�+�1�-�/�#�;�%�#�1�6�6�5�+�,�,�)�)�+�.�0�)�%�(�*�%�&�'�3�+�'�(�/�.�(�%�.�(�+�!�+�2�1�-�+�+�"�$�*�(�1�0�-�.�$�,��.�,�1�#�/�6�/�)�*�!�+�/�#�7�)�(��&�,�7���"�&�5�,�&�+�(�3�%�3�(�+�*�4�0�*�&�,�5�+�/�.�9�.�-�:�+�'�1�6�&�+�$�2�4�>�-�3�6�0�/�9�.�=�2�*��+�2�4�.�%�&�)� �1�<�%�"�/��+�/��2�/�8�;�-�&�,�5�9�*�*�2�4�-�'�*�0�+�+�2�0�6�"�#�/�1�,�&�/�+�$�.�+�/�-�#�(�:�<�)�#�0�.�+��$�*�3�0�&�%�-�'�.�+�4�+�.�*�2�5�,�(�7�&�0�8�%��!�8�2�2�+�-�+�+�5�)�8��7�-�'�=�8�0�.�7�,�&�+�6�"�*�+�+��$�)�'�&�)��#�3�3�3� �*�*�2�-�(�/�5�.�8�)�'�,�'�:�,�'�/�3�+�#�5�-� �&�+�(�"�/�.�.�'�-�+�$�9�.�3�!�(�<�&�(�3�%�/�+�!�5�1�(�0�3�+�3�8�-�,�0�>�/�$�-�ԀӀڀր׀Հڀ׀րȀҀ؀ЀՀՀҀ׀Հ؀րԀـԀҁ/�.�4�(��$�$�1�7�/�5�'�'�;�+�0�7�.�1�:�*�$�4�,�1�%�C�&�!�7�9�+�-�5�*�7�$�+�.�'�,�,�7�+�-�$�;�/�!�#�$�5�3�&�%��1�$�"�/��7�.�5��+�,�1�$�-�&�/�7�)�*�0�/�'�'�-�.�6� �6�.�)�#�,�#�2�*�,�/�(�,�#�2�)�(�#�.�)�(�0�2�/�%�1�)�.�*�$�1��:�2�5�-�1�9�6�0�1�)�#�'�+�,�+�+�2�2�-�,�6�-��/�3�/�%�,�9�-�3�)�%�*�-�"�,�3�,�1�(�2�'�-�&�-�,�1�%��)�8�*�4�(�;� �&�+�:�-�)�,�(�'�*�1��1�*�&��5�&�:�"�)�#�'�)�$�4�0�(�4�+�7�/�)�6�1�4�2�0�%�*�+�(�)�,�'�8�,�2�$�4�(�5��$�%�)�&�>�4�%�1�/�3�/�+�1�"�(�-�.�,�8�%�+�2� ��$�$�%�-�+�+�/�!�*�'�(�2�&�)�+�3�&�)�+�(��.�-�'�1�3�#�*�$�;�:�0�+�$�%�=�3�0�(�E�+�*�/�(�3�)�/�)�2�$��)�5�'�0�+�-�0�-�'�*�'�-�$�/�'�7�&�2�.�7�.�2�/�(�1�4�-�#�4�)�2�"�&�-�7�0�;�#�+�,�)�+�5�$�-�0�7��1�3�-�/�.�8�'�/�%�!�%�,�*�,�<�.�+��+�=�$�.�2�4�)�0�3�!�1���"�)�4�'�%�4�:�)�$�)�0��'�'�'�'�9�-�&�-�(�7�,�1�/�(� ��'�$�,�/�/�*� �5�(�(�%�(�/�,�-��1�*�.�+�*�/�$�/�%�/�1�(�&�"��+�-�'�1�'�*�4�'�+�*�-�*�)�0�1�)�!�#�#�!�&�/�3�*�/�6�'��*�7�.�.�$�*�)�/�'�-�'�/�2�"�6�1�-�%�0�7� �"� �%�&�8�4�2�*�+�/�!�&�%�)�3�6�$�8�$�+�1�0�&�'�&�$�8�Ӏ܀ـ׀ـՀӀր؀ŀՀրӀــ׀؀ڀրۀԀڀӀׁ#�)�.�&�:�!�-�8�,�*�'�.�.�%� �*�(�&�6��/�'�/�1�'�4�4�,�)�+�%�1�/�,�)�.�)�-��8�1�*�(�,�.�'�4�,�+�1�3�+�7�)��3�1�0��'�)�/�/�0�%�*�"�5�1�3�4�.�;�)�/�-�'�"�9�/�2�+�3�7�4�(�,�'�0�)�0�5��$�1�"�)�+�.�0�2�+�%�1�7�0�$�(�"�8�!�%�%�+�.�*�,�/�2�0�(�,�.�#�2�'�,�0�-�,�+�1�$�&�4�/�"�)�,�$�0�7�1�*�*�'�:�'��1�&�&�2�/�/�!�)�1�%� �,�$�$�-��(�&�2�'�8�"�%�1�'�.�.�"�.�+�'�*�4�1�4�)�+�/�/�+�)�1�.�+�/�&�!�'�&�/�/�4�0�(� �.�'�#�+�*�&�&��;�(�-�%�-�*�(�%�&�3�,�2�1��0�)�-�+�2�=�2�0�#�"�'�4�'�-�#�.�+�#�4�)�%�.�6�,�)�3�3�.�/�/�+�-�2�-�9�+�$�$�?�*�%�.�*�-�)�7�/�3�#�+�1�(�+�&�5�+�4�$�/�#�-�5�6�7�'�5�"�/�*�/�/�'�'�'�;�,�=�-�/�%�-�.�2�2�*�'�#�)�+�"�2�;�3�)�+�$�*��0�*�6�A�)�'�*�!�+�"�#�#�/�@�#��#�3�4�5�&�%�+�/�#�>�-�)��-�,�.�%�2�)�-�-��#�)�(�1�,�2�5�*�,�/�/�-�+�%�/�0�2�&��?�1�4�)�-�%�-�3� � �%�1�8�1�1�0�+�$�!�5�)�1�;�.�&�6�(�.�9�2�/��)�2�4�/�3�-�"�*�,�/�;�(�&�)�:�4�,�,�1�"�,�$�.�;�-�-�-�C�'�#�1�$�*�$�5�/�)��3�+�%�/�$�1�'�2�1�1�%�#�2� �(�5��7�'�1�-�7�!�A�3�2�6�5��3�/�?�+�'�.�+�.�/��/�$�/�*�*�6�(�2�(�$�@�*�&�,�2�-�,�3�1�-�/�%�Ԁր׀ӀՀ؀Հ׀؀̀׀܀рՀԀӀЀπڀՀ׀ՀԀց@�4�6�+�'�,�3�-�4�4�3�/�6�&��!�:�'��2�8�1�.�/�!�,�5�7�,��)�.�6�-�2�>�3�<�+�%�8�+��/�0�1�-�>�5�6�#�)�.��>��(�7�(�&�1�+�2�*�-�'�"��,�%�(�*�7�3�,����.�.�&�1�'�/�*�*�"�%�(�'�+�/�*�(�'�9�1�(�$�*��-�2�2�,�)�4�'�%�-�3�(�-�&�/�.�"�/�*�/�"�*�5�2�(�'�0�1�,� �+��*� �%�'�3�3�'�3�2��.��+�,�)�-�6�+�<�.�#�5��(�)�+�>��+�3�4�/�0�-�)�>�5�5�+�#�1�$�6�-�8�6�,�(�)�3��!�&�=�5�+�5�)�"�+��%�7�(�1�$�2�"�6�9�(�1�1�-�:�2�6�!��.�<�-�/�0�4��&�(�%�,�&�*�-�-��%�1�)� �*�.�/�)�)�*�'�/�+�1�*�!�+�*�,�'�-�0�$�;�%�/�%�-�$�'�*�+�$�4�%�"�+�.�+�5�*�*�2�0�,�1�/�/�)�0�.�3�5�$�"�!�<�2�4�-�0�0�2�$�$�$�*�!���/�+�0�/�/�+�+�0�(�'�'�/�'�7�+�,�)�.�(�6�#�+�,�%�7�,� �8�!�#�,�1�6�5�-�@�/�-�4�%�!�1�5�5�"�*�'�*�:�.�.�'�1�+�%�6�8�.�'�$�(�"�/�,�(�4�,�!�,�2��0�:�(�/�)�)�+�9�'�1�7�#�2�4��%�-�+�1�#�?�1�'�-�0�.�-�/�)�9�)�4�2�*�.�)�&�(�7�!�1�.�3�4�-�/�+�1�,�/�$�4�,�)�.�*�/�6�*�-�3�!�$�3�*�2�(�+�-�%�+�3�&�'�0�=�/�5�/�'�$�6�0�.�0�1�0��*�-�)�#�-�+�/�(�9�*�,�7�,�:�%�+�&�)�/�5�;�0�3�2�/�$�3�6�;�5�;�5�'�3�(�'�'�,�/�2�,�:�/�9�:�.�=�1�1�2�(�*�$�2�1�&�ԀԀ؀ԀԀ؀рӀՀŀـԀЀՀԀՀ׀Ԁ׀Ѐ؀؀рӁ5�9�1�3�3�'�2�?�)��-�*�3�-�5�0�7�0�%�/�0�5�*�*�3�'�'�=�,�+�*�7�%�%�+�-�!� �8�2��1�*�*�3�(�-�'�5�3�/�%�(�%�7�'�/�3�$�2�8�(��5�>�E�"�)�'�/�#�.�(�-�*�+�,�*�.�%�2� �!� �$�/�#�4�,�(�.�*�1�.�!�-�:�)�=�*�,�0�0�(�0�)�4�.�)�-�*�'�(�$�)�&�4��*�+�'�+�1�4��+�6�<�+�)��2�"�3�*�0�/�-�#�7�%� �)�5�#�:�/�+�+�/�>�5�.�/�,�7�2�0�-�5�1�+�1�!�7�/�"��*�%�&�.�+�+�1�*�0�+�%�3�!�,�#��+�0� �+�%��'�%�7�5�(�0�,�,�#�.�/�.�*���&�#�$�#�;��%�/�&�&�3�'�5�&��F�1�'�*�%�-�1�/�&�4�*�/�1�)��2�0�2�(�)�+�1�*�4�/��)�,�&�0�1�*�&�1�-�)�1�*�/�+�7�2�%�3�1�-�5�,�C�-�1�-�8�.�%�4�'�0�/�A�?�9�+�<�7�)�/�*�1�+�)�%�'�-�:�2�0�,�*�9�4�(�/�.�!�/�.�-�/�*�.�/�&�-�:�+�'��'�)�'�*� �)�<�&�#�3�,�#�,�5�-�$�-�,�>�&� �1�0�+�*�9�)�0�1�/�3�6�$�+�6�/�+�%�(�.��.�+�.�$�&�1��$�/�.�/�+�&�*�2�'�+�"�(�9�1�+�%�0�2�,�)�-�*�(�/�)� �3�.�3�+�2�.�$�=�7�(�(�.�/�3�$�4�*�%�-�%�%�*�*�5�� �+�'�-�(�/�0��9�/�6�.�-�1�,�'�.�:�(�.�-�4�1�&�5�$�-�3�0�'�,�5�%�*�,�,�)�*�3�1�4�3�2�8�)�(� �/�-�1� �(�)�4�5�0�%�5�0�$�!�/�!�5�0�.�0�)�+�)�4�5�'�&�;�1�5�7�&�0�+�1�;�&�2�.�-�6�%�'�)�$�(�7�/�рԀՀڀՀԀЀՀӀĀӀԀӀ؀րр׀׀Ԁрր׀րՁ-�-�4�*�+�$�.�-� �3�1�;�,�5�&�2�&�'�*�0�3�,��+�/�'�'�0�.�&�1�$�7�6�)�1�*�'�,�2�+�/�%�3�%�*�"�)�)�+�5�.�(�"�)�7�4�%�+�'�'�3�'�&�2�.�&�/�-�,�+�3�&�6�3�)�4�-�(�1�/�4�3�"�2�/�2�9�"�(�0�#�:�%�8�.�3�'�9�7�1�0�,�*�8�-��+�*� �#�4�(�8� �-�3�-��5�-��.��4�+�0�'�1�"�(�(�/��-�6�.�(�/�&�)�/�2�:� � �/�.�1�(�2�)�/�0�"�1�$�(�&�-�4�4�,�.�%�+�'�&�3�0�-�2�.�+�7�!�+�$�2��)�.���5�#�(�1�%�#�.�,�)�*�-�-�,�.�/��1�&�1�(�,�-�0�.�(�$�9�,�2�1�$�)�!�*�/�4�*�.�-�+�-�:�'�&�3�)�(�-�-�/�(�7�)�2�0�0�"�(�1�/��/�-�"�2�%�9�1�/�3�2�/�'�:�(��5�)�2�)�-�$�.�'�6�-�2�)�#�;�'�4�-�+�6�+�)�'�*�*�0�/�1�%�&�3��-� �'�4�+�2��&�)��*�+� �3�#�.�&�3�.�$�$�2��5��!�4�'�?�'�;�-�%�$�1�%�'�B�#�9�*�0�1�1�$��9�2�.�(�.�3�-�2�%�.�.�.�6�0�0�*�(�+�8�8�3�*�)�+�+�1�8�(�+�&�3�1�8�2�:�)�'�.��0�*��*�4�'��&�%�/�0�/�*�,�(�6�/�)�0�$�0�)�/�!�*�'�,�6�$�=�1�4�&�)�)�1�6�)�0�4�/�/�$�0�7�*�)�"��-�/�-�6�.�)�4�(�#�/�;� ��5�1�&�&�3�%�,�0�-�0�+�5�0�.�*�"�4�+�2�)�5�)�3�.�'�/�*��3�&�,�/�-�4�*�&�(�.�(��%�(�/�,�0�-�(�3��-�3�+�7�(�#�9�7�E�'�+�/�3�&�3�2�>�/�-�,�-�&�)�+�/�րЀڀـрր׀Ԁր��܀ր؀ԀԀր׀Հ׀؀׀؀Հс.�.�3�.�,�6�)�-�,�.�5�.�$�"�(�(� �>�/�)�;�1�)�&�(�.�(�/�8�'�3�-�:�-�+�8�0�/�7�*�2�5�-�*�#�%�1�.�,�'�4�%�)�(�%�0�,�#�-�6�/�-�'�)�)�+�#�-�/�0�,�&�)�)�4�1�+�/�%�&�(�'�,�1�(�-�8�+�<�,�#�$�<�2�)�+�.�'��'��.�'�2�0�%�'��'� �(�-�.�,�)�,�1�.�3�)�8�3�(�8�9���/�-�.�+�.�3�%�+�/�/�4�3�/�/�-�'�6�+�1�7�� �/�1�/�1�1�7�'�7�4�2�1�'�"�%�'�/�-�2�2�.�2�9�+�3�-�/�#�.�9�,�#�&�3� �"�5�*��8�4�-��1�5�0�(�'�&�'�(�(�%�+�(�&�+�#�,�*�.�1�.�,�0�3�&�+�0��0�(�-�4�/�#�#�,�6�*�(�4�3�2�(�$�7�+�3�,�#�-�'�(�:�6�1�9�0�!�'�?�7�"�/�(��3�*�-�$�!�0�,��$��,�0�7��$�.�4�.�,�)�!�'��(�(�#�/��2�0�2�/�-�-�,�0�7�5�3�+�*�0�7�*�+�'�-�'�+�5�4�+�,�#�%�(�/�&�)�-�'�.�*�)�/�,�1�1�&�$�0�5�)�"�>�+�1�6�.�4�+�0�-�;�:�(�4�3�'�.�<��-�+��&�0�)�'�4�,� �;�+�=�$�4�"�/� �+�;�'�(�/�*�-�*�9�3�8� �%�3�'�/�#�)� �3�#�3�/�0�%�8�$�$�1�!�/�0�6�:�0�-�'�&�*�)�2�(�*�+�1�,�'�'� �0�)�0�,�&�2�0�0�5�#�!�.�2�3�0��6�#�.�,�)�6�*�,�/�(�5��2�!�)�#�)�7�4�0�'�6��1� ��+�4�-�5�4�(�,�'�:�+�'�)�,�+�+�#�0�2�+�+��*�-�!�3�(�"�)�+�1�-�*�-�,�'�/�/�)�:�9�+�?�-�3�%�/�4�,�,�)�*� �*�0��&�؀ՀـӀӀҀԀր׀ǀՀр؀րӀـҀրҀ؀Ӏ؀Ԁԁ6�*�"�,�)�:�(�1�8�5�.�+�>�!�/�+�/�.�$�0�.�0�(�,�.�%�6�*�3�.�1�3�1�-�.�/�-�'�9�$�-�3�6�%�#�0�,�.�)�.�0�0�"�.��(�6�,�+�)�1�0�8�!�1�7�4�1�1�%�$�=��'�5�1�+�1�2�2�0�(�$�$�#�&�%�4�$�+�3�/�8�'�0�.�%�#�0�+�"�0�*�8�*�%�&�6�*�#�;�+�*�%�'�$�'�,�%�"��/�+�(�7�3�,�:�$�.�-�'�(�1�,�)�7�2�4�/�1�/�"�-�4�0��-�)�9�>�%�3�7�%�<�,�)�*�)�"�3�.�$�+�.�-�7�/�7�5�2�)�*�4�1�&�)�%�=�-�+�+�$�4�3�,�8�)�.�4�.�#�*� �0�$�2�*�4�&�&�+�,�$�*�"�$�%�)�6�,�/�+�'�*�1�#�-�+�)�)��/�8�0�$�,��2�$�+�+�7�1�(�(�0�3�(�2�=�,�8�,� �#�-�8�(�(�5�+�+�%�2�.�:�/�"���*�7�#�+�+�,�8�'�/� �*�(�-�$�'�<�#�1�%�5�,�;�;�+�-�6�#�'�3�/�#�/�%�#�3�,�$�6�;�(�;�,�5�*�0�4�/�&�/�*�(�%�3�#�5�(�0�5�1�0�$�/�2�,�%�)� �'�*�2�+�%�"�$�-�%�,�2�/�2��=�#�1�$�/�7�1�2�9�6�)�+�/�5��/�)�+�/�-�9�+�8�'�$�3�1�2�'�*�#�.�6�)�'�-�*�#�3�=�/�3�!�,�*�1�.�1��3�)�1�$�(�+�+�)�+�)�1�*�%�'�&�&�/�-�/�,�%�/�+��5�?�)�-�*�*�2�+��)�$�+�/�-�,�/�3�0�0�&� �1�(�/�%�2�/�%�'�,�,�9�2�.�2�-�(�0�-�*�+�6�%�9�(�;�&�5�+�&�&�3�+�%�%�2�.�3�2�*�&�2�,�?�7�7�+�7�1�%�#�+�'�3�+�-�/�*�4�+�;�'�0�=�.�+�$�%�.�/�/�3�2�1�7�/�ۀ׀ӀՀـԀՀ؀׀ȀӀـ؀ր݀Ԁـр׀Ҁր؀Ԁ؁/�&�9�1�-�6�/�0�*�.�$�-�(�?�/�'�+�'�/�#�3�6�)�3�*�,�3��(�%�0�.�.�-�-�/��/�(�7�#��3� �4�*�0��2�+�1�1�4�!�'�&�$�0�/�5�4� �:�'�$�.�-�$�-�,�+��3�/�,�5�#�0� �0�2�'�'�6��+�/�-�4�(�+�+�3�/�4�.�&�3�'�(�-�'�(�*�+�#�:�-�"�"�0�0��&�(�#�*� �'�7�&�,��/�'�>�"�0�9�2�/� �.�)�,�-�3�3�"�,�%�1�(�)�.��9�-�,�+�*�)�#�(�%� �+�#�.�-�4�!�)�(�'�*�2���,�$�0�/�/�$�*�1�)�3�-�#�5�+�,�(�-�+��+�!�%�*�(�4�)�.�%�1��2�-�-�"�'�'�/�/�6�)�/�,�)�-�6�3�+�0�.�3�/�+�3�7�,�.�9�3��"�(�0�'�3�)�/�5�4�'�-�!�1�*�/�+�,�)�$�+�%�&�/�0�/�)�@�.�+�*�'�-�'�:�.�)�3�,�2�%�%�.�.�/�;�3�#�*��,�#��$�%�+�'�9�1�.�4�)�+�/�&�1�=�+�(�/�,�-�1�(�)�2�/��=�-�%�/�,�+�)�!�/�(�9�'�/�7�*�.�,�*�-�&�.�2�1�(�'��4�1�%�0�!���0�-�(�5�/�%�+�#�/�*�*�.�.�2�"�-�1�-�*�3�0�3�3��7�8�)�7�5�'�7�1�2�,�%�5�*�)�4�2�"�2�/�/�3�;�%�'�&�(�1�(�*�,�2�+�6�;�)�)�-� �'��!�&�5�1�/�*�3��(�2�+�1�3�(�,�"�9�+�/�.��"�$�/�-�%�(�/�!��'�$�'�(�-�6�3�4�7�-�4�0�7�7�/�+�6�,�!�6�!�.�0�0�;�2�#�*�.�#�&�9�)�(�)�8�,�*�0�*�6�7�%�%�>� �*�6�,�7�1�(�2�7�&�#�1�(�0�?�-�.�'�$�#�(�7�"�%�8�/��/�/�7�8�,�'�9�$�ЀրՀ׀ۀ؀ۀڀӀˀ׀рـԀՀրڀ׀Ԁ׀׀ՀӀҁ/�6�1�+�.�:�6�+�1�/�1�4�2�)�1�+�'�/�!�0�/�3�-�0�4�+�/�6�:�*�/�'�%�)�"�3�,�*�,�2�D�)�1�*�-�+�*�*�@�!�%�2�1�,�/�>�2�2�2�7�'�3�/�)� �%�6�-�6�#�1�+�)�4�+�0�!�5�&�+�%�2�&� �5�/�:�)�+�+�'�*�)�$�.�(� �*�#�$�$�/�/�!�0�8�%�#��.�!�2�4�7�/�6�)�#�/�.�#�.�*�1�'�'�*�*�-�2�*�"�6�*�%�2�5�-�C�2�'�+�-�)� �.�)�(�7�+�1��,��/�+�&�*�-�0�0�$�.�4�)�%�'�*�"�:�'�*�.�8�*�,�#�-�-�'�.�0�-�'�(�1��&�3�)�,�.�3�7�3�/��*�)�'�&�5�*�)�0�)�"�$�5�)�+�)�,�5�*�(�)�*�5�%�,�5�$�*�+�*�,�3�)�'�/��3�2�)�-�#�/�+�"�7�/�/�!�)�2�,�#�.�!�7�/�,�6�3�$�*�-�7�)�0�,�1�'�$�/�1�+�&�%�.�-�%�"�*�(�&�3�(�-��*�6�/�'�2�3�%�)�0�5�0�/�2�1�#�2�'�&�'�&�3�-�%�/�8�*�3�-�%�"�+�.�4�/�'�%�-�-�0�#�)�2�,�'�/�$�+�#�-�#�,�$�6�'�&�*�*�'�8�.�0�)�+�)�2�-�@�1�.�0�7�/�,�9�0�/�+�4�+�1�$�+�.�"�+�"�%�6�)�,��,�,�/�-�.�$�'�'�%�$�!�2�+�.�)�"�'��+��(�%�$�/�,�"�5�/�(�1�&�/�*�0�+�#�(�.�#�+�*�+�$���1�%�=�/�'�)�(�,�4�"�.�-�7�"�#�'�,�"�)�)�,�6�5�(�.�)�#�)�+�.�/�?�0�.�9�2�%�1�+�;�2�/�(��,�)�/�+�!�2�.�/�'�.�7�*�/�1�;�7�-�1�&�4�-�2�(�"�-�%�)�.�6�%�'�*�=�,�-�2�#�0�*�1�,�-�#�'�&�6�6�/�,�.�8�؀ԀՀրր؀Ӏ׀ԀɀՀԀր؀؀Ӏ׀Ӏր؀ՀۀՀՁ/�:�<�!�*�-�!�%�*�9�2�/�@�?��0��(�9�.�)�(�+�#�&�9�,�2�-�7�)�/�/�2�/�)�1�:�6�*�.�*�'�3�6��(�+�0�"�-�%�5�2�0�2�)�+�3�(�)��#�3�'�$�3�8�.�7�+�(�*�$�.�$�)�'�7�(�$�7�#�4�*�+�%�5�'�7�2�0�(�(�%�5�+�-�#�-�-�#�,�0�)��'��*�,�'�-�?�0�6�(�!�(�.��'�6�'�3�!�!�)�+�,�!�,�%�.�,�5�(�1�3�/�3� �$�+�1�/�)�&�4�8�1�*�:��%�2�0�+�/�%�(�+�!�6�5�6�'�3�:�%�2�$�/�5�1�#�1�'�/�+�.�>�-�,�)�4�0�9�-�4�*�.�.�#�,�/�4�&�0�+�1�2�#�#�(�1�*�)�1�'�/�0�-�'�6�7�5�3�2�4�$�0�0�+�&�,�'�/�*�7�"�3�0� � �,�5�+�0�/�4�+�+��/�2�7�0�)�6�+�)�'�'�,�(�'�1�(��-�(�*�7�-�7�*�:�&�.�1�"�(�/�,�&�2�(�.�#�;�'�/�'�%�)�&� �6�6�7�"�/�3�$�/�5�%�*�.�.��$�(�+�/�/�*�/�1�(�(�1��+�5�!�7��+�%�+�#�)�.�.�!�/�*�(�'�%�5�,�-�(�.�<�>�/�1�#�2�,�%�,�3�!�0�+�/�7�4�*�4�*��(�!�#�+�#�3�1�$�-�%�'�-�0�0�3�8�%�(�/�$�-�'�+�'�-�(�,�0�+�*�"�(�1�(�/��6�/�/�4�2�.�7�&�/�-�&�2�7�+�)�%�1�%�)�+�*�8�3�@�+�(�'�)�%� �'�)�&�+�*�'�+�*�!��,�-�,�*�2�'�5�-�:�+�!�6�1�,�$�1�/�.�#�+�4�'�&�1�*��)�0�)�3�3�7�@�3�=�*�+�=�$�0�2�5�3�"�2�.�"�%�2�,�3�0��1��*�2��2��'�/�.�1�#�0�"�3�+�,�7�;�$�%�4�.�3�$�<�4�׀ր׀؀׀րԀրـȀـր׀րԀ׀׀ԀӀ׀ڀ׀؀ف/�(�.�3�)�$��3�(�1�/�,�.�.�.�)�+�,�3�6�2��+�:�1�8�3�%�4�9�9�$�"� �&�)�-�%�'�)�&�0�+�1�9�-�5�0�0�+�#� �-�!�%�-�)�1�)�#�#�1�#�6�,�9�)�-�(�3�+�,�1�2�*�"�"��)�0�*�&�/��.�'�+�+�4�?�0�*��-�/�/�"�4�0�6�.�-�#�3� �0�%�+�(�1�*�/�/�-�'��)�/�'�+�'�%��:�.��)�(�/��3�*�,�0�*�)�+�7�2�1�-�7�(�+�*�!�'�3�0�'�0�-�)�*�*�+�(�%�;�*�-�1�5�'�-�*�3�&�1�,�#�1�2�-�/�/�4��4�0�!�1�1�/�&�+�-�;�3�3�&�-�5�$�+�1�.��(�#�-�/�)�(��9�2�-�7�)�(�0�+�2�#�-�/�6�.�+�6��0�1�*�.�$�0�1�%��.�#�4�=�9�*�0�-�,�5�3�$�1�,�3�*�'�$�-�2�)�$�!�4�%�'�!�+�+�*�"�2�1�;�)�#�1�(�0�;�0�6�+�!� �+�1�3�0��&�)�(�=�#�*�/�,�+�>�4�,�'�4�.�+�/�.�0�"�8�$�9��1�-�%�+�.�/�-�*�0�*�(�-�$�-�-�*�!�5�4�)�(�.�3�9�0�)�5��%�+�/�*�<�6�*�*�!�2�2� �(�(�7��@�1�+�,�$�)�.�/�%�*�-�$�9�'�5�)�'�8�3�,�/��+�2�)�/�/�'�/�)�*�'�-�3�'�&�'�%�3�-�-�#��%�-�(�.�(��1�7�$�+�.�&�#�,�0�.���5�)�.�'�.�.�-�9� �,�/�*�(�&�/�.�'�3�'�3�$�(�$�%�1�3�1�(�/�-�5�/�(�0�,�!�2�9�-�*�/�2�.�!� �+�/�(�/�'�#�4�&�&�/�-�.�'�!�3�,�*�&�.�-�5�0�%�/� �/�(�-�/�#�-�/�&�F�4�.�-�1�.�(�7�0�'�*�5�.�;�(�'�-�+�"�;�*�-�'�:�րڀ؀ր؀р׀ՀрŀԀـԀ׀Հ׀ـӀҀ؀׀ـӀف;�"�)�.�$�-�0�9�'�"�.�'�1� �0�0�4�8�7�*�$�&�*�)�(��3�1�(�)�+�%�(�$�1�%�/�2�#�4�4�9�'�3��*�%�+�/�,�#�%�,�;�(�.�&�9�+�"�#�&�%�/�&�#�3�-�.�/�'�4�*�&�+�1�/�2�,�;�+�%��3�+�/�$�+�,�/�%�"�+�/�.�3�-�+�:�.� �3��#�)�=�"�$�4�/�)�+�0�*�4�+�.�-�<�"�0�&�'�,�-� �&�"��*�0�2�3�2��0�!�)�'�,�*�2�'�8�*�5�2��2�5�9�+�5�)�4�*�&�5�#�&�(�%�,�0�4�.�%�(�-�5�/��)�(�,�!�(�-�-�$�+�-�6�+�/�/�#�)�-�/�,�*�.�/�0�*�,�/�;�$�'�.��4�0�2�0�0��1�(�.�,�1�.�-�;�0�0�%�/�&�.�7��:�2�5�0�*�;�&�3�%�!�5�&�9�#�9�'�*�<��0�9�$�*�&�+�"��'�(�4�/�1�&�7�,�(�)�.�3�.�,�4�2�5�0�/�4�*�*�*�+�'�1�"�#�'��/�&�*�*�'�$�1�3�0�+�'�$�7�0�*�>�4�+�)�,�6�=�>�&�%�#�2�=�(�8�,�*�'�)�1�;�&�#��(�)�'�2�8�(��+�'�(�)�-�'�5�0�*�/�'�(�1�"�&�$�'�1� �;�%�*�.�#�3�1�;�*�(�(�6�+�@�$�"��/�+�"�-�/��/�-��/�&�&�&�%�4�0�7�-�'�/�'�5�.�'�(�3�)�2�-�*�*�%�)�*�0�1�5�,�#�/�'�'�'�$�1��1� �(� �0�.�&�"�.�<�5�'�0�;�(��2�1�*�-�(�-�2�'�*�$�)���%�'�"�2�+�$�-�"�-�+�;�$�-�*�/�*�*�(�#�-�2�/�4�2�'�2�$�)���/�0�)�,�'��!�@�1��0�)�/�,�-�-�'�(�(�)�(�,� �7�#�,�5�6�5�.�,�7�7�/�-�'�2�'�6�$�:�!�;�؀րՀ݀ـӀ׀ڀۀǀՀ؀؀Հ׀րӀӀրӀۀ׀ـՁ0�*�&�4�-�1�!�/�1�2�>�)�/�5�4�&�1�.�1�6�1�(�%�3�4�*�5�,�0�2�;�4�*�2�%�#�/�;�&�+�2�(�.�0�3�*�1�*�=�0�!�+�,�)�"�6�'�0�)�#�#�'�-�0�%�:�-��+�(�'�,�*�0�+�/�'�4�2�-�4�/�4�)�+�%�)�/�6�9�.�*�)�2�B�/�'�.�/�0�/�4�5�/�3�4�+�3�)�&�,�'�(�'�#�%�*�1�-�(�%�+�6�-��9�%�-�.�$�%�&�&�2�!�0�9�(�3�$�%�0�(�-�'�1�+�"�-�/�-�1�7�+�5�&�*�*��/�/�1�$�!�)�7�(�&�3��!�/�)��&�"�3�&�+��5�+�0�'�.�1�(�0�9� �+�-�/�#�6�3�*�&�3�*�)�4�1�-�4�/�8�+�.�&�'�(�4�%�(�+�.�,�4�.�-�,�!�(�'�-�'�&�-��7�8�-� �+�/�0�/�/�-�3�,�1�6�/�*�)���+�4���2�0��*�+�:�)�1�*�!�3�,�5�(�(�(�'�5�/�(�-�-�.��$�'�3�3�8�/�5�'�8�8�*�0�!�(�"�*�,�$�,�(�.��+�2�$�*�,�3�3�3�-�.�&�/�*�<�'�6�%�0�&�:�.�3�"�2�%�&�#�(�!�4�"�+�@�0�3�5�2�/�(�'�&�%��(�3�0�2�8�%�+�+�?�9�-�)�5�/�5�*�)�&�%�#�(�5�.�3�.�%�+�:�6�1�3�2�*��/�/�3�&�+�%�)�+�/�#��+�%�*�+�9�*�'�3�"�,�+�<�*�*�2�9�.�"�.�5�-�4�,�1�2�'�7�0�/�5�%�5�(�'�-� �<�3�'�%�3�&�7�*�-�-�/�5�2�(�,�*�<�%�2�%�'�/�,�1�+�6�:�(�.�%�(�(�9�%�-�1�3�8�3�1�1�2�;�-�0�+�0�*�)�'�.�)�+�*�(�)�+�9�5�/�.�3�7�)�.�&�"�0�2�-�?�%�,�/�,�;�:�1�/�/�1�.�(�:�+�+�2�5�,�ӀڀۀՀՀӀ׀Հ׀Ȁр׀ڀ؀ҀՀԀӀҀր׀ՀԀс2�.�1�0�4�7�/�-�0�7�0�)�+�4�$�-�1�)�-�$�=�&�,��*��*�5�0�-�0�<�"�&�-�*�#�9�*�,�1�(�/�#�:�(�"�$�)�.�%�2�/��+�2�1�/�"�.�0�4�0�,�1�'���0�.�0�2��2�(�&�0�2�$�)�2�-�,�,�+��.�2�4�4�4��4�3�3�.�.�2�/�)�&�'�6�'�)�4�*�*�6�:�$�,�3�)�8�,�-�5�%�4�#�+�"�)�3�.�1�"�%�%�1�(�$�7�8�/�6�.��.�'��2�-�'�*�-�!�-�7�.�)�+�?�/�-� �5�-�)�&�3�6�*�%�*�$��1�/�"�!�.�?�(��#�:�*�%�3�5�.��.�"�-�+�,�:�7�-�+�.�"�/�6�6�'�%�"�4�7�*�2�"�%�4�6�(�*�%��.�0�$�.�(�+�8�,�7�/�-�7�.�.�-�5�-�.�4�;�,�.�3�#�6�'�+�"�2�,�%�&�$�,�%�7�/�,�3�2�3�<�/�*��"�5�3�-�#�+�+�.�+�1�(�(�6��$�*�4�!�5�'�(�&�'�9�0�,�*�+�5��*�>�/�%�1�0��+�5�$�&�2� � �)�&�3�+�)�/�<�4�!�1�3�)�7�(�(�/�$�+�)�(�'�1�&�,�6�&�(�3��!�4�C�+�2�2�+�+��0�.�.�+�(�'�,� �,�(�-�&�;�*�*�/�(�3�.�-�"�(�*�4�/�6�?�8�8�)�"�3�,�+�?�?�8�1�&�4�+��2�0� �%�'�*�!�)�&�)��+�'�3�:�#�)��6�7�7�+�(�1�0�)�6�;�5�%�1�:�;���3�-�#�(�*�2�0�9�A�/�-�-�)��"�-�,�+��0�8�,�.�!�2�,�<�4�(�1�.�&�(�#�-�,�6�&�*� �6�0�/�7�1�,�#�%�7�)�*�7�:�7�'�(�/��%�(�#�*�-�"�#�2�4�5�.�1�=�/�.��.�4�1�+�6�,�-�%�/�6�.�1�&�-�-�'�/�&�0�#�7�ڀ؀Հ׀ՀӀրրրÀ؀ՀԀրӀ׀րӀ׀ۀۀڀ؀ہ0�8�?�!�+�/�@�5�7�0�&�-�7�)�%�3�-�1�+�,�1�%�(�,�+�-�'�!�/�1�%�#�7�9�+�.�&�-�8�-�%�+�3�.�4�(�4�8�2�&�/�*�!�(�'�3�/�/�(�;�,�,�3�)�7�-�)�5�&�7�/�-�-�)�-�/��,�+�*�8�2�*�6�&�(�5�'�'�$�-�-�7�0�-�$�&�7��*�'�!�'��8�/�/�*�6�4�&�&�*�.�)��&�*�*��+�/�%�5�-�&�*�-��3�3�8�,�4�%��&��!�6�!�?�4�%�)�"�(�1�+�4�*�#�$�!�)�,�"�*�=�0�/�"�-�#�/�5�6�)�'�7�.�&�&�1�)�$�3�9�,�3�#�+�&�=�3�4�)�6�1�<��"�8�!�(�(�0�,�)�8�1�/�$�1�*��-�&�1�*�4�+�)�,�3�%�.�2� �-�0�-�5�.�0�.�$�)�"�*�%�B�0�6�8�:�+�-�,�%�3�(�,�1�4�;�0��)�%���+�(�1�,�=�-�?�(�;��(�*�%�%�!�)�4�/�2�4�$�%�&��$�)�,�;�+�+�'�(�*�*�(�%�2�3�0�,�*�1�*�"�*�+�0�9�*�*�0�3�/�9�-� �&�.�,�%�,�-�/�/�#�%�)�4�"�/�+�'�6�5�*�*�)�5�&�+�5�)�%�<�/�6�%�#�.�/�)�-�-�2�*�+�%�.�&�-�/�(�*�/�.�7�'�(�=�/�+�#�5�:�%�+�*�-�&�!�(�1�(�0�*���.�*�.�(�7�,�1�%�0�+�*�4�.�:�+�%�6�6�!�%�"�>�.�%�1�#�$�2�3�5�@�#�!�%�(�'�3�"�1�4��/�$�%�%�1�#�/�%�0�,�5�6�2�3�+�6��'�#�'�&�/�+�/�-�'�'�6�;� �@�-�1�(�(�+�"�2�.�-�!�,�6�0�4�)�'�1�+�$�(�*�*�-�"�/�-�+�.�9�*�;�1�/�(�+�1�/��1�3�#�.�2��)�1�(�:�,�/�:�2�1�)�,�/�-�.�)�)�9�րՀրҀԀԀӀրЀŀۀԀԀ݀ԀـڀҀԀڀՀҀրف'�(��5�+�I�*�%�'�0�,�!�2�(�,�#�+�#�0�*�,�$�'�-�.�"�$�/�/�'�-�+�.�'�'�!�'�7�,�:�'�!�,�'�.�'�8�$�@�4�'�;�8�!�0�3�*�5�.�1� �+�*�3� �/�(��0�!�-�-�6� �,�5�"�.�!�5� �/�3�,�.�3�#�:�5�(�9�'�#�&�3�(�%�.�9�)�+�/�&�3�!�/�,�&�6�.�9�$�&�-�-�<�"�'�(�*�'�/��)�'�)�+�,�1�3��#�+�,�/�"�/�)�0�*�0�.�+�.� �#�(��.�.�+�%��%�.�%�-�/�/�0�5�3�%�&�8�+��'�+�4�*�+�.�.�)�!�,�,�$�(�1�/�,�>�-�3�&�&�-�+�,�3�%�&�"�'�6�-�*�+�9�,�'�4�+�'�(�+�"�,�4��.�!�3�+� �/�-�(�.�#�7�,�-�/�#�1�+�2�%�7��0�+�/�0�+�+�,�;�1�4�3�'��*�9�+�3�)�4�(�/�0�4�"�/�&�-�#�(�#�*�0�-� �'�6�-�,�-�$�!�;�3�,�$�=�,��-�?�'�@�+�'�!�-�+�4�'�2�2�'�*�(�-�,�*�3�:�#�.�*�5�'�B�1�.�-�4�/�*�+�3�/�(�6�9�-�.�+�/� �-�9�0�&�2�1�/�1�'� �%�1�,�%�+�)�9�/�0�,�&�0�)�%�*�8�#���)�A�8�:�)�.�#��4�2�(�&�3�)�&�,�.�)�-�&�&��%�,�(�,�4�1�0�<�1�1�-�"�1��*�0�'�7�.�� �&�"�(�;�(�&�-�(�:�/�#�0�/�'�-�1�+�+�2�+�8�%�)�(�%�*�.��0�/�/�%�!�(�4�6�3�(�&�!�#�1��3�4�.�+�.�/�'�/�;�/�-�/�9�(�.�1�2�5�5�'�*�'�8�+�3�9�-�0�2�+�'�3�(�0��2�%�2�)�5�7�6�+�0�-�B�6�/�,�&�3�6�-�:�(�/�/�1�*�.�(�%�*�&�-�5�6�:�-�;�+�?�րՀՀـ׀Հـր؀ʀ܀րՀ؀ӀۀӀӀЀրۀրրځ7�-�<�/�7�7�3�2�)�/�+�>�'�/�-��)�/�+�#�&�4�0�&�/�;�3�0��3�"�%�/�-�8�0�/�*�-�-�8�#�1�&�&�/�.�6�'�2�+�)� �;�4��7�,�'��,� �/�3�4�*� �9�-�2�(�/�,�D�,��%�,�-�!�,�:�4�$�'�1�;�.�;�*�-��.�5�1�/�2�+�3�*�!�&�)�(�/�+�.�'�$�,��;�4�5�2�(�,�2�+�)�/�,�/�*�,�$�'�/�(�'�*�;�'�*� ��8�*�/�&�2�?�5�7�%�5�1�)�9�,�#�-�0�)�*�$�5�1�2�'�%�6��%�3�9�4�2�)� �-�$�%�-�)�+�(�(�1�A�3�-�/�,�&��1�,�!�)�$� �3�#�5�)�(�%�7�*�%�$�$�-�A�+��*�$��/�B�(�:�.�)�5�,��2�?�"�.�)�3�-�1�1�$�!�3�6�/�-�,�4�%�-�%�1�+��;�-�/�/�(�5�%�(�#�-�#�0�'�1�/�6�7�%�,�9�'�:�"�/�/�/�5�,�-�+�)�$�!�.� �4�0�&�/�1�.�/�'�&�)�7�/�%��3�4�)�,�"�-�&�:�.�3�*�(�,�"�3�8�1��'�/�,�/�/�!�-�+�'�'�1�2�1�(� �&�$�.�0�2�*�8�&�� �.�8�%�/�&�2�2�'�.�,��-�4�'�&�;�5�8�7�$�)�&�3�7�;�$�(�:�5�8�;�2�/� �&�0�8�'�-�/�)��4�(�(�-�#�6�*�2�$�+�4�)�-�'�.�.�=�-�4�-��/�'�7�/�?��+��'�1�,�)�)�#�5�*�0�6�1�,�+�$�'�/�(�'�(�"�-�9�2�3�.��0�.�*�/�3�,�*�1�0�%�+� �+�&��.�:�)�"�)�,�(�*�8�*�3�&�!�(�/�/�8�/�1�/�(�"�<�$�2�4�)�(�1�)�$�'�+�!�/�*�'�A�/�*�7�5�2�&�%�3�2�'�0�)�)�/�+�.�%�(��0�1�,�*�*�4�2�3�1�Ԁ׀ӀՀ؀Ӏр׀ڀȀЀӀҀۀۀ׀ـՀڀЀҀ؀؀ҁ.�(� �)�%�+�-�1�+�+�"�+�7�.�&�4�1�3�1�-�#�.�-�H�/�-�3�2�%�+�#�.��!�-�4�/�2�%�#�'�)�-�5��*�3� �9�5�3�-�.�,�/�+�*�<�)� �!�1�0�/�.�'�$�'�/�2�,�&�.�4�0��)�8�+�&�.�(�2�(�)�6�.�+�7�/� �5�7�"�.�*�$��*�(�6�/�(�%�=�*��+��.�6�"�6�,�6�6�.�*�*�+��-�(�/�0�+�(�0�'��/�2�1�7�-�*�(�-�6�,�0�)�+�*�3�+�+�-�/�4�+�&�&�1�:�/�4�!�*�"�1�-��-�3�5�0�%�!�,�+�1�&�-�/�5�!�-�)�(�0�4�6�.�%�)�'�0�;�,�+�3�6�:�2�0�+�.�*�'�0�6�1�1�A�,�/�*�3�+�&�5��-�&�.�-�+�,�%�8�$�3�#�2�(�0�3�0�-�(� �/�.�5�.�,�1�3�(�+��)�(�5�.�&�3�A�/�+�"�4�+�-�/�%�$�7�'�1�.�*�%�"�+�/�-�)�&�7�)�%� �1�*�+�$�)�,�1�/�4�-�4�)�%� �.�(�)� �-�3�$�%�+�.�)�4�3�/��!� �0�"� �'�.�#�,�%�'��0�#�/�1�)�*�)�,�+�*�/�3�$�+� �2�6�&�+�,��%�!�/�<�8�-�+�,�4�+�!�,�/�+�(�*�-�2�(�(�:�&�3�,�+�$�/�"�.�0�1�-�"�(�)�"�>�*�0�!�$�1�1�4�(�+�%�F�$�&�/�2�7�1�3��#�2�!�-�� �-�)�/�3�5�&�%�)�$�-�'�%�$�0�*�-�1�'�!�/�+��-�(�)��-�/�$�(�.�"�/�0�6�+�$�.�5�'�#�'�)�,�2�4��"��!�8�+�+�$�+�=�2�9�5�2�?�#�2�'�(�0�2�4�)�,�/�9� �,�;�*�(�#�4�-�7�"�!�-�,�)�8�2�*�5�%�3�)�'�&�-�$�:�7�7�!�6�8�+�.�)�,�7�,�.�@�0�,�7�ҀԀӀ׀ԀҀڀـπƀӀՀ׀ր׀ԀӀҀրـրрۀځ,�-�'�-�/�/�-�*�5�1�,�$�$�(�4�.�/�&�,�1�+�.�(�8� �1�;�)�#�'�8�0�,�*�0�N�+�8�%�/�)�!�/�$�=�,�+�7�1�/�%�!�4�(�2�-�&�(�(�.�6�/�1�7�'�1�3�*�)�*�.�;�.�>�=�$�%�+�/�2�&�)�$��*�0�.�/�-�(�/�#�'�/�(�/�+�4�'�#�4�%�)�5�5��*�*�+�+�+�4�;� �3�%�*�2�-�0�+�2�+�+�)�/�-�-�9�%�+�&�/�4�6�%�&�#�0�/�.�)�,�5�4�,�.�2�!�:�+�4��"��0�,�+�2�?�+�#�-�#�0�.�.�/�+��"�.�'�'�9�.�0�'�!�(�-�#�:�"�2�8�'�5�)�!�<�1�%�+�)�#�7�0�$�.�(�%�)�"�-�2�/�8�:�,�)�4� �%�,�)�+�+�/�'�5�-��:�#��&�2�'�,�1�+� �$�!� �%�6�3�2�#�+�-�1�,�(�)�0�&�.��#�%�<�/�-�%�4�1�+�)�1�;�'�-�/�/�%�+�1�&�$�-�)��)�)�/�+�)�/�1��7�%��&�0�A�3�1�"�1�&�2� �'�-�&�.�3�%�5�+�/�)�0�5�'�/�+�7�3�.�6��/� �-�.�8�(�+�3�%�*�0�3�*�� �!�2��*�1�'�&�4�2�.�%�;�/�,�%�-�,�0�.�'�"�/�!�-�)�3�&��.�.�7�*�)�,��6�6�-�)�&� �0�4�;�+�2�'�.�)��!�4�)�0�+�#�*�/�*�4�#�3�*�9�+�>�-�)�#�&�1�/�.�#�3��#�.�*�.�-�2�/�0�'�+�5�'�4�A�)�,�/��0�-�'�.�0�.�$�0�5�?�3�*�&�'�,�.�-�2�<�$��+�.�'�3�#�-�0�,�-�.�$�*�5�4�;�&�4�*�4�,�9�0�*�/��)�,�)�0�,�3�(�/�-�+�)���9�)�)�-�4�2�)�-�2�+�4� �%�&�0�%�&�%�7�,�1�.�:�.�5�&�*�;�ـӀπՀՀ܀ԀـրƀՀ؀рـڀ؀ۀـՀ׀րӀրՁ*�0�4�&�.�8�'�&�8�/�/�/�0�-�+�+�,�3�4�-�<�)�8�%�,�*�.�"�.�*�1�"�4�%��+�+�/�.�"�)�&�*�5�<�/�2�/�(�.�-�+�3�"�2�+�2�'�&�7�)�2�5�0�.�(�$�8�,�-��)�*�0�(�0�"�&�8�%�2�%�-�$�&�#�,�0�,�<�7�.�$�*�8�3�0�)�8�(�(�"�-�-�$�+�-�1�0�#�+�-�?�<�-�)�-�(�2�&�+�/� �5�&�,�+�*�7�+�2�"�-�/�,�4�0�%�.�+�4�!�(�3�)�"�.�1�%�/�/�1�/��.��*�*�,�+�4�)�)�.�%�2�%�%�-�*�6�*��*�%�.��2�+��6�0�-�&�$�"�(�.�9�3�5�3�6�"�,�/�.��#�&�-�6�4�,�7�)�/�+�%�-�3�+�(�6�-�1�+�=�%�.�1�-�)�/�9�(�.�/�$�.�0�2�*�&�4�#�(�3�1�#�;�,�/�1�(�:�$�-�5�*�#��4�2�)�2�,�*�7��%��#�'�&�)�#�2�3�(�5�0�,�%�/�2�/�.�1�,�-�4�2�(�/�/�$�&�)�#�9�0�+�4�.�3�1�)�(�"�+�%�$�*�/�*�$�)�)�*�:�(�5� �(�*�,�)�'�,�5�/�/�)�/�#�%�1�(�0�*�"�8� �)�.�%��)� �$�6�)�8�1�3�.�1�,�<�/�.�(�)�-�4�/�/�+�(�*�1�(�-�5�)�*�.��'�'�)�8�/�(�#�3�$�0�0�*�'�3�:�5�(�'�%�5�0�3�/�-�3�$�#�*�&�2�4�'�1�%�-�(�8�0�+�&�4�(�.��1�:�'�8�*�4� �'�6�(�-�-�*�(�$�/�/�7�'�5�*�$�/�%�3�4�8�&�,�-�.�-�+�)�6�-�1�$�.�6�#�&�+�(�$�4�;�*�1�4�1�$�%��4�-�9�%�6�*�/�&�'�+�/�'�$�>�:�7�&�1�+�.�,��4�(�,�*�<�,�1�-�,�3�&�7�4�)�7�5�:�6�+�4�/�*�4�ӀӀրՀڀր׀Ҁր��Հր؀؀׀р؀ՀـӀڀր؀ف%�5�<�5�,�*�1�>�%�*�;�9�/�+�/���+�.�$�%�(�6�)�*�4�+�#�1�,�-�6�(�,�1�2�3�'�%�/�-�D�-�8�6�#�+�)�6�*�2�/�+�.�)�)�,�'�2�2�%�#�1�5�+�*�5�1�2�'�.�/�0�-�&�6�*�#��"�%�!�)�*�5�%�2�3�.�%�0�"��+�=�&�$�>�$�%�7�+�5�2�%�)�/�7�/�1�3�/�2�,�'�!�#�$�*�.�.�/�)�9�/�#�3�*�+�$�&�$�-�'�6�!��#�+�1�7�2��#�!�)�5�1��'�+��*�4�%�2�+�2�-�+�5�)�9�1��0�5�>�2��9�,�%�0�6�,�3�9�2�4�3�+�3�4�*�!�3�"�/�+�3�%�5�+�6�'�'�"�+�+�$�'�<� �2�2�0�=�+�)�+�-�2�)�.�-�7�5�(�&�)�)�1�2�1�%��)� �$�/�.�4�>�-�1�1�,�-�+�%�)�+�2�3�.�/�*�"�(�/��7��:�2�%�(�%�*�,�,�(�8�/�-�*�/�)�0�1�'�4�1�,�(�1�<�0�/�-�2�#�(�0�*�5�*�5�)�(�5�(�*�1�(�(��%�,�'�#�(�+�,�/�+�-�.�*�0�5�0�B�4�3�(�.�0�*�*�7�-��*�'�"�&�6�=�1�8�#�+�1�/�#�/�+�8��(�!�*�/�*�7�:�'�+�2�0�(�-�.�0��'�+�+�'�0�'�=�0�"��2�$�+�+�0�7�,�.�"�-�)�,�1�"�*�%�,�!�'�%�6�!�4�*�/�.�$�)�9�5�1�!��5�:�7�+�/�,�+�)�&�#�:��+�$�*�-�)�#�&�0�%�&�'�+�'�3�)�#�,�8�-�7�/�.�+�8�/�(�4�)�$�/�)�0�,�-�1�/��(�4�,�)�1�&�&�+�0�+�/�&�.�4�5�&�&�"� �(�2�,�(�6�!�'�)�+��+�"�7�%�:�&�+�"�"�$�-�-�$�*�6�)�.�-�'�3�(�+�0�&�0�.�-�&�;�5�A�/�@�,�ۀ׀׀׀րր׀ԀӀǀԀ׀ڀрԀـ׀րӀՀ؀׀Հԁ&�)�(�)�&�>�/�1�?�*�+�%�,�,�(�4�7�6�3�'�;�/�/�$�/�)�7�.�.�;�*�%�/�/�*�2�-�+�.�5�%�.�/�,�-�/�&�/�6�-�3�:�"�+� �.�/�)�$�(�1�-�)�,�2�1�1�1�(�$�)�*�0�&�&�1�$�8�<�-�1�#�#�.�/�+�/�*�/�6�#�7�+� �-�)�+�&�*�;�6�2�&�/�/�-�5�7�-�0�+�'�0��.�*�0�5�)�'�9�0�+�+�-�%�/�$�&�0�'��0�(�&�4�*�5�#�#�*�+�,�-�$�+�&�&�)�)�.�6�)�7�-�,�+�&�*�(�1�+�)�)�#�/�"�4�7�&�4�%�$�,�'�,�!�,�/�4�2�4�.�&�%�*�,�1�3�'�5�7�:�0�/�0�3�C�4�%�4�%�*�%�-�(�%�#�,�-�9�'�%�0�!�1�-�,�2�0�.�5�/�$�/�0�&�,�%�.�+�/�#�(�-�.�1�5�.�.�+�+�3�+�"�*�;�7�&�0�0�%�1�,�4�%�+�.�.�)�4�7�1�-�-�/�(�-�!�*�<�)�/�%�4�)�3�5�,�/�,�,�6�%�8�/�;�7�&�'�*�"�/�)�A�1�)�(�-�,�+�>�'�$�-�-�3�1�.�0�(�*�"�,�5�4�'�'�(�$�=�*�:�.�(�5�(�2�'�!�%�(�-�0�,�.�/�2�&�5�5�3�+� �*�1�@�"�*�2�3�#�/�+�)�@�%�'�%�:�*�4�7�"�-�)�.�4�)�'�/�(�)�-�0�+�-�,�)�0�/�)�0���1�0�0�5�/�3�1�)�8�*�'�&�/�3�-�'�-�-�u�8�'�(�2�)�+�!�.�(�%�.�1�,�'�7�%�3�)�3�.�1�7�1�,�<�'�(�2�4�/�(�-�5�*�*�*�(�3�/�#�'�(�'�1�*�/�1�4�3�&�-�(�(�$�&�,�,�:�1�%�5�/�-�9�3�+�:�5�1�,�*�5�'�.�/�2�.�'�$�#�3�,�%�(�3�'�/�6�.�"�)�!��%�-�+�2�*�1�*�0�(�7�$�7�5�(�3�ۀ؀Հ؀Ӏۀـ׀Հǀր؀؀ڀ؀ЀڀӀڀՀՀـЀہ%�(�$�4�1�&�,�.�/�<�/��-�.�3�1�3�(�-�(�1�4�:�)�*�3�+�7�'�%�(�,�)�4�0�-�0�%�1�/�/�(�8�.�/�,�/��4�4�+�5�.�.�)�<�6�0�+�2�+��+�2�9�.�&�$�0�"�*�.�.�#�(�*�'�+�%�-�'�%�/�>�/�4�#�%� �0�,�3�#� �.�$�'�/�0��&�+�-�-�$�4�6�/�;�3�,�6�/�/�A�#�/� �(�%�(�$�%�+�7�-�5�)��$�)�3�8�)�(�"�.�7�%�#�:�)�7�3�%�,�$�-�$�)�)�&�/�3�,�$�(�&�/�-�&�*�;�)�'�+� �(�+�;�)�+��,�!�(�6�*�2�/��%�'�(�%�'�+�%�#��*��/�2�.�$�'�+�1�(�+�'�4�0�,� �:�+�.�,�0�2�/�7�2�%�%�)�5�-�5�)�)�"�1�-�-�7�6�>�1�0� �6�/�&�-�$��-�'�4�.�)�3�+�6�'�"�:�%�$�#�+�6�!�9�%�8�,�.�,�0�-�&�1�2�"� �*�-�)�2�.�9�)�0�3�2�/�8�+��*�3�)�5�2�9�0�/��-�0�+�'�.�+�.�,�-�-�5�(�+�+�(�%�-�#�5�0�+�.�0�!�2�+�)�+�)�-�$� �,�/�)�%�*�%�+�1�1�&�#�7�3�!�"�*�%�)�'�+�'�!�6�+�+�>�2�"�$�7�/�*��;�$�%�*�,�,�'�5�4�+�4�'�/�%�.�;�5�1�0�$�4�*�5�7�0�+�(�)�5�-�=�4�5�'�7��!�(�+�$�1�4�.�(�%�:�-�M�*�(�-�'�/�%��3�0�D�%�7�/�)�4�1�*�9�'�'�0�3��%�%�,�1�*�%�0�.�"�-�&�=�+�%�0�*�>�.�/�(�+�%�0�$�$��$�*�4�5�5�7�8�3�2�.�1�$�&��.�1�3�.�.�0�)�)�-�%�,�(�5�*�2�'�0�&�3�2�>�4�4�1�&�5�7�1�2�.�:�6�5�-�/�#�-�0�3�*�1�:�-�0�րրр؀πՀՀրҀŀ׀ЀՀр׀ԀڀԀ؀ڀҀр׀΁,�)�0�5�&�5�6�*� �"�2�(�+�7�(�$�,�/�/�,�.�6�3�,�+�)�/� �&�&�'�+�0�/�+�!�*�.�7�4�6�(�.�-�1�)�/�-�(�0�-�/�/�*�1�;�-�9�*�%�'�3�(�3�,�2�(�)�E�5�'�+�3�/�>�8�-�9�&�#��-�(�7�/�� �$�'�-�4�-�0��5�3�!�(�.�6�4�7�)�*�%�$�)�+��'�-�2�*�*�.�+�3�2�1�+�&�8�/�*�=�+�*�#�'�-�0�(�(�4�"�,�-�!�*�%�+�3� ��-�7�/�1�,��$�&� �(�+�1�#�2�+�/�7�,�-�0�%�2�&�3�0�0��)�,�+�*�/�@�<�7�9�!�+�#�)�/�/�)�0�,�&�3�"�/�.�6�=�9�2�)�/�1��*�,�/�1�,�*�+�2�;�/�,�&�#�!�2�6�-�7�+�4�8�-�-�3� �(�5�%�-�?�#�5�9�2�6�8�+�+��/�6�0�,�)�*�#�3�/�-�3�+�7�2�'�!�$�.�"�5�-�(�&�;�/�#�+�%�0��-�(�(�(�-�"��3�9�5�5�(�'�!�)�1�'�2�7�-�)�-�6�*�%��1�*�#�%�,�3�+�;�1�'�7�*�-�(�9�,�0�)�/�*�.�2�5�5�(�1�)�-�/�#�+�*�!�0��!�'�&�!�!�*�'��2�8�(�.�6�4�,�2�*�#�1�0�3�&�2�(�$�*�.�*�&�/�+�3�9��+�+�)�)�'��(��%�-�,�/�+�3�/�+�*�,�.�-�9�5�"�6�5�(�2�2�3�.�,�,�+�%�.�1�/�r�:�0�8�(�.�*�+�#�+�0�2�(�.�-�"�$�8�'�+�$��2�%�:�"�0�/�+�*�+�*�1�*�'�,�,�"��%�)�*�)�,�7�0�3�-�$�-�'�.�4�#�+�*�&�$�1�+�'�'�9�(�)�4�>�(�/�6��.�(�(�.�7�.�'�9�)�2�3�,� �#�,�+�$�-�2�+�'�%�1�&�,�7�-�%�%�*�-�+�2�%�)�-�;�7�րՀՀڀրրՀրՀǀրԀ΀Ҁ؀ԀڀՀӀ؀ـۀՀӁ*�/�-��0�/��4�4�+�%�1�.�"�$�2�0�0�/�+�*�+�$�4�,�2�3�8�4�2�;�+�!�*�.�"�!�,�)�.��#�3�/�6�3�9�1�4�.�.�3�(�+�'�,�+�*� �(�3�-�7��0�-�3�2�'�+�2�+�+�%�)�)�4�-�3�1�&�1�/�.�,�)�7�*� �0�%�7�,�3�.�(�%�6�&�.�(�#�)�>�)�*�5�8�7�0�&�.�+�2�0�-�)�(�*�)�0�(�#�)�'�*�/�(�&�6�#�.�2�*�#�*�,�'�G�/�.�+�#�+�!�&�,�%�/�0�!�(�2�%�*�'�(�%�&�$�-�+�/�&�(�)�)�$�-�0�"�;�3�2�+�'�'�0�)�+�)�'�)�(�#�-�0�/�*�.�"�,�%�!�'�3�)�(�+�6�.�1�/�&�(�)�)�+� �,�)�)�#�3�&�7�/�0�,�+�5�,�:�1�$�-�(�'�1�/�6�2�+�:�9�)�,�7�*�3��#�#�+�4�'�.�/�'�)�-�0�"�*�4�-��+�>�8�,�(�1�0��/�+��-�.�-�.�,�.�&�)�+�*�2�*�%�0�3��5�'�+�0�#�1��%�-�(�+�6�*�3�=�3�0�;�(�/�7�5�,�/�-�,�'�:�'�3�3�%�"�)�5�"�.�8�3��)�.�%�,�*�'�5�8�+�.�.�)�A�.�#�0�-�-�)�2�(�#�6�4�,�2�,�1�'�(�#�+�-�3�3�2�$�2�5�/�:�/�-�1��.�-�0�/�6�9�+�-�0�1�-�9�'�3�/�/�-��!�'�(�3�7�+�9�.�*�(�2�1�-�<�4��%�/�-�#�1�0��0�1�0�)� �%�$�)�9�#�-�3�-�)�+�,�)�(�1�*�5�9� �;�/�%�7�#�#� �;�*�*�$�(�%�5�.�;� � �/�)�/�3�&�2�.�.�&�)�+�8�.�#�"�.�)�6�(�4�$�7�0�5�5�4�0�%�+�6�3�'�8�1�6�1�<�2�%�"�5�3�*�*�#�.�-�2�0�.�/�3�=�1�-�6��*�0�3�)�׀Հ׀׀Հ׀Ҁـ΀̀ҀЀ׀ԀրӀڀՀՀԀՀڀՀҁ8�1�/�-�(�2�3�)�7�,�9�2�+��4�)�7�+�*�/�)�7�-�4�=�-�(��%�*�)�'�3�-�/�7�/�/�.�!�-�+�+�#�'�%�4�*�9�,�2�1�+�/�*�9�,�2��(�*�%�6�%�3�+�1�*�.�0�$�'�#�0�'�'�,�7�/�/�#�*�0�4�)��*�&�<��'�4�.�-� �4�2�4�+�&�/��&�+�2�#��3�>�2�*�;�2�*�,�.�/�(�"�#�*�)�'�#�"�*�<�/�0�2�,�-�@�*�6�-�0�'�4�4� ��2�#�(�(�(�)�2�4�-��"�!�3�0�3�'�/�*�<�1�'�9�(�)�)��-�"�@�'�6�4�%�3�@�&�4�)�,��0�&�0�6�3�;�%�8�'�&�(�7�'��%�#�(�.�,�4�0�.�3�5�(�9�)�9�=�6�3�7�-�/�0�,�/�&�'�3�&�-�,�%�.�%�6�2�-�1�#�0�0�(�3�"�'�/��4�"�3�'�)�"�0�0�(�2�%�7�(�&�%�/�:�-�+�+�%�,�4�(�,�,�,�1�7�0�#�)�-�.�+�.�3�+� �/�2�/�4�'�0�2�%�*�(�0�3�8�%�0�3�)�+��)�"�&��+�'�!�(�/�%�1�%�)�3�0�2�/��/�3�&�'�2�<�,�7�@�A�4� �.�1��C�)�.�-�"�+�&�&�/��4�4�4�)�%�'�/�.�)�%�2�(�7�)�1�"�"�+�+�'�7�+�/�.�/��)�/�5�"�5�$�%�2�2�$�4�6��6�%�*�/�!�:�(�/�!�-�-�%�%�0�)�#�&��)�%�/�!�(�.�+�6�'�8�/�3�;��2�+��.�"�2�+�/�7�0�0�'�"�2�2�;�3�*�4�)�7�/�8�6�7�0�%�:�*�)�.�-�)�6�,�2�0�.�?�,�'�&�7�%�6�/�+��6�&�2�4�(�-��-�/�(�)� �7�6�'�$�.�5�0�/�)�%����-�3�,�;�0�+�5�3�5�7�@�9�5�)�.�+�/�"�+�5�/�,�*�/�4�;�ـڀՀـ؀܀Հրрǀ׀؀ۀـՀӀրۀ݀׀Ҁ׀ـہ2�E�/�/�(�'�/��9�5�1�*�+�!�1�4�+�(�4�-�*�*�8�2�0�4�2�)�;�6�,�*�4�4�&�3��"�6�)�$�=�/�'�2�*�4�D�,�4�'�5�5�)�*�%�5�&�4�!�,�$�.�!�+�)�8�/��;�'�(�/�2�4�8�'�.�+�.�/�.�,��(�0�F�.�-�.�*�(�2�(�+�!�1�-�4�/�2�1�+��2�+�!�3�$�%�&�2�&�5�5�/�;�7�/�1�4�7�#�*�.�&�1�*�.�"�6�/�,�/�'�/�/�+�'�+�4�'�0�;�-�3�'�)�0�5�$�*�&�1�;�$�6�9�*�6�&�!�+�6�(�0�*�0�+�4�0�(�3�+�3�0� �0�(�;�/�"��3�!�)�4�,�#�:��(�)�%�0�(�/�2�/�2�+�&�-�;�&�/�4�>�.�5�5�-�0�=�'�2�!�+�4�2�/�<�'�%�)�!�'�1�(� �)�.�2�/�!�1�)�!�0�*�'�7�6�)�/�2�#�7�'�&�;�-�0�'�)�!�#�+�*�+�4�&�&�-�(�)�/�.�7�'�*�#�2�%�5�1��'�3�/�)�4�6�(�&�(�+�.� �/�+�7�+�6�3�2�"�'�)�(��8�*�.�2�3�4�+�*�,�$�*�1�,�3�0�'�'�>�)�&�.�#�+�7�/�$�"�0�1�'�&�.�$�"�+�.�!�0�,�+�,�-�5�)�(�)�(�/�:�7�/�@�'�$�(�#�&�-��/�-�'�2�,�(�"�-�1�4�2�+�5�*�2�!�,�6�2�2�;�%�G�0�.�;�:�/�0�9�7�*�4�*�)�0�-�*�*�1�0�$�-�*�9�!�%�)� �3�)�5�+�3�+�,�#�$� �)��+�.�1�4�0�5�!�*�+�B�4�&�+�'�*�,�3�0�6�+�-�;�/�$�2�7�.�/�$�"�)�/�'�'�0�)�2�0�(�1�6�7�(�1�7�+�*�*�,�/�2�-�*�9�#�1�7�-�2�3�"�"�3�(�.�1�#�4�#�3�+�)�.�)�'�0�*�!�2�7�,�<�.�+�-�+�'�-�.�6�+�Հ؀Ӏ؀ۀۀր؀ڀÀ؀ـրր׀؀р̀׀ԀӀրӀف8�)�-�/�)�0�#�0�+�(�,�.�/�)�3�#�%�(�-�-�.�.�2�/�&��)�)�.�(�9�1�0�(�2�0�2�6�(�3�"�.�7�0�)�#�.�6�/�3�(�1�A� �.�)�1�%�3�)�.�'�3�;�$�@�(�-�/�&�3�.���'�<�0��+�/�;�*�6�)�'�+�/�2�#�0�/�,�+��#�#�4�/��/�5�$�-�3�7�%�(�/�(�(�(�3�"�-�+�3�2�6�(�/�+�3�)�!�-�'�7�5�/�&�6��0�)�1��/�7�&�2�'�3�)�2�,�1�-�$��+�)�%�,�1�*��2�/�1�0�0�1�/�/�,�+�*�-�.�2�'�%�,�3�0�+�/�6�*�/�3�.�+�4�4�7�-�*�7�2�0�4�.�8�(�(�>�.�/�)�4�0�2�*�)�)��1�0�-�/�.�!�"�2�3�(�8�'� �3�*�*�(�-�*�<�)�+�$�-�*�1�8�2�6�1�7�2�;�,��+�7�3�-�+�%�*� �2�4�#�3�$�3�5�/�.�'�+�3�0�/�'�)��3�9�'�/�)�,�1�-�1�7�0�'�"�,�%�/�6�,�.�,�%�3�1�6�0�-�2�6�0�/�-�'�8�7�.�-�/�(��-�2�)��/�-�,�6�2�2�/�*�%�+�2�1��3�$�+�5�5�6�*� �.��7�%�-��)�'�5�%�*�9�#� �8�+�#�(�:�4�%�8��;�)�9�)�+�/�$�%�%�%�#�+�)�(�'�,�&�5�6�'�+�>�,�/�-�'�)�:�;�8�5�@�2�5�7�<�9�-�.�%�/�7�-�8�+�/�:�.�%�*�3�4�)�5�;�3�.�4�)�,�&�7�:�)�*�#�&�1�#�0�4�/�)�=�;�"�'�)�'�0�1�-�0�)�!�0�$�>�'�+�#�"�,�2�'�(�&�5�(�)�(�'�1�2�"�/�+�&�/�.�;�.�/�&�%�8�;�(�,�0�)�.��/�*�%� � �(�*�/�+��1��)�1�5�6�.�,�'�4�1�=�3�2�&�.�0�8�2�3�*�1�'�8�,�рҀ؀׀Հ׀ـр׀ƀـրڀՀրҀـրր׀Ҁـ؀ځ1�/�.�,�=�*�3�+�1�1�(�'�7�%�&�%�*�+�*�&�-�)�)�*�(�0�'�%�0�$�4�'�6�6�4�-�6�+�.�(�)�+�/�-�4�*�+�*�+�/�0�'�5�#�-� �3�'�#�#�0�-�,�,�(�0�B�-�8�&�7�'�/�.� �*�0�#�B�9�4�9�0�2�/�(�6�+�'�'�+�1�+�6�1�-�/�0�0��3�!�&�*�0�*�4�.�'�,��*�:�3�(�"�(�&�=�*�0�'�"�,�+�5�+�3�)�2�1�7�-�$�.��*��)�'�#�.�'�#�)��-�)�&� �&�9�-�,�7�)�)�4�,�0�*�,�1�&��*�"�-��$�/�%�B�#�*��+�9�5�%�-�)�7�*�3�3�.�4�5�0�0�/�#�4�<�*�)�,�2�*�.�-�2��!�)�'�%�3�1�4�*�)�#�)�-�$�+�4�+�*�#�1�&�/�3�2�*�-�+�3�6�*�/�&��,�*�2�#�!�1�4�6�*�)�2�4�4�+�3�>�%�-�.�0�/� �%�!�1�!�6�&�+��+�,�%���,�&�.�4�1�2�1�.�1�5�/��.�)�'�.�%�3�1�%�&�,�-�+�)�!�=�3�/�-�3�&�5�.�1�$�%�3�1�0�*� �7�*��&�$�&�*�7�1�4�/�/�!�*�'�D�,�"�/��-�(�2�.�,�/�?�/� �*�"�.�1�/�)�)�+�/�,�0�(�$�#�0�%�)�1�,�/�7�.�'�� �-�#��4��+�.�/�'�-�/�.�=�7�&�.�2�7�2�4�6�B�8�7�+�5�1�2�.�6�+�0�!�.�-�3�-�+�$�(�+�!�&�/��5�6� �/�'�2�.�/�@�/�+�*�.�#�8�5��+�)�3�-�#�>�+�,�/�'�6�1�.�2�-�0�-�#�/�1�*�0�,�$�3�6�'�+�(�%�'�*��$�&�8�#�0�+�2�*�*�2�8�(�+�2�7�5�*�-�2�6�-�3�/�#�2�'�1�1�0�6�0�+�*�8�+�(�2�,�:�+��'�1�;�+�0�*�*�#�+�րڀՀ׀ڀՀ؀׀ـÀրՀҀـ׀Ӏڀ׀Ӏڀ׀ـրځ+�.��,�5�+�9�%�2�5�;�)�-�0�(�-�8�;�.�2�/�<�&�&�1�3�,�'�)�/�.�)�-�/��&�*�/�1�(�?�*�9�+�*�3�/�,�+��'�,�%�(�.�8�/�)�8�2�5�*�#�1�+�(�-�,�*�,�2�+�<�'�+�4�*�/�"�)�1�3�1�,�2�.�+�*�(�2�6�,�-�/�1�'�1�0�0�)�2�0��8�*�*�*�)�(�/�8�*�7��1�.�2�&�6�+�+�2�.�/�(�+�$�$��(�&��)�5�"�*�*�.��,�9�)�8�(�+�(�.�,�4�$�(�1�#�)�/�,�.�&�1�#�/�#�,�2�-�*�1�,�0�,��0�#�.�)�*�!�,�!�-�5�0�2�5�5�6�3�+�8�)�:�+�$�2�*�@�%�)�&�%�(��'�%�4�,�5�)�1�,�%�+�!�4�)�,�"�$�4�.�&�3�7�-�6�7�,�.��1�7�,�&�.�4�,�#�3�2�'�8�-�$�+�*�,�0�1�/�-�.�!�(�:�/�9�%�/��.�/�,�3�/�3�5�7�$�'�*�.�(�,�6�/�#�3�)�(�,�1�5�2�"�4�!�0�)�6�.�+�,�6�;�3�0�'�1�)�3�+�/�+�$� �6�5�+�#�=�&�+�(�5�+�#�0�.�F�(�"�$�+�&�'�(��(�"�,�+�'�2�)�(�&�7�%�/�)�.�0� �9�&�/�8�$��<�/�$�+�(�$�/�%�9�+�+�*�-�*�(�?�/�'�0�/��)�5�7�"�-�7�*�0�8�1�0�3�1�C�I�I�E�\�E�4�7�C�4�6�(�#�7�.�9�!�1�1�/�7�.�+��&�'� �-�6�(�/��5�/�/��5�)�+�2���8�&�-�5�)�-�0�/�6��4�(�3��/�1�#�(�9�!�(�!�1�,�.�4�5�.�0�3�)�$�"�G�-�2�+�)�-�-�)�2�3�*�2�'�)�-�5�3�)�0�,�(�'�;�"�(�)�*�-�/�4�+�,�'�/�)�/�$�8�0�"�<�7�"�/�/�1�0�%�,�-�8�*�4�@�׀ЀՀӀ܀ـ׀ҀՀˀр؀ՀӀπЀրڀԀ׀рӀր؁%�5�/�.�+�4�2�*�+�%�&�6�,�5�/�6�$�+�5�3�*�-��+�%�(�*�1�.�1�,�.�0�-�.�"�5�)�!�)�"�+�#�5�*�0�+�-�%�,�.�)�+�4�7�-�4�,�0�+�.�)�(�/�#�&�/�+�&�7�)�2�&�+�:��.����-�*�*�5�>�(�'�$��,�1�C��*�0�'�1�(�3�2�9�.�#�+�'�'�/�)�'�&�*�$�+�-�,�<�%�(�(�'�3�'�/�2�$�!�.�0�#��,�.�/�1�+�'�(�*�*�/�%�(�9�+�%�$�+�,�'� � �.�%�'�0�&��2�&�'�"�-�,�,�)�#� �)�6�.�0�6�+�7�%�7�.�0�1�#�#��.�/�*�5�/�%�*�.�.�4�.�4�0�-�,�3�/�1�3�/�3�)�7�9�'�%�'�,�'�'�-�,�.�/�-�2�!�*�"��+�-�7�'��8�4�9�0�/�,�-� �+�(�+�)�,�)�-�&�8�0�'�-�#�'��.�/�(�7�,�&�+�4�9�)�*�6�/�3�?�#�/��$�4�1�%�%�/�3�,��/� �*�5�1�5�)�1� ��0�.�/�(�2�7�5�'�-�3�2�,�)�(�6�'�*�3�,�#�&�8�0�#�*�0�+�'�'�/�'�-�*�&�?�*�3�4�.�&�&��#�"�#�,�,�#�,�*�*�(�)�/��'�3�*�,�.�9�-�.�*�)� �2�+�/�$�%�0�2�/�(�?�'�6�'�7��$�/�3�<�:�&�)�:�-�-�/�1�<�;�P�E�T�K�B�G�^�G�8�7�1�(�=�(�/�(�C�&�$�>�.�+�/�1�3��$�)�&�,�1�1�&�/�'��'�(�,�%�*�+�1�+�"�/�&�'�!�+�'�#�'�.�+�/�/�!�%�+�)��#�4�+�)�8�/�.�"�1�,�-�-�/�6�'�+�3�/�6�*��+�8�1�#�4�=�+�$�5�1�!�/�4�1�1��'�1�1�,�(�&�%�!�-�=�2�3�,�:�/�,�/�'�1�2�(�-�9�,�'�1�(�$�2�(�4�ۀۀڀՀրۀـЀۀ€րـՀրՀ؀ӀրԀۀ׀ՀЀف*�5�&�3�(�1�,�;�&�#�*�.�3��9�(�/�)�5�&�0�(�-�/�1�4�2�.� �-�1�&�+�-�&�3�/�"�1�*��+�&�$�)�)�(�-�2�)�%�#�*�$�3�/�6�,�(�'�0�$�+�$�.�/�4�.�5�/�)�+�'�*�(�,�,�+�2�%�-�)�3�+�6�'�+�.�*�1�,�/�+�.�5�+�'�3�<�4�!�.�'�0�)�)�7�'�1�-�)�1�/�(�0�-�/�,�'� �+�,�(��,�.�*�2�*�)�0��#�#�*�'�3�1�1�.� �%�#�(�'�)�*� �-�/�:�#�#�)�0�+�$�+�#�-�*�/�'�+�%�3��+�>�"�#��*�(�7�'�$�.�7�*�*�1�!�6�$�>�,�3�/�/�/�*�#�=�1�/�-�*�8�#��1�3�*�7�1� �1�+�,�&�$�1�%�4�8�!�0�'�-�1�2��/�)�'�'�6�,�,�,�7�(�3�.�1�5�#�+�,�#�9�0�!�'�%�)�/�0�.�,�0�9�%�%�(�-� �'�%�&�3�:�1�/�.�3�/�/�5�9�)�2�6�-�)�"�2�*�5�*�!��+�'�/�.�.�)�4�4��-�+�!�+�0�8�.�;�1�-�2�-�/�-�)�'�'�7�%�-�*�+�/�9�/�'��#�(�4�1�0�"�'�-�(�0�*�!�+�3�"�$�-�.�0�.�0�5�2�%�.�+�$�:�'�3�)�-�-�&�"�)�.�/�*�,�8�0�4�*�8�+�,�.��1��"�$�5�(�(�%�+�1�6�=�A�E�M�I�a�A�]�O�\�H�K�5�=�1�+�/�/�=�.��1�*�+�%�3�-��.�$�$�)�3�"� �.�0�.�'�2�� �2�/�(�"�+�7�:�/�2�5�-�%�&�-�(�:� �7�0�+�/�7�-�1�2�,� �0�0�1�-�%�9��&�/�0�,�$�-�/�*�7�$�� �.�/�<�6�3�!�'�1�%�7�-�+�!�#�#�0�)�+�,�5�6��5�1�+�#�:�6�2�9�-�+�.�(�*�+�4�.�&�/�!�&�2�,�2�ӀـՀրрӀӀ׀рɀӀҀҀ׀؀ހր؀݀׀ր׀׀ԁ"�.�:�-�=�-�!�,�@�1�2�+�'�6�&�/�;�0�-�0�#�-�/�(�'� �2�5�2�(�+�=�.�2�"�3��>�1�)�)�'�*�!�'�2�+�@�-�.�4�-�(�/�/� �&�)�3�6�.�-�(�!�9�'�$�8�3�9�3�5�0�)�#�:�/�,��(�+�$�/�/�4�'�/��$�+�"�/�/�)�3�,�*�)�+�3�2�*�&�*�+�#�/�5�0��0�!�3�%�%�#�!��)�4�$�1�0�.�3�=�1�"�+�(�)�3�3�&�)�$�&�"�*�$�/�&��)�%�+�5��'�&�)�*�)�+�*�;�*�'�*�4�'�#�*�$�4�'�*�/�%�,�2�9��+�6�+�5�0�:�3�)�$�6�$�,�/�.�+�/�)�%�6�(�*�(�#�/�2�!�9�#�;�"�$�%�-�3�'�-�+�.�.�*�:�,�7�'�8�:�0�0�-�(�,�/��8�%�.�$� �"�(�2�%�&�.�/�,�5�%�0�.�%��(�+�*�6�(�*�3�,�6�'�)�/�)�)�-�2�*�1�#�2�/�*�+�7�'�/�5�0�'�0�2�!�"�)�:�4�1�)�/�9�/�'�3��'�3�(�/�!�(�/�1�1�/�,�*�0�:�"���-�&�/�%�0�*�*�$�/�0�,�7� �#�#�-�)�$�2�,�,�+�/�$�/�9�*�(�#�,�.�(�/�%�/�*�#�)�*�5�/�%�*�6�&�2�-� �8�(�&�?�)�2�'�2�-�4�.�9�*�;�4�6�-�.�2�+�0�;�(�-�6�)�/�D�@�X�[�\�N�Y�N�E�5�Q�2�7�2�3�3�5�%�/�%�7�5�.�+�)�2�4�;�'�*�'�2�2�1�%�5�=�%�%� �-�/�1�%�1�+�"�2�)�,�)��2�4�-�2�.�$�C�%�'�*�,�0��+�&�(�*�%��4�-�&��2�(�*��-�+�4��&�*�&�-�(�-��+�7�2�,��?�:��$�%�9�#�-�1�(�"�%�2�.�+�'�%�4�2� �.�1�*�/�+�+�0�,�5�<�)�1�$�6�/�<�ـր؀Ӏـ׀߀׀Ҁˀր׀ӀӀ؀؀ԀӀր؀ڀ؀ـՁ6�%�/�5�4�*�&�4�4�/�(�.�1�)�5�1�!�3�7�1�8�-�"�5�#�*�%�8�,�%�(�*�)�7�1�,���(�!�-�4�2�0��7�(�#� �-�(�-�+�-� �1�(�-�)�)�4�,�6�*�3�1�)�(�!�+�0�1�)�8�"�-�;�*�,�#�4�,�,�'�#�0�6�/�#�9�#�0�!�4�7�(�%�*�,�!�!�*��-�%�3�!�6�!�#�6�)�.�/�'�)�"�2�,�/�+�%�*�5�5�.�4�2�'�4�7�,�&�&�-�5� �)�)�5�&�"�#�$��4�8�6�&�0�'�8�9�5�-�%�)�.�3�.�8�7�#�(�,�$��(�.�)�3�<�.�@�'�6�%�&�,�/�#�,�-�'��3�2��5�0�)�-�-�4�"�%�'�/�1�.�.�6�*�1�"�!�/�9�-�#�'�8�2�4�&�/�3�(�%�3�$�1�7�*�#�,�*��/��/�#�4�-�"�,�/�(�2�%�?�-� �8�-�!�)�#�+�#�0�4�2�)�+�#�0�+�2�?�&�5�-�5�/�/�)��6�'��A��.�+�:�%�.� �.�.�.�.�/�0�4�)�)�2�9�&�6�)�/�0�*�,�6�6�/�,�,�/�(�)�+�-� �3�*�,�2�*�)�+��*�,�.�,�/�1�/�1�)�,�+�/�.�%��)�'�0�"�*�)�$�2�&�/�2�3�"�2�)�(�*��"�0�3�)�3�9�3�)�:�-��2� �/�%�-�6�.�7�%�0�0�'�-�2�-�6�4�8�6�C�:�E�@�R�O�N�b�T�`�Q�N�R�6�;�3�&�1�"� �>���7�+�+�+�0�1�6�%�$��'�2�%�2�8�1�5�*�+�)�'��1�*�5��2�,�-�-�0�0��+�,�.�4�'�1�(�6�(�#�)�7�'�0�!�!� �-��7�7�*�-�2�#�8�,�+�0�.�+�/�+�1�$�,�"�*�!�8�!�/�+�"�.�.�,�-�3�(�4�6�.�%�.�.�"�0�,�/�(�2�7�$�/�,�-�.�.�3�5�0�5�)�2�+�(�݀ԀЀڀрՀՀ׀ՀĀԀ׀րՀπ׀؀ـրՀ׀؀ԀӁ+�B�2�!�#�=�6�*�/�'�*�(�2�.�8�(�%�*�*�8�)�7�.��"�/�8� �*�'�$�.�"�&�9�8�)�3�2�+�.�3� �6�+�-�/�5�!�5�,�2�!�-�-�6�)�'�/�/�#�/�%�/�+�)�#�#�1�%�3�#�#�+�0�/��5�*�)�'�8�!��.�2�0�/�*�9�-�&�9�1�#�/�1�2�"�&�'�%�4�,�-�+�<�#�:�)�(�(�*��0�'�,�9�$�9�%�(�/�'�*�7�)�&�1�!�+�(�.�0�1�4�+�7�0�'�&�1�1�&�2�*�#�6��,�+�$�2�,�,�'�(��%�'�!�/�(�/�)�1�*�+�-�(�2�*�!�*�1�6�'�1�-�-�/�)�-�#�.�-�*�"�.�&�0�2�-�)�/�&�,�;�,�*�'�(�"�/�.�2�-�6�*�)�.�&�0�5�%�5�1�$�.�)�3�5�;�/�,�)� �-�3�4�%�#�,�:�,�$�2�-�,�3�*�-�,�+�%�0�-�&�-�4�'�*�0�0�!�*��0�3�2�(�2�4�)�'�*�)�-��3�-�"�5�3�*�4�1�'�/�(�'�-�0�'�2�2�)�2�6�*�+�#�)�&�)�.�-�=�6�'�5�(�-�6�*�&�,�/�0�5��'�#�%�1�'�7�"�*�!�/�*�$�,�$�/�(�+�/�.�"�%�-�+�-�,�.�0�(�)�/�&�!�6�%�0�#�'�3�8�.�(�8�&�6�$�$�*�&�%�.�,�6�.�&��&��-�/�.�/�%�7�3�)�)�4�+�F�>�4�:�;�[�O�W�M�K�T�F�4�>�5�1�,�/�*�8�,�7�+�,�*�5�&�)�/�-�0�6�,�?�*�)�(�+�/�&��9�3�,�9�2�/�*��.�)�7�0�&�9�-�%�+�3�5�!�-�(�+�*�4�0�5�/�3�$�,�.�2�-�-�.�,�,�-�0�:�$�2�/�)��,�-�/�7�2�0�,�(�.�2�"�/� �#�%�.�#�/�)�-�)�*�$�.�/�%��1�0�1�8�+�)�@�3�/�2�-�7�/�3�&�.�3�8�3�؀р؀ҀрՀ׀ـՀÀՀրрՀՀӀрՀӀրـրրρ.�1�:�>�1�(�+�0�2�6�4�9�&�0�2�-�&�6�-�+�1�1�8�6�(�8��8�/�'�9�)�/�!�5�"�'�)�8�#�2�*�,�(�*�'�'�-�1�$�.�)�0�0�!�$�9�+�%�2�0�'�.�5�0�0�+�0�#�)�&�'�&��.�2�-�2�)�+�#�+�+�0�'�&�2�"�%�)�5�$�&�&�2�!�(�1�8�#�7�'�(�&�,�*�:�-�-�'�0�*�1�!�(�5�,�,�/�'�*�(�*�-�%�.�"�2�.�3�-�'�/�!�*�(�'�,�(�-�)�/�1�5�*�/�*�+�#�!�.�*�0�'�(�6�4�4�"�+�,�&�.�$�(�6�*�)�6�)�3�3�+�*�.�6�(�'�9�;�(�-�,�.�+�&�2�&�4�"�0�4�)�(�-�/�/�8�7�%�*�"�.�,�1�-�0�,�<�(�&�1�.�2�#�8�%� �;�*�:�3�2��*�2�6�%�%�*�3�6�$�)�4�.�+�&� �3��(�%�4�1�+�7�9�7�!�%�&�1�4�+�6�,�:�/�.�6�8�%�!�,�+�)�/�*�$�-�5�5�*�-�2�-�(�'�2��'� �0�'�.�-�2�%�6�1�!�'�2�.�*�*�,�6�,�/�)�9�0�)�1�+�.�2�'���'�*�4�(�+�7�#�2�5�/�+�8�+�2�0�(�5�"�4�"�)�*�-�+�/�2�3�-�-�/�,�/��%�,�4�&�*�!�3�(�!�%�/�&�2�/�&�(�'�*�6�%�0�-�4��0�:�1�/�2�"�(�:�/�8�,�7�0�1�C�A�b�I�I�>�>�=�+�9�*�&�=�%�4�5�(�5�.�$�'�9�%�/�'�,�*�#�.�(�0�(�4�8�4�8�,�,�,�$�1��-�*�*�+�-�'�%�;�.�;�)�'�*�4�'�1�/�'�%�'�6�'�5�-� �,��1�#�,�5�3�+�+�3�/�0�+�.�0�5�/�'�/�1�%�5�%�5�+�,�,�6�)�)�,�.�-�/�1�*�0�1�/�2�-�-�7�,�-�&�*�,�*�0�9�&�2�;�3�)�/�)�"�:�*�'�ӀԀЀր݀րՀـրɀ؀ڀրր؀րր؀؀Հ׀Ӏ׀Ӂ-�7�,�2�5�,�!�+�6�+�1��$�+�3�&�/�+�%�0�.�0�/�(�(�*�1�9�:�*�-�3�'�+�.�/�&�0�/� �-�.�0�2�2�8�(�1�*�0�1�2�%�#�7�+�)�$�8�/�+�<�,�0�:��.�/�5�!�2�7�-�5�/�5�)�-�)�:�3�,�/�2�3�6�(�5�'�!�$�+�.�6�,�1�'�3�8�*�/�8�+�/�+�2�&�+�(�(�1�&�7�+�1�%�$�,�4�%�$�/�(�$�-�,�7�2�2�2�1�"�'�)�*�)�'�.�*�1��%�,�+�%�*�+�2�&�)�&�2�"�.�(�,�,�"�&�/�-�.�-�.�3��(�4�(�/�*�.�"�+�-�1�3�,�$�%�2� �!�"�'� �-�(�(�+�/�/�4�'�/�5�;�.�/�)��,�3�*�9�/�&�:�/��/�'�$�(�)�,�.�2�/�,�=�-�0�!�&�0�4�/�4�0�!�/�1�1�+�,�)�/�:�/�3�3�)�+�"�2�*�8�8�1�6�4�4�/�+�<�9�+�'�'�#�:�5�(�/�)�&�)�%�*�)�-�+�3�:�0�3�&�4��&�,�&�=�+��+��&�'�"�(�:�.�'�"�+�4�9� �/�#�+�!�1�(�2�4�!�7�+�0�#�&�*��2�.�0�4�$�'�.�/�*��'��0�+�(�8�%�-�+�*�/�#�)�#�'�,�)�!�,�7� �*�:�)�2�,�4�+�2�6�4�%�-�-�-�+�%�0�$�7�.�/�2�,�/�$�/�'�%�3�6�6�/�4�I�#� �A�J�T�E�=�@�9�C�0�6�9�(�<�?�.�3�,�'�,�9�$�(�)�'��/�'�5��2�+�,�#�*�#�"�(�3�,� �.�7��1�4�,�>�/�#�(�*�=�A�'�7�5�7��*�-�0�.�)�-�-�2�&�*�5�2�4�0�"�2�,�%�.�6�1�/�-�*�+�0�/�*�-�5�9�.�0�*�7�$�*�8�#�;��(�7�*�-�6�.�(�0�1�'�7�B�+�.�4�:�)�5�B�1�"�5��1�1�(�5�2�%�2�׀ـրӀ܀ڀրԀ׀ƀۀրـ׀׀ՀҀԀ؀ڀ׀ۀـׁ=�%�0�4�<�)�2�!��-�1�5�+�)�C�/�3�&�1�$�(�%�!�%�-�+�(�6��!�8�;�!�9�0�)�$�6�%�%�(�-�,�3�(�-�3�'�7�(�7�-�8�$�4�(�*�2�!�-�&�6��3�-�+�2�0�&�"�&�.�(�+�-�(�+�+�1�;�.�4�+�.�+�%�2�-�,�7�)�'�0�&�1�-�&�%�'��'�"�.�5�!�.�2�'� �,�,�/�.�!�(�+�$�&�(�/�*�9�/�)�-�(�-�'��3�&�(�/�6�/�)��)�3�*�(�4�5�0�/�/�/�'�*�%�-�5�/�.�&�2�.�2�;�(�-�,�2�*�5�*�'�3�*�.�0�/�+�*�,�%�8�5�-�1�<�,�,�/��-�)�!�!� �-�/�9�#�6�/�1�4�&�1�'�/��,�!�$�+��-�&�-�A�,�)�7�,�1�/�1�.�(�9�6�+�/�;�+�/�*� �(�&�3�3�)�;�0�+�-�.�2�&�-�(�5�)�&�4�"�-�.�:�%�%�#�.�0�:�8�#� �"�)�2�'�%�7�-�"��(�5��%�.�4�/�%�2�"�+�$�2�+�*�<�-�5�/�.�3�2�(�.�(�9�/�� �$�%�>�)�/�.�%�,�$�+�@�/�-�/�3�.�*�7�4�7�-�-�,�<�*�2�)�-�,�+�8�/� �+�)�+�)�2�&�(�!�%�3�-�0� �/�.�-�"�*�.�$�0�5�)��,�-� �3�(�(�+�'�&�.�(�+�*�'�+�2�9�(�+�5�2�1�5�7�/�8�;�:�C�*�>�F�?�;�,�@�'�5�1�4�6�(�!�4�*�+�0�#�(�!�.� �&�*�7��'�3�*� �/�#�3�/�%�5�:�&�%�+�<�(�/�&�,�1�*�.�,�1�$�1�2�&�!�1�*�5�5�-�/�)�5�5�)�&�'�)�'�9�.�.�5�+�-�'�(�-�5�'�'�7�#�'�4�"�+�9���%�7�0�9�0�%�3�"�'�/�&�"�1�(�6�5�;�1�;��A� �4�*��)�%�)�3�(�-�:�(�4�*�6�ۀۀـ؀ӀـҀ؀ӀǀԀۀрڀ؀ۀՀـԀڀـ׀׀ׁ-�4�.�.�)�*�:�=�)�0�4�#�%�'�3�7�9�1�+�,�'�*�3��/�8�7�&�*�&�5�:�+��-�-�!�2�-�%�5�%�+�5�7�0�/�'�4�/�*�-�"��)�"�*�=�/�)�!�6�8�)�$�*�%�+�'�,�9�*�0� �6�*�$�$�0�9�+�%�3�*�-� ���0�'�5��%�)�2�)� �$�+�+�%�'��#�.�,�$�6�(�+�9�3�1�(�'�/�3�'�)�/�+�3�"�>�-�)�-��2��$��$��1�/�1��.�/�8�#�0�/�+�/��-� �1�)�$�5�/�9�8�/�%�)�+��6�2�#�.�5�/�*�3�5�-�0�3��/�*�4�9�-�,�%��7��$�1�#�4�)�2�:�+�.�,�2��*�/�-�2�/�-�/�)�/�+�*�.�-�1�#�1�3�(�-�/�/�'�(�%�/�)�#�1�>�'�2�.�.�6�&�0�1�@�(�-�7��!�0�6�&�/�+�6�/�1��/�*�$�#�(�&�'�#�%�5�*�(�6�.�-�4�0�1�*�0�3�4�1�,�2�2��,�1�*�$�(�4�&�,�1�&�-�'�.�5�*�,�/�5�.�2�-�>�+�(�7�6�/�1�+�"�*�&�2�#�/�1�4�+�*� �,�/�:�*�2�1�.�-�+�&�7�1�/�%�.�.�,�,�.�2�*�/�3�+�/�,�&�5�,�&�,�-�'�'�&�%�/�*�$�$�;�6�+�/�,�1�5� �*�/�)�$�)�'�&�#�<�/�)�%�$�!�3�5�&�+�:�0�+�@�4�5�A�5�4�,�0�2�,�0�'�)�+�-�.�+�0�+�/�-��*�3�)�!�0�-�(�*�0�7�3�1�$�'�)�&�-�.�)�,�$�1��)�)�.�#�"�(�;�/�=�/�(�-�(�*�2�.�(�+�+�)�0�)�*�1�+�0��5�.�&�7�%�"�6�2�,�,�)�%�#�/�*�8�+�1�2�"�0�-�3�.�1�-�,�'�1�(�)�/�5�0�"�.�$�0�=�'�,�8�=�"�0�&�5�7�/�8�0�0�)�1�(�8�Ӏـ؀ҀԀـԀՀԀȀӀۀڀՀրր݀׀ՀԀ؀ր׀Ձ9�5�*�*�.�-�4�!�/�.�)�6�=�+�3�4�8�)�,�>�8�"�3�,�1�%�+�3�(�,�1�2�3�1�6�,� �(�2�8�4�,�6��.�3�3�"�5�2�!�"�:�5�+�)�0��,�'�)�.�-�!�-�:�;�3�,�!�#�3��3�(�-�9�8�3�"�2�5�+�4�'�5�/�/�1��)�1�-�9�8�1�3�'�,�0�'�+��*�(�#�0�&�0�'�0�1�0�2�$�7�!�/�!�*�)�8�/�4�6�$�%�(��'�'�%�4�'�'�5�&�)�,�(�3��9�,�*�"�1�7�"�4�"� �)�-�2�/�1�(�+�(�&�.�1�;�*�4�;�*�/�.�+�8��:�7�&�*�'�1�8�1�$�/�,�.�7�*�+�6�+�&�1�3�1�(�%�"�*�/�(�)�/�4�*�.�;�,�1�0�,�$�"�1�-�0�)�2�/�7�!�.�2�'�2�7�%�)�1�"�7�+�$�)�.�,�)�)�*��.�1�+�3�.�(�-�2�'�"��(�)��$�1�4�9�9�4��*�-�0��7�#�,�0�!��0�&�,�'�(�,�"�0�-�7�(�!�2�(�(�&��*�3� �0�$�0��)�;�/��<�#�&�+��)�(�+�(�2�)�2�#�1�+�'�-�,� �.�.�,�(�*��+�#�)�3�/�/�/�3�#�+�$�"�0�'��,�3�#�)�#�-�,�'�+�'�0��/�'�*�-�.�/��,�,�3��!�3�#�0�8�.�+�%�)�/�7�6�7��3�<�(�-�:�-�-�+�%�:�(�6�1�/�/�2�2�-�(�(�&�4�,��7�1�4�,�$�"�0�.�3�/�'�/�#�2�&�0�/�)�#�#�)�)�.�#�/�6�-�:�7�;�1�:�(��;�9�%��(�5�/�3�7�#�5�-�0�0�/�3�'�6�1�'�0�(�:�/�.�2�+�'�&�3�2�-� �+�'��+�:�+�/�.�*�,�2�2�0�'�+�-�'��6�"�0�*�%�,��0�.�3�2�/�2�$�(�)�2�(�;�,�1�:�%�2�7�(�,�4�րπրԀـ׀Ҁ؀ӀˀҀҀՀՀ׀؀Ӏـ܀׀Հ׀׀Ձ5�$�-�-�#�9�*�'�+�)�/�0�"�3�3�,�/�*�-�$�0�(�3�2�0�,�,�/�7��'�7�1�'�3�-��-�"�-�1�.�#����2�1�)�2�-�"�<�$�2�-�9�+�/�(�)�+�+�6�7�(�,�+�9�,�1�(�/�:�:�(�"�"�+�3�&�*�(�:�0�+�#�1��*�*�7�0�7�4�'�-�#�+�&�&�5�"�*�+�0�>�(�2�-�8�(�,�+�'�,�$�.�2�4�.�6�7�-�&���.�1�.�>�$�1�#�!�5�(�)�%�&�1�1�+�,�1��"�,�1�5�4�1�1�.�+�6�!�(�,�'�0�0�*�(�1�+�0�.�?�/�+�5�,�.�%�%�/�(�$�'�,�*�1�-�*�#��-�/�+�0�*�-�"�,�/�/�6��)�3�-�+�"�6�'�4�=�,�(�%�;�*�'�%�4��,�6��'�*�:�3�"�2�.�#�7�(�)�0�%�'�)�1�2�8�/�*�7�(�5�2�'�,�(�,�0�"�-�6�*�,�0�6�+�/�2�+�:�-�)�%�(�-�+�'�0�,�-�0�-�8�.�3�1�4�-�/� � �3�4�.�&�*�0�=� �+�'�H�'�2��4�'�)��!�%�+�.�=�&�-�)�.�$�,� �'�+�4�1�$�8�=�-�5�#�2�%�.�-��-�.�*�.�-�)�+�,�1�7�.�#��-�2�0�/�'�4�&�*�'�,�)�"�1�-�4�+�&�#�&�5�'�'�.�6�5�1�4�"�&�6�.�3�/�)�7�-��+��*�+�5�6�*�&�/�3�6�:�4�/�5�%�1�,�6�=�2�)�,�4�6�)�7�&�3�%�7�*�/�/�/�/�-�#�,�0�'�.�'�'�%�$�)�7�/�:�$�"�0�'�:�1�(�%�1�+�.�"�'�4�#�'�9�0�5�&�;�5�-�5��!�7�'�#�)�0�2� �/�5�0�5�"�6�'�1�/�4�+�(�/�0�9�9�=�'�/�-�3�%�2�3�,�6�5�"�0��$�*�/�-�*�&�(�=�,�;�0�7�%�-�2�)�%�3�&�/�.�/�(�Ԁ׀ՀـԀ׀ـԀҀˀ׀ԀՀـ׀Ѐـ݀׀׀Հ׀Հρ.�4�)�(�-�1�*�3�7�7�!�$�4�1�/�1�1�)�,�4�1�7�7�-�-�*�1�)�$�)�7�5�;�-�7�+�=�0�(�)�'�%�-��3�'�1�2�,�+�0�3�0�%�/�6�&�!�#�,�2�%�3��%�+�%�9�$�/� �,�/�,�!�2�(�.�%�5�$�5����)�-�9�)�$�:�,�,�"�:�-�/�%�%�?�'�2�-�+�)�#�.�3�&�5�-�%�-�3�%�5�%�-�,��&�6�)�,�7�&�0�/�2�,�4�*�#�'�.�+�3�6�)�.�>�6�;�$�)�,�+�,�,�-�)�)�,�9�0�%�$�"�/��/�2�+�&�%�(�.�0�5�2�+�%�0�%�*�-�'�-�'�5�:�4�3�3�*�/�-�1�#�$�/�,�<�%�)�.�0�4�+�-�0�,�'�*�5�(�,�/�!�5�*�2�&�*�8�,� �/�(�/�)�+�1�!�,�0�(�*�0�5�%�/�5�5�$�0�;�8�/�*�1�<�/�&�"�+�/�"�=�,�+�&�3��2�6�&�0�/�%�.�&�+�4��/�'��7�#�)�/�0�+�.�(�*�-��&�2�*�#�%�$�7�4�$�'�8�/�4�+�5�*�5�/�%�,�.�1�+�#�&�&�-�$�0�1�-�.�/�2�7�4�0�/�*�3�/�*�4�/�?��,�*��+�&�-�-�.�*�,�,�-�,�"�4�)�/�&��4�(�%�1�.�'�%�5�#�(��/�&�+�(�5�%�2�*�0�<�0�/�2�$�$�-�)�'�.�:�5�)�+�3�0�.�,�?�2�5�1�(�8�0�.�8� �3��*�4�+�:�#�)�+�+�3�(�+�/�5�#�,�'�*�)�+�2�6�3�,�3�/�&�4�#�6�.�0�:�0�1�)��%�(�,�.�0�=�'�!�3�-�#� �0�1�*�6�-�1�"�1��+�)��+�*�-�&�2�&�,�'�0�1�-�*�(�3�?�A�2�(�B�)�8�4�.�(�+�&�2�7�$�/�2�(�'�.�)�6�+�%�6�3�$�/�%�0�9�,�/�%�$�)�/�+�+�1�:�2�1�&�րՀՀԀՀӀՀՀՀɀՀԀԀ׀ЀրրπՀӀՀրՀՁ/�,�1�)�0�/�/�(�(�1�:�3�6�0�5�,�'�0�+�9�0�-�/�2�-�.�-��7�,�-�0�)��'��.�2�8�.�0�&�H�+�(�*�*�.�-�'�"�/�+�)�(�)�5�0�-�+�/�2�(�0�$�+�+�5�=�2��+�-�*�6�0�+�)�"�$�A��$�9�&�.�)�%�0�0��9�-�4�*�+�-�+�)�*�/�,�7�&�/�)�&�,�9�.�+�>�.� �%�8�;�(�3�+�.�8�>�,�/�6�,�#�/�,�*�.�3�)�,�2�)�=�=�'�$�.�.�2�,�+�"�4�<�!�/�$�%�1�)�"�1�"�4�+�2�:�"�-�.�(�1�)�4�=�)�/�"�$�'�,�)�/�6�/�6�=�(�)� �.�'�,��*�(�1�<�6�'�,�)�1�.�4� �&�,�5�"�8�"�9�'�3��1�+�,�.�/�%�"�;��9�8�0�4�&�-�/�+�.�2�5�%�)�&�'�*�4�&�%�5�,�1�2�1�0�(�1�$�8�*�,�-�,�+�#�$�2�1�6�0�1�7�6�.�#�3�*�=�:�)�(�"�3�/�0�&�-�2�0�!�7�:�'�$�!�9�(�.�&�$�2�0�)�+�*�5�1�2�9�"�/�'�-�4�(�*�+�4�+� ��.�(�.�)�(�-�+�+�%�*�&�'�*�!�0�.�'�"�*�)�-�0�+�-�2�"�-��,�-�2�-�0�%�+�-�+�/�#�6�)�)�5�"�3�,�&�-�"�+�/�1�4�)�3�7�.�.�7�$�3�*�3�1�&�5�)�%�4�.�2�0�9�)�4�0�.�3�,�+�#�4�1�3� �,�"�2�-�0�)�.�)�3�*��#�-�+�&�8�&�<�'�.�5� �(� �)�-�#� �4�(��#�1�*�)�'�,�+�3�1�/�%�.�.�0�1�5�&�)�+�*�:�+�,�,�"�*�3�&�6�+�3�-����/�3�3�4�'�6�)�0�%�&�3�'�)�5�5���)�&�&�5�0�/�-�)�%�'�.�0�C�+�0�"�6�6�5�)�6�8�B�6�/�+�=�(�3�;�'�.�0�׀Ԁ׀ۀҀۀӀــƀڀڀـ܀݀Հ؀׀ـԀӀ׀Ѐҁ6�'�8�&�"�)�&�(�(�.�7�4�1�,�)�9�'�/�5�4�7�8�5�/�.�8�&�%�0�3�5�+�&�(�8�2�#�+�&� �+�4�(�(�*�7�+��2�/�2�+�1�;�8�,�'�&�6�)�!�/�!�2�4�'�0�0�2�/�(�#�+�&�2�8�3�+� �2�/�-�1�(�,�5�,�0�*�+�2�'� �2�.�+�6�"�/� �.��:�/�/�+��)�0�4�.�4�0�/�,�.�0�)��"�7�2��*�-�+�5�'�4�)�)�*�#�6�<�'�-�7�(�"�%�/�.�'�(�(�8�!�4�'�1�/�,��1�0�/�%�*�0�,�#�>�3��(�*�)�,�5�7�&�*�%�.�,�%�9�,�-�2�-�-�%�3�*�1�/��&�.�7�+�/�'�3�-�(�5�$�4��!�#�0�5�2�3�(�+�/�4�;�&�1�1�/�2�0�.�6�"��4�1�7�3�7�4�(�%�*�/�3�2�/�0�)�(��%�$�1�$�6�+�3�.�'�&�-�/�,�1�2�8�)�$�+�-�/�1�3�3�*�=�0�)�%�)�&�4�%�5�1�"�8�%�,��/�"�'�'�)�$�1��1�"�/�"�)�*�#�3�+�2�,�*� �1�"�,��*�*�+�4�1�(�&� �)�%�'�7�%�"�(�1�+�7�&�#�/�.�5�.�4�7�'�+�/�"�,�*�2�.�.�/�-�4�*�-�#�-�!�(�-�'�,�*��-�?�"�"�1�0�4�"��'�6�,�3�3�*�1�&�3�6�#�,�3�3�(��4�6�7�2�0�.�.�1�!�7�-�*�7�.�'�0�1�-�,�0�.�2�#�)�6��/�%�4�7�/�)�/�:�>�)�*�-�"�,�)�.�,�)�%�0�0�,�1�1�+�*�8�#�1�0�/�,�;��/�+�*�"�$�7�2��5�%�*�2�1�*�2�*�$�4�1�(�.�3�:�6�(�4�3�5�5�$�0�0�/�*�2�+�.�$��$�/�&�2�,�6�$�7�,�.�3�-�*�1�1�/�9�&�*�.�'�3�-�)�+�6�1�.�%�/�%�%�7�+�Հ؀Հ؀ڀـπՀՀǀՀڀԀ΀րπӀـрր؀Ӏրҁ/�,�*�A�/�*�,�8�*�4�-�0�)�0�-�-�6�>�1�0�.�7�,��3�0�$�5�5�/�-�;�0�.�*�6� �8�,�$�0�+�"�6�6�,�/�1�#�+�8�/�$�+�'�8�'�(�&�/�.�(�(�2�(�4�*�/�(�3�-�7�+�)�/�!�2�7�(�-�(�=�%�+�(�/�-�2�*�"�;�.�%�*�.�$�5�%�/�'�2�4�'�/�0�-�-�!�7��/�!�&�;��&�4�&� �*�*�-�+�/�'�,�+�"�)�*�5�)�/�.�!�'�.�@�.�1�5�-�)�)�-�,�/�A�#�0�'�,�-�$�0�-�#�#�0�#�1�5�1�!�5�/�%�,�1� �-�3�4�6�+�"�%�*�2�4�7�*�,�.��3�#�9�-�*�,�/�#�/�*�:�'�,�2�(�%�4�-�4�!�.�,�.�.�,�0�2�6�1�3�/� �)�-�)�%�0�!�$�3�,�3�6�&�)�*�*�'�/�*�3�(�.�"�'�/�'�)�/�9�)�)�*�/�$�+� �1�� �,�:�/� ��-�$�4�%�1�2�,�8�4�+�+�%�.�%�"�0�6�$�'�3�5�2�1�&�?�&�)�.�&�/�%�-�"�"�&�$�,�-�'�+�.�3�/�.� �/�,�+�-�'�.�3�3�3�/�-�-�&�+�.�7�2�,�$�$�"�/�-�&�4�0�2�1�2�4�;�+�2�2�.�8� �$�%�+�(�0�+�+�<�2��"�,�1��3�(�-�(�2�=�1�4�.�5�4�/�+�(�0�)�-�0�5�$�'�0�*�*�$�-�)�(�$�2�6�-�)�&�4�(�$�%�6�,�(�+�.�!�/�&�1�,� �7�%�,�;�4�.��-�1�!�/�1�3�!�.�(�-�*�)��(�+�-�7�1�3�-�%�*�;�-�+�0�-�+�-�'�/�!�&�/�+�#��.�+�3�&�1�'�(�2�,�3�5�1�'�!�0�-�5�%�*��+�&�$�,�%�&��+�*�+�/�1�-�.�'�,�.�.�2�'�D�'�6�2�<�-�+�/�1�2�7�4�<�F�;�?�0�2�1�3�&�+�&�ԀԀ܀Ԁ؀Ԁ΀Ӏ׀€Ӏۀ؀ҀրӀրՀڀՀր؀рց.�9�*�2�,�-�5�3�0�0�,�&�*�-�%�3�3�3�+�+�0�-�-��#�)�*�2�5�8�"�&�/�-�%�&�<�0�/�&�.�4�&�(�2�*�-�)�/�-��1�1�.�7�*�8�3�#�%�'�.�(�(�2�#�,�4�)�9�C�7�.�%�(�/�4�%�"�-�1�!�.�)�5�(�3�&�3�<�0�+�(�<�-�(�.�6�7�/�'�*�%�0�/�'��3�'�-�4�0�,�1�>��5�!�*��&�2�+�0�!�/�.�!��3�#�<�1��0� �!�1�*�-�.�3�2�/��$�#�5�&�)��,�#� �!��4�/�7�$�%�5�7�'�1�$�-�/�&�8��7�2�'�'��%�4�$�:�6�#�%�$�5�#�&�$�&�,�+�,�'�/�/�(�0�7�*�#�/�"�*�2�+�0�/�(�*�,�3�,�7�)�&�3�&�'�5�/�5�3�7�5�-�2�2�-�/�5��2�1�,�7�&�0�#�*�"�:�0�8�,�1�,�;�&�(�*�+�3�'�1�:�-�7�"�*�7�9�4�%��;�)�*�%�3�1�.�$�2�4�/�!�+�$�3�,�%�)��*�:�5�.�)�&�%�%�-�-�9�,�7�.�#�)�8�4�)�(�3�8���:�0��!�4�+�(�%�5�$�(�+�3�'�%�%�4�,�3�/�.��6�-�'�;��+�%�.�(�!�5�3�'�%�(�8�"�.�%�$�3�'�#�7�9�%�.�9�,�6�&�)�"�1�(�2�C�+�"�%�+�*�1�/�0�2�1�?�*�)�,�5�5�8�;�9��&�2�+�'�+�*��,�%�1�:�0�-�(�)�/�&�3�+�#�.�6�%�%�)��0�1�)�,�0�$�3�/�%�*�+�+�#�'�%�2�.�)�'�5�8�6�%�,�%��;�)�2�5�*�'��-�%�/�"��4�8�)�$�-�&�/�/�)�+�!�)�)�/�(�0�)�0�8�9�1�.�4�0�+�!�+�.�7�,�5�1�7�,�*�,�+�9�.�6�3�'�5�:�&�3�%�/�1�#�1�.�)�%�)�3�/�=�+�)�$� �؀Հ؀Հـր؀ڀـŀ��ЀӀ؀Հ׀ӀԀр؀׀݀ـ؁)�-�4�9�"�:�+�,�$�$�.�*�$�)�*�0�+�6�%�1�'�=�%�$�3�&�)��&�.�2�'�2�-�'�3�*�+�0�-�5�'�1�4�-�.�:�<�,�/�-�/�.�8�!�%��7�'�.�)�0�-�.�,�#�'�)�1�1�&�/�0�;�4�'�+�:�.�4�)�$�0�$�(�%�+�7�&�%�*�/�&�#�:�,�5�9�$� �%�2�%�0�6�2�0�:�-�0�+�8�1�'�<�%�1�%��0�*�1�#�#�+�+�5�(�)�)�"�&�-�*�&�#�2�$� �0�0�2�'�&�5��/�4�*�(�#�.�)�-�<�/�/�+�'�-�7�,�$�#�7�.�0�.�1�-�.�%�$�;�-�6�5�(�+�.�)�.�5�0�&�(�-�*�)��,�$�7�#��2�/�0�)�5��+�!�$�4�*�8�-�4�;�)�,�!�<�*�-�3�,�5�.�*�,�3�)�)�*�8�/� �-�)�%�6�.�*�*�'�6�)�3�(�4�3�-�1�(�1�5�2�$��6�/��/�*�+�-�6�+�*�'�1�&�2�'�"�+�(�7�,�<�*�2�*�*�-�)�+�-�.�"�;��:�+�(�+�,�2�1�3�(�6�5�0�2�*�$�0�$�$�%�"�9�3�*�$�1�;�.�%�+�)�-��:�$�/�'�&�7�#�&�*�,��2�,�.�6�(�3�&�1�3�-�#�/� �-�*�+�6�3�3�*��(�%�$�5�#�6�0�.�,�3�!�3�;�1�/�5�#�3�'�&�+�"�0�.�*�=�*�2�%�8�4� �0�8�2��*�-��1�%�3�=�.�6�&�>�%�!�.�2�3��.�)�.�&�0�-�,�'�.�"�#�9�"�&�1�!�5�/�7�#�*�2�1�%�7�*�?�'�(�"�6�)�2�8�#�-�0�/�'�=�2�#�5�*�/�+�*�1�0�"�.�/�3�5�'�-�#�'��#��+�0�&��*�1��(�8� �/�(�8�2�,�-�A�/�&�9�"�1�)�+�-�/�)�(�#�,�/�,�#�0�'�6�2�$� �8�=�8�2�0��1�2�5�-�*�݀ӀՀ׀ҀрՀՀԀŀՀ؀րҀҀ׀؀ր׀ڀԀ؀ڀ؁"�7�3�8�(�!�,�.�3�;�'�!�-��/�.�-�1�(�1�1�0�3�2�1��+�&�%�$�2�7�(�'�'�)�%�*�%�0�1�&�3��,�+�!�$�0�1�'�%�'�+�'�/�'�$�&�%�%�;�+�0�#�)� �,�5�.�=�4�4�,�(��"�(�+�/�*�/�"�,�7� �)�)�:�'�(�+�%�/�1�-��(�+�)�6�)�&�)�5�2�3�0�!�7�9�7�(�"�,�)�0�'�"�9�&�5�,�,� �+�.�.�#�-�#�/�)�(�-� �5�$�/�,�4�(�%�5�)��%�-�+�-�/�?�+�)�"�2�(��1�'�*�>�$�%�*�#�2�3�*�!�(� � �)�)�7�/��'�(�1�#�(�*�(�*�2�2�$�'�%�.�2�9�.�(�-�5�%�,�+�'�3� �$�1�4�*�!�7�3�5�,�1�6�7�/�0�&�0�$�#�&�7�5�(�1�%�-�%�2�)�-�3�+�'�"�+�-�9�%�.�1�*�-�.�3�.�!�&�)�$�$�'�.�(��1�0�2�6�:�3�-�%�3�*�#�9�&�'�-� �6�8�)�,�*�/�9�+�0�/�8�/�4�,��%�*�%�/�!�3�)�4�-�4�.�(�+�)�/�*�-�1�,�,�)�#�$�/�!�-�'�&�3�"�,�!�4�&�%�;�,�*�(�)�)�/�/�)�)�:�1�&��0�0�&�-�-�,�1�(�+���5�'�#�)�-�3�&�.�)�.�%�)�/�$�0�%�$�)�/�&�%�/�5�3�,��'�%�2�<�/�*�+�)�4�*�,�"�6�$�6�#�-�2�<�1�1�4�/�)�.�$�-�-�,�'�)�%�#�<�*�'�*�)�(�+�-�/�1�'�-�-�+�/�+�.�,�3�*�=�/�>�,�,�/�+�,�"�,�)�3� �*�2�7� �*�)�'�,�!�,�(�0�,�-�-�7�,�'�4�(�.�0�3�!�.�/�:�5�4�+�1�'�*��*�-�!�)�7�#�+�2�5��9� �7�)�/�4�A�2�3�5�2�.�-�2�4�6�+�5�5�5�3�(�.�&�0�9� �3�ՀӀڀҀՀԀ׀׀րȀ؀؀րӀπۀҀӀҀրՀ؀׀Ձ-�*�5�-�0�$�)�4�0�3�$�+�A�,�.�*�)�6�,�0�(�)�.�(�'�.�.�9� �(�2�2�*�.�1�,�+�-�0�,�'�0�*�7�%�*�.��/�)�(�7�+�/�!�'�/�/�/�/�.���+�&�4�)�)�$�1�+�1�$��5�/�'�1�6�$�*�!�+�*�5�-�H�+�8�)�.�6�#�(�'�/�(�"�'�+�"�+�'�9�(�)�:�&�/�(�2�"�1�,�"�'�+�-�5�/�-�1�'�+�!�'�'�#�/�'�4�$�2�0�;�;�*�&�"�/�%�3�&�5�#�'�"�"�-�2�:��'�'�6�-�%�,�#�(�'�(�2�$�'�0�3�)�%�4�4�>�&�$�)��1�'�>�7�3�(�+�2�3�)��-�*�,�/�%�%�)�'�"�C�)�)�,�&�8�*�:�<�)�'�%�0�-�,�)�0�;�,�2�.�0�%�,�3�9�-�4�+�+�5�"�-�0�/�(�+�+�)�'�/�&�:�&�/�4�6�)�'�=�0�,�/�5�-�0�2�*��7�0�-�(�0�#�2�-�/�,�-�;�>��.�0� �-�-�+�1�,�+�3�%�,�3�'�/�+�1�+��8�0�/�3�!��-�6�,�$�1�(�/�$�/��-�)�+�'�&�-�"�*�)�,�/�)�&�!�(�9�,�#�1�)�%�&�*�,�8�#�&�,�/�&�2�,�3�)�%�)�-�%�4�&�(�5��+�&�/�4�(�2�1�3�+��$�2�*�-�3�&�6�0�.�-�6�.�)�(�/��/�3�$�'�(�:�+�/�3�/�(�;�%�.�&�7�+�/�(�.�;�8�0�0�3�$�/�,�!�*�5�-�,�/�0�&�1�D�/�0�+�2�%�$�)�3�"�1�6�:� �0��5�3�4�0�0�*�0�7�,�8�-�5�/�-�-�!�;�+�!�'�&�"��1�-�)�*�(�5�/�/�$�5�$�$�(� ��3�)�7�.�0�&�2�4�3�(�*�/�)�$�;�'�*�"�7�-�)�0�(�(�C�5�)�5�.�"�5�6�+�6�<�2�%�+�4�7�3�+�)�$�8�'�+�'�؀ր׀׀ހԀր؀׀Ȁ؀׀׀؀ڀ׀ҀـԀ׀܀؀ҀӁ.�&�+�>�*�#�-�*�+�5�.�.�,�&�0�0�2�.�)�.�:�0�.�9�%�-�-�<�-�+�-�$�;� �)�/�.�'�2�2�'�,�.�9�/�5�,�'�.�$�%�9�5�%�-� �,��(�.�*�5�=�2�(�/�!�4�2�?�2�#�'�&�/�,�'�+�,�5�#�5�'�'�,�&�9�2�2�.�3�,�'�4�$�+�2�9�.�:�=�.�&�1�'�0�;�)�'�,�'�/�$���/�,�&�-�'�/�1�&�$��.�.�"�'�'�.�(�!�)�/�'�.�*�(�5�-�,�(�*�3�<� �'�1�%�-�9�/�)�2�#��/�+�4��=�-�'�/�1��-�;�'�,�.�7�8�%�3�'�'�-�5�%�+�;�,�-�4��2�6�'�.�5�*�)�-�3�*�'�!�4�.�*�5�7�+�.�1�3�*��.�.�(�#�"�/�$��(�,�(�)�4�(�0�:�2�(� �-�-�)�.�%��3�,�#�"�/�*�,�)�(�)�1�/�2�"�.�,�5�:�1�6�(�(�/�-�4�4�1�-�'�#�4�+�9�.�.�2�;�)�+�3�3�&�-�(�*�$�%�&�+��0�,�9�0�)�/�&�.��+�,�#�,�*�-�/�'�.�/�)�$�1�<�,�-�#�;�(�+�%�$�#�+�-�%�,�;�4�5�,� �,�*��+�'�+�>�$�%�)�&�3�)�<�.�)��4�/�<�%�(��$�-�3�#�,�'�2�.�*�*�5�+�5�+�+�$�+�&�/�!�%�$�.�-�&�.�(�-�/�3�"�&�"�&�!�4�8��8�1�+�.�4�.�.�,�/�-�5�#�2�,�"�7�*�3�8��9�%�"�5�4�0��<�/�&�9�#�&��3�.�'�-�/�%�<�+�3�2�(�6�-�7�2�*�)�!�&�#�7�*�,�6�@�+�4�#�1�4�#�3�2�/�4� �2�7�-�/�(�7�3�3�0�(�)�,�$�*�:�-�6�#�7�)�)�*�2�(�6�,�)�1�3�/�-�*�&�4�,�.�1�*�+�.�/�3�/�%�1�;�5�7�2�/��&�$�3�2�׀Ҁ׀րրԀрՀـƀ؀ԀҀ׀Ԁ׀ҀӀπЀՀҀ׀ׁ9�6�5�/�2�/�4�:�0�(�$�*�2�:�;�4�)�,�#�-�=�)�+��'�/��/�*�3�-�*�*�(�.�$�/�.�=�)�.�-�6��/�'�/�,�2�0�#�*�&�%�#�.�2�%�4�*�-�3�2�#�6�(�#�"�/�/�&�&�*�5�,�*�(�2�;�+�)�$�2�*�.�!�'�/�)�+� �)�.�'��1�:�/�+�5�$�$�5�#�0�/�"�7�+�+�+�2�&�)�)�4�.�1�3�+�8�=�*�1�:�6�-���5�)�+�&�%�8�3�0�6�'�3�0�)�(��&�.�4�%�(�&�,�"�%�-�)�+�-�,�0�4�(�&��5�#�7�+�(��-�&�6�'�)�&�'�(�5�#�4�'�5�-�#�0�5�/�!�7�C�4� �.�3�2�2�-�3�%�-�5�/�!�/�%�+�-�1�+�7�*�/�3�#�1�=�*�/�-�0�)�9�$�#�%�.�%��0�0�-�,�+�+�3�(�1�%�=�0�$�1�0�.�(�3�1�4�-�)�2�&�%�>�2��(�-�'�*�'�*��%�+�6�-�%�+�5�2�7�!�8�"�+�#�+�2�'�+�/�5�(�,�'�/�3�&�.�.�%�+�*�&�-�&�0�&�,�(�(�/�5�/�6�4�3�4�7�=�.�3�,�'�1�"�%�%�'�)�0�/�+�7�(�%�$�3�+�*�*�)�%�5�?�*�"�/�,�*�,�3�4�*�"�$�%�)�0�&�5�(�2�(�&�#�)�'�0�*�)�7�,�"�/�'�'�(�1�7�*�"�)�/�6�3�)�(�'�-�-�'�,�5�*�(�,�'�0�.�+�)�.�'�#�)�&�,�/�,�$�!�7�4�>�/�2�,�4�+�5�3�'��/�.�$�7�:�2�6�#� �'�-�1� �2�1�$�3�4�.�?�"�>�/�'�-�3�$�-�=�'�1�(�.�-�)�4�-�*�)�1�6�!�.�/�9��3�2�&�)�8�5�4�.�"�6�%��(�,�*�)�/�'�+�,�1�(�.�2�$�%�*�)�&�,�1�+�8�/�+�/�8�6�'�+�2�-�'�.�&�+�.�4�0�4�*�Ԁ׀Ԁ؀ԀӀ׀܀׀ɀԀҀ؀Ѐـ׀Ӏڀـ׀׀րՀԁG�+�%�8�+�*�6�#�-�*�'�0�/�4�1�5�0�1�/�9�&�-�1�4�<�2�-�4�)�!�1�4�)�%�6�+�3�:�0�*��1�/� �!�%�#�5�(�*�2�+�,�&�-�/�#�*�)�$�/�4�4�3�-�9�?�,�/�*�%�E�4�1�&�,�,�#�5�+�)�,�!��:�)�&�-�,�,�0�1�'�'�4�,�/�%�)�+��'�$�8�*�4�4�/�+�/�-�=�/�)�/�+�0�.�&� � � �-�1�-�$��2� �1�,�4�7�(��2�)�*�6� �6�1�B�'�1�/�$�3�*�5�2�!�,�0�*�5�3�&�+�"�8�"�!�(�-�3�$��/�7�.�4�7�0�;�)�%�%�(�1�+�/�#�3�$�4�/�"�'�'�/�8�*�&�7�-�4�*�-��"�*�4�1�'�'�,�$�'�.�3�)�1�+�0�.�%�&�6�5�1�"�2�(�+��7�,�:�&�4�*�0�*�)�>�8�'�4�.��)�%�7�6�/�!�-�4�"�"�)�&�1�,�/�<�6�'�)�(�0�3�(�)�-�%�(�'�'�*�'�5�3�)�-�'�1�.�/�:�1�)�-�-�8�%�.�&�#�1�8�+�6�3�3�3�(�%�9�/�.�%�'��%�:�#��.�0�.�(��'�+�;�)�)�%�-�9�+�-�(�8�-�*�=�2�/�/�1�4�/�,�2�+�+���/�+�$�/�'�/�0�*�4�7�3�&�#�;�/�%�%�4�.�*�1�.�)�-�)�3�%�1� �(�2�#�)�,�7�-��:�4�:�0�2�:�+�-�2�*�(�;�/�3�-�!�-�1�.�6�.�.�2�)�+�%�(�'�+�9�&�)�,�(�%�/�'�#�1�)�0�-�(�.�3�-�5�/�1�(�*�,� �"�)�3�3�6�,�0�+�(�-�/�7�/�0�4�2�7�+�7�0�*�(�'�,�/�'�6�1�-�5�#�#�1�7�3�2�5�.�"�'�+�4�:�1�(�%��#�0�5�C�2�9�0�3�-�0�,� �6�4��.�*�&�1�+�7�,�9�1�)�:�'�9�&�(��0�(�,�ڀԀԀ܀Ԁ؀ӀـπÀԀՀӀڀ؀Ӏ׀ՀՀրրӀՀ؁3�3�8�)�'�$�,�'�9�?�+�&�'�0�)�)�'�3�(�*�&�;�/�+�*�:�)�4�.�'�!�0��!�5�/�/�%�*�(�1�/�#�,�)�6�&�*�3�2�7�.�:�+�#�/�/�2�%�-�$��,�(�4�%�-��5�$�8�.�(�,�&�*�*�-�+�#�2�)�*�.�0�9�1�5�/�2�(�4�%�%�(�4�&�*�.�/�(�4�4�+�4�+�'�0�$�%�%�4�C�.�.�<�)�,�-�*�(�2�0� �&�%��/�/�*�.�/�+�1�+�&�9�%� �#�#�,�)�)�,�-�%�9��4�'�1�4�0���-�!��7�+��,�#� �)�$�)�,�7�.�4�9�4�/�8�+�-��)�)�%�,�'�)�'�)�9�-�'�2�,�0�+�#�%�-�0�-�+�)�#�/�(�-�$�.�1�/�2�0�'�.�-�?�5�,�'�"�"�/�%��*�.�0�%�&�2�(��'�!�0�'�3�"�,� �3�/�"�/�6�)�4�*�.�)� �2�#��<�)�)�1�,�.�+�-�/�*�/�)�8�"�/�+�1�/�+�4�+�.�"�1�$�)�)�2�)��/�3��(�+�A�+�1�+�.�'�.�-�.�+��/�/�,�8�(�5�$�3�*�0�7�!�*�/�2�)�'�/�-�!�+�:�#�)�,�-�#�5�,�,�$�*�.�"�&�)��1�0�.�-�0�3�!�+�/�/�,�(�5�&�-�+�.�-�/�0��3�,�8�7�7�&�1�3�&�*�(�+�6�$�4�+�.�1�6�0�-�(�5�%�4�4�"� �/�"�0�'�+��+�#�'�-�%��%�(� �"�/�?�7�-�.�&�2�7�.�-�/�(��.�7�(�-�,�+�+�2�.�*�:�(�-�*�,�4�%�)�.�=�#�+�#�3��'�$�9�-�-�-�"�$�)�2�<�-�!�&�/�%�2�4�0�7�,�1�6�>�/�'�-�/�+�'�:�;�.�1� �/�.�%�+�9�3�*�%�0�&�)�7�B�/�:�%�1�:�*�)�.�4�8�)�*�/�9�/��+�7�8�,�&�,�6�0�+�׀ր׀؀րրӀـҀŀӀـՀ׀Հ܀ՀՀҀ؀ՀۀրՁ4�7�*�/�/��3�/�*�<�-�7�.�/�)�(�'�3�2�)�.�7�4�%�3�$� �+�0�/��*�*�2� �2�&�)�6�%�'�*�9�0�#�#�,�$�9�7� �0�0�1�'�'�#�-�%�.�1��%�#�0�*�1�*�.�$�2�)�&�+�(�1�"�1�5�/�)�"�"�8�6�+�(�+�!�1�%�,�:�4�'�(�'�6�0�$�+�2�:�0�1�,�'�+��*�#�)�(�A�,�5�(�(�+�,�#�4�'�.�1�%�<�,�+�*�0�'�2�%�'�,�#�+�/�#�>�1�+��6�#�+�,�.��&�%�3�2�$�,�4�-�.�-�'�)� �=�'�0�2�6�.�1�#�2�'�.�)�1�3�%�!�"�1�.�&��(�'�(�%�;�#�'�6�%�:�/�"�+�0�(�1�4�2�*�&�5�6�5�#�&�-�/�8�&�&�/�-�.�2�%�4�&�/�H�'�3�2�+�+�+�"�2��8�5�+�(�2�/�<�8�8�.�+�)�8��4�7�(�/�0�*�/�)�8�&�2�1�8��6�*�1�+�%�*�5�+�1�'�6�.�&�+�'�@�+�;�7�)�:�/�7�-�4�%�6�$�7�6�.��/�&�2�'�$�"�.�2�5�-�:�*�*�4�#�%�/�9�3�5��!�.�+�-�*�+�3�.�&�A�%�1��!�3�1�%�B�$�1�,�%�"�(�'�3�/�%�'�8�+�4�5�3�=�,�9�3�,�3�9�0�/�(�1�*�+�.�?�#�(�1�*�2�1�+�&�+�*�,�3��2�&�7�4�)�&�,�2�'�0�-�(�&�,�,�(��/�-�-�1�.�4�'�1�3�,��(�#�=�.�.�/�.�+�(�,�(�-�+�0�/�9�(�,�0�"�1�!�5�1�/��$�$�3�.�$�(�4�3�1�+�-�@�'�(��,�(�&�-�+�� �*�&�.�*�-�0� �/�7�,�(�1�+��-� �,�)�&�-�;�)�6�.�7�=�7�.�5�7�/�)�'�1�%�;�+�"�)� �(�/�7�(�.�0�-�'�3�$�+�,�/�!�5�%�-�1�.�-�/�Ԁـۀـ؀рԀӀӀ��ـڀӀЀՀ؀ۀр݀Ԁ׀Ѐـځ0�1�1�6�/�8�'�1�(�.�7�)�0�(�*�9�;�$�)�5�3�)�/�#�#�*�0�1�0�2�3��!�3�1�/�)� �?�/�-�)�6�%�(�8�,�&��+�'�,�/�-�2�/�-�8�*�$�+��&�-�0�/�)�'�3�+�=�,�$�1�2�2�3��,�7�2�/�+�7�+�&�9� �!�5�5�$�/�.�0�.�+�3�9�4�+�,�9�+�+�6�1�1�*�%�#�-�/�(�$�5�+�+�)�!�(�%�6�(�2�4�"�2�(�-�(��7�+�/�&�-�7�4�7�*�(�1�4�7�,�.�*�-�!�6�*�)�)�(�'�(�5�,�)�*�2�-�/�"�3�$�.�.�(�;�:�/�)�"�6�/�+�-�1�#��%�%�+�-�&�,�,�-�%�-�$�,�$�'�-� �'�#��$�+��2�'�*�/�2�6�2�*�5�3�E�-�(�+�)�4�/�-�0�/�'�+�/�(�(�(�5�.�1�1�6�*�)�.�1�3�(�3�:�+�)�*�.�.�0�'�%�$�*��4�+�2�%�2�&�+�'�9�?�(�$�+�+�1�,�/�#�)�/�(�)�.� �2�(�+�.�,�-�#�����3�1�3�'�#�7�8�/�:�"�)�0�8�&�1�#�3�.�)�:�*�(�*�+��+��&�+�8�(�8�/�7�3�(�1�'�+�)�)�-�3�(�3�+�/�'�-�5�$�/�/�8�)�,�.�;�,�0�3�%�0�.�'�-�2�,�$�)�:�-�"�@�!�3�-��)�%�.�%�6�"�0�-�-��3�4�1�&�2�6�$�8�6�%�)�6�:�7�)�2�7�;�0�:�/�)�)�2�-�3�#�+�/�3�/�(�&�!�%�'�+�%�6�3�2�*�2�&� �"�,�$�+�$��/�'�'�)�0�4�7�,�+��3�'�)�*�2�'�#�#�+�#�.�8�6�*�-�#�-��.�2�#�2�/�*�'�,�+�(�D�'�0�(�3�+�5�%�*�-�.�2�'�+�,�?�6�,�*�2�,�0�8�'�:�2�4�-�'��-�1�'�-�0�/�=�)�+�-�)�,�'�&�7�3�ԀҀ؀܀Հր׀׀ـˀՀ׀Ԁ׀׀׀ԀڀـڀрՀՀҁ%��'�:�(�)�4�+�3�1�1�2�&��%�"�2�1�,�)�(�;�2�-�3�0�5�(�/�,�(�5�%�'�:�%�%�-�3�,�-�1�0�+�=�'�,�#�.�>�-�,�!�5�7�-�&�1�2�-�/�(�-�+�+�9�8�4�5�1�*�(��3�5�9�%�5�2�4�+�6�&�%�)�,�9�+�3�4�#�5�0�'�+�&�*�2�6�-�+�"�5�9�)�.�3�(�/�6�.�%�6�&�/�'��.�$�-�/�$�0�)�?��:�*��2�.�)�3�2�0�%�.��&�0�-�/�(�2�6�2�5�+�+�.�(�/�)�0�3�/�$�+�%�-�3�-�*�+�0�%��5�/�$�-�+�6�$�)�"�2�.�1�"�*�-�'�%�7�$�-�+�'�0�)�)�)�-�"�)�#�&� �4�(�4�1�/�6�0�/�/�5�)�6�'�&�#�2�6�,�/�4�0�'�#�&�0�'�:�*�7�.��)�4�-�1�2�<�1�4�.�)�)�&�&�'�*�7�0�4�)�-�9�)�6�)�3�4�1� �/�4�&��$�.�1�1�3�9�-�.�.�-�+�*�3�%�/��1�+�6�'�'�;��(�/�"�)�/�#�$�8� �(�1�3��7�.�=�*��+�3�$�3�0�"�1��+�+�.�/�3�*�1�0�3�A�4�%�&�+�4�.�-�%�5�)�'�9�.�8�1�,�'�5�2�-�*�#�,�/�1�,�4�;�,�1�3�,� �,�)�#�0�'�)�4�'�-�+�0�)�4�#�9�'�$�&�;�/�:�.�9�(�5�8�)�)�(�*�-�$�&�,�+�*�2�.�,�)�#�4�!�$�%�-�"�5�*�7�'�,�/�+�+�-�'�)�+�3�3�<�/�-�5�(�!�$�3�0�*�)�3�&�?�+�3�%�3�-�3�2�/�/�4�1�!�$�-�1�,�+�,�%�+�.�1�>�/�+�#�6�0�E�'� �5�$�6�'�4�+�/� �2�4�;�C�'�(�(�%�5�+�/�1�$�+�0�/�&�5�,�$�"�=�3�/�C�,�/�4�<�3�)�-�#�4� �7�+�8�5�8�/��4�%�ՀӀրрр؀ҀԀՀŀ׀րՀ׀΀π܀ր׀Ӏ݀рԀځ5�6�2�,�#�6�6�%�*�.�!�0�%�#�)�+�)�/�6�4�1�5�2�+�0�/�)�)�=�)�+�+�+�1�6�*�6�+�1�'�.�(�4�6�5�,�-�5�;��1�%�,�,�2�6�-�%�*��'�.�-�.�&�&�/�/�*�6�#�9�1�0�&�1�+�-�%�&�$�'�/�%��8�)�5�.�1��*�&�1�,�)�$�2�'�+��-�$�6�0�7�#�5�3�#�;�5�.��3�@�3�*�,�-�-�&�)�0�1�/�*�/�0�2�.�3�&�;�A�%�+�)�0�.�0�$�(�$�1�*�'�#�*�8�!�(�+�*�0�+�.�-�+�(�$�+�)�*�9�)�+�1�.�/�9�)�+�6�+�6�(�/� �2�3�3�+�4�$�*�"�,�4��+�+�$�-��$�,�5�'�$�1�2�/�.� �*�3�.�,�9�-�/��/�7�$�6� �0�3�/�,�$�+�&�#�%�0�1�.�2�4�/�2�0�,�!�*�&�8�0�(�,�2�8�*�0�(�3�-�-�&�%�!�+�&�.�8�9�#�,�*�(�#��/�8��.��&�<�3�%�-�1�/�0�%�$�)�*�+�(�,�0�)�,� �6�(�3�/�)�+��5�2�+�*�:�'�$�'�)�%�5�,�;�'�#�%�&�&�)�&�+�-�-�$�1�*�(�6�;�)�'�"�$�+�/�"�1��#�)�7�=�$�3�2�,��&�#�'�&�(�.�-�!�"�.�'�/�/�'�.�,�'��/�!�)��0�2�-�.�0�3�*�%�+�1�2�>�)�&�(�+�.�0�'�'�+�,�-�8�5�-�(�.�$�"�*�&�'�)�"�)�'�+�*�1�*�&�.�&�3�(�-�*��*�&�)�+�(�1�8�$�-�1�$�(�1�/�3�"�(�-�(�*�0�-�/�/�!��+�0�'�4�#�0�-�1�0�*�3�.�0�$�>�#�;�,�,�*�'�)�&�'�%�/�3�&�(�-�(�+�8�.�(�&�0�)�;�2�/�)�1�/�)�7�*�2�:�)�/�/�;�-�(� �5�4�1�9�&�1�9�)�1�4�2�-�1�6�$�5�ЀԀ׀ԀՀՀۀՀ܀ŀрҀ؀Ӏ؀ــۀހЀՀՀրҁ/�,�/�/�<�&�#�"�5�1�(�;�.�)��1�.�'�E�/�:�-�-�/�.�3�)�6�(�-�#�$�"�1�-��1�(�4�/�/�+�5�9�/�7�-�/�'�*�/�%�.�"�*�,�(�(�7�.�+�/�,�2�5�;�/�)�:�1�(�3�-�)�%�)�$�)�0�/�2�0�1�2�)�+�*�+�2�3�(�'�(�%�.�0�-�&�-�)� �(�%�4�5��&�,�&�*�"�9�3�-�4�;�1�,�+�4�.� �$�'�8�3�5�.�#�&�/�/�1�7�)�-�-��&�*�7�%�+�(�2�6�%�1�-�3�*�-�&�+�0��9�4��.�:�$�%�(�#�!�7�/�-�'�'�$�#�-�2�4�1�)�-�0�"�+�7�(�/�2�*�2���1�"�.�/�+�&�:�%�.�*�"�+�'�&�#�0�8�&�(�#�*�)�/��5�&�)�*�+�1�$�:�2�%�&�-�0�6�5�5�4�'��#�*�-�-�)�/�*�%�*��$�(�)�&�0�5�%�.�%�)�%�&�1�&�&�:�+�3�+�-�2�0�%�*�/�5�0�(�4�.�7��(�8�)�-�.�#�4�(�&�,�,�&�*�/�!�-�*�*�'�5�,�&�8�1�*�3�.�.�%�"�)�:�*�(�'�%�4�(�4��'�5��4�*�-�1�&�+�*��7�!�3�!�#�)�$�-�3�0�0�'�&�9�1�0�+�#�7��*�&�&�3�2�'�%�+�'�1�(�(�1�=�-�6�/�B�/�0�$�2�'�7�1�0�)�)�(�2� �-�+�,�$�2�+��9�,�4�%�<�2�9�-��7�;�&�&� �$�2�)�+�(�*�/�6�0�*�0�.�!� �#�+�,�+�/�8�4�.�'�(�%�6�0�3�2�-�&�*�6�/�/�%�3�*�-�1�!�4�&�+�+�$�"�)�3�)�1�&�'�9� �.�3�/�+�+�.�-�0�/�6�+�1�$�/�9��5�5�+�'�2�/�*�7�0�1��,�.�+�-�3�)�#�8�,�8�5�*�-�0�<�3�$�*�1�-�0�-�6�;�.�2�-�9�(�1�0�'�րր׀׀րՀππڀƀԀ؀րـЀ؀׀܀ЀՀԀـڀہ7�.�+�-�%�-�-�,�7�-�,�2�4�)�)�(�&�6�0�5�1�1�#�)�/�2�3�'�&�-�0�8�&�(�'�2�)�-�'�9�0�6�9�)�.�)�5�2�+�-�*�2�7�+�7�0�/�-�#�1�/�#�/�8��+�2�,�.�'�1�/�+�5�'�%�.�/�0�*�.�/�(�0�:�*�#�*�5�(�,�)�#��!��&�.�3�+�/� �)�1�/�2��+�,�*�/�,�%�6�'�+�/�9�.�-�/�*�1�:�"�0�6�/�-�(��(�2�-�-�&�)�*�,� �(�7�6�+��.�:�+�#�'�'�$�#�+�/� �'�+�?�+�/�!�1�"�%�)�$��)�+��'�� �+�+��+�'�/�5�+�$�'�/�0�/�!�0�$�"�"�"�*�-�.�&�4��6�/�9�)�(��6�:�.�&�0�-�9�)�+�)�.�-�1�,�1�-�5�'�+�.�$�;�/�7�4��+� �1�&�0�+�3�)�7�)�(�/�)�,�'�'�-�(�#�1�)�!�3�(�2�$�*�'�1� �:�1�&�,�"�>�)�(�2�"�#�,��&�*�/�4�5�"�'�(�0�%�*�5�)�!�8�'�.�2�'�.�4�2�3��5�&�&�(�4�,�2�-�>�)�4�'�&�4�(�-�2�+�#�9�2�.�-�:�'�)�"�/�6�2�5�)�,�/�3�(�2�6�4�(�-�*�)�0�9�5�)�-�)�.�5�,�"�,�%�7�)�!�*�(�"�0�-�1�6�%�/�"�5�)�8�0�/�4�3�.�*�/�%�0�4�%�4�'�)�.�1�*�+��<�,�'�/�7�#�"�!�4�%�%�4�)�+�.�8�3�<�)�&�'�*�,�,�%�)�;�)�,�/�3�-�2�.��(�)�/�7�(�!�&�%�)�.�2�'�+�$�(�5��7�2�2�9�!�1�3�&��#�.�%�7�'�+�5�.�.�4�0�-� �8�0�5�5�"�)�*�*�-�.�1�0�)�4�*�"�'�+�7�6�3�*�1�8�"�'�.�$�7�.�3�7�/�'�1�!�&�/�.�8�4�(�-�#�'�,�8�-�1�)�׀׀π܀Ѐ؀Ӏ؀ӀǀՀԀրր׀πڀ׀؀׀րՀԀف2�'�7�6�)�#�+�$�(�*�1�+�.�)�/�-�,�8�.�-�+�.�+�-�&�3�4�#�-�#�6�+�5�-�&�&�;�'�%�;�4�*�/�$�/��3�0�;�=�.�6�"�2�)�:�-�+�)�5�&�.�/�9�)�$�+�1��'�9�(�&�6�4�1�0�'�'�;�&�)�'�)�7��#�(�/�%�(�1�)�%�#�)�&�#�6�+�+�2�,�,�4�1�3��3�(�"�3�3�&�!�)�2�'�)�!�.�/�#�4�0�-��+�)�5�,�+�#�+�+�5�'�3�7�,�1�+�*�!�.�.��2�1�!�,�(�$�*�1�-�7��*�.�.�5�&�-�-�,�/�&�&�0�;�-�:�)�7�%�5�(�'�;�)�&�2�3�/�/�4�'�*�E��1�+�7��4�,�%�A�3�,�-�,�5�/�,� �>�+�&�)�0�)�D�+�1�(�.�4��4�%�&�!�.�(�.�/�A�%�-�*�:�#�;��7� �'� �&�"�6�+�1�2�'�2�*�+�8�6�!�(�+�-�*�'�+�,�)�2�7�.�-�+�(�+�1�?�"�5�'�2�0�0�-�4�&�-�&�%�"�:�.�6��0�0�4�9�&�9�3�.�,�.�)�*�0�#�5�B�5�9�.�/�3�,�)�-�3�"�+��$�(�(�!�.�%�'�"�)�*�3�$��$�7�9�0�*�,�+�(�/�$�0�-�*�(�%�5�5�)�4�2�,�@�.�/�-�3�)�"�/�+�/�"�'�>�5�)�(�<�-�%�%�*�-�&�1�$�/��/�'�)�/�*�-�/�$�.�/�&�5�3�(�(�+��)�!�3�.�9�(�6�8�0�4�'�#� �,�%�1�0�$�7�,�9�,�*�/�(�2�5��+�,�'�+�*�2�@�1�2�/�2�(�.�'�6�"�0�1�-�2�=�*�0�*�*�)�+�*�5�3��/�-�.�,�/� �3�5�.�"�(�3�/�+�4�;�9�-�<�*�,�,�)�*�)�7�/�"�/�.�1�.�2�%�*�4�2�2�.�3�'�(�9�5�;�/�&�2�1�-�0�.�1�*�3�&�5��0�-�Ҁ؀ـ׀׀Հڀڀۀʀ׀׀؀ҀӀۀրـҀՀ׀ЀԀف,�%�0�/�(�4�#�0�5�8�3�%�.�"�&�2�0�,�%�&�1�+�0�/�'�"�&�3�3�7�+�1�+�#�7�4�6�%�3�+�,�1�,�8�'�#�%�1�;�"�*�-�$�1�(�0�+�/�;�(�)�;�)�+�%�+�2�+�9�$�1�1�+�&�(�-�.�*�1�0�,�&�<�&�3��'�-�"�%�-�&�!�"�1�5�-�%�.�3�%�1�&�%�6�+�6�!�8�3�.�.�&�3�%�3�2��(�7�'�2�)�2�&�(�*�5�2�*�)�6�&�4�/�6�'�/�,�6�'�)�#�(�1�%�&�/�&��*�-�7�3�+� �&�'�/�3�*�)��4�-�(��-�2�5�*�'�%�#�/�%�,��'�3�4�(�$�.�-�%�#�2�3�4�2�+�6�&�*��3�*�"�)�1�/�1�(�/�3�+��7�4�&�)��1�/�-�)�)�1�(�-�(�-�5�+�-�0�*�2�3�2�3��*�(� �-�!�+�1�+�-�5�7�.�2�2�-�#�/�+�/�1�#�)�,�5�%��/�-�,�/�)�%�%�(�1�5�(�"�"�&�1�*�'�1�3�%�-�,�)�1�.�0�7�(�-�.�+�+�6�8�A�0�%�*�-�7�5�+�-�,� �)�4�'�(�0�-�<�!�)�#�6�%�5�.�*�6�2�1�'�*�(�.�-�#�/�3�1�+�'�-�*��*�)�+�#�.�'�*�-�3�,�2�!�%�*�4�-�+�.�*�(�0�4�+�2�1�-�0�-�;�)�*�3�4�$�&�7�$�4�1�/�$�,�4��&�*�.�#�.�2�2�*�1�0�2�'�'�&�2�-�0�5�-�-�1�(�)�)��#�2�2�"�*�,�7�:�.�8�4�)�,�6�,�/�-��/�-��/�.�1�+��7�$�$�3��)��4�"�#�%�)�+�.�#��2�*�-�(�+�3�%�6�5�2�9�+�'�+�/�*�/�7�'�*�5�#�4�/�*�'�!�$�2� �1�)�"�1�;�5�5�+�/�.�)�2�2�$�)�3�+�2�8�+�7�5�/�4�8�.�$�'�7�(�%�9�5�"�1�ҀՀՀ؀؀Ҁ؀܀ـÀԀ׀րՀր׀Ӏۀ׀ԀԀ׀؀Ձ1�1�0�'�3�3�/�%�.�7�&�5��(�3�%�-�9�(�+�.�4�'�1�3�"�4��)�&�/�/�7�-�,�0�'�)�2�3�3�(�9�.�-�2�)�.�'��2�9�%�!�(�/�<�8�5�,�'�,�:�.�/�3�%�3�,�,�+��/�2� �6�)�9��&�;�0�:�4��(�0�,�(�#�*�*�#�5�/�4��3�7�2�@�%�)�(�@�-�(�0�-�(�&�0�4�(�0�+�-�(�2�1�$�5�(�,�9�9�-�6�1�#�4�� �7�(�!�+�)�!�+�)�.�(�;�/�*�3�'�1�4�7�*�,�,�(� �.�,�0�/�:�'�,�0�;�(�$�,�4�1�%�0�+�&�%�,�6�4�+�*�"�.��5�(�.�(�-�0�'�,�"�1�5�1�,�3�"�'�*�"�3�-�)�3�(�6�3�0�<�*�<�/�1�,�3�,�6�2�%�'�4�/�%�/��7�(�1�6�.�.�'��'�9�6�(�9�/�,�+�.�-�-�(��/�.�.�%�.�1�%�2�.�$�.�#�4�(�*�0�4�+�)�-�+�5�)�,�'�3�0�*�&�6�7�&�6�2�:�/�+�%�+�5�2�1�+�'�C�-�3�1�3�#�1�/�'�!�;�!�"�$�*�.�2�;�1�+�%�6�&�*�3�1�*�(��0�,�*�:�/�*�,�)�,�)�$�.�!�,�1�*�.�"�,�(�*��,�4�4�/�-�9�!�-�-�(�(�.��7�+�<�,�*�*�,�0�0�+�3�.�/�+�2�1�1�*�2�)�*�*�*�'�(�.�-�1�1�3�,�*�'�%�$�(�(�>� �+� ��(�#�0�0�(� ��0�.�5�3�7�*�7�/�1�6�(�+�.�,�1�+�5�0�1�*�,�4�.�6�;��2�1�&�A�-�,�.�$�1� �1�4�&�&�#�"�-�>�.�*�*�2�,�7�1�1�$�5�,�.�1�+�,�&�0�2�7�*�7�7�%�$�;�)�)�,�+�2�-�/�8�5�+�"�1�'�%�-��7�%�/�,�3�'�1�%� �+�!�6�(�7�(�4�$�/�1�5�1�2�,�׀Ҁ׀׀ـ؀րӀԀ€ԀӀԀՀڀրӀԀـ׀ހԀڀف+�2�/�*�,�+�-�(�,�*�:�$�1�3�,�/�3�6�?�)�5�5�'�/�-�%�&�'�)�%�&�/�-�2�-�-�9�4�)�-�*�*�.�$�/�,��(�$�1�+�)�3�+�'�-�)�.�+�2�%�$�+�2�6�4��)�#�4�)�8�'�-�1�*�*�0�:�5�-�,�,�3�(�'�#�2�)�1�+�-�8�'�7�&�-�7��,�-�)�!�)�8�2�3�.�2�!�-�4�7�,�/��.�,��5�-�-�=�5�,�'�6�/�(�%�'�/�=�!�5�@�/�4�&�.�4�9�&�+�(�*�$�-�?�!�)�"�"�!�&�)�)�4�6� �)�$�-�.�(�+�%�&�/�%�@�2�/�2�,�/�,�"�%�1�,�%�7�.�1�<�-�+�-�.�+�'�+�$�-�%�(�5�.�.�-�!�)�$�'�3�/�'�2�+�6�1�$�(�.�3�.�#�$�,�"�)�&�,�*�+��"�:�&�,�*�5�*�:�'�&�#�)�5�$�-�+�&�$�6�)�'� �-�(�0�1�/�1�/��5�.��0�,��'�0�$�'�*�*�2�)�-�&�/�)�3�-�+��"�)�"�2�-�2�#�9�1�2�9�'�*�7�4�/�'�&�*�(��,�+�4�0�-�-�2�%��%�+�9�#�(�<�+�!�-�,� �8�+�A�<�5�3�%�0�2�.�-�5�(�'�5�0�,�9�/�8�2�3�1�0�2�,�%�%�;�"�$�*�-�.�*�,�0�(�6�6�%�,�&�1�,�<�)�,�/�0�8�(�*�(� �+�"�'�-�/�)�0�'�3�)�2�4�0�9�.�.�7�/�>�8�"�.�)�(�7�(�!�.�+�$�+�)�'�'�!�0�)�*�1�-�$�4�0�-�4�0�-�'�+�(�"�*�*�2�.�-�1�;�1�%�/�-�3�'�2�(��$�+�(�,� �-�2�+�'�0�2�/�4�.�)�/�'�.�4�5�)�+�4�.�-�(�4�-�+�:�)�.��0�.�'�"�.�+�3�(�-�)�5�.�$�)�&�5�&�7�3�&�&�1�#�"�*�-�,�$�3�,�*�7�/�9�+�-�4�ՀڀԀ؀؀ـրӀڀɀ׀ڀ׀߀Ԁ׀ԀـۀԀрۀـՁ0�'�*�1�3�)�#�*�&�)�+�2�.�)�,�<�2�6�-�;�6�'�3�+�,�1�2��+�(�)�.�-�"�4�7�#�+�6�4�2�-�(�3�9�<�1�3��,�%�$�2�-�*�-�&�'�5�@��9�&�+�(�'�6�/�5�"�/�0�7�0�6�!�3� �0�8�&�!�+�3�,�&�+�#�&�6�3�,�0�&�'�#�2�,�(�*�7�#�+�2�3�$�.�%�(�/�2�)�-�.�1�/�5�.�+�*�6�&�1�"�(�2�/�"�,��.�4�$�-�4�0�-�.�.�/�+�2�+�!�1�,�-�"� �.�*�1�)�(�/�+�5�!�.�,�-�/�.�5�0�)�-�.�.�,�/�(�!�2�B�%�9�2�.�'�5�$�;�!�'�.�5�)�,�5�-�'�(�3�%�1�/�6�.�1�,��/��5�/�'�6�2�0�6�.�5�-�"�%�8�3�.�,�(�)�*�'�4�/��4�3�1�,�0�#�,�/�*�'�2�%� �,�$�-�1�2�*�+�3�3�.�(�"�#�+�.�=�'�*�8�.�0��*�4��.�)�*�*�-�6�'�/�8�4�)�3�/�1�-�-�&�/�/�0�/�5�.�2�4�(�2�*�-�,��2� �%�'�*�-�6�"�)�2�/�1�-�-�3�0�2�,�"�/�3�$�1�-�-�*�+�5�9�.�'��/�0�2�7�%�:�.�/�*�.�/�'�/�-�.��#�(�(�&�5�:�3�&�$�8�D�/�1�(�-�)�5�1�.�4�9�8�5�6��'�"�2�,�'�+�/�!�7�+�)�/�9�*�*�&�(�:�+�(�)�+�%�*�/�)�&�(��0�'�-�-��+�4�+�8�4�!�,�)��.�&�5�+�2�*�*�-�,�%�5�.��/�.�,�&���.�*�)�*�,�5�+�3�1�+�:�2�%�*�-��-�,�#�*�(�1�)�9�+�4�*�/�-��&�#�0�/�=�.�)�/�6�8�+�+�9�)�0�+�6�2�3�3�-�*�4�0�-�.�5�3�2�A�6��1�0�/�*� �3�/�.�>�2�1�(�2�.�-�2�-�9�3�Հրۀ؀рӀҀ܀ҀǀԀրр݀ـր׀ӀۀԀՀրՀ؁?�+�(�,�'�4�4�4�?�/�+�*�#�/�5�&�,�7�7�,�)�1�1�!�/�5�&�2�!�*�*�5� �4�-�5�7�+�.�A�/�/�/�2�7�,�6�1�+�=�+�3�&�-�1�7�+�&�+�'�*�'�-�)�)�5�&�-�.�7�&�3�/�(�2�;�4�7�4�*�/�6��&�5�,�1�(�6�6�-�=�/�2�,�8�9�.�6�:�0�,�'�1�/�.�3�'�&�*�,� �/�/�*�$�(�+�.� �2�*�'�1�/�.�5�#�)�9�+�3�*�9�+�<�'�2�0�;�*�F�9�+�3�0�/�*�7�5�+�,�5�$�,�0�)�*�1�1�!� �+�;�+�,�4�)�)�,�(�0�%�.�'�$�"�5�/�2�)�+�:�7�1�6��7�/�5�%��&�#�%�(�8�!�'�2�#�9�*�)�.�+�.�3�6�3�1�/�1�*�/�&�:�7�5�#�1�B�"�+�'�3��5�7�H�3�!�!�5�&�3�%�-�.�#�,�.�7�-�$�&�$�%�4�'�,�@�1�%�"�2��/�*�7�%��0�1�?�.�!�.�#�0�)�)�.�/�&�+�1�$�(�3�2�2�5�.�5��'�,�>�+�0�4�2�0�#�/�'�.�7�0�+�*�+�'�&�3�/�0�1�(�*�6�%�-�*�8��!�/�.�3�-�'� �1�.�1�,�1�%�5�0�5�:�-�#�4�7��%�)�+�'�-�,�4�/�#�2�.�+�1�*�7�.�-�&�4�-�1�3�6�/�4�2�.�+�*�(�-�+�1�6�+�/��,�<�9�-�0�$�2�8�*�-��*�.�$�/�+�,�$�#� �,�*�,�.�+�.�+�=�/�+�%�#�1�,��(�7�+�5�3�8�&�-�*� �&�6�#�/�1�+�8�.�3�)�1�%�5�2�8�+�(�$�4�(� �6�%�'�0�)�<�4�,�;�'�3�,�'�)�.�2�4�/�!�2�(�(�2�/�!�-�+�4�3�3�+�/�-�.�/�3�.�.�.�+�3�,�(�-�$�4�*�9�.��4�1�.�.�5�6�6�0�.�)�5�3�2�:�*�;�.�8�+�#�׀րՀـԀրՀـրǀҀـԀ׀ڀԀ؀݀րڀ؀׀Հځ=�4�/�/�6�4�*�4�/�,�=�6�/�,�7�-�*�'�;�4�(�*�7�$�0��*�2�/�/�7�7�1�)�3�$�)�0�6�,�5�7�'�0�'�5�0�2�+�/�8�&��2�:�'�=�/�3�-�'�9�,�5�+�+�,�*�;�-�3�0�0�/�,�*�8� �,�0�1�/�*�.� �:�/�6�-�%�+�0�(�(�.�5�>�/�9�)�*�*�0�#�3�2�/�+�1�(�(�;��1�,�/�/�9�-�!��/�%�.�2�8�*�/�/��)�/�.�2�0�(�+�/�#� �%�(�2�.�(�)�+�)�'�3�1�=�8�(�!�;�-�)�>�5�,�.�,�,�;�-�6�&�0�$�2�2�)�,�9�2�%�.�*�-�'�,�0�)�=�'�/��,�+�&�&�-��2�$�5�-�(��&�,�&�$�.�)�$��)�#��!�#�&�*�*�+�4�&�%�5��(�,�1�'�$�:�6�-�1�.�.�'�2�(�#�6�(�#�(�*�;�0�4�?�1�+��4�)�;�1�-�$� �.�5�6�-�%� �)�!�/�-�0�+�%� �,�2�5�5�,�'� �%�1�1�2�0���.�#�*�)�?�4�#�,�9�,�1�#�0�$�+�,�/�3�8�,�+�-�:��.�/�:�2�/� �2�-�:�$�/�6��/�!�2�/�-�)�+�.�+�/�#�<�+�'�3�;�0�.�4� �'�8��.�'�1�/�!�-�+�-�&�!�(�#�>�3�-�/�/�9�:�-�6�-�+�2�)�(�/�(�2�9�*�(�)�&�2�+�+�2�(�-�&�-�/�*�.�'�0�-�'�'�"�(�1�%�+�#��9�8�6�)�"�2�+�0�#�1���3�/�+�-�)�+�?�%�2�8�9�)�(�0�-�7�)�/�*�>�-�;�.�;�2�:�7�5�9�3�.�0�&�2�#�1�%�*�'�0�&�'�,�*��/�4�$�1�(�,�,�#�7�'�4�,�0�.�6��1�+�5� �(�*�8�.�5�-�'�0�:�*�.�'�.�,�+�'�&�.�5�3�1�/�3�0�2�&�*�2�%�.�/�*�/�&�Հր׀Հ׀ـր؀ـĀـՀրـڀԀӀԀրրЀրـՁ2�/�>�/�/�.�;�-�4�+�0�$�/�:�+�%�1�4�%�)�/�2�0�8�>�5�6�6�1�1�-�(�%�"�/�5�<�*�+�)�0�+�,�)�6�7�6�4�(�&�/�'�$�.�!�>�%��"�/�!�-�'�-�'�-�#�5�/��1�,�'�/�+�(�.�#�0�&�4�7�;�,�(�/�(�'�&�5�+�)�4�(�,�!�&�/�+�+�,�%�*�.�&�.�<�!�2�$�1�+�1�-�+��%��%�)�*�%�'�-�5�1�0�2�+�"�0�2�3�+�!�1�<�8�0�,�9�/�+�(�/�4�/�&�'�� �/�-�#�$�+�7�$�1�.�0�%�&�$�4��&�#�0�)�-��0��5�=�'�,��+�#�2�$�'�*�&�/�%�6�0�-�8�;�&�-�=�,�*�0�;�"�-�%�,�.�"�1��-�4�&�3�<�.�$�3�2�)�<�/�#�,�/�(�5�.�2�-�1�#�.�/�,�,�.�(�)�'�'�-�3�&�)�2�3�#�1�$�'�3�3��F�'�:�%�-�/�)��+�,�$�2�3�/�2�,�$�&�+�)�)�+�1�&�)�*�'�&�"�/�)� ��6�.�/�/�3�1�/�"�'�*�.�"�5� �#�.�$�3�"��.�-�"�2�'�+�:�9�"�&�0��(�*��-�%�'�/�3�,�2�+�'�<�%�/�"�,��4��(�'�*�:�/�+�+�$�/�7�&�;�!�6�3�+�(�#�&�1�)�'�3�:�8�8�3�7�3�2�0�-�-�1�2�,�'�5�+�2�,�)�.�1�3�3�/�7� �1�2�)�:�3�2�1�8��'�/�(�"�!�6�*�3�*�&�'�+�-�3�9�.�'�4�)��1�*�(�0�4�)�/�1�2�+�.�/�-�&�2�(�0�!�:��.�.�.�4�.�#�:� �/�-�*�/�:�1�)�&�)�9�(�&�/�.�+�<�+�+�5�"�-��1�+�+�/�8�(�*�0�0�9�&�3�(�/�-�$�1�(�9�-�2�%�$�8�*�8�-�*�.�<�.�%�)�.�0�7�2�1�8�!�+�/�5�'�)�(�*�؀ۀ؀րۀՀ��ـ׀Ȁ׀р؀׀ۀր؀؀րـրـрہ-�=�0�"�*�6�8�0�-�5�7�%�-�.�/�7�8�0�.�>�/��5�*�&�/�0�/�9�"�(�:�'�(�3�&�9�5�(�-�(�2�*�+�-� �*�%�-�)�.�/�*�/�6�1�(�&�0�0��(�5�)�'�!�(�1�-�"�(�*�$�#�.�9�9�.�-�%�+�,�+�-�4�#�*�0�+�"�3�)�/�,�#�4�1�%�.�/�+�0�*�2� �1�$�&�#�.�/��)�0�&�)�.�+�2� �)�7�(�$�!�%��,�#�0�5�1�"�/�5�2�:�+�0�-�&�)�(�'�#�6�3�)�"�5�'�/�/�(�+�,�0�&��-�+�&�2�9�.�&�+�)�;�9�)�*�'�4�5�)�6�+��0�$�%�2�'�(�-�1�2�$�<�)�1��*�#�,�/�$�2�#�$�7� �'�/�#�/�-�.�*�2�+�+�-�?�+�+�"�1�(�0�6�"�)��1�&�*�.�,�(�4�-�*�*�(�.�"�#�8�%�%�-�*�4�0�5�4�4�*�3�*�(�5�3��-�+�)�)�(�4�:�'�/�/�/�0�)�*�)�)�/�2�-�2�8�*�&�8�3�,�:�*�'�'�-�*�)�&�-�0�>�!�+�4�-�"�(�9�1�(�/�2�(�*�5�B�*�5�/�/�;�.�2�:�1�0�)�"�1�.�*�(�$�3�%�-�#�/�+�-�'�-� �7�5�&�'�'�/�/�8�#�#�%�0�%�1�!�D�.�:�/�8�9�6�1�+�A�#�0�8�6�2�3�0�'�/�8�2�4�-�8�6�-�*�1�3�(�0�)�3�'� �;�(�(�4�'�+�+�(�(�$�,�-�-�6��5�6�(�%�)�*�'�+�3�#�=�-�5�,�#�7�$�#�,�0�%�/�,�'�3�5�*�:�0�1�1�(�9�+�/�,�/�=�&��2�8�-�,�-�/�8�(�&�/�0�)�.�:�+�#�&�&�*�%�3�0�1�)�'�#�3�"�#�'�%�4�0�1�&�)�=�2�(�(�9�*�!�(�/�C�-�)�9�)�0�:�/�5�4�,�5�*�3�3�'�7�3�-�9�)�7�/�9�6�5�5�׀րՀ׀ڀրڀՀՀÀ׀ՀЀՀԀրڀԀـڀҀ׀Ӏԁ.�,�?�7�2�F�6�1�6�5�4�!�,�+�/�$�.�(�*�/�+�%�(�1�7�)�B�1�.�#�*�+�%�1�2�-�=�*�3�.�.�/�-�+�-�4�.�5�6��1�/�1�*��"�!�0�9�3�/�/�8�+�0�/�1�<�,�/�=�'�1�)�4�2�=��-�/�'�#�)�%�.�"�*�&�.�=��@�/�/�2�%�9�+�'�*�/�(�5�%�7��/�*�.�'�+�+�%�-�9�&�-�8�5�-�4�4�3�/�2�*�*�)�"�*�+�4�5�9�0�.�2�5�6�;�-�2�4�%�=�)�,�4�&��'�+�/�)�+�0�%�-�<�#�/� �+�+�:�.�/�8�5�,�-�)�3�,�2�1�(�3�1�2�0�3�2�,�(�%�2�4�4�/�'�4�*�$�)�!�0��3�4�.�&�*�.�&�.�8� �4�=�%�+�8�"�7�3�,�'�2�,�#�3�/�*�&�.� �'�3�&�"�+�4�:�6�)�0�-�0�&��5�3�=�(�#�*�7��/�'�1�$�#�*�,�8�6�9�$�/�:�4�'�)�$�/�4�2�&�%�)��A�,�$�#�&�1�)�A�)�)�"�(�/�*�-�+�-�/�&�)�/�%�/�0�4�,�6�;�:�*�*�1�3� �#�)�/�(�/�+�.�9�9�:�1�%�+�$�5��*�-�'�)�/�*�)�2�@�,�+��)�3�/�&�#�9�;�%�,�)�@�(�-�7�,�,�&�0�9�>�4�&�'�/�$�#�1�5�$�/�7�:�:�+�3�(��,�0�)�/�&�'�3�5�#�:�8�5�3�+�,�0�*�%�1�3�8�(�?�1�#�"�)�%�4�5�.�.�&�)�%�:�-�-�)��/�&�.�.�5�*�0�*�/��&�5�.�#��,�!�0�.�1�-�7�,�'�%�3�5�+�1�"�0�&�2�!�+�/�&�6�-�)�)�/�3�4�+�6�$�'�:��,�(�/�5�"�1�5�+�$�&�.�'�(�1�1�B��/�*�2�0�$�0�*�+�3�%�0�#�8�(�4�8�2�.�!�1�1�4�?�-�(�1�(�9�+�1�(�8�9�ԀՀրՀ܀րրЀԀɀрӀӀՀπՀ݀Հـ؀ـӀـс1�5�%�2�3�(�+�@�$�6�9�:�1�/�@�7�,�-�$�-�(�-�.�.�-�'�)�'�7�4�4�/�+�"�/�+�5�6�>�%�+��+�*�-�+�!�.�.�4�+�-�+�9�.�,�*�,�7�1�*�(�,�9�!�,�,�+�0�-�&�!�-�)�0�'�#�&�9�3�;�2�D� �7�2�/�3�+�,�"�6�.� �5�2�/�/�*�4�5�,�+�4�+�&�+�!�2�0�-�/�&�/�5�'�5�,�*�!�5�%�3�9�(�5�0�%�7�*�2�6�+�-�*�1�5�3�1�/�/�*�1�.�5�5��'�)�3�%�0� �#�&�0�,�"�+�/��)�<�%�2�4�'�-�-�2��'��0�*��,�,�-��9�1�5�2��0�8�.�%�#�3�'�-�1�&�$�%�0�$�5�/�+�+�*�3�&�*�$��'�!�6�0�-�(�*�'�/�)�)�)�2�*�.�5��)�*�6�-��*�5�$�%�,�5�3�'�&�/�*�/�2�$�!�9�/�-�!�4�-�(�3�(�1�'�(�1�,�-�*�2�$�5�(�#�#�0�,�-�,�/�%�(�1�*�/�!�2�*�&�#�/�'�6�-�+�$�(��)�9�.�/�+�3�5�6�5�0�"�+�'�*�*�.��=�*�/�/�/�5�+�,�-�"�)�'�4�2�*�&�.�7�"�,�*�1�#�$�.�&�0�.�.�-�0�"�.�!�/�'�5�/�&�)�3�3�(�.�+�.�3�*�$�4�-�-�-�(�2��E�-�5�5�3�7�-�5�)�(�'�5�0�"�/�)�A�+�(�#�(�*�2�.�#�4�1�/�2�&�2�8�$�3�>�+�-�6�*�+�2�'�-�'�.�0�*�7�-�.�*�-�2�2�1�<�.�,�.�#�2�"�(�&�#�-�0� �)�4�*�+�,�/��+�2�6�1�$�-�:�#�#�*�!�/�'�0�,�.�/�1�5�3�3�2�0�/�,�/�0��3�'�*�4�,�!�+�!�2�;�-�1�3�.�/�)��+�8�3�/�6�.�3�+�8�&�-�6�0�(�.�6�*�*�6�=�)�3�;�*�2�,�8�1�ԀۀՀـڀӀڀ׀ЀǀӀــՀڀ׀πـӀۀ܀܀ڀՁ5�3�/�6�*�5�+�9�0�6�/�'�:�%�9�/�/�;�.�>�*�9�2�)�1�<�(�*�6�.�!�*�/�!�)�+�+�,��%�(�/�;�%�-�:�)�%�)�#�-�1�+�"�"�:�&�)�%�0�!��-�6�1�*�/�)�&�&�+�.�(�(�(�.�3�4�/�3�-�-�.�/�*�-�(�4�%�1�6�7�/�/�1��,�1�)�1�#�3�*�5�+�8�#�1�&�'�)�/�3�'� �/�.�)�1��)�1�3�*�3�.�1�!�:�'�.�4�&�+�/��$�'�%�+�/�+�+�*�2�-�/�5�'�,�'�,�%�(�/�%�)�!�-�)�0�,�!��(�*�/�2�"�*�+�,�!�5�.�(�%�5�2�)�/�/�-�1�,�2�!�/�;�,�3�(�0�%�'�'�*��.�)�6�2�'�6�1�7�3�%�)�,��*�%�%�-�.�.�*�&�+�"�(�*�+�:�"�.�0�4�#�1� �2�(�$�%�1�6�%�$�-�6�3�&�/�(�5�2�/�0�0�5�&�(�6�-��/�*�-�8�"�:�+�1�9�*�5��/�'�#�6�,�%�'�-�(�'�/�&�3�*�(�4�'�(�3�+�6�!�6�6�0�-�)�%�/�2�#�.�0�5�*�!�!�,�(�-�(�;�2�0�$�,�+�#�%�6�'�2�6�,�'�.�*�+��)�%�'�'�-�8�:�@�"�� �/�%�1�2�/�-�.�'�:�)�2�7�6�.�,�*�/�2��=�2�2�3�%�7�7�>�2�0�7�,�9�,�&�4�.�4�*�3�(�+�)�*�/�1�,�/�1�%� �&�;�#� �+�;�-�(�-�.�;�-�0�/�"�4�5�2�*�1�6�;�;�+�%�&�%�4�#�5�5�!�0�7�$�3�*��,�"�)�-�6�&�5�2�$�.�5�.�.�$�3�+�3�-�5�5�+�0�2�'�6�*�-�0�#�.�+�&�3�%�1�*�5�%�<�5�"�1�.�#�.�%� �/�*�*�+�*�9�-�9�3�0�!�.�&�7�+�.�2�(�)�2�&�,�,�&�2�)�-�#�6�9��#�/�2�;�,�7�8�ـҀπҀրր׀ՀրȀ׀ڀـՀ׀׀ҀрրԀԀڀրׁ&�0�%�/�3�3�0�0�,�)�?�,�6�0�0�.�&�(�'�/�+�%�,�#�/�6�/�/� �#�6�2�&�6�3�)�-�,�1��-�$�)�9�:�3�%�!�$�3�1�@�,�(�2�"�-�"�<�3�*�.�,�8�&�/�0�,�2�/�;�1�/�"�+�6�2�2�&�6�3�%�B�+�)�-�/�,�5�/�0�)�9�7�-�(�4�;�*�!�9�*�5�,�&�7�2�*�-�6�4�-�.�#�,�&�7�/�2�;�3�/�4�3�6�5�!�/�)�/�&�2�2�&�3�-�2�%�=�#�.�+�(�,�2�,�#�&�,�(�4�/�,�0�/�'�#�)�5�$�,�$�9�6�0�,�,� �2�)�&�*�2��8�4�@�,�3�6�%�1�6�3�6�>��"�+�/�/�+�(�+�!�2�;�0�&��+�-�2�'�3�2�/�+� �,�)�%�-�'�+�9�&�,�.�"�#�0�%�)�3�'�5�"�4�(�/�#��6�-�)�9�5�3�7�+�:�'�+�-�$�+�$�&�.�/�*�(�'�1�(�5��+�+�,�"� �)�+�5�.�!�#�"�4�/�/�,�3�+�(�3�+�1�/�#���)�-�*�*�/�8��4�"�*�+�-�0�7�/�/�'�0�@�)�(�)�*�0�'�0�=�8�&�,��*�)�)�7�1�$�#�:�4�-�2�#�+�6�.�.�)�$�'�*�)���)�3�.�'�+�%�,�%��/�%�4�/�,�(�(�(�-�8�6�+�%�)�*�-�*�!�(�+�2�3�.�/�3�3�)�(�5� �+�*�&��(�/�8�5�%�'�.�#�(�;�.�)�,�)�.�+�*�,�4�2�,�'�"�%�.�2�#�.�$�!�/�%�$�4�0�&�/�)�+�0�)��-�(�8�&�1�'�9�1�(��)�3�/�-�8�/�*�6�*�9�*�)�#�%�.�'�-�,�0�6�/�6�-�*�2�2�,�1� �=�3�,�1�8�+�*�(�&�4��<�-�-�*�-�)�1�.�3�+�&�9�>�"�>�.�-�9�1�0�*�.�,�.�*�6�4�-�+�&�'�3�2�2�+�3�8�8�&�ۀՀ؀ր׀ـҀۀрƀ׀ـրր׀׀؀Ҁ׀؀ـ݀ӀӁ9�1�#�*�*�=�/�/�4�1�(�/�5�0�/�3�9�.�(�0�4�1�)�2�%�+�)�2�5�.�0�%�5�*�*�4�)�5�)�-�.�6�+�0�;�/�5�(�"�,�*�%�'��$�1�0�6�9�1�0�'�)�%�=�,�1�0�+�1�*�5�%�5�'�(�/�'�1�'�/�3�7�%�0�/�*�,�+� �+�-�/�-�%�6�%��'�.�-�3�;�%�*�3�&�9�9�=�1�1�3��&��,�(�.�3�6�6�#�0�1�*�'�0�>�=�*�,�%�/�$�+�+�/�$�&�&�!�"�2�,��-�&�8�4�/�7�>�%�+��$�*�$�3�3�1�/�(�+�)�4�'�+�7�&�.�"�(�&�(�1�?�.�2�+�+�!�(�(�0�'�&��"�0��.�+�1�*�,�0�-�*�+�1�#�:�'�:�$�-�7�-�'�0�'�&�"�2�"�+�1�,�/�2� �6�(�&�1�&�-�/�-�8�0�:�.�'�1�/�+�$�3�/�5�+�5�*�:�)�*�*�%�%�*�4�6�0�/�1�@�/�9�)�1�3�-�-�0�/�/� �%�-��6�6�2�+�*�5�*�,�1�(�!�)�%�.�6�%�-�7�2�=�*�,�1�(�1�.�*�'�+�5�/�,�:�#�-�-�0�1�)�+�0�(�+�1�9�/�,�#�)�1�/��+�&� �'�'�-�3�:�1�!�'�1�&�,�(�9�/�/�$�6�-�-�,�.�(�0�5�3�3�2�'�)�+�'�1�.�2�>�2�+�(�%�,�0�+�%�%�+�-�,�6�'�9�4�/�2�5�%�!�2�;�&�-�(�%��5�/��%�&�(�>�4�(�7�1�/�+�-�7�;�&�-�9�2�.�#�+�&�*�(�#�/�3��3�/�5�7�/�-�+�0�-�/�)�(�0�'�&�.�0�3�/��%�&�A��2�-�-�)�&�:�*�!�.�7�+�&�!�.�+�,�0�+�,�'�*�=�5�1�9�,�,�0�,�)�"�*�2�$�&�9�+�,�=�3�;�+�4�.� � �-�1�,�8�,�&�2�*�+�'�2�.�/� �3�'�.�,�"�/�1�ԀڀրހԀ׀ڀҀـƀրր؀Ӏ݀׀ހ׀׀ր؀ԀӀс)�8�5�6�-�:�:�:�9�)�5�#� �3�/�9�3�/�'�*�!�-�/�+�%�*�1�'�1�3�@�)�"�5�)�(�'�&�1�%�1�=�.�1�#�(�2�/�1�.�5�5�)�0�)��&�*�2� �'�'�,�0�,�/�=�+�!�&�;�4�%�/�&�5�,�=�)�+�C�0�+�C�$�+�&�+�+�(�-�/�'�7�*�1�+�+�)�5�(�/�(�4�#�'�&�1�,�"�*�5�7��2�5�,�%�/�-�&�=�(�*�(��*�)�&�.�*�#�%��3�"�.�.�+�0�0�1�*�5�8�"�6�0�/�&�4�/�5�-�*�,�,�'�3��'�,�%�)�3�2�'��,�8�/�'�'�3�'�2�2��'�"�&�-�!�0�&�5�$�0�0�%�/�%�8�%�+�,�*�3��"��.�)�/�0�)�1�"�1�(� �,�+�8�0�#�-�+�'�.�(�8�#�/�3�8�(�+�)�#�/�.�4�)�%�,�0� �"�,�1�3�-�"�9�'�,��.�+�-�*�/�4��4�1�&�/�-�,�&�+�1�3�&�-�5�-�-�4�"�/�/�/�+�"�!�(� �#�3�1��,�1�-�/�+�+�)�-�/�1�1�0�%�/�$�/�$�'��%�5�1�!�9�%�3�5�,�"�0�(�$�8�4�(�/�7�1�(�(�#�"�4�0�)�+�*�0�.�%�-�*�6�-�(�4�6�4�9�2�*�&�:�-�%�1�<�6�-�0�0��!��/�$�&�"�*�"�+���8�8�2�$�-�0�.�+�<�)�-�%�-�5�:�$�)�6�2�!�-�7�+�,�'�%�+�,�/�/�/��.�-�*�0�>�1�8�.�'�+�+�$� �)�2�,�'��'��.�1�'�3�-�5�#�/�+�-�.�.�6�1�7�$�4�+�!�,�(�,�1�*�6�1�+�7�9�"�+�:�#�!�A�2�,�.�$�%�8�4�,�0�*�#�*�2�:�2��.�6�4�,��%�+�.�.�5�7�3�+�.�1�1�3�2�+�0�*�,�4�1�.�7�3�>�4�*�4�9�-�/�.�.�(�*�.�3�1�,�ԀҀـӀҀԀـՀـ€ڀۀπր؀ــр܀ـ؀Ӏрׁ2�<�/�0�*�,�)�5�7�2�7�&�-�9�(�/�+�+�.�)�1�)�+�(�:�5�%�+�%�7�/�6�'�1�,�%�)�,�-�,�1�2�7�@�+�!�4�2�4�1� �2�5�/�*�5�0�.�&�,�&�!�*�/�,�0�3�9�%�%�6�.�4�%�*�$�,�/�+�-�7�2�7�2�#�0�8�6�-�1�7�%�-�3�8�5�"�,�+�&�.�*�5�-�%�,�-�)�/�6�(�3�*�0�/�#�"�&�#�#� �0�2�"�#�"�$�=�+�$�4�3�+�-�!�2�,�)�&�1�%��)�+�-�-�/�%�(�7�-�,�4�.�-�#�2�+�9�+�!�*�,�:�8�!�+�.�(�?��4�&�,�6�1�0�5�,�.�,�#�7�-�2�1�$�+�"�!�*�-�9�+�4�,���#�6�5�*�8�.�'�0�<�2�/�6�#��,�'�'� �'�+�3��0�-�/�-�3�-��4�1�2�/�-�-�#�,�%�9�-�>�!�)�:�$�/�)�&��/�*� �.�&�*�$�,�&�.�'�.�6�*�*�4�,��2�"�(�.�+�(�#�7�'�.�&�*�*�,�3�*�&�3�1�%�4�.�(�'�1�'�7�'�.�0��2�'�%�,�'�<�,�8�*�+�1�(��'�.�(�+�*�)�,�+��2�$�%�.�'�0�%�"�5�-�3�5�2�,�,�,�/�'�=�-��+�/�/�/�)�6�%�.�,�%�&�)�3�-�4�1�1�1�1�3�3�5�*�/�1�.�,�,�'�5�*�2�-�#�"��*�'�&�/�1�#�.�&�+�+�&�/�1�#�(�-�'�6�,�%�/�(�3�4�7�/�(�4�:�,�4�)�(��%�0�/�9�,�2�(�"�6��,�*�-�.�0�*�)�*�,�(�1�-�"�:�4�-�0�(�)�*�2�/�5�,�<�1�.�-�5�.�)�$�/��$�+�5�+�6�+�/�)�/�'�7�/��0�(�0�2�-�0�.�1�-�+�/�+� �2�3�(�/�$�,�+�1�"�%�1�)�1�+�1�5�"�,�0�)�7�%�5�*�2�+�!�.�)�"�3�D�0�Հ؀ӀԀ׀րــրĀՀـԀ؀Ԁހ؀׀׀ЀԀրـׁ3�0�5�3�:�!�@�/�2�)�5�*�3�)�'�-�#�7�-�(�2�0�)�%�2�%�/�6�)�/�*�&�-�!�8�3�B�'�-�:�3�$�%�;�,�4�(�%�(�-�*�8�.�-�%�%�4�-�(�&�2�*�7�/�(�3�,�4�0�+�.�1�.�+�3��+��/�7�:�!�'�$�(�5�.�4�)�.�?�0�'�;�8�1�"�)�-�&�.�(�)�=�9�*�7�*�2��D�3�0�$�.��+�.�$�+�3�)�*�6�)�"�(�7��3�&�6�5�#�0�%�.�7�4�4�#�'�$�*�(�3�*�.�+�%�6�4�,�*�.�*�'��+�(�(�"��3�(�-�#��1�(�/�(� �*�*�1�2�'� �+�2�3�1�)�9�>�(�/��)�0�5�/�6�%�.�$�)�2�'�2�/�:�0�.�*�4�+�4�!�2�4� �(�*�4�5�*�&��/�/�.��1��7�/�-�/�-� �#�/�+��(�.�0�/�8�1�%�&�8�3�'�6�+�1�C�!�*�(�3�0�)�)�$�+�2���*�%�*�6�-�0�2�(�*�#�.�1�+�)�,�$�5�-�)�7�*�+�)�*�0�"�)�&�&�5�&�/�.�-�-�)�#�+�*�0�'�6�!�;�*�0�0�,�(�!�-�"�5�5�6�'�5�7�,�+�:�&�#�5�2�1�+�+�$�,�/�$�7�3�0�(�&�3�!�9�'�-�/�1�*�0�2�+�*�.�.�1�0�!�/�2�<�,�,�-�.�$�5�:�/�8�-�7��)�+�/�+�/�,�1�5�&�4�*�'�4�.�+�1�#�%�/�"�(�4�,�-�,�(�*�$�.�(�0�%�,�2�0�,�2�.�.�9�+�$�0�3�.�!�.�1�-�1�.�*�"�2�A�/�%�3�/�4�%�1�,�-�;�-�#�'�2�+�2�0�:�#�)�*�3�.�(�+�6�/�/�/�3�.�2�-�#��=�/�*�!�)�5�-�<�3�-�4�-�,�1�9�:�$�5�0�1�(�7�-�$�(�&�'�*�4�3�3�-�(�4�7�.�/�3�!�8�!�?�)� �*�-�1�&�,�2�րـ؀ր׀ՀԀ܀ՀȀۀڀ؀րԀۀՀـ؀Ӏ؀рπځ7��*�5�;�-�5�,�/�1�-�,�?�%�,�5�6�)�"�.�%�.�7�'�+�)�(�F�1�+�,�+�%�4�2�+�=�/�3�,�"�=�7�4�-�+�'�/�5�)�:�(�3�3�*�,�+�/�(�7�%�9�)�/�'�3�"�/�&�.�#�3��&�+�9�2�1�!�3�+�1�+�=�/�.�4�'�9�(�1�*�+�-�)�'�/�6�9�3�$�7�(�/�,�&�:�/��?�%�0�8�/�&�+�9�*�+�$�0�3�+�)�?�2�6�4�+�%�0�%�7�/�0�'�"�1�D�+�1�3�3�4�/�+�1�-�-�'�(�3� �*�0�$�-�)�/�3�:�"�-�$�4�#�-�.�4�4� �+�/�.�-�-�/�5�-�:�*�*�6�-�"�-�(�=��"�%�/�'�1�+��*�3�,�*�-�.�+�-��-�*�,�(�)�5�/�*�+�/�5�9�5� �+�-�8�'�$�$�.�"�*�$�,�3�+�!�!��.�1�6�/�-�9�-�-�'�8�#�.�%�.�&�7�1�&�.�.�'�+�(�3�*�/�.�/�+�+�1�.�+�)�#�3�.�)�-�2�2�/�1�4�1�,��,�,�/�+�5�0�5�(�.�8�"�$�3�'�#��(�(�7� �*�%�2�2�0�)�,�7�)�4�$�)�#� �.�1�&�&�-�,�8�1�*�/�1�)�,�&�:�)�(�1�3�;�/�%�/�+�/�4�8�2�"�.�-�:�(�/�-�*�7�/�'��A�4�/� �,�+�0�,�3�)�5�8�/�(�2�2�0�1�-�-�3�#�(��-�A�&�1�1�!�:�0� �B�7�1�1�$�3�6��&�#�1�-�*�.�.�,�#�@�,�?�(��5�)�8�1�3�"�*�2�:�0�4�&�1�3�-�'�/��7�:�.�2�B�+�*�5�4�*�&�.�)�'�8�-�-�4�1�$��0�0�5�7�/�(�0�.�%�,�(�+�(�)�2�+�3�3�&�4�:�?�2�,�3�4�1�&�7�)�/�"�$�7�0�/�&�*�!�5�'��"�.�8�3��,�1�5�"�)�#�"�0�.�0�0�-�-��#�ր׀ـЀӀԀۀրڀÀր؀ҀЀڀр؀׀Հ׀ՀӀՀف+�/�>�;�%�0�?�%�6�%�+�9��.�2�;��:�$�'�+�3�*��"�,�'�8�*�+�7�6�4�4�,�#��/��=�,�'�'�0�'�1�*�8�'�+�4�0�4�0�-�0�0�7�7�,�.�!�-�;�'�-�(�-�-�-�3�.��+�0�-�-�5�,�"�+�/�'�6�+�3�/�-�%�3�0�%�0�2�+�6�'�1�$��/�.�.�(�$�)�3�4�'��4�)�#�7�-���1�4�.�.�(�/�"�)�!�"�0�/�$�$�(�?�0�?�*��2�)�(�2�!�,�(�-�"�8�4�1�=��%�%�.�2��,� �*�)�%�8�/�,�*�(�%�4�*�5�A�(�1�*�'�/�6�%�$�%�4�.�-�4�>�%�0�4�/�1�%�/�1�(�*�-�)�,�0�-�!�8�*�2�2�>�&�2�+�"�<�.�6�)�+�%�+�0�5�'�-�'�*�.�*�(�2�6�2�*�3�/�'�"�5�-�/�$�'�-�<�&�3�6�-�3�-�+�/�+�7�#�3�)�0�&�.�1�%�"�,�(�)�/�.�/�#�/�%�-�(�'�!�2� ��+�,�#�,�5�3�+�1�1�7�#�4�+�/�1�+��'�0�9�,�0��1�)�.�*��&��*�1�+�<�1�%�*�/�0�*�,�7�)�%�$�"�%�,�"�)��$�-�$�1�(�-�2�.�!�.�#�"�6�/�(�*�0�2�*�&�.�,�)�5��2�'�$�3�&�*�&�-�4�$�,�%�-�2�/�#�;�(�-�"�3�(�7��)�+�8�+�(�.�1�8�1��2�-�!�)�?�2�*�8�-�,�3�"�0�4�'�+�+�9�-�1�%�)�,�#��*�0�'�)�*�2�,�&�%�4�#�9�1�+�6�2�0�-�;�)�%�#�%�6�+�$�/�5�.�-��-�4�2�4�"�&�,�2�'�-�)�8�:�6�4�*�4�%�0�,�'�(�2�9�+�'�2�!� �$�6�3�4�,�2�#�0�:�*�<�3�,�+�)�5�C�-�#�%�4�7�'�*�(�,�/�5� �*�1�5�7�2�(�3��(�1�/�4�ՀԀ׀ڀӀՀՀԀՀŀ׀Ԁ؀׀ـԀЀրӀՀՀրրԁ$�7�>�3�3�(�&�+�)�+�'�1�-�)�2�-�5�<�&�-�:�#�-�)�+�&�1�-�=�:�,�*�3�)��5�)�.�3�/�6�,�7�&�-�6�+�-�(�:�4�5�$� �4�:�;�-�/�?�7�(�=�5�(�/�$�1�"�-�.�-�,�+�%�:�"�&�"�1�3�"�7�.�,�3�4�4�5�)�1�*�3�'�"�6�/�0�'�.�8��"�;�;�-�%�-�%�3�5�*�+�(�+�4�*�*�'�$�2�&�*�+�'�/�"�!�3�,�!��2�$�/�'�!�/�'�,�+�1�6�,�*�5�,�,�+�%�+�"�"�)�-�1�#�0�1�)�3�-�/�)�0�1�,�(�,�/�(�+��6�-�#�/�!�.�$�/�.�7�*�-�*�.�1�$�/�"��.�#�0�+�2�-�(�'�&�(�9�-�*�6�A�%�"�:�)�)�0� �#�5�'�)�B�(�*�/�'�1�2�/�)�.�,�0�8�*�.�1�.�&�$��-�'�*�#��7�.�5�8�)��-�$�?�*�0�%�2�%�+�>�-��.�/�(��0�*�.�2�1�-�(�1�,��/�8�3��2��%�!�/�6�+�&� �!�,�-�?�-�#�'�+�1�1�2�)�%�)�/��>�+�7�'�.�6��*�.�1�)�$�9�#�+�,�*�+�/�-�5�9�-�+�'�/�3�)�0�$�-�,�'�3�9�.�*�'�,�/�7�*�+�1�,�.�'�%�)�5�2�8�!�'�/�&�)�1�/�-�;�!�!�9�/�4�'��)�&�6�&�"�(� �.�/�*�(�-�/�(�5�#�/�5�%�%�+�-�(�5�8�(�)�2�$�'�7�*�(�3�*�8�2�,�%�1�*�)�-�*�+�3�2�%�.�2�5�D�!�.�%�(�(�:�0�'�8�,�$�$�"�,�0�2�%�&�3�3�&�!�1�.�/� �'�"�&�1�$�.�-�$�/�3�,�;�$�)�(�!��,�!�.�;�5�$�B�!�%�<�7�+�0�0�+�3�,�3�1�6�7�.�(�-�"�!�/�-�2�1�)�;�3�3�,�1�4�<�)�5�%�,�&�+�,�րր؀ـ؀ӀڀҀԀɀـ؀ـڀ�րՀԀӀӀ؀؀Ҁԁ3�0�)�6�1�I�,�9�)�-�1�;�,�<�2�0�6�$��/�4�-�<�,�0�-�$�)�.�1�)�2�/�2�1�-�%�7�$�-�/�#�-�(�-�+�)�(� �2�8�(�9�-�#�*�1�.�-�,�*�)�@�#�1��*�#�9�.�,�&�*�*�7� �)� ��*�*�1�/�-�0��9�"�"�5�(�.�4�/�)�,�'�3�0�&�)�1�"�)�&��.�.�+�1�+�'�*�%�3�'� �-�/�1��,�1��+�'�)�&�1�;�1�#�.�8�(�1�5�%�6�2�)�*�/�'�)�%�)�%�)�+�)�$�.�1�)�-�%�(�.�*�3�'�'�,��+�6�1�&�;�,�)�4�'�1�*�>�(�-�&�6�/�(�.�9�$�,�2�/�'�8�8�$�<�0�0�.�*�.�6�*�,�+�)�'�-�4�0�,�1�$�+��'�/�4�6�-�6�,�0��,��$��$�)�%�3�-�1�0�.�5�-�)�%�%�2�*�0�+�.�7�6�B�0�&�,�(�$�7�:�'�&�2�'�#�)�&�)�.�-�.�0�*�"�.� ��+�9�)�1�+��7�1�1�7�'�%�2�-�&�'�.�&�3�&�)�+�$�0�(�;�%�&�'�/�)�6�$�-�)� �$�3�6�1��+�8�9�-�&�0�$�4�.�-�3��2�'�%�2�/��3�!�'�8�1�1�4�0�/�&��)�-�+�8�!�/�(��&�*�)�2�)�2� �'�6��!�$�%�&�)�+�0�"�6�=�,�*�6�7�3�2�,�+��*�%�,��1�5�'�1�+�7�(�&�)�*�0�6�9�-�2�'�3�,�)�4�2�*�'�5�,�/�'�(�2�>�-�.�7�)�1�"�2�%�5�.�2�$�)�/�2�3�'�+�-�/�3�*�-� �3�0�'�'�3�4�-�-�/�6�5�(�@�&�'�/�/�*�0�/�*�'�-�$�5�)�&�4�!�-�0�,�)�-�0�/�3�&�3�)�.�#�1�;�4�.�#�.�/�'�-�2�4�7�0�0�,�$�-�/�-�-�!�*�9�#�?�.�1�&�4�7�*�/�%�0�ـҀӀрҀԀҀ׀ՀɀӀԀҀՀ׀؀ـրրԀـՀ܀ف/�+�8�2��%�2�;�5�%�.�)�-�I�/�8�$�(�/�/�2�/�:�/�4�)�#�1�)�:�"�5�1�)�/�4�,��$�,�&�9�+�&�.�*�2�,�)�3�5�4�1�/�'�$�+�"�)�1�$�,�:�/�;�7�#�"�+�&�*�/�/�3�*�*�5�-�&�/�)�,�2�%�3�'�,�/�'� �+�1�+�'�%�4�6�*�3�9�'�)�6�1�;�%�+�1�2�1��,�#�+��&�/�5�5�5�2�6�'�,�+�/�6�+��5�.�=�1�0�%�9�3�#�%�+�%�2�5�+�.�/�<�7�,�-�$�)�)��"�%�#�2� �,�>�"�2�%�+�!�1�1�%�7�%�3�0�3�.�-��/�1�3�"�)�%�2�-��%�7�!�'�+�5�2�-�/�$�?�(�,�)�%�,�)�-�0�1�3�)�)�:�&�"�8�4�5�0��=�#�-�7�'�)�,�*�*�/�)�2�8�0��,�/�%�1�6�!�'�0�5�5�&�3�#�(�"�(�2�,�(�@�*�6�1�$�4�%�.�)�.�'�%�0�&��%�!�(�2��/�&�5�5�*�/�/�3�"�3�(�4�3�,�8�#�8��!�$�/�-�,�+�%�5�6�4�3�+�,�<�$�&�'�%�6�-�2�+�*�"�;��,�8�'�+�6�!�1�(�$�%�/�1��7�1�6�.�*�(�4�%�*�*�$�)�&�9�4�)�2�/�-� �,�%�,�)�.�/�2��(�4�!�$�/�4�3�%�-�;�'�.�1�4�'�0�;�2�2�%�(�*�-�/�3�1��*�-�(�*�*�.�&�7�.�1�1�/�+�/�:�&�*�%�/�5�3�"�-�3�1�%�0�#�,�3�&�&�1�&�&� �.�'�)�,�%�!���)�6�+� �,�-�.�8�(�/�.�/�,�5�3�'�-�-�+��+�3� �#�5�*�*�-�%�$�2�4�3�4�6�+�)�4�&�#�(�5��%�.�7�.�6�'�#�;�7�.�'�+�4�2�#�(�B�5�.�*�9�&�%�9�0�'�%�#�<�3�1�)�6�6�-�3�)�/�+�5�'�!�ՀـڀԀҀـˀـԀˀՀ܀Հ׀ـրԀրـրԀ؀Հԁ5�4�5�/�-�'�(�5�/�,�,�9�0�5�1�=�.�=�&�*�)�1�/�*�3�7�3�.�+�<�-�*��&�+��3�-�+�*�3�9�1�%�+�"�:�'�/�)�$�$�"�6�+�8�0�,�7�&�-�2�+�'�)�:�0�'�4�4�/�!�4�+�)�1�3�/�*�3�#�"�4�+�-�)�-�-�=�/�-�,�7�#�2�/�8�!��)�0�/�1�/�5�%�2�!�.�)�*�'�)�5�,�1�.�/�8�$�)�,�4�5�%�>�%�$�4�/�+�1�-�+�6�/�'�+�-�/�'�2�+�)�,�=�(�5�1�#�3�/�1�3�'�'�)�"�2�+�&�.�#��,�!�#�1�,�5�.���5�#�+�(�<�+�4�1�-� �.�)�9�1�3�*�/�0�-�2�)�4�,�-�(�7�4�*�2�)�,�-�'�@�5�%�)�'�3�3�0�<�%�#�.�2�&�<�*�&�3�(�!�3�&�/�.�3�%�?�*�4�7�;�+�/�0� �0�:�&�'�)�$�$�+�/�7�7�(�-�-�2�)�&��%�=�&��/�3�5�7�'�%�'�*�"�'�-�!�'�'�/�#�,��<�*�2�.��3�&�*�"��%�,� �0�&�2�1�"�0�"�/�.�;�.�0�5�1�"�,�-�7�+�)�+�0�2�"�,�/�#�"�*�4�+�*�.�1�*�/�4�(�*�$�/�2�-�-�*�/�/�-�)�(�/�/�(�(��/��*�,�)�.�,�-�(�'�1�/�1�&�1�.�+�/�4�*�&�-�%�0�0�+�,�=�!�8�)�4�-�-�1�6�5�-�.�/�3�,�.�0�,�3�3�+�!�(��0�!�*�(�(�,�/�/�+�,�7�6�%�5�,� �4�.�*�+�*�%�&�)�&�0�5�;�*�)�-�-�!�-�.�7�3�0�(�(�$�4�1��%�7�%�0�/�.�,�)�-�4�+�+�+�%��9�+�+�,�+�%�.�:�/�*�-�5�1�.�*�9�'�!�&�#�3�$�)�,�� �-�'�+�4�@�7�,�/�/�)�)�+�-�,�5�1�$�#�:�?�9�/�3�9�3�,�/�ڀӀـ؀׀ԀހπـɀրրۀـԀۀۀ؀ӀۀՀՀՀ؁-�0�5�:�+�&�)�6�+�9�/�(�3�$�5�%�5�/�,�'�%�)�A�)�0�0� �5�'�+�*�#�2�-�6��'�!�"�0�(�.� �/�(�2�&�:�3�+�$�#�9�)�)�6�*�;�(��)�*��-�*�.�)�+�/�0�3�+�2�-�A�/�%�+�!�4�*�)�<�"�-�,�*�-�&�.�*�8�/�!�.��(�7��(�/�&�*� � �.�,�3�+�-�5�4�5�.�"�.�,�3�:�*�)�(�/�+�-�'�7�&�4�1�2�*�-�2�<�1�0�5�/�3�&�)�(�4�-�$��7�,�.�/�0�2�-�:� �+�/�5�3�-�1�%�:�:�5�#�+�,�%�3�.�,�2�(�8�7�*�-�,�1�$�*�+�8�:�*�/�&�/�1��&�*�)�2�4�'�+�'�/�0�@�-�+�'�(�;��.�.�!�C�(�)�7�,�)�%�2�.�/�)�:�!�4�"�-�&�-�-�8�+�0��*�'�1�0�)�'�:�4�2�2��8�9�1�4�-�1�/�'�+�-�:�+�:�7�)�/�*�A�0�.�9�/�0�&�'�+�!�0�7�1�.�%�-�3�0�)�-�%�1�7�#�-�+�&�+�0�5�.�(�&�/�+�,�,�+��-�#��+�5�)�-�6�&�7�+�2�.� �.�&�*�.�3��"�-�/�-�8�7�&��#�3��*�2�1�'�4�3�1�%�5�2�,�$�/�/�.�#�)�,�3�+�0�2�.�(�#�0�(���,�5�*�/� �#�-�7�7�-�(�6�0�1�2�0�;�%�.�,�/�1�0�3�(�1�(�*�/�-�#�.�5�9�/�=�)�0�.�,�+�(�-�,�6�0�/�(�&�0�3�$�!� �-�&�.�!�-�*�.�'�,�&�%�5�3�.�&�6�'�:��%�*�1�6�4�0�-�*�)�3�4�!�1�)�+���,�3�!�;�'�4�7�4�'�,�)�-�-�(�<�'�5�/� �*�2�&�4�%�&�.�'�-�3�,�!��8�*�&�(�2��,�=�4�6�"�"�4�,�;�-�-�7�>�*�@�5�3�7�&�.�8�,�܀Ԁրـ׀݀Ҁ׀Ҁ��ԀրԀЀـՀ؀؀ـՀҀ׀Ԁց3�.�/�(�(�,��%�0�(�.�6�)�>�)�,�;�%�&�%�4�1�=�)�'�K�5�"��"�/�6�'�5�/�7�)�)�)�;�&�1�0�(�1�"�&�/�(�(�+�3�5�%�3�.�:�)�-�-�<�+�/�)�3�)�1�)�$�,�0�'�-�'�.�'�*�+�&�-�*�1�*�1�)�,�)�)�1�"�-�1�+�$�-�-�#�0�(�+�(�/�<��.�4�4�3�,�)�+�*�0��'�&�!�$�3�6�)�%�.�5�&�:�,�<�4�+�*�5�8�/�5�4�2�2�3�9�$�%�(�0�-�#�"�7�(�$�$�$�'�5�/�)�2�1�.�7�)�%�2�/�/�9�%�,�1�,�,�0�&�.�1�(�3�'�(�%�+�C�)�(�)�!�)�'�)�-�,�,�*�'�"�%�%�1�/�'�3�)�7�2�+�+�,�'�7�'�#�:�/�.�-�%�-�1�.�.��'�3�,�*�5�5�4�'�-�,�0�+�1�.�3�1�:�$�"�.�-�&�0�.�2�+�*�)�3�'�.�*� �+�-�:�*�%�*�&�,�3�(�+�'�(�"�4�(�/�.�-�)�@�3�2� �%�1�-�+�+�/��8�-�/�+�*�$��;�1�(�%�'�(�*�7�.�/��,�-�.�+�,�+�'�&��3�%�-�+�&�2�)�2�)�!�)��)�+�0�,�+�'�-�(�<�)�'��)�4�*�,�,�5�'�/�,�2�3��'�6�&�9�+�4�/�+�*�;�*�3��3�+�2�4�4�0�&�:��)�#�8�4�5�A��.�3�'�.�)�'�)�*�*�1�)�5�7�3�#�$�6�+�2�-�+�$��8�.�3�6�-�0� �)�-�+�)�*�4�#�*�/�2�"�4�6�!�;�&�.�%�(�5�/�1�+�+�&�!�0�.�#�/�(�*�*�3�7�%�-�%�0�.�4�8�6�0�&�)�5�0�1�2�"�3�)�)�+�+�,�5�1�6�$�5�@�6�3�-�+�5�&�1�:�3�-�1�+�5�&�=�2�9�3�/�,�3�+�/�4�1�$�6�3�=�(�;�&�'�-�'�8�,�-�2�%�#�4�ӀՀրԀـ׀׀ـрǀڀڀ؀Հ׀րԀր׀րπԀՀց"�4�<�5�2�=�0�+��&�-�4�0�,�/�%��4�,�'� �7�&�#�+�-�$�*�%�'�3�/�+�,�2�>�(�'�8�$�1�,�'�>�:�3�0�*�2�1�*�-�/�3�2�4�0�-�-�6�.�-�0� �5�0�=�(�@�4�-�4�.� �,�0�0�.�1��/�2�$�3�6�!�'�1�1�2�1�-�'�%�!�.�5�<�'�+�5�*�!�/�5��+�/�+�/�&�-�.�'�7�(�,�5�8�*�,�)�-�,�*�6�3�'�1�#�1�2�$�0�&�.�1�1�!�1�)�'�*� �%�&�&�,�0�,�5�,�6�+�/�+��)�*� �9�.�&�7�,�&�:�)�-�'�-�+�0�;��$�.�/�,�+�!�2�'� �0�)�.�4�'�+�4�1�6�/�4�.�%�@�$�/�%�%�-�1�'�4�)�1�/�-�+��7�0�-�-�5�9�,�-�6��3�#�1�,�2�3�+�)�4�/�.�,�(�2�&�!�2�-�@�/�-�9�)�1�-�'�'��(�)� �%�;�(�2�"�)�2�)�&�0�$�0�'�5�.�-�5�$�1�)�.�'�)�)�-�3��*�1�%�=�1�#�8�.�/�+�-�6�%�#�9�#�6�2�4�$�/�+�,�*�&�,�0�+�6�'�4�+�(�6�/�/�2�1�1�)�.�5���$�+�?�*�,�"��)�5�&�/�/�(�+�4�+�%�:�'�(�2�2�:�.�3�.�7��%�7�$�#�/�5�:� �3�-�+�2�1�,�(�1�-��+�/�+�/�*�$�/�,��/�9�)�/�3�A�9�2�3�*�6�-�1�+�/�*��9�+�'�/�B�!�/�1�+�4�+�+�)�2�:�'�"�/�*�0�)�,�'�%�4�+�"�*�3�/�!�,�-�-�7�*�)�1�%�)�"�4�,�2�9�/�"�4�0�%��&�"�,�+�+�4�+�)�/�6�8�+�/�1�-�1�$�4�:�7�/�5��.�)�3�0�(�&�&�-�:�7�/�3�3�=�+�7�+�/�4�+�+�(�)�3�.�'�1�.�6�.�#�8�*�/�6�3�0�D�3�2�7�(�Ԁـڀր��Հ׀ՀڀĀ׀ՀՀـՀՀր׀ՀҀۀ׀ـׁ(�#�;�3�:�7�3�-�?�,�1�0�1�/�<�,�'�,�.�.�5�3�'�#�B�)�!�*�)�3�2�4�7�4�'�8�&� �,�-�*�6�$�)�5�(�'�.�8�6�"�-�/�*�)�7�'�9�$�-�-�+�1�5�-�*�5�0�&�+�(�)�"�#��&�-�,�)�4�4�+��-�.�4�/�4�(��(�0�5�/�#�5�6�2�)�.�3�)�)�$�'��(�.�*�<�,�%�3�-�1��8�)�5�)�6��(�-�'�+�-�*�9�(�6�3�)�-�0�#�"�5�-�4�2�+�,�.�4�$�/�'�/�0�(�7�-�)�-�'��(�'�,�B�6�+�0�+�6�3�%�/�(�!�/�'�(�+�&�*�$�'�.�>�(�-�0�/�6�,�!�+�)�)�,�)�1�/�(�+�-�'�.�+��1�2�8�,�0�&�3�"�%� �%�-�5�(�,�;�/�(�,�5�#�(�%��&�+�)�#�*�3�/�/�%�*�2�7�+�)�&�/�*�0�*�/�)�'�,�%�7�2�(�9�(���$�4�/�/�#�6�'�*�,�)�'�(�1��'�/� �9�&�2�-�%�5�2�8�.�)��0�-�>�*�5�8�9�(�-�.�3��7�)�4�%�0�$�-�#�3�.�4�4�3�(�,�-�(� �3�&�-�3�<��#�3�%�/�8�7�%��)�1�7�'�2�'�*�,�"�*�!�.�/�+�(�)�#�4�%�.��.�'�%�+�$�+�*�$�!�.��7�1�1��)�!�'�(�)�-�)��.�'�%�+�)�7�;�-�'�6�(�+�,�-�&�%�'�7�-�.�$�*�/�-�6�0��.�&�)�-�5�1�1�4�$�0�*�4�-�$�5�(�'�(�-�)�3�7�*�*�1�8�/�.�*�%�/�-�,�+�#�(�1�#�=�+�.�#�4�0� �"�"�*�+�.�1�,�8�0�8�8�(�/�,�/�$�4�/�,�-�*��(�7�5�/�3�.�$�,�!�,�,�'�3��3�#�0�,�/�$�'�'�0�3�-�&�&�+�*�.�/�%�)�0�'�+�%�/�-�*�)�/�(�1�4�݀ۀՀр܀؀րۀӀŀрӀԀЀՀԀـ׀؀ـԀ׀րف7�+�%�:��%�)�3�.�/�(�+�6�7�)�%�0�!�-�3�(�+�3�,�7�'�&�+�*�0�(�)�.�.�.�3�<�2�/�7�/�/�1�-�-�'�&�&�3�&��'�'�/�,�,�%�7�(�#�)�=�0�7�0�/�-�#�-�/�+�'�'��)�1�+�7�=�*�'�*�C�*�/�/�+�*� �:�/�3�&�)�&�/�1�'�+�/��.�,�+�3�>�+�(�=�-�,�,�2�0�)�/�.�0��4�0�1�$�,�+�.�&�.�3�$�/�7�.��3�/�#�'�,�0�/�#�1�3�4�0�>�8�%�)�/�/�!��%�.�&�)�3�&�%�-�*�*�4�#�0�/�&�2�!�7�)�%� �4��/�.�#�%�)�*�(�8�7�0�4�3�>�*�8�4�=�=�1�-�2�,�6��0�1�7�7�*�3�6�.�.�*�'�-�+�3�+�1�5�(�/�%�*�/�/�,�#�+�5�#�8�3�*�9�,�)�8�.�%�)�(�5�>�#�*�5�2�$�1� �/�.�+�*�/�6�,�4�(�+�,��+�,�1�$��+�!�*�$�4�'�-�)�(�,�3�3�*�$�-�(�,�-�+�5�:� �+�+�.�/�(�0�)�.�,�1�,�!�2�0�*�/�'�0�)�4�*�"�3�3�-�*�!�*� �1�4��6�3�%�*�/�+�-�B�8�+��4�,�,�%�$�-�3�%�(�9�,�7�.�4�.�.�3�%�#�%�$�A�-�/�&�4�'�)�!�1�#�+�'�-�)�(�*�/�6�*�#�5�0�6�1�*�,�-�&�.�+�3�/�6�&�7�)�*�)�3�1�/�6�&�+�?�-�-�+�*�2��8�*�,�(�3�'�*�7�/�$�/�+�'�)�:�2�,�;�#�/��#�+�,�3�8�'�+�&�6�4�2�&��9�(�5�2�2�%�#�4�/�#�7�'�.�)�1�$�%�,�%�/�-�,�-�'�'�"�)�-�4�3�+�9�:�-�6�0�+�<�)�0�9�/�1�#�&�9�&�=�'�<�%�=�.��5�4�1�0�/�>�:�$�"�$�4�2�.�5�:�<�0�(�1�)�5�׀Ԁ؀ԀӀ׀ԀրҀŀ׀ՀՀӀـր؀ՀӀڀ؀Հրҁ:�-�*�3�-�*�6�,�.�(�5�%�1�4�+�7��+�0�1�.�8�+�1�*�C���,�0�,�%�'�'�+�4�*�(�,�,�/�.�)�0�'�-�'�<�,�(�'�#�.�#�,�%�2�7�"�7�9�8�/�5�7�#�9� �2�"�,�-�2�'�$�7�3�,�/�1�6�1�9�5�1�)�+�*�(�3�/�0�6�)�'�*�3�,�2�.�"�6�0�&�'�1�0�/��9�0�.�)�1�/�1�)�3�*�6�'�5���+�.�4�0�*�&� �6�3�-�/�3�3�3�,�&�3�1�2�"�7�+�3�4�3�2�.�%�.�1�(�,��/�(�4�(�4�%�:�+�:�*�8�:�)�5�*�+�(�0�+�*�8�+�-�2��,�)�9�.�3�-�*�,�)�/�7�%�'� �/�+�,�-�-�7� �(�4�*�:�.�2�1��,�?�1�.�,�(�6�9�F�+�"�-�,�$�+�:�.�;�8�&�;�;�2�"�+�,�)�:��2�(�7�'�2�+�/�.�"�3�%�3�;�3�9�)�I�-�!�%�-�/�!�'�*�'�#�-�/�$�<�2�&�+�.�"�*�-�!�+�B�&�.�4�-�,��(�#��)�(�-�)��3�'�.�4�1�3�+�(��3�/�/�1�'�,�/�"�'�(�(�/�6�*�.�0�3� �%�0�-�,�*�1�0�%�1�"�'�+�/�*�+�)�%�*�.�5��*�5�3�/�1�7�2�/�5�(�B�-�(�,�%�0�3�9�,�3��'�,��9�1�:�/�-�4� �8�'�3�,�3�7�)�$�1�0�;�%�3�0�2�4�.�"�"�,�-�2�,�5�)�'�/�)�/�1�+�'�=�.�&�+�+�+�-� �/�2�%�*�#�#�6�%�'�'�+��*�+�(�7�'�%�)�(�4�3�&�=�+�1�+�,�2�0�-�1�1�*�9�0�)�0�2�'�3�-�/�)�,�)�,��+�-�&�;� �+�9�$�,�(�3�7�7�*�+�(�8�2�-�-�-�2�*�=�1�/�.�4�/�*�-�/�'�9�!�7�+�/�0�/�&�0�2�B�"�&�2�+�,�<�׀ۀՀՀҀ܀р؀ЀŀӀ݀ՀՀՀـڀۀڀր؀ԀԀ݁,�/�&�7�$�0�+�.�2�4�+�:�.�/�7�/�1�4�4�&�)�4�4�/�6�-�3�0�.�+�+�1�1�6�%�-�)�(�+�$�;�)�.�0�*�(�/�+�'�#�'�-�7�5�'�+�-�(�"�"�!�0�2�/�&�,�6�&�+�$�1�/�1��,�,�/�1�+��/�1�0�-��+�.�+�3��3�1�3�>�B�+�,�/�'�;�.�0�*�*�#�&�-�2�#�,� ���4�6�.�-�5�(�/�8�$�<�-�4�$�+�.�8�*�6�&�1�)�+�*�+�2�)�-�/�3�?�1�'�6�&�1�,�=�/�!�'�+�*�2�/�+�)�)�2�,�/�5�%�1��:�(�'�)�(�2�'�3��3�,�3�/�*�0�,��,�&�!�0�0�+�-�,�8�+�/�4�'�5�,�$�%�6�+�4�+�%�!�)�8�/� �&�+�*�4�.�7�#�*�+�)�$�*�%�3�)�/�0�/�/�$�3�%�,�3��2�/�#�#�)�0�4�+�"�'�0��2�&�)�<�:�(�;�4�(�.�'�5�4�6�(�+�4�)�5�*�-�%�'�*�7�)�5�)�!�$�(�2�(��4�"�5�*�8�"�,�"�+�2�3�*�/�/�.�-�5�*�4�%�+�$�:�+�6�2�2�/�#�,�&�&�-�&�2�1�"�'�%�+�-�:�"�.�*�&��'�)�,�/�#�1�(�8�'� �-�0�)�.�8�*�-�1�&�/��/�5�,�0� �3�'�-�4�4�)�7�/�-� �'�#�-�:�,�(�'�,�/�*�/�,�&�5�'�)�3�'�*��!�6�,�%�-�,��/�&�)�7�*�+�0�(� �"�/�&�3�.�"�)�4�*�<�1�#�2�/�.�&�(�-�6�&�(�/�'�/�&�.�@�4�%�1��8�0�,�&�'�-�!�#�-�(��5�2�*�)�8�%�+�.�-�.�"�1�0�;�)��.�#�4�6�/�/�)�/�-�1�*�4�*��4�-�1�6�*�(�'�'�-�0�5�1�0�(�7�&�/�(�)��,�.�7�.�-�0�=�%�+�,�+�6�4�4�$�<�;�-�4�ր׀׀ـӀրۀـӀĀրۀ؀Հր׀׀؀ـ׀ڀՀـՁ8�+�+�-�(�)�>�&�7�+�:�,�2�9�;�1�-�8�0�,�5�6�.�#�2�5�7�1�4�6�-�2�9�'�/�<�-�+�#�2�.�.�2�,�-�/�#�1�+�-�)�-�1�8�(�)�5�/�-�5�+�3�0�(�%�.�#�*�)�(�>�*�4�#�)�(�1�.�:�>�/�4�)�-�7�+�)�"�/�2�$�#�3�,�#�-�(��5�/�/��6�2�*�'�5�$�'�.�*��%�(�(�/�+��(�3�?�)�+�$�-�7�*�/�.��0�.�B�-�+��'�:�5�8�'�0�2�.�1�4�0�*�3�/�(�+�'�$�-�&�,�)�.�/�.�8�0�)�1�*�0�9�#�%�3�0�-�$�1�#�=�'�.�$��6�3�%�1�#�*�*�-�.�)�-�/�1�8�4�+�#�(��%�7�7�#�#�/�)�1�+�0�)�)�-�-�,�3�0�)�9�)�2�4�&�"�5�'�8�3�&�*�1�-�'�/�;�/�)�$�+�(�*�&�+�(�*�9�&�+�0�,�3�,�8�-�(�.�8�/�/�!�8�)�+�,�8�3�3�/�1�)�%�7�/�-�2�0�8�4�)�;�,�$�0�<�-�'�'�/�3�(�(�.�+�(�.�4�-�+�*�)�2�+�'�/��"�'�-�+�*�,�E�*�%�2�*�8�*�%�$�!�5�#�*�C�4�5�'��%�+�&�'�'�)�2�$�)�4�9�(�4�3�(�0�-�5�$�1�'�+�-�(�3��!�(�4�!�,�/�3�2�5�'�'�'�-�.�#�*�+�;�(�3�:�5�-�)�"�/�3�-�%�7�!�)�2�2�'�)�*�"�$�+�&�8�<�2�/�,�"�0�1�5�1�3�2�4�'�'�6�,�,�3�-�'�(�)� �+�2�*�1�7�0�0�.��-�+�+�5�;�-�-�+�3�-�"�&�,�9�*�(�3�;�,� �+�*�0�1�%�5�0�-�&�2�!�5�0��.�0�3�+�<�"�+�.�-�*�3�2��&�0�+�5�!�/�*�)�/�,�+�0�6�:�%�/�$�,�*�2�)�3��%�-�)�:�<�3�-�8�)�1�%�.�,�ր׀؀ր׀؀ԀԀҀĀՀր؀׀Ҁ׀ـ؀Ԁ؀؀Հ؀ف*�7�0�0�5�'�,�5�-�0�0�*�/�3�3�'�5�(�*�+�,�+�6�0�1�1�2�)�0�,�5�6�1�*�.�(�)�7�$�/�6�.�3�0�5�L�%�4�3�-�1�!�6�)�7�*�,�+�)�7�7�#�2�(�-�2�.�"�2�-�.�(�/�-�(�5�-�"�-�'�3�#�)�$�5�:�5�9�-�,�#�#�*�3�*�<�6�"�.�1�3�/�.�/�1�,�2�)�.�*�#�$�+�.�,�4�3�/�'�/�'� �"�+��"�0�!�1�'�)�!�!�(�%�%�)�5�+�1�,�.�.�0�(�)�,�0�'�/��(�<�,�2�/�"�"�/�!�!�1�6�*�0�,�2�0�,�7�3�2�5�'�.�+�-�+�&�'�5�$�,�2�7�2�5�"�3�1�-�,�)�3�(�5� �1�2�%�-�/�,�/�6�%�0�3�2�$�.�#�3��6�&�:�#�-�3�+�*�.�)�,�)�/�C�?�'�$�.�(��%�,�/�6�1�0�5�>�%�/�(�5�2�"�#�.�1�6�'�+�A�-�3�+�/�$�.�(�0�-�$�7�-�+�'�/�/�(�&�&�"�>�/�$�)�?�*�/�*�.�'�!�'�,�5�'�.�3�/�*�*�.�(�&�.�'�,�-�7�(�,�5�1�2�7�0�2�8�&�(�%�+�'�3�6�4�/�,�*�#�&�&�5�2�&�7�$�1�1�*�0�+�.�1�%�%�2�!�0�+�/�,�&�2�7�*�.�(�.�5�!�'�6�-�&�,��)�;�*�(�,�-�(�7�,�5�"�(�&�(�.�,�.�-�-�7�5�0�'�5�7�8�6�)�2�%�3�A�+�%�.� �(�)�-�6�&�$�-�#�'�0�/�9�'�.�)�;�3�+�+��/�1�$�*�,�;�4�!�)�,�'�)�*�0�1�;�/�)�%��;�.�2�3�)�7�!�+�-�,�&�(�%�/�+�3�0�)�#�0��'�(�%�!�6�2�4�*�-� �:�*�%�>�%�5�.�(�!�-�(�1�5�(�+�2�A�-�8�:�*�/�&�)�.�7�)�=�(�,�+�:�H�,�5�.�3�-�-�3�*�0�2�8�ҀՀӀՀــ܀ڀҀÀӀۀ؀ۀӀՀր؀׀ـ؀ӀЀځ/�/�4�,�,�.�5�$�5�2�(�;�9�/�,�'�'�0�&�)�,�,�)�+�&�/�/�#�0�,�*�=�6�,�(�9��6�1�1�6�%�'�+��+�%�'�/�*�/�,�)�,�+�)�/�/�1�5�)�)�5� �+�%�0�$�0�5�4�$��.�)�%�(�)�=�#�/�.�,�-�&�/�$�(�1�,�;�%�+�(�<��0�5�&�*�4�*�-�+�?�&�*�+�5�/�*��$�0�+�7�'�*�,�4�*��&�,�=�5�1�%�.�/�)�*�2�1�.�)�/�/�/�#�,�3�)�-�(�#�2�'�3�,�!�#�2�3�*�1�/�.�+�0�.��!�+�1�$�5�+�%�6�0�;�2�-�+�'�*�&�-�3�,�3�+�%�(�0�.�*�6�.�)�)�&�0�'�#�&�*�+�1�4�-�'�&�$�4�6�0�%�+�0�*�/�$�/�)�0�)�1��#�,�&�)�0�2�"�"�6�(�*�!�4�-�)�-�-�@�6�.�2�$�%�5�+�(�.�1�+�*�(�)�#�,�-�!�'�C�$�4�4�0�/�.�/�(�2�C�+�(�!�1�,�+�,�*�6�)�0�'�;��-�.�0�6�,��.�)�(�+�6�.�0�0�2�"�*�1�4�1�?�)�.�/�-�1�.�%�0�(�%�5�6�,�-�6� �$�)�,��7�3�F�3�%�*�1�2�/�0�-�4�5�1�#�,�0�7�2�)�-�6�'�'�*�+�/�/�%�3�-�3�%�*�%�(�2�4�3�/�&�"�;�)�4�/�-�(��%�*�0�3�.�)�)��"�-��.�.�0�#�"�/�/�+��4�(�+�6�)�/�,�$�-�%��1�&�/�+�6�.�-�)�.�+�'�'�)�(�*�4�.�6�+�'�*�+�'�=�%�,�%�(�2�(�+�1�/�(�%��0�+�1�.�(�/�#�+�0�1�%�5�0�)�/� �5�3�3�$�)�&�/�-�-�)�-�*��0�.�*�1�8�7�&��)�4�0�1�>�%�-�3�+�A�-�9�=�1�'�.�%�1�-�-�4�/�1�+�'�-�.�6�+�9�2�1�'�3�4�+�րπ׀׀ڀՀҀـր̀րՀӀ܀΀րՀՀԀڀԀՀ׀с#�;�=�'�9�4�%�1�*�0�5�'�+�-�/�*�1�2�1�#�9�4�2�/�-�.�/�1�*�+�0�+�6�"�&�.�/�-�*�.�&�*�+�"�6�$�(�'�/�%�1�3�8�'�4�7�%�'�&�#�/�"�5�6�3�(�*�3�8�*�+�7�(�(�;�.�*�$�)�'�-�%��+�2�/�6�?�,�/�(�3��7�'�9�%�;�0�6�!��8�'�#�3�+�'�0�,�.�%�/�#�&�.�"�/�(�*�)�,�,�,�'�)�1�2�3�.�*�0�)�,�+�,�,�%�&�'�,�2�%�*�*�1�+�.�/�.�#�3�,�0�,�9�?�/�0�'�1�?�"�8�(�/�&�'�+��2�+�(�+��*�.�:�)�9�/�&�,�7�2�(�3�=�6�+�*�1�!�*�.�+�%�#�'�/�'�*�!�0�:�0�)��&�*�!�0�"�-�"�&�+�.���+�=�4�.�*�+�1�)�/�'��4�+�,�+�;�)�.�.�,�!�2�=�#�%�%�$�4�+�&�/�/�+�#�#�1�4�!�(�:��4�.�+�3�'�.�"�"�3�!�#�(�.�,�)�.�-�(�*�#�1��=��0�1�&�&�1�0�4�&�5�/�-�5�1�0�%�2�+�5�2�7�+�7�*�.�-�8�!�(�*�+�#�*�$�.�#�+�2�/�0�:�?�9�5� �,�<�2�%�,�4�/��1�"�(�'�6�;�8�.�)�+�+� �,�9�-�-�+�C�.�(�/�$�8�4�3�+�=� �,�/��*�7�/�)�7�1�.�"�+�*�(�-�3�+�5�,�*��0�)�1�,�&�'�*�!�.�'�&�%�,� �7�:�/�.�8�)�%�%�6�0�(�&�0�6�-�2�0�/�,�)�(�*�2�-�&�/�0�.�(�5�&�-��6�1�&�)�7�+�(�"�.�4�3�=�/�9�&�3�)�<�)�.�)�3�6�/�&�(�(�!�7�+�.�.�+�$�6�6�1�/�%�!�/�1�D�$�(�'�3�&�9�.�+�$�/�5�*�6�)�*�-�4�)�*�(�2�3�)�#�7�2�.�%�;�,��+�1�7�0�;�ԀրՀ׀ۀրـӀ؀ǀـڀހՀ׀؀׀ЀՀҀڀՀրց �!�'�1�*�2�7�"�/�.�5�-�2�"�!�*�7�!�+�'�'�0�/�A�,�*�(�1�)�/�;�;�2�/�#�/�.�5�C�2�(�/�/�3�2�3�,�3�<�2�1� �(�.�,�3�3�(�/�(�-��-�7�'�/�'��.�*�5�*�&�2�(�0�.�/�.�+�*��3�)�"�D��1��(�.�$�:�-�1��4��7�)�!�+�1�,�)�&�/�"�'�"�+�$�&�4��*�4�3�"�"�(�%�=�+�9�1�1�5�"�+�1�/�+�0�1�0�%�-�1�(�#�2�-�4�B�4�+�'�4�4�*�#�"�)�&�.�$�1�;�.�0�3� �-�.�.�!�4�.�3�%�)�)�(�8�(�)�.�3�/�$�8�8�'�#��3�6�%�(�)�5�"�!�-�&�*�3�)�5�/�*�0�&� �)�'�&�2�(�%�*�!�.��0�5�"�$�'�;�5� ���)�-�/�'�(�B�5�,�-�/�2�'�'�2�!�/�0�0�!�.��,�*�/�+�.�,�3�9�0�3�&��.�'�-�,� �"�+�-�2�,�-�/�*�"�*�.�/�&�*�*��+�*�.�-� �.�0�:�-�0�+�+�4�+�&�<�1�)�2�'�#�'�/�+�4�0�4�6�,�2�#�$�$�%�/�0�*�0�6�3�,�$�0�+�$�0�6�)�-�(�)�/�.�.� �(�/�-�5�-�(�9�9�5�3��(�=�1�2�F�&�&�6�.�+�/�3�+��1�1�3�2�+�5�$�%�.�)�(�!�,�;�/�-�+�(�!�0�6�"�!�-�5�-�,�-�$�!�.�1�(�)�&�2�*�)�2�*�'�)�1�/�!�#�*�5�+�4�/�*�(�2�*�/�7�:�3�*�2�*�$�*�(�'�*�$�(�)�"�'�5�*�)�-�0�'�-�9�/�+�3�#�0�-�'�4�%�0�1�:�3�!�"�*�0�3�.�,�(�&��)�#�%�.�5�*�5�0�(�/�,�!�9�/�"�7�-�.�5�3�+�6�8�.�(�,�/�'�0�/�.�&�=�&�-�6�1�,�2�1�>�;�:�1�*�1�(�"�/�0�ր׀܀ۀՀ؀ـ��ҀɀրԀԀ؀Հـ؀ՀӀրՀڀՀԁ:�-�.�6�0�+�5�3�7�+�/�/�+�+�2�/�&�1�7�6�.�(�/�6�@�7�4�*�.�7�3�+�0�1�,�9�3�#�/�8�1�'�,�*�-��4�-�&�)�1�*�<�'�*�#�'��5�)�-�3�,�2�-�-�&�7�,�0�)�2�-�9�1�(�2�5�5�4�/�.�8�+�0�$�)�*�,� �:�4�)�-�)�#�2�+�0�.�(�7�+�4�"�0�7�0�/�+�/�)�"�"�%�.�,�&�,�,��+�+�1�3�6�0�&�"�'�0��'�0��,�1�(�.�*��2�7�1�#�4�7�9�(�/�1�,�$�,�/�1�4�-�"�5�9�/�'�1�-�.�'�0�%�0�#��/�+�,�,�4�6�)�4�*�4�#�)���$�-�1�%�*�#�+� �-�/�.�)��)�*�+�&�1�(�-�&�,�&�*�+�,�>�(�'�.�8�.�&�2�*�#�+�/�%�+�,�1�2��&�$�)�,�0�*�)�,�)�+�-�)�#�<�-��$�'�,�%�7�!�%�,��0��A�#�;�4�2�)��-�*�:�#�,�5�)�8�.�+�$�2�/�3�-�+�)�,�6�0�?�)�.�3�-�,�-�0�1�4�-�.�,�*�"�,��.�&�&�-�)�'�4�$�,�.�*�$�1�+�,�'�'�?�/�7�/�,�(�+�1�,�5�-�(��6�,�+�.�#�6�1�1�(�4�+�0�1�:�+�,�0�/�/�&�#�!�'�#�!�/�,�5�)�.�.�0�&�.�"�)�.�;�0�3�)�9�1�.�/�)�/�3�)�)�%�(�%�/�/�+�*�,�3�4�+�1�.�+�8�,�4�9�'�/�*�-�-�,�,�.�.�.�'�,�#�9�5�:�/�-��7�(�$�3�'�%�)�/�+�(�0�-�&�'�7�0��*�-�6�1�;�.�*�/�3�%�'�5�.�)�3�(�-�6�2�0�)�.�7�2�8�(�*�'�.�=�-�1�8�4�5�(�$�"�(�/�)�-�3�>�4�:�+�(�2�5�'�)�/�*�)�/�;�9�5�/�7��-�7�=�1�)�+�;�-��&�4�*�;�'�1�؀րրڀ΀Ҁ׀ӀՀ̀׀ڀ׀׀׀ՀҀԀ׀ҀրՀـہ5�-�)�.�+�#�2�-�0�-�0�'�6�%�*�!�/�7�(�+�'�)�!�'�0�.�3�;�3�.�-�6�$�2�-�-�)�*�/�'�/�-�2�%�/� �)��0�(�<�6�7�-�.�-�-�+�7�4�/�-�+�0�)�1�*�A�0�1�7�>�7�.�+�"�'�(�1�)�1�#�4�1�1�1�0�"�0�+�3�;�,�*�-�$�.�@�;�,�=�+�3��%�9�%�9�&�2�1�1�0�:�$�-��'�-�+�1�$�&� �+�3�0�#�$�+�-�1�-�/�/� �3�"�7�$�+�#�-�3�&�-�:�"�+�;�.�0�'�)�1�%�"�'�4�.�2�+�)�0�;�5�"��,�*�.�0�5�#�*�"�>�(�"��.�0�'�2�-�'�+�3�"�3�*�-�"�7�'�/�1�.��#�+�1�3�)�-�2�!�+�)�*�3�!�'�,�%�&�*��:�/�>�3�%�&�,�*�,�%�'�0�/�(�+�-�0�;�*�1�'�*�*�*�%�&�/�5�3�)�+�/�2�4�.�7�4�+�&�-�$�&�+�-�5��)�1�&�!�-�0�'�-��=�1�=�4��*�5�8�-�2��6�*�!�)�<�'�-��;�,�0�/�*�4�+�2�8�-�'�(�6�&�2�7�/�,�)�/�1�*�$�2�$�&�%�)��#�/�)�/�'�+�/�-�)�&�+�6�1�4�&�0�-�/�,�/�7�"�(� �4�+�'�&�+�#�-�/�0��-�%�,�/�!��)�-��-�;�6�3�:�*�*�,�#�8�<�(�&�.�?�-�-�9�-�%�6�-�,�5�*�.�!�(�#�2�'�-�1�2�/�2�,�*�6�-�1�,�9�1�.�0�9�&�2�#� �2�%�&�'�/�2��+�#�$�.�)�$�8�1�$�1�%�*�*� �)�(�>�(�!�)�4�)�3�4� �&�5�'�$�5�(�'�6�.�'�'�)�-�-�2�%�+� �)�4�*�/�'�%�'�(�)�3�7�)�+�'�"�)�1�'�7�%�6�A�.�)�#�%�1� �7�*� �*�-�*�5�(�)�/�1�#�2�&�!�0�4�*�'�Հ׀ـӀ׀րՀҀՀʀԀրӀ܀Ҁ׀׀ՀрՀҀրـ܁2�6�-�1�2�-�%�/�'�=�7�+�'�8�$�)�4�9�*�'�%�+�3�,�,��2�7�9�.��+�"�/�5�"�7�1�2�$�*�0�?�1�0�0�&�/�'�7�$�4�2�3��=�2�5�'�3�5�$�9�4�+� �7�-�)�%�:�-�-�5�9�>�%�/��5�7�1�#�-�$�.�*�:�/�.�!�$�.�+�/�)�3�0�&�4�.�)�(�#�3�7�'�0�'�1�7�&��1�0�%�3�+�&�0�&�2�-�0�0�&�&�'�0�+�;�%�/�6�*�/�/�2�#�+�&��%�"�+�-�#�*�'�1�/�$�;�#�2�5�$�/��0�!�/�1�,�.�/�1�7�%�#�,�(�"�@�%�.�+�6�2�(�,�#�/�/�+�-�:�3�'��,�.�-�6�+��'�*�7�1�)�'� �0�0�8�'�&�-�2�;�)�7�%�#�3�3��+�#�.�7�)�0�)�*�5�#��$�(� ��/�*�#�'�(�-�5�%�C�*�+�:�.�&�-�5�/�8�5�$�.�$�,�3�)�9�8�&�*�!�)�+�'�8�&�-�$�4�2�&�*�2�-�-�*�*�"�/�2�0�-�/�/�-�*�1�*�:�,�$�0�*�,�+�,�'�'�-�-�2�8�%�#�-�$�0�,�&�2�&�7�0�,�(�)��-�/�)�3�+�-�-�'�8�1�&�.�#�.�&�&�B�6�-���'�,�'�-�$�6�9�,�+�&�(�&�/�-�)�.�2�A�!�#�"�1�(�/�)�.�#�-�0�*�$�&�7�,�(�&�+�4�(�"�)�)�(�*�0�6�-�'�&�0�:�)�!�1�3�'�*�8�-�-�+�*�/�8�9�,�4�2�5�#�&�0�/�%�)�.�,�+�2�2�.�*�*�%�"�&�,�#�)��(�"�6�4�1��&�1�+�5�6�(�,�#�!�%�+�-�(�;�)�/�:�,�$�:�'�&�2�/�2�/�/�'�,�*�-�2�.�4�6�+�+�6�&�&�.�-�*�7��,�%��%��%�'�;��0�8�7�6�.�-�.�6�$�2�*�-�1��6�0�'�=�*�/�7�,�ۀ׀׀؀ڀՀՀӀ؀��ՀЀӀԀҀր׀րـ׀ـրրہ/�4�B�7�4�4�6�7�/�/�(�=�%�7�4�:�9�=�*�6�7�.�'�/�A�'�+�'�0�6�3�,�'�(�5�5�+�(�.�A�2�"�=�4�&�B�+�%�5�/�(�2�,�.�(�/�(�4�7�4� �-�0�-�3�/�>�3�3�0�'�+�0�,�*�&�+�,�/�,�9�,�5�<�%�.�0�.�-�'�1�/�"�0�1�,�'�0�2�5�*�9�5�+�=�6�+�$�%�?�3� �2�3�2�*�-�0�+�+�/�$�5�4�2�,�.�+�,�@�*�$��.�5�&��2�9�,�'�5�)�,�&� �,�-�1�+�0�-�%�+�0�)�*�.�,�-�6�)�%�)�"�/�)�+�.�%� �'�$�$�"�2�)�2�6�0�)�;�$�*�-�)�3�'� �.�)�3�$�)� �+�"�(�5�2�3�"�#�3�+�;�-�)�/�'�$�2�+�-�:�4�%�*��)�+�"�#�/�-�)�0�4�0�"�2�:�&�1�5�#�$�&�$��$�.�/�0�3�/��!�)��)�5�(�/�.�+�=�)�1�,�A�&�/�,�1�'�$�7�*�:�*�/�/�1�2�0�#�.�4�$�(�*�/�$�*�&�5�+�.�2�6�-�6�-�7�+�-�-�9�0�(�/�)�/�/�%�%�*�5�+�)�&�2�(�+�2�*�6�*�6�*�/��/�%�&�*�'�+�+�%�-�3�7�(�(�)�+�1�.�+�2�*�%�+�$�*�-�&�-�+�1�'�3�(�:�$�6�0�(�0�.�6�$�3�$�8�-�.�6�1�9�<�,�+�)�)�/��/�"�)�;�)�*�"�8�1�#�)�$�1��)�+�-�$�'�*�+�-�2�-��)�/�0�'�2�<�+�.�/��3��9�;�0�"�:�+�(� �+�*�)�,�9�)�+�(�1�'�(�)�*�+�/�*�2�1�+�-�-�&�#�*�-�0� �,�7�(�,�.�2�(�<�&�0�.�0�5�+�%�+�,�,�-�B�/�,�1�9�3�)�,�,�.�(�4�$�+�(�)�1�&�2�2�,�)�2�5�?�.�.�8�.�,�,�7�*�,�*�0�0�!�2�"�0�-�ҀӀրӀ׀׀րրـɀ׀ۀԀՀ׀ҀՀЀҀՀҀӀ؀ԁ+��#�.�2�%��(�9�/�7�1�+�&�-�/�0�,�(�-�0�6�7�8�&�4�4�/�%�4�,�:�$�&�/�/�1�&�=�4�7�#�3�1�3�1�0�0�,�.�7�8�+�-�$�1�/�!�0�,�<�*�)�"�2�1�)�+�(�&�4�-�)�4�9�)�9�(�5�*��(�+�%�+�/�<�-�+�9�0�2�0��2�0�$�:�.�1�1�+�/�)�!�)�*�!�,�$�-�%�2�+�/�$�.�2�?�/�3�5�'�#�5�5�+�&�4�0�*�&�7�+�-�.�'�1�5�/�5�5�'�;�)�(�)�4�1�)�+�#�,�%�?�+�)�3�0�*�+�,�)�-�(�3�/�%�0�8�,���"�'�3�/�+�/�$�%�'��$�'�#�(�/�"�-�-�6�!�/��1�,�%�:�0�*�+�&�*�-�-�0�*�$�"�*�&�1�5�-�4�6�+�!�.�/�)�/�0� �&�#�3�3�.�/�,��3�/�(�0�:�0��,�2�.�&�'�0�2�3�2�'�/�"�4�1�7�1�+�*�-�2�1�/�:�2�/�1�0�-�/�,�%�3��5�4�.�8�/�.�8�!�)�4�*�(�&�(�2�"�2�+�.�?�8�!�*�1�/�+�4�6�/�%�#�1�1�0�0�)�.�+�&�*�+�7�4�1�1�4�4�&�%�4�,�,�*�.�E�+�(�.��/�-�)�*��,�%�/�4�:�%�.�%�6�%��1�/�.�'�-�2�6�,�)�5�!�-�%�1�'�-�.�+�*�0�(�'�5�/�+�-�(�)�&��*�0�3�>�+�;�)�(�'�3�,�(�*�+�#��)�/�'�&�-�.�2�1�0�,�&�.�1�-��3�/�'�5�/�#�"�*�%�*�7�&�$�/�;�$�5�,�+�,�*�.�/�/�)�8�(�2�$�'�(�)�1�<��#�/�,�0�7�(�0�0�&�&�-�4�/�/�.�)�3�,�4�4�-�5�5� �.� �*�)�6�>�(�9�4�/�$�-�%�)�4�,�,�(�2�1�.�:�,�(�7�+�5�D�2�+�-�4��9�/�8�+�.�7�*�.�,�)�5�րҀր׀ـрـӀՀŀրӀ؀ԀӀ݀؀рրӀӀ؀Հց4�4�1�2�;�&�2�2�5�<�'�1�/�3��/�'�!�7�3�.�/�1�-�,�&�(�1��=�:�,�.�0�6�(�;�!�-�;�/�&�.�4�-�&�)�7�4�#�*�+�'�&�1�,�1�*�'�:�)�&�#�&�"�)�(�4�0�5�:�'�'�4�)�-�-�5�)�5�0�)�(�0�=�%�/�+�0�,�*�"�1�?�1�1�)�<�)�9�0�)�%�-�)�6�9��/�/�3�6�+�1�*�-�0��*�'�=�,�1�1�,�:�.� �/�+�(�(�&�1��)�+�8�*�,�8�.�3�3�(�&�/��'�!�,�$�$�3�+�8�,�#�,�,�#�(�*�'�&��&�-�-�2�*�4�)�/�*�$�/�5�'�-�1�7�2�/�=��(�,�,�&�-�$�#�)�7�&�/�+�/�+�5�-�#�&�(�$�&�)�.�.�2�"�=�0�+�/�4�2�+�3�%�)�4�+�+�2�)�/�&�3�#�#� �%�*�E�1�;�-�.�1�+�7� �(�*�'�8�8�)�-�'�4�<��-�.�3�&��/�4�#�4�8�:�)�'�=�4�,�/�/�3�+�*�3�-�)�-�/�1�"�0�-�,�(�.�)�$�"�6�'�3�2�(�#�1�3�)�3�'�-����,�'�-�$�4��3�*�"�2�&�,�(�-�,�5�1�&�7�%�-�7�4�/�&�$�1�.�)�2�/�:�+�,�&�+�1� �5�%�7�(�(�,�/�3�,�(��/�(�!�/�2�*�%�)�,�4�,�0�1�5�1�)�.��$�/�4� �7�>�&�'�2�.�3��(�$�%�/�!�0�-�1�)�"�1�*�,�#� �"�2�+�1�(� �'�.�/�&�-�2�7�/�-�3�$�C�+��4�6�1�#�-�)�,�3�"�'�6�(��-�,�.�(�9�3�0�.�&�+� �0�/�-�6�%�5�%�-�5�0�(�'�7�3�(�,�-�*�/��B�-�,�.�!�2�3��0�/�3�)�-�)�5�*�3�,�5�2�.�1�.�/�5�.�*�(�.�,�4�.�0�6�2�7�,�5�/�'�*�/�5�9�1�9�6�9�ՀۀـՀـЀӀՀ׀��ۀЀ؀؀Ҁ؀Ӏ׀Հ؀ՀӀրс,�5�1�;�3�7�1�'�.�2�.�+�5�+�,�+�2��/�%�'�3�2�?�(�6�'�'�*�D�/�)�/�)�-�-�5�&�0�<�4�0�4�+�6�7��4�,�0�-�0�*�%�3�"�,�(�-�0�-�-�!�-�1�1�(�.�2�#�0�)�2�#�>�/��$�/�3�)�+�3�2�/�-�!�1�-�@�*�"�%�/�-�,�!�*�*�'�'�)�&�#�*�3�(�,�+�0�&�,�+� �*�-�(�/�3�&� �,�5�6�)�/�1�5�2�9�'�#�+�'�1�&�-�&�.�'�+�.�/�3�+�(�1�"�(�)�1��'�2�4�%�/�%�5�(��+�4�,��6�3�.�/�&�*�:�(�.�"�0�#�7�%�7�5�%�/�'�)�'�.�,�-�)�,��&�$�9�)�(�*�/�%�)�.�(�+�,�1�G�+�%�'�+�(�/�#�)�5�+�,�7�6�.�+�.�*�(�)�)�"�0�,�7�.�2�1�,�0�0�-�+�'�,�,�2�-�)�&�3�4�#�1�.�,�)�4�.�+�/�$�-�"�(�4�-����,�+�/�*�5�4�7�.�,�%�%�+�=�1�/�,�'�+�1�9�1�/�#�,�*�.�(�,��/�*�8�'�/�/�*�1�&�*�5�)�%�*�+�+�$��;�:� �0�0�/�(�/�'�'�#�'�*�8�,�3�2�!�'�-�1�/�"�;�)�6�*� �+��/�0�/�'�!�3�,�/�7�-�'�+�0�-�.�)�+�*�.�4�.�1�#��&�0�$�&�5�*�+�&�6�%�1�+�8�0�/�5�+�1�'�#�4�1�-�1�-�*�'�.�-�!�-�*�0�&�/�$�/�,�8�5�(�)�.�+�6�,�(�&�*�'�2�$�5�)�"�5�$�&�-�-�.�/�"�-�'�-�&�+�.�,�$��=�/�*�4�1�0�.�,�1�&�,�(�)�'�,�3�2�"�%�+��7�2�9�$�&�0�0�2�(�3�0�7�&�:�4�1�-�)� �-�2�0�3�A�=�9�/�0�/�+�/�>�)�+�)�.�:�5�5�9�1�*�:�D�/�,�3�1�4�(�/�9�ԀӀрՀӀӀՀӀ׀ŀӀ؀π؀Հրـ؀ـҀрـրׁ2�-�5�,�1�"�1�5�"�&�4�!�=�6�,��1�6�)�$�)�;�0�,�2�1�0�6�1�A�0�/�.�(�/�;�4�$�9�0�/�.�'� �4�+�#�3�7�0�2�,�2�.�+�4�>�3�+�1�+�)��(�%�*�*�$�4�/�*�*�(��'�,�)�#�*�-�&�2�-�2�-�*�+�-�;�+�+�0�'��<�.�*�/�3�0�-�+�,�&�+�7�0� �*�.�#�(�#�8�8�-�&�4�,�+�&�&�-�&�(�@�*�0�-�*�6�6�.� ��7�*�1�,�#�)�3�.�/�,�;�/�-�#�1�*�&��!�#�(�*�0�%�)�#�3�/�1�,�4�8�/�2�.�4�7�-�9�#�'�4�.�3�-�2�/�-�/�+�8�6�-��#�$�(��4�$�!�6�+�2�%�1�.��+���(�#�$�(�*�(�4�3�-�*�(�%�5�0�%�1�0�8�1�,�+�3�&�+�*�3�)�)�2�'�,�'�3�(�9�&�9�;�2�)�'�+�+�%�4�/�.����)��-�'�(�-�"�&�1�)�4�*�"�$�3�$�0�,�4�2�+�8�2�,�7�'�(�5�$�,�'�;�*�4�&�)�-�(�)�'�0�7�,�*�/�&�.�6�)�*��.�+� ��3�%�7�+�&�6�2�(�7�5�/�,�.�+�/�1�*�+�9�;��"�+�)�&�-�<� �)�+�9�5�%�:�%��$�+�/�.�#�-�2�1�)�!�)�1�1�/�0�9�&�+�+�.�+�*�:�<� �7�4�/�,�'�3�+�&�$�4�#�.�2�(�0�)�/�0�.�"�'�'�&�)�"�(�/�2�/�)�)�/�/�*�-�$�)�7� �4�,�4�%�-�)�4�4�/�2�!�/�3�+�'�0�(�*�/�1�+�,�.�/�0�-�/�&�8�"�7�)�*�-�,�)�0�.�2�8�5�(�,�8�8�5�A�)�%�6�7�4�3�4�0�4�&�,�,�'�;�/�'�&�0�5�*�5�:�7��/�0�/��3�2�2�7�0�$�/�*�9�)�-�-�.�,�2�0�/�;�+�5�/�9�8�,�6�0�ڀـՀπՀ؀ڀ׀Ӏƀ׀Հ׀ـ׀Ӏр׀ڀـҀրՀف+�2�;�<�(�1�.�6�+�/�4�$�1�#�4�5�$�=�-�7�*�,�.�'�.�0�4�5�.�!�&�%�#�,�/�"�)�+�'�3�,�0�2�;�2�)�/�/�,�/�8�/�3�B�3�&�*�:�2�,�4�5�&�5��2�/�7�8�2�.�(�%�5�)�7�(�/�0�"�'�"�-�7�2�9�+�&�4�$�@�.��1�;�4�'�&�"�/�.�1�'�0�&�)�6�'�$�9�%�'�3��2�8�+�4�<�%�%�%�2�1�9�5�2�$�-�'�0�1�$�+�+�0�(�+�*�2�$�A�6�"�+�3�"�"�4�(�/�%�/�+�$�)�/�.�$�9�3�2�*�+�,�:�!�)�6�8�"�'�%�7��4�*�)�4�*�+�$� �%�'�.�-��2�9�&�(�(�(�*�$��!�7�0�4�2�7�)�'�2�.�3�(�"�/�/�$�:�9�4�(�9�)�1�6�.�&�&�/�-�'�2�5�=�(�#�*�/�5�*�1�/�+�,�-�5�/�#�5�&� �#�+�,�,�8�2�7�1�,�*�-�"�.�*�!�+�/�$�*�&�4�;�,�'�1�(�6�2�&�/�0�1�'�/�4�&��)�(�7� �8�/�)�'�3�0�0�!��/��+�9� �-�5�3�/�6�0�$�'� �!�,�)�+�*�)�%�2�-�)�)��!�"�%�-�+�1�<�2�(�2�4�-�%�5�,�+�(�5��0��;�1�,�9�3�2�-�0�#�"�/�3�#�,�/�-�4�-�,�"�.�2�"�+�-�3�&�+�9�*�-�,�0�!�5��1�&�6�,�'�*�/�/�.�#�(�7�(�/�-�)�0�2�4�/�"��*�&�/�-�3�)�*�/�!�3�8�:�3�6�(�)�A�)�!�*�2�$�#�/��+�#�'�'�0�%�,�&�0�+�&�,�*�&�.�$�'�.�/�$�*�)�5�<�(�5�-�0�*� �-�/�/�'�8�$�7�2�(�.�,�/�!�+�5�/�7�5�)� �+�3�/�/�)�#�.�+�-�,�;�.�5�)�%�*�/�,�3�4�/�'�'�,�0�+�1��#�A�'�/�*�2�2�ӀۀڀՀրրـ׀׀ȀҀՀրԀԀԀҀրــրЀՀց>�.�/�7�.�+�7�&�'�"�>�0�+�>�,�&�-�0�,�/�8�9�7�5�4�1�)�$�:�"�%�,�+�<�1�"�1�+�.�:�)�)�+�/�:�$�)�$�+�,�4�*�-�(�3�.�#�*�,�(�%�*�*�4�6�&�.�+�+� � �,�*�2�-�'�1�%�*�#�/�3�"�/�1�&�3�$�8�+�4�&�(�.�0�3�)�8�*�(�&�(�,�-�:�,�*�$�*�-�#�1�8�,�)�6�2�(�"�,�6�$�>�1�4�&�!�(�0�'�3��4�7�2�/�*�'�2�/�)�'�%�+�#�!�$�%�9�8��3�(�-�*�1�1�'�8�0�1�"�*�3�;�%�!�<��'�.�+�0�&�&� �5�4�+�#�:�-�.�5�6�/�1�4�0�3�!�2�%�4�:�8�%�5�"�/�&�#�1�4�#�+�(�+�(�'�2�&�0�0��(�,�'�,�*�,�8�4�1�:�4�-�&�8�0�/� �1�,�+�&� �2�:��/�$�$�'�'�*�2�+�(�-�/�/�2�"�#�3�6�&�(�2��2�&�2�1�/�3�-�#�5�+�(�*�-�=�,�-�+�&�0�*�/�+�/�,�2�5�&�;�$�;�%�,�-�(�-�#��4�%�2�4�-�2�/�(� �'�,�+�-�5�1�1�-�0�"�-�$�*�,�1�*�(�(�/�3�4�/�9�9�5�$�-�,�,�.�7�'�,�#�1�,� �(�%�-�5�)�+�%��6�?�(�5�*�)�0�)��0�.�-�)�.�2�)�/��&�:�2�*�-�-�"��'�*�,�#�/�!�6�+�)�+�1�5�,�%�(��=�$�)�4�3�'�2�,�.��'�(�?�)�.�5�4��/�'�(��.�9�)�)�?�/�1�0�2�.�/�5�0�+�)�9�)�)�$�3�0�"�'�7�*�4�.�'� �(�8�*�-�+�-��#�*�2�*�/�)�+�"�0�&�.�0�4�"�5�8�'�)�)�-�.�-�-�3�)�5�#�?�$� �,�5�!�4�3�5�%�+�/�#�$�/�;�%�5�'�%�:�#�3�6��0�/�,�-�6�C�%�&�ـ׀׀ՀՀЀՀԀ׀ȀڀـԀր؀ـՀ؀р؀ـ׀Ѐց-�(�1�0�7�7�7�.�/�9�%�4�9�:�1�0�5�*�=�7��4�5�9�-�+�%�3�&�(�1�+�&��4�2�&��D�2�(�2��� �5�!�.�4�4�)�-�#�/�'�+�+�,�-�1�1�+�2�6�=�+�*�3�)�2�/�)�)�/�4�*�+�2�+��;�+�$�;��.�2�)�$�1�,�7�9�5�-��%�+�2�'�*�6�'�/�3� �#�4�7�-�9�%�*�)�!�(�#�3�+�-�-�$�8�2�+�+�*�6�-�$�#��$�$�4�*�5�'�0�.�'�+��3�+��6�0�4��,�0�/�(�+�&�)�$�2�+�+�*�#�)�/�'�(�/�� �-� �-�5�2�+�)�2�(�)�4�#�+�.�,�/�(�/�,��1�,�(�+�3�'�/�+�.�+�4�4�/�&�+�3�"�)�&�2�6�"�+�+�*�'�$�'�4�9�#�;��/�$�-�'�*�0�+�/�*�!�+�4�5�.�/�#�(�#�)�+�8�5�4�,�-�4�%�4�-�$�(�;� �*�#�)�-�.�.�:�"�.�2�+�!�-�/�5�3�%�5��(�,�-�6�(�6�'�'�-��.�1�%�+�3�+�.�'�/�&�"�&�*�'�.�)�7�-�#�%�/�6�2�$�/�2�2��'�(�2�1�0�*�-�-��3�(�5�+� �/�,�.�-�+�1�8�%�4�(�!�=�3�+�-� �'�'�*�/�-�/��.�$�3�)�-�&�*�/�3�%�&�"�0�)�'�7�4�0�/�5��5�4�1�-�$�4�:�-�4�-��3�3�#�,�0�4�4�@�;�.�'�.�/�1�-�%�'�,�;�+�/�2�%�%�+� �+�$�0�!�.�4�-�(�$�&�.�2�&� ��,�:�0�3�!�*�.�1�2�$�&�=�"�#�,�)�,�)�7�&�-�4�8�4�5��5��0�)�4�.�%�<�#�1�9�)�#�,�#�-�&�+�3�9�-�+�(�+�6�*�(�5�/�*�3�*�3�-�*�'�6�)�!�+�)�&�'�B�2�<�4�,�/�-�9�+� �6��1�3�?�)�4�+�1�3�׀ـ׀ҀՀӀڀրրȀ׀ՀԀ׀؀ڀҀـ؀߀׀ـҀҁ<�%�5�*�/�*�)�9�,�(�6�;�)�(�4�7�'�>�0�)�0�'�!�1�)�'�$�)�5�-�2�1�.�+�-�"�/�/�*�<�2�.��+�3�3��*�'��.�8�0��)�:�3�5�2�+�/�)�<�)�-�/�7�(�.���*�@�(�0�0�4�0�%�5�*�,�7�(�,�/�4�/��*�*�/�1�&�&�(� �3�/��&�&�0�.�,�+�)�1�*�2�'�*�)�.��(��%�1�6�&�1�+�/�!�&�.�!�9�5�#��'�/�'�+�*�-�+�0�-�(�-�'�/�.�$�7�%�'�0�*��7�-�-�1�2�:��/�$�#�-�2�+� �/�(�2�/�-�2�+�(�?�0�/�9�*�)�+�+�"�)�3�.�0�*��+�)�9�)�4�.�&�'�6�/�0�-�5�0�1�4�&�6�*�-�)�.�8�4�"�0�2�&�*�1�9�;�+�%�2�-�-�,�1�2�&�/�)�(�,�+�9�$�:�)�.�-�/�*�,�(�.�&�-�3�/�.�7�)�,��5�2�*�,�$�9�*�.�/�5�,���)�,�!�(�-�,�*�(�9�3�3�*�6�.�%�7�2��2�$�'�-�4�,�,�'�+���9�:�(�0�+�,�)�:�7�/�-�!�/�,�"�(�.�#�,�,�7��1�+�+�.�6�8�.�&�&�.�8�/� �,�7��%�2�,�0�1��5�(�*�$�-�7��>�6�2�&�6�+�/�-�/�$�2�8�*�'�)�4�)�%�1�+�'�4�)�<�3�*�*�/�.�3�!�5�/�&��,�*�&��*�'�-�3�'�1�'�4�*�,�+�5�;�&��)�$�%�2�)�+�&�.�-�%�/�4�-�(�/�!�#�'�$�(�-�,�.�,�5�2�,�@�1�)�-�.�5�9�2�'�.�-�0�3�1�#�+�%�0�1�0�:�(�+�-�-�-�-�+�.��*�/�&�"�'�/�,�,�*�=�+�'�$�/�G�1�'�/�4�-�)�6�+�(�2�4�+�-�6�-�+�-�9�3�*�.�4�5�)�4�9�0�(�*�5�+�:�,�3�3�.�7�Ӏ׀ҀӀԀۀ׀ӀۀȀՀҀԀր׀ԀրӀӀԀՀـ׀ځ7�5�*�.�=�"�%�1�#�.�&�,�%�-�-�6�4�+�-�B�,�0�:��-�+�3�0�+�'�(�#�-��=�%�4�(�2�/�1�2�7�,�1�4�5��'�8�9�-�3�4�9�*�*�%�1�/�&�)�*�/�.�5�)�3�4�/�%�/�.�-�+�&�7�(�.�,�+�,�1�1�#�%�-�1�7�+�*�,�3�%�+� �$��$�=�-�-�4�$�%�)�'�A��,�5�2�4�0�%�*�)�2�/�:�%�$�$�/�'�,�'�'�(�(�+�-�,�!�"�4�(�)�9�-�%�*�/�5�2�+�/�*�+�/��)�0�,�$�+�(�'�1�/�/�0�9�+�*�9�'�(�-�1�2�.�*�0�4�1�(�-��+�9�)�+�+�&�'�/�/�1�*�5�1�%�8�+�;�.�!�7�1�%�1�/�)�9�,�'�1�(�,�(�1�1�#�&�/�!�/�+�#�;�/�+�/�1�8�%�2�/�-��,�'�+�$�-�%�)�4�*�0�?�,�)�*�1�/�+�%��5�)��"�,�#�'�-�7�.��<�.�,�+�#�<�$�0�&�)�-�.�(�*�.�4�7�&�/�0�5�*�8�$�$�+�/�&� �8�/�3�5�0�/�*�6�(�1�/�#�-�)�0�2�3�4�2�(�/�-�/�#�,�,�4�'�,�%�,��+�'�,�&�.�-�6�4�-�&�0�/�#�.�:�!�#�(�-�4�(�(�,�/�)�%�)�1�/�,�>�*�'�!�&�/��)�2�<�/�*�(�4�#�-�,�&�-�1�3�!�*� �!�%�:�&�%�(�+�,�8�)�,�%�0�0�'�9�(�8�/�3�,�.�)�,�2�+�7�/�8��9�%�)�0�"�0�0�+�9�1�0�'�-�'�1�2�.�'�7�(�+�$�'�+�1�/�0�(�0�-�.�"�,�1�*�,�,�%�;�$� �-�#�%�/��.�$�<�$�4�;�&�,��.�$�+�<�,�/�.�9�$�!�'�;�%�0�+�/�.�,�+�&�9�1�(�)�5� �4�7�,�*�/�,�1�3�0�4�0�2�3�7�5�&�9�*�-�8�(�,�1�0�'�ـՀԀڀـ؀܀Հـɀ؀׀؀ـ׀ӀڀـӀҀрӀ׀ց4�+�9�2�5�/�,�(�2�+�(�'�/�7�+�"�3�#�*�6�;�.�$�)�7�/�&�5�5�5�<�"��1�4�9�<�3�&�"� �"�.�6�-�'�2�.�*�.�'�:�>�*�.�8�)�(�-�,�3�-�(�8�/�&�-�;�5�0�=�1�(�,�/�.�(�*�*��/�1�%�3�/�'�7�-�2��3�#��5�,�2�*�.�,�A�7�0�4�2�'�*�#�2�8�2�5�6�)�1�&�&�(�3�7�/�4��7�%�3�-�%�/�*��)�'�&�$�,�%�*�,�)�9�4�(�&�&�,�"�&�$�0�6�,�*�-�6�2�#�5�'�#�(�,��-�2�(�+�0�5�1�/� �/�*��2�,�,�3�0�(�.�3�0��1�/�/�(�/�+�-�)�!��2�4�3�,�/� �-�"�'�/�$�*�)��$�.�3�%�,��6�-�0�'�(�<��$�(� �6�5�%�*�*�'�/�(�,�,�8�-�%�)�1�#�)�.�2�(�)�1�/�+�8�"�&�)�7���*�;�0�&�$�1�/�/�3�.�$�.�"�*�0�1�+�:�-�0�1� �#�2�5�3�2�/��%�4�>�0�;�2�/�0�/�1�(�;�!�1�*�$�-�-�)�'�.�,��/�(�'�4�$�%�(�&�.��+�"�(�0�-�,�-�'�+�$�/�5�,�1�7�)�'�2�2�.�#�0�*�3�=�&�6�#�4�:�(�'�:�+�2�/�*�+�4�'�+�+�!�&�.�'�.�.�,�&�-�7�-�1�.�,�,�$�*�7�-�&�.�.�%�� �+�/�(�3�*�)�.�5�0�%�5�3�A�%�,�;�0�0�/�3�0�%�,�/�*�$�3�/�2��#�,�/�2�-�3�#�*�3�$�/�/�#�8�&�+�!�,�5�(�.�(��.��+�)�&�3��1��"�+�*�!�/�+�,�#�*�4�%�#�)�/�4�5�/�'�-�*�#�,�4�*�8�(� �+�1�"�3�'�)�.�8�7�0�/�*�+�,�'�/�-�1�1�/�/�1�*�9�)�2�!�+�'�(�-�"�+�6�3�7�.�/�)�րрՀ׀ԀڀـԀـ��؀ԀۀԀـ؀ـ؀ՀҀրրԀׁ:�7�1�&�@�'�8�/�7�7�*�+�,�$�1�#�3�1�)�7�-�4�(�=�,�3�/�8�6�.�+�'�(�-�&�4�,�2�%�%�$�4��+��&�.�(�&�%�6�/��)�0�?�*�?�,�%�4�*�A�9�-�2�#�0�5�)�7�#�:��"�(�2�1�9�3�/�1�!�/�1�.�'�1�2�1�7� �6�)�*�0�5�-�.�/�1�6�>�.�.�(�$�-�1�:�(�/�:�1�3�8�1��*�(�2�$�1�0�,� �3�-�(�7�4� �4�2�=�"�'�!�;�&�+�#�2�*�#� �8�*�1�/��9�&�!�$��"�*�(�:�(�*�8�)�-��&�5�� �$�=�+�+�(�)�!�4�,�-�<�+��)�2��"�%�-�/�#�-�/�5�!�'���"�-�2�0�1�(�2�6�(�3�,�/�)�.�1�+�$�-�$�2�*�5�2�1�.�/�5�6�-�.�2�)�-�"�(�:�)�.�(�,�)�'�(�*�+�%�%�8��3�/�!�=�2�4�-�3�+�'�)�1�#�'�.�*�:�)��4�1�/��$�)�'�$�<�!�3�7�>�"�)�/�*�%�:� �1�&�/�-�'�1�(�-�,�3�)�0�#�&�/�)�0�+�'�,�-�(�)�,�5�1�(�.�1�+�&�,�0�+�5�$�8�*� �3�.�0�,�!�$�%�1�-�$�3�)�#�'�'�#�5�"�'�"�.�,�8�)�3�2�5�5�+�>�.�-�%�"�7�3�,�*�4�6�5�+�)�+�'�!�0�$�0�)�-�+�&�(�*�'�0�+�<�,�(��/�0�$�!�(�$�&�!�)�'�9�4�'�/�4�7�.�+��&�-�)�0�0�-�(�+�1�8�%�/�/�.�,�/�(�0�0�,�/�"�6�7�7�,�,�%�;�.�(�.�)�1�$�*�)�+�2�*�-�+�)�,��2�,�9�0�%�+�8�.�+��7�1�'�*�3�1�,�3�(�7�0�%�,�8�)�1�)�3�'�-�,�1��,�)�0�?�8�-�0�4�/�-�0�1�/�'�0�4�5�+�(��/�3�.�4�2�)�&�@�ԀӀـԀπۀӀۀӀĀӀրـՀՀ׀׀؀ӀҀԀ׀Հց,�/�5�1�3��%�1�(�%�0�+�"�3�2�6�-�*�6�*�'�(��2�)�1�-�)�2�*�(�.�4�6�#�+�*�-�,�.�-�#�0�0�#�$�=�2�/�+�4�)�4�(�%�.�-�=�)�-�+�.�.�*�-�0�*�(�1�-�4�/�7�6�,�0�7�/�+�3�*�5�"�+�/�$� �$�.�>�*�%�6�+�4�%�(�1�)�2�+�'�'�/�!��"�.�=�"�.�2�!�%�1�/�6�&�<�3�'�3�+�6�2�4�'�3�&�&�+��)�"�1�&�'�1�*��'�%�-�4�1�2�,�6�2�5�7�=�3�&�6�5�)�$��/�/�#�(�)�2�,�&�-�<�*�$�+��.��1�"�*�-�/�'�"�*�7�4�%�,�2�+�;�(�&��-�/�/�.�*�(�0�/�+�(�8�%�&�(�.�=��*�@�'�/�/��,�*�;�,�-�.�2�6�"�1�*�*�)�(�%� ��!�7�/�!�+�2�!�.�.�#�1�5�)�2��%�=�*�0�-�,�&�)�(�!�3�)�+�*�'�'�1�*�&� �0�9�/�2�1�5�&�%�2�-�1�)�#�5�'�/�4�*�'�+�7�-�3�/�1�:�,�&�+�@�3�+�/�3�2�1�1�0�*�'�/�+�)�4�5�$���(�,�-�+�+�'�/�0�"�6�!�,�4��#�.�-�#�@�1�3�1�"�)�;�8�/�-�4�2�9�)�/�,�&�&�-�!��6�.�%�/�/�>�0��(�/�0�%�6�.�(��'�4�(�-�1�#�8�6�0�(��&�&�*�$�4�*�!�%�%�&�"�/�0�1�.�(�+�,�(�&�A�$�6�#�.�(�(�$�"�7�+�1�,�0�'��4�'�2�:�3�4�/�-��1�+�)�6�*�*�-�-�1�/�.�+�&�)�0�9�'�+�*�/�-�-�(�'�4�3�/�5�,�1�1�%�&�&�,�+�1�-�>�7�(�3��!�!�.�-�/�2�/�#�)�.�1�%�#�@�'�-�)�?�.�,�,�.�+��)�/�-�(�!�-�)�+�0�6�,�+� �8�7�,�2�'�Հ؀׀рՀπր׀ԀƀҀҀӀ׀ր׀ր׀؀Հ׀р׀ف7�4�1�.�*�/�/�!�+�!��:�/�"�%�(�+�"�&�7�*�1�+�4�7�)�0�,�(�&�4�&�'�9�3�,�7�1�*�-�2�*�6�.�8�2�5�/��<��!�$�2�*�&��*�3�<�+�8�*�/�,�-�;�&�!�&�B�(�*�-�5� �+�(�9�1�*�2�5�$�+�'�/�+�*�3�3�3� �/�B�� �3�1��'�,�/��(�8�+�"�2��3�#�/�(�+�4�*�+�1�)�,��0�)�/�)�3�C�0�*�*�/�&�<�&�/�2�!�1�5�#�5�&�6�-�$�4�6�*�&�/�/�.�&��&�/��*�&�(�3�/�)�(�+�1�+�8��(�-�&�&�4�$�,�&�=�*�8�!�3�)�2�+�;�0�=�:�7�$�.�/�+�-�5�0�+�.�.�1�,�.�,�0� �)�2�.�+�D�'�1�&�0�5�)�3�1�/�6�7�,�/�-�,�#�,�/�0�-�-�1�1�)�*�2�$�<��)�4�$�3�$�7�3�'�2�'�)�.�5�.��(�(�4�%�)�-�&�.�-��=�1�,�=�(�*�;�,�2�"�'�;� �1�/�3� �8�5�*�5�/�6�4�'�'�:��0�,�-�'�+� �/�1�'�!�$�#�9�-�/�&�7�*�2�(�1�.�%�+�-�+�.�'�0�'�;�)�8�"�)�1�3�"�*�3�(�(�4�"�4�(�/�/�(�+�&�5�1�2�/�1�.�5�1�.�$�(�#�<�%�+�4�$�%�$�)�7�.�=�2�&�"�(�*�.�3�%�*�/�7�)�&�#�.�5�(�9�#�)�9�*�/�&�$�.�"�7�*�0�*�&�.�*�,�(�6�+�+�*�2�4�8�"�5�/�)�)�,�-�'�%�-�0�(�,�.�(�(�6� �#�0�+�5�2�:�3�-�)�0�*�+�*�'�0�3�7�"�*�)�'�*�-�&�'�.�)�'�3�5�,�5�+�3�-�/�(�4�%�)�/�!�!�$�0��/�1�0�&�J��,�2�,�3�9�9� �!�)�/�<�5�3�-�0�,�*�9�*�-�(�.�4�(�+�*�$�)�2�/�+�рրՀԀҀۀ؀؀րǀЀԀրԀ׀ـ܀ԀԀڀրՀ؀ց�3��3�%�<�+�/�2�1�'�)�2�.�8�'�6�"�1�+�-�*�1�3�3�4�+�+�-�1�.�%�>�+�&�/�+�3�#�8�,� �!�,�#�+�'�)�%�-�2�(�9�1�*�*�*�!�5�"�%�*�-�/�,�'�3�*�-�0�(�,�-�,�2�'�.�*�9�;�/�"�/�-�5�'�'�)�(�8�2�;�,�,�)�-�;��-�'�9�/�'�&�'�$�+�3�4�'�3�3�)�'�.�6�0�7�(�-�1�+�,�7�%�/�(�,�1� �*�#�&�"�(��)�%�'�4�%�!�-�0�.�*�'�-�)�,�3�'�+�2�.�"�!�0�4�3�,�$�,��-���%�:�!�*�,�+�)�2�*�-�,�%�9�(�H� �$�$�1�,�.�.�-�'�/�)�8�.�'�2�2�%��&�#�8�*�3�.�*�2�'�(�4�/�.�9�$�&�7�!�1�=�'�7�(�'�1�1�&�+�#�2�7�"��9�-�(�.�-�3�6�:�/�/�+�:�"�5�.�(�6�,�)�+�2�*�2�#�-�!�#�1�&�3�5�,�'�,�$�(�#�+�+�+�+�!�2�,�5�*�,�'�3�1�!�.�,� �%�*�<�,��<�.�,�3�3�)�+�1�-�*�)�$�-�$�3�'�-�:�(�,�8�.�/�%�+�1�%�&�(�3�,�%�+�8�-�2�'�%�#�-�0�)�4�#�&�.�*�/�1�3�"�'�*�,�*�#�0�6�2�2��$�#�.�-�'�3�9�0�8�0�)�/�&�(�3�:�2�9�&�/�-�9�4�3�)�9�$�/�(�*�$�2�4�8�.�'��(�.�1�)�)�*�2�%�'�5�:�6�.�3�1�.�/�1�2�2�.�&�+�3�(�!�6�)�7�2�0�%�2�5�6�7�.�/�)�.�,�)��;�,�.�-�/�+�&�0�-�%�.�-�9�5�3�1�0�,�1�,�<�#�8�-�3�3�"�)�2�/�(�&�+�1�)�8�*�)�'�*�2�4�5�,�,�/�6�"�%�(�+�+�0�9�%�2�,�2�.�+�;�9�$�3�0�+�(�7�*�+�(�1�1�2�5�6�0� �0�׀׀ր׀րրԀـՀʀրրրՀ؀ـՀҀـӀ׀ӀـӁ0�-�%�.�!�3�1�,�,�6�1�+�2�8�+�/�%�+�3�'�&�+�0�:�+�1�1�>�*�4�$�)�@�-�2�1�7�'�5�0�3�'�<�'�0�6�2�0�/�"�6�,�4�/�3�(�,�.�/�6�/�.�/�5�*�,�&�2�3�4�(�?�+�3��(�.�'�(�4�-�.�0�(�9�/�+�#�3�+�!�-�0�'�)�3�'�)�2�1�$�8�-�)�'�+�.�-�3�1�*�'�7�/�1�3��7�(�0�2�/�3�2�/�&�/�&�1�1�#�%�,�"�/�5�$�'�4�7���#�3�*�7�)�3�+�+��*�+�+�6�,�+�&�3�%�2�2�;�,�+�9�(�3�(�$�5�"�1�+�#�+�'� �-�'�,�-�(��-�+�#�,�)�)�%�-�*�'�+�(�,�2�-�/�1�-� �+�'�!�2�1�6�"�'�(�)�6�1�$�&��-�8�-�8�)�-�/�0�:�2�0�*�+�"�-�'�1�.�&�!�4�/�=�"� �2� �+��'�9�.�.�#�0�1�&�/�5�3��-�+�.�(�7�*�*�/�-�1�-�'�2�.�1�!�4�.�*�5�*�5�2�?�2�1�'�-�/�7��;�-�'�*�*�,�2�1�*�0��*�$�'�&��-�1�/�-�1�+�/�(�'�#�0�(�%�&�/�%�/�(�-�(�7�,�2�(�>�.�+�.�=�%�/�+�)�1�'�3��+�2�6��6�5�:�*�-�&�2�-�.�!�*�0�(�*�#�!�+�'��(�"�+� �)�-�/�/�$�%�*�)�/�5�7�2�%�3�'�2�/�4�,�'�+�#�1�"�'�(�)�-�-�(�:�+�-�$�*�*�3�3�'�(�4�*�)�!�3�'�2�4�0�)�5�(�2�.�#�.�"�?�-�'�"�/�!�7�%�$�.��.��9�'�)�.�1�(�&�)�,�)�0�3�(�,�(�'�1�*�6�!�2�2�1��5�$�9�3�2�.�>�.�"�%�%�7�,�7�,�0�)�-�9�/�1�(�3�3�.�0�3�3�5�2�(�'�'�*�,�7�/�/�)�3�)�,�/�*�5�9�%�0�րՀԀـ܀ՀـڀӀƀ؀ՀڀԀ׀ҀڀԀ܀րӀӀՀہ/�1�6�0�/�2�7�7�%�&�8�4�,�,�1�'��'�5�&�.�0�.�+�$�.�.�,�-�-�(�.�4�)�.�(�(�4�,�/�/�=��*�+�(�4�+�*�(�G�1�,�+�0�9�A�3�!�'�+�5�,�.�(�5�-�.�"�'�0�(�,�:�)�/�6�0�5�5�5� �5�-�0�.�1�%�6�/�5�)�*�)�4�0�'��.�'�%�+�/�:�0�#�-�1�;�*�!�+��=�-�2�-�+�/��4�,�'�.�,�(�/�2�5�'�(�/�4�&�&�&�#�#�;�4�%�*�8�'�3�%�5�(�&�,�!��(�1�8��0�9�&�-�$�.�*�.�/�)�*�*�3�0�#�9�1�6�>�0�0�(�"�3�/�/�-�4�,�/��3�"��A�1�,�.�"�-�2�5�"�4�/�&�1�+�&�,�9�)�&�!�.�2�9�/�'�%�*� �+�'�.�,�#�6�+�2�%�)�-�2�/�4�;�)�$�/�%�-�5�+�0�*�3�.�/�(�-�*�.�"�&�'�0�7�+�3�)�"�"�"�.�*�$�*�'�(�$�0�(�#�-�&�+� �-�%�5�7�*�,�.�+�5�,�3��6�%�/�6�(�/�3�0�6�3�9�4�5�2�'�5�.�)�=�&�+� �3�+�6�/�8�&�!�)�5�4�7�1�:�2�4�&�6�,�-�%�1�/�+�#�,�1�*�/�3�1�*�-�-�-�.�%�*�)�(�'�)�*�3�1�*�2�.�7�1�3�.�2�2��.�*��'�,�-�(�,�,�#�1�%�-�'�:�6�(�%�-�4��$�0�#�8�.�&�-�-�0�<��*�*�+�-�.�*�-�1�(�$�3�/�,�(�)�#�'�"�+�$�3�0�/�-�3�'�*�8�4�7�'�+�#�-�/�&�7�#�7�-�0�)�)�1�'�,�3�+�"��0��,�-�*�1�.�$�&�/�-��0�-�*���'�(�(�*�&�+�+�-�8�%�,�+�%�-�-�;�/�+�#�/�-�,�/�E�C�/�.�2�-�6�-�1�(��&�5�0�/�8�-�;�1�#�/�<�+�7�;�.�1�<�Հ׀րڀ׀ՀҀـ׀ʀՀـрր؀Ҁ܀܀րҀ׀׀րρ.�2�8�'�5�4�8�/�#�=�*�>�,�"��"�.�2�3�)�)�/�)�4�/�9�#�(�*�#�1�+�-�1�/�0�.�-�'�:�*�(�1�8�*�4�'�I�'�.�#�.�7�0�!�)�8�3�$�/�1�%�2�-�5�0�)�-�*�2�*�9�.�,�,�3�6�"�1�/�.�:�)�:�#�*�#�*�+�1�3�4�-�*�1�-�2�)�)�-�B�3�!�3�*�5�+�@�3�5��� �.�/�6�7�2�"�0�:�(�+�*�+�0�6�.�&�&�%�2�6�+�*�2�-�,�-�-�.�)�,��-�&�7�+�%�6�+�.�0�3�,�+�-��/��?�'�9�/�(�1�-�0�-�+�1�9�"�4�+�.�5�.�.�(�5�(�>��$�,�:�$�;�%��<�/�5�2�.�0�*�+�'� �/�'�$��&�'�8�.�%�/�&�'�9�0�3�,�&�#�(�0�-�/�+�(�1�=�.�'�1�0�.�3�8�#�5�&�6�1�0�;�+�0�'�,�'�4�*�;�)�5�0�/�#�/�+�'�6�1�-�*�3�)�)�"�&��2�*� �+�(�5�'�'�!�3�1�*�-�/�+�,�4�,�)�*�%�:�'�*�8�<�.�/�/�0�&�1��/�(�&�7�,�!�7�'�/�2�,�*��0�(�-�,��-��/�&�!��(�(��1�.�*�-�*�5�'�(�$�(�%�(�%�0�#�3�.�F�"�.�/�,�!�9�3�-�(�*��2�)�0�.�&�*� �6�-�)�.�,�+�2�1�(�3�(�&�%�"�-�,�,�,�)�.�2�3�5�3�-�8�3�"�6�/�1�2�#�/�/�*�7�)��3�1�+�9�"�;�$�#� �'�/�(�3�'�3�(�+�(�#�(�+�.�(�'�)�'�.�,�.�/�/�1�0�)�0�%�%�2�"� �-�2�+�1�,�/�%�4�(�+� �%�-�(� �.�+��3�)�$�;�-�&�3�,�6��5�1�2�7�2�.�+�4�&�(�1��+�$�5�9�)�)�7�*�&�*�+�2�%�-�,�)�-�2�'�)�)�4�7�9�'�<�.�*�3�9�׀Հր׀ӀπՀՀڀʀހπՀ̀؀ր܀؀Հ܀Հπрځ6�5�1�4�0�3��/�-�-�6�"�.�+�(�*�,�,�#�+�7�)�,�(�&�6�B�7�&�/�3�*�-�3�(�;�(�,�3�2�,�.�2�'�-�7�6�&�3�3��5�-�/�(�&�0�&�1�7�8�%�.�7�/��,�6�&�3�-�/�#�'�-�(�-�(�8�%�4�(�-�(�%�4�2�$���3�/�'�%�0�)�+�'�(�'�+�+�)�)�.�*�3�0�.�(�-�%�.�,�6�6�8��*�,�9�.�!�&�5�1�1�?�6�(�(�D�5�'�*�"�1�.�#�4�6�/��+�>�&�1�0�/�&�*�8�%�&�8�)�8�1�'�*�-�1�$�8�=�(�4�1�&�-��$�.��%�$�2�6�5�-�-�(�)�&�-�2�%�%�)�*�'�1�-�4�$�*�(�#�,�,�&�5�%�*�1�.�'� �+�)�9�0�,�.�(�)�&�D�,�(�0�+�%�+�'�5�%�&�,�+�$�:�'�1�&�/�,�9�'�+�&�$�.�*�4�)�@�3�.�>�#�0�(�"�-�/��6�.��&���(��)�-�1�!�0�,��!�&�%�-�0�9�$�"�1�,�$�&�2�0�.�3�/�&�.�=�1�'�<�+�/�.�3�2�(�(�3�!�<�4�0�/�"�)�*�8�6�/�)�0�+�)�+�1�.�"�/�!�0�0�)�)�'�-�*�)�/�1�>�*�*�.�/�%�$�-�9�*�*�(��9�4�)�,�1�2�7�;� ��4�0�3�!�2�?�0�/�#�7�!�0�&�4��!�)�-�.�)�-�3�/� �$�3�&�+�2��,�2�)�-�,�7�+�+�'�'�'�*�9�'�'�$��!�-�;�%�&�.�1�/�&�'��*�&�.�"�:�2�*�2�-�3�+�3�1�-��,� �2�*�.�"� �1�-�5�$�/�4� �#��7�$�(�/�2�/�*�"�)�7�(�&�+�/�+��3�,�/�0�&�3�+�/�+�1�'�0�+�.�-�+��.�.�-�&�8�&�2�+�.�,��;�'�0�)�5�*�/�#�1�D�7�,�+�.�3�6�-�)�0�0�0�3�΀рـڀ؀ۀ׀րҀĀҀրՀҀր݀ՀԀـ؀ՀـԀ؁7�.� �-�.�,�,�(�7�(�6�-�&�$�>�-�5�5�:�9�?�/�.�'�)�0�0�2�+�!�2� �5�1�4�9�%�+�.�*�>�/�)�.�;�#�0�,�#�*�.�(�2�5�2�'�+�,�6�2�1�&�*�/�+�%�2�.�/��#�$�(�@�0�+�&�-�3�+�'�#�)�.�5�1�6�#�4�,�"�,�-�-�)�.�6��.�:�+�9�%�0�*�*�'�,�3�3�*�1�7�#�&�'�1� �,�+�#�"�1�)�3�'�"�)�+��9�+�3�/�0�)�*� �#�2�,�*�4��1�.�%�/�4�5�,�)�2�.�(�1�;�-�-�:�$�9�&�)�-�2�/�%�*��2�0�$�&�(�)�3�(�/�'�'�*�0�;�6�-�/�3�&�/�#�(�*�(�!�0�4�?�/�(�$�+�#��5�+�1�!�/�+�?�3�,�+�2�8�5�7�*�4�0�.�:�'�'�,�:�,�)�4�%�,�,�(�/�/�-�(�(�+�*�4�*�#�6�$�)�-�9�;�5�4�+�%�-�7�0�/�1�*�7�)�'�'�$�-�0�&�+�,�-�'� �'� �(�/�/�$�.�6�.�/��6�/�&�+�;�8��(��2�"�;�*�$�/�5�)�"�,�$�1�%�/�'�3�,�9�%�8�*�#�1�(�)��0�(�;�5�%�+�2�,�!�'�2�/�*�/�&�1�4�*�)�3�#�%�-�$�)�8��"�)�3�2�+�5�&�*�.�*�+�"�*��3�2�"�0�5�+�*�3�7�0�(�3�)�!�-�4�,�7�'�(�(�2�#�'�)�4�)�-�(�,�)�!�3�,�,�+�7�0�+�%�-�6�)�,�+�?�1�(�.�/�7�.�+�2�:��$�$�*�.�-�8�#�&�/�+�(�2�)�5�1�-�7��2�&�/�(�6�:�3�6�0�%�-�:�$�$�!�-�-�.� �0�(�*�-�1�1�'�*�1�<�/�.�9�.�9�/�)�,�'�1�#��/�.�-�2�&�5�(�;�-�)�0�7�+�#�5�(�4�=�3�.�-�/�4�!�+�%�/�,�5�+�-�=�$�-�2�*�,�؀Հ׀ڀ׀̀ր׀րŀڀ؀Հ؀؀ڀ׀ԀڀրـހҀց9�8�1�&�)�/�9�-�)�9� �&�+�/�(�5�9�!��%�0�*�,�0�8�2�!�3�)�)�)�2�"�-�,�4�8�0�'�#�'�9�-�%��+� �6�(�0�8�,�+�%�,��)�3�2�5�*�+�2�(�*�2�$�"�4�4�&�1�?��)��+�3�8�1�:�)�5�1�.�;�.�2��2�'�2�.�A�,�3�2�3�5�-�3�-�0�7�5�&�%�-�*�/�6�#�A�=�%�5�(�.�'�1�+��1�&�7�-�.�+�1�1�1�/�#�0�2�&�'�*�3�/�-�/�'�/�-��1�)�$�A� �,�$�3�$�0�.�(�,�%�8�(�$� �%�&�'�2�)�-�-�-�+�#�)�"�$�7�#�4�)�(�$�-�(�1�#�2�+�+�5�"�(�%�'�.�7�$�'�*�0�/�,�-�;�5�+�-�+�%�+�&�'��0�-�.�!��.��/�<�-��4�'�0�&�+�6� �,�&�/�+�"�'�0�/�$�0��3�0�)�"�*�2�,�*�)�&�+�/�.�%�)��4�*�3�$�/�8�!�&�5�'�*�$�/�1�(�,�%�4�$�'�%�3��5�#�/�+�%�2�1�+�'�/�.�-�1�/�.�)�7�1�#�:�0�#�'�'�$�-�.�5�+�9�$�4�/�'�/�'�+�!�4�,�/�,�-�-��1�"��5�/�,�6�(�2�0�)�)�(�.�'�0�+�%�!�2�.�1�:�'�1��+�3�)�:�%�+�(�&�'�-�3�2�(�"�,�*�"�(�/��%�2�(�1�%�/�3��)�'�+�(�6�7�/�%�$�'�.�2�#�1�'�'�)�'�'�/�-�5�,�)�3�0�(�+�.�,�-�0�4�'�?�7�,�=�'�,�*�*�%�5�*�*�3�?�0�%�0�)�.�'�'�,�(�3�)�/�0�:�-�!�/�9�,�*�,�'�%�-�3�+�)�'�3�)�/�+�*�/�8�1�6�!�9�#�"�*�*�*�5�:�+��2�&�.�'�-�3�'�0�"�>�,�(�!�+�'�3�8�3�5�"�3�8�;�)�,�2�%�1�;�(�6�8�2�-�5�ۀπԀـ؀Ԁ׀݀ՀŀՀрր׀Ҁ؀؀ـր؀ԀҀҀځ"�+�(�0�2�(�4�4�/�-�.�5�-�/�#�/�9�*�)�,�.�:�/�,�'�,�/�7�,�'�)�-�/�6��*� �5�/�)�(�#�#�-�&�7�.�2� �*�$�4��,�)�B�-�:�&�6�-�-�%�0�/�.�+�1�$�,�-�%�6�:�=�7�2�0�0�.�$�!�0�-�-�#�/�-�2�,�#�6�-� �"�,�1�0�"�*�*�#�*�*�6�.�4�/�)�.�.�"�@�:�+�)�5�.�-�*�+�/�*�,�-�*�2�3�)�#�8��4�.�.�#�&�+�'�-�*�*�)�*�$�)�7�(�/�7�5�=�"�2�'�9�1�%�=�5�1�/�+�+�'�)�/�!� �+�3�.�)�!�-�$�.�,�#�(�4�1�+�1�,�)�5� �9�4�.��7��1�:�"�+�*�!�+�$�/�2�#�(�*�%�&�'�$�"�.�"�5�4�(�'�0�.�5�5�/�!�/�,�*�!�$�4�1�+�8�*�-�%�+�+�-�,�2� �)�0�+�9�,�5�"�0�*�'�.�+�'�,�'�#�-�%�2�6�$�%�%�<�,�?�*��.�$�6�&�1�$�/�$�.�)�$�+�1�)�-�2�(�/�1�&�,�+�(�$�%�+�3�.�(�+�.�/�-�&�1�/�9�6�?�6�2�!�5�2�'�.�6�(�&�9�0�*�3� �-�,�;�)�#�.�2�'�-�&�&�*�4�%�/� �+��0�3�;�+�*�,�+�,�'�/��;�3�9�)�2�3�3�'�/�.�#�&�7�"�)�#�-�%�,�&�6��&�0�7�(�/�&�+��/�6�/�-�=�'�.�,�)�,�(�5�$�4�#�)�/�+�(�*�0�<�1�%�$�8�%��%�-�+�#� �(�-�"�)�+�.�2�*�+�.���:�-� �&�5�(�7�)�5�)�*�,�,�.�-�1�5�3�2�5�0�+�%�&�/��/�3�/�1�/��.�9�:�6�8�*�A�;�,�(�)�'�3�,�.�,�*�+�5�+�)�#�9�$� �'�/�3�#�'�/�5�(�/�*�&�4�*�,�&�>�'�5�5�-�1�+�7�&�$�+�-�ӀҀ׀ՀԀ΀ـӀـ̀؀ڀӀрӀ׀؀؀؀ՀڀҀڀӁ �/�*�1�1�0�*�1�0�*�'�1�8�'�+�)�&�.�3�*�2�0�;�7�1��&�8�3�+�)�*�!�'�.�5�,�5�0�+�8�0�8�$�$�.�'�.�3�0�,�C�/�%�0�)�1�7�-�B� �5�+�#�9�4�+�-�.�6�-�*�)�4�.�%�,��.�/�5�(�1�1�2��'�(�0�#�=�2�(�'�+�2�8�$�#�/�/�%�)�!�/�!�&�$�2�.�,�(�4�3�&�+�$�(�/�,�1�2�1�"�1�*�,�3�5�'�&�%�*�/�,�!�6�=�&�3�!�+�+�.�(�1�5��(�/�%�(�*�6�$�(�;�,�6�'�!�*�,�/�.�$�4�1�.�)�2�(�.�3�0��+�4�%�'�,�2�*�1�4�/�,�-�+�0�3�&�7�5�-�1�!�5�+�*�$�,�6�-�2�,�$�.�)�8�&�)�,�/�0�+�/�)�%�*�2�-�+�1�0�+�1�0�1�'�1�)�6�&�'�4�*�7�)�7�1�'�2�*�1�1�'�+�+�.�1�+��3�$�<�+�$�,�,�.�*�3�(�2�1�7�%�#�3�1�.�-�/�+�!�0�-�+�(�/�'�$�2�:�$��.�/�0�1�'�,�!�.�(�+�8� �.� �*�0�.�-�7�.�$�,�.�'�#�/�.�0�)�0�)�'�,�$�%�/�!�-�7� �/�*�*�+�&��!�8�0�9�'�-�"�"�$�-�1�/�:�6�.�@�-�0�)�)�'�/�,�*�5�$�.�2�7�(�.�)�A�#��/�1�)�2�+�.�2�1�;�4�.�3� �,�)�%�/�2�7�(�/�+�,�/�8�(�/�6�*�=�%�2�&�#�)�4�,�1�.�2�$�5�;��=�)�/�-�'�(�+�.�-�;�)�)�-�/�)�0�*�$�;�.�/�2�7�1�#�9�/�3�.�&�*�-�/�%�,�5�+�/�(�.�)�;�/�-�'�%�-�.�%�0�4�(�+�#��(�0�/�1�$�)�1�#�.�3�9�(�8�%�7�+�3�"�8�,�3�0�7�8�+�/�6�0�5�*�'�-�-�)�*�'�,�.�3�8�-�:�8�+�'�؀րۀ׀׀ր؀ـڀƀր׀Հ؀؀׀ր܀؀ՀӀ׀ۀځ5�.�+�1�3�-�.�.�=�%�,�2�%�"�8�6�7�/�)�(�5�-�2�%�'�*�1�5�1�"�;�,�1�-�3�+�6�9�!�(�(�'�%�.�1�3�*�-�8�&�,�5�/�"�'�-�/�0�,�3�2�.�8�)�(�0�1�(�/�9�9�)�.�.�$�1�(�%�-�!�(�$�0�'�)�;�0�$� �-�)�%�.�C�1�'�0�.�&�1�,�&�/�-�;�4�?�2�7�)�-�3�)�,�%�:�(�2�)�;���$�+�0�.�5�.�-�#�+�!�+�3� ��/�-�%�/�'�'�/�$�+�6�$�&�5�)�F�+�$�'�+�3�1�*�#�0��,��0�*�&��-�$�'�*�.�'�(�0�*�*�2�2�2�4�.�,�'�-�)�7�3�2�.�-�-�%�3�6�%�:� �!�%�,�/�&�5�(�*�&�&�'�(�*�'��)�4�7�-�"�1�"�1� �4�(�1�!�0�1�0�.�#�/�9�(�+�#�-�(�=�+�(�$��1�'�&�6�4��&�-�,�5�<�&�%�'�1�/�3�%�*�2�7�*�/�1�2�+�7�&�%�*�A�2�0�'��0�#�)�"�)��0�+�%�*�6�5�7�2�(��<��4�)�)�<�)�/�%�5�5�)�*�.�'�6�0�.�#�'�4�8�1�,�(�,�3�/�B�'�=�.�A�.�5�$�,�)�*�"�-�2�&�0�.� �"�-�-�/�<�&��&�&�$�,�#�5�1�-�&��.�'�+�-�&��(�)�5�+�,�)�&�-�(�"�&�,�/�1�)�/�'�-� �3�.�+�.�/�%�(�4�1�(�$�>�;�4�%�&�7�7�.�-�-�/�(�6�&�(�5�?�'�(�+�7�*�5�6�+�#�6�(�4�*�/�-�2�*�+�6�0�8�1�5�7�1�.�0�G�$�0�-�7�4�(�+�*�.�5�6�,�'�3�%��*�$�%�.�%�/���0�*�*�*�)�!�6�7�9�$�)�0�#�4�*�/�)�1�(�&�*�2�/�0�*�4�)�/�%�'�:��#�+�#�,�+�0�8�/�0�1�4�2�<�2�7�A�3�#�Ҁ׀݀׀րՀրڀ׀€ڀ׀րրԀՀ؀ՀԀ׀ԀӀ܀ց0�3�.�/�+�1�0�*�4�/�6�3�7�'�.�-�0�$�>�/�'�+�1�+�%�%�4�)��2�5�8�4�2�'�1�-�0�,�)�7�2�-�6�-�;�/�#�%�,�.�9�'�5�$�(�)�*�4�)�'�:�7�,�1�*�"�0�-�4�.�)�(�(�9�4�7�$�.�0�)�/�-�%��-�"�#�5�3�,�.�-�6�-�8�'�.�(�'�0�6�3�/�1�*�0�1�=�/�1�'�+�)�.�-�$�#�)��.�1�+�-�*�+�/�%�*�/�%�-�*�+�2�)�'�(�1�"�(�#�$�.�+�"�%�0�-�,�7�'�#�8�'�6�)�-�!�,�)�%�1�"��'�.�-�3��5�-�.�(�/�(�!��7�)�&�+�$�+�-�2�#�;�&�.�-�'�.��.�-�-�'�'�-�*�1�)�.�,�3�/�$�=�/�4�(�5�*��*�+�)�6�%� �9�)�=�.�,�(�-�2�0��.�+�+�(�2� �(�+�-�,�6��+�&�(�+�*�,� �,�+�%�0�-�/�'�1�-�2�#�3�/�#�,�+�'�,�.�/�#�5�3�*�(�'�-�3�.�'�#�8�2�)�+�/�-�,�-�'�3�(�3�5�4�-�(�+�2�(�$�.�,�)�.�,�$�3�6�.�7�2�0�,�/�*�1�.�$�/�/�6�&�'�0�3�$�6��7�&�/��(��4�2�5�(�!�8�6� �%�5�,�8�0�-�?�$�*�.�-�2�1�-�)�2�%�9�+�4�.��2�*�,�#�1�,�*�/�-�(�+�(�/��3�"�&�/�<�!�)�%�+�4�.�-�.�*�&�&� ��9�$�/�!�/�(�&�,�6�+�'�*�>�+�4�3�7�2�"�+�7�,�0�&�.�"�(�3�)�*�&�5�.�&�5�-�(�%�%�*�:�.��0�?�#�(�1�9�5�-�'�*�/�6�+�*�:�2�-�;�B�#�-�7�*�:�5�-�2�.�%��9�*�)�:�/�+�7�;�)�7��7�3�5�,�,�*�5�'�.�"�5�3�+�-�&�*�/�2�1�7�.�;�6�+�1�-�9�"�4�(�9�׀Ԁ׀Ԁــ؀Հـƀـ׀׀׀Ԁڀр؀ڀրـՀԀׁ+��$�:�(�>�&�/�3�/�)�9�0�/�6�2�%�+�;�,�'�8�)�%�-�-�'�/�1�+�6�,�$�%�)� �3�-�4�'�&�9�&�(�9�0�.�2�=�1�-�-��'�6�+�>�0�(�'�+� �&�-�1�:�7�1�(�'��1�&�1�.�+�,�8�,�-�'�-�7�%�2�!�'�-�/�;�,�$�*�*�.�+�.�0�)��+�'�-�6�3��(�)�-�2�&�/�/�&�0�2�3��(�#�*�4�"�A�2�&�5�(�-�1�3�)�:�5���4�5�#�&�+�!�"�%�2�*��0�"�-�4�3�.�2�#�2��+��&�!�'�%�+�#�,�)�)�6�*�+�'�4�,�*�5�%�8�.�'�*�/�%�0�A�1�-�+�,�5�+�5�.�(�9�$�2�-�,�.�,�2�6�/�'�/�%�&�8��'�4�.�)�%�(�,�-�*�<�3�=�-�2�(�.�'�*�(�"�+�3��4�1��7�'�,�(�$�2�-�/�9�'�/�#�+�+�,�)�+�,�)�1�#�4�,��%�1�6�*�,�1�)�*�5�/�%�*�#�%�$�2�*�)��2�'�1�)�%�#�1�%�1�'�-��9�.�)�-�(�0�/�2�/�(�)�,�(�'�2�$�*�2�/�)�*�/�+�3�6�)�2�E�0�.�'�/�.��'�%�,�A�'�:�0�:�%�8�(�$�#�.�%�-�.�'�1�+�%�(�7�>�1�/�!�+�4�1�%�2� �)�.�5�$�)�$�<�/�4�5�#�'�*�%�-��0�*�3�0�3�3�=�*�4�;�2�6�1�'�)�&� �4�&�/�"�-�.�1�)�(�2�-�1�&�,�$�1�-�#�-�)�%�/�+�'�-�?�#�5�-�?�&�-�/�9�&�"�(�1��(�*�6�+�(�6�.�,�.�3�5�%�-�-�%�/�#�.�)�1�0�9� �7�0�2�-�5�,�+�.�'�1��*�%�+�A�0�'�4�+�.�:�6�+�3�1�+�4�/�1�/�$�1�3�#�'�2�8�=�/�%�4�3�/�%�-�.�%�-�'�/�+�&�*�)�&�7�*�1�9�؀Հـր؀؀ڀԀЀɀԀӀ؀׀܀ր׀ԀӀӀҀҀրՁ0�1�9�7� �'�3�%�3�7�4�(�9��/�+�<�+�2�(�,�&�0�� �1�/�=�,�2�&�3�1�/��8�7�,��$�)�%�%�3�'�(�4�-�-�.�'�0�,�9�$�+�;�-�3�&�3�/�2�1�*�,�(�-�)�%�-�7�!�5�4�.�'�%�.�#�,�$�>�5�)�*�4�+��&�+�(�3�*�,�,�%�B�%�%��/�'�0�*�7�%�4��;�@��3�)�6�$�&�,�*�*�!�,�4�,�8�+�-�.�#�+�*�5�3�3�)�!�-�6�,�2�(�&�.�%�5�%�"�1�3�$�!�)�.�6�1�6�+�'�1�-�$�"�1�1�'�'�)�;�0�0�.�)�1�-�(�>�1�-�*�+�,�!��+�7�+�2�6�*�/�1�)�4�2�+�)��,�!�3�(�(�&�$�5�!�(�"��3�+�*�.�(�:�1�4�+�'�&��/�6�,�3�'�<�.�'�-�-�*�4�4�*�1�+�)�'�/�/�(�5�*�4�4�)�.�1�-�-�/�/�3�/� �%�/�1�-�1�6��3�-�)�(�4�9�)�$�$�4�/�.�+�3�,�8�+�7�+�5�+�*�1�1�/��6�'�-�0�+�*�*�)�4�*�$�8�5�-�(�,�%�2�9�:�,��.�.�0�*�,�.�,�5�$�1�)�)�2�+�2�"�%�$�3�2�(�9�&�0�/�6�,�2�'�5��'�+�*�(�(�'�*�3�*�/�2�#�5�,�'�5�%��2�2�'�3�+�*�<�0�3�+�%�1�1�1�7�;�/�+�3�4�.�!�3�2�2� �&�)�.�7�/�!��2�)�"�!�&�<�"�)�,�8�%�*��2�:�2�(�'�/�&�/�7�2� �%�)�/�'�)�*�#�*�+�'�$�5�.�%�%�)�(� �1�-�(�(�)�&�5�'�0�&�,�5�)�+�1�-�7�)�.�"�(�$�2�6�'�6��,�)�(�5�$�/�#�,�0�'�/�1�'�'�-��/�(�)�8�9�2�(�-�*�!�!�(�0��,�,�-�3�3�$�+�)�/�)�<�0�,�9�5�0�-�+�"�/�Ԁр؀؀ҀՀրӀӀĀҀ׀р׀Ԁ׀ـր؀؀ՀӀ܀ہ)�7�+�'�;�.�6�,�/�+�4�8�6�2�%�0�1�0�-�/�'�0�)�K�1�0�4�0�1�/��0�*�)�'�%�5�4�+�)�3�'�)�6�6�*�4�,�/�3�6�-�+�)�*�$�,�)�(�-�*��'�1�(�.�1�6�/��-�0�*�*�+�/�5�%�$�6�1�%�(�&�-�2�4�8�5�*�*�>�6�5�'�7�+�,�2�'�.�,��9�2�0�.�.�%�&�'�&�'�/�0�8�/�8�,�/�*��0�5�2�4��-�+�(�)��,�&�/�%�+�%�,�-�/��$�=�3�$�4�'�&�/�2�/�1�(�1�4�$��(�3�8�+�0�-�/�)�0�%�5�0�3�%�'�-�1�/�3�3�-� �5���0�'�%�,�/�&�(�-�4�(�.�2��.�"�-�'�'�%�#�/�)�)�+�+�+�-�!�7��+�-�-�7��)�4�*�3�3�!�(�+�2�(�#�0�*�5�(�&�"��8� �%�)�/�)�%�4�/�0�.�1� �3�&�-�-�-�/�&�,�$�*�)�6�2�/�'�(�!��5�&�,�,�(�2�2��*�9�-�+��-�-�;�.�'�1�*�0�"�-�-�7��6�7�/�<�/�3�1�2�8�3�/�'�-�2�2�#�1�3�,�)�,�.�0�?�/�&�)�*�*��>�/�0� �$�2�)�7�2�-�2�(�&�9��+�0�!�-�4�(�!�(�3�-�)�)�,�.�.�0�.�4�*�*�-�'�&�'�/�+�'�0�.�-�)�#�6�+�.�1��2�(�*�+�+�&�/�-�3�$�)�/�#�*�$�7� �*�-�7�+��:�!�/�$�3�(�.�3�.�&�+�(�'� �7��1�/�/�3�3�1�/�2��3�0�$�/�*�(�4�,�3�1�8�!�3�/�&�)�?�2�$�$�/�5�/�4�/�'�1�7�*�5�1�>�%�*�>�#�%�0�6�/�3�,�+�+��/�+�+��;�-�&�+�)�9�0�*�1�:�%�*�+�*�*�,�+�7�,�!�2�,�8�*�,�+�%�1�*�.�%�#�8�6�5�%�,�,�+�+�<�ڀԀ׀׀׀Ҁր׀ӀƀπڀӀՀԀրڀрӀڀـԀЀف'�*�'�"�2�.�!�>�+�'�&�2�5�/�*�/�2�0�1�4�1�&�1�1�)�/�:�3�6�6�'�3�,�/�*�6�(�&�;�7�2�3�5�,�1�7�#�8�1�+�)�'�3�1�-�$�0�,�+�/�2�/�:�.�#�/�.�#�3�1�1�;�#�-�0�6�-�)�6�*�2�$��(�'�4�5�-�+�*�-�0�%�-�#�8�%�1�9�-�%�1�/�4�-�+�-�+�3�1�:�+�/�5�+�'�$�,�)�0�-�.�3�6�5�)�#�)�#�1�2�%�<�)�-�8�-�0�,�'�8�.�)�*�"�7�#�+� �.�/�'�9�'�*�,�/�%�3�,�/�)�%�0�+�)�&�0�"�3�-�*��+�4�,�:�/�#�+�2�/�'�:�(�(�:�.�&�*�%�/� ��(�+�'�2�1�0�=�8�+�8�.�/�,�3�5�$�!�&�(�/�'�+�2�&�-�8�#�(�-��/�4�#�4�4��/�/�0�(�)�4�� �:�/�;�(�&�%�/�*�1�@�*�7�%�6��3�/�"�/�*�4�/�5�-�-�#�-�-�&�5�%�/�,�4�*�/�-�+�.�5�/�6�%�-�#�+�,�+�"�6�+�)�3�'�0�2�1�)�)�&�"�1�'�-�(�$�,�+�6�&�6�2�,�$�5�/�5�&�1�4��&�(�%�#�,�1�.�5�*�4�+�-�*�:�-� �7�*�%�(�+�%�+�/�,�4�#�-�#�3�)�/�0��1�+�,�0�1�1�$�,�$�/�&�0��/�!�-�2�-�"�)�&�'�.�*�'�.�,�,�#�$�(�.�'�2�0�3��2�1�/�#�"�)�.�,� �7�*�*�,�"�'�/�?��*�.�8�7�+�+�.�%�"��4�5�4�'�3�2�!�/�%�%�(�"�1�4�-�9�+�/�2�,�5�-�1�-�3�-�)�)�.�5�/�(�*�-�(�5�4�>�,�1�7�.�$�(�:�*�1�6�-�-�+�2�(�(�2�=�+�/�)�)�+�-�?�4�&�8�3�-�*�.�.�0�)�6�!�/�1�2�3�(�0�4�5�)�/�9�.�/�)�;�.��6�'�؀؀ڀՀـڀրրրÀ׀ՀҀҀۀ׀ڀԀրـۀҀԀҁ8�1�1�*�.�*�)�/�,�3��'�3�.�2��5�)�6�0�8�-�3�*�1�1�3�8�,�(�*�.�(�3�5�9�'�5�#�+�.�$�1�/�8� �/�"�0�@�1�*�'�)�7�+�0�=�+�0�-�#�.�,�*�-�&�%�.�1�B�3�.�(�(�+�(�9�6�-�-�7�*�2�.�+�3�/�%�%�%�8�#�&�)�4�%�5�.�7�6�%�+�.�:�1�%�6�7�2�1�-�8�-�'�0��/�,�)�4�#�0�3�9�/�4�3�/�:�8�2�3�+�)�)�9�.��%�/�1�6�0�#�%�#�1�+��7�1�5�)�$�3� �*�4�-�2�(�.�*�/�+�,�%�:�#�'� �(�0�)�.��&�1�,�!�)�'�(�)�/�4�(�1�2�-�.�6�'�*�6�(�,�-�-�7�6�/�8�5�;�#�'��-�-�%�/�1�*�(�,�0�,�-�0�,�/�2�&�"�/�5�0�$�.�<�'�*�0�1�,�%�-�4�'�#�-�%�1�,�+�2�-�*�2�(�5�.�(�.�!�0�5�-�!�3� �7�*�5�6�+�-�(�-�'�$�+�'�'�0�1�$�,�)�2�-�2�'�2�/�1�9�2�+�1�%�,�4�1�-�*�*�4�+�5�)�+�$�)�1�*�(�&�-�)��-�)�-�0�.�(�*�=�(��3�7�/�0�6�"�)�8�*�$�4�+��)�5�$�%�4��!�0�0�,�0�:�&�5�.�/�3�+�/�1�,�%�(�,�3�7�+�3�7�(�2�2�:�*�+�,�'�#�1�A�1�(�0�-��7�/�4�0��5�1�(�4�B�#�1�+�+�-�8�-�?�'�#�,�#�(�)�7�2�7�6�(�+�@�'�.�=�*��.�-�-�/�3�#�?� �%�=�.�-�5� �/�*�-�=�"�4�.�&�6�-�-�*�9�*�$�'�&�.�)�>�0�-�3�(�0�0�0�0�+�7�+�"�&�,�8�&�(�3�/�2�$�2�$�(�-�6�'�#�=�)�0�0�:�%�%�4�2�*�L�5�/�*�5�(�3�-�*�+�/�.�0�&�$�2�0�6�7�;�)�5�2�Հ؀ـՀ׀ӀۀрրŀҀ׀ـ؀ـҀ׀ڀ׀؀Ӏـ݀ہ/�-�'�(�/�5�+�+�4�"�6�2�2�,�)�0�8�,�0�1�(�*� �/�+�:�/��(�%�2�/�+��-�;�6�.�(�(�1�'�4�(�9�3�-�7�+�<��*�7��0�3�/�5�1�4�8�1�)�/�8�1�:�/�<�-�*�$�)�(�.�&�/�(�5�$�/���(�%�)�*�+�.�>�5�2�/�,�%�/�(�9�-�)�&�/�.�!�8�%� �$�$�/�6�,�(�'�+�4�/�1�/�+�*�-�2�1�&�*�9�&�.�2�2� �)�=�%�+�%�/�,�-�"�,�(�.�0�-�#�4��6�(�:�-�$�-�8��%� �:�5�3�*�&�)�'�.�*�2�+�"�$�,�*�'�1�+�+�%�'�-��0�*�/�#�5�$�/�-�1�-�'�%�+�2�8�*�-�)�1�3�.�/�1�3�%�&�*�3�/�!�5�+�+�6�0�-�$�+�:�%�)�'�5�6�-�:�/�.�)�%�*�+�+�5�)�/�7�*�)�0�"�*�.�(� �(�1�-�!�0�!�(�2�$�*�%�=�*�3�/�&�,�!�+�)�-�&�7�,� �+�.�(�.��(�-�/�-�4�,�,�*�:�2�1�2�*�2�2�*�&�+�0��(�0�B�!�(�,�)�,�)�0�'�8�1�1�0�)�&�6�$�4�3� �1�:�1�*�7�(�9�.�;�4�&�,�+�%��*�1�/�0�+�"�.�(�.�%�-�"�,�0�)�*�2�0�-��'�)�0�)�#�*�-�*�+�-�/�%�'�'�1�+�3�'�*�5�(�-�)�&�'�'�,�(�:�6�2�+�"� �(�(�-�;�/�$�)�1�.�'�0�/�$�#�#�8�/�,�+�0�2�*�)�H�+�&�9�3�5�2�/�+�%�$�.�4�.�0�1�(�(� �2�.�7�6�*�1�.�*�1�7�(�3�/�$�.�(�)�+�/�6�*�%�7�%�&�/�)�&�5�4�+�6�3�6�4�!�)�+�5�.�-�)�-�+�%�=�"�.�(�8�5�2�-�$�&�!�-�)�:�6�+�.�*�/�#�6�1�"�5�&�,�+�*�7�$�/�&�)��(�%�/�Ԁ׀ـրҀـՀԀ؀ĀۀրрրՀ΀ӀԀրրՀـԀՁ4�%�3�#�1�6�2�.�<�6�0�:�8�-��1�+�'�*�4�2�,�+�$�6�1�!�/�5�,�:�2�2�)�6�4�(�1�4�'�,�#�*�/�0�!�5�9�0�6�-� �#�;�,�7�.�)�3�/�0��0�2�3�-�(�+�0�1�5�+�(�6�/�/�1�&�#�9�"�/�0�/�,�5�7�(�5�8�9�-�*�;��%�0�.�!�'�+�2�=�-�+�,��'�.�+�&�#�-�/�&� �#�9�)�)�)�&�4�,�8�)�5�&�,�$�>�/�.�(��/�1�&�+�&�#�/�5�-�#�(�7�(�-�)�/�@�0�1�;�-�*�+�-�+�2�4�-�(�,�#�$�&�(� �1�4�.�*�/�'�&�%�#�/��2�'�)�0�"��/�(�-�/�(�2�+�6�-�1� �-�7�4�-�0�,��,�6�0�.�3�&�'�@�1�2�9�/�(�0�-�(�*�-�*�*�0��&�!�#�3�+�3�$�;�*�(�4�-�'�!�&�!��,�8�-�*�0�-� �*�0�.�+�3�0�-�,�2�/�1�)�;�5�0�7�1�(��;�)� ��+�:�8�8�,�4�1�!�3�5�0�(�-�(�$�&�*�$�0�'�8�/�(�3�$�$�*�1�+�0�6�/�,�"�'���'�/�7�-�5�(�%�'�%�0�/�(�4�/�/�-�/�)�%��+�*�3�+�&�%�1�*�/�-��1�/�2�+�.�4�3�(�%�-�'�1� �+�/�.�-�'�#�8�1�9�4�+�-�+��,�+�-�0�4�7�2�3�)�!�'�7�'�!�)�)�9�/�$�=�-�+�4��&�"�*�2�5�4�2�/��*�-�(�*�/��8�1�.�'�6�"�&�/�(�8�5�/�)�7�9�-�3�+�+�6�5�7�9�7�/�0�=�4�6�)�1�=�0�/�,�:�+�.�/�6�/�/�6�'�)�8�'�1�'�&�/�+�*�5�0�!�)�-�'�/�#�+�/�2�%�/�/�+�'�"�!�#�:�0�3�/�-�0�2�8�-�4�8�7�&�7�#�'�'�5�*�)�*�/�=�/�2�'�,�7�.�.�5�/�Ӏ׀րՀЀ؀ҀՀр��׀рــԀՀՀՀ؀ڀԀـ؀ہ-�:�)�-�8�;�$�*�-�7�,�,�*�2�+�1�,�0�9�!�)�7�0�2�;�1�.�'�0�,�&�/�5�#�+�6�-�8�+�1�+�&�/�7�(�A�.�5�.�"�$�.�/�%�/�*�.�4�)�&�0�+�&�(�-�&�2�%�6�0�5�1�$�0�#�#�'�9�.�2�2�+�8�8�+�#�*�7�0�&�7��'� �2��-�#�,�.�/�:�+�-�3�1�.�-�/�#�$�!�3�2�/�9�-�1�*�9�4�*�,�%�0�6�,�'�-�#�*�2�)�&�/�2�.�+�0�0�(�(�(� �7�'�*�+�-�5�(�.�'�%�:�.�-�#�.�$�3�3�!�)�%�&�$�%�2�%�*�5�)�!�3�,�0�6�(�&�.�)�&�+�0�3�,�-�,�.��;� �/�4�'�*�-�(�+�4�+�,�)�3�/�$�.�8�8�2�'�0�:�0��(��/�)�*��'�!�+��5�+�3�0�$�5�9�'�5�5�0��$�*�-�&�*�&�.�1�+�-�5�+�8�+�7�%�5�6�%�.�/�,�+�#�.�*�$�)�4�(�5�%�#�*�(�:�$�,�/�-�%�0�)��/� �5�&�4�2�*�(�;�;�,�8�1�.�&�(�-�1� �&�)�,�0�(�$�&�,�5�0�9�*�@�)�)�,�1�/�'�3�$�)�4�5�/��2�4�+�+�1�6�:�/�6�6�.�<�&�0�*�1�*�,��'�/�,�-�5�.�,�1�*�/�$��1�.�!�,�8�1�#�7�)�1�(�5�,�1�3�%�%�&�-�/�4�(�-�6�&�2�"�,�3�8�*�0�#��/�#�-�+�,�+�4�*�%�&�-�+��1�0�/�.�7�0�'�6�(�8�8�"�*�1�)�5�'�.��+�0�5�=�<�2�=�4�3�5�2��,�E�/�)�+�*�1�@�7�$�)�,�5�(�-�,��+�#�+�&�/�5�1�2�-�!�.�4�-��1�-�/� �'�&�,�-�4�)�#�&�%�2�#�0�+�+�3�6�5�9�(�3�&�.�0�/�,�6�'�*�-�4�"�'�)�-�+�&�C�5�?�-�3�ۀـрҀҀՀ׀؀ӀŀـрӀ׀Հ׀рــՀӀՀ�Ӂ(�.�.�/�8�9�&�1�9�7�1�9�2�2�2�7�.�1�-�.�2�3�;�&�3�$�.�'�)�1�'�2�2�$�)�-�/�1�0�$�*�5�(�,�$�*�#�-�6�'�-�-�1�(�,�+� �6�>�'�9��0�/�(�'�1�*�0�$�6�7�0�%�/��.�0�6�0�/�#�,�(�2�&�*�2�-�,�3�6�5��9� �&�/�#�B�"�(�)�-��,�#�(�0�0�%�0�&�3�,�/�)�4�/�4�2�1�)�)�1�$�)�5�9�,�+�3�2�3�+�+�)��2�*�.�%�%�*�9�1�/�5�(�+�-�3�)�+�/�$�4�6�'�'��,�0�.�*�&�-�"�2�0�0�5�6�-��/�,�/�*�*�*�.�9�0�-�3�-�6�7�*���&�,�1�%�+�'�5�3�+�-�%�&�/�$�2�)�)�1�%�$�.�/�)�/��7�-�#�'�4�5�,�*�)�+�#�:�,�"��-�7�#�.�1�+�,�*�&�)�9�-�.�(�5�$�4�7�+�,�.�*�*�+�:�&�/�$�-�/�0�#�'�(�,�1�'�9�)�#�%�.��%�'�'�9�4�.�1�1�,�2�+�#�,�3�<�2�:�#�!�7�3�4�2�5�4�6�5�+�$�2�(�*�%�#�4�1�<�/�)�1�4�1�&�1�*�:�6�!�'�*�"�+�)�#�-�&�:�2� �%�+�9�<�'�(�"�%�$�2�3�*�3�*�5��(�0�+�4�$�+�'�1�&�+�%�!�/�$�0�.�0�,�.�/�"�(�.�/��"�-���%��,��)�.�0�#�9�:�*�'�3��+�%�%�*�)�-�#�/�-�2�2�3�%�,�,�0�+�.�+�+�;�-�4�6�)�*�%�&�(�2�/�6�9�2�-�:�3�+�;�.�&�=�/�6�;�0�+�3�/�&�,�2�#�>�3�"�C�0�)� �#�;�2�+�$�)�5�0�%�+�0�"�<�5�/�-�2�2�,�/�=�;�)�-�0�6�/�4�8�2�.�6�/�-�)�*�'�/�8�3�-�3�4�B�/�+�0�.�C�0�4�7�4�1�9�5�4�*�<�ӀԀӀԀۀրрրԀˀӀր؀Ԁр؀Ԁր׀؀πՀԀہ9�&�-�,�,�)�,�7�+�'�,�+�*�3�)�+�6� �$�2�;�*�"�(�.�4�!�)�4�"�%�;�(�-�+� �)�/�(�5�*�!�'�+�'�&�#�.�-�'�%��/�#�2��"�0�(�0�1�(�7�#� �5�.�$�(�6�,��#��0�3�.�&�!�)�=�2�*�/�/�4�+�(�*�.�(�-�#�1�+�<�"�0�'�&�1�2�4�)�.�4�'�1�&�(�4�5�1�/�+�&�-�;�8�-�3�1�'�%�0��'�)�.�,�"�'�*�,�-�&�$�,�3�)�/�/�)�2�0�(�+�7�&�-�(�.�(�3�(�$�2�2�,�+�/�1�%�4�-�,�%�+�3�/�'�3�3�(�+�:�/�+�<�,�"�2�3�#�6�>�8�.�&�:�)�-�;�'�'�*�(�9�/�0�/�-�4�3�2�+�4�&�'�+��*�-�'�*�*�1�#��(�,�(�-�.�,�.�&�7�(�+�,�,�&�%�1�5�1�2�*�3�#�-�5�7�,�+�5�$�6�1�)�-�?�-�.�-�.�'�0�%�4�,�3�*�7�,��/�&�%�/�*�%�#�)�;�-�#�2�4�.�6�/�4��$�1�%�*�&�,�-�'�+�/�5�8�&�%�6�,�"�7�7�*�8�-�+�"�'�(��=�$�7�9�#�'��7�,�4��'�#�'�#�/�(��1�8�'�2�&�1�,�'�$�(�2�<�.�� �,�/�5�&�:�+�3�%�#�-�1�%�-�"�&�.��2�3�(�#�.�.�)� �#�1�5�2�!�0�1�:�C�.�0��(�,�+�2�,�,�"�9�*�7�#�0�-�)�"�"�*�(�.�.�3�(�1�4�,�*��0�'�+�8�.�'�(�,�0�/�.�1�7�(�/�1�'�7�'�C�0�C�9�5�3�6�7�0�:�*�:�?�8�3�:�5�3�1�-�3�2�&�-�'�3�%�&�#�/�-�2�)�%�$�0�7�1�8�*��)�.�-�9�-�5�6�7�/�9�+�/�(�+��-�3� �4�8�1�*�&�+��1�&�&�0�,�%��6�0�.�-�0�.�0��!�+�,�׀؀׀׀ր׀Հ׀ӀÀ׀Ԁ׀ՀրՀ׀ۀـڀڀրՀ΁@�(�.�/�,�$��-�'�)�<�%�8�4�,�3�3�8�'�@�3�:�-�-�1�5�.�4�,�/�&�� �,�+�3�2�:�!�8�7�-�6�>�1�-�@�7�2�7�'�3�4�)�)�)�&�(�/�+�(�(�*�$�1�.�%�0�+�,�)�+�)�/�5�$�)��(�1�#��2�.�1�%�&�,�2�1�&�/�0�5�/�1�1�+�4�<�3�*�0�2�8�,�3�/�=� �?�*�)�2�.�,�;�-�2�(�)�*�.�"�-�1�+�,�0�3�*�.�+�2�/�0�4�)�,�/�-�+�)�*�5�2�+�)�"��5�+�?�-�/�+�(�F�#�/�2�0�1�5�4�$�,�*�%�-�5��-�$�4�.�*�8�.�%�$�$� �7�8�/�-�6�.�-�-�6�*�0�)�.�#�%�5�3��&�)�;�9�%�+�/�%�+�0�*�@�$�5�2�,�'�$�#�+�(�)�-�)�;�"�*�4�*�3�%�6�'�+�-�0�5�3�1�7�2�'�*�1�1�.��.�'�3�7��*�/�1�,�&�%�:�*�.�%�5�+�+�)�/�*�A�7�!�!�%�3�(�2�0�+�#�*�(�6�7��,�/�!�/�/�.�2�5�2�)�2�4�7�5�*�,�3�2�)�&�4�+�3�-�0�+�#�(�0� ��$�.�-�+�,�+�&�.�)�$�+�#�'�'�0�.�6�;�7�-�&�3� �(�+�:�&�,�1�$�;�-�+�(�%�%�&�*�1�1�,��'�/�/�-�1�1�+�,�(�'�:�%�'�3�6�)�'�.�5� �&�6�5�*�=� �'�*�.�,�(�2�(�3�4�,�2�+�)�0�'��1��B�!�1�/�-�%�3�*�/�3�2�.�7�.�0�-�7�)�+�)�3�$�6�.�;�*�5�E�9�-�A�;�B�2�J�=�6�6�1�D�4�:�4�<�'�%�+�,�+�-�6�)�+�"��+�-�+�+�2�%��*�0�;�+�;�,�4�.�3�2�8�6��'�#�'�'�7�*�(�.�&�+�%�/�5�,�(�+�3�,�)�2�/�=�2�,�&�&�A�(�1�5�'�4�$�-�-�ӀڀـӀЀӀԀ׀ԀÀ׀؀ӀՀҀրՀӀ׀؀ــڀՁ/�3�-�3�3�3�>�,�5�(�6�9�+�6�.�*�(�6�,�-�/�,�5�!�9�,�,�5�#�+�1�2�0�-�-�#�+�4�9�)�-�"�/�2�,�$�,�:�/��'�&��-�/�(�;�1�2�4�6�.�%�0�)��/�.�*�(�(�.�.�&�3�/�$�.�4�(�3�3�.�4��)�#�0�+�'�0�$�(�-�5�0�8�"� �8��3�8�'�#�.�.�*�/�5�*�$�'�1�)�+�#�#�-�:�3�1�(�2�<�(��/�)�'�*�4�<�4�*�/�+�2�+�@�#�(�%�)�(�$� ��#�(�0�5�4�/�1�+�*�'�-�6�%�5�+�-�1�7�.�"�+�'�+��'�-�%�*�+�$�/�4�#�.�*�+�#�'�+�%�$�1�)�&�5�$�)�7�+�%�C�*�0�'�,�%�'�#�+� �*�$�3�(�6�+�0�'�-�.�#�+�+�(�2�2�*�&�)��+�"��5�*�%��1�*�5�0�-�&�4�+�,�/�+�#�)�(�'�*�$�.�7�+�-�/�7�*�.�*�&�,�'�/�;�@�"�A�)�'�8�'�+�/�,�?�1�-�:�'�,�2�,�/�1�7�4��*�#�/�+�4�3�$�'�0�5�"�'�/�-�%�'�.�+�/�+�,�,��0�1�0�1�>�.�$�,�0�1�?��)�(�&�%��(� �4�2�-�4�$�/�-�,�&�&�+�;�/�/�5�,�3�0�E�&�,�-��/�.�1�5�"�6�"�+�#�/�,�/�%�1�"�/�%�2�0�6�-�4�!�,�2��*�-�*�.�/�%�-�+�1�-�&�(�5�$��*�%�;�0�0�/�'�6��2�.�'���*�'�+�3�0�+�3�4�(�*�(�.�'�*�1�/�3�2�5�A�:�5�9�L�E�P�C�8�J�:�:�<�=�/�7�0�6�1�:�2�!�1�3�9�7�/�&�&�'�1�7�+�(�:�-��3�5�+�9�,�)�?�6�,�*�7�(�.�>�'�-�.�%�*�*�.�3�,�1�2�1�.�(�6�$�'�0�-�0�.�/�,�*�+�3�)�;�+�'�7�0�-�րԀӀр׀ӀՀԀ؀ˀ׀ҀـҀՀ׀Ѐـ׀؀Հ׀܀ف;�&�,�4��+�+�3�.�,�)�.�7�"�0��,�/�:�+�4�+�/�,�/��-�7�(�#�*�<�0� �:�(�7�3�9�,�6�0�5�+�)��+�-�+�5�(�"�/�2�*�+�.� �'�4�'�7�+�*�0�-�-�2�/�)�(�0�2�9��;�!�6�4�(�7�/�>�+�8�(�*�-�-�)�;�����6�'�*�"�2�-�/�*�#�-�(�8�4�.�8�(�!�0�2�$�4�*�'�,�+�'�%�0�9�+�$�� �0�/�:�"�/�/�-�1�*�/�#�3�.�-��-�3�)�8�+�5�/�*� �5�1�0�'�/�5�,�8�%�!�*�(�6�5�*�#�5�)�6�-�3�3�)�$�2�2�,�"�(�3��,�D�#�8�1�"�#�4�1�.�:�)�2�0�0�-�4�2�-�&�1�/��(�3�-�B�8�1�3�7�+�.�%�#�)�/�2�%�.�'�/�.��5�'�"�!��)�2�#�&�'�7�2�.�,�(�&�4� � �)�/�3�;�5�-�*�"�+�(�+��.�-�,�4�,�)�4�-�)�.�0�'�+�0�2�:�+�*�/�/�5�/�+�/�.�,�+�,�&�-�4�0�6�.�-�*�0�&�'�*��,�/�-�+�/�2�.�!�/�#�!�$�*�(�&�(�/�,�9�+�2�-�+�)�&�&�.� �1�*�-�*�-�3�;�,�'�/�(�.�)��!�(� �=�+�1�>�$�9�8�*�+�7�1�<�:�.�'�,�6�4�'�;�/�-�-�(�'�.�'�4�/�'�.�5�.�&�)�!�7�8�)�.�0�3�)�!�1�1�%�.�!�%�5�)�&�2�+�<�7�<�%�5�.�$�%�7�/�/�(�0�=�-�$�2�-�=�8�"�/�'�,�B�9�'�7�4�3�6�E�<�M�L�?�\�E�B�J�D�=�7�-�7�&�.�?�*�/�1�3�&�?�.�3�3�(�.�9�0�,�&�'�0�2�2�1�#�%�;�'�,�1�8�6�8�3�)�2�)�.�3�/�+�*�E�%�%�#�&�%�(�&�%�4�*�+�4�%�A�'�'�,�7�'�%�;�/�7��,�7�؀րրӀՀڀԀրـȀՀ؀ՀҀڀԀр؀րрڀڀπց/�.�2�3�0� �:�!�/�5� �3�'�&�;�5�4�(�0�4�3�2�%�)�4�*�@�*�4�+�1�/�8�8�3�;�$�.�$�%�7�@�*�"�,�0�!�'��4�0�/�&�8�.�7�1�3�(�-�/�!�#�0�2�,�.�%�.�/�*�.�(�,�6�)�5�(�'�5�5�*�.�1�1�2�-�:�7�4�;��3�$�$�3�2�)�'�0�8�*�0�'�'�&�'�.�(�/�,�'�.�0�#�*�'�6�"�'�3�%��/�5��/�&�'�1�'�5�(�;�=�*�(�5�)�/�'��)�)�*�*�4�4�4�&�(�-�7�#�2�7�+�/�8�+�1�(�+�/�3�(�"�>�.�"�'�1�-�5�%� �3�$�+�/�$�+�,�-�&�-�"�-�#��$�#�'�*��1�2�(�(�)�9�'��+�'�,�6�)�)�/�+��0�'��0�#�'�0�(�7�0��-�3�2�!�,�/�0�*�!�.�6�/�1�4�1�-�-��.�%�+�+�&�6�$�4�)�!�9�&��+�'�8�9�%�*�)�/�-�6�/�!�,�$�*�$�8�#�/�*�5�-�2�/�*�1�-�:�%�*��7�&�5�.�/�7�#�,�/�,�:�/��/�(�#�%�&�'�4�-�0�/�7�)�+�(�%�2��+�-�5�/�-�)�/�#�/�-�#�1�/�6�%�+�.�"�&�/�4�9�&�&�/�(�+�,�-�(�"�)�(�2�#�0�4�6�2�,�&�-�/�!�/�*�.�%��+�1�*��:�/�4�7�+�,�*�2�:�#�3�6�<�/�,�4�0�*�(�s�́(�(�%�,�)�7�+�6�4�3�*�4�+�(�0�2� �/�,�(�1�*�+�5�9�2�.�(�'�(�'�;�/�E�:�+�,�6�C�<�A�J�T�a�V�f�d�`�`�^�K�@�9�:�=�F�3�3�3�9�1�'�8�7�1�,�,�3�.�6�3�,� �(�,�2�,�)�-�:�#�2�1�,�6�&�-�0�7�(�.�1�1�2�?�5�*�4�+�0�.�+�+�*�/�,�,�/�.�3�*�/�'�4�6�*�-�5�6�7�-�*�3�րՀԀۀ؀ՀԀπ݀ǀـրӀ܀ҀՀՀۀ؀Ԁ؀րڀҁ,�5�2�.�4�5�.�+�)�4�2�5�C�(�-�(�/�'�3�)�/�2�.�+�5�.�.�1�7�4�/�3�$�%�"�1�0�1�.�$�7�7�6� ��-�'�/�+�-� �>�%�2�-�*�1�)�4�,�0�)�(�*�/�"�7�/�.�#�2�"�=�*�-��+�%�1�.�+�2�&�4�&�+�/�'�8�#�#�'�/�"�B�)�6�2�1�+��*�0�-�)� �6�7�*�.�)�6�*�*�-�)�3�&�$�-�.�+��$��6�1�1�1�,�"�(�,�.�0�4�,�-�/��4��#�(�/�#�0�"�-�0�1�2�#�#�'�/�-� �"�-�2�#�,�,�*�"�(�"�%�/�,�&�,�:�)��4�&�6�/�(�3�)�8�4�1�0�*�0�&�-�5�4�/�%�4�*�-�)�*�)�#�2�#�*�,�)�$�0��*�"�(�)�/�.�,�+�5�*�,�2�$�2�'�#�%�2�"�5�&�/�)�/�/�$��"�)�-�*�-�&�;�$�5�*�-�,�*�1�%�(�9�,�-�+�-�*�/�3�.��2�0�/�)��'�(�+�%�+�*�)�'�+�&�(�3��)�!�*�.�.�4��&�$�1�!�,�$�4�.�!� �5�$�#�(�6�%�%�&�-�(�%�3�+�3�'�'�4�%�-�4�.�$�0�4�2�-��2�2�0� �&�/�/�"�(�*�&�#�(�"�7�2�4�"�%�!�3�)�2�0�+�'�)�6�9�,�5�'� �'�/�5�(�2�'�%�/�3�+�9�<�/�-�-��)�0�8�(�(�0�1�5�/�8�8�%�0�8�:�9�.�+�(�"�%�/�)�4�$�)�'��-�3�-�#�&�@�4�*�$�"�%�-�)�-�5�1�3�*�2�4�8�'�6�7�;�I�;�9�X�T�o�u�h�����g�g�T�E�A�=�8�;�:�=�*�8�9�'�7�#�2�)��=�0�.�.�$�6�1�&�3�+�4�-�5�2�-� �+�5��1�;�%�-�.�0�*�/��!�(�2�.�9�7�8�,�'� �)�0�)�=�G�2�2�-�3�)�-�/�:�"�6�'�0�1�р׀ր׀׀؀؀ԀՀƀрӀ׀р׀րӀ׀ـӀЀӀӀ؁3��$�%��2�7�-��1�-�&�2�/�/�/�:�2�,�)�.�+��'�#�$�/�4�0�0�B�0�(�/�-�2�5�0�$�+�-�/�:�/�3�D�:��'��?�)�'�>�*�(�/�"�%�7�8�4�3�B�5�0�.�-�0�)�#�+�1�&�2�2�(�4�/�&�&�/�/�$�/�5�5�+�*��/�A�&�/�)�5�&�-�-�(�%�.�*��4�!�.�,�&��4�(�-�0�.�7�/�2�&�6�6�/�*�,�+�'�.�2�.�2�7�+�0�.�.�6�$�"�&�"�5�+�3�%�%�/�/�%�)�$�+�/�0�$�<�8�F�+�1�,�+� �1�:�*�.�4�.�%�'�#��&�&�-�-�%�*�(�3�%�/�1�2��,�7�1�0�(�'�+�"�,�1�,�7�%�.�.�1��:�2�'�$�%�A�)�7�,�+�(�'�-�!�4�(�-�+�'�4�6�7�2�.�"�/�/�,�,�.�/�+�=�(�8�7�2�!�2�.�5�+�-� �&�7�7��9�8�/�#�1�2�%�0�+�/�'�(�=�(�/�$�)�� �+�/�(�6�/��'�*�'�*�+�!�6�"�@�%�3�/�1�*�+�1�.�-�)�(�1�"�.��2�"�)�9�!�5�#�#�&�0�.�0� �'�+�;�%�+�2�/�$�0�#�/�/�/�+�6�0�3�$�4�*�-�+�"�"�.�2�:�;�=�(�,�.�0�/�3�&�'�-�/�0�'�1�/�)�0��0�)�0�-�+�*�/�9�3�%�'�1�,�<�2�.�!�1�/�9�,�3�.�)�-�3�#�C�#�3�1�-�1�1�,�4�5�,�+�9�$�&�2�(�4�#�*�5�)�+� �5�-�,�#�$�"�.�,�.�:�7�@�0�7�5�0�-�=�F�L�O�p�r�������������|�s�Q�T�B�6�7�4�1�0�8�-�3�"�,�/�,�8�!�!�(���'�0�4�4�-�'�*�4�7��*�(�6�'�4�3�(�0�5�2�/�6�*�+�/�0�;��/�(�0�5�8�.�*�,�(�2�4�/�C�$�$�;�1�-�(�@�2�.�+�Ԁ؀ՀۀԀ׀ҀـրĀڀ؀ڀрՀՀԀրրӀۀրՀԁ.�.�4�9�2�(�-�)�2�2�'�$�5�0�-�/�&�-�*�,�*�2�6�)�'�9�.�3�;�&�7�3�.�;�5�'�:�� �0�0�1�0�*�3�/�3�+�-�/�8�5�*�-�)�#�.�'�/�1�&�6�)�)�/�%�2�/�"�0�&�#�0�3�3�'�3�-�0�,�4��1�%�0�.�4�,�4�3�%�9�-�/�+�8�9�1�(�+�4�)�*�:�0�.�:�'�+�*�0�-�6� �%�,�7�?�2�,�'�.�4�2�,�2�0�-�)��/�)�1�0�2�5�1�+�;�.��(�2�6�$�,�&�'�/�/�"�.�2�/�-�4�8�3�/�8�/�)��.�#�=�7�*�0�%�(�%�)�'�1��#�$�.�*�"�+�4�(�,�5��,�)�0��-�.�2�/�:�-�-�'�#��$�0�7�+�0��+�/�#� �.�/��7�+�:�7�"�)�4�'�3�9�$�7�)�1�#�5�)�/�-�*�1�/�/�'�0�!�6�$�8�(�1��"�'�%�>�&�;�9�2�1�+�*� �2�)�7�3�$�(�3� �#�'�.��-�5�@�2�3�+�$�$�4�,�1�/�*�#�2�+�*�,�6� �,�5��)�'�;�2�$�/�&�-�$�-�%�*�-�(�+�&�1�.�<�6�&� �*�3�,�(�-�/�/�*�0� �.�'�3�4�5�,�:�*�5�(�,�4�-�2�/�)�-�2�"�'�&�)�9�)�)�3�&�+�%�/�0�)�!�6�0�2�-� �,�*�9�0�(�8�3�+�>�*�$�8�'�!�4�(�*�2�(�0�:�5�-�!�+�)�,�,�!�$�'�.�(�.�'�$�2�2�6�/�*�/�.�0�!�9�#�%�#�(�5�(�)�'�1�.�)�+�0�8�@�7�H�;�B�j�S�l�����������������q�[�J�P�D�?�E�:�.�4�2�$�*�2�/�2�5�*�'�-�>�-�3�1�'�*�+�,�)�-�/�0�0�)��9�4�3�?�/�-�4�/�-�2�/�6�1�)�-�(�)�0�(�0�4��5�.�$�8�$�2�7�#�?�,�6�4�,�+�5�,�рրҀԀӀ׀ҀπրˀӀ׀րҀՀ؀րڀԀրՀԀՀҁ2�%�,�2�$�0�'�#�9�5�:�*�0�.�&�1�/�(�$�@�6�/��)�0�6�0�-�2�,�/�.�*�>�0�/�$�0�1�'�%�*�7�?�.�'�(�&�-�,�.�!�0��+�/�/�%�.�.�.� �(�#�5�(��1�5�5�8�1�+�3�1�'�0��/�*�3�/�-�%�2�.�"�'�,�-�+��*�(�*�"�,�0�(�%�2�C�#�"�#�.�+�,�.�%�5�%�1�8�1� �'�(�'�+�'�%�)�3�)� �(�&�%�5��&�1�+�/�'�/�/�!�/�A�!�7�1�)�=�(�.�#�6�(�&�#�(�,�*�2�/�.�.�8�7�,�'�0�#�3�3�=�-�)�*�1��'�2�4�A�*�$�3�4�/�(�/�!�7�.�6�"�2�+�7�9�(�1�$�7�'�+�#�.�"�5�%�3�D�,�+�+�1�-�2�8�'�,�+��(�3�/�)�)�+�-��)�-�#�4�/��2�#�5�-�,�)�,�%�"�2�0�0�2�)�+�0� �/�+�%�)�1�)�"�*�+�:�3�5�2�2�*�6�-�'�.�%�#�!�0�0�7�*�:�'�-�/�3�'��5�6�9�,�5�$�$�7�!�9�1�5��%�+�.�1�0�1�9�'�&�&�*�1�%�)�1�.�&�/�%�-��#�0�*�.�'�-�/��<�&�(�-�-�5�7�1�*�-�)�/�*�7�+�'�1�.��'�)�6�,�"�'�4�,�?�)�&�+�%��2�)��"�*�1�%�2�$�;�,�(�7�(�+�/�*�7� �(�%�2��'�%�"�-�-�*�)�(�'�(�1�%�7�/�3�'�*� �(�&�$�'�)�/�.�*�4�8��3�-�1�"�-�3�8�3�3�5�7�&�>�/�4�9�6�J�E�W�a�{�������ā΁������u�V�L�O�O�N�7�C�/�)�3�&�-�&�(�5�'�6�$�6�-�2�:�%�)�)�&�7�%�=�0�.�)�,�1�)��1�0�%�)�3�7�5�!�,�&��+�(�1�4�3�2�(�-�&�.�1�/�(�2�,�2�4�%�0�2�(��/�/�ՀڀҀҀՀրԀԀՀǀҀՀ׀Հ׀Հրۀ؀рڀڀрف*�+�0�)�"�-�2�)�,�*�,�3�,�;�A�'�0�)�0�%�1� �%�/�1�-�+�5� �.�0�(�3�,�4�2�)�4�1�-�)�0�.�*�/�0�8�!�0�,�.� �;�-�9�:�.�1�0�,�0�%�.�5�.�1�#�=�.�)�'�*�+�*�2�3�+� �-�&�%�*�@�#�,�*�+�8�*�'�%�%�'�2�-�:�#�)�4�+�"�,�/�3�7�*�9�/�*�)�2�$�(�.�%�'�-�&�'�'�3�,�-�.�'�4�-�'�1�6�'�5�3�%�)�-�)�-�#�5�)�(�(�,�/�$�(�)�2�.�#��!�"�.�-�5�2�:�'�3�7�,�*�#�"�8�,�+�3�+�'�(�/�-� �)�'��?�)�2�6�%�&�#�+�,�'�8�3�*� �(�&�'�;�&�2�4�,�)�+�0�(��-�4�!�"�0�-�'�4�3�-�-�'�;��!�/�)�%�"�(�#�(�.�+�*�#�$��3�)�.�)�5�+�(�+��2�2�-�3�'�7�'�,�6�2�,�-�3�)�+�&�*�!�%�0�3�#�*�-�/�,�/�*�.�4�$�*�%�#�.�5�)�&�"�%�-��,�7�(�,�%�0�3�)��6�*�9�!�)�2�,�/�/�:�&�#�2�;�.�'�5�!�*�9�1�-�/�*�&�$�)�6�+�4�-�'�,�%�.�3�5�;�%��/�5�7�@�,�>�4�C�<�%�,�/�(�-�(�(�#�3�)�-� �3��-�0�9�&�(�-�1�#�@�/�*��4�1�-�B�.�2�0�0�/��3�)�*�8�*�5�'�,�+�8�6�.�&�1�(��0�.�0�*�1�$�#�*�6��+�5�'�4�&�(�7�"�(�$� �+�,�3�(�*�1�(�6�D�Q�T�E�^�_�������Áˁ����ˁ����t�]�R�K�:�.�9�;�0�+�E�/�:�2�.�,�D�1�%�;�6�*�*�(�4�3�.�)�=�&�*�/�5�0�-�(�)�5�2�0�3�%�#�<�1�(�6�6�$�0�/�5�A�9�+�7�'�5�'�8�-�7�+��/�$�#�7�)�'�=�%�׀׀ۀ؀ՀԀՀ؀ۀ��؀ӀҀр׀؀ӀՀՀ׀Ѐ׀Ӏف2�%�2�1�*�#�9�,�(�6�6�(�*�/�@�8�8�/�/�/�+�4�1�'�#�0��-�*�$�&�"�(�%�2�6�1�'�-�1�+�*�4�1�5�0�+�5�%�8�(��5�1�'�/� �2�3�<�1�%�+�#�,�$�/�.�5�)�2��,�?�)�/�!�6�4�*�4�3�!�-�+�,���1�%�$�0�&�3�,��)�+�0�0�/�0�*�%�1�B�5�*�0�,�5�-�5�*�)�0�"�.�%�-�+��/��/�.��%�-�"�!�/�*�#�2�0�!�+�&�(�A�%�,�"�,�)��#�'�9�,�-�.�/�.�"�;�3�-�3�/�/�*�#�-�4�#��(�/�1�$�$�<�%�7�.�*�.�-�6�$�2�'��*�/�*�'�)�4�1�8�.�(�6�(�4�,�%�*�&�+�1�0�4�6�-�0�*��0�3�1�+��)�0�)�!�(�5�&�7�6�$�)�<�&�6�)�0�.�0�,�"�:�!�1�6�1�0�0�+�/�2�#�5�,�.�.�&�&�3�/�#�-�&�.�'�*�-�4�3�+�.�'�/�+�.�0�9�3�5�4�8��-�,�/�'�1�4�"�&�1�6�%�-�'�&�,�5�9�(�<�+�%�/��'�*��6�-�(�"�'�-�$�3�(�+�2�'�,�/�2�7�*�2�+�2�'�%�,�2�.�1��'�"�/�+�1�.�'�-�:�7�%�.�2�:�4�%�@�2�B�,��'�*�*�2�.�2�/��#�&�5�*�6�2�A�&�%�.�-�*�0�1�&�.�(�*�-��%�0�/�*�/�!�3�!�%�)�#�-�!�-�#�/�5�3�-�/�.�-�5�!�$�=�%�6�1�3�2�.�4�-�1�0�&�2�6�3�(�)�+�7�2�9�;�W�R�i���~�����ԁՁցʁ�������j�H�@�E�8�?�3�<�5�4�A�6�/�7�6�+�-��2�/�4�*�2�$�-�-�2�%�'�*�5�&�;�*�-�4�+�/�.�5�*�9�<�*�-�0�8�)�!�=�6�)�6�*�6��9�1�'�3�4�9�+�4�0�"�)�(�2�8�*�؀ۀڀ׀рր׀ڀ؀ɀӀ؀׀؀ـՀӀՀـ؀ۀـր܁!�8�0�/�7�%�2�%�2�4�&�2�$�!�-�)�$�8�/�.�5�-�$�5�6�5�6��5�,�+�1�*�+�0�+�2�)�(�+�0�&�+�8�0�<�0�-�+�2�*�/�9�1�'�/�6�1�6�3�0�'�)�,�%�+�6�4��,�1�,�%�$�+�,�)�+�.�6�%�0�/�&�4�&�*���/�)�*�0�7��0�+�,�'�)�"�%�8�5�)�&�*�.��4�4�5�-�7�/�&�4�%�8�'�)� �9�9�+�;�*�.�4�&�.�<�#�2�1�(�-��+�1�*�3�,�(�.�+�$�-�$�,�5�*�8�4�6�(�3��,�8�,�*�%�(�'�(�'�,�#�%�*� �)��)�;�2�-�$�4�+�1�/�9�2�)�0�1�0� �5�%�,�:�%�/�*�)�*�.�*�1�3�+�.�/�*�&��%�4�"�2�)�4��1�)�+�/�)�%� �;�/�2�4�6�3�/��-�+�/�+�#�1�.�<�)�(�0�3�/�,�*�)�#�0�+�.�)�-�%�1�(�5�)�'�)�3�*�,�)�#�6�3�.�3�:�*�/�/��0�.�)�5�,� �0�+�7�2�#�'�0�*�0�2�*�:�#�3�/�(�2�(�!�'�*�/�.�0�#�-�3�(�-�(�*�/�A�'�)�-�,�+�6�,�*�)�*�%�%�+�5�0�.�#�/�/�.�)�4�<�'�*�,�7�%�,�.�<�'�)�)�+��0�&�,�/�'�0�&�?�2�&��*�-�&�3�%�2�6�3�0�*�(�#�-�1�(�,�+�4�4��#�7�.�1�*�*��/�&�'�'�'�'�+�&�/�0�(�0�$�'�)�<�-�'�0�1�5�$�4�8�&�$�/�'�,�#�.�0�A�&�/�D�8�K�=�N�M�q�y�������΁߁΁ρ́����h�x�[�a�D�6�9�G�+�=�4�8�C�)�,�1�+�)�.�9�1�5�%�%�!�:�0�@�+�(�"�5�*�8�1�3�9�"�4�)�*�+�.�/�8�4�*�%�,�#�/�)�!�#�%��5�2�&�0�:�1�2�<�$�(�0�+�/�3�'�:�׀Հр׀րԀ׀ـрˀԀ΀ՀԀӀր׀р׀ԀրހӀՁ0�@�.�5�)�3�8�;�'�)�0�9�*�'�$�$�&�*�$�&�/�0�0�-�7��-�)�(�'� �3�2�.�.�'�'�.�'�0�)�+�2�=�!�=�6�#�:�)�1�2�-�4�7�&�+�2�-�3�/�7�.�<�*��.�:�-�/�-�-�'�)�/���(�"�(�0�+�+�)�(�6�.�'��3�2�.�$�#��:� �+�.�#��!�.�&�/�3�#�5�0�*�/�1�,�.�#�7�/�0� �(�5�*�1�8��4��&�$�(�0�#�-�1�/�3�%�/�.�<�&� ��*�*�#�8�$�7�0�0�.�/�4�6�6��'��)�0�3�'�.�0�2�.�.�3�'�*�2�0�,�*�*�*��3�-�,�&�-�#�1�1�'�+��4�.�&�3�%�:�8�$�*�3�"�?�0�'�,�,��3�,��,�2�4�%�2�'�*�+�*�3�&�+�'�1�9�,��2�/�:�%��+�+�4�*�&�4�!�9�'�A�0�=�%�.�/�2�6�(�1�8�"�/�)�8�.� �+�8�)�3�3�1�(�3��)�"�*�3�1�1�;�#�&�@�)�.�+� �=�(��'�,�-�+�&�+�)�/�)��1�&�)�*�:�)�9�!�5�5�(�3�/� �1�/�3��5�-�$�-�-�-�'�"�)�4�%�/�'�+�4�%�-�8�/�#�2�)�0�-� �"�)�"�4�1�8�.�&�,�(�+�/�2�*�5�-�:�9�6�4�8�.�3�0�$�#�(�+�1�/�8�*�-�+�-�*�+�/�7�(���%��8�!� �6�-��*�*�5�'�/�5�:�&�5�,�)�&�:�5�,�.� �9�*��4� �2�(�-�+�5�2�-�5�/�1�'�1�3�3�A�D�C�N�?�^�m�������Ł�����܁��������d�U�P�;�I�L�8�/�6�4�2�-�-�5�'�2�-�7�/�0�<�+�1�$�8�&�4�5�-�&�6�;�&�0�-�)�/�)�1�,�*�-�8�3�3�9�*�9�2�.�1�/�/�5�(�-�8�6�4�'�/�<�%�2�'�)�:�?�(�"�׀׀րـڀԀـ׀ۀȀ΀ـπـ؀؀ۀ؀׀؀׀Հ܀с2�-�=�3�0�-�+�9�%�;�"�2�/�*�*�0�)�(�5�(�*�7�.�$�#�/�,�/�0�2�*�*�:�$�3�-�7�5�&�'�<�1�,�*�:�:�-�2�&�&�/�1�2�"�8�'�-�2�6�3�/�3�%�1�$�&�8�+�7�.�-�4�1�.�3�$�,�.�*�(�A�,�/�$�,�5�1�.�,�>�%�.�*�1�-�2�/�)�9�4�/�'�.�"�$�(�,�9�+�/�!�(�-�+�5�5�/�&�4�4�(�#�2�,�%�:�'�2�5�:�+�-�)�*� �5�-�*�+�(�:�#�1�8�*�(�'�1�/�*�%�2�1�+�,�'�'�-�5�'�+�4�$�'� �#�7�4�,�(��-�(�1�3�,�<�1�7�-�+�?�-�)�1�.�0�*�&�!�)�&�+�2�-��1�3�)�,�8�%�2�3�$�2�(�%��/�!�-�.�&�"�)�*�*�(�&�%�&�&�(�7�'�6�"�4�1�,�+�-�+�+�&�/�0�.�7�+�0�*�+�"�+�7�.��)�1�-�-�$�1�3�'�.�0��*�.�"�+�"�6�+�1�&�,�0�-�2�+�0�*�(�,�0�#�+�,�)�+��%�7�0�2�"�-�"�*�(�%�*�+�/�*�5�4�0�5�0�$��8�5�1�/�#�,�$�.�D�(�,��?�&�'�7�'�$�'�1�/�8�,�'�.�1�.�!� �)�%�*�+�4� �2�$�;�"�A�0�-�1�1�2�)�-� �+�$�4�*�/��'�@�&�%�1�5�&�!�4�)�1�-�6�,�,�1�,�1�-�+�/�3�%�8�9�7�2�(�!�)�2�7�)�6�=�:�2�'�+�+�/�+�2�'�+�<�%�,�=�3�1�+�>�(�#�&�$�6�>�8�0�E�3�E�G�R�]�z�p�����ā��D�2��M����������x�d�H�D�@�D�F�I�7�-�6�4�9�"�4�4�%�,�7�/�0�4�!�9�7�5�4�-�,�9�:�-�*�2�.�)�*�1�/�:�.�2�-�/�6��'�)�&�'�-�*�0�&�.��1�/�!�,�,�5�1�*�5�3�0�2�/�%�؀ــ؀Հـ׀րӀǀррՀրրրր؀Ԁ؀ր׀ՀӁ4�)�4�+�0�#�@�2�,�<�,�'�*�4�0�.�-�.��$�.�3�0�#�!�2�1�+�/�.�'�%�/�/�<�,�#�#�#�&�&�0�/�8�$�,�4�!�3�'�%�-�-�6�)�/�.�6�0�-�G�0�=�$�+�*�1�7�4�-�2�1�)�0�/�/�3�%�)�8�;��1�6�+�,�,�4�+�3�%�/�5�%�4�(�.�0�1�.�:�$�)�/�)�.�.�.�-�4�/�*�(�9�5�"�1� �'�(�2�4�8�/�.�)�1�-�*�1�/�4�-�:�.�&�%��'�/��/�'�/�/�%�3�$�'�,�6�6�1�0�5�)�&�'�?�%�#�+�!� �E�/�.�#�.�2�&�1�#�%�(�4�-�&�(�+�1�/�"�$�:�/�&�0�'�.�)�7�+�+�+�)�1�1�.�*�,�/�-�0�0��,�1�,�'�!�2�;�1�+�,�.�-�&�"�)�(�/�)�0�$�(�2�'�&�*�&�'�0�(�)�*�8�)�+�%�*�,�-�2�6�,�$�,�(�&�&�#�+�,�/�*�3�*�A�2�/�3�)�/�.�(��+�"�*�8�/�&�/�+�0��,�<�0�'�,�2�1�3�7�1�'�'�:�1�4�%�-�-�(�7�)�)�+��)�&�-�,�.�+�0�+�7�2��/�.�/�*�4�-�-�/�'�-�3�.�'�:�&�%�,�.�/�/�#�'�2�2�&�(�/�)�"�0�-�$�$�7�5�/�3�4�$�1�*�+�3�"�)�1�"�)�6�#�0��*�)�/�6�'�0�'�%�)�7�&�"�.�'�,�*��2�%�.�-�2�+�)�5�&�#�2�(�&�&�'�5�?�"��!�-�>�1�-�8�;�#�7�E�-�3�0�&�0�2�6�0�;�*�>�D�E�X�W�d�u�����߂�F�����������E��􁒁{�j�U�X�S�:�B�3�1�8�6�-�+�*�+� �-�1�)�&�(�)�&�.�3�+�'�5�'�'�*�-�'�-�1�*�&�+�(�,�7�2�(�+�.�6�<�$�+�0�-�2�,�9�(�4�,�/�2�,�3�.�+�?�)� �)�)�&�)�׀ҀـڀրۀՀӀ؀€؀ـӀڀՀԀҀҀӀրрӀ؀ׁ)�.�4�+�(�-�9�'�/�7�<�2��/�.�.�&�.�)�/�.�0�#�*�2� �*�/�<�,�5�-�'�*�+�3�9�-�,�*�>�$�:�)�-��2�0�#�2�1�0�.�&�*�0�2�*�(�&�7�3�)�'�;��.�)�(�(�3�<�%�4�0�0�,�6�+�,�,�-��2�'�*�*�5�)�)�!�$�5�-�/�,�7�7�"�8�)�#�-�,�6�-�3�2�'�/�'�%�.�4�3�1�3�'�)�0�(�;�*�(�"�)�1�(�2�,�"�#��"��$�*�*�%�)�$�'�&�,�5�"�0��+�)�#�(�'�7�0�-�%�/�9�,�*�4�-�0�4�<��+��/�*�/�"�,�0�$�&� �7�+�"�&�7�%�5�%�5�$�1�3�.�"�*�/�*�*�?�>�6�*�&�.�"�1�E�)�,�9�8�1�,�7�5�1� �,�0�3�/�$�9�%�#�*�3��#�+�&�,�/�'�*�'�,�'��'�&�&�;�;�(�+�'�&�,�&�3�/�1�-�)�#�)�(�$�6�3�-�B�4�'�.�;�(�#�%�$�!�+�/�-�.�+�'�'�'�-�1�%� �0�;�>�%�1�$� �'�'�*�8�)�'�2�,�:�0�+�.�.�+�(�)�>�.�/�%�)�1�/�+�6�*�%�"�(�6�#�&�7�/�!�8�/�/�3�)�*�)�2�,�,�+�/�,�%�+�4�(�1�'�:�(�9�/�5�*�%�-�%�)�&�6�'�'�(�/�-�5�/� �2�&�%�.�/�-�)�-�'�$�9�/�(�5�*�;�-�1�1�5�.�4�4�4�.�-�.�1��#�9�,�-�0�5�D�9�3�0�/�1�3�$�-�.�6�4�*�0�.�6�/�,�)�2�0�B�9�/�3�E�W�T�m�������Z����O�J�`�&���k��偡���j�J�D�>�7�?�;�1�;�<�+�@�:�*�4�(�)�3�+�'�#�!�-�0�+�-�%�!�5�9�)�4�7�(�*�2�$�.�0�0�3�/�-�+�$�,�9�4�9�1�2�(�%�%�(�:�0�!�,�0�;�2�2�5�1�/�'�%�ۀՀ׀׀׀׀ڀـҀĀـրـ؀ր׀ЀԀ؀ЀՀր׀ց-�<�-�(�.�9�$��,�4�-�9�#�1�.�0�-�:�"�'�&�9�,�8�2�2�,�9�%�&�3�/�&�7��&�!�;�,�%�%�(�!�4�:�#�6�.�-�8�(�?�2�5�/�8�>�1�3�)�*�/�,�'�&�0�)�0�$�(�!�*�7�'�1�1�*�"�+�,�"�-�+�9�*�+�1�2�.�3�"�+�'�3�)�8�)�/�#�'�$�0�$�)�2�/�3�&�5�&�)�'��1�4�5�-�%�)��:�+�,�3��-�+�)�9�#�/�.�9�3�%�;�5�'�'�<�4�3�6�'�&�8�2��4�.�.�#�8�$�2�.�,�+�)�1�%�/�$�0�*�:�.�*�.�/�-�1�4�'�*�2�'�#�*�+�8�3�6�/�*�(�-�*�-�.�'�2�)�/�'�0�!�*�)�/�"�+�'�&�-�+�,�)�/�)�-�+�3�5�0�:�,�1�2�'�5�-�5�;�)�/�#�#��"�"�.�"�#�1�-�-�#�*�'�"�+�"�4�2�*�7�,�3�&�"�0�$�$�,�/�*�3�*�$�+�"�%�)� �0�2�(�.�%�*�0�2�"�#�2�-�.�,�(�1�0�'�;�(�&�0�$�%�;�+�-�5�'�%�+�)�%�3�+�,�)�4�1�,�-�4�'�1�1�!�)�5�*� �+�!�&�)�/�-�#�9�7�)�$�'�-�-�7�/�/�/�-�-�5�(�$�+�+�/�-�(�#�*�+�#�/�+�/�5�&�'�3�(��+�%�)�1�-�5�,�.�2�-�4�9�2�/�(�&�!�+�,�+�%�&�.�)�)�5�/�/�,��-��$�)�0�?��0�+�"�+�.�'�-�1�5�,�'�)�-�/�.�,�4�:�2�,�9��*��6�-�3�?�I�F�R�P�Y�����ǂ�_��K�ڄ�Q����n�߂e������a�S�C�S�A�7�-�3�:�6�/�/�3�(�+�0�(�'�9�$�/�/�3�'�2�(�/�&�)�"�/�&�,�5�(�*�*�,�-�'�&�4�#�&�6�/�(�>�0��/�7�4�#�3�0�/�)�6�0�-� �-�4��1�(�*�؀Ӏ݀ԀҀ؀؀Ӏ׀̀΀ـҀրـҀ؀؀րڀԀ׀πہ(�.�)�;�(�/�+�.�5�1�(�1�;�+�D�2�+�&�1�.�%�A�3�.�*�0�"�,�)�4�1�0�-�$�#�*�,�(�0�3��;�-�-�.�"�-�;�,��,�/�%�&�$�.�2�2�-�-�9�2�-�*�#�-�:�&�,�8��/�*�5�)�!�"�5�+�)�-�#�*�0�,�2�8�+�7�+�,�$�$�5�6�1��!�'� �)�#�+�'�/�/�2�$�+�-�,�%�/�,�5�2��&�)�/�4�+�,�D�-�-�(�0�-�8�,�.�)�6�/�3�'�*�"�2� �"�,�4�-�-�(�2�.�0�-�*�1�%�;�)�%�1�,�+�8�#�'�0�4�9�3�-�1�-�%�.�$�)�/�5�%�(�%�-�&�$�)�1�/�-��0�'�0�)�1�6�2�-�'�)�-�+�%�3�0�(�(�)�!�#�,�&�-�/�%�.�*�-�&�!�(�+�&��3�4�%�,�1�)��.�*�+�'�&�)�/�0�'�5�)�+�+�5�'�"�"�*�-�%�9�3�*�&�(�'�/��+�4�&�,�0�!�(�,�/�-�(�)�'�4�'�$�$�5�/�)�%�+�1�+�2�/��+�7�4�$�$�+�,�'�.�;�6�6�+��5�&�/� �0��)�*�,�)�"�9�$�5�*�(�0�#�"�)�%�'�/�7�*��3�+�'�>�+�5�1�3�;�2�,�9��,�-��'�-�3�'�7�:�2�+�6�<�.�2�,�8�+�&�*�/��0�)� �0�#�*�0�(�,�.�1��&�)�-�-�*�+�"�.�*�4�!�0�&�!�)�<�$�+�5�(��0�9�/�'�4�9�=�=�#� �*�8�8�;�*�3�B�4�-�1�/�%�+�)�/�3�9�.�4�>�H�=�F�d�|������:���6�ۄz���S�� �[���;�ց��p�e�W�I�;�J�A�.�7�;�3�.�!�,�+�'�,�$�@�2�-�1�+�.�)�)�3�0�>�-�7�/�5�)�5�'�2�,�0�)�2�/�)�2�"�-�1�%�J�1�+�.�'�-�-�"�4�*�1�"�3�+�(�4�2�3�3�-�ր΀ҀҀـՀրҀ΀ɀ΀ҀӀـ؀ـԀҀӀӀ׀րڀց+�/�5�%�1�'�5�3�2�*�,�(�/�7�$�/�'�+�4�0� �-�1�1�0�'�>�.�!�4�(�8�4�7�-�0�/�'�:�0��5�I�%�)�)�)�9�/�4�)�6�+�:�5�+�&�&�/�0�(�*�&�/�/�'�0�'�%�!�%�?�3�!�)�3�6�0�9�1�A�"�3�+�:�-�<�"�,�-�'�&�)�#�'�.�.�,�8��"�$�.�0�'�8�1�,�=�2�%�)�%�.� �3�*�/�%�-�'�4�0�8�'�0�.��.�)� �.�3�)�+�B�5�2�%�%�0�1�9�0�(�6�5�*�5�0�/�2�.�'��)�/�%�#�.�5�%�(�0�2�+�'�(�"�)�.�2�4�!�&�(�,�.�5�&�&�5�/�-�<�4�,�8�&�!�,�*�,�>�<�2�0�'�9�+�-�6�*�)�1�.�2�5�8�3�0�2�.�$�.�9�-�)�1�/�(�,�%�)�.�)�(�.�"�,�5�6�(�,�;�)�0�.�+�1�(�#�.�1�+� �)�5�6�)�3�%�*�'�*�'�4�9�1�%�%�2�$�/�/�#�-�+�0�/�/�&�$�(�'�.�'�%�&�2��8�*�*�)�.��0�/�"�(�%�&�(�'�*�7�)�-�%�3�,�2�#�&�+�,�%�)�-�/�7�-�5�+�-�3�1�5�/�$�(�*�*�$�*�-�-�1�,�:�1�9�(��(�%�.�)�0�)�/�.�*�#�;�0�5�'�+�0�+�=�!�/�%�7�;�5�(�,�7�'�)�-�/�+�:�'�,�(��1�/�(�'�;�.�3�5�1�4�(�&�/�"�/�.�-�(�0�2�.�&�8�(�'��(�-�4�-��4�$�/�1�:�,�'�/�*�4�'�1�.�-�2�8�5�-�L�:�R�c�t���Ƃ�������_��������%�m����W������b�d�M�G�/�E�'�7�1�)�8�:�'�?�-�7�(�3�1�6�-�/�)�.�%�9�2�/�#�*�7�*�0�&�)�8�=�9�3�$�,�)�$�*�8�1�2�(�3�-�0�$�)�&��+�/�0�9�)�$�)�'�%�-�)�-�Հڀрр׀׀Ҁ؀݀ÀԀ׀Ѐրڀ׀׀׀Ҁـ؀Հ؀ځ'�"�3�5�,�'�=�/�1�-�&�7�6�8�5�-�7�1�3�)�0�.�2�?�)�'�0�*�)�0�3�5�-�5�%�(�'�.�*�/�9�/�-�-�'�#�5�&�+�*�/�0�(�-�%�-�5�3�1�=�'�9�+�)�'�%�3�$�!�!�/�&�0�3�&�$�(�,�)�/�(�+�$�)�*�3�1�)�/�0�3�:�*�.�+�,�8�'��'�-�2�?�%�+�4�$�,�0�$�7�+�-�'�3�1�#�*�9�.�)�-�'�+�/�8�*�F�"�4�%�(�1�/�-�'�6�"�2�)�2�)�2�0�$�.�2�(�4�/�&�(�*�(�2�+� �<�+�*�'�,�+�*�)�2�'�5�0�3�$�8�,�+�(�9�9�-�%�2�3�1�&�5�/�6�1�+�/�)�5�+�)�+�9�&�1�4�,�0�/�%�)�6�.�2�#�/�4�%�2�3�)�.�-�,�0�,�)�0�9�+��.�*�+�#�.�4��+�;�.�,�%��%�+�+�-�1�+�5�$�*�%� � �+�4�"�)�-�/�1�$�/�'�5�,�'�(�=�3� �%�7�1�:�2�;�+�#�/�0�$�*�)��+�1�-�'�/�$�.�5�/�'�/�)�&�3�*�$�&�,�4�%�,�5�2�*�0�%��+�'�-�4�7�5�0�5�"�/�)�0�9�,��<�0�1�3�/��1��/�6�8�'�0�4�/�%�6�-�1�%�,�3�/�8�)�/�#�'�-��"�(��'�:�'�%�*�,� �0�'�7�0�+�5�.�.��.�#�/��6�!�2�,� �%�)�/�-�(�+�*�'�/�<�#�6�%�#�%�/�1�&�0�5�1�<�,�-�1�-�&�%�.�+�,�(�3�@�6�4�0�2�7�.�6�2�E�E�e�^�v���ׂ,���=�턴�[��'�����������v�����}�i�W�S�Q�J�B�3�0�E�;�.�3�1�*�!�-�>�4�0�0�'�/�%�,�+�+�)�)�"�0�-�"�*�'�(�0�*�7�'�4�&�)�0�.�/�;�+�.�/�5�/�6�,�*�0�+�.�=�.�0�7�6�)�/�4�/��րրӀԀӀ׀Հրրƀـ׀ڀր؀Ԁ܀ր׀πրڀԀ؁0�1�*�1�6�+�"�'�%�5�3�6�-�2�4�6�6�;�7�+�<�+�2�4�2�'�+�(�/�@�'��&�)�3�!�5�3�;�7�1�0�/�1�,�(�5�)�:��0�1�2�$�0�#�+�(��$�=��"�9�'�/�,�-�%�-�1�:��#�"�#�+�&�&�&�*�'�@�%�,��.� �.�'�>�)� �$�5�,�+�2�4�'�4�6�*�,�(�$�.�%�)�2�,�.�)�1�#�4�3�+�*�&��)�6� �-�4�/��+�+��#�'�6�6�"�'�"�(�3�6�7�)�3��0�-�,�-�/�*�3�8�5�)�0�*�>�8�-�/�%�;�+�)�?�!�+�&�/�*�)�,�3�*�5�(�'�*�"�/�$�(�1�)�2�7�-�/�4�&�#�'�9�4�0�'�.�,�*��1�0�$��&�8�!�.�6�*�-�'�1�&��*�%�.�.�1�/�.�2��4�+�#�0�%��2�+�0�3�6�$�3�.�-�&�%�&�3�-�4��'�#�"���-�:�+�6�3�%�3�,�"�5�1�+�+�#�%�1�&�+�&�)�0�=�'�-�.�,�)�/�%�#�(�8��(�4�7�%��1�+�+�2�/�4�=�5�2�'�6�1�"�/�$�-�5�-�4�%�9�+�9�(�)�*�*�-�8�2�-� �1�-�:�6�,�+�.�)�0�-�.��(�)�*�3�#�-�-�4�.�.�,�0�0�(�/�(�4�'�7�,�/�*�*�4�!��/�@�-�.�9�+�*�'�(�'�*�1�)�4�6�*�3�*�+�%�7�&�'�,�,�-�)�)�+�*�-�/�'�)��-�'�'�4�/�1�)�+�4�2�1�+�%�6�+�'�9�-�,�9�=�2�4�,�K�4�M�N�K�Z�����������\��v��z��E����`�������q�[�J�J�<�A�;�9�.�2�-�+�:�1�(�5�5�9�3�3�$�-�(�2�+�7�(�#�#�/�.�.�.� �'�/�4�'�;�+�)�&�1�0�5�;�3�+�/�*��&�2�7�-�9��'�A�.�0�%�2�4�&�7�(�ڀ݀؀րҀӀՀրրʀրՀրՀڀՀӀ׀Ӏ׀Հ׀؀؁/�+�0�(�(�/�)�-�/�?�,�.�8�9�5�/�4�$�'�$�)�?�.�%�0�)�$�&�"�-�,�)�-�-�+�)�.�-�1�6�,�.�#�4�1�0�$�2�/�>�#�3�:�*�(�6�4�:�7�3��3��$�5�%�B�%�4�'�.�8�7�!�+�(�+�9�(�<�7�+�7�*�$�'�4�.�0�2�&�(�,��0�+�$�/�-�+�9�-�6�6�.�%�*��&�4�-�:�-�$�/�(�,�6�2�/�-�*�,�+��"��$�/�.�-�,�0�%�3�8� �5�3�%�'�+�7��1�1�)�,�'�8�-�-�!�.�.�)�0�#��)�2�-�3�*�&�2�)�'�2�8�&�&�+�7�*�+�/�%�'�/�/�6�,�0�(�$�+�-�%�*�,�'�&�(�3�*�'�#�5�$�/�!�+��9�&�'�-�+�)�,�-�-�&�1�,�*�+�?�+�G�2���/�9�3��5�'�3�(�"�,�'�-�6�'�(�<�+�,�+�%�+�%�4�2�*�"�+�%��5�2�/�/�%�.�9�5�7�%�)�*�0�0�&� �7�;�.�<��7�/�(�'�9�#�,�(�"�<�$�,�2�"�-�*�5�.�#�3�3�"�1�*�:�$�'�=�'�"�!�0�/�2�%�2�3�1�(�.�,�4�6�.�5�1�0�/�7�6�/�-�*�7�0��&�0�#�3�:��;�;�*�"�"�#�%�3�&�-�-�'�1�+�(�0�*�4�5�.�+�-�3�4�1�-�;�0�0�0�)�/�*�$�(�,�/�1�/�4� �4�%�.�0�/�.�+�-�4�,�8�5�,�+�*�/�%�9�%�?�$�"�0�)�-�-�2�,�1�/�-�%�;�1�6�/�;�:�<�3�6�(�8�P�7�O�R�]�w�����0�e���m��n�����j��=���S�끹�w�e�e�G�8�9�G�1�0�C��7�1�?�0�6�7�1�;�)�@�#�(�-�(�6�7�5�1�8�+�2�-�(�3�5�'�.�%�5�,�*�-�9�#�3�;�/�,�*�/�.�@�7�1�6�0�'�%�9�=�8�A�'�/�"�-��ӀԀـ׀րԀـӀӀÀրՀ؀׀ԀӀـԀրӀ׀ՀԀف+�+�*��-�.��/�5�0�&�'�1�-�-�*�+�6�,�(�+�1�6�)�1�2�!��1�+�$�)�1�3�/�-�2�6�'�7�0�8�5�)�,�.�+�1�!�%�&�0�0�'�7�0�2�E�1�+�.�5�+�,�0�9�-���3�'�2�'�2�!�0�&�8�'�3�!�/�)�$�-� �7�$�6�)�5�0�+�!�)�0�1�'�&�*�2�2�:�/�'�0�2�/��,�+�3�)�'�%�1�(�1�'��*�$�/�.�/�1�+�+�$�/�(�<��%�,�:�1��/�)�.�%�'�*� �4�3�-�,�*�0�$�;�.�-�+�=�/�3�,�'�,�4�*�&�&�*�!�(��*�*�1�6�*�/�*�)�,�7�3�#�&�5�/�&�0�%�%�9�.�(��(�+�2�'� �>�)�7�/�)�.�.��'�&�1�(�5�-�1�9�3�>�,�%�/�,�,�5� �"�'�+�"�*�+�'�*�'�;�*�5�7�3�&�+�/�/�2�(�-�+�"� �/�4�&�+�2�,��8�-�0�.�5�5�7�4�)�6��#�6�3�$�'�!�4�2�5�=�2��/�4�!�5�2�4�0�'�$�)�+�+�,��&�'�2�-� �2�)�,�)�(�=�"�-��/�&�5�/�!�4�-�-�!�*�:�7�-�*�7�7�H��,�/�*�+�4�'�.�6�/�1�(�.�5�,�*�"�"�0�5�0�,�*�3�1�/�!�'�3�,�!�7�&�(�+�+�1�-�*�#�3� �4�6�)�.�(�+�9�,�-�*�7�2�3�/�7�$�0�0�"�&�:�/��'�*�;�8�<�-�8�/�$�+�5�)�1�.�-�%�,�$�&�1�)�%�/�&�)�-� �,�3�.�6�6�<�&�A�O�N�n�|������2����O����� �/���R��q�1�ˁ����d�N�H�4�B�5�=�-�9�2�%�-�>�*�3�/�=�5�+�;�5�-�-�6�-�2�'��6�+�/�1�3�1�1�+�4�&�/�+�-�)�3�6�&��(�,�3�0�-�/�9�(�/�.�*�(�:�-�2�$�$�0�1�(�,�ՀրԀۀրՀրҀԀƀۀԀـՀՀ׀߀׀݀ՀЀ׀Ѐ؁3�*�)�0�'�0�4�9�+�-�9�-�9�)�/�,�-�+�)�)�*�6�&�:�;�3�2�3�-�0�3�)�&�2�,�'�)�)�%�+�!�6��0�1�9�%�3�:�,�1�'�(�:�.�6�*�"�+�/�>�/�0�0�6�*��/�+�+�-�2�/�2�2�0�/�2�+�(�(�<�#�*�(�,�,�-� �&�)��-�(�/�3�)�+�2�9�4�/�%�%�-�+�)�9�5�+�$�!�6�;�)�'�#�/�1��,�.�.�1�/�=�)�*�/�-�#�%�&�1�#�+�(�8�2�6�1�/�'�)��7�.�-�*�,�#�/�*�4�:�*�8�'� �#�(�&�/�4�-�4�(�1�8�/�+�*�!�-�/�#�,�-�.�"�%�:��-�+�:�:�5�1�2�(�!�0�,�2�%�/�,�2�&� �,�)�0�/��>�*�(�9�3�)�%�5�&�(�/�*�(�/�1�.�2�!�&�5�%�$�1�9��+�!�,�.�-�7�1�'�)�-��*�0�&�+�3�/�(�%�4�&�1�7�.�-�*�"�#�4�/�+�/�(�'�.�4�4�:�7�:�%�-�#��0�/��/�4�2��/�3�-�)�+�/�(�%�,�-�.�+�*�+�6�&�$�2�/�6��.�4�-�4�6�@�4�'�5�(�2�-�.��=�:�E�,�6�;�3�2�3�5�3�0�+�)�*�%�3�)�.�7�,�/�)�.�:�/�2�&�/�1�E�)�3�7�2�+�-�"�,�3�1�7�(�)�'�&�'�6�)�+�+�0�)�&�,�-�+�#�3�.�/�*�"�)�3�%�&�5��1�'�0�1�7��4�)�+�"�B�(�)�0�*�/�0�*�&�,�.�!�-�;�2�'�4�%�+�$�3�,�>�4�9�C�@�7�J�v�k���ҁ��F�����)�)�B�?�����h� �������p�c�G�M�@�N�A�7�/�.�&�:�*�+�.�/�2�5�/�5�"�3�*�&�,�-�/�&�5�0�0�(�/�&�/�.�6�:�(�9�*�6�%�*�+�.�-�,�*�<�,�!�@�8�3�;�&�4�6�:�6�.�8�&�/�(�5�)�ـր׀ՀԀӀـԀҀŀԀրՀրҀҀ׀Հր׀Ԁ׀ڀ؁/� �5��3�7�)�5�5�#�1�8�<�0�B�-�/�6�0�:�/�,�2�-�2�4�3�7�(�*�9�)�*�5�1�/�7�'�(�"�.�(�3�?�*�%�(�$�(�.�3�+�.�/�2�:�*�.�:�.�5�!�.�!�*�*�4�+�4�"�'�)�'�,�-�&�5�4�+�1�-�*�2�%�)�/�-�2�0��3�/�)��-�0�5�*�(� �+�-�(�/�.�#�$�#�+�4�3�3�'�,�+�&�-�,�5�*�#�-�)�#�-�<�,��9�&�+�4�(�5�)�(�1�(�/�/�2�,�#�0�+�/�6�"�4�)�'�/�3�)�,�.��/�.�-�(�4�#�,�1�)�.�%�!�#�:�5�2�(�)�+�.�9�7�2��'�&�-�%�*�,�%�-�3�,�1�"�$�4�&�@�-�/�"� �/�/��2�+�,�1�/�5�.�3�-�/�'�.�-�3�%�&�+�(�6�4�+�+�6�3�1�9�.�'�2�/�/�&�9�*�,�+� �-�D�&�+�)�(�:�,�4�"�B�/�"�&�'�+�*��=�>�'�,�(��5�3�)�'�2�'�5�4�.�'�&�+�(�2�/�)�4�?�&�#�0�*�&�6�6�(�.�!�2�2�)�1�)�+�1�8�5�7�(�2�"�1�,�8�-�*�&�7�.�2�A�;�C�Q�?�8�6�9�+�*�@�,�/�#�8�/�(�:�4�.�.�.�,�%�:�0�%�)�2�#�9�8�+�1�*��1�"�,�8�(�/�*�6�(�/�.�'�'�,�)�'�&�-�1�/�)�*�.�-�*�&�/�)�.�6�0�5�/�*�2��&�0�-�&�0�6�+�/�*�$�7�-�:�-�4�0�4�+�5�7�)�0�)�7�)�+�/�'�4�'�2�1�/�*�?�F�.�[�P�b�����ʁ��+�M���������r�c���ځǁ��z�j�P�K�:�@�;�2�4�9�:�-�C�.�0�)�3�8�5�-�5�?�,�.�2�1���*�:�*��%�*�1�/��3�/�'�1�+�+�/�2�9�%�-�2�+�/�'�2�*�4�-�5�6�6�(�?�8�3�(�8�1�1�!�'�׀ـҀ׀׀ڀ؀؀ՀŀЀӀ؀ҀڀԀԀ׀π݀ր؀ڀׁ1�2�+�#�:�7�,�'�9�*�5�3�,�7�2�-�$�2�+�7�7�-�5�6�,�A�)�)�4�9�6�%�$�3�5�*�'��8�*�;�5�0�0�3�7�#�-�5��/�-�"�8�.�%�.�2�5�5�*�)�+��.�.��)�+�'�9�6�� �0�-�"�-�,� �0�-�'�+�%�0�"�3�0�8�.�/�%�-�1�"�0�6�(�,�/�8�1�@�;�3�3�-�'�.�/�!�3�*�4�/�,�+�4�)�)�$�.�,�*�2�#�4�/�0�(�*�2�.�'�-�8�&�3�,�-�1�-�&�-�'�%�(�/��0�'�&�/�1�4�(�<�2�'�6�+�5�2�)�6�)�)�(�"� �:�-�&�8�$�,�3�%�4�(�'�+�)�'�.�5�-�#� �*�.�)�#�3�%�!�"�2�0�-�(�'�.�+�3�,�=�$�0�0�-�,�&�)�3�&�,�4�2�1�7�+�)�)�)�+��2�/�(�.�,�D�$�$�&� �%�$�;�%�.�'�5�:�3�3�(�+�+�$�6�)�*�=�8�9�/�*�#�4�)���#�!�-�0�=��.�'�#��,�(�0�+�/�/�(�*�*�/�/�5�0�2�+�.�(�,�+�*�4�5�.�5�1�#�0�<�0�&�-�+�"�(�-�3�.�0�1�2�:�7�D�E�1�>�=�/�9�1�-�2�3�-�%�(�*�7�.�5��4�,�$�8�(�/�-�/�4�)�+�!�+�.�!�0�7�2�&��+�+�0�2�2�4�?�+��*�/�+�*�5�5�4��/�.�1�*�!�/�0�'�'�%�/�'�*�)�%�-�&�0�0�#�+�7�/�-�+�'�.�'�,�-�+�,��-�2�3�)�4�.�.�4�8�,�0�0�$�7�<�3�5�L�A�I�W�i�����ā�ڂ���;���Ձ������p�r�^�Q�E�D�:�7�4�>�6�.�7�.�;�)�-�.�*�'�-�&�5�)�:�,�/�2�#�-�=�0��/�(�/�/�7�'�,�#�%�1�2�#�,�3�+�#�8�$�9�.�7�-�/�)�!�1�!�-�4�%�.�:�.�1�2�0�րրՀۀЀ؀ۀրـȀրр؀ԀӀԀӀ׀рـր׀Հׁ3�#�5�0�4�6�.�"�$�9�(�2�6�3�'�(�0�:�9�#�)�,�6�.�)�1�0�=�2�0�.�0�&�#�9�1�2�6�2�/�"�-�0�,�9�.�(�8�.�-�;�/�4�(�=�6�5�5�2�%�-�'�+�'�6�1�)��/�*�/�%�1�+�1�%�3�,�:�1�5�/�4�8�*�:�(�/�1�+�7�1�+�1�-�.�1�%�+�-�(�5�+�)�$�.�/�4��%�1�4�+�+�3�6�!�)� �<�*�,�%��2�5�9�2�,� �4�/�'��,�3�2�"�0�%�,�#�5�,�-�(�%�/�2�2�/�1�!�"�/�'�/�-�/�6�'�!�:�/�(� �-�,�6�#�'�6�*�8�.�,�7�%�(�*�@�"�-�,�%�?��+�#�&�1�*�&�0�-�2�6�1��=� �2�+�)�$�-�*� �3�+�.�(�'�+�(�)�4�+�'�+�.�0�-�/�"�:�"�'�.�2�)�$�'�0��/�0�"�,�-�)��2�)�=�(�%�#�(�*�2�(�(�$�'�!�-�!�9�5�+�%�!�7�-�#�-�2�� �-�1�!�;�+�/�*�'�9�(�A�'�0�'�/�2�4�;�1�)�&�+�4�*�%�(�'�1�'�+�,�-�*�:�-�'�%�-�'�*�2�(�7�'�8�@�?�3�2�>�<�3�E�2�1�1�2�)�*�/�)�*�6�(�<�-�;�!�0�,�3�/�0�.�6�2�'�3�&�<��3�0�6�/��+�"�"�#�'�4�2�)�)�5�3�(�7�<�(�5�/�7�$�3�)�+�'�'�+�C�2�+�'�3�+�-�&�%��6�:�5�8�+�,�:�@�,�-�)�(�2�2�3�6�%��)�*�0�;�/�>�:�/�/�9�0�,�:�L�7�<�O�R�R�����������ρ؁��ā��������w�l�h�R�J�?�:�<�:�*�6�?�2�,�(�-�-��)�&�2�+�;�-�(�1�-�5��-�+�3�)�'�/��<�.�2�*�2�+�/�%�1�)�;�*�.�-�,�!�7�8�/�/�,�2�?�/�3�$�/�2�/�0�5�/�8�,�'�Ԁ׀Հрր؀׀Ҁ׀��ҀڀӀ؀׀׀ҀҀڀ΀ڀӀ؀ρ"�1�0�1�3�5�>�!�@�+�4�0�C�%�5�'�7�.�>�.�5�-�1�6�/�/�;�<�-�*�(�%�5�6�5�3�*�.�*�2�1�+�6�2�9�(�%�1�.�)�5�2�0�'�)�5�)�$�-�(�)�-�6�'�+�"�1�+�.�.�'�6�'�#�5�4�/�4�1�5�*�2�*�'�(�6�.�>�.�&�2�+�/�4�#�/�+�)�;�&�!�0�9�9�7�0�4�%�"�.�2�-�2�4�%�3�#�2�3�2�)�8�5�#�3�.�5�+�6�3�/�#�/�(�-�*��.��%��*�/�'�+�%�3�*�4�9�(�.�*�#�-�0�1�1�-�*�*�-�/�!�#�#�8�+�!�0�0�*��'�%�,�<�3�#� ��-�.�.�&�/�1�)�*�#�*�)�6�*�6�-�8�(�:�1�-�,�.�:�+�8�'�"�2�*�1�'�5�'�1�:� �&�+�1�4�,�*�-�-�0�-�-�!�C�%�+�/�5�/�8�'�-�)�7�,�1�.�&�'�)�,�-�'��0�/� �#�-�(�+�'�)�A�"�;�.�3��'�+�*�/�/�1�.�3�7�7�.�*�*�7�(�&�'�4�0�1�-�0�-�8�#�)�*�3�>�3�,�-�%�*�,�%�*�.�0�.�6�,�1�+�*�5�6�7�+�.�8�9�3�/�/�>�1�4�#�9�$�0�5�!�+�,�-�,��)�%��D�5�,�.�9�+�6�0�,�.�+�1�=�-�2��1�'�5�%�.�(�/�/�+�&�*�,�*�+�0�>��+�,�1�%�2�7�6�2�9�"�9�7�-�'�-�*�.�*�'�!��+�+��0�1�*�*�&�%�4�.�+�1�%�1�2�:�@�?�&��5�'�9�7�,�1�7�4�+�)�.�7�A�:�B�D�_�\�{�������������������p�}�f�[�J�?�A�F�.�=�*�=�3�1�$�E�3�7�6�/�3�1�&�9�#�*�<�2�*�0�+�7�#�&�*�5�'��7�1�,�/�&��5�/�%�4�3�"�'�/�)�+�-�-�#�&�*�4�)�)�/�8�6�&�2�1�/�2�5�2�ր׀ӀӀ׀ՀӀ؀ڀƀ׀ՀՀՀրԀڀՀ׀րـԀ׀ف5�,�2�7�(�4�0�1�)�4�5�-�(�6�)�9�6�6�5�%�+�'�:�-�A�9�%��+�=�1�2�*�'�-�"�&�'�)�-�+�,�5�.�5�'�&�4�+�,�1�6�2�&�+��1�$�%�3�,�$�4�,�5�0�%�+�8�3�3�'�1�,�1�.�1�)��/�,�.�3�%�7�1�$�&�*�2�8�-�2�.�0�6�/�'�0�#�)�,�5�$�:�,�'�*�-�/�>�0�+�-��.�-�7�>�*�)�$�+�%�(�3�'�&�� �0�/�(�)�4�)�#�,�+�#�7�&�,�$�,�'�=�'�6�&�+�&�/�'�/�5�-�!�'�3�.�2�8�/�0�9�5�7�)�#�+�+�)�)�(�-�:�1�2�/�.�6�&�2�1�1�%�(�/�(�1�+�!�-�'��-�6�*��.�#�5�3�!�*�-�/�(�)� �%�/�/�/�7�'�#�'�,�)�,�%�2�-�1�'�5�7�'�-�1� �3�.�4�*�2�(�-�0�!�(�/�-�0�*�#�(�(�'�,�*�/�.�.�4�5�&�(�)� �)�7�+�.�+�0�8�)�6�5�*�'�.�6�/�3�&�2�.�%�/�,�0�)�,�%�*�7�+�3�(�'�1�0�4�<�5�/�+�#�!�.�.�,�%� �0�/�4� �4�/�3�4�+�8�,�2�>�6�1�)�A�$�=�0�&�-�-�*�9�)�,�3�.�5�.�/�/�%��.�+�%�5�-�#�4�(�(�/�/�(�/�/�5�3�-�*�!�/�5�.�&�!�&�'�,�5�%�,�-�$�(�,�7��(�5�8��'�%�(�'�(�5�%�&�4�*�-�2�%�+�'�8�(�)�?�7�/�3�0�9�.�1�4�(�$�,�0�4��0�/�6�8�<�2�5�P�2�@�<�D�G�Q�i�q�s�x�o���y�r�q�V�Y�U�R�E�P�?�7�5�1�;�;�1�9�:�"�/�&�"�0�:�)�$�6�;�3�%�1�+�0�,�+�4�6�(�7�,�0�+�-�)�+�3�-�%�%�>�)�.�.�4�,�(�+�1��'�$�'�/�/�)�+�7�/�)�1�/�!�?�0�+�*�ՀԀ׀΀Ԁ؀؀րրǀ׀ҀـրҀــԀԀԀՀҀրց-�3�3�"�4�'�.�4�0�8�.�2��(�<�/�0�(�)�+�)�6�"�.�6�4�/�%�+�3�6�/�1�/�0�3�1�7�6�(�+�2�<�,�/�)�@�/�4�3�3�.�:�6�$�3�<�.�'�-�,�*�*�'�*�0�8�8�0�1�%�.�4�;�.�)�"�*�*�4�,�/�$�+�0�.�:�+�5�.�)�&�+�,�1�/�1�-�2�(�0�'�*�(�%�)�8�2�0�*�%�2�*�.�%�5�&�2�2�-�0�1��8�*�$��,�,� �=�/�0�'�.�/�0�-�$�+�&�)�+�$�-�%�-�(�5�3�%�3�0�/�/�*�/�3�#�-�'�+�2�4�8�#� �1�6�*�1�6�.��.�-�:� �5�1�:�3�0�8�+�1�1�/�$�+�0�1�"�*�/�5�"�,�,�/�&�#��1�8�)�.�1�1�6�'�2�+�6�%�%�-�/�)�'�2�-�2�0�,�(�8�.�"�+�(�;�!�5��/�0��0��-�*�-�6�2�?�3�-�-�-�(�'�'�%�+�"�/�0�+�+�A�*�$�5�/�'�7�/�,�:�0�&�;�*��*�&�-�.�)�*�3�0�)�4�2�4� �-�;�'�*�)�&�,�&�,�-�7�8�/� �*�*�(�5�5�7�0�7�0�$�,�:�8�'�0�/�/�3�?�,�1�'�2�2�/�/�0�$�6�2�(�/�$�6��%�&�#�#�6�%�*�5�6�9�7�)�&�9�3�0�%�+�*�0�#�$�7�'�4�"�#�+�/�0�.�+�7�$�)�2�&�*�/�0�/�-�)�,�3�%�$�-�(�*�;�-��5�(�4�/�#�/�4�/��-�,�7�0�)�#�)�5�0�>�.�*�.�:�1�1�+�4�8�0�.�/�+�;�4�6�=�?�Q�C�C�_�V�\�Y�\�]�`�k�n�T�Y�L�?�9�Q�B�'�/�6�>�*�9�%�-�.�1�,�'�6�)�%�9�1�4�8�+��.�.�9�>�7�7�*�)�6�2�$�'�(�'�;�"�6��&�+�D�2�0�*�1�'�8�8�,�1�$�)�0�3�7�%�7�-�+�*�)�1�2�,�3�րۀ׀׀܀ڀۀԀ׀ÀԀ׀݀Ԁ؀׀ՀӀπۀրրـց%�/�*�,�5�;�.�%�4��"�&�)�+�/�/�6�1�(�2�-�:�*�(�%�/�3�+�B�%�6�;�A�0�%�9�0�0�1�-�,�&�0� �1�/�2�/�"�2� �.�(�1�(�-�3�6�,�5�.�0�%�0�,��A�.�0�*�%�&�1�/�"�7�&�<�3�2�8�1�&�*�-�,�/�*�,�+�*�%�'�4�1�3�)�7�/�(�6�"�3�6�/�'�!�1�/�2�,�:�)�)�-�/�,�/�5�0�"�.�)��-�1�.�-�/�0�1��/�(�(�1�%��%�/�"�,�-�1�2��(�0�#�,�-�(�2�5�)�'��3�'�8�-�!�+�5�+�-�$�0�.�'�&�,�3�1�/�.��,�0�1�4� �#�+�$��-�%�3�7��/�&�0�.�!�,�*�1�&�3�2�%�$�%�7�2�-�.�*�0�/�1�3�%�'�*�1�)�)�(�)�2�*�'�)�0�.�+�9�5�1�%�!�6�!�;�4�!�*�#�!�6�2�7�7�;�%�9�4�*�-�'�+�8�)�-�1�+�6�/�-� �4�,��'�)�.�(�-�4�(�=�>�1�6�#�&�7�:�#�3�3�(�+�/�+�+�,�+�+�1�+�1�-�1�&�*�)�/�*�/�5�#�%�(�(�3�E�>�/�.�(�2�.�)�9�"�+�*�2�1�-�+� �.�*�,�#�-�-�-�%�9�5� �0�3� �.�+�/�4�)�+�+�$�0�+�-�8�7�+�"�4�,�*�%�2�*�-�7��2�/�;�,�6�)�.�9�'�#�0�.�2�.�'�'�5�+�'�,�(�%�.�+�/�/�'�*�+�-�+�1�,�'�8�(�1�%�1�-�*�)�4�+�-�.�!�1�/�.�+�&�=��%�!��0�/�?�1�=�I�:�R�Q�L�C�?�I�Z�_�Y�\�R�\�M�J�<�9�>�)�K�?�@�2�9�0�4�*�2�+�9�+�3�2�0�5�(�,�5�2�7�<�;�/�+�(�0�7�1�-�7�8�-�&�)�'�0�2�!�2�5�.�-�#�4�*�2�7�7�0�(�2�@�&�0�:�'�5�+�4�'�2�+�,�0�.�ـڀՀր׀Հ׀؀܀ƀ؀Ӏ׀ــ܀рր؀ҀҀۀԀԁ:�1�/�1�(�'�"�2�)�5�D�3�&�%�0�*�/�6�2��/�6�8�&�5�+�-�<�*�&�&�6�*�4�.�7�3�+�1�:�%�+�*�-�/�6�.�,�,�*�;� �3�5�%�*�4�7�3�'�+�5�)�'�0�'�'�0�-�-�-�0�#�/�'�9�3�)�/�/�/�%�6�0�$�2�.�)�3�%�0�'�/�0�/�+�,�+�-�*�2�,�'�*�.�%�*�(�0�7�*��%�1�%�-�'�6�2�/�2�*�-�*� �;�.�.�(�/�+�,�$�+�4�!�*�)�+�/�3�'�,�/�!�%�+�'�B�&�,�#�9�3�'�-�-�.�.�!�5�4�$�0�.�2�/�,�)�1�(�.�2�3�,�#�8�9�*�!�6�+�2�/�.�/�(�2�&�+�)�%�,�3�/�,�:�+��,�1�3�'�'�B�'�+�,�2��,�+�6�0�"�<�-��5�'�7�4�5�+�/�-�'�"�5�+�'�@�'�.�&� �*�4�,�5�-�4�.�)�>�8�+�*�7��0�/�/�'���=�'�!�+�!�2�1�!�3�-�+�.�/�9�.�.�+�-�&�$�(�)�'�5�#�'�#�*�=�5�*�-�+�.�&�'�9�3�!�$�*�)�%� �(�,�(�;�*�3�-�4�;�-�.�*�%�/�-�'�;�@�,�)�#�-�%�+�3�.�8�)�$�(� �)�0�)�2�+��2�%��3�/�*�)�=�(�%�0�4�0�+�/�.�0�(�&�*�+�.�&�.�*�.�*�*�*�;�/�9�+�/�.�'�=�&�)�*�,�0�6�2�7�*�5�!�&�+�-�3�1�#�2�*�+�%�6�,�#�*�"�/�#�*�/�1�"�&�4�/�0�#�3�1�4�4�0��3�+�0�.�3�4�<�5�=�*�C�/�2�I�>�D�C�S�=�<�J�S�L�7�E�>�<�F�7�9�1�?�3�0�$�1�#�1�9�0�-�/�5�7�4�7�,�3�,�*�5�)�1�<�1�(�6�*�5�0�,�>�:�3�1�-�+�-�/�5�!�)�6�7�/�'�0�=�*�7�*�7�,�1�C�7�*�2�8�,�,�+�/�#�/�؀Ӏ؀ڀԀԀԀҀՀǀ؀߀Ҁ׀׀ҀӀ׀؀ՀЀրՀ؁@�/�1�.�'�+�&�3�&�)�-�%�0�'�5�=�*�'�1�-�/�-�/�&�,�?�8�/�(�1�8�+�(�6�>�-�/�'�/�5�/�#�,�5�)�5�'�*�.�.�7�*�1�-�3�0�+�/�<�5�5�#�3�'�*�6�1�2�2�9�5�)�2�*�-�)�+�+�*�3��&�/�+�+�*�$�7�-�)�;�)�'�@�&�$�6�1�)�*��0�&�/�(�,�*�+�-�(�,�$�-�4�4�-�3�3�0�/�-�$�.�+�-�'�9�$�6�<�-�&�2�+�0�"�+�$�+�,�)�(�/�=�2�+�;� �(�(�+�#�0�+�)�7�2�3�#�'��-�/�*�&�9�.�(�*�)�&�+�!�&�#�*�(�/�6�#�,�1�9�=�(�%�4�"�#�,�"�+�%�&�'��&�/�.�&�'�.�(�%�2��!�%�0�-�+�;��*�9�'�=�3�7�3�.�2�)�-�(�+�.�+�5�(�!�1�5�9�9�)�7�2�;�)�&�4�6�%�+�"�4�+�5�6�*�8�#�5�A�+�)�$�+�6�,�9�/�6�/�(���0�.�:�3�$�-�/�5�6�-�#�*�*�1�*�9�.�/�#�)�&�'�!�)�5�2�,�.�+�%�/�2�5�:�/�7�1�%�(�-�%�.�!�#�*�0�$�+�+�.�6�+�,�9�$�?�*�&�,�*�>�)��4�+�C�*�*�+�,�*�,�-�,�0�)�1��9�+�3�-�&�$��'� �.� �*�'�3�#�3�*�3�*�&�5�)�,�#��0�-�'�/�6�.�5�"�0�5�+�-�#�2�%�1�4�%�!�$�4�(�1�&�-�9�%�-�)�+�%�(�.�/� �'�'�0�3�)�'�*�+�1�"��.�)��/�=�5�,�%�(�0�9�3�4�E�D�E�A�B�T�:�>�M�B�=�:�E�/�B�A�0�4�A�.�9�$�!�6�*�+�)�A�.�*�4�0�+�)�1�-�6�'�1�$�6�0�4�-�7�7�$�0�+�2�0�,�&�'�&� �@�-�.�1�1�.��4�3�'�1�1�(�*�.�*�0�6�8�2�1�0�/�1�7�0�׀րրԀـӀՀ؀׀ƀπր׀Ԁ؀ҀՀ׀ӀԀՀـՀҁ)�/�.�&�-�,�;�7�%�-�-�.��0�1�1�9�$��4�0�'�?�,�2�)�;�.�0�'�+��&�6�3�(�2�0�1�%�0�5�;�-�4�4�%�/�/�"��&�4�%�-�4�:�)�7�,�<�'�0�6�5�&�5�0�4�;�8�/�,�'�6�*�4�/�(�(�0�#�'�+�3�+�/�)�*�6�!�2�/�/�8�(�*�/�5�+�.�2�)�2�)�(�5�,�0�0�-�-�0��-�)�*�1�4�/�3�,�3�+�*�+�8�5�3�&�0�0�*�%�-�(�)�)�4�(�(�!�2�'�1�;�&�,�(� �7�/�:�4�:�3�!�2�'�.�/��0�0�,�0�!�5�&�'�+�+�A�%�%�+�7�1�5�"�%�!�%�,�%�'�)�/�+�"�0�.�7�#�*�4�/�/�-�(�<�2�A�2�"�3�.�(�(�2�0�6�0�1�1�"�/�3�4�0�-�.�-�%�7�-�'��'�(�!�7�*�/�1�;�)�/�1�(�'�2�4�2�#� �8�/�*�4�.�/�#�0�#�/�$�)�1�*�"�2�&�)�9�5�&�@�3�0�+�.�/�+�%�)�/�%�4�&�'�#�'�,�)�3� �$�.�-�<�$�=�0�)�2�*�&�'�)�9�#�*��&�(�%�'�1�5�+��2�/�,�4�-�%�3�#�-�.�)�'�-�6�,�"�,�,�&�)�'�)�8�1�-�,�'�+�%�4�$�5�+�1�6�*�,�4�7��@�#�'�,�7�)� �2�*�/�,�)�*�(�0�)�4�*�+�)�1�A�,�0�+�8�,��"�$�8�,�<�!�-�.�.�1�2�7�-�&�&�<�7�'�/�7�"�7�1�!�1�.�.�1�%�<�%�&�+�&�/��/�:�'�=�2�3�3�:�6�-�7�2�1�B�=�4�G�>�@�?�>�3�;�=�E�%�*�B�=�3�7�6�2�.�'�<�+�,�7�3�3�6��*�9�>�+�*�-�/�@�#�1�4�!�=�,�0�2�5�!�/�/�#�2�-�%�4�)�1�-�)�*�)�'�*�1�8�1�'�-�<�1�&�4�3�)�2�+�6��A�.�0�'�1�׀׀؀׀ӀۀҀ؀ڀĀҀ׀Հ؀рڀۀ؀݀ր؀׀׀Ӂ;�%�4�,�E�0�&�/�<�1�(�=�2�6�1�<�4�"�/�6�4�+�(�,�;�-�+�3�1�<�4�/�2�-�!�5�"�5�6�5�,�.�(�*�)�/�!�.�5�%�-�$�+��3�(�*�-�)�)�'�.�+�/�-�-�<�&�.�-�(�.�%�#�-�5�/�*�#�'�2�/�%�+�,��7�0��"�/�$�6�� �1�)�3�1�.�)�2�/�1�>�*�2�+�/�8�2�5�0�#�%�2�*�(�=�,�'�-�2� �'�"�)�1�/�6� �(�&�2�1�+�2�/�/�.�5�4��+��/�5�2�'�-�,�#�.�&�3�+�%��-�6�0�"�7�(�-�8�.�/�'�0�*�5�;�-�.�.�4�8�0�/�/�$�&�0� �3�/�5��'�'�(�0�,�%�!�1�-�/�=�1�0�)�1�'�8�(�#�(�#�-�4�)�<�'�)��3�%�-�1�)�4�)� �!��2�*�1�/�)�*�5�)�+�2�-�2�3�'�/�4�5�+�;�(�-�4�2�)�/�%�4�&�%�(�1�)�-�.�"�&�9�.�9�6�'�.�)�,�"�4�(�C�8�3�(�'�+�1�/�6�(�)�*�*�*�*�*�,�7�8�3�1�-�+�3�)�,�'�8�0�0�'�$��5�-�/�/�1�(�-�)�.�%�+�*�3�,�'�8�%�3�:�)�)�$�7�#�1�)�$�0�6�2�)�#�(�7�%�+�,�)�6�2�.�.�9�$�1�0�/�(�'�8�2�*�/�0�/�1�-�-�-�)�?�2�0�/�9�'�'�(�,�.�;�*�-�$�2�#�'�1�!�(�'�&�;�/�(�/�$�2�(�)�.�9�3�/�3�2��,�3�.��/�-�)�1�'�6�*�.�,�5�5�:�/�'�-�0�1�3�5�2�9�?�<�3�;�:�1�9�1�J�6�+�;�?�>�?�3�2�0�;�$�+�*�-�)�,�,�;�-�)�1�.�1�3�0�+�0�C�/�2�)�)�'�,�=�&�9�+�/�*�7�1�1�(�-�7�2�.�/�,�,�1�'�3�,�8�.�/�3�1�,�)�.�*�.�"�-�)�'�.�)�,�'�'�ڀ׀؀ҀҀԀՀ؀ԀŀԀ׀ՀӀ܀Հրڀۀ΀ՀԀـہ5�4�3�+�+�/��(�8�3�+�&�3�)�5�5�2�9�7�/�:�2�$�5�-�&�-�*�1�+�3�8�)�%�&� �5�6�6�-�+�2�8�3�<�#�0�2�'�.�-�#��+�7�'�)�-�,�.�4�,�9�5�)�'�-�-�)�(�,�.��'�2�&�,�&�<�-�.�<�0�8�7�'�%�*�&�2�1�<�(��3�&�'�(�-�;�3�-�5�6�*�*�*�E�)�&�+�8�5�5�.�'�1�/�+�/�.�$�.�0�2�1�2�+�1�-�4�8�-�-�-�;�2�(�@�/�.�9�0�'�8�(�(��/�)�)�-�-�&�,�#�<�=�+�2�2�*�=�1�0�.�'�0�5�(�+��3�/�9�7�(�.�:�1�#�+��3�#�-�+�(��/�)�*�&�&�-�,�(�%�-�4�.�/�%�"�&�1�/�!�5�-�'�*�0�@�:�,�.�:�)�+�+�"�6�(�*�/�9�-�-�,�5�(��0�2�!�+�+�4�+�/�,�-�'�+� �.�#�.�&�'�B�(�-�3�*�0�1�0�'�.�.�/�(�*�*�4�*�'�*�/�,�5�)�'�&�>�2�.�-�!�'� �*�#�-�0�/�3�8�/�+�(�.�&�,�2�1�'�%�-�(�4�+�-�2�/�,�:�7�*�-�-�(�4��+�/�3�;�0�8�'�%�0�+�(�"� �*�)�.�7�>�$�+�.�1�.�$�%�2�>�<�.�/�#�0�/�4�*�6�+�=�,��-�1�-�(�8�%�,�-�(�&�$�8�3�/�!�.�.�5�)�(�)�3�+�7�,�%�2�*�)�%�+�&�7�.�'�3�0�7�,�,�0�%�(�,� �;�+�"�0�-�-�&� �.�)�-�2� �:�+�2�0�;�B�3�3�2�0�5�;�2�+�+�#�?�)�8�E�5�@�9�?�7�7�2�)�5�=�2�;�/�(�$�(�6�4�(�+�+�&�=�1�+�*�&�2�7�5�8�3�!�2�8�7�8�9�4�%�5�'�3�!�3�4�>�)�4�.�4�&�*�*�/�+�.�)�9�+�/�6�(�5�?�)�3�9�>�0�'�,�3�2�#�'�2�4�ـՀ؀րڀ܀րрӀǀՀڀӀـڀ؀Ӏ؀րـր݀Ԁс=�-�A�-�,�1�*�*�*�+�.�-�+�'�*�3�)�2�&�*�5�6�7�-�&�&�.�.�4�6�+�/�9�8�=�+�<�+�8�.�+��,�>�)�*�7�1�.�&�*�@�7�3�3�0�9�0�.�#�/�.�.�<�#�5�,�9�0��2�3�?�.�+�7�'�)�,�7�6�/�0�/�#�.�#�*�-�4�6�-�-�!�1�5�4�9�7�+�2�)�9�1�+�)�-�(�3�/�)�*�-�3�/�4�*�7�!�/�'�+�'�7�-�4�*�+�+�$�6�0�(�-�-���*�*�0�+�3�"�:�=�)�&�$�0�5�*��,�;�*�*�:�9�'�.�3�#�/�-�/�/�3�-�'�,�6�&�&�!�#�3�2��.�1�2�!�.�1��/�/�*�3�%�1�-�'�4�+�/�"�"�4�-�1�!�'�9�7�9�'�/�1�.�1�4�*�3�(�.�;�4�0��&�!�/�"�-�)�(�"�8�1�*�/�"�*�)�%�-�1�!�1�2�0�&�<�&�.�%�<�'�)�%�+�*�'�4�0�/�=�.�&�0�5�3��*�(�4�)�,�-�4��6�)�2��)�8�#�0�3�'�-��1�5�"�-�!�1��3�$�,�6�5�5�2�:�&�.�$�.�4��+�"�0�1�*�)�*�*�5�#�+�.�)�;�,�'�3�0�7�3�6�-�3�.�5�;�#��'�)�2�6�(�7�-�,�!�+�*�0�$�)�+�(�!�%�5�&�0�,�1�0�,�*�/�6�$�.�+� �-� �8�7�'�+�"�/�+�3��+�'�1��7�-�.�0�/��4�$�=�*�$�.�<�1�+�+�#�6�$�;�3�=�8� �+�7�(�&�1�.�;�+�:�/�8�(�=�#�)�,�(�/� �,�5�B�6�:�&�3�<�3�.�!�/�6�:�:�/�>�.�:�9�4�4�:�"�:�0�6�1�4�,�0�"�,�4�2�0�,�4�3�5�/�!��)�+�;�1�8�%�)�6�=� �.�6�%�(�0�1�0�5�(�#�-�(�.�%�9�(�7�0�1�0�0�#�:�)�5�%�0�-�;�=�1�0�+�>�1�'�Ԁ؀ԀӀڀ؀ՀՀրĀրӀԀ׀ـڀրـڀՀ؀Ӏۀځ/�(�;�.�3�1�8�2�-�2�2�<�1�$�,�'�6�/�)�-�*�/�9�/�+�3�4�.�3�,�!�)�-�=�9�%�(�,�7�:�'�%�3�A�)� �,��3�,�,��'�)�)�,�(�(�=�.�,�8�.�)�8�-�7�%�4�.�/�8�'�+�,�(�/�$�(�,�/�4�+�-�4�/�,�"�)�(�/��1�$�'�&�(�/�#�6�7�+�)�5�/�3�/�2�:�$�0�/�7�;�*�:�2�4�/�0�$�+�0�.�+�(�(�"�3�;�'�4�2�1�,� �1�5�6�(�+�7�*�.�/�'�2�'�-�*�8�1�,�*�0�"�5�'�&�+�5�)�/�+�/�!�#�.�%�%�+�-�3�)�-�,�*�)�,�-�;�*�&�&�)�'�'�9�/�$�$�!�&�5�)�(�8�+�1�&�#�)�(�&�/�'�,�,�*�/�4�%�+�'�8�0�.�/�%�0�*�(�4�1�9�1�1�(�#�$�(�5�+�,�.�-�)�.�9�"�2�-�&�)�#�4�/�'�1�/�+�.�0�3�.�1� �3�$�+�/�;�"�3�0��@�@�/�'�+�2�.�:�"�(�5�.�-�5�,�1�6�/�%�2�+�8�/�6��0�/�'�-�'�1�4�.�,�-�0�!�9�,�(�)�,�:�#�/�2��4�5�"�/�*�3�)�$�/�.�(��4�4�6�3�9�#�-�#��(�&�:� �.�#�8�-�:�6�&�%�7�.�&�2�3�'�6�7�*�3�0�)�&�/�.�%�,�1�,�=�-�.�$�,�"�2�2�)�,�:�#�$�3�+�'�/�2�%�6�*��,��/�2�-�/�%�.�*��-�;�-�-�#� �'�-�/�&�+�1�.�2�/�0�7�3�4�!�<�2�$�0�,�*�%�$�?�+�,�6�;�)�(�=�5�4�.�9�;�D�/�+�9�5�/�8�4�/�'�3�2�,�/�,�6�0�?�-�$�9�(�#�.�.�7�1�6�"�(�>�.�5�)�%�9�5�:�!�"�"�2�(�&�4�<�+�+�*�,�/�+�7�'�$�2�)�/�<�1�!�0�+�$�/�/�.�9�4�1�4�(�:�+�ــ؀ԀՀ؀܀ӀڀÀ؀ՀـӀـ׀ՀԀۀՀԀ׀րׁ2�"�0�%�3�#�6�+�0�-�+�/�,�,�-�3�-�5�%�5�1�4�.�%�.�-�+�3�)�<�%�9�4�-�/�*�;�/�2�/�/�*�.�2�#�;�&�2�1�'�8�/�"�4�$�*�-�4�/�7�4�2�&�!�2�%�+�9�/�#�0�+�*�$�(�&�)�)�+�!�#�0� �)�0�4�7�3�1�6�/�/�-�5�0�,�#�1�2�7�8�/�/�(�%�1�1�&�.�$�$�/�/� �(�(�,�4�%�+�"�,�5�1�&�2�0�8�3�+�*�)�.�.�;�-�!�$�&�$�&�/�)�#�1�1�-�(�'�,�4�#�'�.�0�2�*�4�(�,�,�&�/�$�1��&�*�/�3�/�$�3�'�,�-�'�:�7�(�*�2�&�9�0�,�+�/�8�.�+�-�+�3�3�%�&�3�(�.�7�-�/�"�5�1�,�)�.�*�1�$��/�+�0�,�.�,�0�+�:�-�0�*�3�&�6�?�/�/�C�,�5�,�!�/�%�1�'�3�/�3�'�&�)�9�1�6�'�+�7�+�*�$�3�3�5�:�P�6�,�(�/�:�3�!�'�)�/��*�4�#�.�+�.�+�$�-�#�-�.�/�7�+�+�-�#�$�'�,�:�'�5�3�.�0�!�6�*�(��3�3��;� �'�5�+�-�*�9�,�,�(�(�)�#�/� �4�1�0�1�/�H�/�"�0�(�/�'�+�$�2�/�5�0�5�1�9�*�9�2�)�:�/�)�&�-�&�#�1�&�:�:�5�%�-�)�%�)�$�5�$�1�5��-�9�2�+�'�0�8�5�2�-�D�4�A�6�,��+�9�+�2�-�)�+�6�*�)�.�#�%�+�7�)�0�1�2�&�+�.�+�+�'�.�#�+�7�&�6�9�6�2�/�5�-�3�0�)�5�1�B�5�.�1�4�4�5� �*�5�/�)�4�5�.�1�,�B�:�1��8�/�2��4�3�%�"�'�,�,�4�?�9�*�4�0�1�.�1�#�7�:�-�&� �*�+�,�'�(�&�*�4�3�8�0�+�,�3�'�9�'�'�+�"�5�.�0�2�(�:�$�-�6�D�+�F�1�*�.�5�?�׀ҀՀ׀Ԁ׀׀Ӏ׀ʀԀӀԀ؀׀ӀԀր׀р؀Ҁրԁ&�(�&�-�+�.�'�,�2�,�!�/�/�'�"�.�3�.�'�1�.�B�'�'�%�(�0�'�-�3�7�0�,�/�*�,�.�0�0��-�0�)�5�1�*�3�>�;�*�$�+�)�7�-�6�&�$�3�+�(�6�4��3�0�%�$�?� �&�.�'�&�+�(�5�/�#�7�'��%�.�0�+�)�5�,�1�6�/�-��,�'�/�6�,�3�3�.�(�,��/�%�*�-�9�,�,�!�"�,�,�.�0�'�3�1�5�*�2�-��,�-�2�.��-�$� �1�)� �1�+�<�1�$�)�1�+�2�&�3�1�'�+�,� �1�,�/�-�/�.�0�$�;�&�4�5�!�+� �3�1�6�,�1�'�%�#�.�%�4�+�#�/�)�%�2�"�%�.� �(�.�9�&�&�5�)�0�.�7�!�.�&�&��*��3�2�/�0�9�-�+�,�2�.�*�0�3�#�.�/�+��3�+�:�$�1�)�,�7�#�;�0�-�7�0�)�-�6�#�.�3�6� �)�8�.�1�*�(�?�4�(�+�,�@�6�'�)�%�6�3�1�$� �5�&�%�)�/�+�/��*�5�)�A�:�)�$�#�3�&�&�)�-�*�#�(�/�2�&�7�3�$�2�'�3�;�5�9�/�0�'�/�+�'�-�%�� ��'�2�$�+�(�,�7�5�%�3�=�-�(� �5�1��/�2�)�+�*�4�$�-�/�&�!�7�-�2�+�1� �1�.�-�-�!�/�*�0�.�-�0�&�*��+�0�+�3�2�8�!�/�(�+�1�4�*�'� �)�1�%�5�&�+�6� �.�<�-�7�+�'�2�2�5�-�&�/�+�/�6�1�"�,�-�5�1�/�,�'�&�+�8� �-�-�1�9��+�!�/�,�5�?�5�0�'�7�/�-�.�'�4�5�,�&�-�+�!�6�/�4��,�0�-�1�2�8�/�1�5�$�+�+�2�(�/�#�-�(�'�5�-�-�0�?�)�/�+�.�7�(�3�/�"�3�0��2�&�*�&�:�.�*�'�7�/�)�-�3�<�:�/�'�-�&�0�+�2�&�-�"�)�3�/�7�#�0�,�5�׀ՀԀ׀Ԁـ׀݀݀ƀ܀ՀـԀҀՀ܀׀Հ؀؀ՀԀځ#�4�,�0�%�)�*�3�0�.�'�/�-�0�/�1��1�'�5�7�+��0�+�0�C�'�(�)�&�2�7�)�=�4�/�4�:�,�=�)�+��+�'�)�6�<�1�(�+�(�7�+�1�)�+�0�+��-� �'�,��"�/�)�(�)�,�3�6�+�-�3�-�0�;�*�6�8�1�3�2�#�1�)�4�.�+�1��&�,�:�;�0�3�'�'�*�,�$�'�6�'�$�)�/�0�&�"�'�,�0�*�-�.�%�*�)�=�-�+�*�%�(�1�(�-�0�5�*�)�+�;�*�&�9� �-�(�!�?�,��!�6�/��)��#�2�.�3�0�7�/�5�*�<��!�'�*�5�%�+�-�"�(�)�,�+�<�+�)�/�-�1�!�,�-�3��)�9�)�'�4�2�5�*��#�4�-�6�8�*�'�(�;�0��-� �1�#�+�5�(�%�+�5�1�6�(�0�1�.�1�,�)�1�*�D� �%�*�$�3�2�:�1�+�/�*�)�+�-�%�@�-�!�7�)�0�5�-�1�2�'�.�0�3�4�,�(�%�0�+�6�<�-�%�)�&�)�2�1�+�&�#�%��%�/�&�9�0�)�-�1�&�=�1�1�0�$�1�,�1�?�7�#�*�C�6�,�:�*�8��D�,�(�"�����9�%�)�.�'�1�.�)�-�'�-�0�%�)�-�0�6�/�9�)�%�5�0��4�%�#�+�8�;�2�)�%�1�*�%�3�0��.�3�"�3�1�0�,�3�$�5�+�5�"�#�0�;�,�0�*�;�-�-�'�(�*�+�%�/�1�(�-�9�/�6�3�3�.�)�4�*�/�1�/��2�#�&�$�?�+�/�0�1�.�)�+�.�*�/�4�#�3�3�3�1�3�+�+�:�=�$�0�,�2�;�'�6�5�B�*�7�9�0�1�$�/��-�4�1�9�1�-�0�%�:�>�1�1��1�H�1�3�4�.�7�&�0�7�/�8�*�0�)�,�:�-�,�9�/�/�*�4�&�)�/�'�'�+�.�1�.�&� �%��)�*�-�-�3�-�#�,�(�3�-�*�/�6�,�0�(�!�1�+�8�'�؀ԀӀӀՀր׀׀ـĀԀҀ׀րӀԀڀրҀԀԀԀހҁ4�$�4�$�+�4�.�'�,�5�)�4�3�+�;�+�/�*�,�'�(�<�(�'�%�:�$�9�-�-�9�-�1�:�<�6�#�'�1�&�3�1�5�2�(�,�&�3�)�0�)�0�9�2�1�9�/�2�(�2�0�)�,�8�(�2�1�&� ��6�'�#�+�&�.�,�3�)�,�,��+�2�7�2�*�7�9�-�!�(�)�3�C�7�:� ��,�-��+�,�(�0�4�5�-�5�,�,�7�,��4�-�#�4�/�8� �/��:�3�'�+��3�5�;�/�/�1�'�)�4�4�-�$�/�1�$�*�2�%�.�5�'� �*�1�5�0�+�.�'�.�>�+�)��)�7�/�!�,�2��.��6�*�$�'�.�'�/�!�<�3�3�3�'�&�6��.�.�5�.�'�!�/�8� �4��7�"�+�3�0�+�.�2�7�9�*�*�)�"�*�(�1�7�3�:�1�/�-�1�3�,�9�3�'�(�&�.�(�1�+�.�+�2�)�*�1�/�'�*�*�'��'�-�!�-�;�)�0�1�$�;�=�+�=�1��'�'�)�#�:�2�-�%�.�.�+� �-��-�-�-�,�-�&�"�%�)�'�1�)� �1�)�$�(�&�%�,�6�+�<� �/�5� �-�4�%�$�-�+�/�&�2�*��-�>�+�#�4�(�(�,�#�)�.�2�1�/�'�,�%�6� �/�*�0�"�$�/��'�1�4�!�;�(�)�3�.�*��'�9�(�(�$�6�-�1�:�2�6�7�-�4�-�%�-�/�5�3�&�0�0�5�"�+�4�(�5�(�#�2�.�5�(�0��#�)�!�1�.�4�/�'�,�3�+�"�)�;�'�-�+�/�(�)�0�$�3�2��1�0�"�*�*�"�2�)�#�&�.�/�0�&�+�/�+�,�(�*�1�7�,�<�&�4�+�7�+�!�(�-�-�7�;�;�/�.�+�:�'�(�'�;��.�0�1��'�7�4�/�1�9�1�8�3�+�/�/�6�0�!�3�$�,�6�!�1�,�*�1�,�#�8�0�;�>�0�7�5�0�.�2�%�2�7�9�!�-�7�1�1�@�(�-�4�,�5�ԀπՀـڀՀــހɀՀԀԀր׀րՀӀՀԀ؀рրց9�(�4�2�1�(�$�'�A�/�$�(�1�2� � �&�;�=�/�7�-�2�&�8� �:�'�@�2�.�)�8�/�,�'�/�!�/�/�7�3�$�C�8��*�/�.�%�,�0�7�9�1�"�*�.�+�)�+�*�*�'�-�/�+�4�%�6�5�2�2�*�-�,�1�)�&�1�2�"�2��0�7�.�1�:�'�7�5�.�)�&�-�)�(�*�,�%�<�1�7�*�-�.�*�*�/�/�3� �+�!�0�>�&�)�/�3�/�(�)�-�/�$�%�'�0�)�0�9�0�2�0�(�#�#�1�/�0�6�#�2�)�*�:�)�)�-�+�(�+�#�/�)�3���+�5�(�2�@�0�(�&�+�"�*�)�9�-�&�%�'�#�2�&�&�+�*�/�;� �-�#�4�.�/��5�!�3�0�1�*�&�1�-�#�!�1�+�"�/�%�!�#�<�2�*�%�$�%�.�7�-�:�5�(�-�1�'�2�.�&�0�)�0�3�)�6�/�%�%�;�&�/�8�8�9�%�'�8�3�9�+�1�;�)�1�+� �0�3�8�/�2�/�5�4�+�.�%�3�5�2�A�(�(��&�+��)�)�2�-�$�4�#�)�5�#�/�-�'�2�0� �)�.�0�)�/�/�1�*�(�,�:�.�+�+�7�*�,�+�+�0�)�+�#�3�#�7� �,�.�*�$�-�)�/�+�$�-�0�$�,�'�(�*�)�/�%�0�*�0�+�*�$�1�B�4��%�4�#�4�(�*�5�3�/�(�/�/�%�,�)�'�2�7�&�%�.�5�/��/�/�2�(��/�+�#�(�3�+�6�+� �2�)�#�)�;�-�5�1�'�&��.�3�'�&�/�-�+�2�"�+�.�6�=�)�.�>�"�2�4�)�-�,�8�.�.�2� �)�2�6�8�$�?�5�%�+�,�-�2�,�%�1�-�$�3�-�$�*�,�"�4�)�(�+�5�0�"�*�4�*�-�%�>�"�+�)�)�2�8��)�(�2�%�1�-�5�*�0�2�,�3�/�'�.�/�3�/�3�/�8�-�.�+�(�5�1�(�7�)�4�-�(�1�/��1�5�+�3�'�*�-�+�1�ՀՀ؀րր׀؀ـڀƀԀ؀ԀԀрӀـۀր׀؀ހ׀ԁ$�5�%�4�2�6�7�+�(�4�0�-�+�8�'�,�#�,�1�2�&�-�.�'�8�8�8�&�.�.�3�+�*�2�%�/�/�,�/�+�+�5�+�-�,�2��&�1�0�8�(�.�(�1�)�'�/�%�$�*�+�)�)�,��&�+�(�&�1�0�1�2�+�*�7�4�%�/�%�.�#�*�3�.�7�0�#�&�$�6�/�6�4�)�-�$�?�B�;�7�8�=�1�$�#�#��<�=�6�%�$�)�1�+�*��)�/�/�1�6�4��-�6�.�-�1�&�+�4�1�2�'�)�*�)��'�+�,�2�)�2�$�!�*�&�4�D�!�/�;�&�%�.�/�+�=�0�5�;�,�:�3�/�7�+�8�-�-�-�1�&�(�#�$�/�+�,�#�(� �+�%�#�7�)�&�3�/�$�(�7�'�/�,�(�0�*�.�$�'�*�1�0�0�0�4� �#�,� �5�6�-�)�5�-�7�+�2�#�*�1�7��&�*�5�3�1�'�-�?�'�&�+��,�.�5�2�.�#�)�2�+�,�5�-�3�5�'�+�$�%�$�@� �.�4� ��-�3�.�1�)�,�/�.�5�(�0�/�+�*�8�'�1�9�)�*�.�.�)�-�5�5�&�/� �4�$�(�3�,�%�%�-�7�7�4�,�(�%�5�)�/�6�3� �0�6�+�6�2�5�(�5�(��3�/�#�9�.�9�,�1�.�$�.�%�"�*�8�0�<�1�!�3�,�&�!�,�+�1�/�-�<�2�1�,�)�2�1�-�*�+�!�#�/�-�(�$�(�(�%�-�1�&�0�.�-�+�+�5�'�.�,�,�$�'�%�0�-�7�!�1�-�)�-�&��6�$�.�*�,��0�0�)�%�5�(�0�!�%�0�4��-�.�*�2�5�&�$�4�1�*�!�+��3�1� �3�.�1�1�:�*�*�&�)�-�+�;�,�.�-�,�'�*�/�'�*�6�$�-�1�0�/�-�$�,�"�=�/�)�4�)�+�7�.�*�-�8�,�)�?�8�%�8�-�*�+�)�1�*�#�=�3�,� �0�6�)�B�5�0�2�*�/�5�,�7�:�2�#�1�9�%�2�-�؀рր؀ԀԀ׀؀ԀŀЀՀԀԀӀ׀Հ؀ڀڀՀ׀؀ہ/�*�2�)�0�+�3�&�+�(�8�-�+�'�/�*�+�/�8��0�'�>�5�&�)�(�7�-�6�1�+�3�0�/�,�:�-�6�$��'�?�3�%�/�(�,�0�"�<�!�2�<�.�;�D�-�,�<�2�%�6�*�4�-�=�&�5�,�/�@�-�$�/�)�2�.�1�2�0��4�6�/�+�.�/�3�-�+�7�0�6�.�"�$�:�3�)�!�)� �(�#�(�0�0�,�'�%�0�(�-�1�"�%�*�2�4�/�3�,�*�"�)�$�%�.�.�(�3�(�0�2�!�<�%�$�+�#�.�)�"�,�5�%�1�1�3�#�7�#�-�%�#�)�6�.�%�4�)�C�3�&�2�5�$�(�*�'�"� �.�/�0�)�*�)�1�7�<�2�6�)�#�+�4� �1�7�/�6�&�%�*�:�/�*�+�2�(�,�)�!�.�*�*�)�/�,�8�*�'�*��.�+�,�*�,�0�-�*�&�"�9�%�*�-�,�(�,�4�*�.��-�0�/�$�"�+�$�+�&�*�5�4�.�1�;�.�%�&�,�2�B�1�2�+�*�$�4�.�=�-�2�$�-��%�'�/�/�,�'� �7�$�,�*�/�)�/�-�/�)�(�2�&�,�+�;�3�9�-�&�.�7�9�2�*�)�.�-� �,�)�'�4�&�6�8�0�2�#�0�<�3�)�.�3�-�1�6�4�0�+�5�/�7�*�-�6�&�2�>�+�-�"�=�.�0�-�3�'�$�*�%� �-�-�>�%�+�+�-�.�"�%�#�+�B��,�4�2�/�1�,�/�0� �2�/�4�&�8�1��,�#�-�#� �(�'�/�'�3�&�!�4�)�*�1�'�!�&�.�!�9�#�@�2�/�*�%�-�-�#�&�/�6�/�.�F�'�:�,�%�.�-�/�3�'�5�:�3�5�4�+�-�"�:�-�-�-��#�&�5�/��*�=�,�$�/�"�)�"�.�)�,�,�2�0�-�1�5�3�2�+�&�=�-�)�.�2�+�%�.��,�&�2�+�0�8�0�(�2�3�(�0�$�,�,� �/�3�-�*�%�+�%�8�.�/�/�5�*�4�,�*�1�$�=�*�+�Հр׀ـԀՀՀ؀݀ɀـՀ׀ԀրӀӀۀ׀ԀՀ̀πԁ7�*�,�7�,�+�(�,�-�!�&�,�2�.�*�(��0�'�0�0�:�;�$�&�.�7�#�3�/�4�!�,�6�,�,�.�2�+�)�/�C�%�/�4�*�8�+�+�-�#�-�(�/�3� �+�.��,�)�9�5�1�1�*�0�+�8�(�,�4�6�(�+�0�+�-�3�.�#�3�#�6�/�/�!�)�$�8�0�+�.�6�%�'�=�>�,�%�2�4�+�,�-�.�,�.�+�0�0�1�*��3�)�%�/�#�:�&�'�.�$�-�-��6�$�"�"�7�'�5��=�.�&�+�#�/�4�2�1�(�!�&�&�3�0�(�,�7�2�,�4�,�8�/�0�/�5�(�.�.�.�/��-�2�$�%�3�9��7�(�-�.�#�'�%�*�3�'�.�+�-�-�2�$�/�,�8�(�7�-�(�%�'�.�,�+�"�,�"�,�0�0�8�&�.�<�-�&�4�#�7��=�'�-�,�+�(�0�+�.�5�.�1�0�4�(�3�$�)�3�;�0�%�*�*�#�,��-�3�3�/�(�+�?�2�3�4�0�-�4�+�5�1�&�5�,�2�0�1��%�/�-�9�'�+�1�&�(� �+�+��7�&�%�!��%�8�#�0�,�3�(�*�+�0�&�)�'�.�*�-�:�.�4�0�*�)�%�)�5�;�6�9�3�2�(�%�+�5�)�1�!�/�/�"�&�2�*�"�6� �5�$��3�=�-�.�6� �+�0�&�8�?�7�.�/�#�3�$�-�/�.�A��6�.�)�0�-�5�2�.�'�4�/�.�/�*�.�-�,�1�+�+�*�/�#�,�+�;�'�*�+�1�;�3�+�+�'�%�-�/�)�&�.�"�.�1��/�3�D�.�2�'�&�4�,�5�7�'�'�*�)��*�.�2�8�/�)�/�-�9�.�-�7�-�/�=�-�+��6�#�.�<�/�,�2�(�7�'�:�3�(�)�-� �3�6�A�)�$�+�/�$�:�-�&�7�+�'�/�1�"�/�.�-�$�(�/�+�0�3�-�)�2�%�B�9�2��8�?�0�&�0�+�+�;�&�0�0�1�/�0�.�0�.�4�5�-�0�,�&�%�,�ՀՀӀԀـ؀ր؀؀̀׀ހрրҀՀր؀րۀڀ׀ـځ1�>���%�6�:�5�3�.�#�1�6�6�-�2�+��7�6�;�2�3�/�:�1�7�0�1�.�%�4�&�%�$�/�/�>�/�0�-�,�(�/�'�-�+�:�7�'�8�&�3�2�&�-�)�6��,�.� �(�+�2��)�#�1�/�+�$�#�*�,�-�0�(�0�8�)�$�*�0�+�,�5�)�&�1�3�6�3�1�2�5�2�3�/�+�$�&��B�5�,�-�2�)�-�*�$�1�(�3�%�*�+�3�.�.�(�1�/�'�+�#�/�-�%�.�/�$�%�2�#�!�-�/�+�5�.�1�!�2�1�'�(��)�4�0�)�.�/�%�+�9�'�$�-�7�;�&�1�1�0�/�-�/�7�-�=�&�(�+�0�1�2��/��1�1� �)�7�*��#�0�.�*�.�/�'�-�4�,�&�(�+�2�#�#�/�-�,�#�2�,�-��&�0�2�/�/�-�*�*�2�5�$�-�4�;�2�<�,�9�4�4�)�-�3�0�"�'�-�&�)�6�$�%�'�5�+�*�1�6�2�� �5�#�&��2�2�0�3�-�2�,�+�(�*�0�0�.�.�+�,�,�'�'�!�9�.�8�1��/��1�5�+�)�%�*�.�9�$�0�/�,�'�/�.�1�/�&�1�'�"��,�,�=�$�,�-�:�-�1�(�2�/�&�1�$�2�-�,�$�/�'�1�.�3��'�3�/�)�&�.�*�*�.�.�5�%�2�%�:� �/��(�%�8�7�+�%�+�!�&�'�/�(�'�#�"�+�2�,�-�4�'�%�/�1�4�0�)�4�.�$�*�/�(�1�/�*�$�+�@�"�+�0�#�1�)�1�+�#�1�<�'�.�,�-�-�+�%�&�'�!�2�/�*�,�>�-�3�/�0�/�'�2�2�&�/�)�:�&�5�-�!�4�$�)�4�*�/�5�3�6�0�'�.�,�%�2�/�/�%�1�$�6�3�,�/�+�2�(�4�,�.�0�.�-�7�2�+�#�,�,�,�2�+�-�'�2�/�/�=�-�,�.�$�>�,�"�*�1�5�,�%�2�*�5�?�=�%�!�2�5��0�;�3�*�0�5�<�4�1�!�!�π׀ՀڀրրՀڀӀĀԀԀԀрՀ߀րҀրՀۀ؀ـӁ3�/�(�(�'�3�0�$�)�-�<�>�/�B�$�6�/�.�4�2�'�/�/�2�2�1�1�9�4��,�5�!�0�7�$�5�*�/�,�0�0�@�6�9�5�/�'�/�.�/�7�.�,�(�+�.�"�5�0�(�%�<�%�2�+�.�/�+�.�*�,�/�5�*� �)�#�0�0�;�%�5�.�&�5�.�3�6�2�9��;�,�*�2�*�'��-�/�(�.�(�2�2� �)�0�*�1�4�*�+�1�)�"�*�8�8�8�0�+�/�%�)�*�/�B�.�(�-�%�!�.�<�2�-�$�1�&�5�-�.�7�3�%�"�3�)�+�+�)�3�0�$�/��&�(�,�/�%� �3�-�2�;�*�)�)�*�%�7�%�5�.�+�*�5�%�'�0�&�3�)�%�6�(�-�,�+�6�"�"�/�,�,�&�"��.�+�-�+�2�)�2�2�-�2�/�#�3�7�$�.�'�.�-�/�;�(�)�4�1�5�'�"�:�;�-�#�0�.�&�%�0�%�)�*�+�8�/�*�$�+�!�1�"�*�'�-�-�+�)�1��7�2�,�'�0�+�-�-�,�8�-�+�'�+�'�)�.�,�,�:�.�(�+�2�)�/�+�/�(�-�9�7�3�3�9�+�(�)�+�2�!�&�4�6�&�3�,�!� �+�1�1�+�)�1�-�&�1�-�$�,�9�)�2�/�2�%�2�6�3�/�'�%�9�+�5�9�.��*�5�0�-�!�1�5�!�/�7�'�+�'�7�5�/��)�,�1��"�2�!�-�#�-�6�1�'�4�)�%�-�/�+�*�1�2�.�,�'�/�!�-�/�'�-�'�(�0�5�5��9�-�5�5�&�%�(�%�*�3�8�/�)�,�-�2�-�-�0��)�/�>�-�.�+�1�8�'� �6�7�8�(�-�9�(�+�(�.�7�%�1�'�)�/�+�-�:�!�#�0�2�&�'�1�7�6�-�"�,�*�1�"�3�+�0�D�,�.�'�;��+�$�-�4�8�(�&�/�'�$�*�*�"�1�C�,�3� �"�3�,�)�,�9�0�(�/�3�.�9�8�+�0�5�/�1�-�8�9�'�)�)�4�2�6�(�*�*�̀ۀրـՀр׀׀Ҁŀրր׀׀؀ӀԀր׀܀΀ڀ؀Ӂ/�=�!�>�*�B�(�5�"�)�)�2�'��4�)�!�4��9�'�+�(�2�8�.�1��0�6�*�8�0�'�&�3�(�8�2�/�&�9�'�3�-� �%�2�*�1�3�7�)�)�/�%�!�5�,�<�4�3�)�/�3�'�*�7�/�.�;�1�0�8�2�#�2�.�7�5�7�2�4�1�"�7�/�4�(�&�1�$�1�*�+�.�1�#�4�,�%�)�%�+�%�0�*�$�7�5�)�(�&�,�'�3�&�>�)�6�-�:�-�0�+�(�7�'�,�5�#�.��3�*�"�6�&�/�,�/���3�"�4�"�.�+�*�+�-�'�'�:�8�/�1�!�5�3�8�0�/��)�/�*�6�-�(�*�'�.�4�"�.�$�#�4�'�$�+�&�)�6�0�"�7�>�(�:�0�-�/�*�,�8�'�*�"�7�+�%�/�"�*�)�$�0�#�!�/�4�(�4�/�6�2�%�2�.�*�:�'�#�.�/�*�+�+�.�1�"�9�0�/�-�)�/�5�&�<�*�4�-�)��,�$�-�7�'�2�'�1�5�#�;�+�;�%�%�/�2�%�*��.�5�+�9�-�#�+�4�2�#�.�6�.� �0�0�,�(�%�1�/�$�*��5�4�-�'�*�*�/�0�%�/�)�0�)�.�)�-�(�+�!�(�%�'�5�5��/�1�1�+�,�'�)�,�2�,�.�/�#�/�/�-�$�!�#�.�0�*�(�+��-�-�#�4�2�9�$�/�(�$�"�8�,��>�)�0�1��)�0�4�+�.�=�'�-�/�'�1�+�.�-�3�%�'�#�1�/�*�6� �'�/�&�*�:�)�$�9�)�:�8�5�/�)�'�(�4�2�,�'�2�.�2�1�3�.�+�!�.�'�$�(�&�:�1�0�6�2��2�#� �*� �2�5�.�4�2�:��2�*�6�"�3�,�'�.�/�4��� ��0�&�/�+�5�3�*�*�&�-�/�,�%�/�2�-�5�0�-�/�1�'�*�,�/�-�)�2�,�.�4�+�2�&�#�,�@�+�-�:�'�0�!�%� �(�1�A�%�)�.�5�*�-�(�7�#�5�2�*�,�)�$�׀ր؀׀݀׀ڀՀ׀ˀԀـԀـڀրրր׀րڀԀ؀ׁ+�,�4�'�3�,�&�5�4�$�7�.�4�3�'�4�/�.�)�&�-�+�-�8�(�(�8�,�+�)�-�)�/�"�(�'�0�,�2�;�:�,�4�=�#�/�/�$�.�+�*�2�2�$�$�1�!�8�(�-�=�+�$� �-�(�3�;�1�5�7�<�.�)�6�&�4�)�+�+�+�5�7�2�*�.�'�.�)�5�.�1�>�2�%�0�/�)�8�2�3�3�6�*�3�4�'�4�6�1�7�)�0�2�.�/�/�5�+�,�8�#�'��3��)�'�)�.�%�,�1�+�7�'� �"�,�4�0�)�.�.�(�9�*�4�F�*�1�5�,�+�)�*�#�5�4�#�,�&�%�*�7�6�9�*�%�7�%�6�+�/�!�2��'�<�1�&�$�3�/�2�+�)�*�;�6�$�-�/��6�3�6�!��+�*�*�&�6�-�'�-�<�6�$�+��*�#�"�0�&�2�*�-�'�-�;�'�&�5�+�=�(�0�3�0�&�0��>�'�0�(�2�+�-�3�/�4�6��&�6�4�+�#�(�/�1�(�*�6�<�"�3�.�"�/�4�7�3�1�,�%�0�2����$�8�/�3�6�$�3�+�3�'�+�.��#�/�2�-�3�/�!�$�&�/��%�1�/�+�:�0�.�;�.�?�*�(�<�4�*�,�+�2�'�%�#�'�/�$�/�,�/�,�*�1�0�*�-�9�(�(�)�.�'�%�4�;�%�9�3�>�.�9�4�6�&�$�.�/�5�,�<�,�.�6�%�#�7�3�.�,�6�-�'�)�,�/�&�*��1�*�2�(�1�.�3�*�/�?�*�)�,�+�,�&�,�*�4�.�7�-� �-�%�/�4�-�)�*�/�+�+�:�)�6�9�&�$�,�7�/�4�#�+�.�$�(�$�6�(�,�0�7�'�0�,�+�,�/�&�>�5�&�7�;�-�0�&�2�+�*�-�<�%�7�1�.�9�&�'�-�,�#�0�9�2�.�&�(�.�-�,�9�3�/�2�,�&�1�5�;�3�5�/�,�.�-�1�6�.�2�(�,�/�"�C�8�+�-�+�&�3�(�3�/�(�*�/�$�+�-�.�7�3�4�*�&�1�Ҁրـ؀ՀՀՀҀրĀ̀рۀ؀Հ؀׀؀Հ׀ր܀րہ1�#�#�/�9�/�6�(�!�.�+�+�@�9�7�,�5�0�4�4�8�4�3�;�&�7�/�.�2�=��%�3�*�6�-�5�8�#�;�0�/�0�)�*�/�%�-�+�-�.�,�4�3�(�*�#�/�%�%�-�/�,�2�D�/�%�2�8�;�0�5�*�*�0��#�4�$�>�%�9�0�$�,�=�3�1�+�,�%�*�/�@�*�1�,�.�*�2�*�;�.�6�6�,�)�%�/�-�3�3�)�.�1�8�2�0�-�'�5�3��*�(�0�.�� �/�7�'�(�4�6�,�/�1�+�5�-�)�&�6�&�;�2�-�!�4�;�3�%�+�&�'�)�#�*�(�&�'�2�>�3�:�6�%�+�*�:�(�)�5�!�3�,�,�1�-�-�0�-�%�2�0�:�$�.�(�0�)�'�*�#�5�'�4��%�'�.�%�.�,�4�1�"�3�@�!�9�&�1�$�/�%�+�8�4�1�,�)�3�3�)�4�+��*�4�&�$�.�+�8�/�1�-�)�9�&�2�$�%�<�+��+�5�'�!�$�/�/�6�+�2�0�+�!�-�*�/� �+�(�7�'�,��&�O�l�-�&�/�%�(�*�,�5�2�B�-�3��(�/�3�%�(�&�-��/�7�(�5�8�.�(�$�+�#�)� �/�-�E�)�*�*�+�'�7�6�"�/�5�4�*�"�2�%�/� �7�=�*��,�A�+�-�7�2�>�#�'�.�.��/�7�+�5��2� �2�*�'�/�,�'�9��$�#�#�%�1�)�%�1��6�,�)�$�(�+�9�4�2��)�3�)�,�4�.�(�)�$�-�&�9�;�2�)�/�.�$�2�4�,�1�%�)�1�/�!�/�4�/�'�%�+�5�2�;��2�2�>�3�� �*�.�%�#�&�2�;�,�/�2�,�"�-�7�&�%�,�&�3�-�A�!�E�-�.�?�2�+�2�5�8�=�3�*�%�+�/�-�8�-�,�;�*�/�*�&�(�1�+�1�.�.�1�&�#�"�*�-�+�,�.�0�3�,�/�:�%�3�%�3�.�$�$�7�)�;�7�C�0�'�,�!�0��5�0�;�"�.�1�5�3�؀׀׀Ӏ؀؀ԀՀրɀ؀܀ӀԀՀӀՀЀՀڀـڀـہ3�"�2�1�)�2�5�)�*�/�5�&�/�+�>�;�(�/�%�;�)�,�%�)�)�-�,�3�,�/�$�6�0�1�*��3�1�+�)�)�.�.�,�1�5�8�*�/�+�5�)�:�+�4�C�2�1�$�=�4�2�)�*�1�-�.�,�+�2�/�1�6�+�9�*�/�&��+�/�'�<�/�B�;�'�1�.�,�*�7�=�-�-�*�&�$�*�)�(�3��4��*�/�/�/�4�+�-�0�1�0�/�)�5�-�$�/�)�+�7�3�*�/�'�'�2�2�.�?�1�0�"�,�+�6�(�<��%��*�/�;�6�,�.��9�:�%�)�'�(�-��4�/�.�/�'�-�-�/�3�#�*��)�2�*�%�#�)�/�+�6�3��1��5��/�-�4�1�3�5�1�+�0�9�1�7��5�-�0�*�0�.�'�$�-�)�7�'�/�'�;�3�7�5��0�5�-�&�"�,�'�.�,�5�!�.�3�+�=�2� �2�5�$�)�*�&�-� ��4�)�3�.�)�(�)�=�*�/�+�.�)�9�0�7�+�:�<�5�,�<�6�&�1�4�5�0�+�.�5�.�*�'�'�(�4�,�'�5�/�4�-�+�0�6�0�$�3�&�+�,�"�5�1�'�3�(�1�-�?�$�+� �-�'� �0�0�2�.�+�)�*�'�%�7�)�!�%�)�1�6�5�6�2�.�:�5��1�.�(�,�/�"�*�#�+��,��-�,�/�(�4�&�0�-�6�#�-�$�5�:�'��4�1�&�0�)�$�/��7�*�!�'�.�/�.�(�1�2�.�$�*�)�4�2�9�,��/�<�8�0�1�/�.�4�� �-�)�$�7�,�*�%�+�.�1�(�)�)�2��)�.�!�#�(�0�9�%�)�6�/�&�9�)�3��0�6�+�/�6�(�*�0�-�3�7�!�/�-�3�;�*�/�8�&�%�%�1�-�'�.�2�1�-�&�#�>�-�)�4�4�4�*�3�)�9�5�2�0�=�M�(�,�(�+�)�(�)�4�&�*�2�'�0�.�'�+�2�4�&�(�4�'�/�/�+�%�%�,�+�#�9�4�+�8�2�-�ՀҀр܀؀ۀրրـʀ؀ԀӀ݀؀ۀӀԀۀՀԀՀЀс*�9�0�.�<�(�,�6�+�$�1�,�/�4�4�0�!�-�3�5�0�9�6�(�1�7�3�5�5�8�H�+�3�0�#�#�3�=�5�<�1�4�8�6�&�*�,�-�)�(�#�/�9�"�$�*�/�*�3�,�6�.�3�(�(�:�3�6�)�6�*�4�0�3�(�)�,�)�0�4�5�-�/��-�#�*�6�)�"�/�*�)�%��.�!�+�/�3�-�(�,�'�/�(�5�,�/�3�2�+�%�,�*�/�/�*�%�"�+�-�/�(�/�<�,�9�6�)�5�(�5�4�+�'�.�8�1�&�,�.�#�3�:�6�.�*�;��4�&�$�,�0�6�;�.�1�7�&�0�*�&� �5�0�5�&�;�%�-�-�+��)��-�2�$�4�2�#�2�.�0�5�2��/�-�)�8�6�#�)�=�7�.�7�-�-�:�$�7�9�1�'�5�!�"�.�,�+�)�:�'�2�4�;�)�,�1�+�#�7�/�7�3�-�'��/�*�3�6�3�0�/�-�8�#�&�3�&�-�1�'�!�0�*�1�*�&�'�:�1�.�&�.�5�-�&��3�/�+�$�+�0�<�*�#�(�)�/�!�'��.�.�3�5�+�3�&�8�,�2�.�&�1�&�9�+�"�#�2�'�)�;�*�'�)�#�.�2��)�"�)�(�0�9�2�/�5�/�3�+��=�4�$�*�(�0�3�4�-�7�9� �&�4�2�/�#�'�-�1�%�+�.�*�-�.�"�+�/�'�+�"�"�2�4��1�2�*�/�!�/�;� �4�.�6�)�*�)���7�&�,�-�9�+�*� �7�+�)�3�7�6�8�8�0�5�<�5�)�#�/�+�7�/�"�1�/�+�*�1�7�!�&�#�8�/�/�5�1�/�7�%�2�6�$�1�0�3�*�2�!�*�)�-�*�,�)�'�(�,�+�6�0�,�+�>�/�8�3�6�'�#�+�)�(�7�1�,�#�'�7�2�(�6�)�#��/�4�$�2�5�2�.�2�-�%�9�4�)�/�,�%�/�0�%�/��.�4�!�7�2�(�6�+�-�)�5�"�,�$�+�&�)�4�/�-�#�%�3�/�(�+�=��)�ҀԀ׀׀ـ؀Հ׀ՀŀրԀҀ؀؀؀πրՀۀۀӀ׀ҁ.�#�4�%�6�*�6�'�,�)�8�*�(�?�(�+�-�/�&�;�0�)�6�'�4�$�3�!�1�:�/�1��.�:�4�3��)�*�;�3�0�4�9�0�9�2�9�:�1�3�/�4�&�7�0�0�5�?�$�0�.�;�&�$�(�"�$�8�,�1�,�-�2�/�.�5�6�&�'�%�1�'�1�)�#�/�/�)� �(�-�,�3�,�+�(�5�,�6�-�/�-�-�<�)�)�3�#�,�(�0�'�1�%�#�3�%�0�2�'�)�"�/�.�)�-�3�$�A�%��'�-�#�-��-�&�%�)�%�)�6�$�)�'�%�/�'�4�5�.�'�2�8�3�:�4�"�5�6�4�)�&�/�6�7�/�3�3�'�*�:�0��"�3�-�-�,�(�*�-�7�%�/�/�'�.�2�,�%�-�.�+�-��2�+�4�)�.�0�.�+�.�%�,�5�'�/�4�5�*�4�.�*�'�#�7�,�(�/�<�0�.�&�5�*�/�5�8�#�%�,�'�3�,�(�(� �$�5�*��4�,�1�'�*�;�)�%�6�+�)�)�7�/�.�!�.�%�2�5�/�0�<�-�0�(�B�-�$�/�2��'�(�0�6�:�)�-�&�1�,�+�"�.�-�&�'�>��1�1�'�)�.�-�.�&�1�%�0�&�/�<�#�6�2�,�'�&�5�5�(�)�-�-�+�3�*�5�)�(�:�.�-�#�>�)�2�/�-�4�8�/�,�7�(�3�6�1�*��2�&�*�.�5�3�'�4�+�-�-�0�5�1�5�'�+�0�'�7�8�.�*�+�*�2�%�-�%�+�+�6�(�;�+�5�-�"�1�;�+�%�&�)�(�%�0�:�.�*��&�*�3�4�.�2�.�-�,�/�,�,��%�,�.�%�9�,�'�1�1�2�.�8�$�-�1�3�,�?�(�5�5�(�3�*�(�7�+�"��%�0��-�1�1�/�5�2�1�-�-�0�4�&�,�!�>�%�/�3�,�*�0�)�5�.�5�2�+�%�*�+�/�*�(�3�)�3�+�.�$�(�*�0�%�%�%�0�*�0�'�0�$�%�(�-�9�.�0�.�9�/�6�F�%�0�1�3�0�׀ԀЀրҀՀӀՀр��րՀԀҀ׀ڀ؀րՀрۀـ؀ہ%�%�,�5�!�,�-�+�"�2�4�%�6�3�2�4�,�2�'�:�$�*�"�)�+�?�2�/�,�+�,�.�1�(�/�/�(�'�0�&�+�-�.�2�&�7�>�9�,�3�*�%�*�>�+�+�!�/�,�-�9�0�2�#�2�(�-�,�0�-�-�"�5�3�.�8�6�.�/��-��+�3�*�0�/�&�4�1�5�6�+�1�7�3�/�(�#�1�7��%�&�/�/�'�*�2�4�/��)�3�'�)�5�&�+�'�+�?�)�'�9�0�%�1�(�=�F�1�,�&�1�/�(�8�+�.� �1�4�3�1�'�0�9�8�,�+�0�=��8�5�2�&�&�0� �%�+�)�/�/�-�.�=�(�+�.�%�2�&�5�5�?�,�5�5�7�:�2�'�&�5�.�3�2�0�(�$�5�$�6�2�)�-�,�'�.�!�&�6�3�4�%�1�&�&�-�#�0�*�6�.�2�*�1�3�/�)�6�2�+�,�*�1�-�&�4�'�.��-�'�*�2�&�%�8�'�'�/�,�0�(�-�5�0�-�5�1�+�0�<�%�%�5�$�#�,��%�$�$�.�/�2�&�$�.�/��*�!�$�4�%�&�0�)�-�.�/�/�/�+�6�1�#�5�+�(�*�#�+�5�3�1�-�8�0�.�-��7�2� ��+�'��-�$�1�2�*�2�*�,�-�1�9�4�)�+�*�7�*�2�&��3�.�,�*�2�0�+�3�(�/�'�,�#�/�&�7�/�0�(�-�,�%�-�,�6�,�1�4�'�)�8�3�)�/�#�*�'�%�0�1�/�;��+��:�0�(�(�*�;�(�.�,�5�-�&�3�.�.�4�5�9�'�5�!�1�5�.�%�4�&�0�I�)�1�0�,�.�#�7� �%�5�-�'�4�/�'�(�*�.�#�(�+�4�/�9�5�.�'�&�3�*�-�*�6�+�)�1�(��+�1�*�.� �2�/�.�@�+�1�3�+�;�(�7�(�,�*�4�5�:�*�)�+�/�3�6�1�'�@�0�&�3�)�4��#�*�0�9�3�6�/�(�3�1�9�3�!�#�&�3��8�,�,�'�2�*� �/�&�;�:�#�׀܀ـ׀׀րӀӀӀǀڀԀՀԀ׀ـՀՀـ׀׀ЀՀՁ,�4�3�(�=�0�-�/�&�)�-�/�7�*�1�/�6�5�0�.�'�+�0�-�*�)�+�;�'�0�1�0�2�/�9�1�8�(�.�)��:�&�6�1�'�.�4�3�#�5�-�+�,�"�"�&�<�3�4�/�(�/�&�*�$�'�<�)�/�"�3��/�/�.�/�5�+�+�+�4�'�+�+�,�3�$�*�6�*�8�+�$�7�+�%�+�;�/�,�:��7�7�#�/��/�+�%�A�'�.�,��$�4�)�/�(�*�,�0�3�&�.�8�)�(�.�(��.�'�+�"�.�&�B�)� �/��;�/�1�#�-�+�*�!�/�)�*�,�+�,�-�.�*�.�'�&�1�-�2�>�&�-�3�6�,�-�1�)�6�.�$�4�6�)�-�,�6�0�)�.�*�,�3�4�4�4�2�8�6�%�&�,�.�0�(�(�)�7�.�(�,�5�,�/�C�,�2�+�1�5�8�/�+�(� �2�%�2�2�'�#�2� �+�1�#�,�+�"�.�)�(�1�1�/�*�4�0�+�.�)��/�/�,�)�4�?��<�.�.�8�.�-�-�8�.�1�4�.�$�,�1�"�$�3�,�(�-�2�2�2�-�#�7�8�1�$�'�'�,�3�'�4�5��*�-�=�"�+�8�2�6�#�4�1�,�-� �1�8�0�&�#�)�$�*�!�1�%�3�+�1��$�6�/�8�3�0�3�/�%�$�-�+�(�>�%�/�%�9�1�#�.�0�+�,�6�*�0�:�.�&�/�'�%�*�&�8�3�0�3�)�.�/�8�0�/�/�0�7�.�'�-�(�6�(�,�9�1�#�,�5�+�*�3�)�0�.�&�2�9�$�.�#�9�7�,�8�6�)�%�3�$�-�*�,�2�*�,�2�,�!�7��*�+�&�'�+�/�-�3�'�/�,�5�>�1�'�;�<�;�(�4�/�*�4�1�/�(�#�,�7�2�#�*�2�:�3�0�0�4�/�3�4�;�*�0�/�4�.�.�(�0�+�@�+�4�A�+�&�2�6�2�5�)�0�5�)�/�7�)�6�(�.�(��1�:�5�1�5�)�1� �6�)�6�,�9�7�"�2�1�$�0�,�7�,�/�ӀՀ׀ԀՀـррՀȀڀـڀр׀ՀҀӀՀ׀ـӀـ؁6�3�0�-�5�3�-�(�0�2�-�1�"�.�+�-��5�6�(�.�0�)�1�:�$�)�!�'�2�,�+�1�0�-�*�.�6�/�.�2�0�.�:�2�/�5�:�,�5�5�.�,�<�.�=�"�+�/�.�'�(�-�0�#��2�2�0�)�:�"�-�/�9�#�4�$�-�/�(�9�+�1�1�,�6�&�$�!�+� �;�5�*�9�=�'�5�*�/�A�)�!�+�1�;�%�2�*�*�4�4�(�+�3�+�8�(�9�&�5�!�0�3�2�#�-�.�1�,�)�2�4�*�6�1�-�%�7�*�-�,�$�2�%�)�4�-�+�$�2�2�$�'�2�.�(�/�%�4�1�6�C�.� �9�#�-�1�2�3�3�/�*�&�?�'�'�(�7�%�;�A�#�*�'�*�)�*�*�'�;�$�*��*�.�9�)�4�2�7��B�6��5�,�(�+�#�:�3�'�9�/��A�2�4�(�5�/�,�)�/�.�)�/�2�5�3�4�+�%�&�$�?�5�6�(�$�0�)��6�+�2�&�*�+�/�2�)�4�'�1�-�3�6�(�&�)�0�/�,�'�'�.�/�'�)�5�-�5�-�!�7�4�1�;�%�/�%�(�4�*�)�.�'�-�/�9�!�0�2�+�4��1�7�2�5�3�/�&�4�1�0��+�!�'�2�8�&�$�3�+�1�/�!�1�'�4�=�-�1�/�*�9�0�3�7�#�*�&�4�3�*�/�:�(�0�'� �+�3�"�3�*�'�#�*�.�0�1�4�0�#�/�%�B�1�(�/�%�1�3�#�2�*�4�2�,�%�)�/�+�#�7�,�+�$�*�%�*�(�/�)�-�(�+�.�9�%�4�'�9� ��.�*�/�&�&�+�;�+�+�3�)�'�'�>�#�1�,�4�-�/�(�5�#�;�)�(�-�2�&�.�4�1�=�(�%�+�4�#�;�7�*�/�-�,�2�-�2�*�+�$�'�$�*�)�&�.�0�*�*�0�+��-�)� �3�1�5�+�0�;�3�:�5�:�+�6�+�.�)�%�*�:�4�.�6�3�)�(�,�7�!�2�:�5�,�-�&�7�-�0�.�1�?�,�!�%��%�7�ՀӀ׀р׀ـԀـրŀրԀԀڀӀՀ؀׀рـԀ׀؀ԁ.�$�/�8�?�1�=�/�+�1�,�4�*��$�.�5�6�7�'�*�+�$�,�1�1�1�7�:�.�.�/�7�4�5�*�0�0�*�)�6�<�'�.�0�(�<�-�,�&�1�/�'�-�2�+�8�'�$�#�0�&�6�3�#�*�)�1�.�0�/�#�+�4�C�+�&�3�-�3�=�*�2�.�4�0�+�!�0�-�/�9�+�2�4�-�4�/�6�&��"�/�:�8�(�*�>�(�/�,�/�,�+�(�'�/�*�,�(�1�)�%�'�)�$�*�'�3��'� �-�&�#�5�9�0�0�$�*�"�#�+�*�4�'�!�7�3�2�1�.�2��0�$�$�(�0�4�,�)�*�&�,�0�9�)�+��*�6��$�!�5�"�*�>�5� �2�0�(�3�-�7�-�*�&�(�.�-�(�4�5�;�-�"� �1�(�2�,�2�+�/�%�!�(�$�=�&�-�(�6�*�4�/�1�6�+�&�3�0�*�1�.�/�+�2�$�-�3�"�3�%�.�&�'�4�$�*�3�,�,�2�*�,�+�1�5�(�*�+�.�;�2�$�/�.�'�(�-�.�,�.�4�/�3�#�/�/�*�4��+�*�1�.�3�3�0�(�+�.�0�,�(�5�0�5�-�>�=�3�,�&�)�!�0��"�&�&�'�7�3�)�6�'�)�,�-�/�2�=�(�0�,��9�*��,�;��*�*�-�*�1�<�/�(�)�+�,�1�5�8�.�0�4�4�*�1�=�"�9��,�*�+�+�)�+�0�4�*�$�2�*�9�)�.�)�(�,�)�:�(�'��!�%�&�-�3�-�7�1�/�,�9�&�,�2�-�)�1�<�-�&�'�"�0�,�.�/�(�(�4�6�$�4�/�7�1�4�-�%�/�0�0� �&��*�'�5�!�)�0�.�;�-�+�2�/�2�2�4�/�)�9�%�.�-�6�/�?�#�:�%�*�*�6�5�/�+�$�/�;�+�+�;�1�2�/�4�*�'�,�*�8�2�-�$�)�-�=�6�7�$�5�/�'�2�.�3�2�&��-�/�-�4�3�5�1�5�&�/�*�*�3�,�(�"�-�*� �,�-�/�3�.�*�-�/�׀Ӏ׀ՀԀҀրڀӀĀ؀ӀՀՀӀ؀ـՀԀ׀׀Հ׀ց+�9�&�1�+�:�@�+�;�&�+�)�0�/�&�(�5�%�.�)�&�3�'�+�$�)�5�*�6�3�1�/�,�+�(�"�)�7�4�-�)�)�9�+�-�/�!�%�1�3�$�%�:�*�7�/�*�3�-�+�,��3�%�6�2�#�'� �/�-�3�$�!�/�+�:�2�3�-�0�+�-�2�+�6�-�+�%�+�-� �9�3�)�#�2�+�+�+�'�$��%�+�+�1�+�+�-�7� �6�"�*�/�-�0�5�&�+�/�1�,�<�*�%�/�1�1�(�'�.�4�6�#�.�*�*�!�-�1�5�$�+�2�*�5�5�/�+�6�1�;�,�)�,�2�)�;�'�&�1�0�;�*�-�4�/�9�2�%�A��2�-�0�>�+�(�6�/�3�2�;�0�*�2�'�1�-�2�3�+�*�6�0�/�+�%�3�7�.�.� �A�,�*�)�.�!�.�(�2�'�'�9�.�(�'�#�3�,�+�$�3�2�+�+�6�1�-�3�)�&��)�)�0�8�/�6�3�/�=�8�%�%�4�1�%�)�2�*�5�0�,�(�2�.�+�(�7�5�,�2�5�2�%��2�5�)�-�7�/�/�9�4�.�(�-�.�$�6�&�/�.�,�+�*�@�0�.�%�0��*�'�5�3�*�3� �:�)�&�$�1�8�!�6�1�)�+�5�2�/�.��4�2�9�,�.�/�$�8�!�7�(�)�4�-�4�/�+�+�6�*�3�.�+�.�%�+�&�2�-�)�=�5�=�3�,�+�,�:�(�)�6�%�-�&�)�5�3�2�2�)�+�3�$�6�,�0�)�1�.�3�'�*�!�1�3�+�#�*�9�+�4�*�'��+�&�*�*�'�7� �9�6�%�.�*�'�-�(�,�3� �&�5�4�-�*�1�'�)�1�,�.�)�+�0�9�&�2�,��-�'�2�&�/�,�8�-�)�;��'�1�%�/�/�'�1�!�$�+�>�6�%�0�1�0�,�1�"�6�,�2�/�*�%�/�/�0�#�'�>�(�'�-�*�.�/�)��.�:�-�!�)�,�-�-�%�*�)�8�0�.�+�3�(�*�&�1�7�,�,�0�'�9�+�2�.�-�B�րـԀڀԀӀހՀԀȀ׀Ҁ؀Ҁ׀рڀԀրԀՀրـ؁)�0�,�,�6��6�+�*�%�.�*�9�)�6�5�/�3�8�0�0�2�(�,�+�*�3�4�"�7�)�3�)�5�'�0�,�/�1�2�&�*�4�/�.�5�=�(�'�4�2�/�6�7�2�1�,�%�%�/�(�)�(�7�:�=�1�*�/�.�2� �/�.�3�5�*�&�'�%�+�%�,�3�/�-�'�1�*�4�,�+�1�5�-�3�8�!�4�,�2�/�7�3�&�5�/�%�&�+�2�/�.�!�+�;�/�0�8�.�*�+�3�2�)�'�'�#�-�4�8�,�6�/�+�/�2�+�>�,�%�;�.�+�'�*�+�4�'�=�1�0�,�,�8�+�'�5�%�!�=�1�7�'�8�1�+�+�.�,�=�*�+�3�;�5�-�$�"�+�5�1�-�4�$�6�8�9�-�)�$��(�+�4�,�'�0�*�/�=�/�-�-�+�3�(�,�-�'�1�.�.�;�.�,�2�8�&�)��1�9�'�"�,�7�*�-�=�,�(�4�+�1�/�+�!�,�&�.�)�'�(�2�*�*�:�3�4�8�1�+�*�,�%�/�,�&�0�"�1�$�&��%�)�3�#�3�'�7� �,�8�/�,�+�2�)�'�5�+�5�0�2�4�"�%�(�9�%�6�9�1�/�/�%�)�)�7��(�.�%�-��9�)�5�4�*�)�5�%�#�3��/�%�!�1�*�*�6�1�6�:�#�2�5�3�/�/�)�.�"�"�1�6�.�;�)�1�/��#��+�!�*�/��1�,�/�)�.�1�;�4�+�0�*�-�1�'�5�+�-�:�,�'�1�+�+�4�&�/�*�+�A�4�.�4�)�?�4�'�3�!�5�-�)�"�,�)�+�/�7�2�,�5��.�.�0�&�!�.�,�6�%�'�*�'�1�7� �"�'�6�,�/�1�)�3�'�9�'�1�?�&�0�.�$�*��'�*�)�1�5�,�)�+�%�)� �%�3�(� �5�'�+�"�-�9�1�0�1�*�.�.�1�1�;��+�7�,�0�/�+�5�%�2�9�0�3�.�&�4�-�0�*�(�8�(�1�1�+�9�&�7�3�*�.�6�5�&�%�+�3�.�K�2�3�3�-�,�ҀԀՀՀԀ׀׀Հ؀ĀՀڀـԀ܀ՀԀ׀Ӏ܀ҀրڀԁA�7�%�4�2�)�*�+�3�0�+�-�(�B�9�:�-�3�5�-�7�1�-�6�0�6�%�/�/�$�%�8�)�)�/��/�.�,�/�<�0�+�7�$�&�*�*�;�;�-�-�3��'�)�$�9�'�0�/�)�%�'�1�)�'�/�(�#�+�(�+�+�3�4�/�.�-�*�%�,�.�6�3�*�-�!�+�2�.�0�3�4�;�5�-�;�(�(�!��&�'�-�*�/�1�0�#�/�5�,�,�%�;�%�2��-�8�2�2�'�,�,�/�.�+�$�1�*�;�'�!�%� �/�.�*�7�%�2�-�+�'� �+�:�3�3�2�/�/��+�/�+�*�)�-�*�*�,�2�%�<��'�1�1�/�#� �5�/�&�1�)�1�'�,�2�1�%�'�3�,�0�+�1�0�6�(��2�,�6�1�#�#�+�.�(�+�.�$�+�3�1�1�(�9�$�+�,�6�)�/�9�6�.�$�2�(�(�!�,�2�"�6� �1�+�+�0�0�(��1�(�/�4�-�)�*�)�6�/�/�$�2�.�6�/�0�+�.�+�,�*�+�,�2�(�,��6�(�-��2�,�*�+�(�%�7�+�%�*�4�'�)�*�/�6�)�H�#�2�9�2�5�0�1�2�5�6�4�"�(�3�%�,�6�3�/�8�&�5�0�$�,�&�;�*�%��3�&�(�4�=�1�/�3�&�7��>�3�4�*�=�.��2�(�>�/� �,�"�/�:�)�"�3�)�-�$�-�-�D�)�.�6�"�,�'�%� �%�.�'�!�:�-�-�)�+�*�;�+�*�$�)�+�=�4�*�0�+�>� �$�8�&�%�0�7�+�/�;�$�'�3�%�-��*�-�-�/�,�-�*�5�"�-�-�3�*�1�(�5�<�1�3�'�5�&�$�/�3�:�5�'�'�,�6�+�2�-�:�0�$�/�/�'�6�/�-�#�(��(�,�/�*��8�#�#�%�%�/�2�&�"�)�0�1�2�,�$�1��/�2�/�*�+�&�.�*�!�5�'�%�1�"�-�(� �*�%�,�5�?�*�<�7�1�1�0�+�7�3�:�5�?�.�-�6�)�%�(�K�.�7�ۀր؀ӀԀ׀ӀՀՀÀրπҀ؀׀Ҁ׀Ԁ؀׀Ӏ؀Ҁց3�9�+�)�/�3�+�;�+�'�$�+�9�7�,�4�*�3�1�.�8�6�(�:�)�*�8�/�,�9�*�2�0�7�(�'�;�:�7�+�+�'�'�3�(�.�/�3�,�#�3�"�*��&�(�7�4�'�:��+�1�,�1�2�3�,�/�(�4�6�;�=�-�!�+�2�*�-�$�5�.�/�)�4�5�2�2�3�-�/�?�'�2�+�8�1�+�1�)�1�4�2�-�)�-�*�'�)�&�2�5�,�$�6�)�)�-�'��-�%�+�,�7�1�/�/�-�%�+�#�-�7�-�!�.�'�/�/� ��(�7�)�!�4�6�-�2�.�/�(�4�&�-�2�/�7�+��,�9�)�!�/�6�(�1�(�-�5�3�-�<�#�"�0�-�(�*�%�)�$�)�%�+�$�,�0�;�&�7�/�#�6�/�+�1�&�#�1�0�0�3�'�2�2�*�'�;�#�/�+�5�-�9�9�"�0�3�.�(�2�)�"�(�)�0�'�/�0�2�-�'�)�+�7�9�&�4�0�1�9�0�1�)�7�#�8�)��*�3�*�*�1�)�"�0�9�&�5�*�'�.�%�5�,�+�&�1�,�1�+�/�'�6�0�)��3�+�1�/�)�$�2�*�(�/�3�8�(�3�,�8�/�"�0�2�:�*�$�*�3�1�-�)�+�1�-�*�>� �-�+�9�&�,�)�9�*�,�-�5�1�6�!�0�)�2�,�-�4�!�+�'�+�-�5�2�6�-�2�1�/�7�/�1�-�5�2�$�0�-�3�9�.�-�/�5�'�2�/�:�.�&�*�&�7�*�7�2� �1�1� �0�2�)�'�7�B�-�$�6�-�?�5�<�!�G�,�,�4�+�6�3�*�)�0�/�2�#�4�8�#�0�&�;�#�%�4�8�+�/�-�6�0�)�.�;�'�/�1�A�-�+�*�7�*�-�A�,�4�.�4�+�)�-�'�&��,�2�2�+�0�-�.�.�4�)�(�5�2�,�*��%�*�)�-�/�.�/�/�.�.�,�0�)�4�2�*�+�.�,�1�9�.�*�0�.�'�;��&�9�6�:�1�-�-�%�8�4�)�4�)�-�/�0�2�4�)�1�0�+�/�ԀԀ؀ҀрڀрۀՀȀ؀΀ՀԀ؀рրԀԀــՀԀ܁<�3�1�,�:�)�"�5�+�,�&�+�.�0�)�5�7�7�.�*��'�8�+�6�4�3�7�8�7�%�#�5�0�3�=�&�8�5�6�'�.�/�6�&�3�*�!�'�7�*�1�.�7�,�2�.�+�,�2�)�+�?�+�#�9�,��-�&�%��1�+�1�0�&�,�-�2�2�&�6�8�2�-�4�>�/�/�,�3�0�0�3�2�E�-�=�+�$�,�*�'�:�*�/�*�2�/�%�2�+�,�4�.�3�7�/�4�-�#�+�+�-�%�0�6�&�+�6�6�1�1�=�9�"�)�*�/�-�1�3�2�$�&�%�2�+�&�+�/�-�1�4�0�;�#�1�/�8�,�0�#�%�4�0�#�7�3��3�.�/�,�2�*�2�,�+�6�0�(�7�5�)�(�/�,�&�1�/�2�#�7��.�$�(�,�%�:�7�)�+�4�7�&�&�-�3�4�0�:�6�1�/�/�4�6�*�-�2�(�>�#��+�$�/�"�0�"�*�3�*�3�)�3�#�%�&�1�+�7�/�/�(�&�'�#�1�+�0��5�0�(�,�-�-�%�-�-�(�/�*��+�0�*�'�'�)�1�(�3�@�%�/�-�%�"�,�$�/�4�;�3�&�/�2�,�(�8�8�+�D�,�=�2�.�&�'�/�$�0�*�-�)�/�%�-�-�-�+�#�(�+�0�=�%�(� �5�%�5�?�2�*�.�%�#�5�2�*�2�,�5�8�2��-�:�0�/�'�6�2�6�7�;� �4�4�1�#�-�6�/�4�5�1��-�$�7�6�;�2�2�2�-�+�#�/�)�'��5�1�'�0�-�-�)�2�*�/�*�8�0�1�5�2��)�8�+�*�%�)� �1�,�7�&�6�-�-�,�/�,�%�$�=�$�)�.�6��3�,��"�?�.�-�-� �+�1��.�2�-�$�(�1�*�1�2�9�/�%�9�4�1�/�0�/�4�5�-�.�,�)�5�+�&�$�1�$��2�&�)�3�$�4�;�-�7�&�1�1�,�)�#�2�'�.�/�'�&�'�'�1�2�-�/�1��'�"�,�5�,�7�-�/�#�'�-�*�%�3�.�#�#�0�5�ۀۀրրڀрՀڀ׀ǀ؀׀րրҀՀԀۀՀԀπӀ؀ԁ3�&�$�5�0�:�3�*�,�*�5�6�4�5�5�,�-�4��*�/�(�9�)�%�+�<�1�/�'�+�=�1�4�=�4�2�(��)�&�8��&�/�0�.�1�5�7�5�'�*�*�/�-�0�2�9�5�1�1�3�+�-�)�6�3�*�-�*�/�0�'��2�0�)�'�-�>�.�0�2�&�4�$�%�3�-�<�/�;�$�4�<�&�/�.�3�)�+�(�+�4�-�+�&�3�3�:�:�*�,�,�4�)�%�%�%�(�-�/�.�2�)�,�;��'�1�1�+�2�4�0�+�1�-�)�'�2�(�"�$�(�,�*�6�5�+�)�%�>�/�6�$�#�7��0�-�9�,�0�&�,�%�3�1�2�*�1�+�/�)�,�(�,�+�&�0�+��/�#�+�/�*�+�+�"�0�2�0�.�/�'�/�+�7�.�&�.�0�'�,�7�-�5�2�"�(� �'�5�1�#�3�;�-�:�/�1�'�)�2�1�)�9�)�*�'�?�#�7�'�+�&�/�:�(�+�4�)�/�+�)�'�9�1�!�,�#�*�.�)�5�+�,�)�.�2�$�*�+�0�2�2�:�>�)�4�6�'�$�%�"�-�2�5�/�3�+�.�%�/�7�*�<�3�&�&�(�*�0�9�*�3�-�5�-�/�+�&�7�,�1�-�+�"�0�/�,�-�3�%�"�.�+�/�-�,�*�=�)�/�$�-�*�0�(�.�/�%�9�+�'�*�(�8�'�*�(�*�2�)�5�'�.�&�+�;�#�2�+�*�/�:�'�(�+�%�0�6�8�'�)�0�5�@�/�<�1�$�/�-��>�7�#�+�-�%�-� �,�$�.�,�2�"�/�3�!�.�-�7�$�)�0�.�&�4�.�&�3�(�E�3�;�+�(��%�-�-�@�7�/�-�)�9�=�7�5�+�0�5�8�.�+�2�)�.�*�-�)�-�2�6� �/�2�/�-�'�-�0�)�7�+�*�,�7�,�-�)�'�4�6�0�+�,�2�2�.�0�9�+�-�'�8�1�/�+�B�&�3�/�5�3�.�/�/�:� ��+�&�+��(�-�6�/�5�(�&�!�8�0�.�&�(�6�%�-�4�0�-�%�؀ҀրҀՀрـҀ؀ȀՀԀҀՀ܀؀րր׀ՀրՀՀׁ;�)�2�+�8�&�/�)�&�)�.�2�5�%�4�)�5�-�0�(�A� �,�)�<�*�6�:�$�&�0�<�3�9�'�7�*�1�+�0�$�,�2�.�7�6�,�/�1�/�"�"�0� �5�1�&�'�5�,�2�3�,�!�0�-�*�.�0�>�3�)�)�3�#�,�+�'�'�-�,�9�)�+�$�-�/�&�'�-�)�/�1�9�*�2�-�)�+��9�,�4�,�/�&�!�1�5�*��!�5�6�"�%��)�8�-�*�/�/�#�/�-�'�*�*�9�3�*�-�'�$�/�@�-�5�2�.�-�+�:�0�$�/�+�2�+�+�,�(�-�)�.�-�)�0�-�)�5�.�/�#�+�/�4�-��#�(�3�5�&�0�1�*�-�;�;�3�"�)�(�0�*�5�/�;�)�(�'�8�%�/�7�0�/�$�8�*�&�.�-�6�%��%�'�1�4�3�6�!�%�-�7�*�/�-�/�&�9�)�2�,�*�2�6�'�+�1�=�#�/�/�/�'�&�.�&�1�*�)�C�#�*�*��$�+�2�-�,�%��%�0�)�+�/�'�)�#�3�1�(�-� �0�-�1�2�%�1��'�4�+�.�$�4�)�4�%�-�5�(�2�7�3�1�&�*�<�,�7�6�8�,�4�4�8�2�.�,�)�1�,�7�&�3�/� �1�)�(�.�#�$�2�1�.�9�,�3�,�1�0�2�5�&� �7�*�#�5�+�:�-�*�(�6�5�2�+�#�*�2�+�*�+�(�,��'�"�*�*�5�-�E�2� �/�%�0�:�-�-�/�6�-�(�$�� �*��*�$�/�/�,�(�.�,�7�1�'�,�&�0�4�)�1�*�4�*� �-�7�:�-�%�5�,�)�!�-�0�+�3�4�0�/�9�5�0�'�7�-�,�'�:�2�6�'�2�0�.�0�+�$�-�%�$�-�,�#�<�+�/�"�1�%�1�*�?�"�;�/�,�"�%�.�1�/�5�#�/�%��*�%�,�3�*� �(�<�/�5�&�4�.�6�0�9�%�1�C�5�,�7�0�3�3�3�#�:�-�*�-�.�)�2�7�+�2�-�-�4�3�4�&�1�&�6�2�<�րր׀ӀڀрՀԀՀ̀׀׀Ӏ׀ڀԀӀԀـԀՀҀـс'�$�,�(�-�5�&�$�1�>�'�4�,�+�0�(�+�4�)�&�8�/�)�/�,�5�/�)�.�/�.�2�+�,� �7�=�%�*��1�7�;�;�!�+�/�@�1�$�/�7�3�6�D�3�-�(�%�$�/�+�&�*�1�&�;�)�&�8�,�(�&�6�8�(�)�6�&�&�9�+�+�#�*�'�4�3��#�)�+�-�+�0�%�*�#�7�7�*�1�.�$�#�!�<�'�/�)�-�7�>�0�0�:�3�5�1�*�%�9�5�0�-�-�B�+�8�.�8�;�"�6�6�5�5�$�3�A�(�$�:�.�1�3�3�'�0�%�*�/�-�1�0�.�/�/�0�/�0�%�2�1�,�-�1�:�.�8�/�.�%�*�,�.�4�$�*�%�@�9�$�(�(� ���$�5�.�/�2�4�$�/�.�-�)�/�?��/�5�!�/�3�'�"�,�+�2�-�+�+�1�.�-�-�!�3�/�*�-��/�,�)�*�6�,�/��1�/�*�3�/�/�4�%�*�1�;�)�#�*�/�-�3�$�1�%�.�8�$�6�6�*�-�$�1�1�1�5�$�2�4�2�*�+�*�(�-�$�6�.��"�6�,��*�&�4� �3�/�1�)�:�"�'�2��6�,�7�#�9�,�?�!�.�$�+�*�&�0�%�1�(�$�.�'�2�"�(�(�(�=�"�;�3�.�4�8��(�8�:�/�8�*�$�7�'�?�3�0�$�0�5�,�;�1�<�1�+�-�0�'�)�#�'�2�/�%�.�,�(�3�2�-�%�"�'�5�0�5�.�/�0�"�"�1�+�+�4�3�0�2�'�0�*�0�4�*�4�,�:�%�*�7�*�!�3�/�%�.�"�/�(�2�2�2�+�(�1�)�-�$�+�.� �-�+�)�0�+�.�+�$�6�-�6�3�(�'�2�/�0�$�(�4�0�)�,�#�&�.�%�*�$�,�*��+�+�$�*�9�3�*�4�,�9�3�/�.�)�0�'�;�5�0�2�*�7�6�(�*�!�3�-�5�;�/�"�+�+�/�+�&�>�6�1�5�#�0�1�6�)�$�(�(��/�/�)�-�/�:� �/�2�5�5�)�8�>�6�րـՀր׀ՀـڀـǀՀՀЀۀ؀πҀ؀؀րՀӀр܁�$�-�@�$�'�'�*�/�*�*�3�,�%�+�6�4�7�:�+�+�5�-�,�8�-�+�+�2�>�+�*�*�4�8�8�,�'�)�*�,�+�!�7�8�'�$�*�6�5�)�&�-�-�+�/�<��)�*�'�(�,�1�&�&�"�6�7�7�:�5�1�0�0�8�3�0�,�*�3�5�4�3�7�3�1�5�)��(�7�0�+�7�)�1�+�3�+�&�;�1�7�+�%�$�5�8�-�*�/�/�&�4�2�5�'�/�9��*�5�;�2�0�,�%�2�/�6�0�<�%�&�+�0�+�0�8�%�*�;�1�-�'�/�0�8�-�*�3��1��0�7�:�3�(�7�)�:�.�)�#�+�+�1��&�*�5�'�/�;�&�:�,�%�,�7�(�1�3�1�.�%�$�!�-�-�8�%�2�=�(�,�0�"�,�0�,�*�.�3�.�/�+�'�'�7�2�6�-�0�%�+�6�/��!�,�#�+�)�"�(�&�.�4�/�(�+�4�.�=�3�*� �$�2�'�/�>�3�'�,�$�2�&�/�*�-�-�#�9�2�4�5�7�/�7�5�*�(�.�)�(�3�.�+�$�1�&�7�/�9�+�>�7�/�-�?��-�.�)�'�9�3�)�0�6�8�/�;�7�3�9�"�)�4�4�5��,�*�/�(�!�5�+�+�/�/�"�*�(�4�(�2�-�+� �2�"�7�3�.�5�0�/�,�.�)�+�&�5�7�'�'�&�,�.�+�4�-�/�"�"�-�&�$�$�2�,�&�-�'�-�'�%�7�1�#�&�7�,�6�+�/�(�0�"�.�5�5�"�(�6�0�,�*�"�5�$�5�*��1�8�,�(�+�3�#�!�/�)�"�1�%�7�+�$�.�)�-�.�1�,�.�(�-�&�,�/�2�@�0�2�2�*�0�-�$�#�/�%�#�<�.�(�-�3�(�/�#�5�<�*�1�2�-�+�7�-�0�*�(�;�5�6�&�#�+�&�&�3�0�.�,�7�0�*��:�+�-�<�0�2�*�1�,�/�.�2�0�(�+�/��.�;�1�0�)�'�,�(�6�0�2�*�,�&�7�0�2�4�,�1�(�*�-�5�0�+�/�9�ـ׀ڀ؀ـՀ؀؀рȀրՀրՀՀՀـӀ׀ӀրՀЀՁ8�.�,�+�2�3�@�;�*�4�4�/�5�5�*�:�2�,�?�1�*�6�9�)�2�?�2�1�+�6�0�9��-�:�;�4�<�&�.�+�5�*�-�-�5�0�)�5�8�3�'�)�+�'�2�&��&�5�<�6�.�(�6�.�,�9�.�+�%�)�6�$�&�&�1�0�.�:�,�'��+�0�2�.�&�?�+�1��>�3�)�/�)�1�>�)�4�(�/�1�/�%�+�)�*�!�$�'�$�+�+� �/�-�-�>�6�.�9�/�/�)�/�0�4�8�;�0�3�3�*�!�+�,�!�$�"�+�)�:�1�2�,�'�<�!�1�-�#�,�5�#�1�$�/�#�3�2�4�$�/�3�/�-�0�,�2�.�1�1�2�+�'�-�>�0�.�2�2�.�$�.�+�1�$�)�+�/�&�(�6�+�4�,�8�/�*�(�2�!�+�0�)�3�+�(�*�+�5�5�.�6�2�+�'�+�*�5�#�-��-�&�0�6�,�/�$�1�*�-�)�-�1�+�'�.�/�4�-��1�%�-�2�7�A�)�3�&�-�&�#�$�(�/�5�9�*�3�&�;�(�+�'�;�/�+�3�.�?�5�*�$�/�)�+�(�-�+�1�/�1�+�,�5�%�-�$�)�4�7�,�+�>�:�5�:�4�8�*�(�,�<�0�1�!�.�(�$�.�6�)�+�.�3�)�3�6�&�4�/�+�4�=�/�3�1�&�)�?�,�3�%�*�/�#�-�1�1�)�8�-�%�'�0�3�/�.�.��-�)�)�1�-�4�+�%�5�'�5�1�.�1�3�4�*�-�9�*�/�0�%�@�/�1�0�7�(�1�1�)�,�)�)�)�9�-�,�#�-�$�+�%�0�7�.�*�/�1�:�+�8�/�2�(�/�+�"�.�/�,�7�*�0�.�!�>�+�(�;�(�.�4�!�2�)�+�&�-�+�&�0�/��5�(�/�,�'�1� �/�,�>�#�-�)�/�5�7�:�)�(�'�(�2�-�-�7�%�+�.�/�)�(�(�+��6�$�'�3�'�)�)�+�,�4�"�6�$�(�0�*�7�8�?�5�.�4�'�>�&�'�#�#�2�.�*�0��/�+�0�)�&�рـрՀ׀ՀՀЀ׀ȀԀ׀Ѐ܀րррـрڀ׀׀ـՁ,�,�1�&�.�&�@�'� �'�'�.�$�,�3�(�+�,�)�&�4�&�)�7�&�#�9�7�8�-�1�(�7�4�/�/�1�+�3�1�-�$� �-�9�6�.�*�+�*�,�-�2�3�1��/�*�,�*�-�3�3�.�!�,�*�+�)�4�6�'�5�*� �)�2�&�*�/�5�-�+�4�4�.��(�2�.�/�+�3�2�/�1�9�.�4�(�$�)�:�)�/� �/�"�'�#�/�%��-��.�4�!��*�-�)�"�%�(�+�0�,�/�:�0�2�,�'�%�2�/�2��(�-�1�.�3�*�/�4�)��3�-�1�#�-�0�&�0�#�2�.�,��,�.�5�+�-�,�:�1�-�$�-�'�0�/�'�7�/�/�2�9�7�,�3�)�*�7�'�#�,�3�(�+�&�.�)�3�6�#�'�8�6�+�=�5�%�-�0�/�,�!�5�0�,�)�)�%�0�9�,�7�5�,�,�1�9�+�6�$�,�5�$�'�/��"�7�7��<�.�=�.�%�2�,�*�.�+�8�0�,�3�,�5�0�2�)�.�-�,�I�*�+�'�*�/�&�-�.�/�*�%�&�8�(�!�)�7�-�2�7�0�0�3�2�(�.�1�-�4�#�:�,�5�+�,�3�/��/�!�0�=�'�1�1�$�/�#�&�%�%�&�'�*�!�4�-�/�'�.�8�)�/�0�-�3�'�.�+�3�-�.�6�)�2�-�(�$�(�.�/�7�#�*�)�'�5�)�/�1�+�-� �%�"�6�4�6�'�.�/�8�-�*�.�#�,�+�-�,�.�1�;�#�7�-�$�/�6�=�,�2�4�5�.�"�5�'�2��2�1�/�,�"�/�,�%�=�.�/�#�&�?�,�4��(�$��2�1�7�&�(�4�'�3�4�5�'�/�'�+� �=�*�-�7�-�)�.�&�8�.�1�*�@�3�+�1�"�-�/�%�(�-�*�.�.�+�1�6�-�-�&�+�7�*�%�'�2�6�9�6�>�7�/�%�/�)�0�-�=�,�'�6�1�.�/�!�-�*�+�<�9�0�9�,�-�/�2�'�/�!�(�'�4�3�&�7�1�9�-�/�/�8�5�$�ـրրр׀׀܀׀ӀʀӀ׀Ӏڀ܀рԀڀӀҀڀ׀׀ځ(�6�,�.�3�-�6�3�*�#�5�0�2�-�7�6�4�.�(�2�4�4�0�8�,�(�1�*��5�8�6�"�&�/�0�)�#�4�8�9�,�"��(�?�@�3�+�&�;�#�*�*�/�5�A�;�4�(�&�4�9�'�)�5�$�,�%�8�9�-�5�7�9�+�,�2�.�/�*�0�6�&�)�6�-� �&�&�4�.�/�'�2�C�*�1��(�-�(�<�/�'�/�1�(�.�3�1�'�'�(�(�*�1�/�.�+�(�4�2�+�1�,�)�0�3�/� �6�2�+�6�4�*�-�8�6�)�.�-�(�)�$�/�%�5�(�(�-�,�(�/�/�(�*�-�5�9�%�1� �1�-�3�2�7�/�5�(�*�'�0�3�(�%�D�&�$�/�/�,�&�/�*�<�/�-�6� �4�9�.�5�1�+�8�5�5�$�#�3�3�%�5�2�&�+�-�*�0��#��9�$�1�"�$�-�,�B�&�7�-�(�.�3�$�,�,�7�<�<�,�.�8�/�1�?�.�.�8�0�,�/�4�.�0�%�*�/�'�(�-�,�.�)�3�,�-�&�6�,�2�4�,�4�!�9�(�4�'�5� �*�0�1�1�1�1��%�*�2�%�4�3�2�.�-�0�4�0�/�(�+�6�5�0�+�5�'�)�,�'�-�6�)�9�*�6�0�5�-�;�/�+�0�0�0�5�@�8�'�+��5�;�-�-�'�/�'�0�.�;�3�+�5�$�7�4�'�'�&�)�(�'�(�2�(��&�:�;�9�/�+�"�/�'�.�4�)�2�'�,�5�'�/�+�-�'�4�-�2�,�#�8�/�(�,� �2�/�4�%�*�!�/�$�(�$�&�3�$�(�(�/�.�,�3�<�)�*�(�$�+�6�)�$�3�7�5�8�'�7�%�$�0�)�/�5�,�;�4�(�)� �"�(�-�2�.�-�3�)��*�4��,�/�/�� �1�7�+� �+�5�-�*�+�-�8�)�/�"�/�2�(�1�*�$�,�1�6�6�.�-�+�/�2�-�/�(�*�.�2�&�,�,�*�+�%�:�%�)�+�2�+�*�&�/�/�2�1�6�'�7�*�(�*�1�+�5�4�ր݀ҀــրπӀр€ڀր؀ՀրЀހ؀ڀԀӀـۀׁ(�-�9�'�:�-�-� �'�.�!�-�7�/�)�8�@�1�/�(�#�1�1�@�9�3�%�-�2�.��%�-�,�5�/�/�*�1�,�3�$�'�%�+�/�%�(�2�;�7�-�.��>�2�*�)�&�4�1� �(�1�"�#�0�-�;�7�)�,�,�(�9�0�+�/�,�.�>�'�0�2�+�1�9�2�'�7�!�1�*�'�!�-�-�,�+�#�E�.�2�6�,�,�0�*�0�9�=�.�&�)�%�$�'�)�2�+�-�9�1�*�2�1�$�/�1�0��$�-�:�2�/�$�7�'�9�2�2� �.�(�3�7�+�2�1�9�%�7�2�/�'�3�1�-�/�7�+�#�*�.�*�.�4�/�'�"�,�+�'�7�1�1�'� �8�1�,�-�7�:�5�'�1�4�0� �+�*�.�9�#�.�/� �/�1�6�2�.�2�)�1�+�(�'� �0�5�-�*�+�+�1�&�0�:�1�!�)�1�)�3�*�0�3�9�/�.�&�%�3�*�'�*�)�.�1�2�,�&��+�2�2�.�5�4�'�/�;�-�3�/�!�(�5�4�-�2�4�*�0�2�.�'�=�+�5�%�/�:�9�3�*�+�3�2�,� �+�*�6�,�(�/�<�)�+�=��.�+�-�.�-�'�4�.�-�(�3�/�3�,�*�7�9�8�5�-�7�3�+�-�3�!�#�-�:�,�9�3�)�/�1�2�/�5�8�!�/�)�1�)�,��3�-�7�0�#�(�0�0�*�3�9�"�(�-�$�)�)�)�(�%�+�-�6�.�(� �(�2�*�4�0�0�+�/�0��6�*�)�3�2�3�+�'�+�)�%�*�(�?�%�(�'�)�)�/�:�)�9�+�0�8�2�1�0�.�/�2�1�2�'�3�,�#�6�,�/�2�)�2�8�<�$�2�4�)�1��$�7�3�4�8�1�,�3�'�,�4�<�(�0�-�.�1�8�#�1�3�+�.�(�$�/�!�/�8�(�.�!�3�"�%�3�+�7�-�$�7�7�-�4�/�+�.�)�1�1�#�4� �(�.�*�)�(�!�.�'�3�'�0�#�9�7�<�7�-�+�;�)�5�0�'�%�.�&�4�B�*�4�ր׀ـ؀րـрـπĀӀـ؀ӀӀۀՀ؀Հ׀ӀՀր؁5�/�!�.�(�6�#�,�3�1�(�*�'�7�'�0�2�B�'�:�6�+�0�:�2�+�'�/�/�&�'�>�0�%�:�3�4�7�3�$�1�2�,�'�>�2�+�'�6�/�,�+�/�8�1�5��'�3�'�.�,�3�0�*�*�+�+�!�1�1�)�E�;�0�0�&�9�0�)�9�&�=�/�%�2�#�7�3�*�2�+�;�9�1�/�#�)�5�/�"�*�+�:�%�/�,�,�C�1�*�*�=�%�;�)�.�/�,�"�8�,�2�$�,�6�1�&�/��3�.�.�/�)�%�-�7� �-�.�6�/�;�*�1�&�<�&�3�&�)�'�*�+�!�/�,� �8�&�$�.�%�%�+�)�(�7�'��1�5�&�6�;�2�0�+�7�(�*�6�1�,�'�5�7�(��&�,�5�0�B�&�1��*�2�"�%�8�*�&�.�,�/�-�1�.��+�,�7�/�4�.��-�%��3�%�2�$�+�2�/� �/�(�9�*�0���5�:�3�6�)�7�1�.�-�7�$�(�3�(�!�)�6�'�0�'�'�&�"�1�(�4�1�(�#�5�(��$�)�+�1�2�4�1�;�&�+�1�3�1�6�)�#�-�/�-�*�%�&�$�-�0�:�4�6�2�%�6�/�*�(�/�6�%�#�-�(�8�1�0�2�(�$�4�4�5�%�&�5�3�4�6�2�/�1�-�-�/�9�*�1�7�%�*�.�"�*�2�&�/�(�-�7�&��/�&�,�!�1�/�+�*�*�6�-�4�,�6�#�-�/�(�2�,�/�-�'�%�/�:�#�*�5�9�7�(�-�.�:�7�%�-�/�3�B�1�0�3�1�*�J� �1�'�0�2�-�-�0�*�/�>�(�-�+�7�*�/�0�-�+�,�%�<�*�=�+�(�7�)�&�*�5�-�.�4�8�3�-�-�8�6�9�5�2�0�0�3�)�#�4�2�.�/�-�(�,�)�.�1�3�/�:�5�(�,�$�2�,�3�,�'�)�B�5�.� ��/�-��/�+�+�-�7�,�.�6�+�4��-�1�1�5�3��5�3�3�@�#�<�'�;�<��,�6��4�"�7�)�%�'�'�,�Հ׀ր׀ՀҀۀπ׀̀΀ـՀڀۀ܀ӀۀՀՀ؀؀ۀс-�)�7�#�&�/�'�4�3�$�*�3�5�)�/�1�3�.�/�,�&�-�-�4�!�*�2�1�.�;��/�(�2�1�&�.�4�:�1�+�-�#�&�7�!�!�3�2�$�5�8�%�G�6�+�3�;�/�/�(�1�4�+�'�+�+�+�'�(�1��+�-�2�$�)�.�-�+�9�+�"�?�5�0�*�-�'� �!�+�'�B�2�*�#�5�7�+�+�8�:�%�(�+�&�2�4�-�5�7�%�2�,�.�-�7�7�/�0�8�/�.�*�.�5�%�5�,�'�4�0�'�5�&�-�5�2�-�2�.�1�-�$�0�%�+�/�.�&�1�.�-�*�/�7�!�&�2�*�2�"�*�*�&�$�/�-�)�&��&�.�%�)�0�!�+�"�4�(�&�%�3�)�.�1�/�0�+�,�)�,�/�-�(�8�/�$�/�+�0�)�.�(�/�#�.�)�4�*�'�-�,�:�0�8�1�'�9�-�,�,�-�?�)�0�&�!�'�7�-�8�?�0�-�(�%�/�3�4�6�2�'�+�+�(�<�(�-�'�*�-�.�>�5�!�'�%�>�5�=�0�/�(�)�(�)�(�+�9�'�!�6�.�/�.�0�/�0�5�1�8�.�$�?�,�+�7�'�9�/�*�+�0�6�7�/�(�'�0�1�3�1�+�$�/�,�,�0�8�'�2�,�1�,�%�-�;�4�4�0�7�-�*�9�-�)�.�.�(�/�/�0�&�-�2���.�(�/�+�)�?�/�*�2�*�%�.�)�<�,�.���*�/�6�+�-�*�&�0�9�*�.��,�1�1�0�.�-��9�8�-�)�)�/�/�+�)�%�/�2�)�7�'�1�.�*�6�*�2�/�3�.�4�6�6�0�/�2�&�%��/�4�/�1�8�4�&�9�4�(�-�4�,�-�0�'�4�.�'�&�*�.�.�'�,�1�.�1�4�5�-�-�$�&�.�&�*�2�%�?�-�4��$�/�6�*�/� �?�/�� �-�"�-�(�5�,�9�.�$�-�,�1�(�+�9��3�*�-�2�0�3�-�-�)�3�,�4�-�2�,�7�(�/�<�&�+�+�2�6�9�&�1�)�2�)�B�3�+�׀ـڀڀـӀՀՀ؀πӀӀ׀րۀրҀр܀؀؀ӀԀӁ9�,�,�#�)��4�0�*�7�)�,�'�2�.�0�1�&�7�+�1�4�:�*�*�+�-�,�'�*�.�1�0�)��#�&�7�'�3�)�0�2�5�-�)�$�)�!�6�3�3�/�%�9�3�%�*�:�3�1�3�(�.�/�*�(�,�6�5�3�%�3�0�1�1�*�-�3�(�*�'�.�/�/�5�/�%�3�(�(�/�-�/�'�&��.�/�!�'�+�)�2�7�0�2�:�,�'�C�-�2�:�3� �9�1�:�2�2�;�+�2�0�-�.�/�5�3�*�3�!�6�.�.�)�'�9�3�?�+� �5�0�.�2�'�2�3�)�(�+�0�*�,�/�(�0�!�%� �<�,�4�)�:�0�3�1�+�"�-�<�6�(�'�1�'�5�-�6�,�"�4�2�?�6�7�.�1�-�-�)� �5��*�/�3�*��.�6�1�%�$�-�+��1�0�@�7�(�(�0�1�5�1�-�"�3�/�,�)�"�&�0�(�)�%�"�<�/�=�3�/�1�-�+�0�2�&�/�;�7�/�&�/�(�+�J�)�*�1�*�+�+�!�3�5�+�/�.�'�8�-�9�(�5�1�?�.�/�-�2�-�6�(�/�+�F�)�(�7�!�;�"�3�&�.�%�-�(�*�-�1�-�'�)�$�:�1�-�7�,�/�(�(�5�4�1�,�5�)�"�0�!�+�4�0� �'�0�(�'�,�4�'�,�-�0�1�*�-�+�#�!�=�#�3�-�-�-�/��#� �#�,�:�/�2�#�.�-�.�+�$�0�(�.�&�-�3�7�1�0�4�-�+�(�&�-�0�3�.�/�&�9�*�3�*�"�(�#�/�(�5�;�.�1�6�5�1�2�6�(�0�3��+�)�-�#�)�,�)�#�4�0�A�>�-�,�4�:�9�/��-�3�7�7�(�9�,�/�>�2�)�6�7�6�)�+�&�&�0�#�/�*��$�)�/�2�8�(�2�)�4�.�.�*�1�,�)�0�-�1�-�1�/�3�*�1�'�/�)�<�3�E�,�%�2�3�%�1�-�&�-��&�5�5�!�'�(�O�&�=�8�7�0�(�5�1�8�(�(�.�,�+�-�,�0�4�)�'�'�׀ԀՀ׀ـڀ׀րπÀـՀ׀ـ׀׀ـڀրҀ׀Հ؀Ӂ6�)�/�+�7�/�)�7�0�)�4�.�+�)�'��2�+�!�+�0�)�&�+�'�5�2�!�,�*�1�)�4�'�5�+�3�)�/�'�5��1�/�1�+�/�*�3�/�!�(�/�1�6�0�@�"�1�3�;�.�/�-�*�0�!�/��1�(�*�#�1�=�:�/�0�1�E�:�/�/�'�.�/�-�*�-�>�'�/�"�4�(�4�+�3�-�.�)�/�*�)�9�*�$�?�.�8�#�8�7�5�*�"�'�-�,�,�-�#�8�%�9�<�1�&�?�2�#�'�&�/�-�#�&�'�0�.�(�'�$�)�/�7�;�/�4�*�%�-�*�"�2�8�-�4�#�0�2�1�1�0�+�9�4�/�5�4�5�4�+�9�(�+�'�7�1�.�:�5�4�3�5�&�5�/�;�8�#�/�*�0�2�/�#�9�9�'�(�5�9�5���,�9�2�/�%�"�/�'� �/�1�,�2�.�)�-�3�#�%�)�<�3�1�>�>�3�4�5�&�&�;�%�!�0�)�&�4�(�'�#�7�,�&�5�&�'�1�*�2�2�+�-�!�$��%�(�2��&�)�/�/�(�0�-�,�5�)�,�)�6�!�/�=�"�(�,�%�%�,�1�-�;�9�?�%�*�:�4�'�3�-�,�$�5�0�.�+�&�'�/�.�/�@�2�&�%�/�.�"�5��4�%�'�,�4�.�$�4�,�9�2�$�#�;�%�.�0�)�*�;�5�(�.�7�'�,�1�+�*�2�3�:�$�5��,�!�&�,�,�-�6�#�/�B�+�,�-�-�,�(�)�%�/�+�,�,�+�(�6�*�3�9�"�'�6�'�,�%�1�/�*�0�4�'�'�=�$�+�4�'�&�D�3�6�:�$�7�2�*�2�*�+�2�0�'�.�5�6�%�/�7�2�%�+�8�.�8�1�5�;�"�3�0�#�5��1�*�)�8�,�(�.��,�*�;�7�0�2�*�.�,�,�"�)�;�&�0�0�0�#�,�)��5�(�#�#�-�2�)�,�(�(�'�,�>�1�%�5�+�2�+�>�0�&�*�2�*�/�&�1�-�$�&�2�)�1�-�"��#�/�+�%�1�0�(�5�0��ـــӀՀ؀ՀԀҀ��ڀـ׀ـ݀ڀ׀Ԁ׀րڀ؀܀Ӂ(�/�-�7�%�$�3�8�(�.�:�%�,�8�8�3�+�-�*�/�5�4�.�(�6�-��)�0�4�&�-�<�9�� �-�1�4�)�2�6�.�+�/�+�B�(�4�5�#�7�'��3�&�/�'�(�9�&�'�1�!�8�.�8�.�)�4�0�2�5�)�<�%�0�5�"�.�,�3�0�2�6�%�5�+�1�0�3�/�)�,�0�+�)�)�,�3�2�7�&�+��-�3�-�,�)�3�2�0�.�*�(��3�8�5�1�=�/�.�'�&�,�5�$�'�,�.�0�/�:�!�3�,�5�-�+�-�/�+�+�.�9�+�-�&�#�0�9�(�/�*�3�*�3�-�=�-�4�3�1�0�.�.��2�/�9��1�6�)�%�7�7�&�+�"�-�+�,�.�,�-�*�7��'�$�&�'�.�;�.�/�,�&�(�2�0�)�7�7�1�+�;�#�0� �-�-�+�.�#�-�7�'�(�%�(�+�2�%�'�9�#�+�)�(�;�@��1�.� �3��'�6�)�5�'�)�(�)�#�C�3�,�8�5�,�7�$�-�(�#�.�1�7�=��*�-�<�,�-�*�+�)�(�6��0�2�"�,�,�1�&�-�9�;�/�0�*�.�C�4�(�.�3�6�@�,�$��'�,�+��3�5��#�<�+�*�9�,�%�!�4�*�8�8�6�4�(�+�#�)�-��0�0�.�6�.�7�*�/�.�9�0�/�4�1�9�(�/�1�3�1�(�#�0�.�5�0�/�+�5�.�/�6�+�-�+�*�-�/�&�)�0�7�7�3�&�'�4� �4�/�6��'�;�,�+�7�-�*�>�)�,�/�4�+�1�-�*�:�9�0�/�7�7�%�6�'�+�6�1�)�+�0�4�+�,�1�%�5�3�3�+�"�+�<�4�$�%�,�/�1� �)�1�9�,�-��6�*�2�6�1�4�7�1�'�'�-�)�3�4�+�$�-�+�)�+�/�&�/�4�+�,�3�9�7�9�7�-�"�,�-�<�2�?�3�8�1�*�+�5�(�+��)�.�/�&�A�)�5�3�(�/�+�&�/�2�7�/�1�+�(�4�4�'�9�.�$�/��9�&�ՀրҀр׀Հ؀ۀ׀̀׀Հۀ݀ԀـՀڀـҀـ܀؀ہ.�/�9�,�;�%�/�2�'�3�0�2�0�F�)�%�9�)�/�:�7�)�5�'�3�*�#�;�2�(�1�A�.�<�/�6�3�)�?�'�0�3�0�3�.�/�/�9�&�A�(�+�5�3�0�4�+�%�0�>�;�!�*�&�#�*�7�;�1�-�,�%�2�%�*�$�(�'�/�*�*�.�-�2�:�0�6�+�:�#�0�7�*�3�8�:�6�&�6�+�-�(��6�4�4�(�/�)�.�N�*�4�4�0�"� �5�3� �0�2�/�3�(�*�4�0�0�5�,�/�2�1�)�)�2�'�*�6�-�-�.��/�,�:�-�/�)�1�.�%�(�*�<�/�#�'�7�8�0�.�,�*�+�)�1�3�;�"�/�4�:�-�#�!�:�-�/�3�*�!�/�(�3�+�3�.�/�0�0�.�)�1�+�"�:�#�9�6�7�)�7�,�=�*�,��1� �1�,�,�1�'�'�1�/�9�2�/�3�2�)�%�/�.�7�&�+�$�)�'�7��5�<�,�+�.�)�6�1�.�3�(�7�$�.�.�&�-�3�,�8�6�+�*�&�9�1��4�/� �/�2�/�0�:�1�,�)�,�2�4�0�.�,�%�5�-�0�3�1�;�E�/�2�:�'�-�)�/�!�(�5�$�2�)�:�2�#�"�#�&�$� �0�,�3�.�*�"�-�)�*�%�+�-� �5�.�6�1�&�/�+�(�*�/�3�%�1�+�,�,�1�)�)�)�!�/�+�6�7�'�A�3�4�&�+�2�6�3�+�8�.�,�$�&�0�$�(�'�8�1�9�(�"�+� � �2�3�.�5�6�$�-�/�3�4�%�3�3�.�"�&�1�-�4�0�1�(�)�#�0�(�2�3�7�(�(�!�,�)�)�+�7�2�0�"�6�6�'�2�-�3�-�"�$�5�1�1�6�%�7�:�0�1�/�&�(�?�-�-�'�$�9�-�3�0�!�(�%�,�9�2�3�8�#�0�6�)�'�3�5�(�.�6�2�1�%�8�>�.�+�)�#�<�/�5�.�=�+�-�;�$�3�5�"�"�;�-�3�3�7�2�+�/�2�*�+�/�.�%�,�-��+�5�,�$�*�9�,�#�4�%�/�ՀՀԀـր؀ۀӀՀ��ՀՀրӀՀր׀ՀԀӀрՀрց.�9�#�,�+�,�.�#�?�1�/�E�7�.�$�6�1�6�"�/�/�;�1�%�.�6�1�-�/�5�1�,�&��1�1�1�2�5�%�4�'�&�-�1�/�-�/�-�8�)�/�)�&�9�1�/�:�-�/�2�>�-�+�0�A�#�)�5�.�&�$�(�7�7�3�)�0�1�&�*�-�0��:�*�>�)�'�+�6�&�.�(�4�&�%�)�/�B�9�+�5�-�7�2�>�9�@�A�D�4�-�'�2�>�5�/�*�(�'�2�&�/�-�)�!�/�)�<�<�'�7�6�0�;�#�0�:�3�/�6�/�2�/�*��:�'�2�2�1�)�@�-�2�1�2�%�#�7�<�-��-�/�0�C�9�5�0�-�#�,�7�&�6�'�5�.�%�&�9��4�#�.�)�.�/�+�7�-�2�.�5�(�<�-�7�/�"�+�-�"�"�4�-�2�2�.�%�*�5�6�3�1�)�'�7�A�'�'�!�9�7�'�4�!�(�3�4�:�)�%�5�+�(�.�0�*�&�7�/�$�(�/�"�+�,�!�/�-�$�$�)�/�(�1�2�/�1�(��.�,�&�/�1��2�-�.�&�1�0�;�7�1�.�:�,�4�$�$�8�*�4�-�;�-�-�1�'�,�,�<�4�6�$�2�1�,�9� �7�5�*�,�/�2�7�8�)�)�8�*�3�C�,�%�0�)�+�"�&�*�)�3�+�/�(�*�7�;�%�9�9�6�1�&�5�/�5�%�8�+�4�$�-�%�1�5�+� �1�6�0�!�"��&�1�,�-�#�-�.�1�5�=�;�4�/�,�-�+�.�(� �*�3�+�*�9�9�5�1�,�)�5�'�1�/�&�3�5�+�3�/�-�-�/�5�+�1�&�0�1�0�8�(�.�/�*� �2�<�)�.�6�0�4�2�0�'� ��)�6�2�5��(�+�%�1�4�;�(�$�.�(�1�-�,�5�/�2�;�/�2�#�1�+�'�!�0�%�%�3�5�,�9�+�(�2�3�$�/�*�/�)�-�5�)�+�0�)�1�(�2�2�4��/�1�D�+�7�-�8�&�1�,�(�4��'�,�6�.�C�,�&�'�.�9�3�,�,�/�Ԁ׀ـր؀րրڀԀƀ؀ՀրӀրЀ׀ր؀ԀۀԀրՁ2�0�/�7�2�*��4�7�,�>�/�.�(�(�)�.�'�.�'�2�6�8�5�,�,�/�2�)�+�+�$�.�/�3�+�9�"�.�*�5�+�)�<�(�4�8�5�4�/�-�'�/�0�-�.�3�'�0�9�,�1�2�0�4�:�2�2�E�%�3�.�)�0�)�2�%�5�:�*�*�4�0�)�5�*�'�-�2�+�)�3�4�+�#�0�"��(�/�1�/�B�5�3�9�8�=�/�8�1�,�9�?�&�)�+�!�<�%�*�"�8�"��5�0�*�(�4�*�2�,�5�0�)�(�!�(�:�1�;�/�'�,�%�*�(�$� �1�/�%�'�*�-�/�$�,�2��'�2�*�(�0�/�-�.�0�+�!�"�2�$�/�:�)�/�1�.��1�'�(�?�"�/�(�.�9�)�6�'�*�4�=�.�1�*�2�*�*�5�/�)�%�/�!�6�0�<�1�(�%�,�+�5�+�0�*�4�8�+��#�.�-�/�5�!�4�%�#�1�-�%�*�*�6� �)�*�.�)�4�<�0�5�4�#�+�,�)�0�1�)�3�-�*�+�3�&�4�)�-�9�-�/�3�1�1�'�1�/�&�)�(�,�1�&�4�*�,�!�=�4�.��7�%�4�'�)�3�7�8�*�1�*�4�!�-�.�>�(�2�/�%�*�'�*��:�0�.�+�0�5�0�(�-��,�*�,�6�)�&�/�-�)�:�7�9�-��(�7�'�"�/�/�6�0�"�.�;�6�)� �.�6�-�?�4�5�/�5�.��1�)�2�1�(�?�.�0�'�'�#�2�&�%�*�0��/�-�6�9�/�&�/�/�*�$�/�4�4�(�2�9�8�)�*�!� �9�+�&�1�&��'�9�-�,�+�.��6�,�7�,�1�+�1�=�8�/�+�.� �$�&�6�$�/�8�+��*�9�2�D�$�-�(�*�'�)�0�/�3�0�/�&�%�*�*�)�6�*�)�+�3�1�4�4�<�3�0�)�,�&�7�%�(�$�1�(�,�-�$�1�;�1�0�6�=�9�&�7��:�5�(�4�!�,�,�/�*�4�*�(�!�*�9�3�'�7�/�'�(�/�;�8�0�/�׀ՀҀــՀ׀ҀրǀԀՀـр׀рՀڀ׀Ԁڀ΀܀ہ6�/�%�2�2�5�2�&�+�+�5�/�<�&�)�,�:�3�*�4�;�3�A�/�(�6�<�$�+�3�#�7�/�-�5�-�5�1�9�5�+�.�5�&�1�/�4�0�%�!�2�,�/�.�%�3�*�2�0�1�4�,�&�4�"�4�3�"�+�1�,�%�#�8�$�)�.�7��/�4�2�3�+�#�;�4�'�!�4�6�.���;�+�)�"�&�2�#�0�8�5�5�B�@�@�L�0�3�9�<�3�3�-�*�$�?��/���+�,�)�;�8�'�8�+�1�7�!�2�6�3�A�$�*��-�*�2�3�/�4�/�6�1�,�)�<�*�"�1�%�0��5�3�#�3�3�3�5�?�.�#��B�-�'�'�#�/�9�$�.�/��.�'��-�'�(�-�0��+�&�-�0� �=�+�6�1�6�*�1�/�7�<�!�1�'�%�*�1�&�7�)�C�)�(�-�0�+�+�0�0�,�0�3�0�"�/�%�0�3�*�,�0�%�(�'�,�5�0�+��7�1�3�-�1�.�-�6�/�-�4�<�)�,�.�+�9�*�1�+�A�8�2�'�-�-�*�.�1�/�4�<�-�6� �'�3�=�0�'�0�-��#�*�/�1�:�+�+�+�&�:�1�/�;�#�(�*�*�7�-�'�/�(�'�)�)�5�,�'�-�(��(�,�8�(�C�3�'�,�(�5�1�7�-�4�4�0��0�2��)�8�"�,�0�+�2�.�*�3�/�8�,�,�5�*�#�,�5�1�%�/�*�'�3�8�'�*�4�,�)�,�,�1�-�3�+�/�1�1�"�;�)�+�)�5�"�+�.�<�)�/�-�'�,�6�)�2�6�4�0�.�*�5�&�&�7�1�4�,�$�)�1�%�/�6�&�/�)�+�3�7��2�(�-�+� �F�%�>� �'�&�+�!�)�"��)�4�3�>�7�5�.�9�*�3�/�/�*�'�/�1�8�&�4�0�.�(��-�%�*�&�1��:�$�7�*�'�.�-�!�)��D�/�"�+�)�-�/�1�.�&�)�4�3�6�0�.�+�0�,�:�=�-�9�'�(�.�+�6�7�/�/�3�$�%�4�7�*�ՀӀրπՀڀڀӀԀɀۀրـҀ܀πՀҀــрրԀӁ6�4�.�2�/�)�4�4� �$�8�%�-�1�)�2�.�9�%�7�%�/��/�6�5�4�8��:�,�'�3�)�,�.�-�1�*�.�&�'�*�3�-�+�2�2�2�/�+�.� �+�/�%�,�4�'�/�*�9�%�,�2�.�(�@�'�%�)�2�+�.�7�-�2�'�/�%�4� �3�)�"�/�8�.�)�,�/�/�+�)�&�+�!�-�+�)�/�1�/�8�F�X�:�E�A�E�5�2�1�7�)�<�8�7�/�-�&�.�)�/�4�'�9�5�6�%�)�+�2�%�.�2�.�3�/�0�%�*�'�:�&�-�#�"��/�8�0�7�'�-��*�%�7�&�+�5�)��4�D�.�6�1�&�<�)�(�:�3�.�9�1�)�.�/�*�5�1�9�2�;�-�.�1�/�1�3�,�9�+�<�'�2�%�<�0�6�8�-�.�6�#�*�(�-�6�;�2�*�5�8�.�(�/��/�)�+�1�/�-�2�/�#�3�4�&�0�3�?�0�-�/�5�(�/�6�/�9�*�%�?�4�9�.�0�0�)�+�+�/�'�*�)�2�,�,�=�4�'�;��6�1�2�-�2�/�2�1�4�'�4�3��%�?�0�'�,��1�/�/�.�(�(�6�)�!� �+�&�5�"�*�8�6�+�-�&��6�+�+�1�"�+�*�/�%�)�(�&�#�+�#�.�(�3�1�)�-�+�6�-�1�-�(� �7�0�>�&�*�$�8�+�(�>�"�)�5�5�/�6�/�,�(�*�1��/�#�5�&�/�=�5�,�#�*�"�(�8�+�)�0�#�.�'�)�5�6�5�1�:�&�#�3�"�&�&�/�;�1�+�"�$�&�)�+� �9�*�/�1�/��&�*�+�6�9�0�,�/�9�*�:�)�#�3�"�*�:�)�$�;�8�)�-�.�6�3�/�1�4�%�.�-�-�%�?�,�!�4�$�.�-�7�.�)�-�(�,�3�:�+�,�9�"�'�.�+�*�1�5�4�0�&�2�0�.�<�)�&�0�$�7�%�.�.�5�=�+�8�,�&�1�/�1�"�4�,�-�#�3�-�1�,�.�5�/�:�<�*�,�)�/�5�(�3�;�2�)�Հ؀׀ڀрՀ׀ڀـǀ܀׀׀ـ׀ՀـЀ׀׀ՀπЀӁ4�.�-�6�,�;�6�4�.�D�/� �,�3�'�>�6�8�>�5�.�4�0�*�9�4�A�(�)�&�)�6�2�.�7�3�,�5�&�+�4�9�5�2�0�"�/��=�3�,�7��(�3�!�2�*�'�'�3�'�"�7�1�4�7�-�5�,�&�%�2�%�7�@�(�-�1�0� �,�'�4�,�0�,�9�*�-�/�(�%�!�+�.�,�7�+�(�.�.�?�2�;�M�;�=�D�A�E�@�5�=�+��1�0�.�3�;�&�/�-�.�-�.�!�(�3�+�1�-�#�+�%�-�)�B�*�.�1�1�:�%�0�+�*�$�2�8�1�,�6�'�(��+�+� �+�-�)�+�*�.�+�1�.�3�1�+�=�3�/�:�'�+�$�-�D�2�-�1�;�(�>�:�1�B�'�2�'�.�;�,�*�+�1�/�'�$�0�4�4�.�1�)�(�4�3�.�-�-�(�+�.�/�(�'�+�&�,�"�5�4�:�?�(�8�$�+�/�4�&�-�/�/�*�5�/�(�6�3�9�&�/�*�,�-�-�-�3�2�7�6�+�3�9�'�;�/�)�(�,�%�4�,�2�,�:�/�<�2�%�(�'�.�+�)�'�/�+�6�-�3�%� �%�)�$�0�4�8�&�9�3�-�6�(�5�)�1�%�(�4�1�/�+�4�.�%�/�4�3�+�*�-�,�(�6�)�3�*�(�,�3�6�+�'�0�0�+�/��&�.�<�)�*�'�'�+�)��"��#�#�/�%�*�,�3�&�(�3�(�2�6�.�+�/�.�.�&�+�.�3�+�2�5�)�(�'�*�7�3�/�(�6�+�3�'�1�'�&�-�1�6�2�*�/�8�+�#�%��8�6�5�#�2�/�$�6�2�&�3�3�&��2�&�!�3�'�%�'�-�+�5��+�%�'�+�2�&�-�0�?�-�-�'�,�-�7�*�5�>�A�,�2�,�4�6�1�+�/�-�&�/�;�5�&�)�/�,�;�(�#�.�(�,�;�7�6�3�0�,�-�8�7�9�(�8�/�/�0�0�3�"�,�0�(�(�+�/�@�,�0�*�3�)�%�/�2�-�!�9�.�3�4�+�6�/�6�2�0�#�)�ԀԀ׀Ԁ׀ՀրۀՀƀրԀՀր׀׀ҀـԀӀ؀ԀҀЁ(�2�2�;�7�'�3�&�:�/�6�<�,�(�8�!�&�7�/�=�:�2�3�0�0�$�&�(�+�+��.�,�7�,�<�.�4�*�5�+�-�(�4�3�0�?�6�/�3�:�,�5�$�=�6�5�&�3�-�-�,�/�&�+�&�+�:�2�$�6�5�*�!�!�4�D�+�-�.�$�%�0�3�8�!�+�I�*�)�/�%�$�'�0�'�2�/�(�0�0�G�F�=�4�@�M�L�>�J�E�:�.�<�7�:�+�1�&��.�0�3�%�-�'�A�"�8�&�,�0�4�2�3�.�#��7�-�.�)�8�'�%�-�6�7�)�+�4�%�0�,�/�2�'�.�/�/�*�+�.�1�2�/�-�B�1�%�6�*�(�/�)�.�7�*�#�(�/�$�'�&��*�&�6�!�-�:�/�0�"�0�-�+�*�8�"�;�.�7�&�2�"�+�(�0��*�5�1�+�+�2�+�,�&�=�.�(�1�(�9�/�4�;�.�+�.�(��%�.�1�8�!�0�(�1�,�'�-�+�,�*�(�/�5�(�3�;�)�.�5�0�+�5�'�,�'�4�5�6�.�.�/�&�9�7�,�;�5�"�%�,�1�?�/�4�(�/�+�/�3�+�6�A�.�3�3�4�'�+�#�-�*�;�.�,�7�+�2�)�&�(��5�*�-�%�-�3�>�2�,�(�/�8�-�,�*�8�B��*�-�)�1�-�$�,�2�0�4�/�%�:�8�(�8��-�0�4�&�9�+�3�*�)�8�7�+�"�6�*�6�/��)�,�&�+�/�5�.�1�-�-��4�/�.�#�;�%�6�&�0�9�1�0�%�%�*�/�$�2�'�/�3�5�"�'�4�2�,�3�!�&�,�0�7�/�4�'�*�-�-�&�(�'�5�1�/�:�;�4�4�0�*�7�:�-�-�)�/�6�-�4�$�-�2�-�9�&�$�8�(�"�;�)�(�(�#�1��(�-�&�)�/�2�7�0�/�>�+�6�3�5�3�'�8�?�1�2�/�2�-�*�'�/�0�'��1�+�'�D�/�%�:�6�3�0�1�+�+�*�5�-�4�9�:�*�/�&�*�1�4�+�4�"�*�/�+�<�(�C�؀ҀڀӀڀ׀ۀՀ׀ÀـӀҀ׀Հ׀ԀրրހՀՀԀԁ0�3�7�7�4�:�4�,�3�+�3�0�.�$�)�E�3�3�5�/�-�7�?�"�.�+�-�*�(�2�6�!�$�0�8�/�#�.�(�)�*�4�6�6�)�.�$�9�:�3�/�#�B�(�A�5�8�=�7�5�1�'�3�.�/�#�0�)��2�5�-�/�1�5�1�)�2�,�,�!�2�2�1�3�(�/�3�3�&�2�'�/�'�+�1�3�"�#�%�6�9�.�1�;�N�B�H�H�=�C�=�?�:�.�.�#�.�*�0�0�>�,�3�2�4�%�9�$�*�*�+�5�/��0�(�8�5�.�*�+�&�,�$�8�&��)�0�)�;�(��>�,�5�4�*�;�0�-�-�&�7�,�&�5�,�1�0�.�%�/�-�*�+�)�2�+�3�)�*�7�5�,�!�-�/�*�+�3�1�+��!�8�4�)�'�4�1�#�1�0�/�1�4�0�8�&�3�*�,�7�,�>�-�'�:�=��(�-�#�%��0�4�*�0�7�'�+�%�4�2�.�7�/�4�3�+�1�0�;�.�1�#�)�8�)�1�5�6�+�/�E�&�.�-�'�9�-�,�'�;�3�)�/�>�$�/�5�5�7�.�,�)�/�,��!�/�4�-�0�"��4�7�1�,�-��0�,�/�=�8�1�-�-�*�+�(�)�/�%�3�,�2�.� �7�/�'�'�9�3�8�,�"�5�&�#�7�5�/�0�)��*�)�+�3�(�5�5�/�1�4��2�)��-�'�(�'�'�-�3�.�0�@�*�/�,�-�7�%�4�/�.�'�)�'��+�2�7�0�(�*�/�&�5�2�0�2�0�)�*�2�+�,�0�,�,�/�$�-�+�0�/�<�,�3�)�(�/�*�.�<�0�6�5�(�!�-�0�=��2�3�3�6�2�/�$�.�-�4�.�#�4�7�/�2�3�2��+�%�.�#�$�2�,�3�6�0�(�*�0�3�?�2�4�-�)�,�(��"�.�<�*�+�2�+�9�(�,�:�7�,�&�+�0�4�.�,�6�*��0�.�&�4�/�5�B�'�/�.�*�3�(�7�3�2�1�,��.�4�+�7�5�0�$�,�#�:�)�8�(�%�/�3�Հ؀ۀր׀؀׀ӀՀŀрـԀ׀Հڀـڀ׀ր׀̀ՀՁ1�0�/�-�-�-�<�0�2�)�%�6�:�&�7�*�*�+�+�%�'�7�3�.�*�9�/�,�9�)�1�0�+�*�3�-�"�@�;�=�)�/�'�7���)�3�-�#�2�=�-�7�+�'�5�-�)�7�+�2�7�-�'�6�+�-�*�'�-�%�+�!�0�)�%�9��'�7�(�8�$�$�%�8�0�0�8�5�.�0�'��8�,�+�*�1�6�A�>�0�5�>�D�<�I�F�D�1�8�7�,�5�3�,�'�9�8�)�%�,�.�1�,�6�(�.�,�2�2�+�.�,�,�4�.�6�*�7�$�.�7�'�,�2�.�3�:�$�0�6�&�7�-�%�(�/�"�&�*�;�;�"��,�@�1�$�/�4�0�=�3�2�'�0�4�+�:�(�/�2�2�,�)�/��9�8�-�*�:�-�%�9�)�-�7�8�9�'�-�1�7�(�/�.�*�$�-�4�1�@�5�+�3�+�2�.�/�@�.�3��*�2�*�8�=�.�+�.�'�/�+�/�,�8�3�1�0�)�)�2�.�#�6�'�6�3�(�,�*�2�&�1��+�5�5�E�,�0�6�(�2�1�/�%� �0�*�7�*�(�8�*�/�5�3�'�/�'�/��/�%�"�*�.�7�+�5�:�3�9�0�,�*�,�0�/�-�0�B�"�,�1�2�.�)�-�8�+�+�8�+�4�/�5�/�)�/�.�)�/�0�,�:�&�.�)�2�,�1�*��5�$�4�$��0�+�2�1�$�/�*�!�1�'�/�5�4�-�'�,�1�6�5�&�-�0�8�5�#�.�!�2�&�'�%�4�)�&�$�7�3�9�-�0�.�A�'�&�,�1�-�(�)�*�0�3�7�/�+�%�)�0�,�)�1�1�4�'�$�$�*��"�&�#�/�4�'�'�-�9�9�-�.�/�)�8�3�%� �7�)�(�4�!�,�9�'�'��0�*�7�%�*�&�%�#�0�,�1�!�+�)�2�&�&�'�5�6�1�-�.�.�0�5�#�(�(�3�3�&�)�+�3�3�2��9�0�1�*�.�&�.�#�3�7�'�(�=�5�6�3�2�)�;�/�%�'�&�9�0�3�.�/�5�G�/�5� �ڀрӀԀӀҀԀҀ׀ƀـ׀р؀׀؀ҀրـҀՀ׀Ԁց-�3�7� �7�5�5�-�A�5�(�>�/�/�1�+�.�,�'�.�=�)�$�-�4�%�+�%�.�4�-�*�1�9�'�<��(�5�.�)�5�,�/�9�1�-�.�9�,�/�4�/�1�3�<�5�-�7�.�0�6�0�1�7�0�3�5�?�5�/�6�.�/�-�-�3�'�+�)�-�7�6�3�2� �2�(�-�&�9�/��7�!�<�6�6�&�5�.�@�=�B�=�?�I�I�@�C�5�@�*��8�:�&�:�;�'�*�3� �;�.�:�)�#�5�4�2�,�7�0�3�-�6�'�/�-�6�*�*�0�8�3�0�'�5�3�/�2�&�(�%�9�(�)�,�.��(�@�/�)��-�#�D�'�+�0�+�0�/�5�%�1�5��8�6�7�%�,��.�+�'�0�#�*�'�#�'��C�9�(�:�4�/�>�&�-�*�)�.�1�.��1�,�4�-�7�)�4�1��6�-�5�5�)�5�*�#�8�&�.�0�*�/�%�0�'�3�5��,�9�(�*�3�,�9�0�2�<�%�(�/�,�2�3�>�+�&�-�/�4�+�-�:�/�:�*�0�7�#�8�1�5�7�5�/�6�*�,�0�+�2�)�$�,�!�%�>�2�<��2�$�0�3�0�+�*�*�?�-�.�0�0�/�*�*�)�,�6�(�*�7�%�.�&�.�5�/�.�,�*��.�0�-�-�5�8�0�"�>�"�+�2�%�,�8�0�1�#�@�/�"�1�5�9�(�-�0�/�/�-�3�4�$�,�,�5�,�C�,�0�'��&�/�#�3�3�1�+�'�2�-�)�8�3�0�7�*�%�-�)�-�&�5�5�-�?�$�4�>�*�4�)�5�*�+�6�+�'�4�/�%�#�3�3�3�*�/�3�#�%�3��6��.�/��,�3�/�7�&�.�$�1�'�/�5�+�/�"�+�-�+�&�,�4�*�2�!�5�/�4�6�3�"�!�.�-�%�+�/�5�/�,�*�2�4��0�2�)�6�0�9�+�-�;�8�9�/�:�.�'�1�-�;�2�!�4�3�5�%�0� �/��(�1�,�3�-�8�0�-�+�"�3�2�)�'�9�%�2�'�6�+�ՀҀ׀Ҁ܀ڀՀ׀րĀ؀؀ՀԀۀՀڀ׀ۀрրր΀Ձ&�0�/� �4�7�.�0�7�7�)�-�4�A�/�D�:�+�/�)�2�8�1�.�(�.�2�(�,�2�&�.�$�1�3�1�8�%�+�$�3�1�2�:�5�/�(�9�4�1�%�4�'�0�+�9�+�?�5�<�/�+�1�)�6�-�,�'�*��/�)�4�-�2�.�4�"�2�.�-�3�2�'�)�/�.�7�.�-�7�3�.�/�2�/�"�(�1�$�=�'�3�$�9�4�&�B�9�?�/�3�+�0�9�=�-�5�4�<�;�,�1�0�6�,�(�:�0�+�1�'�2�8�8�&�C�+�4�7�K�1�*�/�I�/�%�1�/�.�+�3�,�0�,�1�-�'�A� �4�$�1�7�+�*�!�3�*�1�)�B�7�.�)�&�+�&�&�-�-�*�"�4�+�+�)�)�8�'�#��?�2�)�.�2�*�'�,�3�"�<�7�?�*�3�4�1�-�+�+�1�3�6�:�.�8�,�)�&�0�5�-�-�,�+�8�4�/��.�/�7�0�+�1�1�.�.�-�%�3�#�3�?�3�0�%�'�,�7�&�-�(�-�$�1�*�/�7�,�'�'�/�A�=�&�1�!�9�-�/�0�-�,�+�?�"�-�(�+�0�+�/�,�(�3�/�,�8�,�%�(�'��B�4�'�:�5�"�4�2�*�:�-�9�3�9�.�@�&�6�:�,�*�&�'�4�1��3�-�2�+�,�8�:�,�5�@�9�6�4�*�/�1�/�+�9�4�(�4�3�6�/�,�(�5�;�,�+�,�,�+�/�,�/�!�&�+�.�.�4�*�1�/�.�5�)�.�,�/�.�-�2�5�=�/�,�!�-�/�:�7�/�)�4�+�3�=�(�<�/�3�/�-�3�6�&�3�1�!�/�)�5�&�9�.�5�(�+�#�#�(�-�%�-�*�>�-�6�4�)�*�*�+�,�-�-�6�/�>�0�&�&�.�,�(�-�"�7�/�.�*�8� �6�7�-�*�:�+�(�&�F�.�.�6�$�%�0�6�,�5�#�.�,�5�/�/�&�1�,�%�7�+�3�2�/�,�;�8�3�!�:�2�.�#�/�'�8�,�$�/�)�7�5�.�5�8�8�3�>��1�/�-�2�8�3�ԀЀ׀ЀԀԀԀ؀րˀӀրՀ׀׀Ԁۀրــ݀Ҁڀ؁3�2�)�!�0�@�#�4�4�@�0�*�'�3�5�3�0�1�/�.�*�)�)�-�,�-�/�&�.�4�4��/�<�5�+�1�2�?�(�9�+�&�+�0�@�2�,�2�4�.�:�&�2�%�&�1�3�2�%�.�(�1�)�.�6�0�*�9�.�:�/�A�)�#�*�'�*�+�.�,�5�/�/�.�8�/�1�6�.�2�0�6�+�&�&�'�+�?�)�=�5�,�E�%�2�H�2�+�/�:�2�4�9�2�%�,�6�.�+�>�5�/�;�(�*�0�9�,�:�0�*�0�#�5�(�)�-�6�1�6�1�%�,�0�.�'�2�1�%�.�-�5�5�+�(�-�1�6�'�-�$�*�8�%�3�4�4�7��%�+�;�)�-�0�(�2�,�(�+� �,�F�7�-�.�+�#�1�<�:�-�7�)�8�(�0�$�7�#�/�2�9�+�?�.�6�3�*�)�.�*�@�%�7�&�2�4��3�5�!�1�6�/�$�-�$�*�,�3�-�.�C�8�4�.�.�*�+�%��8�3�;�:�,�.�%�/�8�/�8�7�8�.�*�*�%�:�&�,�&�,�,�%�:�&�;�0�&�.�/�$�&�0�0�$�6�1�$�4�8�(�)�*�0�+�4�,�1�4�*�$�!�#�(�0��+�0�+�5�$�8��&�/�6�2�*�*�1�)�(�=�%�.�<�0�!�%�7�-�(�4�-�6�.�6�6�5�7�)�"�!�,�2�3�$�5�*�'�'�0�=�4�4�;�#�-�A�"�=�,�'�/�5�7�0�2�7�6�2�0�/�)�5�%�3�!�!�*�.�1�1�6�,�1�;�2�;�%�%�1�'�,�/�0�3�/�2�/�,�,�&�1�-�-�'�0�5�'�.�-�$� �+�.�+�6�(�)�7�:�1�2�6�<�#�:�/�&�;�'�7��6�%�-�'�.�4�7�;�@�1�$�*�-�4�:�4�-�4�/�:�5�.�$�B�&�2�?��1�"�3�/�!�=�"�.�-�,�5�'�+�$�<�.�7�.�/�@�&�1�8�"�*�+�!�+�/�3�2�+�>��/�+�<�<��9�<�3�1�*�,�=�6�1�#�'�&�3�4�4�'�<�؀րԀڀՀ׀Ӏ؀ր̀׀׀ڀ؀Հр׀Ҁ؀ӀрԀՀځ8�&�.�+�4�7�7�#�0�(�)�+�$�1�+�3�'�1�%�/�6�)�-�3�,�<�E�D�.�2��4�"�1�/�(�2�-�8�0�+�:�7�,�6�7�)�)�3�+�$�/�9�'�0�-�9�+�1�3�1�5�(�,�9�9�,�1�?�1�4�(�:�8�+��:��,�'�A�+�0�,�2�-�7�/�!�2�3�,�+�0�1�'�7�9�4�&�.�-�+�=�:�=�2�/�1�=�1�8�$�1�3�5�(�4�3�'�/�0�0�,�$�7�:�>�/�1�!�#�;�/�%�8�3�1�5�'�4�.�-�+�2�7�)�9�.�1�1�0�-�)�2�)�*�*�B�3�+�5�.�8�(�.�4�*�-�&�+�4�"�'�+�0�-�5�+�)�/�(�/�)�:�.�,�+�/�$�2�(�0�'�3�:�)�/��1�4�1�6�2� �3�,�@�,�+�&�)�3�-�6�*�<�-�$�*�)�9� �/�6�'�9�0�2�3�%�,�#�(�+�5�-�"�4�6�'�(�-�9�/�)�.�8�5�+�7�@�:�.�.�2�(�#�%�0�/�2�;�*�)�E�0�,�7�)�6�&�*�'�)�/�+�%�3�!�(�.�.�&�!�$�=�8�.��4�+�*�!�+�/�0�<�7�9�)�)�0�+�*�1�1�,�4�-�(�+�)�4�.�/�3�3�'�#�7�.�%�1�%�-�/�-�+�0�(�(�&�6�1�;�7�=�7�6��-�)�.��+�'�5�$�3�+�-�5�5�+�*�*�$�7�3�-�#�$�+��/�3�8�/�'�3�-�&�2�9�!�)�7�*�B�1�2�8�)�4�%�2�)�.�%�#�0�+�,�)�0�*�'�)�$�4�9�0�4�6�9�0�6�4�?�2�=�3�*�)�0�)�%�4�.�*�5�.�2�+�-�*�1�$�)�6�1�-�6�&�3��*�0�4�.�%�5�2�+�9�%�(�)�&�*�*�5�1�9�+�2�7�5���9�/�C�0�)�4�*�5�"�-�"�7�(�<�/�+�-�,�-�'�:�0�;�/�.�-�6�+�$�+�1�/�1�/�,�'�2�-�7�<�4��#��7�3�-�*�2�4�1�׀ӀӀՀҀ܀Ԁڀ׀ƀӀՀـڀՀــ؀Հрր׀؀ց*�:�+�3�B�'�9�<�5�=�7��&�9�*�+�+�)�*�+�>�)�(�0�'�2�$�.�6�5�/�7�#�-�'�4�5�,�$�!�0�5�%�(�-�*�+�/�9�6�A�/�/�4�/�3�'�4�,�-�=�3�(�5�0�%�-�,�1�1�*�0�8�,�1�-�/�=�>�%�4�1�*�"�4�2�8�)�2�0�.�*�&�5�,�+�/�*�+�6�-�/�.�2�7�.�.�6�7�(�*�,�2�1�-�1�1�(�7�.�%�2�(�"�8�1�*�#�@�3�8�+�/�)�4�.�'�-�1�.�7�6�'�)�0�+�/�.�'�,�(�9�0�&�/�4�,�'�/�)�*�*�#�2�1�4� �2��.�.�3�*�$�)�4��:�2�4�%�#�%�?�,�$�,�6�*�-�4�4�.�7�*�(�-�!�'�6�.�0�.�/�0�/�+�4�)�-�-��-�3�6�;�/�+�7�4�*�$�.�6�2�1�2��/�)�4�/�&�"�,�)�$�$�$�3�.�3�*�0�'�0�6�/�/�,�%�+�.�&�;�-�6�-�-�'�)�,�%�9�8�/�3�0�#�(�4�*��/�7�'�5�4�,�/�(�%�$�*�#�%��(�5�"�-�$�0�-�(�-�'�+�7�9�'�2�2�%�)�/�(�3�-�,�;�0�(�1�-�0�"�5�-�'�/�/�3�8�&�,�#�1�+�3�5�1�(�4�5�-�7�-�;�.�6�$�3�:� �3�)�3�)�'�0�#�3�@�3�'�3�0�(�0�'�/� �<�>�/�3�)�)�)�.�$�6�*� �)�5�)�-�1�5�.�1�=�+�*�'�.�%�3�)�-�7�3�,�(�(�2�'�4�/�-�9�!�,�)�0�.�#�>�8�5�'�0�1�*�/��,�)�2�2�/�0�.�6�*�-�-�9�9�(�#�(�4�-�5�-�,�!��2�'�/�9�'�%�7�(�3�,�/�2�"�,�-�)�)�!�.�7�,�/�6�6�-�6�-�*�'�'�-�1�&�+�(�0�)�/�-�*�:�%�+�<�0�7�3�5�.�-�$��.�*�(�1�&�0�;�3�;�8�?�/�/�'�&�1�!�4�&�ــۀӀ׀ӀՀ؀рƀ؀؀րրـڀ؀Հր؀ҀՀـ߁,�0�(�*�7�1�6�(�1�/�/�#�,�"�,�3�-�2�?�:�&�(�-�1�,�,�3�%�'�(�6�-�/�D�0�'�@�)�5�$�3�*�,�#�'�+�)�/�,�+�(�!�*�'�3�1�)�#�7�-�-�*�0�/�'�/�+�3�/�1�;�4�,�8�/�5�/�4�'�*�.�.�(�1�2�2�.�#�0�5�'�6�-�&�+�%�/�+�<�4�3�!�:�4�9�7�5�3�%�/�/�9�/�-�1�6�0�8�2�7�"�.�+�,�/�(�/�<�2�2�7�2�)�+�<�)�3�5�+�,�0�(�1�7�)�(�0�2�&�/�%�4�7�1�6�%�.�)�1�4�-�6�.�3�.�#�5�1�/�+�/�,�-�9�+�0�9�'�2�5�0�%�,�3�8�&�;�4�*�-�0�#�6�3�*�1�.�4�$� �8�,�>�+�(�3�(�/�.� �;�*�1�7�5�8�/�+�4�,�&�-�2�3�,�/�'�-�#�3�3�1�$�(�;�1�/�:�/�$�-��&�"�5�1�=�0�&�"�.�'�3��6�.��3�*�:�0�/�.��/�,�6�,�(�*�7�5�3�2�/�7�4�5�4�.���#�)�/�2�-�%�)�.�-�*��/� �4�;�'�3�,�,�2�-�#�1�*�8�&�.� � �!�+�.�-�2�2�(�-�0�0�,�)�0�;�6�,�5�0�4�)�2�1�$�.�/�)�,�1�-�-�6�0�,�1��*�.�.�/�2�/�>�(�(�5�*�5�/�1�'�&�0�3�4�0�6�4�,�.�#�+�+�/�0�$�3�7�9�+�4�,�0�3�8�-�9�/�7�.�2�6�4�)�0�0�2�+�2�'�.�1�.�1�4�E�-�+�,�2�"�5�*�*�7�5�?�+�,�!�+�0�)�.�.�+�3�0�0�3�)�1�0�'�;�1�6�,�+�6�+� �1�8�+�#�1�@�4�.�6�:�6�"�(�3�1�(�)�%��+�5�4�2�,�+�&�9�,���(�/�3�$�/�7�3�/�-�+�:�-�"�5�/�:�/�,�.�2�.�&�#�1�/�%�,�0�1�0�/�/�:�6�#�-�*�7�4�*�ــրӀӀրրՀрŀԀҀրрՀـՀڀՀՀ׀ـՀց=�6�+�-�)�4�:�A�9�/�0�/�%�&�1�2�)�0�7�;�9�#�,�7�;�:�,�3�+�'�*�%�-�+�6�8�+�7�5�-�0�8�0�1��+�&�+�4�5�&�.�)�%�8�%�0�<�8�,�)�/�%�0�/�3�.�9�<�3�/�0�.�+�+�8�/�(�@�/�.�4�0�'�0�-�2�1�;�'�5�'�)�6�8�<�2�/��0�.�/�1�/� �(�=�9��1�*�5�;�5�)�3�/�3�5�0�6�'�0�,�'�6�%�:�(�'�8�-�2�7�,�+�9�*�;�&�+�0��8�(�3�8�/�1�&�/�,�+�4�5�-�4�+�'�%�#�2�5�>�'�5�,�/�0�=�#�$�.�(�'�/�2�?�4�"�:�4�!�0�5�9�#�(�6�%�8�.��3�.�+�:�)�*�*�/�$�,�1�1�)�+�%�5�*�$�4�.�$�/�,�)�,�4�&�,�$�(�+�0�1�-�%�,�2�4�.�'�3�+�1�5�4�,�-�+�(�3�.�"�/�0�*�:�:�2�4�2�&�!�)�(�+�2�3�7�9���)�0�-�'�/�+�-�+�,�0�%�.�7�(�,�:�/�/�.�1�*�.�3�4�&�.�.�:�,�7�/�0�(�/�%�=�%�G�8�#�)�'�3�8�+�)�0�*�(�=�&�.�/�#�+�)�5�-�1�*�+�(�+�3�1�+�7�&�"�7�0�-�*�'�A�,�5�4�8�7�4�+�/�8�'�)�<�$�#�6�$�'�,�/�<�5�3�'�-�,�3�6�$�0��2�)�+�;�0�=�/�2�3�'�8�%�$�:�2�9�4�6�1�)�3�4�)�6�>�%�/�'�*�&�-�3�2�7�,�.�!�/�'�6�,�!�3�'�7�$�&�/�:�3�+�0�/�1�>�2�)�&�'�)�)�1�;�5�B�1�2�,�0�-�6�.�-�/�0�+�1�$�(�%�-�(�(�6�$�1�4�)�+�6�3�5�/�7�.�#�+�&�#�I�-�,�,�,��.�<�:�)��@�9�"�)�0�%�-�(�+�$�9�"�#�4�*�&�+�C�&�1�2�+�<�2�.�'��+�=�<�.�4�(�рԀ׀րӀـ׀܀׀Ȁـ׀ӀԀ׀ԀڀڀӀӀրрـЁ5�/�(�(�$�/�/� �.�,�-�%�1�-�1�0�'�-�7�7�.�3�)�.�7�2�6�4�5�"�%�*�)�(�0�-�1�0�1�<��1�/�1�4��*�.�(�>�,�)�#�.�*�.�5�/�'�*�:�+�5�-�+�'�)�5�0�2�<�;�1�+�.�<�7�*�3�)�6�2�0�1�!�(�)�.�2�:�.�+�+�)�/�-�5�.�6�1�0�7�-�'�1�5� �4�4�-�4�E�%�5�'�-�&�$�,�(�1�8�8�3�,�-�(�(�#�+�@�/�9�2�%��A�'�&�"�4�.�/�>�!�#�/�+�)�.�<�)�+�-��4�*�'�+�?� �5�1�'�2�4�3�1�1�%�-�6�(�*�0�#�0�(�;�-�+�3�1� �)�*�)�!�6�7�3�:�'�5�2�3�*�*�-�/�3�5�/�*�0�(�$�'�$�%�.�4��5�0�)�)�%�/�9�/�3�1�0�"�>�-�(�.�2�1�2�>�(�/�)�4�9�4�3�,�%�"��4�2�.�3�*�)�(�'�1�+�3�)�,�,�&�1�9�+�!�&�!�.�"�/�,�-�7� �)� �<��+�2�#�+�"�%�>�/�%�&�&�+�.�6�(�:�7�/�(�+�C�3�+�%�1�/�2�:�+�6�1�"��5�(�+�=�8�.�-�,�-�,�,�0�/�2�4�(�$�3�-�#�2�4� �-�.�/�2�)�.�0�0�8�/�,�4�,�?�3�/�5�-�2�)��&�0�,�'�(� �)�8�7�6�7�/�)�#�-�&�,�-�5�$�:�2��8�.�;�'�"�0��+�$�)�(�*�*�&�)�3�'�)�0�:�(�-�'�%�&�*�(�'�/�1�(�4�8�3�)�$�5�<�+�2�!�/�+�/�.�A�1�'�5�&�4�1�/�4��*�+�)�C�6�8�,�<�$�-�.�-�*�0�,�'�+�1�1�3�%� �+�3�1�,�%�.�/�+�3�.�,�2�/�6�B�2�/�1�)�-�:� �1�6�1�.�(�'�A�,�2�+�+�1�1�7�0�9�#�:�/�,�>�"�/�D�9�2�3�6�,�.�/�.�3�.�0�7�'�܀р؀րԀ؀؀׀׀ÀՀ׀րـՀހ؀׀ڀ׀Հр׀ҁ,�0�4�6�8�0�5�3�-�1�3�5�(�%�/�;�-�+�)�0�%�-�/�1�#�*�7�1�4�3�1�2�:�,�)�5�2�<�.�4�'�6�0�0�-�+�!�=�:�)�6�8�+�1�,�,�7�)�.�$�/�5�;�-�'�8�1�2�$�0�7�3�*�/�1�+�)�/�1�4�6�;�A�.�4�3�+�-�/�;�&�-�4�6�+�0�2�.�0�8�'��&�%�+�3�,�.�-�.�1�8�#�+�/�2�&�5�6�%�*�8�.�-�4�(�.�.�)�5�1�5�.�1�+�+�.�1�0�-�,�:�-�,�$�7�3�3�/�=�&�2�1�3�(�-�.�3�4�;�(�5�*�G�6�+�5�'�!�?�/�0�5�/�,�C�#�)�(�*�&�*�9�$�)�2�0�7�2�3�(�0�+�2�/�'�)�.�)�:�/� �+�6�7�"�.�.�-�1�/�"�)�1�/�!�/�'� �-�/�%�-�3�,�,�/�-�+�:�/�*�8�=�-��.�9�=��7�+�*�#�:�&�/�5�(��8�+�*�&�3�/�2�F�+�(�'�6�9�-�7��"�.�,�?�0�-�2�0�+�3�.�%�(�6�0�2�9�3�.�*�(�1�(�.�3�1��,�-�%�6�>�"�<�8�+�)�)�'�1�7�/�/�;�/�3��"�3�*�5�'�/�5�4�.�5�4�/�,�H�6��2�(�&�)�+�4�5�+�-�2�4�5�-� �1�+�5�'�'�3�!�"�,�*�?�2�.�/�+�*�'�0�,�<�2�0�;�$�*�&�4��7�+�.�"�$�0�"�,�5�0�4�%�+�7�+�/�6�0�6�6�/��1�7�"�-�-�A�#�.��,�2�-�-�2�)�6�+�&�6�)�/�-�)�+��A�.�4�>�$�.�6�(�-�4�;�2�2�'�'�-�5�)�(�0�#�.�%�%�&�.�,�-�-�*�?�@�/�?�3�4�-�&�2�5�3�9��<�3�"�,�'�5�/�1�<�#�:�/�7�.�'�,�(�1�,�8�9�1�5�-�B�4�2�)�5�9�$�3�/�+�7�&�$�"�-�-�(�2�3�3�(�/�=�%�1�-�/�րԀҀ܀׀ڀـ׀ԀŀՀـԀԀـ݀րӀրԀЀրрց*�<�>�*�'�2�1�3�2�5�8�/�7�1�#�5�4�9�8�/�8�6�-�-�,�2�+�6�2�)�,�;�0�2�0�-�-�.�1�)�'�)�)�5�!�9�+�)�.�*�"�"�+�<�4�6�3�#�.�0�$�B�&�6�4�/�)�,�*�;�4�8�'�,�(�2�&�+�1�9�1�-�/�/�9�-�.�(�"�2�(�"�.�0�-�/�#�"�3�6�+�:�4�1�@�/�+�4�7�8�:�0�/�(�.�+�/�2�6�,�6�7�&� �(�4�,�2�(�/�4�4�'�,�$�9�*�4�:�4�-�:�4�#�1�7�.�:�.�6�7�+�.�6�+�3�3�#�&�+�;�5�1�'�-�+�/�3�3�+�0�7�%�/�B�7�7�.�<�!�#�1�1�<�*�/�/�/�(�1�#�=�:�-�,�'��/�1�!�/�.�3�)�#�*�4�3�1�.�/�7�5�7�+�*�.�6�/��.�,�/�'�,�/�)�8�+�6�!�)�1�'�,�/�6�+��/�4�2�#�-�:�'�.�+�4�;�&�/�-�.�2�=�:�.�-�&�2� �/�4�.�3�0�/�,�4�1�=�5�0�5�)�4�1�'�+�-�0�(�8�1�.�1�2�(�)�,�/�.�6�7��&�/�,�%�'�.�$�1�*�.�1�7�1�$�&�.�0�8�.�6�.�2�'�%�-�#�2�2�"�2�/�4�.�-�0�3�(�2�#�*�,�*�/�0�-�8�=�4�6�/�)�1�.�)�?�;�6�*�5�3�7�.�(�:��'�!�#�8�'�+�&�2�0�2��&�#�&�(�(�-�2�*�1�'�%�-�4�<�)�3��.�3�0�/�)�"�1�!�$�0��.�+�4�3�8�#�/�/�$�1�"�*�,�+�*�3�,�1�0�*�1�,�)�6�6�0�+�5�*�(�+�#�3��)�/�/�)�"�)�.�1�-� �3�,�4�)�+�4�7�2�#�4�%�5�-�-�3�3�0�2�:�*��&�1�-�/�)�4�)�-�'�.�'�)�'�)�)�4�7�*�7�3�/�)�8�6�5�+�/�/�,�9�,�+�&�/�5�.�&�'�+�9�!�0��+�*�$�1�ՀҀӀӀ׀ӀԀ׀րǀڀ܀ЀրӀ؀րӀڀՀ؀׀׀؁'�%�7�3�5�2�-�1�.�2�+�3�7�1�&�,�+�+�&�,�2�2�4�1�'�5�/�1�+�A��=�/�&�/�:�6�+�/�7�1�7�4�5�)�.�9�3� �=�8�0�.�1�-�?�+�/�3�4�3�1�)�1�9�1�,�#�1�0�+�,�'�/�"�:�%�9�,�7�<�0�'�7�9�$�)�%�*�"�3�3�3�*�2�*�3�7�4�+�+�)��@�/�3�1�#�*�/��+�=�9�9�"�+�,�*�2�=�"�!�.�+�1�4�(�3�#�4�9�(�0�0�,�1�5�.�&�9�/� �(�7�!�*�&�:�!�'�0�;�$�/�!�,��(�0�(�+�0�$�7�1�7�6�1�2�5�)�1�1�*�+�(�%�.�6�%�,�)�(�2�(�*� �7�4�1�8�:�,�/�.�-�3�,�&�7�)�)�3�)��!�3�'�4�-�'�*�.�.�1�3�,��A�,�*�-�&�,�/�4�,�+�+�'�$�-��,�"�(�3�8�.�5�8�/�/�6�:�)�2�/�2�+�/�7�)�;�1�%�)�&�.�3�4�-�'�)�'�,�'�2�.�1�&�7�+�(�)�*�-�0�6�#�2�!�+�)�&�*�,�+�%�$��+�-�6�5�3�1�(�6�2�5�1�+�)�+�4�(�2�5�5�6��0�.�%�&�1�.�)�/�/�5��0�*�5�)�(�*�9� �*�.�(�1�/�5�(�2�3�1�$�%�(�%��:�.�2�(�$�0��%�2�%�,�(�+�0��4�9�(�&�-�&�/�#�7�8�5�1�%�5�8�2�3�1�/�.�5�1�<�'�1�8�,�9�7�*�3�0�"�0�4�/�1�0�1�(�/�2�3�2�(�(�.�-�7�1�/�,�"�;�)�,�,�,�*�.�4�.�;�0�)�+�1�*�"�2�.�2�)�9�&�3�4�-�,�@�<�&�#�/�/�3�+�3�=�*�4�/�#�4�(�:�-�<�1�,�2�%�;�8�2�/�-�+�&�(�&�8�.�2�$�0�0�6�.�6�0�(�2�/�.�6�%�/��$�"�0�*�-�1�&�2�<�>�2�2�$�9�+�(�5�1�4�,�0�ۀ؀րԀ؀Ԁۀ؀ӀŀހԀـڀԀր؀Հր؀ڀ؀րׁ2�0�.�&�"�/�2�&�5�&�%�1�)�)�.�6�%�"�(���,�/�7�5� �3�1�)�1�;�(��"�%�+�+�-�-�'�1�+�1�1���'��)�*�0�)�*�"�(�-�/�+�-�>�.�0�#�&�.�+�-�"�*�5�5�-�%�4�'�+�&�4�1� �?�/�$�!�0�1�+�)��4�'�;�'�1�%�-�/�%�)�'�1�&�)�(�5�)�/�&�,�'�(�'�*�#�.� �'�,�"�)�2�+�/�1�7�=�+�9�5�"�2�.�*�/� �+�0�$�-��.�!�/�6�$�3�,�.�.�(�%�/�,�-�+�%�5�'�7�-�.�,�)�+�5�(�4��1�)�,�/�$�&�1�(�,�'��3�*�$�0�'�'�-�)�&�%�$�'�)��0�3�-�:�'�8�"�4�%�%�2�2�+�!�)�'�"�/�&�+�,�*�2�"�1�'�/�)�"�-�.�%�<�&� �/��*� �.�C��+�3�/�,�&�-�1�/�+�'�0�(�!�'�3�+�/�)�,�&�/�<�.�&�<�.�(�/�,�%�)�(�8�-�+�,�;�0�.�5�%�/�2�"�7�/�2�#�0�6�'�!�!�6�'�.�=�1�2�8�)�'�B�)�!�'�"�-�0�&�2�>�+�$�,�,�!�(�+�!��#�%�:�!�!�(��/� �*�-�&� �4�&�'�(�*�'�$�.�)�-�3�.�%�+�0�+��1�&�*�'�3� �/�-�(�"�-�&�,�6�1�%�-�;�6�/�0�(�+�.�,�0�7�1�)�!�$�3�$�/�2�&�-�3�.�5�;�-�'�(�/�)�-�)�,�*�4�/�8�6�+�&�#�,�'�#�'�0�*�2�2�(�(�+�5�-�-�3�5�.�$�/�!�$�B�*�(�-�6�1��3�/�%�$�$�3�3�)�-�*�0�,�(�.�"�*�1�1�)�0�(�+�/�(�3�.�"�(�)�.�/�(�1�$��9�%�-�7�+�*�.�4�,�3�#�)�7�'�(�)�'�%�(�)�.��5�8�+�"�8�(�#�$�,�(�4�1�#�*�.�+�6�.�/�5�"�-�!�3�πЀӀրՀՀ؀؀؀Ȁ׀ՀՀ݀ՀҀҀԀՀ׀ҀـՀրހӀـڀڀــڀۀڀ݀܀ڀۀ܀׀ــڀ߀ـڀـۀـր݀ڀӀ׀ـ؀Ӏ؀׀׀؀ۀ܀ހ׀Հրۀڀۀــրڀ׀ـۀ܀ڀԀـր؀Հހ؀ــ؀ۀ؀؀׀܀ـӀ؀ـــ܀׀؀ӀԀ݀ڀـۀڀۀڀ܀׀ـــՀӀӀ�׀ڀӀ׀ր׀ۀ׀ڀ݀؀ۀۀڀր׀Հ܀Ԁـڀ׀ԀڀӀۀۀ݀׀ـրڀـڀ׀ڀՀ׀׀݀׀׀؀׀ـڀ؀׀ڀ݀ր׀݀܀ــ׀րـ܀߀ۀ܀݀ۀրրހۀ݀׀؀׀��ހـڀր׀׀Ӏ܀ـۀ؀݀��݀��ڀ܀݀؀ڀ׀ڀ݀܀Ӏ܀Ѐـ؀܀ـ��ـՀրۀۀ߀րۀۀ؀؀ހ׀׀րՀۀ׀؀ڀڀހ؀րրրڀـ݀؀׀ڀ��܀؀Ѐۀրـ؀ۀ׀݀׀܀؀ڀ߀ր܀ۀԀڀրڀ؀ـ؀Հ݀Ӏۀ׀܀؀ـԀՀۀՀ؀ـր܀ՀՀڀڀ؀׀ـ߀׀ڀ܀݀ڀـ؀ـ��ـ߀ۀڀـ؀ـՀۀـ߀܀܀݀��܀ـ݀݀ހــ׀ۀЀ׀ր׀ހ܀ۀ؀ր��܀ـۀ׀ր׀ڀ߀ڀـ؀ۀڀ��؀Ѐ݀ۀۀۀՀۀހـ݀؀ۀӀ׀׀߀Ҁրڀ؀րـ߀ހր؀ՀՀՀۀ׀ހՀـԀՀր݀׀ـրۀـــ׀ـрۀ߀ـހր׀Ѐۀ߀ـ݀րۀԀڀ�ۀـՀـրۀۀۀӀۀ݀ڀـ؀ڀـ܀ـπـ��ހڀ؀ڀـҀ܀׀ڀ܀ڀӀրـۀԀ݀؀؀ۀ߀ڀӀۀ�ۀ׀׀܀ր��րՀ؀ڀ݀؀Ԁـ݀׀ـր׀ۀـր܀ۀ݀܀Հڀ׀ԀـڀҀ�ـڀ܀ڀڀրۀ܀ــր؀րۀ׀߀ހ߀݀ـ܀܀ހՀ߀ـՀՀӀ؀Ҁр׀ҀƀԀրՀـӀـЀրـ؀րրՀ؀Ӏۀ݀؀܀ۀــ׀ڀ܀Հրۀۀ݀Հ݀݀ڀ׀ڀ׀Հހ؀ր؀ـހڀ؀݀݀ހڀ؀ـڀ܀ԀՀــ߀Հ܀ڀ��ۀڀր܀ـ؀׀׀ـ݀݀ۀۀڀ׀؀܀Ӏ݀܀րڀڀ؀Հۀــ؀ڀ׀Հــۀڀ׀܀Ԁ׀ۀրӀـހ܀ӀـՀڀ܀ۀՀ؀ۀۀԀڀ܀߀ڀӀ�݀ڀՀԀ؀ڀ؀րӀր߀րۀ؀րـ܀ڀۀــڀۀҀۀۀ׀׀ـ؀݀܀Հ܀ڀ؀ۀـۀ׀Ԁ܀׀Ӏ׀؀ـڀހ݀ـր߀Ӏـ܀؀ՀހـՀۀ؀؀ـ؀׀ހڀۀ؀Ԁրۀրـ׀ـՀۀԀ܀܀ۀ׀Հڀۀ߀׀ր؀Ԁހ��׀܀ՀրҀڀހ݀݀߀ހҀۀڀۀ�܀ۀۀрۀހ׀ۀڀ؀ހۀ؀׀ڀـڀ؀ۀՀ׀݀׀؀݀݀׀܀ڀڀրڀҀۀڀ׀܀Հрހـۀۀـۀـրހ׀ڀ׀ހ߀ڀՀڀ׀ڀ؀ހ׀؀ـ׀�րـۀՀҀ��׀ـҀڀـۀڀ݀ۀ܀ـۀــڀՀ܀ڀڀ׀ـۀր׀׀ـڀ܀ڀՀ݀ۀ؀݀р׀׀݀ڀӀ܀Հۀ؀؀�׀؀ڀ�ـӀրـڀӀހ܀ހ׀܀Հــ؀ԀـՀ؀ۀ݀؀ڀ׀րހ׀ڀۀـڀހۀ߀րـ׀ԀڀԀـ܀ـ݀ۀր؀؀׀؀Ӏ؀׀׀݀ۀــրրـ׀؀؀׀ހـ܀ڀۀ�׀ڀڀـ܀Հހـրۀրۀڀۀրրڀր؀؀ۀހ׀݀ր؀׀؀ՀՀـ؀ڀڀڀ؀Ԁۀڀ׀ۀــــ߀ۀـ؀րۀـӀӀ׀ڀ߀ڀՀ܀րԀۀ݀ڀۀـۀۀ؀Հ؀ڀ؀ۀ؀؀׀ـՀ݀؀րۀ܀؀��Հ܀Ӏ؀Հـ݀݀݀ۀրڀـրҀ׀Ӏ؀ՀÀՀԀڀրՀۀԀՀ׀ـԀӀր׀׀ــ׀܀܀ր؀р؀؀ӀԀҀ�׀׀߀ۀՀـՀـހ݀؀݀׀׀ـ׀׀؀ހۀ߀׀׀ڀր؀ۀ׀߀Հ׀׀ڀ݀݀߀ڀڀրՀ؀ՀԀҀ׀�ـۀՀԀՀ݀׀ڀ܀؀ۀۀ׀݀ր݀ۀրހڀր؀؀݀ۀ׀ڀր߀׀Հـڀڀ؀ۀڀۀր܀؀րՀۀրڀՀր؀؀ڀԀ؀ڀڀրۀ܀ր݀ڀ߀؀݀ـ܀؀ۀڀڀ݀܀ހՀ��ۀـڀۀـԀ؀�ڀԀ؀܀ـՀڀӀ׀ــۀ؀ۀۀڀڀۀ݀؀��ڀրր؀ڀ݀܀׀րڀހրԀ׀ـހۀ��Հ؀ـۀ݀݀ր܀׀րӀۀ؀ڀۀڀ܀ۀ�݀ڀ׀ր܀րՀڀ׀Ѐ߀߀ڀӀۀ׀܀ڀــ݀ҀـրހՀ݀ۀۀ܀ՀՀڀـ׀ـ܀ԀԀ׀ր؀ۀԀրӀր׀ـހـրՀــ؀܀؀݀ـ؀׀؀ڀڀ׀؀؀ـրր׀؀߀ڀ׀݀ڀـހ݀؀ՀۀՀۀ܀܀ހ؀ۀր׀߀؀�ۀڀ؀Ԁـ׀ՀڀӀڀڀۀ܀ۀ׀ۀ݀݀܀؀׀ր܀ۀՀۀڀր؀׀րԀԀ߀ـ؀ـ؀ր݀ـ݀ۀ׀܀ـۀ؀ڀۀԀۀ݀ـڀۀ݀ڀՀ߀ڀۀ܀ۀ݀Ӏ܀րԀԀ׀ـހ׀׀րԀ׀ԀڀـրՀ݀߀܀ҀրӀ׀րڀҀڀۀ݀���ـ؀ڀڀ݀ڀҀـ؀؀݀ڀۀ׀րـ׀׀ۀ؀ـۀڀ׀؀ڀՀۀ؀ــڀڀ׀Ԁ؀ڀ݀ـ׀؀؀݀؀ۀ��܀݀ۀ؀݀ۀڀр׀ـՀ܀؀ـ܀݀Ԁրހ׀ԀӀـ׀ۀ׀ڀۀۀـՀ܀րր܀׀��ր׀߀ـր�ۀـ׀؀ـր߀рڀրـڀ܀րՀۀـڀـ؀׀܀؀Ӏ؀րـ׀ՀڀڀՀՀЀ߀ҀʀԀրҀ׀Ӏ؀рӀԀЀӀ؀؀Ԁ׀Ҁ׀Ԁڀ׀܀݀݀Հ݀݀܀ۀڀր݀׀Հڀ؀ۀڀ؀݀ހ݀׀؀ր��܀ڀ׀ۀրր؀րހրҀ؀׀݀܀Հ܀ڀ׀݀ր߀ڀ׀׀ــۀۀۀրـ�ۀۀڀހ؀ڀڀـՀ׀݀ڀЀـހـڀ܀ـۀԀۀۀހ݀Հ׀߀ހ׀݀݀؀ڀրـ܀׀׀ހ؀܀Հ܀��ۀۀ׀؀݀ڀۀӀۀրـ��ӀրՀՀۀ߀܀߀ـ܀ڀ؀ۀ݀׀ۀԀڀրՀ؀ـ׀܀؀ۀ׀ހ؀؀׀ـ׀ڀ׀ـҀۀ؀ۀۀ݀ـՀ݀ـ؀ހ܀߀ۀۀ߀ڀڀ׀ۀ܀ހــڀڀ׀ր؀ــ݀݀ڀ؀ڀրڀ��Հ܀׀Հ݀Ҁ׀݀ــԀՀ׀ـ׀ր׀ڀـՀ݀ۀ؀ـրր߀��ڀՀހ��Ӏ׀ۀـ؀ـ݀׀ۀ܀׀ՀՀҀԀ؀ڀՀ؀րــڀ׀Հ݀ڀ؀ــ݀��ڀ؀Ԁ׀րـӀڀۀӀ؀ڀـ܀Ҁ܀Հـ݀؀ۀԀڀـۀ؀րۀڀـڀՀۀހ��؀߀ڀր׀׀ۀ܀߀ЀڀڀրԀӀـހــ��րـӀــҀــ߀ހ؀ۀրۀ׀��؀݀؀ހ׀Հ��ۀ܀ހ܀ـۀ׀܀ԀԀ߀րԀڀ׀ڀ݀ۀۀ׀݀׀ۀـހՀۀ؀Ԁր݀рڀր��׀݀݀ۀԀހـ׀߀݀؀Հۀ׀ۀـڀրҀրրՀՀӀۀՀӀ؀ـۀ݀׀ր݀ۀڀ؀ՀڀրڀӀ׀׀ـ܀׀Ӏ؀ۀـ݀؀׀ـڀـրԀـҀ܀׀ހ׀Ԁ�ۀ׀րـڀـހ؀݀րր׀ڀ؀ۀڀۀ܀݀�ڀ؀ր݀ހ׀ڀրـڀۀ׀ۀր݀؀ڀ׀ۀ׀݀؀׀݀׀րـ܀ր܀ۀ؀܀ԀӀـ݀ހԀـ݀݀ڀހրڀ׀ڀ��׀ހՀӀЀԀԀ؀րրՀȀҀՀـр؀׀ՀԀ؀рڀӀՀ׀܀׀ۀ؀؀ԀۀրԀ؀ހـ݀ـۀۀڀ؀��ــހ׀Ҁ׀ހӀ؀ڀـۀрՀҀـՀڀـրـ��ڀրـ܀؀ր߀Հـր؀߀ـۀՀـ؀܀Ԁ߀؀ހӀۀր׀݀݀ڀـ؀ـ܀ڀۀ܀׀ۀۀӀ׀Ҁڀ߀܀ـ׀ۀڀـ܀ـڀ׀ހــۀڀڀ܀ـހӀހ߀ــӀ؀׀Ӏۀހ݀րۀۀ߀ــــ܀׀ހր׀ۀۀ׀��݀ހۀԀــ܀؀؀րր׀݀ـՀՀـ׀ր؀߀ڀ܀ڀ݀ڀۀـ�݀׀րӀ׀݀ۀـ؀ڀ݀ހҀՀـ݀ۀۀހ܀ڀۀـۀۀ׀ڀـڀրՀۀ݀ӀڀԀՀ׀؀܀ـրՀހրހրހڀـ��ڀ׀܀݀؀ڀހـ؀ـڀ߀ــ߀ۀ׀݀݀ـڀ؀ۀ݀ڀրЀۀ׀܀׀܀܀׀ՀӀ݀܀ـ؀؀Ӏ܀ڀ݀ـڀ׀ۀ؀ــԀ؀߀܀ՀԀԀՀ؀ހ݀׀؀րրӀ׀ـ׀߀؀؀Հ؀׀Ѐހހր܀׀܀؀ր׀ڀր׀߀ڀۀڀրڀՀ׀܀Ԁր׀Հـ��ـ׀ـ܀׀ڀЀۀـ܀؀׀؀ڀ܀ՀۀӀ؀܀ـۀڀ܀׀ـ׀ڀՀހՀՀۀ׀׀ր܀ۀӀڀހۀڀ؀ڀ؀ڀ݀׀݀ـۀ݀ڀـրـ׀׀؀Ԁ݀��܀׀ـԀ�ڀڀۀۀـ؀݀�Ӏۀ܀ԀۀӀ؀Ԁڀـ؀ۀՀ؀��؀׀րր׀ڀ߀ր؀݀׀ӀՀ܀؀ـ��ـҀڀՀրӀڀ�ـــۀڀڀ܀Ҁـڀڀ׀݀ڀԀ׀ۀՀـڀ׀�܀ـڀ؀ـ؀ــۀ܀ڀՀـԀڀ׀ۀ݀݀ՀՀ܀ـ׀ــ݀݀Ԁ߀׀ހ׀Ӏۀـ؀׀݀ڀՀ܀ـ݀ۀۀ݀ހހ؀ـۀڀۀր߀ՀڀڀՀـԀрՀӀÀր׀׀؀րр׀ҀՀӀҀـրԀ؀ӀــހրـՀ߀݀܀ۀ��؀܀߀߀ހ݀ڀڀ܀Հڀ؀܀Հ؀؀ր؀܀ۀրڀՀހր׀ր݀րـՀԀԀ��؀ۀڀԀ�Ӏڀր؀րр܀ۀՀـ��߀؀ڀ؀ۀـЀ�Ԁ؀ۀրڀۀԀրրրЀڀրـրـ�Հڀ׀Ԁ؀܀��ր܀ڀԀ؀ـހڀր܀׀ۀ؀݀ۀۀڀڀۀڀ�ր�рڀڀԀ܀؀Ӏـۀ܀ـ܀ـր߀ՀـՀۀڀ�ـ݀ۀހڀـڀ׀ۀ��ڀۀրۀ؀׀րـ܀܀րրڀڀ؀߀܀Հހ؀ـހـ߀׀؀ۀԀ܀ـ߀؀Հـ݀ۀրڀր׀׀��ۀ؀׀Ԁڀ׀׀؀ـրހڀ׀؀Հ׀ހـ׀ــҀڀ܀ր܀Հ׀ۀڀۀڀ׀ڀԀۀԀހ؀ـ׀؀ۀԀۀӀۀӀՀՀۀ؀܀݀ـ؀ۀ߀ހڀ߀րڀ׀ـ؀ހـڀـ׀܀ـԀۀ׀Ԁڀـ݀րڀ؀Ӏڀۀـ߀܀ڀ׀ڀـڀ׀Ԁۀ׀׀Ԁ؀ۀրڀۀր܀ހހԀր܀�܀ր݀׀߀׀րـۀـ׀׀ڀۀ׀ۀـ׀Ӏ߀ր؀Հ؀Հހڀۀ��؀܀܀ۀ׀؀ڀـ؀ۀ׀ۀ׀݀߀Ҁ߀ۀـ�܀׀܀Ԁ݀ۀۀ؀րـۀۀۀր؀؀Ӏ݀ހԀـڀۀր݀րـ߀ڀ݀Հހـր݀ڀրހҀ܀ۀ؀׀րրՀ߀ڀ܀ۀ݀ڀՀـڀ؀؀؀Հր�Ӏ؀܀ՀӀ؀րՀ߀؀ۀ��Ԁ؀؀܀րՀր׀ۀՀ׀ր݀ۀՀ؀߀؀؀ـ׀Հրـ׀؀ڀـ܀Հ׀ۀ׀؀݀ހրހ�ހ܀܀Հ׀ۀڀۀՀ��Ӏۀ׀ހր؀׀ڀ׀Հـڀр܀ۀր؀ڀـ׀ـ؀րـ݀րՀڀۀ݀ՀՀـր݀րրрՀ׀׀׀ԀπҀԀʀԀۀԀӀ؀׀ҀԀ׀ՀҀ׀րԀ�ۀۀ݀ڀ׀Ӏ܀ހ݀܀ڀ܀րԀـڀڀڀ݀ڀ݀׀݀؀ڀހր׀׀ـۀЀڀ݀׀؀ۀՀ߀ـԀۀـۀڀ؀؀��ր؀ۀـրڀ݀Հހ܀րۀ݀ۀ׀ـ؀ۀـۀԀـڀ׀ڀ׀؀ՀڀۀԀ܀ր܀׀ڀ߀ــրۀ׀ڀ׀Հրڀۀրրր؀ـۀ׀܀؀ڀـހրՀۀ߀ۀ߀ۀڀ׀ۀ݀Ӏ݀ր؀Հހ݀ــ؀܀׀Ӏڀڀ׀Ҁ܀ՀڀՀـــր؀Ԁۀ؀܀܀ڀ׀ހ܀؀؀րۀ؀ڀ؀ۀ׀Ӏڀ؀ۀ؀؀ـۀـ܀ڀڀ݀�ր݀׀Հڀ؀؀ۀڀ؀ۀԀր؀Հۀڀ݀ۀ׀׀׀׀؀؀؀׀ڀ܀܀ԀՀۀӀۀ؀Ӏ݀߀݀ۀ׀ڀ׀׀��ՀԀڀـրـۀـۀــ܀ۀۀր߀؀ۀڀ؀ـ׀؀ـۀրՀ׀߀؀ހۀ׀ڀ؀ڀڀـ؀�؀Ԁــ؀ـ׀ՀԀԀ��ڀۀ܀ހ؀׀Ԁڀ܀ۀ݀ӀــԀ׀݀؀ӀӀ݀ڀ߀׀Հـ؀ހրՀ׀ҀـՀ��׀݀Հـ؀ՀՀ܀Ԁۀրڀڀ׀׀Հ׀ـۀԀۀՀ܀ۀ؀݀݀݀܀݀��ـۀ�׀ۀ܀܀ــ܀ۀ؀Հ؀؀ـۀрՀ݀׀ۀրՀ׀׀܀؀؀߀րڀـڀۀրـ׀ۀ��؀׀Հۀ܀ۀڀ׀Ԁ؀؀܀ۀԀۀހ؀܀ۀ؀ـ܀рڀۀۀـ׀ހր܀׀؀ڀ߀׀�׀ԀڀӀ׀ր܀Ԁۀڀ؀Ԁ؀ۀ݀ҀӀՀԀ؀�րۀր܀؀׀݀րڀـ׀؀؀׀ڀӀڀހ׀ـ܀؀��ހπـހ؀܀Ԁ׀ڀڀــ؀ր܀�؀؀րԀ݀܀ڀ׀ڀڀــ׀Ԁր܀Հրۀր׀Հ؀ۀ׀ڀڀ݀ހۀ؀ހրـրՀ׀ڀր׀؀ـԀÀӀ܀׀րҀـրՀـӀԀ܀Ԁր܀ڀрր׀ڀрۀ݀ـՀހـ܀Հր݀݀؀؀�ԀۀۀـրۀրրހՀ؀ր܀ۀ݀ـހـ݀܀݀րڀրۀԀۀۀހ؀ր܀ր׀Հـ݀ـՀր׀߀݀׀ۀՀ��؀ۀ�ـހր߀ـ؀׀ۀ؀ڀހ؀׀ր؀ۀր��ۀހրրۀ܀Ӏ��ހԀրـ׀׀ӀԀ׀ڀր߀׀܀݀ڀրڀ݀ـ׀׀ڀ؀ԀԀۀ׀݀܀рـ؀Ԁڀ؀ۀހۀ׀܀׀ۀۀրڀ؀؀ԀۀۀԀր؀׀ۀڀـ؀ۀ܀Ҁ܀ۀ߀Հހ��߀րـ��ـԀрۀր܀ՀՀԀـڀހ߀րҀڀــــހՀ߀ԀҀ݀ـրۀՀ܀Ӏۀրڀ܀׀Հ�ۀـӀހ܀ۀՀ܀ۀ؀ހـހ׀ՀހՀ݀؀ހ݀܀ـڀ׀؀րـՀ݀׀ڀ׀ـހ܀܀؀րր܀܀܀؀ڀ؀܀؀׀Հـ݀Ԁـڀۀڀڀ؀݀ր׀րڀՀڀրڀ׀׀Հ�Հۀ׀܀ڀ؀؀׀ـ׀݀Ԁ׀ր݀׀րۀـڀۀ܀܀؀؀׀ڀ܀ـڀ߀ԀրހӀ݀�ـӀـڀր݀ـ؀րــۀۀӀ؀ڀ؀ڀۀ׀ـ݀؀ۀ݀ـ�؀ڀـڀۀ׀ހӀـ߀ۀ؀ۀՀ܀ހۀӀ܀܀؀܀��ۀ׀Հۀـۀ؀ۀـހր߀׀܀�Ҁۀ܀ހڀڀրրۀՀ؀݀Ҁڀ܀ۀۀրـ߀ۀ܀ـր܀׀߀ـ�܀ۀր؀ڀҀ؀ڀۀـՀۀՀڀ߀ۀ׀ՀԀۀ׀ۀۀ؀�Հրڀڀ݀Հ׀؀ڀ׀܀ۀրـڀՀ׀рԀۀ؀܀ـ݀ڀـڀ؀ՀՀ׀ڀ׀݀рހ؀׀ـ׀܀ՀڀۀՀՀۀրԀԀڀ݀ڀ׀ۀހ؀ڀڀۀۀӀ׀ԀڀՀր؀Ӏހڀ׀��؀րۀՀՀ؀рӀڀҀ؀؀πӀӀ׀րۀրҀр܀؀؀ӀԀӁ9�,�,�#�)��4�0�*�7�)�,�'�2�.�0�1�&�7�+�1�4�:�*�*�+�-�,�'�*�.�1�0�)��#�&�7�'�3�)�0�2�5�-�)�$�)�!�6�3�3�/�%�9�3�%�*�:�3�1�3�(�.�/�*�(�,�6�5�3�%�3�0�1�1�*�-�3�(�*�'�.�/�/�5�/�%�3�(�(�/�-�/�'�&��.�/�!�'�+�)�2�7�0�2�:�,�'�C�-�2�:�3� �9�1�:�2�2�;�+�2�0�-�.�/�5�3�*�3�!�6�.�.�)�'�9�3�?�+� �5�0�.�2�'�2�3�)�(�+�0�*�,�/�(�0�!�%� �<�,�4�)�:�0�3�1�+�"�-�<�6�(�'�1�'�5�-�6�,�"�4�2�?�6�7�.�1�-�-�)� �5��*�/�3�*��.�6�1�%�$�-�+��1�0�@�7�(�(�0�1�5�1�-�"�3�/�,�)�"�&�0�(�)�%�"�<�/�=�3�/�1�-�+�0�2�&�/�;�7�/�&�/�(�+�J�)�*�1�*�+�+�!�3�5�+�/�.�'�8�-�9�(�5�1�?�.�/�-�2�-�6�(�/�+�F�)�(�7�!�;�"�3�&�.�%�-�(�*�-�1�-�'�)�$�:�1�-�7�,�/�(�(�5�4�1�,�5�)�"�0�!�+�4�0� �'�0�(�'�,�4�'�,�-�0�1�*�-�+�#�!�=�#�3�-�-�-�/��#� �#�,�:�/�2�#�.�-�.�+�$�0�(�.�&�-�3�7�1�0�4�-�+�(�&�-�0�3�.�/�&�9�*�3�*�"�(�#�/�(�5�;�.�1�6�5�1�2�6�(�0�3��+�)�-�#�)�,�)�#�4�0�A�>�-�,�4�:�9�/��-�3�7�7�(�9�,�/�>�2�)�6�7�6�)�+�&�&�0�#�/�*��$�)�/�2�8�(�2�)�4�.�.�*�1�,�)�0�-�1�-�1�/�3�*�1�'�/�)�<�3�E�,�%�2�3�%�1�-�&�-��&�5�5�!�'�(�O�&�=�8�7�0�(�5�1�8�(�(�.�,�+�-�,�0�4�)�'�'�׀ԀՀ׀ـڀ׀րπÀـՀ׀ـ׀׀ـڀրҀ׀Հ؀Ӂ6�)�/�+�7�/�)�7�0�)�4�.�+�)�'��2�+�!�+�0�)�&�+�'�5�2�!�,�*�1�)�4�'�5�+�3�)�/�'�5��1�/�1�+�/�*�3�/�!�(�/�1�6�0�@�"�1�3�;�.�/�-�*�0�!�/��1�(�*�#�1�=�:�/�0�1�E�:�/�/�'�.�/�-�* \ No newline at end of file +SIMPLE = T / BITPIX = 16 / NAXIS = 2 / NAXIS1 = 536 / columns NAXIS2 = 520 / rows OBSERVAT= 'SAAO ' / observatory source TELESCOP= 'SAAO 1.0m' / OBSERVER= 'crawford ' / observer INSTRUME= 'STE3 CCD' / DATE-OBS= '2013-07-13' / UT date OBJECT = 'rf0420 ' / IMAGETYP= 'object ' / IRAF image type FILTERS = 48 / Filters 10*A+B RA = ' 22:04:08' / ra DEC = '-00:55:31' / dec RA_OBS = 331.0334 / ra in degrees DEC_OBS = -0.9253 / dec in degrees EPOCH = 2000.0 / Equinox of RA,Dec UT = '00:57:33' / UT at Exposure start ST = '21:45:06' / Siderial time at Start exp EXPTIME = 150.040 / integration time in secs SECZ = 1.176 / Air mass at start exp TRIMSEC = '[ 17: 528, 1: 520]' / Useful part of data BIASSEC = '[ 4: 13, 1: 520]' / Overscan region BSCALE = 1 / DATA=BSCALE*INT+BZERO BZERO = 32768 / GAIN = 1.9 / e-/ADU RDNOISE = 5.0 / e-(rms) read noise CCD-TEMP= 180.2 / CCD Cu block temperature MJD-OBS = 56486.0 COMMENT = END ���ƀӀԀрԀـрրրҀ׀׀ր׀ҁ$�&�/���%�+�%��,�$�/��$�#��$�'�7� �)�4� �&�&�/�)�+�5� �$��'�%�,��� �*�&��(�%�/�#�'�+�!� �'��*�8�/�&�,��-�&��0�4��)���&�*�1�!�+�$�'�#�#��%�!�7�"�*�'�(�-�%��4�)� �$�-�5�#�7�1��&�'�'�&�4�%�#�&�'�� �)�,�'�!�5��(�,�%�'�&�'�,�'�%�)�"�-��.�(��� �-�*�$�&�1�-�"� �'�!�'��5��"�#�"��(�(�$�+�-�5�'��'�;�(�'�*�,�1�,�,�.�*�8�#��3�)�'��%��!�/�4�+�1�;�(�/� �/�$�(�#�'�%�.�&�%�!�%�!�2��%�*��!�$�1�(�)�)�'� �%�5�/�%�,��2��"�)�%� �&�'�7�!�0��*�!��'�'�&�!�)�/�-�%�*�%�%�.�+�%��.�(�'�.�*�)�+�#�,�$�*��)�2�.�,�-�*�+�)� �,�&�#�%�%�#�>�.�0�-�#�"�/�/�)�&�-�+�/�$�-��(�*��*��/�+�*�$�!�)�*�5�2�3��,��)�"�,�&�4�!��!�/�+�'�0�'���)�(�)�+�+�/� �$��&��3�&�1�-�9�%��#��'�#�1�-�.�!�/� �&�*�)��%�"�1�3�#�6�2�1�/�%�-�3�(�$�%�$�!�(�$�)� �+�1��-�"��$��(�0�,�,�*�$��� �&�0�,�5��:���6�*�;�2�(�0�$�$�/�,�(�(� �%�1�'�3�*��*��0�$�4�"�$��1�+�(�'�(�1�(�*�(�"�,�+�)�*�-�1�&�8� �$�+�*�.�$�,�)�(�.�5�*�&�$�-�+�2�*�-�#�'��,��%�#�'�#�)�.�'��(�)�0�&�'�*�"�*�*�2�.� �0�8�9�&��/�#�1�$�"�-�%�.��!�/�)�#�0�#�-�2�؀Ԁ܀ـ؀Ҁـ׀ՀƀڀՀ݀ހրԀ׀ـڀՀրڀրہ;�9�.�-�6�5�$�3�2�.�5�3�-�8�<�0�8�(�)�&�1�5�.�7�5�/�+�#�/�$�%�2�.�4�"�8�9�+�2�:�'�8�5�3�)�3�-�/�>�+�"�&�3�.�*�-�*�-�-�(�!�(�!�9�/�.�2�,�*�)�,�*�,�!�-�)�7�1�9�+�/�5�6�@�#�*�5�,�*�3�(�2�,�5�/�+�/�%�.�-�1�0�%�(�,�0�-�&�*�-�4�4�/�$�%�2�,�0�&��)�.�*�+�2�2�$�#�%�-�3�(�0�.�1�C��4�-�*�+�1�%�%�*�%�/�8�7�"�+�5�'�7�,�;�*�-�$�/�&�5�:�%�(�1��)�*�)�4�2�3�5�1�2�*�/�,�'�)�<�?�(�3�,�+�3�3�2�+�>�,�7�0�+�*�&�9�+�,�6�2�,�7�2�/�'�1�B�>�+�7�/�3�8�6�7�+�+��:�5�0�+�-�*�4�.�$�!�/�6�!�&�0�1�:�2�8�+�3�7�%�'�,�6�;�1�)�.�)�9�+�*�.�1�5�7�+�'�2�5�3�1�.�)�+�1�+�+�&�(�5�%�$�)�/�2�3�.�+�&�4�#� �/�;�6�6�-�4�.�0�)�/�/�*�:�3�'�)�*�,�9�2�/�5�;�'�'�7�5�.�+�-�/�2�0�%�%�0�/�'�,�4�*�3�*�$�-�7�+�3�&�.�-�'�5�6�/�*�3�-�:�(�,�-�4�1�)�4�3�5�/�+�3�!�0�+�)�?�+�4�6�;�(�@�6�,�2�+�)�:�6�6�0�.�,�)�1�7�&�B�'�8�%�3�4�7�0�%�0�*�2�3�+�4�/�-�(�/�8� �?�7�+�9�/�6�2�5�3�.�/�4�*�:�-�;�)�3�7�,�A�/�%�1�7�*�7�A� �+�+�=�(�2�"�2�9�,�6�9�'�*�=�5�7�,�5�2�$�2�3�'�6�(�1�1�.�6�9�7�5�4�,�)�8�=�(�.�0�5�0�5�'�=�2�=�7�3�.�'�3�6�5�-�9�1�/�1�'�6�:�/�.�3�)�&�7�5�/�3�5�6�;�5�,�7�6�.�ــ܀ր؀݀Ӏۀڀʀ׀؀ڀրــۀۀ؀Ԁـ߀րց0�*�4�6�6�+�,�7�)�6�2�-�0�0�5�.�7�(�&�1�-�*�C�<�?�7�)�+�.�-�*�!�(�4�-�(�*�:�9�1�-�5�&�1�6�6�(�'�8�3�.�:�0�2�2�%�7�+�7�-�+�4�#�:�<�1�(�B�(�6�2�3�0�+�,�7�/�!�2�(�7�*�(�*��.�4�1�/�B�0�8�(�*�1�+�0�%�0�-�5�,�4�7�/�;�3�6�8�&�3�1�2�0�&�+�'�)�(�#�;�+�3�&�/�%�(�;�G�&�7�=�.�:�7�7�!�+�/�3�/�#�-�6�0�)�=�5�'�3��'�%�,�@�8�,�1�/�=�'�.�,�7�5�*�.�;�>�&�#�,�*�;�+�(�/�%�*�5�.�3�-�7�:�2�.�+�3�*�,�=�*�'�0�$�)�1�9�(�.�-�%�7�?�+�6�+�6�9�5�2�.�.�5�2�;�,�.�2�-�+�(�7�<�/�5�.�7�7�.�+�9�1�*�6�4�/�*�*�3�%�/�$�)�&�-�/�2�6�4�D�-�+�'�/�1�E�3�<�2�*�2�*�.�/��(�&�)�-�*�+�#�/�7�8�+�-�-�)�7�7�3�9�)�/�1�+�!�-�1�5�/�/�0�1�,�.�1�+�2�*�(�7�/�:�/�%�3�2�%�2�7�(�,�,�0�.�,�/�$�-�>�3�3�4�,�>�0�=��/�'�5�.�"�0�%�"�%�8�2�8�.�0�/�0�3�/�-�9�:�9�.�4�3�(�A�7�%�'�9�:�/�2�3�8�+�4�4�4�.�-�6�)�'�+�)�$�+�-�*�0�1�;�5�5�/�2�/�9�)�"�$�,�6�3�-�*�7�:�8�/�-�/�+�6�(�9�'�0�;�1�'�,�+�5�*�&�%�-�0�+�-�,�0��6�1�$�6�6�/�'�+�,�1�,�6�2�-�7�8�7�0�!�7�2�6�,�+�/��*�)�-�:�1�$�/�6�-�5�4�3�/�5�5�/�-�5�8�,�>�+�.�(�1�/�)�8�5�3�"�*�2�0�2�8��3�/�/�0�)�*�.�:�<�+�/�9�4�3�(�8�/�1�1�)�,�ـ݀ـڀـ؀Ӏ܀ۀȀڀۀــԀڀ߀Ӏ׀ـۀۀ؀ׁ(�0��3�(�,�7�3�<�3�1�'�:�3�0�'�'�8�,�5�;�7�;�#�3��.�@�9�+�(�7�9�$�5�%�$�3�'�'�!�)�/�0�2�;�3�+�3�-�#�'�/�2�/�6�3�/�+�"�3� �,�/�1�7�;�1�,�1�6�3�*�.�3�6�5�)�4�0��2�1�0�6�3�9�/�.�2�/�2�9�*�1�)�.�)�(�)�)�0�#�@�8�$�'�%�2�,� �4�,�+�:�7�.�4�;�/�4�3�*�2�-�-�.�,�-�+�2�;�*�*�4�+�1�)�7�&�6�3�'�1�.�7�+�7�7�(�'�(�3�.�,�#�1�,�2�1�1�@�/�(�-�6�6�:�4�4�'�4�8�%�/�2�5�*�;�-�*�2�2�4�.�5�*�(�.�4�6��*�,�2�7�-�.�.�/�2�*�+�3�F�9�.�6�5�-�9�2�'�5� �>�0�9�)�:�/�7�>�2�5�1�+�/�+�4�*�4�-�3�$�1�/�7�,�(�#�-�(�3���.��.�2�/�-�/�8�/�-�=�3�/�,�$�+�@�-�#�-�8�/�.�=�2�$�0�$�%�.�+�2�*�,�1�0�"��'�*�'�-�*�6�)�4�9�;�5�8�$�*�%�'�&�(�.�0�:�!�:�'�,�7�'�1�#�-�$�*�2�'�/�9�(�7�)�(�)�0�1�,�5�'�0�<�.�'�/� �*�3�;�#�-�(�#�1�#�*�.�(�0�0�+�(�$�1�1�,�.�%�$�$�4�-�-�5�A�&�0�(�.�7�4�)�0�%�-�-�2�*�(�<�'�+�%�5�5�8�9�2�<�/�)�4�9�-�'�/�-�-�7�;�3�&�/�+�-�,�(�/�7�-�7�,�4�+�;�9��4�/�7�0�(�5�:�4�9�0�3�%�/�#�7�*�(�0�2�7�,�0�)�0�D�%�/�3�3�3�$�/�4�1�-�=�=�/�0�,�6�1�*�'�-�&�5�(�2�.�.�6�*�/�+�8�+�,�*�5�9�*�1�7�,�1�/�6�.�)�;�>�2�-�4�2�/�7�2�E�8�8�0�$�/�/�=�:�7�;�5�7�2�8�'�ր׀ۀ݀րڀـԀۀʀ݀ـۀڀրҀـڀڀ؀Ԁ׀׀܁5�?�4�.�$�"�,�5�1�,�'�4�1�.�7�5�!�/�/�7�+�5�5�!�1�4�5�0�+�9�-�2�1�'� �-�)�5�4�6�#�,�&�.��0�/�/�-�&�>�&�:�.�9�0�,�1�9�#�1�(�$�%�:�,�5�8�5�,�3�.�-�,�/�+�%�1�6�0�9�0� �-�4�5�,�"�!�7�'�+�(�1�-�.�'�1�-�*�3�.�-�6�7�1�/�&�)�&�/�0�5�'�&��+�$�3�&�+�7�-�2�(�+�%�)�6�1�(��&�;�:�#�-�2�-�4�1�$�-�+�(�-�$�2�6�+�/��6�0�!�-�6��9�,�,�2�"�/�(�4�/�+�.�5�%�-�;�/�(�2�/�3�.�+�6�+�(�.�*�/�=�)�5�2�"�0�*�4�2�#�.�*�*�3�2�@�)�;�#�,�+�/�9�!�(�$�(�<�/�,�(�1�+�+�)�+�*�(�;�0�(�1�1�+�/�7�2�3�3�*�'�.�"�1�#�'�"�2��'�4�/�2�=�2�-�,�.�2�+�(�'�5�8�%�*�&�5�/�6�/��)�1�2�3�1�"�/�5�/�+�2�+�,�0�+�/�$�/�-�/� �.�0�/�(��1�-�'�%��*�0�1�)�<�<�1�8�7�,�2�0�5�$�)�/�1�1�%�%�/�4�0�>�6�%�4�=�,�1�8�)�&�'�%�2�/�%�3�*�1�2�:�2�.�7�3�.�*�3�/�8�3�/�*�7�8�*�:�*�A�!�(�-�.�4�=�5��0�;�%�3�(�2�0�.�,�(�-�3�-�7�/�5�/�1�5��3�*�C�7�1��,�-�/�'�'�*�$�<�0�&�6�2�?�7�*�%�4�.�4�D�2�1�8�&�)�+�,�2�,�/�.�5�2�-�<�+�8�+�(�.�.�&�#�1�,�/�4�*�-�8�/�.�1�+�4�8�.�#�3�+�/��5�:�9�-�/�<�+�/�)�2�5�1�9�,�3�.�5�&�+�+�"�:�!�0�4�5�!�*�@�5�<�"�$�.�7�.�3�+�3�4�!�0�@�<�'�6�-�7�3�,�,�+�-�8�,�)�ڀހڀـՀـԀـՀǀ݀ـ׀׀׀ӀڀՀԀԀ׀ր׀ׁ&�/�6�(�-�:�/�6�/�3�/�8�3�5�+�2�*�*�5�'�*�/�>�2�$�9�5��0�:�>�)�%�'�'�6�'�1�*�'�1�-�,�3�/� �%�,�#�>�0�1�7�/�+�&�.�1�1�,�/�$�*�*�0�7�+�(�"�&�-�*�#�/��+�%�(�3�0�'�-�(�>��#�$�+�5�-�/�+�,�$�2�2�(�6�+�3�2�+�%�,��/�,�7�%�3�,�)�+�'�0�/�$�=�,�4�#�(�/�,�1�.�5�-�,�+�5�)�%�'�8�1�/� �2�7�C�#�4�)�(�&� �)�)�%�3�&�/�+�:�$�4�-�&�/�/�2�.�)��3�/�,�:�)�5�/�/�5�2�2�0�)�1�,�/�)�-�+�5�1�/�.�.�'�2�6�*�!�#��*�%�<�-�1�'�-�6�#�-�*�6�,�1�<�4�9�*�(�1�7�+�%�5�4�6�;�3�%�/�,�0�%�/�3�8�,�9�9�$�-�*�(�-�/�%�8�1�)�/�9�>�1�&�4�%�$�3�+�(�/�2�)�+�-�1�.�#�5�8�1�.�"�*�2�-�-�$�-�5�(�*�8�+�)�)�/�*�%�,�7�+�+�'�-�%�#�<�,�+�)�)�9�"�*�,�<�6�7�&�;�3�+�*�(�*�+�*�(�/�;�,�0�5�1�4�,�:�1�3�0�=�,�)�(�4�-�+�,�/�7�%�"�+�$�1�-�)�7�4�0�1�7�'�)�<�+�6�%�*�,��)�9�4�#�/�/�(�2�2�,�+�0�4�)�!�&�(�1�.�)�.�-�;�.�9�(�+�)�.�/�1�6�7�1�0�4�1�,�,�*�,�3�"�9�-�-�1�1�2��;�%�5�/�/�1�(�-�;�'�)�1�5�3�.�+�/�1�+�3�-�0�'�+�&�7�,�"�/�6�'�%�2�+�+�1�5�6�"� �1�(�6�*�(�'�/�3�(�*�4�)�7�)�(��,�3�3�0�"�-�3�2�5�!�)�&�5�;�3�3�,�/�)�1�4�-�&�%�7�6�0�/�#�,�7�1�%�-�*�-�2�&�&�+�,�,�-�'�,�'�5�>�րۀԀ؀ۀ׀؀܀րʀԀ׀րـӀրۀӀ׀ր؀ހր�+�3�4�.�,�)�3�$�+�(�/�"�+�+�;�0�0�$�0�(�"��.�,�&�/�,�@�$�2�/�9�8�1�+�%�,�.�+�!�2�1�8�,�&�1�(�2�(�2�1�-�,�1�3�%�(�9�'�+�!� ��'�3�#�'�)�2�;��)�(�+�-�+�-�+�9��*�-�7�&�.�%�7�/�8�1�5�5�3�'�)�1�+�+�0�5�1�1�0�1�;�+�)�-�7�/�$�+�3�0��'�-�+�%�!�.�)�#�/�.�,�(��%�-�)�'�2�#�.�5�'�$�*�-�&�4�2�!�-�*�6�,�5�*�3�/�$�2�-�0�1�5�'�9�(�.�9�1�+�.�;�5���2�/�*�%�-�9�1�/��2�5�.�(�6�&�)�7�3�5�(�'�/�&�&�/�+�"�)�%�#�&�/�3�3�'�(�B�4�*�+�0�,�$�:�,�"�6�%�)�5�0�)�/�-�,�'�0�2�7�-�)�F�%��;�-�"�0�0�)�.�2�&�0�.�:�3�1�0�-�-�)�,�(�5�%�)�$�2�(�5�)�4�+�1�8�)�(�#�2�3�2�.�(�,�1�&�+�3�)�.�9�3�)�'�1�6�0�%�:�-�-�/�+�(�0�8�%�-�)�*�4�/�/�!�1�,�+�(�;�.�$�=�9�:�+�1�$�&�#�+�4�)�1�5�*�(�!�+�;�@�1�+�-�/�!�5�*�#�<�&�0�"�#�.�4�%�2�/�/�4�'�+�4�+�,�8�2�'��,��-�*�(�9�/�*�6�1�1�(�/�'�'�6�%�#�%�/�4�/�'�*�$�0�)�&�3�(�)�!�7�$�/� �*�9�#�,�*�1�,�/�(��-�-�6�2�6�*�$�6�'�,�.�-�/�*�1�"�:�,�,�"�5�5�!�#�#�#�!�)�9�2�2�)�/�%�(�/�6�7�;�.�,�7�*�/�)�/�-�)�-�3�1�6�4�1�-�7�+�-�$�7�"�-�@�1�/�0�7�1�*�(�+�)�1�'� �4�)�-��0�)�3�/�3�.�2�4�:�4�%�3�6�*�(��3�&�-�8�1�=�1�/�5�"�0�׀рـՀ׀ڀڀــ̀ـۀ׀ـ݀ۀ؀׀ӀҀր׀܀ف'�?�&�$�(�+�7��5�-�0�1�3�4�*�$�,�/�/�:�3�%�/�+�.�#��+�!�5�,�6�1�!�+�+�.�*�2�3�)�&�F�(�-�5�0�(�=�-�.�3�0�*�7�9�$�-�2�)�=�,�*�8�)�3�%�%�3�9�+�)�>�4�9�*�,�&�)�!�0�%�-�4�5�#�/�3�1�/�4�2�'�)�2�,�3�0�2�-�-�,�)�(�*�6�4�4�/�0�3�'�/�#�$�+�&�!�)�-�/�0�7�'�$�/�$�/��8�3�,�(�,�.�)�-�/�?�6�@�+�&�+�%�"�4�2�$�%�(�0�*�%�5�$�.�+�"�"�5��%�6�'�*�6�)�+�-�?�3�,�)�(�0�1�2�+�7� �!�1�(�+�-�(�"�4�7�8�2�2��,��;�3�.�)�3�%�.�2�,�'�/�+�/�/�-�4�1�-�.�6�+�%�%�1�.�*�3�$�4�'�5�4�+�2�-�'��#�/�/�7�/�4�<��)�!�4�2�C�/� ��&�5�$�%�%�+�0�5�/�2��)�%�&��5�9�*�-�(�)�/��(�$�1�5�'�,�&�,�(�*�2�$�%�7�-�2�1�1�1�"�-�8�-�!�!�5�3�-�+�.�)�?�(�5�/�$�*�;�-�-�0�-�2�-�!�&�'�,�5�-��-�7�.�5�2�8�(�+�"�0�4�/�!�7�4�3�/�9�0�1�'�4�/�9�8�3�/�1�!�#�%�*�0�*�0�1��/�6�4�1�*�0�'��&�7�+�/�=�*�*�1�+�+�'�5�!�-�(�#�:�(�3�(�+�2�4�;�)�/�4�4�6�#�6�)�/�5�)�/�7�1�!�8�-�,�,�#�,�4�.�%�-�&�/�-�,�#�7�/�-�&�(�5�(�$�0�*�2�#�'�2�)�/�%�1�$�/�*�0�(�-�-�-�4�)�1�/�2�%�$�4�.�-�+��&�*��$�5�2�4�-�(�(�&�/�:�)�+�'�/�+�&�+�9�0�0�)�.�<� �4�1�,�:�"�/�1�0�>�2�2�3��-�.�2�3�+�2�.�:�+�1�+�;�܀ր߀ڀ؀׀׀րڀŀրՀڀڀـՀՀڀ׀ր܀ـ׀ց.�4�)�>�,� �3�'�)�6�*�-�.�,�(�1�7�7�5�*�&�)�1�3�)�9�0�$�0�1� �/�"�#�/�,�*�&�,�1�%�)�)��,�/�*�(�)�+�5�,�0�2�4�4�1�7�8�1�,�,�9�)�#�2�6�5�)�+�7�2�(��6�&�/�/�-�0�0�4�/�)�%�"�8�0�2�-�3�/�-�-�.� �)�9�7�5�.�,�0�3�#�&�.�%�.�6�/�+�5�+�4�-�'�,�5�7�1�.�7�0�'�,�&�5�,�&�2�+�/�2�.�&�/�(�*�-�!�0�"�8�.�#�2�,� �4� ��<�0�0�/�;�1�$�)�,�*�/� �)�2�3�0�:�.�.�Y�/�+�%�-�#�0�*�*�/�+�7�4�&�7�/�(�'�4�)�.�*�'�*�/� �*�/�2�-�?�*�5��$�"�/�$�2�1�/�1�7�-�*�=�$� �+�0�0�,�0�)�4�6�7�)�3�&�'�B�3��4�0�/�0�*�(��*�!�-�;�,�4��.�*�)�.�+�/�*�2�1�(�+�2�'�,�*�)�2�2�7�)�.�1�@�*�<�+�*�/�-�,�)�2�/�-�%�/�=�/�!�$�+�.�'�/�2�1�*�1�2�&�,�1�*�1�'�&�&�:�+�,�3�,�,�2�3� �,�7�2�9�&�!�;�%�#�9�*�2�*�+� �7�'�(�)�%�.� �:�2�#�.�9�(�(�,��+�9�%�-�(�(�(�-�0�1�4�/�2�$�9�!�(�4�-�)�+�%��4�/�+�.�*�,�%�3�,�6�-�2�+�'�)�>�+��0�3�%�.�$�5�%�&�%�)�.�.�=�2�(�4��-�-�2�4�3�1�)�,�&�)�+�/�*�/�9�4�8�'�,�1�.�"�*�"�4�*�-��3�'�-�/�3�*�&�$� �=�'��#�4�1�+�,�,��,�9�,�-��6�!��1�2�&�%�1�.�6�$�'�%�1�'�2�5�+�(�1�,�/� �)�2�!�-�3�*�4��:�1�3�/�,�4�2�.�'�-�4�2�2�:�/�+�&�1�4�-�)�-�2�4�=�ـڀ׀ـ׀׀׀׀ՀƀԀۀڀ؀ՀրҀӀ׀րՀڀڀց7�3�3�)�7�0��3�/�&�3�"� �.�8�4�+�0�/�/�,�&�6�*�/�!�/�+�:�2�"�)�-�*�-�.�,�/�!�)�2�$�0�,�A��+�3�:�.�-�/�)�"�1�/�2�(�/�-�+��$�$�1�3�/�#�/�)�8�&�6�%�#�+�3�4�/�"�,�.�/�2�/�8�5�#�3�,�?�7�3�*�-�=�)�0�+�0�)�,�%�;�+�2�&�,�)�3�'�>�3�,�/�2�3�.�5�/�&�0�3� �8�+�5� �0�/�%�'�2�)�/�(�9�.�#�&�/�.�/�.�4�"�0�9�2�*�%��/�%�5�/�(�8�*�7�$�-�(�0�!�.�%�5�/�1�.�%�C�&�=�0�+�#�2�+�-�*�(�1�;�(�!�(�%�3�+�'�*�.�#�2�,�(�,�/�(�2�%�4�9�&�'�,�*�7�2�*�2�/�7�2�1�,�"�*�7�-�-�6�&�3�2�'�=�2�2�+�*� �0�-�,�"�7�+�3�8�*�%�'�"�&�2�1�3�.�/�0�(�(�4�8�'�5�8�(�1��*�0�)�!�4�5�'�8�-�<�3�/�*�'�0��%�+�'�1�-�/�&�#�-�0�*�3�(�&�-�4�-�&�,��&�0�>�!�&�)�1�?�3�,�$�0�$�)�'�2�(�*��%�2�4�3�%�(�"�#�/�4�1�&�'�.�0�&�1�%�$�"�7�+��4��)�/�$�"�9�-�+�%�+�0�/�/�.�.�1�?��&��2�G�,�(��6�.�/�E�6�-�0�-�0�9�,�<�4�+�-�0��$�+�7�&�-�&�6�,�'�4�+�#�+�(�/�,�,��-�$�'�2�)�+�>�&�<�5��5�+�,�.�3�(�2�1�.�(�1�*�/�0�=�-�%�'�4�,�.�'�)�-�1�$�,�!�6�0�'�)�,�4�$�3�5�9�$�*�5�#�(�,�)�)�"�+�+�,�6�'��5�+�&�0�"�,�2�*�-�%�&�8�,�-��(�.�,�2�'�.�(�*��2�;�-�>�)�4�6�$�1�%�3�#�-�.�&�-�/�"�<�1�2�/�Ѐ؀րЀ݀؀րրҀŀրـ؀ۀ؀׀ـ׀ր؀׀рـӁ1�7�/�/�/�+�*�+�&�+�.�)�5�7�&�4�4�1�-�0�(�B�1�)�/�'�#�5�(� �/�8�<�+��.�(�0�7�4�;�8�2�%�,�5�0�$�'�:�6�(�'�/�4�-�-�/�+�-�#�%�#� �1�3�.�$�:�0�(�(�)�2�-�*�+�0�2�1�(�+�=�(�-�+�/�3�!�'�;�*�&�"�3�"�-� �#��/�"�3�/�&�,�#��8�%�/�1�.�!�%�/�-�'�)�)�3�1�)�)�-�+�/�.�)�'�'�0� �1�/�%�,�*�1�/�-�5�*�4�#�8�(�8�.�%�"�2�,��-�'�1�+�/�$�0�*�$�.�+�%��.�/�/�'�3�4�!�/�4�.�4�(�$�0�)�!�1�*�3�6�-�!�)�(�-�6�,�;�7�4�*�*�5�0�%�&�+�0�1�&�.�)�5�7�(�-�0�5�2�,�=�/�/�&�.�6�;�%�!�0�%�8�)�&�!�-�-�/�0�)�-�,�,�"�7�)�#�/�-�/�,�1�0�2�-�*�#�'�2�'�!�/�.�5�'�/��4�%�/�+�'�'�,�.�2�&�.�.�1�+�/�$�"�.�,��.�)� �)�-�,� �'�,�2�)�@�/�9�4�+�$�/�4�)�)�0�(�+�&�-�.�,�%�3�/��/�6�%�0�%�2�(�%�)�-�(�/�'�+�%��>�.�D�:�,�1�#�*�+�+�4�0�5�,�)�*�3�5�+�0�.�)�-�7�7�$�%�2�0�/�:�)�)�1�+��*�(�0�3�.�$�3�)�:�>�9�#�2�*�$�6�2�4�)�-�!�)�+�'�-�+�3�5�4�$�*�,�(�/�+�*�0��#�'�)�(�/�.�2�.�/�&�#�0�%�)�-�.�&��5�5�2�&�)�/�+�.�,�&�+�6�8�/�2�(�1�3�*�"�5�'�(�+�*�+�(�*�=�/�4�7�1�+�!� ��1�+�(�"�#�(�+�)�2�,�B�/�1�3�%�8�0�3�!�(�&�*�.�+�.�(�.�1�,�7�(�'�!�*�(�)�?�*�+�3�<�"�.�%�2�"�7�,�,�*�2�ـ؀ՀـՀۀӀҀрǀӀ݀׀؀؀Ӏ؀݀րրЀڀՀځ4�.��*�2�+�-�"�-�/�5�*�'�9�0�-�.�'�)�'�(�5��+�1�1��1�*�4�(�6�-�+�,�'�!�%�%�4�%�-�/�.�#�/�:�1�0�+�.��0�)�+�)�7�6�*�,�2� �/�/�&��?�)�-�5��.�&�-�2�$�*�'�4�/�/�4�#�$�#��/�(�)�0�%�3�1�/�)�2�'�E�/�0�&�$�+�'�"�"�,�$�%�7�4�'�.�%�.�+�$� �.�'�&�1�+�)�8�/�#�.�$�.�-�'�9�1�0��5�-�.�#�7�)�!�0�0�-�.�5�)�)�&�%�#�(�-�.�5�!�)�*�)�(��+�:�/�%�'�*�+�6�-�+�&�2�/�$�!�/�1�/��%�/�,�.�,�-�&�-�.�5�%�-�3�@�#�1�7�'�4�!�,�-�.�.�(�#�*�#�$�>�-�<�/�,�.�+�)�-�,�+�8�*�.�+�*�'� �2�#��'�/�0�-�%�)�*�1�$�$�+�3�,�,�3�,�/�7�'�1�%�4�=��1�-��2�5�-�1�%�!�1�,��4�0�/�2�>�7�)�"�+�'�)�%�-�(��.�!�#�&�1�=�(�*�1�4�)�/�3�,�5�,� �&�'�3�'�"�%�5�,�.�-�#�&�-�,��/�+�%�%�5�(�1�)�/�.�.�8�%�9�(�+�"�.�5�$��7�%�+�/�$�+�,�#�&�3�*�#�%�1�(�$�)�&�=�*�(�.�8�7��#�*�(�1�5�-�-�+�-�2�2�+�/�9�!�&�%�2�5�(�1�&�'�5�1�#�0�/�.�0�(�+�$�/�!�3�4�(�-�2�/�3�,�'�(�/�4�.�4�0�&�)�+�/�(�/�,�0�+�-�%�,�4�1��6�$�;�5�'�3� �0�)�,�<�-�(�5�5�0�:�:�%�"�-�7�9�*�2�$�'�,�1�4�2�/�7�/�7�2�1�,��-�=�4�%�+�1�9�3�6�,�0��6�4�9�9�/�.��1�'�$�/�7�0�?�0�-�3�/�2�1�*�2�7�8�&�4�7�1�3�3�9�1�,�,�5�Հـ܀؀ۀԀրӀ׀΀ԀۀրՀڀրـրӀ׀ԀրՀՁ �!�0�/�4�1�"�/�)�1�1�6�)�%�;�1�(�.�*�!�0�4�.�"�,�*�-�%�2�/�6�+�1�2�.� �)�&�+�3�*�/�(�7�9�6�5�:�8�+�*�*�1�'�/�*�,�3�"�1�/�.�-�!�-�'�(�9�(�<�$�9�&�,��0�&�5�'�#�2�.�1�.�,��:�&�6�)�6�+�)�0�%�!�,�-��2�-� �5�+�#�-�+�)�)�"�.�(�#�.�!�-�"�-�!�5��-�*�'�+�0�6�+�$�+�5�#�*�7�0�6�%�7�%�-�6�/�0�/�0�2�"�)�,�8�4�+�8�!�'�<�5�3�3�'�2�1�;�3�=�6�-�4�4�.�/�&��2�0�1�6�(�2�$��'�3�*�1�#�$�2�/��:�!�1�%��&�)� �0�-�/�%�*�*�-�1�1��4�(�6�'�%�/�!��1�.�)�:�%�-�+�/�&�(�1�(�:�7�*�#�*�+�/�<�,�'�.�:�(��$�.�0�+�.�(�$�*��#�1�.�1�$��=�9�/�/�/�,�+�%�)�+�%��-�+�)�+�&�.�/� �)�-�&�/�/�(�,�1�$�;�,�'�4�/�"�3�2�)�#�-�0� �,�4�.�+�5�/�0�%�-�+�5�7�,�'�(�/�/�9�5�(�*�-�2�4�2�!�7�"�'�2�1�(�,�5�'�*�-�)�5�#�*�+�3�3�+�?�"�%�-�0�0�!�4�&�,� �.�(�1�(�/�/�-�0�;�2�.��&�-� �$�.�&�%�'�%�&�4�&�;�-�)�5�4�!�1�+�0�5�-�3�/�#�#�(�/�-�+�-�'�"��9�7�/�(�2�9�0�2�9�;�/�*�1�.�%�(�4�.�&�*�&�0��,�0�'�2�/�%��0�0�0�*�%�/�K�1�&�%�.�)�'�9�-�7�3�-�4�2� �0�8�+�2�4�%�"�/�'�-�&�"�#�)�+�-�.�+�0�!�3�)�(�)�-�3�#�4�,�<�+�$�!�@�8�-�$�:�0�8�.�)�)�*�/�/�+�2�$�#�*�&�(�1�3�5�;�?�C�րӀڀՀՀҀ׀ـՀƀ׀Ӏ؀ـ׀Հ׀Ҁـڀ׀Ԁрׁ%�;�$�5�'�,�4�1�/�%�3�$�'�,�2�1�+�&�+�.�0�4�:�#�7�#�4�(�7�1�4�3�$�)�1�*�*�3�2�&�-�4�=�/�*�/�6�(�#�%�0�-�.�%�.�(�+�:�,�.�8�#�)�$�1�&�9�>�/��'�$�#�!�2�*�,�%�*�2�(�9�$�.�9�"�'�+�"�5�+�(�1�!�)�*�.�1�9��&�)�*�'�3�,�)�%�'�0�4�2� �+�&�6�5�&�%�4�.�6�*�-�.�5�)�6�,�.�3�,�7�&�-�5�+�-�7�(�)�2�*�0�0�1�3�/�.�3�0�.�-�-�%�+�3�2�4�6�,�)�+�'�(�3�&�/�0�)�2�=�'�2�%�*�.�3��+�.�+�0�&�.�4�+�1�)��.�/�0�/�0�+�+�0�&�0�0�6�/�4� �;��/�#�&�;�.�;�%�-�0�2�'�1�)�2�,�,�(�3�5�-�&�#�&�,�0�.�,�*�-�5�1�4�&�'� �6�-�,�;�+�%�5�*�'�/�%�*�+�)�1�'�5�0�-�,�#�0�1�&�9�/�?�&�5�'�-�)�&�)�(�!� �%�;�(�"�>�!�-�)�%�/�5�5�)�(�/�%�-�-�4�1�7� �&�1��'�(�-�/�+�'�/�-�-�*�2�"�-�'�)�0�2�/��+�+�/�1�,�%�1�$�6�1�)�*�2�&�.�5�+�*�.�6�0�)�&�/�/�9�5�&�&�,�-�+�%�4��-�-�"�.�/�1�!�/�/�-�/�$�'�1�0�8�4�+�)�,�.�-�(�+�7�4�.�+�)��&�%�7�'�5�&�%�2�8�*�1�.�)�(�3�%�+�,�6�/�1�2�&�1�-�6�"�+�/�/�*�#� �5�'��'�2�+�4�)�)�=�1�7�(� �+�0�.�3�4�(�+�&�.�*�"�)�.�3�:�)�-�3�,�,� �6�+�+�&�&�"�)�-�+�&�"�)�/�'�$�)�-�6�3�0�7��2�+�*�5�0�3��$�2�2��4�0�4�(�&�(�0�+�,�(�1�*�/�3�+�1�2�+�%�7�6�-�.�׀ՀـԀ׀׀Ӏ׀׀Ȁ؀؀р׀ڀՀڀՀ؀ӀրԀـف/�0��3�'�9�(�6�2�3�3�)�;�#�-�1�"�/�$�#�,�(�/�3�)�"�2�#�� �'�&�.�#�&�$�)�)�(�*�8�2�$��)�1�-�(�%�/��6�(�'�%�4�+�/�9�0�(�&�,�,�&�+��(�/�;�4� �/�4�)�4�5�%�,�5�/�*�+�!�*� �)�*�!�,�(�%�*�?�#�&�+���)�&�"�*�3�(�/�'�9�(�/�*�4�'�/�*�4��8��)�+�.��-�*�5�/�%�'�+�/�0�/�$�&�5�2�4�)�)�7�9�(�/�+�-�-�0�8�-��1�2�0��*�1�7�2�%�)�)�.�(�+�)�;�8�%�"�4�/�(�/�%�,�)�#�+�+�*�"�#�*�3�4�+�-�&�+��2�>�(�*�1�:�,�3�4�'�.�'�&�;�"�'�9�1�%�9�0�3�.�*�<�'�"�2�5�1�.�+�/�'�4�&�1�*�4�+�/�)�3�&�)�4�+�&�3�)�6�3�,�(�;�'�2�4�/�1�,�-�)�/�)�)�.�2�7�*�(�4�&�1�#�0�,�/�7�0�5�&�%�2�&�&�/�5�0�7�+�"�0�(�/�$�5�4�,�(�4�1�(�.�3�2�+�,�(�$�.�)�+�(�.�&�)� �/���!�&�6�-�1�"�/�(�7�3�*� �7�-�5�0�+�)�2�-�*�.�8�7�2�5�/�#�'�$�(�)�,�*�(�!�,�(�(�"�*�)�'�'�(�'�;�!��4�)�)�-�!�'�(�-�=��:�/�%�+�0�9�(�,�(�(�:�$�1�5�%�3�4�*�!� �5�2�'�9�(�7�)�#�-�-��'�.�(�(�.�2�-�)�-�(� �,�1�=�2�7�#�6�'�1�/�.�3�1�1�-�1�2�>�,�$�-�7�*�&�,�4�2�-�.�-�"�/�%�3�-�&�3�5�9�2�-�+�)�0�*�-�2�0�4�,�1�'�%�,��&�.��"�&�+�/�3�.�3��-�3�0�5�7�.�5�)�0�+�'�$�'�0�'�-�1�.�!�$�4�-�'�%�'�$�.�'�2�9�,�8�5�׀׀Հ׀؀ـր׀ՀǀҀՀ׀ӀӀԀՀՀ׀܀׀؀Ӏف&�%�4�6�1�/�:�)�?�1�1�*�(�!�'�)�)�.� �(�4�-�1�#�*�+�'�$�(�7�'�$�(�'�*�)�.�)�,�4�(�*�'�&��'�+�.��2�0�/�-�(�,� ��0�;� �+�,�-�-�"��6�6�$�+�,�%�,�3�+�4�5�'�"�3�1�3�*�*�,�+�,�9�2�0��+�,�'�/�-�#�4�%�-�,��.�&�.�*�*��/�A�%�!�'�)�$��9�)�%�(�4�(�)�1�D�*�)�/�$�)�1�-�:�0�(�.�,�0�7�'�%�/�1�1�,�9�%�+�:�"�,�7�.�2�2�5�"�*�)�0�5�-�+�*�'�1�*�"�,�-�.�'�'�*�-�3�%�.�*�4��-�,�&�6�'�4��6�+�#�,�'�!�1�#�,�$�1�.�/�-�/�6�#�#�*�%�1�+�1�/�*�1�"�/�1�.�/�3�7�/�'�4�6�2�)�4�)�5�/�3�:�3�%�*��/�"�"�2�!�.�'�+�1�&�0�.�/�9�-�*�4�.�.�?�6�5�.��$�'�*�/�-�6��%�7�+�/�*�,�/�9�$�'�2�,��/�-�,�%�1�#�*�4�*�'�<�.�/�#�&�(�8�2�&�2�$�.��3�/�5�%�*�%�#�3�2�&��(�&�$�)�*�,�-�>�$�>�-�)�-�+�&�,�.�#�+�)�/��%�0�0�1��(�'�7�1�*�9��&�(�$�)�/�9�,�0�2�+�1�%�'�*�*�&�(�4�/�2�#�&��4�.�)�*�*�'�!�+�"�,�)�@�$�/�1�+�5�9�&�,�&�$�*�+�.�%�$�&�"�)�.�4�.�2�$�)�.�)�6�.�4�.�:�'�-�6�9�-�!�)�-�+�.�"�-�!�3�4�4�#�1�-�#�4�+�1�#�+�2�%�.�2�-�0�+�(�+�'�3�"�&��,�6�/�;�/�/�.�-�4�$�.�<�)�*�2�(�-�*�6�/�-� �1�)�2�+�-�'�%�3�"�&�,�+�,�7�!�9�-�1�-�4�#�1��(�2��&�&�'�3�(�0�/�%�/�7�ՀԀ܀ӀրــՀ׀ȀڀՀҀڀրۀրԀ׀؀ـ׀րՁ,�&�,�1�#�*�2�-�(�(�:��-�(��7�-�-�%�5�$�,�0�2�.�&�5�'�"�(��!�.�2�8�&�/�3�3�"�'�(�%��6�5�� �'�+�2�"�8�%�3�/�(�,�'�+�7�7��!�!�/�-�0�5�1�,��8�-�*�0�-�.�,� �#�+�(�-�5�(�%�*�3�5�$�*�0�"�4�*�%�+�%�1�-�2�3�%�&�3�$�)�4�/�&��*�)��,��+�4�1�.�'�0�/�1�&�+�3��/�3�0�6��(�&�2�(�-�1�7�/�"��)�3��1�)�(�3�(�2�/�3�*�*�/�$�1�&�0�/��4� �/�/�<�/�&��/�/�*�2�*�0�'�<�1�%�6�"�(�,�!�"�0�-�'�-�/�8�0�+�3� ��#�-�1�-�"�)�!�+�+�+�*�0�#�/�4�!�(�(�"�&�1�2�5�"�&�1�,�5�%�*�.�)�0�*�7�#�8�*�"�$�&�.�4�)�$�+�*�/�2�!�1�)�.�3�$�/�2�(�3� �(�&�-�:� �,�*�#�*��/�!�3�-�1�,�2�-�)�(�0�$�#�'�"�-�0�'�3�!�5�-�2�'�3�(�/�(��4�'�'�(�,�#�!�2�,�3� �)�/�&�$� �'�#�<�3�0�$��.�&�3�-�7�/�%�2� �3�1�&�0�0�+�.�.�(�%�2�+�0�)�5�3�9�,� �,�+�/�+�7�0�%�,�1�$�5�)�/�+�+� �)�%�5�5�0�0�&�(�.� �)�*�*�.�*�(�8�/��#�%�+�)�$� �)�*�#�'�*�,�4�*�2�+�$�5��/�4�2�0�+�'�'�+�&�9�)�#��)�,�&�"�(�.�.�5��'�'�5�3�.��)�)�!�0�)�"�*�5�$�0�4�"�)�+�%�$�5�/�6�/��0�'�"�*�/�)�/���6�%�3�)�$��'�1�/�$�%�5�+�"�/�/�,�5�0�(�'�)�5�0�&�2�1�(�%�9�0�-�8�+�(�-�4�#�+�,�*�0�6�3�-��5�-�%�-�&�΀րԀрՀӀԀՀҀȀ܀ՀрҀԀ׀ۀـ؀Հր܀؀Ձ3�4�.�&�'�@�&�#�"�6�1�.�3�3�&�4�8�6�%�%�)�2�+�,�/�$��$�(�)�2�%�2�)�$��(�0�/�+�1�%�+�.�*�1�$�4�4�3�(�+�%�7�)�0�.�'�:�1���4�2�'�"�%�.�(�0�*�,�%�1�+�4�(�/�&�.�!�1�2�/�3�4�$�3�"�"�0�.�-�0� �-�D�;�!�%�-�+�!�4�)�+�3�&�'�*�'�6�5�2�"�4�!�&�3�,�!�'�@�%�0�-�.�)�8�/� �#�/�1�&�%�8�5�0�2�/�/�/�=�+��7�'�(�'�)�:�0�;�)�!�#�(�&�+�%�2�-��;�+�8�6�,�;�%�)�7���0�/�.�-�%�.�0�-�*�*�2�"�-�#�.�,�+�+�$�5�-�6�/�#�$��.�(�-�'�'�1�*�3�$�9�2�*�#�"�3���+�;�.�'�4�+�#�1�-�2�'�#�*�)�'�1�)�&�2�(�1�"�'�$�-�+�6�(�,�7�$�<�6�5�,�,�:�%�,�7�&�7�2�(�&� �'�+�1�-�%�4�%�+�.�=�0��0�/�D�+�+�3�+�'�#�4�&�3� �)�!�'�=�:�%�#�*�,�.�+�1�-�*�>��0�(�+�#�*�!�$�0�,�-�#�)�0�3�1�)�1�.�!�)�%�(�$�#�.�#�2�4�1�5�&�)�%�1�/�$�/�'�'�.�$�"�/�,�%�%�-�1�1�>�4�'�*�&�*�'�+�%�+�.�3�7�,�%��3�'�'�/�)�8�&�%�/�4�3�*�7�(�,�.�$�4�-�,�%�2�,�6�/�0�.�0�%�8�.�%�0�-�1�&�+�%�C�(�%�.�/�#�%�*�/�,�6�5�)�&�(�/�4�.�(�+�$�5�(�2�1�.� �-�%�=�)�'��/�,�3�2�"�&�9�$�)�'�"�3�'�&��.�(�(�%�3�&�&��&�!�4�"�7�5�)�&�2��4�.�/�4�(�3�&�5�)�0�'�)�"�5�%�-�)�3�/�#�/�+�-�(�/�>�8�+�-�!�*�+�/�'�'�.�3�(�Հ׀րԀЀӀ؀܀ۀπ׀Հ؀Ԁ׀րր׀؀ր߀рӀԁ:�2�(�/�*�!�/�+�+�.�"�(�+�-�4�'�:�'�-��$�)�/�6�*� �3�-�$�&�5�#�*�#�.�4�0�+�4�"�<��(��*�0�#�$�2�1�-�'�4�.��%�)�&�2�$�)�5�>�!�6�!�0�7�0�(�5�$�3�%�&�*�,�'�,�-�0�)�5��!�7��-�/�.�/�#�'�0�1�0�;�+�!�*�1�+�.�0�#�2�,�+�*�(�*�)�2�/�8�"�9�-�+�3�;�5��-�/�*�*�)�"�/�.�0�'�/�,�5�,�(�5�*�7�2��1�3�1�$�8�*�+�.�3�/�'�:�-�"�0�2�+�+�(�(�,�-�%�+�(�+��-�3��/�/�2�-�'�5�/�)�,�#�/� �+�,�$�;�#�!�)�/�-�3�(�-�7� �%�5�#�'�*�3�$�&�+�/�7�1�#�,�5�0�)�+�%�/�#�"�/�.�+�2�*�+�A�(�2�0�,�/�,�*�"�/�4�&�.�/�,�(�(�.�5�:�/�+�%�-�,�+�/�5��<�"�6�1�1�3�#�&�'��$�&�5�8�,�5�+�0�!�(�,�+� �-�#�1� �.�(�,�(�(�*� �:�/��#�4�,�,�.�(�'�/� �/�/�/�)��'�$�)�#�+�4�/�'�&�+�"�,�'�3� �=�'�+�(�(�.�)�.�0�1�'� �D�'�(�!�$�$�+�/�+�,�;�(�0�.�*�/� �:�!�-�/�3�.�3�7�1�$�5�-�1�+�(�3�'�'�-�0�6�#�,�1�8�3��0�2�6�2�%�6�'�'�2�'�0�4�.�6�)�$�0�*�.�#�"�+�'�8�*�+�&�0�5�&�&�.�5�4��1�6�)�1�$�(�*�#��*�/�-�:�*�/�2�-�7�!�(�,�.�+�&�*�/��3�(�2�*�5�/�-�+�5�/�2�)�0�.�!�/�0�&��&��1��.�%�0�#�3�/�+�+�&�*�/�*�-�0�1�'�1�0�3�*�6�7�.�/�#�-�A�G�'�0�2�(�8�/�5�.�&�0�3�8�1�'�"�2�+�/�-�/�)�؀ـЀԀՀԀ؀׀Ҁɀ׀׀Ԁ׀ۀ؀рԀրՀրրԀԁ/�-�%�-�,�(�(�+�2�8�+�#�9�6�"�%�&�*�,�,�4�5�$�-�(�%�.�8�#�.�.�0�3�6�-�7�*�0�(�0�+�/�,�/�/�)�0�0�'�"�'�$�-�%�/�!�.�,�#�'�2�0�-�3�0�*�-�2�� �;�"�)��'�:�-�.�#�/�+�6�*��4�!�*�2�%�,�-�#�"��3�.�%�-�9�/�4�(�4�:�!�+�)�#�(�9�)�-�(�0� �0�'�-�%�!�(�,� �)�"�,�/�3�.�:�(�'�,�(��'�3�2�(�-�(�2�,�0��$�!�&�*�.�)�:�5�5�5�,�3�%�1�3�$�4�5�5�#�#�4�-� �*�)�/�3�&�)�*�.�-�6�)�.�1�<�8�%�#� �)�3�%�)�&�.�(�6�+�:�/�1� �#�)�+��'�-�+�/�%�,�/�4�$�.�9�$�+�%�:�.�)��)�0�.�*�)�(�#�4�0�/�%�.�,�7�,�%�*�0�+�"�(�3�'�(�%�#�&�/�1�/�5�1�0�#�)�3�'�0��5�2�4�)�-�2�"�*�5��(�'�&�1�2�3�/�*�2�)�/�%�/�,�6�:�3�3�)� �'�(�/�+�-�)�2�,�-�(�'�)��7�&�1�,�-�5�1�*�1�-�%�7�*�=�*�1�.�#�,�4�0�;�-�*�/�'�,�,�8�0�2�*�'�7�/�$�/�'�&��(�,� �%�1�&�(�=�-�)�*�-�#�)�/�'��.�+�4�,�&�'��3�.�+�(�#�$�#�7�(�(�@�)�/�1�6�-�+�&�,�!�)�(�-�/�/�*�-�+�-��B�'�*�$�%�*�)�1�0�:�4�)�+�)�#�*�$�*�+�(�/�/�4�$�&�-�+�8�;�$�(�6�!�+�&�*�.�1�-�3�7�7�*�)�.�*�-�.�-�(�!�(�7�#�6�.�.�*�*�1�.�+�1�&�$�9�4�+�9�"�3�?�+�5�%�.�5�#�$�(�2�,�%�&�#�3�0�/�/�3�0�#�/�/�0�/�*�+�1�-�3�+�#�0�6�/�'�2�.�'�,�/�(�8�Ӏۀ܀Հрـ׀׀ՀƀҀ׀׀ـԀրրـҀ׀؀׀ԀՁ,�:�(�-�7�3�(�*�/�-�-�0�-� �8�)�0�.�5�.�'�$�%�.�'�-�'�7�+�"�/�"�$�%�1�%�%�)�#�1�)�-�"�)�1�0�/�$�*�(�(��*�-�5��,�?�-�5�)�-�3�*�*�)�(�(�$�1�8�#��.�+�-�0�'�-�+�9�3�/�,�6�"�#�$�0�#�&�7�/�8�'�'�+�,�)�/�(�)�.�4� �0�.�3�.�-�*�!�&�-�7�*�'�5�#�&�6�,�6�2�0�*�3�2�"�:�/�/�� �$�)�&�%�4�/�,�6�.�(�/�D�,�(�6�5�,� �2�2�(� �2�0�+�-�/�5�+�7�3�4�(�)�,�,�%�'�3�&�6�1�.�5�'�2�2�#�%�/�,�)��2�5�'�-�%� �+�.�1�4�)�%��-�%�3��2�*� �$�+�$�.�,�-��*�&�%�#�/�/�2�5�1��-�%�#�.�!�%��%�7�0�"�4�3�)�,�8�*�-�6�(�/�-�5�-�'�0�(�6�(�"�0��.�1�$�.�5�8�-�0��8�-��(�3�:�+�,�4�2�9�#�6�'�-�%�7�#�/�=�+�7�4�?�'�*�#�.�3��/�9�7�2��$�-�'�9��)�*�*�3�,�8�!�0�*�#�%�-�6�,�*�#�/�#� �+�%�(�&�"�1�.�.�/�2�-�%�%�.�5�2�,�*�-�*�.�-� �1� �/�4�2�4��-�2�*�'�'�,�2�/�8�+�,�'�,�(�/�#�,�1�.��*�+�'�5�.�-�/�%�'�&�*��/�,�3�6�)�.�&�%�,�4�&�6�2�(�#�%�/�0�0�'��2�/�&�2�/�/�7�'�5�+�4�*�+�+�.�=�,�)�1�3�1�3�,�<�2�&�2�1�.�&�+�&�'�(�-�*�=�'�1�3�+�,��+�"�)�)�2�)�6�+��1�(�2��+�%�/�/�1�)�)�,�2�'�5�#� �)�,�)�;�(�5�!�!�2�,�/��2�5�6�/�'�(�0�-�"�B�0�(�7�+�'�/�+�3�2�3�4�#�B�-�؀Ѐ׀܀ـԀՀڀՀʀҀ؀ـԀۀ׀ր׀׀؀܀׀ۀԁ&��,��6�"�/�.�-�/�$�/�&�.�)�,�+�/�0�'�%�,�9�7�'�4�.�,�*�!�,�&�;�&�%�+�0��)��(�'�*�4�)�+�)�3�)�.�)��)�;�.�0��%�!�1�6� �%�1� �.�4�/�1�&�,�*�,�(�/�#�3�,�'�"�!�/��H�9�'�+�:�&�2��,�/�&�+�$�*�/�1�/�&�3�!�2�(�)�,�3�'�)�2�5�/�+�'�&�.�7��0�(�/�,�2�!�,�&�$�/�-�2��,�/�4�2�4�"�%�#�,�2�/�4�1�,�7�+�+�9�'�)�-�%�'�1�!�4�2�-�1�7�3�9�@�+�-�.�&�,�-�5�0�#�+�,�.�4�5�0��,�4�=�,�!�#�*�8�'��*�7�-�6�.�&��8�%��!�(�1�&�.�+�0�.�'�6�0�.�)�/�=�)�/�-�-�"�7�'�(�%��!�/�)�(�!�'�'� �(�$��.�+�0�(�)�3�#�2�.�(�0��.�5�+�;�/�*�+�&�(�.�&�#�-�2�'�&�+�1�-�(�'�%�)�#�-�)�)�)�4�$�)�!�<�1�/�3�4�)�2�(�%�(�9�5�$�(��0�3�)��+�#�(�.�#�/�6�,�6�,�(�2�1�,�3�1�2�'�+�&�5�.�6�+�(�'�1��8�-�,�1�2�4�8�)�+�6�#��/�*�.�3�9�"�&�-�&�*�,�5�-�"�,�=�"�%�7�/��1�/�)�)�#�-�)�7�-�:�!�,�-�(�*� �.�1�/�%�0�7�,�6�6�/�*�4�$�4�9�0�2�0�4�5�'�2�2�)�7� �,�$��!�!�2�&�8�!�0�?�&�+�>�)�%�7�3�+�,�"�)�-�"�*�.�)�2�5�.�&�,�>�$�#�3�2�/�7�/�5�+�.�*�'�"�)�-�-�%�,�.�"�/�%�)�/�.�-�&�4�0�,�2�/��/�2�-�*�(�&��"�4�%� �5�7�'�1�$�+�7�0�'�$�3�0�+�0�6�3�*�"�,�8�5�.�*�=�,�,�7�4�1�6�-�1�ـրԀӀԀՀҀـр€؀ՀЀЀۀـ׀ԀԀԀ׀ҀրӁ9�1�"�%�;�,�,�&�&�.�4��.�(�0�4�,��-�/�#�,�/�9�1�&��7�8�*�%�+�-�8�+�.�%�+�0�!�"�*�+�%�3�#�'�6�+�%�)�#�4�#�/�7�1�2�+�$�&�!�2�"�&�-�3�-�8��!�'�3�0�2� �9�!�+�$�0� �-�#�&�-�-�%�2�,�9�-�.�5�(�,�4� �.�0�)�+�3�1�*�0�2�/�3�4�2�(�/�0�!�)�9�-�3�/�'�6�.�(�9�7�:� �)�3�'�1�5�&�(�"�(��)�+�/�6�=�/�7�+�.�8�.�%�2�5�1�,�1�(�*�*�,�8�2�.�/�7�7�8�/�'�'�9�-�&�)�,�-�:�-�)�1�+�(�%�'�9�)�,�/�.�%�.�"�/�3�!�1�1�'�2�/�)�'�(�&�/�*�&�(�3��.�(�.�*�3�0�&�6�(�,�3�)�0�.�8�(�#�%�+�6�9�+�'�@��/� �2�(�,��%�6�&�"�*�,�.�$�)�,�(�!�'�0�6�0�&�.�-�(�+�8�)�4�2�,�#�1�#�1�)�'�'�)�5�!�.�&�1�-�"�+�.�+�.�/�'�)�-�0�/�+�1�&�(�&�.�&��%�*�4�(�0�3�:�)�*�$�'�-�(��(�4�'�+�'�+�4�'�*�3�(�#�*�)�(�*�,�-�-�+�&�6�,�4�)�)�6�)�,�3�<�;�7�/�#�2�5�0�%�1��1��"�%�*�'�/�&�,�)�/�+� �1�4�-�6���'�-�*�+�:�/�)�.�"�+�%�.�-�5�+��4�,�"�6�0�+�-�6�+�&�-�-�'�3�&�!�)�1�&�,�!�3�.�+�;�-�*�/�/�,�!�>�9�$� �>�4�2�,�4�6�,�7�9�-�(�.�.�3�*�.�/�-� �3�'��)�'�'�*�0�0�.�+�%�%�6�5�%�5�3�0�0�-�4�$�+�/�*�6�(�$�&�*�6�+�.�+�2� �/�7�-�)�&�"�*�+�/�#�7�&�<�1�4�"�1�'�3�*�+�5�-�2�&�7�;�#�2�*�%�?�׀׀׀؀ր׀Հ׀Ӏǀ؀ـــ؀ހӀ؀܀ۀ׀ӀҀف&�/�*�2�3�+�)�2�5�%�1�;�%�0�/�/�/�6�%�1�0�2�&�(�.�+�+�.�&�:�+�&�&�1�(�7�%�/�%�)�&�3�)� �&�,�6��(�,�)�4�&�1�,�2�!�/�"�.�-�0�#�2�.�/�"�0�%�=�*�<�5�!�8�'�-�,�0�7�5�2�+�1�(�5�/�+�4�3�5�!�&�3�.�7�0�/�)�1�,�!�2�%�/�/�;�"�(�,��-�+�/�&�!�0�$�#�,�+�/�-�5�!�4�6�3�/�*�6�+�(�.��%�3�+�)�;�.�%�,�&�)��/�+�@�+�6�9�5�8�'�*�2�0�<�*�"�%�!�9�/�;�/�*�-�3�(�(�,�"�2�3�&�%�=�(�%�;�+�,�4�)�#�/�5�1�#�*�$�)�A�%�/�*�6�0�0�,�%��/�0�$�*�#�1�'�7�1�2�.�%�(�/��/�,�3�,�%�*�0�'�6�2�%�5�#�'�0�.�*�(�9�-�-�=�+��3�%�.�3�0�0��1�!�'�:�%�%�/�*�/�/�'�#�'�(�2�3�,��4�-�/�/�.�#�$�#�&�$�'�&�-�� �*�0�%�+�+�-�%��(�,�7�3�*�*�<�1�<�#�7�/�-�-�$�(�1�1�-�(�"�0�'��,�,�*�1�9�4�/�2��3�)�%�0�&�4�*�%�,�+�&�%�5�)�,�.�-�*�1�&�5�(�4��%�4�.�4�6�%�-��5�/�%�(�$�)�1�"�7�1�4�.�'�$��8�/�'��!�'�-�#�"�3��4�+�!��(�"�.�+�7�/�(�%� �<�+�B�3�*�(�+�7�$�$�1�/�1�2�3�/�2�-�+�8�*�8�'�/�?�/�1�(�-�3�$�)�0�*�&�/�)�'�/�/�-�'�'�,�#�8�9�(�,�"��,�4�-�+�-�3�)�'�(�(�,�=�*�(�0�-�&�7�7�.�4�-�-�/�6�7�1�2�7�5�)�%�;�?�2�4�/�!�*�3�%�/�5�0�2�,�*��0�/�"�1�+�)�+�3�'�8�/�3�9�,�6�'�?�1�рրՀڀـ؀ՀՀڀɀՀрրҀڀՀ׀ڀӀ܀рրրׁ#�1�.�3�+�!�#�$�9�,�&�.�:�!�/�0�%�,�'� �/�8�)�5�,�)�,�7�5�"�.�7�#�,�'�'�#��'�&�,�5�1�.�2�$�(�.�2�.�8�7�'�'�0�#�/�(�$�;�0�(�%�0� �7�#�#�(�+�4�,��1�&�+�/�)�3�2�1� �,�$�2� �$��+�+�+�.�*�3�5�$�/�,�4�6�)�"�&�0�6�6�2�%�+�/�/�2�!�/�%�*�-�/�2�'�4�"�6�4�-�3�+�1�)�4�&�-�+�'�5�=�.�5�/�$�2�/�-�+�+�+�-�'�8�@�-�J�3�1�.�,�?�3�5�:�9�)�1�&�/�3�1�A�5�+�)�0�)�?�$�"�*�8�8�.�/��+�-�!�%�%�(��'�%�)�-�*�,�5�.�=�$� �0�2�7�0�%�(�/�*�0�'�/�/�9�+��(�5�-�/�-�#�,�&�(�-�1�(�)��%�)�!�8�.�3�!�3��.�+�4�#�3�.�$�)�2�8�;�'�:�.�&�+�/�;��#�6� �3�)�!�:�$�%�1�)�&��0�,�,�5�4�0�*�-�.��$�+�2�!�)�*�1�-�&�;�1�.�1�3�3�.�%�)�/�4�$�D�*�/�/�!�3�&�2�4�"�5�'�2�.�/�"�'�)�&�.�%�#�8�/�6�+�1�'�!�&�/�.��)�%� �6�/�9�&�&�'�/��$�.� �#�%�/�#�(�'�:�&�*�&�2�+��!�&�4�$�.�1�3�0�0�"�"�)�-��%�1�3�!�2�4�2�0�J�,�;�2�)�*�3� �,�)�)�*�.�/�(�!�!��'�#�,�$�/��$�1�8�/�-�2�-�*�,�$�.�)�5�,�'�&�%�&�)�/�,�:�%�3�&�1�1�/�%�+�-�"�$�/�-�1�$�(�>�#�/�0��.�4�)�&�'�)�*���(�%�(�7�(�-�+�(�0�-�-�,�<�-�&�6�1�"�7�.�:�!�-�'�.�:�)�/�-�1�+�*�(�-�'�/�*�0�/�"�6�;�,�.�-�"�/�&�$�2�6�2�,�؀Հ׀ր؀ԀррҀÀـрրրҀրڀ؀ԀրՀӀۀց2�4�-�&��-�#�(�!��5�6�.�/�+�)�)�(�5�+�;�#�'�4�7��5�*�'�.��-�)�.�"�#�(�-�$�1�*�3�1�/�4�4�)�#�/�#�>�3�9�&�/�5�"�6�(�(�3�)�)�#�4�$�+��%�&�4�;�-�#�/�7�*�%�+�4�2�'�2�'�7�!�9���2�5�-�&�%�*�-�&�.�,�*�/�+�(�&�,�&�'�7�-�/�/�)�*�7�-�/�+�+�,�C�.�&�&�;� �1�.�"�(�*�)�(�/�*�3�0�"��7�,�0�"�)�(�:�)�5�9�?�/�<�@�>�=�:�@�E�6�)�3�'�@�+�%�3�>�<�.�%�*�1�3�'�2�#�"�.�.�$�0�+�!�1�-�(�/�/�/�/� �%�-�-�.�+�0�,�+�*�(�/�.� �-�)�)�+� �=�'�5�8�(�'�,�+�)�'�3�-�;�.�3�%�/�'�1�'�'�1�.�;�"�/�4�%��5�;�-�*� �'�3�0�&�0�4�'�1�/�-�2�'�0�2�)�/�,�&�0�'�7�&�@�,�.�#�)�'�.�/�*�.�'�*�,��*�"�-�)�1�*�#�"�'�$�'�)�(�-�"�!�+�/�'�/�.�%�1�(�(�0�/�0�"�9�%�/�7�(�0�/�$�/�&�/�'�#�)�/�$�1�2�"�&�3�'�-�1�*�*�/�/��,�5�#�-�/�0�+�#�.�1�5�1�*�'�� �*�+�(�1�6�5�/�%�/�*�'�)��&�.�&�1�-�2�*�'�1�-�'�)��2�"�(�'�9�8�*�(�,�$�-�0�:�4�9�3��)�)�7�/�(�.�3��&�1�/�7�+�/�2�'�:�*�1�.�.�4�<��#�7�0�8���+�'�"� �2�-�&�0�*�6�,�9�,�.�*�5�#�%�1�)�2�3�+��6�)�1�%�*��2�6�/�.�)�+�1��.�0�!�.�2�,�#�/�,�+�"�.�*�,��/�,��K�%�(�3�-�;�3�0�(�*�&�,�&��1�1�)�+�5�6�*�/�-�5�#�'�$�*�#�+�)�ՀՀԀՀԀՀ؀рՀǀԀրӀրڀ؀Ԁ݀Հ׀؀ӀԀҁ5�)�9�"�4�2��#�.�0�%�-��,�,�2�/�3�&�4�(�#�.�*�/�*�&�'�3�-�%�1�.�*�2��!�,�1�.�+�'�(�*�8�&�%�)�/���+�(�$�)�$�/�'�2�)�"�.�4�'�:�!�*��6�+�,��*�'�)�(�1�1�5�.�+�2�2�1�1�"�-�3�$�-�3�1�2�7�,�.�'�6�&�"�3�;�2�'�/�/�$�(�,�4�-�A�+�-�'�'�*�6�4�'�(�'�7�-�5�*�'�5�&�4�(�#�.�;�,�7�)�-�,�#�.�,�,�1�8�5�4�.�8�4�;�8�;�1�9�3�8�6�6�L�8�1�+�8�/�2�&�1�0�!�*�1�(�)�3�4�!�)�*�)�'�$��+�2�4�%�-�3��,� �.�.�>��-�%�$�-�#�*�,�$�.�.��"�"��$�*�'��)��4�5�"��&�-�1�2�$�(�,�+�/�-��1�)�$�2�5�-�,�-�3�&�)�+�0�+�4�5�)��#�9�-�&�,�'�(�3�3�+�2�9�-�!�7�"�.�/�.�+�&�-�.�#�)�/�,�3�0��-�(�2����&�-�'�'�(�/�*�%�-�3�/�'�,�%��0�7��*�3�5�%�&�3�,�-�+�7�-�-�8�0�*�6�)�#�5� �-� �(�,�/�*�$�#�+�$�3�,�)�&�0�&�*��/�+�3�&�%�+�(�$�'�3�*�$�+�$�&�'�+�%�$�'�.��&�(�3�&�4�&�'�0�$�5�-�+�4�&�2��,�&�1�1�(�*�'�"�"�/�1�*�*�0�.�2�,�(�1�(�3�1�/�.� �&��-�+�)�/�&�.�&�;�)�<�3�8�3�*�*�/�,�.�.�)�8�-�+�%�"�!�<�2�'�*�.�<�2�.�+�"�5�$�*�-�(�+�)�9�%�(�7�:�+�/�9�*�"�-�@�.�2�+�.�)�1�&�(�3�;�)�2�5�4�'�0�+�-�.�9�5�9�1��5�A�/�+�#�-�7�,�.�-�/�1�8�&�'�'�$�0�-�-�*�.�1�1�2�-�:�ӀـԀՀ׀րрـрǀ׀܀ۀـ؀׀Հ؀րՀ؀ՀӀс.�/�(�$�'�+�4�#�2��-�2�.�$�-�-�/�5�6�-�*�,�.�,��6�3�-�)�&�.�1�#�3�(�1�$�-�$�0�3�,�#�)�<�)�-�)�.��2� �7�(�-�#�#�-�%�5�-���%�1�)�#�,�,�+�/�)�(�"�+�"�/�5�.�%�)�5�0�9�*�+�*�-�<�)�'�4�!�!�"�.�)�7�(�2�/�4�#�!�%�1�,�'�;�+�%�-��+�+�/�3�5�.�4�7�,�8�(�1�1�*�+�,�$�9�.�*�1�:�/�1�:�8�+�2�-�<�7�4�+�;�.�=�@�<�L�E�>�W�G�7�F�:�=�9�3�/�2�4�&�.�2�&�(�"�1�*�!�4�+�1�8��.�:�"�(�*�-�-�-�-�!�"�0�*�6�.�9�5�&�2�%�*�*�%�&��&�"�0�6�"�%�1�3�'�-�&�3�'�5�,�.�/�/�3�,�"��/�/�(�(�6�6�*�'�&�4�)�+�'�+�'�2�4�"��2�+�&�%�%�7�(�*�$�'�3�3�,�+�'�&�0�'�$�2�#�3�(�.�'�-�&�5�-�'�)�+�-�7�*�0�5�2�4�1� �$�+�.�2�3�.�&�2�)�/�+�>�*�+�/�&�"�)�+�#�/�)�0�/�-�$�*�3� �,�)�(�5�4�!�!�#�1�.�1�1�/�0� ��%�&�+�'�%�.�%�+�5�$�*�2��)�&�1�)�2�"�.�6�*�+�(�0�5�&�0�9�B�2�0�8�%�,�+�2�3�!�+�-�*��+�0�-�-�(�(�%�5�(�0�*�+� �,�1�B�,�-�/�.�5�'�+�'�3�/�&�1�,�3�:�+�&�&�$�+�0�6�%�1�*�,�7�,�$�'�&�)�7�(�(�.�(�,�#�+�)�.�+�0�$�*�8� �*�-�9�0�'�/� �-�/�%�4� �+�)�!�4�=�(�.�-��:�*�4�*�0�(�'�2�@�2�+�-�&��+�-�!�-�+�$�.�&�5�.�&�2�+�$�1�!�:�.�%�3�%�/�,�2�,�%�3�/�'�/�'�4�/�4�0�*�'�9�5�ր׀ۀ؀րՀՀԀۀˀڀԀ܀ӀЀـր׀ـҀڀڀրҁ,�2�5�@�#�&�,�'�0�!�,��&�8�2�+�%�/�1�2�%�"�%�!�6�*�2�'�3�5�,�%�:�0�1�/�/�2�)�(�#��+�+�'��8�-�.�4�/�"�/�*�0�*�!�*�0�/� �)�/�4�'�$�'�1��-�&�-�,�%�3��*�/�$��3�)�1�'�-�&�&�3�-�-�0�+�.�/�'�%��+�0�0�'�1�)�%�&�.�2�/�=�.�:�-�.�"�7�.�0�*�/�&�5� � �2�1�)�!�+�8�9�/�/�5�+�1�/�-�'�0�&�1�'�<�4�9�>�@�:�J�M�O�F�N�9�J�F�I�M�4�8�F�:�B�)�%�)�2�7�&�=�+�-�-�.�2�(�*�2�%�.�-�+�4�:�!�%�)�+�*�/�2�$�-�,�1�+�/�.�,�8�*�+�#��7�!�"�-��+�,�(�#�&�/�9�%�-�(�5�%�2�)�1�9�7�'�'�(�:�.�%�+�.�2�-�2��%�&�1�*�2�6�3�7�$�.�&�*�,�%�#�&�+�)�+�(�@�+�1� �7�&�*�3�0�'�'�3�(�/�*��!�1��-�&�-�-�+�(�&��/�%�)�2�,�+�2�'�+�2�4�)�3�)�3�/�%��,�3�%�.�/�7�$��)�)�5�)�0�(�1��'�(�.�.�)�3�-�2�?�/�3�"�+�'�-�0�7�/�(�,�/�$�:�#�2�=�/�+�/�3�4�3�*�>�,�/�%�0�3�'�#�/�.�&�&�+�1�(�7�-�/�+�)� �*�8�'�2�)�/�*�4�$�.�.�"�(�.�4�/�3�.�*�(�*�4�1�'�3�1�3�+�+�0�.�+�=�.�*�+�&�2�-�+�.�+�!�1�-�2�4�0�/�)�0�!�$�'�-�)�$�/� �%�*�$�,�1�!�+�4�.�*��)�/�+�@�.�"�'�%�.�&�0�,��"�!��/�1�0�4�%�#�/�(�,�)�-�/�+�&�.�7�$�*�.�(�-�)�*�"�&�9�.�%�0�,�)�:�4�'�1�5�+�#�;�#��0�(�$�#�&�9�!�0�0�0�=�8�ـՀԀ׀׀׀ր؀׀ǀ׀ڀրԀ؀Ԁ׀րրՀҀԀڀӁ/�#�0�"�<�2�$�4�-�.�%�*�8��5�"�2�%�+�$�,�3�1�1�-�,�0�:�6�/�.�3�%�)�"�,�,�)�%�!�/�.�(�5���&�/�6�/�'�4��!��&�1� �"�/��#�0�-��*�4�)�*�+�*�&�*�'�6�)��.�0�1�%�&�6�%�4�%�;�+�0�3�'�2�+�$�.�:��*�<�$�'�0�4�9�+�#�1�/�*�'�+�0�!�1�6�1�%�-�&�1�%�0�.�'�9�5�.�4�'��/� �0�/�-�3�-�:�%� �3�C�/�G�F�?�;�E�[�P�^�S�g�k�[�Q�]�T�G�C�C�9�/�9�9�7�8�0�.�-�2� �/�&�%�(�0�1�,�/�"�9�;�;�3�+�/�)�*� �0�&�*�+�+�0�6�1�3�)�4�'�+�"�-�'��.�/�(�2�$�6�'�%�0�(�/�+�+�#�&�7�%�0�)��'�"�,�=�0�+�*�-�#�)�/�/�&�2�1�)�"�'�'�%�*�� �;�9�,�#�-� � �0� �-�,�1�!�%�2�%�-��9�8�)�(�3�1�3�/�.�)�1�(�(�-�5�'�*�-�(�*�(�'�$�1�.�3��+�3� �!�%�9�#�%��-�,�4�(�)�-�0�$�1�,�0�+� �)��)�,�6�.�)�,�*�!�%�'�&� �3�:�)�2�(�&�'�-�$�E�@�6�*��'�'�#�4�*�<�(�4�1��2�+�8�'�,�)�;�'�7�*�,�*�,�$�2�%�.�.�&�,�+�'�#�)�;�*��'���(�(�7�+�1�*�E�+�$�.�0�0��(�$�1� �5�.�2�+�$�0�'�1�2�.�1�7�7�&�(�8�'�4�/�+�(�4�,�,�2��.�.�+�-�.�0�$�2�.�/�+�5�9�(�(�9�.�1�%�2�&�.�6�,�&�#�*�0�#�1�*�+�*�5�.�?�4�-�"�5�1�'�#�1�3�$�/�&�$�,�9�/�6�;�0�(�3�8�5�(�'�,�$� �*�4�2�&�(�-�,�6�:�-�+�-�6�-�+��2�5�=�2�ۀ׀׀Հۀۀ؀ԀЀÀՀրπЀ؀Հۀր׀ԀҀՀЀׁ/�,�(��+�+�,�2�3�-��$�&�+�'��1�2�#�6�3�,�)�*�1�%�'�/��.�#�6�5�9�.�4�3�0�'�(�1�,�'� �/��*�*�7�5�)�4�7�-�0�-�0�1�&�"�!�#�$�)�,�#�(�.�*�)�2�8�5�&�(�/�"�-�(�%�(�2�)�+�1�'�3�0�!�-�$�+�,�*�%�"�+�*�-�"�,�'�+�!�1�/�#�?�$�0�-�0�3�+�$�%�&��,�'�,�/�<�%�)�.�*�&�'�4�'�,�.� �1�*�3�1�*�3�.�*�3�8�9�I�K�Q�Y�e�X�k�t�o�w�z�l�T�e�Y�E�;�=�4�G�,�2�2�9�:�2�?�9�%�-�/�-�+�*�(�F�/�7�)�3�*�)�@�1�/�)�*�6�#�+�#�/�"�'�,�-�3�/�'�'� �"�+�,�(�*�6�,�+�0�&�3�$�/�)�#�*�0�/�7�2�.�!�'�8�)�1�0�6�+�3��!�(�/�"�/�&�1�.�"�'�-�8�,��/�(��!�%�-�*�'�(�1�'�-�,�-�#�*�'�2�.�8�1�3�'�3�+�%�*�(�#�(�-�7�5�,�+�"�%�/�/�*�)�'�'�*�7�%�*�*�.��+�.�1� �1�+�2�/�,�6�1�,�(�)�1�'�'�#�2�*�,�/�2�/�2�#�(�$�(�'�%�1�+�(�)�4�(�+�)�-�+�6�)�)� �3�(��*�&�2�3�1�!�,�*�+�-�!�)�$�5�#�2�(�2�)�'�*�/�%�%�)�-�#�)�0�2�*�,�,�+�,� �0�1�*�.�"�!�*� �1�1�)�'�(�6�*�2�$�'�/��/�%�7��-��6�4�4�5�'�<�-�4�.�7�*�%�/�.�&�'�*�.�*�1�-�'�&�5�.�&�&�.�/� �-�,�7�.�.�(�+�5�+�.�&�:�.�+�.�)�)�-�!�%�8�/�-�)�/�,�.�2�3�2�*�7�*�%�#�(�*�*�7�<�!�2�(�'�#�,�,�*�(�!�0�2�&�(�/�$�:�*�.�1�/�*��.�'�#�*�(�,�8�,�׀׀րրր׀ـڀՀɀҀӀӀ׀ـ׀׀ӀրԀڀ΀ۀ؁ �%�3�(�!�/�.�8�6�2�+�)�/�$�$��,�1�.�'�'�$�,�6�1�'�.� �'�8�!�(�2�$�.�5�/�%�1�%�-�/�5�!�0�(�;�;�6�5�7�/�)�%�/�/�'�@�)�$�*�-�'�(�"�(�<�4� �3�2�*��"�=�$�'�1�.�+�%�1�4�5�A�7�&�'�&�&�-�4�-�,�-�5�2�+�%�+�'�0�*�.�(�6�/�&�#�+�)�+�.�1�/�3�4�7��'�1�)�3�8�*�,�'�1�,�*�+�)�6��=�+�7�5�'�2�:�3�2�C�B�N�@�V�a���k�����������y�w�q�X�[�L�=�B�/�)�/�7�/�/�-�"�,�%�)�2�!�)�2�'�#�,�0�'�%�/�(�3�+�*�2�.�*�0�3�0�.�*�,�4�"�'�%�(��+�2�5�7�(�;�+�+�%�+��"�0�.�7�1�;�)�(�.�&�+�3�8�2�,�0�.� �&�"�%�-�"�1�*�"�+�.�-�4�"�!�/�&�-� �/�%��3�'�'�1�4��/�-�.�1�-�.� �7�2�;�$�7�/�#�/�0�)�7�/��3�$�/�7�-�,�"�+�3��4�/�,� �.�'�&��-�%�&�1�4�"� �-�,�*�*�7�)�(�4�'�4�,�(�0�'�&�+�� �1�)�*�2�)�/�-�3�&�)�3�+�4�$�8�5�3�)�*�1�=�-��"�8�1�2�+�)�*�%�1�'�(�3�+�.�"�/�%�-�*�7�,�4�)�;�,�)�2�!�+�3�+�!�+�)�-�&�(�%�0�#��'� �1�'� �4��+�"� �!�*�"�'�(�$�(�,�(�,�0�-�!�)�(�7�)�*�)�#�=�5�)�%�+�'�%�'�2�&�(�-�2�1�1�1�.�)�6�5�2�)�#�+�4�0�/�1�6�/�(�.�$�.�2�.�1�&�,�)�2�&�,�.�8�,�%�-�/�/��&�+�*�/�(�>��(�*��&�2�"�0�.�7�0�,�8�/�0�/�8�*�2�4�0�/�*�9�*�8�3�+�6�#�6�.�:�2�*�"�*�Ҁ؀ՀـՀՀՀ؀ЀƀрӀրۀـӀՀրրـԀրրց6�3�.�$�/�*�%�4�$�)�+�#�2�-�*�'�3�3�3�(�6�5�9�,�8�#�4�-�9�.�/�%��1�%�%�3�*�'�)�8�3�#�!�)�.�%�5��!� �&�1�7�,�1�3�+��'� �'�(�:�'�/�'��%�'�0��(�,�1�*�,�1�$�)�6�0�8�/�(�)�)�*�1�2�2�$�$�'�.�-�1�*�(�#�(�3�*�6�(�-�0�5�4�!�(�-�+��$��*�#�%�:�/�*�&�)�"�%�"�4�+�3�/�3�,�-�*�)�'�.�5�$�=�1�?�H�F�X�]�o���������݁܁߁ԁ������p�_�^�S�?�;�A�7�6�3�;�$�1�/�>�+�)�&�/�+� � �4�'�$��+�%�+�+�,�(�*� �5�3�+�$�4�-�"�*�0�-�-�"�+��$�%�+�-�&�,��*�:�)�5�-�)�2�%�%��#�.�"�#�+�.�+��7�0�2�)�*�&�'�/� �%�'�)�1��5�'�1�,�*�3�"��#�*�9�0�)�4�*�7�,�8�,�5�4�7�4�3�)�$�.�/�,�+�"�-�/�*�*�1�-�$�-��.�+�%�1��+�%�!�'�,�1�.�4�-�+�+�2�6��5�0�%�.�'�"�#�0�(�'�"�2�+�.�8�)�/�1�/�#�)� �*�+�%��!�,�)�$�:�*�7�9�'�+�#�+�)�0�.�'�*�'�$�0�2�)��/�+�.�3�0�-�)�#�,�'�3��&�3� �&�1�+�#�(�7�'�-�6�/�,�+�'�/�"�,�;�0�1�6�.�'�)�0�8�3�&�,�$�2�"�-�2�,�0�1�2�*�)�8�"�$�#��:�5�9�*�,�1�+�)�+�3�<�8�5�0�)�0�'�-�2��+�0�7�1�1�,�1�,�"�7�)�#�%�3�)�!�)�%�/�%� �3�0�'�5��$�:�6�"�/�;�3�+�(�.�/�,�)�/�)�.�4�2�#�1�'�*�,�/�'�5�/�/�%�(�$�+�$�%�,�(�)�8�/�'�.�?�+�2�$�9�,�2�(�-�/�0�3�ӀЀՀـ׀Հ؀܀ՀǀـԀՀрՀҀـՀЀπڀԀՀЁ0��%�8�#�<�#�$�0��9�$��1�"�,�(�.�5�*�/�)�6�2�&�0�*��1�0�2�%�4�(�*�0�&�"�+�;�9�/�(�/�4�'�+�9�(�3�7�4�"�*�%�4�,�.�3�"�#� �3�(�.�)�7�-�%�,�4�2�-�+�4�+�"�0�(�)� �+�)�7�;�#�,�!�3�%�&�,�3�0�*�/�)�0�(��0�4��/�"�1�/�'�;�&�0�&�-�%�-��*�'�*�/�+�!�1�*�%�.�.�+�0�:�0�#�%�.�:�9�,�/�/�%�5�=�/�\�k�S�l�x�������/�O�;���ہ����f�W�\�M�=�A�7�2�9�/�:�,�'�+�'�)�%�3�+�8�0�6�)� �)�(�/�2�&�1�-�)�:�'��0�#�.�.�8�+�,�,�,�/�+�1�6�(�)�+�4�*�,�+�*�)�.�)�0�1�+�&�&�0�/�.�*�0�J�-�&�'�-�*�+�&�)�3�&�%�0�3� �0�1�6�/�C�&�,�4�?�/�.�-�(�#�(�5�#�+�3�.�+�)�+�.�+�#� �(�-�.�(�,�(�'�&�)�3�0�+�/�0�1�.�/�!�7�*� �.�3�=�1�#�*�#�+�,�-�1�-�*�1�/�+�-�)�.�&�'�/�#�%�)�.�.�(�)�2�(�.�(�-�1�/�"�/��3�+�6�+�'�$�6�/�5�$�*�*�3�1�"�2�)�(�#� �-��3�,�+�$�%�*�*�� �+�(�-�.�0�3�+�<�(�%�'�!�:�,�3�#�.�"�1�"� �-�(��$�,�4� �&�8�,�=�-�-�1�/�-�6�!�3�(�!�%�1�&�-�$�5�-�&�+�9�0�:�4�#�.���'�:�!�+�)�+�!�1�$�,�)�9�&��.�)�8�)�9�"�"�4�*�%�.�"�(�+�"�7�%�+��+�-�+�1�0�'�,�.�#��4�)�+�+�&�-�4�%�5�/�,�(�.�$�3��&�.�-�'�-�;�+�+�;�+�0�.�'�.�1�1�1�'�*�+�/�-�5�-�4�,�2�3�2�3�4�9�׀׀΀Ӏـր׀ڀҀ̀րڀՀ̀рۀЀ׀ր؀؀ր׀ف4�7�0�1�$�+�-���"�:�!�5�*�5�/�$�4�'�:�)�:�/�-� �'�+�2�>�1��.�2�5�4�*��$�-�&�,��1�&�5�=� �/�8�4�/�(�2�7�1�,�%�#�!�%�)�1�.�)�0�$�+�/�%�1�4�5�,�'�5�7�"�,�-�-�%�1�9�1�*�*�5�+�5�&�-�/�4�4�)� �*�*�4�1�+�2�3�0�)�-�5�$�6�$�/�0�+�+�!�/�5�/�-�3�(�(�:�� �#�,�"�%�5�.�"�)�.�-�,��'�1�=�5�B�C�M�Y�r�����ł�U�x�����邻�p���Á��]�_�N�H�:�5�6�1�2�%�/�/�6�'�A�1�/�3�=�,�%�'�/�.�#�?�*�+�.�'�0�*�,�7� �/�%�&�1�/�#�8�#�,�+�1�$�)�B� �-�*� �.��*�/�(�,�1�,�/�1�=�)�,�;�3�4�-�%�%�.�.�7�,�"�(�$�)�*�)��,�&�$�0�,�3�"�!�,�,��"��$�(�.�2�(�'�>��!�'�6�4�3�/�$�;�/�1�1�>�2�2�-�%�)�3�'�&�-�%�+�"�"�5�+��$�+�#�2�.�2�.�0�!�)�2�%�(�)�3�$�!�'�*�(��1�+�1�2�)��)�9�-�3�"�"�9�5�&�4�+�2�'�3�'�&�-�0�/�'�0�&�9� �'�'�+�+�*�%�0�)�5�%�3�*�*�$�*�)�'� �)�%�+�1�(�)�'�,�&�)�0�#�9�#�-�%�2�-�0�7�4�-�A�+�&�'�4�#�1�!�)�$�(�.�2�.�'�9�-�/�#�&�'�1�4�5�%�#�,�(�3�7�'�1�.�4�5�%�6�1�0�:�,�,�,�3�'�#�#�5�4�1�/�2�"�1�+�,�0�!�#�>�/�0�&�2�+�3�'�.�5�,��%�1�*�3�8�)�.�,�&�$�1�*�)�/�&�'�-�1�.�8�6�2�&�5�+�+�%�+�)�#�'�&�2�;�3�,�9�&�%�*�2�<�/�,�/�5�#�'�5�3�-�7�1�'�4�%�,�ҀҀ׀րՀӀЀրԀȀԀՀրрրՀҀՀҀԀր׀ـ݁(�1�+�.�,�1��$�.�#�+�!�1�3�8�,�/�.�9�)�/�$�2�'�1�4�#�$�$�/�6�'�/�,�'�(�/��-�3�%�&�*�+�4�'�$�+�2�5�8�-�4�5�(�,�!�/�(�%�*�<�-�,�'�'�(�)�(�(�1�,�,�'�*�*�/�/�/�6�*�/�0�.�+�.�5�(�-�)�+�+�"�'�#�2�$�$�%�&�1�1�%�%�)�4�5�.�(�*�6�.�.�*�+�1�)�*�0�.�9��/�(�2�)�-�;�&�1�3�-�0�8�4�6�7�-�E�@�8�J�C�d�^�~���Ă�e����c���t�j�炱�,��ˁ��s�R�G�<�=�;�/�:�-�(�:�/�;�,�/��)�5�3�0�1�)�9�=�!�#�%�1�%�.�"�&�#�+�&�.�4�%��'�*�0�0�/�.�+�+�%�'�+�3�-��*�(�&�+�.�+�0�5�.�!�*�(�)� �"�1� �3�2�)�9�*�&�(�5�:�6�-�)�+�#�9��&�9�+�(�'��2�6�.�)�1�9�+�3� �*�0�%��0�)�'�%�(�:�"�-�&�'�)� �'�&�"�5�3�/�0�6�9�$�$�$�+�)�;�"�&�!�4� �2�1�-�6�)��*�"�(�+��&�#�0�*�+�)�0�,��+�5�)�/�#�3�.�,�#�'�#��&�-�%�$�'��%�$�'�/�*�(��)�+�/�1�+�$�?�(�6�/�)�&�4�#�+��4�*�4�3�9� �/��3�-�/�#�6�*�-��(��/�$�1���'�!�&�2�(�'�.�'�8�(�+�4�6�3�/�3�0�)�6�#�0�-�7�/�,�+�1�<�/�$�+�.��'�6�%�"�'�2�1�7�&�*�5�;�'�/�3��2�*�'�,�*�'�0�/�-�(�$�-�.�"�4��*� �%�&�!�0�4�-�+�0�,�/�%�3�*�,�,�(�-�0�4�:�0�(��+�-�+�!��7�+�!�3�+�4�;�2�2�"�9�(�"�8�1�>�+�1�*�#�-�4�5�%�9�,�4�&�-�-�,�/�3�2�؀؀ـ׀ԀՀԀ׀ـŀՀր׀ـՀӀ׀؀ր׀ӀӀ؀ԁ�2�-�&�-�4�/�'�,�-�)�0�/�!�'�"�$�3�8�8�2�&�(�1�-�2� �)�'�.�5�'�"�$�*�+�.�.�+�/�4�.�.�:�4�3��!�3�)�'�0�"�4�5�-�%�2�-� �(�3�#�*�)�.�#�-�+�+�0�+�%�3�!�1�+� �+�5�7�+�+�,�-�.�(�!�1�)�0�'�'�!�5�2�-�<�6�4�)�8�4�&�*�*�%�%�*�.�"�0�"�6�+�+�+�*��)�)�+�7�1�(�.�4�-�6�-�0�(�3�2�1�)�+�-�(�=�9�O�Q�W�y�������P�������F�3��o������遗�q�a�J�5�2�2�5�?�/�>�-�1�'� �2�)�0�7�3�*�0�/�4�6�+�:�1�%��)�'�2�0�(�6�/�(�'�(��+�0�-�3�$�+�/�#�(�,�;�+�'�1�1�4�-�'�+�.�.�/�2�'��-��)�4�+�5�"� �0�2�&�1�"�?�-�-�+�(��,�!�'�6�)�'��4�'�)�%�%�'�,�+�+�,�(�.�$�5�)�&�!�1�4�4�(�'�8�3�8��-�*�)�+�;�+�(�)�-�-�*�*�9�0�&�)�0�3�'�*�.��7�,�&�'�4��,��,�(�)�4�.�$��2�'�"�,�/�.�%�/�&�&�)�7�2�/�1�1�%�"��.�$�$�+�2�F�0�#�/�#�+�'�"�9�$�8�#�$�'�)�&�-�2�#�=�"�.�)�2�%�2�/���-�,�2�,�&�2�!�'�+�%�+��/�(�!�7�(�&�#�&�(�'�;�/�)�3�!�9�)�&�$�%�2�/�.�1�.�,�*�5�/�(�(�.�%�/�+��*�!�:�&�8�6�'�6�*�%�9�0�/�+�+�1�-��(�*�(�%�!�+�7�,�'�3�,�5�/�!�(�,�$�8�-�%�:�#�+� �*�$�)�.�1�,�(�.�/�-�7�&�0�)�1�3�#�$�-�:�&�4��,�'�0�5�G�#�;�&�&�&�(�-�'�1�+�*�/�(�'�0�4�2�$�!�/�+�-�(�&�8�рۀπۀԀӀ؀ӀۀƀҀրԀЀ߀׀рҀڀրՀՀ؀Ձ%�0�%�'�.�+�.�7�4�)�0�4�2�%�*�'�"�-��6�0�"�+�$�!�.�.�%��)�,�8�'�'�2�(�.�!�+�'�/�2�6�,�>�/�(�$�3�+�1�(�'�+�%�-�,�/�*�1�5�3�(�/�4�%�3�+��-�/�/�4� �+�!��:�(�4�(�8�'�#�/�*�*�0�.�*�5�-��@�"�3�A�'�%�1�/�!�3�.��(� �)�-�-�3�$�#�/�&�)� �/�)�/�1�'�$�!�5�+�+�$�/�1�4�'�#�0�+�/�;�3�1�-�N�D�9�S�}���Â�n�ۃs�����ӄ���Y��M�ち�}�^�P�B�F�D�1�7�*�)�5�$�'�+�6�1�"�-�+�)�:�)�0�1�.�2�1�7�1�!��.�/�#�+��-�+�+�&�-�8�4�+�4�5�+�/�8�1�5�1�2�+�,�.�0�3�4�%�3�1�.�-�/�%�)�*�!�+�#�$�(�)�*�5�5�/�"�#��*�-�,�/�+�'�(��5���(�/�(�)��+�(�(�-�1�$�#�3�-�+�'�+�/�-�"�/�&�+�1�&�$��1�*�:�%�2�"�&�(�4�/�'�6�%�%�-�)�/�$�3�%�&�4�&�(�,�+�&�&�:�"�/�,�%�0��)�)�/�2�'�-�/�.�!�%�,�5�0�+�$�8�/�-�'�6�$�$�'�"�.�*�+�$�%�9�8�2�)�!�0�'�9�+�"�(�9�%�(�3� �1�*�(�)�1�(�1�0�(�7�)�.�/�%�.�+�1�0�+�,�*�#�2�&�%��.�*�)�'�$� �%�2�,�/�,�#�(�+�4�)�>�0�-�+�+�7�:�9�5�,�%�4�"�(�)�5�4�4�,�.�'�,�(��2�)�1��(�.�1�'�/�*�/�*�3�)�1�,�+�*�*�'�$�2�@�*�6�)��&�&�.�1�&�"�$�"�*�!�9�,�2�#�$�/�)�(�,�/�3�4� �%�4�9�/�,�4�+�7�7�8�'�4�-�4�2�8�3�9�'�&�+�*�4��#�#�4�&�'�.�2�4�-�-�-�ԀրӀՀ׀ӀրـӀŀ׀׀ҀԀр׀րրڀՀր׀ՀՁ&�6�9�4�*�$�0�6�0�/�-�)�(�/��>�4�7�(�/�!�4��2�5�/��/�4�/�.���'�!�-�1�'�,�)��7�,�'�.�9�3�)�#�1�%��2�6�,�,�*�'�2�/�)�4�'�(�-�'�4�-�-�,��)�'�.�+�7�'�#�/�%�(�)�(��$�(�(�#�#�3�*�5�8��/�1�&�0�4�6�-�)�-�-��5�8�+�)�.�$�)�-�/�0�&��)�"�&�6�)�6�)�+�(�1�8�&�/�-�6�'�)�2�0�=�7�7�4�,�R�W�i�q���Ԃ'������c�Å����Q�}��J����x�q�E�Q�?�9�2�1�8�3�2�3�'�$�)�'�/�&�/�9��3�:�/�A�,�2�$�!�.�1�1�1��.�,�)�,�3�-�(�*�9�#�5�(�1�5�*�2�/�/�(�+�/�3�,�*�"�1�#�)�(�6�.�1�/�.�#�4�'�%�$�-�+�2�6�0�1�/�*�7��-�+�*�%�*�.�.�0�@�,�+�/�$�&�-�.�'�:�4�(�.�'�7�*�&�5�(�4�.��)�.�0�/�!�,�,�&�8�/�1�)�,�*�-�/�.�(�.�/�'�#�*�%�.��4�,�-�$�)�%�4�)��+�"�)���*�-�-�6�$��1�*�5�.�*�+�)�2�!��0�0�0�%�-�'�-�4�'�3��*�,�"�;� �/��)��.�"�0�.�)�"�#�'�+� �1�6�.�-�-�*�5�*�%�-�/�'�'�"�)�"�(�;�!�9�1�,�/�3�.�-�4�/�/�,�'�,�-�C�;�7�+�-�+�-�2�*�*�=�(�&�-�#�#�6�/�0��1�,�,�&�*�3�%�/�8�*��5�0�3�$�(�/�*�-�0�.�/���6�0�+�=�'�0�0�'��/�)�/�'�.�)�,�/� �%�"�/�3�0�+�/�1�1�&�-�&�6�%�+�/�*�8�2�.�1�)�-�0�/�0�:�*�)�)�,�;�(�(�*�3�'�*�(�)�(�%�<�.�5�&���7�,�4�/�8�6�/�,�׀ڀ׀׀׀րҀ؀׀ǀӀԀԀ؀ՀՀ܀Ӏрڀ؀؀ՀӁ-�#�1�8�:�.�:�%�-�.�1�6��5��,�#�-�,�0�:�+�8�$�5�.�.�5�)�4�&�-�(�$�5�*�,�1� �3�!�9�)�(�-�3�+�4�%��/�+�(�/�)�'�-�3��#�%�<�"�)�'�)�"�1��*�+�)�7�.�&�(�0�1�)�(�'�2�2�)�6�)�-�#�-�6�*�(�-�)�5�2�-�3�)�&�,�7�1�%�3�8�&�.�/�0�1�+�;�'�'�-�1�&�8�0�)��/�7�3�$�.�9�*�0�%�+�'�3�1�+�8�:�:�9�6�I�Z�_�����͂ ����������ӄi�񃁂�G�偶�y�k�T�E�C�6�E�B�7�6�>�1�3�:�1�(�/�:�0�8�.�%�1�$�#�0�*�6�3�)�4�/�'�8�#�.�5�1�'�/�2�&�0�5�!�(��"�1�$�.�=�-��+�(�'�0�2�&�-�$�&�6�2�1�)�#�,�.��!�.�4�(�4�.�#�+�/�0�"�-�1�-�&�"�*�,�-�*��=�$�-�0�/�%�+�+�(�+�-�(�2�"�)�.�/�,�7�'�1�*�)�4�/�'�$�/�4�-�6�-�-�/�/�.�/�&�6� �7�#�7�(�$�+�<�2�'�0�0�*�-�2�.�1��.�&�0�+�+�0�*�>�(�(�,�0�1�:�,��1�.�%�-��/��4�2�6�5�'�)�*�$�%�5�+�2�5�$�(�2�/�'�"�2�,�"�+�5�"�3�+�$�&�3�'�,�,�/�1�)��*�%�&�3�"�(�2�0�(� �$�/�'�5�.�,�7�)�1�+�1�#�%�6�#�*�+�+�2�2�!�$�6�3��+�-�&�&�3�+�1�"�*�!�(� ��2�-�'�'�-�.�5�-�/�,�3�#�-�9�5�,�)�.�5�"�5�"�"�+�'�,�5�.�)�'�3�4�$�-�*�#�6�6�.�/�#�(�0�*�7�'�/�7�%�*�#�5�&�:�5�*�1�7�&�%�1�3�%�0�,�,�.�1�2�/�1�#�6�%�-�2�*�"�*�+�3�%�4�+� �+�/�7�(�%�5�#�+�ـӀЀՀՀ׀؀ـԀɀπـ׀ـ؀Հրր׀Ԁր׀ڀف0�*�'�#�-�0�8�5�(�'�#� �.�*�-�/�-�#��1�+�/�5�7�)�-�9�8�$�0�2�+�"�7�+�6�"��"�'�*�(��'�5�0�&�3�$�)�4�0�%�*�%�3�0�1�6�-�0�&�2�.�,�&��-�.�*�3�$��5� �)�&�/�3�(�0�+�2�*�'��&�"�2�7�,�2�#�-��1�%�&�+�-�#�3�-�0� �3��-�(�0�&�:�/�(�$�?� �%� �+�+�2�/�2�5�3�3�:�.�B�%�#�/�-�6�"�8�7�(�A�B�D�P�a�h���ҁ��q���5���-�@�S�������=�끯���b�F�;�A�,�8�=�7�2�3�.�/�6�(�-�3�/�/�$�2�(�7�+� �*�1�1�0�/�'�%�6�)�7�+�&�"�%�(�.�-�-�+�,�'�-�/�$�!�6�/�+�%��4�+�'�&�4�%�4�!�1�%�&�/�/�,�-�*�/�#�+�8�!�-�,�4�/�'�*�&�'�1�&�6��7�'�%�3�9�&�0�%�3�$�2�(�!�)�(�5�'�0�'��0�,��-��+�)�#�1�3�!�0�$�)�/�2��-�*�4�(�+�2�1�)�(�!�5�$�$�/�8�(�6�#�&�+�,�$�1�.�)�0�*�3�2�)�-�.�&�$�)�(�-�1�-�#�=�!�/�&�,�3�/�(�%�1�2�1�&�(�4�)�*�3�"�8�+�4�,�-�,�0�5�0�-�7�;��7�3�%�/�"�0�/�-�*�*�,�'�"�(�"�-�*�5�.�-�%�#�"�*��!�3�/�(�/�.��&�1��)�%�,�*�-�3�(�3�1�(�6�.�+�*�5�2�4�!�.�)�-��3�(�2�'�%�3�5�,�:�&�&�+�&��)�&�5�,�&�5�!�*�+�-�/��&��)�.�3�(�*�;�#�-�)�7�,��*�,�*� �-�$�-�%�%�3�/�,�-�&�,��/�$�+�*�&�0�0�(�%�/�2�*�)�"�*�3�-�+�/�)�1�3�4�'�$�-�7�7�)�,�+�4�2�/�6�*��)�'�+�؀ҀـЀ؀ـՀр׀ȀۀրЀ܀ր݀ـۀՀЀڀր؀ׁ6�#�/�)�1�)�<�'�5�/�0�*�,�-�7�.�1�/�9�4�"�2�$�(�"�(�%�)�+�3�-�.�.�>�"�'�4�;��-�>�%�.�(�&�%�*�:�)�*�*�+�#�3�5�+�,�3�3�1�(�.�1�&�9�'�%�!�+�+�+�-�2�%�.�'�'�-�.�-�7�+�/�+�5�*� �6�-�&�'�$�)�%�#��%�:�"�'�.�0�-�%�(�3�'�4�,�+�8�.�'�'�5�3�6��5�,�,�#�;��/��4��!�+�;�+�*�&�-�@�5�2�7�4�A�K�M�Z�����Á�C�x�˃�v�}�m�P��΂k� �������X�b�A�3�C�;�1�1�;�A�#�5�#�A�,�8�5�*�4�-�(�&�3��*�1��2�'� �!�.�(�)�$�2�,�+�$�(�5�/�#�!�3�2�+�2�9�/�/�(�5�8�,��(�/�3�.�5�.�%�$�+�8�7�5�0�&�2�2�&�+�1�'�!�-�+�5�,�/�/�3�/�$�/�%�#�+�7�9�*�#�(�9��+�#�,�2�%�5�.�-�-�-�,�)�%�%�+�0�)�0�,�"�(��1�$�7�.�0�'�5�4�5�,��(�!�5�B�0�%�+�1�)��(�(�#�2�/�/�"�$�'�4�(�2�)�"�+�(�%�#�&�"�:�,�(�3�"�4�@�/�:�'�'�(�9�.�-�3�/�!�/�&��*�,�.�+�#�$�-�0�'��(�%�8�+�-�.�$�%�#�0�/�#�/�1�.� �/�4�+�)�)�#�-�6�!�,�5�'�8��0�7�5��+�*�/�.�;�*�#�5�;�4�*�"�:�3�/�3�$�;��+�)�3�0�5�+�*�%��/�+�0�*�"�/�2�)�-�1�'�,�.��&�5�)�)�)�!�'�4�&�'�5�5�)�2�<�"�'�/�"�9��1�$�-�/�1�*�5�2�1�7�0�2�&�%�/�0�1�+��3�>�3�5�)�*�5�0�;�5�.�5�:�&�.�)�7�4�6�(�#�,�+�2�/�<�*�'�0��/�-�1�0�0�8�,�+�4�/�7�"�؀؀؀݀؀؀׀׀ӀŀӀ؀ۀڀӀҀր܀րրՀڀ׀Ӂ,�7�0�(�$�0�<�(�C�3�-�6�/�3�6�"�/�<�7�)�(�.�(�)�*�*�-�/�1�*�5��"�7�=�,�.�)�*�(�%�'�.�+�)�(��&�-�/�)� �-�$�5�/�"�9�+�.�:�,�,�#�+�,�$�/�,�'�.�"�/�+�.�7�#�0�,��%�0�%�4�,�/�7�*�-�8�/�.�1�$�0�&�'�0�%�*�,�+�)�&�2�2�%�+�,�4�(�)�1��6�+�2�,�&�%�%�.�.�/�/�)�*�*�4�/�)�6�#�?�5�(�+�<�7�+�O�K�>�V�_�w���ʁ��/�|���Ƃ��カ���`�,�ځ����s�N�O�:�A�>�=�:�A�8�0�4�3�.�)�)�"�-�2�1�;�1�/�;�.�3�)�5�#�%�!�6�,�/�)�#�,�0�0�4�/��%�%�(�$�+�)�!�0�+�'�%�4�3�!�&�&�7�*�.�'�"�'�5�/�/�=��6�&���+�$�,�-�)�,�!�3��"�,�)�&�%�-�*�$�/�2�.�"�$�7�*�/�,�&�,�1�2�5�$�.�2��'�3�2�2�/�+�4�(�"�(�'�+�0�2�#�,�/�,�'�"�!�(�1� �0�5�1��%�)�0��(�/�.�*�+�"� �,�"�1�'�(�*�0�/� �/�:�'�+�/�'�'�.� �)�%�*�/�3��!�*�1�$�%�+�1�+�*�0��/�5�7�'�,�-�*�(�3�#�,�2�+�"�3�&�@�0�&�3�/��2�1�,�$��8�$�)�0�/�*�.�)�'�6�(�9��0�#�5�1�/�1�1�%�(�'�(�/�,�1�+�)��&�"�0�-�+�2�-�'�%�/�2�2�"�+�3�8�-�!�(�)�.�,��#�2��5�0�2��+�+�1�>�(�=�4�&��2�'�(��&�/�1�0�)�(�3�5�&�'�/�+�*�!�!�+�7�4�0�)��5�,�4��2�/�+�+�5�%�+�/�*�(�2�)�'�'�7�4�.�4�*�-�&�2�/�$�/�'�*�6�9�:�2�"�0�3�5�2�)�/�*�.�0� �)�ۀـڀӀ؀ӀـڀԀˀڀՀڀՀ׀؀րՀـӀҀրրԁ$�+�-�*�)�%�#�&�-�+�6�6�&��/�*�'�'� �)�.�(�*�*�/�0��*�$�)�.�,�3�*�&�6�)�#�/�/�-��!�,�-� �/�,�%�-�*�/�8�1�*�2�:��.�+�3�#�.�2��0�4�3�2�+�-�,�*� �(�1�*�'�8�0�*�1�.�*�6�5�0�<�&�/�/�/�1�+�.�#�3�+�-�2�(�1�1�-�1�,�%�'�"��&�-�,�+�)�(�#�&�#��1�5�+�5�.�&�4�,�3�-�$�,�"�"�6�I�=�/�/�1�6�=�F�@�d�n���������@�F�E�e�\�5��ف����w�^�K�S�5�I�/�E�7�1�5�4�(�'�4�=�+�)�,�!�0�6�8�.�)�/�)�(�%�)�2�)�+�6�6�*�+�.�&�%�0�'�'�4�&�+�0�9�0�&�%�'�1�&�4�.�.�2�&�(�3�0�4�7�9�/�4�%�.�:�3�0�#�*�3�7�4�(�,�2�"�)�/�2�*�+�#��%�5�/� �-�+�#�/�-�%�'�*�$�/�2�)���/�,�)�/�%�*�%�)�-�2�(�$�+�/�1�&�+�/�)�+�/�0�0�-�3�)�'�0�/� �1�9�-�,�/�*�/�5�5�1�(�=�*�&�-�/�)�*�$�+�2�/�1�"�/�"�4�(��"�*�%�3��#�+�5�+��%�)�5�&�0�,�-�-�#�*�%�)�/�'�2�)��0�%�5�'�(�A�2�-�,�)�4�0�'�/�&�5�.�,�!�,�/�*�0�!�(�/�&�5�,�'�1�-�%�*�)�(�.�#�2�'�'�*� �:�/�/�!�$��'�1�-�-�,�(�%�7�,�8�(�1�-�#�,�/�'�#�)�0�*�"�0�)�-�#�6�(�3�/�:�*�+�%�6�*�6�,� �%�/�&�)�0�!�2�'�/�/�'�$�-��(�2�&�3�5�8�1�3�&�,�#�$�*�0�1�+�,��*�)�&�'�1�/�&�,�#�5�+�5�+�&�*��*��"�,�.��/�+�'�)�3�G�"�.�1�!�8�2�2�"�1�-�5�׀ՀҀ؀؀׀րڀ׀ƀ݀ЀҀրҀ܀ՀЀ؀րπՀրԁ3�&�*�4�*�.�1�)�-�'�/�'�$� �2�%��0�(�6�&�3�*�/�/�$�:�6�-�9�6�-�.�1�.�%�0��6�$��+�'��%�(�,�7�'�"�(�5�&�%�-�A�3�2�6�0�<�3�+� �/�+�'�)�/�6�$�6�-�(�1�4�;�*�%�&�&�*�+�8�)�3�)�&�,�.�!�+�1�7�-�'�%�/�!�,�.�/�7�%�-�.�:�)�-�)�5�/�4�+�+���0�/�4�2�6�8�*�/�3�-�2�6�,�-�*�0�3�9�7�*�(�)�1�,�:�=�H�M�T�d�v�����Ł�����ԁȁ����u�v�J�J�G�C�D�<�F�-�7�.�+�'�+� �!�6�2�:�/�)�%�*�0�!�.�.�0�-�&�.�-�*�'�+�%�)�.�(�2�1��/�!�4�/�/�=�0�,�-�!�'�$�,�8�+�*�.�+�6�&�(�,�$�(�,�5�&�&�0�:�-�$�6�*�)�'�9�)�;��'�+�"�)�1��1�"�7�.�5�$� �'�+�'�9�1�4�1�8�)�+��-�(�-�6�*�!�*�-�"�!�8�.�/�#�)�.�#�3�*�&�"�-�+�(�-�*�(�4�#�/�2�6�%�.�8�6�'�,�+�-�-�+��)�'�)�*��-�!�A� �/�,��2�&�/�2�"�"�2�%�)�)�,�#�(�3�-�:�)�&�(�:�7�(�7�/��3�-�(�)�+�-�*�.�%�(�'�&�'�(�2�1�&�+�4�!��4��0�3�-�"�-�,�)�7�&�"�4�)�2�;�"�*�$�'�0�0�.�:�+�&�+�!�3�0�/�1�$�:�-�(�'�/�=�)�)�+�$�%�/�$�2�)�7�)�&�0�2�1�'�$�!�-��#�4�1�/�+�+�%�1�$�%�&�2�,�0�+�>�0�*�-�%�(�)�)�?�&�$�*�(��*�#�-�(�.�1�/�"�2�&�'�+�%�&�0�'�'�/�3�$�&�3�%�.�4�!�)�(�$�&�/�#�(�*��9�)�!��.�0�%�*�4�+�6�,�.�2�+�$�)�)�2�&�+�׀ӀրۀԀ׀ـӀՀȀـҀӀӀ׀׀Հ׀րՀ׀ր܀ց1�3�2�&�0�:�6�,�2�'�$�;�*�0�0�&�/�"�0�-�#�$�*�#�)�'�)�&�2�.�4�+�&�,�#�'�"�.�*�*��,�*�+�.�%�0�'�*�4�5�-���%��/�%�5�,�/�-��-�&�+��/�+�0�"�(�4�#�*�/�8�4�.�4�2�-�'�5�.��/�'�&��-�#�1�'�-�&�7�)��+�*�+�*�5�(�/�/�/�0�3�+�,�%�3�'�,�,�0�-�-�7�*�(�+�*�'�!�.�6�=�"�5�+�(�;�)�,�:�1�.�.�'�;�B�<�U�U�a�n���������������������x�n�X�C�=�>�<�6�1�/�-�2�7�!�%�9�0�5�3��"�7�-�3�#�)�3��7�"�(�+�-�-�2�6�$�0�/�#�*�$�%� �#�-�&�!�-�,�-�)� � �5�-�5��/�#�(�%�(�#�$�6�,�(�&�*�.�"�&�"�$�1�#�!�*�5�7�)�6�0�(�1�4�*�5�&�,�5�0��)�6�+�/�/�7�;�.�2�/��+�3�0�8�(�)�/�3�)�-�,�*�,�.�/�1�,�*� �5�#�/�!�0�1�1�4�7�"�,�,�*�0�3�8�'�"�1�1�+�.�5�*�'�+�.��9�-�2�,�;�+�(�6�&�2�'�,�,�1�8�(�1�(�&�5�3�'�!��%�&��2�+�#�'�.��!�7�*�%�"�4�.�*�1�*��+�!��/�2�#�0�1�+�+�/�$�'�$�3�-�3�7�/�%�5�&��%�9�0�9�.�*�2�2�.�,��-�#�-�!�3�$�.�*�'�+�/�1�0�.�*�3�*�'�'�-�-�6�)�9�3�%�6�*�.�.�&�-��/�0�#�,�2�-�/�'�,�/�%�&�2�+�-�)�#�2�=�.�%�$��(�"�)�;�4�$�(�$�(�6�/� �-�'�"�0�6�(�1�/�/�.�"�+�-�$�.�)�-�*�%�0� �:�6�0�)��"�$�*�9�+�(�@�5�3�%�6�#�#�/�4�$�,�0�6�0�.�&�#�4�7�/�.�4�7�ҀՀӀӀҀր׀Հ׀Ȁـ؀׀ـԀՀӀ؀րր׀րրҁ"�1�1�*�(�2�4�1�,�*�!�6�%�7�0�*�"�2��*�4�'�1�2�3�7�$�2�1�7�+�6�2�2�!�8�"�;�(�%�5�0��/�(�)�*�+�2�*�"�1�0�,� �+�*�$�+�3�3�#�/�2�)�*�*�/�*�A�)�(�!�0�#�4�1�/�(�%�*�.�,�,�:�$�3�1�2�%�4��2�=�2�6�:�)�)�)�%�4�%�1�'�;�#�%�5�,�0�+�,�2�)�+�)�5�2�'�%�+�#�-�$��.�2�*�5�%�(�0�*�0�%�(�7�7�;�5�-�>�B�F�R�[�S�X�j�j�z�����������m�p�k�Q�V�5�9�;�/�A�&�-�5�7�4�+�>�5�0�/�+�2�7�&�4�(�(��,�*�&�7�,�%�0�(�)�%�-�+�&�%�<�5�/�+�6�7�*�-�+�5�*�%�/�7�&�,�!�<��7�)�"��.�+�/�'�2�2�.��/�(�)�$�1�#�1�1�4�)�(�)�%�+�'�1�'��#�+�&�3�*�,�1�-�,�&�,�'�#�-�+��$�%�.�3�,�#���*�&�,�3�0�#���;�/�*�(��/�%�=�'�&�,�+�!�.�.� �*�5�6�"�1�)�$�1�'�5�'�*�"�'�5�"��!�,�#�.�%�3�+�1�2�-�+�*�,�7�%�+�1�'�&�1�'�'�)��(�'�-�.�/�3�%�*�(�&�)�*�'��#�1�7�*�&�8�5�'�4�2�#�+�)�0�$�*�6�%�*�)�"�0�%�-�)�-�/�)�)�#�&�)��+�$�,�0�/�!�)�9�.�!�)�6��.�-�%�,��#�+�(� �$�/�0�.� �$�0�+�,�/�*�)�6�*�#�*�'�)�$�&�-�#�$�)�-�0�&�/�*�#�)�/�7�0�9�,�2�4�$�+�*�3�8�,�9�1�/� �*�"��)�4�&�&�)�-�*�!�4�.�1�7�*�8�)�3�0�0�)�5�-�1�6�#�.�)�3�'�7�3�/�'�(�+�3�5�;�4�*�6�3�-�3�)�0�.�1�.�4�;�'�(�5�7�7�Ԁ׀Հ؀ڀҀҀՀ׀ɀ؀ڀրڀ׀׀Ԁ؀Ԁրր؀ӀӁ0�!�*�1�.�&�0�&�-�%�'�-�$�/�1�*�1�&�6�4�*�)�/�/�2�)�(�-�'�)�:�(�*�+�"�:�5�4�&�/�#���1�0�(�)��)�"�3��3�%�"�%�.�0�*�#�(�(��,�-�3�*�2�)�0�(�$�-�1�(��/�"�&�7�&�5�,�$�2�-�*�2�*�&�8�%�&�.�8�6�3��)�#�)�*�3�#�/�/�"�6�2�2�*�1�4�:�(�7�3�0�,�>�7�)�-�'�)�,�,�*�+�9�(�3�#�+�'�"�.�$�'�)� �)�.�;�9�B�K�I�Z�T�]�c�g�m�f�i�[�`�\�C�^�L�J�<�4�1�=�3�)�4�&�-�*�5�>�%�5�/�#�4�5�6�6�2�1�+�'�5�(�9��-�'�.�1�3�"�1�!�(�/� �.�.�!�(�/�,�1� � �-�"�.���/�)�3�%� �(�+�1�'�)�'�-�/�9�'�%�-�,�3�0�5�&�-�?�5�$�"�#�,�:�$�#�2�/�/�=�-�0�$� �"�-�#�6�'�(�.�(�&�.�;�/�$�*�)�!�&�/�(�+�/�(�#�%�)�(�'�(�.�,�4�&�0�0�)�7�/�:�(�,�$�/�5�-�"�%� �4�.�1�&�#��#�5�.�.�7�'�1�3�.�/�*�'��,�1�%�'�(�)�&�0�'�!�$�7�$�)�&�%�(�+�;�1�)�:�0�3�+�4�$�3�8�*�0�0�/�.�+�+�*�/�(�"�'�<�.�/�0�'�,�/�5�-�&�(�4��2��4�7�+�$�,�-�&�%�3�(�&�-�*�)�/�8� �,�-�5�!�'�0�&�)�)��2�+�/�1�,�%�'�4�3�$�.� �+�8�(�-�)�3�$�'�+�-�+��.�.�3�&�'�*�-�+�5�4�)�.���/�0�(�+�)�(�(��(�1��$�%�2�)�.�/�#�1�4�)�7�2�2�6�B�/�&�7�+�1�.�8�3�*�2�*�%�3�/�1�)�'�4�1�8�0�%�*�+�)�/�7�3�/�>�-�)�2�5�/�9�-�&�.�5�1�,�,�Ԁ؀ҀӀր؀ԀՀҀȀۀ׀ـրڀ׀ҀڀӀ؀Ҁ׀Ӏԁ2�'�-�6�/�2�9�0�)��2�/�+�,�(�-�%�5�4�(�#�.� �'�'�+�)�/��*�2�.�$�.�,�7�(�0�4�2�!�7�1�3�&�.�'�6�$�1�*�-�1�$�.�'�1��+�'�,��0�,�-�/�1�"�'�1�&�7�%� �/�9��0�(�%�!�*�5��2�,�9�)�3�!�&�7�-�&�%�.�'�'�.�0�0��0�-�'�,�/�8�1�+�-��+�*�%�)�.�=�)�-�(�,�'�(�/�3�3�.�1�)�+��0�2�-��/�5�(�/�4�2�1�9�8�B�F�F�C�=�D�X�c�S�W�b�i�S�@�X�I�H�C�5�F�1�6�3�:�.�+�)�7�0�*�,�8�4�)�)�&�/�$�$�)�7�.�7�*�(�'�7�1�*�,�%�5��%�0��'�5�1�+�0�1�1�"�.�'�,�1�$�1��1�*�)�5�)�,�5�4�1�5�,�5�)�5�0�*�*�"�+�D�'�)�"�<�)�(�5�/�*�.�-�)�,�.�(�2�%�.�;�3�0�)�&�2�9�1��,�.�0�-�*�&�+��#�4�,�3�3�:�#�/�-�(�+�5�)�4�(�3�+�'�6�'�<�1�+�%�$�2�5�$�:�2�,�-�1�8��&�(�5�)�+�.�-�5�+�5�#�1�4��#�7�0�/�2�7�'�3�0�(�9�(��+�)�-�)�%�(�3�(�0�'��$�)�*�-��1�&�,�)�2�-�-�,�2�,�$�*�-�:�"�3�0�6�+�/�&�%�(�$�-�)�3�!�(�'�"�5�+�/� �1�'�!�)�9�-�0�$�+�:�(�*�)�3�)�,�5��+�2�4�1�1�&�+�(�%�+�6�(�3�.�'�%�2�(�$��(�*�*�)�(�#�:�'�(�,�/�$�0� �4�2�'�<�,�'�&�%�)�,�&�4�8�9�-��6�9�;�/��<�.�-�)�2�2�/�)�>�3�;�/�/��.�"�.�1�2�:�$�0�-�&�4�-�1�&�)�7�3�,�/�7�.�/�)�%�)�8�'�(�D�+�&�/�8�7�:�-�8�:�/�2��րՀՀ܀ӀՀрՀӀƀ׀ҀԀՀـԀҀԀӀڀӀՀӀց.�.�#�-�)�#�+�+��(��%�*�5�%���-�4�1�.�(�,�1�,�>�.�+�.�,�-�/�(�'�3��+�!�7�5�4�+�!�$�-�+�4�#�)�$�#�$�)�'�B�4�)�-�-�0�-�(�/�%�3�-�"�7�/�"�%�%�-�-�.�.�-�0�,�,�7�,�+�(�)�(�/�/�&�#�3���2�+�:�0�"�$�+�/��&�"�/�'�7�-�/�*�(�)�-�-�6�,�0�/�*�%�-�0�'�7�)�"�/��)�>�/�6�0�3�'�-�3�.�2�'�(�1�3�1�6�3�*�>�5�4�O�N�R�U�9�L�9�E�E�=�6�C�2�0�%�)�4�0�-�4�+�!�#�,�#�.�+�&�)�'�3�#�-�+�,��5�,�3�+�0�(�.�0��-�"�'�-�6�+�.�+�<�*�.�5�3�3�'�0�'�#�%�2�%�:�&�-�!�'�;�>�#��+�(�1�'�*�+�+�+�,�3�4�0�:�/�6�*��.�#�+��/�:�5��,�!�<�)��'�+�*� �%�,�5�,�/�/�4�%�)�'�:�+�,�4�*�,�>�0�%�$�0�#�-�*�-�-�0�#�7�(�+�)�+�(�0� �3�=�,�$�3�.�1�)�,�,�3�(�4�)�)�,�*�!�/�/�,�/�'�'�)�(�=��)�7�)�/�,�-�5��*�.�(� �0�5�,�0��'�3�.�!�/�(�6�5�;�1�,�*�#�%�1��&�5�3�&�!�.�)� �1��+�%�)�(�(�$�1�-�/�'�(�1�%�1�3�0�#�/�(� �'�(�"�5�#�)�,��"�!�'�"�/�&�3�3�-�(�1��$�5�.�$�2�&�/�$�/�.�"�-�"��)��)�:�/�.��.�'�,��)�%�>�0��(�4�'�0�1�-�+�/�.�-�&�/�0�'�3�$�8��5�(�1�+�/�-�2�0�-�/�*�0�;�3�#���&�:�2�$�&� ��/� �$�-�7�/��1�&�-�-�7��*�/�,�2�'�)�+� �,�!�)�8�#��0�%�*�+�#�*�.�؀ՀӀӀ׀Ҁۀր׀ɀۀـՀԀՀՀӀր׀׀׀ӀՀׁ7��-�+�!�)��,�$�,�,�;�;�(�-�+�-�5�+�*�.�(�&�7�,�4�#�,�4�3�/�0�*�*�#�*�!�/�7�(�,�"�-�)�4�/�+�!�-�4�-�,�*�+��=�6�$��%�!�(�"�.�!�'�*�(�/�0�,�'�*�=�3�(�-�(�4�1�4�%�*�.�)�!�-�'�0�0�-�2�4� �*�(�-�3�/�:�"�5�+�.�"�,�'�$�*�/�(�&�)�.�&�$�'�7�*�,�#�0�+�2�.��(�<�.�3�3�&�*�/�.��,�)�0�#�-�)�6�=�.�$�-�@�;�:�5�I�D�=�F�B�K�[�<�=�D�.�/�=�1�)�.�:�$�+�(� �)�+�&�2�'�,�(�*�0�3�&�'�+�.��'��5�,�%�3�'�-�-�7��!�$�.�'�+�-��7�)�"�(�"�4�*�'�.�*��,��$�*�-�+�9�0�&�0��*�(�!�(�2�%�5�7�1�,�/�2�3�2�'�&�+�/�-�/�)�1�(�8� �"�/�9�.�5�$�+�2�'�-�)�7� �/�B�(�9�1�0�,� �)�0�5�>�,�7�7�,�*�,�(�+�/�-�6�0�9�%�!�,�)�$�)�&�%�%�.�0�3�-�7�+�,�:�&�(��#�.�*�*�2�(�6�$�#�!�&�2�+�!�3�*�!�1�'�)�%�(�'�(�,��'�6�%�"�.�$�(�2�3�'�,�3��4�,�4���)�2�0�)�)�2�4�!�$�0�0�-�'�1�%�(�1�%�#�2�)�/�)�.�&�'�>�$�1�+�/�/�&�'�)�#�/�"�)�)�#�7�-�4�$�3��)�/�%�1�-�!�&�4�%�7�7�)�(�(�0�#�$�/�.�'�+�(�.�(�:�1�'�(�3� �&�)�+�5�,�/�/�6�'�2�=�-��2�/�(�.�8�$�$�,�-�.�4�,�.�/�6�:�1�#�'�-�&�2�)�/�'�+�+�$�(�(�0�5�)�/�'�"�'�-�6�*�+�1�(�0�-�(�'�2�/�!�-�1�/�?�,��#�,�5�%� �6�(�'�,�,�#�+�Ԁ׀Ԁр؀ҀӀրӀȀԀ׀؀ڀՀրրրԀڀӀӀԀՁ3�+�2�)�2�+��'�)�!�*�!�1�5�1�5�+�/�%�+�3�-�2�-�&�1�0�3�0�-�2�8�/�/�6� �'�+�5�'�)�0�8�#�+�$���/�7�-�+�-�-�#�(��+�+�+�0�%�5�(� �7�/�)��3�+�2�)�.�"�.�2�%��7�%�#�'�'�.�/�/�(�*�+�/�*��,�"��*�3�6�%�/�2�8�*��.�+�)�.�'� �(�,�"�4�'�*�'�&�-�%�0�'�&�*�#�$�0��&�-�+�#�)�1�%�4�?�0�*�@�+�8�D�7�6�4�<�9�3�+�D�@�7�9�A�'�I�;�E�2�4�A�C�9�+�/�<�8�4�4�&�.�/�'�(�7�*�/�&��*��)�1�'�#�-�-�/��)�(�1�2�"�'�-�%�-�2�+�)�(�/�&�&�)�-��9�$�(�&�(�0�!�3�0�-�+�?�5�3�)�-�4�!�'�-�&�,�.�%�,�2�/�)��2�#��$�*�&�*�+�(���7��,�=�'�&�-�3�(�9�/�-�%�#�(�(�4�5�$�=�!��,� �'�7�-�'�4�!�(�=�)�(�9�'�-�+�.�3��-�3�-�,�.�'�/�(��"�+�%�/�"�*�'�-�'�3�-��-�2�2�%�.�%� �.�2�-�,�.�-�$�2�-�+�2�/�-�)�8�/�,�%�,�-�-�'�&�*�0��!�)�*�,�$� �%� ��!�*�'�/�(�:�!�0�#�/�/�:�/�7�+�"�1�0��'�� �%�%�'�4��+�/�/�7�7�%�!�$�4�(�,�1�+��-�*�*�6�+�"�+�4�!�$�.�&�&�8�,�'�*�$�-�"�&�/�%�$�2�/�,�/�2�1�)�*�(�#�.�8�,�5�,�/�,�&�"�9�-�9�(�)� �+�0�)�*�'�"�-�-�0�<�0�+�,�7�-�*�/�&�1�/�!���/�0�$�*�-�/�!�"�&�)�$�0�.�,�0�+� �(�)�/�B�$�'�+�-�4�:� �,�5�1�.�1� �7�-�2�+�$�5�'�1�#�*�2�׀ԀՀ׀׀؀׀րۀĀрրπۀՀЀӀ׀ڀրڀՀԀ؁,�$�.�/�2�.�4�'��0�5��(�(�$�+�-�&�)�1�.�*�-�.��/�)�6�3�!�(�0�)�"�*�/�6�'�7�/�1�6�*�9�.�;�*�<�%�"�-�/��%�0�)� �&�8�4�,�+�$��7�%�$�2�*�� �'�,�(�.�$�5�"�9�&�8�!�&�*�)�'�2�1�*�*�/�+�"�*�,�4�$�1�.�+�.�,�6��9�.�1�'�)�4�'�&�'�*�.�.�*�4��&�7�-�%�-�1�-�+�%�/�*�)�3�8�:�#�6�&�1�"�2�#�-�:�*�0�.�2�9�<�0�<�,�8�=�7�9�8�1�I�5�6�2�@�4�7�)�-�+�/�&�/�2��6�+�3�;�3�8�*�(�(�)�*��'�-�7�+�3�#�*�(�9�5�5�*�/�&�8�)�-�@�/��#�(�&�+�*�/�6�� �-�#��,�/�!�+�2�/�'�7�4�1�"�/�+�6�3�-�(�+��.���3�)�(�*�*�/�/�&�"�3�&�3�.�<�.�.�'�+�'�&�,�3�-�(�5�.�&�3�-�4�,�1�"�#�*�0�)�.�6�+�4�1�"�*�'�)�*�(�/�/��#�*�1�!�+�+�/�*�-�4�%�-�$�7�'�6�)�!�)�0�*�.�,�-�)�*�#�/�$�6�*�-�0�3�-�� �)�(�!�'�-��6�5�%�+�#�*�(�)�&�,�.�0�/�&�-�'�&��,�%�(�0�1�7�!�"�6�4�#�*�'�(�2�-�3�>�$�'�+�3�0�,�&�/�<�-�'�#�6�4��,�0�3�#��*�.�$�.�*�0�+�3�-�)�*�5��,�)�#�+�1�"�2�.�,�/�,�1�5�/�!�4�*�1�-�.�5�%�)�,��4�)�4�3�*�+�;�3�"�&�"�"�.�5�.�5� �0�/�/�%�+�)� �4�"�1�+�6�*�/�1�4�6�*�)�5�*�-�.�/�7�-�$�.�.�,�2�)�4�*�*�9�5�"�0�"�*�"�.�$�1�<�1�/�#�#�1�,�+�'�(�.�6�)�/�'�.�!�0�7�+�8�,�(�׀ԀۀЀـۀ׀ԀۀĀ׀ՀрӀ؀؀ــ݀ـՀրՀЁ#�%�*�.�&�(�1�.�*� �&�(�+�0�.�-�@�1�2�+�$�,�&�<�+�)�(�.�7�,�-�&�!�+�'�'�)�-�0�.�2�-�#�5�-�0�#�)�-�)�(�#�-�2�!�&�A�@�*��>��+��0�*�0�,�!�%�&��'�1�%�6�#�&�#�0�)�'�2�2�*�.�&�/�+�)�/�,�/�8�2�9�%�3�&�!�/�1�)�!�;���*�.��3�,�1�.�1�7�%�"�*�$�,�0�4�.��$�+�7�6�"�'�&�2�#�2�(�(�.�&�C�*�-�-�,�%�,�*�:�)�)�;�5�/�*�>�7�@�2�.�=�<�$�3�8�-�+�%�%�/�2�2�*�/�&�,�7�.�$�/�'�'�5�+�2�/�&�%�7� �(�)�.�"�+�/�=�.�*�&�"�,�+�)�-�/�3�-�!�(�*� �*�.�7�)�%�� �6�.�1�/�%�.�5�"�2�%�*�.�&�%�+�.�,�1��%�3�2�.�!�0� �1�(�3�,��/�"�5�.�+�/�+�3�6�*�-�*�/�)�.�,�+�0�7�/�,�/�4�0�*�-�,�!�(�/�6�%�(�'�"�#�(�3�*�+�&��"�"�/�3�7�.�,�+�0�)�.�-�2�&�/�2�1�.�7�)�/�$�.�.��#�$��2�(�/�3�)�!�(�/�+�2�)�(�%�$�1�/�!�.��(�+�3�%�-�/�'�.�8�/�(�&�+�.�+�%�1��.�%�-�4�1�5�(��+�/�$��)�*�3�&�+��2�;�-�2�#�&�%�1�2�7�#�,�1�"�)�3�.��=� �%�5�/�,�8�8�2�$�.�-�1�/�$�(�3�&�/�;�3�&�"�'�:�-�&�@�&�2���)�5��%�#�+�,�-�.�#�/�%�,�0�*�5�3�'�+�+�-�&�.�+�'�*�!�.�3�&�1�+�-�#�(�5�,�+�%�1�%�/�*�(�3�+�,�5�%� �'�7�2�0�'�&�)�+�2�*�0�,�1�=�!�'�*�3�.�3�*�5�/�.��7�7�5�)�2�4�.�+�=�6�&�4�5�ـԀ܀؀ԀԀՀՀՀǀՀ׀ۀــՀҀրӀրրԀڀ؁+�-�9�6�/�-�+�9�4�#�=�/�,�'�(�&�!�)�(�,�.�!�-�$�2��0�4�2�&��-�0�1�1�/�/�2�0�/���)�0�6�0�'�.�1�*�(�+�0�&�'�*�-��+�,�0��3�1�;�*�%�/�/��)�A��%�'�2��*�5�#�%�%�%�6�-�2�#�'�&�(�%�*�3�(�3�&�(�*�2�1�&�-�/�1�/�*�&�.�0�-�0��9�$�/�/�6�.�3� �3�!�-�7�#�2��2�7�&�@�3�2�1�&�'�4�#�.�6�-�-�9�)�4�)�/�.�7�8�2�0�5�<�1�3�6�;�/�$�2�2�6�4�-�%�<�8�%�<�3�4�9�-�-�(�:�1�5�*�3�=�&�1�8�(�0�+�-�/�+�*�"�/��)�&�&�-�)��=�+�-�9�)�-��%�6�%�%�)�(�-�&�� �(�$�$�.�,�/�(�,�3�-��&�1�9�.�-�(�1�!�1�(�(��%�%�7�4�+�,�(�2�+�0�6�'�$�(�)�:�7�!�&�7�1�&�2�)�3�-�3�.�,�(�.�4�0�.�*�+�7�$�#�-�+�#�*�(�/�6�5�)�!�5�+�4�+�+�5�/�-�"�&�)� �)�2�2�4�/�,�6�)�(�(�1�/�4�0�1�*�B�)�3�-�5�,�'�,�'�(�7�$�+�-�4�%��-�&�,�-�%� �.�&�.�)�/�'�/�"�2�-�$�,�'�*�+�1�3�1�%�2�+�)�2�+�3�%�<��!�/�.�)�%�2�8�/�6�/�)�&�4�5�-�.�)� �!�/�4�.�4�/�#�%�/�.� �'�&�,�*�3�"�*�(�2�/�/�5�,�3�-�5�2�(�(�'�/�'�4�$�'�)�)�8��,�'� �!�2�,�/�1��)�2�.�(�%�3�(�$�)�!��%�0�5�7�-�-�(�-�(�/�)�!�2�3�+�"�%�!�(�+�.�2�;�(�,�/�2�,�*�@�3�#�*�#�8�2� �.�#�#�8�*�,�(�"�C�-�)�/�3�-�+�)�#�-�/�%�1�$�(�.�5�1�%�4�ـЀӀ؀Ѐ܀׀Հ׀ʀ׀׀Հ݀Ӏр؀׀׀рӀՀڀց0� �)�,�:�1��*�'�)�(�2�)�%�/�+�)�)��2�8�5�%�'�/�>�1��,�+�&�$�*�$�6�/�2�+�2�"�.�/�-�*�(�$�"�,�,�2��'�%�.�'�3�)�0�5�.�*�&�3�<�-�1�-�(�.�&�8�+�7�*�*�8�*�<�-�$�0�/�)�"�:�%�'�4�$�4�+�$��,�2�&�-�1�%�0��5�2�A�/�;�/�(�)�+�*�,�,�(�&�+�$�8�>�(�%�)�1�%�*��)�-�2�0�3�-�/�!�+��.�;�4�)�!�"�"�(�)�-�%�,�*�%�B�2�2�(�/�/�=�0�-�(�(�0� �3�8�*��(�;�.�,�+��*�"� �2�!�)�4�.�7�-�(�#�%�2�!� �6�-�(�'�&��1�6�,�'�1�"�4�+�.�-�#�(�1�5�3�)�#�'��3�/�0�;�.��7�+�%�-��2�+�1�$�3�'�-�/�-�!�)�,�+�'� �;�/�.� �!�(� �&�'�0�(�.�*�-� �3�1�8� ��,�8�6�%�3��"��*�#�*�+�2�&�#�5�1�-�(�6�;�"�2� �-��"�+�5�-��.�1�'��,�&�%�/�3�2�.�+�,�+�:��/�+�-�+�3�*�0�)�)�'�&�,�-�)�%�!�'�3�)�(�1�:�5�-�1�.� �"�.�'�)� �7�.�,�$�.�0� �-�$�.�3�0�7�7�&�'�(�0�&�%�'�*�'�/�+�7�4�2�%�0��)�/�1�,�1�:�4�'�0�'�1�"�.��.�3���(�$�8�*�2�2�$���)�1�$�/�#�(�%�3�!�(�.�7�/�&�!�3�2�!�3��'�!�%�.�/�(�.�2�3�*�-�3�*�0�,�(�%�-�,�+�!�6�7�,�%�(�-�1�*�2�,�$�!�(�*�+�,�"�8�3�(�9�.� �(�&�$��+�&�(�=�/�=�!�0�/�%�9�)�"�+�0��!�9�+�&�6��-�/�+�/�.�#�%�#� �7�*�8�2�/�1�3�5�&�4�5�3�<�'�)�(�؀Ԁрۀ׀րӀ؀ӀÀҀԀӀۀڀـҀ؀׀ՀӀ܀Ӏс'�&�0�.�2�1�)�1�,�*�&�1�5�&�&�-�4�-�)�)�-�)�-�4�%�-�+�'�%�!�)�+�#�*�#� ��2�0�'�,�*�<�!�-�;� �"�-�)�&�(�2�5�)�)�0�0�!�5�,�-�#�2�%�/�+�*�'�9�'�/�%�,�)�A�&�8�)�%�2�.�,�5�/�$�(�*�'�(�*�*�1�.�/�1�'�'�!�0�0�'�'�0�"�.�2��0�"�-�%�/�4�+�*�*�0�+�/�1�0�F�'�#�-�=�!�(�5�,�2�'�7�"�9�(�5�$�+�3�(�4�+�3�)�3�;�*�+�.�0�2�:�%�+�2�5�.�2�2�.�3�-�'�0�+�0�-�'�)�/�-�5���)�-�#�-�"�)�,�-�+�#�/�2�.�*�4�%�%�,�,�'�5�1�9�(�#�%�/�(�%�2�+�'� �3�'�,�+���1�4�2�"�+�.�*�'�%�/��,�)��+�6�!�/�%�2� �.�-�/�(�-�$�$�1�)�"�(�$�&�(�2�)�2�1�+�-�,�)�+�+�4�-�7�)�/�1�6�'�0�*�6�-�(�"�-�0�#��)�,�5�+�!�$�,�$�3�*�&�$�3�+�3�+�&�%�+�(�'�;�2�1�-�'�9�7�/�"�"�.�#�+�.�$�/��,�(�'�/�2�*�-�+�'�0�3�,�8�*�0�/�0�(�+�)�4�"�?�+�1�)�1�:��2�!�'�2��&��2�.�*�'�2�'�/�0�1�9�#��+�'�!�%�+�)�/�:�-�%�)��/�-�5�3�'�)�$�!�(�!�"�+�+�'�#�'�&�*�$�.�%�.�8�%�,�%�,�)�*�0�(�4�!�1��-�$�5�(�$�2�4��*�'�5�+�&�%� �'�-�-�4�.��7�!�+�!�'�!�,�,�0�"�&�/�7�$�7�'�9�/�#�.�/�&�2�*�/�(�1�<�#�+�1�4�2�%�,�2�-�/�-�)�/�/�9�2�/�0�.�0�0�.�/�7�/�'�*�2�/�$�3�.��-�-�;�+�+�(�$�$�5�1�&�1�*�"�(�*�2�3�/�ԀԀӀՀրՀҀـԀ̀ԀҀՀۀҀрҀ؀Ҁր׀׀Ӏց+�(�/�$�%�#�*�,�+�)�.�0�'�+�.�/�&�&�$�,�4�4�1�*�+�+�6�)�5�8�.�2�:�3�1�3�/�0�&�'�)��*�9�2�,�*�0�7�!�&�2�/��.�2�/�.�+�$�"�$��,�0�+�(��.�-��$�.�$�5�0�2�*�#�>�/�3�%��)�4�1�*�(�*�1�!�1�&�0�-�(�2�+�"�*�'�'�(�0�'�0�*�.�!�-�%�"�-�%�9�.��"�+�*�,�.�)�*�1�!�)�'� �5�5�"�'�'�A� �2��5�2�1�!�.�/�-�(�9�&�/�3�+�,�&�8�7�.�6�4�7�.�*�!�2�1�+�%�.�2�2�)�)�1�%�+�0�%�/�'�$�8�/�"��2�+�)�'�>�)�,�+��"�0�*�9�6�,�#�,�!�)�&�(�)�.�&�0�)�*�%�3�� �.�5�*�*�3�+�$�-�8�%�-�&���(���$�5�,�.�4�9�!�0�9�%�&�'�/�4�%�+�"��'�"�*�$�/�.�'�$�8�5�$�/�#�0�$�!�.�0�*�-�*�2�+� ��$�0�1�,�)��/�/�2�,�"�5�0�/�+�*�-�%�/�1�/�6�*�5�)��(�$�2�.�4�1�(�5�'�)� �7�3�5�'�3�0� �%�'�1��1�3��,�#�2�#�+��3�(�+�.�3�1�1�,�1�2�.�0�"�,�&�3�.� �/�2�+�4�1�,�&�%�%�%�,�%�1�0�)�9�.�3�+�2�)��3�4�(�*�(�/�(�1�$�-�/�,�4�%� �*�(�!�+�/�,��%�:�$�4�(�)�$�-�#�+�*�5�*�4�3�/�9�/�7��4�+�)�0�+�!�(�,�/�.�%�/�)�.�1�1�#�!�/�)�.�0�%�2� �*�1�/�4��'�)�7�+�+�'�1�%� �,�+�9�-�4��7�/�4��6�,�6�.�*�3�-�$�:�9�3�+�/�!�/�4�#�8�.�7�-�6�/�0�/�1�;�:�+�#�$�<�%�%�,�1�+�'�/�+�'�&�/�4�/�7�0�%�1�׀րրՀ׀րҀ׀ՀȀ׀ԀӀ׀ـ׀ӀӀ׀րրӀրӁ:�#�;�2�+�,�$�(�(�&�4�-�)�*�*�'�8�;�1�)�+�3�"�,�0�%�2�'�+�&�)�)�0�6�'�*�0�1�/�/�'�.�'�+�1�-�-�'�2�!�4�'�5�*�2�1�(�*�1�)�#�4�1�2�*�'��/�.�/�4�4��)�%�/�'�3�'�$�3�'�(�<�4�)�/��0�0��-��0�%�%�7�*�*�:�*� ���,�*�#�#�-�#�+�$�-��+�&�%��*�,�#�5�*�+�'�1�9�,�)�)�+�&�/�,�.�!�9�7�)�3�'�%�'�)�7�9�7�*�5�(�/�(�$�/�<�6�9�/�:�:�,�,�0�*�(�"�+�&�7�-�*�-�)�1�2�/�4�2�$�!�0�1�'�,�0�(��&�,�0�/�(�!�.�,�'�!�&�6�*�%�0�!�,�1�/�*�4�%��/�3�)�0�2�*�*�,��1�'�?�,�/�0�+�,�7�$�,�$� �.�,�3�%�+�,�1�3�(�-�/�0�5�,��2�,�2�#�$�)���-�/�*�'�)��&�-��/�%�.� � �&�9�)�:�)�5�8�,�=�/�2�)�'��+�*��/�;�-�0�$�/�8�!�'�;��.�.�:�+�.�-�-�-�$�-�3�0�"�-�,�%�&�6�+�4�:�0�+�2�+�'� �5�(�-�:�0�-�+�-�(�-�'�(�(�4�7�5�*�+�3�/�3�3�.�3�*��)�'�/�&�#�0�/�/�9�,�+��(�+�3�.�,�#�!�)�,�'�$�7�(�)��#� �+�3�2�,�%�,�,�4�(�@�"�!� ��7�*�,�+�"�+�$�"�6�/�3�#�'��)�*�3�'�!�2�/�,�"�(�-�0�.�&�-�&�*�.�%�)�'�+�-�3�/�6�(� �)�%�'�1�+�-�8�7�/�&�,�+�)�-�'�.�$�'�+�%�*��*�*�/�2�/�+�'�-��0�1�;�$�1�5�.�/�+�1��,�*�'�1�'��)�*�)�.�"�-�6�)�$�0�'�(�;�+�/�9�"�&�(�9�(�%�5�3�*�=��3�#�ۀۀ׀؀Հ݀Հ׀րǀԀڀ׀ӀՀۀ׀׀ـ׀ՀՀ؀ׁ7�!�(�.�7�'�5�0�%�;��&�)�$�%�+�(�,��-�,�6�+�+��1�'�)�&�9�!�"�#�'�#�2�0�#�8�1�+�+�6�#�+�%�*�#��;��$�)�"�*�0�,�"�'�)�*�/�)�.� �(�+�$�-�*�*�0�!�&�&�)��#�'�1�9�#�3�)�-�)�0�4�-�'�4�(�2�)�,�,�%�$�,�!�0�-��)�)�'�.�:�&�,�)�(�0�3�/�,� �%�1�)�&�+�/�-�1�+�0�'�+�*�+�6�&�+�1�*�1�/�/�3�&�+�4�%�*�-�?�*�1�)�:�7��)�+�(�&�*�%��(�-�(�2�*�+�'�-�3�,�'� �/�"�#�&�.��/�3�,�1�*�$�&�#�%�*�0�9�&��$�+�,�4�"�/�7�*��'�-�(�.�-��+�6�1�.�#�#� �&��2�+�'�,�(�4�(�/���/�,�(�/�(�#�/�&�*�2�-�4�7�.�5�)�+�'�,�+��'�&�&�1�*�$�2�3�/�3�/�1�"�!�/�"�(�+�-�(�#�0�)�2�4�,� �)�/�.�+�1�&�,�&�8�"�*�,� ��+�(�)�$�%�1�/� �,�(�4�:�/�!�1�$�%�=�:��;�$�/�$�&�*�/�-�<�1�6�*�0�%�)�%�/�7�/�%�&�/�4�)�(�&�)�6�)�+�+�(�(�&�,�.�1�&�/�'�'�2�,���:�1�*�#�/�+�%�$�*�'�/��*�!�*�2�3�#�,�!� �$�0�'�!�&�2�+�!�/�&�(�9� �'��.�#�.�&�-�"�#�,�(�)�"�-�$�(�)�3��7�0�&�)�'�(�'�0�-�*�+�-��+�&�1��1�,�%�1�%�&�3�1�-�.�0�#��(�)�/�)�2�*�(�.�,�<�1�/�(�)�2��)�)�0�!�.�.�.�-�6�,�4�3�2�'�+�%�0�5��'�1�&�*�*�1�+�*�!�0�$�2�'�.�%�1�*�1�+�"�2�3��7�+�9�'�&�9�7�(�/�7�6�6��3�,�)�>�)�ՀӀԀ׀ՀӀـۀՀĀՀۀڀҀӀՀ׀рրրրՀՀҁ(�.�+�3�<�7�/�/�'�0�5�(�.�3�-�-�@�%�$��#�5�$�3�'�'�.�"�!�.�2�*�$�0�)�)�"�/�)�*�$�,�"�<�2�3�(�0�+�,�/�(�.�/�2�)�2�$�0�,�1�#�1�*�,�)�2�)�#�%�.�!��,�+�0�.�"�-��'�(�;�2�+�*�+�&�!�'�/�#�&�0�+�1�(� �&�2�#�-�9�,�-�5�/��/�7�3�+��$�.�1�(�.�+�5�'�:�9�+�&�7�-�'�7��#�.�*�3�.�2�(�+�,� �)�&�*�'�+�*��3�-�+�;�&�+�2�&�:�2�/�8�'�-�2�4�+�.�$�5�&�1�2� �:�0�$�+�2�+�4�)�>�!�%�,��"�.�9�/�+�*�+�'�!�)�3�-�6�)�&�1�&�0�2��!�'�(�'�+�/�6�8�!�1�9�!�-�0�*�-�2�)��+�&�.�+�,�-�5�6�)�.�#�-�/�<�*�4�8�2�4�%�3�1�4�,�6�)�1�/�%�%�+��(�#�"�1�!�*�'�'�+�)�/�.�6�*�1�%�/�!�'�*�/�.�3�6�0�'�"�'�/�'�0�(�'�+�)�B�$�,�2�4�0�3��/�+�,�6�6�1�*�0�#�$�/�5�'�-�+�3�.�:�1��%�"�*�4��,�%�(�#�/�(�;�1�2�,�+�*��'�/�)�3�!�"�1�5�/�8�$�*�)�'�*�/�1�7�+�0�)�,�(�'�'�.�8�6�3�4�8��2�)�+�&�'�7�#�1��'�*�(�!�!�.�,�-�-��!�2�(�+�&�2��-�)�*��"�3�2�6�-�-�(�5�,�5�!�'�1�*�.�8�)�,�&�:�*�-�2�%�$�)��,�6�7�-�*�"�#�)�2�,�"�(�0�(�&�/��,�7�+�0�'�"�*�0�1�1�5�*�!� �)�&�)�-�*�-�&�6�*�/�*�6�+�0�#�&�'�+�.�1�/�(�(�;�%�3�5�1�*�6�;�=�+�,�7�.�-�*�2�4�'�.�.�/�2�,�.�"�+�5�4�7�'�/�!�5�Ԁ݀ۀԀ׀׀ҀӀԀ€؀ӀҀӀ݀؀׀؀؀׀ـԀ؀ҁ'�$�5�3�$�'�2�(�,�/�,�(�7�)�1��(�%�.�%�-��%�8�3�+�-�&�%�1�/�.�)�3�#�/�(�-�$�.�1�5�+�)�'�+�(�(�)�$�/�.�)�6�7�2�-�0�/�/�,�!�2�1�.�*�/�:��(�(�<�.�/�)�(�&�;�*�,�%�1�$�'�/�"�*�+�"�)�4�+�'�6�9�/�/�.�+�3�%�&�&�1�9�*�4�(�$�/�-�2�(�&��"�'�.�,�4�)�'�'�&�.�*�)�*�'�2�-�+�,�1�"�@�0�2�4�%�)� �6�'�,�-�0�1�'�(�+�8�)�.�,�#�'�%�0�1�+�&�1�'�6�7�+�*�0�B�'�1�:�)�&�4�0�$�&�9�$�-�+��/�(�;�$�3�,�<�!�!�%�.��(�$�#�5�&�,�,�)�'�'�.�!�+�0��-�'�'�#�.�8�2�,�3�)�+�!�(�&�9�4�(�(�&�.�,�*�,�%�&�6�*�)�/��/�+�2�(�/�$�*�)�/�'�.�B�+��)�)�'�4�8�+�"�-�'�'�1�,�,�1�!�*�,�,�)�,�0�4�*�6�8�"�0�$�4�+�.�(�)�)�$�)�#�0�&�#�4�"�(�+�)�,�1�:�,�/�'�2��2�-�"�'�0�$�6�(�'�*�-�(�0�3�)�-�2�(��/�"�+�(�-�*�;�+�.�&�.�,�+�)�$�(��/�-�)�0�-�3�%��.�-�!�$�1�2�*�,�4�$�$�!�1�#� �*�,� �.�3�+�)�'�-�3��$�(�)�)�/�2�0�$�)�"�!�.�)� ��3�2�(�/�'�3�)�5�*� �)�/�*�+�5�)�)�.�.�#� ��1�4�3�0�"�/�&�+�:�2�7�*�'�.�!�.�+�'�+�8�,��#�:�+�4��3�'�$�%�;�9�/�%�%�)�/�,�4�/�-�2�*�)� �(�)�.�-�$�0�(�+�2�-�'�/�2�+�-�+�"�1�;�8�-�2�$�-�+�/�2�'�6�5�-�5�&�,�.��-�,�%�,�:�9�/�:�,�*�!�=�+� �9�ڀπ׀׀ۀӀԀрۀȀ׀ڀӀӀ׀ր׀ր؀׀؀׀րӁ1�6�5�1�*�&�+�,�)�&�8�(�#�+�4�2�/���#�6�-�*�(�#�"�%�&�(�9�'� �(�,�-�-�0�8�#�8�,�%�(�(�)�1��0�*�/�%�1�/�*�+�*��-�3��)�-�(�9�4�1�1�*��&�)�)��4�4�%�,�+�'�)�1�.�"�/�2�1�5�!�)�#�-�&��,�*� ��+��+�<�"�1�.� �7�(�+�'�4�(�7�&�2�)�!�*�%�5�,�(�/�3�*�+��2�/�(�!�/�)�1��-�)��'��.�'�8�%� �(�(�/�%� �*�,�&�0� �$��3��.�3�0�1�*�+�)�/�1�1�$� �,��&�%� �5�*�;�)�%�!�*�*�%�7�8�%�/�"�3�(�8�*�.�%�-��!�,��2�-�1�*�*���+�/�6�"��:�/�'� �3�*�6�&�'��*�*�'�#�(�,�'�*�0�+�$�-�,� �5�&�1�(�7�&�*�'�*�:�.�%� ��1�0�2� �,�0�3�+�3�"�7�5�E�0�2�2�#�&�3�-�%�/�,�'�0�'�%�3�&�6�9��,�-�.�5�*�2�3�/�%�2�0�0�%�5�+�3�"�.�1�%�'�5�1�2�&�*�$�:�'�-�-�'�,�*�$�7�-�(�,�1�.�2�(�(�)�,�1�2�%�)�'�$�4�%��,��(�5�(�+�=�%�.�/�/�/�.� �&�+�+�*�(�'�+�$�(�/�,����+�&�+�-� �(�2�3�#�+�!�4�#�"�2�5�&�-�-�"�$�)�/�,�1�(�5�'�7�/�3�8�2�/�'�+�=�(�-�,�'�4�7�0�4� �&��$�-�%�'�*�%�"�&�3�,�>�.�'�.�%�/�1�2�3�)�=�,�+�$�%�/�,�-�1�*��3�5�4�*�$�-���B�&�#�)�0�+�9�/�'�!�%�/�4�,�.��,�#�-�*�/�8�-�-�1��'�-�1���5�/�.�-�!�.�2�-�+�'�5�"�(�$�*�*��0���%���+�2�+�5�-�8�ՀՀӀԀ؀ҀԀррǀڀҀҀրӀ׀րـԀրԀՀ؀ԁ)�%�+�)�-�,�+�!�0�#�%�#�-�2�,�%�*�(�1�&�8�.�+�7�&�1� �6�6�)�,�-�7��/�"�)�"�2� �$�/�$�.�+�-�'�"�!�.�(� �!�.�1� �,�,�5�$�%�-�1�'�5�'�3�!�5�.�(�2�&�!�3�,�1���,�%��/�%�(�.��7�)�0�.�1��#�(�+�%�4�8�/�+�2�.�)�1�.�/��)�"�5���%�+�-�+�&�,�,��#�,�0�%�2�,�(�,�:�/�3�(�,�+�0�/�'�1�2�"�-�/�8�)��0�/�%�-�1�0�!�-�(�*�$�6� � �/�0�#�*�7�+�5�'�*�)�*�*�'�#�6��)�#��!� �+�(�-�1�3��+�3�#�+�/�1�1�-�(�*�+�"�4�!�+�%�-�,�!�'�:�.�;�+�*�.�"�!��*�)�-�/�,�"�*�+�,�)�(� �1�3�%�#�3�9�/�3�#�'�'�%�'�+�/�+�*�,�2�+�!�1�$�5�1�=�)�,�0�2�,�9�+�(�0�/�(�)�1�$�8�*�5�0�/�*�'�,�/�/�6�3�1�.�$�!�3�!�3�.�+�0�%�(�,�2�9�'�.�*�7�3�,�/�'�0�,�2�!�*�2�(�*�1�2��"�"�.�)�1�%�(�2��'�-�(�)�/�&�4�%�!�,�(�&�,�7�9�'�$�/�:�3�)�,�$�*�#�(�3�'�(�(�,�,�4�*�2�)�+�,�+�"�+�)�"�#�+�7��0�)�/�+�4�#�+�-�*�"�%�!�*�&�*�/�#�(�%�0�,�!��+���5�0�(�7�"�0�+�/�"�(�'�"�)�(�(�2�#�(�,�-�+�!�1�'�=�0�*�,�-�8�(�%�.�(�2��5�(�0��5�5�+�#�5�%�&��+��*�*�/�.�,��� �/�/�,�3�*�6�0�+�.�-�(�+�4�3�%�5�2�-�$�=�/�0�0��/�'�-�+�%�&�8�3�5�>�#�.�3��%�"�7�-�9�.�)�>�$�*�8�3�1�.�'�&�1�'�,�.�րрӀԀр׀Ԁ׀рǀ؀Ӏ؀؀؀ڀڀԀҀрրրҀց/�*�3�(�*�,��#�,�7�/�'�*�'�9�!�!�2�6�!�'�,�,�+�$� �.�,�7�$�%�7�$�'�*�"�#�!�"��.�/�%�&���%�%�$�/�(�2�+�!�$�%�'�4�3�#�3�/�/�)�2�%�!�/��#�)�1�*�+�9�4�*�&�)�(�-�/�&�*�B�)�+�3�+��1�)�#�0�4�%�"�1�5�+�+��(�4�#�1�+��/�*�0��/�$��-�8�+�*�,�!�2�3�7�*�#��,�(�&�'�'�&�'�$�0�5�+�)�)�,�$�3�'�7�5�3�)�'�$��)�.�3�$�-�,�4�-�,�(�(�)�)�)�9�+�7�2�!�/�)�;�"�)�3�(�*�+�6�-�'�8�!�/�)�*�-�2�:��0�"�.�0�.�%�(�+�(�/�(�&�1�1�-�(�*�'�,�7�)�5�#� �1�2�4�(�/�*�*�-�-�(�9�5�/�3�'�,�&�7�3�6��(�*�9�(�)�%�&�1�3�%� �9�(�/�+�)�*�&�#�%�3�&�,�'�$�-�;�3�+�,�,�#��/�+�!�)�)�&�)�+��1�"�4�8��.��'�*�"�+��,�4�,�*�2�*�.�3�8�;�*�8�0��2��/�*�-�#� �)�*�+�7�)�*�/�.�/�%�6��-�/�(�*�#�"�"�)�(�*�(�4�*�'�&�1�)�#�6� �%�*�(�.�.�&�4�-�3�,�&�-�)�+�>�0�2�-�/�&� �-�)�%�*�)�-�$�2�)�.�/�7�1�)�/�3���!�)�+�.�7�%�(�6�"�1�.�+�/� �(�2�/�3�$�)�2�-�*�!�7�1�'�(�-�,�+�"�"�1�-�5�3�)�-�;�.�*�*�.�(��=�)�"�2�"�+�2�+�.�+�$�'�=�5�*�1�"�#�'�.�0�.�*�.�+�$�!�$�'�,�"�-�1�5�+�<�4�+�,�'�&�+�&�&�-�(�/�$�/�*�$�0�-�/�,�.�2�)�2�.�/�5�-�*�4�&�%�-�-�4�/�7�:�.�/�0�,�4�1�/�=�4�&�$�ӀрԀ܀Հ׀ՀրՀȀՀՀրԀڀр׀܀݀рր׀Ѐԁ)�"�0�1�,�/�5�,�.�7�)�"�.�-�-�4�/�2�&� �"�.�/�%�&��%�>�*�)�1�6�+�)��"�2�/�,�4�2�-�0�+�+�-�(�&�7�'�/�2�%�$�4�$�&�&�!�+�)�/�%� �!�4�'�(�7�2�-�-�4��7�"�*�7�'�+�/�/�5�,�'�6�6�7��%�'�,�)� �'�3�1�1�&�1�+�3�/�.�$�+�-�+�*�+�*�-��,�!�-�1�%�1�-�(�'�3�7�(�;�6�.�-�(�'�+�,�8��(�.�&�(�*�0�(�.�9�/�"��)�.�:�)�(�"�0�+�%�4�/�5�$�)�*�$�7�6�0�'�'�/�&�$�'�%�'�$�9�/� ��)�,�0�3�&�2�+�/�/�-�-�-�4�.�.�*�-�,�%�%�+�&�/�%�)�7���1�!�/�7�'�+�(�)�$�)��*�1�%�(�.�1�#� �+�'�$�&�*�7�%�/�'�+�3�$�1�'�6�$�0�#�3�0�,�:�-�4�:�9�3�"��"�2�2�1�#�9�3�)�3�1�+�*�/�!�3�/�-�8�-�!�.�(�*�!�(�'�/�,�0�(�-�#�$�%�-�2�,�.�-�'�*�6�7�8�"��6�2�-�0�5�)�*�-�"�(�%�%�&�/�-�.�(�+�"� �!�6�1�2�$��%�,�,�(�0�+�*�%�)�$�+�%�'�1�!�5��+�%�&�0�,�3�-�1�$�"�+�&�4�5�"� �$�/�*�� ��(�-�1��1�-�'�+��/�+�7�!�+�1�'�1�%�0�-�.�)�(�,�#�>�%�)�-�$�/��*�(�*�)�'�(�'�%�,�&�$�,�%�;�*�0�3�3�'�0�.�)�,�'�$�(�'�'��)�#�$�"� �/�(�'�+�/�$�/�'�)�0�-�$�&�)�'�2�6�-�6�'�/�-�2�/�(�4�#�&�2�1�0�-�-�2�(�.�'�1�)�$�/�0�3�9�0�+�7�0�.�&�4�!�+�"�-�.�,�!�*�(�!�3�+�-�2�%��/�(�-�&�3�5�3�0�%�#�4��0�ԀррـՀրՀ׀ԀɀҀـՀ؀ـӀ׀׀ր׀׀ڀրՁ'�!�@�*�6�'�+�'�-�3�.�"�/�4�'�3�-�0�;�(�(�'�4�(�5�/�+�.�-�%�+�0�0�3�-�$�*�%�2�2�,�)�1�+�)�&�-�.�$�-�1�)�2�.�1�)�4�+�'�&�.�*�2� �$�2�(�(�9�2�-�*�(�@�-�.�"�1�-�$�#�/��"�1�/�0�)�$�(�*�0�/�/�2�4�+�%�/�4�2�#�(�7�9�+��.�*�,�!�;�-�.�0�!�2�(�+�,�(�"�-�3�%�-�1�&��$�/�!�:�/��(�(�'�7�(�/�0�*�%�5�&�&�#�)�!�&�-�5�?�+�/�*�2�(�0�7�2�7�2�"�/�2��%��0�.�1�(�<�'�#�#�*�(�$�,�-�(�/�&�)��)�(�'� �'�%��"�+�4�3�+�-�*�1�7��#�'�-��)�*�-�-�*�-�4��"�#�-�*�2�)�(�&�/��+�&�-�3�%�+�5�)�4�(�)�5� �)�5�6�1��*�1�'�+�"�3�$�+�6�.�.�'�'�(�-� �*�!�*�-�+�3�0�3�0�-��.�2�.�)��)�"�#�/�� �*�,�;�0�,�%�3�1�.�5�-�.� �.�6�(��9�2�.�)�4�3�#�"�;�,�,�(�#�.�9�*�+�2�'�0�(�-�(�/�-�*�'�%�%�*��=�,�2�)�-�/�3�'�!�*� �'�.�+�.�.�#�.�5�(�'�2�)�$�-�0�7�.�'�'�'�1�,�2�)�1�*�/�'�1�*���(�/�,�%�/�)�3� �%� �)�+�'�-�+�0�!�0�*�6�(�(�/�)�'�"�.�#�!�(�0�0�4�+�'�&�3�'�/�/�"�,�,�%�1�0�*�!�-�*�'��"�2�*�%�0���2�0��/��5�1�&�*� �'�+�$�,�1�*�#�,�'�7�-�'�1�$�*�+�/�2�0��#�,�+�%�,�)��'�<�"�1�7�-��<�+�1�(�+�(�6�/�'�(�3�&�&��-�/�8�6�-�5�,�.�'�A�!�$�&�6�&�+�/�.�'�-�9�ՀـԀڀԀԀԀ׀Ӏŀ׀؀ـπր׀ـ׀ՀۀՀ؀ӀՁ�1�*�3�%�.�.�3�/��'�#�!�5�8�/�6�+� �2�4�@�,�)�+�/�$�+�8�*�+�/�+��9�)�-�'��.�%�&�5�$�:�/�/�.�.�.�2�.�)�4�-�2�%�)�:�'�&�+�"�*�%�,�/�3�$� �&�"�=��0�2�*�6�(�-�%�&�8�4�0�&�%�-� � �"�/�"�&�)�+�3��1�4�4�$�+�(�!��$�-�%�4�?�*��!�-�-�'�1��/�3�*�1�$�5�&�)�6�6�%�'�.�(��'��-�-�5�6�/�#�"�.�(�/�-�,�*�*�9�%�%�*� �/�'�+�-�8�$�+�(�)�"�#�2�&�0�/�3�0�+��2�8�.�)� �'�/�+�0�>�=�.�(�/�/�7�+� �B�2�(�3��-�2��.�,�#��(�'�%�/�$�'�'�1�/�+�7�/�)�,�'�4�$�1��.�/�-�'��A�!�%�*�,�;�9�'�,� �4�&�)�3�6�7�/�7�)�/�-�/�$��-�/�)�.��.�"�+�0�+�"�"�*�*�&�<�6�0�$��2� �+�!�0�#��+�+�'�3�*�.�/�4�1�)�0�*�2�*�'�#��%�'�$�5�%�6�1�*�(�!�=�*�:�/�*�0� �;�$�&�3�,��0�3�.�$��/�(�/�3�8�0��(�$��0�%�)�(�'�2��#�1�2��(�9�.�'�.�*�*�(�"���,�&�6�.�+��)�.�'�*�5�+�"�*�;�6�6� �7�-��-�%�'�&�+�7�1�0�(�0�+�7�$�/���+�/�0�"�'�-�%�'��&�&� �/�9�*�,�1�1�6�"�4�0�*�/��/�%�)�5��5�,�/�!�,�.��'�3�+�3�.�'�%�(�2�/�)�)�+�)�'�&�&�'�*�-�,�*�'�1�4�!�7�%�3�/�,�=�1�0�1�/�,�.��9�0�(�,�9�5�+�1�%�%�)�+�6�/�B�<�2�4�&�.�5�&�*�1�/�-�0�;�'�$�-�7�0�2�%�*�1�)�'�0�.�9�'�؀ـۀހـ؀ـ׀րʀӀՀӀ؀؀Ԁ؀Ӏ؀ЀـӀڀف/�.�$�%�-�0�)�-� �.�5�3�@�+�,�)�*�4�4�/�"�5�"�$�*�.�)�%�2�-�.�/�1�+�)�+�1�.�*�1�2�-�6�(��#�&�)�,� �*�(�'�7�2�,�.�*�(��-�&�&�,��$�.�-�4�%�+�+�)�"�*�.�"�/�'�3�*�,��%��6�%�5�*�-�2�%�)�'�3�2�;�1�1�'�2�(�$�7�&�-��7�3�+�(�$�#�'�'�1�A�+�2�-�(�*�*�,�#�*�/�/��,�!�3�6�&�$�B�3�0�/�)�4�3�-�.�#�-�0� �'�<�-�/�<�#�$�7�2�+�2��+�+�0�0�,�'�0�:�)�*�%�6�.�/�7�-�+�5�/�/�(�,�%�'�"�*�+�)�/�%�&�(�:�*�.�-�*� �-�1�(�4�(�8�%��)�+�0�*�)�*�/�,�#�.�/�2�/�,�&�/��+��,�8�/��*�&�6��5�)�+�"�)�3��%�)�3��$�+�$�-�8�,�*�#��%�'�4�-�,�!�(� �'�#�5�0�&�3�'�9�0�1�5�3�1�(�/�"�+�3�>�'�(��&�&�-�3�-�!�!�.�-�'�2�*�"�-��1�+�&�3�+�!�#�9�2�.�'�*�,��*�0�'��#�%��(�)�3�.�-�1�#�'�.�5�'�2�&�5�+�,�,�#�0�*�0�)�"�/�(�3�0�&�-�)�'�0�3�3�&�)�2�5�&�"�&�)�+�#�.�#�0�'�(�/�+�1�&�)�8�)�$�8�5�$��1�'�$�)���*�%�(�"�9�*�%�-�.�.�+�$�(�0�(�.��/�+�#�*�/�'�(�,�,�.�2�8�,�'�(�1�:�.�-�,�6� �"�.�#�%�/�&�%�0�7�+�7�(�.�0�/�#�'�8�-�3�(�5�%�.�4�,�5�-�1�*�7�+�%�)�0�=�/�)�+�8�1�)�'�!�?�,�+�4�6�%�6�)�)�8�-�3�.�+�:�.�/�4�-�!�1�,�&�/�.�4�(�!�3�*�-�)�/�!�A�%�,�)�<� �-�$�?�ڀӀԀ׀׀؀ՀԀӀˀՀՀՀ׀׀ҀрՀӀрӀ׀Ҁׁ2�.�.�0�0�0�+�0�+�3�7�3�(�,�4�*�6�1�.�5�1�4�2�6�/�.�+�3�#� �-�!�&�#�/�6�7�3�0�,�*�/�6�%�1�2�%�2�%�)�0�)�(�"�!�1�5�2� �&��)�1�+�3�0�%�%�+�2�+�/�1�$�+��(�.�!�{�*�,�+�(�,�(�&�'�(�/�"�"�/�-�&�&�)�2�+�0�1�#�"�1��0�&�*�-�,�'�+�-�/�$�,�#�6�9�!�-�&��1�4�/�3�'�/�%�+�3��%�"�!�1�,�/�7�*�$�;�&�+�(�%�2�3�&�(�/� �4�5�3�$� �+�)�(�(�6�;�,�5�/�*�4�+�4�8�/�1�+�3�)�$�.�%�#�/�/�0�5�6�*��&�)�8�)�!�0�!�$�9�'�A�,�,�,�(�-�8�+�0�(�-�1�+�*�%�&�%��+�)�3�)�#�1�/�'�#�/�%�)�&�/�&�+�1�-�&�'�'�3�/�-�!�.�#�"�:�;�%� �(�7�/�0�.�,�%�)�+��*�'�0�2�+�/�3�2�'�%�'��&�$�3��4�-�'�'�+�0�/�.��(��+� �,�.�;�.�2�$�/�5�#�&�+�.�9�-�'�<�.�5��'�6�8�0�*�5�!�!�2�2�+��+�%�(�-�,�+�/�%�.�/�+�!�%�*�-�8�'�+�/�'�&�0�&�,�;�$�*�'�/� �/�&�'��,�!��(�+�4�/�4�%�4�)�)��,�:�)�/�)�0�*�0�*�)�2�#�3�4��&�&�/�&�@�2�'�'�"�1��'�#�,�#�-�'�"�7�-�*�0�"�&�%�.�,�7�$�(�&�&�,�$�0�.�.�(�3�:�"�/�1�-�#�&�(�4�"�.�+�5�*�0�)�5�8�,�-�-�,�:�0�&�$�-�)�$�2�0�6�5�)�.�3�/�7�&�)�$�*�&�6�%�0�#�3�!�4�3�6�,� �)��.�(�"�!�2��)�2�+��)�/�,�/�1�*�2�.�.�>�'�&�-�.�5�*�%�-�+�&� �4�!�,�1�6�-�Ԁ؀ـрـՀӀրՀʀӀ׀ڀ܀ڀڀՀՀЀπــԀׁ1�3�*�&�0�+�$�,�'�:�$�(�,�+�2�!�)�+�+�/�)�.�5�$�%�?�(�'�(�%�7�*�+�!�3�0�/�-�!�1�3�+�%�,�'�'�/�-�'�0�&�!�*�0�#�(�7�*�)�0�0�*�(�0�+�'�#�*�+�+�%�&�/�+�6�"�%�:�2�O� �+�#��*�$�*�,�4�.�%�)�1�2��.� ��/�'�&�7�)�4�/�.�1�1�%�)�+�&�$�(�*��-�%�%�$�4���)�)�0�(�'�1�0�(�1�.��5�)�)�(� �(�-��/�8�*�"�-�*�$�0�'�(�%�.�'�'�(�.�+�+�-�9�+�'�/�(�,�.�-�1�-�(�)�.�1�3�(�.�0�1�(�2�*�/�/�6�)�)�(�2�5�*�%�/�0�+�3��6�4�5�5�*�+�/�"�)�"�+���*�#�,�*�#�*�'�9�'�:�,�2�2�+�6�-�"�!�&�+�"�:�'�)�-�+�5�+�+�#�$�*�)��-�-�>�4�.�-�+��#�0�3�!�$�/�(� ��$�*�+�$�3�!�+�1�3�5�%�+�6�,�1�#�+�+�3�7�1�2� �8�)��2�!�!�&�5��+�8�/�!�'�-�3�!�3�*��)�.�.�%�,�*�4�'�7�5�'�6�7�&�(�#�1�&�>�+�2�+�.�(�4�.�(�"��-�7�!�:�7�8�(�"�.�)�-��+�&�&�&��)�:�5�-�'�/�1��)�)�*�*�.�2�.�/�*�,�� �*�(�2�2�(� �.�>�+�.�$��2�&�0�(�0�,�#�"�/�-�0�/�9�/�7�?�#�*�1�+�,�+�$�+�4�%�-�5�)�5�/�&�-�+� �4�2�1�1�(� �6�*�&�+�,�+�0�?�(�)�+�/�0�'�'�6�4�-��,�(�'�*�%�,�:�"�)�%�.�3�%�4��!�-�,� �/�3�6�*�&�1�+��9�;�/�(�'�*�2�1��6�?�%�(�-�/�8�$��1�,�/�*�/�7�+�,�-�$�#�%�,�@�,�/��'�&�7�)�*� �(�ـ؀׀Ҁր׀ـҀՀǀҀӀՀрՀӀրۀ׀ӀրՀրҁ8�$�-�.�-�'�)�&�+�5�$�)�)�3�)�,�2�*�0�&�1�"�1�#�+�0�.�)�(�1�%�/�+�,�*�'�5�2�-�4�-��8�4�.�)�.�0�&�$�%�%�/�+�3�.�&�'�/�/�/�2�9�'�4�(�%�/�*�0�*� �#�$�(�*�-�%�&�*�:�,�,�&�*�0�$�1�'�-� �.�)�)�&�#�.�)�&���+�5� �3�&�&�)�-�2�'��'�+�+�9�&�$�1�)��+�(�)�6�/�4�.�(�.�6�$�4�(�'�'�(�%�4�*�0�"��)�-�0�8�;�*�"�#�.�4�'�+�%�%�!�!�%�&� �1�)�.��)�*�&�/��&�.�%�4�0�%�.�*�#�-�,�%�&�,�%�)�!�1�3�$�2�-�$�*�*�=�*�'�)�(�,�+�*�8�-�$�6�� �'�1�(�8�#�&�#�*�*�/�'�-�&�*�$�'�/�4�/�4�-��*�2�+�.�)�#�*�&�$�(�6�$�.�/�*�1�-�>�*�0�%�#�$�)�'�'�;�+�+�&�3�$�.�3�-�/� �,�1�)�,�3�(�)�+�&��*�4�7�"�+�6�,�-�5�-�2�&�(�%�:�'�/�1�,�*�*�!�3�*�,�?�)�$�9�9�7�@�-�(�&�/�'�+�(�(�-�&�.�)�.�4�7�-�%��.� �%�$�(�.�8�/�"�2�'�,�.�'��$��"�+�)��:�)�,�2�+�!�/�'�5�-��(�'�(�/�5�+�&�1�6� �)�.�/�+�/�#�,�.�-�+�(�/�1�1�0�'�/�3�&�2�/�$��'��,��+�.�%�0�(��+�$�&�2�3�2�%�)�<�'�(�)�4�+�&�2�"�+�'�*�$�.�3�&�4�>�'�*�%�&�-�2�'�%�2�+�/�;�0�0�3�"�'�#�)�3�.�/�/�(�&�.�#�,�'�*�/�)�'�1�'�%�1�-�1�9�!�<��0�$�9�-��+�%�0�,�)�"�5�-�/�)�(�3� �1�9�$�+�2�5�1�2�)�&�2�4�9�,�6�%�6�(�-�.�*�ڀӀ׀Ѐ׀ЀԀ׀Հˀр؀ۀՀՀЀՀԀـրրՀҀׁ8�$�:�/�#� �*�%�-�.�0�.�0�/�/��,�'�8�.�+�,�0�7�#�!�1� �7�*�+�-�/�)�*�,�5�5�/�+�&�$�(�*�0�0�,�'�3�!�-�$�#�%�'�(�2�+�&�,� �$�,�.�,�'�,�1�1�2�7�3�+�/�(�%�'�/�0�"��*�.�3�3�8�-�2��4�2�!�'�5��1��*�*�.�)�'��/�,�%�(�"�0�/�3�'�+�'�<�'�#�0��%���8�+��#�<�'�+�)�5�%�1�/�.�1�#��+�4�1�+�%�)�+�,�1�-�$�6�5�0�/�-�'�)�2�-�(�$�*�%�5�*�:�(�$�-�!��4�&�*�0�'�'�.�)�$�2�%�+�$�5�#� �.�7�!�-�!�/�+�-�4� �/�$�)�*�+�.�+�!�)�+�'�-�*�,�<�)�(�-�3�6�/�!�,�*�#�)�/�.�-�8�5�&�0��+�*�'�-�8�-�%�-�>�;�9�3�*�-��)�5�)�3� �9�1�)�+�(�-�.�)�1�#�2��/�,�,�*�-�+�)�"�+�4�-�5�;�7�&�%�)�(�=�&�%�:�&�1�!�-�'�/�"�)�/�0�2�/�-�'�&� �A�(�-��4�+�&�!�(�.�#�'�%�-�7�2�'�:�:�3�/�#�2�+�*�%�3�-�2�(�%�#�'�'�4�)�,�&�(�-�&�<��4�.��'�+�:�/��&�$�0�6�2�*�2�"�%�,�!�/�2�#�/�1�%�"�'�-�&�0�3��,�-�)�/��2�%�+�.�-�+�+�%�*�4�-�!�%� �(�,�%�4�+�'�)�!�,�4�;�)�%�'�&�/�9�,�'�5�,�4�6�*��,�,�)�'�-�-�(�0�!�)�4�+�(�)��,�"�2�&�0�*�!�?�.�*�@�3�/�'�(�-�!�/�9�*�'�=�2�/�3�-�+�/�&�:�/�"�'�&�'�,��0�.�1�!�/�'�!�2�2�;�6�7�*�5�(�/�*�)�=�+�:�/�,�.�%�/�$�(�7�8�9�$�3�-�)�(�6�/�=�'�#�ـրՀրـՀՀՀ؀ƀՀۀԀрـՀ׀ۀր؀Ҁ׀рՁ&�5�.�#�%�0�&�+�+�+�5�/�4�3�5�(�,�/�1�/�-�-�7�+�-�#�0�%�%�3�&�.��.�$�:�(�/�2�,�1�%�1�5�:�#�+�'�)�!�,�-�,�;�3�)� �3�1�/�3�(�6�-�-��%�#�-�6�(�0�*�1�0�-�%�1� �,�"�1�0�-�6�.�1�(�2�9�"�(�1�(�*�8�+�(�/�+�%�5�.�+�5�(�7�"�5�'�)�+�+�!�$�*�4�)�4�/�*�2�(�/�8�:�:�+�#��*�*��(�.�1�0�3�&�&�+�3�-�)�4�+�*�0� �$��6�/�)�-�.�)�+�0�5�2�8�3�+�.�-�,��8�+�#�)�'�)�4�4�4�)�'�'�>�"�>�!�&�)�/�$�:�.�8�4�5� �(�1�(�%�!�3�-�!�-�-��"�7�-�-�)�#�.�.�$�,�)�0�(�+��3�)�1�2�'�,�)�.�-�0�%�&�(�)� ��7�#�)�2�5�/�/�!�/�#�+�.�4�(�)�/�+�,�+�&�*�-�/�*�5�2�!�.�)�'�%�+�%�'�0��+� �*�7�%�0�"�(�5�-�+�1�5�-�'��0�#�,�5�7�.�/�+�+�'�'�-�6�'�'��%�-�0�;�+�%�6�/�6�<�/�.�6�)�&�&�'�-�)�"�*�*�!�-�+�,�$�1�-�*�'�)�%�=�:�)�)�1�.�/�)�'�2�3�.�(�-�0�#�3�:�!�-�'�-�=�)�=�(�,�-�!��(�#�2�:�/�-�*�9�0�4�"�%�$�*�5�*�'�/�(�6�(�*�#�!�"�*�.�1�(�1�3�,�+�3�$�*�7�(�!��2�7�7�%�;�3� �6��'�8�<�2�+�/�1�-�3�3�$�#�5�'�7�.�%�)�*�)�/�0�3�$�8�0�.�/�-�-�*�$��$�+�-�'�(� �0�'�1��1�3�'�2�)�$�/�*�1�"�0�*�/�6�1�/�,�*��(�*�,�3�)�1�'�+�0�0�%�4�!�4�6�7�1�%�-�&�5�1�$��$�>�,�3�%�4�+�*�3�)�׀ր׀Հ݀Ԁـ׀ڀ€׀ԀрҀۀրրӀ׀؀ՀԀՀց(�3�&��4�-�+�2�+�1�'�.�4�!�8�-�*�/�/�-�'�%�4�!�+�.�-�-�$�+�$�)�.�9�2�*�,�*�,�3� �)�"�&�7��.�2�0�-�,�)�/�*�2�9�(�5�%��5�-�8�)�:�,�(��-��+�3�'�0�(�-�*�5�-�6�7�&��6�,�/�/�+�0�-�$�(�5�0�#�3�#�"�!�!�*�+�1�7�&�.�#�(�'�#�,�+�$�0�%�(�*�,�*�4�-�/�.�.�3�6�'�8�-�*�)�/�/�#�&�*�&�&�.�#�,�%�-�2�-�1�)�/�"�.�/�)�+�7�)�0�.�&��.�'��"�0�&��&�.�1�/�/�8�'�-�$��1�$�;�&�.�:�2��-��2�,�6�%�%�2�.�-��(�/�1�/�2�&�*�,�-�,�,�(�,�1�(�0�0�/�)�'�*�"�,�.�6�.�-��(�)�)�*�-�6�(�(�$�)�&�+�'�.��%�'�&�+�'�3�+�(�,�*�*�!�'�7�&�&�+�$�&�"�+��-�1�)�/�-�6�2�7�4�<��,�#�9�*�3�/�-�(�2�%�*�#�'�1� �"�%�.�'�8�6�,�/�%�-�0�)�'�0�"�6�!�-�&�/�(�)�'�#�$�(�(�+�)�%�+�&�/�*� �(�0��2�.�+�+�0�(�*�!�%�3�2��7�2�(�)�6�)�*� � �7�0�#�$��0�/�,�,�#�)�%�#�"�%�3�8�+�(��!�$��+�#�<�.�'�3�+� �2�*�-�'�<�'�*�2��#�'�&�'�/�4�4�0�*�%�2�/�-�$�#�*�7�-�'�-�7�/�-�-��3�)�4�%�.�-�#�(�0�&�/�,�%�*�6�(�'�,�@�&��4�.�1�/�&�0�0�0�0�.�+�&�"�-�8�4�/�"�*�-�)�%�+�+�0�(�)�0�$�)�%��0�#�0�$�%�+�7� �6�(�$�5�<�4�4�&�4�!�"�*�#�'�,�*�5�,�4�7�;�5�A�+��)�+�2�)�6�&�+�/�/�.�,�,�0�1�/�0�׀ـ׀Ӏ؀ր׀ӀԀ€؀ــӀՀրڀӀ׀ӀҀ؀Ӏہ>�;�"��4�'��-�/�0�/�7�,�7�5�3�%�=�&�)�&�'�/�)�0�#�5�#�;��2�/�'�1�0�0�)�+��#�/��1�&�2�7�(�,�8�"�.�2�:�*�.�+�/�(�*�*�-�/�+��'�4�"�!�2�/�$�/�3�3�&�'�)�,�$�%�)�7�$��*�%�%�-�0�0�(�)�+�/�&�1�+��3�+�#�%� �4�/�0�2�.�*�2�!�8�,�)�.�%�'�/�3�)�.�;�%�$�.�-�6�.�%�,�#�1�,�.�-�!�)�&��9�)�.�)�%�/�#�3�%� �1��2�%�/� �3�#�%�)�.�0�-�/�(�)�,�&�#�%�"�)�.�+�/�*�%�+�3�4�*�%�,�$�!�$�.�+�/�!�*�,�8�4�7�"�+��%�,�*�,�0��4�,�'�4�.�.�%�.�*�!�.�?�-�&��.�3��-�*�'�+�/�.�1�#��+�(�*�7�&�'�"�+�#�9��'�#�:��+�*�1���+�$�7�1�/��.�-�*��)�"�0�)�-�,�#�%�$�%�:�$�4�,�,�>�3�/�0�)�%�,�'�,�'�,�.�(�3�.�/��(�7�)�(�&�*�'�&�4� �#�+�-�*�4�)�"�*��-�-�(�*�7�2�$�>�6�<�)�3�,�!�2�-�*�+�,�-�*�-�2�/�*�.�,�9�(�.�2�.�,�3�6�-�)�-�(�"�#�1�0�.�-�'�1�2�-�&�*�6�1�)�-�*��(�"�&�/�-�6�.�*�!�8�-�5�&�.�2�5�-�,�/�%�8�+�-�,�*�$�2�3� �)�#�(�*��/�)�)�0�&�2�-�'�0�)�7�%�#�(�,�2��*�0�2�%�3�&�1�)�)�&�-�.�%�*�(�)�,�/�1�.�5�%�+��.�3�(�'�8�)�1�.�5�'�.�*�9�7�8�-�,�.�6�-�0�1�*�$�'��5�-�.�*�*�*�>�8�*� �$�.�)�-��/�/�/�1�)�8�)�+�(�)�0��3�"�,�-�1�/�6��&�6�1�3�*�6�-�/�׀ӀۀԀրҀՀԀՀƀ؀׀ڀՀڀԀЀԀ׀׀Ԁ؀܀Ձ8�1�*�!�2�*�3�#�/�7�3�/�4�5�/�-�/�*�5�-�3�'�.���$�-�7� �6�:�'�+�7�6�4�3�+�1��(�6�*�+�0�8�(�)�+�(�/�.�7�,�*�1�7�*�.�*��-�8�9�-�&�"�)�-�&�*�-�%�.�1�"�%�1�-�#�*�2�/�0�%�%�:�-�*� �'�.�*�2�-�/�5� �"�#�$�;�(�4�(�&�.�0� �+�'�7�.�(�=�/�5�+�#�'�,�3���:�,�/�)�-�/�.�1�+�(�$�4�)��/�2�.��(�,�,�,�,�/�9�'�*�)�*�+�.�&� �/�%�-�.�+�*�,�/��'�2�1�*�'�-�0�:�.�-�/�$�2�8�'�,�3�%�6�,�)�/�'�'�#� �'�'�4�-�3�+�*�*�*�8�#�)�5�'�3�,��(�!�'�1�:�)�"�)� �6�/�$� �"�)�2��5�/�-�&�0�*��.��2�$�(�&�+�,�/�)�1�&�'�>�(�0�,�2�$�+�&�3�4�)�0�)�4�+���)�9� �#�3�(�;�)���9�(�.�#�/��'�2��*��+�)�-�.�*�2�.�/�/�#�(�$�*�'�-�&�%��0�)�.�$�0�-�6�*�%�&�-�1�3�.�0�2�*�0�'�0�'�%�*�0�*�0�)�*�*�%�/�:�,�1�6�0�,�'�/�3�.�.�1�.�)�6�/�/�&�0�<�+�7�(�1�2�'�'�/� �5�'�+�#�-�%�-�,�+�2�#�*�7�.�0�%�+�.�3�(�/�0�7�,�#�&�!�.�%�'�#�-��(�.�6�!�&�)�,��)�"�9�'�1�'�0�(�,�$�.�)�)�)�3� �2�"�"�"�/�'�)�)�(�(�,�)�"�0��,�4�-�*�(�%�'�-�'�*�3�/�!�;�.�� �'�1�*�)�+�.�,�/�-�,�9�.�1�7�.�+�(�*�4�'�2�/�,�'�$�.�5�%�7�#�%�3��4�6�-�4�1�-�'�3�%�1�.�)�-�&�(�'�3�*�7�1�#�(�4�+�$�,�.�+�܀؀Ҁ׀Հ׀ր׀Հ��׀׀ҀـрӀЀр׀Ѐۀـ؀ҁ5�)�/�E�/���0�,�1�!�+�;�"�#�4�#�2�&�)�(�2�0�2�/�6�#�"�1�+�%�!�+�/�,�)�.�2�5�%�0�.��-�*�%�4�1�)�"�,�"�!�)��*�-�(�'�;�0�'�.�&�'�*�7�)�5�+�#�:�$�-�!�2�1�+�9�-�*�9�%�&�3�(�$�/�6�)�2�5�)�"�4�+�3�)�/�1�!�"� ��0�+�8�.�"�'�"�0�*��+�/�,�*� �3�/�2�0�1�$�/�.�0�&�@�#�-�%�2�&�%�1�1�2�1�(�0�9�7�.�8�*�8�$�-�4�0�2�/�+�.�+�6�5�-�'�-�.�$�3�.�/�5�)�)�>�.�'�2�#�4� �1�/��+�'� �'�"�'�5�/�'�1�%�/�,�'�%�0�'�,�/�5�$�3�+�+�/�+�.�$��!�&�.�)�#�8�#� �4�"�+�)�.�0�$�-�5�&�"�(�,�+�6�!�!�+�*�#�0�-��?��+�&�.�8�3�)�'�&��'�+�)�.�,�(� �3�,�"�5��4�(�,�/�*��,�+�/�4�1�%�5�'�)�'�&��+�!�&�,�-�/�1�(�/�3�/�!�'�,�/�-��(�!�$�/�!�)�3�"�&�/�'�(�#�)�+�*�&��5�&�*�3�-�%�)�,��6��/�+�)��*�)�'�%�/�7�5�+�+�'� �/�2�)�'�2�(�3�#�(�"�/�,�%�,�5�.�)�2�.�-�2�"�(�4�&�1�*�/�/�.�,�3�$��5�1�,�)�/�!��"�/�.�+�!�+�&�5�*�)�#�/�%�4�&�'�2�"�)� �&�.�'�!�+��'�&�7��,�&�.�"�$�.�&�&�'�7�7�6�&�6�/�$�&�(�$�0�3�1�-�,�'�,�*�-�=�-�7�?�1� �7�5�)�+�-�4�3�/�1�(��1�1�*�'�$�-�#�#�(�*�)�.�'��/�*�(�9�,�"�&��/�2��0�5�>�/�(�%�6�1�$�5�&�-�,�!�,�-�1�+�%�(�'�/��0�,�+�3�4�'�׀׀ҀӀҀҀڀـ׀ǀـ܀ր؀׀ԀՀԀ׀ՀՀڀۀց7�&�6�$�2�.�(�4�/�5�+�)�9�,�'�?�3�9�3�+�9�9�*�/�*� �0�7�7�&�4�.�(�:�'�5�*�3�)�+�4�.�!�4�.� �-�(�*�0�2�0�#�'�1�*�!�6��$�+�+�#�'�!�>�1�3�6�<�(�*�-�#� �/�4�*�+�/�6��/�� �'�4�1��.�$�%�1�2�%�*�&�)�(�(�8��/�*�-��"�1�+�-�'�3�,�/�#�&�0�)�$�2�%�'�(�2�%�#�1�-�!�%�+�&�.�,�.�%�9�-�+�6�3�'�5�'�"�-�)�.�'�%�<�6�0�+�*�'�*�7�2�0�)�'�2�+�3��1��7�1�+�-�.�$�/�(�$�)�)�#�*�8�3�#�)�1�-�3�1�(�(�.�&�-�&�-�'�&�0�+��+�-�&�)�+�-�0�+�$�!�*�*�+�)�5�2� �/�+�1�;�$�-�0�0�,�0�*�(�/�-�-�'�/�/�$�#�0�(�-�"�)�%�1�+�0�$�:�7� �,�'�8�(�1�(�%�6�!�*�5�*�"� �&�,�+�7�$�(�5���1�3��*��-�,�*�-�%�%� �'�0�2�#�+�)�1�&�%�2�2�*�#�1�$�0�,�*�3�'�%�%�.�%�2�#�&�!�3�#�'�-�"�$�.�)�#�3�<�5�)�/�1�%��1�*�.�+�6�'��+�"�(�%�*�4�4�+�-�3�6�8�"��"��'�$�(�0�6�1� �2�$�'�,�'�"�0�.�%�*�4�/�3�!�#�+�)�,�4�#�8�.�3�2��+�$�6�$�1�&�#�*�$�%�4�%�2�/�-�/�#�1�!�0�8�'�/�5�1�2�4�&�2�)�,�)�5�,�$�,�)�#�$�5��6�*�)�,�0�&�,�"�+�*�.�"�,�5�-�-�/�(�,�5�-�'�'�/�2�.�%�.�,�+�*� �/�/�,�D��&�-�/�/�/�/�)�0�8�(�-��"�,�'�/�)��4�3�.�.�+�3�0�*�1�4�3�%�/�.�!�3�$�)�(��&�+�,�C�6�!�%�"�4�-�ۀՀ׀ҀՀڀӀԀ؀ȀрրЀـ׀׀рրԀՀــրҁ(�'�-�/�6�1�(�,�7�4��*�1��"�0�2�3�,�2�/�(�)�0�'�,�%�(�1�7�+�#�4�0�3�7�+�3�1��,�;�:�'�%�&�-�7�/�3�8�0�,�'�"�+�&�-�&� ��#�;�'�1�-�#�#�0�+�-�-�*�;�-�)�%�1�/�.�%�)�*�5�(�'�)�3�2�1�.�4�*�"�)��(�&�8�$�7�*�)��*�$�%�0�,��-�'�#��%�3�0�/�"�*��6�&�-��'�0�3���&�+�$�!�(�9�0�.�/�,��.�/�$�,�#�'�0�*�(�#�!�/�"�2�'��/�,�1�6�"�)�&�'�2�0�7� �5�)�(�*�0�(�-�$�'��.�%�%�1�,�,�)�2�<�*�9�)�+�#��6�,�,�,�8�%�4�0�#�2�$� �(�3�)�)�-�4�*�'�2�"�)�(�.�1�5�+�(�+�%�+�,�=�'�+�'�.�+�"�,�(�7�9�4�+�-�3�'�$�&�9�0�-�)�-�/�4�*�*�+�*�-�'�,�'�.�'�2�'�%�4�8�!�2�4�'�,�1�!�1�1�)�(�.�#��/�4��/�-�/�3�)�*�3�'�.�,�&�-�6�;�5�%�.�-�#�3��$�0�%�5�5�/�,�'�1�,�9��#�*�$�"�+�!�+�+��.�#�(�)�,�3�"��1�,�&�'�*�5�-�/�"�&�'�/�-�+�4� �)�(�$�!�#�(�,�1�/�(�!�,�5�&�0�!�(���,�1�/�2�0�"�/�*�/�&�.�-�%�;�,�3�8�*�7�+�0�3�5�&�+�&�-�0�1�/�$�.�'�)�1�0�3�+�+�.�;�3�'�!�.�,�&�,�3�/�*��'�!��1�0�4�$�+�2�"�/�.�-�!�6�-�'�'�4�,�.�0�3�$�'�*�7�%�-� �2�/�+�%�'�'�$�*�%�'�-�8�&�"�0�(�*�)�)�2�&�6�&�#�'�A�.�-�"�'�.�/�/�6�:�+�)�4�3�0�0�&�$�3�-�-�0�4�:�+��#�2�2�"�)�/�?�3�,�;�ԀрՀՀ׀Ԁ׀׀ՀƀՀՀ׀ӀՀڀՀՀ؀ԀҀـՀԁ#�3�'�@�1�?�:�.�-�+�3�/�1�:���'�!�#�/�2�'�,�!�,�#�(�,�#�0�.�+�7�(�.�4�)�/�,�,�0�/�"�(�.�)�+�%�'��(�*��1�2�/�$� ��(�#�0�/�%�(�/�%���!�*�7�,�6�$�7�.�"�6�8�'�,�*�.��'��&�&�.��0�0�'�'��2��!�&�D�6�7�2�,�(�6� �0�/�2�+�!�2�#��*�+�/�#�!�)�0�7�%�6�/�&�%��1�6��)�.�(�$�+�6�3�/�.�$�"�#�(�5�3�4�*�/�)�1�,�'�-�.�)�/�2��"�*�"�'�/�.�!�2�.�2�2�*�3�%�.�'�(�1�'�(�(�(�#�*��2�,�-�0�#�+�&�/�!�#�6��&�*��'�/�)�/�$�2� �-�� �!�"�5�-�*�1��(�%�)�+��,� �+�!�+�(�3�1�0�,�/�*�3�/�6�#�3�'�2�/�-�,�*�5�7�-�(�!�>�,�3�8�.��+�9�3�:�,�,�+�#�6�4�)�*�!�(�2�1�$�;�/�+�3�-��'�,�$�3�!�.�)�.�/�#�#�#�1�.�0�&�/�'�$�%�*�0�-�#�7�'�1�*�+�,�%�)�'�9�2�,�2�'��%�'�2�.�-�)�-�-�!�-�*�0��1�"�+�,�/�#��1�$�0�-�-�-�.�+�1�.�-�3�$�+�0�1� �*�'�7�&�*�'�-�7�'�%�(�3�-�%�6�(�/�0�)�5�4��7�(�*�,�,�/�G�%�/�/�'�-��$�$�*� �(�4�"�:��&�1�)� �"�&�&�0�0�*�/�%�*�-�&� �/�(�"�,�.�$�/�/�0�+�.�%�%�'�5�,�)�-�%�.�+�,�.�,�#�5�-�!�#�/�$�$�!�-�1�.� �7�)�6�"�%��3�/�/�+�#�(�*�-�3�&�#�3�,�#�)��/�9�1�,�1�+�&�$�/�-�:�.�4�*�%�+�/�+�/�5�:�-�+�(�0�(�6�/�3�*�&�1�'�3�3�4�(�؀Ӏڀڀ؀؀ۀՀҀȀ׀ԀԀҀ׀ڀӀӀՀՀՀ؀܀ׁ&�%�3�(�2�.�-�-�7�5�&�5�.�+�7�$�)�*�(� �*�%�)�4�)�#�1��4�(�4�0�1�,�3�-�>�#�*�5�+�/�"�,�4�,�(��'�0�#�6�(�:�5�-�0�(�'�*�,�$�*�#�!�2�+�5��*�%�7�#�'�3�/�+�-�1��*�*��,�(�$�!�1�-�(�-�$�4�*��'�6�*��2�/�$�4�2�/�)�3�*�5�)�&�1�+�*�$�1�'�(�,�'�,�2�$�"�+�/�$�2�,�)�+�%�(�1�%�5�"�&�-��0�/�,�+�5�(�+�%�-�"�(�&�5�*��/�&��1�1�/�/�!�(�6�'�*�8�1�-�/��&�&�&�'�/�$�)�;�,�3� �8�6�3�+�6�+�4�3�4�7��/�-�*�3�8�-�3�=�8�"�5�,�$�3�(�-�5�*�'�'�%�%�$�(�,�2�+�0�-�;�1�+�9�*�+�+�(�&�+�!�(�(�1�%�!�"�#�)�6�/�)�7�6�4�(�+�.�*�"�'�+�4�3�7��*�,�%�B��*�/�<����2�;�'�'�(�+�(�+�.�2�*�2��3�'�)�5�*�*� �#�!�'�/�&�*��/�,�2�-�;�&�"�1�/�'�+�+�-�)�2�*�'�)�#�"�7�6�6�#�'�3�#�'�+�+�3��-�'�1�+�:�3�6�1�4�>�+�,�1�-�0�!�&�,�/�,��)�;�#�2�9�2�5�0�-�-�/�7�%�;�(�+�.�'�,�&��*�*�,�(�*�2�'��'�'�+�%�-�*�'�+��&�0�'�/�%�'�3�.�2�(�&�$�"��0�"�-�3�.�3�6�6�5�*�!�-�(�4�+�/�(�8�(�'�5�'�8�,�.�4�2�)�(�+�)�(�,�7�)�*��*�/�-�*�)�2�*�+�3�'�/�5�(�#�2�,�*�'�0�5�.�!�-�!�)�9�'� �*�-�1�7�3�5�5�.�+�7�*�0�7�3�,�*�)�+�0�1��5�!�/�'�7�6�'�'�)�'�+�6�2�1�'�(�!�2�$�+�2�+�*�8�Ԁրր݀ӀӀۀـڀɀՀԀрՀـ؀׀ӀՀԀ׀ӀՀԁ)�<�'�)�/�0�.�.�(�-�2�5�-�,�*�%�+�(�&��(�'�.�4�.�,�$�*��1� �<�.�6�,�!�&�4�%�%�(�1�(�/�4�*�&�+�+�3�%�"�#� �,�%�8�3�#�:�2�)�$�*�3�!�1�-�2�1�,�/�,�'�-�/�(�>�!�0�0�3�'�5�/�-�1�(�,�'�%�,�6��-�-�#�(��)�'�$�/�&�,�/�*�'�*�&�/�5�+� �*�0�4�.�&�#�:�!�"�-�%��0�/�1��*�"�%�2�(�,�'�.�<�*�(�4�&�/��&�2�.�(�*�*�3�'�$�1�-�-�2�%�'�&�%�+�<�5�-�&�'�/�/��(�/�-�2�-�3�6�%�$�+�(�4�-�,�)��-�0�'�%�#�2�.�%��2�2�2�/�0�3�(�*�+�-�/�&�%�.�(�5�+�,�'�/�'�%�-�"�1�!�/�.��*�3�%�6�/�+�*�3�+�5�.�)�,�$�,�%�&�'�5�(�(�/�!�+�+��$�2�2�&�%�)�7�/�)�'� �/�+�0�%�'�&�"�(�/�!�-�'�(�1�1�)�,�)�.�8�'�.�/�(�-�%�/�#�,�&�6�'�/�+�$�5�1�(�-�,�)�(�5�,�1�/�,�(�*�%�.�8�$�1�%��/�*�.�4�$�$�+�*�!��*�*�)�/��.�9�7� �(�.�(��!��$�%�2� �'�/�;�8�#�+�*�!�#�/�!�/�,�'�!�8�1�(�)�%�/�/�&�0�7�+�*�/�"�4�*�)�0�+�2�$�%�3�7�(�-�&�0�&�'�5�!�'�+�/�9�)�3�/��#�#�5�/�)�1�5� �.�:� �,�&�"��%�&�&�2�6�*�)�.�%��/�!�'�(�%��)�+�,�.�+�*�!�8� �2��/�+�-�$�/�)�+�-�/�3�,�-�'��.�%��'�(�/�3�4�/�&� �5�%�$�-�5�)�+�1�:�%�<�-�"�*�+�6�&�/�6�-�.�,�%�1�%�0�5�1�/��(�1�-�*�&�/�+�9�%�(�'�4�/�׀׀ԀՀـ׀ՀӀԀƀր׀ۀӀـԀ؀ҀҀڀހրـׁ:�*�.�0�'�$�6�'�0�6� �*�5�)�.�.�4� �1�5�'��'�0�'�)�0�-�-�1�)�"�'�'� �%�1�/�1�*�1�-�)�.�0�-�,�"� �1�)�2�/�+�$�/�,�1�!�&�(��6�)�(�%�+��.�+��-�(�-�8�0�7�,�3�7��!�5�+�2�#�0�'�*�2�4�+� �2�#�+�.�-�0�&�&�+�2�*�,�&�,�-�)�0�!�%�%�(�3�*��+�)�)�3�,�&�-�-�)�0�+�+�*�6�*�/�;�9�&�*�/�*� �(�1�5�2�(�,�+�0�)�&�-�*�4�;�/�9�.�(�0�,�=�.�0�)�6�*�(�$�+�6�5�2��,�2�-�(�0�'�*�,�'�1� �)�!�6�.�'�=� �+�4�#�1�&�#�(�'�$�+�2�*�-�/�%�-�6�!�/�6�:�2�(�3�@�'�>�,�*�&�,�0�3�3�!�5�/�8�0�'�'�&�+�,��0�'�*�1�)�4�)�&�-�4�*�6�4�$�.�.�+�0��+�$�.�)�1�/�1�!�#��%�+�5�'�*�0� �0�1�'�/�.�/�+�*�)�&�7�(�2�'�)�.�(�4�)�0�.�2�.�;��#�+�5�%�A�<�<�'�.�.�1�/�'�)�)�*�1�"�#�*�F��3�(�/�0�,�6�)�4�,�%�-�2�.�%�(�*�%�6��/�'�#�+�(�(��$�&��0�-�%�+�8�1�,�(�$�*�$�)�*�/�'�"�#�1�&�-�'�&�)�"�*�/�-�7�)�2�5�$�*��(�'�*�.�/�%�$�(�/��8�/�(�2�.�+�)�!�2�2�0�.�1�2�#�'�0�3�"�)�/�+�%�(�*�(�0�-�"�%�"�:�"�+�-�1�#�3�)�.�1�/�*�"�+��(�(�.�/�/� �*�(� �)�1�/�/�;�3�3�'�1�3�0�6�.�+�.�9�.�.�2�$�1�'�*�+�.�*�(�5��-��1�'�:�-�*�,�&�8�>�7�.�7�.�2�$�2�(�(�(�1�)�.�-�2�(�/�1�)��'�0�-�*�(�ڀۀ׀ӀՀՀՀր׀ǀրπ؀Ԁ׀ՀӀӀ؀Ѐ׀Ҁـҁ"�,�4�.�*�#�8�-�#�$�1�3�,�'�9�1�&�1�/�1�*��(�.�%�)�/�-�'�(�(�2�(�2�4�*�.�#�,�0�9�8�/�+�*�4�&� ��(�+��5�(�'��)�$�-�5�/�(�7�1�/�)�+�/�%�(�(�#�2�)�*�3�2�1�2��/�2�+��0�+�'�-�$�.�.�*�&�&�#�/�#�(�/�,�2�!�+��<�$�+�2�(�)�0�+�(�%�/�2�.�'�0�%�4�,�3�2�0�,�(� �3�+�!�0�3�.�*�2�<�'�0�*��-�4�2�/�'�$�/�(�4�/�'�5�%��$��(�.�&�)�1�1�2�-�3�5� �2�+�4�*�:�3�=�4��>�#�$�'�)�-�+�(��(�+�%�)�,�/�#�$�/�$��#�.�2�5��:�0�5�.�0�#�-�9�)�1�2�6�$��/�(�6�*�(�*�-�#�(�1�.�,�7�3�)�#�6��1�+�4�%��3�+�1�<�9�"�7�(�#�%�-�&�&�1�%�&�&�3�.�%�0�4�2�;�)�2�'�(�/�)�*�4�9�!�#�(��2�*�3�/�1�.�(�.�"�*�(�,�1�+��"�9�,�+��+�*�/�'�,�4�!�3�0�2�-�/�)�1�-�.�(�+�1�1�.�*�+�#�9�)�*� �)�/�*�3�%� �.�+�4�/�+�,�-�"�:�)�4�.�*�8�0�(�(�3�+�+�/� �,�5�)�!�%�*�.�!��(�-�)�4�'�*�.�'�/�+�,�$�,�)�3�1�)�)�1�� �+�3�+�+�1�*�*���(�0�!�&�&�(�*� �&�5�-�1�&�*�'�1�+��$�,�&�$�3�,�$�)�1�+�&�#�(�#�&�0�3�/�/�)�0�1�:�(�1�8�-�)�9�+�/�(��)�)�+�+�%�(�%�&�*�+�)�.��4�)�-�"�,�3�/�'�6�#�1�4�<�<�6�$�&�7�+�/�*�+�#�4�A�9�+�-�"�1�-���3�'�&�/�,�-�*�(�/�%�/�?�2�-�0�E�%�0�6�+�+�0�'�&�ۀـԀۀӀӀ؀րԀŀՀԀـԀӀ׀Ӏ؀ـހրՀр؁.�)�6�8�'�,�,�7�3�(�6�-��,�(�9�)�4�0�2�+�1�&�+�-�)�/�(�#�-�+�)�'�*�-�*�"��,�,�0�1�3�(�8�&�5�,�)�9�)�8�(�$��'�2�!�3�.�'�/�&�*�-�'�%�#�3�,�*�3�'�#�5�*�,��$�/�+�+�-�(�4�-�3�-�%�$�)�6�2�)�+�0�+�.�0�"�6�+�=�,�*�0�/�%��%�*��'�3�2�.�/�0�,�)�!�7�-�(�6�"�!�,�(�0�1�$�.�#�+�/�(�$�'�,�,�0�-�-�7��6�"�0��.�3�/�)�-�6�/�.�.�%�,�5�%�2�'�&�.�'�-�&�,�$�'�!�0�2� �� �*�/�)��)�<��,�$�)�#��*�'�,�/�%�+�/�0�'�-�/�0�,�%�7�'�,�3�-�3� �'�,� �)�*�2�$�%�/�'�'�-�)�/�)�,�)�1�%�8��)�)�)�(�2�/�#�!�'�*�)�� ��#�)�5�*�.�)�'�3�2�1�-�1�$�+�5� �-�-��(�2�)� �8�+�&� �'� �%�2�.�+�"�$� �6� �%�+�%�9�0�+�#�-�&�*�$�-�0�%�-�+�*�)�@�/�.�9�'�-�*�-�(�'�-��/�9�%�'��5�-�*�*�%�(�4�+�-�*�.�/�@�/�,�(�+�4�0�/�/��(�3� �7�.�)�2�+�-�.�0�(�9�:�2�/�B�0�+�*��0�$�6�/�7�/�*�5�+�#�%�0�3��1��!�,�8�2�-�(�4�-��6�1�-�/�%�,�*�&�6�2�)�:�-�!�7�2�9�(�;�0�8��+�1�#�%�)�(�*�2�(�/�'�2�6�2�7�&�!�&�;�,��(�4�<�#�"�2�%�-�+�1�,�/�1�1�'��!�3�)�7� �4�'�3�,�)�/�(�)�0�'�'�(�!�'�;�)�1�9�'�'�'�%�-� �,�$�3�%�&�&�1�.�5�'�1�4�<�*�'�.�3�+�7�;�+�,�,�'�9�5�-�0�/�)�'�7�,�%�C�/�ۀـԀ׀ՀԀ׀րՀǀڀҀҀԀ؀րۀ׀Ӏ؀ԀـՀہ"�"�(�,�-�)�/�$�'�3�)�/�-�#�.�-�%�-�1�3�$�5�$�2�7�5�(�0�'�-�/�*�)�<�/�=�-�'�3�&�/�.�5� �5�'�0� �.�/�!�1�4�+�/�+�"�(�4�4�(�'�.�3�0�(�)�-�/�/�#��-�+�,�$�*�*�3�.�.�%�/�%�)�.��9�'��#�-�"�)��!�5�-�5�,�#�&�&�*�-�2�,�(�-�/�#�9�5�)�*�.�-�*�+�0�,�-�2�/�4�1� �'�.�'� �/�/�9�0�#�*�!�2�"�-�&�/�)�)�,�,�.�+�0�/�5�/�7�(�.�,�<�!�'�0�3�5�:��'�'�'�*�)�4�1�.�-�.�4�5�,�3�.�8�1�4�+�5�3�%�*�)�,�,�3�=�*�+�0�(�4�4�"�-�)�4�0�3�$�/�'�"�$�6��+�5�(�1�3�&��/�+�&�3�-��#�1��+�6�3� �&�+�3�%�)�*�!�%�2�-�,��)�,�)�/�4�%�9�)�1�&�$�1�4�)�*�'�5�+�.�1�&�/�*�5�/�+�1�1�$�/�!�$�-�/�1�-�&�.�)�0�)�#�!�/�5�3�3�3�-�-�"�%�0�.�<�.�-�!�*��&�5�'�7�'��%�0�3�+�.�7�,�*�1�)�/��&�7�/�.�,�2�$�'�7�*� �.�0�0�-�+�+�6��!�1�+�$�#� �4�,�#�/�+�7�-�3�'�$�0�*�<�%��1�)�0��+�*�0�'�$�7�8� ��6�4�:�'�,�4�+�6�)�$�8�)�$�/�(�2�/�-�&�-�&�,�-�4�,�'�3�%�.�#�+�(�-�*�(�+�)�%�/�-�/�+�1�6�)�&�(�*��(�.�$�)�'�*�#��-�7�)�.�0��<�$�,� �5�0��*�0�3���3�5�#�/�3�,�,�*�2�&�$��#�+� �3�)�-�#�)��2�3�3�2�1�,�-��(�3�/�7��$��5�.�/�.�#�4�"�/�/�-�#�1�7�1�-�.�5�"�(�+�'�1�'��6�7�׀؀րԀ׀؀ۀրӀ��րԀӀՀԀ׀Ҁ׀ԀԀ׀׀ڀׁ7�1�-�>�2�3�,�,�7�2�1�5�'�'�@�&�/�3�,�-�5�-�:�)�-�(�(�/�"�3�3�(�%�8�2�6�*�/�!�.�1�*� �1�1�!� ��7�0�0�'�)�-�-�>�2�$��!�'� �0�%�#�(�&�-�'�,��.�2�.�$�&�/� �-�(�&�%�5�%�"�)�.�5�)�4�#�)�-�,�%�/�%�$�(�0�+�9�5�/�$�-�!�-�2�-�+�-�)�%�6� �.�*�*�3�'�,�3�;�,�9�9�*�&�%��)�0�(�+�%�!��4��+�%� �,�.�0�'�&�!�.�$�-�'�'�)�+�-� �.�+�!�6�0�3�(�0�3�*�4�$�0�,�&�)� �,�-�,�-�$�<�(�<�/�)�9�;�)�%�<�3�.�!�$�'�/�-�4�*�"�+�'�;�$�2� �+��-�,�-�+�-�1�.�&�(��+�-�*�)�/��-�.�.�/�"�5�&�/�6�'�&�1�,�#�1�/�)�%��'� �&�/�/��%�.�$�/�0�#�*�4��-�/�7�%�&�-�0�&�!�%�8�6�,�8�.��.�0�5�*�.�9�%�'�*�.�7�;�/�#�-�'�+�#�/�"�+�5��$�/�%�8�'�2�'�/� �*�.�1�,�-�*�,�1�)�,�'�8�*� �,�+�,�3�+�/�*�)�)�8�-�-�6�9�6�#�*�+�#�&�$��8�.��+�7�&�,�3�#�4�5�6�)�:�&�1�'�5�0�)�*�)�(��#�*�$�$� �!�"�1�/�*�4�0�*�1�$�%�1�!�/�#�$�$�5�$��%�$�&�*���"�5� �1�7�2�&�)�+�/��,�/�7�#�.�4�1�/�3�=�+�+�'�,�)�&�'�)�.�(�#�,�.�0�(�&�-�&�,�2�5�2�3�,�&�/�2�*�'�%�,�,�0�(� �0�)�;�+�3�*�6�2�:�$�.�.�-�'�,�$�!�'�-�4�/�2�4�&�,�$�$�A�/�-�'�'�4�)�-�.�+�(�(� �4�2�/�.�*�-�7�.�-�$�.�$�2�,�"��2�3�:�ڀҀԀӀр؀׀ڀՀĀҀր؀Ӏ݀ՀԀրՀ؀ڀ׀Ҁׁ%�'�3� � �(�4�*�0�1�7�%�7�)�4�*��4��'�2�'�"�/�1�-�F�/�.�.�1�)�%�)�(�+�/�5�1�1�)�$�&�.�*�(�'�)�+�5�A�$�0�+�(�$�/�-�#�#�"�"�-�"�!�4�-�4�)���-�%�)�.�&� �&�)�)�-�#� �+�8�-�/�+�#�.�)�(�.�;�,�&�&�+�.�&�2�#�>�3�/�)�)�-�%�(�3�&��(�'� �0�,�2�$�(�%�8�*��+�%�#�(�:�)�/��,�?�&�*��"�%�%�*�-�1�1�$� �%�5��%�"�'�6�&�$�?�,��$�#�,�5�5�)�+�8�0�!�7�,�1�"�0�4�,�0��+�6�+�'�*�/�%�-�)�!�!�0�'�7�,�3�*�&�/�!�4�(�*�!�0�5�0�$�8�7�$�(�,�$�*�1�%�%�+�'�/�/�)�-�*�$�>�)�,��)�5�/�-�1�/�-�'�+�5�%� �-�!�-��/�/�1� �(�-�+�;�(��2�/�(�1�*�3�/�'�(�0�:�*�-�(�-�0�+�0�)�.�"�2�1�/�<���-�(�0��&�)�)�'�+�/�+�%�!�*�.�2�%�&�"�)�)� �2�1�)�&�1� ��-�$��7�-�(�1�0�)�$�-�&�,�#�)� �(�+�3�&�2�*�&�*�*��.�8�9�*�<�1�*�%�,�1�.�'�-�-�/�/�*�-�'�0�'�)�0�/�)�;�/��*�7�)�1�+�'�$�/�&�;�'�7��3�#�/�*�%�-���+�"�$�*�&�-�%�(�)�+�9�.�'�0�=�+��6�)�)�+�2�3�"�-�2�!�#�=�(�/�(�(�2�.��$�+�/�#��5�%�"�'�)�'�#�%�.�/�/�6�3�#�&�.�$�)�4�0�<�(�8�*�/�@�.�-�"�.�/�'�&�-�+�:�/�)�/�#�/�$�0�1�"�(�-�-�*�,�.�)�'�+�.�(�6�+�2�4�/�4�+�7�#�1�3�'�:�*�&��-�/�2�2�/�+��2�%��)�-�#�%�׀р׀Ԁـ׀ԀЀр��ӀՀԀـրۀҀҀӀـӀ׀Ҁҁ?�(�<�1�5�"�+�6�2�)�.�'�&�.�$�&�(�8�+�6�%�-�/�"�/�'�*�*�'�5�,�'�8�,�)�,�*�)�,��3��7�(�1�*�)�(�)�,�-�+�5�� �+�2�%�*�*�,�*�3�-�5�/��%�,�3�5�+�'�)�4�%�(�4�'�1�&�*�3�/��,�5�1�8�'�6�3�0�/�(�.�2��)�7�#�.�$�+�1�/�/�'�)�,�+�*�2�.��"�3�3�2�+�-�+�)�*�(�9��)�/�(��%�0�"�+�9�.�"�#�$�0�/�(�'�$�,�5�+�1�-�4�0�%�&�,��*�4�/�%�2�*�)�8�,�+�4�5�1�.�.�1�-�$��+�.�0�-�/�2�)� �1�2��;�&�&��&�'�7�&�1�(�7�1�/�4�/�)�"�3�1�/�&�%�#�/��'�+�%�+�(�1�)�$�*�)�:�*� �$�)�)�;�0�#�)�4�1�%�,�.�5�*�1�.��%�0�(�"�'�6�'�2�"�-�"�5�$�8�&�0�+�#�'�5�*�5�)�%�*�2�(�9�5�/��/�3�2�(�(�1�)�#�+�8�1�>�$�+�/�)�/�0�/�#�/�(�*�8��.�.�2�,�0��)�5�-�)�!�-�;�(�%�%�9�!�6�1�.�)�2��$�.�%�-��)�*�3�+�-�4�%�4�$�-��0�+�4�0�-��+�+�4�$�)�-�'�)�1�"�%�%�-�0�$�/�,�+��5�&�3�,�+�%�(�,�<�,�&�,�)�*�#�$�(�#�+�/�=�)�*�,�(�5�!�)�-�7�)�2�!�9�+�1�/�-�9�$�&�4�,�/�#�*�/�=� �-�5�-�2�'�7�.� �*�3�/�#�"�(�0�)�(���*�"�0�(�&�7�0�2�+�%�(�*�"�/�-�(�.�-�/�+�+�-�.�2�'�4�/�)��%�'�-�-�.�3�.�7� �(�(�0�-� �+�/�'��/�&�&�/�3�*�.�&�/�+�)�-� �-�$�(�9�)�1�.�,�)�-�3�0�,�6�,�3�5�2�.�+�2�-�܀؀؀րրـҀЀ؀ÀԀրҀ׀׀ڀԀՀӀԀՀ܀րׁ#�:�)�5�'�&�#�.�*�7�2�*�1�� �+�&�7�0�/�=�'�3�*�6�0�'�'�$�.�'�+�2��-�"�8�.�"�(�(�.��-�7� �-�4��(�.��.�*�+�(�'�1�.�/�'�/�5�*��,�.� �/� �#�'�,�'�*�4�7�3�5�+�-�-�/�1�%��6�/�#�-�'�0�+�&�"�#�1�%�0�%�0�4�+�/�2�/�+�$��)�*�/�/�6�5�/�7�,�1��3�'�)�)�1�%�'�/�+�)�5�*�)��'��4��(�-�!�:�,�,� �7�1�$�2�1�,�*�4�+�%�%�+�:�)�/�+�2�&��+�#�4�1�2� �+�+�"�-�1�3�-�(�9�.�0�3�/�3�-�-�&�<�,�)�$�4�$�:�)�!�"�4�)�!�0��+�2�2�)��+�#�2�2�2�&�)�4�'�&�/�.�5�+��$� �'�+�!�#�&�"�"�2�'�&��2�*�.�,�*�3�B�'�/�%�)�2�)�)�)�4�,� �;�&�#�/�%�'�-�+�6�;�+�"�*�)�'�!�(� �$�+�#�0�)�.�2�1�!�3�5�#�)�.�'�-�,�5�+�6�)�.�-�"�#�&�,�$�/�1�8�3�*�$�/�6�4�=�+�!�4�%�0�0�)�'�-�1�-�'��3�4�,�-�*�)�$�'�)�)�5�&�-�+�/�,�'�1�8�&�3�/�#�*�3�(�/�(�/�(�+�.�%�'�(�%�+�:�&�4�4�(�/�-�/�5�*�"�3�/�5�3�%�%�)�/�3�2�&�9� �/�'�.�-�&���7�#�.�!�+�$�(�%�$�)�*�*��*�5��&�*�*�(�(�1�?�5�1�+�2��.�,�5�:�"�(�)�9�&�0�3�+�/�!�)�&��3�8�1�1�1�:�%�7�$�%�,�.�(�3�(�!�-�$�5�;�/�-�.�9�.�"�(�;�+�'�-��7�/�.�,�)����5�@�+��+�)�-�)�)�+�&�5�8�2�(�(�'�+�5�1�0�4�2��3�,�%��.�/�>�*�#�2�&�)�2�Հ؀׀ӀրՀ؀Հ׀ÀـӀӀڀـڀӀҀӀԀـӀր؁.�)�'�2�-�*�%�,�)�1�5�9�5�,�1�/� �#�:�-�)�%�.�1�<�3�0�6�*�.�/�4�)�%�+�/�1�1�5�/�2�9�-�-�'��+��*�*�3�.�$�/�*�/�-�6�+�*�(�7�0�*�2�+�*�(�2�1�0�(�%�;��.�;��#�1�0�*�0�.�"�@�#�2�.�+�/�+�'�5�%�3�,�!�4�"�+�(�7�+�&�$�.�)�)�9�#�+�)�)�)�*�#�*��(�%�/�#� �*�1�%�+�+�'�0�$�2�2�*�%�,�*�,�(� �#�1�!�!�3�(��+�.�,�+�C�$�&�4�,��+�0�'�5�*�1�5�+�5�/�'�1�0�&�2�.�.�-�"�$�3�3�*�*�3�1�(�!�7�!�!��'�;�%�4�8�+�)�/��0�+�/��%� �&�-�+�1�#�!�)�0� �9�'�4�5�'�7�&�"�/�3�5�.�)�/�&�6�(�0�&�0�&�2�&�2� �1�1�*��2��'�1�&�.�8�'�/�4�-�(�%�.�#��,�%�,�&�0�-�-�,�0��3�4�1�.�)�'�4�+�.�0�;�'�2�/�/�*�5�-�&�/�7�3�(�%�$��1�'��)�#�+�-�3�2�*�#�6�-�*�'�)�3�+� �.�,�-�.�0�0�$�4�#�*�(�.��'�3�@�5�)�#�2�+�.�4�5�"�0�/�6�5�+�*�:�*�(�0�8�=�+�#�(�)�6�&��-�-�2�0�"�*�#�3�!�*��.�9��&�%�1�*�4��(�2�*�4�*�%�*�&�2�-�5�)��)��6�5��'�/�2��.�:�9�0�0�3�&�$�"�,�-�&�+�<�,�#�+�,�&�#�1�+�0�;�,�!�#�"�"�"�.�&�(�%�/�6�,��-�3�+�&�#�&�-��$�0�+�/�+�+�)�%�2�'�&�/�1�#�8�0�'�2�'�=�&�+�7�2�+�4�7�0�'�&�5�:�,�+�,�'�/�.�*�,�+�4�7�3�0�.�$�-�0�2�$�2�+�/�+� �/�%�+�%�2�)�8�*�/�*�ۀӀҀـــ׀؀ՀĀ׀؀ۀ׀؀܀ՀӀۀۀրրրс/�)�,��/�*�+�0�'�/�2�$�.��2�'�-�9�1�'�*�'�/�-�5�8�*�%�$�-�"�3�!�2�,�1�*�%�4�)�%�3�!�"�(�(�7�4�$�8�)�"�(�4�/�1�'�5�1�-�/��*�*�0�&�1�(�#�)�0�-�:�.�3�1�2��.� �-�#�&�*�&�*�+�-�&�5�*��'�'�)�"�3�.�%�+�6�/� �&�&�>�4�"�:�+�(� �'�.�+�,�1�/�0�9�0�5�/�#�/�,�0�$�*�;�?�2�-��4�'�*�6�1�5�/�#�5�#�$�)�/�$�(��/�$�0�#�0�)�(�-�/�(��&�(��(�)��(�&�*�5�/�&�+�/�"�3�%�.�=�4�2��%�5�$�(�8�+�:�"�-�,�'�/�#�1�2�'�+�8�%��"�2�6�'�(�'�1�#�&�3�1�&�$�-��*�*�,�)�*�0�7�#�4�2�'�.�)�=�'�/�;�8�)��7�,�)�-�#�,�(�"�'�@�2�4�%�)�*�4�"�'�0�!�.�%�/�0�6�,�%�-�3�(�9�*�)�%�,�/��,�5�0�2�6��(�)�5��4�"�,�&�3�*�'�%�1�:�$��3�+�(�1��+�.�(�.�*�2�-�1�.�6�3�0�$�&�$�-�1�*�0� �.�$�$�,�!�6��'� �'�"�%�(�2�-�'�'�&�.�1�1�)�*�'�4�+�'�%�!�(�/�0�%�+�+�#�/�/�*�)� �5�,�"�3�#�,�&�/�?�+�+�:�8�:�/�(�(�'�$�"�0�/�.�7�(�*��/�.�<�+�#�7� �"�5�9�/�*�2�9�6�&�0�&��(�*�&�:��/�)��+�/�"�+�1�;�-� �%�5�/�-� �)�*�0�.�-�0�4�(�1�+�#�-�1�4� �*�.�/�%�%�3�+�$�,�4�-�'�2�-�3�,�'�6�+�1�$�7�,�+�+�-�+�=�.�6�3�2�+�-�3�+��5�4�/�2�3�5�,�3�'�'�/�7��6�3�2�3�+�,�3�%�2�)�B�'�-�2�&�&�-�Հ׀ـۀրրـۀրÀЀՀ܀Հրր܀р׀ڀ׀ӀӀс$�+�%�*�)�2�<�6�(�)�*�*�-�&�4�&��,�0�"�0�G�-�(�/�2�4�5�+�(�1��2�4�3�,�.�8�/�%�)�*�/�-�$�2�0�,�'�7�%�/�%�'�+�&�2�9�#�2�%�.�7�+�4�3�,�7�$�7�/�.�/�'�,�#�(�-�)�)�)�.�4�,�+�4�-�-�>�*�6�(�:�1�8�(�$�1��+�,�%�(�+�"�-�.�#�.�*�(�$�=�'�/�)�3�!�#�1�E�)�2�"�$�2�7�=�%� �#�)�)�/�#�B�"�)�+�'��,�'�%�!�0�5��&�-�*�"�.�'�5�#�%�1�)�0�#�.�=�.�%�3�/�1�)�)�)�!�&�3�*�$�2�/�'�&�.�:�-�/�$�6�/�*�0�1�1�-�0�&�-�+�,�3�$�'�'�0�'�)�/�(�8�,�3�+�#�,�!�"�7�4�(�)�(� �%�7��$�+�-�$�#�(�*� �-�*�&�;��2�,�,�+�-�/�-�"�-�"�0�&�&�3��)�'�1�;��#�3�:�3�*�.�2�+�#��,�#�$�+�%�,�+���.�4�/�6�%�&�'�E�(�/�-�#�4�#�-�$�9�$�3�'�/�,�:�/�,�)�"�?�1�,�,�5�#�,�"�&�*�$�(�)��*�!�,�,�(�0�2�'�8�.�'�$�-�'�'�2�#�"�'�1�"�,�,�3�&�4�.�+�(�#�1�/�)�&�*�)�.�)� �*�!�)�#��1�/�8�)�*�"�3�+�/��0�0�*�"�0�'�;�1�.�+�'�"�/�,�,�"�$�-�2�*�"�'�"�.�)�%�&�(�*�&�5�!�:�+�)�.�,�#�&�.�6�$�*�-�4�)�.�'�)�+�0�%�(�,�*�9�/��+��4�-�)�(�-�*�"�/��%�)�,�4�0�(�%�1�)�1�$�*�4�.�#�.�-�)�)�(�+�+�-�5�<�2�-�<���2�9�0�*�0�%�%�0�,�)�+�3�.�&�(�%�2�/�?�C�-�1�-�:�.�+�;��7�!�.�@�<�3�,�+�<��#�:�,�1�8�1�؀Ԁ׀ҀҀ׀ҀՀҀĀӀڀ܀؀Ԁ׀ՀրՀ׀؀րۀՁ1�-�*�#�1�0�&�)�/�5�/�3�5�7�/�3�'�,�%�8�)�3�%�5�3�.�)�%�(�'�'�4�&�$�)�+�/�4�#�&�8�'�2��/�3�.�+�2�$�5�#�2�1�*�3�%�3�*�&�/�+�.�'�-�'�'�%�5�'�1�>�5�'�&�9�)�'�;�,�2�(�0�(�8�1�/�)�%�2�9�(�+�+�4�#�(�.�4�!�*�.�'�(�*�1�)�)�#�5�&�-�&�(�(�4�"�/�*�*�3�8�-�0�9�+�&�,�(�*��/�+�$�(�$�/�+�+�)�3�%��0�4�'�0�$�7�3��+�+�$��-�(�-�.�%�#�7�6�/�+�*�!�1�-�3�/�$�(�%�*�2�)�,�,�-�,�1�(�)�1�.�$�.�(�2�.�#�+�1�/�2�(�%�.��.�(�,�/�.�+�(�6�.�0�3�#�3�'�)�4�8�*�$�+�$�"�(�5�1�*�+�%�1�&�0�.�"�?�&�'�!�&�0�$��3�,�,�&�!�*�&�2�'�+�)�3�0�!�<�#�,�.�3�)�(�"�)�/�,�'�$�(��=�+�!�,�:�,�'�3�7�.�1�6�*�9�.�-�*���-�2�*���'�"�5�'�,�)�6�&� �!�(�$�)�*�%�&�4�/�+�0�/�.�+�*�/�0�*�1�#�?�/�9�/�/�6�-�-�/�.� �'�/�6�!�'�4�$�,�'�1�#�3�0�9�(�+�1�1�.�+�-��3�.�.�0�/�5�'�5�3�1�4�6�-�)�5�.�#�-�+�&�0�!�3�.�+�3�-�,�(�'�0�(�8�/�7�4��-�2�9�'�)�1�/�+�2�3�#�$�%�/�-�1�6�)�(�+�-�.�+�-�/�*�5�+�)�*�2�+�7�+�*�.�2�/�+�$�3�-�/�$�+�*�&�(�+�$�+�"�"�+�,�'�6�(��!�1�-�0�$��)�0�'�#�-�6�7�)�:��:�-�.�/�5�7�4�7�*�3�*�'�%�"�3�-�$�*�%�6�-�+�+�)�(�<�)�!�4�/�/�3�5�/�"�&�/�+��%�$�.�6�6�ـҀ׀ۀҀՀހ׀؀ŀր߀ڀ؀؀ՀրԀҀҀր؀р݁&�+�+�1�/�'�2�!�+�9�%�'�3�2�4�+�F�2�-�*�-�:�2�&�&�7�;�$�3�/�-�&�2�,�/�)�,�"�1�"�>�-�%�)�3� �!�%��5�&�9�-�3�'�%�(�9�0�0�1�!�.�0�&�-�/�'�.�2�'�/�3�+�1�(�.�-�E�/�/�1�)��%�'�3��3�-�*�&��/�1�.�&�,�E�,�0�&�3�1�/�+�5�+�'�3�.�7��:�:�.�+�-�5�7�2�-�)�&�5�&�-�-��4�$�/�#�!�#�/�*�3�*�&�.�/�,�&�1�.�+�*�$�%�-�+�/�<�'� �7�$�-�(�%�'�&�)�#�4�#�@�*��*� ��1�(�2�,�-�:�)�)�2�4�$�5�#�,�0�%�"�"�5�5�%�3�,�&�2�1�/�3�0�1�$�.�/�)�/�2�$�0�.�)�0�2�/�6�-�1�(�,�)�#�"�!�/�+��-�1�&�$�.�*�#�1�/�*�#�)�3�4�3�/�'�6�-�#�7�'�:�0�$�.�2�4�#�'�%�,�;�1�&�&�.�'�+�*�$�.�+�-�5��%�-�4�'�*�.�(�*�(�)�!�3�.�2�3�&�)��0�$�0�3�,�,�2�5�-�.�*�6�-�)�2�)�(�,�,�+�,�6�%�#�'�.�(�%�+�$�,�2�1�,�#�*�2�7�-�/�!�+�!�'��.�.�2��/�,�"�.�<�*�%�)�)�'�,�/�.�>�5�'�!� �*�-�1�2�3�0�%�4�,�,�:�0�5�+�=��(�5�/�0�(�&�3�!�3�)�,�%�0�%��0� �$�2�+�)�&�&�/�%��<�.�,�*�4��'�%�'�,�/�,�-� �-�.�(�%�0�;�#�.�3�*�*�(�,�(�7�#�:�.�.�1�0�(�'�0�-�-�,�-�)� �4�0�+�&��)�/�7�+�"�+�&�-�,�:�3�3�,�.�6�+�)�"�"�7�2�0�5�$�&�+�&�(�)�5�-�6�!�0�8�+�1�+�1� �.�%�4�5�$�!�5�&�/�$�%�)�)�%�/�8�%�+�2�*�7�/�׀Ԁ؀Ӏـր׀΀ԀȀррԀՀـՀԀրՀր׀ՀՀӁ/�!�(�)�&�5�/�4�/�9�!�'�+�*�%�%�,�2�+�&�%�'�'�4�1�:�(�,�-�%�/�8�7�3�8�4�(�/�+�/�2�:�5�3�1�0�&�2��6�#�*�*�#�8�+�7�-�-�%�,�/�-�%�0�1�-�#�+�0�-�!�1�1�)�)�-�*�(�3�+�/�8�3�3�.�)�.�#�)�$��$�5�0�/�'�1�/�:�$�'�!�-�0�&�<�8�)�3�/�2�3�*�#�$�/�&�"�#�/�2�)��&�!�4�+�4�-�0�'� �"�+�"�+�#�2�/�1�5�.�1�-�)�&�"�*�2�.�,�,�(�*�+�.� �,�&�7�-��,�1�4�!��#�-�*�3�.�*�%�-�6�-�$�)� �5�*�)�.�,�$�%�/�&�0�'�4�,�%�/�#�(�2��!�%�*�%�8�1�)�'�<��*��'�,�/�2�7��%�/�2�(�(�*��!�9�+�*�6��'�(�*�/�@�5�)�&�!�*�%�/�,�,�<�5�(�"�2�*�1�'�%�0�"�5�&�1�*�*�-�*�8�$�1�*�0�+�'�"�+�-�-�1�1�-�'�6�'�5�7�)�&�-�$�&��0�#�;�3�.�.�/�-�'�*�0�)��+�*�<�+�1�5�,�5�/�%�%�)�,�#�8�;�*�0�!�,�-�*�%�/�1�9�$�'�/�"�$�0�C�.�%�'�1�/�$�+�2�4�.�$�/�)��&�+�0�4�(�-�)�,�4�+�5�-�#�-�*�'�-�9�-�.�*��(�*�)�5�+�#�+�2��)�3�+�(�3�+�#�"�(�4�:�0�4�&�2�/�"�&�2�+�*�+��+�0�(�%�(� �3� �#�!�/�/�5�.�#�'�/�4�#�6�6�4�'�/�7�,�+�'�1�'�.�1�'�+�1�8�)�%�+�0�%� �"�.�5�&�1�%�9�?�)�4�'�3�2�)�%�#�8�1�7�3�2� �'�#�%�!�'�0�2�#�(�4�(�8�3�2�0�1�+�3�.�.�*�9�)�.�(�,�,�)�+�5�.�$�*�#�/�#�1�5�3�3�0�7�'�,�:�2�ԀـӀրҀՀՀӀր��ԀҀր؀׀ӀۀրـԀԀ׀ӀՁ+�'�)�.�(�&�3�>�,�#�,�-��/�4�4�0�(�+�,�.�(�-�.�0�0�6�/�1�8�)�,�!�1�(�0�/�-�-�#�5�%�/�3�/�,�1�0�!�+�*�0�/�&�2�'�-�+�8�'�*�!�,�/�0�/�*�1�*�/�1�%�2�-�'�0�%�0�3�%�7�*�,�/�/�9�(�&�*�� �*�7��'�/�%�!�.�'�-�4�+�-��+�(�"�$�)�$��%�)�6�-�-�%�*�'�(�5�#�*�)�3�%�2�!�'�;�$�6�"�<�&�#�)�;�(�*��'�$�(�/�3�7��)�)�9�%��%�-�$�9�3�/�+�-�0�8�,�3�1�*��-�%�2�.�.��;�4��'�+�!�2�(�2�1�1�/�(�-��*�+� �)�.�-�-�0�4�/�0�6�5�,�%�0�)� �4�(�'�.�%�1�,�2�"�,�#�$�1��<�!�.�.�+�.�7�7�*�"�+�+�(�4�4�0�/�1�*�5�(�)�"�5��0�2�2�6�/�&�)�,�1�%�2�0�2�'�0�%�*�3�3�/�%�%�*�7�1�"�-�(�+�'��(�+�,�-�'�A�,�3�5�5� �-�(�*�)�$�3�1�+�4�'�4�4��-�.�/�&�1�#�)� �%�=�+�"��)�.�6�+�/�2�.�/�)�6�)�&�&�.�)�+�%�+�5�)�'�3�'�'�0�!�?�/�+�5�.�,�1�1�5�%�)�&�/�+�%�)� �*�$�6�+�'�*�)�%�1�%�#�7�+�A�,�+�0�&�+�6�+�5�*�*��%�/�$�,�"�)�%�,�2�0� �(�+�*�/�3�)�/�5�2��3�*�%��:�4�"�:�'�+�.�2��(�&�%�,�&�-�.�2�7�*�(�2�-�#�#�2�.�;�6��5�+�/�$�0�4�%�&�.��)�"�%�%�@�'�-�(�,�%�-�*�$�7�!�(�3�*�4�(�-�/�)�+�-�%�!�4�4�2�,�.�&�(�6�5�'�4�2�.�4�,�7�+�)��-�6��+�*�3�&�,�8�>�6�"�4�6�,�8�0�4�(�׀ـҀրӀր׀Հڀɀր׀׀Ҁ׀рπ׀ӀՀрۀրЁ,�*�0�,�4�/�0�5�-�.�/�/�1�6�%�4�$�"�4�*�'�2�(�<�4�3�$�"�/�,�"�3�1�*�5�*�%�;�/�)�0�1�*�(�*� �4�5�-�0�*�/�4�6�,�(�0�/�.�1�A�!�4�+�#�&�#�(�;�-�-�'�-�8�-�7�&�&�+�"�)�6�!�&�-�$�2�)�2�*�#�=�#�/�/�.�9�"�0�&�#��!�$�-�)�.�%�+�)�'�1�5�@�$�1��#�7�'�'�,�.�)�1�6� �&�2�$�/�*�4�4��&�,�'�.�+�.�-�3�+�$�8�6�/�9�/�4�'�-�3�,�.�,�#�3�,�-�3�+�4�,�+�#�,� �-�3�+�%�"�$�*��3�2�"�+�#��(�/� �-�'�!�*�$�$�0�/�&�.�F�.��*�&�!� �"�+�"���3� �*��$�,�#�8�&�,�*�(�,�5�2�8�$�/�(�(�.��/�)�'�*�!�)�,��!�<�7�'�(�4�0�.�4�9�)�2�1�+�'�&�+�0�0�3�0�4�.�(�-�2�!�1��'�'�-�1�-�6�3�2�.�-�9�0� �2�1�-�+�2�,�+�6�)�+�.�.�+��)�+�$�1��>�,� �.�"�#�2�.�2�)��$�)�(�*�>�%�+�-�(�.� �3�$�(��,�/�(�6�*�/�/��/�/�/�)�%�(�.�'�/��8�&�7�)�3�1�%�'��*�(��5�!�/�(�)�,�!�&�4�,�*�-�*�)�4�,�.��+�/�)�$�5��0�*�-�=�#�5�+�&�.�/�#�1�5�+�5�/�'� �/�4�8�6�*��8�'�*�)�0�*�+�;�)�)�+�1�+�9�6�/�/�%�&�0�(�3�7�-�+�7�.�0�'�*�'�%�'�1�(�'�=�9�&�$�+�0�+�#�;�3�2�-�%�*�2�$�.�'�&�7�)�"�%�9�%�)�*�8�/�"�0�3�-�&�9�(�+�(�)�4�)�0�/�0�,�*�,�,�(�1��=�7�/��*�,�%�'�.�*�7�1�/�3�%�,�=�0�7�/�+�6�Ҁր׀׀ـՀրրՀȀрӀԀրڀ؀ҀڀՀԀ׀ՀӀՁ0�*�%�+�%�3�5�%�1�.�(�#�,�)� �/�+�3�<�:�.�$�1�5�/�+�1�,�(�-�2�"�0�!�3�+�3� �"�8�.�!�6�)�$�'�.�-�/�'�!�-�'�&�.�+�*�)�)�4�"�/�2�.�(�&��*�-�,�)��2�/�%�(�=�%�3�,�2�(�-�.�!��'�-�.�!�&�.�(�.�!�/�-�,�:�-�-�8��3�%�/�(��(�#�*�/�/�)�1�*�.�.��+��&�+�1�0�+�.�-�+�0�"�(�'�+�+�8�+�+�2�;�*�(�-�0�4�)�(�2�-�+�*�#�5�!�1�#�-�2�*�/�%�7�+�6�6�)�-�/�%�%�3�.�%�'�.�2�1�5�,�2�#�*�&�#�5�+�;�3�'�(�*�6�+�:�)�?�3�:�5��3�4�$�"�#�+�#�-�#��.�+�-�0�"�:�1�5��,�"�4�,�=�;� �)�2�*�5�/��)�,�?�8�"�1�&�$�+�-�+�1�#�/�0�2�!�%�$�*�/�-�)�6�,�-�<�2�3�-�6�%�+��0�'�1�-�2�$�-�/�+�-�2�/�,�&�"�3�6��)�4�/�%�1�-�'�=�%�2�*�0�+�0�*�+�0�"�:�!�9�5�/�+�,� �*�2�(�+�5�1�,�%�.�4�1�1�)�.�/�)�,�(�/�<�"��2�7�!�!��:�2�*�)�,�$�%��/�'�6�5�-�/�+�.�$�,�3�*�+�%�,�2�0�-�7�$�+� �+�/�)�+�/�)�-�#�8�/�0�3�1�%�6�/�/�+�9�0�*�"�(�)�-�1��/�'�.�-�(�*�-�)�$�(�8�'�0�.�$�.�(�3�6�0��$���#�)�2�9�#� �1�$�8�A�7�/�.�/�7�+�.�/�-�%�.�1�+�(�*�.�-�<�$�;�'�6�)�*�3�!�+�)�)�4�#�.��)�.�-�-�,�*�+�#�2�'�6�0�2�%�2�/�6�2�3�:�/�'��1�*�)�6�2�+�"�1�*�#�4�6�/�2�4�3�'�+��%�#�5�3�0�8�3�-�3�ррҀ׀ڀـրπԀƀ׀ՀրـۀـڀڀـЀԀӀ؀ԁ)�)�1�'�/�-�2�#�/�9�.�;�/�9�'��&�-�/�0�(�,�%�.�0�#�2�'�$�-�'�4�-�,�&�+�1�+�%�#�3�'�,�.�&�-�:�*�-�'�*�$�*�,�%�+�-�6�/�7�6�,�!�-�-�,�)�-�$�$�*�6�7�$�4�0�-�*�+�)�0�5�)�+�6�1�7�2�,�,�8�4�%�0�$���#�2�0�3�&�)�#�!�%�&��9�1� ��+�%�+�&�*�.�&�+�.�$�:�&�3�!�(�.�+�%�"�0�$�-�+�-�"�"�/�'�.�,�+�&�1�%�(�1��3�)�#�&�0�4� �#�5�%�'�+�+�#�/�2��,�#�'��8�6�0�1�&�$�)�&�4�6�&��1�/�4�3�6�.�,�(�)�0�3�&�*�$�#�<�,�3�.�'�!�/�-�'�'�1�/�8�1�,�/�"�+�*�-�6�.�*�%�)�2�)�(�2�,�)�3�2�%�;�0�'�5�-�3�'��;�-�5�)�)�.�"�+�!��2��+�5�#�&�&� �+�)�1�4�+�)�*�-�"�'��%�%�)�'�.�/�.�*�!�1�!�%�#�0�%�*�9�&�/�$�2�%�4�%�4�)��$��0�1�2�*�/�+�%�2�+��3�,�*�=�1�!�1�$�(�4�.�'�/�%�4�2�1�-��-�5�)�0�/�'�.�(�.�*�,�-�2�-�-�)�!�/�6�@�/�$�'�2�*�"�'�*�0�.�2�1�.�3�'�/�2�+�%�;�4�/�0�2�&�(�*�+�G�%��/�'�(�)�6�1�%�3�8�.�4� �"�+�)�,�)�.�$�)�"�.�3�*�1�.�,�*�(�#�.�.�-�(�%�,�%�2�2�0�$�)�'�/�!�'�"�&�9�+�+�,��/�.�%�3�5�6�-�-�-�4�-�"�'�,�,�#�3�*�3�,�(�'�#�0�:�*�+�/�)�0�*�)�7�%�4�%�<�+�3�)�:�%�2�8��+�7�*�,�6�2�2�*�/�0�*�(�-�/�/�1�&�-�*�;�$�0�"� �.�2�4�.�#�(�-�,�)�)�8�-�)�ـ݀Ԁ΀р؀׀րՀɀրՀӀՀـ׀Ԁ׀ڀՀӀրӀԁ-�1�)�6�2�0�@�.�4�4�:�A�,�-�5�(�4�(�/�1�,�'�-�4�3�)�0�'�0�1�'�2�!�$��/�-�.�2�.�-�3�*�/�<�0�2�/�6�#�,�%�(�3�)�:�&�$�)�(�!�(�-�&�,�&�&�*�+�2�-�0�3�%�.�1�1��-�0�3�#�+�+�+�1�2�3�0�"�)�:�.�2�(�#�&�.�4�1�2�<�#�+�'�3�7�(�0�9�3�/�&�.�0�-�+�!�*�1�+�2�.�1�.�2�-�4�-�(�-�<�:�%��1�7�/�1�#�1�)�*�2�.�"�7�'�*�%�!�2�&�'�3�6�8�(�#�"�#�0�,�0�!�%�7�*�+�@�/�4�*�!�/�/�2�+�-�6�-�'�#�*�5�6�$�,�&�+�3��4�0�0�,�*�2�/�)�;�+�2�-�&�$�1�/�)�&�%�,��,�1�(�1�-�&�:�'�4�)�(�#�6�(�6�*�.�%�!�,�.�(��-�/�&�"�-�$� �$��-�$�.�,�3�/�2�1�1�:�$�.�-�/�+�0�,�&�-�*�/�"�(�+�0�)�.�7�$�'�-�7�)�"�/�!�5�1�/�'�3�"�/�5�-�,�'�'�,�%�-� �5�1�:�2�4�0�&�$�5�4�2�3��&�%�/�+�1�/� �+�'� �5�0�&�)�(�&�5�,�7�-�#�'�&��2�/�*�)�'�,�/�5�'�-�)�-�/�+�0��*��$�!�$�%�-��%�(�'�$�$�'�6�*�1�5�-�(�0�)�4�0�6�0�0��'�)�3�'�2�'�'�'�#� �+�$�6�-�.�-��%�7�)�'�'�4�-�*�&�'�*�,�1�,�,�%�/�%�/��+�!�8� �1�)�8�*�+�0�<�4�0�3�5�!�/�#�)�-�2�+�(�1�$�%�7�5�.�"�%�6�&�0��*�;�$�'�+�=�&�*�(�/�0�0�%�*�)�:�,�)�/�!�.�6�0�%��7�#�#�&��/�"�;�=�0�'�*�&�*�1�3�9�-�5�1�3�5�/�(�5�3�!�%�(�/�3�*�5�-�3�1�6�ـԀրـՀӀՀ؀ЀĀՀՀ؀Ҁ؀ҀҀ؀ۀ؀׀ҀҀׁ%�)�6�;�6�3�<�6�/�,�*�-�+�3�0�,�+�%�#�/�%�6�*�6�5�'�+�8�6�+�-�)�/�9�*�2�*�,�0�3�5�+�+�� ��!�/�*�(�2�)�#�%�-�/�/�)�$�)�$�*�<� �#�,�(�5�0� �+�0�9�+�(�,�,�,�.�+�1�(�>�:�=�*�0�%�3�&�/�)�%�4�.�;�+�/�"�*� �2�1�-�1�/�-�&�&�,�)�,�(�/�2�(�/�)�*�%� �4� �2��.�*�7�1�'�%�$�*�(�&�-�'�#�"�(�)�8� �)�#�%�(�0�-�.�3�5�"�(�)�/�*�*�)�!�4�*�.�0�(�"�;�#�*�*�+�/�&�!�+�7�(�+�1�%�3�'�*�.�1�,�)�!�1�)�-�&�+�,�&�0�%�2�%�'�0�-�'�8�(�%�.�,�)�+��"�,�%�$�,�'�*�%� �2�4�!�"�.�,�(�$�3�!�5�'�&�%�-�$�&�/�=�/��-�)�/�<�+�!�%�$�'�*�/�.�"�+�+�,��2�/�!�2�4�.�7�$�,�-�)�.�(�0�0�"�0�.�*�-�/�'�+�5�&�0�$�+�)�2�9�;�'�*�3�(�'�1�0�4�8�'�-�2�5�7�"�'�,�.�3�)�/�+�*�.�,�.�&�5��+�)�/�)�1�+�#� �*�0�*�,�&�.�,�!�+�.�$�0�4�1�:�,�0�"�5��1�.�)�*�*�"�'�#�$�7�-��;�0�)�4�2�'�%�'�3�.�/�4�2�*�*�.�)�'�$�2�7�,�3�%�,�*�)��+�!�+�)�+�3�3�;�>�,�2�,�3�2�0�1�*�(�-�)�)�(�-�'�'�9�7�&�,�/�3�%�*�4�)�+�+�*� �<�!�%�(�'�+�'�*��6�&�%�"�-�1�'�#�)�2�7�$�2�*�2�"�2�'�/�/�(�@�0�+�!�1�/��+�3� ��/�)�%�'��5�*�6�'��-�,�!�#�*�.�+�>�6�#�6�5�(�"�1�(�9�,�1�2�"�9�/�3�0�.�-�5�#�+�.�2�/��/�ՀӀ׀ԀـՀԀـրÀ؀ր׀׀Ӏ؀Ӏ׀ՀҀ܀ԀԀځ1�.�-�3�%�5�1�4�2�/�,�*�7�$�-�7�/�+�/�/�'�)�+�-�1�+�-�*��'�!�/�0�+�2�.�1�!�2�0�1�!�5�*�-�+�7�'�6�*�7�&�*�)�)�%�-�*�$�5�.�4�/�(�!�-� �+�#�-�6��(�-�+�.�%�+�!�(�2� �0�&� �4�-�+�/�1�&�(��.�-�*�0�7�(�-�-�)�4�0�#�(�&�7�7�!�,�.�#�0�/�$�)�1�+�,�)�$�%�8�4�+�"��%�!�%�,�*�%�$�+��-�$�4�)�'�'�!�4��'�!�)�!�4�5�2�$��'�.�0�!�+�0�1�+�.�+�#�7�1�+�)�'�0�1��/�/�)�5�-�+�/�!�,�.�/�6�"�>�$��(�(�.�*�#�*�5�$� �6�.�6�+�>��4�5�7�'�/�.�$�7�-�!�,�/�$�2�"�!�#�)�&�/�7�0�.�$�2�2�,�/�#�6�(��-�&�)�(�*�0�,�#�#�;�#�&�0�*�.�.�,�2�4�0�+�,�$�"�0�+�1�!�,�*�.�1�.�!�'�*�%�'�1�1��/�+��%�(�&�/�)�/�� ��'�&�6�(��/�!�5�1�/�/�/�(�%�6�7�)�/�2�!�2�'�;�'�'�%��(�-�+� �'�&�,�-�-� �(�$�,��&�:�)�/�,�(�3�.�#� �+�:�2�0�,�#�/�2�1�.�%�'�)�*�>�)�+�3�#�9�+�+�,�'�-�/�,�2�0�2�.�(�2�*�(�*�8�.��1�-�7�0��5�)� �*�4�&�)�(�!�(�-�.��3�(��"�-�&�7�'�1�#�(�#�+�/�*�*�)�3�"�2�"�/�)�7�-�&�/�,�'�'��.�,�-�'�/�$�+�&�(�(�!�'�(��'�'�$�#�(�*�%�0�#�4�$�/�9�/�5�'�'�&�)�)�0��=�/�#�=�/� �"�0�,�#�(�&�>�5�&�,�/�)�(�*�/�/�9�+�/�(�!�A�1�1�>�2�+�*�7�2�,�0�&�3�,�)�<�@�(�/�B�Հ؀ـրԀــЀڀĀ׀ۀր؀ӀـҀ؀׀ԀՀ؀ـׁ7�9�4�)�"�.�6�5�.�*�1�-�.�5�*�)�9�*�,�%�)�6�6�-�)�*�)�0�,�(�3�'�-�,�/�$�%�+�&�5�2�*�+�!�-�+�!�/�)�(�6�+�+�/�1�0�%�(�)�#�"�7�;�(�%�%�2�)�'��,�'�-�-�+�"�1�,�#�(�%�8�2�/�$�8�$�'�-�&�.�1�&�/�&�&�#�(�-�,�"�%�0�.�,�/�/�1�1�"��,�5�2�$�/�2�5�(�(�7�3�0�'�(�1�/�(�0�"�$�3�*�%�7�$�'�2�&�*�/�.�-�&�8�6�!�$�0��1�.�-�'�)�$�.�!�'� �7�0�/�/�1�*�(��0�/�-�$�*�)�)�)�.�.�)�&�-��%�*�'�*�5�,�3�(�*�%�'�?�9�+�7�9�,�'�#�(�0�1�4�4�/�$�1� �5�0�!�&�1�)�8���*�1�(�*�/��5�/�4�'�,�2�+�3�(�(�+��&�1�,�(�4�$�-��2�4�&�1�!�.�1�'�(�.�#�*�%�-�'�=�8�8�3�*�(�!�'�%�-�'�9�'�0�,�$�#�/�*��'�-�&�3�,�2�2�$� �%�1�-�(� �+�$�)�'�)�1�-�3�)�*�+�7�:�#�(�"�7��1�:�+�5�#�%�4�4�9�2�+�.�6�3�-�*�!�,�5�'�/�/�#��#�1�3�2�&��$�4�.�!�%�3�(�/�2�-�*�/�1�4�&�+��'�5�,�3�0�0�!�5�'�/� �*�*�.�$�$��&�8�7�(�!�"�6�#�8�,�#�*�!�!�3�1�)�#�=�9�-�*�(�)�3�1�/�!�,�)�#�/�:��*�%�.�$�-�$�&�'�(�&�$�1�!�-�#�-��+�!�/�8��)�(�$��1�+�+�4�"�*�0�4�%�&�3�'�.�,�"�1�)�#�2�9�0�1�4�%���-�$�1�-�(�4�!�0�"� �%�/�4�1�7�1�)�&��*�.��6�)�<�0�>�-�)�$�+�2�(�-�1�*�9�,�1� �5�-�-�&�'�6�3�*�1�B�ڀ׀ـՀրՀ׀׀׀ƀـӀӀրՀӀ׀ۀՀրр׀ـԁ)�%�+�#�&��A� �,�.�7�*�+�/�+�8�%�-�+�'�/�3�2�'�&�2�#�(�1��+�1�+�'�"�,�+��-�0�*�'�1�/�.�=�)�'�/�'�-�/�/�5�0�+�.�.�/�-�$�+�.�!�*�'�-�+�6�+�8�$�1�%�2�%��9�)�-�0�+�-�(�*�#�'�!�(�%�,�%�"��0�-�,�%�-�+�"�.�1�+�5� �4�+�*�'� �1�2�/�-�5�'�1� �/�.�)�2�.��#�+��0�&�4�*�-�5�-��!�%�3��.�7�0�/�0�2�'�(�3�&�*�*�5�/�!�/�/�5��2�#�"�"�/�#�5�3�$�&�/�/�6�0�%� �*��)�/��/�6�#�&�*�-�2�(�$�$�$�=�3�$�#�$�3�/�*�%�(�,�$�-�#� �.�1�'�8�%�.�4�4�%�/�5�.�<�0�+�(�(�#�.�0�#��5�.�)�&�/�'�-�%�.�(�)�$�.�1�4�'�#�(�4�*�/�4�#�"�+�(�.�0�5�*�.�'�)�#�(�+�/�-�,�2�&�4�-�%�2�'�:�)�8�/�'�0�*�-�1�4�3�+�$�)�2�!�1�*�0�,�3�$�4�3�3�(�%� �5�*�:�+�)�.�)�'�'�'� �-�8�*�7�$�0�!�!�/�6�&�/�.�)�'�#�5�*�*�%�/�&�'�3�&�#�3�2�'�/�.�1�*�2�/�1�*�2�-�%�2�+�,�/�*�-�9�=�.�1�0�+�4�,�&�$�)�+�,�-�&�6�.�%�3�'�1�*�-�#�(��1�2�+�.�.�(�!�.�(�0�,�0��0�.�)�.�-�!�%�-�)� �0�,�3�2�1���9�/�'�$�2�-�*�(�.�)�(�.�0�+�!�$�-�/�,�/�(�'�'�(�$�.�0�4�,�1�2�4�2�3�-�-�/�4�9�7�%�/�*�%�+�5�2�"�#�,�3�-�3�+�/��3�1�4�5�/�9�&�+�0�-� �"�0�"�-�(�:��5�)�/�3�-�-�)�5�*�'�'�)�1�.��+�,�&�%�2�3�,�+�рҀր؀Ҁۀ׀؀׀ÀӀրԀՀրҀڀ؀׀׀րԀԀׁ;�4�2�)��>�+�5�7�3�*�6�-�+�)��0�3�,��8�-�:�6��0�7�)�4�'�3�+�-�+�C�2�>�A��#�2�+�(�5�.�-� �%�)�(�+�/�%�+�8�/�*�3�2�(�*�+�-�1�)�/�#�,�+�#�/�3�)�0�3� �.�)�/��(�+�6�5�7�!�/�-�/� �1�+���9�)�!�0�*�1�%�5�.�)�+� ��+�$�3�,�,�,�&�"�#�4��8�+�/�&�#�4�%��'�5�!�(�4�*�7�%�%�/�&�/�*�%�.��2�"�-�+�4�(�/�-�/�,��+�*�)�-�.�$�0�� �"�.�/��*�,�%�/�%�:�+�3�.�"�'�8�2�*�#�%�"�*�&�!�)�"�*�/�5�+�*�-�.�'�#�1��-�)�+�%�)�0�&�-�.�'�3�0�'�"�3�)�1��?�/�2�.�1�4�-�5�8�/�/��#�'�$�+�$�0�,�5�&�.�-�+��/�1�1�1�+�)�/�$�/�4�1�/�+�(�0�+�$�*�(�-�'�/�5�'�-�)�*�)�)�)�1�.�&�6�)�'�7�(�'�.�'�9�+�.�)�;�-�2�,�#��.�&�+��#�/�0�,���)��*�+�#�3��&�&�)�2�4�*�.�*�-�8�,�/�/�3�$�+�'�6��)�+�(�+�#�.�%�(�+�%��+�0�2�'�.�)�-�%�4�!�0�,�$�0�E�-�,�,��&��/�1�0�*�4�$�+�3�-��$�:�*�#�$�+�$� �%�6�%�&�0�,�*�%�7�+�2�!�+�+�-�/��5�#��(�9�-�+�,�1�'�+�)�!�$�4�+�)�/�#�#�)�+�3��0�'�2�&�+�6�'�"�(�(�.�+�(�)�5�#�#�,�0�*�-�&�-�,�+�&�0�0�'�'�'��0��5�%�-�+�6�'�-�#�%�*�+�,�&�2�0�'�?�+�3�-�2�!�,�9�-�%�5�9�%�.�'�#�(�,��+�5�-�2��-�7�(�.�$�)�+�&�%�5�&�"�&�)�(�6�<�>�׀րڀՀӀՀ׀րրȀՀـҀԀӀ׀׀׀Հ׀րـ׀ԁ �*�6�0�+�+�2�2�0�'�+�/�-�"�,�.�1�+�+�1�.�&�&�)�'�0�/�/�3�(�3�5�+�/�(�4�+�$�9�+�,�,�)�+�,�9�1�6�"�*�+�+�'�&�4�)��)�+���#�-�+�4�*�-�*�+�2�6�'�)�4�+�-�'�:�2�%�/�1�7�1�5�0�5�(�*�'�6�%�#�$�9�'�+�1�'�3�,�(�,�0�%�&�:�9��-�%�=�.�1�*�0�-�3�/�.��2�'�(�(�3�-�/�-��!�2� �4�!�,�*�%��+�(�*�+�0�-�*�7�)�9�<�&�0�)�#�+�8�'�-�-�1�+�2�1�1�0�,�4�2�2�/�-�;�.��1�$�(�4�-�6�0�$�-�7�0�'�'�&�/�-��"�1�3�/�/�7�6�4�(�/�(�4�/�/�$�%�/��&�6�3�-�"�-�2�"�)�.�+�*�.�6�?�*�3�.�+�*�#�/�$�*�7�*�-��/� �.�%�)�*�9�!�0�-�#�+�,�#�,�*�$�'�)���:�'�+�1�/��)�2�&�1�5�%�-�*�2�!�+�.�#�*�7�)�*�6�/�&�/�+�.�1�-�-�&�,�#�-�"�*�3�!�.�2�(�1�-�3�/�-�#�)�"�)�:�"�5�.��+�*�.��0�4�3�/��-�/�$�'�*�*�3�&�'�4�)�3�6�6�(�7�6�6�)�)�7�#�%�*�$�"��9�2�-�%�!�,�,��)�/�,�1�1�)�*�'�+�,�!�*�,�#�2�/�(�/�4�-�7�,�8�.�8�.�/�'�'��#�-�)�0�9�$�%�9�+��2�(�)�.�(�4�"�%�-�)�9�7�/�*�:�)�/�%�1�*�0�4�)�+�.� �,�7�1�3�.�7�0�;�+�1��4�'�&�#�1��+�4�*�$�-�4�6�!�!�'�)�"�3�%�$�/�&�&�'�*�0�-�1�:�!��.�'�1�&�+�,�#�$�'�/�"�/�0�$�.�7�2�5�(�/�:�*�&�(�/�7�3�,�"�/��1�3�+� �(�-�+�=�:�,�/�&�4�ــӀՀ׀ҀҀՀԀɀۀڀրӀπրԀ؀׀рՀրրց8�*�3�,�*�#�%�,�#�'�*�(��/�/�:�4�2�/�0�,�5�%�/�1�/�*�5�#�,�'�)�9�%�4�0�6�.�/�+�)�)��.�(�1�,�-�/��*�$�+�$�/�/�-�+�6�6�1�3�1�#�)�/�1�"�)�+�0�*�2�>�3�1�)�+�%�'�$�.� �2��#�1�(��/�-�&�/�(��)�0�+�.�4�-�*�)�%�(�'�;�-�.�"�#��,��+�1�!�*�0�/�*�#�&�3�'�?�,�%�'�,�-�%�:�'��"�.�&�.�-�-�1�,�#�'�$��1�+�-�*�0�/�4�1�*�(�2�%�+�.�.�-�-�4�0�!�$�%�!�$��1�'�2�1�.�.��,�(�8�-�/�.�3�#�1� �,�)�*�.�'��4�(�,�=�6�+�/�4� �7�2�/�5�*�,�/�/�6�&�&�)�,�-�*�/��,�1�&�*�3�(�7�,�)�#�(�0��%�(��*�"�;�*�4�*�4��(�-� �1�.�.��.�&�8�+�3�:�-�(�5�/�%�+�%�(�.��9��+�)�1�,�'�+�.�.�,�*�%�)��/�5�4�+�0�*�.�(�?�(�(�*�&�5�/�3�(�.�$�'�:�'�.�:�,�,�<�'�1�4�-�.�+�1�,�1�&�+�3�;�4�,�0�/�1�1�7�6�+�)�'�/�(�/�,�4�)�.�4�!�+�.�*�-�!�%�-�5�8�*�.�'�+�,�.�+�5�&�#�,� �2�(�2�)�&�/�4�,�'�,�)�(�/�-�/�%�,�0��$�9�(�*�+��-�<�+�1�&�5�/�9�,�&�;�5�/�5�!�&�"�&�5�5�$�'�-�*�0�2�&�.�4�5�;�#�.�4�-�3�(�-�=�"�1�$�&�$��.�&�"�(�%��1�*�'�&�1�3�9�$�'��*�-�*�/�0�!�$��0�+�0�!�,�:�+�-�=�)�9�/�-�#�0�)�#�,�,�2�+� �/�/�,�0�,�/�&�-�'�1�9�#�,�4�)�#�%�"�)�9�0�&�+�/�!�2�,�,�-�"�;�6�ـրҀՀـԀӀԀ׀ƀՀۀ׀րـԀрۀրڀ̀Ԁ׀؁(��+�#�)�-�?�1�*�#�%�/�0�"�&�,�0�3�.�-�)�-�'�2�,�)�!�2�*�3�1�$�/�(�.�)�6�?�2�/�-�-�/�)�%�#�4�7�0�+�&�0�.�)�+�+�%�A�.�$�.�,�3�$�'�1�<�+�/�4�0�,�2�(�$�3�1�'�*�1��0�)�&�#�9�/�)�,�:�+�5�.�#�-�*�0�$�*�-�1�5�#�/�'�/�)�!�#�(�)�)�6� �!�&�!� ��#�0�$�#�%�,�!�/�-�#�,�$�3�,�%�1�"�%�4�,�)�8�'�8�+�(�&�*�)� �,�$� �2�+�%�9�3�1�%�4�,�,�#�$�.�:�%�0��1�-�-�)�/��-�)�0��*�!��/�'�)�(�%�/�:��*�.�3�#�(�)�2�.�)�&�+�$�(�(�)�A�0�(�&�-�$�#�1��%�7�.�/�%�:�1�+�1�3�)�'�(�"�$�$�&�)�+�$�+�1�7�2�<�$�1�)�%�*� �$�3�5�)�2�.�&��)�(� �)�+�(�,�5�2�'�3�/�.�$�'�7�/�.�0�$�*�+�/�!�� �6�'�%�9�%�%�3�8�+�6�/�*�3�4�'�/�.�-�7��7�*�/�'�*�.�/�)�$�/�#�7�-� ��,�7�,�%�2�0�,�+�$�.�%�6�+�'�1�.�/�%�7�0�'�*�"�'�%�,�(�0�/�-�.�!�'�.�&�2�=��*�-�%�/�(�4�-���-�;�'�2�%�(�/�"�/�*�8�:�+�$�%�+�"�'�)� �+�:�6�2�$�.�)�+�+�4��)�,�0�*�/�0�+�!�7�"�(�)�2�0�-�.�5�1�-�/�!�9�6�'�0�.�8�+�&�.�'�*��,�#�(�3�,�0�*��*�5�%�5�#�!�0�&�'�'�.�!�3�+�)�*�'�6�+�.�/�#�"�+�,�.�7�.�)�)�0�&�2�0�#� �(�2�0�-�5�2�'�9�5�-��&�!�;�%�)�4�=�%�-�)�2�6�(��0�7�.�-�+�,�,�+�,�'�-�6�.�4�0�0�-�#�ӀԀӀ׀؀ـ׀рրȀӀڀڀрۀՀրҀҀ׀ڀӀԀց2�#�<�-�0�3�(�� �8�-�2�%�,�/�(�/�)�$�/�+� �'�)�-�(�0��)�.�&�'�3�$�/�'�)�!�"�,�'�&�0�!�0�+�!�#�%�8�&�4�9�$�,�,�*�-�3�&�(�,�-�7�(�<�8�-�-��,�$�%�%�*�+�&�%�1�+�/�-�)�0�#�$�)�+�'�(�'�&�1�*�8�&�.�(�2�1�'�6�&��4�)�!�,�0�%�5�)�'�$�,��)� �&�.�(�,�0�(��/�4�&�-�*� �4�.�-�'�.�3�-�0�,�5� �5��7�#�8�/��,�/�0�1�.�;�+�4�+�)�0�&�-�5�7�!�%�.�1�,�'�)�7�9�$�-�'�.��!�/�'�)�1�*�=�'�$� �!�(�-�)�.�8�#�5�*�'�/�-�(�4�"�!��0�"�)�(�5�+�&�%�5�.�-�(�-� �%�2�(�+�+�0�%�/�!�9�%�5��4��,�,�4�)�#�(�'�5�+�-�'�-�(�0�2��7�3�0�)�)�'�+�,�-�0�5�*�0�,�,�,�0�2�+�+�&�-�C�4�+�1�1�1�-�%�*�,�=�$�5�0�,�,�)�7�:�0�'�4�,�*�*�&�5�%��)�-� �.�%�!�#�'�'�&�/�/�!�%�2�"�2�*�,�:�2��"�-�$�:��-�4�$�/�-�$�2�/��&�&� ��-�&��3�&�+�4�'�+�.�6�$�#�/�(�2�"�$�)�*�(�&�*�+�(�-�$�-�/�+� �#�(�*�&�/�,�+�1�;�0�5�3�1�2�'�'�*�&�B�*�+�1�.�#�.��6�.�1�1�*�!�+��4�,�!�0�3�)�/�/�+�)�3�1��,�'� �)�-�!�.�'�/�-�-�5�(�(�)�,�'�"�+�3�-�-��-�'�/�%�*�0�0�,�(��)�0�*�3�%�1�(�-�%�+�$�.�+�)�+�+�)�-�"�-�6�4�-�9�4�5�*�)� �)�/�,�4�/� �#�3�:�!�2�/��6�*�)�6�/�&�0�)�*�/�0�%�#�2�?�$�3�(�׀Հ؀؀ՀՀـ؀׀ǀӀـ׀Ҁـ׀׀րـՀӀӀӀف7�!�6�$�-�'�)�3�!�0��(�*�3�6�/�*�0�1�'�/�'�/�1�%�*�+��&�+��.�(�.�(�:�0�)�'�0�8�4�8�'�'�+�'�"�)�3�)�0�/�.�*�5�%�&�$�*�'�*�-�,�)�.�7�+�-�&��/�)�3�&�!�#�-�3�,�$�+�%�%�+�+�7�!�"�0�$�+�5�6�9�4�(�,�,�/�(�2�!�)�/�:�)�.�+�,�%�:�1�&�+�-�%�/�+�$�"�0�-�/�(�)�9�5�,�/�'�3�2� �%�,�/�/�)�#�0�1�'�5�0�2��'�%�#�2�$�$�*�'�0�-�0�!�)�1�#�0�'�2��.�-�/�-�0�"�0�/�/�'�&�,�5�'�(�4� �'�/�'�7�.�*�1�(�-��%�%�&�/�#�"�/�+�6�$�.�'�,�+�(�6�(�:�(��%�)�2�3�+�%�$�)�/�0�!�7�1�(�0�(�+�'�*�3�1�*�+�&�*�)�-�6�3�6�'�'�1�3�2�+��'�(�+�&�+�1�)�4�%�5�)�/�(�!�*�$�$�&�1�9�(�*�%�+�+� �"�/�$�$�3�(�,�:�'�%�6�7�.�&�*�+�.�/�&�!�'�,�$�&�/�%�+�-�(�"�0�5�2� �0�#�3�$�-�+�+�1�.�4�3�/�)�(�-�*�1�+�2�!�,�"�*�+�;�5�*�,�$�3�.�"�4�/�*�2�9�#�4�4�3�$�0�-�,�$��&�*�5�-�.�7�&�0�'�'�'�2�0�.�&�*�1�*�#�'�0� �+�-� �5�(�'�1�5�*�&��5�4�3�@�-�$�1�,�+�3�)�5�#�0�/�9�4�2�-�"�-�*�"�+�!�>�6�5�%�-�-�4�2�.�%��)�-�(�$�4�5�+�#�!�6��)�&�'� �,�-�+�,�&�/��:�9�7�%�,�/�4�8�,�!�2�%�*�6�1�6�6�*�/�-�)�6�.�(�/�'�5�1�'�%�6�2�0�1�,�2�-�3�.�+�/�-�.�/�)�/�0�&�/�3�!�8�#�/� �1��%�-�'�2��"�,�ր׀րπՀڀҀـ׀ƀր؀ҀЀրՀ׀ۀۀҀـ׀ր؁9�'�-�3�)�2�8�+�2�%�*�-�.�,�(�)�.�0�5�&�$�'�/�%�6� �2�,�4�&�$�<�1�,�0�3�)�%�)�.�-�+�;�-�+�1�$�(��)�,�!��)�3� �(�;�-�4�*�1���%��0�5�!�*�'�,�-�-�<�#�0�-�-�,�8�+�,�7�#�+�,�*�1�$�-�3�(�'�+�)�(�6�,�(�8�*�'�0�1�,� �%�'�)�4�%�+�-�,�'�-��*�4�5�1�-�0�'�*�5�'�&�-�(�-�+�1�6�.�/�*� �5�4�-�8�/�/�*�6�)��)�-��3�3�#�%�-�4�#�/�.�9�*�3�+�#�&�+�$�"�'�,�$�.�1�1�)�'�/�,�2�)�*�6�,�-�)�(�?���"�.�'�4�!�0���%�3�8�'�#�1�*�#�*�-�-�1�0�,�2�/�,�"�/�2�*�'�,�'�5�0�2�'�)�4�.�/�2�$�/�7�1�,�'�)�2�&�/��&�*�(�!�+�-�.�5�#�6�(�/�,�4�5�%�/�-�#�-�"�%�0�9�&�&�+�2�"�/�&�-�7�&��2�2�4�+�2�5� �+�3�/�0�'�*�/�,�,�/�)�*�)�!� �.�5�/�+�(�%�4�+�6�1�!�.�4�-�,�&�8�4�7�+�*�0�/�0�� �%�;��+�%�+�.�/��%�0�*�4��'�,�0�9�!�,�,�$�-�-�4�&�+�1�(�.�*�(��-�3�(��%�4�%�:�1�+�$�-�%�)�0�.�-�4�-�.�5�/�2�+�6�.�(�/�$�+�0�*�.�/�$�/�,�'�-�*�7�)�/�7�2��/�*�(�'�,�/�*�*�/�)�.�.�"�/�+�-�"�� �-��(�.�$�7��"�2�+�#�5�7� �(�+�&�!�2�'�$�4�0�4�+�'�$�(�"�3�&�2�0�+�-�-�%�,�-��+�+�4�#�7� �4�1�.�0�)�*�!�2�#��'�/�6��'�%�)�,�"��4��'�<�(�0�$��1�/�(�6�-�5�:�'�=�,�.�&�)�8�ڀր؀ՀՀ׀݀ـՀÀـӀҀՀՀڀӀ׀Հڀ׀րӀԁ+�(�)�,�2�/�+�-�6�%�$�.�5�%�0�%�*�0�,�9�1�2�)�1�4�*�1�)�/��'�0�:�*�#�$�&�7�*�7�)�6�"�)�3�8�3�'�1�8�,�'�/�:�*�-�-�+�1�+�#�5�-�!�$�.�,�.�+�-��%�0�(�#�,�/�3�1�/�+�5�8�2�.�3�2�/�+� �7�4���/�0��-�'�/�$�&�:�/�&�0�.�5�4�'�)�4�)�+�,�*�*�&�,�-�*�-�.�,�(�.�1�-�-��)�*�*�2�/�,�-�1��9�.�6�*�$�,� �&��8�+�/�#�=�/�4�-�5�#�+�'�+�-�/�(�2�"�.�/�4�(�0�%��-�(�6�$�*�%�7�*�*�-�,�3�/�+�1�=�2�2���0�)�0�.�-�#��1�2�.�/�-�6���*�'�2�.�0�(�3�%�3�'�,�)� �0�4�#�6�/�&��.�$�*�)�.�.�(�%�$�,�(�'�)�,�/�3�(�8�3�0�3�&�*���*�6�'�*�4�-�5�&�.�*�$�)�6�.�+�,�/�"�$�6�(� �#�)�?�/� �,�8�.�-��,��3�*�(�2�9�&�.�-�-�,�#�,�@�5�)�'�)�2�,�.�2��7�$�'�5�-�)�2�)�5�%�)�7�(�'�/�#�%�,�-�/�$�%�/�5�,�+�"�*�"�/�#�/�7�'�.�2�+�'�.�5�0�0�+�(�"�2�:�2�*�-�*�%�-�.�/�/�'�#�%�!�%�(�4�(�"�.�,�7�4��-�,�*�&��(�+�.�.�+��/�$�(�)�,�!��8�/�0��/��$�&�+�0�4�6�)�8�%�,��,�#�#��!�.�-�1�!�0� �:�$�#�0�(�)�'�4�*�#�9�/�(�+�0�5�-�/�%�#�2�/�6�'�2�%�2�+�3�4�#�$�.�/�*�$��-�-�,�7�)�+�*�<�?�+�*�+�8�(�*�,�=�(�,�'�8�*�1�,�)�&��6�6�+�6�8�6�>�$�0�-�7�-�2�;�9�%�3�'�,�'�(�2�'�؀ԀՀրـ׀׀؀ՀǀՀ؀׀ՀЀրրԀҀրԀԀՀՁ-�6�"�.�/�(�:�.�&�*�,�+�1�%�/�/�0�9�(�#�?�-�:�.�.�#�-�!�-�$�.�$��5�5�!� �'�0�1�6�-�+�*�)�)�6�(�+�*� �-�&�0�(�.�(�8�,�0�)�+�"�2�)�/�,�-�*�.�,�,�/�-�"���0�'�$�+��%�,�+�<�%�"��)�$�7�*�*�-�-�7�9�$�0�/�/�4�+�?�<�/�*�)�.�6�&�+�.�9�+�)�'�4��(�-�'�-�0�.��/��"�#�9�(�*�.�)�)�)�+�/�-�1�(�9�'�2�8�'�6�/� �.�)�.�1�.�(�7�+�6�%�+�1�)�/�?�3�<�+�-�4��/�)�'�)�!�9�"�/�1�1�,�(�(��&�!�*�-�&�5�*�%�6�$�,�)�0�$�$�(�>�$�3�*�#�.�2�*�.�(�2�)�7�.�%��0�&�4�'�+���.�,�.�;��9�-�2�%�(�'��/�"�%�'�)�%�1�-�"�%�/�1��2�5�%�7�-�/�7�4�,�4�1�+�'�0�!�*�%�"�)�)�+�-�$�:�0�.�-�1�)�!�/�3�'�7�#��1�/�2�9�-�/� �1�#��!��(�+�"�&�/� � �7�2�2�#�0�$�,�1�5�*�#�2�:�'��$�/�:�2�!�,�*�*�/�1�)�'�0�#�5�)�+�0�&�!�$�%�*�(�"�!�3�)�0�*�0�/�!�4�*�*�-�6�!�"�'�)�#�)��,�&�2�6�>�+�.�1�3�.�7�0��+�3�*�,�*�(�2�4�*�+�-�)�&�(�(�5�)� �.�B�+�!�3�/�3�&�'�?��+�*�>�#�+�#�/�$�+�)�(�-�2�!�/�%� �1�'�$�8�'���%�-�3�%�)�1�1�-�$�+�+�*�+�+�'�2�1�-�0�2�>�+�5�1�%�&�'�4�:�0�2��7�5�+��!�.�(�"�.�2�%�.�,�4�!�)�'�%�+�3�0�:�*�$�'�2�"�5�,�7�*�:�*�&�(�/�9�,�9�?�9�3�+�6��-�4�/�3�׀؀րӀπ؀׀ـՀˀԀ׀Ӏ؀؀ۀӀـրڀӀҀـՁ2�3�0�/�0�"�2�&�/�.�2�,�=��'�)�3�+�2�&�0�,�2�-�(�3��/�*�6��#�:�1�7�%�5�+��7�0�/�4�6�5�(�)�#�5� �/�&�)�!�1�/�&�-�"�-��/�*�/�+�-�-�(�'�*�9�%�$�/�6�*�'�0�+�'�8�3��1�2�'�/�#�5�'�%�(�/�,�-�+�� �1�6��%�;�$�,�,�%�-�:�#�(�&�/�9�.�%�0�+�6�+�'�*�1�+�1�&�-��4�/�+�(�+�*�,�.�.�)�$�'�*�-�*�)�'�6� �(�/�+�%�9�,�'�'�2�,�1�;�4�2�)�8�.�� � �)�1�*�-�7�$�'�0�5�'�8�0�%�&�(�&�&��-�/�+�&�&�8�-�&�,�)�5�4�'�.�!�0�,�1�/�+�'�"�#�.�*��,�4�'�'�.�5�3�&�-�-�'�"�&�%� �2�4�-�/�"�5�0�(�� �5�)�-�+� �*�2��1�5��)�2�4�,�0�!�#�,�%�2�8� �4�.��(�-�0�2�(�(�*�'�)�$�%�#�/�%�1�)�(�7� �&�,�'�$�!��4�%�1��/�(�,�9� �#�,�)�1�'�.�4�"�*�.�)�-�8�*�2�"��1�*�3�$�'�'�2�.�-�%�4�$�/�1�$��+�"�)�/�&�0�*�,�(�/�1�/�.�)�0�4�2�#��&�/�$�%�/�%�-�'�.�$�'�/�0�.�G�9�*�0�.�1�/�1�=�0�)�(�0�1�*�%�"�"� �2�+�1�0�"�/�9�5�<�!�0�$�)�*�(�.�#�4�3�1�3�;�/�/�%�1�7�(�-��-�3�&�2�*�,�*�*�/�3�=�%�.�&�"�$�-�!�-�0�*�=�,�7�5��'�%�*�5�E�$�0�%�9�;�(�#�.��6�?�)�)�1�� �'�"�&�*�0�&�)�<�/�-�"�8�0�.�-�#�'�$�/�8�(�2�)��8�)�1�,�3�-�'�5�0�+�-�<�"�3�.�(�2�/�*�%�-�&�'�:�+�)�#�0�4�7�Հ׀׀ҀҀӀڀԀҀŀ׀׀ـӀրӀրՀրрۀԀـց#�(�+�/�)�1�*�+�:�'�2�'��*��@�.�(�/�+�-�'�-�%�5�1�3�'�2�)�/�$�%�0�.�2�(�7�5�.�(�-�/�+�)�'�#�.�0��$�3�3�+�'�+�/�-�/�%�3�)�/�6�1�/�2�"�)�.�&�+�+��"�&�'�/�3�"�0�1�9�-�2�-�&�'�5�2�.�.�-�'�1�&�%��*�+�2�8�-��5�'�-�+�?�'�$�7�+�3�%�+�+��4��&�)�(�!�<��'�3�2�.�%�/�#�)�8�.�1�#�1�1�&�1�,� �0�B�0�/�-�2�+�&�7��+�#�2�"�/��0�.�%�1�/�/�4�:�3��#�+�"�-�$�#�+�.�4�'�-�/�<�5�>�;�'�(�(�1�1�'�2�'�*�-��,�-�)�5�/�-�+�5�1�-�.�#�-�;�/�%�'�/�-�.�,�/�!�-�.�,�+�*�!�)�2�-�4�0�(��.�/�"�/�"�-�/�*�%��%�1��#�1�:�0�&�#�'�!�+� �$�+�/��%�)�0�(�0�+�+�/�5�*�#�-�*�+�9�/�-�*�5�*�,�,�5�/�(�"�2�,�+�/�6�,�+�,�4�4�"�+�1�7�1� �!�3�2�+�%�5�%�'�(�1�)�/�2�4�*�#�8�/�4�.�0�$��*�/�1�5�6�+�(�"�,�+�*�+�0�/�-�/�$�(�)�5�+�1�"�!�-�*�(�1�,�-�-�$�1�/�)�+�&�%�%�-�6�-�-�/�*�(�3�*�'�,�"�8�3�9�*�"�0�.�,�1�)�&�.�+�2�.�(�8�*�:�(�-�1�#�1�)�-�/�-�-�#�7�,�2�/�+�-�#�+�"��*�9�,�.�%�+��*�3�7�+�(�&�0�0�4�1�7�3�+�<�)�1�,�9�2�*��-�-�#�5�2�:�5�)�(�%�0�.�-��+�&�7�.�.�3�/�$�'�"�5�$�2�4�3�0� �%�7�#�(�6�:�.�1�0�)�3�4�!�5�.�%�'�)�!�'�*�-�1�2�'�-�(�/�-�&�-�:�!�#�'� �2�րրрԀԀ׀׀ـӀǀրڀӀրԀ؀׀ր׀ۀـ׀Ҁہ)�+�-�%��/�,�)�/�,�.�$�#�#��:�)�4�$�0�#�)�.�+�%�3�!�1�,�*�/�(�0�1�#�&�6�7�1�1�'�0�/�/�1�&�)�(�+�2��;�&��,�8� �0�*�1�*�%�$�2��-�4�A���'�&�)�-� �+�)�'��1�:�'�5�4�-�'�+�3�'�/�5�/�.�'�!�0�)�/��%��*�-�-�3�:�4�/�,�%�.�*�&�%�1�$�8�(�&�5�%�.�1�'�*�+� �2�:�1�.�+�7�*�*�*�%�1�*�*�,�+�2�!�;��3�$�3�5�,�-�,�+�4�,�,�+�3�2�0�&�&�.�$�)�(�-�.�-�8�)�:�(�0�+�%�J�'�/�)�.�&�'�4�-�/�)�:�-�0�4�/�0�'�;�$�"�,�+�,�+�*�)�-�$�+�+�*�#��-�$�)�#�/�'�/�-� �)�/�4�%� �&�2�)�9�$�-�+�-�!�*�.�/�1�*�3�0�(�7�0��'�"�&�-�'�,�7�+�$�+�8�1�+�"�,�.�,�3�4�)�#�0�,�1�)�3�0�=�-�2�)�!�'�&�1�%�%�2�"�4�.��8�4�(�,��&�-�&�+�,�"�#�"�?�)�+�2�!�;�(�*�#�%�1�*�(�*�0� �1�"�(�/�.�:�2�7�2�/�#�,�8�)�.�!��)�2�-�*�.�/�'�,�$�/�(�#�&�/�8�*�,�!�)�8�%��*�)�*�8�?�'�-�%�!�4�.�"�*�*�*�1�*��2�%�9�"� �)�"�;�!�(�+�1�)�&�.�2�*�3�,��)�(�!�"�4�(�+�,�2�#��'�*�(�(�&�-�0�"�+��*�-� �*��.�&�&��)�+�-�.�)�*�&��.�3�8�0�,�%�5�)� �3�;�/�)�2�/��9�8�&�7�%�+�)�,�/�&�'��3�#�'�/�'�2� �3�4�2�)�%�1�&�(�6�0�3�"�3�*�/�-�*�;�,�)�*�*�0�7�4�(�%�/�5�,�/�+�2�'�,�0�2�5�-�,�$�-�2�,�*�*�Հ׀ՀـۀՀـՀҀɀ׀ҀڀՀրрـ܀Հր׀Ӏڀԁ ��2�>�5�(�&�4�9�$�)�.�1�%�-�*�.�0�/�0�-�7�,�0�-�5�!�1�/�/�3�)�:�&�,�5�+�1�.�'�+�4�*�2�&�0�4�-�"�,�/�%�$�+��1�0�+�0�(�+�0�,�*�,�0�9�.�"�0�8�,�*�/�3�+�4� �/�)�*�*�,�'�*�5�+�3�.�2�+�%�!�,�)�:�'�&�,�&�-�1�8�%�/�:�#�2�1� �-�$�-�(�(�#�&�.�6�?�2�:�+�%�1�$�3�(�&�+��/�+�,�*�*�/�.��-�'�&�1�1�$�4�*�/�$��9�4��-�$�.�,�$�+�2�'�8�(�6�4�+�$�!�(�!�/�/�3�/�!�0�5�2��3�*�/�"�0�6�1�'�0�?�2�"�1�2�)�;�0�/�$��4�� �'�%�9�1�"�#�%�$�-�(�-�'�$�5�4�*�)�/��8�/�.�.�5�7�$��-�,�$�3�%�'�.�6�2�+�%�+�&�/�+�7��*�$�&� �'�+�+�*�+�3�4�/�1�"�-�"�5�2�*��)�.�0�+�2�4�4�$�.�*��'�)�,�6�'�(�4�0�+�/�+�#�/�)�0�*�)�+�%�#�/��-�.�2�)�-�)�2�)�0�2�,�.�2�4�&�%� ��%�2�0�:�(�0�)����-�&�0�=�$�,�#�6� �%�-�.�!�*�(�/�$�*�%�+�!�)�,�+�4�0��9�)�0�3�.�%�-�2�(�)�;�+�-�0�+�,�-�H�0�*�(�(�3�-�)�)�-�2�#�+�1�.�.�3�"�0�!�(�*�&�4�/�'�0�%�$�1�1�1�0�*�"�5�6�)�%�&�'�,�!�4�"�,�/�)�2�*�,�0�%�-�)�*�(�-�.�!�.�(��:�4�)�*�&�#�8�%�)�+�3�-�*�0�4�/�&�%�)�4�8�-�6�'�%�/�%�&�4�&�3�,�'�$��.�2�8�(�:�.��+��#�'�(�#�+�1�3�,�(�.�*�4�&� �*�5�3�7�5�+�(�+�+�'��(�'�1�5�,�5�-�*�$�ـ؀ـԀՀڀ؀րրǀԀՀ؀ԀـրրրӀՀրـՀՁ4�+�+�6�2�'�-�3�5�>�7�)�,�(�8�$�#�/�,�$�(�/�-�>�'�:�)�3�7�2�&�)�/�%�%�)�7�1�-�1�0�.��.�,�#�,�0�-�+�$�0�2�!�8�/�+�:�#�*�0�-�.�0�4� �$�%�0� �/�+�#�/�+�1�-��2�,�/� �3�(�#�2�3�6�+�=�7�"�5�0�(�-�$�'�-�*�,�*�7�*�(�+�4�7�/��)�&�*�!�2�0�)�%�1�'�(�3�)�.�+�)�"�2�%�2�/�(�;�&�5�8�*�%�,�+�&�1�.�*�0�:�-�/�3�-�*�*�*�1�2�+�0�&�5�7�8�!�/�%�/�)�-�A�(�;�)�1�&�-�!�$�$�&�'�-�,�&�,�/�&�(�.�'�+�)�5�%�(�/�&�.��+�5�*�3��#�#�:�!�#�(�,�&�)�&�6�)�/�/�#�"�'�!�6�0�(�)�.��(�'�(�1�+� �+�"�$�.�)�/�+�'�;�@�1�#�-��#�(�$�.�)�.�/�)�&�(�*�6�5�.� �,�'�+��%�-�/�+�/��(�,�'�3�%�'�4�/�1�.�'�(�%�0�2�.�'�0�(�)�0�,�(�+�/��*�&�&��.�'��/�:�.�'�-�!�'�(�(�0�.�*�+�+�4�$�,�5�*�/�����4�$��4�,�'�-��9�,�"�2�,�;�(�(�#�9�1�0�,�0�1�,�5��-�4�'�*�(�4�-�-�&�2�&�.�7�$�2�#�P���+�'�,�*�$�$�1�!�,�(�;�)�,�.��'�&�7�%�#�)�*�-��/�-�(�(�1�+�/�"�+�-�%�:�2��3�1�.�&�*�2�(�5�0�;�&�!�1� �*�%�0�1�+�&�1�(�7�.�2��'�,�1�0�"�/�5�.�-�+�)�!�-�/�;�&�/�$�1�"�/�-�<�3�1�(�,�(� �)� ��7�$�5�0�,�7�"�1�(�0��.�#�&�0�#�+�!�2�+�'�4�*�&�.�5�.�3�4�/�%�$�.�.�%�.�5�<�9�%�0�#�0�6�Հـ׀րԀՀЀπ׀��ڀՀր΀׀Ҁ؀؀ڀԀــҀځ(�;�-�.�6�(�)�&�$�'�-�.�1�3�$�7�)�1�+�'�*�0� �%�:�:�2�8�-�7�5�8�+�+�+�3�(�%�1�-�)�(�/�1�+�(�/�=�)�'�0�6�0�1�#�"�(�*�*�#�!�)�.�*�� �)�#�&� �5�6�,�-�=�'�%��1�3�6�2�(�!�'�*�)�3�*�2�1�&�7�/�(�,�+�,�'�,�/�.�9�'��*�-�6�/�(�+��2�-�*� �3�3�3�,�5�:�/��,�/�.�)�-�,��(�0�5��6�)�+�1�-�,�1�7�4�7��.�2�-�2�0�"�/�,�5�&�*�6�0�%�0�*�*�'�+�/�#�(�"�&�#�6�"�1�'�5�'�2�1�-�!�)�/�-�"�0�0�)�1�0�1� �$�3�0�+�(��'�)�,�=�*�3�:�/�+�5�(�0�.�2�2��1�.�.�6�$�4�(�%�,�2��*�/�8�2�,�)� ��/�6�)�*�,�3�)�4�%�$�4�3�/�+��7�*�:�5�7�"�$�(�0�*�.�+�8�#�>�,�%�0�,�,�-�#�/�8�1�1�*�0�*�#�2�1�'��*�+��'�3�7�5�1�/�(�+�8�.�.��!�-�,�)�)�!�(�(�+�8�,�&�,��"�5�/�$��*��1�7�]�o�h�2�-�� ��,�)�3�!�3�0�'�,�#�*�&�(�+�*�$��2�.�3�3�2�6�/�!�-�*�&�1�/�#�+�.�7�,�!�)�,�(�7�+�6��-�=�&��(�"�)�,�*�(�*�0�4�,�*�;�"�&�+�'�2�/�+�7�&�&�-�8�&�-�9�$��(�#�'�6�"�/�.�-�0�%�3�$��.�/�,�.�8�(�)�2�)�*�4��/�,�+�1�6�/�0�6�(��&�8�2��/� �:��.�*�!�7�*�#�&�2�,�-�-�#�'�.�2�6�/�-�7�)�$�>�5�4�;�0�/�.�1�#�/��,�!�7�0�+�'�+�*�3�:�+�5�)�!�*�4� �4� � �3�2�5�9�(�$�'�*�*�-�&�.�C�0�Ҁ؀ҀӀ׀Հۀڀ؀ÀҀрրӀӀڀҀՀ؀؀Հ׀ҀӁ;�5�'�)�#�+�1�8�.�/�5�7�+�4�1�4�'�:�*�#�/�2�-�4�(�/�!�(�7�"�:�2�/�(�%�1�(�7�+�*�%�%�*�-�)��&��(�$�-�&�-�2�:�.�,�1�1�8�&�*�*�"�)�/�)�-�3�)�.�$�)�9�/�'�7�5��#�1�%�4�&�!�1�+�2�-�,�$�*�)�$�+�.�)�4�/�!�3�/� ��<��1�&�%�%�/�5�/�"�+� �$�,��1�-�)�7�.�5�7�&�2�4�)�$�2�+�&�)�1�(�#�,�8�'�*�#� �.�5�8��2�0�#�6�(�,�0�#�!�1��'�.�/�,�/�3�%�(�$�-�=�*�:�*�/�,�9�7�0�(�)�&�/�*�-�$�&�3�+�*�/�4�'�"�'�+�#�#�-�3�#�-��3�;�)�$�3�%�*�(�'�$�(�+�#��&�)�2��+� �$�0�,�*�1�/�%�*�*� �7�?�%�+�3��+�)�5�6�&�2�7�*�5�1�6�1�0�/�(�)�(�/�+�*�7�5�,�)�)�$�0�4�&�5�=�1�-�%��/�1�(�.�,�/�2�=�$�2��'�8�+�.�&�.�-��,�3�%�)�3�>�#�3�*�2�)�.�&� �)�*�"�0�.�$� �!�+��'�'�2�*�9�e�����-�/�!�;�'�'�.�$��+�0�'�(�!�0�(�,�/�.�*�1�(�1�3�4� �9�+�3�(�4�$�;�6�/�6�.�+�$��'�*�-��+�5�6�6�.�/�5�2�4�6�3�-�*�+�'�0�$�2�"�&�1�)�(�"�1�4�1�(�+�+�1�/��-�'�.�*�0�.�2�&�:�@�.�.�>�,�.�&�!�,�)�*�-�/�,�(�$�4�(�$��!�.�0�/�,�3�3��1�3�*�3�/�+�8�0�-�2�'�-�%�&�&�3�,�*�4� �'�-��2�,�)�/�0�6�2�$���)�.�%�0�-�2�)�5�3��'�)��8��-�1��'�+�5�/��*�(�3�$�<�/�/�*�+�+�(�0�)�0�5�3�)�*�׀Հрۀ׀؀ԀڀՀĀ؀؀рՀրҀـր؀ـπڀ؀ׁ2�+�5�'�5�'�-�+�)�4�/�3��*�@�3�5�)�1�7�-�,�+�:�)�'��*�,�/�,�$�+�+�%��'�)�'�0�/�-�4� �*�.�2�4�-�#�"� �0�6�-�0�-�*�$��4�)�1�&�3�#�,�/�9�$�/��.�3�(�+�(�2�$�:�%� ��7�#�#�/�.�#�,�'�#�-�,�7�-�*��.�-�-�'�2�&�5�,�-�,�)�.�(�2�.�8�0�5�,�1�*�)�@�*�)�/� �$�/�/�1��#�+�0�.�0�(�0��*�*�-�'�*�)�.�2�9�&�&�&�#�$�.�%�.�3�"� �/�2�"�&�%� �+�,�'�%�0�+�&�6�/�:�:�.�;�1�&�'�'�3�(�%��0�,�%�'�-�%� �/�-�$�*��'�?�%�,�5�1�'�%�3��!�'�'�*�/��/�'�1�"�)�3�&�%�%�+�'�+�6�&�&��0�-�'�/��5�0�0�*�/�=� �/�2�/�2�#�#�*��*�%�)�2��/�"�2�1�.��3�2�(�/�+�$�1�,�'��,�&�/�"�/�-�%�/�:� �$�#�$�(�+�4�1�2�'�2�/�*�2�3�-�+�@�.�7�3�4�*�1�-�)�,�)�;�$�1�#�2�5�$�*�3�)�"�4� �$�-�l�̆����=�&�!�)�.�)�,�5��,�)� �.�/�3�.�$�/�8�+�&�(�%�%�/�-�4�*�-�)�+�$�.�(�0�'�8� � �*�+��)�/�%�.�1�#��(�%�*�)�8�2�4�,�2�"�*�@�&�.�#�*�0�9�6�.�"�"�*�(�'�)�$�1�1�(�!�3�&�%�(�*�.�'�#�$�&�7�%�.� �1�%�%�-�'�(�6�*� �'�)�/��)�1��#� �0�'�4�(�$�+�@�4�*�#�,�-��1�'�/�.�6�9�8�"�&�+��0�-�+�+�<�(�/�+�3�.�/�-�+�.�.�*�4�0�!�$�$�6�3�8�%� �5�&�.�&�*�*�2�/�-�1�.�/�#�-�3�*�*�,�&�1�,��+�2�ۀ؀݀Ӏ׀׀рπՀ̀րҀ׀րՀЀπــրՀڀрׁ2�8�+�-�!�3�,�7�6�-�+�%�)�!�-�&�(�.�6�)�+��'�5�9�%�'�)�!�8��7�-�)�5�#�'�"�%�3�8�!��+�+�-��(�2�$�)�>� �+�5��*��0�6�)�0�&�/�4�2�'�%�7�.�%�+�#�!�/�,�2�2�6�$�4�#�.�0�-�/��0�&�(�-�'�3�8�+�&�#�,�%��)�2�/�4�-�5�'�-�8�4�0�0�"�!�4�.�1�+�3�&�5�/�3�9�/�'�)�0�0�)�-�2�-�(�,�!�&�$��)�!�2�7�#�(�3��*�.�!�2�+�2�1�)�+�:�)�+�4�)�.�/�(�&�*�2�/�(�-�0�#�)�%�3�&�0�1�-�9�1�)�)�5�+�.�+�4�&�)�,�(�*�(�'�,�#�*�4�,�0�'�4�-�)�/�9�)�0�/�1��,�7�5�-�/�.�*��8�2�'�3�'�%�(�&�4� �#�.�/�(�.�/�4�-�1�"�.�-�(�.�$�1�,�-�/�'�,�+�0�'�-�4�=�$�&�(�)�6�!�(�5�0�2�4�8��-�0�,�)�,�'�4�%��#�+�3�+�,�1�A�,�.�+�,�&�0�,�;�%�'�+�-�*�#�/� �&�>�-�/�-�3�!�1�#�+�-�1�"�'�4�/�!�0�-�*�0�F�5�A�3�-�*�8�8�.�*�'�)�!�(�(�0�'�.�&�6�?�2�&�4�#�0�0�7�7�-�,�(�5�(�0�2�-�-�1�/�1�+�0�,�1�%�8�*�#�#��3�%�'�(�/�)�)�.�%�$�$�)�)�(��$�,�/�$�2�1�,�0�&�!�)�%�:�'��5�-�3��=��%�*�%�9�1�(�)�)�)�(�1�7�(�6�.�0�.�.�&�*�4�*�,��4�$�;�!�(�-�!�+��1�+�/��%�%�3��.�"�'�.�/�=�6�#�0�1�3�,�%�=�.�3�-�-�-�1�1�0�.�2�3�3�'�2�.�;�.�7�A�'�1�(�'�/�1�#�.�)�"�!�9�1�2�6�*�1�%�3�3�'�1�/�-�8�'�7�/�Ѐ׀Ӏڀ׀ڀր׀πÀԀҀ׀р؀Ҁ׀р׀ӀҀӀ׀؁8�1�(�+�3�=�+�(�3�'�0�-�$�,�=�*�*�+�4�.�"�#�,�)�(�!�*�(�!�*�&�5�-�1�6�3�2�4�&�/�4� �*�4�7�2�,�1�,�5�3�(�&�%�<�'�'�2�2�1�*�-�6�$��$�,�<�7�(�"�,�1�)�)�3�1�4�*�5�(�9�/�"�+�-�1�8�/��,�2�)�6�"�(�.�(�(�,�4�(�:�,�<�=�/� �3�+�.�7��)�/�#�2�(�)�+�*�+�.� �/�*�*�,�,�2�+�,�&�,�+�>�+�)�,�.�,�0�*�*�#�%�.�&�%�$�/�8�5�'�2�'��0�#�3�+�(�+�,�9�)��*�(�-�)�'�*�0�2�6�0�4�)�!�0�0�1��-�0��-�#�5�3�(�-�'�(�$�3��.�1�'�(�2�6�+�(�;�&�*�-�&�4�$�%�*�0�;�=�9�)�1�:�*�%� �*�)��/�0�5�'�"�/�&�%�.�"�/�,�4�-�/�,�&�%�/�(�5�5�)�(�/�'�3�0�%� �)�+�(�"�9�-�4��/� �,�-�-�3�+�1�*�<�2�#�$�*�#�/�.�)�1�/�$�1�5�%�&�2�1�6�+�%�!�2�0�,�0�-�!�0�*�%�&�0�*�0�'�*�*�$�3�,�(�3�#�*�)��3�&�1�<�&�2�)�/�/�"�0�.�'�2�%�%�3�+�#�9�0�+�.�!�#�3�(�*�'�#�+� �%�2�.�,�%�%�.�*�5�4�6�5�9�7�(�-�,�-�4�+�7�(�7�*�(�9�/�'�*�,�:�+�1�8�+�4��(�#�!� ��6�0�1�0�%�'�0�9�#�/�*�(�.�=�/�!�/�3�;�$�%�(�(�/�1�'�'�5�%�.�/�0�2�2�-�6�#�8�3�'�#�1�'�2�"�3�"�'�+�$�+�)�'�&�*�"�*�/�*�6�*�0�'�(�+��'�1�4�4�"�)�2�'��2�3�#�&�/�3�*�6�(�%�)�%�)�+�'��1�5�4�*�*�.�/�$�.�*�#�!�,�6�.�1�4�2�(�)�'�'�6�"�+�ԀӀրՀր؀րڀ׀ǀـڀрրր܀ӀӀ܀ՀրրӀс=�'�6�?�$�>�,�5�5�+�%�,�-�3�.�(�#�5�,�2�/�2�0�*�/�+�4�&�)�3�-�,�1��6�(�*�$�#�#�3�.�/� ��(�-�*�(�4�&�%�7�(��*�$�/�0�/�&�.�-�,�)�2�-�4�*�,�5�&�-�%�4�*�-�&�*�*�,�*�3�@�(�-�-�7�,�/��(�(�0�-�'�1�!�1�)�*��6�%�,�4�#�%�'�'�+�/�,�,�+�"�-�+�%�&�*�#�3� �/�%�/�4�7�&�0�'�%�/�0�+�+�&�/�,�4�(�&�0�,�6�1�6�"�7��0�,�!�-�/�2� �#��&�,�)�(� �)�3�#�=�%�)�)�1�'�:�4�1�*�'�7�2�-�#�+�+�+�$�(�-�-�(�!�'�,�'�/�6�.�2�,��2�(�)�+�'�(�'�1�-�+�,�(�$�*�1�0�$�'�.�-�-�-�,�5�&�(�'�&�&�1�)�*�)�)�+�6�*�$�)�#�(�+�.�!�9�-��$��(��'�1�7�#�,�3�0�/�*�#�.�'�/��)�*�'�$�B�!�1�*�0�4� �5�*�1�*�7�0�-�/�-�,�"�'�1�6�8�2�#�+�*�.�3�0�,�$�%�6�5�4�,� �2�6�"�&�,�1� �+�2�-�4�2�3�/�3�%�3�3�1�,�/�!�%�*�3� �-�'�(��$�+�3�$�$�-�(�-��,�3�9�+�/�'�-�#�%�/�6�0�(�)�+�8�(�4�-�,�#�&�*�#�+�3�0�!�3�/�8�)�&�%�/�!�"�4�=�1��4�)�'�.�&�/�1�6��,�&�(�*�9�-�1�6�0�&�/�.�4�'�7�,�)��9�)�8��(�(�1�)�(�%�0�-�'�2�0�$�,�3�%�-�%�2�+�-�)�0�+�(�&�.�'�*�/�+� �#�7��+��2�+�*�5�1�;�6�"�+�:�2�*�'�)�6�*�9�5�.�+�,�7�7�)�)�8�*�$�4�4�2�,�1��,�0� �,�)�.�-�+�#�%�%�1�3�)�1�.�9�=�4�.�(�0�:�5�ՀҀՀڀЀԀрـրĀ؀ӀрՀԀӀӀ؀؀ӀӀՀ؀ԁ+�,�(�.��&�'�*�0�-�2�7�1�.�5�*�&�+�0�+�*�2�$�4�.�$�$�'�5�*�&� ��'�/�3�7�.�'�4�-�'�0�2�(�&�6�7�5�3�-�/�.�,�'�'�+�+�.�7�$�1�%�"�.�&�3�7�/�:�*�#�-�.�:�7�$�)�/�$�1�/�.��!��)��*�.�$�#�&�,�3��/�1�0�+�4�'�+�$�"�'�/�;�-�-��@�"�*�9�*�4�0�-�*�"�*�-�,�'� �/�&�$�)�2�(�+�!���6�1�.�+�#�;�$�/�A�2�/�/��&�1�)�5�3�2�0��(�.�"�$�7�)�&��0�,�2�%�4�/�#� �7�)�6�%�)�/�6�#�,�2�(�'�&�5�-�.�.�(�*�!�&�&�.�5�(�-�3��+�/�/�+�3�'�)�*�"�,��1�(��+�3�-�)�/�%�-�/�#�/�"�5�1�3�1�*�.�+�)�'�)�!�$�.�!�(�6�'�+�/�+�/�(�0�6�1�$�.�5�3�1�%�+�/�+�(�)�'�.�#�!�/�-�(�2�,�3�)�0�)�2��4�7�2� �$�&��1�.�-�,��0�)�,�'�-�'�&�3�)�+�-�+�3�4�/�+�0�9�,�+�-�0�+�)�1��7�/�.��#�-�&�)�"�*�4�8�3�:�1��&�!�'�%�#�&�'�1�'�!�&�%�%�,�-�'��4�(�/�=�0�*�5�1�%��"�4�&�+��'�"�%�+�+�!�&��$�-�.�%�(�(��>�%�'�6�1��,��"��,�#�"��@�&� �+�%�)�&�.�>� �&�+�)�7�%�*�.�;�.�)�&�(�)�*�*��'�8�%�3�+�/��1��)�0�+�,�'�&�9�(�"�.�9�5�%�,�� �/�+�=�8�#�/�7�+�+�=�-��%�*�1��/�4�$�#�2�8�+�3�>�+�&�5�=�$�5�1�/��1��/�5�7�#�>�&��/�!�/�,�!�8�-�,�'�'�$�+�*�8�4�.�;�1�,�3�;�&�*�*�3�'�ڀӀڀӀրԀӀ׀րĀҀ΀πۀ܀؀Հр؀ӀրۀրՁ!�0�3�(�&�3�)�2�0�&�+�-�*�3�8�/�+�1� �4�1�+�7�,�.�*�/�+�+�4� �(�#�"�&�/�,�(�-�&�%�&�/�.�&�2�(�&�6�1�%�6�2�&�!��2�4�*�:��,�.�-�+�-�0�+�&�)�(��%�0�*�/�(�4�'�0�&�+�)�(�'�3�6�'�7�,�0�7�=�/�%�7�0�(�0�'�1�%�5�;�"�&�,�.�8�6��/�-�/�4�(� �#� �*�+�9�!�#�$�&�-�5�-�(�.� �/�0�'�%��%�,�.�7�6�8�'�3�-�.�(� �/� �.�#�+�0�8�2�)��'�/�!�,�.�7�3�9�-�"�+�+�"�"�!�2�5�4�+�1�#�(�4�'�!�.��%�7�-�*�5��(�:�2�/�,�+�,�*�0�-��2�4�6�,�&�$��0�7�)�*�/�'�-�,�2�.�,�"�+�.�-�4�%�*�,�0��+�-�.�0�-�0�*�%�-�,�&�'�-�*�0�,�+�+�'�%�&�)�!�*��9�,�-�+�8�(�'�'�"�#�&�,�.� �.�-�0�+�%�$�-�$�)�+�,�(�/� �$�9�*�/�*�$�1�,�.�+�+�!��"�*�6�3�D�-�$�%�0�1�*�/�#�/�(�+�$�"�,�$�3�B�0�$�0�.�$�1�$�1�.�<�,� �$�1�"�B�3�'�'�7�1�5�,�'�(�-�1�,�/�2�+�$�(�6�+�$�'�+�5�%�&�+�(�$�,�)�(�%�6� �+�#�&� �1�*�3�6�5��0�*�*�1�.�%�/�0�1�6�2�#�/�!�'�+�9�,�,�,�+�1�3�,�2�6�+�'�=�5�-�-�,�)�(�9�,�'�(�"�=�2�%�.�4� �1�+�2� �5�,�0�,�!��5�%��-�(��,�%�)�4�,�"�7��/�,�0�+�(�C�(�4�"�/�2�.�&�%�+�2�,�)�$�-�6�,�(�)�)�(�.�)�)�8�+�1�4�.�*�*�.�*�/�+�'�"�:�%�.�0�)�+�"��5�+�-�$�+�"�'�.�%�2�'�(�+�ӀԀ׀׀Հـ؀րҀ΀Ԁ؀ـҀ׀ӀӀ׀ۀԀԀԀԀՁ0�+�(�0�$�(�1�+�)�)�-�&�6�"�"�+�0�!�2�2�,�)�.�.�2�-�.���8�)�5��'�/�.�&�1�"�*�*�2�+�*�4�$�%�.�)�-�*�7�'�&�/�4�+�3�/� �#�:�-�,�/�&�%�+�2�=�-�'�/�)�(�5�'��)��+��'��*�7�-�*�+�)�)�&�(�4�/��6�4��'�'�%�$�'�#�/�=�3�7�#�5�2�/�/�@��5�0�3�-��+�.�&�'�)��3�/�+�=�/�-�$�4�1�<�"�-�6��)�/�$�5�-�1�&�-�,�!�'�0�+�(�3�!�-�.�+�,�'�%�5�(�.�#�+�+�.�$�*�5�"�5�)�7�'�=�+�0�*�4�)�*�.�,�*�1�$�(�.�,�-�2�0�'�0�.�&�&�!�-�0�,�)�+�'�*�0�%��,�(�$�+�/�#�$�&�$�'�.��(�&�,�+�6�&�.�(�&� � �5�'�?�;� �*�-�&�#�)�*�!�2�%�,�6�.�5�$�$�&�:�5�#�.�,�#�+�/�(�$�$�&�2�&�%�$�)�,�-�-�/�6�(�2�"�%�0��*�1�.�,�5�,�'�,�3�8�(�'�3�,�%�*�%�/�$�7�*�6�$�/��#�1�3�+� �"�(� �%�/�0�/��*�-�.�)�)�8�$�-�2��+�+�D�'�)�0�(�!�4�)�-�(�(�1�*�(��%�)�)�/�(�'�/�2�1�%�,�)�&�'�!�,�,�1�<�1�0�(�4��7�1�1�5�-�%�*�&�:�#�2�,�/�%�$�$�)�/�5�%�+�$�-�$�5�*�+�1�1�-�!�,�1�0�#�/��#�#�$�?�0�%�*�1�"�-�!�7�?�6�4�0�4�+�2�0�2�:�&�.�5�*�3�%�,��.���2�1�'�A�)�&�(�6�*�8�&�!�)�-�3�'�&�+�,�>�0�.�$�)��7�$�'�5�:�,�=�0�&�%�2�*�-�#�2�0��-��-�+�"�+�7�.�2�/�(�#�,�0�'�3�(�1�"�'�1�0�4�9�3�,�/�؀Հ؀Ҁր؀րӀ׀Ȁ؀ـހ׀׀Ԁ؀ڀՀՀրՀـ؁.�,�:�.�:�8�+�0�-�1�'��'�3�'��*�1�6�9�>�%�*�3�6�*�+�/�'�1�$��,�!�'�*�'�$�&�!�(�)�1�-�.�*�-�&�;�7���1�,�(�*�-�(�+��"�"�.��7�*�0��-�+�.�&�,�"�3�$�-�/�/�,�%�-�/�+��)�.�$�0�4�'�*�'�*�/��1�2�+�(�'�-�,�-�-�2�1�4� �*�#�'�'�-�-�-�#�1�(�0�4�3�+�-�,�%�'�)�-�"�0�4�%�#�2�'�5�:�/�.�*�0�,�1�.��+�$�9��!�4�.�&�-�6�%�&�.�(� �.�&� �%�2�/�9�(�"�*�/�,�/�%�8��*�'�%�1�3�/��9��'�+�%�*�)�5�1�/�/�)�3�7�*�+�!��)�*�*�,�1�/�'� �+�0�3�(�(�#�'�3�'�)�(�)�.�)�-�.�0�-�.�!��-�"�/�'� ��1�3�,�)��9�*�5�/��$��0�*�0�&�!�.��)�*�$�#�,�(�!�;�(�*�#��/�5�+�$�9�'�/�6�9�=�#�*�&�.�+�3�(�2�2�+�7�+�(�#�(�-�+�0�,�'�"��.�/�'�1�(�.�3�$��0�1�0�$�3�1�*��(�&�/�'�*�0�7�0�2�"�!�/�$�>��7�)�3�&�:�"�&�)��3�2�#�*�&�'�-�%��2�#�(�+�%�*�'�5�5�0��,�/�?�-�2�7�0�!�0�5�1�9�*�+�(�/�7��.�$�4�%�+�-��)�4�"�0�!�-�/�)� �&�'�/�&�.�-�'�'�*�3�3�,�0�'�1�%�.�/�*�#�4�.�)�%�!�+� �)�#�*�1�/�&�(�'�4�.�-�+�"�!�)��-�$�*�"�4�(�(�/�)�8�-�+�$�7�)�&�2�5�7�5�1�5�+�,�"�+�*�%�/��2�+�0�/�4�/�/�#�/�8�0�)�<�0�)�(�3�)�%�0�"� �8�7�5�&�,�:�)�/�7�:�8�*�.�*�=�'�7�6�,�/�(�3�؀׀؀ҀԀՀԀրՀȀ΀րրӀــԀ׀ـրՀрӀҁ+�*�$�3�1�;�,�%�,�-�/� �.�.�-�.�3�$�.�!�+�.�)�,�3�+�+�$�$�0�&�'�)�2�-�3�3�/�?���"�'�!�4�#�-�4�8��"�$�*�/�"�-�+�0�-�%�/�/�*�%�&�&�/��*�1�-�'��4�)�*�+�,�3�5�9�%�/�8�0�%�2�5�+�%�/�)�-�,�"�@�3�$�2�6� �4�*�.�+�9�(�3�4�+�*�&�%��/�3�$�+�1��(�/�$�&�-�-��,�&�,�,�.�.�,�(�4��5�(�-�&�'�;�'�2�,�-� �0�#�&�*�.�:�'�3�"�3�'�-�2�-�2�&��&�#�.�"�D�+�:�$�8�/��.�!�0�%�6�,�/�*�%�3�1��/�(�'�)�'�'�-�/�&�(�%�,���5�.�2�1�-�-�*�"�1�1�!�%�.�3�/�)�.�'�"�-�.�/�+�'�%�3�"�$�/�*�#� �4�-�,��/�4�2�0���5�(�&���'�3��#�'�2�(� �,�.�'�/�4�2��<�.�%�4�0�-�#��(�.�1���/�*�A�,�#�)��#�/�4�-�%�'�-�*�2�/�*�4�$�,�9�)�+�7�,�1�)�-�#�/�*�3�4�+�$�6�1� �/�&�:�.�2�;�*��/�+�5�%�%�3��&�3�+�-�"�9�1�6��(�?�.�)�:�)�,�/�7��2�.��7�-�'�%�*�.�0�,�,�,�(�&�)�$�3��/�-�#�%�(�-�%�,�6�2�0�5�+�'�2�6�!�'�'�!�0��2�+�0�!�-�7��(�/�,�2�(�(�-�'�4�3�)�2�1�1�"�$�)�1�-�/�3�&�6�-�'�+�%��.�2�1�/�6�!�'�#�%��)�$�+� �3�%�3�'�#�,�,�+�,��1�1�)�'�/�(�/�-�6�'�/�+�+�!�$�1�"�/�/�+�;�!�1�+�"�,�+�/�1�/�1�$�2�"�/�)�$�)�,�1�*�+� �.�0�,�)�.�5�&�9�.�+�9�2�+�)�'�2�+�5�)�2�ր׀ۀ׀׀؀׀܀ӀȀҀр׀ҀـӀ؀׀ՀՀ؀Հրہ5�)�*�3�"�*�?�9�&� �$�*�&�6�1�/�2�(�+�/�-�+�*�-�:�*�3�-�7�-�)�&�*�4�<��(�6�R���8�3�/�3�-�/�%�*�0��/�'�%�'�)�,�0�2�+�9��,�/�-�/�2�+�/�+�2�7�>�0�/��$�+�%�#�%�.�-�#�+� �3�.�*�"�(�/�-�'�,�'�1�,� �0�4�#�3�-�%�#�#�/�5�/�/�9�#�#�?�/�+�4�6�1�3�*�!�+�,�#�$�#�)�4�,�.�!�0�*�*�0�"�)�"�+�-�(�#�$�'�&�.��'�(�3�/�&�)�/�?��-�2�)�;�%�-�/�#�/�'�"�0�(�$�,�*�.�/�&�+�,�2�$�"�7�(�'�.� �.�1��'�/�)�3��'�,�'�1�3�*�'�/�8�.�.�(�0�.��&�.�'�3�,�/�/�%�"�%��.�#��$�/�.�.�#�/�.�7�*�'�"�+�4�$�,�)�6�-�&�-�%��/�'�&�+�%�.��,�:��'�,�#�+�.�,�2�*�$�)�*�%�7�F�(�*�0�/�:�*��2�*��,�(�+�&�(�/�'�+�*�*�#�(�"��%�/�*�7�,�-�5�+�.�&�7�,�*�<�'�2�1�)�2�$�$�3�1�&�$�0�3�*��*�8��(�$�-�#�(�0��-�5�(�&�1�6�.�;� �*�&�-�2�=�3�,�"�$�)�=�+�'�)�%�*�&�2�3�#�1�.�-�-� �:�/�2�1�2�,�,�/�+�/�,�%�9�/�)�1�)�/�/�%�,�!�.�+�"�#�'�&�,�3��$�0�5���/�+�"�/�1�)�/�-�0�#�&�/�>� �-�0��'��#�9�&�'�$�.�-�-�/�*�*�.�.�)�,�,�-�/�&�.�+�*�!�%�5�/�%�+�&� � �+� �,�(�,�-�5�.�0�)�+�&�'�"�+�%�&�'�7�'�1�;�%�'�8�+�/�)�/�+�0�5�*�!�8�+�;�8�&�2�)�:�"�(�#�&�!�/�.�1�8�$�3�4�-�0�,�.�2�4�؀Հրրр؀׀ӀҀɀ׀؀ր݀ـӀрԀ؀ــրڀׁ*�*�6�.�5�=�0�#�=�-�3�&�"�*�;�)�4�'�'�(�.�-�0�1�3�*�:�-�/�;�,�4�-�'�(�.��,�*�/�&�/�!�+�(�&�7�*�/�0�;�-�8�+�5�&�2�'�,�7�%�-�/�%�$�,�7�*�)�.�)�.�'�,�'� �1�,�3�%�/�&�$�7�&�1�+�,�'�%�*�'�*�!�-�'�-�,�,�%�*�'�%�1�6�0�*�%�%�3�#�*�3�-��+�%�$�$�1�)�,�,�$��#�,�&�+�;��(�'�3�9�'�!�5�)�!�4�>�&�,�&�(�&�/�1�4�)�3�.�6�6��9�2�5�)�!�#��+�)�2���2�1�.�,�2�%�4�2�0�7�(�,�,�*�3�-�'�!�3�+�(���,�0�&�'�,��-�&�/�)�%�$��0�2�#�-�>�2�.�9�8�*�5�7�0�$�*�*�(�'�#�)�4�#��%�*�)�0�4�%�0�%�%�;�6�1�"�3�5�9��5�4�,�1�1�3�5� �.�*�(�7�2�0�.�(�.�-�"�4�%�5� �3�$��3�$�7�,�)�'�&�(�)�'�+�#�%�6�3�5�.�)�(�%�%�.�%�,�(�(��,�/�0�*�"�+�-�*�'�3�$�.�*�'�/�%�(�)�*�-�/�$�9�.�/�0�5�3�6�+�(�'�)�(�"�#�'�/�/�0�$�$�4�)�3�%�+�8�(�3�+�,�.�+�.��/�*�,�9�+��(�6�)�-�*�;�&�1�-�&��!�3�/�*�-�&�(�2�-�!�$�.�/�'�6��1�.�<�/�+�/�,�1�$�/�3�0�-�&�-�2�.�-�$�)�:�3�2�/�#�.�8�7�/�*�.�2�-�(�)�+�5�0�'�#�#�(�&�*�7�-�+�"�'�/�.�*�A�0�&�)�8�(�3�(�(�$�:�#�3�#�,�2�(�/�2�-�-�'�#�/�0�'�$�#�3�2�/�+�=�2�.�/�)�5�8�)�'�*�+�1�*�2�0�/�,�.�7�"�/�-�)�5�.�>�,�2�&�4�,�)�,�*�<�,�6�-�-�?�#�1�ـ׀րـ؀ӀԀـԀʀՀـۀր׀рրـڀҀրՀӀЁ,�/�)�9�%�7�4��'�+�(�'�*�1�*�-�-�/�,�*�-�/�.�(�#�1�)�+�4�,�.�(�,�%�/�5�8�.�)�5�0�4�*��-�%�-�-�-�-�'�#�:�'�4�&�&�9��*�)�/�3�.�*�/�(�!�%�'�'�&�!��5�(�0�-�-�>�3�%�4���/�*�-�#�.�)�,�)�+�3�;�/�6�,�2�0�0�?�2�3�.�(�<�)�!�%�*�(�8�%�3�/�3�0�6�*�3�/�*�"�*�,�9�4�%�'�/�/�+�>�!�)�2�.�+�1�5�/�-��-�)�0�(�1�$�$��/�%�$�#�"�'�(�+�1�2�"�$�.�/�&�#�%�'�%��5�+�'�2�+�#�+�.�5�"�+� �'�*�7�,�0�/�.�!�4�1�.�&�6�0�)�/�5�'�&�*�&�/�,�+�'�'�,�*�/�,�*�-�"�%�-�#�,�4�.�2� �/�'�0�+�)�(�!�*�%�(�+�/�*�-�3�5�5�$�4�(�+�$�8�.�)�,�(�+��4�%��:�+�*��5�/��1�7�-�!��/�<�1�3�"�$�,�1�+�.�.�)�.�(�ف)�0�,��4�5�6� �%��'�*�4�+�/�&�+�(�,��/�-�1�*�=�%�'�*�0�%�,�&�+�(��4�6�/�?�-�+�3�/�*�(�&�'�'�)�5�'�*�2�!�'�!�<�2�+�0�&�/��+�5�"�#�3�+�(�(�1�-�$�0�%�.�+�%�2�(�9�$�&�5�4�'�5�!�,�%�%�%�.�*�1�-�+�)�-�1�$�1�"�)�5�/�"�+�1�-�3�-�+�&�(��2�'�%�%�(�/�'�.�#�%�7�4�0�(�#�#�"�!�8�6�1�*�2�)�'�-� �-�,�*��/�!�'�2�,�,�/�,�5�0�$�7�'�(�7�-�%�6�'�-�.�4�%�%�)�)�5�.�1�+�8�.�+�+�.�$�%�,�)�4�.�"�1�-�*�4�+�9�1�-�+�)�2�2�/�1�0�-�6�,�-�4�)�-�,�/�#�-�'�(�.�%��6�4�2�.�1�2�ՀՀ׀׀Ӏ܀؀؀ҀĀ݀ڀۀ׀ҀӀӀ׀ۀԀـ؀ڀՁ1�6�+�2�#�0�(�)�#�)�.��-�D�'�.�'�/�1�#�?�"�+�(�+�?�2�.�2�/�&�.��%�%�"�)�$�&�-�7�-�@�2�)�,�;�4��7�0�&��'�)�&�7�1�/�1�+�#�0�1�&�8�)�'�7�:�&��5�"�/�)�/�,�'�#�1�2�%�-�%�3�)�0�<�(�.�1�*�.�1�1�"�"�/�#�#�!�3�.�*�4�6�1�'� �9�1�+�#�,�/�'��,�'�2�$�,�)��2��+�+�2� �<�7�0�/�/�:�1�4�+�.�'�,�*�5�%��$�"��#��(�*�+�/�)�'� �+�#�#�.�/�#�%�(��+�2�$�)�9�+��*�3�4�(�$��+�'��'� �,�)�/�� �+�/�"�.�.�+�:�)�+�9�0�'�2�"�7�*�/�+�2�#�0� �4�-��3�2�&�0��/�(�)�.�$�*�/�-��2�"�0�9�/�'�+�1��(�.��*�&�.�)�.�3�(��)�&�7�-� �.�#�C�(��0�$���1�+�)�$�%�%�0�%�0��,�'��3�&�8�0�)�*�4�9�%��&��'�&�$�1�)�!�5�2�,��%�/�/�!�$�(�3�(�,�)��7�0��7�-�+�4�)�"��0�1�+�(�!�&�!�%�/�!�#��6�/�-�/�)��"�.�)�1�#�2�*�'�+�'�'�+�$�&�-�&�.�(�+�:�-�-�%��,�%�0�0�,��8�.�/�*�+�.�,�'�+�%��/�2�(�=�+�+�3�)�/�)�&�3�2�(�,�.�B�&�=�2�*�*�3�1�/�)�,��,�-�.�.�0��4�)�)�'�&�4�2�3�3�:�0�!�)� �(�0�7�3�$�0�%�2�(�*�-�5�*�&�$�%�'��)�&�!�6�.�.�5�$�-�3�/�,�3�#��%�'�#�*�.�+�"�6�)�2�%�4�2�$�'�*�,�,�0�!��0�4�5� �B�,�/�<�'�9�-�<�/�1�*�4�"�'�4�)�#�-�7�.�5�1�.�)� �5�7�ҀڀӀրր׀Ѐ؀ԀˀՀڀՀ؀׀؀ڀ؀ҀՀՀрڀ؁*�$�0�<�1�.�1�2�1��-�4�)�-�:�&�)�8�&�,�-�1�$�"�1�5�4�5�%���2�%��0�3�4�+�+�*�!�+�2�2�3�4�%�1�-�*�%�%�+�)�,�(�/�2�.�%�%�-�9�0�!�-�.�3�%�0�,�2�"�'�'�)�*�%�-�0�-�*�!�'�-�)�/�&�*�3�1�)�0�,�-�%�4�4�'�!�)�'��$� ��,�"�4�0�/�)�(�,�%�'�,�#�'�1�0�*�5�-�+�'�)�/�/�*�:�$�&�-�0�&��+�%�"�'�3�*�%�#�5�#�5��5�*�,�5�*�(�*�6�%��0�/�'�,�5�-�6�0�?�(�-�"�9�*�.�5�+�5�'�)�-�+�1�,�3��1�1�&�+�4�&��4�!�&�(�-��/�&�,�1�/�2� ��*� �5�3�!�B�%�)��&�/�.�$�:�'�-�"�.�)�1�*�3�(�(�%�*��&�(�(�&�,��!�%�=�/�.�&�)�-�$�!�-�&�7�'�,�/��+�&�'�?�,�-�-�#�)�.�(�#�#�.�#�!��*�2�@�1��.�&�/�*�+�1��-�"�.�%�3�.�/�2�4�7�/�)�)� �3�/� �/�,�&�1�0�*�%�$�2�-�)�!�'�3�0�&�(�)�'�-�1�-�/�#�+�/�#�(�5��/�4�%�5�&�)�,�%�)�/�-�2�#�)�9�(�)�!�*�/�%�*�0�)�,�/�#�"�*�(�.�9�'�4�)�0�-�&�$�.�+��'�/�$�%�1�0�$�!�#�-�'�"�&�!�4���3�"�5��-�7�!�/�6�!�,�'�+�-�3�#�+�%�'�9�;�,�:�.�,�1�/�*�/�(�+�+�&��+�(�&�(�%�,�!�.�1�#�&�+�.�*�0�)�4�.�+�"�%�9�'�1�'�,�-�0�5�+�&�7�(�.�4�)�-�)�2�.�$�-�-�8�*�:�5�%�2�*�!�+�2�)�,��6�-�6�3�2�%�*�(�/�"�$�:� �!�'�1�3�3�.�*�/�8�$�+�,�5�1�5�)�3�"�7�ҀԀրԀڀҀ؀Հ߀ÀӀԀ׀ԀӀ؀؀րҀрӀ؀׀ف:�0�&�3�/�,� �*�-�+�3�-�3�+�1�&�!�9�2�/�*�&���*�+�-�,�-�3�'�7�6�3�7�+�-�3�%�"�-�%�)�,�&�)�4�&�-�/�-�2�2�/�%�)�,�&�&�3�)�(�'�"�/�*�-�'�2�5�4�"�%�7�0�.�'�!�1�(�6� �3�*�2�)��&�+�%�2�)��7�-�-�%��&�*�%�*�3�#�!�*�(�+�3�%�'�'�%� �1��1�+�.�+�!�7�6�*�,�/�4�$�,�-�)�,�,�*�.�,�3�.�*�<�0�(� �/�$�(�&�,��"�&�'� �#�2�+�#�'�(�(�1�/�&�+�$�0�2�/�%�<�*�&�#�-�$�;�/�7�'�-�)��1�(�'�)�4�$�.�1�.�-�(�%�%�,��1�2�)�#�2��)�/�%�3�*�/�*�2�#�"�.�.�"�%�!�3�8�.�(�.�!�1�2�*�&�2�3�.�4�(� �4�-�'�/�%�!�'�(�-�*�)�)�(�,�#���2�(�)�� �-�:��5�'�8�+�+�'�.�)�.�$�7�;�2�'�*�0�*�'�2�!�1�(�6�$�,�*�/�,�!�-�4�)�;�6�/��&� �)�)�0��.�'�1�&�'�4�3�"�*�;�$�6�+�1�3�*�4�4�+�+�"�9�-�/�/�-�0�%�.�*�)���%�+�;�'�3� �4�)�!�.�+�8�+�,�5�9�+�(�#�2�:�*�$�%�1�/�%�3�-�5�/�)�/�)�2�6�5�2��0�7�1�/�.�.�4�-�)�+�3�.�%�%�1�9��e�4�4�-�+�9�/�1�6�2�3�+�"�-�+�&��*�)�3�2�)�7�+�)�*�/�,�'�%�.�)�%�%�0�"�)�'�0�"�8�2� �,�+�.�1�%�%� �)�6�'�,�%�5�8�-�0�(�&�(�$�#�&�8�'�8�-�&�*�%�&�:�,�&�%�&�0�6�/�/�%�)�(�1�,�(�5�,�1�%�&��%�%�$�5�+�-�.�1�*�)�1��-�+�-�*�3�%�3�;�#�+�/�0�7�.�'�:�׀ـҀۀҀڀـր؀ȀՀԀր؀΀ր׀ՀՀՀӀҀ׀с1�.�*�0�7�,�,�/�2�7�(�)�-�(�5�-�(�.�/�2�)�1�0�)�,�'�#��/�4�5�$�2�+�+�)�'�*�5�$�5�5�%�.�-� �'�@�+�-�2�;�+��(�<�*�#�(�1�$�#�-�$�)�,�*�'�(�.�4�,�*�-�4�*�-�-�'��)�:�*�)�)�*�/�#�)�#�.�'� �.�"�#�"�%�*��5�/�7�%�+�-�(�6�+�-�'�*�0�-�/�*�6�/�1�!�3�+�#�)�+�?�*�-�,�.�'�+�3�3�)�,�(�+�0�-�3�#�&�2��$�*�+�)�&�$�0�&�/� ��.�-�!�(�+�5�*�2�&�%�4�.�(�(�)�1�'�&�,�5�/�@�!�)�$�5�,�'�)�-�1�3��!�5�6�%�+�$�,�,�&�#�"�+�-�E�1�1�/�*�%�*�1�4�/�-�)�.�2�(�,�%�+�2�+�5�"�&�'�7�)�/�3�/� �4�2�,�3�8�3�+�%�'�-��+�3�(�*�-�(�.��2�+�+�&�2�,�$�'�'�-�-�-�1�%�/�6�*�5�%�$�)�(�(�2�+�0�&�6�3�+�*�)�9�/�0�%�1�'�'�,�*�/�6�0�3�"�-�$�2�#�-�3�"�*�-�/�0�*�6�5�,�:�&�3�-�+�%�2�)�+�/�4�'�+�+��*�)�1�'�(�$�5�-�.�.�4�1�1�-�+�'�-�$�)�)�9�,�,�&�*�8�2��1�*�2�,�5�3�#�3�,�8�/�3�.�)�$�(�#�'�(�-�4�&�.�5�#�6�9�&�(�1�(��3�,��a�=�#�-�-�&�"�+��C�+�'�-�*�9�'�,�6�2�*�,�(�)�/��,� �1�'�/�/�*��2�'�-��.�)�;�.�*�*�'�%�<�.�,�/�/�1�&�0�-�)�'�*�-�3�+�0�1�/�+�)�/�8�&�)�3�*�0�"�8�&�/�;�6�2�0�5�&�,�3�5�%�!�#� �#�,�;�'�'�.�=�*�6�<�>�&�/�2�6�5�9�;�&�:�'��+�3�0�.�/�#�3�+�0��1�ҀԀՀӀԀ׀ڀԀրǀۀրՀԀՀـ؀ҀՀ׀Ӏ׀Ӏׁ!�&�'�.�:�/�+�*�)�)�"�(�3�!�'�,�)�"�)�'��,�&�+�)�(�,�2� �4�&�!�+�+�6�-��2�-�!�(�1��1�6�0�+�&��=�)���)�-�7�/�)�+�1�*�,�+�(�-�)�*�)�/�5�,�1�8�3�3�%�2�%�*�4�&�3�5�2�,�)�0�%�/�$�1�#�1�/�-�6�)�4�"�0�*�,�(�5�&��'�+��+�#�#��/�2�'�$� �(�9�+�-� �3�4�.�7�%�*�)�&�!�:�5�+�&�$�2�7�#�&��$�-�'�4�*�,�#��+�-�%�+�0�0�-�5� �(�)�)�+�1�%�)�-�)�+�'�.�3�"�2�-�*�7�.�0�'�-�,�"�1�(��(�+�!�0�$�=�5�$�,�/�.�(�+�'�0�9�2�)�(�'�,�*�0�"�#�3�-�"��'�&��.��&�(�$�*�/��*�+�(�5�'�3�#�)�!�(�!�(�%�-�:�4�-�)�#�(�$�#��+�.�-�+�%�/�.�#�+�-�.�1�(�5�$�B�)�0�&�>�,�3�/�)�%�(�%�.�F�$�.��/�'�(�%�/�5�.�'�)�.�'�0�"�(�6�,�2�5�0�(�-�+�/�6�/�&�$��&�"�2�)�.�1�'�*�5�0�#�9�3�%�*�,�!�'�)�3�/�/�3�'�8�)�/�)�#�(�4�3�1�1�8�$� �(�1�-�7�%�8�,�+�,�1�3�*�)�*�'�/�/��-�.�.�/�1�0�2�'�+�'�6�1�(�/�#�&�'�"�/�)�-�5�"�)�(�k�#�&�$�*�'�"�)�#�1�*��4�*�+�)�&�%�%�-�5�"�1�"�(�%�3�5�'�'�7�3�&�,�4�/�(�,�3�,�9�'�3�?�'�+�#�2�.�4�*�-� �2�'�&�-�2�$�/�6�2�)�/�1�0��,�)�.�.�0�7�5�/�%�&�%�*�6�*�7�*�2�9�'�-�,�7�(�+�/�+�(�&�0�-��#�/�1�!�:�0�*�-�4�1�.�+�%�(�2�2�'�/�'�.�/� �5��2�؀ۀՀ؀ԀҀـрԀɀۀ׀Ҁ؀׀րـ׀ր׀րڀـӁ5�0�5�+�<�5�6�3�&�4�9�+�&�'�3�*�3�0�,�,�(��+�#�0�%�)�-�1�.��(�8�/�$�+�*�>��/��+�/�)�8�&�3�+�*�,��(�'�,��.�*�(�"��1�4�-�#�4�)�2�$�5�+�.�4�%�*�$�#�2�.�� �'��&�.�2��3�$�0�.�)�6�$�*�8�-�-�3�"�/�#�+�0�/�-�-�&�/�*�-��!�-�=�1�"�7�,�-�+�,�,�-�/�2�&�(�)�7��(�1�-�+�/�C�+�(�.�0�1�!�2��?�%�'�,�(�#�"�,��'�0�$�2�2� �)�.�7�+�'�$�2�)�.�,�(�1�*�%�1�,�1�=�.�3�(�.�5�0�+�!�-�.��4�4�&�-�#�0�#�.�*�,�2�3�+�(� �0�=�&�4�1�(�,�/�.�*�.�-�*�*�.�:�%�&�"�,�1�!�-��'�+�$�1�/�%�<�3�/�(�+�(��/�&�%�+�+�&�!�+�,�2�+�9�+�"�.�/�.�'�1�(�(��'�/�1�&�,�'�$�5�0�.� �'�1�*�*�"�1� �*�$�+�:��'�3�.�(�7�1��"�,�'�&�4�)�&�!�$�7�+�,�&�5�(�1�*�'�,�*�*�+�&�!�&� �.�8��3�&�0�4�,�/�9�#�1�'�.�%��#�5�.�)�'�"�(�-�.�'�+�*�+�,�+�-�(�$�/�)�#�/�$�$�,�4�2�&�*�7�,�.�+�3�*�&�,�+�-�D�)�/�&�)�4�/�.�0�.�'�+�*�/�%�!�+�+�/�$�'�3�.�,�.��#�)�*�-�,�!�.�!�/�'�#�#�!�7�1�-�3�.�.�%�"��%�7�1�7�$�,�(�/�0�1�,�)�*��(��(�)�4�)�/�(�'��/�$�,�.�8�!�,�+�4�-�%�*�,�8�-�"�+�3�-�6�(�1�5�+�7�0�4�)�*�!�3�D�+�1�+�!�1�/�&�&�.�3�*�1�8�9�/�8�7�!�'�)�/�*�7�(�3�"�*�1�4�C�2�3�.�A�+�ЀҀـր؀ҀӀրրȀ܀Հ׀ـԀ؀ڀՀրրـӀԀׁ/�,�$�+�6�2�1�7�"�*�-�*�.�#�6�1�"�1��(�9�0�,�A�,�-�/�#�5�,�.�)�8�5�'�-�1�$�/�(�=�6�7�/�0��)�/�,� �#�&�B� �)�%�#�*�2� �-�5�)� �.�,�/�)�*�8�-�)�,��.���%�+�.�6�&�*�.�,�.�+�1�"�)�*�$�%��:�0�1�$�"�+�.�'�&�+�'�"��#�)�.�-�#�0�0�-�3�0�-��"�/�*�.�%�2�/�2�+�*�(�/�8�3�.�7�/�(�'�.��#�:��2�-�(�&�*�-��/�.�+�-�)�$�+�+�*�+�4�,�!�/�4�-�-�.�-�1�!� �#��7�-�%�<�"�,�-�(�%��4�+�;�&�'�(�0�%�-�*�$�1��3�)��&��'�/�,�"�)�5�*�5�2�6�'�2�4�$�&�-�,�&�'�!�/�#� �(�2�2�'�.�-�.�/�/��"�#�,�/�2�#�9�%�!�"�1�6�&�$�5�'�1�,�$�5�3�;�3�-�"�0�-�3��(��%�1��(�.�'�&�0�3�0�,�)�6�-�+�/�&�'�9�(�-�3�#�.�.�!�1�)�+�.�!�"�8��+�)�$�,�+�'�)�/�-�*�$�0�-�'�!�.�0��(�<�(�!�.�!�-�)�+�"�'�"�)�)�%�!�,�*��2�+�-�-�+�(�2�'�!�/�/�(�*� �"�0�-�*�2�&�.�3�!�+�)�&�.�%�)�(�+�1�"�+�4�(�.�/�-�%�"�/�5�$�!�1��5�,�)�,�,�5�/�$�1�*�.�0�2�&� ��.�&�'� �'�8�"�5�0�5�3�$�)�.�)�2��-�1�;�2�-�)�1�'�-�1�"�#�8�%�0��5�+�6�'�,�(�#��"�(�7�-�@�(��0�4�$�-�+��)�-�(�'�>�,�"�#�.�(�&�$�3�.�,�.�'�'�%�)�/�(�-�%�?�*�#�#�+�$�6�'�<�+�!�6�.�+�3�'�%�'�/��4�:�&�2�'�4�*�/�)�4�.�,�6�+���݀؀рЀӀԀր׀ǀ׀̀Հрр׀ՀՀՀ׀؀Հ׀Ձ-�'�+�/�4��&�,�0�+�/���1�(�)�'�'�2�$�5�*�+�6�.�*�6�*�%�3�-�(�2�3�(�(�'�1�-�<�2�?�4�2�=�&�%�A�/�1�.�-�3�'�&�1�,�/�0�#�$�,�2�$�'�(�!�.�)�.�+�<�7�+�#�*�8�"�(��-��'�"�%�/�"�4�1�1�+�1�0��3�.�(��(�6�1�$�/�1�D�/�*��,�)�)�0�+�1�-�*�'�%�1� �.�/�2�+��#�.�'�!�(�,�&�'�-�(�7�'�4�0�(�&�*��%�%�"�,�$�/�#�1��(�-�%� �$�-�(�7� �/�%�/�4�.�'�+�3�%�,�#�$�-��#�2�/�"�5�&�2�%��+�/�,�8�(�!�0�&�2�!�#�&�%�*�/�0�)�)�/�,�*�3�(�+�!�5�2�2�+�*�$�/�%�3�,�-�/��#�2�%�*��+�%�8�'�,��3�3�$� �#�/�%�.�0�#�(��&�$�*�,�&�+�-�'�+�,�4�.�.�'�)�4�*�3�.�-� �3�4��5�+�)�"�2�-�2�6�3� �'�.�)�&�3�3�7�7�8�*�#�+�)�'�.�+�&�$�-�6�/�#�;�(�'�(�,�1�,�$�*�)�&�#�4�)�2�'�1�4�*�(�'�4�2�+�3�3�)��'�'�3�5�/�(�'�5�/�"�;�*�8�1�$�&�6�-�2��.�.�+�'�.�(�)�4�&�1�+��-�3�*�'�*�9�&�4�'�9�"�1�,�4�,�*�3�-�$�+�*�*�)�(�%�"� �.�%�#�,�$�&�&�/�+�&�+�#�"�3�2�)�/�*�(�.� �$�%��-�'���:�4�2�%�$�-�+�)�,�0�0�3�2�!�'�7�/� �'�$��%�)�/�,�*�/�7�&�2�,�'�!� �=�'�/�*�4�,�2�2�5�4�9�-�'�*�%�&�,�*�1�.�"�=�0�+�=�7�!�3�2�-�(�$�4�<�.�)�(�(�)�-�3�0��*�1�3�2�5�/�&�.�*�5�-�0�,�6�+�0�8�1�&�׀ԀԀԀԀրڀՀՀƀ؀ӀԀҀ׀ڀՀԀՀрр׀Ѐҁ0�0�)�2�-�#�1�,�'�(�0�/�0�$�+�)�1�5�,�)�5�1�-�,� �-�0�3�+�=�"�)�)�4�&�3�1�)�,�-�6�,�(�9�'�3�.�#�%�%�-�*�0�&�-�-�.�&�-�&�!�/�6�&�)�*�,�1�1�&�$�%�1�2�1�,�+��#�,�/�/�-�&�6�'�,�"�:�%�/�1�'�.�,�$�0�*�0�"�.�5�0�8�1�-�2�)�+�0�;�"�*�+�+�0�$�5�.�(�-�+�*�$�1�)�!�9�+�.�'�-�.�$�'�)�#�(�(�'�:�-�*�&�#�/�/�(�+�5�1�"�,�+�*�1�$�-�/�5�*�-��+�+�+�0�,�-�,�6�-�7�1�(�)�0�,�!�$�)�+�:�/�/�%�+�6��'�(�+�-�.�"�(�&�%� �+�+�#�/�+�4�*�.�.�2�3�)�+�)�0�=��0�#�.�%�*��$�'�+�/�/�;�"�"�+�,�6�0�5�,�'�9�.�#�'�:�(�&�6�+�*�&�,��$�.�:�,�#�3�)�9�/�/�+�+�'�#�!�/�5�.�(�/�!�6�%�#�3�)�2�(�/�+�)�,�/��-�&�%�-�>�+�-�.�$�7�!�2�&�+�!�1�.�.�5��(�7�4�0�2�)�(�*� �#�/�:�)�1�1��&�6�(�&� �"�"�4�/�>�*�&�&�)�7��+�!�+�$�.�8�;��'�3��3�-�1�,�"�.�(�-�(���-�.�#�$�*�(�%�"�/�)� �7�*�)�-�6�$�"�!�"�%�5�*�*�*�2�)�0�+�)�$�'�(�2�%�+�$�9�,�'�<�$�'�:��#�1�6�+�*�/�9�&�@� �.�'�,�$�9�%��%�-�-�/�!�%��4�1�-�.�'�3�&�4�/�1�6�*�$�5�=�#�'�%�$�/�)�3�(�1�*�0�1�+�%�/� �-�8�2�(�'�-�#�/�'�5�/�&�2�'�.�'�7�.�+�$�(�.�9�&�.�0�0�-�*�(�:�*�!�+�)�)�9�(�.�&�-�1�&�2�4�:�6�*�:�%�7�-�/�=�ۀՀڀڀۀրрـՀˀـր׀րԀӀـրր׀׀Ӏـׁ&�'�)�+��1�5�/�)�2�/�.�'�(�.�7�+�'�0��.�!�'�-�,�/�,�*�:�3�8�:�(�*�0�.�5�+�#�.�*��#�9�"�-�'�(�#�$�+�(�%�4��/� �'�1�&�2�/�$�)�/�&�6�2�,�C�+�#�%�,��6�+�#�/�/�'�/�5�"�/�-�1�#�+�8�#�6�.�/�4�&�6�*�(�(�"�%�/�2�0�#�)�3�)�-�-�#�1�&��%�$�1�-�/�%�+�1�)�*�(�%�3�)�>�2�.�(�9�)�&�:�;�'�+� �.�,�-�1�&�'��.�(�2�*�'�$�,�5�*�/�.�*�/�(�'�+�%�,�)�(�-�"�7�3�!�5�3�(�/�%�8�0�%�0�-�+�*�.�$�-�.�7�3�(�7�3�:�:�.�:�� ��+�0�/�3�3�1�-�8�,�3�)�2�6�+�%�2�+�2�#�.�4�,�-�&�&�7�)��"�(�1�-�!�3�/�$�!�!�-�7�,�,�1�4�(�,�%�/�0�*�"�-�-�2�)�/�"�/�-�/�3�$�1�<�%�-�7�&�.�3�(�5��6�&�"�,�/�'�=�-�8�7�4�*�!�)�*�/��'�%�,�/�$�/�/�%��%��1�2�$�0�&�$�+�/�*�0�/�&�0�.�/�0��!�2�5�&�'�+�#��3�3�#�5�(�(�-�3�-�$�(�)�5�1�%�/�5�#�)�/�'�4�0�3�%�!�&�(�$�4�)�-�/�8�%�*�/�)�!�)�/�8�%�=�'�,�-�7�3�)�,� �$�5�&�,�&�5�/�-�.�+�$�1�.�<�.�,�+�0�,�/�-�<�<�/�5�H�>�(�2�6�4�/�"�*�$�)�/�(�0�'�6�0�"�-�.�-�1�)�,�5�'�*�+��/�6�-�3�.�+�!�#�"�"�-��(�7�&�C�*�6�&�/�0�%�<�(�*�(�1�0�,�"�0�+�/�1�0�#�.�$�*�)�1�%�$�/�*�0�%�)�"�8�+�%�)�&�0�3�+�-�$�&�'�3�&�8�.�*�%�<�/�'�4�4�/�*�3�-�.�7�1�րрՀ׀؀Հր׀рˀրۀҀـր؀րۀۀр؀ҀրՁ2�1�-�3�"�7�/�.�)�5�#�.�*�3�4�2�*�=� �1�&� �/�(�+�3��)�/�9�-�5�"�3�4�#�,�-�&�*�(�3�#�6�1�/�.�$�!�)�/�0�&�9�)�4�(�'�(��6�,�$�,�8�#�3�6�1�2�4�8�+�*�'�3��,�$�:�.�3�B�.�'��-�-�-�*�%�5�&�#�*�,�(�.�-��)�-�8�/�2�7�,�(�&�4�3�5�)��(�(�*�&�0�/�&�3�:�+�.�'�/�-�*�/�)�(�.�1�4�/�5�'��0�#�/��%�.�6�*�'�/�(�-���2�*�"�-�/�)��+�6�.�!�*�'�(�-�/�)�0�4�(�&�7�;�+�.�-�7�'�7�6�,�*�0�.�(�$�*�3�&�/�+�*�+�(�+�#�*�&�2�.�4�1�%�-�-�'�-�,�,�+�$�2�-�&� �.�*�6�"�,�/�2�-�&�$�3�9�&���.�?�!��4�3�)��.�)�)�'�%�6��#�/�&�*�!�2�.�'�%�.�9�(��+�%��-�,�&�.�$�(�'�*��'�-�/�1�+�2�8�#��+�)�&�)�-�*�1�'�0��-�3�(�)�$�-�#�'�3�.�0�(�+�(�#��)�8�:�%�%�.�%�/�3�/�*�'�2�&�'�+�(�"�,�%�$�8�.�0�4�)�-�"�.�&�)�(�*�)�5�0�9�)�%�0�*�3�&�0�$��*�2�(�6�,�/�:�+�E�.�!�,�3�*�.�-�+�*�2�*�9�-�+�-�-�$�,�,� �+�1�5�)�5�%�,�&�1�(�1�6�*�7�-�-�1�1�&�$�!�2�+�1�+�0�7�&�)�+�3�*�)�&�#�'�(�)�3�9�'�(�(�0�4�-�-�+�+�"�"�0�#�#�)��1�,�'�+�%�0�,�(�$�(�(�(�0�4�)�0� �*�.�"�(�+�*�&��C�)�'�/�'��4�#�2�:�4�4�&�3�#�.�)�$�!�%�0�.�3�3��$�+�9�,�4�5�.�2�)�*�%�'�6�&�6�)�/�(�#�6�+�7�4�ـր׀πӀ׀ԀڀրɀЀԀՀ׀ՀۀӀр׀ҀӀԀҀ܁-�.�)�0�"�/�,�*�=�2��(�)�%�(�/�(�)� �4�)�%�$�*�'�*�"�5�7�0�1�2�)�:�(�(�,�)�1�0�&�2�)�$�6�*�-�%�"�2�/�%�(�#�,��$�*�7�'�'�)�:�,�6�4�-�4�+�+�/�.�/�+��$�&�0�+�#�)�4�5�(�!��:�0�%�-�5�4�.�2�*�&�4�!��4�!�#�*�(�6�=�%�5�/�)�"�7�(�+�/�,�2�-�� �7�(�,�*�/�*�2�/�+�+��6�-�.�:�+�-��/�%�$�7�2�*�(�&�'�$�1�*�0�'�*�&��)�3�/�(�"��1�&�)�6�!�)�/�/�1�>�+�.�&�*�,�&�-�/�4�,�.�3�+�+�,�+�.�/�2�3�9�&�3�)�-� �(�8�,�#�.�.�$�(�%�,�)�'�2�*�%�.�-�)�.�/�,�/�7�!��2�)�*�3�,�)�1�%�*�2�*�/�'��"�+�*��'�:��/�,�2�+�+�;�3�4�#��&�%�6�*�1�+�1�,�!�.�$�#�<�2�7�/�)�#�-��?�1�6�7�"�/��#�(�&�#�,�<�"�5�/�2�'�0�)�+�3�+�,�6�+�"�,�<�)�/�=�,�.�,�)�/�%�2�.�*�%�7�&�(�9�:�+�1�+�6�-��0�'�$�,�4�#�-�1�.� �3�4�#�%�/�)�1�0�)�(�3�.�(�-�-�)�4�1�-�(�.�+�-�)�8�(�7�%�)�,�-�5�&�"�#�+�$�'�+�7�"�0�6�%�%�/�7�0�+�/�#�(�>�+� �;�%�/�.�0� �.�*�!�'�6�'��#�,�0�2�)�0�,�*��,�0�!�9�3�*�6�.�/�-�'�&�2��9�0�#�4��#�'�(�/�*�7�>��/�/�,�-�-� �4��%�0�6�/�4�.�-���+�(�'�/�-� �"�!�2�*�/�%�*�6� �/�,�3�4�&�%�/�6�2�,�.�0�+�+�-�*�1�,�2�)�3�-�3�"�,�9�-�4�;�+�(�1�<�5�+�#�+�+�2�.�ҀӀՀ׀؀׀ԀӀՀǀـҀ׀׀Հـ؀׀Ѐր׀׀Ӏց$�7�(�6�%�,�7�/�/�:�-�.�'�%�/�'�A�)�2�/�8�"�4�0�7�0�-�/�%��'�$�3�*�.�.�9�,�.�*�)�.�1�-� �,�6�*�*�+�;�1�8�#�)�2�,�1�-�,�'�(� �(�0�0�)�&�.�*�'�5�.�'�4�*�!�0�(�-�4�;�:�(�$�"�;�7�5�,�4�)�*�-�.�!�,�#�5�'�4�3��-�*�/�+�5�7�&�&�.�&�0�*�/�"�4�0�5�%�&�5�+�;�2�/�#� �*�3�&�(�8�$�)�!�5�/�6�2�,�*�4�*�/�+�/��0�.�#�#��%�4�0�'�"�(�(�'�)�+�5�(�+�-�0�1�<�/�'�*��=�,�&��,�#�$�2�?�%�#�<�+�,�2�'�-�.�0�'�%�.�(�2�1�,�<�/��*�%�0�.�&�.�-�'�#�'�-�.�4�&�$�D�,�+�*�/��$�"�1�/�$�.�2�%�&�"�%�+�(�)�/�)��(�,�0�0�0�+�8�3�4�*� �>�!� �1�1�2�)�&�'�<�5�"��4�&�%�6�%�8�)�'�/�0�&�!�-��%�'�-�,�(�3�&�+�'�'�7�)�5��'��-�1�2�%�3�.��5�)�+� �2�2�7�1�� �2�� �)�&�-�0�4�1�'�'�5���6�/�!�)�-�2�!�%�-� � �1�4�9�$�*�&�2�"�+�(�6�!� �)� �*�#�(�)�2�.�3�3�/�6�,�6�'�0�-�,�*�4�(�:�"�/�+�$�,�&�%�;�.�2�%��*�(�4�/�"�!�.�!��5�7�7��)�0�0�%�3�#� �#�5�7�)�,�*�)��9�1�4�3�%�/�#�2�-�8�%�/�2�)�5�1�8�,�2�3�+�&�(�7�2��,�%�.�*�4�)�%�-�(�)�2�1�)�>�/�=�6�'�'�,�"�'�(��&�*�+�0�.�(�2�$�'�7�%�&� �1�&�,�(�!�)�.�&� ��/�+�(�0�@�)�+�4�8�3�7�/�2�-�'�*�)�<�*�,�?�:�.�)�.�,�ҀҀۀЀԀ؀ڀրՀĀրڀԀ܀рӀՀрրրـԀ�؁1�/�.�5�3�6�6�%�3�+�&�6�.�/�6�6�-�2�-�1�3�4�6�'�*�#�6� �5�<�*�)�4�"�(�.�7�$�-�4��8��)�3�&�-�*�8��)�1�4�%�'�6�3�4�$�6�,�� �"�(�$��/�&�!��4�,�)�)�$�1�(�'�4�,�3�-�0�#�#�#��'�-�7�)��6�.�+�4�1�9�/�$�'�,�)�)�-�,�.�.�2�-��!��,�%�:�2�.�2�,�+��#�&�3�.�*�.�0� �'�7�1�G�4�(�@�2�$�4�$�-�3�5�!�/�-�,��4�'�1�@�-��3�,�-�1�1�*�"�(�-�<�)�'�)�5�(�(�+�.�1�1�/�,�"�3�3�5�1�+�;�2�!�&�1�/�6�-��-�*�,�%�$�2�,�,�,�.�+�5�)�'�9�*�1��'�+�)�7�$�,�0�,�+�-�,�-�*�*�)�5� �/�(�%�/�"�+�-�/�9�#�<�6�2�3��(�1�(�9�,�&�0�*�*�-�1�0�)�1�'�+�(�-�:�%�2�.�)�!�(��(�;�%��2�2�3�$�/�6�2�1�8�(�.�)�%�*�)�0�.�0�$�#��4�(�3�3�:�'��-�.�&�.�&�9�-�5�0�.��+�,�.�4�*�.�5�<�-�+�,�=�&�,�3�/�,�$�1�5� ��8�4��1�?�%�+�+�+�,�.�'�4�%�"�9�/�0�$�)�+�&�'�/�+�4�4�'�%�2�'�2�$�#��2�,�#�+�-�-�2�,�$�)�0�5�.��0�.�/�.��,�*�/�+�6��,�4�1�*�$�/�0�%�9�!�9�6�'�*�&�#�?�#�(�1�%�4�'�+�+�+�2�:�)�.�)�'�*�$�.�5�*�6�)�/�8�!�*�0�.�$�3�&�$�*�$�0�(�!�&�1�8�$�6�/�/�5�4�,�&�-�"�;�#�)�6�.��.�'�0�"�,�,�!�#�0�+�2�(�2�7�&�,�,�-�-�I�&�)�/�-�5� �$�1�&�)�!�*�1�2�,�2�0�,�@�D�B�9�5�)�1�ԀۀՀ؀ӀҀ׀��܀ŀڀ׀ـҀ؀׀րր؀րрՀҀ؁+�1�3�*�"�;�%�"�*�7�.�)�2�/�0�)�:�5�(�6�/�8�!�)�/�1�%�+�*�:�.�)�.�+�1�-�2�C�#�)�+�+�#�3�%�)�*�0�&�$�$�1�4�*�5�%�*�#�6�*�-�.�#�3�1�:�,�*�3�3�5�/�/�)�4��)�0�2�4�3�5�#�/�'�)�4�)�+�#�&�-�(�-�2��*�&�+�6�)�*��4�5�7�*�(�*�*�3�3�"�-�,�&�/�-�"�+�+�%�!�"�/�$�(�)�+�"�/�=�/��2�*�.�$�3�2�'�-�#�%�*�;�&�+�#�4�3�%�"�)�4�!�(��*�3�)�'�-�%�*�%�&�/�5�1� �!�.�)�4�'�%�,�%�-�'�-�.�/�)���#�'�)�/�)�-�1�,�%�2�$�%�/�!�2�&�!�1�)�3�%�)�.�-��2�$�(�1�/�)�#�,�2�3�)�1�(�)�!�4�*�8�5�*�2�4�*�.�,�/��-�&�)�;�8�2�/�)� �/�(�!�-�-�2�$�/�/�(�.�.�.�'�2�(�-�+�.�2�*�&�'�(�;�3�&�8� �2�-�0�7�-�*�'�*�0�'�3�#�-�-�(�/�&�"�*�$�!�,� �9�(�%�7�4�#�)�0�)��,�5�,�4�4��(�1�-�#��.�/�+�)�+�2�"�+�-�8�'�/�"�1�&�-�&�$�'�/�E�!�/�'��,�.�'�2�$�/�%�-�&�+�%� �4�(�.�4�)�(�/�;�.�%�4��2�-�'�&�$�"�)�&�(�#�,�-�+�)�0�-�7�+�4�&�6�"�+�/��"��3�+�'�&�*�!�(�1�2�2�:�&�/�7�.�*�1�$�-�+�#�5��&�%�&�%�(�-�+�%�*�/��;�1�+�$�!�8�:�1��/�/�&�!�.�/�.�!�#�.�-�*�3�+�.�/�2�4�/� �2�*�,�+�(�1�,��%�.�#�!�(�2�/�1�2�-�(� �%�:�(�/�(�/�+�$�(�)�9�1�8�-�0�,�/�.��1�*�/�-�7�:�(�0�/�$�5�,�%�րҀـԀـڀՀԀՀŀ؀׀ԀՀ؀ҀՀՀրۀӀ؀ހׁ3�2�.�%�&�.�:�2�5�*�&�!�(�-�;�%�H�!�.�5�1�.�#�/�3�(�2�)�*��*�,�6�)�"�.��4�4��,�)�5�,�%�4� �)�'�2�(�'�.�'�3�'�)�$�#�(�1�(�4�'�&�$�,�$�)�,� �3�%�1�/�+�'�*�.�(�9�#�3�,�7�#�&�.�(�%�.�)�#�,�)�'�/�'�=�9�!�0�1�!�#�+�+��1�2�)�)�*�5�'�@�"�.��2�%�4� �(�8�0�.�6�1�4�+�.�+�/�0�+�*�-�0�!�#�2�/�(�-�%�+�)� �$�+�+�8�(�-�2�*�(�+�3�'�&�+�/�#�'�3�&�"�'�/��2��5�"�+�)�&�'�!�+�5�+�,�#�,�3�4�*�*�-�5�+�/�(�=�.�.�$�-�&�.�1��2�#�&�%�.�+�D�4�%�5�,�!�.�.�,�9�&�(�2�$�)�)�:�*�*�%�)�*�"�)�&�/�4�/��(�*�0�4�3�#�+�6�+�$�%�!�7�'�$��B�)�5�(�3�+� �)�7�0�0�)�0�(�1�"�$�.�)�1�7�,��.�.�(�%�0�5�-�5�%�#�.�.�$�#�(�&���#�#�3�'�+�-�)��-�#�&�.�2�/�0�-�=�3�%�&�-�.�0�#�0�0�%�2�5�*�D�0�2�+�6�+�"�&�/�$�,�#�(�)�&�!�%�)�/�0�4�1�0�#�-�0�.�)�-�5�%�/�&�(�-�$�&�,�*�5�)�,�4�8�,�)�'�$��0�.� �,�+�/�3�.�2�4�.�(�,�-�"�)�"�(�5�'�$�-�,�(�0�'�,�(�(�'�,�(�+�.�.�!�#�'��8�+�8�*�/�-��-�(�4�(�:�,�/�)�*�+�%�-�/�.�-�(�2�"�2�,�4�3�0��2�.�)�#��,�&�/�(�$�.�3��1�-�)�:�'�9�5�5�6�(�+� �'�5�7�5�3�"� �#�7�/�.�,�$�5�$�8�&�)�1�6�0�+��7�%�4�.�0�-�7�-�"�%�1�4�7�7�3�.�:�3�ӀրӀـԀԀ׀րԀƀррՀ׀׀׀Ԁր׀ԀրҀπف&�.�6�,�&�2�)�0�*�+�5�%�0�0�-�*��'�-�/�+�9�,��-�2�:�1�/� �.�6�<��4�+�1�1�9�6�0�(�4�3�5�0�<�5�8�/�5�.�6�9�(�.�"�9�/�)�:�5�%�4�2�(�/�2��.�/�3�!�,�*�?�2�-�-�(�7�+��7�4�/�3�(�2�3�.�,��/�+�;�3��0�,�2�(�?�(�*��-�0�/�*�3�,�8��%�+�2�.�0�8�%�6�'�&�?�*�&�*�*�'��-�+�-�!�)�6�"�)�6�1�,�&�*�$�,�)�$�#�*�)�!�-��-�,�)�1�*�6�2�1�*�1�%�+�.�,�$�%�5�,�/�)�'�)�2�/�#�!�(�#�(�+�'�!�?�.��4�-��0�3�+�"�(�#�9�6�+�#�1�+�$�4�)�(�1�'�.�*�*�7�'�8�8�$�(�*�1�/�-�%�%�.�4�2�/�9�*�+�1�'�!��)�&�!��/��+�-�(�*�,�,�'�*�"�.��>�+�0�:�"�,�4�:�3�0�)�#�6�%�/�?�!�(�*�)�#�*�-�/�"�)�!�(�.�'�/�+�)�-�2�#� �#��#�<�/�(�0�/�+�4�0�0�2�/��-�+�,�*�&�/�5�2�(�/�-�5�&�!�)�3�1�/�(�*�0�*�%�-�2� �+�4�+�%��/�-�.�*�/�+�2�0�(�0�&��"�/�-�(��'��(�#�(�+�B�*�&�+�%�!�%��3�/�2�'�(�)�9�1�5�.�#�9�#��%�$�-�2�.�.�,�1�,�$�'�+�*�)�"�0�#�0�/�4�)�)�/�%�.�2�(�.�-�,�/�%�%�3�0�(�'�,�0�3�6��+�,�)�%�*�*�5�+�(�-�-�.�'�!��!�&�&�5�/�2�+�&�-�1�2�!�1�'�0�;�*�-�/�!� �-�'�-�-�5�+�!�)�$�1�0�-�-�,�)�(�2�-�,�5�.�'��&�+�5�+�7�,�8��3�+�3�/�2�$�4�5�2�;�,�6�1�.�)�5�-�9�5�8�+�2�؀؀Ҁ؀Հڀ؀ԀՀǀЀۀڀӀրـۀ׀րـ׀׀ۀҁ2�B�2�<�/�.�/�(�B�2�*�'� �7�'�(�/�1�'�/�#�&�/�$�%�'�$�,�*�"�&�/�+�.�/�2�0�%�2�.�%�+�*�-�!�-�6�4�0�&�&�%�/�%�%��4�$�8�%� �*�0�*�9�;�"�)�$�6��0�/�&�)�-�"��5�0�8�/�2�'��-�-�)�(�*� �4�1��0�(�=�+�'�9�&�9�&�6�5�-�4�-�-�2�-�4�3�'�*�.�-� �+��-�,�.�(�%�/�&�%�'�/�(�3�.�7�-�5�!�-�2�+�+�'�2��0�/�&�'�,�)�.�*�+�3�#�)��)�/�*��0�3�.�/� �-�/�8�!�1�6��2�"�'�0�1�5�*�+�+��+��0�5�$�+�(�+�.�-�$�-�3�'�'��2�&�-�+�8�5�1�#�#�<�.�4�,�/�-�0�*�=�'�8�'�*�2�/�*�1��/�3��,�/�.�!�/�)�#�3�:�+�/�9�/�;�2�+�6�/�/�#�#�)�7�5�'�1�7�,�'�*�!�'�#�-�$�2�+�(�1�3�.�#� �+�<�2�9�'�+�'�$�*�*�"�/�(�$�%�+�"�%�,�+�(�$�6�0�/�,�0�*�&��!�!�4�!�1�#�#�8�,� �&� �+�3��$�3�1�+�%�%�5��/�5�5�,�7�'�1�8�.�#� �%�*�)�-�$�7�+�-�*�"�6�-�"�0�*�'�-�$�3�1�(�1�5�.�(�-�;�$�3�(�6�"�)��1�7�(�/�(�&�*�+�/�:�/�7�3�1�.�+�$�(�<�/�.�1�1�,�*�1�"�#�;�2� �*�,�)�'�0�%�;�,��'�)�+�+�2�.�/�+�7�.�-�,�(�,�'�<�8�0�-�-�/�*�*�'�6�&�7�'�(�'�"�)�)�.�$�!�!�/�1�#�-�8�9�-�(�!�,�,�5�/�*�-�*�:�1�5�0�7�-�-�?�7�#�<�/�#�7�*�,�5�*�5�#�6�$�2�%�-��!�0�$�1�)�3�9�.�.�!�2�+�(�'�;�3�"�+�#�(�1�-�'�׀׀ڀր؀ՀӀ؀рɀ݀Ԁ׀րҀـ׀׀րۀӀـڀׁ*� �2�/�#�%�5�0�%�6�(�1�!�2�5�.�4�4�1�2�6�.��)��'�(�$�$�$�0�,�!�/�4�1�!��7�5��'�1�%�2�)�+�*�.�3�'�-�)�/�$�6�1�-�:�!�$�-�+�(�&�*�,�,�2�%�+�&�2�&�1�"�*�*�3�(�'�+�$�2�1�/�+�"�6�.�-�)� �.�&�2�*�1�C�%�'�/�*�+�#��,�=�1�(�(�.�(�+�9�/�/�(�1�1�"�*� �,�.�4�*�2�9�+�'�,��)�%�-�2�+�2�-�/�5� �!�&�6�,�2�0�+��%�*�#�.�5�0�-�&��*�.�8�5�/�2�,�%�.�*�$�;�#�%�.�&�"��(�-�;�/�0�2�2�-�"�(�0�*� �2�/�#�!�4�&��-�-�#�.�2�"�(�.�$�'�*�>�'�,�*�%�)�#�@�+�+�)�*�)�!� �*�0���%��*�3�%�2�"�5�'�1�7�-�#�$�0�1�/�6�2��4�#�/�.�3�)�0�/�/�-�(�-�4�7�3�6�*�/�:�#�7�7�8�.�#�*�,�*�+�)�0�6�,�$�:�/�)�&�6�-�"�(�'�>�/�4�:�@�0�!�/�#�0�(�.�)�$�/�'�+�6�(��2�-�&�;�*�$�/�(�,�+�+�&�2����4�5�)�%�&�.�+�%�!�$�$�1�-�!�$�-�(�/�)�+�-�,�.�8�'�)�/�$�1�+�2�,�+��&�/�3�'�,�2�-�4�#�!�>�6�9�#�<�/�3��5��-�2�5�6�4��2�+�)�*�7�7�#�/�(�.�)�!�6�$�'��,�-�(�&�0�2�*��(�-�3�-�%�0�0�*�1�6�)�2�+�5�5�,�3�)��#�/�(�&�5�0���.�(�+��0�*�1�0�,�,�(�,�!�#�)�*�*�&�)�9�)�+�*�$�9�&� �)�,�'�/�-�+��.�2�+�4�-�0�)�5�(�&�)�1�0�5�$�'�"�1�/�&�"�"�4�+�,�?�)�%�(�,�1�4�+�.�+�&�2�1�0�5�ڀӀۀՀــ׀׀ӀÀـڀՀӀր׀рրր׀؀ڀԀԁ1�+�&�1�3�0�/�1�(�,�-�7�)�<�)�*�,�!�&�6�2�7�4�6�*�4�-��'�/�4�%��$�<�%�/�)�+�+�!�0�.�+�:�$�*�'�1�&�$�1�&�.�/�)�2�,�9�5�-�$�0�0� �!�+�#�0�&�/�!�-�2�2�7�&�/�-�2�-�4�"�4�3�/�+�-�/�,�.�.�6�!�5�*�(�&��!�%�#�,�0�1�2�4�-�+�8�+�%�,�+��+�8�&�(�&�,�8�+�0�%�9�-�%�1�2�4�$�/�'�*�)�-�%�3�'�1��B�2�3�.��/�/�5�)�"�)��/�5�+�,�'�3�3�%�*�#�+�3�7�3�8�*�'�0�.��#�$�6�.�;�!�3�-�)�@�.�.��&�(�/�&�0�/�/�+�%�.�+�%�"�*�.�&�0�/�"�1�$�3�6�*�6�3�&�4�.�/�(�(�/�%�4�#�(�!�.�,�,��&�+�&�%��,�+�'�%�>�)�5�#�*�.�(��$�)�.�,�(�1��*�&�*�(�<�"�%�>�,�)�(�(�<��'��,�5���2�'�,�3�.�.�"�*�9�5�&�7�-�8�.�%�1�"�-�0�$�2�.�#�2�0�7� �.�%�*�+�+�9�8�0��&�%�$�/�)�5�6�+�3�#�"�4�#�-�1�"� �9��*�'�4�(�*��+�+�0�$�"�2�/�/�"�6�'�2�.�0�2�,�/�'�?�7�$�*�.�,�!�%��*�"�+��*�)�0�,�&�.�(�*��-�#�(��)�/�&�/�$�!�2�+�-�3�,��.�(�+�,�&�,�"�-�/�<�1�/�*�<�)�+�-�,�+�6�'�,�+�7�'�-�5�#�$�*�0�'�)�!�)�+�,�-�'�#� �1�2�/�*�#�-�&�/�%�(�-�/�+�-��4�-�3�C�*�0�1�1�-�0�&�A�3�$�'�)�%�-�%�)�5�*�'�*�&�3�!�#�-�-�+�8�,�+�3�$�*�-�,�>�#�3�+�0�/�;�"� �*�0�.�<�7�+�'�(�.�/�!�&�8�+�:�*�%�؀րՀӀՀπ׀Ԁπŀ؀րԀ׀׀؀׀ڀ׀րӀ׀ڀՁ6�/�5�;�(�0�5�$�7�0�-�$�&�,�"�#�'�6� �.�4�,�-�2�-�$�/�'�/�#�8�/�(�3�.�%�8�3�1�+�.�.�2�0�)�$�$�0�3�%�.�8�0�$�8�%�'�-�3�2�6�)�$�=�-�4�'�4�3�)�"�#��<�1�!�7�,�'�/�-�%��2� ��#�%�#�:�!�!�/�2�+�*�'�)�'�.��0�#�-�,�.�1�!�2�-�$�#�(�6�/�2�-�4�#�%�/�6�*�+�.�%�/�1� �/�'�"�=�2�,�/�#�*�%�/�"�5�-�6�.�(�#�9�'�/�0�3�'�$�'�,�3�7�.�+�!�%�*��,�'�/�1�3��3�)�6�.�&�7�+� �.�*�*�3�-��1�8��$�'�"�'�1��5��;�3�/�4�'�.�2�/�@�2�#�+�/�1�6�'�%�&�8��,�,�&�'�%�)�+�/�+�9�1�(�8�0�/�)�+�"�&�&�6�*�'�*�-�(�(�"�.�(�5�'�'�-�.�+�/�.�6�<�$�6�-�4�8�$��4��-�1��4�)�4�<�#�+�)�9�'�1�2�)�)�2�/�)�'�#�0�-�+��&�'�/�+�(�(�2�0�*�2�+�5�-�1�*�+�+��*�7�'�$�.�-�(�=�-�/�-�.�*�*�%�0�$��4�+�3�0��2�4�-�*�,�*�0��7� �.�"�2�,��/�1��9�)�*��/�/�!�'�/�"�'�+�/�7�,�/�(�'�&�(�(�.�$�+�!�'�-�+��$�-�/�+�(�.�1�=�$�6�6�1�-�(�.�*�)�%�%�!�4�%�)�-� �+�1�!�0�+�8�+�;�(�,�;�+��*�2�%�0�1�$�)�/�+�'�,�4�%��(�$�-�+�*�!�,�&�,��*�<�(�1�%�'�/�*�2�$�)�,�;�3�/�3�/�$�&�/�$�/�,�.�%�;�,�)�5�.�&�/� �<�&�+�'�3�+�'�#�3�)�*�0�8� �1�(� �%�1�0�/�/�,�+�*�2�/�(�7�&�1�(�*�,�*�-�'�&�5� �Հـ׀րڀ׀Ԁ׀׀Āـ؀Ԁ܀Ԁـ؀ҀـԀրՀڀс2�6�2�<�5��)�.�%�9��)�$�%�,�'�.�1�7�2�)�#�1�.�9�(��1�3�$�#�0�+�'�)�&��+�$�+�)�1�8�'�+�*�+�,�*�1�5�)�)�)�:�(��.�%�8�'�&�,�'�%�0�3�0�#�)��/��/�)�.�,�9�2�-�"�;��/�&��$�-�%�+�%�-�4�2�(�+�7�&�#�'�.�+�#�6�1�"�#�+�"�#�4�%�#�2�1�(�*�-�'�(�0�-�'�A�(�3�(�'�1�3�,��3�$�+�4�(�(�3�%�8�%�'�(�3�/� �-�%�)�%�#�"�#�'�#�*�$�)�/�!�1�)�(�:�#�)�"�#�%�#�"�3�2�*�/�6�*�.�&�(�(�#�(�3�-�8�3�4�2�3�/�&� �9�5�6�*�'�2�#�*�"�1�:�*�,�(�%�'�*�)�-�*�&�%�/�&�'�(�3�.�%�6�$�)�,��,�,�"�:��'�3�0�+�1�2�)�(�2�'�.�=�!�'�9�!�%�%�.�'�1�6�1�.�3�7�$�)�3�4�+�)�/��0�:�/�+�'�%�&�'�'�3�&�&�0�"�,�2�6�2�*�-�.�.�)�3�$�&�.�5�"��0�0�+�!�1�%�6�(�-�&�"�#�2�)�+�&�)�(� �(� �2�'�'�&�(�%�1�0�4�)�-�+�'�,�(�1�5�+�/�.�"�/�*�'�&�(�(�&�0�'�.�7�"�$�0�,� �)�)�.�*�?�&�*�)�#� �0�8�"�0�+�,�-�*��5�-�)�*�%�.�8�-�"�:�+�1�1�+�5�"�)�2�&�"�5�0�)�%�%�-�*�+��.�&�2�$�3�)�#�"�/�=�6�(�,�!�%�+�%�#�>�#�1�4�(�&�)�.�'�(�%�(�-�%��'�9�5�/�3�(�!�,�4�-�.�5�8�1�)�$�+�/�)�'�!�0�5�*�6�-� �0�2�.�,�4�<�1�2�1�7�0�+�3�6�3�'�&�%�.�$�4�,�.�(�3�%�=�2�#�3�.�/�'�!�%�-�-�/�/�)�5�+�-�(�*�,�&�'�#�րڀҀրրՀӀ׀Հ��ԀՀ׀ـۀـ׀Ԁ׀ՀـπڀӁ1�,�7�+�'�,�&�-�-�)�7�4�"�)�)��.�!�9�)�.�*�'�*�/�%�.�1�+�3�+�,�)�5�1�.�(�6�,�#�#�7�6�$�7�'�,�&�1�,�,�'�2�0�/�3�+�,�+�3�'�'�0�7�-�'�/�%�.�+�6�!�0�4�/�<�.�%�/�-�.�0�>�;�)�>�3�1�/�2�1�2�#�5�2�=�*�0�*�&�%�0�,�/�)�<�)�$�.�&�(�.�5�*��2�-�!�&�$�6�)�&�2�5�&�)�.�"�-�,�*�&�.�*�0�"�4�*�5�'�&�-�/�4�,�$�$�&�-�1�%�&�-�%��3�3�'�6�3�+�.�)�5�3�(�6�3�-�/�'�8�0�/�=�-�,�:�+�2�'�7�!�+��*�)�9�+�>�"�4�)�&�)�(�/�)�.�)�2�)�&�/�4�-�5�0�,��1� �-�,�$�4�)�4�+�,�0�)�,�.�3�%�7�;�+�,�(�1�-�!�(�&�1��+�-�)�-�+�,�-�)��+�,�-�,�*�(�%�+��*� �&�/�3�'�#�2�3�/�8���-�%�*�4�.�&�$�8�!�2�/�'�%�)�'�,�&�3�-�3�<�3�)�+�&�4�/�-�#�(�+�%�/��-���3�$�8�$�1�)�!�&�.�(�*�?��3�3�*�(�)�/�1�'�*�,�$�0�.�8�1�9�2��1�/�(�3�/�'�/�*�,�-�$�+�"� �!�)�*�.�,�%�7�-�4�"�(�7�5�/�9�$�1�)�*�,�*�,�$��/��-�#�2� ��)�/�1�1�%�'�+�0�/�-�(�9�/�2�)�7�5�,�,�:�$�+�5�/�)�+�.�$�/�0�%��"�*�/�.�$�"�*�1�&�3�4�7�5�5�*�/�+�-�5�6�(�8�5�(�,�&�9�'�,�+�%�.�,�+�/�,�+��!�;�8�$�(�-�2�(�/�8�+�3�.�4�*�0�+�-�4�)�*�1�&�)�0�6�3�&�6�,�)�9�/�2�2�+�+�(�-�.�*�)�3�(�/��$�(�+�+�0�!�:�%�6�2�:��-�ـӀ׀րۀԀـπԀɀڀـ݀ԀҀҀ؀ӀррՀ܀׀Ձ,�/�7��.��"�&�2�#�;�$�-�/�/�2�6�3�.�!�/�6�-�/�'�1�'�)�-�$�(�7�<�%�%�:�)�/�9�2�2�$�/�(�-�:�!�(�.�2�/��"�/� �3�6�!�2�(�3�,�+�5�2�0�-�&�.�$�"�'�%�'�%�.�0�3�5�2�<�0�/�*��3�+�1�&�-�%�/�$��*�%�0�5�2�/�-�8�,�-�2�2�%�.�*��%�9�*�=�*�'�'�)�3�$�)� �7�'�/�)��-�%�+�#�5�'�*�'�.�,�!�&�(�+�5�/� �=�%��:�+�'�0�-��-�4��3�1�0��6�!�:��-�0�-�(�!�'�1�/�(�!��-�.�9�*�&��1�5�#�,�+�*�.�6�!�1�$�)�-�5�+�)�,�+�7�*�5�!�%�)�5�+�$�/�2�)�.�+�/��,�)�)�%�2�%�%�'�*�+�3�-�(�+�'�%�-��'� �.�#�*�.�&�0�(�&�!�)�4�,�/�-�.�1�)�=�0�4�.�+�/� �%�3�%�1�.�*�(�#�(�;�+�'�0�&�)�'�,�:�-��&�!�+��+�0�"�+�(�+�+�;�/��/�2�)�)�0�,�"�8�!�*�)�!�)�.�1�0�.�4��&�$�.� ��'�&�+�%�)�-�*�/�.�2�!�)�)� �%� �4�$�0�$�'�.�'��%�%�$�0�%�.�/�*��"�!�-�*�8�.�8�"�8�+�(�*�'�)�5�.�-�*�6�*� ��(�,�4��/�"�0�-�$�"�)�0�*�!�*�)�*�-�6��+�'�3�1�&�2�/�)�'�#�"�,�7�-�/�+�(�4�-�0��3�1��0��9�-�'�"�.�4�:�*�0�-�&�&�.� ��&�&�/�,�%�(�%�"�*�0�*�)�)�.�4�,�'�,�+�)�&�/�2�!�%�/�%�� �1�3�-�-�4�/��0�2�+�/�'�8�,�.�3�$�2�6�2�-�$�%�+�0�=�&�9�3�>�.�)�9�*�0�%�.�4�+�3�3�(�/�,�(�7�+�.�%�-�ڀ׀րր׀ڀՀۀԀǀրԀրр؀ۀ؀ـԀ׀Ԁڀڀف+�1�1�?�0�4�7�(�;�/�7�4�*�1�9�1�-�0�&�5�)�1�/�6�9�.�&�,�$�*�0�,�0��+�4��.�&�3�6�&�-�+�+�"�(�,�;�0�$�!�5�(�2�3�;�.�2�&�.�#��-�(�)�+�&�3�)�$�3�%�'�'�+�7�*�,�#�!�*�,�1�3�.�,�+�5�&�*�2�)�-�)�-�E�7�3�+�#�0�,�-�-�9�2�5�)�*�-�7� �/�/�-�/�#�6�+�1�5�5�*�/�+�*�+�)�3��+�+�6�5�*�*�+�/�9�#��.�#�7�.�,�0�&�)�5�8�(�5�3�&� �,�.�)�*�*�)�'�.�@�-�.�'�!�1�4�+�8�"�5�.�!�'�8�3��'�'�(�/�"�*�0�6�.��%�'�1�%�+�*�)�6�"�,�*��>�)�7�!�4�/�*�,�"��0�$�-�"�+�2�0�0�7�.�4�*�+�/�)�5�!�)�#�:�2�/�+�5�+�/�6�$�'�'�*��$�6�+�7�4��(�%�;�1�'�4�.�(�)�(�2�+�)�/��7�%�*�3�$�%�2�2�)�4��0�-�-��+�1�/��%�'�&�)�*�)�8� �8�)�&�7�9�-�!�/�(�B�0�"�2�6�"�2�+� �+�7�;�%�&�)�%�*�*�7�.�2�(�+�8�=�#�1�5�!�4�/�&�,��(�8�3�,�2��/�&�)�/�2�,�,�+�,�,�,�0�.�'� �)�2�>�2�+�+� �5�3�6�'�+�&�4�!�*�$�(�-�(�2�(�$��)�/�$�@�/�$�/�1�.�)�/�%�$�>�2�0�(�-�-�)�-�(�8�'� �(�!�/�$�6�6�+�%�.�-�$�=�6�4�-��@�-�*�-�0�5�"�(�,�)�-�-�/�/�*�&�1�)�7�.�!�+�&�,�.�4�'�.�)�9�*�&�'�(�*�$�$�4�'�,�3�.�'�5�*�/�&�5�(�.�/�6�+�3�+�3�/�#��'�!�+�$�.�"�7�0�-�0�7�#�G��-�+�&�/�0�0�3�,�$�.�,�%�1�$�9�)�׀Հ؀Ӏ؀ـԀۀրǀրҀՀހԀՀ׀րـ׀Ҁ׀Ҁց%�.�+� �2�+�<�!�'�1�.�3�/�0�3�.�7�-�,�.�-�6�(�5� �2�7�(�)�0�'�(�$��/�*�3�-�!�*�2�'�'�,�"�*�+�5�3�"�*�.�%�9�,�-�2�2�/�1�9�*�(�0�%�(�0�0�7�.�&�%�-�3�.�'�2�*�#�'�,�%�-�!�$�,�)�9�*�/�%�/�5�1�6�'�1�-�0�+�/�;�'�-�,�-�"�(�8�)�&�%�/�&�#�+�'�;�)�%�)�7�&�3��)�0�1�2�3�/�)��%�7��<�(�/�'�.�*�(�,�,�$�$�1�*�)�4�/��3�-�2�2�5�%�+�,�"�/�)�&�(�+�-�)�'�1�/�%�*�-�'�,�)�1�1�*�5�.�&�&�'�&�'�.�5�:�C�/�%�%�4�2�*�1�/�4��(�/�+�1�-�*�(�'�)�(�2�7�!�,��/�/�7��-�4��+�*�,� �+�,��%��*�%�/�/�&�2�8�(�(�3�)�+�.�0�.�"�+�(�'�2�)�.�$�"�1�$�!�'�!�0�&�'�$�7�,�4�#�)�)��4��$�/�%�(�7�/�3�-�3�2�/�,�-�)�%�#�,�1�%�<��"�2�+�&�*�+�&�6�*�2�%�)�7��!�'�&��5�#�&�&�2�*�5�4�&�(�,�.�/�:�2�0�.�%�%�1�$�"�.�&�1�/�2�*�6�*�-�7�)�1�'�'�/�3�-�0�5�#�*�:��5� ��(� �6�.��,�"�*�2�-�&�'�%�1��/�*�0�,�&�-�=�&�1�)�.��%�-�+�+�-�'� �"�-�(�3�&�9�)�#�&�0�*�.�+�-�&�!�(�+�0�5�)�(�'�!�#�:�A�,�1�$�$�+�&�-�8�7�)�'�'�)�-�2�1��'� �&�#�;�:�'�6�-�2�6�4�*�,�1�)�#�3�-�9�8�9�,�2�,�)�%�!�)�0�/�*�:�#�*�/�3�&�0�0�,�-�(�,�3�6�2�0�,�/�0�5�<�3�&�"�&�1�)�(�)�4�/�#�,�6�6�.�%�#�'�8�؀׀׀؀ЀՀրրҀ€ۀԀ؀Ԁ׀؀؀րҀԀր׀ր؁+�*�8�0�3�(�5�.�5�:�1�3�8�:�<�)�/�'�&�-�%�/�,�.�)�1�)�(�<�<�!�,�+�6�6�3�#�4�'�0�#�1�2�,�/�*�.�/�(�+�5�7�&�"�%�+�'��/�2�-�%�*�0�#�'�#�6�*�;�4�'�'�>�3�5�+�4�/�&�8�0�5�$�)�#�$�/�-�0�*�,�4�'�/�0�#�1�)�'�.�-�$�6�/�!�1�5�&�2�4�"�5�1�+�6��2�!�1�7�(�3�/��)�9�6�)�&�!�*�#�+�'�)�|�݁F�%�#�0�>�:�&�#�)�=�+�&�,�)�,�.��+�'��!�� � �-��!�#�*�2�,�,�+�-�!�*�.�)�)�.�'�)�3�'�3��$�6�,�.�;�.��<�1�:�-�-�/�-�)�&�(�&��:�3�=�0�.�(�)�*�&�&��+��,�,��5�8�"�$�0�(�)�5�8�;�7�D�6��4�-�+�!�1�#�*�$�5�#��-�+�.�0�"�/�!�$�0�/� �'�7�.�)�2�1�+�1�!�/�+�>�,�-�0�'�+�2�)�2�&��)�.��-��5�-�%�%�%�,�"�%�!�,�2�#�-�/�(�.� �;�8�+�"�#�'�(�)�0�.�0��*� �*�.�+�(�2�,�+�'� �3�)�9�0�.�3�/�'�3�0�-�.�-�/�+�4�'�)�"�/�,�2�&�,�$�,�-�"��%�/�(�$�"�,�#�-�2�/�)�$���,�/�*�*�*�%�+�!�7�'�$�-�#�*�&�0�-�/�&�.�'�-�&�+�'�"�(�*�2�.�7�2�0�%�&�0�2�3�"�+�&�-�"�'�0�*�#� �+�/�)�&�*�/�3�0�/�5�8�3�6�.�'�/�,�1�/�&�:�<�-�.�/�-�-�%�5�%�%�.�2� �/�/�.�*�9�'�%�;�,�0�!�'�,�0�,�)�0�,�6�)�$�$�)�)�)�'�*�&�$�#�$�-�5�%�.�"�"�*�+�;�1�(�:�3�,�!�(�)�/�"�'�-��6�5�-�(�8�+�)�1�)�/�4��Ҁ׀Ԁ׀ՀрրрӀƀـրրـҀՀπӀ؀րրڀՀׁ+�*�1��5�.�1�>�:�&�(�.�;�$��-�+�#�6�*�*�+�*�(�9�+�+�0�4�$�'�-�5�.�.�+�*�$�6�0�+�'�/�#�#�0�-�6�$�/�%�,�B�(�!�:�'�&�"�.�,�#�,�+�$�(�,�.�2�.�#�8�*�7�'�(�/�-�/�*�2�2�.�!�2�7�3�%�'�1�&�"�5�+�1�1�2�:��#�.�5�3�+�1���*�0�4�1�'�'�6�/�0�"�/� �+�+�)�9�3�1�/��5�'�3�(�'�.�%�2�,�Q�R�6�/�*�/�+�/�"�3�)�.�-�*�(�)�"�/�/�#�/�&�,�-�&�*� �$�(�*�/�$�,�.�*�'� �-�)�/�.�)�(� �"�)�%�*�#�(�-�(�2�+�4�!��+�=�.�4�/�1�A�/� �1�.��6�5�%�2�2�.�/�1�.�1�0�.�,��,�3�'�1�5�0�$�0�2�$�3�.�/�$� �'�'�1�"�,�.�#�0�+�1�&�%�1�(�#�,�!�2�)�$�2�,�5�=�,�;�%�'�(�+�7�.�/�3�*�%�:�,�6� �$�,�+�"�0�/��)�-�%�*�#�)�,�*�?�+�&�%�1��$�-�#��.�*�+�)�7�#�0��1�5� �2�0�&�%�0��.�#�)�*�+�%�(�.�#�3�$��2�*��-�+�/��&�.�2�0�I�-�5�$�)�7�+�+��,�2�(�-�-�%�*�1��-�:�3�4�/�2�3�,� ��/�)��%�/�+�7�+�,�3�=�(�&�!�(�"�%� �,�/�&�&�5�*�(�-�,�.�1�+�!�&�%�+�/�*�'�'�0�-�+�*�2�$�&�;�(�$�+�5�.�4�)�2�)�!�;�$�3�*�4�)�8�0�-�-�/�1� �*�0�-�1��(�,�)�-�*� �2�%�0�&�"�/�4�2�-�&�(�)�+�6�-�1�7�*�1�,�:�6�/�*��,��+�-�$�!�!�'�-�7�5�,�5�)�%�'�2�&�)�5�/��4�"�0�-�8�)�:�5�(�.�;�,�6�,�1�(�%�/�ҀՀҀ׀ۀـ׀ՀՀŀրՀӀڀրր׀ڀՀ؀Հ؀րρ)�+�3�5�'�?�5�%�.�'�:�-�*�,�3�C�-�+�!�%�,�9�"�&�1�7�-�2�+�2�4�.�%�2�/�%�.�)�+�3�2�(�9�'�%�,�8�/�(�5�/�>�?�+�'�!�;�/�)�)�(�#�4�9�/�%�*�#�1�2�(�)�)��&�-�5�$�'�2�'�7�/�/�!�6�*�0�0�+�&�'�/�*�-�-�+�)�+�/�&�%�3�+�+�,�$�/�$�$�,�6�(�0�"�.�+�/�+�+�/�1�-��'�7�*�%�,�1��-�/�+�7� �#��1�4�#�"�1�#�)�%�%�+�"�"�)�+�,�+�(�6�/��(�1�,�&�/�0�9�*�&�3�)�/�&�8�+�;�/�.�8�,��"�(�0�#�0�:�7�0�6�6�/�/�4�&�,��-�7�'�/�3�+�4�3�.�2�+�/�(�*� �6�-�)�4�#�1�$�1�4�&�0�*�7�+�%�2�#�&�'�2�4�6�#�'�3�(��+�,�%�&�)�*�J�-�/�8�%�&�-�.�0�(�*�2�3�*�/�3�1�+�'�7�1�-�"�+�&�.�*�)�(�-�%�#�2�*�4�;�+�.�/�)�5�%�5�1�(�1�7�)�"�#�#�#�5�0�1�'�*�%�'�)�+�(� �:�#�<��&�/�5�#�2�$�!�-�6�"�+�#�/�$�/�0�4�5�#�(�+�(�1�(�-�/�0�*�6�2�'�?�'�*�2�&�(�.�4�6�%�!�(�$�)�/�'�+�/�&�-�'�*�6�5�5�+�(�*�-��3��9�-�%� ��+�/�&�-�*�'�2�'�)�3�$�-�%�+�(��"�#�"�+�+�-�%�)�8�,��>�&��(�9�!��:�*�?�/�,�3�'�'�"�-�-�'�!�-�9�-�+�'��&�*�<�(�%�2�)�.�+�"�1�$�.�#�#�"�"�!�$�0�+�%�-�-�;�(�%�6�-�3�*�)�&�?�%�/�&�)�7�(�>�#�2�4�2�;�/�+�/�#�7�B�4�*��0�*�+�!�.�7�$�5�%�*�=�%�;��4�)�&�:�9�3�-�1�+�-��)�ԀՀڀՀۀ؀؀׀րŀЀՀՀԀڀӀـӀڀրπՀӀځ �5�+�3�'�.�&�2�)�/�2�.�+�3�,�(�$�.�$�7�(�#�+�'�(�6�,�.�2�3�%�1�5�D�4�'�.�.�7�6�6�)�%�-�'�4�%�*�%�<�9�'�"�-�%�"�7�6�#�+�2�/�6�(�2�&�(�,��4�'�(�)�*�#�$�&�*�&�.�6�.�2�/�%��<�(�.�0�'�,�*�/��"�(�#��*��/�-�1�4�(�7�/�*�%�(�%�'�<�/�-�%�� �%�%�.�9�'�3�+��3�1�3�,�*�'�)�.�*�.�*�.�&�/�)�-�$�)�,�-�&�%�4�'�.�+�-�-�2�#�.��#�+�(�=�6�$�7�8�,�1�1�*�5�&�2�5�)�+�)�+�2�1�)�&�,�/�1�,�+�(�"�"�4�,��(�7�(�-��7��+�4�*� ��$�#�)�1�'�/�*�,�)�'�,�+�7�-�&�"�1�+�/�*�5�$�.�-�+�6�"�(��1�+�)�2�%�"�3�-�/�(�1�#�6�3�,�*�-�,�-�4�+�/�4�!�/�3�-�&�A�-�-�$�'�'�0�%�6�.�-�-�(�%�!�+�1�3�%�/�5�)�/�-�.�2� �3�,�'�5��-�$�8�>�%�'�&�0�@�*�6�5�-�/�"�"��(�!�)�-�4�%�2�1�1�9�)�-�1�$�&�+�9�%�$�'�%�"�*�1�$�5�5�C�1�3�,�&�)�8�%�#�'�1�+�'�.�$��,�5�-�'�,�/�0�(�'�-�$�-�1��'�+�.�)�-�%�-�.�(�)�&�4�5��2�%�!��5��/�5�(�6� ��&�0�-�)�/�3�-�/�"�&��1�+�%�+�'��!�!�8�*�!�*�-�!�4�+�0�)�*�/�+�+�'�3�'�$�&�(�*�"�$�$�-�-�'�#�)�!��+�2�0�/�!�6�/�2�&�/�8�$�(�+�+�&�#�&�+�+�;�)�2�4�'�,�0�.�&�8�9�)�#�,�9�-�,�.�6�-�+�>�2�6�.�'�(�$�)�;�3�(��%�5�1�&�.�/�-�,�,�+�3�0�7�7�׀Ԁ׀ـ؀Հ׀ր؀ʀԀڀրՀрӀրրۀҀۀ׀݀Ձ*�3�6�9� �)�'�$�4�-�/�1�0�/�7�,�)�.��/�2�/��2�!�7�'�"�!�5�.�%�/�+�-�.�7�?�1�+�(�*�'�5�"�9�%�4�&�/�&�*�0�4�8�+�'�'�%�(�/�-�.�.�1�"�/�(�1�3�0�7�4�2�1�+�(�+�)�(�+�2� �&�6�%�$�#�)�.�%��+�,�1��(�-�2�3�0�'�.� �)�+�:�&�0�)�8�/�)�4�!�<�)�3�*�$�/�1�:�9�+�7�+�1�#�,�/�4�#�,�#�'�)�#�-�!�1�4�8�.�'�%�0�0�0�:�(�(�(�*�>�'�6��"�'�1�(�#�4�-�,�2�-�#�!��'�&�1�&�)�!�.�9�)�#� � �6�)�'� ��-�*�&�2�.�3�.�.�2�+�)�$�/�0�1�4�*�'�8�&��#�,�)�+�2�)�(�#�,�#�2�*�3�%�(�&�'�'�.�&�1�4�<�4�&�6�$�*� �,�6�&�0�+�&�3�%�(�&�3�1�*�$�*�+�!�%�%�:�2�8�.�$�;�-�3�&�0�/�3�5�'�2�&�0�+�4�%�4�-�2�$�-�+�%�3�1�%�,��%�+�0�.�)�/�3�1�/�/�3�6�;�*�*�(�$�1�+�C�+�5�!��*�"�(�:�1�*�"�.��%�3��6�&�#�$�$�+�#�0�"�&�3�/�/�)�#�"�*�-�:�%�:�.�*�#�%�0�&�-�8�0�&�'�*�4�)�.�9�(�+�"�0�(�"�5�+�)�6�2�5�-�.��2�2�*�4�2�<�,��(�(�+�0�(�7�5�"�$�>�&�"�1�!� �+�<�3�,�+�&�/�,�(�"�+�;�!�,�-�9�2�2�*�/�)�,�"�5��'�!�8�+�-�6�,�0�,�(�+�)�*�+�3�/�,�.�(�.�.�6��+�3�(�&�4�-�*�6�+�&�/�-�9�#�"�.�'�-�#�;�/�*�1�(�+�8�5�9�,�#�(�:�+�3�.�'�-�&� �*�(�,�*�)�0�)�!�(�'�@�7�-�,�*�,��5�(�1�6�%�3�$�6�րـӀ׀܀؀րՀҀŀр׀рր׀Ԁ׀ڀ؀ԀՀЀـځ2�0� �3�3�5�,�/�/�.�;�&�=�2�/�#�/�*�,�&�'�-�+�6� �(�(�-�-�&�@�)�;�5�(�)�/�+�+�)�1�1�1�(�1�8�'�(��-�'�,�.�+�(�.�2�(�#�(�0�3�+�&�4�+�5�2�+�-�)�/�*� �1�)�<�0�#�$�D�3�3�*�0�&�#�7�3�%�)�)�<�,�)�0�&�1�5�+�)�%�'�%�!�(�!�:�-�'�?�,�.�-�%�)�/�,�8�"�3�%�)��'�$�!�.�.�:�.�#�7�%�(�(�%�4�&�)�)�.�-�+�-�%�)�1�0�"�-�1�3�$�&�:�,�+��%�6�-�1�4��/�(�+�&� �4�2�+�8�6�$��,�.�/�/�+�!�"�%�+�0�$�'�0�:�/�-�)�(��%�6�2�&�$�,�+�/�&�&��)�)�0�(����.�+�#�%�$�&�.�2�2�'�6�5�2�&�-�%�6�(�/�)�/�+�!�&�.��6�2�*�.�4�+�-�9�0�,�2�-�$�2�/�%� �7�5�%�!�,�.�/�9�0��<�-�%�-�3�1�.�!��&�%�3�(�,�.�,�+�.�'�2�5�"��#�.�/�!�'�-��6�+�-�*�.�/�3�$�$�-�"�-�%�2�+�#�0�5�$�2�/�&�-�%�-�,�4�%�5�@�/�/�)��&�;�+�7�/�$�%�/�,�*�*�4�9�7�%�/�7�*�.�;�#�4�"�(�:�2�3��.�-��&�+�.�-�$�2�,�+�;�#�*�#�2�#�)�'�2�%�7�'�*�0�-�$�,�8�3�#�,�.�9�-�/�&�D�"�.�'�)�+��*�.�%�&�&�-��-�4�&�*��)�6�)�'�"�$�(�&��-�2�.�/�,�2�-�-�(�+�/�-�0�-�7�'�7�(�0�/�4�'�3�$�0�4�'�(�.�&�-�&�/�5�&�1�$�"�3�'�-�2�?�-��%� �/�5�-�)�%�$��3�'�+�/��%�#�$�,�0�/�$�7�:�-�.�,�/�*�+�1�6�0�/�)�=�5�(�3�!�0�.�5�&�ՀЀـր׀Ѐր׀րɀӀ؀Հ׀Հ׀ۀ׀ՀӀՀՀҀՁ�/�;�.�2�&�&�&�%�*�'�2�/�6�-�+�/�9�%�$�)�+�+�4�%�)�;�<�$�6�1�'�+�,��,�+�=� �.�*�.�'�!�'�3�3�8�+�2�/�!�*�$�*�#�/�.�#�)�4�+�,�$�0�/�&�/�:�*�'�)�"�2�(�&�(�"�)�'�*�3�-�(�*��)�,�7�5�+�5�,�*�/�.�&�-�1�!�,�3�,��#�.�&�.��$�+��"��0�%�+�7�-�1�7�.��(�2�8�3�*�-�6�.��-�.�!� �&�-�2�$�-�1�#�,�$�&�(�(� �*��'� �*�,�)��0�(� �"�-�*�+�2�/�5�4�*��-�2�0�2�)�/�.�)��7�4�+�-�3�/�"�,��-�-�)�/�)�*�'�,�'�6�(��3�)�*�*�-�-�#�)�-�'�&�#��+�-�1�7�/�+�$�*�/�4���7�0�"�5�3�'�0�(�%�3�,�6�9�-�$�-�/�'�*�3�+�.�)�%�2�&�/�.�3�/�%�-�/�-�%�5�5�#�)�0�>�(�3�-�5�'�1�6�$�%�*�5�0�/�(�(�)�0�&�4�:�-�5�-�8�)�,�'�(�$�$��,�+�6�#�&�6�1�*�2�:�%�#�,�)�/�6�!�&�,�%�)�.�4�.�)�1�#�#�*�,�*��&�0�6�/�*�*�3�%�&�H�%�*�-��(�7�=�#�+�6�*�6�(�5�5�,�%�%�#�1�+�/�.�0�'�-�-�1�5�6�9�3�,�7��-�)�,�+�%�'�1�/�3�'�(�6�(�(�.�(�,�4�(�$�/� �'�,�+�/�.�'�9�$�$�-�6�&�*�(�/�2�*�;�.�3�(�2�/�.�3�*�,�-�1�'��6�5�*�*�!�1�/� �&�#�.��(�#�.�.��$�6�)�:�+�-�0�/�.�#�-�0�5�/�/�'�A�-�4�%��)�.�.�*�%�%�7�/�'�1�5�"�/�*�&�6�+�3�6�,�4�.�'�.�9�2�"�/�2�!�+�/��"�(�+�;�0�+�5�/�,� �;� �(�5�܀րրрրӀӀՀՀˀրҀЀـڀ؀ՀӀԀۀӀ׀Ԁׁ.�"�9�:�1�-�+� �&�,�-�"�-�)�-�3�!�'�.�)�%�(�1�"�,�6�/�0�'�,�.�0�:�'�#�&�2�)�%�,�(�'�-�3�,�*�=�6�0�-�2�+�*�3�-�6�#�3�8�1�5�*�,�-�7�2�1�1�'�"�-��"�)�+�0�+�:�8�7�.�3�"�*�+�0�,�8� �+�.�=�+�$�.�'�/�8�1�5�#�'��*�1�+�,�9�7�;��-��$�(�&�'�!�7�1�"�"�)�0�1�.�$�0�'�/�.�2�7�o�7�)� �'�.�/�$�0�)�.�#�)�#�/�#�+�7�,�2�!�$�*�*��=�-�*�$�/�+�/�1�.�1�*�.�"�2�&�7�,�&�7�/�1�1�+�3�9�2��(�#�)�+�1�)�#�0�+�4�(�3�,�;�5�/�)�*�1�(��'�&�+�*�1�0�+�-�(�0��*�1�2��/�5�/�*��-�0�-�%�*�*�'� �8�-�*�)�(�3�%�7�.�&�+�0��+�1�*�'�3�3�+�+�*��9�2�-�+�4�1�)�+�1�#�.�.�1�0�-�2�1�1�.�'�.�5�.�,�#�'�/�'�4�)��/�.�.��"�5�,�1�'�+�'�)� �,�:�.�3�0�*�*�1��0�,�*�*�+�(��-�:�4�)�&�*�,�+�'�-�;�.�.�5�!�1�%�3�'�6�2�B�6�/�1�/�3�(�7�'�,�)�!�!�5�%�#�$�*�3�+�'�5�.�$�6�'�1�3�#�%�.�)�+�.�"�3�#�/�*�&�'�'�3�1�3�&�3�-��(�5��0�'�+�0�*�-�/�2�-�6�,�7�)�)�*�=�"�#�/� �,�)�$�%�2�2�"��2�,�5�'�)�.�3�&�)�$�6�/�0�+��#�$�-�3�1�.�-�8� �5�2�'�'�7�#�.�'�1�:�.�'�"�>�&�+�-�&�3�4�0�6�/��3�)�,�)�/�+��$�,��)�1�/�.�+�-�/�!�3�*�,�&�1�+�)�+�$�-�,�/�0�>�%�3�+�-�*�2�0�0�$�/�-�6�1�&�Հڀ׀Հր؀рր׀€ڀր؀ҀڀՀـՀՀր׀րҀՁ/�<�6�(�&�?�3�)�7�2�;�!�)�1�/�)�2�(�3�1�1�+�6�)�2�(�+�5��(�9�.�7�+�.�=��4�4�)�#�*�*�=�*�2�&�+�#�0�#�;�$�(�(�(�.�&�(� �-�+�'�,�'�:�-�+�3�2�$�+�8�*�"�'�$�-�/�$�.�-�2�0�%�.�0�#�(�.�3�2� �'��/�-�$�*�#�(�3�3�-�6�,�+�)�*�+�2�,�1�3�-�+�4�)�,�'�-�-�6�&�%�$�+�'�5�!�#�'��%�'��.� �;�&�,�'�*�)�(�+�3�.�$�-�7�0�.�&�%�2�'�1�*�#�4�'�)�#�/�&�$�#�5�2�-�)�.�,�5�3�'�)� �5�-�7�#�0�'�7�0�,�1�+�.�5��>�.�+�3�&�1��3�$�(�.�,�&�9�;�'�2�%�-�.�4��2�0�5� �*�/�+�0�-�-�-�4�1�$�/� �'�3�)�.�&�)�.�;�1�-��3�%�1�(�8�$�*�/�8�/�-�0�1�/�*�'�1��2�/�;�-�!�-�!�0�)�&�(�'�2�3�/�.�,�.�/�0�+�;�2�0�*�5�5�/��&�7�"�5��+�)�5�'�'�)�/�*�.�(�$�&�#�*�*�-�9�*�5�'�;�/�5�)�/�"��.�)�*�7�(�'�9�)�-�/�@�1�1�6��+�)�3�%�+�-�;��#�.�:�*�0�/�-�*�*�.�'�4�)�,�7�%�/�)�,�)�-�,�-�=�+�:�$�$�)�0�3��4�/�/�.�3�*�+�)�-�*�&��1�*�,�/�%�&�/�0�*�/�+�,�#�+�,� �,�5�.�+�.�%�1�.�;�/�)�-�.�5�(�.��%�1�-�2�'�%�/�&�*�&�/�3�2�+�/�4��7�-�*�0�%�*�&�"�*�9�-�7�.�%�2�#�*�7�1�-�D�+�"�&�/�'�'�8�/�)�,�)�3�"�?�1�9�(�2�7�4�2�5�9�4�+�(�&�1�&�>�-�*�3�2�#�%�"�@�1�9�0�-�#�1�1�-�8�-�:�0�;�/�+�؀ڀՀӀԀـ׀ЀـĀـԀۀڀԀ؀րҀڀҀ؀؀ـӁ*�6�/�-�)��.�6�%�*�2�/�#�.�4�7�4�'�*�,�.�,�-�2�4�'�*�&�%�6�#�)�8�$�-�+�6�)�2�+�?�0�0�0�+�4�3�/�/�,�F�1�7�4�"�/�%��,� �@�1�/�'�-�)�-�-�'�2�2�8�)�&�)�-�<�.�-� �$�'�,�'�C�/�!�8�+�5�(�*�.�%�-��5�-�2�)�5�4�(�-�/�/�/�$�-�#�3�-�&�.�&�4� �$�3�+�2�'�2�(�/�*�6�&�1�2�,�7�6�6�(�)�.�+�6�-�*�$�%�.�+�+�*�4��$�@�+�)�;�)�+�,�(�'�#�0�/�%�)�+�(�-�/�-�'�!�<�3�'�3�2�(�#�#�.�/�+�"�-�!�%�4�6�-�-�4�.�&�&�-�0�1�,�&�&�,��/�'��,�!�&�0�9�/�$�-��+�.�2��(�1�.�.�*��,�+�-�2�4�5�0�>�#�,��/�$�3�&�-�(�1�1�$�'�0��*�#�+�,�8�-�&�,�1�"�1� �)��'�2�7�5�+�(�/�0�,�7�+�)�4�3�5�(�$�6�3�/�#�.�!�1�)�&�*�-�+�0�/�-��4�/�*�2�&�'�&�3�&�%�.�"�.�,�+�+�,�,�.�2�*�#�-�)��(�$�(�)�-�"�,�2�'�"�1�/�)�%�)�$�'�,� �*�/�"�,�%�/�#�#�3�>�1�2�=� �+�%�,�+�5�,�.�;�'�0�+��3��3��-�)�+�.�&�1�-�#�-��.��'�-�0�)�-�*�3�.��"�1�5�(�#�&�&�%�.�)�6�.�1�0�#�-�%�+�'�$�*�!�9��+�'�,�+�(�+��*�-�-�%�9�'�/�0��*�*�&�3��'�>�5���#��<�(�&�5�"�"�0�+�,�+�-�%�)�%�$�(�+�<�5�)�1�$�4�0�+�'�)�/�4�,�!�.�)�2�(�/�'�&�-�/�2�9�/�-�6�)�#�1�2�"�.�1�:�.�(�'�2�.�/�(�+�6�9�:�-�%�-�.�1�*�&�ڀـۀـӀڀՀπҀɀــڀԀڀڀ؀ՀՀҀրրـՁ5�$�'�+�.�#�*�5�/�4�*�)�/�.�%�&�,�)�,��!�!�7�(�2�+�1�,�(�,�#�1�1�/�2�/�3�!�6�,�/�-�%�0�'�7�/�%�+�*�.�%�4�3�#�/�-�5�)�.�,�(�,�%�;��/�+�#�"�1�+�7�2�>�3�-�-�4�'�+��0�)�,�;�-�,�6�)�-�'�(�+�+� �(�,�"�3�6�;�*�(� �*�/�#�%�'�-�&�.�+�1��$�3�)�6�'��&�;�,�2�#�"�9�)�/�-��"�(�+��&�9�8�(�)�+�1�-�8�/�)�'�.�!�"�+�,�/�/�%�!�,�.��>�$�*�/�:�@�:�5�,�/�4�1�/�(�&�%�4�$�&��,�/��*�(�)�)�+�(�-��6�&�*�(�-�"�.�$�'�3�1�=�"�0���.��*�(�/�=�)�.��'��*�,�0�6�$�7�2�+�*�1�%�$�&�5�,�2�-�9�-�0�-�+�!��*�+�'�2�'�-�&�+�0�#��1�8�(�'�7�.�'�2�)�+�)�6�.�*��,�/�(�5�#�:�4��,�7�)�+�!��6�-�%�0�/�'�4�%�'�#�5�)�$�4�1�:�2�5�+�0�0�1�5�&�.�9�"�,�9�(�5�+�1�(��4�(��.�3�.�!�0�2�>�:�2�(�0�(�F�*�$�2�*�0�7�(�&�6��7�2�)�.�'�+�*�(�.�4�7�.� �$�/�'�&�/�0�1�%�*�,�'�5�+��+�2�+�+�,�9�$�(�#�.�*�+�'�2�0�8�'�"�9�0�$�)�!�+�$���+�$�-�/�6�(�+�*�'�#�'�7�0�.��#�!�&�'�4� � �%�2�0�(�)�)�8�3� �3�/�"�3�2�;�+�1�3�+�'�0�)�1�+�<�!�.�+�2�/�.�2�2�-�-�3�2�0�1�/�.�1�)�(�3�)�&�3�/�%�7�1�*�/�0�,�1�5�6�0�.�5�0�.�(�9�*�-�1�7�+�%�&�*��0�7�2�,�%��,�=�1��,�+�$�1�%�0�2�րԀڀ؀ՀڀڀՀ؀ŀ܀؀ՀԀ؀րрր؀рՀ؀Ҁׁ0�,�1�-�:�-�3�-�0�0�)��4�5�/� �"�"�/� �)�(�2�6�*�9�1�2�4�5�4�-�0�/�'�8�,�:�-�0�1�1�4�#�,�6�#�+�(�0��>�*�(�3�,�*�!�+�&��'�/�1�,�6�(�)�)�6�3�3�/�+�6�)�,�%�+�6�)�(�'��/�=�)�3�1�)�$�'�&�1�/�1�*�-�&�+�$�1�,�*�/�+�/�'�*�/�&�!�!�1�'�%�'�6�'��/�#�4�%�1��0�/�'�.�<�,� �0�-�#�/�/�"�5�)�,�%�#�/�0�+�#��7�-�3�3�,�%�&�(�$�#�-�2�,�'�-�*�#�!�4�+�-�#�*�0�'�#�1�#�.� �"�)�"�*�9�/�-�-�.��;�%�+�,�&�#�/�$�?�7�-��&�#�#�8�!�&�1�)�-�5�/�6�*�A�'�%�0�)�+�%�%�0�+�&�2�6�1�%�&�,�$�=�/�6��*�"�7�(�,�!�-�1�-�$�/�&�6�)�5�#�,�+�/�/�=�(�#� �9�4�&�'�)� �#�1�?�$�#� �(�7�,��%�"�;�-�"�1�/�$�"�.�0�7�6�.�3�.�&�&�/�.�2�1�)�,�#�,�*��&�$�,�4�.�1�&�7�1�-��.�0�&�5�3�+��1�+�#�.�#�*�/�9�&�.�*�4�-�1�&�8�.�(�9�2�)� �1�!�+�2�)�*�(�6���0�'�#�)�/�,�!�)�3�2�0�*�%�8�#�8�*�-�-�/�-�*�,�)�/�+�3�-��&�+�(�3�)�/�.�8�/�5�&�2�*�%�*�+�'�2�*�(�'�-�2�.�%��)� �.�,�+�2�#�2�(�1�)�-�+�/�0� �0�-� �.�#�3�&�J�'�*�+�;�)�,�$�3�'��-�+�+��/��(�"�$�"�7�7�2�,�+�>�4�5�-�-�$�3�A�4�3�+�.�,�8��#�7�/�3�'�"�.�,�)� �(�1�9�1�4�*�1�2�,�5�%�'��)�&�$�/�.�%�6�2�7�*�%�9�;�,�<�&�րҀԀ׀׀ҀՀՀՀŀրԀҀրЀ΀ՀՀՀ؀Ԁր׀Ӂ.�+�)�:�3�#�5�4�9�(�D�/�-��0�3�%�%�$�%�5�'�-�&�#�4�(�2�%�+�'�'�:�$�%�/�4�2�2�'�0�1�7�0�1�9�+�0�)�/�'�0�(�2�(�0�&�'�*�9�+�0�#�)�4�5�'�*��$�&�-�%�+�#�$�)�+�(�#�2�/�&�:�0�*�(�,�*�-�-�*�*�)�,�0�%�*�/�,�%�,�0�*�&�+�1�,�-� �+�.�,�7�(�/�$�.�+�!�/��*�0�'�,�-�)�/�8�1�)�/�)�.��)�3�(�$�#�#�+��'�.�3�*�*�2�4�$�0��'�$�*�%�+�%�7�-�/�1�)��.�#�#�"�/�"�#�.�.�+�)�0�/�0�7�$�2�1�'�1�,�/�-�#�4�#�7�:�-�4�$�%�/�$�1�7�5�'�+�%�,�&�(�&�1�.�2�-��-�3�'�1�)�C�*��,�)�)�(�#�0�&�%�2�$��.�+�&�6��0�%�(�,�%�$�2�3�-�"�&�(�3�5�-�$�7�-� �.�:�-�(�%�5�$���&�/�)�,�$�)�*�*�(�0�.�/�(�/�(�-�-�#�5�*�$��!�-�%�"�*�4�/�C�-�,�0�"�"�&�!�)�'�/�6�1�2�6�*�)�8�4�#�5�1�(�1�-�&�%�1�7�)�"�'�)�!�3�(� �1�/�+�'�*�(�"�/�5�$�8�1� �=�0�0�.�+�/�!�0�1�2�*�6�)�%�'��?�/�0�+�+�3�B�&�6�'�)�*�5�4�6�)�2�2�#�-� �&�5�C�+�/�'�5�,�*�(�$�)�$�+�<�*�9�#�,�;�2�(�6� ��=�3�(��%�*�)�)�&�(�"�%�9�$�1��&�=�#�/�!�,�&�;�.�0�6�5�-�7�(�*�,�7�#��0�0�/�6�0�4�/�1�-�/�*�8�0�)�,�,� �#�,�"�-�3�C�#�*�.�4�0�;�6� �5�0�%�+�.�/�0�&�+�&�*�.� �+�8�/�2�5�(�7�0�;�>�$�1�/�1�/�%�(�6��7�&�2�<�3�׀ԀۀҀڀӀրՀԀȀڀـ׀׀׀׀ր׀րՀҀ׀׀Ӂ/�/�5�,�*�*�&�2�4�;�'�.�3�7�-�4�5�#�5�'�/�1�/�1�+�/�)�'�'�.�7�.�"�&�6�-��.�)�3� �/�*�2�+�=�)�;��0�*�,�3�:�,�$�(�-�(�6�)�=�7�,�/�>�1�$�*�(�2�(�/�%�+�6�'�)�.�0�2�*�.��!�5�$�)�*�,�)�(�0�6�4�(�1�3�/�*�#�&�5�/�.�-�/�.�#��+�%�#�,�'�)�%�9�9�(�-�.�/�)�7�-�)�+�+�-�*�7�.�*�/�+�#�0�3�(�/�+��6�/�(�%�+�!�6�>�-�&�6�+�2�%�"�,�/�0��-�4�1�1�!�"�$�0�%�$�+�/�0�#�.�*�*�/�"��(�$�8�)�1��+�&�9�*�+�3�6��,� �*�)�/�-�&�/�+�&�/�&�&�)�6� �-�*�"� �)�#��4�.�2�&�,�&�'�/�!�/�2�+�'�2��(�'�/�+��/�0�1�-�-�'�5�%�1�%�'�#�7�B�*���)�/�/�)�3� �0�%�/�,�1�/�,�0�+�.�(�-��%�)�*�*�(�-�0�*�.�'�5�*�4�/�(�'�0�(�&�/�-�)�2�$�0�0�-�&�*�0�&�2�.�.�&�)�.�*�+�)�+�'�-�/�0�/�7�)��%�5�2�1�.�=�#�0�+�-�'�7�?�&�.�1�#�1�%�$�%�*�+�4�+�)�,�&��+�&�3�7�*�0�1��)�<�"�+�<�)�2�1�.�4�$�-��1��#�"� �0� �%�!��%�8�1�+�4�)�<�*��.�-�2�3�)�0�-�4�/�*�,�#�/�+�5�1�%�1�1�,�,�$�)�3�,�7�#�"�)�#�-�2�.�1�)��4�6�7�0� �0�1�(�'�.�5�C�*�*�1�)�2�3�-�"�)�,�4�*� �,�0�+�1�/���;�-�)�8�'��'�.�3�"�+�)�+�7�5�.�*�)�7�,�9�/�#�*�&�5�1�%�-�-�-�)�)�*�7�3�/�0�.�'�-�-�%�*��(�/�$�4�*�:�ԀՀӀ׀ـҀӀրՀ€׀ՀҀ׀рՀրڀрՀՀҀЀ؁-�)�1�/�<�+�1�&�2�#�(�1�*�5�,�(�,�-�(�)�'�1�3�+�%�.�.�+�,�/��(�4�'�5�!�-�6�#�#�4�&�9�+�8�(�6�,�-�+�%�3�0�/�>�$�5�3�$�2�-�&�+�"� �/�,�5�&�3�)�,��+�'�1�/�#�7�4�-�*�!�,�)�0�0�$�.�%�,�$�&�-�&�)�&�$�)�*�)�1�:�$�-�-�0��!�6�$�2�"�-�+�"�7�+�1�-�(�5�(�/�9�+�7�4�$�0�4�"�1�(�3�0�,�%��9�.��2�*�'�,�)�%�&�)�(�'�$��9�#�4�&�#�4�6�4�3�2��"�,��3�0�$�/� �?�8�/�4�&�#�/�)�+� �3�%�)�#�+�/�)�2�*�*�(�-�"��6�)�'�&�*�"��'�-�0�-�7�)�,�)��5�)� ��'�)�%�#�6�'�0�4�'�+�.�$��'�6�'�.�"�2�(�(�/�/�(�/�*�(�8�-�&�-�*� �-�*�9�*�-�&�0�+�#�/�3�.�,�)�;��)�1�4�1�'�$�,�)�(�9�/�%�4�3�1�$�!�1�/�)�+�!�9�*�;�%�+�7�.�"�1��%�*�-�$�4�.�"�)�'�0�7�8�1�"�(�.�0�'��)�#�3�,�0�2�:�,�*�0�.�3�:�#��.�%�&�7�'�2�0�'�!�*�/�.�$�$�0�.�-�+�2�$�(�:��#�"�+� �.�)�(�*�6�+�+�0�*�,�*�<�3�.�/�&�'�&�-�7�,�'�7�#�+�#�+�3�'�)�)�3�0�8�/�0�.�@�&�/�(�$�+�9�'��2�3�$��7�6�+�-�6�2�$�5�9�(��0��$�!�/�;�&� �3�/�1�.�-�3�-�,�1�(�%�&�2�"�$� �:��/�)��)�(��3�0�2�&�'�%�/�+�0�'�*�/�)�4�'�(�3�)�5�6�.� �*�2�*�F�)�-�-�.�.�'�(��0�2�8�.�8�1�-�.�-�$�5�4�2���6�,�(�0�6�*�(�)�6�(�*�׀րԀՀـ؀ԀڀՀǀҀـ؀рӀҀՀրрՀԀրԀց4�(�2�!�#�1�"�5�)�6�7�,�*�*�(�4�=�)�,�3�)�/�2�/�(�+�'�0�+�)�'�6�,�(�6�7�'�1�(�0�?�+�%�;�(�)�$�!�,��*�+�8�'�&�.�4�0�)�!�*�%�0�<�1�-�5�/�=�#�<�+�.�'�1�/�&�#��$��9��+�4�"�.�;�<�4�:�5�*�2�+�*�!��-�!�;�"�+�/�'�(�:�2�8� �&�1�7�'�'�-�+�2�(�0�,�+�%�+�4�$�$�)�2�-�2�/�,�(�'�+�#�*�(�+�1�/�%�+�0�#�)�3�*�:�.�)�*�.��0�&�-�(�1�'�$�/�)�1�-�-�"�.�,�8�3�)��/�%�*�1�<�/�,�"�.�,�$�1�%��%�#�)�(�4�-�0�,�1��'�+�$�!�&�2�.�0�2�3�'�5�%�%�7�"�:�.�%�.�;�&�-��(�)�2�.�*�,�6�)��%�3�5�&�2�5�'�%�9�7�,� �)�"�&�*�<�'�5�)�,�6�6�*�%�&��)�.�/�9�?�9�3�-�:�9�$�9�)�+�:�5�7�"�(�5�3�!�8�#�)�*�-�2�&�-�1�$�"�1�2�2�&�%�+� +�2�$�+�3�9�#�4�,�%��+�:�)�4� �0�)�3�4�!�6��1�4�$�-�8�*�3�6�.�6�;�5�+�-�8�,� �(�/�0�/�!�0�+�$�-�+�+�2�,�+�.�-�$�$�:�1�/�(�)�+�;�#�&�7�#�'�%�)�7�,�1�0�,�3�"�.�+� �1�*�8�/�'�2�3�@�-�/�/�2�/�0�+�/�'�/�8�+�'�.�5�&�1�0�,�,�,�+�+�-��2�/�-��*�'� �0�.�:�+��;�+��8�#�(�*�3�$�,�$�"�3�2�+�4�3�/�,�*�*�*��/�2�.��-�/� �,�/�2�#�0�-�+�%�%�&�.�+�*�-�&�2�5�-�6�<�3�'�.�(�$�,�,�4�1�)�,�7�5�0�.�&�'�/��5�7�5�"�%�"�*�(�)�7�2�/�>�%�#�'�8�!�2�ЀҀހπЀـрـՀȀ؀ހ׀؀܀܀րـԀ׀րЀր؁/�0�1�2�*�2�3�$�+�2�9�-�&�2�9�*�&�2�)�4�1�+�1�7�8�&�/�"�5�8�&�0��*�,�4�3�/�-�"�#�$�,�(�)�.�4�,�$�(�7�%�1�,�'�8�-�$�4�.��)�2�2�%�.�*�*�*�*��*�/�/�/�,�1�%�(�%�(�/�*�#�2�/�0�&�0�*��"�2�,�(�5�#�/�+�"�+�.��)�/�;�%�+�-�$�5�&�+�)�/��%�&�-�-�#�,�)�2�(�&�0�8�9�,�(�1�:�0��2�,�'�2�$��'�-�.�8�5�,�*�/�"�)�$�$�'�-�*�&�&�6�,��(�*�*�1�(�6�.�M�6�/�1�+�5�-� �,��4�5�&�0�,�!�&�4�,�6�/�0�9�*�)�'�&�+�*�.�/�#�#�1�� �&�.�&�'�)�$�/�1�2�)�0��+�-� �&�&�!�(��+�7�)�-�!�,�)�.�#�&�)�*�*�$��+�*�-�*�8�'�$�2�$�2�*��4�-�-�(�)�3�"�-�&�6�0�/�&�'�8�1�#�)�)�4�4��'�#�'�0��,�8�&�#�&�,�-�.�!�$�2�%�4�6� � �0�+�;�-�2�,�1�!�+�(�2�1�1�/�"�*�-�2�1�/�9�3�/�*�A�/�,�)�(�=�0�$�3�%��.�$�(�"�!�1�(�,�"�,�2�)�'�)�*�0�2��#�7�1�&�0�)�4�2�3�*��(�1�-�&�3�7�)�4�+�-�%�,�/�+�-�*�&�0�-�1�"�0�&�-�3�&�#�$�-�6�,�-�0�0�-�+�8�$�8��5�/�.�+�,�.�2�%�'�3�+�0�-�,�3�(�5�&�)�0�$�)�3�4�*�/�2�"�+�"�/�/�'�*�&�#�3�1�.�+�-�.�-�.�/�$�/�.�1�,�4�0�0�1�0�&�3�.�-�)�+�"�*�0�$�6�/�-�$�:�2�+�(�&�0�0�.��2�&�+�1�(�*�$�-�/�*�)�/��6�3�"�5�2�2�3�.�#�$���.�1�+�/�7�*�9�/�.�/�.�րـրӀ׀׀ۀՀՀƀ׀Ԁـ׀πԀҀҀЀԀ׀׀׀ځ2�:�"�=�3�#�3�"�%�6�:�&�5�,�*�)�6�'�6�&�(�B�7�*�5�8�6�5�+�*�0�/�-�'�,�"�*�/�2�9�,�6�1�3�%�*�-�+�'�0�)�*�.�)�)�&�1�%�3�$�#�7�.�6�2�(�)�%�'�,�%�,�*�;�;�+�%�2��'�$�.�'�'�/�*�,�.�?�(�?�0�'�*�.�,�!�1�$�"�)��+�4�+�*� �5�@��5�"�)�%�0�,�/�0�-�-�5�(�)�/�-�/�!�%�+�*�1�)�+�+��%�+�<�!�:�6�/�2�3�&�#�0�'�+�5�!�.�(�/�(�#�9�?�-�0�%�7��0�&�$�#�2��/�-�.�*�1�+�3�"�3��)�(�2�+�'�!�$�'� �9�3�,�.�/�(�'�#�0� �+�/�&�8��*�.�+�/�+�.�.�.�+�,�:�)�+�*�%�.�+�-�1�!�7�$�)�0�5�,�)�#�0�2�3� �6�.�3�*�%�+� �,�2�.�5�'�$��5�+�5�%�9�5�/�0�(�+�+�!�6�,�(�:�5�0�"��,�)�.�.�+�.�)�"�$�.�3�>�)�0�!�(�-�+�)�"�+�/�&�0�0�,�*�)�1�5�5�'�5�/�%�*�/�/�$�"�)�-�$��*�/�"�#�+�0�0�1�'�0�!�.�*�+�+�*�(�+�.�&��%�&�4�%�1�0�%�2�-�)�5�*�)�4�.�,�2�.�(�%�3�0�1�)�%�.�-�%�3�8�1�,�2�'�3�(��!�%�'�0�2�-�3�"�.�%�/�#�(�(�0� �&�!�'�,�+�+��7�'�+�3�,�,�8�"�/�,�,�+�8�"�(�&�-�2�-�1�-�0�)�(�+�"�(�/�&�8�.��!�'�*�2�2�*�1�)�/�3�/�)�.�6�%�%�%�0�-�2�3�.�3�+�+�-�%�/�'�.�5�-�3�$�-�/�+�/�,�/�*�"�)�"�7�3�+�9�2�)�0�2�+�3�1�5�.�1�+�8�1�/�$�)�,�*�&�.�6�3�%�7�*�0�*�+�+�4�/�/�1�6�2�7�4�*�ՀҀހՀӀڀԀՀՀɀրЀڀՀ׀ՀրӀՀЀ׀ԀրՁ3�.�'�;�-�%�.�7�3�.�%�*�0�:�0�,�-��0�1�8�(�0�&�1�(�6�0�/�*�7�2�,�)�&�1�2�/�%�5�<�+�0�%�>�-�4�/�0�+�6�;��8�-�-�5�:��%�&�-�.�+�1�*�.�$�2�+�*�.�"�-�5�8�4�&�!��-�'�/�,�0�4�3�-�?�(�/�3�#�=�1�1�.�%�(�(�(�&�!�(�"�6�.�,�2�0��"�*�$�"�%�&�(�-�3�#�-�,�,�,�+�,�'�&�*�4�3�5� �)�'�/�.�/�!�,�-�!�#��&�(�1�4�5��2�(�.�(�,�/�)�!�-�$�2�3�.�/�)�%�+�1�.�(�2�4�!�)�+�#�(�-�*�%�2�)�2��/�'�,�+�*�2�0�&�'�+�*�+�(�)�5�1�;�0�(�+�(�)�5�2�)�(�2�$�*�1��0�*�3�/�3�2�!��.�(�#�5�0�&�#�0�0��.�&�0�5�(�'�+�,�/�+�.�4�&�1�%�*�-��.�,�'�-�*�:�0�7�8�&�/�*�0�/�$�&�.�+�6�&�2�2�%�-��0�'�0�+�%�+�'�9�(�2�(�*�!�%��:�'�#��(�,�6�,�/�*�1�2�)�-�*�+�.�$�'�&�*�/�/�'�5�*��-�+�/�1�7�/�/�"�6�;�2�3�%�.�(�0�(�-��� ��$�/�"�0�.�!�)�+�)�-�7�"�)�*�0�-�)�#��*�$�<�-�*�1�&�3�3�4�(�%�4�,�%�%�#�+�;�/�+�(�0�*�&�*�$�5�0�'�+�:�)�5�!�&�$�9�1�"�8�'�/�-�)�.�&�*�/�+�)�&�5�6�2��$�6�%�5�"�.�,�7�+�6�(�#�)�/�'�,�.�(�.�*�(�-�2�/�/�5�,�.�!��/�3�0��)�&�9�7�0�%�8�1�,�-�.�$�%�6�)�4�'�%�,�0�)��6�(�6�$�*�6�%�&�5�8�+�"�;�5�&�(�4�*�'�(�(�&�9�-�4�$�=�.�,�,�1�#�'�-�0�*�(�/�%�;�Հـ׀׀ــՀҀ׀ƀրـހҀԀՀր؀؀߀ր׀ـԁ5�0�3�+�3�!�%�.�&�)�-�2�'�'�+�*�2��)�,�&�2�+�5��,�(�+�/�.�0�'�+�1�(�+�,�-�8�.�)�6�:�/�%�*���4�9�'�,�0�0�1�.�7�2�(�'�5��-�4�,�+�/�$�&�%�*�%�$�,�0�6�-� �6�,�)�/�!��!�.�1�/��/�&�0�/�%�&�/��'�/�4�(�0�.�/�6�*�/�,�-�.�)� �-�5�0�!�'�+�/�"�/�-�0�,�#��0�+�(�+�#�5�#�6�0�"�9�6�*�1��%�7�"�.�-�2�2�2�$�3� �(�*�$��4�.�)�+��)�7�*�/�)�$�(��0�+�'�/�*�'�'�,�(�.�#�?�*�!�6�0�*�-�)�*��,�'�%�*��/��#�%�.�-�2�/�.�-�"�&�&��3�(�(�&�,�5�C�*�2� �)�,�)�5�'�$�7�&�,�+�$�4�!�%�'�-�2�"�#�5�+�%�&�%�>�%�9���-�*�4�:��'�6�3�6�/�"��'�3�1�4�;�/�#�+�%��2�6�8��.�)�&�6�-�&��&�+�*�.�;�0�$�+�'�3�0��#�2�1��,�(�1�+�/��0� �3�&�#�9�)�1�(�1�$�2�"�:�9�)�7�3�#�/�)��4�/�*�#�/�&��(�.�%�%�3�4�&��)�#�6�4�9�.�,�*�%�(�'�(�0�'�'�0�2�%�0�.�'�)�(�+�)�)�)�.�)�;�-�-�9�&�5��3�&�'�(�!�/��*�/�3�*�-�.�,�$�2�-�#�,�*�,�� �*�.�%�1��)�-�(�)�&�%�)�(�*�!�!�.�)�2��-�*�)�'�+�/�/�� �1�&�,�$��,�(�2�)�.�(�)�&�#��+�,�#�/��-�,�*�&�*�*�.�,�6�#�$�%�*�0�,�)�:�1�$�-�7�(�-�<�(�.�8��$� �*�3�/�0�"�2�1���5�*�+�1�0�1�*�+�;� �(�'�4�;�3�1�$�&�.�4�=�9�2�/�*�րՀ׀ڀрڀҀЀ؀ƀԀڀр݀рՀӀ؀ӀՀՀڀҀ؁-�'�(�+�1�1�$�1�+�*�7�D�/�*�+�*�0�#�.�4�0�*�*�2�(��4�'�7�$�/�5�2�2�"�+�%�,�(�+�A�8�?�6�,�)�2�.�=�=�/�2�B�$�7�/�*�5�&�4�"��*�,�/�#�-�&�$�2�.�(�5�2�&�)�%�%�.�/�3�8�$�"�-�.�-�-�(�3�3�)�-�#�&�%�+�)�/�4�9�4�-�3�)�3�+�2�'�-�/�,�1��(�-�$�)�)�#�&�,�0�%�)�-�,�+�5�6�(�2�'�0�'�)�&�3��-�*�/��#�%�*�(�&�%�&�'�*�(��3�&�*�2�3�*�*�-�1�"�%�3�5�'�)�)�5�#�0�8�!�-�,�!�'��-�)�)�,�.�(�*���*�0�0�/�8�1� �(�9�3�>�,�-�&�,�8�"�)�(�*�.�-�&�5�#�&�#�)�-�4�(�+�/�$�&��/�2�-� �*��!�.�%�.�+�.�+�1�4�&�+�5�1�%�.�$�-�4�0�1�)�!�+�%�,�8�7�1�3�+�-�-��6�!�*�(�1�1��,�-�3�$�$�1�-�&�3� �3�*�*�*�4�-�)�-�*�-�0�9�,� �)�0�*�+�%�$�1�-�+�-�.�(�.�"�0�3�8�)�.�'�(�8�+��'�+�-�/�0�7�(��-�!�-�0�5�1�%�!��+�1�,�*�-�4�4�0�!�+�2�+�0�1�(�'�6�,�7�3�0�2�&�0�'�+�<�0�.�/�:�%�/�#�%�(�-�"�2�/�!�(�/�.�4�%�1��,�*�(�(�;��%�"�-�1�.�&�0�.�(�-�,�*�/�/�+�)�5�*�8�+�*�&�5�/�0�5�+�/�&� �0�)�*� �/�'�.�*�)�,�-�(�.�?�#�+�*�%�/�!�"�%��3�)�-�-�0�;�(�3�'�-�.�%�%�3�*�6�4�+�-�+�9�-�%�!�%�+�2�7�(�&�2�3�$�'�6�3�'�!�2�<�+�+�'�'�6�$�"�0�3�3�1�(�1�*�-�3�(�-�,�1�4� �7�4�#�#�$�.�$�ՀۀՀــҀ׀ڀրƀӀրրр׀рրЀ׀րڀ׀Ҁԁ,�)�/�-�(�$�$�+�)�>�4�9�*�4�-�*�)�0��2�.�/�2�&�,�(�#�7�7�)�#�"�2�1�&�/�4�/�(�%�-�'�7�'� �"�+�5�4�*�"�9�-�.�(�0��+�*�&�,�#�-�6�/�-�*�/��+�2�'�)�5�1�4�-�-�'�*�6�4�6�/��.�2�#�3�,�4�#�"��1�-�'�8�/�*�0�/�.�<�(�4�)�1�+�&�*�(�3�%�"�(�!�)�&�'�+�#�(�)�(�9�(�)�*�%�4�A�1�/�.�)�(�/�2�"�"�#�!�,�4�#�*�#�,�+�/�'�*�4�'�&�'�-�"�3�/�"�-�(�7�'�;�"�1�/�9�)�:�(�.�'�%�;�+�8�(�.� �&�2�-�'�-�/�-�7�%�/�/��3�-��(�%�>�:�*�%�'�4�$�-�$�/�2�-�&�-�%�0�'�!�&�%�=�'�(��#�7�/�$�&�,�,�(�3�3�/�,�-�2�-�$�+�/�5�'�%�$��3�1�/��'�4�"�/�4�$�2�/�-�+�,��/�0�3�/�,�.�+�+�8�(�0�&�-�/�2�6�*�+�,�6�/�/�*�-�"�$�#�/�3�&�+�#�&�8�'�B�&�3�+�*��)�;�2�9�/�!�.�*�2�$�.��.�!�+�1�$�%�4�+�'�/�'��'�+�/�%� �'�#�/�(�&�,�6�&�.�3�#�,�,�9� �0�*�4�!�5�2�/�*�*�-�/�(�"�(�3�'��-�/�%�/�'�,�#�)��,�"�2�%�*��2�+�'� �*�=�)�#�3�&�2�.��+�*�5�#�%�4�*�0�.��,�0�*�)�(�)�-�$�3��3��)�0�+�1�,�2�+�,�(�<�$�8�6�.�*�,�4�7�/�#�)�,�(�&�;�-�/�(�)�+�)�-�*�'�(�0�*�-�+�3�,�,�+�<�,�)�'�!�1�1�4�1�-��#�%�.�/�0�3�(�%�*�0�4�%�%�:�'�(�6�-�*�*�"�"�:�&�9�,�"�;�1�:�#�4�-�)�*�-�+�*�2�'�*�0�6�Ԁ׀ـ؀р׀׀րр��րۀՀ܀Ҁ݀րրր׀ӀրՀց$�9�4��5�(�#�%�3�+�"�7��8�4�'�*�2�,�1�(�+�)�-�+�.�"�/�<�-�1� �@�.�:�3�/�,�1�+�1�#�,�(�*�7�&�0�0�1�+�)�4�.� �+�:�2�+�&�2�#��1�#�0�3�.�)�#�1�&�-�-�(�%�/�-�&�/�,�5�2�/�3�*�0�*�<�5�+�,�*�.� �,�0��/�.�*�/���.�(�(�/�*�&��%�/�5�5�.�*�+�*�-�-�&�*�,�,�-�4�$�3�+�,�/�5�,�4�2�+�:�+�%�1�-�3�2�$�+�)�+�/�,�7�.� �(�,�,� � �+�'� �/�"�2�+�&�'�(�/�"�1�,�-�1�1�1�%�+�)�'�/��$�3�5�-�5�$�"�,�%�3�)�,�&�(�-�)�9�-�)���,�(�'�%�,�0�$�'�-�@�*�-�1�'�4�/�$�3�.�+�-�.�4�'�'�-�%�7�%�*�1�+�9�4�*�(�)�.�.�6�1��/�/�&�%�/�,�0��!�(��)�/�,�#�#�'�/�!��*�+�.�&�/�(�.�5�*�4�.�2�'�5�'�#�.�*�;�$�&�,�)�4�3�2�3�'��0�-�)�,�!�3�;�(�"�.�2�/�4�-�#�*�)�,�7�:���/�0�4�*� �8�-�*�2�!�-�5�'�+�-�+�%��3��#�7�(�&�+� �)�1�'��-�'�1�!�-�+�2�.�,��*�)�*�'�*�1�1�-�.�7�%�%�'�&�(�0�#�.�5�5�2�2�5���*�0�-�2��'�8�)�"�0�'�,�-�*�+�(�2�)�2�.��,�#�$��*�"�0�2�8�0�(�/�=��3��"�6�'�.�%�1�2�'�+�-�+�7�3�-�/�5�%�#�'�*�6�0�<�%�!�!�� � �3�&�7�*�'�-��'�"�/�0�!�9�8�)�1�.��6�3�/�.�+�+�+�*�4�(�-�4�/�.�/�"�%�$�+�<�*�*�.�1�:�+�1�0�2�$�*�#�*�0�3�2�!�%�6�!�1�*�3��'�/�,�րԀԀրπրՀӀ܀Ā׀ـ؀؀րԀ׀׀ـրπՀ׀ׁ,�$�$�'�7�;�-��5�,�"�9�<�1��(�%�9�"�.�+�5�%�(�/�+�8�$�)�0�4�3�.�1�:�)�(�,�,�$�'�'�#�-�1�)�(�D�*�(�(�!�$�(�'�*�2�3�+��6�,�#�3�$�&�#�)�2�3�4�'�"�1�,�0�/�7��.� �#�<�*��-�.�&�7�'�4�*��-�(�(�-�$� �,�"�.�/�"�,�%�,�2�-��$�,�#�(�/�%�+�-�/�,�'�,�)�(�'�)��!� �/�'�'��*�$�-�2��%�-�)�2�/�0�!�1��%�&�3�$�)�$�1�%�-�#�-�-�*��&�1�.��+�+�'��0�*�*�*�5�'�8�-�1�2�"�/�"�0�'�"�)�1� �0�'�,�-�/��=�5�)�#�2�1�*�"�/�(�3�,�%�6�1�4�3��/�,��(�"�6�5�+�,�/�%�/��2�'�)�0�)�;�8�+�$�#�2��3�1�)�2�/�5�,�"�&�'�$�3�$�*��+�*�:�6�+��!�.�3�;�/��/�#�@�(�%�2��#�,�/�8�2�&�(�9�'�,�"��!�0�0�0�3�4� �+�$�)�1�*�%�1�%�3�.��$�7�%�"�+�7�-�!�,�-�'��-�"�&�<�#��*�4�&�5�,�)�*�(�.�+�/�/�#�)�6�6�$�5�0�4�$�)�5�/��%�(�-�+��2�3�/�.�!��6�%�5�,�$�7�&�*�6�/�*�.�+�2�5�'�/��*�)�-�2��+�+�!�/�)�+� �,�!�'�2�,�-�/�$�/�'�4�+�/�-��)�(�3�)�-�$�'�0�+�5��*�1�3�2�5�.�<�0�&�5�#�� �)�3�"�$�2�"�*�(�)�$��.�1�,�,�*�"�,�2�*�)�$�/� �#�+�7�+�+�%�+�'��'�1�/�7�.�5�0� �6�*�*�3�.�'�'�6�#�0�.�)�5�*�2�"�2�0�*�-�&�*�%�&�-�2�+�2�*�5��2�+�2�7�.�+�/�5�3�+�.�+�4�-�%�/�րـՀ؀ӀրԀ׀ՀǀՀ܀Ҁ؀ۀ؀׀܀ՀԀ׀؀ـف5�8�0�*�3�1�*�0�6�-�-�&�*�+��2��8��(�(�*�)�/�+��5�/�4�?�$�3�7�2� �*�-�<�'�+�1�%�%�.�5�(�)�"��1�+�&�1� �=�+�/�/�-��1�,�.�-�-�,�4�!�-�"�5�6�&�+�5�,�,�+�/�*�3�-�'�+�;�'�-�-�$��*�)�+�+�/�#�.�+�"�?�2�$�8�0�5�-�)�%�-�#�&�6�2��-�*�*�+�-�*�-�2�?�-�.� �1�%�&��1�+�,�+�.�3�1�/�$�$�*�0�0��)�&�!�,��0�*�'�-�,�(�0�-�)�5� �8� �-�-�%�*�/�+�4�(�*�.�#�H�-�+�'� �-�!�%��+�*�7�)�4�,�3�!�.�/�!�*�$�$�$�8�$��"�'�0�9�!�-�1�(�-�!�0�4�2�/��$�'�(�-�/�,�)�(�1�2��$�*�2�2�+�*�0�/�"�,�<�'�3�)�-�*�!�4�*�,�&�.�5�.�*�,�<�.�(�0�/�5�*�*�/�%�+�$�+�$�2�'�:�2�'�/�%�#�-�/�,�.��,�/�$�2�,�)�+�$�/�"�/�/�*��/�.�4�(�.�1�4�0�*�,��#�4�,�)�+�)�5�'�)�0�-�#�*�0�,�9�/�=�(�/�*�-�#�%�;�'�#�%�'�)�8�<�)�'�*�(��&�3�&�+�.�+�-�-�'��&�:��5�$��(�&�$��1�&�1�#�-�,�,�3�+�-�*�/�)�6�"�/�-�4�*�6�/�0�$�,�=�.�'�"�!�(�)� �)�7�#�.�0�"�)�5�(�(�+�.��:�3�)�*�$�"�!�)�,� �*�7�"�3�"�.�!��.�#�2�0�0�7�)�2�$�/�1�.�1�%�'�3�*�+�.�/�3�1�,��@�:�(�.�3�-�/�3�+�)�(�(�)�'�*�*�+�%�/�&�/�(�/�-�,�0�*�'�4�0�.�)�-� �+�-�*�+�,�=�1�"�<�%�*�8�0�2�<�'�+�:�.�1�/�&�;�,�.�0�-�&�%�4�ӀـҀҀـ؀ۀڀҀɀ׀ۀ׀׀րڀ׀Հ׀Հ݀Հ܀ׁ0�9�+�*�-�*�%�/�:�9�1�)�<�-�/��!�6�+�2�0�6�'�,�4�5�*�#�8�1�*�6�+��/�-�2�1�(�5�*�#�;�+�.�(�,�'�7�6�%�*�'��+�)�'�$�#�(�.�-�*�.�/�#�-�(�/�$�7�#�3�6�3�+�&�#�2�-�*�)�,�)�2�)�%�,�@�)�4�1�&�7�)�.�)�1�"�-�(�2�/�,�.� �)�0�2�)�8�(�(�-�3�2�/�+�<�/�4�/�#�7�$�1�+�4�*�(�-�4�-�0�1�=�3�"�2�1�4�.�&�1�/�$�"�'�2�0�)�6�0�-�0�2�+�/�"�/�2�,�0�5�)��5�*�"�#�/�/�*�'�-�-�4�%�)�#�0�%�2�'�$�#�*��<�)�+�'�-�'�!�4�3�5�%�/�<�"�+�,�*�)�=�)�(�+�.�"�*�/�*�$�-�3�,�*�+�)�9��9�&�,�)�)�5�+�'�%�2�4�"�$�.�-�4�)�%�*�#�7�2�'�/�/�,�2�(�#�1�0�(�2�1�+�)�!�?�-��/�7�&�'�9�+�'�!�0�'�.�(�-�:�'�(�%�#�4�!�$��'�-�2�,�+�>�-�/�2�)��%�-�&�)�-�1�%�.�%�1�2�%�/�0�-�/�'��#�&�%��,��%�.�/�,�/�5�0�1�'�#�)�%�1�-�+�&�$�3�#�5�6�#�8�5�2�7�+�$�/�$�4�3�(��1�2�*�5�(�/�"�"�*�)�.�9�1�"�$�5�$�5�&�)�$�/�2�,�:�$��(�*�/�0�0�.�1�+�3�%�)�$�.�/�+�*�(�/�1�3�*�.��)�1�,�+�4�%�'�%�-�2�,�6�0�#�"��*�.�,� �;�-�!�%�,�1�1�.�,�0� �.�'�#�3�(�+�+�4�+�2�!�/�$�*��)�=�,�.�)�+�#�*�>�'�-�3��&�2�*�/�+�$�/�)�%�$�-�9�-�*�1�)�2�-�6�*��&��+��+�,�7�;�$�'�%�4�+�1�+��*�+�#�:�1�6�*�4�4�:�4�ՀրҀЀՀՀ؀ڀՀŀӀՀԀ׀ـրՀۀ׀׀Հ׀Ԁځ)�&�$�/�(�7�%�0�)�*�/�1�.�.�/�-�/�'�&�/�,�#�,�$�>�-�.�'�,�*�$�1�#�5�*�+�+�.�-�&�1�<�,�+�'�0�(�,�)�+�2�/�&� �9�4�*�,��,��>�!�%�#�!�&�(�/�;��*�4�!�;�(�2�,�6�*�!�#�*�0�(�6�$�&�1�1�.�*�.�0�,�$�%�*�#�$�2�7�<�'�1�+�3�%�'�?�3�'�+�0�0�1�7�'�+�,�@�"�/�9�#�-�$�1�*�)�-�/�0�.�/�?�8�(�'�6�*�&�/�0�%�+� �+�1��-�*�"�2�+�/�4�*�+�9�1�)�*��(�$�1�;�(�'�*�)�"�.�5���6�:�5�/�/�%�.�5�/�,�3�%�4�&�+�/�-�+�0�(�*�#�(�3�(�.�5�*�$�<�0�6�-�'�%�)�-�'�4�"�1�$�)�%�$��.�-�4�.�.�5�&�3���)�-��*�,�/�#�+�2�%�/�3�!��#�+�5�*�,�*�1�5�%�3�)�(�+�!�#��*�-�*�-�!�*�6�%�+�,�.�)�%�5�,�-�1�+�0�,�-�:�+�,�/�$�5�'�-�2�,�%�'�+�*�,�$�&�!�+�.�.�&�/�/�+�*�.�$�+�0�!�,�.�'�B�5�0�0�:�<�'�.�'�)�*�'�.�)�(�)�1��(�'�1�4�/�0��$�1�+�/�+�+�$�&�=�(� �!�1�)�3�0�8�/�*�6�,�3�2�/�*�)�5�2�3�,�/�$�(�6�%�.�5��#�0�#�-�2�.�&�(�(�4�.�-�-�:�.�%�.�.�)�&�(�"�/�(�4�&�2� �(��#�3�%�7�,�2�)�/�%�8�0�/�4�1�"�7�'�1�7�-�,�,�$�.�&�'�"�,�*�)�*�!�%�/�1��%�,�0�1�5�$�#�7�"�(�)�(�,�/�2�)�&�.�2�.��>�+�3�1�8�#��%�8��.�6�3�7�)�*�/�+�/�5�5�%�#�7�$� �<�2�/�!�2�)�+�@�0�,�,�*�2�%�"�3�0�*�ـՀՀӀـրՀӀ؀ɀ׀ՀՀ׀׀ҀՀԀҀ׀؀Ӏ݀ց"�5�3�2�"�(�+�6�3�7�(�.�1�4�$�1�*�0�1�%�4�!�4�E�&�2�*�.�0�:�*�.�%�.�-�7�7��)�$� �!�!�0�(�(�#�(�6�"� �%�+�*�/�;�&�6�,�,�(�+�0�0�#�(�(�5�+�7�1��2�-�5�#�?�"�1�4�I��+��-�"�2�0�4�&��*�&�5�+�+�*�.�>�+�!�-�6�/�3��-�*�+�(� �2�7�4�5�*�"�7�6�$�-�&�-�.�'�,�2�3�/�+�*�)�3�.�4�/�4�,�%�1�#�&�$�)�-�&�5� �!�%�7�2�&�"�.�0�+�+�8�-�4�-�,�0�2�-�)� �A�,�,�*�,�(�.�6�.�'� �'�2�"��2�.�*�,�-�,�"�<�/��%�&� �+�.�+�/�*�$�"�,�"�%�(�,�"�*�%�(�1�$�5�&�(�+�9�&�$�4�/�+�+�'�'�*�*�'�%�+�-�9�)�"�'�-�+�/�.�,��*�*�*�,�+�1�%�)�H�)�0�/� �0�+�-�4�1�:�5�2�1�!��(�'�$�3�3�'�)�&�.�-�'�6�,�-�&�'�%�+�!�#�&�'�/�'�+�/�)�*�,�#�$�,�/�*�1��"��/�,�.�;�*�5�/�3�2�'�/�4�'�0�/�5�(�*�'�)�6�+��7�&�'�6�&�&��%�%��0�+�*� �&�5��*�'�*�,�8�%�%�8�1�5�1�#�$�A�9�/�4�)�/�2�0�1�"�2�1�0�9�1�+�2�1�/�2�(�.�,�/��'�/�2�5�2�*�)�)�8�/�6�0�*��-�1�&�+�(�4�-�+�-�#�3�!�$�)�)�5�+�+�(�)�(�'�3�.�1�%�)�-�/�+�B�%�-�-�-�#�*�$�.�+�5� �.�+�(�,�,�)�3�-�1�0�/��)�%�.�)�$�$�1�)�+�>�/�%�3�.�&�&�5�&�)�%�#�/�-�/�;�-�%�1�+�5�1�*�*�5�+�-�+�0�0�1�*�&�/�-�+�/�.�(�4�0�3�-�#�0�3�+�2�/�0�4�1�׀؀րԀ׀ր؀ـڀɀӀӀր׀؀׀րրրրހЀҀځ0�.�=�*�1�,�1�'�/�'�+�-�2�2�,�+�&�.�6� �)��+�1�,�5�&�-�7�/� �'�,�&�%�*�,�/�@�4�,�!�/�4�1�9�*�1�$�#�*�@�,�*�-� �-�<�%�)�(�.�,�&�0�6�'�/�(�'�+�&�#�*�+�;�'�(�/� �0�"�#�7�(�8�/�#�)�/�-�(�%�.�0�#�2�7�#�+�/�1�5�+�-�,�&�2��"�-��#�/�C�)�(�6�4�&�1�%�/�3�8�.�0�6�'�2�5�,�%�1�-�%�4�3�!�&�.�9�7�+�5�*��"�*�'�+�)�!�0��)�)�&�"�%�#�'�2�%�9�0�/�<�+�3�,�'�/�+�'�9�,�#�,�(�:�/��0�1��1�(�(�-�1�+�3�+�1�)�9�,�.�3�"�3�!�/�)�0�)�0�%�-�#�.�/�-�$�#�5�@�0�+�7�(�*�,�4�%�0�/� �'�4�1�0�(��/�,�/�)�0�*�.�$�.�'�4�3�-�+�(�2�(�)�1�6�/�%�1�+�0�9�/�3�+�*�2�"� �2�0�0�-�1�"�*�!�#�!�%�-�*�.�/�.�0�)�?�(�,�)�2�3�'�/�4��6�,�&�8�&�"�"�2�#�*�-�+�1�6�%�-�,�9�6�(�'�%�4�)�.��0�-�5�0�3�6�0�3�9�:�-�-�/�$�*�,�+�%�$�*�+�1�1�5��-�'�0�7�'�-�%�%�2�/�0�5�-�)�*�&�$�.�.�'�3�/�'�,�0�=�/�*�4�.�)�,�%�$�6� �+�/�"�'�5�!�.�/�0�#�/�6�'�:�+�%�8�*�)�/�!�#�$�"�2�+�+�)�.�6�)�-�,�/�*�7�/�!�;�)�+�%�+�=�9��(�8�#�1�(�)�-�3�)�1�/�3�'�.�4�(�&� �(�2�,�"�0�/�*�*�'�,�8�&�%�'�,�3�)�&�*�)�(�0�)�2�+�%�4�<�*�/�+�)�0�*�6�/�<�-�+�8�)� � �,�4�+�,�%�$�)��/�4�%�*�-�%�<�&�5�+�&�2�)�0�׀ӀЀـ؀Ԁ׀ـրˀ؀؀πҀـЀ׀؀ـՀڀ؀Ӏׁ(�*�/�.�,�=�*�9�:�&�+�3�5�)�$�"�#�,�+�!�$�'�'�.�'�"�+�)�!�-�)��/�/�(�(�9�*�/�3� �2�*�9�:�5�7�-�6�8�$�.�)�*�/��8�+�*�*�'�(�-�.�3�/�0�$�2��6�)�&�4�#�5�#��+�-�(�+�:�2�-�%�(�/�9�0�/�)�)�2�0�+�1�/�#�3�!�)�1�4�,�7��(�-�,�(�*�9�*��%�0�&�-�E�0�*�%�-�'�!�,�2�/�#�)�,��"�3�0�4�%��*�"�)�2�/�9�*�0�3��"�5�+�&�3�3�7�/�&�/�)�-��.�'�-�/�+�+�=�%�(�5�.�+�6�;�'�<�(�&�,�"�"�2�1�0�-�7�+�+�-�.�-��/�5�%�2�5�2�)�.��(�$�$�*�-�(�2�+�.�/�<�,�9�1�5�1�%�5�+�*�+�-�/�.�+�&�4�-�'�%�!�5��*�,�(�1�2�7�&�&�.�8�"�0�-�$�2�)�'�)�=��:�3�&�%��.�<�3�!�/�-�(�-�-�-�-��9�7�-�:�,� �7�3�.�-�/�-�%�+�4�/�/�#�(�)�7�'�.�1�<�3�'�'�2�3�*�*�$�)�,�!�,�)�4��"�1�*�/�&�8��)�/�.�*�/�-�:�&�1�3��)�/�'�*�4�9�8�1�-�.�'�&�/�#�(�'�+�6�A�*�/�&�1�$�6�5�+�#�1�)�+�+�!�/��(�&�/�(�-�2�,�7��'�0�/�.�'�)�#�1�.�+�#�-�(�*�9�-�3�2�!�.�4�/�1�7�+�%�'�&�6�%��.�7�*�*�3�'�,��&�1��+�+��7�!�-�*��&�5�*�-�1�.�)�2�8�.�4�0�,�+�)�'�*�-�(�9�7�+�3�+�*�7�$�"�#� �0�%�2�,�"�3�0�4�4�!�*�#�+�/�3�,�.�)�"�(�+�5�+�.�2�4�$�K�/�'�0��.�4�5�-�(�,�/�/�(�#�5�)�1�"�5�2�-�0�:�,�,�5�(�3�&�ۀրр؀ۀ׀ՀԀـ΀ԀԀԀ؀Հ؀ـՀڀրրҀـԁ6�)�!�/�&�.�-��8� �(�.�/� �+�2�&��/�0�5�7�0�:�&�9�-�-�-�/�*�,�8�1�0�.�-�+�,�,�/�"�+�2�2�%�<�9�'�-�%�+�-�(�*�%�+��;�$�(�+�+�-�*�1�&�+�&�!�!�%�(�"�/�*�*�!�(�*�&�+�-�&�7�-�1�,� �%�,�-�1�,�%�,�(�$�2�-�5�4�<�7�5�3�1�3�0�.�9�-�'�*�1�)�%�(�)�/�6�<�0�&�/�>�1�7�3�8�+�"�.�(�)�8�(�)�/�.�-�.�,�$�1�&�0�!�"�.�/�-�,�-�,�+�,�6�0�*�0�'�5�#�-��%�(�*��-��.��9�*�0�&�.�&�-�%�!��2��/�3�(�/�1�"�/�9�%�/�.�+�*��'�-�3�A�0�0�-�0�3�/�/�2�'�;�'�.�2�#��1��"�+�0�:��$�0�.�1�*�+�-�2�-�%�0�7�/��'�.�1�"�3�%�4��/�5�.�3�(� �%�+�%�)� �(�2�(�8�(�/�$�'�%�'�#�,�4�8�)�7�8�3��,�,�&�)�6�7�%�&�.�&�#�-�#�&�1�3�+�-�&��+�.�-�)�,�+�8�)�1�)�:�0�2�'�3�1�*�'�!�%�.�;�)�*�7�2�)�,�5�>�(�7�,�:�-�!�%�.�#�0�/�'�9�1�'�4� �.�&�7�5��/�(�+�4�.�)�0��.�+�=�0�4�)� �/�'�#�/�2�%�0�2�"�/� ��+�+�$�4�&�+�'��0�#�%�2�/�'�0�7�8�&�+�+�-�(�.�4�<� �5�8�,�+�,��.�/��&�3�0�)�,�7�3��8�"�5��(�%�)�1�#�.�!�%�0�6�0�,�&�6�-�-�&�+�%�'�9�$�*�2�/� ��*�,�7�,�8�,�5�(�/�6�'�/�3�.�*�*�1�"�3�6�*�'�'�1�-�/�,�.�1�1�"�*�2�*�)�+�'�*�$�5�&�.�%�4�*�*�9�0�,�/�6�,� �'��.�:�=�+�4�6�ԀрրӀـӀҀЀӀ��рــ׀ՀՀҀՀڀрڀڀ؀ց<�#�'��)�;�)�-�&�=�'�0�/�;�/�"�-�)�-�+�)�3�5�6�&�4�0�+�2�4�5�,�(�4�'�!�.�4�+�*�+�.�-�7�=�1�4�/�?�.�1�2�%�.�/�4�'�-�4�)�,�6�*�'�.�)�2�0�'�+��9�-�(�&�.�&�>�1�*�3�,�&�*��3�)�-�7�'�9�"�!�3�"�,�"�+�!�'�+�6�.�&� �3�2�+�5�1�+�,�'�-�<�#�)�;�3��"�&�3�+�0�1�.�!�*�"�7�%�&��(�(�,�3�*��/�%�(�2�1�&�7�(�(�-�2�3�/�2�2�'�&�)�4�(�,�+�+�)�'�'�2�!�(�3�/�1�7�%�(�%�.�0�)�%�0�+�%�2�1�,�*�5�>��,�&�/�*��1�3�)��)�/�"�+�+�*�!�'�2�(�1�/�'�/�+�&�2�+�/�.�!�)�'��0�/�0��2�1�%�1�*�-�2�/��$�5�,�(�+�"�(�)��2�(�#�"�-�4�&�&�3� �*� �#�/�+�'�-�3�.�/�,�/�3�)�:�*�-�1� �)�4�(�.�8�'�,�.�-�*�/�$�*�(�0�&�2�5�)�$�+�+�*�-�6�5�3�;�+�%��/�%�,�,�2�/�5�-�1�1�-�7�"�4�5�1�2�,�*�'�*�*�0�+�,�4�4�/�-�.�,�6��1�3�,��.�?�1�!�;�7�8�'�'�+�-�3�$�1�2�,�;�2� �/�'�'�1�-�*�)� �%�1�7�*�3�%�2�2�5�,�)�-�&�!�1�!�&�%�,�*�*��(�+�%�#�/�7�4�)�1�$�,�-�&�.�,�0��!�,�*�,�!�)�'�-�,�'�0�6�3�0�&�$�+�2�'�)�2�,�&�6�/�'�*�*�'�)�/�1�*�!�,�)�2�0�/�0�6�2�0�'�.�-�#�<�-�4�4�3�$�0�#�.�)�#�%�0�!�(��$�*�'�#�.�5� �.�9�-�3�%�,�/�+�)�2�2�/� �9�6��7�%�-�/�+�(�4�4�1�%�-�3�.�1�4�,�(�1�ҀԀԀۀрՀ׀׀ӀȀـ׀ԀԀڀڀր؀ҀՀՀӀӀ؁6�#�(�=�!�8�2�(�+�=�-�A�4�!�+�-�*�/�,�+�)�9�,�/�3���'�1�+�-�5�!�'�/�)�)�.�*�-�9�(�7�(�.�)�A�.��,�$�(�+�2�.�.�>�2�(�6�8�0�3�&��*�-�(�0�,�.�+�/�.�.�)�7�.�%�(�1�-�"�)�'�(�.�4�1�&�:�0�/�3�$�$�,�.�1�.�5�#�)�/�4�3�1��(�4�6�*�.�#�*�'�)�"�*�"�!�5�"�.�-�-�(�0�5�4�'�$�'�5�3�+�<�1�4��,�$�-�.�5�-�>�2�,�+�)�'�/�'�#�'�,�0�+�%�.�3�)�-�*�3�+�+�#�7�4�2�3�%�5�/�'�,�-�5�1�9�-�!�(�0�3�'�+�1�3���4�#�%�6��+�)�'�,���:�/�+�+�)�)�@��6�&�%�,�%�7�+�*�1�'�*�5�5�)�.�3�/�.�� �&�+�/�1�+�+�1�/�9�6�"�9�.�&�/�.�-�:�(�=�#�,�(�%�/�0�,�-�$�,�$�4�-�&��5�)�!�7�)�0�)�+�'�0�$�%�0�#�/�*��'�!�>�)�0�*�0�.�,��.�+�0�2�2�.�?�/�#�#�5�:�0�+�3�+�0�+�)�#�'��/�(�&��2�*�+�/�0�*�)�(�!�&�'�+�4�(�(�*�%�0�1�+�+�(�/�(�'�/�.�2�3�0�4�-�,�!�(�2�/�0�4�0�/�(�+�&�1�'�0�'�'�=�0�%�(�(�0�)�$�$�%�&�+�1�;�.�,�&�5�-�"�*�&�"�2�)�-�5�-�1�+�<�'�#�B�1�/�1�-�@�/�+�$�#�C�'�;�%�'�2�6�&�)�-�3�3�-�2�&�&��,�2�1�4�(�0�7�6�0�*�.�+�*�!�*�/�5�)�'�5�6�)�&�*�,�6�1�(�+�&�%�)�B�'�-�)�3�2�,�7�,�-�/��"�5�0�&�'�,�#�5�#�*�5�9�-�6�5�$�@�/�5�(�/�)�(�-��#�1�8�0�,�1�*�+�/� �+�5�(�4�π܀Ԁ׀ــ׀؀րĀ׀րӀ؀ӀՀ܀ԀۀՀӀԀӀҁ+�%�(�1�4�&�6�/�&�*�8�.�/�(�5�+��*�5�)�#�&��7�+�>�:� �:�(�'�-�,�1�/�%�6�2��)�7�$�-�0�0�2�6�3�2�0�(�5�!�,�,�;��*�5�!�4�'�%�*�(�2�7�-�0�)�*�9�'�4�+�9�)�;�2�=�C�+�'�4�(�/�1�3�)� �%�0�.�)�+�.�&�0�5�:�*�4�%�.�7�#�+�8�,�2�-��>�1�+�-�.�,�6�0�=�'�/�'�2�/�-�4�'��+�8�,�#�5�'�5�/� �-�-�8�.�'�(�6�*�1�%�*�-�(�&�2�/�)�%�/�-��.�-�2�3�$�(�/�-�3�+�/��5��<�'�6��$�7�"�5�-�6�8�!�C�$� �,�&�.�?�%�(�(�!�&�<��.�'�-�(�#�+�5�%�0�*�+�%��3�2�6�3�-�4�'�6� �%�'�5�(�'�2�9�5�)�(�0�1�,�/�,�#�9�)�'�'��<�-�)�+�,�+�*�/�&�.�'�%�'�*�6�(�+�.�/�6�-�/�,�0�)��*�5�0�-�2�5�.�*�,�-�.�*�,�/�0�.�2�6�'�,�1�3�(�-�8�8�+�/��.�)�/�+�2�%� �#�.�.�-��/�-�0�#�&��+�3�&�&�)�!�*�:�.�5�,�(�/�-�,�(�$�+�2�(�(�/�,�)�%�)� �&�%�)�/�2�-�+�-�:�"�*�)��)�,��3�'� �8�#�%�1�'�/�1�6�5�7�#�$��$�3�2�$�1��*�3�*�.�)�)�6�&�+�$�-�'�"�/�/�$�+�,�9��&�'�*�(�-�:�*�)��.�4�)�*�-� �*�#�,�)�(�%�+�2�1�.�2�(�<�0�*�3�4�3�&�/�2�,�9�#�'�)�-��F�/�,�%�"�6�)�1��-�+�/�,�-�+�7��"��,�*� �-�+�-�)�'��-�'�+�'�7�0�;�7�9��3�6�%�%�0�$�,�+�$�7�$�"�"�3�3�/�0�/�-�+�/�:�9�)�,�/�7�&�<�,�Ԁ׀׀݀Հ׀ր׀Հǀ܀ـڀۀрԀ؀πـ؀ր؀׀Ӂ:�#�8�'�(�&�.�,�-�6�(�+�1�+�1�+�'��9�(�6�5�!�8�#�1�2�.�/�$�+�/�4�+�(�.�7�2�=�4�,�0�(�3�2�(� �"�+�/�1�.�)�"�4�0�(�0�#�!�3�,�,�$�1��)�0�)�9�B�1�1�7�2�%�'�'� �.�*��'�'�$�6�&��2�#�,�%�(�!��9�-�(�$�)�.�5�/�$�,�%�8�(�-�*�.�'�%�1�&�+�2��4�5�*�"�)�-�/�,�!�,�.��/�(�*�0�%�(�/�+�$� �'��(�#�&�:��-�*�$�1�0�%� �-�.�&�.�"�(�(�:��0�%�,�*�(�"�(�#�'�$�8��)�>�3�!�6�.�(��$�5�#�/�6�'�&�(�(�,�#�#�%�0��.� �,�7�&��.�$�0�(�1�*�5�,�'�6�+�)�'�1�%�*�-�,��)�"�9�3�)�%�#�/�&�.�;�+�-�2�&�'�.�/�*�%�'�*�3�/�2�-�-�-� �$�;��(�8�"�%�)�,�*�9�(�(�1�0�-�(��%�)�6�3�>�'�4�&�D��2�*�#�'�"�3�/�/�2�/�4�/�'�$�-�;�%�.�,�*�$�/�/�"�)��+�&�)�*�)�0�0�/�'�#�+�.�%�/�#�.�0�,�2�4�2�,�.�8�7� �/�!�<�1�9�<�$�7�*�)�.�2�%�)�,��'�;� �)�/�!�+�3� �%�-�*�:�%�/�/�!�4�,�1�/�!�0�"��+�'�"�4�&�3�#�!�0�1��)�/�0�*�)�+�"��'�*��;��6��)�&�)�1�&�&�*��*�#�"�)�8�/�-�6�0�7�7�!�%�-�.�-�%��3�(�#�4��0�(�/�"�9�/�%�.�0�-�,�/�5�"�6� �1�0�-�/�'�*�)�*�/�7�)�,� �$��2�$�-�4�4�*�&�:�.�8�&�+�(�)�6�+�(��-�'�"�)�-� �-�$�#�*�4�)�-�,�5�5�-�/�.�+�3�/�&�,�-�-�#�5�(�4�-�9�7�؀ՀՀ׀؀Հր؀Ԁƀրڀـր׀؀ҀՀՀ׀Ҁ؀Ӏف6�<�5�-�#�+�!�7�+�7�3��3�7�-�0�-�$�� �1�#�-�4�)�,�3�/�(�-�(�3�-�<�)�#�.�.�+�2�'�2�/�$�(�%�)�4�=�/�2�3�*�(�#�2�)�4�&�%�+�&��#�:�/�/�3�#�-�1�4�)�5�3�)�(�*�.�-�"�$�1�"�/�:�*�/�6�+�5�0�0�)��3�3�&�%�#�8�1�/�2�8�1�/�*�0�)�.�!�7�.��9�)�*�*�$�+�-�3�5�.�1�4�%�0�&�%�)�9�'�(�.�+�.�2�/�)�*�)�#�1�1�-�.�/�,�,�#�)�8�+�1�1�(��8�.�&�/�*�*�6�'�(�5�*�.�1�� �'��/�)�.�.�-��+�$�#�-�'�"�!�/�/��-�5�(�%�(�5�9�/�+�-�5�8�-�1�2�=�0��&�)�;�"�/�(�6��-���5�4�'�0�,��-��/�&�0�4�*�)�5�*�"�0��"��+�&�#�+�3�!�,�0�$�8�(�'�%�6�6�(�8�!�.�)��6�(�&�+� �*�)�,�3�2�1�%�&�0�(�4�.�'��%�,�*�6�2�'�(�,�)�4�0�+��2�.�)�1��,�/�)�-�6�6�6�%�0�2�-�6�.�1�$�)�,�0�)�"�+�,�&�)�,�/�$�9�7�"�"�-�/�)�)�2�1�#�4�-�*�2�/�4�(�0�#�(�$�'�3�9�(�7�)�0�+�4�1�$�2�/�-�7�.�#�-�0�1�!�*�7�/�6�-�'�+�(�2�$��/�1�*�$�-�2�/�>�/�+�-�.�,�%�.�3�(�'�-�*�+�"�4�'�#�/�.�0��3�$�-�,�+��/�)��1��+�0�3�+�(�,��� �0�+�2�7�3�-�2�'�%�,�'�:�3�-�!�8�4��$�:�*�#�*�2�.�+�+�/�%�+�/�$�-�.�4�(�)�%�1�*�(�*�(�.�)�*�)�)�9�0�8�+�*�0�1�,�.�4�1�(�!�6�,�/�1�,�,�)�0�5�+�+�+�0�%�8�1�"�(�4�*�7�ڀڀ׀րۀ׀ҀԀـǀҀۀӀրڀڀրҀրӀրԀՀӁ9�,�4�3�0�/�5�$�-�0�&�/�-�%�+�&�0�#�3�7�-�*��'�/�,�%�5�1�#�4�=�3�>�'�/�.��.�$�.�/�3�$�0�(�1�2�0�(�+�,�-�-�/�"�/��+�"�(�'�7�*�-�*�"�%�<�/���5�(�,�(�-�$�6�)��2�)�+�#�-�*�0�'�.�=�/�5�/�%�'�%�&�.�-�'�/�2�+�'�/�*�/�-�+�+�-�8�+�,�-�"�$�)�,�%�*�*�/�(�3�/�,�,�0�3�,�4�*�"�,�,�/�.�&�/�&�1�3�6��(�8�)�'�)�2�,�)�3�5�4�8�*�(��#�,�5�&�/�&�)�0�#��+�#�(��1�&�8�4�*�*�<�.�7�-�/� �:�-�$�6�%�&�,��/�,�'�*�+�(�+�,�'�*�*�.�2�4�/�9�+�5�2�6�4�9�6�$�0�.�0�1�!�!�8�3�-�#�(�.�/�&�1�2��0�/�<�5�&� �-�4�'�*�3�/�!�+�3�2�'�%�1�&�#�+�.�%�/�(�'�/�0�6� �/���3�-�+�/�.�-�0�2�-�5�/��<�&�"�(�(�+�"�,�)�)�0�)�)��,�:�'�/�$�,�'�)�/�)�6�=�#�/�.��7�*�2�,�-�%�3�2�'� �+�)�.�%�(�(�:�(�,�)�!��+�-�%�%�,�%��)�#�0��$�1�!�"�/�!�$�#�0�6�6�/�#�)�#�8�$�-�2�'�9�-�1��0�,�.�-�5�0�)�,�2�0�1�+�&�+�/�%�&�$�:�>�2� �&�4�*�$�� �"�1�*�,�.�)�3�&�3�2�8�(�6�*�*�#�*�1�3�2�3�)�(�,�'�'�*�'�%�(�+�*�*�)�+�+�/�&�(�+�&�-�3�)�<�9�+�$�7��/� �4�*�(�*�,�$�(�&�-��)�9�8�.�)�'�/�*�3�(�$�)� �&�9�/�5�/�6�(�'�'�0�)�� �*�(�0�-�0�-�+�(�%�1��1�.�-�"�9�+�/�0�*�;�,�,�#�-�*�9�׀ӀӀ׀؀Ҁ؀ԀՀĀـڀՀҀ؀ՀۀӀӀ؀րՀЀف)�-�/�)�,�'�.�0�&�-�,�*�3�)�(�/�8�$�.�3�4�.��2�A�)�/�"�)�%�7�$�,�8�+�/�0�.�+�%�/�*�$�2�1�1��#�-�2�)�$�#�3�4�+�$�5�&�0�/�1�,� �,�+�+�5�6�+�.�'�0�3�5�,�.�-�/�9�$�,�"�0��1�/�%�;�-�#�.�.�'�)� �/�"�.�,�&�,�'�#�,�'�&�+�,�0�!�/�;�,�.�4�4�,�3�,�,�,�9�6�!�(�)�7�;�/�*�.�0�1�2�*�$�0�.�'�-�0�1��=�-�-��'�6�2�-�,�&�-�>�.��2�&�8�/�+�(�0�(��"�/�3�-�5�3�*�*�)�#�+�3�'�,�&�*�+�!�!�#�!�-�'�8��2�(�)�-�)�7��0�.�2�9�*�)�%�2�&�+�'�5�.� �+�3�.�/�8�)�-�*�-�'�,�9�+�3�,�;��0�'�)�'�%�+�1�.�2�%�!�%��1�,�(�,�.�"��)�)�&�+�2�0�'�-�+�7�&�"� �*�1��%�2�)�)�2�'�,�,�-�$�"�#�'�1�-�*�,�%�-�*��(�=�+�(�)�6�1�+�)�-�-�/�0�#�7�2�0�3�:�.�*�8�(�'�$�6�+�-�)� �*�.�2�*�)�-�0�,�7�7�'�7�:�*�+�!�4�.�6�!�/�)�<�3�2�2�,��%�/�&�8�7�&�1�*�.�2�9�)�$�-�,�!�)�/�7�#�-�$�*�:�5�-�5�!�4��.�*�'�(���'�%�-�/�%�(�.�+�0�/�.�)�,�,�(�6�#��1� � ��>�0�4�6�!�&�1�"�4� �/�(�/�2�&�#�/�?�*�'�1�+� �6�-�3�$�+�2�"�!�-�-�2�6�+�%�3�'�"�4�0� �&�,�5�+�!�1�,�)�4�,�-�6�.�(�+�!�-�,�'�*�1�7�)�/�*�5�,�2�8�+�4�3�/�(�6�/�%�9��/�=�,�+�7�5�%�(�-�,�2�+�4�1�$�*�(�4�!�/�,�)�@�9�/�&�4�Ѐ؀Հր؀Ѐ׀րڀŀՀـրـԀՀԀـ؀ԀـڀӀف5�2�*�1�*�=�2�*�-�-�*�/�%�+�9�*�0�6��'�7�+�8�9�2�4�,�#�'�7�&�1�%�=�3�#�7�5�0�'�*�4�)�$�=�!�0�+�.�)�/�!�&�1�*�)�#�-�&�6�,�!�9�!� �$�,�/�2�0�$�1�'�2�"�.�&�*�,� �7�'�(�(�4�&� �#�,�(�/�/�#�.�&�"�.�/�$�/�(��$�5�5�2�2�7�*�/�1�;�'�$�%�%�8�'�6�/�+�(�/�,� �*�,�/��#�5�%�*�-�)�&�5�-�$�-�!�,�2�7�'�,�(�%�&�8��5�/�0�2�,�)�(�)�#�:�(�%�4�9�7�&��1��#�3�%�+�-�1�1�-�.�4�#�)�3�-�(�3�&�3�'�3�+��-�4�$�$�,�/�#�6�-�"�3�2�-�%�.�-�'�&�(�+�#�+�1�&�5�+�0�1�'�0�5�%�,�+�.�0�!�%�5�4�$�2�/�%�.�6�<�0�%� �/�&��,�-�%�-�2�:�%�#�2�%�1�-�,�*�.�2�-�,�-�$�2�,�!�"�*�(�(�,�,�?�-�.�(�6��=�(�)�"�*�2��/�+�-�*�2�.�%�#�*�4�'�$�"�(�(�(�"�%�"�(�#�)�.�)�)�0�6�-�!�2�#�(�%��6�1�1��(�%�*�&�.�)�*�&�*�-�2�+�5�)�1�&�+�4�.�1�/�3�,�*�.�(�!�7�!�/�2�)�-�3�#�&�,�0�'�/�1�2�1�#��'�(�/�5�'�!�3�)�'�9�-�)�#�<�$�4��&�"�3�9�;�+�/�'�0�,�/�%�!�$�6�2�'�-�-��2�7�-�.�1�&�3�3��'�,�3�%�'�(�2�0�%�/�5�!�,�+�-�*�)�G�)��5�-�-�#�)�6�*�'�-�3�$��:�,�<�*�)��(�%�-�3�?�4�/�0�*�*�,�'�3�-�2�-�%�-�%�4�.�3�5�5�&�#�%�.�<�)�6�$�(�*�1�5�*�+�/�.�1�'�-�*�6�+�6�<��,�)�6�'�2�8�*�*��րـրҀ؀Ӏ׀؀Ѐƀ׀Ӏ؀؀рۀր׀ԀҀ؀ڀ׀ځ-�/�/�.�/�,�(�/�+�(�0�1�4�1�1�9�'�3��,�0�5�2�7�� � �4�*�@�+�%�+�"�=�0�,�0�*� �%�&�2�,�*�+�#�:�1�,�,�(�(�5�$�+��/�1�0�(�4�)�)�(�.�'�+�1�#�.�(�&�*�/�$��"�-�5�;�#�6�1�0� �-�1�*�*�-�.�(�/� �2�.�2�0�/�'�6�+�(�.�/�)�1�.�(�&�.�*�1�)�9�'��+�3�3�#�5�%�%�(�0��)�'�,�.�$�%�2�(�'�*��1�,��0�*�/�#�#�3�)�1�)�(�2�'�%�:�-�'�/�3�/�"�%�-�,�%�3�+�*�&��&�,�,�(�3�2�/�&�.�#�,�#�/�?�0�5� �6�5�,�;�*�.�(�/�"�&�+�%�-�5�/�%�2�$�1�&�$�$�3�3�+�)�)�)�+��(�,�0�4�%�$�/�3�#�.�3�1�0�3�3�*�&�1�,�4�+�&��!�)�2�1�&�)�3�"�'� �.�.�/�%�,�.�+�&�+�'�.�0�-�9�&�*�0�%�1�+�"�3�)�6�5�)�/�,�+�%�1�+�2�#�4�-�+�)�#�-�)�/�#�,�7�4�'�*��0�2�0�.�+�2�4�*�3��4�1�'�/�(��$�#�$�)� �4�'�1�(�&�-� �,��$�%�2�8�$�+�+�"�'�2�3�.�*�"�2�1�,�$�"�2�+�+��(�2�%�)�,��3�(�%��+�/�"�+�%�0�-�7�,�&�0�+�%�.�*�8�,��;�+�)�*��1�'�)�(�%�,�&�:�*�%�,�'�"�*�)�,�3�,��$�%�3�1�-�3��.�+��0�0�6�/�3�*�"�.�*�-�'�+��&�+�2�5�&�,�(�/�,�2�5�%�,�,�+�"�&�2�!�"�"�4�(�%�+�5�5�/�/�"�0�)�%�$���(�0� �.�0�'�*�)�)�$�0�7�%�(�/�6�3�=�+�(�+�1�8�-�/�5�9�#�+�$�-�+�5�#�&�+�-��0�-�6�(�"�&�(�-�=�$�Ӏ׀ՀԀۀڀـԀ׀ŀـ׀ۀـۀԀ؀ۀրڀр׀րՁ:�2�8�=�!�!�;�/�*�2�0�&�6�1�%�4�1�4�(�8� �(�*�8�=�(�%�0�*�-�9�2�1�2�4�9�)�$�0�=� �(�+���!�(�%�8�#�+�&�2�+�*�"�"�6�&�'�#�+�(�0�3�(�/� ��%�5�&�!�1�/�/�.�)�/�"�'�&�+�&�2�1�9�/�/�2�*�%�%�&�$�'�;�!�7�8�%�/�<�2�'�*�,�%�&�+�.�)�)�,�&�"�)�/�$�#�-�$�$�2�.�)�/�4�'�&�)�7�)�8�3�6�(�'�'�(�-�&�+�+�*�,�)�%�(�2�&�5�*�0�'�+�9�'�*�+�#�3��(�4�(�(�-�,�$�'�-�-�*�+�*�&�'�"�6�,�!�-�,�%��+�0�"�3�/�-�3� � �-��,�3�3�-�:�:�*�5�3�-�&�#�(�1�%�%�+�'�+�*��&�+�4�/�,�*�'�.� �'�/�(�&�+�)�+�1�%�%�9�5�(���*�!�-�!�"�8�/� �-�-�2�0�3�"�&�(�.�)�#�%��;�.�7�1�4�:�;�2�'�$�-�4�F�1�.�+�=�(�.�2�;�-�*�0��1�2�*�+�*�,� �3�-�9�!�4�)�)�=�#�&�5�*�0�1�'�-�4� �)�'�/�-�*�0�&�'�+�*�.�+�*�"�0�1�4�1�3�"�/�&�*�+�-�:�+�&�;�0�,�%�%�/�-�+�5�*�'�/��-�2�5�&� �/�3�;�$�%�$�3�0�1�/�3�!�0�*�2��(�*�'�5�5�-�2�*�*�(�6�/�6�2�1�5�*�'�$�*�2�9��0�'�'�3�$�)�.�"�3�(�+�(�(�/� �/���0�:�*�+�?�$�$�)�=�)�<�-�+�%�,�3�'�-�/�)�2�+�0�-�#�6��+�&�'�#�$�"�%�7�,�"�.��:�0�*�/�-��,�%�6�*�#�)�/�*�0�0�%�.�*�/�,�/�(�-�.�4�"�1�7�7�%�(�)�:�!�/�,�'�/�/�2�3�1�/�&�,�2�+�/�/�:�$�/�)�7�+�&�Ӏ؀ـЀҀԀրӀՀǀӀՀ؀Հ؀ЀՀրӀӀ܀ЀՀҁ/�5�-�5�3�5�1�,�.�9�2�*�)�+�,�%�0�-�:�.�%�3�,�1�(�#�)�1�.��(�/�.�'�"�/�(�)�/�$�*�3�)�,�1�.�1�$�-�*�:�-�+�1�0�-�8�,�)�-�1�%�1�0�2�3�.�+�/�-�0�*�.�/�<�,�"�,�)�'�%��.�/�2�0�.�/�2�2�+�'�1�/�/�)� �)�&�8�7�4�:�-�2�(�1�#�3�,�'�1�-�#�*�"�*�#�+�-�!�!�'�.�&�1�2�1�5���-�2�:�(�2�$�+� �7�'��.�*�1�*�/�'�&��0�$�7�,�*�!�.�)�;�8�4�"�"�"�-�*�(��1�1�-�2�-�1�.�'�1�!�"�4�8�'�0�!� �6�4�*�)�1�#�3�/��$�5��-�(�#��!�$�-�%�9�2�,�%�(�0� �(�$�.�!��"�0�'�+�'�.�%�4�+�)�)�'�,�,�-�*��!�0�)�'�1�3�/�3�4�2�+�9�)�:�'�,�2�1�$�/�6�3�!�&�7�$�'�-�'�1�,�4�1�7�7�+�2�/��$�:�+�)�-��2�/�'�0�;�"�5�+�+��5�%�%�'�#�$�/�"�)�(�&�%�,�)�;�-�3� �)�%�3�-�*�%�.�%�-���%�"�#�4�)�*�)�*�-�(�%�)�'�,�-�'�2�?�)�+�&�2�%�/�-�,�,�3��9�0�&�!�1�!��&�)�(�(�1�8�7�.�� �1��0�*�/�;��6�(�0�0�(�%�$�-�5�+�/�.�0�0�)�"�-�,�+�/�@�,�)�(�"�+�3�.��'�(�3�%�,�9�$�*�/�/�<�$�*�+�.�"�3�+�+�3�!�0�*�'�-�0�&�.�8�+�1�3�-��'�'�1�%�!�'� �%�-�'�7�/�2�.��5�"�0�*�"�/�+�5�%��%�-�&��*�'�2�+��5�-�5�-�2�1�0�-�6�@�"�)�5�*�7�&�3�.�8�+�7�+�'�7�'�5�&�7�+�$�9�-�)�.�6�'�(� �+�@�2�-�'�+�ۀӀπ׀׀Ӏـ׀ـŀр؀׀ՀҀ؀Ԁ׀ՀՀրՀ܀Ӂ8�*�5�/�%�5�2�'�*�-�4�1�%�0�!�-�+��2�&�!�3�+�+�'�$�4���/�/�#�)�4�)�.�+�7�&�*�+�3�1�*�1�'�0�*�+��1�&�/�#�0�4�3�/�/�)�0� �5�&�/�-�/�*�/�8�1�(�/�2�"��"�7�&��4�'�7��0�3�*�4�1�*��0�.�)�)�/�!�)�.�(�/�/�#�)�2�4�(�(�/�1�0� �3�(�(�0�<�+�+�:�.�>�1�,�3�+�7�'�8�1��"�+�4�(�'�'�3�%�0�/� �0�,�'�,�)�"�+�&�3�$�$�#�6�*�(�9�!�"�"�(�.�&�"�0�$�/�'�-�/��/�/�/�&�/�2�'�)�/�5�%�5�1�!�&�"�-�#�5�&�.�&�"�&�2�$�:�7�&�"�&�+�&�+�(�)�7�"�"�2��*�"�(�+�'�'�0�6�8�$�"�1�<�*�#�2�/�.�+�>�0�)�-�)�(�)�!�+�0�)�%�+�1�)�3�)�+�%�.�(�4�3�/�$�)�2�#�.�&�6��)�8�'�-��'�9�1�)�.�*�/�(�)�"�2�'�'�-�*�4�&�/�+�,�"�3�+�$�)�)�.��)�7�0�)�"�0�%�2�9�%��8�4�(�.�(�/�+�'�+�4�5�,�)�(�,�(�1��&�+�/�*�:�*�*�)�7�.�7�+�)�+�4�+�3�4�/�3�,�1�+�,�4�6�#�'�&��.�*�)� �3�1�?�)�-�)�.�/�3�%�2�.�+�,�'�.�3�$�+�%�0�5�)�/�.�(�,��'�1�4�(�4�+�/�-�6�%�:�.�1�7�5�'�/�0�.�!�4�*�/�7�/�+�)�(�2�%�2�)�(�'�<�9�-�+�*�+��/�*�%�9�)�-�%�8�2�,�2�&�+�.�*�!�+�+�5� �"�&�8�&�>�/�'�9�)�5�/�"�'�/�&�)�,�8�*�/�#�'�-�8�1�:�+�/�$�/�)�1�"�-�7�1�/�'�-�-�#�+�'�+�-�*�.�(�1�4�2�1�2�%�1�4�)�:�&�/�+�)�2�ր׀Հ܀րՀՀ؀рÀրӀ׀Ӏ׀Հ׀׀ۀ؀Ԁ܀րׁ,�7�#�4�-�1��)�-�?�"�8�0�/�$�!�.�<�2�7��#�(�/�!�0�%�+�)�-�8�8�=�1�#�5�4�-�3�3�$�;�8�.�/�;�4�+�0�'�-�-�3��0�1�1�2�3�2�"�#�$�-�1�&�7�6�/�,�.�.�8�5�3�!�%�%�-�7�5�(� �/�+�6� �,�/�1�$�.�5�*�/��/�"�-�5�8�6�+�.�0�"�2�"�5�%�1�6�#�)�0�#��,�-�!�9�1�0�'�-�2�0�*�$�3�%�+�,��)�/�2�+�&�&�4�+�5�/�&�3�,�,�'�4�=�1�!��"�/�&�2�9�4�+�+�(�*�/�!�.�'�0�"�+�"�/�4�(�1�7�'�3�$�)�"�(�6�(��.�!�$�$�&�2�-�)�%�-�.�$�+�)�(�0�4�)�*�1�0�*�5�+�!�#��&�-�'�&�.�$�%�/�.�&�1�2�0�5�(�7�8�*�2�.�.�5�-�2�+�%�1�&�"�'�9�'�+�5�3�(�/�;�'�,�.�.�-�6�/�+�3�&�8�"�7�'�,�$�(�0�*�-�%�7�6�(�,�-�6�5�1�/��/�1�+�/�-�-�)�-�%�2�2�0�1�*�4�-�+�/�4�/�(�+�&�8�'�%�0�,�)�2�/�-�'�,�4�0�4�.�$��2�9�,�'�:��8�)�/�*�-�%�.�4�(�,�+�3�(�1�+�#�'�$��*�&�$�:�/�+�"�%�1�.�$�+�3�4�(�/�7�0�/�1�%�*�)��#�6�"�1�0�1�2�0��6�"�2�.�:�=�$�-�'�+�'�4�7�+�*�3�0�7�0�8�%�5�-�&�!�+�"�2�)�&�)�3�%�-�2��5�)�/�&�!�)�.�1�+�+�4�-�&� �5�"�4��*�B�+�/�;��3�5�+�'�2�)�/�(�1�(�)�?�*�(�(�/�,�6�'�.�7��>�8��7�)�1�8�*��/�2�*�1�<�A�*�1�0�$�+�)�+�$�+�3�0�4�,�'�)�:�.�!��7�-�8�2�%�&�)�,�)�'��4�/�%�0�.�ۀӀԀԀӀـڀـӀƀ׀Հ׀ՀԀրڀЀ΀Հۀ݀Ԁ܁2�4�8�0�/�*�1�5��-�6�"�)�+�!�'�$�)�#�$�)�6�4�-�3�#�+�&�5�(�#�&�/�(�&�(�(�1�(�-�5�.�+�:�+�5�'�.�/�-�-�+�2�'�$�,�4�(�4�"�.�-�%�3�(��0�'�0�'�%�&�1� �2�%��/�!�+�.�6�+�0�,�$�4�%�<�%�-�4�$�.�1��3�)�#�$�+�3�$�;�#�,�0�,�4�@�%�*�.�'�)�'�/�*�6�3�8�'�*�/�7�/�3�&�(�'�3�1�/�#�1�!�)�0�/�!�:�+�&�#�3�%�.�-�+�'�/�/�3�%�'�8�'�/�(�&�/�&�&�*�(�+�+�+�$�-��%��9�'�5�/�(�-�2�.�/�%�-�2�/�.�8�4�8�2�-�*�#�.�.�+��*�8�6�%�3�$�&�2�6�5�,�-�+�9�.�9�(�-�(�&�(�4�$�1�/�&�(�0�)�4�)�-�!�0�'�#�*�/�7�'�;� �(�2�0�.�*�.�&�-�0�.�'�!�2�-�*�4�'�(�'�/�#�/�%�$�#�)�1�1�/�-�*�*�2�&�-�*�,�&�/�+�1�6�/�,�/�C�#�%�2�4�#�1�"��"� �0�5�7�0�1�2�.�+�#�/�2�%�/�-�+�$�(��-�0�#�$�*�"�$�2�+�'�+�)� �2�;�)�,�3�,�0�,�#�,�)�5�(�,�-�$�*�-�+�/�,�,�-�$�!�%�/�4�)�+�5�(�(�+�!�#�+�(�.�!�+�/�)�%�,�9�/�&�.�&�*�3�/�0�/�/�0�7�#�'�%��1�6�+�1�-�1�3�-�(�2�+�(�0�9�,�#�)�$�-�*�(�#�/�-�&�"�;�'�#�'�,�6�0�*�'�/�/�4�+�,�"�+�'�/�0�*�/�,�*�0�.�-�#�+�2�5�/�7�(�-�)�$�"�/�)�6�8�4�#�+�?�%�&�.�(�*�8�7�/�(�-�1�2�)�'�0�>�/�0�3�#� �$�/�*�.�4�,�0�4�1�.�9�+�,�3�)�1�1�0�-�+�7�&�*�6�.�5�7�0�0�$�&�ڀ׀ՀӀՀՀҀ܀ӀȀր؀ـՀ׀րՀـ׀ҀҀۀԀՁ.�+�5�6�#�+�/�0�,�!�-�.�/�!�'�6�-�%�0�'�/��9�!�7�&�2�-�'�1�/�0�%��/�7�)�/�+� �1�%�1�#�-�'�4�.�+�.�)�4�/�!�6�/�8�$�.�3� �,�;�/�(�#�'�3�/�-�*�5�1�0�(�1�,�*��(�.�%�6�0�4�6�*�:�)�&�5�,�)�+�+�+�8�(�6�"�)�;����*�4�-�/�*�)�&�+��#�.�2�$�/�,�0�*�2�(�(�&�-�6�#�5�)�6�5�*�!��#�+�-�+�"�#�!�6��(�,�%�'�.�4�0�@�,�1�%�+�)�3�/�-�:�.�(�&�%�0�%�.�;�.�+�%�%�/�&�$�&�,�0�)��>�)�.�3�3�+�*�,�-�.��#�*�(�&�"�(�+�(�4�+��0�"��(�!�(�*�*�-�5�;�*�0�#�*�,�)� �4�-�'�.�0�%�#�%�"�1�9�-�*�+�(�$�2�2�*�5�(�:�)�(�*��)�0�3�)�5�)�#�#�$�1�.�+�2�-�,�;�%�.�"�-�0��)�5�2�'���2�$�6�*�&�>�!�=�0�;�%�7�)�)�,�6�&�,��/��3�+�1�1�(�0�2�"�)�"�&��6�/�9�&�%�-�.�-�(�2�5�,�8�&�3�/�+�-�5�3�*�+�'�8�+�)�.�)�4�*�(�1�1�:�2�.�(�&��'�5�*�2�8� �.�&�&�'�$�-�4�.�*�$� �<�'�*��+�'�/�A�8�+�/�#�"�1�)�'�2�5�7�2�*�'��+�-�.�7�0�5�4�'�*�2�4�1�/�"�=�2�1�,�+�3�0�'�8�!�*�*��'�%�*��.�+�5�7�/�.�1�!�,�)�&�)�:�-�/�%�/�(�*�(�-�*�7�"�#�9�+�/�+�5�!�-�-�,�7�.�/�2�9�&�0�*�5�%�4�#�%�2�/�)�*�-�)�/�+�-�(�3�/�8�6�>�5�.�6�-�)�4�2��;�0�*�$�0� �3�:�*�-�/�&�'�/�)�2���+�3�2�6�7�܀րڀӀ؀׀ـ׀ӀǀրـۀԀـ׀ӀӀҀ׀ۀـ׀ف!�6�(�/�#�,�8�'�:�/�(�+�(�5�)�.�&�/�>�5�3�+�*�B�?�&�,�0�*�!��8�&�-�,�.�*�%�-�$�3�*�&�'�1�7�/�.�+�)�)�$�,�,��"�*�#�-�&�3�(�-�#�2�&�2�2�(�)��/�1�1��8��0�#�(�.�)�2� �/�0�-�-�.�.�'�%�(�(�C�7�-�#�+�5�-�?�)�1�'�)�9� �%�*�+�*�2��2�$�/�+�2�;�.�3�"�$�!��-�*�+�0�*�5�$�(�7�,�$�:�4�/�'�,�B�2�*�7�'�2�)�)�)�5�4�)�"� �,�1�.�%�$�$�'�7��/�2��2�-��(�!�,�5�+�3� �4�+��2�/�*�7�2�1�3�)�'�0�+�+� �(�+�-�'�'��(��.�,�(�0�1�'��'�'�1�7�)�+�.�/�%�*�&�/�&�/�)�+�9�)�5�-�.�+�.��"�$�%�5�.�9�&�-�=�-��0�/�-�)�*�.�/�*�*�1�#�(�1�(�"�D�1�#�-�.�1�*�6�#�3�.�0�$�-�3�.�+�+�)�"�6� �$�1�#�-�*�-�4�A��(�5�.�-�$��%�1��/�-�*�&�+�4�'�'�+�-�8�*�(�8�.�+�/�6�"�6�!�:�%�4�4�&��2��"�3�(�$�:�3� �*�,�+�(�2�/�-�*��(�#�-�&�&�&�.�-�.�(�6�*�'�6�)�0�-�"�-�(�1�5�%�%�4�'�3�-�!�0�,�-�)�)�3�-�(�,�!�6�8�3��$�%�3�$�)�$�#�=�+�1�%�&�7�2�8�5�(�3�'�%�+�+�0�0�?�+�*�.�)�5�.�,�'�/�/�6�'�(�(�0�,��&�(�.�/�,�0�6�-�5�-�9�6�=�)�0�.�%�*�2�)��3�1�1�.�$�-�,�)�,�)�,�'�/�+�,�0�%�+�!�3�%�0�+�,�!�%�)�2�%�4�=�,�/�/�7�3�3�4�4�"�0�,�4�/�/�,�+�/�%�'�'�#�7�*�&�6�&� �$�)�;�2�Հ؀ڀր׀ԀڀրـʀӀՀ؀؀׀րӀЀ׀؀Հ׀Ԁׁ8�'�7�,�*�7�0�*�5�)�2�5�3�,�+�0�+�A�0�-�,�*�:�+�$�-�!��5�'�&�7�:�-�,�%�7�5�'�+�/�.�%�/�/�)�2�6�(�$���)�0� � �$�5�/�3�'�4�#�!�?�3�-�&�+�-�+�.�.�2� �1�(�/�%�3�.�3�0�+�0�5�2�-�"�2�#�&�0�5�/�(�&�,�2�+�*�$��*�.�/�+�'�)�,�.��(�(��,�)�6�3�/�/�4�3�%�.�.�7�-�(�3�5�0� �,�'�,�$�!�+�1�,�,�-�+�6�*�,��,�$�4�*�+�1�-��3�.�(�'�#�1�2�#�0�4�0�3�/��!�2�#�(�,�)�-�'�+�-�)�.�'�4�%� �*�/�$�&�(�(�)�2�.�'�"��0��-�!�'�%�&�-�1�)�+�)�7�+�.�'�"�+�)�-�!�4�#�.�+�0�#�$�)�4�$�+�'�/�(�)�1�6�?�%�+�*�0�3�'�4�*�.�)�+�*�0�0�8�%�/�-�-�,�,�7�+�1�9�'�2�0�-�0��:�$�/�-�+�(�.�1�!�.�2��$�+�8�+�7��#�!�&�-�2�.�;�%�2�'�3�� �#�(�8�*�-�-�+�-�1�*�/�/�0�*�-�+�2��;�-�"�!��2�4�6�+��0�-�1�2�$� �1�,�3�'�4�+�'�0�*�.�/�0�3�%�1�$�1��0�(�0�9�$�-�1�)�-�3�1�4�7�(�)�-�.�0�/�"�,�&�2�*�,�(�<�1�)�0�%�2�5�.�8�<�!�/�-�!�,�6�+�)�,�-�6�$�4�"�.�3� �-�!�0�*�:�:�5�"�)�:�*�.�7�$�.�1�+�,�$�'�/�-�/�+�)�"�,�0�+�+�+�/�-�#�4�6�3�.�5�.�'�$�$�%�;�+�9�,�%��'�-�'�)�1�-�*�2�(�-��!�1� �/�2�3�#��"�&�(�3�+�1�+�.�5�,�5�%�)�*�'�7�/�$�5�&�=�)�*�@�/�'�*�'�0�3�7�+�.�,�2�,�8��1�׀܀׀ՀҀӀـ׀܀ƀ؀׀ڀԀրրڀՀ׀Ԁ׀ڀ׀ց0�.�3�/�3�+�6�3�:�.�3�1�'�4�2�/�)��3�!�4�0�.�3�7�+�;�*�5�*�0�&�+�0�*�#�4�4�4�.�"�2�&�4�.�#�3�+�)�/�)�8�2�8�(�+�'�*�(�+�1�+�-�0�)�8�)�,�/�2�7�(�)�-�2�6�!�.�4��0�,�/�(�(�2�%�9�0�6�'�-�!�4��/�/�'�#�-�4�4�,�,�)�9�!�+�3�,�'�+�.�6�)�"� �/�&�%�0�'�5�)�'�%�:�(�2�3�%�+�/�*�@�!�4��,�*�!�,�-�'�8�+�!�+�)�>�3�.�)�C�6�2�2�+�1�3�3�!�/�-�3�(�-�-�0�(�/�3�.�2�&�3�&�,�&�'�+��)�&�8�-�,�9�7�2�(�7�1�)�6�0�)�&�*�4�0�(�0�6�)���*�.�"�+�5�'�8�'�"�$�%�+�+�+�2�0�.�/� �*�+�+�%�2�/��%�+�)�,�&�%�)�-�(�,�3� �-�,�.�(�4�,�*�+�2�4�%�#�0�(�-��0�3�#�,�0�/��0�!�1�%�"�,�!�0� �/�8�)��,�!��*�&�+�9�,�$�'�'�6�0�'�'�9�+�3�-�-�1�&�?�,�0�-�&�4�/�0�$�/�'�.�=��.�&�5�)�+�/�(�-�!�8�.�)�+� �-�;�#�&�*�,�1�,�-�+�"�&�0�5�)�)�+�/�8�(�#�4�1�6�?�(�4� �7�1�3�&�!�2�"�'�)�'�&�#�+�"�+�A�3�/�-�*�1�5��/�8�1�/�*�#�*��:�'�+�+�/�"�(�.�+�3�,�,��8�*�.�)�'�,�-�)�&�)�'�/�,�,� �+�8�4�/�1�3�(�'�-�0�/�1�1�,�4�&�2�+�9�3�#�2�/�/�(�,�'�?�/�-�6�%�&�0�'�0��6�=�+��7�1�4�,�%�.�-�.�3�+�6�:�(�2�,�%�'�:�5�'�5�(�#�#�5�)�+��0�(�,��0��2�0�,�4�"�)�$�)�1��+�/�+�,�.�(�5�(�/�π؀րЀ݀ՀҀրӀǀԀӀ׀ҀՀـ׀Ӏրـր܀րہ1�<�-�3�=�$�+�1�5�3�2�3�/�.�6�2�&�)�3�-�/�)�2�>�8�-�!�.�1�*�#���5�(�9�3�3�:�2�.�!�1�*�3�2�"�(�/�(�:�2�"�.�%�(�!�)�(�+�'�.�-�7�<�)�(�.�5�1�1�,�4�2�4�%�)�.�#�3�+�*�%�/��;�5�"�,��!�)�&�%�/�/�'�!�%�'�/�+�5�8�4�5�$�(�&�0�&�)�)�9�(�9�+�7�0�+�'��(�'�#�)� �/�,�'�3�&�2�5�/�%�,�)�)�5�/�*�.�"�/�-�'�4�(�!�/�7�2�<�%�/�-�&�#�)�1�7�*�+�+�&�/�,�&�"�,�8��3�/�,�,�%�%�+�4�&�,�)�3�*�0�/�!��4�.�/�.�.�(�1�!�#�)�-�3�*�-�'�(�(�"�*�+�(�%�+�.�0�-�1�,�%�%�+�7�/�(��3�(�-�.�5��"�!�3�#�%�%��0�*�3�3�+�5�(�)�(�5�0�*�%�9�)�8� �/�(�'�'�*�.�:�0�5�(�C�/��1�/�+�,�#�7�2�1�,�(�(�+�*�0�'�/�1�*�.�(�%�+�0�'�-�<�2�4�%�*�1�*�2�(��7�0�-�/�$�4�'�)�2�0�*�*�'�/�'�2�/�)�(�0�5�'�,�(�7� �4�"�0�4�+�5�+�"�(�1�#�$�'�#�'�(�+�<�.�0�,�4�-��%�+�+�6�0�*�#�3�,�+�*� �(�8�%�$�*�,�%�-�0�3�(�/�(�*�+�/�8�%�5�&�+�'�'�/�'�*�+�0�.�'�1�2�)�+�/�%�'��,�"�=�*�7�*�+�,�2�)�"�%�2�*�1��9�&�0�&�)�&�)�/�-�*�9�$��-�+�*�%�+� �*�6�4�#�1�(�2�3�,�+�.�/�)�.�%�/�,�<�#�7�(�&�'�,�"�.�'�)�:�-�$�-�!�-�/��2�7�$�-� �-�*�"�3��-�5�4�%�+��7�%�#�0�0�.�,�'�)�1�)�+�(�,�3�9�/�/�-�8�5�)�ՀӀրҀ׀ـ؀ՀՀƀԀӀՀۀԀҀӀՀ؀ڀ׀ـӀց1�'�#�,�-�*�,�+�/�2�0�.�)�-�5�9�)�/�%�%�,�%�5�(�!�0�'�/�(�%�3�)�(�=��$�1�7�4�5�9�/�1�8�-�(�/�8�;�)�&�2�(�+�#�6�&�5�8�.�0�&�+�4�(�*�$�(�-�/�.�1�&�.� �+�'���3�4�*�!�&�7�(�*�"�5�+�.�&�+�3�$�)�$�+�#�$�2��+�.�-� �#�4�5�%�4�4�'�+�+�$�'�+�$�/�7�0�-�%�(��2�<�+�,�&�&�,�:�)�/�0��0��!�1�/�(��5�)�)��*�4�"�0�.�-�,�1�1�1�1�5�/�2�,�+�+�*�.�!�/�9�+�!�<�-�*�.�(�&�,�'�1�.�2�7�+�+�)�0�)�,�/�)�*�0�9��3�,�4�$�-�(�$�-�1�,�1�&�&�&�*�7�5�.�/�'�&�+�&�.�'�+��+��'�5�"�$�0�:�.�0�)�,�'�'�/�1�2�(�+�2�+�,�/�5�&�1�%�$�,�/�+�(�)�0�+��/�1�4�1�4�,�"�4�5� �"��4�,�)�,�.�1�%�'�-���*�/�"�0�3�(�,�+�$�1�+�(�:�"�&�#�#�'�7�)�9�3��:�+�6�3�2��$�$�0�:�.�6�%��%��1�6�#�9�(�2�'� �&�3�2�3�"�-�-�&�3�,��4�/�.�1�'�6�)�#�'�,�%�2�'�1�.�(�3�9�,�"�(�3�2�)�'�)���-� ��6�2�-�:�#�+�(�0�)�7�9�1�0�-�*�'�/�!�=�+��E�)�1�4�.�-�,�)�0�:�%�+�2�*�5�,�%��.�+�$�.�*�%��1�0�'�$�4�/�)�(�'�.�-�.�&�&�-�*�5�'�"�=�*��)�6�+�!�6�*�'�'�6�)�*�4�<�(�,�/�$�)�/�,�0�)�+�7�1�.�,�#�-�2�,�&�%�$�$�1�9�)�)�/�$�.�#�-�;�.�(�;�0�6�/�-�#�3�*�0�!�*�)�(�1� �+�0�*�:�-�(� �0� �/�؀ڀӀՀր؀ՀۀـɀӀ׀ՀӀրрԀҀــր؀׀݁0�2�+��,�.�6�/�!�'�6�5�.�)�%�:�+�+�0�.�/�0�'�3�4�.�-�(�4�.�8�3�/�'�*�/�5�2�2�/�$�+�%�*�+�'�4�+�2�1�-�+�%�� �1�$�7�%�3�2�)�(�&�'�7�0�&�(�6�3��"�%�-�*��-�)�"�$�3�,�:�(�4�*�2�#�(�-�7�/�!�#�*�.�-�"�.�0�,�1�*� �*�!�+�)�$�3�2�*�.�(�4�1�-�/�%�1�0�/�#�,�&�+�)�+��)�/�,�+�.�#�*�/�8�!�:�/�1�'�.�4�%�/�5�+�*��(�*�4�"�%�*�2�$�-�*�%�,�&��/�%�*�;�*��6�+�#�)�(�(�&�7�@�0�1�3�!�1�/�!�,�6�6�"��4�<�'�&��*�(�4�0�'�*�+�0�%�/�"�2�&�%�*�8�,�2�'�)�%�5�-�8��9�+�A�"�+�*�/�)�/�7�&�1�2�9�&�5�-� �&�%�8�0�,�D��,�0�3�2�-��'�(�+�'�2�%�3�7�"�/�+�5�1�8�.�/�2�5�.�3�0�;�%�!�(�*�)�*�0�1�6�.�&�:�:�4�/�0�3�@�:�*�/�.�'�/��/�+�2�1�&�0�+�'�+�-�-�,��1�#�.�!�.�(�6�+�6�%�-�.�'�(�=�*�&�,�2�/�%�1�)�!�&��&��4�@�4�1�$�)�)�&�/�3�1�2�0�*�%�'�/�*�(�6�(�0�1�0�8�'�,�/�)�'�'�+�+�/�'�"�>�/�.�;�1�%�2�(�*��0�%�*�.�+�5�+�'�'�%�'�!�&�)�!�)�8�8�/�-�$�2�"�-�#�.�'�'�$�6�.�2�"�-�)�!�/��&�-�"�6�%�4�,�1�)� �2�&�%�0��*�0��/�.�;�*�-�2�'�5�1�.�-�*�'�)�)�0�/�(�+�'�3�"�+�'�7�$�,�.�1�)�0�0�'�2�3�)�-�(�!�2�.�)�'�(�3�1�(�;�6�.�"�8�%�2��!�&�)�'�2�!�2�9�)�(�4�9�)�Ӏ؀րـՀր׀؀րɀԀ؀Ӏــ܀ـրՀــӀՀҁ>�?�)�0�0�)�2� �6�-�+�=�3�7�+�&�&�/�/�(�#�:�+�(� �1�-�,�$�/�#�-�)�1�.�'�$�>�7�$�5�.�.�/�0�*�.�#�%�8�,�)�1�#�#�1�*�2�0�,�'�#�/�0�+�3��0�2�(�6�6�-��.�6�*�!�.�.�-�&�,�%�)�:�.�-�"�/�-�0�.�(�'�$�(��4�#�0�-�+�*�+�(�=�9��1�$� �)�6�=�0�+�4�'�5�,�3�%�.�#�2�(��(�%�'�"�%�+�'�$�'�.�6�.�5�!�+�/�/�/�+�'�4�%�)�)�(�+��,�1�-�$�8�/�"�3�*�.�)�'�#��)�%�2�'�'�,�$�/�-�+� �3�,� �-�!�1�.�(�"�"�.�9�+�+�-�"�!�!�>�!�.�)�5�/�%�&�%�)�'�/��$�7�-�1�&�3�1�(�,�)�2�)�-�&�&�0�,�2�+�,�)�4�+�+���-�)�+�+�2�,�)�2�.�2�3�/�#�-�/��+�0�-�$�#�C�,�3�1�*�0�8�/�(�1�.�*�-��/�.�/�+�)�+�.�5�5�/�/�(�1�/�:�.�'�(� �(� �;�3��'�4�1�(�.��,�2�%�8�*�/�'�/�9�(�(�(�(�+�)�,�)�%�+�*�*�/�7��*�/�)�,�*�,�5�/�'�&�,�*�4�3�0�0�9�;�(��&�-�0�$�0�+�/�%�#��4�&�/�-�.� �.�/�-�(�7�+�2�,�&�+�6��)�2� �0�"�)�)�,�-�/�-�/�1�(�2�&�"�%�+�"�'�%�,�%�,��9�"�9�<�+�(�.��+�2�,�1�&�,�(�+�%��*�2�,��.�/�4�+�)�*�3�+�-�6�/�#�3�,�2�.�$�$�!�-�5�.�3�,�2�+�,�)�7�1�,�+�/�&�4�0�3��$�(�&�$�"�,�$�-�?�%�)�!�+�#�'�1�$�3�1� �+�#�6�&�$�/�"�*�)�(�7�-�<�'�!�/�#�2�0�/�2�+�-�,�/�3�)�<�3�)��2�րՀۀҀ׀ӀӀӀҀ€ԀԀ΀׀ҀԀҀ݀րԀр؀؀ց2�.�-�(�9�#�%�/�#�+�7�*�/�.�8�/� �/�$�"��1�6�'�'�/�0�1�9�+�0�8�(�#�#�@�6�%�'�2�7�'�1�,�/�/�2�)�1�&�(�&�3�(�&�3�'�5�#�$�6�4�.�4�=�)�(�-�;�#�)�*�2�.��%�&�3�.�6�-�&�7�/�,�-�8�#�,�1�.�$�*�2�*� �0�"� �"�5�?�,�,�<�-�-�(��/�'�7�-�+�)�(�=�0�-�3�-�)�'�)�0� �-�'�1�B�:�*�'�1�+�)�)�$�0�2�+�4�8�4�,�,�"�,�(�1�!�,�#�6�2�-��<�(�/�*�0�/�)�$�1�6��3�.�/�(�&�)�4�,�6�2�.�3�&�*�%�)�(�/�2�'�:�3�6�$�4�+�+�"�,�-�/�)�?�G�)�.�5�6�2�'�,�1�/�+�*�#�=�0�3�/�'�+�/�'�*�(�3�/�2�3�(�:�%��-�2�1�0�*�6�%�,�,�*�)�:�)�B�.�/��/�0�-�-�/�8�3�$�(�%�&�0���4�*�%�0�&�%�(�,�+�+�(�"�%�0��4�6�)�&�+�*�/�3�'�+�*�&�$�.�2�%�,�-�:�+� �;�+��%�7�#�-�'�0�"�#�-�1��*�(�-��.�:�.�,�.�3�/�)�.�&�3�'��3�)�&�+�7�'�(�$��$�'�5�1�C�%�1�&�6�%�'�*�,�'�9�,�7�'�,�.�2�0�3�*�/�)�+�"�7�'�(�/�-�3�$�2�5�"�2�+�'�(�"�2�'�2�)�$�.�!�&�(�+�/�+�&�1�,�+�.�,�+�!�*� ��(�'�,�-�(�*�*�7��/� �&�,�'�(�+�'�(�-�.�+�'�1�1�'�)�,�6�!�.�+�#�,�!�4�/�&�)�"��*�9�/�1��/�'�(�,�"�#�7�*�/�%�$�1�.�/��%�"�1�/�.�/�$�9�7�%�&�?�=�'�3�#�/�3�9�2� �'��2�<�"�%�0�0�0�&�7�5�#�(�+�<�!�:�2��-�-�&�8�5�&�׀ՀـՀڀҀ׀Հ׀ÀӀ׀Ӏ׀ـրрրӀڀҀӀ؀Ձ-�'�3�%�"�#�,�C�6�#�(�)�%�.�B�"�/�+�5�,�*�1�%�.�&�6�'�3�2�)�%�+�$�'�'�3�/�-�.�,�-�1�)�5�1�/�-�>�3�&�6�#�2�,�(�*�7�.�9�-�"�&�-�)�5�4�)�,�*�+�(�5�1�1�@�-�+�&�"�.�*�2�-�)�4�(�6�.�/�/�-�&�5�7�,�3�+�2�,�+�0�.�,�1�+�0�(�7�*�+��4�5�'�(��)�2�+�&�)�1�'�4�4�:� �+�,� ��,�/�5�2�,�'� �/�;�-�/�/�1�:�.�/�)�7�7�,�-�3�)�*�;�'�)�+�4�)�4�.�2�%�/�+�*�0��+�1�)�+�-�)�-�'�*��.�/�-�2�6�5�.��3�-�,�0�-�5�+�$�$�*�6�)���#� �6�#�(�.�#�(�6�$�'�3�'��&�+�1�&�+��%�-�:�6�0�$�9�*�$�(�&�4�-�9�'�,�%�(�(�1�-�/�*�'�4�/�9�+�.�%�(�.�%�%�0�,�"�5�4�$�%�-�.�)��(�0�'�7�,�,�/�*�4�1�(�4�*�%�.�#�+�)�:�9�,�6�3�2�0�*�.�7�.�8��/�+�.�8�%��%�:�2�+�+�'�.�#�&�,�+�4�(�:�*�5�*�3�7�1�/�2�)�1�.�7�-�%�9�3�(�/���%�0�$�-�-�+�2�%�#�/�'�&�4�,�!�.�#�,�%�%�-�!�+�7�2�.�,�)�2�$�(��0�)�2�9�2�(�'�(�.�'�%�3�2�!�7�)�2�2��1�*�2��2�3�.�7�)�-�1�%�.��"�1� �.�,�,�"�)�-�)�/�.�%��3�(�1�&�-�1�.�/�%��(�*�&�/�-�&�.�9�0�,�)�7�-�!��$�1�%�4�)��/�,�0�0�(�8�*�)�#�/�"�4�,�-��4�5�/�%�.�(�6�#�(�,��,�+�+�"�/�4�,�-�(�)�-�/�0�*�&�,�"�-�1�'��2�*�'�/�C�.�1�0�(�1�7�)�5�6�7�.�-�ҀՀـՀրـҀ؀ՀŀҀрԀրـր؀׀ڀҀԀԀҀׁ-�'�*�#��0�(�=�*�0�0�%�3�)�-�A�*�4�3�"�5�4�7�2�1�+�2�1�.�-�4�+�6�'�8�-�*�,�/�/�!��3�,�-�'�'�5�/�-�3� �$�$��,�$�7�*�0�<�1�0�.�.�>�"�,�-�.�'�/�+�+�/�6�)�*��,�"�+�*�/��1�,�1�8�*�.�0�2��&�3�,�2�/��*�%���)�%�(�A�!�(�+�*�3�$�-�8�5�=��0�.�)�%�1�%�'�#�2�4�)�5�/�/�!�3�-�9�)�(�-�*�/�*�/�3�'�+�*�2�!�?�/�7�*�&�,�/�1�1��*�.�'�+�$�4�!�6�5�4�5�5�5�.�5�(�+�'�1�4�)�.�$�$�8�)�&�0�:�*�3�8�%�5�,�.�3�,�&�:�-�,�,�/�)�&�&�(�!��$�*��9�7�*�/�-�$�3�8�.�8�$�%��$�.�5�&�+�/�*�$�)�,�/�&�/�4�*�2�:�3�-�*��&�+�'�"�3�2��2�-�0�.�)�-�4�-�1�*�4�/�#�,�;�$�,�7� �-�!�4�*�,�*�6�!�.�)�.�&�$�6�%�.�!�6�*�*�*�)�1�/�0�*�*�)�/�%�0�3�)�5�%�-�%�(�-�7�4�/�#�+�.�+�%�'�.�2�1�,�.�4�/�!�(�'�8�$�0�/�-�1��0�!�/�0�0�>�4�.�/�"�/�$�.�'�?�1�/�,�&�;�!�+�'��3�"�,�/�'�/�6�/�2�0�.�/�'�%�2�(�5�+��&�$�(�+� �)�,�)�!�4�.�"�5�$�,�,�,�$�.�7�1�%�4��+�,��6�%�1�7�*�#�/��/�'�&�+�*�'�)�+�)�!�$�,�)��1�(�+�/�#�.�-��9�-�1�+�0�)�'�%�-� �7�(���#�.�2�(�3�*�)�&�!�$�.�%��/�/�,�&�+�1�*�4�(�#�3�(�&�;�'�5�#�!��*�8�0�(�5�4�-�+�.�.�0�+�%�(�-�-�8�@�*�0�5�1�>�0�1�%�,�.�׀׀ۀрՀрۀԀ׀ŀ׀Ҁ܀ՀЀԀրЀ؀؀ՀրՀց/�+�9�)�/�&�&�<�)�-�&�3�3�0�>�(�-�7� �'�+�#�,�(�'�/�3�(�:�&�1�.�7�)�/��#�)�)�/�!�(�2�%�1�'�$�.�+�*�4�7�(�1�(�9�/�)�&�$�-� �(�-�;�#�5�'�3�5�.�5�1�&�-�&�+��*�/�>�*�4�&�3�0�7�/�@�0�.�(�2�*�+�6�)�(�1�'�8�2�%��,�"�(�1�#�%�-�*�)�)�6�2�#�0�(�2�>�9�(�.�8�-�-�"�&�/�+�(�,�/�7�4�+�3�+�+�(�*�.�0�#�.�>�1�&�7�9��%�)�7�3�0��;�#�/�,�2�%�$�#�+�&�+�$�#�*��9�$�7�,�,�*��,��-�4�+�*�6�.�3�)�.�(�0�����#�7��2�'�%�%��-�,�*�'�.�?�'�6�;�1�*�4�'�&�,�.�6�*�.�+�4�1�&�,�+�%�0�+�%�(��%�+�/�3�1�-�8�:�&�$�3��#�2�0�7�-�0�+�#�*�,�(�6�%�$�$�+�5�6�"�-�2�?�+�/�*�6���(�(�"�$�?�4�8�:�7�2�%�-�&�*�!�3�<�5�"�-�3�/�,�9�$�/�2�0�'�8�)�+�(�'�,�0�*�3�+�>�$�,�0�#�)�1�1�%�!�2�4�3��<��2�-�:�.�*�,�9�/�.�-�%�-�"�$�2�-�0�4�3�$�2�3�3�6�!�-�#�"�+�$�*�3�0�-�*�0�-�-� �1�.�&�*�#�/�-�)�(�(�+�4�$�&�)�=�1�/�-�&� �2�$�4�'�+�&�)�-�"�"�5�*��,�$�7�/�"��*�!�:�3�/�-��)�5�9�!�-�2�*�2�,�/�'�0�0�)�$�=�*�'�+�&�'�.�(�.�,�(�'�2�:�7�0�.�)�#�/�/�9�2�.�'�$�/�+�.��(�'�&�:�3�3�+�0�&�-�/�:�+�2��(�/�'�,�'�0�=�5�&�&�8�2�+�)�0�,�1�5�.�#�/�/�.�/�/�2�:�0�+�0�,�+�+�/�&�0�.�؀ڀڀڀ׀ـրـӀƀр؀Ԁ݀ڀԀՀـۀــ؀ڀց(�:�,�%�-�&�+�2�%�%�7�/�/�2�+�1�5�&�5��+�1�2�+�&�!�*�%�7�/�2�-�*�)�#�)�4�.�*�-�*�$�8�2�3�"�7�/�%�)�)�!�-�2�%�4�/�"�-�0�3��0�"�'�'�6�0�,�+�+�%�"�5�(�,��'�5�7�$�#�)�� �(�2�2�/�%�)�-�0�,�,�5�)�.�4�%�%�/�&�/�)�'�-�'�*�(�1�'�3�/�*�5�+�-�1�/�+�$�'�-�%�#�/�(�%�,�1�'�%�'�#�7�9�.�1�-�;�,�+�*�$�)�+�?�&�'�.�)�+�.�)�*�+�/�;�)�1�*�+�)�!�-�*�4�"��6�2�#��.�&�(�#�%�5�$�-�/�-�)�*��8�2�*�/�:�2�z� �*�#��:�.�)�=�#�%�)�&�$�%�*�$�(�*�&�(�0�(�.�#�'�/�1�2��6��*�,�9�/�)�1�)�,��)�/�,�*�,�/�/�<�)��'�,�.�'�%� �+�2�7�+�-�4�#�1�.�*�(�+�;�+�5��$�'��+�/�/�*�4�+�2�)�/�-�+�>�*��/�+�-�#�1��4�,�0�,�$��0�-�2�.�-�0�4�-�(�/��,��+�.�'�*�.�4�9�1�0�!�5�'�#�*�1�)�'�8�:�4�%�,�)�1�)�,�'�)�.�1�*�%�!�+�-�0���1�1�3��,��'�3�(�;�$�,�*� �/�$��2��.�/�+�4�-�'�,�+�.�3� �3�+�0�,�+�5�+�4�4�+�@�*�1�,�(��<�#�/�#�+�&�/�4�2�0�/�5�9�'�-� �.�%�6�0�3��-�0�'��+�'�2�:�*�$�6�/�.�*�2�0�+�7�5�#�.�2��9��*�7�(�%�-�%�+�(�2�1�$�;�.�(�)�.�*�.�$�4�,�.�0�1�(��A�%�/�-�"�-�)�,�-�/�-��"�-�*�/�2�.�(�2�%�(��+�,�,�'�&�"�)�-�0�+� �.��*��0�/�3�+�,�0�B�/�-�܀ۀҀ׀ڀҀրՀ׀ʀ؀׀Ԁ؀؀Ԁր׀ҀڀЀӀ؀Ձ-�)�4� � �7�&�-�0�2�$�&�.�'�'�,�-�2�&�/�'�)�5�,�,�9�+�+�1�7�1�@�+�.�-�'�3�2�2�8�-�/�+�,�+�'�,�4�3�,�&�7�*�,�!�*�/�1�7�5�8�.�0�*�5�.�)�2�2�-�(��0�%�/�5�*�!�/�)� �+�0�8�2�%�+�*�.��1�-�'�:�.�&�,��0�$�.�%�6�6��,�3�-��+�7�;�3�,�*�0�/�.�/�*��!�/�#��"�*�8�+�,�+�;�2�)�2�5�,�1�!�(�.� ��!�*�%�*�/�0�1�-�3��$�/�&�/�(�/�!�/�7�A�*�4�*�+�(�(�$�4��2�,�7�$�*�*�%� �+�7�)�1�%�#� ��*�4�,�%�1�+�-�-�*�.�%�'�+�,�3�"�&�/�0�&�+�5��(�1�)�1�/�'�'�(�*�0�+�3�5�/� �.�.�+�+�6�+�,�-��-�%�,�8�8�*�/�,�,�)�<�3�$�5�#�)�/�1�)�-��,�(�/�1�-�0�"�,�1�2�+�1�,�(�'�*�(�5�*�.�+�'�3�.�,�0�@�<�#�)�+�0�)�3�%�3�3�)�2�0�/�.�%�&�2�0�7�3�*�!�'�&�)�*�)�(�-�&�'�'�*�-�+�3� �3�+�)�.�-�@�.�.�&�.�%�'�&�(�4�4�*�)�5�+��-�-�+�)�5�!�+��)�-�1�(�*�"�3�&�*�.�4�"�.�*�1�.�)�6�"�4�%�2�5�*�%�*�#�(��*�'�8�.��%�3�2�1�&�)�)�"�-�5�'�4�2�(�4�1�0�%�$�)�*�3�#�*�%�*�&�$��5�(�&�&�3�*�&�4�'�+�+�2�.�#� �%�=�)�&�1�)�*�;�%�&�2�7�+�2��+�/�&�2�:�/�/�%�&�-�%�6�*�+�)�)�-�%�:�(�%�!�2�'�$�8�;�5�2�"�(�'�.�3�(�/�"�+�1�)�)�9�+�)�0�$�2�(�*�5�+�.�+�'�0�.�.�!�1�#�'�7�,�,�2�&�/�3�+�ҀӀ؀ԀրԀ؀Ӏ؀ɀрրҀ׀Ҁ׀ـ׀݀ـՀ؀րӁ2�&�7�(�4�3�&�2�/�*�-��1�0�4�1�'�'�=�3�2�)�2�6�+��"�4�.�/�/�/�.�/�0�:�/�-�,�$�/�5�,�/�7�$�3�(�(�,��0�'�/�1�3�'�6�3�/�$�#�%�$�%�1�&�5�!�)�#�2�/�(�4�&�/�!�0�1�%�0�&�%�"�,�"�=�-�&�0�-�&�!�(�1�!�#�#�'�$�)�,�2�0�.�3�6�'�)�*�$� �3�/�5�*�4�0�6�,�3�-�8�#�-�.�"�*�/�*�#�*�,�'�0�%�.� �7�3�%�-�&�!�+�9�1�/�%�"�*��(�2�4�+�,�0�2�#�&�/��$�*�&�,�%�6�'�.��'�4�-�+�0�-�'�/�+�2�/�.�'�$�+�2�4�*�/�/�;� �$�3�"�&�)�0�,�#�-�.�.�7�)�/�)�*�9�&��"�0�%�;��1�=�?�+�3�(�!�1�5�,�-�)� �7��(�&�4�&�/�$�*�2�$�!�/�5�2�/�(�&�*�0�+��0�.�2�)�&�0�:�4�*�*�#�0�2�$�'�,�0��*�2�0�3�$��%�!�+�,�9�/�%�7�7�1�/�"�)�'�)�,�+�%�(�*�&�%�*�$�'�#�&�8�*�&�3�1��4�1�$�+�-�'�)�)�/�3�%�(�(�'�0�-�)�"�1�5�4�&�3�'�)�+�1�/�2�2�/�%�)�/�)�2�2�(�2�!�'�=�.��)�1�'�/�*�/�2�1�-�/�5�9�#�+�0�5�'�%�5�-�-�1�)�.�4�,�0��+�'�7�,�*�4�!�&�,�/�&�.�-�!�,�/�)�&�"�2�-�4�1�1�.�%�9�$�#�+�"��.�+�'�7�'�)�.�5�6�1�+�5�*�-�1�,�&�)�?�/�7�-��+�-�#�"�&�4�#�.�*�;�!�1�0�*�#�3�2�&�!�5�8�/�+�-�!�9�0�(�"�*�+�0�8�.�3�3�#�:�/�<�/�5�,�/�4�)�2�%�4�-�.�*�%�:�1�$�5�'�6�"�1�5�=�0�6�-�+�2�.�5�/�)�%�,�؀ـ׀Ѐ؀ր׀ր؀Ā؀ڀۀҀ؀Ԁڀր׀ڀӀ܀Ҁց+�3�;�*�/�/�)�+�(�/�6�0�2�>�>�7� �3�)�+�/�9�%�0�/�,�)�*�6�,�+�)�)�/�+�'�$�3�:�$�4�8�/�#� �<�3�!�,�3�1�5�0�%�5�;�1�&�,�6�8�+�#�5�4�.�2�-�4�$�0�(�+�)�=�)�/�)��)�&�-�2�-�/�*�$�/�-�.�'�/�,�/�5�-�3�6�+�,�2�4�&�.�-�'��/�,�4�1�*�;�6�,�'�+�2�'�*�+�6�.�/�&�4�)�&�(�&�)�*�1�/�5�4�8�.�)�'�3�&�2�'�*�*�9�8�3�9�6�(�(�(��&�.�+�'�,�7�4�4�)�!�"�6�+��2�2�0� �&�-�.�/�*��-��0�!�$�)�<�,�"�'�/�-�0�>�/�1�*�,�%�1�%��'�)�5�&�.�$� �&�0�"�+�+�7�)�$�%�5�)��#�%�#�%�/��,�7�#�:�1�+�*��2�,�.�.�*�3�,�&�3�0�%�1�/�!�(�*�)�2�#�-�1�#�%�$�,�+�.�)�)�.�8�?�0�2� ��3�$�,�+�,�*�.�4�)�&�$�2��3�&�,�*�*�%�"�&�5�0�%�)�4�.�4�0� �-�&�4�+�+�4�1�%�"�-�3�$�*�+�/�.�/�%�.�8�,�0�+�2�$�(�6�-��3�-�,�,�:�$�2�*�:�(�'�+�5�0�9�-�(�3�1�(�5��-�1�/�*�4�#�$�4�"�4�&�$�)� �$�!�3�,�*�0�%�-�(�3�)�/�*��'�&�*�,�4�+�,�+�4�3�2�-�,�9�0�%�,�;�;�0�0�-��0�5�-�<�(�+�8�-�+�4�'�'�2�&�%�.�5�-�%�2�,�/�)�%�5�&�4�-�(�3�)�4�+�*�+�.�$�1�)�*��)�1�-�2�/�1�7�/�"�6�(� �)�&�/�2�5�!�,�-�,�:�,�*�/�!�5�)�+�3�!� � �'�.�5�$�+�+�*�,�"�1�4�/�/�6�3�)�)�7�*�*�2�%�7�3�%�*�-�1�,�'�-�/�,�+�2�.�ـڀՀԀՀӀԀ׀ӀǀԀ׀ـрۀՀՀր׀ހր׀׀ځ�+�3�1�8�+�(�0�8�)�"�+�$�)�*�"�/�'�0�$�/�.�#�!�+�7�/�.�*� �-�3�%�)�"�9�5�-�"�'�)�%�-�-� �7�!�.�0�2�*�"�+�&�5�1�+�;�+�(�+�5�=�.�1�.�&��-�*�6�+�,�-�$�9�%�6�(�.�7�/�5�(�.�5�2�1�*�+� ��+�0�/�)�+�%�)�,�%�*�#�.�&�0�,�?�)�7�+�6�<�,��7�%�2�+�0�)�"�1�&��(�)�)�!�/�!�5�+�1�'�&�'�(�0�"�4�+�,�3�+�/�.��#�.�%�/�0�+�)�0�/�)�&�,�+� �.�/�"�2�(�<�&�(��7�/��,�(�'�)�.�3�)��(�&�-�'�"�>�4�8�5�)�)�4�(�'�4�=�)�"�+�3�$�0�%�%��.�%�.�0�!�%�.�&�0�3� �6�'�&�$�$�3�-�(�!�%�6�)�)�*�"�5�)� �6�*�*�/�$�5�3�0�,�*�(�5�,�&�+�1�3�%�+�/�.�/�;�+�4�3�%�/�"�+�/�+�-�/���%�,�6�.�0�3�'�-�1�2�"�-�"�)�9�%�!��&�(�/�$�(�,�(�)�(��)�1�,�1�,�,�$�,�5�*�0�:�3��/�9�0�"�0�,�� �/�"�1�6�?�'�1�>�.�*�+�,�%�3�*�3�5�%�1�#�.��$�3�)�*�&�0�7�%�&�#�+�0�2�-�'�%�E�,��2��1�&�)�%�!�*�-�9�2�(�;�/�(� �!�$�0�.�'�/�/�2�1�,�+�*�0�6�"�8� �,�3�3�*��'��7�'�)�0�+�3�,� �+�'�)�#�-�4�5�$�1�,�)�'�+�9�(�3� �)�+�3�.�/�/�0�4�*�/�(�(�+�.�#�(�5�)�8�-�:�.�/�)�-�/�!�/�+�/�.�(��/�-�+��-�)�(�,�$�1��1�:�4�,�,�*�+�%�-�A�,�/�"�5�0�-�&�/�/�/�8�/�:�8�6�.�$�*�*�.�1�-�6�6�2�1�#�0�-�"�Ҁ׀ՀӀ׀׀ԀրӀĀҀՀր׀Ҁ؀؀Հр׀ڀՀրׁ,�)�0�'�7�3�+�+�&�#�-�,�+�1�*�%�5�:�/�/�;�2�6�6�+�+��7�,�)�,�*�1�/�)�1�#�'�'�-�*�'�*�#�:�'�.�,�<�4�'�0�2�.�"�3�"�$�4�-�C�*�+�3�@�(�#� �&�#�:�3�(�&�+�&�3�(�4�'�$�*�9�1�=�3�/�0��*�+�-�1�4�(�+�!�%�!�2�.�-�3�(�*�,��8��8�,�)�<�4�-�.�/�*�1�-�(�)�:�%�%�+�!�1�+�9�'�(�9�&�#�/�-�#�7�;�-�)�(�.�2�.�1�0�2�-�5�-�'�)�)�(�)��1�3�/�*�!�/�'�,�+�(�#�-�,�3�*�*�"�/�-�-�,�/��-�-�3�<�&�1�1�+�0�&�4�)�6�)�#� �(�#�.�+�0�.�!�/�&�)�0�,�%�!�*�'�4��,�!�(�&��.�*�/�0�0�3� �.� � �.��5�*�6�1�1�,�+�6�-�&�&�/�.�-�)�4�#�*� �#�$�#�4�9�*�-�0�5�:�+�'�'�0�+��5�/�4�4�3�*�%�.�#�!�+�3�,�5�&�%��/�'�*�B�:�1�3�&�)�<�.�� �.�5�0�-�!�#�8�6�,�0�/�2�&�&�4�3�3�"�,�7�%�)�5�1�*�3�(�/�,�-�;�1�+��%��)�4�,�%�/�+�/�(�9�,�:�2�/�&�$�*�/�'�!�2�%�0�%�%�&�/�5�1�+�-�4�0�-�-�4����2��%�(�1�!�'�+�9�=�"�-�2�>�%�+�0�!�2�"�-�"�;�(�3�"�#�1�,�(�-�&�5�+�)�7�-��5�!�3�'�,�0�,�+�-�'�(�4� �&�7�3�0�6�2�:�4�4�)�/�=�/�/�2�5�#�3�(�"�*�-�-��/�$�3��'�&�+�,�,�*� �4�0�)�3��/�:�7�/�'�%�*�)�2�)�1�-�-�.�(�*�5�2�#��'�8�>�1�-�*��0�+�$�)�.�+�%�9�1�/�-�,�3�)�7�-�2�8�8�4�$�'�-�ڀـӀր׀р؀؀ր̀؀ـՀрԀ׀ـԀ׀Ҁ׀܀ڀ؁2�(�%�3�'�:�6�)�-�,�1�)�4�$�(�-�3�,�2�)�4�.�&�&�4�(�4�-�%�*�7�.�1�-�0�.�3�'�-�+�,�3�0�/�'�4�4�.�+�6�&�)�3��#�0�(�6�+�&�2�7�7��3�+�)�&�*�,�;�)�#�-�0�'�*�)�/�-�1�,�4�7��&�&�4�*� �/�)�$�.�$�'�*�1�/�7�(�#�+�$�(�5�1�1�8�-�!�+�.�3�!�+�,�&��(�"�.�#�� �.�'�*�%�(�)�2�&�$�9�5�!�'�,��+�$�-�'��*�3�>�,�8��6�#�&�1�+�.�'�!�2�(�%�.�!�$�"�-�,�+�'�)�&�'�,�'�"�(�!�"�+�+�!�'�,�%�'�'�-�#�#�(�#��1�/�*�0�,�,�'��*�7� ��.�'�$�D�0�*�'�)�2�'�5�(�+�5�4�2�"�:�6�.� �,�'�/�0�,�A�#�*�$�/�,�,�,�#�8�#�3�0�.�&�3�0��1�7�/�&� �#�#�3�9�+��.�'�3�9��(�4�+�)��/�1��3�+�&�'�-�-�0�8�-�-�5�,�-�(�,�-�'�'�0�0�(�7��/�.�*�/��2�2�"�,�-�,�9�&�!�$�,�+�,�,�1�/�'�)�0�$�1�+�=�.�0�'�0�+�#�!�.�$�$�-�)�.�4�<�"�5�/�+�'�#��3�"�.�,�3�2�.�*�'�7�,�0�*�'�%�4� �2�*�(�9�&�*�-�4�5�6��'�%�.�,�+�'�-�)�7�#�0�+�"�3�(�+�+�-� �.�.�9�(�.�2�%�5�%�?�2�/�-�#�0�(�*�)�3�%�-� �!�&�"�-�;�)�6�2�&�3�+�*�)�.�"�%�2�;�'�:�3�,�5�/�2�(�.�3�#�.�7�-�"�6�)�-�.�2�.�2�/�(�2�/�.�3�,�"�-�<�0�3�.�'�+�-�'�6��#�,�'�5�+�"�(�2�:�(�-�3�+�.�'�+�/�'�5�2�&�.�.�,�7�/�9�2�3�-�*�2�:�1�*�%�&� �ۀրՀ׀؀ՀӀҀԀȀڀр؀ՀՀ׀ӀՀ؀Հ׀րԀׁ�4�"�/��)�.�)�5�+�/�.�,�-�(�7�*�!�+�2�3�.�3�,��&�2�%�3�7�.�6�"�'�+�2�-�'�3�6�2�1�1�/�'� �0�-�$�0�2�/�5�&�&�'�-�,�+�/�1�+�$�(�$�/�9�"�-�'�,�,�)�%�.�,��/�,�7�,�4�3�*�=�/�)�/�"�6�4�.�&�8�-�)�-�%�4�%�(�0�:�.�2�%�0�"�*�3�6�2�&�4�+�#�;�*�2�+�2�6�%�(�+�0�"�,�)��/�3�)�*�3�*�<�*�5�(�%�2�6�(�:�'�A�,�+�3�4�/�"�#�3�;�1�1�/�+�,�'�.�.�/�(�,�4�/�0�*�(� �+�(�2�,�/�)��*�&�&�,��!�*�(�)�.�.�.�'�+� �)�)�/�*�8�,� �*�.�*�)�.�+�'�%�&�2�1�;�)�+�/�*�&�1�/�4�1�'�5�'�,�6�9�)�7�#�4�(�/�(�*�(��'�"�$�3�1�5�:�0�"�*�%�3�1�*�2�4�3�(�#�2�&�/�!�)�#�/��/�)�'�.�-��5� �-�$� �)�&�'�-��)�1�(�'�*�+�3�'�%�*�1�6�,�$�(�0�-�=�=�3��/�!�.�7�4�'�0�)�'�1�/�(�&�)�'�-�.�$�5�@�$�)�*�%�0��$��9��.�/�%�%�)�.�5�/�)�'�&�0�)�$�$�2�!�7�)�+�'�:�+�/� �6�*�3�6�-�*�0�7�0�$�+�,�/�(�-�*�6�-�'�'�'�%�*�(�1�0�'�%�(�$��&�+�.�#�,�.�3��)�0�,�3�9�.�8�/�&� �'�-�7�5�/�2�0�*�+�$�2�7�<�/�8�'�3�'�)�*�(��/�3�$�#�/�.�.��5�9�,�:�?�/�%�(��3�+�+�.�7�.�#�)�(�-�1�0�"�.�+�;�$�$��2�5�)�5�#�3�=��/�;�/�)�'�%�&� �,�4�'�1�&�2�)�*�C�&�1�,�:�&�.��5�'�.�-�&�,�'�,�*�/�0�6�3�&�/�΀Ҁ׀րԀ׀Հ׀Ԁ̀ـՀՀ؀րπՀԀۀۀڀ܀Ԁف0�0��,�2�/�(�%�!�-�!�.�6�5�4�*�+�1�/�*�)�)�/�"�7�$�'�%�5�0�3�'��D�-��6�%�.�*�*�,�(�6�$�+�"�0�9�1�'�1��&�&�/��"�&�0�$�%�/�1�*�*�*�3�'�-�%�'�1�'�0�/�)�.�!�&�1�,� �2�)�/�!��)�7�@�2�3�5�(�2�)�,�(�5�&�4�+�7�&�+�3�5�'�"�&�6�0�#�+�)�-�2�+�+�/�$�:�0�-�,�*�+�7�.�)�6�2�)�/�'�$�$�-��$�:�1�(�*�-�1�+�+�/�-�!�0��/�1�*��#�$�,�2�*�4�7�(�2�'��'�'�"�5�=�'�,��+�2�1�,�#�.�#�.��,�0�7�+�*�&�/�,��"�%�'�&�3�8�,�'�-�$�,�9�)�"�$�!�-��0�4�*�0�C�*�$�)�1�4�$�*�$�(�1�-�,�2�(�)�%�'�*�%�/�4�*�/�<��*�2�;��2�5�.�"�.�'�4�+�-�4�2�$�1�'� �2�3�'�-�+�)�/�.�&�3��0�.�'�.�*� �(�@�0�/�-�!�6�&�2�+�(�)�,�)�� �*�'�'�.�/�(�*�:�+�4�'�%�-�.�4� �0�0�.�8�0�/�2�-�+�&�*�)�0�#�!�*�)�3�7�9�1�3�'�,�/�#�%�4�/�#�,�,�,�%�(�1�:�#�3�/�!�#�3� �8�5�.�,�-�4�$�5��.�%�!�-�$�(��(�2�,�-�)�)� �7�"�3�'�2�*�'�5�-�2�+�'�.�3�"�3�+�&�.�/�"�*�<�'�'�/�#�!�9��5�&�'�.��,�/�(�,�*�2�!�/�!�$�.�8�!�*�.�/�5�'�.�+�-�9�%��7�/�/�6�%�.�,�-�,�1�#�3�2�#�'�*�+�.�1�&�-�*�1�#�,�/�/�-�)�=�.�%�$�.�)�0�,��5�%�(�/�5��,�)�0�-�2�/�*�*�.�.�)�6�,�-��$�+�$�5�/�%�0�=�;�'�(�:�2�)�2�+�ـ׀րӀڀ؀؀րрĀր؀րӀԀӀ׀Ӏ׀؀ڀــӁ.�8�#�5�3�)�7�3�'��1��+�'�+�-�&�6�2�2�$�*�(�-�)��5�2�*�4�3�+�!�*�/�3�/�(�'�.�*�$�)�#�)�0�"�=�%�/�)�,�.�1�%�+�&�7�7�)�2�*��&�)�-��/�)�6�:�4�9�1�6�(�4�"�1�)�$�5��3�-�'�3�-��!�8�2�'�*�)�%�)�*�0�&�0�0�%�3�)�2�(�%�(�7�$�/�2�*�+�#�1�'�*�'�'�+�4�7�'�/�#�.�6� �'�1�$�0�0�6�-�*�#�2�+�$�0�'�%� �-�*�,�4�0�*�-�.�/�1�4�4�'�&�)�)�0�G�0�%�2��(�+�9�$�.�/�"�-�*��'�#� �)�1�"�*�&�5�2� �+�(�$�.�=�0�8�'�.�$�!�#�)�%�*�#�(�0�+�6��1�$�%�'�&�"�0�#�!�*�*�6�)�/�2�!�#�-����1�%�$�6�1�-�)�+�)�%�,�/�4��5�)�*�:�)�)�%�.�8��9�/�+�2�*�(�.�#�)�-�7�:�(�5�-�/�+�7�0�4�&�0�1�4�2�"�3�#�5�4�.�+�2�.�-�3�8�'�'�(��+�%�0�%�!�#�#�"�4�&�0�,�+��0�#�*�'�(�0�6�/�.�(�.�"�6�1�'�"�<�.�.�6�.�1�/�1�,�*�5�,�/�1��+�=�"�2�0��3�9�#�&�/�&�1�+�&�)�-�<�.�*�/�*�.�$�&�1�'�$�$�7�0�"�.�6�8�3�3�3�!�.�(�2�$�&�#� �'�2�!�7� �%�6�/�0�$�1�-�*�7�3�2�*�&�3�$�'�-��$�0�*�*�(�-�0�#�)�,�1�-�1�&�&�/�+�$�+�.�$�8�-�+�<�&�.�"�-�.�*�'��1�%�5�0�!�0�#�2�'�#�B�;�2�4�5�1�,�3�>�2�$�&�'�,�&�1�.�"�-�)�6�)�-�*�,�8�0��,�"�7�'�/�7�7�2�"�/�.�)�7�/�-�"�=�$�-�&�A�)�-�,�2�6�(�&�?�2�'�Ԁր؀ԀԀ؀ЀՀ؀ƀ؀׀؀׀Հ߀րր׀Ҁ؀ЀրՁ)�2�(�/�,�%�2�$�1�(�2�7� �1�*�=�)�6�-�6�-�9�+�%�'�1�,�7�#�.�"�)�1�-�;�?�1�;�%�!�;�3�-�'�(�)�5�,�2�5�%�*�:�$�4�0�&�1�)�*�(�3�%�(�)�4�)�*�+�� �5� �'�-�+�(�-�)�*�"�.�)�0�:�*�.�%�1�?� �+�(�7�"�$� �(�#�2�(�+�/�-�%�-�$�.�%� �2�)�*�2�-�%�5�"�'��&�.�-�/�9�-�(�*�6�2�%�#� ��3� �,�'�5�+�(�"�1�)�)�4�'�0�%�,�0�+�!�0�)�>�-�=�;�0�+� �0��-�'�;�2�#��(�6�5�*��$�.�(�*��1�*�(�+�!�+�/�-�+�&�$�)�/�+�,�.�)�'�(�(�3�(�/��*�-�1�0�)�/�&�-�.�3�4�*�*�0�,�7�-�.�.�1�,�5��)�&�(�$�7�1��3�,�$�,�+�0�'�+�3�'�(�)�"�.�&�)�'�,�+�/�7�#�.�5�&�*�(�(�-�.�)�4� �4�0� ��*�)�$�&�(�-�(�-�'�.�7�!�9�$�6�(�"�4�'�&�'�"�3�4� �&�/�%�*�)�#�(�1�0�%�6�*�/�"�&�5�6�%�-�/�+�%�'�(�1�;�)�)�)�"�)�/�1�+�3�-�1�/�%�8�.�$�-�1�'�(�3�*�+��)�-�,�.�#�)�,�+�/���.�*�*�5�/�'�#�4� �*�1�3�-�>�+�5� ��(�+�*�-�.�3�'�;�)�"�%�%�/�(�)�'�.�,�#�6�+�,�&�>�.�6�!�!�!�$�/�2�/�'�6�%�5�&�5�7�9��-�6�)�&�'�$�%�+�#�,�9�(�0�/�'�*�;�.�/��/�#�;�0�0�4�1�&�,�(�-�/�/�+�'�)�:�7�4�&�/�!�-�'�'�#�+�.�0�3�4�%�$�:��!��+�7�*�$�,�*�'�)�)�1�*�&�3�3�(�4�-�*�!�(�1�%�4�&�+�+�+�:�2�7�&�(�,�,� �'�&�#�׀܀р׀ـԀ؀Ԁրŀ׀ր܀рـ׀Ԁ׀ـӀڀԀՀց%�*�'�.�,�4�.�2�A�)�!�+�"� �.�1�%�1�-�3�$�/�0�)��,�+�/�+�$�)�1�=�1�8�-��2�-�+��+�+�(�(�+�&�/�4�)�7�)�2� �,�'�/��+�4�2�4�#�*�+�)�#�)�1�%�.�)�%�'�$�/�,�A�5�1�,�/�-�4�-�%�=�'�)�:�)�$�9�1�2�)�;��/�(�'�!�4�!�3�)�2�+�*�%�3�/�:�)�&�)�.�+�4�0�+�4�+�(�1�1�3�-�/�;�1�#�7�:�.�#�0�%�$�,�/�,�#�,�+�+�"�'�+�#�+�,�-�'�-�)�+�8�'�7�3��"�&�1��'�&�;�*�#� �#�%�4�+�,�&�0�%�0�/�)�$�'�-�2�5�/��.��(�%�)�,�-�*�+�2�"�+�(�"�,�0�-�-�$�<�<�,�,�&�+�6�,�5�4�$�8�1�&�"�0�.�$�1�#�+�$�+�1�'�'�'�5�0�3�-�+�'�*�"�6�&�*�,�9�#�%�'�'�+�5�%� �4�*�-�8�%�8�3�#�"�$�/�0�-�8�)�*�'�&�0�1�1�*�9�*�>�*�.�-�/�/�,�+�(�)�1�3�+�+�(�'�7��9�=�#�#�)�'�=�4�'�+��;�-�9�-�7�0�-�-�%�%�)�-�+�)�.� �'�(�!�0�'�(�$�9�:�%�%�+�)�0�)�)�.�&�,�)�$�$�5�,�1�)�(�/�1�(�#�/�.�5�2�0�)�4�%�1�5�*�A�0�;�4�$�#�/�(�0�-�0�/�+�4�'�:�#�7� �'��2�'�0�+�0�.�)�/�5�,�&�&�3�!�&�!���0�%�#��0�3�3�9�/�9�:�:�$�*�,�7�!�.�-�*�/�<�+�&�)�(�7�*�4�0�$�+�*�'�/�+�+�)��1�$�5�.�.�5�+�#�0�-�"�'�$�!�&�)�6�,�%�/�)�,�5�!�+�5�(�8�/�@�'�*�3��.�/�1�*�,�5�2��1�(�?�-�<�5�0�,�1�-�+�!�-�4�!�/��.�,�@�*�+�'�@�؀рՀۀրրۀ؀ր��Հ׀ҀҀՀԀـҀڀـҀրՀځ5�"�&�!�3�4�"�-�+�*�'��)�"�9�5�,�6�0�)�*�1�'�+�*�!�>��5�#�2�0�$�-�6�7�#�-�$�,�.�.�&�*�3�/�'�%�*�(���+��.�&�9�)�+�3�*�'�(�!�*�+�4�9�,�-�+�7�*�,�!�3�(��&�0�2�0�-�%�!�8�-�,�5��(�5��,�*�%�)�/�0��.�+�(�,�"�,�+��7�A�-�(�3�-�.�,�-�7�%�+�+�2�%�0�-�#�4�;�&�.�(�)�#�1�.�"�'�1�(�)�,�)��/���9�*�7�2�7�,�-�/�6��'�"�-�$�7�(�"�/��6�5�2�9�*�'�/�$�5�,�*�,�2�!�)�*�5�(�-�=�%�+�/�-�#�,�-�%�(�+�(�-�+�&�%�-�+� �6�-�#�$�2���(�5�&�*�'�4�-�'�5�$�"�-�&�%�%�-�-�6�+�3�,�#�.��$�"�+�$�,�5�-�9�6�#�!�/��8�*�4�+�,�)�0�.�4�8�2�*�#�-�#�(�(�)�8�1�%�,�2�,�*�.�#�!�$�=�*�-�'�.�:�&�,�5�'��,��#�)�#�(�5�2�%�&�%�.�.��&�3�(�6�)�B�*�8�-�4�*�-�/�=�+�!�'�*�1�$�-�/�$�7�*�"��*�#�,�-�3�'�&��+�+�)�)�/�$�1�)��0�-�*�'�+�,��.�%� �:�'�#��#�.�(�5�.�.�0�@�<��3�!�/�-�1�!�+�-�<�'�+�+�)�1�*�/��&�*�/�0�'�0�2�2�0�/�/�/�+�+�+�5�'�(�*�#�)�(�+�!�(�?�0� �,�3�&�(�0�+��)�5�#�3� �(�+�)�3�$�.�+�'�/�0�5��0�(�6�"�)�&��/�2�*�+�(�0�-�2�*�'�+�1�-�(�(�4�*�)�)�0�/�2�-�5��1�8�0�'�-�.�$�/�3�$�"�;�%�<�*�5�%�#�%�*�6�"�0�/�0�,�/�&�!�3�)�1�.�5�1�!�(�$�.�.�'�8�ۀ؀ԀԀӀԀՀԀՀŀҀր΀ـۀӀԀրԀՀՀـҀց$�'�)�0�3�)�1�-�1�:�,�/�,�8�.�&�3�6�:�/�0�+�*�;�/�3�1�*�$�%�4�$�.�'�)�-�'�$�%�8�$�&�$�'�1�A�/�0�.�2�3�-�2�/�1�)�(�%�)�&�!�3�(�/�2�3�2�)�0��,�,�4�/�.�E�$�)�.�#�0�)��,�,�%�,�)�*�'�>�,�*��.�%�&�)��/�+�*�-�0�,�'�)�%�8�)�+�/�&�,�(�,� �.�/�1�,�#�2�*� �+�+�3�)�2�)�'�$�6�2�)�+�0�(�%�)�5��)�,�.�9�+�5�>�'�/�/�)�*�.�7�+��'�&�(�6�$�1�/�*�"�,�0�/�(��*�+�/��;�(�#�'�&�2�1�)�%�(�(�,�)�2�)�&�&�,�*�4�/�$�)�?�9�/�#� �*�'�2�2�)�)�.��/�/�.�$�.�-�'�2�!�4�&�+�.�(�.�/�/�%�#�)� �"�%�2�4�,�/�1�/�1�)�)� �2�4�.�%�+�(�5�%�+�+�.� �-��#�9�*�+�)�+�4�,�/�*�(�(�5�0�;�.�!�+�)�&�#�+�(�-�.�%�)�(��=�,�%�.�'� �(�+�2� �1�1�3�7�0�/���b�1�)�3�9�3�2�&��*�#�'�*�1�1�%�&�)�,�*�.�)�!�%�#�)�(�,�1�$�.��"�2�$�%�,�.��)�,�&�1�3�+�+�+�0�1�/�/�%�.�)�-��/�2�/�"�0�'�-�)��/�$�8�1�,�4��(�.�)�3�3�#�$�5�'��*�!�1�.�,�/�#�4�'�$�(�$�/�%�6�7�&�/�#�4��.��1�/�/��7�.� �4�4��+�.�8�)�*�/�2�#�,�3�&�%�)�)�3�;�7�3�0� �2�3�/�4�%�*�,��-�'�&�2�3�.�"�-�.�*�-�-�%�;�5�/�,�1�1�0�!�1�%�.�4�/�>�9�&�#��:�9�(�3�>�'�&�*��'�/�/�'�/�1��,�5�)�5��0�1�5�-�,�0�'�5�/�-�8�׀րՀԀр؀ڀۀ׀ŀӀӀЀՀ؀րր׀ۀ׀ԀـӀс'�&��1�$�)�(�4�'�4�4�%�/�.�%� �+�&�(�&�!�-���3�&�/�(�+�(�-� �+�#�!�3�(�<�*�5�2�+�$�*�&�8�/�#�)�*�(�6�-�;�$�3�/�2�%�&�)�3�'�7��6�%�/�2�&�7�+�)�7�.�"�(�,�+�*�8�"�*�(�"�(�'�.�4�%�%�1��'�-�4�6�1�.�(�)�%��@�:�/�6�9�5�(�(�*�+�*�$�� �$�)�7�-�,�"�#�0�1��/�5�3�&�&� �2�*�+��7�)�)�.�.�,�#�.�(�4�(�*�+�7�8�7�.�*��-�-�+�)�.�#�'�-�)��,�(�-�"�.� �/�/�2�7�*��.�$�'�+�&��.�,�,�/�*�6�2�(�4�:� �+�"�-�-�)�%�1�>�#�(�1�7�/�'�7�-�0�(�9�'�)�3�4�)�3�2�=�#�2�7�/�)�;�/�(� �!�%�0�)�7�+�/�2�+�*�1��,��%�7�8�.�1�7�5�%�4�/�#�!�1�9�#�,��*�"�.�1�%�.��"�.�&�/�-�/�7�,�)�#�1�+�1�.�1�*�'�$�2�(�,�,�5�%�+�)�$�8�3�)�-�/�%�)�1�*�2�t�&�(�*�-�3�;�)�4�-�6�+�)�5�0�1�1�-�&�-� �+�*�5�/�:�5�'�*�/�&�,�-�7�,�)�*�/��.�+�/��%�!�"�,�)�#�)��%�0�%�)�"�&�/�/�)�*�+�#�4�0�%�.�#�4�,�(�!�'�'�%�:�.�4�$�&�+�'�%�$�*�-�.�(�5�1�.�/�,�+�5�0�-�5�1�,�3�7�1�1�2�-�/�$�'�&�5�)�0� �)�/�/�1�>�+��)�"�-�)�)�.�*�2�;�5�+�.�,�'�3�9��-�3��/�&��3�&�,�@�-�(�)��+�2�5��1�+�0�(�)�"�)�"�-�3�*�-�,�=�.�0�!��3��4�8�5�&�'�4�$�.�)�,�$�0�<�.�)�*�3�,�2�+�*�;�.�3�&�,�7�/�,�(�Հ؀߀ՀӀҀ׀ـՀŀ݀׀؀ҀՀ׀Ҁ׀܀Հ؀׀׀ځ4�.�1�3�:�1�/�/�'�6�3�0�#�#�7�&�#�*�7�$�.�!�#�+�+�0�0�(�+�-�'�+�(�2�/�,�8�,�1�,�2�.�#�4�;�;�6�:�/�.�6�<�/�2�'�+�3�3�$�&�2�)�$�'�'�$�:�-�+�7�-�+�*�-�-�(�-�0�6�7�%�6�2�;�/��)�$�!� �&�$�-�+�+�6�'�0�,�3�?�,�B�.�+�0�0�2�.��/�$�7�1�(�*�%�*�*�$�*�/�3�0�,�,��5��$�)�$�,�=�'�+�'�*�1�6�)�+�2�,�/� �&�6�/�+��.�,�'�-�*��!�,�,�)�*�9�3�3�)�'�.��7�%�.�4�C�*�8�#�)�)�+�&�2�*�%�3�-�&�,�2�&�&�*�)�$�)�4�-�$�-�!�*�0�&�%�%�-�@�/�*�!�2�-�&�'�&�0��&�&�,�/�.�(�%�(�&�-�3�+�=�.�%�,�!�2�/�+�+�@�0� �0�'�;�-�%�/�,� �,�,�6�,�)�2�*�(�5�+�*�#�:�5�*�.�4�-�:�.�%�(�#�5�%��#�)�� �,�.�4�)�&�:�0�3�4�+�3�9�3�$�&�6�2�&�!�/�'�(�7�$�8�"�)� �,�)�-�1�,�3�*�/�-�6�)�6�)�2�1�#�-�5��*�"�7�<�'�;�6�*�.�&�"�3�)�=�1�9�!�1�'�#�-�)�#�4�/�+�/�(�*�*�(�%�*�,�7�4�3�)�/�1�+�-�%�+�$�#�0�(��)�'�-� �)�C�(�*�-�)�5�!�&�-�6�+�!�%�*�*�)��2�'�+�'�*�(�)�.�4�7�)�1�2�'��7�%�0�,�9�,�/�0�+�/�+�4�,�)�!�$�,�/�4�+�.�'�%�!�2�)�2�/�%�)�,�)�$�%�/�/�#�0�.�/�(�7�'�(�%�/�/��/�+�.�%�7�1�"�0�6�+�:�-�3�.�/�$�!�0�.�#�$�-�.�/�3�<�3�7�9�3�*�.�8�+�*�!�,�1�1�/�*�(�8�3�*�)�%�&�1�4�*�5�݀׀׀Ԁ׀ր׀ӀӀĀ׀Հ׀؀؀׀؀׀ۀЀՀӀӀӁ)�2�:�6�6�+�+�9�*�&�#�A�+�'�$�&�7�*�/�8�(�3��7�-�1�'�6�,�*�%�2�+��2�0�.�#� �+�*�/�1�2�-� �+�%�$�3�#�+�*�1�.�0�-�(�+�.�4�3�5�(�/�3�,�3�'�2�$�%�3�+�0�.�%�/�*�+��1�(�%�1�(�$��4�/�*�&�#�*�/�,�'�(�"�.�%�;�#�+�.�*�,�/�+�,�&�$�0�&�*��7�:��"�%��2�'�+�-�'�1�#�"�/�#�(�"�+�(�2�!�.���/�%�-�&�+�5�:�*�/�+�"�%�9�'�;�;�1�5�)�$� �,�(�*�4��+�.�<�&�)�)�)�+�,�4�%�)�$�/�'�-��&�/�8�(�0�.�*�5� �+�,�#�)�)�0�'�.�&�0�#�3� �!�)�5�>�*��0�-�.�(�-�+��6�0�$�/�%�-�1�-�0�4�2�(�7�/�2�)�0�'�)�(�'�1�7�.�-�-�0��0�(�"�/�(�;�$�/�7� �/�(��*�%�+�(�%�%�5�(�A�3��$�1�1�-�*�"�1�7�8�0�3�=�/�(�&�4��,�1�"�*�/�/�.�-�*�2�-�4�5�(�-�"�%�+�4�'�#�$�5�2�0�+�$�'�+�-�-�(�'��.�1�'�$�*�.��8�+�-�/��1�'�$�*�5�)�&�#�0�+�'�1�0�,�A�3�)��1�3�5�3�!�%�:�)�"�(�/�-��$�*�(�/�:�$�2�(�.�-�4� �:�0�#�"�*�.��,�&�.��)�!�"�)�$�&�2�3��#�6�)�2�&�*�1�6�2�2�'�-�.�*��.�/�$�,��1�)�3�3�)�2�&�)��#�(�2�,�/�)�.�-�;�#�)�>�,�*�.�1�2��5�2�+�)�+�$�%�/�3�'�+�6�'�:�"�#��,��5�'�*��&�5�'�"�-�,�#�$�/�/�+�/�(�%�/�+�0�7�$�+�,�6�2�5�+�'�-�,�(�)�'�)�1��+�%�+�-�&�(�+�(�'�0�&�Հ׀րӀՀԀۀԀԀŀԀԀ׀׀ـҀڀրԀۀ׀ҀՀՁ%�/�-�'�5�?�?��/�*�'�/�&�)�(�$�2�#�)�5�&�/�6�9�+�+�*�%�4�*�7�4�3�*�*�)�;�/�/�9�'�!�0�%� �'�%�7�2��5�+�3�2�.�.�+�.�4�-�1�)�8� �1�5�&�)�(��0�&�'�/�%�/�"�*�*�-�%�=�=�,�2�2�,�&�&�.�/�:�/�.�/�)�"�*��:�.�)�$�*� �6�8�/�$�8�/�&�/�)�*�&�%�*�,�#�*�(�8�(�+�.�5�/�4�)�%�,�,�&�1�6��&�,�3�&�*�2�0�)�+�*�)�)�"�.�(�(�+�0�+� �)�%�-�(�7�/�,�/�*�*�%�*�8�/�%�,�-�'�>�!�8�"�&�!�+�%�/�"�'�0��0�+� �(�/��9�)�"�)��+�)�/�0�'�+�&�4�/�#�+�1�0�*�*�.�,�-�-�,�,�8�-�,�'�2�)�1�/�,�/�$�/�'�5�*�&�8�#�7�P�&�)�+�0�-�'��+�3�+�+�+�3�$�0�$�,�%�+�,�,��+�8�+�'�,�%�,�'�5�/�1�(�-�/�)�+�0�,�+�,�-�*�*�4�)�$�'�:�1�3�*�.�4�1�*�(�/� �+�1�)�,�)�)�.�+�/�<�:��&�"�&�(�)�+�.�'�,�!��1�3�/�*�,�;�'�.�#�6�.�'�3�'�5�+�"�5�&�4�0�,�C�5�&�+�+�2�&�,�1�2�!�-�-��-�2�'�/�2�1�0�6�'�(�4�0�0�+�,�8�$�)�#�%�5�/�%�3�*�1�&�+�!�1�+�'�,�'�6�(�0�-�.�.�!�%�$�1�!�/�2�,�$�)�5�)�*��<�+�!�+�#�!�)�)�/�%�'�!��4�+�.�%�)�&�+�2�*�"�'�#�!� �%� �7�2�&�-�+�3�&�(�2�0� �(�-�6�(�,�(�3�3�#�"�6�4�2�6�1�'��,�,�4�-�5�+�%�1�+�+�)�-�-�>�(�7�2�-�%�;�6�(�)�2�7�-�'�;�5�6�&�%�3�3�4�#�0�2�.�8�1�.�Ԁ׀Ӏ׀ՀӀրӀ؀ˀԀ׀׀р׀؀ԀҀۀ܀Ӏ؀׀Ӂ&�*�$�F�+�9�4�4�>��"�3�5�.�$�+�7�3�,�-�2��+�3�%�5�&�<�6��+�-�)�.�.�*�(�"�'��,��4�(�3�3�3�.�*�6�#�!�/�4�.�&�(�3�*��*�5��5�#�/�:��)�3�+�-�'�&�(�*�/�#�:�*�0�>�$�5�+�&�+�'�(�2�,�1�-��*�%�7�(�.�(�+�)�-�3�+�&�%�/��1�3�3�(�2��$�/�)�*�/�*�*�3��)�.�+�)�-�7�9�#�*�%�.�1�4�%�5�*�6�%�?�-�0�;�0�.�-�,�'�2�,�(�.�$�2�(�,�)�.�5�,�-�3�%�%�)�1�+����*�+�"�3�2�(�.�)�5�3�C�+�(�4�/�)�(�!�%�0�4�.�+�8�,�#�(�.�2�*�>�,��0�5�-�!�-�;��4��-�-�1�+�,�4�#�(�2�)�.�6�:�,�)�-�)�9�-�-�%�'�.�-�*�/�'�#�*�&�2�(�*�.�%�)�*��/�3�*�*�9�1�&�8�3�3�=�.�1�1�)�'�0�2�0�4�6�4�3�2�4�,�-�"�1�%�)�0�0�6�'�3�8��J�.�,�?�/�/�.�7�&�*�1�2�&��-�/�/�-�2�+�4�2�3�@�,�-�4�0�'�8�?�-��(�.��+�/�'�1�/�&�4�.��!�%�1�-�.�/�"�*� �-�0�'�&�+�2�*��'�(�8�%�,�9�.�(�4�3�9�/�5�&�&��+�,�/�2�%�:�0�/� ��3�:�*�0��-�,�#�/�6�0�6�-�)�#��-�+�+�%�/�$�&�$�4�3�%�&�-�-�/�5�(�-�(�*�/��,�%�3�2�/�/�)�$�*�%�2�.�,�$�(�2��*�1�.�1��"�&�3�&�3�,��)�+�1�.�)�)��*�,�(�#�0�3�*�2�&�)�6�,�+�.�1�<�8�+�.�)�3�"�#�:�*�8�&�,�)�+�*�2�)�/�/� �/�0�(�(�'�0�7�'�3�3�,�"�7�4�9�-�#�3�+�*�)�&�1�ހրـրڀԀր؀׀ŀ؀րրӀ׀ۀ؀؀πـ؀ր؀Ӂ'�,�/�'�6�9�9�7�%�$�*�/�,�(�?�$�.�$�.�'�#�/�-�5�*�:�!�:�#�6�7�(�0�+�&�%�/�%�3�7�'�)�3�/�(�(�0�4�8�)�+�3�1�%�+�#�.�/�'�)�-�,�8�*�-�*�8�!�4�1�+�4�'�,�1��8�3�2�,�-�.�!�0��(�0�&�7�8�1�#�+�+�'�7�&�-�#�(�+�&�-�*�/�6��/�0�,�!�-�/�(�%�C�+�"��5�-��'�4�(�3�2�$�+�)�0�-�9�&�-�$�/�/�#�%�3�(�*�$�&�!�'�+�*�3�&��5�/�4�)�%�,�+�(�-�/�,�.�,�-�2�1�5�!�8�.�-�/�/�0��0�+�(�!�$�/�1�+�'�0�)�(�7�!�$�2�%�;�&�6�%��9�%�,�(�#�3�#�-�!�"�,�8�+�&�'�/�,�0�2�)�+�,�"�+�'�#�,�/�(�.�,�)�/�2�*�+�1�/�5�=�'�'�:�-�0�,�)�/�2�*�)�!�'��6�)�9�/�4�&�4��&�/�-�3�*�2�%�#�.�)�4�$�,�&��'�(�0�4�.�/�1�'�+�(�;�1�)�*�7�#�6�*�4�"�+�,�4�-�/�,�%�)�-�/� �/�"� �8�/�-�0�4�*�/�:�"�0�/�=�,�2�,�-�(�8�2�"�2�'�9�'�'�$�.�8�"��:�+�6�2�=�#�&�/��,�3�/�'��&�/��2�'�:��)�&�!�*�*�,�,�"�4�'�/�:�0�+�2�3�0�&�9�&�/�"�,�7�(�$�.�$�'�.�0�5�.��)�,�1�,�1�+�/�'�(�#�/�*�=�(�/�2�5�)�1�(�1�7�(�"�)�4��+�*�#�0�+�4�%�*�-�+�2��-�+�)�)�$�+�2�=�'�!�,�.�+�8�,�.�0�3�5�>�#�-� �3�)�;��2��$�9�#�(�9�3�.�;�&�"�0�,�-�)�,�-�)�)�)�1�,�;�8�!�/�.��(�5�8�*� �6�,�0�/�*�.�7�#�)�'�.��.�/�$�6�'�Հـ׀Ӏ؀׀׀׀ـƀـՀҀՀЀԀրڀр؀րրԀՁ:�,�3�&�/�*�*�4�,�%�"�/�+�/�1�.�9�,��'�9�2�'�+�.�9�2�&�=��)�0�0�3�7�'�3�.�F�*�-�.�3�%�2�#�$�-�4�/�7�4�#�5�3�0� �7�2��>�)�+�/�>�&�1�%�'�+�+�6�+�/�"�+�'�(�"�-�/�/�"��,��/�)�7�+�%�#�)��1�'�'�"�+�9�#�5�-�4��%�+�,�'�(�2�/�'�7�$�-�)�+�+�+�,�,�.�+�+�-�7�.�&�(�%�8�$�1�/�'�(�-�*� �0�'�&�&�;�#�/�$�0��:�%�!�/�,�8�'�)�1�-�+�(�/�0��+�.�,�'�(�0�)�)�3��/�,�,�%�?�(�,�)�(�9�'�+�-�/�*�/�"�+�(�0�7�"�6�)�-�(�:��9�2�1��,�&�1�'�3�,�,�;�-�$�.�#�6�.�9�%�"�(��,�+�0�,�9�8�3�.�3�0�-�0�2�+�#�%�,�%�%�*�>�'�$�-�0�'�/�#�2�'�'�%�+�)���0��*�*�(�8�%�'�+�*�*�$�2�&�,��-�#�2�-�&�7�1�(�0�$�$�&�5�-�(�/�$�'�1�&�3�&�3�.�8�/�&�/�3�+�%�!�*�0�#�3�)�4�6��<�&�-�*�3�#�$�-�6�/��(��'�+�;�+�*�5�1�(�/�*�3�)�+�0�(�/�&�5�-�(�1�/�'�8�%�)�>�2�)�1�8�2�1�%�/�"�3�.�.�+�(�/�1�/�2�+�3�/�!�9�0�7�(�/�'�7�0�#�?�,�'�3�8�.�2�1�8���I�.�2�)�4�%�&�*�=�/�.�'�0�7�!�-�'�5�#� �&�(�(�*�.�/�2��2�;�?�+�&�1�'�(�+�%�)�'�'�"�,�+�4�2�0�*�0�8�/�(�,�.�5�#�(�7�#�*�$�%� �!�/�8�.�+�2�.�*�<�/��"�,�0�)�9�$�,�*�*�4�5�%�,�1�"�/�5�(�9�/�:�#�5�#�/�=�-�8�!�*�(�/�7�/�!�*�*�,�р׀ՀӀր׀ۀ׀Ѐǀ׀ՀրԀրրրՀ׀րـԀ؀ҁ1�1�9�'�*�'�0�8�8�*�/�.�5�*�'�"�,�,�+�*�7�2�)��)�(�#�#�"�+�&�#�C�/�,�'�)�(�(�"�+�'�#�5�0�4�&�+�3�/�3�/�/�)�5�6�%���,�&�,�+�+�)�8�)�*�-�4�$�)�&�*�6�*�)��+�.�.� �'�!��(�'�%�)�.�)�&�"�'�&�(�+�"��1�0�.�.�<�&� �8��*�'�'�(�!��7�"�6�%�1�$�,�)�*��)�!�(�'�0�0�&�*�1�6�)�"�)�4�/�'� �2�)�:�%�2�"�%�$�*�:�.�1�#�)�!�(�=�-�/�/�/�+�1�%�*� �$�4�.�.�,�*� �*�9�<�4�6�7�.�0�$�.�.�&�#�(�/�/�5�#�+�-�9��)�&��-�"�/�@�)�$�!�/�,�#�5�9�)�.�'�/�!�!�!�'�-�+�.�#�4�&�*�#�+�-��%���6�;�,�!�,�<�9�-�8�5�,�.�*�6�%�/�,�$�/�7�/��+��.�)�+�A�+�1�1�-�*�*�'�#�,�#�$�,�&� �-�.�*� �1�5�/�'�&�*�/�"�)�0�4�%�'�'�!�*�0�+�$�.�*�&�.��)�%�+�1�.�"�,�!�;�1�0�/�2�+�=�#�!�,��*�&�(�*�5�,�)�#�/�0�,�"�,��"��;�7�#�4�/�*�*�!�<�$��'�-�1�#�$�+�*�-�.�-�'�)�,�,�'�.�+�4�/�'�/�,�#�-�)�&�%�!�&�1�2�(�1�/�$�1�&�5�%��'�"�6�0�(�2�3�+�3�,��/�!�3�#�'�*�)�%�7�+�/�)�/�)�-�,�/�.�%�3�,�)�+�/�)�+�&�,�+�-�)�6�+�2�6�&�*�#�5�*�)�#�'�,�,�+�1�+�)�)�0�1�1�,�+�2�6�6��.�5�.�0��)�1�)�.�4�1�.�)�+�3�6�+�0�5�0�2�3�.�,�5�'�8�3�.�:�)�0�9�/�)�!�1�/�'�3�,�)�:�2�/��.�+�0�*�5�-�/�ӀҀրڀـ׀؀׀؀̀րՀ؀׀ՀԀրՀ؀Ӏրрրف*�7�+�2�/�&�2�'�3�"�(�2�,�-�,�G�6�'�&�+�'�3�-�1�.�+�$�&�4�"�4�4�%�!�.�3�)�%�-�.�$�2�(�(�.�7�$�9�.�0�-�/�+��5�8�2�*�,��0�$�#�4�(�6�:�1�A�*�&�0�-�1�4�.�$�1�1�#�"�.�$�%�'�� �-�7�)�!�+�3�1�+�,�*�,�/�5�+�/��#�'�/�)�1�,�&�6�:�-��*�7�5�<�2�!�%�$�%�5�'�/�.�&�*�4�/�3� �(�0��%�-�3�-� �(�0�,�0�%�.�(�-�5�*�3�-�2�(�3�)�+�&�.�5�6�/�0��2�3�+��-�.�#�"��$�6�9�,�#�0�3�4�"�#�-�:�-�%�5�9�4�*�$�.�"�'�)�,�,�/��2�%�1�.���1�3�,�$�6�8�/�1�4��,�3�?���5�0�.�+�+�+�,�,�)��1�,�!�5�'�'�*�&�*�+�0�+��/�1�/�1�)�4�1�.�'�.�.�/�4�4�+�#�+�-�1�+��-�#�(�)�.�.�,�/�'�!�8�&�.�.�6�.�(�)�;�<�7��0�/�.�(�#�9�4�3�(�1�&�3�(�/�:�0�/�;�-�!�+�:��,�,�*�&�%�0��(�0�,�.�)�$�-�,�%�.�5��&�+�)�.�-�.�*�#�,�8�%�'�$�-�6�#�4�5�-�.�/�)�5�+�$�#�4�0�-�(�"�1�)�*�-�/�.�"�&�+�&�1�(�;�"�-�2�=�&�'�*�$�)�'�-�>�5�(�,�(�-�(�!�-�&�*�0�0�4�%�7�&�7�%�&�#�)�2�/�(�-�'�*��5�'�/�,�,�-�-�;�)�+�3��0�"�&�,�+�'�*�)�9�&�0�,�/�/�*�'�!��0�)�8�!�#�+�5�&�4�-�)�0�1�/�)�(�-�#�/�0�4�'�/�2�+�%�5�,�8�,�(�9�)�'�%�,�0�'�1�/�/�/�,�.�/�/�,�.�.�*�.�!�;�-� �2�2��'�+�*�7�/�:�*�1�"�,�ՀՀـ׀܀ӀրҀӀƀ׀ۀՀ؀ڀ׀ҀՀՀՀـՀՀՁ<�#�*�%�3�)�%�+�1�*�*�%��.�,�'�1�)�*�,�$�-�/�'�"�)�/�/�/�#�#�%�+�,�-�(�*�1�8�*�$�'�1�!��3�+�0�*�$�+�8� �*�,�+�-�.�5�#�.�2�&�=�'�6�5�.�9�'�1�:�.�*�+�'�=�0�$�-�+�/�1�'�&��/�,�)�4�:�$� �2�,�,�5�(�-�-�.�2�/�5�1�%�%�)��$�(�/�(�1�.�+�!�&�3�5�8�7�%�'�+�*�2�1�5�&�!�#�4�5�'�*�.�$�4�-�!��(�+�)��+�'�1�%�3�2�,�+�8�)�)��$�5�$�'�'�)��+�-�8�-�(�$�4�%�.�7�2�'�,�6�*�)�,�!�$�%�%�/�%�2��$�4�(�2�'�0�,�-�1�-�1��)�2�+�)��!�1�.�$�/�0�5�%�-�*�0�3�,�-�,�&�"�%�'�#�'�"�-�'�(�&�)�/�4�$�7�1�1�'�&�4�/�!�/�/�5�1�&�*�2�4�5�)�3�"� �'��� �)�&�.�*�5�%�3�.�>�5�(�9� �5�/�/�.��7�1�0�,�$�/�+��4�"�5�)�$�$�.�6�(�+�.��&�%�#�:�)�(�&�.�)�2�(�'�$�3�(�,�2�%�7�)�+�)�&�5�7�&�%�3�(�'��=�'�4�.�1�3�&�(�+�%�7�(�.�7�!�+�/�1�&�4�-�.�.�)�$� ��(�C�,�-�)�*�3�%�.�/�6�3�0�-�$�'�"�%�.�)�.���0�/�0�*��4�*�1�C�-�,�(�-�5� �%�,�1�+�"�>�*�(�0�*�6�3�$�(�-�'�,�4�/�!�)�3�*�)�%�3�1�$�6�(�/��.�5�*�/�)��8�%�/�'�4�3�,�/�2�-�-�.�3�/�"��1��$�$�0�)�'�-�/�1��+�3�*�.�-�4�$�3�+�)�"�&�6�#�'�%�.�+�"�-�9�*�+�3�(�9�4��5�0�+�'�/�0�/�0�!�/�*�1�<�&�+�1�*�0�)�&�-�'�-�׀ـۀڀ؀ـ؀ҀـȀԀ׀Հр؀ՀրԀ׀ԀڀՀ؀Ձ1�'�,�.�9�;�-�)�,�,�$�-�4�8�&�8�/��%�/�&�1�:�8�2�'�4�.�>�(�0�3�5�+�0��/�+�,�A�(�4�#�+�(�/�'�,�-�-�5�-�)�/�0�3�$�&�-�)�A�$�"��)�)��0�2�!�#�+�/�*�*�%�(�3�/�-�#�4�(��9�/�*�7��5�/�)�.�9�#�1�/�5�5�1�,�$���-�0�4�)�.�)�.�7�&�,�-�.�)��+�$�&�)�&�?�,�/�0�*�'�<�;�>�5�&�%�,�$�&�0��+�(�$�+�:�%��;�0�.�7�'�+�8�+�%�*�6�-�2�!�%�2�-�5�-�*�3�,�3�3�3�$�"�+�7�8�4�+�*��&�)�/� �,�,�,�0�/�,�)� �-�)�#�,�%�:�/�,�,�/�1��2�*�/��3�/��&��8�)�%�,�#��-�&�(�=�,��*�@�+�%�!��)�,�)�&�+�1�/�+�)�2�/�'�#�� �0�%�!�$�/�,�+�-�.�3�#�,�$�&�)�0�/�2�1�0�.�,�!�#�&�&�'�#�'� �4�%��(�*�)�4�%�'�5�2�(�"� �3�6�<�1�)�"�+�,�*�0�*�:�(�-�!�!�(��0�4�(�'�2�)�;�)�-�-�'�2��2�2��0�.�-�'�'�"�0�/�3�%�-�)�4�5�'�0�/�/�=�+�'�5��(�5�<�)�%�)��$�)�*�,�.�5�+�;�'�:�-�*�-�0�,�4�8�4�0�,�2��,�0�4�2�.�4�7�/�1� �/�6�-�4�3�/�*�/�0�"�-�#�)�1�%��+�'�/�"�,�$�)�)�/�)�#�*�1�&�+�,�5�(� �+�(�'�8�*�.�(�*�4�'�)�0�7�#��,�(�+�!��*�8�9�%�(��(�/�+�,�'�-�0� �*�+�+�$�0�"�,�=��2�#�%�4�)�5�"�%�%�0�,�8�.�5�/�/�+�(�/�*�(�)�&�,�/�+�&�'�1�+�(�,�#�,�6�+�B�+�/�1�4�+�/�0�:�5�'�ӀـրՀ؀ՀՀ׀πƀ܀րҀڀր׀ӀՀ׀Հ؀Ѐ׀ԁ)�9�4��1�1�.�/��*�2�*�-�"�1�0�-�7�'�"��<�@�)�B�5�5�4�)�1�*�6�-�=�/��&�*�(�+�&�/�'�;�%�.�*�2�*�!�)�&�+�)�*�-�+�0�&�-�*�-�4�3�6�0�2�,�2�2��'�-�.�!�'�,�"�-�(� �7�4�5�'�4�!�*�*�*�&�,�/�!�'�.�3�&�)�/�(�%�+�'�)�4�#�.�(�(�/�-�+�(�-�8�&�0�/�3�(�1�!�$�*�%�&�8�"�+�'�-�'�$�-�2�,�$�(�+�-�2�.�1�)�-�#��4�,�&�"�0�8�5�.� �"�'�� �2�'�4�4�.�=�)�-�%�(�-�&�&�)�'�+�(�%�,�#�0�3�1�0�)�1�+�3�0�$�'�0�,�$�-�+�'�,�6�+�*�!�,�'�)�-�"� ��(�)�.�3�,��!�(�$� �%�<�7�.�2�5�.�)�&�%�(�&�.�!�+�5�*�(�(�$�+�)�-�)�0�6�/�/��+�8�#�(�(�&�6�)�-��*�/�+��!�'�A�)�-�%�-�!�2�%�'�'�;�&�,�4�)�%�+�1�5�=�.�'�-�+�-�'�*�*��1�!�#�,�3� �5�&�/�7�,�-�+�"�+�.�4�$�+�$�-�!�'�3�0�#�)�2�'�2�0�,�/�+�;�/�-�(�1�'��+�2�8��'�6�&�7��)�/�%�.�,�5�-�#�/�-�,�)�,�1�:�*�3�-�<�-�-��)�%� �+�2�/�/�4�-�*�+��3�&�4�'�"�3�:�)�,�3�0�)�/�4�5�1��4�)�#�,�-�+�#�*��1�5�,�!�$�0�.�/�.�,� �/�$��4�*�9�+��1�2�2�2��&�4�(�3�+�%�.�*�*�/�1�!�,�0�+�5�7�"�'�2�(�6�)�*�)�.�'�"�"�$�5�/�5�3�%�*�*�'�)�(�-�2�/�9�)�.�5�7�-�9�@�.�4�/�.�+�,�-�*�<�-�7�*�(�%�:�%�9�$�6�#�0�<�7�-�/�#�+�,�)�;�0�9�2�рՀрԀڀڀۀҀրƀ׀րԀ׀ր׀ڀրՀڀр؀ՀՁ#�7�2�'�>�C�'�1�2�0�%�+�+�>�+� �9�+�'�-�.�-�"�2�(�8�.�-�)��5�4�2�-�%�/�/��,��2�,�1�#�*�.�#�6�*�,�5�)�+�-�1�/�2�%�(��%�9�"�.�-�1�/�-�)�7�&�/�5�(�!�2�6�-�*�*�/�/�/�/�(�2�6�.�)�5�)�-�(�5�0�0�+�-�4�-�4��"�0�,�'�-�"�,�(�2�)�%�(�-�2�-�"�/�-�'�.�8�'�)�.�1�%�,�$�+�)�.�.�2�/�3���"�&�%�'�)�%���4�.�#�%�&��/�7�3�*�8�.�*� �1�/�.�6�(�1�/�(�)�+�#�)�)�*�*�3�+�/�)��1�&���6�1�.�9�8�4�2�2�9�*�4�%�'�.�+�+�)�'�+�,�.�!�+�)�.�,�*�4�&�/�+�1�,�*�/�0�(�!�.�+�+�1�$�#�&�1�,�4�+�+�,�/��*�%�%�/�1�'�3�,�3�)�.�4�>�-�/�!�-�.�&�=��6�+�1�/�.�4�(�$�3�<�)��6� �,�:�2�,�)��"�-�%�&�+�4�-��/�*�$�$�&�5�(�+�.�!�+�&�4� �.�&�(�4�2�7�.�)�4�"�2�=�6�%�.�0�.�/�,�!�1�1�4�+�*�6�*�(�5�#�(�-�6�-�(�.�3�+�+�%�)�'�)�)�/�;�,�4�!�'�2�/�7�2�1�'�3�:�/�"�%�)�"�/�7�$�-�6�;� �<�)�!�/�+�%�1�*�4�*�5�!�4�+�&�$�*�*�5�2�-�.�)�%��%�+�3�7�*�-�7�'�,�&�-�.�+�+�,�(�4�(�-�&�0�)�*�.��3��,�+�:�%�%�,�*�(�(�2�6�,�#�/�+�!�&�/�+�3�6�%�*��1�,�,�%�(�%�"�7�#�C�/�/�/�-�2�*�7�2�5�5�0�%�6�'�3�#�/�.�)�/�2�4�%�*�6�3�,�+�3�;�+�-�0�1��4�!�2�<�7�(�'�.�,�8�0�6�'�-�+�*�/�9�/�-�ӀրՀԀր؀ڀԀڀǀրԀՀҀӀ׀ր݀ـ؀׀܀׀Ձ.�8�'�8�5�:�6�7�#�4�$�4�/�;�0�.�#�:�%�&�)�3�;�.�<� �+�5�'�7�0�-�'�-�3�/��&� �*�@�+�-�,�/�-�!�!�/�'�-�.�0�-�+�*�'�&�/�&�4�,�-�-�.�4�'�'�$�+�+�%�'�,�%�1�&�"�*��0�(�.�0�6�+�"�.�*�,�0�,�.�"�2�&�*�(�<�5�%�$�<��%�&�.�5�%�*�#�#�'�2�-�,�-�%�(�0�/�(�:��9�/�+�)�9�)�)�=�.�0�0�0�2�*�5�.�+�0�%�$�1�)�5�'�8�#�3�,�/��-�-�7�F�/�)�.�0�'�7�*�6�(�$�0�/�/�3�1�6�,�"�)�-�%�%�4�4�+�-�(�0�2�)�&�/�*��)�$�-�$�/�5�"�1�,�.�,�6�-�3�2�4�*�;�+�%�3��*�'�(�4�'�0�/�*�?�'�.�-� �3�1�4�/�0�3�+�9�*�+�.�%�.�'�0�,�?�/�#�'�+�+�1�<�1�,�5�.�&�2�/�/�-�.�-�3�+��)�)�-�'�.��+�,�5�&�.�%��,�2�-�/�5�!�)�+�5�A�?�4�8�+�/�&�%�<�)�)�:�+�(�.�)�7�5�-�1�.�'�-�-�(�#�#�#�9�)�1�+�2�*�.�$�4�0�,�+�'�7�"�/�+�,�-�+�$�/�5�+�1�+�*�/�#�6�(� �'�5�:�7�#�+�-�@�$�,�'�#�.�)�)�.�/�3�/�+�+�+�2�!�(�3�"�.�%�$� �)�)�.�'�1�5�1�3�/�*��3�)�%�1�+�3�,�;�.�(�-�3�1�'�,�$�*�*�/�)�)�4�,�3�)�/�*�0�?�4�:�2�4�'�*�,�5�-�1�/�5�0�,�,�,�+�<��(�7�-�-�/�*�,�+��.�*�,�&�6�1�8�1�0�3�)�+�&�7�$�:�8�3�#�,�.�&�4�2�5�+�#�1�%�-��.�+�1��,�,�'�0�+�+�6�?�0�0�.�1�+�1�6�)�0�0�-�/�,�"�*�7�+�;�0�3�$�1�(�Ӏր؀ՀـЀԀڀՀˀڀր؀ր׀π؀؀Հ׀Ԁ؀׀ց�.�-�'�+�3�-�6�.�)�%�1�%�)�!�1�3�/�/�,�/��-�)�1�+�2�,�'�*�.�0�2�,��(�'�"�3��+�2�'�8�1�2�$�4�+�)�'�+�,�+�*�3�&�-�1�1��)�+�*�+�'�6�;�#�(�<�2�/�%�(��*�)�,�.�0�.�,�"�+�1�5��4�1�1�-�(�*�)�1�/� �!�-�)�#�%�1�,�$�'�*�%�-�9�&�1�,�(�(�2�9�2�/�/� �7�"�%�3�2�#�+�/�:�-�.�&�8�+�'�!�(�*�+�5�*�$�4��(�%�(�(�-�!�%�)�*�5�!�-�8�9�2�-��3�%�-�4� �5�*�#�9�0�-��7�3�)�3�1�8�.�-�!�$�0�'�,�-�1�,�9�-�-�*�6�*�(��&�/�2�&�.�&� �!�)�1�%�)�1�&�$�,�*�*�%�-�/�-�0�*�'�4�8�%�@�)�-�4�3�.�.�4�%�?�-�0�,�'�$�-��;�&�*�2�0�6�+�2�0�6�%�"�6�8�%�.�'� �+�,�-�4�+�'�'�2�0�4�*�$�.�8�'�+�&�(�/�)�/�*�5�/�'�1�1� �&�(�-�-�4�A�3�(�!�C�(�'�=�+�.�0�1�9��8�,��7�'�3�*�)�4�'�5�6��2�(�3�3�%�*� �2�#�9��.�(�5�)�0�-�&�0�/� �8�"�:�,�$�/�&�&�$�3�1�3�-�+�)�'�4�,�"�+�)�%��,�&�-�4�&�/�7�-�)�;�*�$�0�0� �)�3�&�/�6�3��*�0�/�1�0�(�,�2�0�!�2�+�#�"�5��:�+�2�0�3�/�2�:�(�/�*�/�4�)�+�5�&�&�3��3�,�!�)�1�,�2�/�;�0�4�#�6�,�1�*�&�'�/�3�'�5�&�3�0�9�2�&�7�,�!�)�*�9�'��1�1�*�,�/�0�/�+�4�%�:�'�&�0�#�-�(�7�0�:�3�(�.�,�)�#�"��.�'�!�/�,�"� �,�=�*�9�.�,�:��7�-�,�1�$�5�>�,�4�׀ЀրҀՀԀҀրրɀЀӀـԀ׀׀ـրрՀӀԀրՁ<�,�)�3�6�,�.�+�(�@�-�7�7�#�,�+�%�4�%�*�)�$�)�%�/��'�?�.�%�3�=���2�+�,�#��#�+�)�=�+�%��+�3�'�/�1�%�0�-�.�3�!�4�2�+�#�.�-�(�=�3�-�'�9�6�-�2�-�5�%�$�7�5�<�1�-�+�(�6�&�*�B�3�"�,�:�/�(�!�)�*�(�0�*�,�1�#�+�/�.�&�,�2�1�5�1�<�)�0�%�!�*�-�3�)�.�&�*�/�%� �.�5�)�*�(�/�/�*�2�+�-�1�/�7�'�(�-�%�.�$�6�9�!�-�-��2�.�+�!�/�*�5�$�0�)�(�*�0�*�-�+�*�*�1�*�*�)�%�(�*�!�$�2�!�5�,�-�-�.�&��&�%�*�6�3�+�%�&�,�)�.�$�&�&�1�0�0�-�'�1�*�.�/�*�4�+�:�+�+�8�,�3�3��%�2�3�5�6�$�&�3�$�1�+��2�-�%�,�/�%�#�0�,��3�1�+�!�6�*�4�+�(�/�)�;�/�$�/�'�%�,�'�%�2�,�3�,�*�!�.�-�%�2�+�#�.�/�1�*�,��/�*�-�#�!�-�+�(�$�,�1�'��&�+�5�4�-�/�8�'�6�*�+�)�*�(�"�%�3�.�1�*�(�"�%�6�5�'�+�+�&�1�'�7�0�/�7�(�$�#�+�)�4�&�!�0�+�*�0�/�1�(�1�(�%�#��1�)�+�0�&���;�'�0�(�<�+�'�1�.�;�'�/�(�/�$�0�(�'�1�.�(�0�/�2�.�)�(�.��#�0�(�-�.�'�0�.�,�6�3�%�!�+�&�-�1�-�7�'�1�%�:�#�*�0��>�#�/�'�+�+�3�C��+�$�0��-�3�*�/�,��7�"�0�,�(�$�4�0�$�0�/�.�"�*�*�%��#�,�-�(�5�!�#�7�,�2�*�*�$�&�3�%��3�0�(�%�%�&�:�.�-�*�5�"�$�6�B�)�,�6�7�2�0�(�.�%�#�2�2�+�2�)�<�)�-�.�9�7�,�=�-�.�*�/�3�;�5�7�׀߀׀׀ڀҀڀԀՀȀր؀ـۀЀ׀܀րՀ؀ڀۀ׀؁/�-�+�"�'�+�0�+�5�(�;�3�)�+�0�'�)�8�1�+�'�0�6�(�'�&�2��3�,�4�4�3�3�/�8�/�*�,�.�-�3�'�-�+�2�0�"�%�&�)�+�-�'�-�'�.�$�#�.�3�,�)�6�&�1�+�,�&�4�(�5�8��,�2�%�6�5�'�3�/�'�+�)�0�2�"�(�)�)�,�/�%�#�3�'�+�=�,�%�4�&�&�+�"�%�1�1�7�)�,�*�(�$�$�)�+�%�1��2�*�0�2�4�7�#�/�/�)�*�-�(�0�1�)��#� �7�G�*�/�(�,�9��%��-�$�&�:�-�4�.�8�)�%�9�%�*�(�)�7�7�'�5�5��5�)�3�+�/�%�$�%�>�+�=�$�$�.�/�!�6�(�)�2�/�.�4�#�*�-�6�'�)�,� ��,�0�*�+�3��-�-� �*�3�*�6�2�3�0�2�,�1�'�,�#�,�.�,�+�1�+�4�3�@�*�/�+�3�&�&�,�5�(��0�2�2�6�0�-�$�0�5�"�)�+�(�4�+�*�)�)�A�$�5�"�6�"�,�9�+�+�.�+�)�'�*�)�%�&�6�5�1�)�)�4�$�/�2�(�(�"�.��+�3�1�-�(�3�&�0�7�*�$�*�*�&�"�,�<�)�-�4�.�+�:��#�$�'�%�%�7�'�!�5�?� �+�,�,�.�+�&�,�%��,�-�%�(�4�%�+�0�3�7�+�2�.�-�&�-�5�4�'�4�$� ��3�4�7�3�'�+�.�)�%�=�'�3�"�-�-�.�<�2�3�.�+�.�'�-� �&�'�6��(�*�)�*�&�3�&�(�/�&�&�*�1�2�'�9�'�2�6�&�/�&�5�9�.�5�/�.�5�2��*�)�&�+�'��%�2�0�)�!�$�&�!�0�3�'�-�1�#�=�8�2�2�+�5�4�-�*�7�:�&��)�(�*�'�/�0�"�+�;�*�-�)�)�(�1�6�(�-�6�(�$�&�4�*�)�+�3�7�)�*�/�'�'�7���)�2��3�.�<�-�/�.�(�5�0�*�7�'�8�4�(�*�+�-�&�ҀրՀր׀Ԁڀ׀Ҁ��πӀҀӀրՀڀ׀׀Հ؀׀ԀҁB�2�'�#�4�)�1�/�$�&�"�8�.�5�'�3�/�(�/�&� �0�!�.�.�!�1�+�5�/�2�.�&�&�.��'��#�1�2�1�*�+�2�&�+�)�6�,�/�/�)�/�(�7�&�6�$�+�/��4�(�%�5�6�.�+�3�4��-�0�8�)�5�.�7�)�)�-�/�*�=�*�3�(�'�5�0�(�/�*�&�4�2�!�/�/�%�$�'�#�0�$�%�8�#�3�)�3�0�)�1�!�6�/�(�1�"�-�+�&�'�(�+�*�2�,�6�6�+�1�*�,�&�,�(�,�0�4�'�&�+�'��/�%�4�'�/�2�7�'�&�&�2�$�-�(�+�6�!�3�.�'�/�!�+�=�'�$�'�%�&�(�8�/�,�*�4�+�&�-��9�#�&�'�1�-�*�%�+�&��,�1�,�#�1�*�(�;�4�$� �.�%�3�+�*�&�*�"�&�(�#�/�#�#�.�%�5�*�0�!�-�%�2� �)�0�!�!�'� �5�+�/�#�&�-� �2�%�1��1�(��6�'�0�)�-�'�+��)�&�#�.�/�$�"�(�-�.�*�*�5�2�4��-�$�8�%�1�&��*�@�,�4�/�#�,��*�3�7�*�-�1�*�$�,�'�)�%�)�/�)�)�/� �B�5�/�*�/�/�%�5�"�+�5�6�$�.�'�0�0�+�(� �3�7�+�4�%�)�$�7�/�*�#�)�!�0�*�8�#�)�%�2�-�"�.�0�"�9�$�#�)�7��(�1�8�.�7�/�-�'�)�+�4�#�/�9�&�2�-�5�2�7�'�+�(�-��(�!�!�9�0�9�+�(�-�)�.�-�+�2�!�)��0�2�/�'�%�/�5�6�0�'�*�)�2�%�0�*�?�9�-�2�:�3�-�:�'�4�*�)�-��A�*�.�0�-�0�2�-�)�'�1�.�-�.�0�2�/�+�+��(�>�'�,�1�/�+�#�-�*�6�2�1�6�2�9�%�)�"�*�2�1�:�(�7�)�*�!�,�*�1�+�,�$�5�5�;�:�.�/�*�1�*�1�+�7�+�+�/�0�3�$�*�:�.�2�8�.�"�0�րۀ؀׀ҀрـԀր��рԀՀ؀Ԁր׀ԀҀԀ΀րՀՁ)�)�.�1�3�0�4�-�?�.�6�3�(�-�2�-�/�8�+�9�+�+�-�'�3�0�&�)�4�)�.�1�(�)�%�6�.�3�7�3��0�3�0�2�6�=�+�(�%�/�5�/�<�2�/�7�'��+�0�,�.�'�#�)�6�1�5�,�.�(�5�)�!�'�/�=�(�(�*�)�*�,� �0�)�'�$�5�*�$��$�3�-�)�%�)�,�4��+�,�8�2�/�4�3�0�!�.��,�2�3�*�*��4�'�.�2�-�%�4�$�5� ����'�,�.�2�+�:�9�7�#�3�'�.�)� �1�,�$�-�'�.�6�,�5�!�*�.�,�+�)�(�+�2�$�/�0�,�#�+�.�3�$�#�,�"��3�+�$�'�/��+�A�6�2�6�!�2�7�,�,�6�"�$�$�&�,�-�-�/�!� �*�3�!��#�;��)�4�/�#�(�*�0�/�%��=�*�1�,�'�,�.�9�#�%�/�/�2�.�(�(�*�4�1�+�'�!�.�7�'�&�1�.�*�)�/�/�>��'�%�%�"� �4�$�"�+�&�$�)�(�.�&�)�/�"�+�(�)�-�0�%�0�'��+�/��4�$� �)��.�=�)�.�-�/�4�;�+�)�'�$�%�2��!�)�4�'�(�(� �,�+�0�2�9�"�)�(�/�4�� �*�7�+�;�7�-�'�)��*�'�1�.�&�!�%�*�0�1�1�*�*�'�-�2�/�2�#�2�)�!��(�%�&�,�,�#�-�*�%�/�1�,�'�/�:�/�1�0�*�"�/�4�(�/�3�,�%�*�9�"�2�2�)�,�1�4�5�4�/�-��-�-�!�0�1�0�*�/�+�.�5�0�'�.�5�%�-�:�(�2�*�+�6�+�/�+�&�5�7��-�/�&�-�*�)�(���-�)�:�%�-��&�-�$�/�#�-�/��.� �'�.�2�%�0�.� �.�$�%�)�#�*�-�5�+�;�;�#�/�4�3�)�7�&� �&�,�)��6�*�)�'�4�'�/�(�%�+�/�/�2�$�2�8�/�<�2�0�'�*�'�.�9��/�+�3�0�Ѐр׀րր׀ԀՀӀˀڀӀԀрҀـ׀ӀڀՀրԀڀׁ/�#�+�.�,�8�:�.�5�)�5�/�1�8�1�2�,�*�.�'�2�.�0�0�.�*�1�+�+�!�2�5�+�#�4�/�.�=�+�$�.�0�+�;�)�(�&�-�(��&�'�%�'�)�7�%�*�%�6�0�'�?�2�)� �1��.�2�+�-�'�%�#�3�!�%�,�%�'�/�0�,�/�#�"�'�*��-�%�.�+�9�#�5�/�0�-�#�*�/�(�3��&�*�)�,�0�+�/�)�%�-�/�'� �1�#�/�,�*�+�9�*�)�,�-�/�&�-�3�$�%�,�4�1�)�3�<�0�7�*�"�$��:�.�2�-�-��6�%�%�'�+�%�.�+�4�'�#�(�(�&�2�#�/�+�5�*�9�+�1�$�,�%�(�$�.�&�'�-�%�6�)�*�'�,�/�6�.�*�,�/�%�"�2�(�/�7�-��-�*�(�-�5�+�.�(�,�1�+��.�/�(� �=�*�0�0�7�9�9�-�-�<�*�5�2�)�7�+�/�%�(�*�#�!�)�8�7�+�/�1�/�6�+�&�#�1�.�/�)�7�4�!�*�5�,�.�,�:�)�"�-�0�2�*�1�&�?�&�2�0�#�/�*�1�.� � �#�/�*�/��9�%�/�*�7�%�0�*�-�.�+�;�-�#�)�,�/� �2�-�5�2�7�+�3�(�3�)�-�3�"��*�4�)�+�.�7�-�*�+�3�&�)��'�&�%�-�1�"�,�3�0�$�(��,�/�/�4�.�-�#�2�%�6�%�!�+�<�&�5�0�(�.�1�,�%�-�)�!�)� �(�/�!�'�$�1�*�2�-�-��*�/�!�;�1�.�)�)�)�/�2�7�+�6�)�2�@�3�5� ��!�'�0�)�3�5�7�,�3�4�+�+�(�0��'�"�$�%�7�.�-�*�.�(�"�-�/�/� �%�/�,��5�4�5�*�1�1�0��4�8�#�-�5�&�2�&�#�$�7�!�*�'�,�(�!�+�4�,�+�(�0�5�!�0�-�9�/�6�3� �=�2�,�7�/�3�5�/�&�5�9�-�0�)�2�2�"�#�7�3�'�4�:�A�0�(�8�)�'�)�Ԁ׀׀׀Հ؀؀Հрƀ؀׀ՀրԀրր׀ՀՀڀրր؁1�,�2�3�4�)�'��5��+�,�7�/�3�+�)�-�/�6�3�1�,�:�2�(�4�0�7�5�*�-�"�.�0�(�%�2�'�(�1�/�,�#�1�-�(�)�:�2�'�+�/�)�'�+�,�*�(�)�)��1�2�'�*� �0�$�9�(�(�(�)�:�,�-�8�,�+�-�"�0�4�1�)�)�(�4�:�-�*�.�$�"�'��(�)�"�2�*�7��)�-�1�-�0�)�.�7�(�(�(�2�7�.�"�.�=��5�5�0�,�%�.�#�%�!�/�;�*�+�5� �&�,�2�(�1�4�*�(�$�.�/�&�&�/�3�#�!�4�%�-�$�1�3�(�)�0�+�2�+�-�)�,�*�1�0�!�+�&�3�"�+�8�6�7�#�2�.�*�9�0�+�&�%�&�#�*�?�-�-�(�'�7�%�2�)�*�(�,�,�&�*�?�/�0�5�5�-�,�'�0�>�-�5�#�=�#��5�/�,�.�*�(�/�1�+�"�2�&�0��)�1�,�&�0�*�7�7�*�7�/�&�.�2��8�,�)�#�)�"�,�-�/�1�'�*�*�*�/�+�/�-�3�4�-�0�4�5�4�.�5�(�)�*�#�"�+�9��/�(�/�6�=�.��0�(�6�-�-�,�(�%��/�0�(��0�*� �+�A�&�)�-�'�0�*�)�.�:�)��,�!�-�6��*�&�5�+�*�%�,�2�-�*�'�1�&�6�"�!�D�+�(�+�(�9�:�"�#�-�8�'�+�/�"�.�)�3�/�,�4��(�4�*�<�&�5�#�$�2�)�%�+�4�-�-�1�-�<�)�)�.�/�/�'�+�2�5�4�#�$�#�$�/�7��+�-�6�)�)�3�!��/�)�,�5�5�/�1�)�"�.��%�#�(�*�0�/�)�4�.�2�%�)�-�/�6�+�%�!�,�*���,�4�)�$�)��/�)�0�1�5�)�#� �/�&�*�2�)�*�-�,�(�2�'�1�*�.�)�+�/�/�/�/�3�/�1�/�1�&�1�/�*�*�5�4� �7�:�#�+�"�8�+�%�5�7�8�-�2�4�%�,�;�3��7�)�6�׀ԀҀՀӀրـ׀Ҁ€րՀـЀՀ܀Ҁ׀Ԁـ؀πրՁ.�1�-�0�1�*� �.�2�0��+�6��#�-�(�5�-�+�*�'�1�*�-�1�%�%�?�)�4�+�0�7�3�!�*�.�&�2��)�:�!�:�/�+�/�*�'�'�.�0�'�(�+�-�:�6�/�-�#�/�/�3�+�.�.�$�5�"�*�0�+�/�0�8�5�1�/�-�1�,�1�0�/�*�5�,�'�0�/�-�-�%�*�3�)�%�0�,�-�(�0�%�'�-�+�+�0�8�>�&�+�6�)�.�6�!�9��+�)�/�*��/��&�#�:�%�(�1�$�+�$�"�/�.�3�/�.�6�*�4��#�%��#�2�#�(�(�$�'�&�/�!� �9�3�/�8�*�#�'�+�)�'�2�&�/�6�@�*�/�&�&�/�)�&�8�/�-�%�(�%�,� �(�+�0� �1�!�0�)�6�.�&�&�$�.�#�+�5�%�/�9�<�+�(�'�%�+�?�-�(�5�)�/�1�+�-�&�/�.�)�9�&�(�*� �,�-�,�/�&�!�"�9�2�,�+�'��)�%�3�*�8�/�(�)�*�+�)�.�*�/�*�3�-�-�2�1�,�(�5�2�"�4�9�,�.�%�!�4�1�3�"��3�3�/�5�"��,�/�6�)�,�5�(�3�.�.�0�-�'�(�$�1�,�5�0��5��*�4�)�(�3�/�,�$�5�,�%�9�(�&��+��/�2�3�)�2�5�*�6�(��0�0�(�)�0�(�,�%�)�%�5�/�$��"�0�/�2�-�'�-�*�2�#��5�'�.�(�+�.�.�6�*�1�,�2�&�)�.�5�!�.�*�(�)�(�'�-�+�)�*�.�+�4�>�-�8�-�-�0�:�*�-�&�,�5�$�(�%�*��,�,�*�/�!�6�'�+�+�'�*�4��!�%�&�*�/�'�%��+�5�-�9�7�3�'�,�%�+�)�*�)�+�-�'�7�+�5�.�2�'�/�B�+�&�(�8�*�(�8�*�-�3�1�.�1�/�2�,�2�4�4�*�4�+�*�-�5�(�.�:�!�;�3�3�/�.�.�$�-�5�3�0�/�8�+�3�#�1�4�/�5�6�8�.�(�1�-�2�؀Ѐ׀ـ܀Ԁր؀׀ŀ׀ր؀؀ԀڀـՀ׀Ԁ׀րҀց*�$�(�3�)�+�1�$�(�2�&�7�$�3�*�2�)�8�/�0�/�0�"�/�6�!�*�1�0�*�0�2�0�&�9� �-�3�*�-�7�1�-�0�-�+��-�+�9�.��,�3�)�.�:�%�2�6�#�(�9�1�/�/�!�'�0�.�4�-��'�(�9�/�%��'�)�3�%�%�-�%�*�5�5��*�(�+�#�+�+�+�'�4�.�*�+�,�(��"�5�+�*�(�*�.�4�3�<�1�&�*�-�*�"�-�/�!�/��-�#�/�&�.��5�#�3�*�/�&�0�3�1�-�'�3�-�(�1�3�(�'�,�!�5�<�!�7�-�%��8� �*�A�#�$�/�%�8�)�5��*�-��6�4� �%�+�+�6�5�3�.�)�$�1�%�$�.�4�#�0�%�7�&�/�$�/�.�2�,�7�*�-�+�*�/�(�3�,�8�+�(�3�+�#�-�-�)�'�'� �-�4�)�'�6�'�(�%�-�%�+�2�#�'�.�)�*�!�+�+�#�2�+�%�#�3�)�"�$�)�%�+�5�;�"�*�/�2�/�2�/�%�,�8�+� �:�'� �6�%�$�)�+�%�*�5� �3�'�1�#�!�5�6�&�,�,�0�'�7�/�)�%�3�&�+�*�,�"�'�1�)�+�$�)�)�7�&�%�,�)�8�+�&�)�'�(�*�*�+�"�/�1�.�+�7�/�3� �(�4�,�%�(�%�/�'��� �)�*�-�(�.�,�'�*�1�*�8�'�*�*�%��3�,�(�%�,�&�3�'�,�'�3�.�*�&� �*�+�0� �0�/�(�/�-�,�$�*�4�,��,�%�$�&�$�)�1�4�"�0�2�3�6�-�+�*�1�5�,�/�)�*�'�=�+�,�+�2�+�,�1�"�3�4�2�-�4�'�3�2�.��3�:�-�+�6�1�"�'�/�%�*�+�/�*�)�,�,�3�"��/�(�0�#�"�)�$�.�&�2�1�%�+�*�$�5�,�.�1�(�<�'�"�2��&�.�*�6�*�3�#�#�(�/�6�&�(�/�/�%�/�-�/�5�;�.�%�)�3�*�,�+�6�#�$�"�)�5�-�ڀԀـڀԀԀ׀ր׀À݀ӀـӀڀ؀Ԁ׀Հ؀Ҁ׀Ҁԁ8��,�7�1�@�,�1�5�:�%�0��2�3�4�)�;�7�)�(�/�.�*�)�)�4�'�.�(�.�0�6�-�.�2�'�/�'�.�,�0�-�3�/�(�1�+�.�0�4�;�+�(�0�4�+�'�%�,�(�,�1�+�)�0��)�#�.�(��1�2�*�;�+�,�0�3�-�7�+�3�/�1�-�,��.�.�5�3�5�!�&�+�,�!�9�7�5�/�2�&�+�*�)�0�?�(�)�(�/�1�,��/�'�$��*�)��2�#�)�,�"�-�&�/�!��2�,�/�!�$�.��$�+�!�9�3�2�1�/�/�,�/�%�&�%�/�'�.�/�3�1�.�'�%�"�(�/�-�)�'�%�/�,�5�)��+�'��.��)� �-�,�.�)�"�*�,�2�-�!�!�-�'�'�)�<�(�)�-�'�(�3�)�0�+��&�1�!�,�9�)�!�%�2�&�+�(�7�/�1�$�*�&�/�/�8�(�*�;�%�(�.��&�(�4�%�'�+�3�4�.�.�$�'�8�/�/��0�5�(�.�6�*�.�/�#�!�5�%�4�0�9� �4�$�4�/�6�4�9�'�)�(�-�%�0�5�/�0�$�'�*�/��(�/�7�(�7�8�'�)�6��.��&�-�,�%�.�/�8�6�4�-�'�.�.�*�'�@�6�&�3�*�$�1�%�.�*�2��+�/�1�3�4�#�)�'�6�;�#�%�*�0�!�3�2�2�*�"�5�/�/�+��/�?�(�*�.�5�-�0�%�#�,�+�"� �&�&��!�3�*�5�,�#�3�(�/�'�3�.�&�-�(�,�*�0���3�3�.�)�#�4�/�,�,�.�$�/�,�5�/�9�=�$�+�7�%�/�2�2�(�3�'�8�9�!�3�6��'�)�+�5� �5�0�)�/�/�2�'�(�0�5�/�;��;�*�,�,�8�+�*�/�2�)�-�$�0�+�&�1��,�,��2�.�-�(�1�/�@�.�=�(�1�!�/�'�5�)�.�.�+�,�'�%�&�*�4�5�/�/�,�5�1�!�0�/�(�0�2� �9�-�4�:�-�2�2� �0�7�/�3�Ԁր׀рЀ׀рՀـÀ܀ـ׀Հ׀ـڀրπԀրՀӀԁ0�'�/�1�%�'�-�/�&�!�/�0�&�2�/�%�?�(�1�!�,�"�-�.�:�1�1�-�9�4�%�*�-�"�%�1�*��,�2�)�%�+�8�3�*�1�'�&�)�(�*�,�'�-�0�(�8�*�*�*�)�5�/�$�&�*�'�&�0�&�.�&�%�/�$�/�(�/�(�0�%�*�2�-�)�8�� �4�2�*�8�'�+�#�*�'�.�,�*�/�'�5�0�+�-�1�/�/�7�,�1�.�*�2�)�3�.�.�#�2�9��2�#�/��3�*�1�)�)�(�)�.�6�*�%�(�=�*�'�(��#�(�5�'�6�+�&�+�*�0�#�1�+�&�)�$�4�-�(�'�$�0�0�.�(�-�,�0�*�*�&�(�)�0�,�/�0�8�4�)�7�%�5�&�1�:�/�(�'�5�%�-�,�"��"�2�)�,�%�-�'��)�,�*�%�&�(�'�)�+�1�2�-�*�$�&�!�<�+�4�-�&�&�7�(�+�2�"�2�+�%�-�)�$�*�3�)�3�&�(�(�0�;�(�(�&�0�$�,�4�2�-�"�'�,�#�,�&�4�+�,�0�/�*�,�+�*�1�%�+�$�(�/�'�*�(�"�7�>�1�5�"�*�6�%�0�%�1�"�5�*�/�-�8�.�,�(�'�4�/�.�+�&�(� �.�7�7�-��2�-�-�,� � �6�#�,�&�'�)�0�.�(�.�(�0�/�(�3�2�(�4�-�'��5�.�*�3�6�&�7�+�.�$�$��)�"�7�(�1�!�=� � �3�&�.�7�8�1�"� �$�(�'�(�-�.�,�2�+�3�$�&�+�/�&�*�(�&�*�!�)�+�.� �>�8�<�7�0�1�/�$�3�5�:�,�0�$�#�-�/�*�"�/�,�(�-�(�6��<�2�2�+�#�*�*�2�5�4�'�4�4�8�(�,�*�-�0�(�0�*�4�&�*�/�-�'�+�7�)�=�+�3�%�&�0�&�'�$�2�,�!�3�$� �-�3�;�)�'�+�,�"�,�%�1�3��1�.�/�3�(�#�8�/�>�(�/�.�5�/�/�2�&�1�+�2�1�9�6�3�"�2�1�'�*�&�Ҁр׀ӀրԀՀـӀÀрڀՀҀ׀Ԁۀր׀Ԁـڀрԁ,�>�,�1�*�,�3�+�1�4�%�/�3�7�3�.�)� �+�5�%�#�)�.�7�.�'�4�6�'�(�(�)�:��1�1�3�,�$�5�:�*�+�(�4�%�,�0�*�+�"�$�2�*�6�/�2�,�.�2�+�6�/�1�4�9�+�8�2��%�.�1�#�-�!�#��/�/�0�(�1�5�#�7�3�/�(�*� �*�8�'�4�/�/�,�0�!�-�+�,�*�!�*�)�,�0�&�*�*�%�+�2�,�4�/�1�"�-�/�#�$�)�4�*�2�(�4�1�,�#�!�4�/�7�)�2�=�%�7�.�-�,�(�&�.�9�,�7�+�(�6�0�.�-�2�0�2�,�%�.�'�,�'�$�4�-�%�#�,�+�+�.�0�'��'�5�4�9�1�#��&�-�$�(�)�+�(�/�1�(�%�-�(�3�6�7�2�#��*�3�9�6�-�5��2�6�:�5�$�=�*�(�*�1�,�6�&�/�'�7�%�"�!�*�-�/�,�6�&�+�7�(�*�%�+�$�%�+�6�+�(�;�%��(�'�.�)�/�2�.��)�-�4�0�+�:�.�+�#�-��4�%�8�4�5�1�;�0��3�0�3��)�3�4�1�5�"� �*�+�/�,�/�"�'�-�5�/�&�(�'�+�+�+�$�0�1�+�(�&�;�,�'�-�.�/�%�/�,�2�$�=�/�)�4�;�(�3��*�9�,�%�:�%�%�*�3�3�3�)�&�%�)� �8�+� �.�0�3�)��!�-�'�)�)� �'�5�<�.�/�+�'�(�'�&�4�+�,�'�.�.�1�/�(�#�4�$�,�?�+�7�(��(�-�.�"��+�/��&�3�+�,�1�(�+��'��,�0�*�+�7�%�*�-�+�$�2��.�6�*�&�+�6�4�*�(�3�%�/�%�.�(�'�(�+�&�!�(�"�0�/�8�/�,��7�)�$�0�.�3�0�-�6�3�)�1�#�%�'�5�:�/�.�,�2�%�(�%�1�/�4�*�0�/�1�,�3�2�7�.�)�2�;��0�,�,�!�2�,�#�)�6��,�0�+�0�+��3�!�(�=�+�@�6�2�ՀՀπـԀՀπӀր̀Ԁ׀Ҁր׀Հ΀؀Հ݀׀؀Ӏԁ;�7�/�0�(�'�-�*�&��)�4�.�,�3�'�%�(�#�(�<�#�7�2�3�.�$�&�#�4�+�!�1�*�0�6�,�4�"�'�1�+�5�:�*�0�(�+�'�-�,� �1�2�%�/�8�-�.�%�*�+�.�4�'�&��4�$�/�2�0�&�6�3�#�2�0�0�'�.��1�D�5�$�)�(�.�1��"�/�/�+�-�3�%�/�'�.�-�$�.��3�/�&�8�'�6�,�0�!� �(�.�4�7�6�3�'�!�7�1�;� �7�,�(�.�)�$�"��3�2�(�4�!�*�*�-�,�*�(�5�%�+�)�&�,��)�*�)�2�1�"�7�-�%�'�/�(�2�-�.�(�3�-�+�*�*�-�!�-�#�2�(�.��)�&�2�)�(�7�+�(�$�3�-�+�+�*�&�*�&�-�2�*�+�'�$��3�)�,�/�*�.�.�$�0�C�'�,�$�;�0�4�+�3�6�(�/�0�2�>�+�"�3�0�8�(�2�,�/�%�-���%��9�)�8�8�1�&�.�*�/�%�2��/�.�+�"�$�.�5�$�0�*��/�!� ��(�0�.�)�$�#�!�/�-�4�4�(�(�0�4�8�!�6�#�'�'�$�6�3�&�"�-�8�9�%�3�*�+�2��(�&�*�1�,�*�3�/�'�'�)�.�-�#�.�-�%�/�.�1�2�.�)�(�)��7�0�'�)�8�4�/�1�!�'�A�(�0�6�6�&�1�#�4�)�&�%�#�)�)�4��+�)�0�?�*�%�1�$�2�/� �#�+�%�*�)�,�*�$�4�5�%�&�'�2�0�5�7�(�#�7�6�3�*�/�!�7��/�4�*�$�2�/� �6�+�,�,�&�.�0�*�*�(�4�%�(�/�!�*�� �-�/�,�4�$�(�&�!�"�!�4�)�+�7�+�.�'�.�0�/�8� �+�2�#�*�$�&��+�/�7�-�+��1�#�6�-�B�)�5�0�/�5�)�-�/�&�'�3�)�*�)�1�#�.�.�.�,�'�(�7�6� �*�/�2�1�2�,�'�1�+��0�3�.�3�2�2�$�/�8�4�;�9�.�"�րۀӀ׀ՀԀՀՀրɀҀҀ؀؀ԀҀԀԀԀՀҀ؀Ӏف.�$�'�&�*�!�(�/��%�%�4�/�1�+�6�/�.�!�5�(�-�.�6�0�*�+�:�*�-�1�,�-�4�/�!�/�(�)�/�*�-�2�-�3�.�"�/�*�'�*�0�0�3�&�2�/�(�0�*�"�*�9�;�*� �$��-�'�0�(�.��+�-�1��)�4�1�+�7�%�#�-�5�&�(�!�(�%�'�$�,�(�%�'�:�0�/�'�$�6�)�)�7��,�.�4�0�*�6�<�&�7�(�(�-�%�-�"�-�6�2�2�)�"�%�/�4�4�,�(�&�7��5�6�1�%�5�.�(�&��$�;��'�-�(��4�%�/�*�*�3�1�.�"�#�6�%��"�0�5�/�&�#�$�&�/�+�"�+�1�0�+�2�+�9�/�2�3�%�.�-�*�-�!�3�+�(�$�&�#�3�,�%�"�.�3�9�*�'�(�5�4�)�9�)�3�7� �)�-�&�$�1�/�/�+�.�7�(�2�!�+�#�3�,�-�%�/�*�*� �1�-�7�)�'�,�3�&�.�+�-�&�2�$�)�0�#�3�+�1�0�5�(�(�-�/�+�.�1�$�1�5�*�-�%�%�5�/�.�,�6�1�4�(�-�-��/�8�+�'� ��,�!�<�3�$�#�3�+��/�5�6�)�=��+�;�/�9�#�#�0�&�/�$�!�3�1�*�7��!�1�/�4�!�,��4�*�1�=�(�(�5�(�/�+�7�.�'�/�&�#�-�+�.�$�+�#�7�,�'�*�.�'�-�%�+�5�4��/�1�(�0�,�2�5�2�-�-�-�)�/��.�8�(�*�>�&�)�*�7�3�$�%�4�.�2�0�!�&�#�#�.�1�+�6�6�+�0�0�*�&�4�1�(�4�&�@�:�&�-�,�+�,�8�*��*�)�/�/�,�'�%�4�%�4�8�"�&�,�'�9�6�&�4�,�&�+�5�#�4�1�-�#�-�%�*�0�)�!�*�.�3�!�&�9�'�*�2�9�#�-�,�>�(�!�.�*�+�/�-�'�$�)�/�1��7�#�&�*�7�*�-�1�:�'�-�7�.�+�+�(�2�6�5�+�*�+�6�9�*�-�Ԁ׀ۀ؀؀׀Ԁ׀׀ǀրՀـҀڀՀ׀ۀҀـӀ׀ـՁ�.�)�7�,�5�2�1�.�,�2�#�"�'�4�&�.�2�(�'�6�.�0�$�0�-�7�-�,�'�+�*�4�/�+�3�)�&�&�%�'�?�/�5�5�9�0�!�,�+�*�+�+�1�'� �+�)��4�-�)�1�5�.�%�-�)�)�'�0�(�*�0�)�+�&�-�$�1��1�)�'��$�(�;�.�9�4�)�5�,�1�&��4�'�&�1�#�.�/�4�(�5�)�+�9�&�,��)�#�-�2�+�6�'�-�(�%�!�'�,�&� �2�/�6�)�/�2�1�6�1�3�,� �)�0�.�2�+�)�5�2�&�*�+�+�7�%�'�)�)�+�&�/�#�2��/�4��+�-�5�(�.��&�'�%�&�/�/�.�/�"�)�,�)�)�(�7�/�0�%�7�(�(�1�3�+�%�-�'�+�(�9�,�!�4�.�/�%��2�$�,�1�"�%�(�-�,�8�#�(�/�#�%�.�'�:�.�=�/�7�%�*�$�.�<�2�)�%�2�4�3�+�.�/�3�-�!�5�)�*�&�*�7�'�.�&�)�/�8�:�2�0�-�3�9�'�0�+�1�#�/�'�2�3�2�,�*�=�*�0�%�)�)�(�/�-�*�1�'�1�"�'�5�*�+�)�9�/�)�+�'�!�,�/�7�/�%�0�%�*�/�8�)� �.�'�*�,�-�!�(�$�%�(�5�&�&�/�'�&�7�9�!�+�&�2�)�,�,�2�(�&�/�0�+�-�6�1�4�-�-�*�1�+�2�#�,�$�)�!�5�.�+�/���'�1�%�)�(�-�+�1�)�,�+�!�(�"�,�/�7�5�0�1�$�*�0�)�1�,�"�9�+�3�-�,�0�-�0�+�.�$�-�+�(�0�-�0�&�5�-�5�.�4�"�%�.�(�+�.�*�)��)�A�+�4�$���/�'�4�&�-�&�,�4�(�-�5�*�?�?�>�+��#�1�9�.�2�4�1�-�)�+�-�+�!�*�1�2�2�1�0�+�2�*�3�(�>�'�9�7�-�-�.�?�1�)�6�$�8�4�,�0�,�5�'�2�)�&�-�+�=�(�!�2�+�2�2�/�;��-�/��;�؀؀ԀҀՀրــԀȀՀҀހ؀ԀԀՀـڀҀրҀڀց&�:�+�0�8�$�0�/�&�1�,�0�"�-�#�:�4�"�+�$�5�+�/�-�<�+�4�>�*�3�'�2�-�-�"�0�'�6�/�;�+�-�+�1�.�,�.�%�)�2�*�,�1�3�-�1�;�/�-��$�,�(�&�'�.�2�%�'�)��&�4�4�7�*�(�5�2�-�.� �+�'�/�%�$�#��/�&�)�,�+�3�.�/�)�5��6�;�#�.�)�,�1�%�$�2�!�$�%�+�/�5�(�+�,�3�-�'�4�+�/�2�+�/�'�1�$�-�.�$�)�2�/�)�1�.�)�7�)��!��)�#�'�(�,�'��"�0��&�<�/�3�7� �3�(�2�-�/�2�4�5�,�0�(�*�$�/�/�+�+�)�!��-�3�(�*�0�"�3�/�+�-�*�-�4�;�*�/�#�3�.�2�*�2�3�#�)�$�'�,�,�-�E�%�/�,�%�/�6�*�'�'�(�6�6�/�5�-�,�3� �)�5�)�5�(�0�2�7�"�'�0�#�&��-�+�1�*�+�&�!�1�7�"�%�0�#�.�-��.�+�,��5�=�/�8�1��.�%�.�*�6�1�7�3�-�6� �&�4�/�'�+�'�0�1�+�-�-�+�2�/�+�+�-��'�*��3�0�(�6�-�9�*�'�0�&�>�*�+�0�)�'�7�4�%�"�)�#�,��@�2�3�%�5�$�3�0�/��*�5�3�.�.�+�"�2�(�+�<�,�+�<�,�-�4�-�3�4�@�3�3�/�2�%�'�!�!�+�.�/�2��1� �+�*�-�&�%�*�,�4�4�'�)�-�&�:�'�)�)�(�.��4�)�'�*�(�#�1�4�3�-�,��'�+�+�,�!�"�+�)�9�%�$�-�,�(�'�:�;�5�$�4�0�)�,�/�*�-�!�3�:�.�&�.��4�.�<�,� �$�:�6�?�$�+�!�"�)��/� �/�/�*�"�(�-�)�*��0�,�!�-�&�.�+�*�3�4�$�;�(�)�$�,�6��-�2�/��9�-�:�8�1�=�7�*�=�2� �)�,�7�*�)�;�'�-�6�+�,��/�#�:�݀Ԁ׀ԀրրԀڀӀɀӀۀԀ܀րـր׀Ԁۀ؀ӀӀЁ-�1�8�%�2�!�-�7�2�-�5�&�(�4�)�/�-�)�,�2�$�(�0�*�$�'�4�4�!�1�1�+��7��2�-�*�2�4�-�+�7�$�"�1�&�3� �)�2�?��3�/�1�&�$�"�'�8�%���.� �&�3�$��0�%�!��.�,�7�,�)�3�.�-�,�1�-�,�4��,�-�"�6�)�0�3�0�%�/�;�1�'�&�)�8�(�+�6�'�5�+�.�/�*�&�(�.�(��0�4�/�2�3�'�)�'�/�3�(�.�2�)�3�,�(�-�'�*�'�3�3�&�)�+��!�1��,�&�'�'�5�'�$�5�&�-�*�2�3�0�/�3�#�0�%�-�!�5�#�%��(�'�)�4�/�(�/�,�4�+�$�3�7�3�5�(�&�&�!�&�,�1�)�4�4�#�&��)�,�-��'�%�&�0�(�*�3�5�'�/�7�0�#�)�0��1��(�(�+�$�/�1�/�$�)�,�,�6�%�"�,�.�,�6�7�$�0�)�/�+�4�"�-�1�0�5�-�4�<�(�2�.�*�$�1�+�4�4�/��%�-��.�%�0�0�!�$�(�/�$�)�(�)�+�/�#�+�%�*� �'�-�4�&�/�8�2�2�+�.�-�0�(��,�*�.�,�#�!�*�&�)�.�6�1�*�#�2�5�.�'�4�2�1�-�-�/�*�'�)�A�'�$�-�,�8�+�.�+�.�&�*�/� �/�/�+�6�(�/�4�,�0�6�!�&�*�/�-�#� �%�2�-�+�.�!�1�*�6�/�%�"�1�!�"�+�&� �7�-�-�0�:�)� �'�*�/�+�.�*�7�'�-�-�/�/�5�-�0�-�0�8�/�>� �'�1�3�0�*�(�-�#�7�+�'�%�0�/�%�(�!�'�'��1�/�,�6�"�#�/�'�)�+�"�+�*�%�1�&�6�#�%�1�,�%�+�2�2�-�)�2�"�(�%�)�&��/�,�>�4�3�/��5�&�!�!�6�(�*�$�)�'�&�)��9�)�'�.�)��6�3�-�*�#�(�/�3�4�"�)�8�7�/�0�7�1�7�2�=�-�3�2�;�9�؀݀ـրрҀ؀ـрŀπԀӀ؀ڀ׀ـӀۀڀՀ׀ڀЁ6�8�7�+�'�/�;�1�1�(�+�7�)�-�)�,�9�&�)�.�7��1�&��"�)�.�$�;�)�*��?�"�&�#�(�6�#�%�3�,�&�+�-�8�6�.�,�-�%�'�5�3�3�/��.�/�:�7�-�2� �0�,�%�1�,�(�*�2�/�!�)�$�3�(�&�7�!�-�0�(�$�7� �$�1�-��6�+�&�"�.�(�%�!�'�/�!�+�%�)�2�3�$�'�/�$�&�'�%�6�)�3�?�$�'�*�)�%�*�7� �ځ:�0�)�(�2�4�"�$�'�+�,�4�/�$�/�6�)��,�"�1�/�+�4�0��:�$�2�5�+�.�.�3�+���=�(�;�'�7�1�+�$�.�-�$��3�'�,�4�5�0�/�2�&�:��+�#�3�*�5�"�!�8�"�+�)�0�-�,�*�'�<��5�6�#�&��8�+�0�0�!�4�7�<�7�0�/�)�*�6�5�4�7��/�<�/�&�'�/�-�.�2�4�7�2�5�+��#�5�,�,�#�0�+�8�*�.�-�"�.�3�,�5�+�-�+�(�*�,�)�,�+�"�$�#�*�,�'�+�"�7�7�&�1�&��@�5�+�2��?�2�%�-�/�/�%�(�:�-�+�.�,�(�*�)�$�6�,�'�)�4�,�-�)�)� �.��%�1�%�2�!�,�5�!�+�&�0�,�-�(�8�"�*�*�/�.�7�7�4�2�7�<�.�%�*�/��*�'�-�8�-�%�5�2�'��+�3�+�*�/�$�'�)�*�7�-�4�,�*�-�3��'�.�2�&�2�,�-�+�/�1�!�-�+�"�0�8�+�)�%�.�0�(�(�!�3�7�3�0�-�/�)�%�)�*�!�(�/�(�(�1�%�.�'�5�)�2�%�1�-�?�*�)�(�,�1�.�.�7�2�"� �'�#�#�0�/�/��/�(�6�)�/�*�1�/�2��7�'�*�%�'�/�0�,�+� �/�8�&�8�1�6�1�)�6�0�5�$�)�/�0�%�7�)�2�0�6�+�1�,�5�(�)�+�:�4�2�4�4�6�&�6�7�:�7� �/�*��#�*�!�3�2�,�׀׀ۀԀԀۀրЀրÀրՀրۀ׀ـՀ׀ـ׀؀ԀӀہ#�,�1�.�'�-��/�.� �/�-�3�%�%�-�$�3�%�4�+�2�"�)�&�4�1�/�$�.�+�%�.�7��*�*�-�3�$�,�$�.�#�(�'�!�)�+�2�/�,�3�(�9�*�2�/�+�1�-�.�+�7�+�!�,�&�!�*�.�3�3�.�*�3�,�*�$�0�1� �$�-�3��/�0�7�3�'�-�+�%�)�'�/�/�9�*�.�0�+�%�%�-�$�.�%�-�&�#�-�-�+�3�.�*�)� �'�)�;�-�5�+�7���@�<�8�+�7�-�%�.�$�$�0�,��!�(�5�1�,�7�'�(��*�4�&�5�/�0�&�'�.�$�/�'�,�,��,�+�1�7�)�1�.�.�/�!�<�7�/�*�&�0�*�+�0�#�#�)�&�3�&��)�$�.�:�.�1�/�"�'�$�+�'�+� �4�(�+�(�'�5�2�&�&�2�*�2�)�,�&�1��&�2�A�1�-�&�)� �0�#�5�%�*�A�"� �*�'�3�&� �(�6�0�#�0�%�.�4�'�+�)�/�7�%�6�/�4�-�-�-�>�)��%�3�(�,�'�(�2�0�#�3�+�#�4�4�5�8�.�+�"�+�-�'�'�&�%�&�&�'�/�(�&�9�3�(�5�1�,�-�7� �&�<�&�+�%�-�-�9�/�,�+�-�'�/��5�+�/�&�,�-�0�#�;�.�/�)�)�*�'�*�/���*�'�/�5�'� �-�,�5�*�-�0�0�"�/�-�*�5�8�4�3�5�%�3�)�8�(�%�)�&�2�7�0�0�E�2�-�)�*�-�0��7�7�-�0�8�0��,�+�'�'�!�,�9�3�)�3�%�+�0�&�3�#�(�/�@�/�/�/� �(�(�/�/�'�3�&�/�,�,�2�'�4�1�6�/�5�(�*�2�5�'�+�2�4�4�-�/�3�2�<�6�+�/�(�*�0�"��'�*�)�%�%�7� �2�&�+�2�*�2�3�1�'�5�/�+�3�)�#�"�6�<�!�4�*�'�/�*�)��7�.�0�/��(�:�-�5�1�/�6�,�+�5�4�*�0�4�.�8�4�1�,�+�9�(�/�րԀ؀Ҁހڀ׀؀рʀ׀؀ــ݀ҀՀՀӀրҀ܀рׁ5�7�A�/�0�%�)�&�-�1�+�0�5�*�'�#�+�/�3��8�&�+�)�%�'�$�/�/�+�1�6�#�)��+�0�3�1�,�+�%�&�2�=�-�-��&�2�&�/�-�-�3��<�1�*�9�2�&�'�0�'�9�/�:�)�)�!�/�#�-�3�/�6�'�2�0�0�'�)�6�2�+�0�5�-�:�.� �5�-�2�#�%�+�-�-�*�*�)�$�/�$�(�0�7�)�$� �)� �-�"�*�#�0�2�)�2�)�3�1�.�5�>�;�-�-�-�B�3�/�8�-��*�&�9�-�)�(�%�*�*�.�+�.�)�&�'�,�6�+��3�(�%� �/�1�)�/�1�,�)�"�,�(�(�)�$�(�9�)�&� �%�,�/�*�'�.�3�9�1��!�%�/�&�%�)�/�1��%�/�,�1�4��.��&�2�!�-�5�-�/�'�3�1�2�-�'�&�.�+�$�'�+�/�&�3�&�-�7�5�)�3�&�"�+�$�%�3�%�0�(�&�7�3�.� �,�%�/��'�0�/�)�&�)�,�+�%�8�&�+�<�6�)�.�,�/�(�0�6�(�)�+�6�.�6�+�*�(�/�+�+�)�%�1�'�1�5� �2�'�'�4�'�&�-�0�9�*�)�-�/�/�1�7�.�1�-�)�0�&�$�(�0�+�6�%�$�%�+��#�)�0�*�/�0�'�,�0�,�&�+�/�*�%�%�)�2�.�+�5�!�8�$�3�"�9�4�%�.�-�)�2�6�-�5�/�*�'�=�3�6�&�$�+�,�)�.�&�3�$�*�6�9�*�$�(�#�'�3�"�-�%�)�3�-�%��,�2�#�(�,�*�/�2�-�)�+�(�7�%�0�-�,�:�(�)�1�$�-�0�*�1�5�"�&�$� �/�/�/�,��8�:�,�.�2�-�,�-�2�1�)�%�%�+��&�*�#�)�+�)�-�9�'�&�%�)�*�%�(�1�-�7�1�8�-�-�-�!�,��-�#��5�.�+�4�>�"�)�0�$�2�&�&�(�,�6�%�)�1�#�1�*�%�0�+��1�(�;�%�7�3�0�%�3�+�+�@�)�1�=�Ӏ׀ۀՀـ׀Ӏ׀ՀɀӀրՀــՀҀ؀ـ؀؀׀؀ҁ4�/�"�>� �/�@�)�-�/�8�4�.�/�3�*�'�-�$�=�)�/�(�(�/�0�<��.�:�1�,�4�+�4�/�.�-�.�6�/�!�-�1�-�.�*�,�*�$�:�'�'�8�+�&�/�1�(�<�+�.��F�.�&�$�3�3�,�/�/�)�%�+�(�%�0�-�<�,�(�5�&�1�1�0�1�(�9�+�1�/�6�;�#�.�$�+�,�8�8�$�-�7�)���+�*� �/�5�3��4�)�6�,�,�(�(�6�(�1�4�/�(�)�-�:�7�/�2�+�*�7�4�&�5�+�&�*�)�-�.�1�=�'�)�-�5�*�7�5��,�0�'�$�2��6�.�-�$�/�.�'�*�6�+�-�$�5�)�9��#�'�#�0�.�*�,�7�/�-�)��&�,�-�"�&�!�&��(�1� �+�+� �-�1�/�'�<�.�'�%�)�/�.�*�-�3�*�*�*�(�3�5�2�)�7�&�3�*�-�@�.�4�4�*�&�"�)�1�2�(�7�.�+�7�5�3�-�/�/�&�3�2�3�)�)�%��0�+�"�-�,�,�)�:� �)�0�/�+�9�(�/�.�/�.�"�9�-�7�0�(�!�+�-�%�'�,�(�/�4�.�"�,�<�.�0�$�+�!��)��3�1�2�4�"�-�)�%�'�-��8�&�-�6�$��&�'�0�'�7�7�*�)�.�)�/�+�#�%�(�!�6�%�(�+�'�$�1��4�3�'�(�+�.�-�+�+�+�3�(��7�+�%�/�$�*�-�"� �)�/�2�+�-�.�1�)��$�6�3�=�&�(�)�.�*�0�$�)� �+�+�,�-�*�&�,�3�0�4�+�1�3��1��5�+�$�*��"�,�*�&�-��.�0�(�@�-�+�4�+��(�)�+�-�'�$�1�.�)��*�)�;�+�'�'�3�+�$�0�.�!�.�,�-�-�0�(�3�1�2� �/�1��0�=�!�#�.�.�/�>�0�2�&�'�/�+�+�(�3�6�0�&�1�-�+�7�=�(�1�6�-�7�(�4� ��3�6�1�6�&�"�4�;�5�-�8�1�#�*�+�)�#�܀Հڀր׀ڀԀՀրŀ׀ՀԀҀ݀րԀрրՀӀԀՀԁ'�0�9�5�'�$�)�8�,�;�#�5�1�3�"�@�1�,�+�1�,�'�4�"�1�-�2�2�,�/�1�/�(�7�=�"�0�5�1�)�$�'�:�.�$�(�2�4�,�4�,�,�2�2�4�6�)�0�(�5�*�!�;�(�!�,�3�3�(�5�,�.�+�!�,�/�)�*�1�)�,�&�4�*�+�2�0�,�$�1�+�$�0�*�/�&�0�'�5�!�2�-�)�/�*�0�%�9�.�(�;�7�.�2�2�%�+�(�#�+�.�/�%�+�.�.�5�7�%�2�&�'� �1�&�;�0�'�*�&�$�-�/�-�,�!�,�%� �(�*�3�/�5��3�-�"�+�%�2�&�'�3�)�)� �%�&�,�&�)�-�#�%�$�*�(�&�&�(�7�0�1�+�-�1�*�)�+�&�5�1��-�.�%�'�>�$�,�8�+�"�)�%��1�<�/�,�5�&�-�/�.�-�(�%�-�C�"�3�'�9�'�@�2�9�(�.�-�$�$�#�"�0�+�-�-�"�-��7�(�*�6�)�%�,�%�(�2�,�4�+�)�3�+��#�3�-�-�+�3�+�&�*�$�&�)�1�7�-�)�)�$�<�1�+�5�+�3�+�*�&�-�,�*�/�#�"�.�8�.��)�1�*�-�#�/�+�9�*�,�2�(�0�+�5�+�8�5�*�4�*�3�&�(�.�2�*�*�2�9�-�9�1�%��7�'�3�1�#�8�-�,�6�,�%�4�8�/�&�.�*�)�3�/�.�2�*�%�!�+�;�/�&��/�1�%�/�&�!�.�'�,�+� �)�2�*�5�/�/�$�,�/�1�1�7�.�6�&�:�#�*�0�1�3�(�,�(�+�3�'�/�)�.�)�3�(�*�*�)�,�"�-�'�%�"�&�/�+�/�2�&�-�$�1�-�.�.�0�+�/�'�6�2�)�(�.�$� �'�'�&�5�1�,�0�0�7�+�0�+�-�-�/�.�-�.�/�#�+�*�&�3�'�-�"�#�+�%�+�0�#�.�+�0�"�/�%�+�'�1�0�1�,�2�%�&�.�;�)�-�-�0�5�$�/�8�$�.��)�4�'�%�&�/�.��!��(�0�,�ՀـԀՀ׀րր׀ӀĀ؀׀րЀπՀӀ׀׀Ӏڀ׀Հҁ9�+�.�+�$�*�5�4�'�/�+�+�0�+�.�$�"�9�,�0�-�<�!�/�)�%�-�,�'�1�&���*�:�5�(�8��1�8�"�$�+�0�4�*�)�+�0�)�/��3�)�'�-�#�3�.�0�/�*�,�(�+�/�,�0�"�+�-�.�5�'�-�2�3�)�+�.�*�+�4�4�2�/�;�3�,�8�C�-�'�$�4�/�/�,�2�2�'�&�7�3�/�-�)�%�)��2� �0�&�8�-�/�'�$�,�&�.�,�3�)�7�4�+�;�7�+�*�0�4�"��*�:�2�-�1�+�*�!�+�*�+�+�%�+�(�-�+�)�,�4�5�.�4�*�4�;�"��%�,�*�+�/�/�+�,�"�&�.�*�/�-�*�>�(�(�7�*�(�(�'��%�#�/�&�(�*�+�(�5��+�%�*�"�'�8�3�*�>�1�?�/�%�.�+�7�'�4�$�/�,�.�>�%�!�.�.�2�2�/�(�)��&�.�%�6�0��8�0�5�,�3��$�%�%�4�)�%�+�-�+�.�5�*�*�(��.�,�,�'�2�?��.�-�4�+�'�*�1�)�4�)�%��)�:�)�!�'�3�$�-�/�8�+�(�/�-�"�0�-�*�+�7�2�/�>�-��.��/�:�9�#�(�-� �0�/�1�%�/�,�-�2�6�*�0�#�(�/�1�0�+��8�)��&�5�!�-�*�,�.�2�'�<�.�,�&�.�(�)�*�1�/�7�*�%�/�'�(�,�(�-�:�5�/�3�(�.�7�3�'�#�9�-�%��1�6�(�5�0�-��)�(�,��*�-�"�)�)�4�,��6�0�-�$�(�+�2�4�1�1�/�)�'�/�4�#�)��2�/�$�%�*�/�#�3�(�.�<�+�=�,�8�4�(�2�3�$�*�2�$�*�5��1�*�7�+�*�%�7�.�'�!�-��"�#�2�*��&�2�,�/�+�(�)�5�9�0�-�6�1�+�/�6�+�(�1��-�(�(�'�-�0�#��*�.�/�%�*�%�7�7�*�;�+�&�.�(�1�,�%�.�)�)�6�&�:�.�3�3�)�'�7�׀ۀ؀Ӏ׀Հ׀׀ـĀ׀׀ـӀ׀ــՀրՀՀӀ׀ׁ%�%�*�"�)�5�'�2�;�6�;�2�0�5�*�)�"�'�,�%�1�<�'�*�4�3�8�7�)�5�<�&�+��.�0�)�(�,�%�*�2�0�5�&�2�2�0�+�&�(�(�1�%�%�4��7�%�*�=�#�6�/�)�1�*�.�0�)�&�*�@�%�+��0�(�)�0�+�)�(�+�0�4�/�'�-�/�'�3�)�(�.�-�4�3�'�/��/��2�-�6�2�)�3�!�&�+�"�1�-�'�,�&�/��$�3�$�� �0�)�-�+�#�#�#�/�&�,�&�$�6�%�0�.�-�2�/�2�+�!�$��(�+�)��5�6�-�*�+�8��,��5�%�/�9�2�.�(�6�,�%�.�-�,�4�)�1�%�:�'�-�%�9�0�-�1�<�!�2�/�1�)�&�)�7�'�#�3�*�.�,�-�'�7�:�/�2�(�/�1�9�"�*�%��.�7�*�4�(�(�,�5�.�*�-�1�*�5�'�'�/�*�%� �1�)�#�%�1�/�0��9�'�+��%�-� �-�:�.�(�8�!�*�/�.�(�4�.�$�+�3�,�.�.�.�4�)�2�+�6�1�#�#�4�/�(�@�/�0�3�5�&�/�)�/�,�+�.�&� �4�/�)�2�*�$�-�0�(��%�*�7�)�1�!�%�<�/�,�5�,�*�/�#�1�9�0�*�/�3�"�5�0�"�:�.�(�1�%�0�/�#�#�0� �,�4�9�-�4�*�-�4�'�!�+�1�(�8�)�.�3�&�(� �#�)�*���'�)�+�%�=�:�*�0�#�1�$�4�,�)�-�0�1�(��-�0�'�(�/�'�+�/�.�.�,�;�0�/�9�%�'�/�1�0�-�/�#�7�+�#�1�/�1�5�.�*�)�1�'�6��4�/� �/�'�#�2�2�+�0�'�.�'�*�,�/�2�8�3�2�5�0�(���5�.�-�%�9�3�=�6�1��&�-�'�1�@�3�'�5�#�)� �&�!�,��0�%�"�.�/�2�$�*�'�'�*�4�%�+�-�/�1�)�7�#�(�"�-�%�*�&�3�/�(�6�1�:�3�4�'�!�,�0�2�*�Հ׀ր׀Ԁ׀ـՀր€ـۀ׀ր܀ӀـӀ׀ՀۀӀ׀ہ'�2�6�-�7�/�!�,�/�+�7�.�3�!�+�*�"�<�,�2�4�,�)�4�+�(�1�%�*�,�*�.�)�/�)��.�-�4�"�4�-�;�*�0�/�$�,�,�#�"�-�,�1�)�)�$�.�.�2�6�.�)�1�4�1��$�*�2�(�+�&�:�'�$�%�(��"�$�$��,�/�,�)�*�+�2�(��5�-�%�2�!�'�/�:�,�<�'��2�7�-�/�.��#�)�,�*�1�%�3�1�6�'�*�,�&��0�-�2�)�3�)�.�0�-�+�+�*�0�$�"�/�4�0�:��1�%�(�-�.�/�,�,�&�/�1�1�-�&�3�"�4�)�,�1�4�9�&�-��5�+�1�+�/�+�-�)�3�0�.��8�.��2�+�.�/�2�*�%�1�)�!�0�-��(�0�*��-�&�'�1�/�.�$�#�(�3�&�/�1�5�&� �2�-�(�*�0�)�%�/�2�/�&�:�.�0�1�"�3�!�"�&�'�>�1�3�/�0�*�$�#�!��7� �(�0�.�,�,�*�%�"�4�?�;�/�(�-�4�<�;�"�(�"�1�&�2�,�/�&�+�!�/�-�'��7�6�2�(�*�,�2�5�.��0�%�%��(�(�.�,� �>��%�!�+�3�/�5�2�3�5�$�*�*�/�1�(�3�#��.�3�,�%�2�*�+�1�.��-�+�1�1�(�1�-�,�'�#�$�$�,�'�3�1�*�5�$�.�'�*�#�2�%�4�=�)�-�(�8�3�.�/�+�'�.�/�/�'��,�)�)�1��-�)�)�%�1�8�:� �9�!�!�"�0�.�3�%��;�.�"�,�/�&�&�-�.�(�?�1�,�,�+�.�+�4�5�9�-�.�2�3�)�(�*�'�*�+�0�6�'�1�5�2�0�$�-�4�)�(�1�.�/�7�-�3�6�5�0�-�8�4�8�3�(�4�%�3�)�6�/�7�9�0�!�1�+�'�0�-�2�9�)�(�8�1�.�'�%�+�5�.�1�9�3�1�-�.�'�%�0�*� ��.�1�0�+�*�4�%�3�6�#�.�8�2�/�7�)�3��>�9�3�4�Հ؀ӀԀـ΀Ԁ׀рɀ׀؀ՀՀԀЀրـ׀Ԁۀ؀؀ׁ.�(�3�8�+�9�7�%�-�-�,�9�7�(�+�0�6�)�#�1�.�,�-�2�1�)�.�,�)�6�:�/�+�,�,�%�2�'�(�2�.�(�:�#�+�/�&�*�,�%�&�+�/�)�#�*�2�*�3�7�%�(�*�"�)�+�5�!�/�%�0�+�6�+�.�/�,�-�0�)�2�7��(�+�-� �'�&�2�+�!�H�/�/�2�8�6�0�*�7�#�-�'�,�7��8�1�%�2�0�,�1�#�3�3�=�%�1�1�@�$�%�*�)�,�+�)�(�'�2�&�"�;�(�#�2�)�#�'�3�0�*�*��4�4�(�)�*�-�'�2�0�,�0�.�+�!�*�!�*�4�+�8�+�0�%�*�$�'�(�.�(�3�/�/�/�)�C�)�#�1�/�*�3�4�:�%�%�)�)�2�2�.�(�*��)�-�6�,�&�3�#�5�%�3� �2�%�1�$�.�5�-�+�4�0�%�)�-�&�&�3�&�7�/�0�2�1�'�2��5�"�/�#�#��4�#�)�'��4�6�/�/�5�8�5�0�'�.�/��(�.�$��,�*�:�3�4�#�+�*�+��,�0�)�'�+�"�1�#�3�)�7�,�'�&�3� �%�(�+�/�0�+�/�8�4�3�2�'�/�+�/�0�3�1�0�-�+��)�7�-�5�&�&�7�$�+�'� �)�'�)�&�)�*�/�*�3�*�%�-�)���(�.�%� �,�1�%�$�-� �/�*�,��0�-�-�2�@�#�&�4�$�,�1�+�-�/�0�3�.�6�-�+�/�*�!�$��$��1�'�'�9�6�.�3�(�1�4�.�8�%�8�+�2�3�)�-�4�/�&�2�#��.�*�+�)�0�%�,�$�1�1�(�7�(�'�2�0�2�,�)�5�5�/�7�(�1�6��#�-�+�#� �6�5�7�)�&�2�&�&�+�5�.�(�%�9�0�-�"�"�-�$�3�5�2�'��(�7�1�&�0�)�&�,�1�&�/�'�$�.�3��,�5�)� �-�*�+�(�"�1�-�.�-�5�-�4�2�,�&�<�&�(�3�3�$�'�-�&�,�/�#�'�3�%�)�3�%�ЀҀ׀ԀԀՀ؀Ӏրƀ܀Ӏ׀ــڀҀۀππԀπ׀ҁ*�/�3�3� �%�$�+�0�+�:�8�0�:�.�%�)�)�.�.�8�5�.�+�1�9�*�/�$�:�)�4�.�;�#�/�%�)�+��7��+�&�/�-�,�4�%�%�-��+��;�.��%�5�)�)�+�.�'�1�$�-�$��/�#�3�6�,�'�+�*�&��#�*�/� �7�2�#��%�,�/�-�"�)�(�0�9�(�/�1�?�5�5�1�2�#�)�#�/�#�'�/�<�!�+�+�.�(�,�%�$�*�3� �#�!�1�,�%�/�,�*�/�,�/�(�5�+�(�.�#�)�&�(�0�,�/�0�7��.�&�%�)�.��%�1�"�*�)�2�9��(�+�/�+�2�*�'�0�-�4�+�!�/� �%�"�&��-�/�'�1�*�4�1�=�$�5�%�/�.�(�%�(�(�-�%�4�1�+�(�)�&�5�0�8�)�1�$�)�=�5��%�'�1�)�/�4�(�4�*�/� �*�-�&�5�-��4�/�,�� �)�.�%�,�8�B�"�"�.�'�4�*�+�+�1�)�0�#�/�$�,�/�%�)�.�2�"�'�3�-�.�!�/�;�-�7�'�2�+�+�$�8�)�5�)�0�#�*�(�(�9�0�(�/�&�(�+�*�-�6�&�1�(�3�#���-�.�/��3��'�0�<�(�%�1�2��/�?�5�+�4�0�&�0�)��6�2�5�/�6�(�"�*�2�$�(�7�&�1�0�4�/��3�*�-�)�*�$�4�*�)�+�&�,�*�9�)�(�(�(�3�%�$�/�*�"�7�/�+��4�4�2�!�(�*�'�2�'�;�'�(�+�"�&�3�'�(�3�4�#�/�(�,�7�8�1�1�5�)�8�"�%�(�'�3�2�%�+�-�9�1�/��.�'�1�&�5�+�2�,�+�/�6�)�-�+��(��0�$�+�#�'�'�:�#�'�/�*�*�-�'�*�/�/�1�,�4�6�*�(�!�6�#�)�$�7� �+�1��*�*�$�/�*�3�*�)�1�3�*�7�5�<�+�(�4�0�*�/�)�F�-�3� �1�;�-�2�-�)�3�)�3�+��-�;�0�1�-�2�,�ҀҀրրր׀׀ՀՀÀ؀Ҁ׀ր؀ӀԀրـڀ؀׀Ԁځ-�,�0�.�.�5�.��/�)�*�1�/�0�*�-�0�#�2�+�/�%�4�-�/�-�4�)�3�$�&�&�(�,�"�'��%�1�*�+�*�1�.�,�5�/�2�+�*�1�+�.�8�1�&��.�%�,�0�#�1�%�$�1�,�*�$�.�7�'�*�$�7�'�7�,�$�@�*�!�)�.�8�(�/�/�>�#�,�*�+�0�'�+�>�2�4�/�*�0�:�5�1��0�(�$�)��/�2�)�+�2�*�!�(�4�0�%�-� �+�8�,�5�$�,�*�.�-�,�%�2�'��+�'�*�'�-� �)�2�6�'�3�-�3�*�+�"��4�#�7�9� �%�(�!�'�"�(�:�6�!�#�-�/�/�.�!�#�2�&�)�9�4�+�6�6�%�!�*�3�9�/�0�,�1�=��+�*�-�-�&�7�4�/�*�6�(��)�=�?�)�+�)�,�.�'�3�0�*�;�.�<�+�.�/�6�!�-�%�7�/�1�6�%�$�5�,�+�%�4�;�8�0��6�+�-�4�$�'�#��!�2�-�*�,�*���*� �*�%�!�3�0�#�1�2�3�0�.�'�&�3�*�&� �.�$�<�+�'�+�*�5�/�+�5� �)�0�<�0�*�,�.�0�(��-�.�(�/�5�/�7�1�.�#�.�4�-�+�(�9�<�8�2�;�6�.�1�)�/�(�5�7�4�'�4�-�*�+�$�.�;�8�.�0�6�3�+�(�9�(�%�2�+�6�9�0��.��3�)�'�.�*�$�-�6�9�5�%�.�/�'�-�$�+�+�+�#�)�!�(��#� �-�3�1�1�2�%�-�6�,�'�*��1�-�&�-�1�:�"�)�"�+�+�%�"��3�)�+�*�2�2�7�)�3�%�+�#�/�*�+�"�*�'�&�/�'�:�-�9�!�<�(�0�(�2�/�-�-�#�(�1�6�#�&�*�%�+�:�/�3�"�5�(�'�#�)�'�7�7�8�7�0�1�"�-�)�"�'�%�$�/�$�9�*�1�,�/�<�,�)�*�5�1�,�)�/�-�1�4�6�)�*�$�#�%�%�.�+�)�+�"�1�3�6�;�+�*�%�.�ЀӀՀр؀Ҁ؀ӀԀǀҀԀ؀ՀրӀԀ׀ڀЀ׀Հ؀Ձ-�+�!�1�5�/�4�0�0�+�+�4�+�1�(�8�2�*�2�'�!�8�;�=�*�&�*�>�7�0�%�&�:�$� �0�#�%�*�1�-�-�(�%�+�0�&�"�*� �+�3�-�)�)�&�&�)�)�-�$�.�*�9�/�.�0�-�+�<�'�0�#�-�-�5�3�#�)�;�,���#�/�)�!�6�7�1�+�)�/�0�*�2�7�1�/�5�*�#�<�"�4�0�/�0�-�,�4�>�%�,� �1�2�,�6�"�,�,�%�/�+�5�)�/�-�(�1�,�7�*�)�3�&�,�+�$�)�3�/�*�(�(��2�;�4�'�.�3�$�"�1�8�'��5�+�$�3�3�(�7�6�1�/�0�&�&�9�%�*�4�&�1�,�0�(�,�+��0�-�,�!�'�#�4�3�#�*�1�,�6�4�4�4�5�/�3�+�.�+��7�/�3�.�-�+�5�,� �(�5�+�8�-�!�=� �(�=�2�&�'�#��2��$�)�,�*�8�%�/�.�"�+�.�/�-�#�1�1�7�"�4�2�'�&�)�/�"�1�6�+�#�2� �#�0��%�)�#�*�%�8�%�5� �,�2��+�/�3�*�%�*�2�)�4�=�%�/�$��+�2��2�)�&�&�8�)�/�(�1�%�.�$�&�"�8�)�4�(�9�1�$�1�&�"�)�.�)�*��/�1�,�#�*�4�-�/�0��#�.�,�.�2��3�(�(�)�2�-�-�3�(��+�/�%�2���4�/�0�'�.� �6�,�/��)�5�1�)�&�'�%�'�4�@�*�(�/�'�)�-��*�&�+�(�'�4�+�4�+�'�6�,�&�$�'�,�-�,�%�4�!�.�(�-�,�)�.�'�/�(�/�*�/� �2�7�*�4�%�$�6�.�+�2�4�.�.�/�0�'�2�%�1�#�&�&�-�(�0�'�*�"�-��.�,�1�'��(�/�(�.�6�&�'�,�.�!�(�/�)�3�(�4�3�-�!�1�'�7�1�+�!�4�2�$�'�7�$�8�-�+�.�:�*�/�-�.�8�4�/�)�1�'�'�$�-�0��8�%�3�*�4�0�-�6�рـԀ׀ҀۀҀրԀǀՀҀۀۀ؀׀Ԁրـ׀׀ր؀ׁ,�-�+�:�2�3�%�6�3�-�)�"�4�2�;�8�,�3�3�2�0�'�+�(�*�3�$�$�.�/�,�B�)��/�&�)�;�$�.�%�7��@�-�7�(�"��'�/� �-�-�8�&�%��9�2�6�-��0�.�0�� �A�#�7�3�9�4�8�.�1�1�5�!�)�'�$�@�0�!�0�%�$�*�*�=�)��0�*�$�)�2�,�0�%�+�>�*�-�2�9�9�/�&�%�-�'�"�-�1�+�!�*�0�$�$�"�%�A�1�?�-���+�2�$�/�K�%�:�2�*�/�#�-�$� �/�#�2�0�$�%�/�0� �%�-�5��+��6�1�+�-�%�-�(�+�1�2�-��9�.�>�'� �1�4�2�#�+�0�7�9�'�(��/��0�+� �%�,�-�+�&�/�<�/�1�5�(�.�'�5�0�,�/�"�+�)�5�+�4�'�#�(�2�.��*�,�!�-�$�,�-�1�3�,�'�1�,�'�2�+�'�/�+�%�$�3�)�3�*�1�%��/�*�+�/�*��2�)�:�)�$�)�7�-�+�3�(�=�"�*�+�6�6�(�+�3�(�'�:�*�$�0�-�-�)�+�.��2� ��&��.�-�%�1�,�8�'�-�)�+�,�*��*�4�*�,�&�#�-�.�2�%�&�*�(�#�*�*�2�/�"�,�'�,�3�8�/�1�.�%�$�%�)�/�/�0��!�"�'�,�)�-�#�+�*�0�'�!�$�"�+�%�$�&�+�(�,�=�-�'�1��7��.�(�$�.�'�-�'��.��!�$� �&��0�&�0�+�;�7�/�#�&�(�,�.�/�%�.�7�$�*�1�5�0�+�9�.�!�2�2�#�.�0�)�/�*�/�0�5�-�(�@�.�0�.�,�8�@�'��0�.�(�*�+��/�,�0�:�)�/�-�;�"�8�*�&�1�1�:�3�1�/�"�.�+�$�-�!�4�/�3�(�(�/�.�*�!�*�1�4�@��1�8�'�5�"�)�7�@�4�1�1�1�D�0�+�3�(�*�.�'�7��2�/�*�&�7�%�.�*�4�<�)�.�)�(�.�݀Ӏ؀Հ݀ԀՀـրƀӀڀـ؀ۀӀ؀րҀրЀ؀ӀՁ<�*�$�6�"�8�+�/�!�*�$� �3�&�<�0�/�%�$�,�)�&�$�7�3�.�5�.�*� �/�%�7� �*�<�&�1�2�.�!�.�#�!�'�#�/�2�)�&�7�%�#�6�1�1�,�/�1�)�6�9�#�6�0�8�1�4�/�)�(�#�2�/�,�.�*�,�4�.�"�,�3�(�1�&�&�+�1�.�)�+�6�$��.�1�6�/�,�5�7�1�,��3�#�E�*�)�4�%�8�*�$�-��#�%�4��7�/�7�0�1�1�-�1�"�4�1�4�1�'�"�3�+�*�#�.�>�'�5�&�'�-�)�.�#�2�0�.� �)�0�2��,�+�!�+��%�/�(�/�(�+�"�6�0��-�.�'�7�!�)�&��,�,�*�#�/�)�.�$��1�1�1�-�.�&�)�7��&�4�(�0�/�!�*�7�'�;�.�4�*�#�1�8�/�-�-��$�-�/�7�0�'�,�#�-�)�7�2�1�*�!�5�(�)�+�'�"�+�,�*�0�,��2�5�/�/�3�)�5�8�)�-�%��'�7� �+� �6�"�.�'�'�-�&�3�$�.�,�&�+�,�/�3�(�6�(�)�)�&�%�2�0�*�*�#�'�'�)�0�9�,�0�*�*�$�,�3�*�0�3�.��%�9�+�&�.�0�4�2�5�&�-�'�%�3�3�4�"�&�'�,�/�,�*�-�%�'�,�=�+�!�(�*�-�.�'��)�1�,�'�%�*�-�$�&�'�0�/�8�3�1�.�8�$�(�-�)�'�0�(�6�.�+�*��#�*�)�*�1�%�6�6��3�2�*�)�.�.�,�2�1�*�+�4�5�#�*�(�4�:�0�#�#�(�1�+�,�)�,�+�#�2�!��(�2�1�+�+�7�*�(�'�:�.�0�%�-�%�0�!��%�<�7�#�.�.�,��+�0�+�#�;�&�+�*�*�.��/�6�+�$�'�&�;�-�+�1�/�$�#�5�0�0�(�%�&�+�7�)�&�$�)�0�#�*�5�(�#�.�6�)�7�"�6�2�;�,�-�3�'�&�/�-�7�5�5�*�8�8�&�5�%�.�+�0�7�)�3�Հрրր׀ӀـڀҀĀԀ݀ۀҀڀր׀׀؀ڀ׀ـՀԁ/�$�0�$�0�-�%�6�0�2�/�2�0�"�2�-�:�(�/�#�2�1�4�+�'�&�)�'�&�+�/�%�C�%�9�6�2�.�-�+�'�3�"�"�&�(�/�"�4�/�3�+�8�&�0��0�1�(�9�.�8�)�"�6�+�5�5�9�/�+�&�*�B�*�,�4�7�&�-�/�&�3��)�*�0�%�2�(�*�(�5�)�3�(�0�6�&�/��?�)�0�*�%�9�/�'�.�6�'�(�0�*�/�&�7�1�'�*��'�+�)�7�:�2�'�&�0�-�,�-�/�*�4�(�*�/�&�&�.�'�/�+�&�8�0� �'�+�0�1�.�)��8�(�)�3�5� �:�%�&�,�/�,�6�5�+�&��+�)�5�%�!�+�/�.�7�"�*�&�%�+�.�.�/�,��-�:�"�$��-�.�#�!�3�+�)�/�*�1�(�*�2��.�3� �/�&�+�%�)�*�/�0�+�7�/�-�2�#�*�-�,�#�1�7�(�7�4�1�6�*�/�/�(�-�/�3�7�/�A�-�*�7�(�-�)�+�"�'�*�$�%�/�+�:�.�8�6�9�0�%�1�#�.�3�+�&�-�%�2�=�!�7�/�)�2�"�,�&�0�%�+�=��6�%�&�/�/�'�0�4�0�/�3�2�4�(�3� �&�,�.�%��,�6�.�)�&�(�/��+�4�%�'�*�*�&�2�6�/�-�(�-� �,�0�.�'�$�3�)�8�-�)�-�6�2�#�#�5�/�+�!�)�/�-�/�1�5�9�?�?��'�/�+�*�0�8�(�-�0�+�!�9�2�2�.�)�,�%�5�%�/�$�+�3�5�.�5�/�$�'�+�/� �*�"�(�(�'�(��2�*�0�;�,�)�)��-�1�0�*�+� �,�&�0�+�%�)�'�9�)�'�3�'�6�-�+�(�+�8�*�*�.�/�,�/�4�-��&�"�)�/�6�9�/�%�)�,�0�8�'�"�$�!�*�1�%�'�9�)�0�)�)�)�*�;�2�.�3�4�2�0�-�$�+�/�5�&�2�#�)�0�#�;�2�/�,�8�8�3�/�8�3�6�0��1�6�"�-�6�+�0�׀Ӏ׀ۀــ܀Ӏ׀ŀπڀڀڀ؀ҀҀڀрӀـՀՀׁ1�5�6�2�.�,�$�'�3�6�.�.�,�-�-�/�:�5�3�6�0�0�,�2�#�%��/�$�3�,�4�4�1�+�5��,�1�+�1�3�.�B�9�/�*�.�7�0�6�2�#��#�/�#�0�1�/�(� �)�1�&�(�:�4�/�,�4�3�(�-�-�+�'�7�/�(�7�-�7��4�%�)�1�.��!�'�#�8�6�3��:�0�)�2�(�/�/�6�'�1�*�6�7�+�*�*�%�&�'�.�-�+�+�)�)�"�(�@�7�0�*�)�.�&�"�!�<�,�,�,�/�5�/� �1�5�$�'�&�/�,�'��&�0�)�+�(�9�6�)�%�-�"�'�)��4� �.�4�#�#�!�-�1�*�$�6� �*�/�*�)�2�7�/�"�%�%�'�,�$�&�/�0�3�5�3�(�,�&�/�<�(�5�>�&�-�'�0�6�+�)�*�(�'�,�+�5�0�(�'�-��!�)�2�$�)�'�(�-�0�3�5�(�1�%�'�/�'�6�1�3�-�&�'��1��#�$�)�0�1�1�8��2��.�$�6��/�%�'�*�/�'�&�4�*�,�7�0�*�'�(�0�1��*�7�3�*��*�-� �<�3�2�*�3�+��+�-�6�#�4�+�'�2�%�+�/��+�'�8�3�.�'�-�5�:�4� �+�)��(�)�-��(�,��(�5�-�*�0�'�*�,��&�,�&� �'�+�)�#�5�/�;�*�)�)�/�7�8�)�/�4�0�7�"�1�+��(�9��%�%�.�/�*�.�*�)��9�:�(�/�)�/�(�-�.��-�"�9�5�1�&�4�!�6�)�;�-�(�$�+�/��$�+�-�&�1�/�,�%�'�3�0�*�4�3�*�3�'� �%�%�-�3�)�'�/�%�"�+�.�9�/�%�!�/�!�.�+�5�(�.�-�+�/�.�-�-�2�(�+�3�*�.�)�1�'�,�,�-�-�&�3�*��-�1�1��%�0�5�'�,�$�-�(�!�0�#�!�-�)�9��2�.�)�7�"�&�2�#�.�.�0�2�"�$�.�-�8�0�"�,�+�)�*�)�5�-�1�׀րрԀրՀԀӀԀǀـՀ̀րՀڀ׀ր݀րـ׀Ҁׁ/��&�)�/�.�6�#�+�-�=�0�*�2�)�0�=�8�1�/�)�7�'�3�2�-�2�,�+�)�&�&�$�3�1�#�1�-�&�)�%��$�/�-�+�#�!�$�3�-�(�,�0�)�%��+�4�'�$�1�"�(�/�2�-�0�8�6�<�8�"�$�%�+�-�)�8�0�+�*�?�.�1�2�"�'�+�+�/�(�.�.�,�4�4�&�1��(�0�;�0�3�'�1�/�'�M�1�-�3�0�(�0�(�%�0�%�,�+�#�'�7�/�'�!�*�0�/�'�&�(�0�(�7�-�.�$�:�,�<�%�.�,�1� �'�1�'�)�(�&�:�+�+�1�*�+�2�/�2�%�)�1��&�4�;�5�'�1�9�'�-�)�.�2�8�8�+�+�0�.�'�+�(�'�2�*�$�2�(��)�/�2�/�-�/�.�-�2�0��3�7�/�.�7�.�'�)�,�'�0�$�6�%�(�5�4�(�#�,��.�2�"�"�+�3�-�%�8�6�-�)�*�+�(�+�!�#�(�)�(�'�*�4�0�)�&��%�(�"�+�-�5�*�,�.�0�(�/�)�5�&�!�)�*�,�'�+�(�%�'�$�;�*�%�-�+�&�/��3�!�+�%�+� �)�/�)�,�0�,�8�4�/�.�/�<�'�+�#�*�'�/�"�!�/�&�,�*�1�,�#�%�/�1�3�7�=�8�0�4�2�*�9�$�8�)�,�)�1�8�0�.�,�3�(�&�+�-�(�+�*�-�)�3�4�5�1�/�*�-�/�4�/�)�.�)�)�0�*�%�5�+�.�-�#� �+�&�0�#�.�#�,�9�'�!�/�0�%� �)�)�/�+�&�*�1�%�,�,�,�'�%�!�(�8�8�>��(�$�&�1�+�$� �"�3�-�4��)�-�>�"� �*�'�-�3�5�*�,��*�$�"�.��)�3�)�%�'�3��*�2�1�*�%�;��,�"�*�'�(�*�.�3�1�)�-�"�&�@�&�A�-�.�,�)�0�&�+�0�;�&�%�:�$�4�%�/�,�.�-�%��%�.�0�1�#�:�,�'� �%�0�:�3�0�*�%�0�6�0�8� �4�؀ڀրր׀ր؀׀ҀĀԀԀՀՀԀ؀րՀ؀؀׀ۀ؀ԁ&�;��0�-�2�%�6�(�$�"�%�'�3�1�*�)�1�6�5�+�-�8�2�&�&�.�-�,�<��$�8�%�0�;�&�1��6�4�+� �,�%�0�%�,�/�)�0� �2� �3�$�2�0�'�.�+�0�7�$�.�$�-�-�"�'�8�"�*�.�,�8�4�*�*�+�2�)�#�3�*�$�2�+�*�'�,�0�.�"�5�3�-��1�1�/�1�'�+�)�2�&�-�$�.�:�1�)�&�-�1�9�;�!�'�&� �7�'��*�,�,�*�:�%�.�.�%�7�(�%�"�)�,�$�'�'�-�"�-�'�.�/�7�3�'�3�$�*�'�1�+� ��6�#�+�6�'�'�-�*�'�%�/�%�&�1�5�.�/�3�"�#�#�&�1�.�,�.�'�,�*�$�%�!�*�%�$�)�/�*�*�%�'�+�&�%�-�3�(�!��1�#�$�"�1�*�/�-�)�'�8�4�9�/�4�+�)�>��(�-�4�0�'�;�/�%�)�<�-�3�"�5�/�/�)�"�+��'�4�(�5�-�7�(�.�,�-�6�.�(��,�&�(�)� �*�*�2�3�"�/�0�3�'�3� �-�.�.�/�'�)�*�%�6�8�6��'�*�.�4�4�(�'�2�0�:�)�%�!�3�'�-�+�7�$�'�5�4�7�-�%�(�0�0�-�,�,�+�3�'�)�9�%�/�/�0�+�,�*�&��-�1�3�/�(�?�#�*�%�'�-�,�*� �'�+�8�"�.�-�*�6�0�@�/�,�,�.�+� �&�%�*�2�/�1�'�-�"�-�4�8�1�2�*�-�*�+�5�+�4�"�.�5�'�-�%�*�/�3�!�'�0�)�*�+�*�+�1�/�.�,�&�'�/�.�'�3�0�.��+�;�#�2�#�9�4�$�)�<��/�+�%�-�'�-�,�,�1�'�.�'�(�(�+�0�(�"�.�,�)�0�$�5�3�(�1�'�7��+�2�0�*�%�$�,�3�)�"�8�*�&�)�(�*�'�4�%�0�.�>�*�&�1�*�(��2�3�(�7�3�-�1�:�)�*�+�%�8�&�1�,�%�-��-�-�>�)�;�3�+�5�Հ؀ۀ׀ր׀׀׀׀ʀހـՀԀـԀـԀـӀ؀׀Հ؁-�9�(�'�.�1�.�+�-�)�?�0�'�;�/�/�$�)�&�0�6��/�'�0�-�9�+�&�4�'�:�'�-�+�-�#�0�/�,�0�*�)�)��#�.�3�2�)�,�#�/�3�)�+�%�6�/��.�0�:�#�4�-�6�)�6�0�7�5�,�*�1�9�$�%�)�$�,�6�7�.�9�/�3�0�,�*�7�*�-�-��4�#�0�)�*�+�)�&�/�$�3�-�� �(�1�+�'�+�0�)�,�1�&�1�&�!�/�%�&�3�'�2�)�7�*�.�*�4�$�-�$�/�2�8�2�!�>�4�'�&�)�1�*��-�4�'�/�&�&�0�-�*�)�(�1�0�%�-�4�&�5�3�(�-�!�.�*�/�8��)�/�7�*�+�0�/�,�+�+�&�"�)�%�1�(�-�6�3�*�0�$�=�!�6�-�3�6�*�!�-�-�1�*�/�+�&�'�0�"�*�/�"�)�!�.�.�+�'�)�,�#�/�4�3�0�-�'�(�'�6�/�&�#�)�)�+�$�)�5�+��7�-�,�#�.�&�!�%�!��3�'�&�9�'�3�+��+�1�&�-�)� ��!�1�*�/� �-�1�8�#��-�+��.�.��3�+�=�/�-��%�9�&�-�4��-�0�'�!�@�(�8�2�2�'� �'�;�3�*�0�1�*�.�(�+�%�,�-�7�(� �&�.�'�"�(�>�+�/�.�8�3�B�&�'�8�/�,�5�,�3�*�&�(�)�(�#�#�*�3��0�'�$�3�+�)�!�.�(�*�(�/�(�%�8�7�2�1�-�/�(�/�$�6�)�$� �'�"��*�(�7�'�+��$�%�!�$�(�+�1�7�-�-�#�<��4�<�"�'�1�2�*�� �-�*� �)�'�%�*�+�+�"�'��/�0�:�9�(�'�4�%�$�,�3�)�:� �*�0�'�%�)�)�+�(�+�.�5�)�(�(�,�*�$�/�/�)�,�&�4�<�-�0�1��'�.�1�+�-�0�/�.�5�;�%�3�%�+�*�3�/�+�6�2�9�#�-�,�7�&�4�0�@�/�+�)�5�<�-�5�:�/�+�*�*�ԀԀ׀ۀ׀ՀրՀӀɀՀԀӀԀԀ׀׀ՀՀӀ׀ӀՀӁ5�,�'�G�$�+�1�*�/�)��1�4�-�'�&� �)��<�.�A�0�3�6�,�+�)�*�%�-�)�3�3�.�+�9�)�3�3�4�7�)�$�%�(�*� �#�1�)�5�*�;�7�)�+�*�'�*� �0�-��-�$�(�&�&�9�+�-�)�3�'�2�1�2�,�*�&�(�%�3�+�/�+�-�/�/�(��'�"�-�/�.�,�(�)�%�0�(�3�"�1�/�� �"�"�,�#�!�'�$�'�3�2�3�(�,�;�.�.�*�,�0�&�&�+�#�8�'�+�'�%�%�/�%�!�2�0�-�&�4�+�/�,��;�*�0�!�'�)�.�&��3�'�*�$�,�4�,�&�$�7�2�;�0�3�&�$�#�'�%�:�'�0�(�;�0�,�/�.�3�#�2�;�-�)�<�(�1�2�4��8�#�2�#�'�9�.�3�&�'�/�*�1�0�%�)�7�)�/�2�)�&�/�-�/�8�3�*�9�*�$�5�.�)�+�.�-�%�#�!�,�'�(�0�/� �,�!�9�(�3�3�'�*���/�"�4�)�&�2�-�+�+�2�-�#�+�+�(�*�'�3�(�/�6�'�(�(�/�!�-�2�/�(�(�,�%�1�,�)�*�$�3�6�+�/�"�2�/�6�2�:�4�-�&�1�)�&�%�4�7�-�!�+�*�*�7�/�'�3�.�/�,�5�0�&�-�)� �6�+�(�6�/�/�(�+�0�/�+�<�-�'�7�)�*�1�-�)�/�1�3�4�.�.�%�,�/�.�$�/� �'�(�,�7�*�8�$�/�9�4�3�/�1�/�0�*�1�*�-�#�0�/�1�7�'�1�!�1� �1�'�4�7�4�(�#�)�'�2�%�&�5�/�.��!�.�:�.�"��)�%�)�*�-�'�(�-�'�$�3�#�/�)�'�(�-�!�*�$�+��+� �)�/�$�"�7�,�8�.�,�;�7�%�*�/�1� ��%�2�(�1�!�5�.�$�;�-�,�%�"�6�/�"�/�/� �*�0�+�'�5�5�/�.�*��9�+�.�0�&�3�6�+�*�&�)�5�*�%�5�3�,�.�5�,�&�&�.�%�2�/�'�8�րڀـ؀׀׀Ҁ׀ՀʀӀـ׀Ӏ��Ҁ؀׀ــՀҀՀՁ(�6�7�'�%�;�,�)�-�3�-�#�-�'�1�*�!�&�9�%�.�4�%�4�,�)�)�%�)�/�4�5�%�3�(�,�'�2�.�6�$�.�>�&�'�0�#��,�(�,�3�1�$����-�,�;�2�0�5�1�1�(�/�-�"�3�*��-�,�/�,�'�'�4�2�7�/�*�5��/�*�9�0�*�/�(�7�6�.�/�#�*�/�,�.�4�)�(�%�;�#�,�+�0��$��=�;�&��*�+�*�>�'�.�%�?�&��#�!�2�4�(�+�(�-�3�7��2�(�+�*�)�*�.�:�0�0��-�3�%�)�(�)�)�0�'�+�*�0�&�0�6��2���6�'�(�!�-�#�'�3�-�3�-�,�'�+�+�(�/�'�-�/�4�%�:�)�4�(�*�,�5�2�7�"�)�(�)�/�*�.�/�-�7�/�*�*�*�*�/�-�#�2�2�*�2�&�6�/�(�+�1�/�4�3�2�3�$�'�#�$��9�+�)�!�(�(�/�+�-�-�#�-�+�*�-�%�(�5�1�)�$�5�)�6�/�%�2�1�*�,�'�'�1�+�%�1�0�.�1�4�+�1�(� �:�-�5�1�(�)�)�0� �'�1�2�1�)�5�0�/�0�(�?�/�)� �.�1�5�1�*�)�-�)�&�'�+�6�(�3�:��$�3�1�#�/�7�,��1�(� �#�2�-�#�$�0�-�,�5�,�'�*�0�'�:�!�&�)�!�2�/� �0�6�.�.�#� �.�0�.�5�+�5�=�)�(�5�)�0�4�7�&�(�+�+�0�.�%��#�.��-�9�!�*�,�5�+�1�:�'�6�$�-�)��0�1�)�0�.�#�.�,�-�6�"�+�*�/�,�-�/�2�(�6�+�>�(�8�&�/�+�6�<�4�,�5�-�4�+�'�-� �0�1�&� �$��1�#�-�)�2�/�'�2�3�+�7�/�'�.�-�$�'�#�3�1�$�5�/�1�0�<�*�(�.�2�0�$�*�:�'�/�!�2�9�'�!�4�"�/�1�0�'�!�&�+�,�:�2�*�$�/�1�.�0�3�(�5��,�.�-�-�,�5�րڀրЀՀՀՀրԀŀۀԀ׀Ӏ׀րҀԀրԀՀ׀Ҁ؁3�-�.�)�*�5�%�7�;�<�A�5�0�2�)�.�1�'�.�/�2�/�%�0�%�*��!�*�#�,�.�.�(�(�+�&�&�(�3�4��4�0�)�,�,�1�0�.�#�+�)�/�'�/�'�2�*�+�/�'�,�'�2�/�+�3�"�,�&��(�#�$�0�0�3�)�+�/�0�5�,�5�-�$�-�;�7�1�,�(�)� �4�0�1�#�:�*�'�2�'�-�.�)�2�1�4�+�%�,�-�,�'�(�+�"��%�1�-�/�.�2�1�'�3�*�'�-�)�*�%�+�(�3�;�5�#�:�3�$�/�-�%�/�:�.�*�-�.�"�1�3�)�.�*�+�$�8�3�"�3�&�8�1�%�-�/�8�)�&�>�,� �>�.�2�-�*�0�7�9�!�0�+�%�/�(�&�0�%�&��1�)�,�+�1�-�/�#�;�%�#�1�6�6�5�+�,�,�)�)�+�.�0�)�%�(�*�%�&�'�3�+�'�(�/�.�(�%�.�(�+�!�+�2�1�-�+�+�"�$�*�(�1�0�-�.�$�,��.�,�1�#�/�6�/�)�*�!�+�/�#�7�)�(��&�,�7���"�&�5�,�&�+�(�3�%�3�(�+�*�4�0�*�&�,�5�+�/�.�9�.�-�:�+�'�1�6�&�+�$�2�4�>�-�3�6�0�/�9�.�=�2�*��+�2�4�.�%�&�)� �1�<�%�"�/��+�/��2�/�8�;�-�&�,�5�9�*�*�2�4�-�'�*�0�+�+�2�0�6�"�#�/�1�,�&�/�+�$�.�+�/�-�#�(�:�<�)�#�0�.�+��$�*�3�0�&�%�-�'�.�+�4�+�.�*�2�5�,�(�7�&�0�8�%��!�8�2�2�+�-�+�+�5�)�8��7�-�'�=�8�0�.�7�,�&�+�6�"�*�+�+��$�)�'�&�)��#�3�3�3� �*�*�2�-�(�/�5�.�8�)�'�,�'�:�,�'�/�3�+�#�5�-� �&�+�(�"�/�.�.�'�-�+�$�9�.�3�!�(�<�&�(�3�%�/�+�!�5�1�(�0�3�+�3�8�-�,�0�>�/�$�-�ԀӀڀր׀Հڀ׀րȀҀ؀ЀՀՀҀ׀Հ؀րԀـԀҁ/�.�4�(��$�$�1�7�/�5�'�'�;�+�0�7�.�1�:�*�$�4�,�1�%�C�&�!�7�9�+�-�5�*�7�$�+�.�'�,�,�7�+�-�$�;�/�!�#�$�5�3�&�%��1�$�"�/��7�.�5��+�,�1�$�-�&�/�7�)�*�0�/�'�'�-�.�6� �6�.�)�#�,�#�2�*�,�/�(�,�#�2�)�(�#�.�)�(�0�2�/�%�1�)�.�*�$�1��:�2�5�-�1�9�6�0�1�)�#�'�+�,�+�+�2�2�-�,�6�-��/�3�/�%�,�9�-�3�)�%�*�-�"�,�3�,�1�(�2�'�-�&�-�,�1�%��)�8�*�4�(�;� �&�+�:�-�)�,�(�'�*�1��1�*�&��5�&�:�"�)�#�'�)�$�4�0�(�4�+�7�/�)�6�1�4�2�0�%�*�+�(�)�,�'�8�,�2�$�4�(�5��$�%�)�&�>�4�%�1�/�3�/�+�1�"�(�-�.�,�8�%�+�2� ��$�$�%�-�+�+�/�!�*�'�(�2�&�)�+�3�&�)�+�(��.�-�'�1�3�#�*�$�;�:�0�+�$�%�=�3�0�(�E�+�*�/�(�3�)�/�)�2�$��)�5�'�0�+�-�0�-�'�*�'�-�$�/�'�7�&�2�.�7�.�2�/�(�1�4�-�#�4�)�2�"�&�-�7�0�;�#�+�,�)�+�5�$�-�0�7��1�3�-�/�.�8�'�/�%�!�%�,�*�,�<�.�+��+�=�$�.�2�4�)�0�3�!�1���"�)�4�'�%�4�:�)�$�)�0��'�'�'�'�9�-�&�-�(�7�,�1�/�(� ��'�$�,�/�/�*� �5�(�(�%�(�/�,�-��1�*�.�+�*�/�$�/�%�/�1�(�&�"��+�-�'�1�'�*�4�'�+�*�-�*�)�0�1�)�!�#�#�!�&�/�3�*�/�6�'��*�7�.�.�$�*�)�/�'�-�'�/�2�"�6�1�-�%�0�7� �"� �%�&�8�4�2�*�+�/�!�&�%�)�3�6�$�8�$�+�1�0�&�'�&�$�8�Ӏ܀ـ׀ـՀӀր؀ŀՀրӀــ׀؀ڀրۀԀڀӀׁ#�)�.�&�:�!�-�8�,�*�'�.�.�%� �*�(�&�6��/�'�/�1�'�4�4�,�)�+�%�1�/�,�)�.�)�-��8�1�*�(�,�.�'�4�,�+�1�3�+�7�)��3�1�0��'�)�/�/�0�%�*�"�5�1�3�4�.�;�)�/�-�'�"�9�/�2�+�3�7�4�(�,�'�0�)�0�5��$�1�"�)�+�.�0�2�+�%�1�7�0�$�(�"�8�!�%�%�+�.�*�,�/�2�0�(�,�.�#�2�'�,�0�-�,�+�1�$�&�4�/�"�)�,�$�0�7�1�*�*�'�:�'��1�&�&�2�/�/�!�)�1�%� �,�$�$�-��(�&�2�'�8�"�%�1�'�.�.�"�.�+�'�*�4�1�4�)�+�/�/�+�)�1�.�+�/�&�!�'�&�/�/�4�0�(� �.�'�#�+�*�&�&��;�(�-�%�-�*�(�%�&�3�,�2�1��0�)�-�+�2�=�2�0�#�"�'�4�'�-�#�.�+�#�4�)�%�.�6�,�)�3�3�.�/�/�+�-�2�-�9�+�$�$�?�*�%�.�*�-�)�7�/�3�#�+�1�(�+�&�5�+�4�$�/�#�-�5�6�7�'�5�"�/�*�/�/�'�'�'�;�,�=�-�/�%�-�.�2�2�*�'�#�)�+�"�2�;�3�)�+�$�*��0�*�6�A�)�'�*�!�+�"�#�#�/�@�#��#�3�4�5�&�%�+�/�#�>�-�)��-�,�.�%�2�)�-�-��#�)�(�1�,�2�5�*�,�/�/�-�+�%�/�0�2�&��?�1�4�)�-�%�-�3� � �%�1�8�1�1�0�+�$�!�5�)�1�;�.�&�6�(�.�9�2�/��)�2�4�/�3�-�"�*�,�/�;�(�&�)�:�4�,�,�1�"�,�$�.�;�-�-�-�C�'�#�1�$�*�$�5�/�)��3�+�%�/�$�1�'�2�1�1�%�#�2� �(�5��7�'�1�-�7�!�A�3�2�6�5��3�/�?�+�'�.�+�.�/��/�$�/�*�*�6�(�2�(�$�@�*�&�,�2�-�,�3�1�-�/�%�Ԁր׀ӀՀ؀Հ׀؀̀׀܀рՀԀӀЀπڀՀ׀ՀԀց@�4�6�+�'�,�3�-�4�4�3�/�6�&��!�:�'��2�8�1�.�/�!�,�5�7�,��)�.�6�-�2�>�3�<�+�%�8�+��/�0�1�-�>�5�6�#�)�.��>��(�7�(�&�1�+�2�*�-�'�"��,�%�(�*�7�3�,����.�.�&�1�'�/�*�*�"�%�(�'�+�/�*�(�'�9�1�(�$�*��-�2�2�,�)�4�'�%�-�3�(�-�&�/�.�"�/�*�/�"�*�5�2�(�'�0�1�,� �+��*� �%�'�3�3�'�3�2��.��+�,�)�-�6�+�<�.�#�5��(�)�+�>��+�3�4�/�0�-�)�>�5�5�+�#�1�$�6�-�8�6�,�(�)�3��!�&�=�5�+�5�)�"�+��%�7�(�1�$�2�"�6�9�(�1�1�-�:�2�6�!��.�<�-�/�0�4��&�(�%�,�&�*�-�-��%�1�)� �*�.�/�)�)�*�'�/�+�1�*�!�+�*�,�'�-�0�$�;�%�/�%�-�$�'�*�+�$�4�%�"�+�.�+�5�*�*�2�0�,�1�/�/�)�0�.�3�5�$�"�!�<�2�4�-�0�0�2�$�$�$�*�!���/�+�0�/�/�+�+�0�(�'�'�/�'�7�+�,�)�.�(�6�#�+�,�%�7�,� �8�!�#�,�1�6�5�-�@�/�-�4�%�!�1�5�5�"�*�'�*�:�.�.�'�1�+�%�6�8�.�'�$�(�"�/�,�(�4�,�!�,�2��0�:�(�/�)�)�+�9�'�1�7�#�2�4��%�-�+�1�#�?�1�'�-�0�.�-�/�)�9�)�4�2�*�.�)�&�(�7�!�1�.�3�4�-�/�+�1�,�/�$�4�,�)�.�*�/�6�*�-�3�!�$�3�*�2�(�+�-�%�+�3�&�'�0�=�/�5�/�'�$�6�0�.�0�1�0��*�-�)�#�-�+�/�(�9�*�,�7�,�:�%�+�&�)�/�5�;�0�3�2�/�$�3�6�;�5�;�5�'�3�(�'�'�,�/�2�,�:�/�9�:�.�=�1�1�2�(�*�$�2�1�&�ԀԀ؀ԀԀ؀рӀՀŀـԀЀՀԀՀ׀Ԁ׀Ѐ؀؀рӁ5�9�1�3�3�'�2�?�)��-�*�3�-�5�0�7�0�%�/�0�5�*�*�3�'�'�=�,�+�*�7�%�%�+�-�!� �8�2��1�*�*�3�(�-�'�5�3�/�%�(�%�7�'�/�3�$�2�8�(��5�>�E�"�)�'�/�#�.�(�-�*�+�,�*�.�%�2� �!� �$�/�#�4�,�(�.�*�1�.�!�-�:�)�=�*�,�0�0�(�0�)�4�.�)�-�*�'�(�$�)�&�4��*�+�'�+�1�4��+�6�<�+�)��2�"�3�*�0�/�-�#�7�%� �)�5�#�:�/�+�+�/�>�5�.�/�,�7�2�0�-�5�1�+�1�!�7�/�"��*�%�&�.�+�+�1�*�0�+�%�3�!�,�#��+�0� �+�%��'�%�7�5�(�0�,�,�#�.�/�.�*���&�#�$�#�;��%�/�&�&�3�'�5�&��F�1�'�*�%�-�1�/�&�4�*�/�1�)��2�0�2�(�)�+�1�*�4�/��)�,�&�0�1�*�&�1�-�)�1�*�/�+�7�2�%�3�1�-�5�,�C�-�1�-�8�.�%�4�'�0�/�A�?�9�+�<�7�)�/�*�1�+�)�%�'�-�:�2�0�,�*�9�4�(�/�.�!�/�.�-�/�*�.�/�&�-�:�+�'��'�)�'�*� �)�<�&�#�3�,�#�,�5�-�$�-�,�>�&� �1�0�+�*�9�)�0�1�/�3�6�$�+�6�/�+�%�(�.��.�+�.�$�&�1��$�/�.�/�+�&�*�2�'�+�"�(�9�1�+�%�0�2�,�)�-�*�(�/�)� �3�.�3�+�2�.�$�=�7�(�(�.�/�3�$�4�*�%�-�%�%�*�*�5�� �+�'�-�(�/�0��9�/�6�.�-�1�,�'�.�:�(�.�-�4�1�&�5�$�-�3�0�'�,�5�%�*�,�,�)�*�3�1�4�3�2�8�)�(� �/�-�1� �(�)�4�5�0�%�5�0�$�!�/�!�5�0�.�0�)�+�)�4�5�'�&�;�1�5�7�&�0�+�1�;�&�2�.�-�6�%�'�)�$�(�7�/�рԀՀڀՀԀЀՀӀĀӀԀӀ؀րр׀׀Ԁрր׀րՁ-�-�4�*�+�$�.�-� �3�1�;�,�5�&�2�&�'�*�0�3�,��+�/�'�'�0�.�&�1�$�7�6�)�1�*�'�,�2�+�/�%�3�%�*�"�)�)�+�5�.�(�"�)�7�4�%�+�'�'�3�'�&�2�.�&�/�-�,�+�3�&�6�3�)�4�-�(�1�/�4�3�"�2�/�2�9�"�(�0�#�:�%�8�.�3�'�9�7�1�0�,�*�8�-��+�*� �#�4�(�8� �-�3�-��5�-��.��4�+�0�'�1�"�(�(�/��-�6�.�(�/�&�)�/�2�:� � �/�.�1�(�2�)�/�0�"�1�$�(�&�-�4�4�,�.�%�+�'�&�3�0�-�2�.�+�7�!�+�$�2��)�.���5�#�(�1�%�#�.�,�)�*�-�-�,�.�/��1�&�1�(�,�-�0�.�(�$�9�,�2�1�$�)�!�*�/�4�*�.�-�+�-�:�'�&�3�)�(�-�-�/�(�7�)�2�0�0�"�(�1�/��/�-�"�2�%�9�1�/�3�2�/�'�:�(��5�)�2�)�-�$�.�'�6�-�2�)�#�;�'�4�-�+�6�+�)�'�*�*�0�/�1�%�&�3��-� �'�4�+�2��&�)��*�+� �3�#�.�&�3�.�$�$�2��5��!�4�'�?�'�;�-�%�$�1�%�'�B�#�9�*�0�1�1�$��9�2�.�(�.�3�-�2�%�.�.�.�6�0�0�*�(�+�8�8�3�*�)�+�+�1�8�(�+�&�3�1�8�2�:�)�'�.��0�*��*�4�'��&�%�/�0�/�*�,�(�6�/�)�0�$�0�)�/�!�*�'�,�6�$�=�1�4�&�)�)�1�6�)�0�4�/�/�$�0�7�*�)�"��-�/�-�6�.�)�4�(�#�/�;� ��5�1�&�&�3�%�,�0�-�0�+�5�0�.�*�"�4�+�2�)�5�)�3�.�'�/�*��3�&�,�/�-�4�*�&�(�.�(��%�(�/�,�0�-�(�3��-�3�+�7�(�#�9�7�E�'�+�/�3�&�3�2�>�/�-�,�-�&�)�+�/�րЀڀـрր׀Ԁր��܀ր؀ԀԀր׀Հ׀؀׀؀Հс.�.�3�.�,�6�)�-�,�.�5�.�$�"�(�(� �>�/�)�;�1�)�&�(�.�(�/�8�'�3�-�:�-�+�8�0�/�7�*�2�5�-�*�#�%�1�.�,�'�4�%�)�(�%�0�,�#�-�6�/�-�'�)�)�+�#�-�/�0�,�&�)�)�4�1�+�/�%�&�(�'�,�1�(�-�8�+�<�,�#�$�<�2�)�+�.�'��'��.�'�2�0�%�'��'� �(�-�.�,�)�,�1�.�3�)�8�3�(�8�9���/�-�.�+�.�3�%�+�/�/�4�3�/�/�-�'�6�+�1�7�� �/�1�/�1�1�7�'�7�4�2�1�'�"�%�'�/�-�2�2�.�2�9�+�3�-�/�#�.�9�,�#�&�3� �"�5�*��8�4�-��1�5�0�(�'�&�'�(�(�%�+�(�&�+�#�,�*�.�1�.�,�0�3�&�+�0��0�(�-�4�/�#�#�,�6�*�(�4�3�2�(�$�7�+�3�,�#�-�'�(�:�6�1�9�0�!�'�?�7�"�/�(��3�*�-�$�!�0�,��$��,�0�7��$�.�4�.�,�)�!�'��(�(�#�/��2�0�2�/�-�-�,�0�7�5�3�+�*�0�7�*�+�'�-�'�+�5�4�+�,�#�%�(�/�&�)�-�'�.�*�)�/�,�1�1�&�$�0�5�)�"�>�+�1�6�.�4�+�0�-�;�:�(�4�3�'�.�<��-�+��&�0�)�'�4�,� �;�+�=�$�4�"�/� �+�;�'�(�/�*�-�*�9�3�8� �%�3�'�/�#�)� �3�#�3�/�0�%�8�$�$�1�!�/�0�6�:�0�-�'�&�*�)�2�(�*�+�1�,�'�'� �0�)�0�,�&�2�0�0�5�#�!�.�2�3�0��6�#�.�,�)�6�*�,�/�(�5��2�!�)�#�)�7�4�0�'�6��1� ��+�4�-�5�4�(�,�'�:�+�'�)�,�+�+�#�0�2�+�+��*�-�!�3�(�"�)�+�1�-�*�-�,�'�/�/�)�:�9�+�?�-�3�%�/�4�,�,�)�*� �*�0��&�؀ՀـӀӀҀԀր׀ǀՀр؀րӀـҀրҀ؀Ӏ؀Ԁԁ6�*�"�,�)�:�(�1�8�5�.�+�>�!�/�+�/�.�$�0�.�0�(�,�.�%�6�*�3�.�1�3�1�-�.�/�-�'�9�$�-�3�6�%�#�0�,�.�)�.�0�0�"�.��(�6�,�+�)�1�0�8�!�1�7�4�1�1�%�$�=��'�5�1�+�1�2�2�0�(�$�$�#�&�%�4�$�+�3�/�8�'�0�.�%�#�0�+�"�0�*�8�*�%�&�6�*�#�;�+�*�%�'�$�'�,�%�"��/�+�(�7�3�,�:�$�.�-�'�(�1�,�)�7�2�4�/�1�/�"�-�4�0��-�)�9�>�%�3�7�%�<�,�)�*�)�"�3�.�$�+�.�-�7�/�7�5�2�)�*�4�1�&�)�%�=�-�+�+�$�4�3�,�8�)�.�4�.�#�*� �0�$�2�*�4�&�&�+�,�$�*�"�$�%�)�6�,�/�+�'�*�1�#�-�+�)�)��/�8�0�$�,��2�$�+�+�7�1�(�(�0�3�(�2�=�,�8�,� �#�-�8�(�(�5�+�+�%�2�.�:�/�"���*�7�#�+�+�,�8�'�/� �*�(�-�$�'�<�#�1�%�5�,�;�;�+�-�6�#�'�3�/�#�/�%�#�3�,�$�6�;�(�;�,�5�*�0�4�/�&�/�*�(�%�3�#�5�(�0�5�1�0�$�/�2�,�%�)� �'�*�2�+�%�"�$�-�%�,�2�/�2��=�#�1�$�/�7�1�2�9�6�)�+�/�5��/�)�+�/�-�9�+�8�'�$�3�1�2�'�*�#�.�6�)�'�-�*�#�3�=�/�3�!�,�*�1�.�1��3�)�1�$�(�+�+�)�+�)�1�*�%�'�&�&�/�-�/�,�%�/�+��5�?�)�-�*�*�2�+��)�$�+�/�-�,�/�3�0�0�&� �1�(�/�%�2�/�%�'�,�,�9�2�.�2�-�(�0�-�*�+�6�%�9�(�;�&�5�+�&�&�3�+�%�%�2�.�3�2�*�&�2�,�?�7�7�+�7�1�%�#�+�'�3�+�-�/�*�4�+�;�'�0�=�.�+�$�%�.�/�/�3�2�1�7�/�ۀ׀ӀՀـԀՀ؀׀ȀӀـ؀ր݀Ԁـр׀Ҁր؀Ԁ؁/�&�9�1�-�6�/�0�*�.�$�-�(�?�/�'�+�'�/�#�3�6�)�3�*�,�3��(�%�0�.�.�-�-�/��/�(�7�#��3� �4�*�0��2�+�1�1�4�!�'�&�$�0�/�5�4� �:�'�$�.�-�$�-�,�+��3�/�,�5�#�0� �0�2�'�'�6��+�/�-�4�(�+�+�3�/�4�.�&�3�'�(�-�'�(�*�+�#�:�-�"�"�0�0��&�(�#�*� �'�7�&�,��/�'�>�"�0�9�2�/� �.�)�,�-�3�3�"�,�%�1�(�)�.��9�-�,�+�*�)�#�(�%� �+�#�.�-�4�!�)�(�'�*�2���,�$�0�/�/�$�*�1�)�3�-�#�5�+�,�(�-�+��+�!�%�*�(�4�)�.�%�1��2�-�-�"�'�'�/�/�6�)�/�,�)�-�6�3�+�0�.�3�/�+�3�7�,�.�9�3��"�(�0�'�3�)�/�5�4�'�-�!�1�*�/�+�,�)�$�+�%�&�/�0�/�)�@�.�+�*�'�-�'�:�.�)�3�,�2�%�%�.�.�/�;�3�#�*��,�#��$�%�+�'�9�1�.�4�)�+�/�&�1�=�+�(�/�,�-�1�(�)�2�/��=�-�%�/�,�+�)�!�/�(�9�'�/�7�*�.�,�*�-�&�.�2�1�(�'��4�1�%�0�!���0�-�(�5�/�%�+�#�/�*�*�.�.�2�"�-�1�-�*�3�0�3�3��7�8�)�7�5�'�7�1�2�,�%�5�*�)�4�2�"�2�/�/�3�;�%�'�&�(�1�(�*�,�2�+�6�;�)�)�-� �'��!�&�5�1�/�*�3��(�2�+�1�3�(�,�"�9�+�/�.��"�$�/�-�%�(�/�!��'�$�'�(�-�6�3�4�7�-�4�0�7�7�/�+�6�,�!�6�!�.�0�0�;�2�#�*�.�#�&�9�)�(�)�8�,�*�0�*�6�7�%�%�>� �*�6�,�7�1�(�2�7�&�#�1�(�0�?�-�.�'�$�#�(�7�"�%�8�/��/�/�7�8�,�'�9�$�ЀրՀ׀ۀ؀ۀڀӀˀ׀рـԀՀրڀ׀Ԁ׀׀ՀӀҁ/�6�1�+�.�:�6�+�1�/�1�4�2�)�1�+�'�/�!�0�/�3�-�0�4�+�/�6�:�*�/�'�%�)�"�3�,�*�,�2�D�)�1�*�-�+�*�*�@�!�%�2�1�,�/�>�2�2�2�7�'�3�/�)� �%�6�-�6�#�1�+�)�4�+�0�!�5�&�+�%�2�&� �5�/�:�)�+�+�'�*�)�$�.�(� �*�#�$�$�/�/�!�0�8�%�#��.�!�2�4�7�/�6�)�#�/�.�#�.�*�1�'�'�*�*�-�2�*�"�6�*�%�2�5�-�C�2�'�+�-�)� �.�)�(�7�+�1��,��/�+�&�*�-�0�0�$�.�4�)�%�'�*�"�:�'�*�.�8�*�,�#�-�-�'�.�0�-�'�(�1��&�3�)�,�.�3�7�3�/��*�)�'�&�5�*�)�0�)�"�$�5�)�+�)�,�5�*�(�)�*�5�%�,�5�$�*�+�*�,�3�)�'�/��3�2�)�-�#�/�+�"�7�/�/�!�)�2�,�#�.�!�7�/�,�6�3�$�*�-�7�)�0�,�1�'�$�/�1�+�&�%�.�-�%�"�*�(�&�3�(�-��*�6�/�'�2�3�%�)�0�5�0�/�2�1�#�2�'�&�'�&�3�-�%�/�8�*�3�-�%�"�+�.�4�/�'�%�-�-�0�#�)�2�,�'�/�$�+�#�-�#�,�$�6�'�&�*�*�'�8�.�0�)�+�)�2�-�@�1�.�0�7�/�,�9�0�/�+�4�+�1�$�+�.�"�+�"�%�6�)�,��,�,�/�-�.�$�'�'�%�$�!�2�+�.�)�"�'��+��(�%�$�/�,�"�5�/�(�1�&�/�*�0�+�#�(�.�#�+�*�+�$���1�%�=�/�'�)�(�,�4�"�.�-�7�"�#�'�,�"�)�)�,�6�5�(�.�)�#�)�+�.�/�?�0�.�9�2�%�1�+�;�2�/�(��,�)�/�+�!�2�.�/�'�.�7�*�/�1�;�7�-�1�&�4�-�2�(�"�-�%�)�.�6�%�'�*�=�,�-�2�#�0�*�1�,�-�#�'�&�6�6�/�,�.�8�؀ԀՀրր؀Ӏ׀ԀɀՀԀր؀؀Ӏ׀Ӏր؀ՀۀՀՁ/�:�<�!�*�-�!�%�*�9�2�/�@�?��0��(�9�.�)�(�+�#�&�9�,�2�-�7�)�/�/�2�/�)�1�:�6�*�.�*�'�3�6��(�+�0�"�-�%�5�2�0�2�)�+�3�(�)��#�3�'�$�3�8�.�7�+�(�*�$�.�$�)�'�7�(�$�7�#�4�*�+�%�5�'�7�2�0�(�(�%�5�+�-�#�-�-�#�,�0�)��'��*�,�'�-�?�0�6�(�!�(�.��'�6�'�3�!�!�)�+�,�!�,�%�.�,�5�(�1�3�/�3� �$�+�1�/�)�&�4�8�1�*�:��%�2�0�+�/�%�(�+�!�6�5�6�'�3�:�%�2�$�/�5�1�#�1�'�/�+�.�>�-�,�)�4�0�9�-�4�*�.�.�#�,�/�4�&�0�+�1�2�#�#�(�1�*�)�1�'�/�0�-�'�6�7�5�3�2�4�$�0�0�+�&�,�'�/�*�7�"�3�0� � �,�5�+�0�/�4�+�+��/�2�7�0�)�6�+�)�'�'�,�(�'�1�(��-�(�*�7�-�7�*�:�&�.�1�"�(�/�,�&�2�(�.�#�;�'�/�'�%�)�&� �6�6�7�"�/�3�$�/�5�%�*�.�.��$�(�+�/�/�*�/�1�(�(�1��+�5�!�7��+�%�+�#�)�.�.�!�/�*�(�'�%�5�,�-�(�.�<�>�/�1�#�2�,�%�,�3�!�0�+�/�7�4�*�4�*��(�!�#�+�#�3�1�$�-�%�'�-�0�0�3�8�%�(�/�$�-�'�+�'�-�(�,�0�+�*�"�(�1�(�/��6�/�/�4�2�.�7�&�/�-�&�2�7�+�)�%�1�%�)�+�*�8�3�@�+�(�'�)�%� �'�)�&�+�*�'�+�*�!��,�-�,�*�2�'�5�-�:�+�!�6�1�,�$�1�/�.�#�+�4�'�&�1�*��)�0�)�3�3�7�@�3�=�*�+�=�$�0�2�5�3�"�2�.�"�%�2�,�3�0��1��*�2��2��'�/�.�1�#�0�"�3�+�,�7�;�$�%�4�.�3�$�<�4�׀ր׀؀׀րԀրـȀـր׀րԀ׀׀ԀӀ׀ڀ׀؀ف/�(�.�3�)�$��3�(�1�/�,�.�.�.�)�+�,�3�6�2��+�:�1�8�3�%�4�9�9�$�"� �&�)�-�%�'�)�&�0�+�1�9�-�5�0�0�+�#� �-�!�%�-�)�1�)�#�#�1�#�6�,�9�)�-�(�3�+�,�1�2�*�"�"��)�0�*�&�/��.�'�+�+�4�?�0�*��-�/�/�"�4�0�6�.�-�#�3� �0�%�+�(�1�*�/�/�-�'��)�/�'�+�'�%��:�.��)�(�/��3�*�,�0�*�)�+�7�2�1�-�7�(�+�*�!�'�3�0�'�0�-�)�*�*�+�(�%�;�*�-�1�5�'�-�*�3�&�1�,�#�1�2�-�/�/�4��4�0�!�1�1�/�&�+�-�;�3�3�&�-�5�$�+�1�.��(�#�-�/�)�(��9�2�-�7�)�(�0�+�2�#�-�/�6�.�+�6��0�1�*�.�$�0�1�%��.�#�4�=�9�*�0�-�,�5�3�$�1�,�3�*�'�$�-�2�)�$�!�4�%�'�!�+�+�*�"�2�1�;�)�#�1�(�0�;�0�6�+�!� �+�1�3�0��&�)�(�=�#�*�/�,�+�>�4�,�'�4�.�+�/�.�0�"�8�$�9��1�-�%�+�.�/�-�*�0�*�(�-�$�-�-�*�!�5�4�)�(�.�3�9�0�)�5��%�+�/�*�<�6�*�*�!�2�2� �(�(�7��@�1�+�,�$�)�.�/�%�*�-�$�9�'�5�)�'�8�3�,�/��+�2�)�/�/�'�/�)�*�'�-�3�'�&�'�%�3�-�-�#��%�-�(�.�(��1�7�$�+�.�&�#�,�0�.���5�)�.�'�.�.�-�9� �,�/�*�(�&�/�.�'�3�'�3�$�(�$�%�1�3�1�(�/�-�5�/�(�0�,�!�2�9�-�*�/�2�.�!� �+�/�(�/�'�#�4�&�&�/�-�.�'�!�3�,�*�&�.�-�5�0�%�/� �/�(�-�/�#�-�/�&�F�4�.�-�1�.�(�7�0�'�*�5�.�;�(�'�-�+�"�;�*�-�'�:�րڀ؀ր؀р׀ՀрŀԀـԀ׀Հ׀ـӀҀ؀׀ـӀف;�"�)�.�$�-�0�9�'�"�.�'�1� �0�0�4�8�7�*�$�&�*�)�(��3�1�(�)�+�%�(�$�1�%�/�2�#�4�4�9�'�3��*�%�+�/�,�#�%�,�;�(�.�&�9�+�"�#�&�%�/�&�#�3�-�.�/�'�4�*�&�+�1�/�2�,�;�+�%��3�+�/�$�+�,�/�%�"�+�/�.�3�-�+�:�.� �3��#�)�=�"�$�4�/�)�+�0�*�4�+�.�-�<�"�0�&�'�,�-� �&�"��*�0�2�3�2��0�!�)�'�,�*�2�'�8�*�5�2��2�5�9�+�5�)�4�*�&�5�#�&�(�%�,�0�4�.�%�(�-�5�/��)�(�,�!�(�-�-�$�+�-�6�+�/�/�#�)�-�/�,�*�.�/�0�*�,�/�;�$�'�.��4�0�2�0�0��1�(�.�,�1�.�-�;�0�0�%�/�&�.�7��:�2�5�0�*�;�&�3�%�!�5�&�9�#�9�'�*�<��0�9�$�*�&�+�"��'�(�4�/�1�&�7�,�(�)�.�3�.�,�4�2�5�0�/�4�*�*�*�+�'�1�"�#�'��/�&�*�*�'�$�1�3�0�+�'�$�7�0�*�>�4�+�)�,�6�=�>�&�%�#�2�=�(�8�,�*�'�)�1�;�&�#��(�)�'�2�8�(��+�'�(�)�-�'�5�0�*�/�'�(�1�"�&�$�'�1� �;�%�*�.�#�3�1�;�*�(�(�6�+�@�$�"��/�+�"�-�/��/�-��/�&�&�&�%�4�0�7�-�'�/�'�5�.�'�(�3�)�2�-�*�*�%�)�*�0�1�5�,�#�/�'�'�'�$�1��1� �(� �0�.�&�"�.�<�5�'�0�;�(��2�1�*�-�(�-�2�'�*�$�)���%�'�"�2�+�$�-�"�-�+�;�$�-�*�/�*�*�(�#�-�2�/�4�2�'�2�$�)���/�0�)�,�'��!�@�1��0�)�/�,�-�-�'�(�(�)�(�,� �7�#�,�5�6�5�.�,�7�7�/�-�'�2�'�6�$�:�!�;�؀րՀ݀ـӀ׀ڀۀǀՀ؀؀Հ׀րӀӀրӀۀ׀ـՁ0�*�&�4�-�1�!�/�1�2�>�)�/�5�4�&�1�.�1�6�1�(�%�3�4�*�5�,�0�2�;�4�*�2�%�#�/�;�&�+�2�(�.�0�3�*�1�*�=�0�!�+�,�)�"�6�'�0�)�#�#�'�-�0�%�:�-��+�(�'�,�*�0�+�/�'�4�2�-�4�/�4�)�+�%�)�/�6�9�.�*�)�2�B�/�'�.�/�0�/�4�5�/�3�4�+�3�)�&�,�'�(�'�#�%�*�1�-�(�%�+�6�-��9�%�-�.�$�%�&�&�2�!�0�9�(�3�$�%�0�(�-�'�1�+�"�-�/�-�1�7�+�5�&�*�*��/�/�1�$�!�)�7�(�&�3��!�/�)��&�"�3�&�+��5�+�0�'�.�1�(�0�9� �+�-�/�#�6�3�*�&�3�*�)�4�1�-�4�/�8�+�.�&�'�(�4�%�(�+�.�,�4�.�-�,�!�(�'�-�'�&�-��7�8�-� �+�/�0�/�/�-�3�,�1�6�/�*�)���+�4���2�0��*�+�:�)�1�*�!�3�,�5�(�(�(�'�5�/�(�-�-�.��$�'�3�3�8�/�5�'�8�8�*�0�!�(�"�*�,�$�,�(�.��+�2�$�*�,�3�3�3�-�.�&�/�*�<�'�6�%�0�&�:�.�3�"�2�%�&�#�(�!�4�"�+�@�0�3�5�2�/�(�'�&�%��(�3�0�2�8�%�+�+�?�9�-�)�5�/�5�*�)�&�%�#�(�5�.�3�.�%�+�:�6�1�3�2�*��/�/�3�&�+�%�)�+�/�#��+�%�*�+�9�*�'�3�"�,�+�<�*�*�2�9�.�"�.�5�-�4�,�1�2�'�7�0�/�5�%�5�(�'�-� �<�3�'�%�3�&�7�*�-�-�/�5�2�(�,�*�<�%�2�%�'�/�,�1�+�6�:�(�.�%�(�(�9�%�-�1�3�8�3�1�1�2�;�-�0�+�0�*�)�'�.�)�+�*�(�)�+�9�5�/�.�3�7�)�.�&�"�0�2�-�?�%�,�/�,�;�:�1�/�/�1�.�(�:�+�+�2�5�,�ӀڀۀՀՀӀ׀Հ׀Ȁр׀ڀ؀ҀՀԀӀҀր׀ՀԀс2�.�1�0�4�7�/�-�0�7�0�)�+�4�$�-�1�)�-�$�=�&�,��*��*�5�0�-�0�<�"�&�-�*�#�9�*�,�1�(�/�#�:�(�"�$�)�.�%�2�/��+�2�1�/�"�.�0�4�0�,�1�'���0�.�0�2��2�(�&�0�2�$�)�2�-�,�,�+��.�2�4�4�4��4�3�3�.�.�2�/�)�&�'�6�'�)�4�*�*�6�:�$�,�3�)�8�,�-�5�%�4�#�+�"�)�3�.�1�"�%�%�1�(�$�7�8�/�6�.��.�'��2�-�'�*�-�!�-�7�.�)�+�?�/�-� �5�-�)�&�3�6�*�%�*�$��1�/�"�!�.�?�(��#�:�*�%�3�5�.��.�"�-�+�,�:�7�-�+�.�"�/�6�6�'�%�"�4�7�*�2�"�%�4�6�(�*�%��.�0�$�.�(�+�8�,�7�/�-�7�.�.�-�5�-�.�4�;�,�.�3�#�6�'�+�"�2�,�%�&�$�,�%�7�/�,�3�2�3�<�/�*��"�5�3�-�#�+�+�.�+�1�(�(�6��$�*�4�!�5�'�(�&�'�9�0�,�*�+�5��*�>�/�%�1�0��+�5�$�&�2� � �)�&�3�+�)�/�<�4�!�1�3�)�7�(�(�/�$�+�)�(�'�1�&�,�6�&�(�3��!�4�C�+�2�2�+�+��0�.�.�+�(�'�,� �,�(�-�&�;�*�*�/�(�3�.�-�"�(�*�4�/�6�?�8�8�)�"�3�,�+�?�?�8�1�&�4�+��2�0� �%�'�*�!�)�&�)��+�'�3�:�#�)��6�7�7�+�(�1�0�)�6�;�5�%�1�:�;���3�-�#�(�*�2�0�9�A�/�-�-�)��"�-�,�+��0�8�,�.�!�2�,�<�4�(�1�.�&�(�#�-�,�6�&�*� �6�0�/�7�1�,�#�%�7�)�*�7�:�7�'�(�/��%�(�#�*�-�"�#�2�4�5�.�1�=�/�.��.�4�1�+�6�,�-�%�/�6�.�1�&�-�-�'�/�&�0�#�7�ڀ؀Հ׀ՀӀրրրÀ؀ՀԀրӀ׀րӀ׀ۀۀڀ؀ہ0�8�?�!�+�/�@�5�7�0�&�-�7�)�%�3�-�1�+�,�1�%�(�,�+�-�'�!�/�1�%�#�7�9�+�.�&�-�8�-�%�+�3�.�4�(�4�8�2�&�/�*�!�(�'�3�/�/�(�;�,�,�3�)�7�-�)�5�&�7�/�-�-�)�-�/��,�+�*�8�2�*�6�&�(�5�'�'�$�-�-�7�0�-�$�&�7��*�'�!�'��8�/�/�*�6�4�&�&�*�.�)��&�*�*��+�/�%�5�-�&�*�-��3�3�8�,�4�%��&��!�6�!�?�4�%�)�"�(�1�+�4�*�#�$�!�)�,�"�*�=�0�/�"�-�#�/�5�6�)�'�7�.�&�&�1�)�$�3�9�,�3�#�+�&�=�3�4�)�6�1�<��"�8�!�(�(�0�,�)�8�1�/�$�1�*��-�&�1�*�4�+�)�,�3�%�.�2� �-�0�-�5�.�0�.�$�)�"�*�%�B�0�6�8�:�+�-�,�%�3�(�,�1�4�;�0��)�%���+�(�1�,�=�-�?�(�;��(�*�%�%�!�)�4�/�2�4�$�%�&��$�)�,�;�+�+�'�(�*�*�(�%�2�3�0�,�*�1�*�"�*�+�0�9�*�*�0�3�/�9�-� �&�.�,�%�,�-�/�/�#�%�)�4�"�/�+�'�6�5�*�*�)�5�&�+�5�)�%�<�/�6�%�#�.�/�)�-�-�2�*�+�%�.�&�-�/�(�*�/�.�7�'�(�=�/�+�#�5�:�%�+�*�-�&�!�(�1�(�0�*���.�*�.�(�7�,�1�%�0�+�*�4�.�:�+�%�6�6�!�%�"�>�.�%�1�#�$�2�3�5�@�#�!�%�(�'�3�"�1�4��/�$�%�%�1�#�/�%�0�,�5�6�2�3�+�6��'�#�'�&�/�+�/�-�'�'�6�;� �@�-�1�(�(�+�"�2�.�-�!�,�6�0�4�)�'�1�+�$�(�*�*�-�"�/�-�+�.�9�*�;�1�/�(�+�1�/��1�3�#�.�2��)�1�(�:�,�/�:�2�1�)�,�/�-�.�)�)�9�րՀրҀԀԀӀրЀŀۀԀԀ݀ԀـڀҀԀڀՀҀրف'�(��5�+�I�*�%�'�0�,�!�2�(�,�#�+�#�0�*�,�$�'�-�.�"�$�/�/�'�-�+�.�'�'�!�'�7�,�:�'�!�,�'�.�'�8�$�@�4�'�;�8�!�0�3�*�5�.�1� �+�*�3� �/�(��0�!�-�-�6� �,�5�"�.�!�5� �/�3�,�.�3�#�:�5�(�9�'�#�&�3�(�%�.�9�)�+�/�&�3�!�/�,�&�6�.�9�$�&�-�-�<�"�'�(�*�'�/��)�'�)�+�,�1�3��#�+�,�/�"�/�)�0�*�0�.�+�.� �#�(��.�.�+�%��%�.�%�-�/�/�0�5�3�%�&�8�+��'�+�4�*�+�.�.�)�!�,�,�$�(�1�/�,�>�-�3�&�&�-�+�,�3�%�&�"�'�6�-�*�+�9�,�'�4�+�'�(�+�"�,�4��.�!�3�+� �/�-�(�.�#�7�,�-�/�#�1�+�2�%�7��0�+�/�0�+�+�,�;�1�4�3�'��*�9�+�3�)�4�(�/�0�4�"�/�&�-�#�(�#�*�0�-� �'�6�-�,�-�$�!�;�3�,�$�=�,��-�?�'�@�+�'�!�-�+�4�'�2�2�'�*�(�-�,�*�3�:�#�.�*�5�'�B�1�.�-�4�/�*�+�3�/�(�6�9�-�.�+�/� �-�9�0�&�2�1�/�1�'� �%�1�,�%�+�)�9�/�0�,�&�0�)�%�*�8�#���)�A�8�:�)�.�#��4�2�(�&�3�)�&�,�.�)�-�&�&��%�,�(�,�4�1�0�<�1�1�-�"�1��*�0�'�7�.�� �&�"�(�;�(�&�-�(�:�/�#�0�/�'�-�1�+�+�2�+�8�%�)�(�%�*�.��0�/�/�%�!�(�4�6�3�(�&�!�#�1��3�4�.�+�.�/�'�/�;�/�-�/�9�(�.�1�2�5�5�'�*�'�8�+�3�9�-�0�2�+�'�3�(�0��2�%�2�)�5�7�6�+�0�-�B�6�/�,�&�3�6�-�:�(�/�/�1�*�.�(�%�*�&�-�5�6�:�-�;�+�?�րՀՀـ׀Հـր؀ʀ܀րՀ؀ӀۀӀӀЀրۀրրځ7�-�<�/�7�7�3�2�)�/�+�>�'�/�-��)�/�+�#�&�4�0�&�/�;�3�0��3�"�%�/�-�8�0�/�*�-�-�8�#�1�&�&�/�.�6�'�2�+�)� �;�4��7�,�'��,� �/�3�4�*� �9�-�2�(�/�,�D�,��%�,�-�!�,�:�4�$�'�1�;�.�;�*�-��.�5�1�/�2�+�3�*�!�&�)�(�/�+�.�'�$�,��;�4�5�2�(�,�2�+�)�/�,�/�*�,�$�'�/�(�'�*�;�'�*� ��8�*�/�&�2�?�5�7�%�5�1�)�9�,�#�-�0�)�*�$�5�1�2�'�%�6��%�3�9�4�2�)� �-�$�%�-�)�+�(�(�1�A�3�-�/�,�&��1�,�!�)�$� �3�#�5�)�(�%�7�*�%�$�$�-�A�+��*�$��/�B�(�:�.�)�5�,��2�?�"�.�)�3�-�1�1�$�!�3�6�/�-�,�4�%�-�%�1�+��;�-�/�/�(�5�%�(�#�-�#�0�'�1�/�6�7�%�,�9�'�:�"�/�/�/�5�,�-�+�)�$�!�.� �4�0�&�/�1�.�/�'�&�)�7�/�%��3�4�)�,�"�-�&�:�.�3�*�(�,�"�3�8�1��'�/�,�/�/�!�-�+�'�'�1�2�1�(� �&�$�.�0�2�*�8�&�� �.�8�%�/�&�2�2�'�.�,��-�4�'�&�;�5�8�7�$�)�&�3�7�;�$�(�:�5�8�;�2�/� �&�0�8�'�-�/�)��4�(�(�-�#�6�*�2�$�+�4�)�-�'�.�.�=�-�4�-��/�'�7�/�?��+��'�1�,�)�)�#�5�*�0�6�1�,�+�$�'�/�(�'�(�"�-�9�2�3�.��0�.�*�/�3�,�*�1�0�%�+� �+�&��.�:�)�"�)�,�(�*�8�*�3�&�!�(�/�/�8�/�1�/�(�"�<�$�2�4�)�(�1�)�$�'�+�!�/�*�'�A�/�*�7�5�2�&�%�3�2�'�0�)�)�/�+�.�%�(��0�1�,�*�*�4�2�3�1�Ԁ׀ӀՀ؀Ӏр׀ڀȀЀӀҀۀۀ׀ـՀڀЀҀ؀؀ҁ.�(� �)�%�+�-�1�+�+�"�+�7�.�&�4�1�3�1�-�#�.�-�H�/�-�3�2�%�+�#�.��!�-�4�/�2�%�#�'�)�-�5��*�3� �9�5�3�-�.�,�/�+�*�<�)� �!�1�0�/�.�'�$�'�/�2�,�&�.�4�0��)�8�+�&�.�(�2�(�)�6�.�+�7�/� �5�7�"�.�*�$��*�(�6�/�(�%�=�*��+��.�6�"�6�,�6�6�.�*�*�+��-�(�/�0�+�(�0�'��/�2�1�7�-�*�(�-�6�,�0�)�+�*�3�+�+�-�/�4�+�&�&�1�:�/�4�!�*�"�1�-��-�3�5�0�%�!�,�+�1�&�-�/�5�!�-�)�(�0�4�6�.�%�)�'�0�;�,�+�3�6�:�2�0�+�.�*�'�0�6�1�1�A�,�/�*�3�+�&�5��-�&�.�-�+�,�%�8�$�3�#�2�(�0�3�0�-�(� �/�.�5�.�,�1�3�(�+��)�(�5�.�&�3�A�/�+�"�4�+�-�/�%�$�7�'�1�.�*�%�"�+�/�-�)�&�7�)�%� �1�*�+�$�)�,�1�/�4�-�4�)�%� �.�(�)� �-�3�$�%�+�.�)�4�3�/��!� �0�"� �'�.�#�,�%�'��0�#�/�1�)�*�)�,�+�*�/�3�$�+� �2�6�&�+�,��%�!�/�<�8�-�+�,�4�+�!�,�/�+�(�*�-�2�(�(�:�&�3�,�+�$�/�"�.�0�1�-�"�(�)�"�>�*�0�!�$�1�1�4�(�+�%�F�$�&�/�2�7�1�3��#�2�!�-�� �-�)�/�3�5�&�%�)�$�-�'�%�$�0�*�-�1�'�!�/�+��-�(�)��-�/�$�(�.�"�/�0�6�+�$�.�5�'�#�'�)�,�2�4��"��!�8�+�+�$�+�=�2�9�5�2�?�#�2�'�(�0�2�4�)�,�/�9� �,�;�*�(�#�4�-�7�"�!�-�,�)�8�2�*�5�%�3�)�'�&�-�$�:�7�7�!�6�8�+�.�)�,�7�,�.�@�0�,�7�ҀԀӀ׀ԀҀڀـπƀӀՀ׀ր׀ԀӀҀրـրрۀځ,�-�'�-�/�/�-�*�5�1�,�$�$�(�4�.�/�&�,�1�+�.�(�8� �1�;�)�#�'�8�0�,�*�0�N�+�8�%�/�)�!�/�$�=�,�+�7�1�/�%�!�4�(�2�-�&�(�(�.�6�/�1�7�'�1�3�*�)�*�.�;�.�>�=�$�%�+�/�2�&�)�$��*�0�.�/�-�(�/�#�'�/�(�/�+�4�'�#�4�%�)�5�5��*�*�+�+�+�4�;� �3�%�*�2�-�0�+�2�+�+�)�/�-�-�9�%�+�&�/�4�6�%�&�#�0�/�.�)�,�5�4�,�.�2�!�:�+�4��"��0�,�+�2�?�+�#�-�#�0�.�.�/�+��"�.�'�'�9�.�0�'�!�(�-�#�:�"�2�8�'�5�)�!�<�1�%�+�)�#�7�0�$�.�(�%�)�"�-�2�/�8�:�,�)�4� �%�,�)�+�+�/�'�5�-��:�#��&�2�'�,�1�+� �$�!� �%�6�3�2�#�+�-�1�,�(�)�0�&�.��#�%�<�/�-�%�4�1�+�)�1�;�'�-�/�/�%�+�1�&�$�-�)��)�)�/�+�)�/�1��7�%��&�0�A�3�1�"�1�&�2� �'�-�&�.�3�%�5�+�/�)�0�5�'�/�+�7�3�.�6��/� �-�.�8�(�+�3�%�*�0�3�*�� �!�2��*�1�'�&�4�2�.�%�;�/�,�%�-�,�0�.�'�"�/�!�-�)�3�&��.�.�7�*�)�,��6�6�-�)�&� �0�4�;�+�2�'�.�)��!�4�)�0�+�#�*�/�*�4�#�3�*�9�+�>�-�)�#�&�1�/�.�#�3��#�.�*�.�-�2�/�0�'�+�5�'�4�A�)�,�/��0�-�'�.�0�.�$�0�5�?�3�*�&�'�,�.�-�2�<�$��+�.�'�3�#�-�0�,�-�.�$�*�5�4�;�&�4�*�4�,�9�0�*�/��)�,�)�0�,�3�(�/�-�+�)���9�)�)�-�4�2�)�-�2�+�4� �%�&�0�%�&�%�7�,�1�.�:�.�5�&�*�;�ـӀπՀՀ܀ԀـրƀՀ؀рـڀ؀ۀـՀ׀րӀրՁ*�0�4�&�.�8�'�&�8�/�/�/�0�-�+�+�,�3�4�-�<�)�8�%�,�*�.�"�.�*�1�"�4�%��+�+�/�.�"�)�&�*�5�<�/�2�/�(�.�-�+�3�"�2�+�2�'�&�7�)�2�5�0�.�(�$�8�,�-��)�*�0�(�0�"�&�8�%�2�%�-�$�&�#�,�0�,�<�7�.�$�*�8�3�0�)�8�(�(�"�-�-�$�+�-�1�0�#�+�-�?�<�-�)�-�(�2�&�+�/� �5�&�,�+�*�7�+�2�"�-�/�,�4�0�%�.�+�4�!�(�3�)�"�.�1�%�/�/�1�/��.��*�*�,�+�4�)�)�.�%�2�%�%�-�*�6�*��*�%�.��2�+��6�0�-�&�$�"�(�.�9�3�5�3�6�"�,�/�.��#�&�-�6�4�,�7�)�/�+�%�-�3�+�(�6�-�1�+�=�%�.�1�-�)�/�9�(�.�/�$�.�0�2�*�&�4�#�(�3�1�#�;�,�/�1�(�:�$�-�5�*�#��4�2�)�2�,�*�7��%��#�'�&�)�#�2�3�(�5�0�,�%�/�2�/�.�1�,�-�4�2�(�/�/�$�&�)�#�9�0�+�4�.�3�1�)�(�"�+�%�$�*�/�*�$�)�)�*�:�(�5� �(�*�,�)�'�,�5�/�/�)�/�#�%�1�(�0�*�"�8� �)�.�%��)� �$�6�)�8�1�3�.�1�,�<�/�.�(�)�-�4�/�/�+�(�*�1�(�-�5�)�*�.��'�'�)�8�/�(�#�3�$�0�0�*�'�3�:�5�(�'�%�5�0�3�/�-�3�$�#�*�&�2�4�'�1�%�-�(�8�0�+�&�4�(�.��1�:�'�8�*�4� �'�6�(�-�-�*�(�$�/�/�7�'�5�*�$�/�%�3�4�8�&�,�-�.�-�+�)�6�-�1�$�.�6�#�&�+�(�$�4�;�*�1�4�1�$�%��4�-�9�%�6�*�/�&�'�+�/�'�$�>�:�7�&�1�+�.�,��4�(�,�*�<�,�1�-�,�3�&�7�4�)�7�5�:�6�+�4�/�*�4�ӀӀրՀڀր׀Ҁր��Հր؀؀׀р؀ՀـӀڀր؀ف%�5�<�5�,�*�1�>�%�*�;�9�/�+�/���+�.�$�%�(�6�)�*�4�+�#�1�,�-�6�(�,�1�2�3�'�%�/�-�D�-�8�6�#�+�)�6�*�2�/�+�.�)�)�,�'�2�2�%�#�1�5�+�*�5�1�2�'�.�/�0�-�&�6�*�#��"�%�!�)�*�5�%�2�3�.�%�0�"��+�=�&�$�>�$�%�7�+�5�2�%�)�/�7�/�1�3�/�2�,�'�!�#�$�*�.�.�/�)�9�/�#�3�*�+�$�&�$�-�'�6�!��#�+�1�7�2��#�!�)�5�1��'�+��*�4�%�2�+�2�-�+�5�)�9�1��0�5�>�2��9�,�%�0�6�,�3�9�2�4�3�+�3�4�*�!�3�"�/�+�3�%�5�+�6�'�'�"�+�+�$�'�<� �2�2�0�=�+�)�+�-�2�)�.�-�7�5�(�&�)�)�1�2�1�%��)� �$�/�.�4�>�-�1�1�,�-�+�%�)�+�2�3�.�/�*�"�(�/��7��:�2�%�(�%�*�,�,�(�8�/�-�*�/�)�0�1�'�4�1�,�(�1�<�0�/�-�2�#�(�0�*�5�*�5�)�(�5�(�*�1�(�(��%�,�'�#�(�+�,�/�+�-�.�*�0�5�0�B�4�3�(�.�0�*�*�7�-��*�'�"�&�6�=�1�8�#�+�1�/�#�/�+�8��(�!�*�/�*�7�:�'�+�2�0�(�-�.�0��'�+�+�'�0�'�=�0�"��2�$�+�+�0�7�,�.�"�-�)�,�1�"�*�%�,�!�'�%�6�!�4�*�/�.�$�)�9�5�1�!��5�:�7�+�/�,�+�)�&�#�:��+�$�*�-�)�#�&�0�%�&�'�+�'�3�)�#�,�8�-�7�/�.�+�8�/�(�4�)�$�/�)�0�,�-�1�/��(�4�,�)�1�&�&�+�0�+�/�&�.�4�5�&�&�"� �(�2�,�(�6�!�'�)�+��+�"�7�%�:�&�+�"�"�$�-�-�$�*�6�)�.�-�'�3�(�+�0�&�0�.�-�&�;�5�A�/�@�,�ۀ׀׀׀րր׀ԀӀǀԀ׀ڀрԀـ׀րӀՀ؀׀Հԁ&�)�(�)�&�>�/�1�?�*�+�%�,�,�(�4�7�6�3�'�;�/�/�$�/�)�7�.�.�;�*�%�/�/�*�2�-�+�.�5�%�.�/�,�-�/�&�/�6�-�3�:�"�+� �.�/�)�$�(�1�-�)�,�2�1�1�1�(�$�)�*�0�&�&�1�$�8�<�-�1�#�#�.�/�+�/�*�/�6�#�7�+� �-�)�+�&�*�;�6�2�&�/�/�-�5�7�-�0�+�'�0��.�*�0�5�)�'�9�0�+�+�-�%�/�$�&�0�'��0�(�&�4�*�5�#�#�*�+�,�-�$�+�&�&�)�)�.�6�)�7�-�,�+�&�*�(�1�+�)�)�#�/�"�4�7�&�4�%�$�,�'�,�!�,�/�4�2�4�.�&�%�*�,�1�3�'�5�7�:�0�/�0�3�C�4�%�4�%�*�%�-�(�%�#�,�-�9�'�%�0�!�1�-�,�2�0�.�5�/�$�/�0�&�,�%�.�+�/�#�(�-�.�1�5�.�.�+�+�3�+�"�*�;�7�&�0�0�%�1�,�4�%�+�.�.�)�4�7�1�-�-�/�(�-�!�*�<�)�/�%�4�)�3�5�,�/�,�,�6�%�8�/�;�7�&�'�*�"�/�)�A�1�)�(�-�,�+�>�'�$�-�-�3�1�.�0�(�*�"�,�5�4�'�'�(�$�=�*�:�.�(�5�(�2�'�!�%�(�-�0�,�.�/�2�&�5�5�3�+� �*�1�@�"�*�2�3�#�/�+�)�@�%�'�%�:�*�4�7�"�-�)�.�4�)�'�/�(�)�-�0�+�-�,�)�0�/�)�0���1�0�0�5�/�3�1�)�8�*�'�&�/�3�-�'�-�-�u�8�'�(�2�)�+�!�.�(�%�.�1�,�'�7�%�3�)�3�.�1�7�1�,�<�'�(�2�4�/�(�-�5�*�*�*�(�3�/�#�'�(�'�1�*�/�1�4�3�&�-�(�(�$�&�,�,�:�1�%�5�/�-�9�3�+�:�5�1�,�*�5�'�.�/�2�.�'�$�#�3�,�%�(�3�'�/�6�.�"�)�!��%�-�+�2�*�1�*�0�(�7�$�7�5�(�3�ۀ؀Հ؀Ӏۀـ׀Հǀր؀؀ڀ؀ЀڀӀڀՀՀـЀہ%�(�$�4�1�&�,�.�/�<�/��-�.�3�1�3�(�-�(�1�4�:�)�*�3�+�7�'�%�(�,�)�4�0�-�0�%�1�/�/�(�8�.�/�,�/��4�4�+�5�.�.�)�<�6�0�+�2�+��+�2�9�.�&�$�0�"�*�.�.�#�(�*�'�+�%�-�'�%�/�>�/�4�#�%� �0�,�3�#� �.�$�'�/�0��&�+�-�-�$�4�6�/�;�3�,�6�/�/�A�#�/� �(�%�(�$�%�+�7�-�5�)��$�)�3�8�)�(�"�.�7�%�#�:�)�7�3�%�,�$�-�$�)�)�&�/�3�,�$�(�&�/�-�&�*�;�)�'�+� �(�+�;�)�+��,�!�(�6�*�2�/��%�'�(�%�'�+�%�#��*��/�2�.�$�'�+�1�(�+�'�4�0�,� �:�+�.�,�0�2�/�7�2�%�%�)�5�-�5�)�)�"�1�-�-�7�6�>�1�0� �6�/�&�-�$��-�'�4�.�)�3�+�6�'�"�:�%�$�#�+�6�!�9�%�8�,�.�,�0�-�&�1�2�"� �*�-�)�2�.�9�)�0�3�2�/�8�+��*�3�)�5�2�9�0�/��-�0�+�'�.�+�.�,�-�-�5�(�+�+�(�%�-�#�5�0�+�.�0�!�2�+�)�+�)�-�$� �,�/�)�%�*�%�+�1�1�&�#�7�3�!�"�*�%�)�'�+�'�!�6�+�+�>�2�"�$�7�/�*��;�$�%�*�,�,�'�5�4�+�4�'�/�%�.�;�5�1�0�$�4�*�5�7�0�+�(�)�5�-�=�4�5�'�7��!�(�+�$�1�4�.�(�%�:�-�M�*�(�-�'�/�%��3�0�D�%�7�/�)�4�1�*�9�'�'�0�3��%�%�,�1�*�%�0�.�"�-�&�=�+�%�0�*�>�.�/�(�+�%�0�$�$��$�*�4�5�5�7�8�3�2�.�1�$�&��.�1�3�.�.�0�)�)�-�%�,�(�5�*�2�'�0�&�3�2�>�4�4�1�&�5�7�1�2�.�:�6�5�-�/�#�-�0�3�*�1�:�-�0�րրр؀πՀՀրҀŀ׀ЀՀр׀ԀڀԀ؀ڀҀр׀΁,�)�0�5�&�5�6�*� �"�2�(�+�7�(�$�,�/�/�,�.�6�3�,�+�)�/� �&�&�'�+�0�/�+�!�*�.�7�4�6�(�.�-�1�)�/�-�(�0�-�/�/�*�1�;�-�9�*�%�'�3�(�3�,�2�(�)�E�5�'�+�3�/�>�8�-�9�&�#��-�(�7�/�� �$�'�-�4�-�0��5�3�!�(�.�6�4�7�)�*�%�$�)�+��'�-�2�*�*�.�+�3�2�1�+�&�8�/�*�=�+�*�#�'�-�0�(�(�4�"�,�-�!�*�%�+�3� ��-�7�/�1�,��$�&� �(�+�1�#�2�+�/�7�,�-�0�%�2�&�3�0�0��)�,�+�*�/�@�<�7�9�!�+�#�)�/�/�)�0�,�&�3�"�/�.�6�=�9�2�)�/�1��*�,�/�1�,�*�+�2�;�/�,�&�#�!�2�6�-�7�+�4�8�-�-�3� �(�5�%�-�?�#�5�9�2�6�8�+�+��/�6�0�,�)�*�#�3�/�-�3�+�7�2�'�!�$�.�"�5�-�(�&�;�/�#�+�%�0��-�(�(�(�-�"��3�9�5�5�(�'�!�)�1�'�2�7�-�)�-�6�*�%��1�*�#�%�,�3�+�;�1�'�7�*�-�(�9�,�0�)�/�*�.�2�5�5�(�1�)�-�/�#�+�*�!�0��!�'�&�!�!�*�'��2�8�(�.�6�4�,�2�*�#�1�0�3�&�2�(�$�*�.�*�&�/�+�3�9��+�+�)�)�'��(��%�-�,�/�+�3�/�+�*�,�.�-�9�5�"�6�5�(�2�2�3�.�,�,�+�%�.�1�/�r�:�0�8�(�.�*�+�#�+�0�2�(�.�-�"�$�8�'�+�$��2�%�:�"�0�/�+�*�+�*�1�*�'�,�,�"��%�)�*�)�,�7�0�3�-�$�-�'�.�4�#�+�*�&�$�1�+�'�'�9�(�)�4�>�(�/�6��.�(�(�.�7�.�'�9�)�2�3�,� �#�,�+�$�-�2�+�'�%�1�&�,�7�-�%�%�*�-�+�2�%�)�-�;�7�րՀՀڀրրՀրՀǀրԀ΀Ҁ؀ԀڀՀӀ؀ـۀՀӁ*�/�-��0�/��4�4�+�%�1�.�"�$�2�0�0�/�+�*�+�$�4�,�2�3�8�4�2�;�+�!�*�.�"�!�,�)�.��#�3�/�6�3�9�1�4�.�.�3�(�+�'�,�+�*� �(�3�-�7��0�-�3�2�'�+�2�+�+�%�)�)�4�-�3�1�&�1�/�.�,�)�7�*� �0�%�7�,�3�.�(�%�6�&�.�(�#�)�>�)�*�5�8�7�0�&�.�+�2�0�-�)�(�*�)�0�(�#�)�'�*�/�(�&�6�#�.�2�*�#�*�,�'�G�/�.�+�#�+�!�&�,�%�/�0�!�(�2�%�*�'�(�%�&�$�-�+�/�&�(�)�)�$�-�0�"�;�3�2�+�'�'�0�)�+�)�'�)�(�#�-�0�/�*�.�"�,�%�!�'�3�)�(�+�6�.�1�/�&�(�)�)�+� �,�)�)�#�3�&�7�/�0�,�+�5�,�:�1�$�-�(�'�1�/�6�2�+�:�9�)�,�7�*�3��#�#�+�4�'�.�/�'�)�-�0�"�*�4�-��+�>�8�,�(�1�0��/�+��-�.�-�.�,�.�&�)�+�*�2�*�%�0�3��5�'�+�0�#�1��%�-�(�+�6�*�3�=�3�0�;�(�/�7�5�,�/�-�,�'�:�'�3�3�%�"�)�5�"�.�8�3��)�.�%�,�*�'�5�8�+�.�.�)�A�.�#�0�-�-�)�2�(�#�6�4�,�2�,�1�'�(�#�+�-�3�3�2�$�2�5�/�:�/�-�1��.�-�0�/�6�9�+�-�0�1�-�9�'�3�/�/�-��!�'�(�3�7�+�9�.�*�(�2�1�-�<�4��%�/�-�#�1�0��0�1�0�)� �%�$�)�9�#�-�3�-�)�+�,�)�(�1�*�5�9� �;�/�%�7�#�#� �;�*�*�$�(�%�5�.�;� � �/�)�/�3�&�2�.�.�&�)�+�8�.�#�"�.�)�6�(�4�$�7�0�5�5�4�0�%�+�6�3�'�8�1�6�1�<�2�%�"�5�3�*�*�#�.�-�2�0�.�/�3�=�1�-�6��*�0�3�)�׀Հ׀׀Հ׀Ҁـ΀̀ҀЀ׀ԀրӀڀՀՀԀՀڀՀҁ8�1�/�-�(�2�3�)�7�,�9�2�+��4�)�7�+�*�/�)�7�-�4�=�-�(��%�*�)�'�3�-�/�7�/�/�.�!�-�+�+�#�'�%�4�*�9�,�2�1�+�/�*�9�,�2��(�*�%�6�%�3�+�1�*�.�0�$�'�#�0�'�'�,�7�/�/�#�*�0�4�)��*�&�<��'�4�.�-� �4�2�4�+�&�/��&�+�2�#��3�>�2�*�;�2�*�,�.�/�(�"�#�*�)�'�#�"�*�<�/�0�2�,�-�@�*�6�-�0�'�4�4� ��2�#�(�(�(�)�2�4�-��"�!�3�0�3�'�/�*�<�1�'�9�(�)�)��-�"�@�'�6�4�%�3�@�&�4�)�,��0�&�0�6�3�;�%�8�'�&�(�7�'��%�#�(�.�,�4�0�.�3�5�(�9�)�9�=�6�3�7�-�/�0�,�/�&�'�3�&�-�,�%�.�%�6�2�-�1�#�0�0�(�3�"�'�/��4�"�3�'�)�"�0�0�(�2�%�7�(�&�%�/�:�-�+�+�%�,�4�(�,�,�,�1�7�0�#�)�-�.�+�.�3�+� �/�2�/�4�'�0�2�%�*�(�0�3�8�%�0�3�)�+��)�"�&��+�'�!�(�/�%�1�%�)�3�0�2�/��/�3�&�'�2�<�,�7�@�A�4� �.�1��C�)�.�-�"�+�&�&�/��4�4�4�)�%�'�/�.�)�%�2�(�7�)�1�"�"�+�+�'�7�+�/�.�/��)�/�5�"�5�$�%�2�2�$�4�6��6�%�*�/�!�:�(�/�!�-�-�%�%�0�)�#�&��)�%�/�!�(�.�+�6�'�8�/�3�;��2�+��.�"�2�+�/�7�0�0�'�"�2�2�;�3�*�4�)�7�/�8�6�7�0�%�:�*�)�.�-�)�6�,�2�0�.�?�,�'�&�7�%�6�/�+��6�&�2�4�(�-��-�/�(�)� �7�6�'�$�.�5�0�/�)�%����-�3�,�;�0�+�5�3�5�7�@�9�5�)�.�+�/�"�+�5�/�,�*�/�4�;�ـڀՀـ؀܀Հրрǀ׀؀ۀـՀӀրۀ݀׀Ҁ׀ـہ2�E�/�/�(�'�/��9�5�1�*�+�!�1�4�+�(�4�-�*�*�8�2�0�4�2�)�;�6�,�*�4�4�&�3��"�6�)�$�=�/�'�2�*�4�D�,�4�'�5�5�)�*�%�5�&�4�!�,�$�.�!�+�)�8�/��;�'�(�/�2�4�8�'�.�+�.�/�.�,��(�0�F�.�-�.�*�(�2�(�+�!�1�-�4�/�2�1�+��2�+�!�3�$�%�&�2�&�5�5�/�;�7�/�1�4�7�#�*�.�&�1�*�.�"�6�/�,�/�'�/�/�+�'�+�4�'�0�;�-�3�'�)�0�5�$�*�&�1�;�$�6�9�*�6�&�!�+�6�(�0�*�0�+�4�0�(�3�+�3�0� �0�(�;�/�"��3�!�)�4�,�#�:��(�)�%�0�(�/�2�/�2�+�&�-�;�&�/�4�>�.�5�5�-�0�=�'�2�!�+�4�2�/�<�'�%�)�!�'�1�(� �)�.�2�/�!�1�)�!�0�*�'�7�6�)�/�2�#�7�'�&�;�-�0�'�)�!�#�+�*�+�4�&�&�-�(�)�/�.�7�'�*�#�2�%�5�1��'�3�/�)�4�6�(�&�(�+�.� �/�+�7�+�6�3�2�"�'�)�(��8�*�.�2�3�4�+�*�,�$�*�1�,�3�0�'�'�>�)�&�.�#�+�7�/�$�"�0�1�'�&�.�$�"�+�.�!�0�,�+�,�-�5�)�(�)�(�/�:�7�/�@�'�$�(�#�&�-��/�-�'�2�,�(�"�-�1�4�2�+�5�*�2�!�,�6�2�2�;�%�G�0�.�;�:�/�0�9�7�*�4�*�)�0�-�*�*�1�0�$�-�*�9�!�%�)� �3�)�5�+�3�+�,�#�$� �)��+�.�1�4�0�5�!�*�+�B�4�&�+�'�*�,�3�0�6�+�-�;�/�$�2�7�.�/�$�"�)�/�'�'�0�)�2�0�(�1�6�7�(�1�7�+�*�*�,�/�2�-�*�9�#�1�7�-�2�3�"�"�3�(�.�1�#�4�#�3�+�)�.�)�'�0�*�!�2�7�,�<�.�+�-�+�'�-�.�6�+�Հ؀Ӏ؀ۀۀր؀ڀÀ؀ـրր׀؀р̀׀ԀӀրӀف8�)�-�/�)�0�#�0�+�(�,�.�/�)�3�#�%�(�-�-�.�.�2�/�&��)�)�.�(�9�1�0�(�2�0�2�6�(�3�"�.�7�0�)�#�.�6�/�3�(�1�A� �.�)�1�%�3�)�.�'�3�;�$�@�(�-�/�&�3�.���'�<�0��+�/�;�*�6�)�'�+�/�2�#�0�/�,�+��#�#�4�/��/�5�$�-�3�7�%�(�/�(�(�(�3�"�-�+�3�2�6�(�/�+�3�)�!�-�'�7�5�/�&�6��0�)�1��/�7�&�2�'�3�)�2�,�1�-�$��+�)�%�,�1�*��2�/�1�0�0�1�/�/�,�+�*�-�.�2�'�%�,�3�0�+�/�6�*�/�3�.�+�4�4�7�-�*�7�2�0�4�.�8�(�(�>�.�/�)�4�0�2�*�)�)��1�0�-�/�.�!�"�2�3�(�8�'� �3�*�*�(�-�*�<�)�+�$�-�*�1�8�2�6�1�7�2�;�,��+�7�3�-�+�%�*� �2�4�#�3�$�3�5�/�.�'�+�3�0�/�'�)��3�9�'�/�)�,�1�-�1�7�0�'�"�,�%�/�6�,�.�,�%�3�1�6�0�-�2�6�0�/�-�'�8�7�.�-�/�(��-�2�)��/�-�,�6�2�2�/�*�%�+�2�1��3�$�+�5�5�6�*� �.��7�%�-��)�'�5�%�*�9�#� �8�+�#�(�:�4�%�8��;�)�9�)�+�/�$�%�%�%�#�+�)�(�'�,�&�5�6�'�+�>�,�/�-�'�)�:�;�8�5�@�2�5�7�<�9�-�.�%�/�7�-�8�+�/�:�.�%�*�3�4�)�5�;�3�.�4�)�,�&�7�:�)�*�#�&�1�#�0�4�/�)�=�;�"�'�)�'�0�1�-�0�)�!�0�$�>�'�+�#�"�,�2�'�(�&�5�(�)�(�'�1�2�"�/�+�&�/�.�;�.�/�&�%�8�;�(�,�0�)�.��/�*�%� � �(�*�/�+��1��)�1�5�6�.�,�'�4�1�=�3�2�&�.�0�8�2�3�*�1�'�8�,�рҀ؀׀Հ׀ـр׀ƀـրڀՀրҀـրր׀Ҁـ؀ځ1�/�.�,�=�*�3�+�1�1�(�'�7�%�&�%�*�+�*�&�-�)�)�*�(�0�'�%�0�$�4�'�6�6�4�-�6�+�.�(�)�+�/�-�4�*�+�*�+�/�0�'�5�#�-� �3�'�#�#�0�-�,�,�(�0�B�-�8�&�7�'�/�.� �*�0�#�B�9�4�9�0�2�/�(�6�+�'�'�+�1�+�6�1�-�/�0�0��3�!�&�*�0�*�4�.�'�,��*�:�3�(�"�(�&�=�*�0�'�"�,�+�5�+�3�)�2�1�7�-�$�.��*��)�'�#�.�'�#�)��-�)�&� �&�9�-�,�7�)�)�4�,�0�*�,�1�&��*�"�-��$�/�%�B�#�*��+�9�5�%�-�)�7�*�3�3�.�4�5�0�0�/�#�4�<�*�)�,�2�*�.�-�2��!�)�'�%�3�1�4�*�)�#�)�-�$�+�4�+�*�#�1�&�/�3�2�*�-�+�3�6�*�/�&��,�*�2�#�!�1�4�6�*�)�2�4�4�+�3�>�%�-�.�0�/� �%�!�1�!�6�&�+��+�,�%���,�&�.�4�1�2�1�.�1�5�/��.�)�'�.�%�3�1�%�&�,�-�+�)�!�=�3�/�-�3�&�5�.�1�$�%�3�1�0�*� �7�*��&�$�&�*�7�1�4�/�/�!�*�'�D�,�"�/��-�(�2�.�,�/�?�/� �*�"�.�1�/�)�)�+�/�,�0�(�$�#�0�%�)�1�,�/�7�.�'�� �-�#��4��+�.�/�'�-�/�.�=�7�&�.�2�7�2�4�6�B�8�7�+�5�1�2�.�6�+�0�!�.�-�3�-�+�$�(�+�!�&�/��5�6� �/�'�2�.�/�@�/�+�*�.�#�8�5��+�)�3�-�#�>�+�,�/�'�6�1�.�2�-�0�-�#�/�1�*�0�,�$�3�6�'�+�(�%�'�*��$�&�8�#�0�+�2�*�*�2�8�(�+�2�7�5�*�-�2�6�-�3�/�#�2�'�1�1�0�6�0�+�*�8�+�(�2�,�:�+��'�1�;�+�0�*�*�#�+�րڀՀ׀ڀՀ؀׀ـÀրՀҀـ׀Ӏڀ׀Ӏڀ׀ـրځ+�.��,�5�+�9�%�2�5�;�)�-�0�(�-�8�;�.�2�/�<�&�&�1�3�,�'�)�/�.�)�-�/��&�*�/�1�(�?�*�9�+�*�3�/�,�+��'�,�%�(�.�8�/�)�8�2�5�*�#�1�+�(�-�,�*�,�2�+�<�'�+�4�*�/�"�)�1�3�1�,�2�.�+�*�(�2�6�,�-�/�1�'�1�0�0�)�2�0��8�*�*�*�)�(�/�8�*�7��1�.�2�&�6�+�+�2�.�/�(�+�$�$��(�&��)�5�"�*�*�.��,�9�)�8�(�+�(�.�,�4�$�(�1�#�)�/�,�.�&�1�#�/�#�,�2�-�*�1�,�0�,��0�#�.�)�*�!�,�!�-�5�0�2�5�5�6�3�+�8�)�:�+�$�2�*�@�%�)�&�%�(��'�%�4�,�5�)�1�,�%�+�!�4�)�,�"�$�4�.�&�3�7�-�6�7�,�.��1�7�,�&�.�4�,�#�3�2�'�8�-�$�+�*�,�0�1�/�-�.�!�(�:�/�9�%�/��.�/�,�3�/�3�5�7�$�'�*�.�(�,�6�/�#�3�)�(�,�1�5�2�"�4�!�0�)�6�.�+�,�6�;�3�0�'�1�)�3�+�/�+�$� �6�5�+�#�=�&�+�(�5�+�#�0�.�F�(�"�$�+�&�'�(��(�"�,�+�'�2�)�(�&�7�%�/�)�.�0� �9�&�/�8�$��<�/�$�+�(�$�/�%�9�+�+�*�-�*�(�?�/�'�0�/��)�5�7�"�-�7�*�0�8�1�0�3�1�C�I�I�E�\�E�4�7�C�4�6�(�#�7�.�9�!�1�1�/�7�.�+��&�'� �-�6�(�/��5�/�/��5�)�+�2���8�&�-�5�)�-�0�/�6��4�(�3��/�1�#�(�9�!�(�!�1�,�.�4�5�.�0�3�)�$�"�G�-�2�+�)�-�-�)�2�3�*�2�'�)�-�5�3�)�0�,�(�'�;�"�(�)�*�-�/�4�+�,�'�/�)�/�$�8�0�"�<�7�"�/�/�1�0�%�,�-�8�*�4�@�׀ЀՀӀ܀ـ׀ҀՀˀр؀ՀӀπЀրڀԀ׀рӀր؁%�5�/�.�+�4�2�*�+�%�&�6�,�5�/�6�$�+�5�3�*�-��+�%�(�*�1�.�1�,�.�0�-�.�"�5�)�!�)�"�+�#�5�*�0�+�-�%�,�.�)�+�4�7�-�4�,�0�+�.�)�(�/�#�&�/�+�&�7�)�2�&�+�:��.����-�*�*�5�>�(�'�$��,�1�C��*�0�'�1�(�3�2�9�.�#�+�'�'�/�)�'�&�*�$�+�-�,�<�%�(�(�'�3�'�/�2�$�!�.�0�#��,�.�/�1�+�'�(�*�*�/�%�(�9�+�%�$�+�,�'� � �.�%�'�0�&��2�&�'�"�-�,�,�)�#� �)�6�.�0�6�+�7�%�7�.�0�1�#�#��.�/�*�5�/�%�*�.�.�4�.�4�0�-�,�3�/�1�3�/�3�)�7�9�'�%�'�,�'�'�-�,�.�/�-�2�!�*�"��+�-�7�'��8�4�9�0�/�,�-� �+�(�+�)�,�)�-�&�8�0�'�-�#�'��.�/�(�7�,�&�+�4�9�)�*�6�/�3�?�#�/��$�4�1�%�%�/�3�,��/� �*�5�1�5�)�1� ��0�.�/�(�2�7�5�'�-�3�2�,�)�(�6�'�*�3�,�#�&�8�0�#�*�0�+�'�'�/�'�-�*�&�?�*�3�4�.�&�&��#�"�#�,�,�#�,�*�*�(�)�/��'�3�*�,�.�9�-�.�*�)� �2�+�/�$�%�0�2�/�(�?�'�6�'�7��$�/�3�<�:�&�)�:�-�-�/�1�<�;�P�E�T�K�B�G�^�G�8�7�1�(�=�(�/�(�C�&�$�>�.�+�/�1�3��$�)�&�,�1�1�&�/�'��'�(�,�%�*�+�1�+�"�/�&�'�!�+�'�#�'�.�+�/�/�!�%�+�)��#�4�+�)�8�/�.�"�1�,�-�-�/�6�'�+�3�/�6�*��+�8�1�#�4�=�+�$�5�1�!�/�4�1�1��'�1�1�,�(�&�%�!�-�=�2�3�,�:�/�,�/�'�1�2�(�-�9�,�'�1�(�$�2�(�4�ۀۀڀՀրۀـЀۀ€րـՀրՀ؀ӀրԀۀ׀ՀЀف*�5�&�3�(�1�,�;�&�#�*�.�3��9�(�/�)�5�&�0�(�-�/�1�4�2�.� �-�1�&�+�-�&�3�/�"�1�*��+�&�$�)�)�(�-�2�)�%�#�*�$�3�/�6�,�(�'�0�$�+�$�.�/�4�.�5�/�)�+�'�*�(�,�,�+�2�%�-�)�3�+�6�'�+�.�*�1�,�/�+�.�5�+�'�3�<�4�!�.�'�0�)�)�7�'�1�-�)�1�/�(�0�-�/�,�'� �+�,�(��,�.�*�2�*�)�0��#�#�*�'�3�1�1�.� �%�#�(�'�)�*� �-�/�:�#�#�)�0�+�$�+�#�-�*�/�'�+�%�3��+�>�"�#��*�(�7�'�$�.�7�*�*�1�!�6�$�>�,�3�/�/�/�*�#�=�1�/�-�*�8�#��1�3�*�7�1� �1�+�,�&�$�1�%�4�8�!�0�'�-�1�2��/�)�'�'�6�,�,�,�7�(�3�.�1�5�#�+�,�#�9�0�!�'�%�)�/�0�.�,�0�9�%�%�(�-� �'�%�&�3�:�1�/�.�3�/�/�5�9�)�2�6�-�)�"�2�*�5�*�!��+�'�/�.�.�)�4�4��-�+�!�+�0�8�.�;�1�-�2�-�/�-�)�'�'�7�%�-�*�+�/�9�/�'��#�(�4�1�0�"�'�-�(�0�*�!�+�3�"�$�-�.�0�.�0�5�2�%�.�+�$�:�'�3�)�-�-�&�"�)�.�/�*�,�8�0�4�*�8�+�,�.��1��"�$�5�(�(�%�+�1�6�=�A�E�M�I�a�A�]�O�\�H�K�5�=�1�+�/�/�=�.��1�*�+�%�3�-��.�$�$�)�3�"� �.�0�.�'�2�� �2�/�(�"�+�7�:�/�2�5�-�%�&�-�(�:� �7�0�+�/�7�-�1�2�,� �0�0�1�-�%�9��&�/�0�,�$�-�/�*�7�$�� �.�/�<�6�3�!�'�1�%�7�-�+�!�#�#�0�)�+�,�5�6��5�1�+�#�:�6�2�9�-�+�.�(�*�+�4�.�&�/�!�&�2�,�2�ӀـՀրрӀӀ׀рɀӀҀҀ׀؀ހր؀݀׀ր׀׀ԁ"�.�:�-�=�-�!�,�@�1�2�+�'�6�&�/�;�0�-�0�#�-�/�(�'� �2�5�2�(�+�=�.�2�"�3��>�1�)�)�'�*�!�'�2�+�@�-�.�4�-�(�/�/� �&�)�3�6�.�-�(�!�9�'�$�8�3�9�3�5�0�)�#�:�/�,��(�+�$�/�/�4�'�/��$�+�"�/�/�)�3�,�*�)�+�3�2�*�&�*�+�#�/�5�0��0�!�3�%�%�#�!��)�4�$�1�0�.�3�=�1�"�+�(�)�3�3�&�)�$�&�"�*�$�/�&��)�%�+�5��'�&�)�*�)�+�*�;�*�'�*�4�'�#�*�$�4�'�*�/�%�,�2�9��+�6�+�5�0�:�3�)�$�6�$�,�/�.�+�/�)�%�6�(�*�(�#�/�2�!�9�#�;�"�$�%�-�3�'�-�+�.�.�*�:�,�7�'�8�:�0�0�-�(�,�/��8�%�.�$� �"�(�2�%�&�.�/�,�5�%�0�.�%��(�+�*�6�(�*�3�,�6�'�)�/�)�)�-�2�*�1�#�2�/�*�+�7�'�/�5�0�'�0�2�!�"�)�:�4�1�)�/�9�/�'�3��'�3�(�/�!�(�/�1�1�/�,�*�0�:�"���-�&�/�%�0�*�*�$�/�0�,�7� �#�#�-�)�$�2�,�,�+�/�$�/�9�*�(�#�,�.�(�/�%�/�*�#�)�*�5�/�%�*�6�&�2�-� �8�(�&�?�)�2�'�2�-�4�.�9�*�;�4�6�-�.�2�+�0�;�(�-�6�)�/�D�@�X�[�\�N�Y�N�E�5�Q�2�7�2�3�3�5�%�/�%�7�5�.�+�)�2�4�;�'�*�'�2�2�1�%�5�=�%�%� �-�/�1�%�1�+�"�2�)�,�)��2�4�-�2�.�$�C�%�'�*�,�0��+�&�(�*�%��4�-�&��2�(�*��-�+�4��&�*�&�-�(�-��+�7�2�,��?�:��$�%�9�#�-�1�(�"�%�2�.�+�'�%�4�2� �.�1�*�/�+�+�0�,�5�<�)�1�$�6�/�<�ـր؀Ӏـ׀߀׀Ҁˀր׀ӀӀ؀؀ԀӀր؀ڀ؀ـՁ6�%�/�5�4�*�&�4�4�/�(�.�1�)�5�1�!�3�7�1�8�-�"�5�#�*�%�8�,�%�(�*�)�7�1�,���(�!�-�4�2�0��7�(�#� �-�(�-�+�-� �1�(�-�)�)�4�,�6�*�3�1�)�(�!�+�0�1�)�8�"�-�;�*�,�#�4�,�,�'�#�0�6�/�#�9�#�0�!�4�7�(�%�*�,�!�!�*��-�%�3�!�6�!�#�6�)�.�/�'�)�"�2�,�/�+�%�*�5�5�.�4�2�'�4�7�,�&�&�-�5� �)�)�5�&�"�#�$��4�8�6�&�0�'�8�9�5�-�%�)�.�3�.�8�7�#�(�,�$��(�.�)�3�<�.�@�'�6�%�&�,�/�#�,�-�'��3�2��5�0�)�-�-�4�"�%�'�/�1�.�.�6�*�1�"�!�/�9�-�#�'�8�2�4�&�/�3�(�%�3�$�1�7�*�#�,�*��/��/�#�4�-�"�,�/�(�2�%�?�-� �8�-�!�)�#�+�#�0�4�2�)�+�#�0�+�2�?�&�5�-�5�/�/�)��6�'��A��.�+�:�%�.� �.�.�.�.�/�0�4�)�)�2�9�&�6�)�/�0�*�,�6�6�/�,�,�/�(�)�+�-� �3�*�,�2�*�)�+��*�,�.�,�/�1�/�1�)�,�+�/�.�%��)�'�0�"�*�)�$�2�&�/�2�3�"�2�)�(�*��"�0�3�)�3�9�3�)�:�-��2� �/�%�-�6�.�7�%�0�0�'�-�2�-�6�4�8�6�C�:�E�@�R�O�N�b�T�`�Q�N�R�6�;�3�&�1�"� �>���7�+�+�+�0�1�6�%�$��'�2�%�2�8�1�5�*�+�)�'��1�*�5��2�,�-�-�0�0��+�,�.�4�'�1�(�6�(�#�)�7�'�0�!�!� �-��7�7�*�-�2�#�8�,�+�0�.�+�/�+�1�$�,�"�*�!�8�!�/�+�"�.�.�,�-�3�(�4�6�.�%�.�.�"�0�,�/�(�2�7�$�/�,�-�.�.�3�5�0�5�)�2�+�(�݀ԀЀڀрՀՀ׀ՀĀԀ׀րՀπ׀؀ـրՀ׀؀ԀӁ+�B�2�!�#�=�6�*�/�'�*�(�2�.�8�(�%�*�*�8�)�7�.��"�/�8� �*�'�$�.�"�&�9�8�)�3�2�+�.�3� �6�+�-�/�5�!�5�,�2�!�-�-�6�)�'�/�/�#�/�%�/�+�)�#�#�1�%�3�#�#�+�0�/��5�*�)�'�8�!��.�2�0�/�*�9�-�&�9�1�#�/�1�2�"�&�'�%�4�,�-�+�<�#�:�)�(�(�*��0�'�,�9�$�9�%�(�/�'�*�7�)�&�1�!�+�(�.�0�1�4�+�7�0�'�&�1�1�&�2�*�#�6��,�+�$�2�,�,�'�(��%�'�!�/�(�/�)�1�*�+�-�(�2�*�!�*�1�6�'�1�-�-�/�)�-�#�.�-�*�"�.�&�0�2�-�)�/�&�,�;�,�*�'�(�"�/�.�2�-�6�*�)�.�&�0�5�%�5�1�$�.�)�3�5�;�/�,�)� �-�3�4�%�#�,�:�,�$�2�-�,�3�*�-�,�+�%�0�-�&�-�4�'�*�0�0�!�*��0�3�2�(�2�4�)�'�*�)�-��3�-�"�5�3�*�4�1�'�/�(�'�-�0�'�2�2�)�2�6�*�+�#�)�&�)�.�-�=�6�'�5�(�-�6�*�&�,�/�0�5��'�#�%�1�'�7�"�*�!�/�*�$�,�$�/�(�+�/�.�"�%�-�+�-�,�.�0�(�)�/�&�!�6�%�0�#�'�3�8�.�(�8�&�6�$�$�*�&�%�.�,�6�.�&��&��-�/�.�/�%�7�3�)�)�4�+�F�>�4�:�;�[�O�W�M�K�T�F�4�>�5�1�,�/�*�8�,�7�+�,�*�5�&�)�/�-�0�6�,�?�*�)�(�+�/�&��9�3�,�9�2�/�*��.�)�7�0�&�9�-�%�+�3�5�!�-�(�+�*�4�0�5�/�3�$�,�.�2�-�-�.�,�,�-�0�:�$�2�/�)��,�-�/�7�2�0�,�(�.�2�"�/� �#�%�.�#�/�)�-�)�*�$�.�/�%��1�0�1�8�+�)�@�3�/�2�-�7�/�3�&�.�3�8�3�؀р؀ҀрՀ׀ـՀÀՀրрՀՀӀрՀӀրـրրρ.�1�:�>�1�(�+�0�2�6�4�9�&�0�2�-�&�6�-�+�1�1�8�6�(�8��8�/�'�9�)�/�!�5�"�'�)�8�#�2�*�,�(�*�'�'�-�1�$�.�)�0�0�!�$�9�+�%�2�0�'�.�5�0�0�+�0�#�)�&�'�&��.�2�-�2�)�+�#�+�+�0�'�&�2�"�%�)�5�$�&�&�2�!�(�1�8�#�7�'�(�&�,�*�:�-�-�'�0�*�1�!�(�5�,�,�/�'�*�(�*�-�%�.�"�2�.�3�-�'�/�!�*�(�'�,�(�-�)�/�1�5�*�/�*�+�#�!�.�*�0�'�(�6�4�4�"�+�,�&�.�$�(�6�*�)�6�)�3�3�+�*�.�6�(�'�9�;�(�-�,�.�+�&�2�&�4�"�0�4�)�(�-�/�/�8�7�%�*�"�.�,�1�-�0�,�<�(�&�1�.�2�#�8�%� �;�*�:�3�2��*�2�6�%�%�*�3�6�$�)�4�.�+�&� �3��(�%�4�1�+�7�9�7�!�%�&�1�4�+�6�,�:�/�.�6�8�%�!�,�+�)�/�*�$�-�5�5�*�-�2�-�(�'�2��'� �0�'�.�-�2�%�6�1�!�'�2�.�*�*�,�6�,�/�)�9�0�)�1�+�.�2�'���'�*�4�(�+�7�#�2�5�/�+�8�+�2�0�(�5�"�4�"�)�*�-�+�/�2�3�-�-�/�,�/��%�,�4�&�*�!�3�(�!�%�/�&�2�/�&�(�'�*�6�%�0�-�4��0�:�1�/�2�"�(�:�/�8�,�7�0�1�C�A�b�I�I�>�>�=�+�9�*�&�=�%�4�5�(�5�.�$�'�9�%�/�'�,�*�#�.�(�0�(�4�8�4�8�,�,�,�$�1��-�*�*�+�-�'�%�;�.�;�)�'�*�4�'�1�/�'�%�'�6�'�5�-� �,��1�#�,�5�3�+�+�3�/�0�+�.�0�5�/�'�/�1�%�5�%�5�+�,�,�6�)�)�,�.�-�/�1�*�0�1�/�2�-�-�7�,�-�&�*�,�*�0�9�&�2�;�3�)�/�)�"�:�*�'�ӀԀЀր݀րՀـրɀ؀ڀրր؀րր؀؀Հ׀Ӏ׀Ӂ-�7�,�2�5�,�!�+�6�+�1��$�+�3�&�/�+�%�0�.�0�/�(�(�*�1�9�:�*�-�3�'�+�.�/�&�0�/� �-�.�0�2�2�8�(�1�*�0�1�2�%�#�7�+�)�$�8�/�+�<�,�0�:��.�/�5�!�2�7�-�5�/�5�)�-�)�:�3�,�/�2�3�6�(�5�'�!�$�+�.�6�,�1�'�3�8�*�/�8�+�/�+�2�&�+�(�(�1�&�7�+�1�%�$�,�4�%�$�/�(�$�-�,�7�2�2�2�1�"�'�)�*�)�'�.�*�1��%�,�+�%�*�+�2�&�)�&�2�"�.�(�,�,�"�&�/�-�.�-�.�3��(�4�(�/�*�.�"�+�-�1�3�,�$�%�2� �!�"�'� �-�(�(�+�/�/�4�'�/�5�;�.�/�)��,�3�*�9�/�&�:�/��/�'�$�(�)�,�.�2�/�,�=�-�0�!�&�0�4�/�4�0�!�/�1�1�+�,�)�/�:�/�3�3�)�+�"�2�*�8�8�1�6�4�4�/�+�<�9�+�'�'�#�:�5�(�/�)�&�)�%�*�)�-�+�3�:�0�3�&�4��&�,�&�=�+��+��&�'�"�(�:�.�'�"�+�4�9� �/�#�+�!�1�(�2�4�!�7�+�0�#�&�*��2�.�0�4�$�'�.�/�*��'��0�+�(�8�%�-�+�*�/�#�)�#�'�,�)�!�,�7� �*�:�)�2�,�4�+�2�6�4�%�-�-�-�+�%�0�$�7�.�/�2�,�/�$�/�'�%�3�6�6�/�4�I�#� �A�J�T�E�=�@�9�C�0�6�9�(�<�?�.�3�,�'�,�9�$�(�)�'��/�'�5��2�+�,�#�*�#�"�(�3�,� �.�7��1�4�,�>�/�#�(�*�=�A�'�7�5�7��*�-�0�.�)�-�-�2�&�*�5�2�4�0�"�2�,�%�.�6�1�/�-�*�+�0�/�*�-�5�9�.�0�*�7�$�*�8�#�;��(�7�*�-�6�.�(�0�1�'�7�B�+�.�4�:�)�5�B�1�"�5��1�1�(�5�2�%�2�׀ـրӀ܀ڀրԀ׀ƀۀրـ׀׀ՀҀԀ؀ڀ׀ۀـׁ=�%�0�4�<�)�2�!��-�1�5�+�)�C�/�3�&�1�$�(�%�!�%�-�+�(�6��!�8�;�!�9�0�)�$�6�%�%�(�-�,�3�(�-�3�'�7�(�7�-�8�$�4�(�*�2�!�-�&�6��3�-�+�2�0�&�"�&�.�(�+�-�(�+�+�1�;�.�4�+�.�+�%�2�-�,�7�)�'�0�&�1�-�&�%�'��'�"�.�5�!�.�2�'� �,�,�/�.�!�(�+�$�&�(�/�*�9�/�)�-�(�-�'��3�&�(�/�6�/�)��)�3�*�(�4�5�0�/�/�/�'�*�%�-�5�/�.�&�2�.�2�;�(�-�,�2�*�5�*�'�3�*�.�0�/�+�*�,�%�8�5�-�1�<�,�,�/��-�)�!�!� �-�/�9�#�6�/�1�4�&�1�'�/��,�!�$�+��-�&�-�A�,�)�7�,�1�/�1�.�(�9�6�+�/�;�+�/�*� �(�&�3�3�)�;�0�+�-�.�2�&�-�(�5�)�&�4�"�-�.�:�%�%�#�.�0�:�8�#� �"�)�2�'�%�7�-�"��(�5��%�.�4�/�%�2�"�+�$�2�+�*�<�-�5�/�.�3�2�(�.�(�9�/�� �$�%�>�)�/�.�%�,�$�+�@�/�-�/�3�.�*�7�4�7�-�-�,�<�*�2�)�-�,�+�8�/� �+�)�+�)�2�&�(�!�%�3�-�0� �/�.�-�"�*�.�$�0�5�)��,�-� �3�(�(�+�'�&�.�(�+�*�'�+�2�9�(�+�5�2�1�5�7�/�8�;�:�C�*�>�F�?�;�,�@�'�5�1�4�6�(�!�4�*�+�0�#�(�!�.� �&�*�7��'�3�*� �/�#�3�/�%�5�:�&�%�+�<�(�/�&�,�1�*�.�,�1�$�1�2�&�!�1�*�5�5�-�/�)�5�5�)�&�'�)�'�9�.�.�5�+�-�'�(�-�5�'�'�7�#�'�4�"�+�9���%�7�0�9�0�%�3�"�'�/�&�"�1�(�6�5�;�1�;��A� �4�*��)�%�)�3�(�-�:�(�4�*�6�ۀۀـ؀ӀـҀ؀ӀǀԀۀрڀ؀ۀՀـԀڀـ׀׀ׁ-�4�.�.�)�*�:�=�)�0�4�#�%�'�3�7�9�1�+�,�'�*�3��/�8�7�&�*�&�5�:�+��-�-�!�2�-�%�5�%�+�5�7�0�/�'�4�/�*�-�"��)�"�*�=�/�)�!�6�8�)�$�*�%�+�'�,�9�*�0� �6�*�$�$�0�9�+�%�3�*�-� ���0�'�5��%�)�2�)� �$�+�+�%�'��#�.�,�$�6�(�+�9�3�1�(�'�/�3�'�)�/�+�3�"�>�-�)�-��2��$��$��1�/�1��.�/�8�#�0�/�+�/��-� �1�)�$�5�/�9�8�/�%�)�+��6�2�#�.�5�/�*�3�5�-�0�3��/�*�4�9�-�,�%��7��$�1�#�4�)�2�:�+�.�,�2��*�/�-�2�/�-�/�)�/�+�*�.�-�1�#�1�3�(�-�/�/�'�(�%�/�)�#�1�>�'�2�.�.�6�&�0�1�@�(�-�7��!�0�6�&�/�+�6�/�1��/�*�$�#�(�&�'�#�%�5�*�(�6�.�-�4�0�1�*�0�3�4�1�,�2�2��,�1�*�$�(�4�&�,�1�&�-�'�.�5�*�,�/�5�.�2�-�>�+�(�7�6�/�1�+�"�*�&�2�#�/�1�4�+�*� �,�/�:�*�2�1�.�-�+�&�7�1�/�%�.�.�,�,�.�2�*�/�3�+�/�,�&�5�,�&�,�-�'�'�&�%�/�*�$�$�;�6�+�/�,�1�5� �*�/�)�$�)�'�&�#�<�/�)�%�$�!�3�5�&�+�:�0�+�@�4�5�A�5�4�,�0�2�,�0�'�)�+�-�.�+�0�+�/�-��*�3�)�!�0�-�(�*�0�7�3�1�$�'�)�&�-�.�)�,�$�1��)�)�.�#�"�(�;�/�=�/�(�-�(�*�2�.�(�+�+�)�0�)�*�1�+�0��5�.�&�7�%�"�6�2�,�,�)�%�#�/�*�8�+�1�2�"�0�-�3�.�1�-�,�'�1�(�)�/�5�0�"�.�$�0�=�'�,�8�=�"�0�&�5�7�/�8�0�0�)�1�(�8�Ӏـ؀ҀԀـԀՀԀȀӀۀڀՀրր݀׀ՀԀ؀ր׀Ձ9�5�*�*�.�-�4�!�/�.�)�6�=�+�3�4�8�)�,�>�8�"�3�,�1�%�+�3�(�,�1�2�3�1�6�,� �(�2�8�4�,�6��.�3�3�"�5�2�!�"�:�5�+�)�0��,�'�)�.�-�!�-�:�;�3�,�!�#�3��3�(�-�9�8�3�"�2�5�+�4�'�5�/�/�1��)�1�-�9�8�1�3�'�,�0�'�+��*�(�#�0�&�0�'�0�1�0�2�$�7�!�/�!�*�)�8�/�4�6�$�%�(��'�'�%�4�'�'�5�&�)�,�(�3��9�,�*�"�1�7�"�4�"� �)�-�2�/�1�(�+�(�&�.�1�;�*�4�;�*�/�.�+�8��:�7�&�*�'�1�8�1�$�/�,�.�7�*�+�6�+�&�1�3�1�(�%�"�*�/�(�)�/�4�*�.�;�,�1�0�,�$�"�1�-�0�)�2�/�7�!�.�2�'�2�7�%�)�1�"�7�+�$�)�.�,�)�)�*��.�1�+�3�.�(�-�2�'�"��(�)��$�1�4�9�9�4��*�-�0��7�#�,�0�!��0�&�,�'�(�,�"�0�-�7�(�!�2�(�(�&��*�3� �0�$�0��)�;�/��<�#�&�+��)�(�+�(�2�)�2�#�1�+�'�-�,� �.�.�,�(�*��+�#�)�3�/�/�/�3�#�+�$�"�0�'��,�3�#�)�#�-�,�'�+�'�0��/�'�*�-�.�/��,�,�3��!�3�#�0�8�.�+�%�)�/�7�6�7��3�<�(�-�:�-�-�+�%�:�(�6�1�/�/�2�2�-�(�(�&�4�,��7�1�4�,�$�"�0�.�3�/�'�/�#�2�&�0�/�)�#�#�)�)�.�#�/�6�-�:�7�;�1�:�(��;�9�%��(�5�/�3�7�#�5�-�0�0�/�3�'�6�1�'�0�(�:�/�.�2�+�'�&�3�2�-� �+�'��+�:�+�/�.�*�,�2�2�0�'�+�-�'��6�"�0�*�%�,��0�.�3�2�/�2�$�(�)�2�(�;�,�1�:�%�2�7�(�,�4�րπրԀـ׀Ҁ؀ӀˀҀҀՀՀ׀؀Ӏـ܀׀Հ׀׀Ձ5�$�-�-�#�9�*�'�+�)�/�0�"�3�3�,�/�*�-�$�0�(�3�2�0�,�,�/�7��'�7�1�'�3�-��-�"�-�1�.�#����2�1�)�2�-�"�<�$�2�-�9�+�/�(�)�+�+�6�7�(�,�+�9�,�1�(�/�:�:�(�"�"�+�3�&�*�(�:�0�+�#�1��*�*�7�0�7�4�'�-�#�+�&�&�5�"�*�+�0�>�(�2�-�8�(�,�+�'�,�$�.�2�4�.�6�7�-�&���.�1�.�>�$�1�#�!�5�(�)�%�&�1�1�+�,�1��"�,�1�5�4�1�1�.�+�6�!�(�,�'�0�0�*�(�1�+�0�.�?�/�+�5�,�.�%�%�/�(�$�'�,�*�1�-�*�#��-�/�+�0�*�-�"�,�/�/�6��)�3�-�+�"�6�'�4�=�,�(�%�;�*�'�%�4��,�6��'�*�:�3�"�2�.�#�7�(�)�0�%�'�)�1�2�8�/�*�7�(�5�2�'�,�(�,�0�"�-�6�*�,�0�6�+�/�2�+�:�-�)�%�(�-�+�'�0�,�-�0�-�8�.�3�1�4�-�/� � �3�4�.�&�*�0�=� �+�'�H�'�2��4�'�)��!�%�+�.�=�&�-�)�.�$�,� �'�+�4�1�$�8�=�-�5�#�2�%�.�-��-�.�*�.�-�)�+�,�1�7�.�#��-�2�0�/�'�4�&�*�'�,�)�"�1�-�4�+�&�#�&�5�'�'�.�6�5�1�4�"�&�6�.�3�/�)�7�-��+��*�+�5�6�*�&�/�3�6�:�4�/�5�%�1�,�6�=�2�)�,�4�6�)�7�&�3�%�7�*�/�/�/�/�-�#�,�0�'�.�'�'�%�$�)�7�/�:�$�"�0�'�:�1�(�%�1�+�.�"�'�4�#�'�9�0�5�&�;�5�-�5��!�7�'�#�)�0�2� �/�5�0�5�"�6�'�1�/�4�+�(�/�0�9�9�=�'�/�-�3�%�2�3�,�6�5�"�0��$�*�/�-�*�&�(�=�,�;�0�7�%�-�2�)�%�3�&�/�.�/�(�Ԁ׀ՀـԀ׀ـԀҀˀ׀ԀՀـ׀Ѐـ݀׀׀Հ׀Հρ.�4�)�(�-�1�*�3�7�7�!�$�4�1�/�1�1�)�,�4�1�7�7�-�-�*�1�)�$�)�7�5�;�-�7�+�=�0�(�)�'�%�-��3�'�1�2�,�+�0�3�0�%�/�6�&�!�#�,�2�%�3��%�+�%�9�$�/� �,�/�,�!�2�(�.�%�5�$�5����)�-�9�)�$�:�,�,�"�:�-�/�%�%�?�'�2�-�+�)�#�.�3�&�5�-�%�-�3�%�5�%�-�,��&�6�)�,�7�&�0�/�2�,�4�*�#�'�.�+�3�6�)�.�>�6�;�$�)�,�+�,�,�-�)�)�,�9�0�%�$�"�/��/�2�+�&�%�(�.�0�5�2�+�%�0�%�*�-�'�-�'�5�:�4�3�3�*�/�-�1�#�$�/�,�<�%�)�.�0�4�+�-�0�,�'�*�5�(�,�/�!�5�*�2�&�*�8�,� �/�(�/�)�+�1�!�,�0�(�*�0�5�%�/�5�5�$�0�;�8�/�*�1�<�/�&�"�+�/�"�=�,�+�&�3��2�6�&�0�/�%�.�&�+�4��/�'��7�#�)�/�0�+�.�(�*�-��&�2�*�#�%�$�7�4�$�'�8�/�4�+�5�*�5�/�%�,�.�1�+�#�&�&�-�$�0�1�-�.�/�2�7�4�0�/�*�3�/�*�4�/�?��,�*��+�&�-�-�.�*�,�,�-�,�"�4�)�/�&��4�(�%�1�.�'�%�5�#�(��/�&�+�(�5�%�2�*�0�<�0�/�2�$�$�-�)�'�.�:�5�)�+�3�0�.�,�?�2�5�1�(�8�0�.�8� �3��*�4�+�:�#�)�+�+�3�(�+�/�5�#�,�'�*�)�+�2�6�3�,�3�/�&�4�#�6�.�0�:�0�1�)��%�(�,�.�0�=�'�!�3�-�#� �0�1�*�6�-�1�"�1��+�)��+�*�-�&�2�&�,�'�0�1�-�*�(�3�?�A�2�(�B�)�8�4�.�(�+�&�2�7�$�/�2�(�'�.�)�6�+�%�6�3�$�/�%�0�9�,�/�%�$�)�/�+�+�1�:�2�1�&�րՀՀԀՀӀՀՀՀɀՀԀԀ׀ЀրրπՀӀՀրՀՁ/�,�1�)�0�/�/�(�(�1�:�3�6�0�5�,�'�0�+�9�0�-�/�2�-�.�-��7�,�-�0�)��'��.�2�8�.�0�&�H�+�(�*�*�.�-�'�"�/�+�)�(�)�5�0�-�+�/�2�(�0�$�+�+�5�=�2��+�-�*�6�0�+�)�"�$�A��$�9�&�.�)�%�0�0��9�-�4�*�+�-�+�)�*�/�,�7�&�/�)�&�,�9�.�+�>�.� �%�8�;�(�3�+�.�8�>�,�/�6�,�#�/�,�*�.�3�)�,�2�)�=�=�'�$�.�.�2�,�+�"�4�<�!�/�$�%�1�)�"�1�"�4�+�2�:�"�-�.�(�1�)�4�=�)�/�"�$�'�,�)�/�6�/�6�=�(�)� �.�'�,��*�(�1�<�6�'�,�)�1�.�4� �&�,�5�"�8�"�9�'�3��1�+�,�.�/�%�"�;��9�8�0�4�&�-�/�+�.�2�5�%�)�&�'�*�4�&�%�5�,�1�2�1�0�(�1�$�8�*�,�-�,�+�#�$�2�1�6�0�1�7�6�.�#�3�*�=�:�)�(�"�3�/�0�&�-�2�0�!�7�:�'�$�!�9�(�.�&�$�2�0�)�+�*�5�1�2�9�"�/�'�-�4�(�*�+�4�+� ��.�(�.�)�(�-�+�+�%�*�&�'�*�!�0�.�'�"�*�)�-�0�+�-�2�"�-��,�-�2�-�0�%�+�-�+�/�#�6�)�)�5�"�3�,�&�-�"�+�/�1�4�)�3�7�.�.�7�$�3�*�3�1�&�5�)�%�4�.�2�0�9�)�4�0�.�3�,�+�#�4�1�3� �,�"�2�-�0�)�.�)�3�*��#�-�+�&�8�&�<�'�.�5� �(� �)�-�#� �4�(��#�1�*�)�'�,�+�3�1�/�%�.�.�0�1�5�&�)�+�*�:�+�,�,�"�*�3�&�6�+�3�-����/�3�3�4�'�6�)�0�%�&�3�'�)�5�5���)�&�&�5�0�/�-�)�%�'�.�0�C�+�0�"�6�6�5�)�6�8�B�6�/�+�=�(�3�;�'�.�0�׀Ԁ׀ۀҀۀӀــƀڀڀـ܀݀Հ؀׀ـԀӀ׀Ѐҁ6�'�8�&�"�)�&�(�(�.�7�4�1�,�)�9�'�/�5�4�7�8�5�/�.�8�&�%�0�3�5�+�&�(�8�2�#�+�&� �+�4�(�(�*�7�+��2�/�2�+�1�;�8�,�'�&�6�)�!�/�!�2�4�'�0�0�2�/�(�#�+�&�2�8�3�+� �2�/�-�1�(�,�5�,�0�*�+�2�'� �2�.�+�6�"�/� �.��:�/�/�+��)�0�4�.�4�0�/�,�.�0�)��"�7�2��*�-�+�5�'�4�)�)�*�#�6�<�'�-�7�(�"�%�/�.�'�(�(�8�!�4�'�1�/�,��1�0�/�%�*�0�,�#�>�3��(�*�)�,�5�7�&�*�%�.�,�%�9�,�-�2�-�-�%�3�*�1�/��&�.�7�+�/�'�3�-�(�5�$�4��!�#�0�5�2�3�(�+�/�4�;�&�1�1�/�2�0�.�6�"��4�1�7�3�7�4�(�%�*�/�3�2�/�0�)�(��%�$�1�$�6�+�3�.�'�&�-�/�,�1�2�8�)�$�+�-�/�1�3�3�*�=�0�)�%�)�&�4�%�5�1�"�8�%�,��/�"�'�'�)�$�1��1�"�/�"�)�*�#�3�+�2�,�*� �1�"�,��*�*�+�4�1�(�&� �)�%�'�7�%�"�(�1�+�7�&�#�/�.�5�.�4�7�'�+�/�"�,�*�2�.�.�/�-�4�*�-�#�-�!�(�-�'�,�*��-�?�"�"�1�0�4�"��'�6�,�3�3�*�1�&�3�6�#�,�3�3�(��4�6�7�2�0�.�.�1�!�7�-�*�7�.�'�0�1�-�,�0�.�2�#�)�6��/�%�4�7�/�)�/�:�>�)�*�-�"�,�)�.�,�)�%�0�0�,�1�1�+�*�8�#�1�0�/�,�;��/�+�*�"�$�7�2��5�%�*�2�1�*�2�*�$�4�1�(�.�3�:�6�(�4�3�5�5�$�0�0�/�*�2�+�.�$��$�/�&�2�,�6�$�7�,�.�3�-�*�1�1�/�9�&�*�.�'�3�-�)�+�6�1�.�%�/�%�%�7�+�Հ؀Հ؀ڀـπՀՀǀՀڀԀ΀րπӀـрր؀Ӏրҁ/�,�*�A�/�*�,�8�*�4�-�0�)�0�-�-�6�>�1�0�.�7�,��3�0�$�5�5�/�-�;�0�.�*�6� �8�,�$�0�+�"�6�6�,�/�1�#�+�8�/�$�+�'�8�'�(�&�/�.�(�(�2�(�4�*�/�(�3�-�7�+�)�/�!�2�7�(�-�(�=�%�+�(�/�-�2�*�"�;�.�%�*�.�$�5�%�/�'�2�4�'�/�0�-�-�!�7��/�!�&�;��&�4�&� �*�*�-�+�/�'�,�+�"�)�*�5�)�/�.�!�'�.�@�.�1�5�-�)�)�-�,�/�A�#�0�'�,�-�$�0�-�#�#�0�#�1�5�1�!�5�/�%�,�1� �-�3�4�6�+�"�%�*�2�4�7�*�,�.��3�#�9�-�*�,�/�#�/�*�:�'�,�2�(�%�4�-�4�!�.�,�.�.�,�0�2�6�1�3�/� �)�-�)�%�0�!�$�3�,�3�6�&�)�*�*�'�/�*�3�(�.�"�'�/�'�)�/�9�)�)�*�/�$�+� �1�� �,�:�/� ��-�$�4�%�1�2�,�8�4�+�+�%�.�%�"�0�6�$�'�3�5�2�1�&�?�&�)�.�&�/�%�-�"�"�&�$�,�-�'�+�.�3�/�.� �/�,�+�-�'�.�3�3�3�/�-�-�&�+�.�7�2�,�$�$�"�/�-�&�4�0�2�1�2�4�;�+�2�2�.�8� �$�%�+�(�0�+�+�<�2��"�,�1��3�(�-�(�2�=�1�4�.�5�4�/�+�(�0�)�-�0�5�$�'�0�*�*�$�-�)�(�$�2�6�-�)�&�4�(�$�%�6�,�(�+�.�!�/�&�1�,� �7�%�,�;�4�.��-�1�!�/�1�3�!�.�(�-�*�)��(�+�-�7�1�3�-�%�*�;�-�+�0�-�+�-�'�/�!�&�/�+�#��.�+�3�&�1�'�(�2�,�3�5�1�'�!�0�-�5�%�*��+�&�$�,�%�&��+�*�+�/�1�-�.�'�,�.�.�2�'�D�'�6�2�<�-�+�/�1�2�7�4�<�F�;�?�0�2�1�3�&�+�&�ԀԀ܀Ԁ؀Ԁ΀Ӏ׀€Ӏۀ؀ҀրӀրՀڀՀր؀рց.�9�*�2�,�-�5�3�0�0�,�&�*�-�%�3�3�3�+�+�0�-�-��#�)�*�2�5�8�"�&�/�-�%�&�<�0�/�&�.�4�&�(�2�*�-�)�/�-��1�1�.�7�*�8�3�#�%�'�.�(�(�2�#�,�4�)�9�C�7�.�%�(�/�4�%�"�-�1�!�.�)�5�(�3�&�3�<�0�+�(�<�-�(�.�6�7�/�'�*�%�0�/�'��3�'�-�4�0�,�1�>��5�!�*��&�2�+�0�!�/�.�!��3�#�<�1��0� �!�1�*�-�.�3�2�/��$�#�5�&�)��,�#� �!��4�/�7�$�%�5�7�'�1�$�-�/�&�8��7�2�'�'��%�4�$�:�6�#�%�$�5�#�&�$�&�,�+�,�'�/�/�(�0�7�*�#�/�"�*�2�+�0�/�(�*�,�3�,�7�)�&�3�&�'�5�/�5�3�7�5�-�2�2�-�/�5��2�1�,�7�&�0�#�*�"�:�0�8�,�1�,�;�&�(�*�+�3�'�1�:�-�7�"�*�7�9�4�%��;�)�*�%�3�1�.�$�2�4�/�!�+�$�3�,�%�)��*�:�5�.�)�&�%�%�-�-�9�,�7�.�#�)�8�4�)�(�3�8���:�0��!�4�+�(�%�5�$�(�+�3�'�%�%�4�,�3�/�.��6�-�'�;��+�%�.�(�!�5�3�'�%�(�8�"�.�%�$�3�'�#�7�9�%�.�9�,�6�&�)�"�1�(�2�C�+�"�%�+�*�1�/�0�2�1�?�*�)�,�5�5�8�;�9��&�2�+�'�+�*��,�%�1�:�0�-�(�)�/�&�3�+�#�.�6�%�%�)��0�1�)�,�0�$�3�/�%�*�+�+�#�'�%�2�.�)�'�5�8�6�%�,�%��;�)�2�5�*�'��-�%�/�"��4�8�)�$�-�&�/�/�)�+�!�)�)�/�(�0�)�0�8�9�1�.�4�0�+�!�+�.�7�,�5�1�7�,�*�,�+�9�.�6�3�'�5�:�&�3�%�/�1�#�1�.�)�%�)�3�/�=�+�)�$� �؀Հ؀Հـր؀ڀـŀ��ЀӀ؀Հ׀ӀԀр؀׀݀ـ؁)�-�4�9�"�:�+�,�$�$�.�*�$�)�*�0�+�6�%�1�'�=�%�$�3�&�)��&�.�2�'�2�-�'�3�*�+�0�-�5�'�1�4�-�.�:�<�,�/�-�/�.�8�!�%��7�'�.�)�0�-�.�,�#�'�)�1�1�&�/�0�;�4�'�+�:�.�4�)�$�0�$�(�%�+�7�&�%�*�/�&�#�:�,�5�9�$� �%�2�%�0�6�2�0�:�-�0�+�8�1�'�<�%�1�%��0�*�1�#�#�+�+�5�(�)�)�"�&�-�*�&�#�2�$� �0�0�2�'�&�5��/�4�*�(�#�.�)�-�<�/�/�+�'�-�7�,�$�#�7�.�0�.�1�-�.�%�$�;�-�6�5�(�+�.�)�.�5�0�&�(�-�*�)��,�$�7�#��2�/�0�)�5��+�!�$�4�*�8�-�4�;�)�,�!�<�*�-�3�,�5�.�*�,�3�)�)�*�8�/� �-�)�%�6�.�*�*�'�6�)�3�(�4�3�-�1�(�1�5�2�$��6�/��/�*�+�-�6�+�*�'�1�&�2�'�"�+�(�7�,�<�*�2�*�*�-�)�+�-�.�"�;��:�+�(�+�,�2�1�3�(�6�5�0�2�*�$�0�$�$�%�"�9�3�*�$�1�;�.�%�+�)�-��:�$�/�'�&�7�#�&�*�,��2�,�.�6�(�3�&�1�3�-�#�/� �-�*�+�6�3�3�*��(�%�$�5�#�6�0�.�,�3�!�3�;�1�/�5�#�3�'�&�+�"�0�.�*�=�*�2�%�8�4� �0�8�2��*�-��1�%�3�=�.�6�&�>�%�!�.�2�3��.�)�.�&�0�-�,�'�.�"�#�9�"�&�1�!�5�/�7�#�*�2�1�%�7�*�?�'�(�"�6�)�2�8�#�-�0�/�'�=�2�#�5�*�/�+�*�1�0�"�.�/�3�5�'�-�#�'��#��+�0�&��*�1��(�8� �/�(�8�2�,�-�A�/�&�9�"�1�)�+�-�/�)�(�#�,�/�,�#�0�'�6�2�$� �8�=�8�2�0��1�2�5�-�*�݀ӀՀ׀ҀрՀՀԀŀՀ؀րҀҀ׀؀ր׀ڀԀ؀ڀ؁"�7�3�8�(�!�,�.�3�;�'�!�-��/�.�-�1�(�1�1�0�3�2�1��+�&�%�$�2�7�(�'�'�)�%�*�%�0�1�&�3��,�+�!�$�0�1�'�%�'�+�'�/�'�$�&�%�%�;�+�0�#�)� �,�5�.�=�4�4�,�(��"�(�+�/�*�/�"�,�7� �)�)�:�'�(�+�%�/�1�-��(�+�)�6�)�&�)�5�2�3�0�!�7�9�7�(�"�,�)�0�'�"�9�&�5�,�,� �+�.�.�#�-�#�/�)�(�-� �5�$�/�,�4�(�%�5�)��%�-�+�-�/�?�+�)�"�2�(��1�'�*�>�$�%�*�#�2�3�*�!�(� � �)�)�7�/��'�(�1�#�(�*�(�*�2�2�$�'�%�.�2�9�.�(�-�5�%�,�+�'�3� �$�1�4�*�!�7�3�5�,�1�6�7�/�0�&�0�$�#�&�7�5�(�1�%�-�%�2�)�-�3�+�'�"�+�-�9�%�.�1�*�-�.�3�.�!�&�)�$�$�'�.�(��1�0�2�6�:�3�-�%�3�*�#�9�&�'�-� �6�8�)�,�*�/�9�+�0�/�8�/�4�,��%�*�%�/�!�3�)�4�-�4�.�(�+�)�/�*�-�1�,�,�)�#�$�/�!�-�'�&�3�"�,�!�4�&�%�;�,�*�(�)�)�/�/�)�)�:�1�&��0�0�&�-�-�,�1�(�+���5�'�#�)�-�3�&�.�)�.�%�)�/�$�0�%�$�)�/�&�%�/�5�3�,��'�%�2�<�/�*�+�)�4�*�,�"�6�$�6�#�-�2�<�1�1�4�/�)�.�$�-�-�,�'�)�%�#�<�*�'�*�)�(�+�-�/�1�'�-�-�+�/�+�.�,�3�*�=�/�>�,�,�/�+�,�"�,�)�3� �*�2�7� �*�)�'�,�!�,�(�0�,�-�-�7�,�'�4�(�.�0�3�!�.�/�:�5�4�+�1�'�*��*�-�!�)�7�#�+�2�5��9� �7�)�/�4�A�2�3�5�2�.�-�2�4�6�+�5�5�5�3�(�.�&�0�9� �3�ՀӀڀҀՀԀ׀׀րȀ؀؀րӀπۀҀӀҀրՀ؀׀Ձ-�*�5�-�0�$�)�4�0�3�$�+�A�,�.�*�)�6�,�0�(�)�.�(�'�.�.�9� �(�2�2�*�.�1�,�+�-�0�,�'�0�*�7�%�*�.��/�)�(�7�+�/�!�'�/�/�/�/�.���+�&�4�)�)�$�1�+�1�$��5�/�'�1�6�$�*�!�+�*�5�-�H�+�8�)�.�6�#�(�'�/�(�"�'�+�"�+�'�9�(�)�:�&�/�(�2�"�1�,�"�'�+�-�5�/�-�1�'�+�!�'�'�#�/�'�4�$�2�0�;�;�*�&�"�/�%�3�&�5�#�'�"�"�-�2�:��'�'�6�-�%�,�#�(�'�(�2�$�'�0�3�)�%�4�4�>�&�$�)��1�'�>�7�3�(�+�2�3�)��-�*�,�/�%�%�)�'�"�C�)�)�,�&�8�*�:�<�)�'�%�0�-�,�)�0�;�,�2�.�0�%�,�3�9�-�4�+�+�5�"�-�0�/�(�+�+�)�'�/�&�:�&�/�4�6�)�'�=�0�,�/�5�-�0�2�*��7�0�-�(�0�#�2�-�/�,�-�;�>��.�0� �-�-�+�1�,�+�3�%�,�3�'�/�+�1�+��8�0�/�3�!��-�6�,�$�1�(�/�$�/��-�)�+�'�&�-�"�*�)�,�/�)�&�!�(�9�,�#�1�)�%�&�*�,�8�#�&�,�/�&�2�,�3�)�%�)�-�%�4�&�(�5��+�&�/�4�(�2�1�3�+��$�2�*�-�3�&�6�0�.�-�6�.�)�(�/��/�3�$�'�(�:�+�/�3�/�(�;�%�.�&�7�+�/�(�.�;�8�0�0�3�$�/�,�!�*�5�-�,�/�0�&�1�D�/�0�+�2�%�$�)�3�"�1�6�:� �0��5�3�4�0�0�*�0�7�,�8�-�5�/�-�-�!�;�+�!�'�&�"��1�-�)�*�(�5�/�/�$�5�$�$�(� ��3�)�7�.�0�&�2�4�3�(�*�/�)�$�;�'�*�"�7�-�)�0�(�(�C�5�)�5�.�"�5�6�+�6�<�2�%�+�4�7�3�+�)�$�8�'�+�'�؀ր׀׀ހԀր؀׀Ȁ؀׀׀؀ڀ׀ҀـԀ׀܀؀ҀӁ.�&�+�>�*�#�-�*�+�5�.�.�,�&�0�0�2�.�)�.�:�0�.�9�%�-�-�<�-�+�-�$�;� �)�/�.�'�2�2�'�,�.�9�/�5�,�'�.�$�%�9�5�%�-� �,��(�.�*�5�=�2�(�/�!�4�2�?�2�#�'�&�/�,�'�+�,�5�#�5�'�'�,�&�9�2�2�.�3�,�'�4�$�+�2�9�.�:�=�.�&�1�'�0�;�)�'�,�'�/�$���/�,�&�-�'�/�1�&�$��.�.�"�'�'�.�(�!�)�/�'�.�*�(�5�-�,�(�*�3�<� �'�1�%�-�9�/�)�2�#��/�+�4��=�-�'�/�1��-�;�'�,�.�7�8�%�3�'�'�-�5�%�+�;�,�-�4��2�6�'�.�5�*�)�-�3�*�'�!�4�.�*�5�7�+�.�1�3�*��.�.�(�#�"�/�$��(�,�(�)�4�(�0�:�2�(� �-�-�)�.�%��3�,�#�"�/�*�,�)�(�)�1�/�2�"�.�,�5�:�1�6�(�(�/�-�4�4�1�-�'�#�4�+�9�.�.�2�;�)�+�3�3�&�-�(�*�$�%�&�+��0�,�9�0�)�/�&�.��+�,�#�,�*�-�/�'�.�/�)�$�1�<�,�-�#�;�(�+�%�$�#�+�-�%�,�;�4�5�,� �,�*��+�'�+�>�$�%�)�&�3�)�<�.�)��4�/�<�%�(��$�-�3�#�,�'�2�.�*�*�5�+�5�+�+�$�+�&�/�!�%�$�.�-�&�.�(�-�/�3�"�&�"�&�!�4�8��8�1�+�.�4�.�.�,�/�-�5�#�2�,�"�7�*�3�8��9�%�"�5�4�0��<�/�&�9�#�&��3�.�'�-�/�%�<�+�3�2�(�6�-�7�2�*�)�!�&�#�7�*�,�6�@�+�4�#�1�4�#�3�2�/�4� �2�7�-�/�(�7�3�3�0�(�)�,�$�*�:�-�6�#�7�)�)�*�2�(�6�,�)�1�3�/�-�*�&�4�,�.�1�*�+�.�/�3�/�%�1�;�5�7�2�/��&�$�3�2�׀Ҁ׀րրԀрՀـƀ؀ԀҀ׀Ԁ׀ҀӀπЀՀҀ׀ׁ9�6�5�/�2�/�4�:�0�(�$�*�2�:�;�4�)�,�#�-�=�)�+��'�/��/�*�3�-�*�*�(�.�$�/�.�=�)�.�-�6��/�'�/�,�2�0�#�*�&�%�#�.�2�%�4�*�-�3�2�#�6�(�#�"�/�/�&�&�*�5�,�*�(�2�;�+�)�$�2�*�.�!�'�/�)�+� �)�.�'��1�:�/�+�5�$�$�5�#�0�/�"�7�+�+�+�2�&�)�)�4�.�1�3�+�8�=�*�1�:�6�-���5�)�+�&�%�8�3�0�6�'�3�0�)�(��&�.�4�%�(�&�,�"�%�-�)�+�-�,�0�4�(�&��5�#�7�+�(��-�&�6�'�)�&�'�(�5�#�4�'�5�-�#�0�5�/�!�7�C�4� �.�3�2�2�-�3�%�-�5�/�!�/�%�+�-�1�+�7�*�/�3�#�1�=�*�/�-�0�)�9�$�#�%�.�%��0�0�-�,�+�+�3�(�1�%�=�0�$�1�0�.�(�3�1�4�-�)�2�&�%�>�2��(�-�'�*�'�*��%�+�6�-�%�+�5�2�7�!�8�"�+�#�+�2�'�+�/�5�(�,�'�/�3�&�.�.�%�+�*�&�-�&�0�&�,�(�(�/�5�/�6�4�3�4�7�=�.�3�,�'�1�"�%�%�'�)�0�/�+�7�(�%�$�3�+�*�*�)�%�5�?�*�"�/�,�*�,�3�4�*�"�$�%�)�0�&�5�(�2�(�&�#�)�'�0�*�)�7�,�"�/�'�'�(�1�7�*�"�)�/�6�3�)�(�'�-�-�'�,�5�*�(�,�'�0�.�+�)�.�'�#�)�&�,�/�,�$�!�7�4�>�/�2�,�4�+�5�3�'��/�.�$�7�:�2�6�#� �'�-�1� �2�1�$�3�4�.�?�"�>�/�'�-�3�$�-�=�'�1�(�.�-�)�4�-�*�)�1�6�!�.�/�9��3�2�&�)�8�5�4�.�"�6�%��(�,�*�)�/�'�+�,�1�(�.�2�$�%�*�)�&�,�1�+�8�/�+�/�8�6�'�+�2�-�'�.�&�+�.�4�0�4�*�Ԁ׀Ԁ؀ԀӀ׀܀׀ɀԀҀ؀Ѐـ׀Ӏڀـ׀׀րՀԁG�+�%�8�+�*�6�#�-�*�'�0�/�4�1�5�0�1�/�9�&�-�1�4�<�2�-�4�)�!�1�4�)�%�6�+�3�:�0�*��1�/� �!�%�#�5�(�*�2�+�,�&�-�/�#�*�)�$�/�4�4�3�-�9�?�,�/�*�%�E�4�1�&�,�,�#�5�+�)�,�!��:�)�&�-�,�,�0�1�'�'�4�,�/�%�)�+��'�$�8�*�4�4�/�+�/�-�=�/�)�/�+�0�.�&� � � �-�1�-�$��2� �1�,�4�7�(��2�)�*�6� �6�1�B�'�1�/�$�3�*�5�2�!�,�0�*�5�3�&�+�"�8�"�!�(�-�3�$��/�7�.�4�7�0�;�)�%�%�(�1�+�/�#�3�$�4�/�"�'�'�/�8�*�&�7�-�4�*�-��"�*�4�1�'�'�,�$�'�.�3�)�1�+�0�.�%�&�6�5�1�"�2�(�+��7�,�:�&�4�*�0�*�)�>�8�'�4�.��)�%�7�6�/�!�-�4�"�"�)�&�1�,�/�<�6�'�)�(�0�3�(�)�-�%�(�'�'�*�'�5�3�)�-�'�1�.�/�:�1�)�-�-�8�%�.�&�#�1�8�+�6�3�3�3�(�%�9�/�.�%�'��%�:�#��.�0�.�(��'�+�;�)�)�%�-�9�+�-�(�8�-�*�=�2�/�/�1�4�/�,�2�+�+���/�+�$�/�'�/�0�*�4�7�3�&�#�;�/�%�%�4�.�*�1�.�)�-�)�3�%�1� �(�2�#�)�,�7�-��:�4�:�0�2�:�+�-�2�*�(�;�/�3�-�!�-�1�.�6�.�.�2�)�+�%�(�'�+�9�&�)�,�(�%�/�'�#�1�)�0�-�(�.�3�-�5�/�1�(�*�,� �"�)�3�3�6�,�0�+�(�-�/�7�/�0�4�2�7�+�7�0�*�(�'�,�/�'�6�1�-�5�#�#�1�7�3�2�5�.�"�'�+�4�:�1�(�%��#�0�5�C�2�9�0�3�-�0�,� �6�4��.�*�&�1�+�7�,�9�1�)�:�'�9�&�(��0�(�,�ڀԀԀ܀Ԁ؀ӀـπÀԀՀӀڀ؀Ӏ׀ՀՀրրӀՀ؁3�3�8�)�'�$�,�'�9�?�+�&�'�0�)�)�'�3�(�*�&�;�/�+�*�:�)�4�.�'�!�0��!�5�/�/�%�*�(�1�/�#�,�)�6�&�*�3�2�7�.�:�+�#�/�/�2�%�-�$��,�(�4�%�-��5�$�8�.�(�,�&�*�*�-�+�#�2�)�*�.�0�9�1�5�/�2�(�4�%�%�(�4�&�*�.�/�(�4�4�+�4�+�'�0�$�%�%�4�C�.�.�<�)�,�-�*�(�2�0� �&�%��/�/�*�.�/�+�1�+�&�9�%� �#�#�,�)�)�,�-�%�9��4�'�1�4�0���-�!��7�+��,�#� �)�$�)�,�7�.�4�9�4�/�8�+�-��)�)�%�,�'�)�'�)�9�-�'�2�,�0�+�#�%�-�0�-�+�)�#�/�(�-�$�.�1�/�2�0�'�.�-�?�5�,�'�"�"�/�%��*�.�0�%�&�2�(��'�!�0�'�3�"�,� �3�/�"�/�6�)�4�*�.�)� �2�#��<�)�)�1�,�.�+�-�/�*�/�)�8�"�/�+�1�/�+�4�+�.�"�1�$�)�)�2�)��/�3��(�+�A�+�1�+�.�'�.�-�.�+��/�/�,�8�(�5�$�3�*�0�7�!�*�/�2�)�'�/�-�!�+�:�#�)�,�-�#�5�,�,�$�*�.�"�&�)��1�0�.�-�0�3�!�+�/�/�,�(�5�&�-�+�.�-�/�0��3�,�8�7�7�&�1�3�&�*�(�+�6�$�4�+�.�1�6�0�-�(�5�%�4�4�"� �/�"�0�'�+��+�#�'�-�%��%�(� �"�/�?�7�-�.�&�2�7�.�-�/�(��.�7�(�-�,�+�+�2�.�*�:�(�-�*�,�4�%�)�.�=�#�+�#�3��'�$�9�-�-�-�"�$�)�2�<�-�!�&�/�%�2�4�0�7�,�1�6�>�/�'�-�/�+�'�:�;�.�1� �/�.�%�+�9�3�*�%�0�&�)�7�B�/�:�%�1�:�*�)�.�4�8�)�*�/�9�/��+�7�8�,�&�,�6�0�+�׀ր׀؀րրӀـҀŀӀـՀ׀Հ܀ՀՀҀ؀ՀۀրՁ4�7�*�/�/��3�/�*�<�-�7�.�/�)�(�'�3�2�)�.�7�4�%�3�$� �+�0�/��*�*�2� �2�&�)�6�%�'�*�9�0�#�#�,�$�9�7� �0�0�1�'�'�#�-�%�.�1��%�#�0�*�1�*�.�$�2�)�&�+�(�1�"�1�5�/�)�"�"�8�6�+�(�+�!�1�%�,�:�4�'�(�'�6�0�$�+�2�:�0�1�,�'�+��*�#�)�(�A�,�5�(�(�+�,�#�4�'�.�1�%�<�,�+�*�0�'�2�%�'�,�#�+�/�#�>�1�+��6�#�+�,�.��&�%�3�2�$�,�4�-�.�-�'�)� �=�'�0�2�6�.�1�#�2�'�.�)�1�3�%�!�"�1�.�&��(�'�(�%�;�#�'�6�%�:�/�"�+�0�(�1�4�2�*�&�5�6�5�#�&�-�/�8�&�&�/�-�.�2�%�4�&�/�H�'�3�2�+�+�+�"�2��8�5�+�(�2�/�<�8�8�.�+�)�8��4�7�(�/�0�*�/�)�8�&�2�1�8��6�*�1�+�%�*�5�+�1�'�6�.�&�+�'�@�+�;�7�)�:�/�7�-�4�%�6�$�7�6�.��/�&�2�'�$�"�.�2�5�-�:�*�*�4�#�%�/�9�3�5��!�.�+�-�*�+�3�.�&�A�%�1��!�3�1�%�B�$�1�,�%�"�(�'�3�/�%�'�8�+�4�5�3�=�,�9�3�,�3�9�0�/�(�1�*�+�.�?�#�(�1�*�2�1�+�&�+�*�,�3��2�&�7�4�)�&�,�2�'�0�-�(�&�,�,�(��/�-�-�1�.�4�'�1�3�,��(�#�=�.�.�/�.�+�(�,�(�-�+�0�/�9�(�,�0�"�1�!�5�1�/��$�$�3�.�$�(�4�3�1�+�-�@�'�(��,�(�&�-�+�� �*�&�.�*�-�0� �/�7�,�(�1�+��-� �,�)�&�-�;�)�6�.�7�=�7�.�5�7�/�)�'�1�%�;�+�"�)� �(�/�7�(�.�0�-�'�3�$�+�,�/�!�5�%�-�1�.�-�/�Ԁـۀـ؀рԀӀӀ��ـڀӀЀՀ؀ۀр݀Ԁ׀Ѐـځ0�1�1�6�/�8�'�1�(�.�7�)�0�(�*�9�;�$�)�5�3�)�/�#�#�*�0�1�0�2�3��!�3�1�/�)� �?�/�-�)�6�%�(�8�,�&��+�'�,�/�-�2�/�-�8�*�$�+��&�-�0�/�)�'�3�+�=�,�$�1�2�2�3��,�7�2�/�+�7�+�&�9� �!�5�5�$�/�.�0�.�+�3�9�4�+�,�9�+�+�6�1�1�*�%�#�-�/�(�$�5�+�+�)�!�(�%�6�(�2�4�"�2�(�-�(��7�+�/�&�-�7�4�7�*�(�1�4�7�,�.�*�-�!�6�*�)�)�(�'�(�5�,�)�*�2�-�/�"�3�$�.�.�(�;�:�/�)�"�6�/�+�-�1�#��%�%�+�-�&�,�,�-�%�-�$�,�$�'�-� �'�#��$�+��2�'�*�/�2�6�2�*�5�3�E�-�(�+�)�4�/�-�0�/�'�+�/�(�(�(�5�.�1�1�6�*�)�.�1�3�(�3�:�+�)�*�.�.�0�'�%�$�*��4�+�2�%�2�&�+�'�9�?�(�$�+�+�1�,�/�#�)�/�(�)�.� �2�(�+�.�,�-�#�����3�1�3�'�#�7�8�/�:�"�)�0�8�&�1�#�3�.�)�:�*�(�*�+��+��&�+�8�(�8�/�7�3�(�1�'�+�)�)�-�3�(�3�+�/�'�-�5�$�/�/�8�)�,�.�;�,�0�3�%�0�.�'�-�2�,�$�)�:�-�"�@�!�3�-��)�%�.�%�6�"�0�-�-��3�4�1�&�2�6�$�8�6�%�)�6�:�7�)�2�7�;�0�:�/�)�)�2�-�3�#�+�/�3�/�(�&�!�%�'�+�%�6�3�2�*�2�&� �"�,�$�+�$��/�'�'�)�0�4�7�,�+��3�'�)�*�2�'�#�#�+�#�.�8�6�*�-�#�-��.�2�#�2�/�*�'�,�+�(�D�'�0�(�3�+�5�%�*�-�.�2�'�+�,�?�6�,�*�2�,�0�8�'�:�2�4�-�'��-�1�'�-�0�/�=�)�+�-�)�,�'�&�7�3�ԀҀ؀܀Հր׀׀ـˀՀ׀Ԁ׀׀׀ԀڀـڀрՀՀҁ%��'�:�(�)�4�+�3�1�1�2�&��%�"�2�1�,�)�(�;�2�-�3�0�5�(�/�,�(�5�%�'�:�%�%�-�3�,�-�1�0�+�=�'�,�#�.�>�-�,�!�5�7�-�&�1�2�-�/�(�-�+�+�9�8�4�5�1�*�(��3�5�9�%�5�2�4�+�6�&�%�)�,�9�+�3�4�#�5�0�'�+�&�*�2�6�-�+�"�5�9�)�.�3�(�/�6�.�%�6�&�/�'��.�$�-�/�$�0�)�?��:�*��2�.�)�3�2�0�%�.��&�0�-�/�(�2�6�2�5�+�+�.�(�/�)�0�3�/�$�+�%�-�3�-�*�+�0�%��5�/�$�-�+�6�$�)�"�2�.�1�"�*�-�'�%�7�$�-�+�'�0�)�)�)�-�"�)�#�&� �4�(�4�1�/�6�0�/�/�5�)�6�'�&�#�2�6�,�/�4�0�'�#�&�0�'�:�*�7�.��)�4�-�1�2�<�1�4�.�)�)�&�&�'�*�7�0�4�)�-�9�)�6�)�3�4�1� �/�4�&��$�.�1�1�3�9�-�.�.�-�+�*�3�%�/��1�+�6�'�'�;��(�/�"�)�/�#�$�8� �(�1�3��7�.�=�*��+�3�$�3�0�"�1��+�+�.�/�3�*�1�0�3�A�4�%�&�+�4�.�-�%�5�)�'�9�.�8�1�,�'�5�2�-�*�#�,�/�1�,�4�;�,�1�3�,� �,�)�#�0�'�)�4�'�-�+�0�)�4�#�9�'�$�&�;�/�:�.�9�(�5�8�)�)�(�*�-�$�&�,�+�*�2�.�,�)�#�4�!�$�%�-�"�5�*�7�'�,�/�+�+�-�'�)�+�3�3�<�/�-�5�(�!�$�3�0�*�)�3�&�?�+�3�%�3�-�3�2�/�/�4�1�!�$�-�1�,�+�,�%�+�.�1�>�/�+�#�6�0�E�'� �5�$�6�'�4�+�/� �2�4�;�C�'�(�(�%�5�+�/�1�$�+�0�/�&�5�,�$�"�=�3�/�C�,�/�4�<�3�)�-�#�4� �7�+�8�5�8�/��4�%�ՀӀրрр؀ҀԀՀŀ׀րՀ׀΀π܀ր׀Ӏ݀рԀځ5�6�2�,�#�6�6�%�*�.�!�0�%�#�)�+�)�/�6�4�1�5�2�+�0�/�)�)�=�)�+�+�+�1�6�*�6�+�1�'�.�(�4�6�5�,�-�5�;��1�%�,�,�2�6�-�%�*��'�.�-�.�&�&�/�/�*�6�#�9�1�0�&�1�+�-�%�&�$�'�/�%��8�)�5�.�1��*�&�1�,�)�$�2�'�+��-�$�6�0�7�#�5�3�#�;�5�.��3�@�3�*�,�-�-�&�)�0�1�/�*�/�0�2�.�3�&�;�A�%�+�)�0�.�0�$�(�$�1�*�'�#�*�8�!�(�+�*�0�+�.�-�+�(�$�+�)�*�9�)�+�1�.�/�9�)�+�6�+�6�(�/� �2�3�3�+�4�$�*�"�,�4��+�+�$�-��$�,�5�'�$�1�2�/�.� �*�3�.�,�9�-�/��/�7�$�6� �0�3�/�,�$�+�&�#�%�0�1�.�2�4�/�2�0�,�!�*�&�8�0�(�,�2�8�*�0�(�3�-�-�&�%�!�+�&�.�8�9�#�,�*�(�#��/�8��.��&�<�3�%�-�1�/�0�%�$�)�*�+�(�,�0�)�,� �6�(�3�/�)�+��5�2�+�*�:�'�$�'�)�%�5�,�;�'�#�%�&�&�)�&�+�-�-�$�1�*�(�6�;�)�'�"�$�+�/�"�1��#�)�7�=�$�3�2�,��&�#�'�&�(�.�-�!�"�.�'�/�/�'�.�,�'��/�!�)��0�2�-�.�0�3�*�%�+�1�2�>�)�&�(�+�.�0�'�'�+�,�-�8�5�-�(�.�$�"�*�&�'�)�"�)�'�+�*�1�*�&�.�&�3�(�-�*��*�&�)�+�(�1�8�$�-�1�$�(�1�/�3�"�(�-�(�*�0�-�/�/�!��+�0�'�4�#�0�-�1�0�*�3�.�0�$�>�#�;�,�,�*�'�)�&�'�%�/�3�&�(�-�(�+�8�.�(�&�0�)�;�2�/�)�1�/�)�7�*�2�:�)�/�/�;�-�(� �5�4�1�9�&�1�9�)�1�4�2�-�1�6�$�5�ЀԀ׀ԀՀՀۀՀ܀ŀрҀ؀Ӏ؀ــۀހЀՀՀրҁ/�,�/�/�<�&�#�"�5�1�(�;�.�)��1�.�'�E�/�:�-�-�/�.�3�)�6�(�-�#�$�"�1�-��1�(�4�/�/�+�5�9�/�7�-�/�'�*�/�%�.�"�*�,�(�(�7�.�+�/�,�2�5�;�/�)�:�1�(�3�-�)�%�)�$�)�0�/�2�0�1�2�)�+�*�+�2�3�(�'�(�%�.�0�-�&�-�)� �(�%�4�5��&�,�&�*�"�9�3�-�4�;�1�,�+�4�.� �$�'�8�3�5�.�#�&�/�/�1�7�)�-�-��&�*�7�%�+�(�2�6�%�1�-�3�*�-�&�+�0��9�4��.�:�$�%�(�#�!�7�/�-�'�'�$�#�-�2�4�1�)�-�0�"�+�7�(�/�2�*�2���1�"�.�/�+�&�:�%�.�*�"�+�'�&�#�0�8�&�(�#�*�)�/��5�&�)�*�+�1�$�:�2�%�&�-�0�6�5�5�4�'��#�*�-�-�)�/�*�%�*��$�(�)�&�0�5�%�.�%�)�%�&�1�&�&�:�+�3�+�-�2�0�%�*�/�5�0�(�4�.�7��(�8�)�-�.�#�4�(�&�,�,�&�*�/�!�-�*�*�'�5�,�&�8�1�*�3�.�.�%�"�)�:�*�(�'�%�4�(�4��'�5��4�*�-�1�&�+�*��7�!�3�!�#�)�$�-�3�0�0�'�&�9�1�0�+�#�7��*�&�&�3�2�'�%�+�'�1�(�(�1�=�-�6�/�B�/�0�$�2�'�7�1�0�)�)�(�2� �-�+�,�$�2�+��9�,�4�%�<�2�9�-��7�;�&�&� �$�2�)�+�(�*�/�6�0�*�0�.�!� �#�+�,�+�/�8�4�.�'�(�%�6�0�3�2�-�&�*�6�/�/�%�3�*�-�1�!�4�&�+�+�$�"�)�3�)�1�&�'�9� �.�3�/�+�+�.�-�0�/�6�+�1�$�/�9��5�5�+�'�2�/�*�7�0�1��,�.�+�-�3�)�#�8�,�8�5�*�-�0�<�3�$�*�1�-�0�-�6�;�.�2�-�9�(�1�0�'�րր׀׀րՀππڀƀԀ؀րـЀ؀׀܀ЀՀԀـڀہ7�.�+�-�%�-�-�,�7�-�,�2�4�)�)�(�&�6�0�5�1�1�#�)�/�2�3�'�&�-�0�8�&�(�'�2�)�-�'�9�0�6�9�)�.�)�5�2�+�-�*�2�7�+�7�0�/�-�#�1�/�#�/�8��+�2�,�.�'�1�/�+�5�'�%�.�/�0�*�.�/�(�0�:�*�#�*�5�(�,�)�#��!��&�.�3�+�/� �)�1�/�2��+�,�*�/�,�%�6�'�+�/�9�.�-�/�*�1�:�"�0�6�/�-�(��(�2�-�-�&�)�*�,� �(�7�6�+��.�:�+�#�'�'�$�#�+�/� �'�+�?�+�/�!�1�"�%�)�$��)�+��'�� �+�+��+�'�/�5�+�$�'�/�0�/�!�0�$�"�"�"�*�-�.�&�4��6�/�9�)�(��6�:�.�&�0�-�9�)�+�)�.�-�1�,�1�-�5�'�+�.�$�;�/�7�4��+� �1�&�0�+�3�)�7�)�(�/�)�,�'�'�-�(�#�1�)�!�3�(�2�$�*�'�1� �:�1�&�,�"�>�)�(�2�"�#�,��&�*�/�4�5�"�'�(�0�%�*�5�)�!�8�'�.�2�'�.�4�2�3��5�&�&�(�4�,�2�-�>�)�4�'�&�4�(�-�2�+�#�9�2�.�-�:�'�)�"�/�6�2�5�)�,�/�3�(�2�6�4�(�-�*�)�0�9�5�)�-�)�.�5�,�"�,�%�7�)�!�*�(�"�0�-�1�6�%�/�"�5�)�8�0�/�4�3�.�*�/�%�0�4�%�4�'�)�.�1�*�+��<�,�'�/�7�#�"�!�4�%�%�4�)�+�.�8�3�<�)�&�'�*�,�,�%�)�;�)�,�/�3�-�2�.��(�)�/�7�(�!�&�%�)�.�2�'�+�$�(�5��7�2�2�9�!�1�3�&��#�.�%�7�'�+�5�.�.�4�0�-� �8�0�5�5�"�)�*�*�-�.�1�0�)�4�*�"�'�+�7�6�3�*�1�8�"�'�.�$�7�.�3�7�/�'�1�!�&�/�.�8�4�(�-�#�'�,�8�-�1�)�׀׀π܀Ѐ؀Ӏ؀ӀǀՀԀրր׀πڀ׀؀׀րՀԀف2�'�7�6�)�#�+�$�(�*�1�+�.�)�/�-�,�8�.�-�+�.�+�-�&�3�4�#�-�#�6�+�5�-�&�&�;�'�%�;�4�*�/�$�/��3�0�;�=�.�6�"�2�)�:�-�+�)�5�&�.�/�9�)�$�+�1��'�9�(�&�6�4�1�0�'�'�;�&�)�'�)�7��#�(�/�%�(�1�)�%�#�)�&�#�6�+�+�2�,�,�4�1�3��3�(�"�3�3�&�!�)�2�'�)�!�.�/�#�4�0�-��+�)�5�,�+�#�+�+�5�'�3�7�,�1�+�*�!�.�.��2�1�!�,�(�$�*�1�-�7��*�.�.�5�&�-�-�,�/�&�&�0�;�-�:�)�7�%�5�(�'�;�)�&�2�3�/�/�4�'�*�E��1�+�7��4�,�%�A�3�,�-�,�5�/�,� �>�+�&�)�0�)�D�+�1�(�.�4��4�%�&�!�.�(�.�/�A�%�-�*�:�#�;��7� �'� �&�"�6�+�1�2�'�2�*�+�8�6�!�(�+�-�*�'�+�,�)�2�7�.�-�+�(�+�1�?�"�5�'�2�0�0�-�4�&�-�&�%�"�:�.�6��0�0�4�9�&�9�3�.�,�.�)�*�0�#�5�B�5�9�.�/�3�,�)�-�3�"�+��$�(�(�!�.�%�'�"�)�*�3�$��$�7�9�0�*�,�+�(�/�$�0�-�*�(�%�5�5�)�4�2�,�@�.�/�-�3�)�"�/�+�/�"�'�>�5�)�(�<�-�%�%�*�-�&�1�$�/��/�'�)�/�*�-�/�$�.�/�&�5�3�(�(�+��)�!�3�.�9�(�6�8�0�4�'�#� �,�%�1�0�$�7�,�9�,�*�/�(�2�5��+�,�'�+�*�2�@�1�2�/�2�(�.�'�6�"�0�1�-�2�=�*�0�*�*�)�+�*�5�3��/�-�.�,�/� �3�5�.�"�(�3�/�+�4�;�9�-�<�*�,�,�)�*�)�7�/�"�/�.�1�.�2�%�*�4�2�2�.�3�'�(�9�5�;�/�&�2�1�-�0�.�1�*�3�&�5��0�-�Ҁ؀ـ׀׀Հڀڀۀʀ׀׀؀ҀӀۀրـҀՀ׀ЀԀف,�%�0�/�(�4�#�0�5�8�3�%�.�"�&�2�0�,�%�&�1�+�0�/�'�"�&�3�3�7�+�1�+�#�7�4�6�%�3�+�,�1�,�8�'�#�%�1�;�"�*�-�$�1�(�0�+�/�;�(�)�;�)�+�%�+�2�+�9�$�1�1�+�&�(�-�.�*�1�0�,�&�<�&�3��'�-�"�%�-�&�!�"�1�5�-�%�.�3�%�1�&�%�6�+�6�!�8�3�.�.�&�3�%�3�2��(�7�'�2�)�2�&�(�*�5�2�*�)�6�&�4�/�6�'�/�,�6�'�)�#�(�1�%�&�/�&��*�-�7�3�+� �&�'�/�3�*�)��4�-�(��-�2�5�*�'�%�#�/�%�,��'�3�4�(�$�.�-�%�#�2�3�4�2�+�6�&�*��3�*�"�)�1�/�1�(�/�3�+��7�4�&�)��1�/�-�)�)�1�(�-�(�-�5�+�-�0�*�2�3�2�3��*�(� �-�!�+�1�+�-�5�7�.�2�2�-�#�/�+�/�1�#�)�,�5�%��/�-�,�/�)�%�%�(�1�5�(�"�"�&�1�*�'�1�3�%�-�,�)�1�.�0�7�(�-�.�+�+�6�8�A�0�%�*�-�7�5�+�-�,� �)�4�'�(�0�-�<�!�)�#�6�%�5�.�*�6�2�1�'�*�(�.�-�#�/�3�1�+�'�-�*��*�)�+�#�.�'�*�-�3�,�2�!�%�*�4�-�+�.�*�(�0�4�+�2�1�-�0�-�;�)�*�3�4�$�&�7�$�4�1�/�$�,�4��&�*�.�#�.�2�2�*�1�0�2�'�'�&�2�-�0�5�-�-�1�(�)�)��#�2�2�"�*�,�7�:�.�8�4�)�,�6�,�/�-��/�-��/�.�1�+��7�$�$�3��)��4�"�#�%�)�+�.�#��2�*�-�(�+�3�%�6�5�2�9�+�'�+�/�*�/�7�'�*�5�#�4�/�*�'�!�$�2� �1�)�"�1�;�5�5�+�/�.�)�2�2�$�)�3�+�2�8�+�7�5�/�4�8�.�$�'�7�(�%�9�5�"�1�ҀՀՀ؀؀Ҁ؀܀ـÀԀ׀րՀր׀Ӏۀ׀ԀԀ׀؀Ձ1�1�0�'�3�3�/�%�.�7�&�5��(�3�%�-�9�(�+�.�4�'�1�3�"�4��)�&�/�/�7�-�,�0�'�)�2�3�3�(�9�.�-�2�)�.�'��2�9�%�!�(�/�<�8�5�,�'�,�:�.�/�3�%�3�,�,�+��/�2� �6�)�9��&�;�0�:�4��(�0�,�(�#�*�*�#�5�/�4��3�7�2�@�%�)�(�@�-�(�0�-�(�&�0�4�(�0�+�-�(�2�1�$�5�(�,�9�9�-�6�1�#�4�� �7�(�!�+�)�!�+�)�.�(�;�/�*�3�'�1�4�7�*�,�,�(� �.�,�0�/�:�'�,�0�;�(�$�,�4�1�%�0�+�&�%�,�6�4�+�*�"�.��5�(�.�(�-�0�'�,�"�1�5�1�,�3�"�'�*�"�3�-�)�3�(�6�3�0�<�*�<�/�1�,�3�,�6�2�%�'�4�/�%�/��7�(�1�6�.�.�'��'�9�6�(�9�/�,�+�.�-�-�(��/�.�.�%�.�1�%�2�.�$�.�#�4�(�*�0�4�+�)�-�+�5�)�,�'�3�0�*�&�6�7�&�6�2�:�/�+�%�+�5�2�1�+�'�C�-�3�1�3�#�1�/�'�!�;�!�"�$�*�.�2�;�1�+�%�6�&�*�3�1�*�(��0�,�*�:�/�*�,�)�,�)�$�.�!�,�1�*�.�"�,�(�*��,�4�4�/�-�9�!�-�-�(�(�.��7�+�<�,�*�*�,�0�0�+�3�.�/�+�2�1�1�*�2�)�*�*�*�'�(�.�-�1�1�3�,�*�'�%�$�(�(�>� �+� ��(�#�0�0�(� ��0�.�5�3�7�*�7�/�1�6�(�+�.�,�1�+�5�0�1�*�,�4�.�6�;��2�1�&�A�-�,�.�$�1� �1�4�&�&�#�"�-�>�.�*�*�2�,�7�1�1�$�5�,�.�1�+�,�&�0�2�7�*�7�7�%�$�;�)�)�,�+�2�-�/�8�5�+�"�1�'�%�-��7�%�/�,�3�'�1�%� �+�!�6�(�7�(�4�$�/�1�5�1�2�,�׀Ҁ׀׀ـ؀րӀԀ€ԀӀԀՀڀրӀԀـ׀ހԀڀف+�2�/�*�,�+�-�(�,�*�:�$�1�3�,�/�3�6�?�)�5�5�'�/�-�%�&�'�)�%�&�/�-�2�-�-�9�4�)�-�*�*�.�$�/�,��(�$�1�+�)�3�+�'�-�)�.�+�2�%�$�+�2�6�4��)�#�4�)�8�'�-�1�*�*�0�:�5�-�,�,�3�(�'�#�2�)�1�+�-�8�'�7�&�-�7��,�-�)�!�)�8�2�3�.�2�!�-�4�7�,�/��.�,��5�-�-�=�5�,�'�6�/�(�%�'�/�=�!�5�@�/�4�&�.�4�9�&�+�(�*�$�-�?�!�)�"�"�!�&�)�)�4�6� �)�$�-�.�(�+�%�&�/�%�@�2�/�2�,�/�,�"�%�1�,�%�7�.�1�<�-�+�-�.�+�'�+�$�-�%�(�5�.�.�-�!�)�$�'�3�/�'�2�+�6�1�$�(�.�3�.�#�$�,�"�)�&�,�*�+��"�:�&�,�*�5�*�:�'�&�#�)�5�$�-�+�&�$�6�)�'� �-�(�0�1�/�1�/��5�.��0�,��'�0�$�'�*�*�2�)�-�&�/�)�3�-�+��"�)�"�2�-�2�#�9�1�2�9�'�*�7�4�/�'�&�*�(��,�+�4�0�-�-�2�%��%�+�9�#�(�<�+�!�-�,� �8�+�A�<�5�3�%�0�2�.�-�5�(�'�5�0�,�9�/�8�2�3�1�0�2�,�%�%�;�"�$�*�-�.�*�,�0�(�6�6�%�,�&�1�,�<�)�,�/�0�8�(�*�(� �+�"�'�-�/�)�0�'�3�)�2�4�0�9�.�.�7�/�>�8�"�.�)�(�7�(�!�.�+�$�+�)�'�'�!�0�)�*�1�-�$�4�0�-�4�0�-�'�+�(�"�*�*�2�.�-�1�;�1�%�/�-�3�'�2�(��$�+�(�,� �-�2�+�'�0�2�/�4�.�)�/�'�.�4�5�)�+�4�.�-�(�4�-�+�:�)�.��0�.�'�"�.�+�3�(�-�)�5�.�$�)�&�5�&�7�3�&�&�1�#�"�*�-�,�$�3�,�*�7�/�9�+�-�4�ՀڀԀ؀؀ـրӀڀɀ׀ڀ׀߀Ԁ׀ԀـۀԀрۀـՁ0�'�*�1�3�)�#�*�&�)�+�2�.�)�,�<�2�6�-�;�6�'�3�+�,�1�2��+�(�)�.�-�"�4�7�#�+�6�4�2�-�(�3�9�<�1�3��,�%�$�2�-�*�-�&�'�5�@��9�&�+�(�'�6�/�5�"�/�0�7�0�6�!�3� �0�8�&�!�+�3�,�&�+�#�&�6�3�,�0�&�'�#�2�,�(�*�7�#�+�2�3�$�.�%�(�/�2�)�-�.�1�/�5�.�+�*�6�&�1�"�(�2�/�"�,��.�4�$�-�4�0�-�.�.�/�+�2�+�!�1�,�-�"� �.�*�1�)�(�/�+�5�!�.�,�-�/�.�5�0�)�-�.�.�,�/�(�!�2�B�%�9�2�.�'�5�$�;�!�'�.�5�)�,�5�-�'�(�3�%�1�/�6�.�1�,��/��5�/�'�6�2�0�6�.�5�-�"�%�8�3�.�,�(�)�*�'�4�/��4�3�1�,�0�#�,�/�*�'�2�%� �,�$�-�1�2�*�+�3�3�.�(�"�#�+�.�=�'�*�8�.�0��*�4��.�)�*�*�-�6�'�/�8�4�)�3�/�1�-�-�&�/�/�0�/�5�.�2�4�(�2�*�-�,��2� �%�'�*�-�6�"�)�2�/�1�-�-�3�0�2�,�"�/�3�$�1�-�-�*�+�5�9�.�'��/�0�2�7�%�:�.�/�*�.�/�'�/�-�.��#�(�(�&�5�:�3�&�$�8�D�/�1�(�-�)�5�1�.�4�9�8�5�6��'�"�2�,�'�+�/�!�7�+�)�/�9�*�*�&�(�:�+�(�)�+�%�*�/�)�&�(��0�'�-�-��+�4�+�8�4�!�,�)��.�&�5�+�2�*�*�-�,�%�5�.��/�.�,�&���.�*�)�*�,�5�+�3�1�+�:�2�%�*�-��-�,�#�*�(�1�)�9�+�4�*�/�-��&�#�0�/�=�.�)�/�6�8�+�+�9�)�0�+�6�2�3�3�-�*�4�0�-�.�5�3�2�A�6��1�0�/�*� �3�/�.�>�2�1�(�2�.�-�2�-�9�3�Հրۀ؀рӀҀ܀ҀǀԀրр݀ـր׀ӀۀԀՀրՀ؁?�+�(�,�'�4�4�4�?�/�+�*�#�/�5�&�,�7�7�,�)�1�1�!�/�5�&�2�!�*�*�5� �4�-�5�7�+�.�A�/�/�/�2�7�,�6�1�+�=�+�3�&�-�1�7�+�&�+�'�*�'�-�)�)�5�&�-�.�7�&�3�/�(�2�;�4�7�4�*�/�6��&�5�,�1�(�6�6�-�=�/�2�,�8�9�.�6�:�0�,�'�1�/�.�3�'�&�*�,� �/�/�*�$�(�+�.� �2�*�'�1�/�.�5�#�)�9�+�3�*�9�+�<�'�2�0�;�*�F�9�+�3�0�/�*�7�5�+�,�5�$�,�0�)�*�1�1�!� �+�;�+�,�4�)�)�,�(�0�%�.�'�$�"�5�/�2�)�+�:�7�1�6��7�/�5�%��&�#�%�(�8�!�'�2�#�9�*�)�.�+�.�3�6�3�1�/�1�*�/�&�:�7�5�#�1�B�"�+�'�3��5�7�H�3�!�!�5�&�3�%�-�.�#�,�.�7�-�$�&�$�%�4�'�,�@�1�%�"�2��/�*�7�%��0�1�?�.�!�.�#�0�)�)�.�/�&�+�1�$�(�3�2�2�5�.�5��'�,�>�+�0�4�2�0�#�/�'�.�7�0�+�*�+�'�&�3�/�0�1�(�*�6�%�-�*�8��!�/�.�3�-�'� �1�.�1�,�1�%�5�0�5�:�-�#�4�7��%�)�+�'�-�,�4�/�#�2�.�+�1�*�7�.�-�&�4�-�1�3�6�/�4�2�.�+�*�(�-�+�1�6�+�/��,�<�9�-�0�$�2�8�*�-��*�.�$�/�+�,�$�#� �,�*�,�.�+�.�+�=�/�+�%�#�1�,��(�7�+�5�3�8�&�-�*� �&�6�#�/�1�+�8�.�3�)�1�%�5�2�8�+�(�$�4�(� �6�%�'�0�)�<�4�,�;�'�3�,�'�)�.�2�4�/�!�2�(�(�2�/�!�-�+�4�3�3�+�/�-�.�/�3�.�.�.�+�3�,�(�-�$�4�*�9�.��4�1�.�.�5�6�6�0�.�)�5�3�2�:�*�;�.�8�+�#�׀րՀـԀրՀـրǀҀـԀ׀ڀԀ؀݀րڀ؀׀Հځ=�4�/�/�6�4�*�4�/�,�=�6�/�,�7�-�*�'�;�4�(�*�7�$�0��*�2�/�/�7�7�1�)�3�$�)�0�6�,�5�7�'�0�'�5�0�2�+�/�8�&��2�:�'�=�/�3�-�'�9�,�5�+�+�,�*�;�-�3�0�0�/�,�*�8� �,�0�1�/�*�.� �:�/�6�-�%�+�0�(�(�.�5�>�/�9�)�*�*�0�#�3�2�/�+�1�(�(�;��1�,�/�/�9�-�!��/�%�.�2�8�*�/�/��)�/�.�2�0�(�+�/�#� �%�(�2�.�(�)�+�)�'�3�1�=�8�(�!�;�-�)�>�5�,�.�,�,�;�-�6�&�0�$�2�2�)�,�9�2�%�.�*�-�'�,�0�)�=�'�/��,�+�&�&�-��2�$�5�-�(��&�,�&�$�.�)�$��)�#��!�#�&�*�*�+�4�&�%�5��(�,�1�'�$�:�6�-�1�.�.�'�2�(�#�6�(�#�(�*�;�0�4�?�1�+��4�)�;�1�-�$� �.�5�6�-�%� �)�!�/�-�0�+�%� �,�2�5�5�,�'� �%�1�1�2�0���.�#�*�)�?�4�#�,�9�,�1�#�0�$�+�,�/�3�8�,�+�-�:��.�/�:�2�/� �2�-�:�$�/�6��/�!�2�/�-�)�+�.�+�/�#�<�+�'�3�;�0�.�4� �'�8��.�'�1�/�!�-�+�-�&�!�(�#�>�3�-�/�/�9�:�-�6�-�+�2�)�(�/�(�2�9�*�(�)�&�2�+�+�2�(�-�&�-�/�*�.�'�0�-�'�'�"�(�1�%�+�#��9�8�6�)�"�2�+�0�#�1���3�/�+�-�)�+�?�%�2�8�9�)�(�0�-�7�)�/�*�>�-�;�.�;�2�:�7�5�9�3�.�0�&�2�#�1�%�*�'�0�&�'�,�*��/�4�$�1�(�,�,�#�7�'�4�,�0�.�6��1�+�5� �(�*�8�.�5�-�'�0�:�*�.�'�.�,�+�'�&�.�5�3�1�/�3�0�2�&�*�2�%�.�/�*�/�&�Հր׀Հ׀ـր؀ـĀـՀրـڀԀӀԀրրЀրـՁ2�/�>�/�/�.�;�-�4�+�0�$�/�:�+�%�1�4�%�)�/�2�0�8�>�5�6�6�1�1�-�(�%�"�/�5�<�*�+�)�0�+�,�)�6�7�6�4�(�&�/�'�$�.�!�>�%��"�/�!�-�'�-�'�-�#�5�/��1�,�'�/�+�(�.�#�0�&�4�7�;�,�(�/�(�'�&�5�+�)�4�(�,�!�&�/�+�+�,�%�*�.�&�.�<�!�2�$�1�+�1�-�+��%��%�)�*�%�'�-�5�1�0�2�+�"�0�2�3�+�!�1�<�8�0�,�9�/�+�(�/�4�/�&�'�� �/�-�#�$�+�7�$�1�.�0�%�&�$�4��&�#�0�)�-��0��5�=�'�,��+�#�2�$�'�*�&�/�%�6�0�-�8�;�&�-�=�,�*�0�;�"�-�%�,�.�"�1��-�4�&�3�<�.�$�3�2�)�<�/�#�,�/�(�5�.�2�-�1�#�.�/�,�,�.�(�)�'�'�-�3�&�)�2�3�#�1�$�'�3�3��F�'�:�%�-�/�)��+�,�$�2�3�/�2�,�$�&�+�)�)�+�1�&�)�*�'�&�"�/�)� ��6�.�/�/�3�1�/�"�'�*�.�"�5� �#�.�$�3�"��.�-�"�2�'�+�:�9�"�&�0��(�*��-�%�'�/�3�,�2�+�'�<�%�/�"�,��4��(�'�*�:�/�+�+�$�/�7�&�;�!�6�3�+�(�#�&�1�)�'�3�:�8�8�3�7�3�2�0�-�-�1�2�,�'�5�+�2�,�)�.�1�3�3�/�7� �1�2�)�:�3�2�1�8��'�/�(�"�!�6�*�3�*�&�'�+�-�3�9�.�'�4�)��1�*�(�0�4�)�/�1�2�+�.�/�-�&�2�(�0�!�:��.�.�.�4�.�#�:� �/�-�*�/�:�1�)�&�)�9�(�&�/�.�+�<�+�+�5�"�-��1�+�+�/�8�(�*�0�0�9�&�3�(�/�-�$�1�(�9�-�2�%�$�8�*�8�-�*�.�<�.�%�)�.�0�7�2�1�8�!�+�/�5�'�)�(�*�؀ۀ؀րۀՀ��ـ׀Ȁ׀р؀׀ۀր؀؀րـրـрہ-�=�0�"�*�6�8�0�-�5�7�%�-�.�/�7�8�0�.�>�/��5�*�&�/�0�/�9�"�(�:�'�(�3�&�9�5�(�-�(�2�*�+�-� �*�%�-�)�.�/�*�/�6�1�(�&�0�0��(�5�)�'�!�(�1�-�"�(�*�$�#�.�9�9�.�-�%�+�,�+�-�4�#�*�0�+�"�3�)�/�,�#�4�1�%�.�/�+�0�*�2� �1�$�&�#�.�/��)�0�&�)�.�+�2� �)�7�(�$�!�%��,�#�0�5�1�"�/�5�2�:�+�0�-�&�)�(�'�#�6�3�)�"�5�'�/�/�(�+�,�0�&��-�+�&�2�9�.�&�+�)�;�9�)�*�'�4�5�)�6�+��0�$�%�2�'�(�-�1�2�$�<�)�1��*�#�,�/�$�2�#�$�7� �'�/�#�/�-�.�*�2�+�+�-�?�+�+�"�1�(�0�6�"�)��1�&�*�.�,�(�4�-�*�*�(�.�"�#�8�%�%�-�*�4�0�5�4�4�*�3�*�(�5�3��-�+�)�)�(�4�:�'�/�/�/�0�)�*�)�)�/�2�-�2�8�*�&�8�3�,�:�*�'�'�-�*�)�&�-�0�>�!�+�4�-�"�(�9�1�(�/�2�(�*�5�B�*�5�/�/�;�.�2�:�1�0�)�"�1�.�*�(�$�3�%�-�#�/�+�-�'�-� �7�5�&�'�'�/�/�8�#�#�%�0�%�1�!�D�.�:�/�8�9�6�1�+�A�#�0�8�6�2�3�0�'�/�8�2�4�-�8�6�-�*�1�3�(�0�)�3�'� �;�(�(�4�'�+�+�(�(�$�,�-�-�6��5�6�(�%�)�*�'�+�3�#�=�-�5�,�#�7�$�#�,�0�%�/�,�'�3�5�*�:�0�1�1�(�9�+�/�,�/�=�&��2�8�-�,�-�/�8�(�&�/�0�)�.�:�+�#�&�&�*�%�3�0�1�)�'�#�3�"�#�'�%�4�0�1�&�)�=�2�(�(�9�*�!�(�/�C�-�)�9�)�0�:�/�5�4�,�5�*�3�3�'�7�3�-�9�)�7�/�9�6�5�5�׀րՀ׀ڀրڀՀՀÀ׀ՀЀՀԀրڀԀـڀҀ׀Ӏԁ.�,�?�7�2�F�6�1�6�5�4�!�,�+�/�$�.�(�*�/�+�%�(�1�7�)�B�1�.�#�*�+�%�1�2�-�=�*�3�.�.�/�-�+�-�4�.�5�6��1�/�1�*��"�!�0�9�3�/�/�8�+�0�/�1�<�,�/�=�'�1�)�4�2�=��-�/�'�#�)�%�.�"�*�&�.�=��@�/�/�2�%�9�+�'�*�/�(�5�%�7��/�*�.�'�+�+�%�-�9�&�-�8�5�-�4�4�3�/�2�*�*�)�"�*�+�4�5�9�0�.�2�5�6�;�-�2�4�%�=�)�,�4�&��'�+�/�)�+�0�%�-�<�#�/� �+�+�:�.�/�8�5�,�-�)�3�,�2�1�(�3�1�2�0�3�2�,�(�%�2�4�4�/�'�4�*�$�)�!�0��3�4�.�&�*�.�&�.�8� �4�=�%�+�8�"�7�3�,�'�2�,�#�3�/�*�&�.� �'�3�&�"�+�4�:�6�)�0�-�0�&��5�3�=�(�#�*�7��/�'�1�$�#�*�,�8�6�9�$�/�:�4�'�)�$�/�4�2�&�%�)��A�,�$�#�&�1�)�A�)�)�"�(�/�*�-�+�-�/�&�)�/�%�/�0�4�,�6�;�:�*�*�1�3� �#�)�/�(�/�+�.�9�9�:�1�%�+�$�5��*�-�'�)�/�*�)�2�@�,�+��)�3�/�&�#�9�;�%�,�)�@�(�-�7�,�,�&�0�9�>�4�&�'�/�$�#�1�5�$�/�7�:�:�+�3�(��,�0�)�/�&�'�3�5�#�:�8�5�3�+�,�0�*�%�1�3�8�(�?�1�#�"�)�%�4�5�.�.�&�)�%�:�-�-�)��/�&�.�.�5�*�0�*�/��&�5�.�#��,�!�0�.�1�-�7�,�'�%�3�5�+�1�"�0�&�2�!�+�/�&�6�-�)�)�/�3�4�+�6�$�'�:��,�(�/�5�"�1�5�+�$�&�.�'�(�1�1�B��/�*�2�0�$�0�*�+�3�%�0�#�8�(�4�8�2�.�!�1�1�4�?�-�(�1�(�9�+�1�(�8�9�ԀՀրՀ܀րրЀԀɀрӀӀՀπՀ݀Հـ؀ـӀـс1�5�%�2�3�(�+�@�$�6�9�:�1�/�@�7�,�-�$�-�(�-�.�.�-�'�)�'�7�4�4�/�+�"�/�+�5�6�>�%�+��+�*�-�+�!�.�.�4�+�-�+�9�.�,�*�,�7�1�*�(�,�9�!�,�,�+�0�-�&�!�-�)�0�'�#�&�9�3�;�2�D� �7�2�/�3�+�,�"�6�.� �5�2�/�/�*�4�5�,�+�4�+�&�+�!�2�0�-�/�&�/�5�'�5�,�*�!�5�%�3�9�(�5�0�%�7�*�2�6�+�-�*�1�5�3�1�/�/�*�1�.�5�5��'�)�3�%�0� �#�&�0�,�"�+�/��)�<�%�2�4�'�-�-�2��'��0�*��,�,�-��9�1�5�2��0�8�.�%�#�3�'�-�1�&�$�%�0�$�5�/�+�+�*�3�&�*�$��'�!�6�0�-�(�*�'�/�)�)�)�2�*�.�5��)�*�6�-��*�5�$�%�,�5�3�'�&�/�*�/�2�$�!�9�/�-�!�4�-�(�3�(�1�'�(�1�,�-�*�2�$�5�(�#�#�0�,�-�,�/�%�(�1�*�/�!�2�*�&�#�/�'�6�-�+�$�(��)�9�.�/�+�3�5�6�5�0�"�+�'�*�*�.��=�*�/�/�/�5�+�,�-�"�)�'�4�2�*�&�.�7�"�,�*�1�#�$�.�&�0�.�.�-�0�"�.�!�/�'�5�/�&�)�3�3�(�.�+�.�3�*�$�4�-�-�-�(�2��E�-�5�5�3�7�-�5�)�(�'�5�0�"�/�)�A�+�(�#�(�*�2�.�#�4�1�/�2�&�2�8�$�3�>�+�-�6�*�+�2�'�-�'�.�0�*�7�-�.�*�-�2�2�1�<�.�,�.�#�2�"�(�&�#�-�0� �)�4�*�+�,�/��+�2�6�1�$�-�:�#�#�*�!�/�'�0�,�.�/�1�5�3�3�2�0�/�,�/�0��3�'�*�4�,�!�+�!�2�;�-�1�3�.�/�)��+�8�3�/�6�.�3�+�8�&�-�6�0�(�.�6�*�*�6�=�)�3�;�*�2�,�8�1�ԀۀՀـڀӀڀ׀ЀǀӀــՀڀ׀πـӀۀ܀܀ڀՁ5�3�/�6�*�5�+�9�0�6�/�'�:�%�9�/�/�;�.�>�*�9�2�)�1�<�(�*�6�.�!�*�/�!�)�+�+�,��%�(�/�;�%�-�:�)�%�)�#�-�1�+�"�"�:�&�)�%�0�!��-�6�1�*�/�)�&�&�+�.�(�(�(�.�3�4�/�3�-�-�.�/�*�-�(�4�%�1�6�7�/�/�1��,�1�)�1�#�3�*�5�+�8�#�1�&�'�)�/�3�'� �/�.�)�1��)�1�3�*�3�.�1�!�:�'�.�4�&�+�/��$�'�%�+�/�+�+�*�2�-�/�5�'�,�'�,�%�(�/�%�)�!�-�)�0�,�!��(�*�/�2�"�*�+�,�!�5�.�(�%�5�2�)�/�/�-�1�,�2�!�/�;�,�3�(�0�%�'�'�*��.�)�6�2�'�6�1�7�3�%�)�,��*�%�%�-�.�.�*�&�+�"�(�*�+�:�"�.�0�4�#�1� �2�(�$�%�1�6�%�$�-�6�3�&�/�(�5�2�/�0�0�5�&�(�6�-��/�*�-�8�"�:�+�1�9�*�5��/�'�#�6�,�%�'�-�(�'�/�&�3�*�(�4�'�(�3�+�6�!�6�6�0�-�)�%�/�2�#�.�0�5�*�!�!�,�(�-�(�;�2�0�$�,�+�#�%�6�'�2�6�,�'�.�*�+��)�%�'�'�-�8�:�@�"�� �/�%�1�2�/�-�.�'�:�)�2�7�6�.�,�*�/�2��=�2�2�3�%�7�7�>�2�0�7�,�9�,�&�4�.�4�*�3�(�+�)�*�/�1�,�/�1�%� �&�;�#� �+�;�-�(�-�.�;�-�0�/�"�4�5�2�*�1�6�;�;�+�%�&�%�4�#�5�5�!�0�7�$�3�*��,�"�)�-�6�&�5�2�$�.�5�.�.�$�3�+�3�-�5�5�+�0�2�'�6�*�-�0�#�.�+�&�3�%�1�*�5�%�<�5�"�1�.�#�.�%� �/�*�*�+�*�9�-�9�3�0�!�.�&�7�+�.�2�(�)�2�&�,�,�&�2�)�-�#�6�9��#�/�2�;�,�7�8�ـҀπҀրր׀ՀրȀ׀ڀـՀ׀׀ҀрրԀԀڀրׁ&�0�%�/�3�3�0�0�,�)�?�,�6�0�0�.�&�(�'�/�+�%�,�#�/�6�/�/� �#�6�2�&�6�3�)�-�,�1��-�$�)�9�:�3�%�!�$�3�1�@�,�(�2�"�-�"�<�3�*�.�,�8�&�/�0�,�2�/�;�1�/�"�+�6�2�2�&�6�3�%�B�+�)�-�/�,�5�/�0�)�9�7�-�(�4�;�*�!�9�*�5�,�&�7�2�*�-�6�4�-�.�#�,�&�7�/�2�;�3�/�4�3�6�5�!�/�)�/�&�2�2�&�3�-�2�%�=�#�.�+�(�,�2�,�#�&�,�(�4�/�,�0�/�'�#�)�5�$�,�$�9�6�0�,�,� �2�)�&�*�2��8�4�@�,�3�6�%�1�6�3�6�>��"�+�/�/�+�(�+�!�2�;�0�&��+�-�2�'�3�2�/�+� �,�)�%�-�'�+�9�&�,�.�"�#�0�%�)�3�'�5�"�4�(�/�#��6�-�)�9�5�3�7�+�:�'�+�-�$�+�$�&�.�/�*�(�'�1�(�5��+�+�,�"� �)�+�5�.�!�#�"�4�/�/�,�3�+�(�3�+�1�/�#���)�-�*�*�/�8��4�"�*�+�-�0�7�/�/�'�0�@�)�(�)�*�0�'�0�=�8�&�,��*�)�)�7�1�$�#�:�4�-�2�#�+�6�.�.�)�$�'�*�)���)�3�.�'�+�%�,�%��/�%�4�/�,�(�(�(�-�8�6�+�%�)�*�-�*�!�(�+�2�3�.�/�3�3�)�(�5� �+�*�&��(�/�8�5�%�'�.�#�(�;�.�)�,�)�.�+�*�,�4�2�,�'�"�%�.�2�#�.�$�!�/�%�$�4�0�&�/�)�+�0�)��-�(�8�&�1�'�9�1�(��)�3�/�-�8�/�*�6�*�9�*�)�#�%�.�'�-�,�0�6�/�6�-�*�2�2�,�1� �=�3�,�1�8�+�*�(�&�4��<�-�-�*�-�)�1�.�3�+�&�9�>�"�>�.�-�9�1�0�*�.�,�.�*�6�4�-�+�&�'�3�2�2�+�3�8�8�&�ۀՀ؀ր׀ـҀۀрƀ׀ـրր׀׀؀Ҁ׀؀ـ݀ӀӁ9�1�#�*�*�=�/�/�4�1�(�/�5�0�/�3�9�.�(�0�4�1�)�2�%�+�)�2�5�.�0�%�5�*�*�4�)�5�)�-�.�6�+�0�;�/�5�(�"�,�*�%�'��$�1�0�6�9�1�0�'�)�%�=�,�1�0�+�1�*�5�%�5�'�(�/�'�1�'�/�3�7�%�0�/�*�,�+� �+�-�/�-�%�6�%��'�.�-�3�;�%�*�3�&�9�9�=�1�1�3��&��,�(�.�3�6�6�#�0�1�*�'�0�>�=�*�,�%�/�$�+�+�/�$�&�&�!�"�2�,��-�&�8�4�/�7�>�%�+��$�*�$�3�3�1�/�(�+�)�4�'�+�7�&�.�"�(�&�(�1�?�.�2�+�+�!�(�(�0�'�&��"�0��.�+�1�*�,�0�-�*�+�1�#�:�'�:�$�-�7�-�'�0�'�&�"�2�"�+�1�,�/�2� �6�(�&�1�&�-�/�-�8�0�:�.�'�1�/�+�$�3�/�5�+�5�*�:�)�*�*�%�%�*�4�6�0�/�1�@�/�9�)�1�3�-�-�0�/�/� �%�-��6�6�2�+�*�5�*�,�1�(�!�)�%�.�6�%�-�7�2�=�*�,�1�(�1�.�*�'�+�5�/�,�:�#�-�-�0�1�)�+�0�(�+�1�9�/�,�#�)�1�/��+�&� �'�'�-�3�:�1�!�'�1�&�,�(�9�/�/�$�6�-�-�,�.�(�0�5�3�3�2�'�)�+�'�1�.�2�>�2�+�(�%�,�0�+�%�%�+�-�,�6�'�9�4�/�2�5�%�!�2�;�&�-�(�%��5�/��%�&�(�>�4�(�7�1�/�+�-�7�;�&�-�9�2�.�#�+�&�*�(�#�/�3��3�/�5�7�/�-�+�0�-�/�)�(�0�'�&�.�0�3�/��%�&�A��2�-�-�)�&�:�*�!�.�7�+�&�!�.�+�,�0�+�,�'�*�=�5�1�9�,�,�0�,�)�"�*�2�$�&�9�+�,�=�3�;�+�4�.� � �-�1�,�8�,�&�2�*�+�'�2�.�/� �3�'�.�,�"�/�1�ԀڀրހԀ׀ڀҀـƀրր؀Ӏ݀׀ހ׀׀ր؀ԀӀс)�8�5�6�-�:�:�:�9�)�5�#� �3�/�9�3�/�'�*�!�-�/�+�%�*�1�'�1�3�@�)�"�5�)�(�'�&�1�%�1�=�.�1�#�(�2�/�1�.�5�5�)�0�)��&�*�2� �'�'�,�0�,�/�=�+�!�&�;�4�%�/�&�5�,�=�)�+�C�0�+�C�$�+�&�+�+�(�-�/�'�7�*�1�+�+�)�5�(�/�(�4�#�'�&�1�,�"�*�5�7��2�5�,�%�/�-�&�=�(�*�(��*�)�&�.�*�#�%��3�"�.�.�+�0�0�1�*�5�8�"�6�0�/�&�4�/�5�-�*�,�,�'�3��'�,�%�)�3�2�'��,�8�/�'�'�3�'�2�2��'�"�&�-�!�0�&�5�$�0�0�%�/�%�8�%�+�,�*�3��"��.�)�/�0�)�1�"�1�(� �,�+�8�0�#�-�+�'�.�(�8�#�/�3�8�(�+�)�#�/�.�4�)�%�,�0� �"�,�1�3�-�"�9�'�,��.�+�-�*�/�4��4�1�&�/�-�,�&�+�1�3�&�-�5�-�-�4�"�/�/�/�+�"�!�(� �#�3�1��,�1�-�/�+�+�)�-�/�1�1�0�%�/�$�/�$�'��%�5�1�!�9�%�3�5�,�"�0�(�$�8�4�(�/�7�1�(�(�#�"�4�0�)�+�*�0�.�%�-�*�6�-�(�4�6�4�9�2�*�&�:�-�%�1�<�6�-�0�0��!��/�$�&�"�*�"�+���8�8�2�$�-�0�.�+�<�)�-�%�-�5�:�$�)�6�2�!�-�7�+�,�'�%�+�,�/�/�/��.�-�*�0�>�1�8�.�'�+�+�$� �)�2�,�'��'��.�1�'�3�-�5�#�/�+�-�.�.�6�1�7�$�4�+�!�,�(�,�1�*�6�1�+�7�9�"�+�:�#�!�A�2�,�.�$�%�8�4�,�0�*�#�*�2�:�2��.�6�4�,��%�+�.�.�5�7�3�+�.�1�1�3�2�+�0�*�,�4�1�.�7�3�>�4�*�4�9�-�/�.�.�(�*�.�3�1�,�ԀҀـӀҀԀـՀـ€ڀۀπր؀ــр܀ـ؀Ӏрׁ2�<�/�0�*�,�)�5�7�2�7�&�-�9�(�/�+�+�.�)�1�)�+�(�:�5�%�+�%�7�/�6�'�1�,�%�)�,�-�,�1�2�7�@�+�!�4�2�4�1� �2�5�/�*�5�0�.�&�,�&�!�*�/�,�0�3�9�%�%�6�.�4�%�*�$�,�/�+�-�7�2�7�2�#�0�8�6�-�1�7�%�-�3�8�5�"�,�+�&�.�*�5�-�%�,�-�)�/�6�(�3�*�0�/�#�"�&�#�#� �0�2�"�#�"�$�=�+�$�4�3�+�-�!�2�,�)�&�1�%��)�+�-�-�/�%�(�7�-�,�4�.�-�#�2�+�9�+�!�*�,�:�8�!�+�.�(�?��4�&�,�6�1�0�5�,�.�,�#�7�-�2�1�$�+�"�!�*�-�9�+�4�,���#�6�5�*�8�.�'�0�<�2�/�6�#��,�'�'� �'�+�3��0�-�/�-�3�-��4�1�2�/�-�-�#�,�%�9�-�>�!�)�:�$�/�)�&��/�*� �.�&�*�$�,�&�.�'�.�6�*�*�4�,��2�"�(�.�+�(�#�7�'�.�&�*�*�,�3�*�&�3�1�%�4�.�(�'�1�'�7�'�.�0��2�'�%�,�'�<�,�8�*�+�1�(��'�.�(�+�*�)�,�+��2�$�%�.�'�0�%�"�5�-�3�5�2�,�,�,�/�'�=�-��+�/�/�/�)�6�%�.�,�%�&�)�3�-�4�1�1�1�1�3�3�5�*�/�1�.�,�,�'�5�*�2�-�#�"��*�'�&�/�1�#�.�&�+�+�&�/�1�#�(�-�'�6�,�%�/�(�3�4�7�/�(�4�:�,�4�)�(��%�0�/�9�,�2�(�"�6��,�*�-�.�0�*�)�*�,�(�1�-�"�:�4�-�0�(�)�*�2�/�5�,�<�1�.�-�5�.�)�$�/��$�+�5�+�6�+�/�)�/�'�7�/��0�(�0�2�-�0�.�1�-�+�/�+� �2�3�(�/�$�,�+�1�"�%�1�)�1�+�1�5�"�,�0�)�7�%�5�*�2�+�!�.�)�"�3�D�0�Հ؀ӀԀ׀րــրĀՀـԀ؀Ԁހ؀׀׀ЀԀրـׁ3�0�5�3�:�!�@�/�2�)�5�*�3�)�'�-�#�7�-�(�2�0�)�%�2�%�/�6�)�/�*�&�-�!�8�3�B�'�-�:�3�$�%�;�,�4�(�%�(�-�*�8�.�-�%�%�4�-�(�&�2�*�7�/�(�3�,�4�0�+�.�1�.�+�3��+��/�7�:�!�'�$�(�5�.�4�)�.�?�0�'�;�8�1�"�)�-�&�.�(�)�=�9�*�7�*�2��D�3�0�$�.��+�.�$�+�3�)�*�6�)�"�(�7��3�&�6�5�#�0�%�.�7�4�4�#�'�$�*�(�3�*�.�+�%�6�4�,�*�.�*�'��+�(�(�"��3�(�-�#��1�(�/�(� �*�*�1�2�'� �+�2�3�1�)�9�>�(�/��)�0�5�/�6�%�.�$�)�2�'�2�/�:�0�.�*�4�+�4�!�2�4� �(�*�4�5�*�&��/�/�.��1��7�/�-�/�-� �#�/�+��(�.�0�/�8�1�%�&�8�3�'�6�+�1�C�!�*�(�3�0�)�)�$�+�2���*�%�*�6�-�0�2�(�*�#�.�1�+�)�,�$�5�-�)�7�*�+�)�*�0�"�)�&�&�5�&�/�.�-�-�)�#�+�*�0�'�6�!�;�*�0�0�,�(�!�-�"�5�5�6�'�5�7�,�+�:�&�#�5�2�1�+�+�$�,�/�$�7�3�0�(�&�3�!�9�'�-�/�1�*�0�2�+�*�.�.�1�0�!�/�2�<�,�,�-�.�$�5�:�/�8�-�7��)�+�/�+�/�,�1�5�&�4�*�'�4�.�+�1�#�%�/�"�(�4�,�-�,�(�*�$�.�(�0�%�,�2�0�,�2�.�.�9�+�$�0�3�.�!�.�1�-�1�.�*�"�2�A�/�%�3�/�4�%�1�,�-�;�-�#�'�2�+�2�0�:�#�)�*�3�.�(�+�6�/�/�/�3�.�2�-�#��=�/�*�!�)�5�-�<�3�-�4�-�,�1�9�:�$�5�0�1�(�7�-�$�(�&�'�*�4�3�3�-�(�4�7�.�/�3�!�8�!�?�)� �*�-�1�&�,�2�րـ؀ր׀ՀԀ܀ՀȀۀڀ؀րԀۀՀـ؀Ӏ؀рπځ7��*�5�;�-�5�,�/�1�-�,�?�%�,�5�6�)�"�.�%�.�7�'�+�)�(�F�1�+�,�+�%�4�2�+�=�/�3�,�"�=�7�4�-�+�'�/�5�)�:�(�3�3�*�,�+�/�(�7�%�9�)�/�'�3�"�/�&�.�#�3��&�+�9�2�1�!�3�+�1�+�=�/�.�4�'�9�(�1�*�+�-�)�'�/�6�9�3�$�7�(�/�,�&�:�/��?�%�0�8�/�&�+�9�*�+�$�0�3�+�)�?�2�6�4�+�%�0�%�7�/�0�'�"�1�D�+�1�3�3�4�/�+�1�-�-�'�(�3� �*�0�$�-�)�/�3�:�"�-�$�4�#�-�.�4�4� �+�/�.�-�-�/�5�-�:�*�*�6�-�"�-�(�=��"�%�/�'�1�+��*�3�,�*�-�.�+�-��-�*�,�(�)�5�/�*�+�/�5�9�5� �+�-�8�'�$�$�.�"�*�$�,�3�+�!�!��.�1�6�/�-�9�-�-�'�8�#�.�%�.�&�7�1�&�.�.�'�+�(�3�*�/�.�/�+�+�1�.�+�)�#�3�.�)�-�2�2�/�1�4�1�,��,�,�/�+�5�0�5�(�.�8�"�$�3�'�#��(�(�7� �*�%�2�2�0�)�,�7�)�4�$�)�#� �.�1�&�&�-�,�8�1�*�/�1�)�,�&�:�)�(�1�3�;�/�%�/�+�/�4�8�2�"�.�-�:�(�/�-�*�7�/�'��A�4�/� �,�+�0�,�3�)�5�8�/�(�2�2�0�1�-�-�3�#�(��-�A�&�1�1�!�:�0� �B�7�1�1�$�3�6��&�#�1�-�*�.�.�,�#�@�,�?�(��5�)�8�1�3�"�*�2�:�0�4�&�1�3�-�'�/��7�:�.�2�B�+�*�5�4�*�&�.�)�'�8�-�-�4�1�$��0�0�5�7�/�(�0�.�%�,�(�+�(�)�2�+�3�3�&�4�:�?�2�,�3�4�1�&�7�)�/�"�$�7�0�/�&�*�!�5�'��"�.�8�3��,�1�5�"�)�#�"�0�.�0�0�-�-��#�ր׀ـЀӀԀۀրڀÀր؀ҀЀڀр؀׀Հ׀ՀӀՀف+�/�>�;�%�0�?�%�6�%�+�9��.�2�;��:�$�'�+�3�*��"�,�'�8�*�+�7�6�4�4�,�#��/��=�,�'�'�0�'�1�*�8�'�+�4�0�4�0�-�0�0�7�7�,�.�!�-�;�'�-�(�-�-�-�3�.��+�0�-�-�5�,�"�+�/�'�6�+�3�/�-�%�3�0�%�0�2�+�6�'�1�$��/�.�.�(�$�)�3�4�'��4�)�#�7�-���1�4�.�.�(�/�"�)�!�"�0�/�$�$�(�?�0�?�*��2�)�(�2�!�,�(�-�"�8�4�1�=��%�%�.�2��,� �*�)�%�8�/�,�*�(�%�4�*�5�A�(�1�*�'�/�6�%�$�%�4�.�-�4�>�%�0�4�/�1�%�/�1�(�*�-�)�,�0�-�!�8�*�2�2�>�&�2�+�"�<�.�6�)�+�%�+�0�5�'�-�'�*�.�*�(�2�6�2�*�3�/�'�"�5�-�/�$�'�-�<�&�3�6�-�3�-�+�/�+�7�#�3�)�0�&�.�1�%�"�,�(�)�/�.�/�#�/�%�-�(�'�!�2� ��+�,�#�,�5�3�+�1�1�7�#�4�+�/�1�+��'�0�9�,�0��1�)�.�*��&��*�1�+�<�1�%�*�/�0�*�,�7�)�%�$�"�%�,�"�)��$�-�$�1�(�-�2�.�!�.�#�"�6�/�(�*�0�2�*�&�.�,�)�5��2�'�$�3�&�*�&�-�4�$�,�%�-�2�/�#�;�(�-�"�3�(�7��)�+�8�+�(�.�1�8�1��2�-�!�)�?�2�*�8�-�,�3�"�0�4�'�+�+�9�-�1�%�)�,�#��*�0�'�)�*�2�,�&�%�4�#�9�1�+�6�2�0�-�;�)�%�#�%�6�+�$�/�5�.�-��-�4�2�4�"�&�,�2�'�-�)�8�:�6�4�*�4�%�0�,�'�(�2�9�+�'�2�!� �$�6�3�4�,�2�#�0�:�*�<�3�,�+�)�5�C�-�#�%�4�7�'�*�(�,�/�5� �*�1�5�7�2�(�3��(�1�/�4�ՀԀ׀ڀӀՀՀԀՀŀ׀Ԁ؀׀ـԀЀրӀՀՀրրԁ$�7�>�3�3�(�&�+�)�+�'�1�-�)�2�-�5�<�&�-�:�#�-�)�+�&�1�-�=�:�,�*�3�)��5�)�.�3�/�6�,�7�&�-�6�+�-�(�:�4�5�$� �4�:�;�-�/�?�7�(�=�5�(�/�$�1�"�-�.�-�,�+�%�:�"�&�"�1�3�"�7�.�,�3�4�4�5�)�1�*�3�'�"�6�/�0�'�.�8��"�;�;�-�%�-�%�3�5�*�+�(�+�4�*�*�'�$�2�&�*�+�'�/�"�!�3�,�!��2�$�/�'�!�/�'�,�+�1�6�,�*�5�,�,�+�%�+�"�"�)�-�1�#�0�1�)�3�-�/�)�0�1�,�(�,�/�(�+��6�-�#�/�!�.�$�/�.�7�*�-�*�.�1�$�/�"��.�#�0�+�2�-�(�'�&�(�9�-�*�6�A�%�"�:�)�)�0� �#�5�'�)�B�(�*�/�'�1�2�/�)�.�,�0�8�*�.�1�.�&�$��-�'�*�#��7�.�5�8�)��-�$�?�*�0�%�2�%�+�>�-��.�/�(��0�*�.�2�1�-�(�1�,��/�8�3��2��%�!�/�6�+�&� �!�,�-�?�-�#�'�+�1�1�2�)�%�)�/��>�+�7�'�.�6��*�.�1�)�$�9�#�+�,�*�+�/�-�5�9�-�+�'�/�3�)�0�$�-�,�'�3�9�.�*�'�,�/�7�*�+�1�,�.�'�%�)�5�2�8�!�'�/�&�)�1�/�-�;�!�!�9�/�4�'��)�&�6�&�"�(� �.�/�*�(�-�/�(�5�#�/�5�%�%�+�-�(�5�8�(�)�2�$�'�7�*�(�3�*�8�2�,�%�1�*�)�-�*�+�3�2�%�.�2�5�D�!�.�%�(�(�:�0�'�8�,�$�$�"�,�0�2�%�&�3�3�&�!�1�.�/� �'�"�&�1�$�.�-�$�/�3�,�;�$�)�(�!��,�!�.�;�5�$�B�!�%�<�7�+�0�0�+�3�,�3�1�6�7�.�(�-�"�!�/�-�2�1�)�;�3�3�,�1�4�<�)�5�%�,�&�+�,�րր؀ـ؀ӀڀҀԀɀـ؀ـڀ�րՀԀӀӀ؀؀Ҁԁ3�0�)�6�1�I�,�9�)�-�1�;�,�<�2�0�6�$��/�4�-�<�,�0�-�$�)�.�1�)�2�/�2�1�-�%�7�$�-�/�#�-�(�-�+�)�(� �2�8�(�9�-�#�*�1�.�-�,�*�)�@�#�1��*�#�9�.�,�&�*�*�7� �)� ��*�*�1�/�-�0��9�"�"�5�(�.�4�/�)�,�'�3�0�&�)�1�"�)�&��.�.�+�1�+�'�*�%�3�'� �-�/�1��,�1��+�'�)�&�1�;�1�#�.�8�(�1�5�%�6�2�)�*�/�'�)�%�)�%�)�+�)�$�.�1�)�-�%�(�.�*�3�'�'�,��+�6�1�&�;�,�)�4�'�1�*�>�(�-�&�6�/�(�.�9�$�,�2�/�'�8�8�$�<�0�0�.�*�.�6�*�,�+�)�'�-�4�0�,�1�$�+��'�/�4�6�-�6�,�0��,��$��$�)�%�3�-�1�0�.�5�-�)�%�%�2�*�0�+�.�7�6�B�0�&�,�(�$�7�:�'�&�2�'�#�)�&�)�.�-�.�0�*�"�.� ��+�9�)�1�+��7�1�1�7�'�%�2�-�&�'�.�&�3�&�)�+�$�0�(�;�%�&�'�/�)�6�$�-�)� �$�3�6�1��+�8�9�-�&�0�$�4�.�-�3��2�'�%�2�/��3�!�'�8�1�1�4�0�/�&��)�-�+�8�!�/�(��&�*�)�2�)�2� �'�6��!�$�%�&�)�+�0�"�6�=�,�*�6�7�3�2�,�+��*�%�,��1�5�'�1�+�7�(�&�)�*�0�6�9�-�2�'�3�,�)�4�2�*�'�5�,�/�'�(�2�>�-�.�7�)�1�"�2�%�5�.�2�$�)�/�2�3�'�+�-�/�3�*�-� �3�0�'�'�3�4�-�-�/�6�5�(�@�&�'�/�/�*�0�/�*�'�-�$�5�)�&�4�!�-�0�,�)�-�0�/�3�&�3�)�.�#�1�;�4�.�#�.�/�'�-�2�4�7�0�0�,�$�-�/�-�-�!�*�9�#�?�.�1�&�4�7�*�/�%�0�ـҀӀрҀԀҀ׀ՀɀӀԀҀՀ׀؀ـրրԀـՀ܀ف/�+�8�2��%�2�;�5�%�.�)�-�I�/�8�$�(�/�/�2�/�:�/�4�)�#�1�)�:�"�5�1�)�/�4�,��$�,�&�9�+�&�.�*�2�,�)�3�5�4�1�/�'�$�+�"�)�1�$�,�:�/�;�7�#�"�+�&�*�/�/�3�*�*�5�-�&�/�)�,�2�%�3�'�,�/�'� �+�1�+�'�%�4�6�*�3�9�'�)�6�1�;�%�+�1�2�1��,�#�+��&�/�5�5�5�2�6�'�,�+�/�6�+��5�.�=�1�0�%�9�3�#�%�+�%�2�5�+�.�/�<�7�,�-�$�)�)��"�%�#�2� �,�>�"�2�%�+�!�1�1�%�7�%�3�0�3�.�-��/�1�3�"�)�%�2�-��%�7�!�'�+�5�2�-�/�$�?�(�,�)�%�,�)�-�0�1�3�)�)�:�&�"�8�4�5�0��=�#�-�7�'�)�,�*�*�/�)�2�8�0��,�/�%�1�6�!�'�0�5�5�&�3�#�(�"�(�2�,�(�@�*�6�1�$�4�%�.�)�.�'�%�0�&��%�!�(�2��/�&�5�5�*�/�/�3�"�3�(�4�3�,�8�#�8��!�$�/�-�,�+�%�5�6�4�3�+�,�<�$�&�'�%�6�-�2�+�*�"�;��,�8�'�+�6�!�1�(�$�%�/�1��7�1�6�.�*�(�4�%�*�*�$�)�&�9�4�)�2�/�-� �,�%�,�)�.�/�2��(�4�!�$�/�4�3�%�-�;�'�.�1�4�'�0�;�2�2�%�(�*�-�/�3�1��*�-�(�*�*�.�&�7�.�1�1�/�+�/�:�&�*�%�/�5�3�"�-�3�1�%�0�#�,�3�&�&�1�&�&� �.�'�)�,�%�!���)�6�+� �,�-�.�8�(�/�.�/�,�5�3�'�-�-�+��+�3� �#�5�*�*�-�%�$�2�4�3�4�6�+�)�4�&�#�(�5��%�.�7�.�6�'�#�;�7�.�'�+�4�2�#�(�B�5�.�*�9�&�%�9�0�'�%�#�<�3�1�)�6�6�-�3�)�/�+�5�'�!�ՀـڀԀҀـˀـԀˀՀ܀Հ׀ـրԀրـրԀ؀Հԁ5�4�5�/�-�'�(�5�/�,�,�9�0�5�1�=�.�=�&�*�)�1�/�*�3�7�3�.�+�<�-�*��&�+��3�-�+�*�3�9�1�%�+�"�:�'�/�)�$�$�"�6�+�8�0�,�7�&�-�2�+�'�)�:�0�'�4�4�/�!�4�+�)�1�3�/�*�3�#�"�4�+�-�)�-�-�=�/�-�,�7�#�2�/�8�!��)�0�/�1�/�5�%�2�!�.�)�*�'�)�5�,�1�.�/�8�$�)�,�4�5�%�>�%�$�4�/�+�1�-�+�6�/�'�+�-�/�'�2�+�)�,�=�(�5�1�#�3�/�1�3�'�'�)�"�2�+�&�.�#��,�!�#�1�,�5�.���5�#�+�(�<�+�4�1�-� �.�)�9�1�3�*�/�0�-�2�)�4�,�-�(�7�4�*�2�)�,�-�'�@�5�%�)�'�3�3�0�<�%�#�.�2�&�<�*�&�3�(�!�3�&�/�.�3�%�?�*�4�7�;�+�/�0� �0�:�&�'�)�$�$�+�/�7�7�(�-�-�2�)�&��%�=�&��/�3�5�7�'�%�'�*�"�'�-�!�'�'�/�#�,��<�*�2�.��3�&�*�"��%�,� �0�&�2�1�"�0�"�/�.�;�.�0�5�1�"�,�-�7�+�)�+�0�2�"�,�/�#�"�*�4�+�*�.�1�*�/�4�(�*�$�/�2�-�-�*�/�/�-�)�(�/�/�(�(��/��*�,�)�.�,�-�(�'�1�/�1�&�1�.�+�/�4�*�&�-�%�0�0�+�,�=�!�8�)�4�-�-�1�6�5�-�.�/�3�,�.�0�,�3�3�+�!�(��0�!�*�(�(�,�/�/�+�,�7�6�%�5�,� �4�.�*�+�*�%�&�)�&�0�5�;�*�)�-�-�!�-�.�7�3�0�(�(�$�4�1��%�7�%�0�/�.�,�)�-�4�+�+�+�%��9�+�+�,�+�%�.�:�/�*�-�5�1�.�*�9�'�!�&�#�3�$�)�,�� �-�'�+�4�@�7�,�/�/�)�)�+�-�,�5�1�$�#�:�?�9�/�3�9�3�,�/�ڀӀـ؀׀ԀހπـɀրրۀـԀۀۀ؀ӀۀՀՀՀ؁-�0�5�:�+�&�)�6�+�9�/�(�3�$�5�%�5�/�,�'�%�)�A�)�0�0� �5�'�+�*�#�2�-�6��'�!�"�0�(�.� �/�(�2�&�:�3�+�$�#�9�)�)�6�*�;�(��)�*��-�*�.�)�+�/�0�3�+�2�-�A�/�%�+�!�4�*�)�<�"�-�,�*�-�&�.�*�8�/�!�.��(�7��(�/�&�*� � �.�,�3�+�-�5�4�5�.�"�.�,�3�:�*�)�(�/�+�-�'�7�&�4�1�2�*�-�2�<�1�0�5�/�3�&�)�(�4�-�$��7�,�.�/�0�2�-�:� �+�/�5�3�-�1�%�:�:�5�#�+�,�%�3�.�,�2�(�8�7�*�-�,�1�$�*�+�8�:�*�/�&�/�1��&�*�)�2�4�'�+�'�/�0�@�-�+�'�(�;��.�.�!�C�(�)�7�,�)�%�2�.�/�)�:�!�4�"�-�&�-�-�8�+�0��*�'�1�0�)�'�:�4�2�2��8�9�1�4�-�1�/�'�+�-�:�+�:�7�)�/�*�A�0�.�9�/�0�&�'�+�!�0�7�1�.�%�-�3�0�)�-�%�1�7�#�-�+�&�+�0�5�.�(�&�/�+�,�,�+��-�#��+�5�)�-�6�&�7�+�2�.� �.�&�*�.�3��"�-�/�-�8�7�&��#�3��*�2�1�'�4�3�1�%�5�2�,�$�/�/�.�#�)�,�3�+�0�2�.�(�#�0�(���,�5�*�/� �#�-�7�7�-�(�6�0�1�2�0�;�%�.�,�/�1�0�3�(�1�(�*�/�-�#�.�5�9�/�=�)�0�.�,�+�(�-�,�6�0�/�(�&�0�3�$�!� �-�&�.�!�-�*�.�'�,�&�%�5�3�.�&�6�'�:��%�*�1�6�4�0�-�*�)�3�4�!�1�)�+���,�3�!�;�'�4�7�4�'�,�)�-�-�(�<�'�5�/� �*�2�&�4�%�&�.�'�-�3�,�!��8�*�&�(�2��,�=�4�6�"�"�4�,�;�-�-�7�>�*�@�5�3�7�&�.�8�,�܀Ԁրـ׀݀Ҁ׀Ҁ��ԀրԀЀـՀ؀؀ـՀҀ׀Ԁց3�.�/�(�(�,��%�0�(�.�6�)�>�)�,�;�%�&�%�4�1�=�)�'�K�5�"��"�/�6�'�5�/�7�)�)�)�;�&�1�0�(�1�"�&�/�(�(�+�3�5�%�3�.�:�)�-�-�<�+�/�)�3�)�1�)�$�,�0�'�-�'�.�'�*�+�&�-�*�1�*�1�)�,�)�)�1�"�-�1�+�$�-�-�#�0�(�+�(�/�<��.�4�4�3�,�)�+�*�0��'�&�!�$�3�6�)�%�.�5�&�:�,�<�4�+�*�5�8�/�5�4�2�2�3�9�$�%�(�0�-�#�"�7�(�$�$�$�'�5�/�)�2�1�.�7�)�%�2�/�/�9�%�,�1�,�,�0�&�.�1�(�3�'�(�%�+�C�)�(�)�!�)�'�)�-�,�,�*�'�"�%�%�1�/�'�3�)�7�2�+�+�,�'�7�'�#�:�/�.�-�%�-�1�.�.��'�3�,�*�5�5�4�'�-�,�0�+�1�.�3�1�:�$�"�.�-�&�0�.�2�+�*�)�3�'�.�*� �+�-�:�*�%�*�&�,�3�(�+�'�(�"�4�(�/�.�-�)�@�3�2� �%�1�-�+�+�/��8�-�/�+�*�$��;�1�(�%�'�(�*�7�.�/��,�-�.�+�,�+�'�&��3�%�-�+�&�2�)�2�)�!�)��)�+�0�,�+�'�-�(�<�)�'��)�4�*�,�,�5�'�/�,�2�3��'�6�&�9�+�4�/�+�*�;�*�3��3�+�2�4�4�0�&�:��)�#�8�4�5�A��.�3�'�.�)�'�)�*�*�1�)�5�7�3�#�$�6�+�2�-�+�$��8�.�3�6�-�0� �)�-�+�)�*�4�#�*�/�2�"�4�6�!�;�&�.�%�(�5�/�1�+�+�&�!�0�.�#�/�(�*�*�3�7�%�-�%�0�.�4�8�6�0�&�)�5�0�1�2�"�3�)�)�+�+�,�5�1�6�$�5�@�6�3�-�+�5�&�1�:�3�-�1�+�5�&�=�2�9�3�/�,�3�+�/�4�1�$�6�3�=�(�;�&�'�-�'�8�,�-�2�%�#�4�ӀՀրԀـ׀׀ـрǀڀڀ؀Հ׀րԀր׀րπԀՀց"�4�<�5�2�=�0�+��&�-�4�0�,�/�%��4�,�'� �7�&�#�+�-�$�*�%�'�3�/�+�,�2�>�(�'�8�$�1�,�'�>�:�3�0�*�2�1�*�-�/�3�2�4�0�-�-�6�.�-�0� �5�0�=�(�@�4�-�4�.� �,�0�0�.�1��/�2�$�3�6�!�'�1�1�2�1�-�'�%�!�.�5�<�'�+�5�*�!�/�5��+�/�+�/�&�-�.�'�7�(�,�5�8�*�,�)�-�,�*�6�3�'�1�#�1�2�$�0�&�.�1�1�!�1�)�'�*� �%�&�&�,�0�,�5�,�6�+�/�+��)�*� �9�.�&�7�,�&�:�)�-�'�-�+�0�;��$�.�/�,�+�!�2�'� �0�)�.�4�'�+�4�1�6�/�4�.�%�@�$�/�%�%�-�1�'�4�)�1�/�-�+��7�0�-�-�5�9�,�-�6��3�#�1�,�2�3�+�)�4�/�.�,�(�2�&�!�2�-�@�/�-�9�)�1�-�'�'��(�)� �%�;�(�2�"�)�2�)�&�0�$�0�'�5�.�-�5�$�1�)�.�'�)�)�-�3��*�1�%�=�1�#�8�.�/�+�-�6�%�#�9�#�6�2�4�$�/�+�,�*�&�,�0�+�6�'�4�+�(�6�/�/�2�1�1�)�.�5���$�+�?�*�,�"��)�5�&�/�/�(�+�4�+�%�:�'�(�2�2�:�.�3�.�7��%�7�$�#�/�5�:� �3�-�+�2�1�,�(�1�-��+�/�+�/�*�$�/�,��/�9�)�/�3�A�9�2�3�*�6�-�1�+�/�*��9�+�'�/�B�!�/�1�+�4�+�+�)�2�:�'�"�/�*�0�)�,�'�%�4�+�"�*�3�/�!�,�-�-�7�*�)�1�%�)�"�4�,�2�9�/�"�4�0�%��&�"�,�+�+�4�+�)�/�6�8�+�/�1�-�1�$�4�:�7�/�5��.�)�3�0�(�&�&�-�:�7�/�3�3�=�+�7�+�/�4�+�+�(�)�3�.�'�1�.�6�.�#�8�*�/�6�3�0�D�3�2�7�(�Ԁـڀր��Հ׀ՀڀĀ׀ՀՀـՀՀր׀ՀҀۀ׀ـׁ(�#�;�3�:�7�3�-�?�,�1�0�1�/�<�,�'�,�.�.�5�3�'�#�B�)�!�*�)�3�2�4�7�4�'�8�&� �,�-�*�6�$�)�5�(�'�.�8�6�"�-�/�*�)�7�'�9�$�-�-�+�1�5�-�*�5�0�&�+�(�)�"�#��&�-�,�)�4�4�+��-�.�4�/�4�(��(�0�5�/�#�5�6�2�)�.�3�)�)�$�'��(�.�*�<�,�%�3�-�1��8�)�5�)�6��(�-�'�+�-�*�9�(�6�3�)�-�0�#�"�5�-�4�2�+�,�.�4�$�/�'�/�0�(�7�-�)�-�'��(�'�,�B�6�+�0�+�6�3�%�/�(�!�/�'�(�+�&�*�$�'�.�>�(�-�0�/�6�,�!�+�)�)�,�)�1�/�(�+�-�'�.�+��1�2�8�,�0�&�3�"�%� �%�-�5�(�,�;�/�(�,�5�#�(�%��&�+�)�#�*�3�/�/�%�*�2�7�+�)�&�/�*�0�*�/�)�'�,�%�7�2�(�9�(���$�4�/�/�#�6�'�*�,�)�'�(�1��'�/� �9�&�2�-�%�5�2�8�.�)��0�-�>�*�5�8�9�(�-�.�3��7�)�4�%�0�$�-�#�3�.�4�4�3�(�,�-�(� �3�&�-�3�<��#�3�%�/�8�7�%��)�1�7�'�2�'�*�,�"�*�!�.�/�+�(�)�#�4�%�.��.�'�%�+�$�+�*�$�!�.��7�1�1��)�!�'�(�)�-�)��.�'�%�+�)�7�;�-�'�6�(�+�,�-�&�%�'�7�-�.�$�*�/�-�6�0��.�&�)�-�5�1�1�4�$�0�*�4�-�$�5�(�'�(�-�)�3�7�*�*�1�8�/�.�*�%�/�-�,�+�#�(�1�#�=�+�.�#�4�0� �"�"�*�+�.�1�,�8�0�8�8�(�/�,�/�$�4�/�,�-�*��(�7�5�/�3�.�$�,�!�,�,�'�3��3�#�0�,�/�$�'�'�0�3�-�&�&�+�*�.�/�%�)�0�'�+�%�/�-�*�)�/�(�1�4�݀ۀՀр܀؀րۀӀŀрӀԀЀՀԀـ׀؀ـԀ׀րف7�+�%�:��%�)�3�.�/�(�+�6�7�)�%�0�!�-�3�(�+�3�,�7�'�&�+�*�0�(�)�.�.�.�3�<�2�/�7�/�/�1�-�-�'�&�&�3�&��'�'�/�,�,�%�7�(�#�)�=�0�7�0�/�-�#�-�/�+�'�'��)�1�+�7�=�*�'�*�C�*�/�/�+�*� �:�/�3�&�)�&�/�1�'�+�/��.�,�+�3�>�+�(�=�-�,�,�2�0�)�/�.�0��4�0�1�$�,�+�.�&�.�3�$�/�7�.��3�/�#�'�,�0�/�#�1�3�4�0�>�8�%�)�/�/�!��%�.�&�)�3�&�%�-�*�*�4�#�0�/�&�2�!�7�)�%� �4��/�.�#�%�)�*�(�8�7�0�4�3�>�*�8�4�=�=�1�-�2�,�6��0�1�7�7�*�3�6�.�.�*�'�-�+�3�+�1�5�(�/�%�*�/�/�,�#�+�5�#�8�3�*�9�,�)�8�.�%�)�(�5�>�#�*�5�2�$�1� �/�.�+�*�/�6�,�4�(�+�,��+�,�1�$��+�!�*�$�4�'�-�)�(�,�3�3�*�$�-�(�,�-�+�5�:� �+�+�.�/�(�0�)�.�,�1�,�!�2�0�*�/�'�0�)�4�*�"�3�3�-�*�!�*� �1�4��6�3�%�*�/�+�-�B�8�+��4�,�,�%�$�-�3�%�(�9�,�7�.�4�.�.�3�%�#�%�$�A�-�/�&�4�'�)�!�1�#�+�'�-�)�(�*�/�6�*�#�5�0�6�1�*�,�-�&�.�+�3�/�6�&�7�)�*�)�3�1�/�6�&�+�?�-�-�+�*�2��8�*�,�(�3�'�*�7�/�$�/�+�'�)�:�2�,�;�#�/��#�+�,�3�8�'�+�&�6�4�2�&��9�(�5�2�2�%�#�4�/�#�7�'�.�)�1�$�%�,�%�/�-�,�-�'�'�"�)�-�4�3�+�9�:�-�6�0�+�<�)�0�9�/�1�#�&�9�&�=�'�<�%�=�.��5�4�1�0�/�>�:�$�"�$�4�2�.�5�:�<�0�(�1�)�5�׀Ԁ؀ԀӀ׀ԀրҀŀ׀ՀՀӀـր؀ՀӀڀ؀Հրҁ:�-�*�3�-�*�6�,�.�(�5�%�1�4�+�7��+�0�1�.�8�+�1�*�C���,�0�,�%�'�'�+�4�*�(�,�,�/�.�)�0�'�-�'�<�,�(�'�#�.�#�,�%�2�7�"�7�9�8�/�5�7�#�9� �2�"�,�-�2�'�$�7�3�,�/�1�6�1�9�5�1�)�+�*�(�3�/�0�6�)�'�*�3�,�2�.�"�6�0�&�'�1�0�/��9�0�.�)�1�/�1�)�3�*�6�'�5���+�.�4�0�*�&� �6�3�-�/�3�3�3�,�&�3�1�2�"�7�+�3�4�3�2�.�%�.�1�(�,��/�(�4�(�4�%�:�+�:�*�8�:�)�5�*�+�(�0�+�*�8�+�-�2��,�)�9�.�3�-�*�,�)�/�7�%�'� �/�+�,�-�-�7� �(�4�*�:�.�2�1��,�?�1�.�,�(�6�9�F�+�"�-�,�$�+�:�.�;�8�&�;�;�2�"�+�,�)�:��2�(�7�'�2�+�/�.�"�3�%�3�;�3�9�)�I�-�!�%�-�/�!�'�*�'�#�-�/�$�<�2�&�+�.�"�*�-�!�+�B�&�.�4�-�,��(�#��)�(�-�)��3�'�.�4�1�3�+�(��3�/�/�1�'�,�/�"�'�(�(�/�6�*�.�0�3� �%�0�-�,�*�1�0�%�1�"�'�+�/�*�+�)�%�*�.�5��*�5�3�/�1�7�2�/�5�(�B�-�(�,�%�0�3�9�,�3��'�,��9�1�:�/�-�4� �8�'�3�,�3�7�)�$�1�0�;�%�3�0�2�4�.�"�"�,�-�2�,�5�)�'�/�)�/�1�+�'�=�.�&�+�+�+�-� �/�2�%�*�#�#�6�%�'�'�+��*�+�(�7�'�%�)�(�4�3�&�=�+�1�+�,�2�0�-�1�1�*�9�0�)�0�2�'�3�-�/�)�,�)�,��+�-�&�;� �+�9�$�,�(�3�7�7�*�+�(�8�2�-�-�-�2�*�=�1�/�.�4�/�*�-�/�'�9�!�7�+�/�0�/�&�0�2�B�"�&�2�+�,�<�׀ۀՀՀҀ܀р؀ЀŀӀ݀ՀՀՀـڀۀڀր؀ԀԀ݁,�/�&�7�$�0�+�.�2�4�+�:�.�/�7�/�1�4�4�&�)�4�4�/�6�-�3�0�.�+�+�1�1�6�%�-�)�(�+�$�;�)�.�0�*�(�/�+�'�#�'�-�7�5�'�+�-�(�"�"�!�0�2�/�&�,�6�&�+�$�1�/�1��,�,�/�1�+��/�1�0�-��+�.�+�3��3�1�3�>�B�+�,�/�'�;�.�0�*�*�#�&�-�2�#�,� ���4�6�.�-�5�(�/�8�$�<�-�4�$�+�.�8�*�6�&�1�)�+�*�+�2�)�-�/�3�?�1�'�6�&�1�,�=�/�!�'�+�*�2�/�+�)�)�2�,�/�5�%�1��:�(�'�)�(�2�'�3��3�,�3�/�*�0�,��,�&�!�0�0�+�-�,�8�+�/�4�'�5�,�$�%�6�+�4�+�%�!�)�8�/� �&�+�*�4�.�7�#�*�+�)�$�*�%�3�)�/�0�/�/�$�3�%�,�3��2�/�#�#�)�0�4�+�"�'�0��2�&�)�<�:�(�;�4�(�.�'�5�4�6�(�+�4�)�5�*�-�%�'�*�7�)�5�)�!�$�(�2�(��4�"�5�*�8�"�,�"�+�2�3�*�/�/�.�-�5�*�4�%�+�$�:�+�6�2�2�/�#�,�&�&�-�&�2�1�"�'�%�+�-�:�"�.�*�&��'�)�,�/�#�1�(�8�'� �-�0�)�.�8�*�-�1�&�/��/�5�,�0� �3�'�-�4�4�)�7�/�-� �'�#�-�:�,�(�'�,�/�*�/�,�&�5�'�)�3�'�*��!�6�,�%�-�,��/�&�)�7�*�+�0�(� �"�/�&�3�.�"�)�4�*�<�1�#�2�/�.�&�(�-�6�&�(�/�'�/�&�.�@�4�%�1��8�0�,�&�'�-�!�#�-�(��5�2�*�)�8�%�+�.�-�.�"�1�0�;�)��.�#�4�6�/�/�)�/�-�1�*�4�*��4�-�1�6�*�(�'�'�-�0�5�1�0�(�7�&�/�(�)��,�.�7�.�-�0�=�%�+�,�+�6�4�4�$�<�;�-�4�ր׀׀ـӀրۀـӀĀրۀ؀Հր׀׀؀ـ׀ڀՀـՁ8�+�+�-�(�)�>�&�7�+�:�,�2�9�;�1�-�8�0�,�5�6�.�#�2�5�7�1�4�6�-�2�9�'�/�<�-�+�#�2�.�.�2�,�-�/�#�1�+�-�)�-�1�8�(�)�5�/�-�5�+�3�0�(�%�.�#�*�)�(�>�*�4�#�)�(�1�.�:�>�/�4�)�-�7�+�)�"�/�2�$�#�3�,�#�-�(��5�/�/��6�2�*�'�5�$�'�.�*��%�(�(�/�+��(�3�?�)�+�$�-�7�*�/�.��0�.�B�-�+��'�:�5�8�'�0�2�.�1�4�0�*�3�/�(�+�'�$�-�&�,�)�.�/�.�8�0�)�1�*�0�9�#�%�3�0�-�$�1�#�=�'�.�$��6�3�%�1�#�*�*�-�.�)�-�/�1�8�4�+�#�(��%�7�7�#�#�/�)�1�+�0�)�)�-�-�,�3�0�)�9�)�2�4�&�"�5�'�8�3�&�*�1�-�'�/�;�/�)�$�+�(�*�&�+�(�*�9�&�+�0�,�3�,�8�-�(�.�8�/�/�!�8�)�+�,�8�3�3�/�1�)�%�7�/�-�2�0�8�4�)�;�,�$�0�<�-�'�'�/�3�(�(�.�+�(�.�4�-�+�*�)�2�+�'�/��"�'�-�+�*�,�E�*�%�2�*�8�*�%�$�!�5�#�*�C�4�5�'��%�+�&�'�'�)�2�$�)�4�9�(�4�3�(�0�-�5�$�1�'�+�-�(�3��!�(�4�!�,�/�3�2�5�'�'�'�-�.�#�*�+�;�(�3�:�5�-�)�"�/�3�-�%�7�!�)�2�2�'�)�*�"�$�+�&�8�<�2�/�,�"�0�1�5�1�3�2�4�'�'�6�,�,�3�-�'�(�)� �+�2�*�1�7�0�0�.��-�+�+�5�;�-�-�+�3�-�"�&�,�9�*�(�3�;�,� �+�*�0�1�%�5�0�-�&�2�!�5�0��.�0�3�+�<�"�+�.�-�*�3�2��&�0�+�5�!�/�*�)�/�,�+�0�6�:�%�/�$�,�*�2�)�3��%�-�)�:�<�3�-�8�)�1�%�.�,�ր׀؀ր׀؀ԀԀҀĀՀր؀׀Ҁ׀ـ؀Ԁ؀؀Հ؀ف*�7�0�0�5�'�,�5�-�0�0�*�/�3�3�'�5�(�*�+�,�+�6�0�1�1�2�)�0�,�5�6�1�*�.�(�)�7�$�/�6�.�3�0�5�L�%�4�3�-�1�!�6�)�7�*�,�+�)�7�7�#�2�(�-�2�.�"�2�-�.�(�/�-�(�5�-�"�-�'�3�#�)�$�5�:�5�9�-�,�#�#�*�3�*�<�6�"�.�1�3�/�.�/�1�,�2�)�.�*�#�$�+�.�,�4�3�/�'�/�'� �"�+��"�0�!�1�'�)�!�!�(�%�%�)�5�+�1�,�.�.�0�(�)�,�0�'�/��(�<�,�2�/�"�"�/�!�!�1�6�*�0�,�2�0�,�7�3�2�5�'�.�+�-�+�&�'�5�$�,�2�7�2�5�"�3�1�-�,�)�3�(�5� �1�2�%�-�/�,�/�6�%�0�3�2�$�.�#�3��6�&�:�#�-�3�+�*�.�)�,�)�/�C�?�'�$�.�(��%�,�/�6�1�0�5�>�%�/�(�5�2�"�#�.�1�6�'�+�A�-�3�+�/�$�.�(�0�-�$�7�-�+�'�/�/�(�&�&�"�>�/�$�)�?�*�/�*�.�'�!�'�,�5�'�.�3�/�*�*�.�(�&�.�'�,�-�7�(�,�5�1�2�7�0�2�8�&�(�%�+�'�3�6�4�/�,�*�#�&�&�5�2�&�7�$�1�1�*�0�+�.�1�%�%�2�!�0�+�/�,�&�2�7�*�.�(�.�5�!�'�6�-�&�,��)�;�*�(�,�-�(�7�,�5�"�(�&�(�.�,�.�-�-�7�5�0�'�5�7�8�6�)�2�%�3�A�+�%�.� �(�)�-�6�&�$�-�#�'�0�/�9�'�.�)�;�3�+�+��/�1�$�*�,�;�4�!�)�,�'�)�*�0�1�;�/�)�%��;�.�2�3�)�7�!�+�-�,�&�(�%�/�+�3�0�)�#�0��'�(�%�!�6�2�4�*�-� �:�*�%�>�%�5�.�(�!�-�(�1�5�(�+�2�A�-�8�:�*�/�&�)�.�7�)�=�(�,�+�:�H�,�5�.�3�-�-�3�*�0�2�8�ҀՀӀՀــ܀ڀҀÀӀۀ؀ۀӀՀր؀׀ـ؀ӀЀځ/�/�4�,�,�.�5�$�5�2�(�;�9�/�,�'�'�0�&�)�,�,�)�+�&�/�/�#�0�,�*�=�6�,�(�9��6�1�1�6�%�'�+��+�%�'�/�*�/�,�)�,�+�)�/�/�1�5�)�)�5� �+�%�0�$�0�5�4�$��.�)�%�(�)�=�#�/�.�,�-�&�/�$�(�1�,�;�%�+�(�<��0�5�&�*�4�*�-�+�?�&�*�+�5�/�*��$�0�+�7�'�*�,�4�*��&�,�=�5�1�%�.�/�)�*�2�1�.�)�/�/�/�#�,�3�)�-�(�#�2�'�3�,�!�#�2�3�*�1�/�.�+�0�.��!�+�1�$�5�+�%�6�0�;�2�-�+�'�*�&�-�3�,�3�+�%�(�0�.�*�6�.�)�)�&�0�'�#�&�*�+�1�4�-�'�&�$�4�6�0�%�+�0�*�/�$�/�)�0�)�1��#�,�&�)�0�2�"�"�6�(�*�!�4�-�)�-�-�@�6�.�2�$�%�5�+�(�.�1�+�*�(�)�#�,�-�!�'�C�$�4�4�0�/�.�/�(�2�C�+�(�!�1�,�+�,�*�6�)�0�'�;��-�.�0�6�,��.�)�(�+�6�.�0�0�2�"�*�1�4�1�?�)�.�/�-�1�.�%�0�(�%�5�6�,�-�6� �$�)�,��7�3�F�3�%�*�1�2�/�0�-�4�5�1�#�,�0�7�2�)�-�6�'�'�*�+�/�/�%�3�-�3�%�*�%�(�2�4�3�/�&�"�;�)�4�/�-�(��%�*�0�3�.�)�)��"�-��.�.�0�#�"�/�/�+��4�(�+�6�)�/�,�$�-�%��1�&�/�+�6�.�-�)�.�+�'�'�)�(�*�4�.�6�+�'�*�+�'�=�%�,�%�(�2�(�+�1�/�(�%��0�+�1�.�(�/�#�+�0�1�%�5�0�)�/� �5�3�3�$�)�&�/�-�-�)�-�*��0�.�*�1�8�7�&��)�4�0�1�>�%�-�3�+�A�-�9�=�1�'�.�%�1�-�-�4�/�1�+�'�-�.�6�+�9�2�1�'�3�4�+�րπ׀׀ڀՀҀـր̀րՀӀ܀΀րՀՀԀڀԀՀ׀с#�;�=�'�9�4�%�1�*�0�5�'�+�-�/�*�1�2�1�#�9�4�2�/�-�.�/�1�*�+�0�+�6�"�&�.�/�-�*�.�&�*�+�"�6�$�(�'�/�%�1�3�8�'�4�7�%�'�&�#�/�"�5�6�3�(�*�3�8�*�+�7�(�(�;�.�*�$�)�'�-�%��+�2�/�6�?�,�/�(�3��7�'�9�%�;�0�6�!��8�'�#�3�+�'�0�,�.�%�/�#�&�.�"�/�(�*�)�,�,�,�'�)�1�2�3�.�*�0�)�,�+�,�,�%�&�'�,�2�%�*�*�1�+�.�/�.�#�3�,�0�,�9�?�/�0�'�1�?�"�8�(�/�&�'�+��2�+�(�+��*�.�:�)�9�/�&�,�7�2�(�3�=�6�+�*�1�!�*�.�+�%�#�'�/�'�*�!�0�:�0�)��&�*�!�0�"�-�"�&�+�.���+�=�4�.�*�+�1�)�/�'��4�+�,�+�;�)�.�.�,�!�2�=�#�%�%�$�4�+�&�/�/�+�#�#�1�4�!�(�:��4�.�+�3�'�.�"�"�3�!�#�(�.�,�)�.�-�(�*�#�1��=��0�1�&�&�1�0�4�&�5�/�-�5�1�0�%�2�+�5�2�7�+�7�*�.�-�8�!�(�*�+�#�*�$�.�#�+�2�/�0�:�?�9�5� �,�<�2�%�,�4�/��1�"�(�'�6�;�8�.�)�+�+� �,�9�-�-�+�C�.�(�/�$�8�4�3�+�=� �,�/��*�7�/�)�7�1�.�"�+�*�(�-�3�+�5�,�*��0�)�1�,�&�'�*�!�.�'�&�%�,� �7�:�/�.�8�)�%�%�6�0�(�&�0�6�-�2�0�/�,�)�(�*�2�-�&�/�0�.�(�5�&�-��6�1�&�)�7�+�(�"�.�4�3�=�/�9�&�3�)�<�)�.�)�3�6�/�&�(�(�!�7�+�.�.�+�$�6�6�1�/�%�!�/�1�D�$�(�'�3�&�9�.�+�$�/�5�*�6�)�*�-�4�)�*�(�2�3�)�#�7�2�.�%�;�,��+�1�7�0�;�ԀրՀ׀ۀրـӀ؀ǀـڀހՀ׀؀׀ЀՀҀڀՀրց �!�'�1�*�2�7�"�/�.�5�-�2�"�!�*�7�!�+�'�'�0�/�A�,�*�(�1�)�/�;�;�2�/�#�/�.�5�C�2�(�/�/�3�2�3�,�3�<�2�1� �(�.�,�3�3�(�/�(�-��-�7�'�/�'��.�*�5�*�&�2�(�0�.�/�.�+�*��3�)�"�D��1��(�.�$�:�-�1��4��7�)�!�+�1�,�)�&�/�"�'�"�+�$�&�4��*�4�3�"�"�(�%�=�+�9�1�1�5�"�+�1�/�+�0�1�0�%�-�1�(�#�2�-�4�B�4�+�'�4�4�*�#�"�)�&�.�$�1�;�.�0�3� �-�.�.�!�4�.�3�%�)�)�(�8�(�)�.�3�/�$�8�8�'�#��3�6�%�(�)�5�"�!�-�&�*�3�)�5�/�*�0�&� �)�'�&�2�(�%�*�!�.��0�5�"�$�'�;�5� ���)�-�/�'�(�B�5�,�-�/�2�'�'�2�!�/�0�0�!�.��,�*�/�+�.�,�3�9�0�3�&��.�'�-�,� �"�+�-�2�,�-�/�*�"�*�.�/�&�*�*��+�*�.�-� �.�0�:�-�0�+�+�4�+�&�<�1�)�2�'�#�'�/�+�4�0�4�6�,�2�#�$�$�%�/�0�*�0�6�3�,�$�0�+�$�0�6�)�-�(�)�/�.�.� �(�/�-�5�-�(�9�9�5�3��(�=�1�2�F�&�&�6�.�+�/�3�+��1�1�3�2�+�5�$�%�.�)�(�!�,�;�/�-�+�(�!�0�6�"�!�-�5�-�,�-�$�!�.�1�(�)�&�2�*�)�2�*�'�)�1�/�!�#�*�5�+�4�/�*�(�2�*�/�7�:�3�*�2�*�$�*�(�'�*�$�(�)�"�'�5�*�)�-�0�'�-�9�/�+�3�#�0�-�'�4�%�0�1�:�3�!�"�*�0�3�.�,�(�&��)�#�%�.�5�*�5�0�(�/�,�!�9�/�"�7�-�.�5�3�+�6�8�.�(�,�/�'�0�/�.�&�=�&�-�6�1�,�2�1�>�;�:�1�*�1�(�"�/�0�ր׀܀ۀՀ؀ـ��ҀɀրԀԀ؀Հـ؀ՀӀրՀڀՀԁ:�-�.�6�0�+�5�3�7�+�/�/�+�+�2�/�&�1�7�6�.�(�/�6�@�7�4�*�.�7�3�+�0�1�,�9�3�#�/�8�1�'�,�*�-��4�-�&�)�1�*�<�'�*�#�'��5�)�-�3�,�2�-�-�&�7�,�0�)�2�-�9�1�(�2�5�5�4�/�.�8�+�0�$�)�*�,� �:�4�)�-�)�#�2�+�0�.�(�7�+�4�"�0�7�0�/�+�/�)�"�"�%�.�,�&�,�,��+�+�1�3�6�0�&�"�'�0��'�0��,�1�(�.�*��2�7�1�#�4�7�9�(�/�1�,�$�,�/�1�4�-�"�5�9�/�'�1�-�.�'�0�%�0�#��/�+�,�,�4�6�)�4�*�4�#�)���$�-�1�%�*�#�+� �-�/�.�)��)�*�+�&�1�(�-�&�,�&�*�+�,�>�(�'�.�8�.�&�2�*�#�+�/�%�+�,�1�2��&�$�)�,�0�*�)�,�)�+�-�)�#�<�-��$�'�,�%�7�!�%�,��0��A�#�;�4�2�)��-�*�:�#�,�5�)�8�.�+�$�2�/�3�-�+�)�,�6�0�?�)�.�3�-�,�-�0�1�4�-�.�,�*�"�,��.�&�&�-�)�'�4�$�,�.�*�$�1�+�,�'�'�?�/�7�/�,�(�+�1�,�5�-�(��6�,�+�.�#�6�1�1�(�4�+�0�1�:�+�,�0�/�/�&�#�!�'�#�!�/�,�5�)�.�.�0�&�.�"�)�.�;�0�3�)�9�1�.�/�)�/�3�)�)�%�(�%�/�/�+�*�,�3�4�+�1�.�+�8�,�4�9�'�/�*�-�-�,�,�.�.�.�'�,�#�9�5�:�/�-��7�(�$�3�'�%�)�/�+�(�0�-�&�'�7�0��*�-�6�1�;�.�*�/�3�%�'�5�.�)�3�(�-�6�2�0�)�.�7�2�8�(�*�'�.�=�-�1�8�4�5�(�$�"�(�/�)�-�3�>�4�:�+�(�2�5�'�)�/�*�)�/�;�9�5�/�7��-�7�=�1�)�+�;�-��&�4�*�;�'�1�؀րրڀ΀Ҁ׀ӀՀ̀׀ڀ׀׀׀ՀҀԀ׀ҀրՀـہ5�-�)�.�+�#�2�-�0�-�0�'�6�%�*�!�/�7�(�+�'�)�!�'�0�.�3�;�3�.�-�6�$�2�-�-�)�*�/�'�/�-�2�%�/� �)��0�(�<�6�7�-�.�-�-�+�7�4�/�-�+�0�)�1�*�A�0�1�7�>�7�.�+�"�'�(�1�)�1�#�4�1�1�1�0�"�0�+�3�;�,�*�-�$�.�@�;�,�=�+�3��%�9�%�9�&�2�1�1�0�:�$�-��'�-�+�1�$�&� �+�3�0�#�$�+�-�1�-�/�/� �3�"�7�$�+�#�-�3�&�-�:�"�+�;�.�0�'�)�1�%�"�'�4�.�2�+�)�0�;�5�"��,�*�.�0�5�#�*�"�>�(�"��.�0�'�2�-�'�+�3�"�3�*�-�"�7�'�/�1�.��#�+�1�3�)�-�2�!�+�)�*�3�!�'�,�%�&�*��:�/�>�3�%�&�,�*�,�%�'�0�/�(�+�-�0�;�*�1�'�*�*�*�%�&�/�5�3�)�+�/�2�4�.�7�4�+�&�-�$�&�+�-�5��)�1�&�!�-�0�'�-��=�1�=�4��*�5�8�-�2��6�*�!�)�<�'�-��;�,�0�/�*�4�+�2�8�-�'�(�6�&�2�7�/�,�)�/�1�*�$�2�$�&�%�)��#�/�)�/�'�+�/�-�)�&�+�6�1�4�&�0�-�/�,�/�7�"�(� �4�+�'�&�+�#�-�/�0��-�%�,�/�!��)�-��-�;�6�3�:�*�*�,�#�8�<�(�&�.�?�-�-�9�-�%�6�-�,�5�*�.�!�(�#�2�'�-�1�2�/�2�,�*�6�-�1�,�9�1�.�0�9�&�2�#� �2�%�&�'�/�2��+�#�$�.�)�$�8�1�$�1�%�*�*� �)�(�>�(�!�)�4�)�3�4� �&�5�'�$�5�(�'�6�.�'�'�)�-�-�2�%�+� �)�4�*�/�'�%�'�(�)�3�7�)�+�'�"�)�1�'�7�%�6�A�.�)�#�%�1� �7�*� �*�-�*�5�(�)�/�1�#�2�&�!�0�4�*�'�Հ׀ـӀ׀րՀҀՀʀԀրӀ܀Ҁ׀׀ՀрՀҀրـ܁2�6�-�1�2�-�%�/�'�=�7�+�'�8�$�)�4�9�*�'�%�+�3�,�,��2�7�9�.��+�"�/�5�"�7�1�2�$�*�0�?�1�0�0�&�/�'�7�$�4�2�3��=�2�5�'�3�5�$�9�4�+� �7�-�)�%�:�-�-�5�9�>�%�/��5�7�1�#�-�$�.�*�:�/�.�!�$�.�+�/�)�3�0�&�4�.�)�(�#�3�7�'�0�'�1�7�&��1�0�%�3�+�&�0�&�2�-�0�0�&�&�'�0�+�;�%�/�6�*�/�/�2�#�+�&��%�"�+�-�#�*�'�1�/�$�;�#�2�5�$�/��0�!�/�1�,�.�/�1�7�%�#�,�(�"�@�%�.�+�6�2�(�,�#�/�/�+�-�:�3�'��,�.�-�6�+��'�*�7�1�)�'� �0�0�8�'�&�-�2�;�)�7�%�#�3�3��+�#�.�7�)�0�)�*�5�#��$�(� ��/�*�#�'�(�-�5�%�C�*�+�:�.�&�-�5�/�8�5�$�.�$�,�3�)�9�8�&�*�!�)�+�'�8�&�-�$�4�2�&�*�2�-�-�*�*�"�/�2�0�-�/�/�-�*�1�*�:�,�$�0�*�,�+�,�'�'�-�-�2�8�%�#�-�$�0�,�&�2�&�7�0�,�(�)��-�/�)�3�+�-�-�'�8�1�&�.�#�.�&�&�B�6�-���'�,�'�-�$�6�9�,�+�&�(�&�/�-�)�.�2�A�!�#�"�1�(�/�)�.�#�-�0�*�$�&�7�,�(�&�+�4�(�"�)�)�(�*�0�6�-�'�&�0�:�)�!�1�3�'�*�8�-�-�+�*�/�8�9�,�4�2�5�#�&�0�/�%�)�.�,�+�2�2�.�*�*�%�"�&�,�#�)��(�"�6�4�1��&�1�+�5�6�(�,�#�!�%�+�-�(�;�)�/�:�,�$�:�'�&�2�/�2�/�/�'�,�*�-�2�.�4�6�+�+�6�&�&�.�-�*�7��,�%��%��%�'�;��0�8�7�6�.�-�.�6�$�2�*�-�1��6�0�'�=�*�/�7�,�ۀ׀׀؀ڀՀՀӀ؀��ՀЀӀԀҀր׀րـ׀ـրրہ/�4�B�7�4�4�6�7�/�/�(�=�%�7�4�:�9�=�*�6�7�.�'�/�A�'�+�'�0�6�3�,�'�(�5�5�+�(�.�A�2�"�=�4�&�B�+�%�5�/�(�2�,�.�(�/�(�4�7�4� �-�0�-�3�/�>�3�3�0�'�+�0�,�*�&�+�,�/�,�9�,�5�<�%�.�0�.�-�'�1�/�"�0�1�,�'�0�2�5�*�9�5�+�=�6�+�$�%�?�3� �2�3�2�*�-�0�+�+�/�$�5�4�2�,�.�+�,�@�*�$��.�5�&��2�9�,�'�5�)�,�&� �,�-�1�+�0�-�%�+�0�)�*�.�,�-�6�)�%�)�"�/�)�+�.�%� �'�$�$�"�2�)�2�6�0�)�;�$�*�-�)�3�'� �.�)�3�$�)� �+�"�(�5�2�3�"�#�3�+�;�-�)�/�'�$�2�+�-�:�4�%�*��)�+�"�#�/�-�)�0�4�0�"�2�:�&�1�5�#�$�&�$��$�.�/�0�3�/��!�)��)�5�(�/�.�+�=�)�1�,�A�&�/�,�1�'�$�7�*�:�*�/�/�1�2�0�#�.�4�$�(�*�/�$�*�&�5�+�.�2�6�-�6�-�7�+�-�-�9�0�(�/�)�/�/�%�%�*�5�+�)�&�2�(�+�2�*�6�*�6�*�/��/�%�&�*�'�+�+�%�-�3�7�(�(�)�+�1�.�+�2�*�%�+�$�*�-�&�-�+�1�'�3�(�:�$�6�0�(�0�.�6�$�3�$�8�-�.�6�1�9�<�,�+�)�)�/��/�"�)�;�)�*�"�8�1�#�)�$�1��)�+�-�$�'�*�+�-�2�-��)�/�0�'�2�<�+�.�/��3��9�;�0�"�:�+�(� �+�*�)�,�9�)�+�(�1�'�(�)�*�+�/�*�2�1�+�-�-�&�#�*�-�0� �,�7�(�,�.�2�(�<�&�0�.�0�5�+�%�+�,�,�-�B�/�,�1�9�3�)�,�,�.�(�4�$�+�(�)�1�&�2�2�,�)�2�5�?�.�.�8�.�,�,�7�*�,�*�0�0�!�2�"�0�-�ҀӀրӀ׀׀րրـɀ׀ۀԀՀ׀ҀՀЀҀՀҀӀ؀ԁ+��#�.�2�%��(�9�/�7�1�+�&�-�/�0�,�(�-�0�6�7�8�&�4�4�/�%�4�,�:�$�&�/�/�1�&�=�4�7�#�3�1�3�1�0�0�,�.�7�8�+�-�$�1�/�!�0�,�<�*�)�"�2�1�)�+�(�&�4�-�)�4�9�)�9�(�5�*��(�+�%�+�/�<�-�+�9�0�2�0��2�0�$�:�.�1�1�+�/�)�!�)�*�!�,�$�-�%�2�+�/�$�.�2�?�/�3�5�'�#�5�5�+�&�4�0�*�&�7�+�-�.�'�1�5�/�5�5�'�;�)�(�)�4�1�)�+�#�,�%�?�+�)�3�0�*�+�,�)�-�(�3�/�%�0�8�,���"�'�3�/�+�/�$�%�'��$�'�#�(�/�"�-�-�6�!�/��1�,�%�:�0�*�+�&�*�-�-�0�*�$�"�*�&�1�5�-�4�6�+�!�.�/�)�/�0� �&�#�3�3�.�/�,��3�/�(�0�:�0��,�2�.�&�'�0�2�3�2�'�/�"�4�1�7�1�+�*�-�2�1�/�:�2�/�1�0�-�/�,�%�3��5�4�.�8�/�.�8�!�)�4�*�(�&�(�2�"�2�+�.�?�8�!�*�1�/�+�4�6�/�%�#�1�1�0�0�)�.�+�&�*�+�7�4�1�1�4�4�&�%�4�,�,�*�.�E�+�(�.��/�-�)�*��,�%�/�4�:�%�.�%�6�%��1�/�.�'�-�2�6�,�)�5�!�-�%�1�'�-�.�+�*�0�(�'�5�/�+�-�(�)�&��*�0�3�>�+�;�)�(�'�3�,�(�*�+�#��)�/�'�&�-�.�2�1�0�,�&�.�1�-��3�/�'�5�/�#�"�*�%�*�7�&�$�/�;�$�5�,�+�,�*�.�/�/�)�8�(�2�$�'�(�)�1�<��#�/�,�0�7�(�0�0�&�&�-�4�/�/�.�)�3�,�4�4�-�5�5� �.� �*�)�6�>�(�9�4�/�$�-�%�)�4�,�,�(�2�1�.�:�,�(�7�+�5�D�2�+�-�4��9�/�8�+�.�7�*�.�,�)�5�րҀր׀ـрـӀՀŀրӀ؀ԀӀ݀؀рրӀӀ؀Հց4�4�1�2�;�&�2�2�5�<�'�1�/�3��/�'�!�7�3�.�/�1�-�,�&�(�1��=�:�,�.�0�6�(�;�!�-�;�/�&�.�4�-�&�)�7�4�#�*�+�'�&�1�,�1�*�'�:�)�&�#�&�"�)�(�4�0�5�:�'�'�4�)�-�-�5�)�5�0�)�(�0�=�%�/�+�0�,�*�"�1�?�1�1�)�<�)�9�0�)�%�-�)�6�9��/�/�3�6�+�1�*�-�0��*�'�=�,�1�1�,�:�.� �/�+�(�(�&�1��)�+�8�*�,�8�.�3�3�(�&�/��'�!�,�$�$�3�+�8�,�#�,�,�#�(�*�'�&��&�-�-�2�*�4�)�/�*�$�/�5�'�-�1�7�2�/�=��(�,�,�&�-�$�#�)�7�&�/�+�/�+�5�-�#�&�(�$�&�)�.�.�2�"�=�0�+�/�4�2�+�3�%�)�4�+�+�2�)�/�&�3�#�#� �%�*�E�1�;�-�.�1�+�7� �(�*�'�8�8�)�-�'�4�<��-�.�3�&��/�4�#�4�8�:�)�'�=�4�,�/�/�3�+�*�3�-�)�-�/�1�"�0�-�,�(�.�)�$�"�6�'�3�2�(�#�1�3�)�3�'�-����,�'�-�$�4��3�*�"�2�&�,�(�-�,�5�1�&�7�%�-�7�4�/�&�$�1�.�)�2�/�:�+�,�&�+�1� �5�%�7�(�(�,�/�3�,�(��/�(�!�/�2�*�%�)�,�4�,�0�1�5�1�)�.��$�/�4� �7�>�&�'�2�.�3��(�$�%�/�!�0�-�1�)�"�1�*�,�#� �"�2�+�1�(� �'�.�/�&�-�2�7�/�-�3�$�C�+��4�6�1�#�-�)�,�3�"�'�6�(��-�,�.�(�9�3�0�.�&�+� �0�/�-�6�%�5�%�-�5�0�(�'�7�3�(�,�-�*�/��B�-�,�.�!�2�3��0�/�3�)�-�)�5�*�3�,�5�2�.�1�.�/�5�.�*�(�.�,�4�.�0�6�2�7�,�5�/�'�*�/�5�9�1�9�6�9�ՀۀـՀـЀӀՀ׀��ۀЀ؀؀Ҁ؀Ӏ׀Հ؀ՀӀրс,�5�1�;�3�7�1�'�.�2�.�+�5�+�,�+�2��/�%�'�3�2�?�(�6�'�'�*�D�/�)�/�)�-�-�5�&�0�<�4�0�4�+�6�7��4�,�0�-�0�*�%�3�"�,�(�-�0�-�-�!�-�1�1�(�.�2�#�0�)�2�#�>�/��$�/�3�)�+�3�2�/�-�!�1�-�@�*�"�%�/�-�,�!�*�*�'�'�)�&�#�*�3�(�,�+�0�&�,�+� �*�-�(�/�3�&� �,�5�6�)�/�1�5�2�9�'�#�+�'�1�&�-�&�.�'�+�.�/�3�+�(�1�"�(�)�1��'�2�4�%�/�%�5�(��+�4�,��6�3�.�/�&�*�:�(�.�"�0�#�7�%�7�5�%�/�'�)�'�.�,�-�)�,��&�$�9�)�(�*�/�%�)�.�(�+�,�1�G�+�%�'�+�(�/�#�)�5�+�,�7�6�.�+�.�*�(�)�)�"�0�,�7�.�2�1�,�0�0�-�+�'�,�,�2�-�)�&�3�4�#�1�.�,�)�4�.�+�/�$�-�"�(�4�-����,�+�/�*�5�4�7�.�,�%�%�+�=�1�/�,�'�+�1�9�1�/�#�,�*�.�(�,��/�*�8�'�/�/�*�1�&�*�5�)�%�*�+�+�$��;�:� �0�0�/�(�/�'�'�#�'�*�8�,�3�2�!�'�-�1�/�"�;�)�6�*� �+��/�0�/�'�!�3�,�/�7�-�'�+�0�-�.�)�+�*�.�4�.�1�#��&�0�$�&�5�*�+�&�6�%�1�+�8�0�/�5�+�1�'�#�4�1�-�1�-�*�'�.�-�!�-�*�0�&�/�$�/�,�8�5�(�)�.�+�6�,�(�&�*�'�2�$�5�)�"�5�$�&�-�-�.�/�"�-�'�-�&�+�.�,�$��=�/�*�4�1�0�.�,�1�&�,�(�)�'�,�3�2�"�%�+��7�2�9�$�&�0�0�2�(�3�0�7�&�:�4�1�-�)� �-�2�0�3�A�=�9�/�0�/�+�/�>�)�+�)�.�:�5�5�9�1�*�:�D�/�,�3�1�4�(�/�9�ԀӀрՀӀӀՀӀ׀ŀӀ؀π؀Հրـ؀ـҀрـրׁ2�-�5�,�1�"�1�5�"�&�4�!�=�6�,��1�6�)�$�)�;�0�,�2�1�0�6�1�A�0�/�.�(�/�;�4�$�9�0�/�.�'� �4�+�#�3�7�0�2�,�2�.�+�4�>�3�+�1�+�)��(�%�*�*�$�4�/�*�*�(��'�,�)�#�*�-�&�2�-�2�-�*�+�-�;�+�+�0�'��<�.�*�/�3�0�-�+�,�&�+�7�0� �*�.�#�(�#�8�8�-�&�4�,�+�&�&�-�&�(�@�*�0�-�*�6�6�.� ��7�*�1�,�#�)�3�.�/�,�;�/�-�#�1�*�&��!�#�(�*�0�%�)�#�3�/�1�,�4�8�/�2�.�4�7�-�9�#�'�4�.�3�-�2�/�-�/�+�8�6�-��#�$�(��4�$�!�6�+�2�%�1�.��+���(�#�$�(�*�(�4�3�-�*�(�%�5�0�%�1�0�8�1�,�+�3�&�+�*�3�)�)�2�'�,�'�3�(�9�&�9�;�2�)�'�+�+�%�4�/�.����)��-�'�(�-�"�&�1�)�4�*�"�$�3�$�0�,�4�2�+�8�2�,�7�'�(�5�$�,�'�;�*�4�&�)�-�(�)�'�0�7�,�*�/�&�.�6�)�*��.�+� ��3�%�7�+�&�6�2�(�7�5�/�,�.�+�/�1�*�+�9�;��"�+�)�&�-�<� �)�+�9�5�%�:�%��$�+�/�.�#�-�2�1�)�!�)�1�1�/�0�9�&�+�+�.�+�*�:�<� �7�4�/�,�'�3�+�&�$�4�#�.�2�(�0�)�/�0�.�"�'�'�&�)�"�(�/�2�/�)�)�/�/�*�-�$�)�7� �4�,�4�%�-�)�4�4�/�2�!�/�3�+�'�0�(�*�/�1�+�,�.�/�0�-�/�&�8�"�7�)�*�-�,�)�0�.�2�8�5�(�,�8�8�5�A�)�%�6�7�4�3�4�0�4�&�,�,�'�;�/�'�&�0�5�*�5�:�7��/�0�/��3�2�2�7�0�$�/�*�9�)�-�-�.�,�2�0�/�;�+�5�/�9�8�,�6�0�ڀـՀπՀ؀ڀ׀Ӏƀ׀Հ׀ـ׀Ӏр׀ڀـҀրՀف+�2�;�<�(�1�.�6�+�/�4�$�1�#�4�5�$�=�-�7�*�,�.�'�.�0�4�5�.�!�&�%�#�,�/�"�)�+�'�3�,�0�2�;�2�)�/�/�,�/�8�/�3�B�3�&�*�:�2�,�4�5�&�5��2�/�7�8�2�.�(�%�5�)�7�(�/�0�"�'�"�-�7�2�9�+�&�4�$�@�.��1�;�4�'�&�"�/�.�1�'�0�&�)�6�'�$�9�%�'�3��2�8�+�4�<�%�%�%�2�1�9�5�2�$�-�'�0�1�$�+�+�0�(�+�*�2�$�A�6�"�+�3�"�"�4�(�/�%�/�+�$�)�/�.�$�9�3�2�*�+�,�:�!�)�6�8�"�'�%�7��4�*�)�4�*�+�$� �%�'�.�-��2�9�&�(�(�(�*�$��!�7�0�4�2�7�)�'�2�.�3�(�"�/�/�$�:�9�4�(�9�)�1�6�.�&�&�/�-�'�2�5�=�(�#�*�/�5�*�1�/�+�,�-�5�/�#�5�&� �#�+�,�,�8�2�7�1�,�*�-�"�.�*�!�+�/�$�*�&�4�;�,�'�1�(�6�2�&�/�0�1�'�/�4�&��)�(�7� �8�/�)�'�3�0�0�!��/��+�9� �-�5�3�/�6�0�$�'� �!�,�)�+�*�)�%�2�-�)�)��!�"�%�-�+�1�<�2�(�2�4�-�%�5�,�+�(�5��0��;�1�,�9�3�2�-�0�#�"�/�3�#�,�/�-�4�-�,�"�.�2�"�+�-�3�&�+�9�*�-�,�0�!�5��1�&�6�,�'�*�/�/�.�#�(�7�(�/�-�)�0�2�4�/�"��*�&�/�-�3�)�*�/�!�3�8�:�3�6�(�)�A�)�!�*�2�$�#�/��+�#�'�'�0�%�,�&�0�+�&�,�*�&�.�$�'�.�/�$�*�)�5�<�(�5�-�0�*� �-�/�/�'�8�$�7�2�(�.�,�/�!�+�5�/�7�5�)� �+�3�/�/�)�#�.�+�-�,�;�.�5�)�%�*�/�,�3�4�/�'�'�,�0�+�1��#�A�'�/�*�2�2�ӀۀڀՀրրـ׀׀ȀҀՀրԀԀԀҀրــրЀՀց>�.�/�7�.�+�7�&�'�"�>�0�+�>�,�&�-�0�,�/�8�9�7�5�4�1�)�$�:�"�%�,�+�<�1�"�1�+�.�:�)�)�+�/�:�$�)�$�+�,�4�*�-�(�3�.�#�*�,�(�%�*�*�4�6�&�.�+�+� � �,�*�2�-�'�1�%�*�#�/�3�"�/�1�&�3�$�8�+�4�&�(�.�0�3�)�8�*�(�&�(�,�-�:�,�*�$�*�-�#�1�8�,�)�6�2�(�"�,�6�$�>�1�4�&�!�(�0�'�3��4�7�2�/�*�'�2�/�)�'�%�+�#�!�$�%�9�8��3�(�-�*�1�1�'�8�0�1�"�*�3�;�%�!�<��'�.�+�0�&�&� �5�4�+�#�:�-�.�5�6�/�1�4�0�3�!�2�%�4�:�8�%�5�"�/�&�#�1�4�#�+�(�+�(�'�2�&�0�0��(�,�'�,�*�,�8�4�1�:�4�-�&�8�0�/� �1�,�+�&� �2�:��/�$�$�'�'�*�2�+�(�-�/�/�2�"�#�3�6�&�(�2��2�&�2�1�/�3�-�#�5�+�(�*�-�=�,�-�+�&�0�*�/�+�/�,�2�5�&�;�$�;�%�,�-�(�-�#��4�%�2�4�-�2�/�(� �'�,�+�-�5�1�1�-�0�"�-�$�*�,�1�*�(�(�/�3�4�/�9�9�5�$�-�,�,�.�7�'�,�#�1�,� �(�%�-�5�)�+�%��6�?�(�5�*�)�0�)��0�.�-�)�.�2�)�/��&�:�2�*�-�-�"��'�*�,�#�/�!�6�+�)�+�1�5�,�%�(��=�$�)�4�3�'�2�,�.��'�(�?�)�.�5�4��/�'�(��.�9�)�)�?�/�1�0�2�.�/�5�0�+�)�9�)�)�$�3�0�"�'�7�*�4�.�'� �(�8�*�-�+�-��#�*�2�*�/�)�+�"�0�&�.�0�4�"�5�8�'�)�)�-�.�-�-�3�)�5�#�?�$� �,�5�!�4�3�5�%�+�/�#�$�/�;�%�5�'�%�:�#�3�6��0�/�,�-�6�C�%�&�ـ׀׀ՀՀЀՀԀ׀ȀڀـԀր؀ـՀ؀р؀ـ׀Ѐց-�(�1�0�7�7�7�.�/�9�%�4�9�:�1�0�5�*�=�7��4�5�9�-�+�%�3�&�(�1�+�&��4�2�&��D�2�(�2��� �5�!�.�4�4�)�-�#�/�'�+�+�,�-�1�1�+�2�6�=�+�*�3�)�2�/�)�)�/�4�*�+�2�+��;�+�$�;��.�2�)�$�1�,�7�9�5�-��%�+�2�'�*�6�'�/�3� �#�4�7�-�9�%�*�)�!�(�#�3�+�-�-�$�8�2�+�+�*�6�-�$�#��$�$�4�*�5�'�0�.�'�+��3�+��6�0�4��,�0�/�(�+�&�)�$�2�+�+�*�#�)�/�'�(�/�� �-� �-�5�2�+�)�2�(�)�4�#�+�.�,�/�(�/�,��1�,�(�+�3�'�/�+�.�+�4�4�/�&�+�3�"�)�&�2�6�"�+�+�*�'�$�'�4�9�#�;��/�$�-�'�*�0�+�/�*�!�+�4�5�.�/�#�(�#�)�+�8�5�4�,�-�4�%�4�-�$�(�;� �*�#�)�-�.�.�:�"�.�2�+�!�-�/�5�3�%�5��(�,�-�6�(�6�'�'�-��.�1�%�+�3�+�.�'�/�&�"�&�*�'�.�)�7�-�#�%�/�6�2�$�/�2�2��'�(�2�1�0�*�-�-��3�(�5�+� �/�,�.�-�+�1�8�%�4�(�!�=�3�+�-� �'�'�*�/�-�/��.�$�3�)�-�&�*�/�3�%�&�"�0�)�'�7�4�0�/�5��5�4�1�-�$�4�:�-�4�-��3�3�#�,�0�4�4�@�;�.�'�.�/�1�-�%�'�,�;�+�/�2�%�%�+� �+�$�0�!�.�4�-�(�$�&�.�2�&� ��,�:�0�3�!�*�.�1�2�$�&�=�"�#�,�)�,�)�7�&�-�4�8�4�5��5��0�)�4�.�%�<�#�1�9�)�#�,�#�-�&�+�3�9�-�+�(�+�6�*�(�5�/�*�3�*�3�-�*�'�6�)�!�+�)�&�'�B�2�<�4�,�/�-�9�+� �6��1�3�?�)�4�+�1�3�׀ـ׀ҀՀӀڀրրȀ׀ՀԀ׀؀ڀҀـ؀߀׀ـҀҁ<�%�5�*�/�*�)�9�,�(�6�;�)�(�4�7�'�>�0�)�0�'�!�1�)�'�$�)�5�-�2�1�.�+�-�"�/�/�*�<�2�.��+�3�3��*�'��.�8�0��)�:�3�5�2�+�/�)�<�)�-�/�7�(�.���*�@�(�0�0�4�0�%�5�*�,�7�(�,�/�4�/��*�*�/�1�&�&�(� �3�/��&�&�0�.�,�+�)�1�*�2�'�*�)�.��(��%�1�6�&�1�+�/�!�&�.�!�9�5�#��'�/�'�+�*�-�+�0�-�(�-�'�/�.�$�7�%�'�0�*��7�-�-�1�2�:��/�$�#�-�2�+� �/�(�2�/�-�2�+�(�?�0�/�9�*�)�+�+�"�)�3�.�0�*��+�)�9�)�4�.�&�'�6�/�0�-�5�0�1�4�&�6�*�-�)�.�8�4�"�0�2�&�*�1�9�;�+�%�2�-�-�,�1�2�&�/�)�(�,�+�9�$�:�)�.�-�/�*�,�(�.�&�-�3�/�.�7�)�,��5�2�*�,�$�9�*�.�/�5�,���)�,�!�(�-�,�*�(�9�3�3�*�6�.�%�7�2��2�$�'�-�4�,�,�'�+���9�:�(�0�+�,�)�:�7�/�-�!�/�,�"�(�.�#�,�,�7��1�+�+�.�6�8�.�&�&�.�8�/� �,�7��%�2�,�0�1��5�(�*�$�-�7��>�6�2�&�6�+�/�-�/�$�2�8�*�'�)�4�)�%�1�+�'�4�)�<�3�*�*�/�.�3�!�5�/�&��,�*�&��*�'�-�3�'�1�'�4�*�,�+�5�;�&��)�$�%�2�)�+�&�.�-�%�/�4�-�(�/�!�#�'�$�(�-�,�.�,�5�2�,�@�1�)�-�.�5�9�2�'�.�-�0�3�1�#�+�%�0�1�0�:�(�+�-�-�-�-�+�.��*�/�&�"�'�/�,�,�*�=�+�'�$�/�G�1�'�/�4�-�)�6�+�(�2�4�+�-�6�-�+�-�9�3�*�.�4�5�)�4�9�0�(�*�5�+�:�,�3�3�.�7�Ӏ׀ҀӀԀۀ׀ӀۀȀՀҀԀր׀ԀրӀӀԀՀـ׀ځ7�5�*�.�=�"�%�1�#�.�&�,�%�-�-�6�4�+�-�B�,�0�:��-�+�3�0�+�'�(�#�-��=�%�4�(�2�/�1�2�7�,�1�4�5��'�8�9�-�3�4�9�*�*�%�1�/�&�)�*�/�.�5�)�3�4�/�%�/�.�-�+�&�7�(�.�,�+�,�1�1�#�%�-�1�7�+�*�,�3�%�+� �$��$�=�-�-�4�$�%�)�'�A��,�5�2�4�0�%�*�)�2�/�:�%�$�$�/�'�,�'�'�(�(�+�-�,�!�"�4�(�)�9�-�%�*�/�5�2�+�/�*�+�/��)�0�,�$�+�(�'�1�/�/�0�9�+�*�9�'�(�-�1�2�.�*�0�4�1�(�-��+�9�)�+�+�&�'�/�/�1�*�5�1�%�8�+�;�.�!�7�1�%�1�/�)�9�,�'�1�(�,�(�1�1�#�&�/�!�/�+�#�;�/�+�/�1�8�%�2�/�-��,�'�+�$�-�%�)�4�*�0�?�,�)�*�1�/�+�%��5�)��"�,�#�'�-�7�.��<�.�,�+�#�<�$�0�&�)�-�.�(�*�.�4�7�&�/�0�5�*�8�$�$�+�/�&� �8�/�3�5�0�/�*�6�(�1�/�#�-�)�0�2�3�4�2�(�/�-�/�#�,�,�4�'�,�%�,��+�'�,�&�.�-�6�4�-�&�0�/�#�.�:�!�#�(�-�4�(�(�,�/�)�%�)�1�/�,�>�*�'�!�&�/��)�2�<�/�*�(�4�#�-�,�&�-�1�3�!�*� �!�%�:�&�%�(�+�,�8�)�,�%�0�0�'�9�(�8�/�3�,�.�)�,�2�+�7�/�8��9�%�)�0�"�0�0�+�9�1�0�'�-�'�1�2�.�'�7�(�+�$�'�+�1�/�0�(�0�-�.�"�,�1�*�,�,�%�;�$� �-�#�%�/��.�$�<�$�4�;�&�,��.�$�+�<�,�/�.�9�$�!�'�;�%�0�+�/�.�,�+�&�9�1�(�)�5� �4�7�,�*�/�,�1�3�0�4�0�2�3�7�5�&�9�*�-�8�(�,�1�0�'�ـՀԀڀـ؀܀Հـɀ؀׀؀ـ׀ӀڀـӀҀрӀ׀ց4�+�9�2�5�/�,�(�2�+�(�'�/�7�+�"�3�#�*�6�;�.�$�)�7�/�&�5�5�5�<�"��1�4�9�<�3�&�"� �"�.�6�-�'�2�.�*�.�'�:�>�*�.�8�)�(�-�,�3�-�(�8�/�&�-�;�5�0�=�1�(�,�/�.�(�*�*��/�1�%�3�/�'�7�-�2��3�#��5�,�2�*�.�,�A�7�0�4�2�'�*�#�2�8�2�5�6�)�1�&�&�(�3�7�/�4��7�%�3�-�%�/�*��)�'�&�$�,�%�*�,�)�9�4�(�&�&�,�"�&�$�0�6�,�*�-�6�2�#�5�'�#�(�,��-�2�(�+�0�5�1�/� �/�*��2�,�,�3�0�(�.�3�0��1�/�/�(�/�+�-�)�!��2�4�3�,�/� �-�"�'�/�$�*�)��$�.�3�%�,��6�-�0�'�(�<��$�(� �6�5�%�*�*�'�/�(�,�,�8�-�%�)�1�#�)�.�2�(�)�1�/�+�8�"�&�)�7���*�;�0�&�$�1�/�/�3�.�$�.�"�*�0�1�+�:�-�0�1� �#�2�5�3�2�/��%�4�>�0�;�2�/�0�/�1�(�;�!�1�*�$�-�-�)�'�.�,��/�(�'�4�$�%�(�&�.��+�"�(�0�-�,�-�'�+�$�/�5�,�1�7�)�'�2�2�.�#�0�*�3�=�&�6�#�4�:�(�'�:�+�2�/�*�+�4�'�+�+�!�&�.�'�.�.�,�&�-�7�-�1�.�,�,�$�*�7�-�&�.�.�%�� �+�/�(�3�*�)�.�5�0�%�5�3�A�%�,�;�0�0�/�3�0�%�,�/�*�$�3�/�2��#�,�/�2�-�3�#�*�3�$�/�/�#�8�&�+�!�,�5�(�.�(��.��+�)�&�3��1��"�+�*�!�/�+�,�#�*�4�%�#�)�/�4�5�/�'�-�*�#�,�4�*�8�(� �+�1�"�3�'�)�.�8�7�0�/�*�+�,�'�/�-�1�1�/�/�1�*�9�)�2�!�+�'�(�-�"�+�6�3�7�.�/�)�րрՀ׀ԀڀـԀـ��؀ԀۀԀـ؀ـ؀ՀҀրրԀׁ:�7�1�&�@�'�8�/�7�7�*�+�,�$�1�#�3�1�)�7�-�4�(�=�,�3�/�8�6�.�+�'�(�-�&�4�,�2�%�%�$�4��+��&�.�(�&�%�6�/��)�0�?�*�?�,�%�4�*�A�9�-�2�#�0�5�)�7�#�:��"�(�2�1�9�3�/�1�!�/�1�.�'�1�2�1�7� �6�)�*�0�5�-�.�/�1�6�>�.�.�(�$�-�1�:�(�/�:�1�3�8�1��*�(�2�$�1�0�,� �3�-�(�7�4� �4�2�=�"�'�!�;�&�+�#�2�*�#� �8�*�1�/��9�&�!�$��"�*�(�:�(�*�8�)�-��&�5�� �$�=�+�+�(�)�!�4�,�-�<�+��)�2��"�%�-�/�#�-�/�5�!�'���"�-�2�0�1�(�2�6�(�3�,�/�)�.�1�+�$�-�$�2�*�5�2�1�.�/�5�6�-�.�2�)�-�"�(�:�)�.�(�,�)�'�(�*�+�%�%�8��3�/�!�=�2�4�-�3�+�'�)�1�#�'�.�*�:�)��4�1�/��$�)�'�$�<�!�3�7�>�"�)�/�*�%�:� �1�&�/�-�'�1�(�-�,�3�)�0�#�&�/�)�0�+�'�,�-�(�)�,�5�1�(�.�1�+�&�,�0�+�5�$�8�*� �3�.�0�,�!�$�%�1�-�$�3�)�#�'�'�#�5�"�'�"�.�,�8�)�3�2�5�5�+�>�.�-�%�"�7�3�,�*�4�6�5�+�)�+�'�!�0�$�0�)�-�+�&�(�*�'�0�+�<�,�(��/�0�$�!�(�$�&�!�)�'�9�4�'�/�4�7�.�+��&�-�)�0�0�-�(�+�1�8�%�/�/�.�,�/�(�0�0�,�/�"�6�7�7�,�,�%�;�.�(�.�)�1�$�*�)�+�2�*�-�+�)�,��2�,�9�0�%�+�8�.�+��7�1�'�*�3�1�,�3�(�7�0�%�,�8�)�1�)�3�'�-�,�1��,�)�0�?�8�-�0�4�/�-�0�1�/�'�0�4�5�+�(��/�3�.�4�2�)�&�@�ԀӀـԀπۀӀۀӀĀӀրـՀՀ׀׀؀ӀҀԀ׀Հց,�/�5�1�3��%�1�(�%�0�+�"�3�2�6�-�*�6�*�'�(��2�)�1�-�)�2�*�(�.�4�6�#�+�*�-�,�.�-�#�0�0�#�$�=�2�/�+�4�)�4�(�%�.�-�=�)�-�+�.�.�*�-�0�*�(�1�-�4�/�7�6�,�0�7�/�+�3�*�5�"�+�/�$� �$�.�>�*�%�6�+�4�%�(�1�)�2�+�'�'�/�!��"�.�=�"�.�2�!�%�1�/�6�&�<�3�'�3�+�6�2�4�'�3�&�&�+��)�"�1�&�'�1�*��'�%�-�4�1�2�,�6�2�5�7�=�3�&�6�5�)�$��/�/�#�(�)�2�,�&�-�<�*�$�+��.��1�"�*�-�/�'�"�*�7�4�%�,�2�+�;�(�&��-�/�/�.�*�(�0�/�+�(�8�%�&�(�.�=��*�@�'�/�/��,�*�;�,�-�.�2�6�"�1�*�*�)�(�%� ��!�7�/�!�+�2�!�.�.�#�1�5�)�2��%�=�*�0�-�,�&�)�(�!�3�)�+�*�'�'�1�*�&� �0�9�/�2�1�5�&�%�2�-�1�)�#�5�'�/�4�*�'�+�7�-�3�/�1�:�,�&�+�@�3�+�/�3�2�1�1�0�*�'�/�+�)�4�5�$���(�,�-�+�+�'�/�0�"�6�!�,�4��#�.�-�#�@�1�3�1�"�)�;�8�/�-�4�2�9�)�/�,�&�&�-�!��6�.�%�/�/�>�0��(�/�0�%�6�.�(��'�4�(�-�1�#�8�6�0�(��&�&�*�$�4�*�!�%�%�&�"�/�0�1�.�(�+�,�(�&�A�$�6�#�.�(�(�$�"�7�+�1�,�0�'��4�'�2�:�3�4�/�-��1�+�)�6�*�*�-�-�1�/�.�+�&�)�0�9�'�+�*�/�-�-�(�'�4�3�/�5�,�1�1�%�&�&�,�+�1�-�>�7�(�3��!�!�.�-�/�2�/�#�)�.�1�%�#�@�'�-�)�?�.�,�,�.�+��)�/�-�(�!�-�)�+�0�6�,�+� �8�7�,�2�'�Հ؀׀рՀπր׀ԀƀҀҀӀ׀ր׀ր׀؀Հ׀р׀ف7�4�1�.�*�/�/�!�+�!��:�/�"�%�(�+�"�&�7�*�1�+�4�7�)�0�,�(�&�4�&�'�9�3�,�7�1�*�-�2�*�6�.�8�2�5�/��<��!�$�2�*�&��*�3�<�+�8�*�/�,�-�;�&�!�&�B�(�*�-�5� �+�(�9�1�*�2�5�$�+�'�/�+�*�3�3�3� �/�B�� �3�1��'�,�/��(�8�+�"�2��3�#�/�(�+�4�*�+�1�)�,��0�)�/�)�3�C�0�*�*�/�&�<�&�/�2�!�1�5�#�5�&�6�-�$�4�6�*�&�/�/�.�&��&�/��*�&�(�3�/�)�(�+�1�+�8��(�-�&�&�4�$�,�&�=�*�8�!�3�)�2�+�;�0�=�:�7�$�.�/�+�-�5�0�+�.�.�1�,�.�,�0� �)�2�.�+�D�'�1�&�0�5�)�3�1�/�6�7�,�/�-�,�#�,�/�0�-�-�1�1�)�*�2�$�<��)�4�$�3�$�7�3�'�2�'�)�.�5�.��(�(�4�%�)�-�&�.�-��=�1�,�=�(�*�;�,�2�"�'�;� �1�/�3� �8�5�*�5�/�6�4�'�'�:��0�,�-�'�+� �/�1�'�!�$�#�9�-�/�&�7�*�2�(�1�.�%�+�-�+�.�'�0�'�;�)�8�"�)�1�3�"�*�3�(�(�4�"�4�(�/�/�(�+�&�5�1�2�/�1�.�5�1�.�$�(�#�<�%�+�4�$�%�$�)�7�.�=�2�&�"�(�*�.�3�%�*�/�7�)�&�#�.�5�(�9�#�)�9�*�/�&�$�.�"�7�*�0�*�&�.�*�,�(�6�+�+�*�2�4�8�"�5�/�)�)�,�-�'�%�-�0�(�,�.�(�(�6� �#�0�+�5�2�:�3�-�)�0�*�+�*�'�0�3�7�"�*�)�'�*�-�&�'�.�)�'�3�5�,�5�+�3�-�/�(�4�%�)�/�!�!�$�0��/�1�0�&�J��,�2�,�3�9�9� �!�)�/�<�5�3�-�0�,�*�9�*�-�(�.�4�(�+�*�$�)�2�/�+�рրՀԀҀۀ؀؀րǀЀԀրԀ׀ـ܀ԀԀڀրՀ؀ց�3��3�%�<�+�/�2�1�'�)�2�.�8�'�6�"�1�+�-�*�1�3�3�4�+�+�-�1�.�%�>�+�&�/�+�3�#�8�,� �!�,�#�+�'�)�%�-�2�(�9�1�*�*�*�!�5�"�%�*�-�/�,�'�3�*�-�0�(�,�-�,�2�'�.�*�9�;�/�"�/�-�5�'�'�)�(�8�2�;�,�,�)�-�;��-�'�9�/�'�&�'�$�+�3�4�'�3�3�)�'�.�6�0�7�(�-�1�+�,�7�%�/�(�,�1� �*�#�&�"�(��)�%�'�4�%�!�-�0�.�*�'�-�)�,�3�'�+�2�.�"�!�0�4�3�,�$�,��-���%�:�!�*�,�+�)�2�*�-�,�%�9�(�H� �$�$�1�,�.�.�-�'�/�)�8�.�'�2�2�%��&�#�8�*�3�.�*�2�'�(�4�/�.�9�$�&�7�!�1�=�'�7�(�'�1�1�&�+�#�2�7�"��9�-�(�.�-�3�6�:�/�/�+�:�"�5�.�(�6�,�)�+�2�*�2�#�-�!�#�1�&�3�5�,�'�,�$�(�#�+�+�+�+�!�2�,�5�*�,�'�3�1�!�.�,� �%�*�<�,��<�.�,�3�3�)�+�1�-�*�)�$�-�$�3�'�-�:�(�,�8�.�/�%�+�1�%�&�(�3�,�%�+�8�-�2�'�%�#�-�0�)�4�#�&�.�*�/�1�3�"�'�*�,�*�#�0�6�2�2��$�#�.�-�'�3�9�0�8�0�)�/�&�(�3�:�2�9�&�/�-�9�4�3�)�9�$�/�(�*�$�2�4�8�.�'��(�.�1�)�)�*�2�%�'�5�:�6�.�3�1�.�/�1�2�2�.�&�+�3�(�!�6�)�7�2�0�%�2�5�6�7�.�/�)�.�,�)��;�,�.�-�/�+�&�0�-�%�.�-�9�5�3�1�0�,�1�,�<�#�8�-�3�3�"�)�2�/�(�&�+�1�)�8�*�)�'�*�2�4�5�,�,�/�6�"�%�(�+�+�0�9�%�2�,�2�.�+�;�9�$�3�0�+�(�7�*�+�(�1�1�2�5�6�0� �0�׀׀ր׀րրԀـՀʀրրրՀ؀ـՀҀـӀ׀ӀـӁ0�-�%�.�!�3�1�,�,�6�1�+�2�8�+�/�%�+�3�'�&�+�0�:�+�1�1�>�*�4�$�)�@�-�2�1�7�'�5�0�3�'�<�'�0�6�2�0�/�"�6�,�4�/�3�(�,�.�/�6�/�.�/�5�*�,�&�2�3�4�(�?�+�3��(�.�'�(�4�-�.�0�(�9�/�+�#�3�+�!�-�0�'�)�3�'�)�2�1�$�8�-�)�'�+�.�-�3�1�*�'�7�/�1�3��7�(�0�2�/�3�2�/�&�/�&�1�1�#�%�,�"�/�5�$�'�4�7���#�3�*�7�)�3�+�+��*�+�+�6�,�+�&�3�%�2�2�;�,�+�9�(�3�(�$�5�"�1�+�#�+�'� �-�'�,�-�(��-�+�#�,�)�)�%�-�*�'�+�(�,�2�-�/�1�-� �+�'�!�2�1�6�"�'�(�)�6�1�$�&��-�8�-�8�)�-�/�0�:�2�0�*�+�"�-�'�1�.�&�!�4�/�=�"� �2� �+��'�9�.�.�#�0�1�&�/�5�3��-�+�.�(�7�*�*�/�-�1�-�'�2�.�1�!�4�.�*�5�*�5�2�?�2�1�'�-�/�7��;�-�'�*�*�,�2�1�*�0��*�$�'�&��-�1�/�-�1�+�/�(�'�#�0�(�%�&�/�%�/�(�-�(�7�,�2�(�>�.�+�.�=�%�/�+�)�1�'�3��+�2�6��6�5�:�*�-�&�2�-�.�!�*�0�(�*�#�!�+�'��(�"�+� �)�-�/�/�$�%�*�)�/�5�7�2�%�3�'�2�/�4�,�'�+�#�1�"�'�(�)�-�-�(�:�+�-�$�*�*�3�3�'�(�4�*�)�!�3�'�2�4�0�)�5�(�2�.�#�.�"�?�-�'�"�/�!�7�%�$�.��.��9�'�)�.�1�(�&�)�,�)�0�3�(�,�(�'�1�*�6�!�2�2�1��5�$�9�3�2�.�>�.�"�%�%�7�,�7�,�0�)�-�9�/�1�(�3�3�.�0�3�3�5�2�(�'�'�*�,�7�/�/�)�3�)�,�/�*�5�9�%�0�րՀԀـ܀ՀـڀӀƀ؀ՀڀԀ׀ҀڀԀ܀րӀӀՀہ/�1�6�0�/�2�7�7�%�&�8�4�,�,�1�'��'�5�&�.�0�.�+�$�.�.�,�-�-�(�.�4�)�.�(�(�4�,�/�/�=��*�+�(�4�+�*�(�G�1�,�+�0�9�A�3�!�'�+�5�,�.�(�5�-�.�"�'�0�(�,�:�)�/�6�0�5�5�5� �5�-�0�.�1�%�6�/�5�)�*�)�4�0�'��.�'�%�+�/�:�0�#�-�1�;�*�!�+��=�-�2�-�+�/��4�,�'�.�,�(�/�2�5�'�(�/�4�&�&�&�#�#�;�4�%�*�8�'�3�%�5�(�&�,�!��(�1�8��0�9�&�-�$�.�*�.�/�)�*�*�3�0�#�9�1�6�>�0�0�(�"�3�/�/�-�4�,�/��3�"��A�1�,�.�"�-�2�5�"�4�/�&�1�+�&�,�9�)�&�!�.�2�9�/�'�%�*� �+�'�.�,�#�6�+�2�%�)�-�2�/�4�;�)�$�/�%�-�5�+�0�*�3�.�/�(�-�*�.�"�&�'�0�7�+�3�)�"�"�"�.�*�$�*�'�(�$�0�(�#�-�&�+� �-�%�5�7�*�,�.�+�5�,�3��6�%�/�6�(�/�3�0�6�3�9�4�5�2�'�5�.�)�=�&�+� �3�+�6�/�8�&�!�)�5�4�7�1�:�2�4�&�6�,�-�%�1�/�+�#�,�1�*�/�3�1�*�-�-�-�.�%�*�)�(�'�)�*�3�1�*�2�.�7�1�3�.�2�2��.�*��'�,�-�(�,�,�#�1�%�-�'�:�6�(�%�-�4��$�0�#�8�.�&�-�-�0�<��*�*�+�-�.�*�-�1�(�$�3�/�,�(�)�#�'�"�+�$�3�0�/�-�3�'�*�8�4�7�'�+�#�-�/�&�7�#�7�-�0�)�)�1�'�,�3�+�"��0��,�-�*�1�.�$�&�/�-��0�-�*���'�(�(�*�&�+�+�-�8�%�,�+�%�-�-�;�/�+�#�/�-�,�/�E�C�/�.�2�-�6�-�1�(��&�5�0�/�8�-�;�1�#�/�<�+�7�;�.�1�<�Հ׀րڀ׀ՀҀـ׀ʀՀـрր؀Ҁ܀܀րҀ׀׀րρ.�2�8�'�5�4�8�/�#�=�*�>�,�"��"�.�2�3�)�)�/�)�4�/�9�#�(�*�#�1�+�-�1�/�0�.�-�'�:�*�(�1�8�*�4�'�I�'�.�#�.�7�0�!�)�8�3�$�/�1�%�2�-�5�0�)�-�*�2�*�9�.�,�,�3�6�"�1�/�.�:�)�:�#�*�#�*�+�1�3�4�-�*�1�-�2�)�)�-�B�3�!�3�*�5�+�@�3�5��� �.�/�6�7�2�"�0�:�(�+�*�+�0�6�.�&�&�%�2�6�+�*�2�-�,�-�-�.�)�,��-�&�7�+�%�6�+�.�0�3�,�+�-��/��?�'�9�/�(�1�-�0�-�+�1�9�"�4�+�.�5�.�.�(�5�(�>��$�,�:�$�;�%��<�/�5�2�.�0�*�+�'� �/�'�$��&�'�8�.�%�/�&�'�9�0�3�,�&�#�(�0�-�/�+�(�1�=�.�'�1�0�.�3�8�#�5�&�6�1�0�;�+�0�'�,�'�4�*�;�)�5�0�/�#�/�+�'�6�1�-�*�3�)�)�"�&��2�*� �+�(�5�'�'�!�3�1�*�-�/�+�,�4�,�)�*�%�:�'�*�8�<�.�/�/�0�&�1��/�(�&�7�,�!�7�'�/�2�,�*��0�(�-�,��-��/�&�!��(�(��1�.�*�-�*�5�'�(�$�(�%�(�%�0�#�3�.�F�"�.�/�,�!�9�3�-�(�*��2�)�0�.�&�*� �6�-�)�.�,�+�2�1�(�3�(�&�%�"�-�,�,�,�)�.�2�3�5�3�-�8�3�"�6�/�1�2�#�/�/�*�7�)��3�1�+�9�"�;�$�#� �'�/�(�3�'�3�(�+�(�#�(�+�.�(�'�)�'�.�,�.�/�/�1�0�)�0�%�%�2�"� �-�2�+�1�,�/�%�4�(�+� �%�-�(� �.�+��3�)�$�;�-�&�3�,�6��5�1�2�7�2�.�+�4�&�(�1��+�$�5�9�)�)�7�*�&�*�+�2�%�-�,�)�-�2�'�)�)�4�7�9�'�<�.�*�3�9�׀Հր׀ӀπՀՀڀʀހπՀ̀؀ր܀؀Հ܀Հπрځ6�5�1�4�0�3��/�-�-�6�"�.�+�(�*�,�,�#�+�7�)�,�(�&�6�B�7�&�/�3�*�-�3�(�;�(�,�3�2�,�.�2�'�-�7�6�&�3�3��5�-�/�(�&�0�&�1�7�8�%�.�7�/��,�6�&�3�-�/�#�'�-�(�-�(�8�%�4�(�-�(�%�4�2�$���3�/�'�%�0�)�+�'�(�'�+�+�)�)�.�*�3�0�.�(�-�%�.�,�6�6�8��*�,�9�.�!�&�5�1�1�?�6�(�(�D�5�'�*�"�1�.�#�4�6�/��+�>�&�1�0�/�&�*�8�%�&�8�)�8�1�'�*�-�1�$�8�=�(�4�1�&�-��$�.��%�$�2�6�5�-�-�(�)�&�-�2�%�%�)�*�'�1�-�4�$�*�(�#�,�,�&�5�%�*�1�.�'� �+�)�9�0�,�.�(�)�&�D�,�(�0�+�%�+�'�5�%�&�,�+�$�:�'�1�&�/�,�9�'�+�&�$�.�*�4�)�@�3�.�>�#�0�(�"�-�/��6�.��&���(��)�-�1�!�0�,��!�&�%�-�0�9�$�"�1�,�$�&�2�0�.�3�/�&�.�=�1�'�<�+�/�.�3�2�(�(�3�!�<�4�0�/�"�)�*�8�6�/�)�0�+�)�+�1�.�"�/�!�0�0�)�)�'�-�*�)�/�1�>�*�*�.�/�%�$�-�9�*�*�(��9�4�)�,�1�2�7�;� ��4�0�3�!�2�?�0�/�#�7�!�0�&�4��!�)�-�.�)�-�3�/� �$�3�&�+�2��,�2�)�-�,�7�+�+�'�'�'�*�9�'�'�$��!�-�;�%�&�.�1�/�&�'��*�&�.�"�:�2�*�2�-�3�+�3�1�-��,� �2�*�.�"� �1�-�5�$�/�4� �#��7�$�(�/�2�/�*�"�)�7�(�&�+�/�+��3�,�/�0�&�3�+�/�+�1�'�0�+�.�-�+��.�.�-�&�8�&�2�+�.�,��;�'�0�)�5�*�/�#�1�D�7�,�+�.�3�6�-�)�0�0�0�3�΀рـڀ؀ۀ׀րҀĀҀրՀҀր݀ՀԀـ؀ՀـԀ؁7�.� �-�.�,�,�(�7�(�6�-�&�$�>�-�5�5�:�9�?�/�.�'�)�0�0�2�+�!�2� �5�1�4�9�%�+�.�*�>�/�)�.�;�#�0�,�#�*�.�(�2�5�2�'�+�,�6�2�1�&�*�/�+�%�2�.�/��#�$�(�@�0�+�&�-�3�+�'�#�)�.�5�1�6�#�4�,�"�,�-�-�)�.�6��.�:�+�9�%�0�*�*�'�,�3�3�*�1�7�#�&�'�1� �,�+�#�"�1�)�3�'�"�)�+��9�+�3�/�0�)�*� �#�2�,�*�4��1�.�%�/�4�5�,�)�2�.�(�1�;�-�-�:�$�9�&�)�-�2�/�%�*��2�0�$�&�(�)�3�(�/�'�'�*�0�;�6�-�/�3�&�/�#�(�*�(�!�0�4�?�/�(�$�+�#��5�+�1�!�/�+�?�3�,�+�2�8�5�7�*�4�0�.�:�'�'�,�:�,�)�4�%�,�,�(�/�/�-�(�(�+�*�4�*�#�6�$�)�-�9�;�5�4�+�%�-�7�0�/�1�*�7�)�'�'�$�-�0�&�+�,�-�'� �'� �(�/�/�$�.�6�.�/��6�/�&�+�;�8��(��2�"�;�*�$�/�5�)�"�,�$�1�%�/�'�3�,�9�%�8�*�#�1�(�)��0�(�;�5�%�+�2�,�!�'�2�/�*�/�&�1�4�*�)�3�#�%�-�$�)�8��"�)�3�2�+�5�&�*�.�*�+�"�*��3�2�"�0�5�+�*�3�7�0�(�3�)�!�-�4�,�7�'�(�(�2�#�'�)�4�)�-�(�,�)�!�3�,�,�+�7�0�+�%�-�6�)�,�+�?�1�(�.�/�7�.�+�2�:��$�$�*�.�-�8�#�&�/�+�(�2�)�5�1�-�7��2�&�/�(�6�:�3�6�0�%�-�:�$�$�!�-�-�.� �0�(�*�-�1�1�'�*�1�<�/�.�9�.�9�/�)�,�'�1�#��/�.�-�2�&�5�(�;�-�)�0�7�+�#�5�(�4�=�3�.�-�/�4�!�+�%�/�,�5�+�-�=�$�-�2�*�,�؀Հ׀ڀ׀̀ր׀րŀڀ؀Հ؀؀ڀ׀ԀڀրـހҀց9�8�1�&�)�/�9�-�)�9� �&�+�/�(�5�9�!��%�0�*�,�0�8�2�!�3�)�)�)�2�"�-�,�4�8�0�'�#�'�9�-�%��+� �6�(�0�8�,�+�%�,��)�3�2�5�*�+�2�(�*�2�$�"�4�4�&�1�?��)��+�3�8�1�:�)�5�1�.�;�.�2��2�'�2�.�A�,�3�2�3�5�-�3�-�0�7�5�&�%�-�*�/�6�#�A�=�%�5�(�.�'�1�+��1�&�7�-�.�+�1�1�1�/�#�0�2�&�'�*�3�/�-�/�'�/�-��1�)�$�A� �,�$�3�$�0�.�(�,�%�8�(�$� �%�&�'�2�)�-�-�-�+�#�)�"�$�7�#�4�)�(�$�-�(�1�#�2�+�+�5�"�(�%�'�.�7�$�'�*�0�/�,�-�;�5�+�-�+�%�+�&�'��0�-�.�!��.��/�<�-��4�'�0�&�+�6� �,�&�/�+�"�'�0�/�$�0��3�0�)�"�*�2�,�*�)�&�+�/�.�%�)��4�*�3�$�/�8�!�&�5�'�*�$�/�1�(�,�%�4�$�'�%�3��5�#�/�+�%�2�1�+�'�/�.�-�1�/�.�)�7�1�#�:�0�#�'�'�$�-�.�5�+�9�$�4�/�'�/�'�+�!�4�,�/�,�-�-��1�"��5�/�,�6�(�2�0�)�)�(�.�'�0�+�%�!�2�.�1�:�'�1��+�3�)�:�%�+�(�&�'�-�3�2�(�"�,�*�"�(�/��%�2�(�1�%�/�3��)�'�+�(�6�7�/�%�$�'�.�2�#�1�'�'�)�'�'�/�-�5�,�)�3�0�(�+�.�,�-�0�4�'�?�7�,�=�'�,�*�*�%�5�*�*�3�?�0�%�0�)�.�'�'�,�(�3�)�/�0�:�-�!�/�9�,�*�,�'�%�-�3�+�)�'�3�)�/�+�*�/�8�1�6�!�9�#�"�*�*�*�5�:�+��2�&�.�'�-�3�'�0�"�>�,�(�!�+�'�3�8�3�5�"�3�8�;�)�,�2�%�1�;�(�6�8�2�-�5�ۀπԀـ؀Ԁ׀݀ՀŀՀрր׀Ҁ؀؀ـր؀ԀҀҀځ"�+�(�0�2�(�4�4�/�-�.�5�-�/�#�/�9�*�)�,�.�:�/�,�'�,�/�7�,�'�)�-�/�6��*� �5�/�)�(�#�#�-�&�7�.�2� �*�$�4��,�)�B�-�:�&�6�-�-�%�0�/�.�+�1�$�,�-�%�6�:�=�7�2�0�0�.�$�!�0�-�-�#�/�-�2�,�#�6�-� �"�,�1�0�"�*�*�#�*�*�6�.�4�/�)�.�.�"�@�:�+�)�5�.�-�*�+�/�*�,�-�*�2�3�)�#�8��4�.�.�#�&�+�'�-�*�*�)�*�$�)�7�(�/�7�5�=�"�2�'�9�1�%�=�5�1�/�+�+�'�)�/�!� �+�3�.�)�!�-�$�.�,�#�(�4�1�+�1�,�)�5� �9�4�.��7��1�:�"�+�*�!�+�$�/�2�#�(�*�%�&�'�$�"�.�"�5�4�(�'�0�.�5�5�/�!�/�,�*�!�$�4�1�+�8�*�-�%�+�+�-�,�2� �)�0�+�9�,�5�"�0�*�'�.�+�'�,�'�#�-�%�2�6�$�%�%�<�,�?�*��.�$�6�&�1�$�/�$�.�)�$�+�1�)�-�2�(�/�1�&�,�+�(�$�%�+�3�.�(�+�.�/�-�&�1�/�9�6�?�6�2�!�5�2�'�.�6�(�&�9�0�*�3� �-�,�;�)�#�.�2�'�-�&�&�*�4�%�/� �+��0�3�;�+�*�,�+�,�'�/��;�3�9�)�2�3�3�'�/�.�#�&�7�"�)�#�-�%�,�&�6��&�0�7�(�/�&�+��/�6�/�-�=�'�.�,�)�,�(�5�$�4�#�)�/�+�(�*�0�<�1�%�$�8�%��%�-�+�#� �(�-�"�)�+�.�2�*�+�.���:�-� �&�5�(�7�)�5�)�*�,�,�.�-�1�5�3�2�5�0�+�%�&�/��/�3�/�1�/��.�9�:�6�8�*�A�;�,�(�)�'�3�,�.�,�*�+�5�+�)�#�9�$� �'�/�3�#�'�/�5�(�/�*�&�4�*�,�&�>�'�5�5�-�1�+�7�&�$�+�-�ӀҀ׀ՀԀ΀ـӀـ̀؀ڀӀрӀ׀؀؀؀ՀڀҀڀӁ �/�*�1�1�0�*�1�0�*�'�1�8�'�+�)�&�.�3�*�2�0�;�7�1��&�8�3�+�)�*�!�'�.�5�,�5�0�+�8�0�8�$�$�.�'�.�3�0�,�C�/�%�0�)�1�7�-�B� �5�+�#�9�4�+�-�.�6�-�*�)�4�.�%�,��.�/�5�(�1�1�2��'�(�0�#�=�2�(�'�+�2�8�$�#�/�/�%�)�!�/�!�&�$�2�.�,�(�4�3�&�+�$�(�/�,�1�2�1�"�1�*�,�3�5�'�&�%�*�/�,�!�6�=�&�3�!�+�+�.�(�1�5��(�/�%�(�*�6�$�(�;�,�6�'�!�*�,�/�.�$�4�1�.�)�2�(�.�3�0��+�4�%�'�,�2�*�1�4�/�,�-�+�0�3�&�7�5�-�1�!�5�+�*�$�,�6�-�2�,�$�.�)�8�&�)�,�/�0�+�/�)�%�*�2�-�+�1�0�+�1�0�1�'�1�)�6�&�'�4�*�7�)�7�1�'�2�*�1�1�'�+�+�.�1�+��3�$�<�+�$�,�,�.�*�3�(�2�1�7�%�#�3�1�.�-�/�+�!�0�-�+�(�/�'�$�2�:�$��.�/�0�1�'�,�!�.�(�+�8� �.� �*�0�.�-�7�.�$�,�.�'�#�/�.�0�)�0�)�'�,�$�%�/�!�-�7� �/�*�*�+�&��!�8�0�9�'�-�"�"�$�-�1�/�:�6�.�@�-�0�)�)�'�/�,�*�5�$�.�2�7�(�.�)�A�#��/�1�)�2�+�.�2�1�;�4�.�3� �,�)�%�/�2�7�(�/�+�,�/�8�(�/�6�*�=�%�2�&�#�)�4�,�1�.�2�$�5�;��=�)�/�-�'�(�+�.�-�;�)�)�-�/�)�0�*�$�;�.�/�2�7�1�#�9�/�3�.�&�*�-�/�%�,�5�+�/�(�.�)�;�/�-�'�%�-�.�%�0�4�(�+�#��(�0�/�1�$�)�1�#�.�3�9�(�8�%�7�+�3�"�8�,�3�0�7�8�+�/�6�0�5�*�'�-�-�)�*�'�,�.�3�8�-�:�8�+�'�؀րۀ׀׀ր؀ـڀƀր׀Հ؀؀׀ր܀؀ՀӀ׀ۀځ5�.�+�1�3�-�.�.�=�%�,�2�%�"�8�6�7�/�)�(�5�-�2�%�'�*�1�5�1�"�;�,�1�-�3�+�6�9�!�(�(�'�%�.�1�3�*�-�8�&�,�5�/�"�'�-�/�0�,�3�2�.�8�)�(�0�1�(�/�9�9�)�.�.�$�1�(�%�-�!�(�$�0�'�)�;�0�$� �-�)�%�.�C�1�'�0�.�&�1�,�&�/�-�;�4�?�2�7�)�-�3�)�,�%�:�(�2�)�;���$�+�0�.�5�.�-�#�+�!�+�3� ��/�-�%�/�'�'�/�$�+�6�$�&�5�)�F�+�$�'�+�3�1�*�#�0��,��0�*�&��-�$�'�*�.�'�(�0�*�*�2�2�2�4�.�,�'�-�)�7�3�2�.�-�-�%�3�6�%�:� �!�%�,�/�&�5�(�*�&�&�'�(�*�'��)�4�7�-�"�1�"�1� �4�(�1�!�0�1�0�.�#�/�9�(�+�#�-�(�=�+�(�$��1�'�&�6�4��&�-�,�5�<�&�%�'�1�/�3�%�*�2�7�*�/�1�2�+�7�&�%�*�A�2�0�'��0�#�)�"�)��0�+�%�*�6�5�7�2�(��<��4�)�)�<�)�/�%�5�5�)�*�.�'�6�0�.�#�'�4�8�1�,�(�,�3�/�B�'�=�.�A�.�5�$�,�)�*�"�-�2�&�0�.� �"�-�-�/�<�&��&�&�$�,�#�5�1�-�&��.�'�+�-�&��(�)�5�+�,�)�&�-�(�"�&�,�/�1�)�/�'�-� �3�.�+�.�/�%�(�4�1�(�$�>�;�4�%�&�7�7�.�-�-�/�(�6�&�(�5�?�'�(�+�7�*�5�6�+�#�6�(�4�*�/�-�2�*�+�6�0�8�1�5�7�1�.�0�G�$�0�-�7�4�(�+�*�.�5�6�,�'�3�%��*�$�%�.�%�/���0�*�*�*�)�!�6�7�9�$�)�0�#�4�*�/�)�1�(�&�*�2�/�0�*�4�)�/�%�'�:��#�+�#�,�+�0�8�/�0�1�4�2�<�2�7�A�3�#�Ҁ׀݀׀րՀրڀ׀€ڀ׀րրԀՀ؀ՀԀ׀ԀӀ܀ց0�3�.�/�+�1�0�*�4�/�6�3�7�'�.�-�0�$�>�/�'�+�1�+�%�%�4�)��2�5�8�4�2�'�1�-�0�,�)�7�2�-�6�-�;�/�#�%�,�.�9�'�5�$�(�)�*�4�)�'�:�7�,�1�*�"�0�-�4�.�)�(�(�9�4�7�$�.�0�)�/�-�%��-�"�#�5�3�,�.�-�6�-�8�'�.�(�'�0�6�3�/�1�*�0�1�=�/�1�'�+�)�.�-�$�#�)��.�1�+�-�*�+�/�%�*�/�%�-�*�+�2�)�'�(�1�"�(�#�$�.�+�"�%�0�-�,�7�'�#�8�'�6�)�-�!�,�)�%�1�"��'�.�-�3��5�-�.�(�/�(�!��7�)�&�+�$�+�-�2�#�;�&�.�-�'�.��.�-�-�'�'�-�*�1�)�.�,�3�/�$�=�/�4�(�5�*��*�+�)�6�%� �9�)�=�.�,�(�-�2�0��.�+�+�(�2� �(�+�-�,�6��+�&�(�+�*�,� �,�+�%�0�-�/�'�1�-�2�#�3�/�#�,�+�'�,�.�/�#�5�3�*�(�'�-�3�.�'�#�8�2�)�+�/�-�,�-�'�3�(�3�5�4�-�(�+�2�(�$�.�,�)�.�,�$�3�6�.�7�2�0�,�/�*�1�.�$�/�/�6�&�'�0�3�$�6��7�&�/��(��4�2�5�(�!�8�6� �%�5�,�8�0�-�?�$�*�.�-�2�1�-�)�2�%�9�+�4�.��2�*�,�#�1�,�*�/�-�(�+�(�/��3�"�&�/�<�!�)�%�+�4�.�-�.�*�&�&� ��9�$�/�!�/�(�&�,�6�+�'�*�>�+�4�3�7�2�"�+�7�,�0�&�.�"�(�3�)�*�&�5�.�&�5�-�(�%�%�*�:�.��0�?�#�(�1�9�5�-�'�*�/�6�+�*�:�2�-�;�B�#�-�7�*�:�5�-�2�.�%��9�*�)�:�/�+�7�;�)�7��7�3�5�,�,�*�5�'�.�"�5�3�+�-�&�*�/�2�1�7�.�;�6�+�1�-�9�"�4�(�9�׀Ԁ׀Ԁــ؀Հـƀـ׀׀׀Ԁڀр؀ڀրـՀԀׁ+��$�:�(�>�&�/�3�/�)�9�0�/�6�2�%�+�;�,�'�8�)�%�-�-�'�/�1�+�6�,�$�%�)� �3�-�4�'�&�9�&�(�9�0�.�2�=�1�-�-��'�6�+�>�0�(�'�+� �&�-�1�:�7�1�(�'��1�&�1�.�+�,�8�,�-�'�-�7�%�2�!�'�-�/�;�,�$�*�*�.�+�.�0�)��+�'�-�6�3��(�)�-�2�&�/�/�&�0�2�3��(�#�*�4�"�A�2�&�5�(�-�1�3�)�:�5���4�5�#�&�+�!�"�%�2�*��0�"�-�4�3�.�2�#�2��+��&�!�'�%�+�#�,�)�)�6�*�+�'�4�,�*�5�%�8�.�'�*�/�%�0�A�1�-�+�,�5�+�5�.�(�9�$�2�-�,�.�,�2�6�/�'�/�%�&�8��'�4�.�)�%�(�,�-�*�<�3�=�-�2�(�.�'�*�(�"�+�3��4�1��7�'�,�(�$�2�-�/�9�'�/�#�+�+�,�)�+�,�)�1�#�4�,��%�1�6�*�,�1�)�*�5�/�%�*�#�%�$�2�*�)��2�'�1�)�%�#�1�%�1�'�-��9�.�)�-�(�0�/�2�/�(�)�,�(�'�2�$�*�2�/�)�*�/�+�3�6�)�2�E�0�.�'�/�.��'�%�,�A�'�:�0�:�%�8�(�$�#�.�%�-�.�'�1�+�%�(�7�>�1�/�!�+�4�1�%�2� �)�.�5�$�)�$�<�/�4�5�#�'�*�%�-��0�*�3�0�3�3�=�*�4�;�2�6�1�'�)�&� �4�&�/�"�-�.�1�)�(�2�-�1�&�,�$�1�-�#�-�)�%�/�+�'�-�?�#�5�-�?�&�-�/�9�&�"�(�1��(�*�6�+�(�6�.�,�.�3�5�%�-�-�%�/�#�.�)�1�0�9� �7�0�2�-�5�,�+�.�'�1��*�%�+�A�0�'�4�+�.�:�6�+�3�1�+�4�/�1�/�$�1�3�#�'�2�8�=�/�%�4�3�/�%�-�.�%�-�'�/�+�&�*�)�&�7�*�1�9�؀Հـր؀؀ڀԀЀɀԀӀ؀׀܀ր׀ԀӀӀҀҀրՁ0�1�9�7� �'�3�%�3�7�4�(�9��/�+�<�+�2�(�,�&�0�� �1�/�=�,�2�&�3�1�/��8�7�,��$�)�%�%�3�'�(�4�-�-�.�'�0�,�9�$�+�;�-�3�&�3�/�2�1�*�,�(�-�)�%�-�7�!�5�4�.�'�%�.�#�,�$�>�5�)�*�4�+��&�+�(�3�*�,�,�%�B�%�%��/�'�0�*�7�%�4��;�@��3�)�6�$�&�,�*�*�!�,�4�,�8�+�-�.�#�+�*�5�3�3�)�!�-�6�,�2�(�&�.�%�5�%�"�1�3�$�!�)�.�6�1�6�+�'�1�-�$�"�1�1�'�'�)�;�0�0�.�)�1�-�(�>�1�-�*�+�,�!��+�7�+�2�6�*�/�1�)�4�2�+�)��,�!�3�(�(�&�$�5�!�(�"��3�+�*�.�(�:�1�4�+�'�&��/�6�,�3�'�<�.�'�-�-�*�4�4�*�1�+�)�'�/�/�(�5�*�4�4�)�.�1�-�-�/�/�3�/� �%�/�1�-�1�6��3�-�)�(�4�9�)�$�$�4�/�.�+�3�,�8�+�7�+�5�+�*�1�1�/��6�'�-�0�+�*�*�)�4�*�$�8�5�-�(�,�%�2�9�:�,��.�.�0�*�,�.�,�5�$�1�)�)�2�+�2�"�%�$�3�2�(�9�&�0�/�6�,�2�'�5��'�+�*�(�(�'�*�3�*�/�2�#�5�,�'�5�%��2�2�'�3�+�*�<�0�3�+�%�1�1�1�7�;�/�+�3�4�.�!�3�2�2� �&�)�.�7�/�!��2�)�"�!�&�<�"�)�,�8�%�*��2�:�2�(�'�/�&�/�7�2� �%�)�/�'�)�*�#�*�+�'�$�5�.�%�%�)�(� �1�-�(�(�)�&�5�'�0�&�,�5�)�+�1�-�7�)�.�"�(�$�2�6�'�6��,�)�(�5�$�/�#�,�0�'�/�1�'�'�-��/�(�)�8�9�2�(�-�*�!�!�(�0��,�,�-�3�3�$�+�)�/�)�<�0�,�9�5�0�-�+�"�/�Ԁр؀؀ҀՀրӀӀĀҀ׀р׀Ԁ׀ـր؀؀ՀӀ܀ہ)�7�+�'�;�.�6�,�/�+�4�8�6�2�%�0�1�0�-�/�'�0�)�K�1�0�4�0�1�/��0�*�)�'�%�5�4�+�)�3�'�)�6�6�*�4�,�/�3�6�-�+�)�*�$�,�)�(�-�*��'�1�(�.�1�6�/��-�0�*�*�+�/�5�%�$�6�1�%�(�&�-�2�4�8�5�*�*�>�6�5�'�7�+�,�2�'�.�,��9�2�0�.�.�%�&�'�&�'�/�0�8�/�8�,�/�*��0�5�2�4��-�+�(�)��,�&�/�%�+�%�,�-�/��$�=�3�$�4�'�&�/�2�/�1�(�1�4�$��(�3�8�+�0�-�/�)�0�%�5�0�3�%�'�-�1�/�3�3�-� �5���0�'�%�,�/�&�(�-�4�(�.�2��.�"�-�'�'�%�#�/�)�)�+�+�+�-�!�7��+�-�-�7��)�4�*�3�3�!�(�+�2�(�#�0�*�5�(�&�"��8� �%�)�/�)�%�4�/�0�.�1� �3�&�-�-�-�/�&�,�$�*�)�6�2�/�'�(�!��5�&�,�,�(�2�2��*�9�-�+��-�-�;�.�'�1�*�0�"�-�-�7��6�7�/�<�/�3�1�2�8�3�/�'�-�2�2�#�1�3�,�)�,�.�0�?�/�&�)�*�*��>�/�0� �$�2�)�7�2�-�2�(�&�9��+�0�!�-�4�(�!�(�3�-�)�)�,�.�.�0�.�4�*�*�-�'�&�'�/�+�'�0�.�-�)�#�6�+�.�1��2�(�*�+�+�&�/�-�3�$�)�/�#�*�$�7� �*�-�7�+��:�!�/�$�3�(�.�3�.�&�+�(�'� �7��1�/�/�3�3�1�/�2��3�0�$�/�*�(�4�,�3�1�8�!�3�/�&�)�?�2�$�$�/�5�/�4�/�'�1�7�*�5�1�>�%�*�>�#�%�0�6�/�3�,�+�+��/�+�+��;�-�&�+�)�9�0�*�1�:�%�*�+�*�*�,�+�7�,�!�2�,�8�*�,�+�%�1�*�.�%�#�8�6�5�%�,�,�+�+�<�ڀԀ׀׀׀Ҁր׀ӀƀπڀӀՀԀրڀрӀڀـԀЀف'�*�'�"�2�.�!�>�+�'�&�2�5�/�*�/�2�0�1�4�1�&�1�1�)�/�:�3�6�6�'�3�,�/�*�6�(�&�;�7�2�3�5�,�1�7�#�8�1�+�)�'�3�1�-�$�0�,�+�/�2�/�:�.�#�/�.�#�3�1�1�;�#�-�0�6�-�)�6�*�2�$��(�'�4�5�-�+�*�-�0�%�-�#�8�%�1�9�-�%�1�/�4�-�+�-�+�3�1�:�+�/�5�+�'�$�,�)�0�-�.�3�6�5�)�#�)�#�1�2�%�<�)�-�8�-�0�,�'�8�.�)�*�"�7�#�+� �.�/�'�9�'�*�,�/�%�3�,�/�)�%�0�+�)�&�0�"�3�-�*��+�4�,�:�/�#�+�2�/�'�:�(�(�:�.�&�*�%�/� ��(�+�'�2�1�0�=�8�+�8�.�/�,�3�5�$�!�&�(�/�'�+�2�&�-�8�#�(�-��/�4�#�4�4��/�/�0�(�)�4�� �:�/�;�(�&�%�/�*�1�@�*�7�%�6��3�/�"�/�*�4�/�5�-�-�#�-�-�&�5�%�/�,�4�*�/�-�+�.�5�/�6�%�-�#�+�,�+�"�6�+�)�3�'�0�2�1�)�)�&�"�1�'�-�(�$�,�+�6�&�6�2�,�$�5�/�5�&�1�4��&�(�%�#�,�1�.�5�*�4�+�-�*�:�-� �7�*�%�(�+�%�+�/�,�4�#�-�#�3�)�/�0��1�+�,�0�1�1�$�,�$�/�&�0��/�!�-�2�-�"�)�&�'�.�*�'�.�,�,�#�$�(�.�'�2�0�3��2�1�/�#�"�)�.�,� �7�*�*�,�"�'�/�?��*�.�8�7�+�+�.�%�"��4�5�4�'�3�2�!�/�%�%�(�"�1�4�-�9�+�/�2�,�5�-�1�-�3�-�)�)�.�5�/�(�*�-�(�5�4�>�,�1�7�.�$�(�:�*�1�6�-�-�+�2�(�(�2�=�+�/�)�)�+�-�?�4�&�8�3�-�*�.�.�0�)�6�!�/�1�2�3�(�0�4�5�)�/�9�.�/�)�;�.��6�'�؀؀ڀՀـڀրրրÀ׀ՀҀҀۀ׀ڀԀրـۀҀԀҁ8�1�1�*�.�*�)�/�,�3��'�3�.�2��5�)�6�0�8�-�3�*�1�1�3�8�,�(�*�.�(�3�5�9�'�5�#�+�.�$�1�/�8� �/�"�0�@�1�*�'�)�7�+�0�=�+�0�-�#�.�,�*�-�&�%�.�1�B�3�.�(�(�+�(�9�6�-�-�7�*�2�.�+�3�/�%�%�%�8�#�&�)�4�%�5�.�7�6�%�+�.�:�1�%�6�7�2�1�-�8�-�'�0��/�,�)�4�#�0�3�9�/�4�3�/�:�8�2�3�+�)�)�9�.��%�/�1�6�0�#�%�#�1�+��7�1�5�)�$�3� �*�4�-�2�(�.�*�/�+�,�%�:�#�'� �(�0�)�.��&�1�,�!�)�'�(�)�/�4�(�1�2�-�.�6�'�*�6�(�,�-�-�7�6�/�8�5�;�#�'��-�-�%�/�1�*�(�,�0�,�-�0�,�/�2�&�"�/�5�0�$�.�<�'�*�0�1�,�%�-�4�'�#�-�%�1�,�+�2�-�*�2�(�5�.�(�.�!�0�5�-�!�3� �7�*�5�6�+�-�(�-�'�$�+�'�'�0�1�$�,�)�2�-�2�'�2�/�1�9�2�+�1�%�,�4�1�-�*�*�4�+�5�)�+�$�)�1�*�(�&�-�)��-�)�-�0�.�(�*�=�(��3�7�/�0�6�"�)�8�*�$�4�+��)�5�$�%�4��!�0�0�,�0�:�&�5�.�/�3�+�/�1�,�%�(�,�3�7�+�3�7�(�2�2�:�*�+�,�'�#�1�A�1�(�0�-��7�/�4�0��5�1�(�4�B�#�1�+�+�-�8�-�?�'�#�,�#�(�)�7�2�7�6�(�+�@�'�.�=�*��.�-�-�/�3�#�?� �%�=�.�-�5� �/�*�-�=�"�4�.�&�6�-�-�*�9�*�$�'�&�.�)�>�0�-�3�(�0�0�0�0�+�7�+�"�&�,�8�&�(�3�/�2�$�2�$�(�-�6�'�#�=�)�0�0�:�%�%�4�2�*�L�5�/�*�5�(�3�-�*�+�/�.�0�&�$�2�0�6�7�;�)�5�2�Հ؀ـՀ׀ӀۀрրŀҀ׀ـ؀ـҀ׀ڀ׀؀Ӏـ݀ہ/�-�'�(�/�5�+�+�4�"�6�2�2�,�)�0�8�,�0�1�(�*� �/�+�:�/��(�%�2�/�+��-�;�6�.�(�(�1�'�4�(�9�3�-�7�+�<��*�7��0�3�/�5�1�4�8�1�)�/�8�1�:�/�<�-�*�$�)�(�.�&�/�(�5�$�/���(�%�)�*�+�.�>�5�2�/�,�%�/�(�9�-�)�&�/�.�!�8�%� �$�$�/�6�,�(�'�+�4�/�1�/�+�*�-�2�1�&�*�9�&�.�2�2� �)�=�%�+�%�/�,�-�"�,�(�.�0�-�#�4��6�(�:�-�$�-�8��%� �:�5�3�*�&�)�'�.�*�2�+�"�$�,�*�'�1�+�+�%�'�-��0�*�/�#�5�$�/�-�1�-�'�%�+�2�8�*�-�)�1�3�.�/�1�3�%�&�*�3�/�!�5�+�+�6�0�-�$�+�:�%�)�'�5�6�-�:�/�.�)�%�*�+�+�5�)�/�7�*�)�0�"�*�.�(� �(�1�-�!�0�!�(�2�$�*�%�=�*�3�/�&�,�!�+�)�-�&�7�,� �+�.�(�.��(�-�/�-�4�,�,�*�:�2�1�2�*�2�2�*�&�+�0��(�0�B�!�(�,�)�,�)�0�'�8�1�1�0�)�&�6�$�4�3� �1�:�1�*�7�(�9�.�;�4�&�,�+�%��*�1�/�0�+�"�.�(�.�%�-�"�,�0�)�*�2�0�-��'�)�0�)�#�*�-�*�+�-�/�%�'�'�1�+�3�'�*�5�(�-�)�&�'�'�,�(�:�6�2�+�"� �(�(�-�;�/�$�)�1�.�'�0�/�$�#�#�8�/�,�+�0�2�*�)�H�+�&�9�3�5�2�/�+�%�$�.�4�.�0�1�(�(� �2�.�7�6�*�1�.�*�1�7�(�3�/�$�.�(�)�+�/�6�*�%�7�%�&�/�)�&�5�4�+�6�3�6�4�!�)�+�5�.�-�)�-�+�%�=�"�.�(�8�5�2�-�$�&�!�-�)�:�6�+�.�*�/�#�6�1�"�5�&�,�+�*�7�$�/�&�)��(�%�/�Ԁ׀ـրҀـՀԀ؀ĀۀրрրՀ΀ӀԀրրՀـԀՁ4�%�3�#�1�6�2�.�<�6�0�:�8�-��1�+�'�*�4�2�,�+�$�6�1�!�/�5�,�:�2�2�)�6�4�(�1�4�'�,�#�*�/�0�!�5�9�0�6�-� �#�;�,�7�.�)�3�/�0��0�2�3�-�(�+�0�1�5�+�(�6�/�/�1�&�#�9�"�/�0�/�,�5�7�(�5�8�9�-�*�;��%�0�.�!�'�+�2�=�-�+�,��'�.�+�&�#�-�/�&� �#�9�)�)�)�&�4�,�8�)�5�&�,�$�>�/�.�(��/�1�&�+�&�#�/�5�-�#�(�7�(�-�)�/�@�0�1�;�-�*�+�-�+�2�4�-�(�,�#�$�&�(� �1�4�.�*�/�'�&�%�#�/��2�'�)�0�"��/�(�-�/�(�2�+�6�-�1� �-�7�4�-�0�,��,�6�0�.�3�&�'�@�1�2�9�/�(�0�-�(�*�-�*�*�0��&�!�#�3�+�3�$�;�*�(�4�-�'�!�&�!��,�8�-�*�0�-� �*�0�.�+�3�0�-�,�2�/�1�)�;�5�0�7�1�(��;�)� ��+�:�8�8�,�4�1�!�3�5�0�(�-�(�$�&�*�$�0�'�8�/�(�3�$�$�*�1�+�0�6�/�,�"�'���'�/�7�-�5�(�%�'�%�0�/�(�4�/�/�-�/�)�%��+�*�3�+�&�%�1�*�/�-��1�/�2�+�.�4�3�(�%�-�'�1� �+�/�.�-�'�#�8�1�9�4�+�-�+��,�+�-�0�4�7�2�3�)�!�'�7�'�!�)�)�9�/�$�=�-�+�4��&�"�*�2�5�4�2�/��*�-�(�*�/��8�1�.�'�6�"�&�/�(�8�5�/�)�7�9�-�3�+�+�6�5�7�9�7�/�0�=�4�6�)�1�=�0�/�,�:�+�.�/�6�/�/�6�'�)�8�'�1�'�&�/�+�*�5�0�!�)�-�'�/�#�+�/�2�%�/�/�+�'�"�!�#�:�0�3�/�-�0�2�8�-�4�8�7�&�7�#�'�'�5�*�)�*�/�=�/�2�'�,�7�.�.�5�/�Ӏ׀րՀЀ؀ҀՀр��׀рــԀՀՀՀ؀ڀԀـ؀ہ-�:�)�-�8�;�$�*�-�7�,�,�*�2�+�1�,�0�9�!�)�7�0�2�;�1�.�'�0�,�&�/�5�#�+�6�-�8�+�1�+�&�/�7�(�A�.�5�.�"�$�.�/�%�/�*�.�4�)�&�0�+�&�(�-�&�2�%�6�0�5�1�$�0�#�#�'�9�.�2�2�+�8�8�+�#�*�7�0�&�7��'� �2��-�#�,�.�/�:�+�-�3�1�.�-�/�#�$�!�3�2�/�9�-�1�*�9�4�*�,�%�0�6�,�'�-�#�*�2�)�&�/�2�.�+�0�0�(�(�(� �7�'�*�+�-�5�(�.�'�%�:�.�-�#�.�$�3�3�!�)�%�&�$�%�2�%�*�5�)�!�3�,�0�6�(�&�.�)�&�+�0�3�,�-�,�.��;� �/�4�'�*�-�(�+�4�+�,�)�3�/�$�.�8�8�2�'�0�:�0��(��/�)�*��'�!�+��5�+�3�0�$�5�9�'�5�5�0��$�*�-�&�*�&�.�1�+�-�5�+�8�+�7�%�5�6�%�.�/�,�+�#�.�*�$�)�4�(�5�%�#�*�(�:�$�,�/�-�%�0�)��/� �5�&�4�2�*�(�;�;�,�8�1�.�&�(�-�1� �&�)�,�0�(�$�&�,�5�0�9�*�@�)�)�,�1�/�'�3�$�)�4�5�/��2�4�+�+�1�6�:�/�6�6�.�<�&�0�*�1�*�,��'�/�,�-�5�.�,�1�*�/�$��1�.�!�,�8�1�#�7�)�1�(�5�,�1�3�%�%�&�-�/�4�(�-�6�&�2�"�,�3�8�*�0�#��/�#�-�+�,�+�4�*�%�&�-�+��1�0�/�.�7�0�'�6�(�8�8�"�*�1�)�5�'�.��+�0�5�=�<�2�=�4�3�5�2��,�E�/�)�+�*�1�@�7�$�)�,�5�(�-�,��+�#�+�&�/�5�1�2�-�!�.�4�-��1�-�/� �'�&�,�-�4�)�#�&�%�2�#�0�+�+�3�6�5�9�(�3�&�.�0�/�,�6�'�*�-�4�"�'�)�-�+�&�C�5�?�-�3�ۀـрҀҀՀ׀؀ӀŀـрӀ׀Հ׀рــՀӀՀ�Ӂ(�.�.�/�8�9�&�1�9�7�1�9�2�2�2�7�.�1�-�.�2�3�;�&�3�$�.�'�)�1�'�2�2�$�)�-�/�1�0�$�*�5�(�,�$�*�#�-�6�'�-�-�1�(�,�+� �6�>�'�9��0�/�(�'�1�*�0�$�6�7�0�%�/��.�0�6�0�/�#�,�(�2�&�*�2�-�,�3�6�5��9� �&�/�#�B�"�(�)�-��,�#�(�0�0�%�0�&�3�,�/�)�4�/�4�2�1�)�)�1�$�)�5�9�,�+�3�2�3�+�+�)��2�*�.�%�%�*�9�1�/�5�(�+�-�3�)�+�/�$�4�6�'�'��,�0�.�*�&�-�"�2�0�0�5�6�-��/�,�/�*�*�*�.�9�0�-�3�-�6�7�*���&�,�1�%�+�'�5�3�+�-�%�&�/�$�2�)�)�1�%�$�.�/�)�/��7�-�#�'�4�5�,�*�)�+�#�:�,�"��-�7�#�.�1�+�,�*�&�)�9�-�.�(�5�$�4�7�+�,�.�*�*�+�:�&�/�$�-�/�0�#�'�(�,�1�'�9�)�#�%�.��%�'�'�9�4�.�1�1�,�2�+�#�,�3�<�2�:�#�!�7�3�4�2�5�4�6�5�+�$�2�(�*�%�#�4�1�<�/�)�1�4�1�&�1�*�:�6�!�'�*�"�+�)�#�-�&�:�2� �%�+�9�<�'�(�"�%�$�2�3�*�3�*�5��(�0�+�4�$�+�'�1�&�+�%�!�/�$�0�.�0�,�.�/�"�(�.�/��"�-���%��,��)�.�0�#�9�:�*�'�3��+�%�%�*�)�-�#�/�-�2�2�3�%�,�,�0�+�.�+�+�;�-�4�6�)�*�%�&�(�2�/�6�9�2�-�:�3�+�;�.�&�=�/�6�;�0�+�3�/�&�,�2�#�>�3�"�C�0�)� �#�;�2�+�$�)�5�0�%�+�0�"�<�5�/�-�2�2�,�/�=�;�)�-�0�6�/�4�8�2�.�6�/�-�)�*�'�/�8�3�-�3�4�B�/�+�0�.�C�0�4�7�4�1�9�5�4�*�<�ӀԀӀԀۀրрրԀˀӀր؀Ԁр؀Ԁր׀؀πՀԀہ9�&�-�,�,�)�,�7�+�'�,�+�*�3�)�+�6� �$�2�;�*�"�(�.�4�!�)�4�"�%�;�(�-�+� �)�/�(�5�*�!�'�+�'�&�#�.�-�'�%��/�#�2��"�0�(�0�1�(�7�#� �5�.�$�(�6�,��#��0�3�.�&�!�)�=�2�*�/�/�4�+�(�*�.�(�-�#�1�+�<�"�0�'�&�1�2�4�)�.�4�'�1�&�(�4�5�1�/�+�&�-�;�8�-�3�1�'�%�0��'�)�.�,�"�'�*�,�-�&�$�,�3�)�/�/�)�2�0�(�+�7�&�-�(�.�(�3�(�$�2�2�,�+�/�1�%�4�-�,�%�+�3�/�'�3�3�(�+�:�/�+�<�,�"�2�3�#�6�>�8�.�&�:�)�-�;�'�'�*�(�9�/�0�/�-�4�3�2�+�4�&�'�+��*�-�'�*�*�1�#��(�,�(�-�.�,�.�&�7�(�+�,�,�&�%�1�5�1�2�*�3�#�-�5�7�,�+�5�$�6�1�)�-�?�-�.�-�.�'�0�%�4�,�3�*�7�,��/�&�%�/�*�%�#�)�;�-�#�2�4�.�6�/�4��$�1�%�*�&�,�-�'�+�/�5�8�&�%�6�,�"�7�7�*�8�-�+�"�'�(��=�$�7�9�#�'��7�,�4��'�#�'�#�/�(��1�8�'�2�&�1�,�'�$�(�2�<�.�� �,�/�5�&�:�+�3�%�#�-�1�%�-�"�&�.��2�3�(�#�.�.�)� �#�1�5�2�!�0�1�:�C�.�0��(�,�+�2�,�,�"�9�*�7�#�0�-�)�"�"�*�(�.�.�3�(�1�4�,�*��0�'�+�8�.�'�(�,�0�/�.�1�7�(�/�1�'�7�'�C�0�C�9�5�3�6�7�0�:�*�:�?�8�3�:�5�3�1�-�3�2�&�-�'�3�%�&�#�/�-�2�)�%�$�0�7�1�8�*��)�.�-�9�-�5�6�7�/�9�+�/�(�+��-�3� �4�8�1�*�&�+��1�&�&�0�,�%��6�0�.�-�0�.�0��!�+�,�׀؀׀׀ր׀Հ׀ӀÀ׀Ԁ׀ՀրՀ׀ۀـڀڀրՀ΁@�(�.�/�,�$��-�'�)�<�%�8�4�,�3�3�8�'�@�3�:�-�-�1�5�.�4�,�/�&�� �,�+�3�2�:�!�8�7�-�6�>�1�-�@�7�2�7�'�3�4�)�)�)�&�(�/�+�(�(�*�$�1�.�%�0�+�,�)�+�)�/�5�$�)��(�1�#��2�.�1�%�&�,�2�1�&�/�0�5�/�1�1�+�4�<�3�*�0�2�8�,�3�/�=� �?�*�)�2�.�,�;�-�2�(�)�*�.�"�-�1�+�,�0�3�*�.�+�2�/�0�4�)�,�/�-�+�)�*�5�2�+�)�"��5�+�?�-�/�+�(�F�#�/�2�0�1�5�4�$�,�*�%�-�5��-�$�4�.�*�8�.�%�$�$� �7�8�/�-�6�.�-�-�6�*�0�)�.�#�%�5�3��&�)�;�9�%�+�/�%�+�0�*�@�$�5�2�,�'�$�#�+�(�)�-�)�;�"�*�4�*�3�%�6�'�+�-�0�5�3�1�7�2�'�*�1�1�.��.�'�3�7��*�/�1�,�&�%�:�*�.�%�5�+�+�)�/�*�A�7�!�!�%�3�(�2�0�+�#�*�(�6�7��,�/�!�/�/�.�2�5�2�)�2�4�7�5�*�,�3�2�)�&�4�+�3�-�0�+�#�(�0� ��$�.�-�+�,�+�&�.�)�$�+�#�'�'�0�.�6�;�7�-�&�3� �(�+�:�&�,�1�$�;�-�+�(�%�%�&�*�1�1�,��'�/�/�-�1�1�+�,�(�'�:�%�'�3�6�)�'�.�5� �&�6�5�*�=� �'�*�.�,�(�2�(�3�4�,�2�+�)�0�'��1��B�!�1�/�-�%�3�*�/�3�2�.�7�.�0�-�7�)�+�)�3�$�6�.�;�*�5�E�9�-�A�;�B�2�J�=�6�6�1�D�4�:�4�<�'�%�+�,�+�-�6�)�+�"��+�-�+�+�2�%��*�0�;�+�;�,�4�.�3�2�8�6��'�#�'�'�7�*�(�.�&�+�%�/�5�,�(�+�3�,�)�2�/�=�2�,�&�&�A�(�1�5�'�4�$�-�-�ӀڀـӀЀӀԀ׀ԀÀ׀؀ӀՀҀրՀӀ׀؀ــڀՁ/�3�-�3�3�3�>�,�5�(�6�9�+�6�.�*�(�6�,�-�/�,�5�!�9�,�,�5�#�+�1�2�0�-�-�#�+�4�9�)�-�"�/�2�,�$�,�:�/��'�&��-�/�(�;�1�2�4�6�.�%�0�)��/�.�*�(�(�.�.�&�3�/�$�.�4�(�3�3�.�4��)�#�0�+�'�0�$�(�-�5�0�8�"� �8��3�8�'�#�.�.�*�/�5�*�$�'�1�)�+�#�#�-�:�3�1�(�2�<�(��/�)�'�*�4�<�4�*�/�+�2�+�@�#�(�%�)�(�$� ��#�(�0�5�4�/�1�+�*�'�-�6�%�5�+�-�1�7�.�"�+�'�+��'�-�%�*�+�$�/�4�#�.�*�+�#�'�+�%�$�1�)�&�5�$�)�7�+�%�C�*�0�'�,�%�'�#�+� �*�$�3�(�6�+�0�'�-�.�#�+�+�(�2�2�*�&�)��+�"��5�*�%��1�*�5�0�-�&�4�+�,�/�+�#�)�(�'�*�$�.�7�+�-�/�7�*�.�*�&�,�'�/�;�@�"�A�)�'�8�'�+�/�,�?�1�-�:�'�,�2�,�/�1�7�4��*�#�/�+�4�3�$�'�0�5�"�'�/�-�%�'�.�+�/�+�,�,��0�1�0�1�>�.�$�,�0�1�?��)�(�&�%��(� �4�2�-�4�$�/�-�,�&�&�+�;�/�/�5�,�3�0�E�&�,�-��/�.�1�5�"�6�"�+�#�/�,�/�%�1�"�/�%�2�0�6�-�4�!�,�2��*�-�*�.�/�%�-�+�1�-�&�(�5�$��*�%�;�0�0�/�'�6��2�.�'���*�'�+�3�0�+�3�4�(�*�(�.�'�*�1�/�3�2�5�A�:�5�9�L�E�P�C�8�J�:�:�<�=�/�7�0�6�1�:�2�!�1�3�9�7�/�&�&�'�1�7�+�(�:�-��3�5�+�9�,�)�?�6�,�*�7�(�.�>�'�-�.�%�*�*�.�3�,�1�2�1�.�(�6�$�'�0�-�0�.�/�,�*�+�3�)�;�+�'�7�0�-�րԀӀр׀ӀՀԀ؀ˀ׀ҀـҀՀ׀Ѐـ׀؀Հ׀܀ف;�&�,�4��+�+�3�.�,�)�.�7�"�0��,�/�:�+�4�+�/�,�/��-�7�(�#�*�<�0� �:�(�7�3�9�,�6�0�5�+�)��+�-�+�5�(�"�/�2�*�+�.� �'�4�'�7�+�*�0�-�-�2�/�)�(�0�2�9��;�!�6�4�(�7�/�>�+�8�(�*�-�-�)�;�����6�'�*�"�2�-�/�*�#�-�(�8�4�.�8�(�!�0�2�$�4�*�'�,�+�'�%�0�9�+�$�� �0�/�:�"�/�/�-�1�*�/�#�3�.�-��-�3�)�8�+�5�/�*� �5�1�0�'�/�5�,�8�%�!�*�(�6�5�*�#�5�)�6�-�3�3�)�$�2�2�,�"�(�3��,�D�#�8�1�"�#�4�1�.�:�)�2�0�0�-�4�2�-�&�1�/��(�3�-�B�8�1�3�7�+�.�%�#�)�/�2�%�.�'�/�.��5�'�"�!��)�2�#�&�'�7�2�.�,�(�&�4� � �)�/�3�;�5�-�*�"�+�(�+��.�-�,�4�,�)�4�-�)�.�0�'�+�0�2�:�+�*�/�/�5�/�+�/�.�,�+�,�&�-�4�0�6�.�-�*�0�&�'�*��,�/�-�+�/�2�.�!�/�#�!�$�*�(�&�(�/�,�9�+�2�-�+�)�&�&�.� �1�*�-�*�-�3�;�,�'�/�(�.�)��!�(� �=�+�1�>�$�9�8�*�+�7�1�<�:�.�'�,�6�4�'�;�/�-�-�(�'�.�'�4�/�'�.�5�.�&�)�!�7�8�)�.�0�3�)�!�1�1�%�.�!�%�5�)�&�2�+�<�7�<�%�5�.�$�%�7�/�/�(�0�=�-�$�2�-�=�8�"�/�'�,�B�9�'�7�4�3�6�E�<�M�L�?�\�E�B�J�D�=�7�-�7�&�.�?�*�/�1�3�&�?�.�3�3�(�.�9�0�,�&�'�0�2�2�1�#�%�;�'�,�1�8�6�8�3�)�2�)�.�3�/�+�*�E�%�%�#�&�%�(�&�%�4�*�+�4�%�A�'�'�,�7�'�%�;�/�7��,�7�؀րրӀՀڀԀրـȀՀ؀ՀҀڀԀр؀րрڀڀπց/�.�2�3�0� �:�!�/�5� �3�'�&�;�5�4�(�0�4�3�2�%�)�4�*�@�*�4�+�1�/�8�8�3�;�$�.�$�%�7�@�*�"�,�0�!�'��4�0�/�&�8�.�7�1�3�(�-�/�!�#�0�2�,�.�%�.�/�*�.�(�,�6�)�5�(�'�5�5�*�.�1�1�2�-�:�7�4�;��3�$�$�3�2�)�'�0�8�*�0�'�'�&�'�.�(�/�,�'�.�0�#�*�'�6�"�'�3�%��/�5��/�&�'�1�'�5�(�;�=�*�(�5�)�/�'��)�)�*�*�4�4�4�&�(�-�7�#�2�7�+�/�8�+�1�(�+�/�3�(�"�>�.�"�'�1�-�5�%� �3�$�+�/�$�+�,�-�&�-�"�-�#��$�#�'�*��1�2�(�(�)�9�'��+�'�,�6�)�)�/�+��0�'��0�#�'�0�(�7�0��-�3�2�!�,�/�0�*�!�.�6�/�1�4�1�-�-��.�%�+�+�&�6�$�4�)�!�9�&��+�'�8�9�%�*�)�/�-�6�/�!�,�$�*�$�8�#�/�*�5�-�2�/�*�1�-�:�%�*��7�&�5�.�/�7�#�,�/�,�:�/��/�(�#�%�&�'�4�-�0�/�7�)�+�(�%�2��+�-�5�/�-�)�/�#�/�-�#�1�/�6�%�+�.�"�&�/�4�9�&�&�/�(�+�,�-�(�"�)�(�2�#�0�4�6�2�,�&�-�/�!�/�*�.�%��+�1�*��:�/�4�7�+�,�*�2�:�#�3�6�<�/�,�4�0�*�(�s�́(�(�%�,�)�7�+�6�4�3�*�4�+�(�0�2� �/�,�(�1�*�+�5�9�2�.�(�'�(�'�;�/�E�:�+�,�6�C�<�A�J�T�a�V�f�d�`�`�^�K�@�9�:�=�F�3�3�3�9�1�'�8�7�1�,�,�3�.�6�3�,� �(�,�2�,�)�-�:�#�2�1�,�6�&�-�0�7�(�.�1�1�2�?�5�*�4�+�0�.�+�+�*�/�,�,�/�.�3�*�/�'�4�6�*�-�5�6�7�-�*�3�րՀԀۀ؀ՀԀπ݀ǀـրӀ܀ҀՀՀۀ؀Ԁ؀րڀҁ,�5�2�.�4�5�.�+�)�4�2�5�C�(�-�(�/�'�3�)�/�2�.�+�5�.�.�1�7�4�/�3�$�%�"�1�0�1�.�$�7�7�6� ��-�'�/�+�-� �>�%�2�-�*�1�)�4�,�0�)�(�*�/�"�7�/�.�#�2�"�=�*�-��+�%�1�.�+�2�&�4�&�+�/�'�8�#�#�'�/�"�B�)�6�2�1�+��*�0�-�)� �6�7�*�.�)�6�*�*�-�)�3�&�$�-�.�+��$��6�1�1�1�,�"�(�,�.�0�4�,�-�/��4��#�(�/�#�0�"�-�0�1�2�#�#�'�/�-� �"�-�2�#�,�,�*�"�(�"�%�/�,�&�,�:�)��4�&�6�/�(�3�)�8�4�1�0�*�0�&�-�5�4�/�%�4�*�-�)�*�)�#�2�#�*�,�)�$�0��*�"�(�)�/�.�,�+�5�*�,�2�$�2�'�#�%�2�"�5�&�/�)�/�/�$��"�)�-�*�-�&�;�$�5�*�-�,�*�1�%�(�9�,�-�+�-�*�/�3�.��2�0�/�)��'�(�+�%�+�*�)�'�+�&�(�3��)�!�*�.�.�4��&�$�1�!�,�$�4�.�!� �5�$�#�(�6�%�%�&�-�(�%�3�+�3�'�'�4�%�-�4�.�$�0�4�2�-��2�2�0� �&�/�/�"�(�*�&�#�(�"�7�2�4�"�%�!�3�)�2�0�+�'�)�6�9�,�5�'� �'�/�5�(�2�'�%�/�3�+�9�<�/�-�-��)�0�8�(�(�0�1�5�/�8�8�%�0�8�:�9�.�+�(�"�%�/�)�4�$�)�'��-�3�-�#�&�@�4�*�$�"�%�-�)�-�5�1�3�*�2�4�8�'�6�7�;�I�;�9�X�T�o�u�h�����g�g�T�E�A�=�8�;�:�=�*�8�9�'�7�#�2�)��=�0�.�.�$�6�1�&�3�+�4�-�5�2�-� �+�5��1�;�%�-�.�0�*�/��!�(�2�.�9�7�8�,�'� �)�0�)�=�G�2�2�-�3�)�-�/�:�"�6�'�0�1�р׀ր׀׀؀؀ԀՀƀрӀ׀р׀րӀ׀ـӀЀӀӀ؁3��$�%��2�7�-��1�-�&�2�/�/�/�:�2�,�)�.�+��'�#�$�/�4�0�0�B�0�(�/�-�2�5�0�$�+�-�/�:�/�3�D�:��'��?�)�'�>�*�(�/�"�%�7�8�4�3�B�5�0�.�-�0�)�#�+�1�&�2�2�(�4�/�&�&�/�/�$�/�5�5�+�*��/�A�&�/�)�5�&�-�-�(�%�.�*��4�!�.�,�&��4�(�-�0�.�7�/�2�&�6�6�/�*�,�+�'�.�2�.�2�7�+�0�.�.�6�$�"�&�"�5�+�3�%�%�/�/�%�)�$�+�/�0�$�<�8�F�+�1�,�+� �1�:�*�.�4�.�%�'�#��&�&�-�-�%�*�(�3�%�/�1�2��,�7�1�0�(�'�+�"�,�1�,�7�%�.�.�1��:�2�'�$�%�A�)�7�,�+�(�'�-�!�4�(�-�+�'�4�6�7�2�.�"�/�/�,�,�.�/�+�=�(�8�7�2�!�2�.�5�+�-� �&�7�7��9�8�/�#�1�2�%�0�+�/�'�(�=�(�/�$�)�� �+�/�(�6�/��'�*�'�*�+�!�6�"�@�%�3�/�1�*�+�1�.�-�)�(�1�"�.��2�"�)�9�!�5�#�#�&�0�.�0� �'�+�;�%�+�2�/�$�0�#�/�/�/�+�6�0�3�$�4�*�-�+�"�"�.�2�:�;�=�(�,�.�0�/�3�&�'�-�/�0�'�1�/�)�0��0�)�0�-�+�*�/�9�3�%�'�1�,�<�2�.�!�1�/�9�,�3�.�)�-�3�#�C�#�3�1�-�1�1�,�4�5�,�+�9�$�&�2�(�4�#�*�5�)�+� �5�-�,�#�$�"�.�,�.�:�7�@�0�7�5�0�-�=�F�L�O�p�r�������������|�s�Q�T�B�6�7�4�1�0�8�-�3�"�,�/�,�8�!�!�(���'�0�4�4�-�'�*�4�7��*�(�6�'�4�3�(�0�5�2�/�6�*�+�/�0�;��/�(�0�5�8�.�*�,�(�2�4�/�C�$�$�;�1�-�(�@�2�.�+�Ԁ؀ՀۀԀ׀ҀـրĀڀ؀ڀрՀՀԀրրӀۀրՀԁ.�.�4�9�2�(�-�)�2�2�'�$�5�0�-�/�&�-�*�,�*�2�6�)�'�9�.�3�;�&�7�3�.�;�5�'�:�� �0�0�1�0�*�3�/�3�+�-�/�8�5�*�-�)�#�.�'�/�1�&�6�)�)�/�%�2�/�"�0�&�#�0�3�3�'�3�-�0�,�4��1�%�0�.�4�,�4�3�%�9�-�/�+�8�9�1�(�+�4�)�*�:�0�.�:�'�+�*�0�-�6� �%�,�7�?�2�,�'�.�4�2�,�2�0�-�)��/�)�1�0�2�5�1�+�;�.��(�2�6�$�,�&�'�/�/�"�.�2�/�-�4�8�3�/�8�/�)��.�#�=�7�*�0�%�(�%�)�'�1��#�$�.�*�"�+�4�(�,�5��,�)�0��-�.�2�/�:�-�-�'�#��$�0�7�+�0��+�/�#� �.�/��7�+�:�7�"�)�4�'�3�9�$�7�)�1�#�5�)�/�-�*�1�/�/�'�0�!�6�$�8�(�1��"�'�%�>�&�;�9�2�1�+�*� �2�)�7�3�$�(�3� �#�'�.��-�5�@�2�3�+�$�$�4�,�1�/�*�#�2�+�*�,�6� �,�5��)�'�;�2�$�/�&�-�$�-�%�*�-�(�+�&�1�.�<�6�&� �*�3�,�(�-�/�/�*�0� �.�'�3�4�5�,�:�*�5�(�,�4�-�2�/�)�-�2�"�'�&�)�9�)�)�3�&�+�%�/�0�)�!�6�0�2�-� �,�*�9�0�(�8�3�+�>�*�$�8�'�!�4�(�*�2�(�0�:�5�-�!�+�)�,�,�!�$�'�.�(�.�'�$�2�2�6�/�*�/�.�0�!�9�#�%�#�(�5�(�)�'�1�.�)�+�0�8�@�7�H�;�B�j�S�l�����������������q�[�J�P�D�?�E�:�.�4�2�$�*�2�/�2�5�*�'�-�>�-�3�1�'�*�+�,�)�-�/�0�0�)��9�4�3�?�/�-�4�/�-�2�/�6�1�)�-�(�)�0�(�0�4��5�.�$�8�$�2�7�#�?�,�6�4�,�+�5�,�рրҀԀӀ׀ҀπրˀӀ׀րҀՀ؀րڀԀրՀԀՀҁ2�%�,�2�$�0�'�#�9�5�:�*�0�.�&�1�/�(�$�@�6�/��)�0�6�0�-�2�,�/�.�*�>�0�/�$�0�1�'�%�*�7�?�.�'�(�&�-�,�.�!�0��+�/�/�%�.�.�.� �(�#�5�(��1�5�5�8�1�+�3�1�'�0��/�*�3�/�-�%�2�.�"�'�,�-�+��*�(�*�"�,�0�(�%�2�C�#�"�#�.�+�,�.�%�5�%�1�8�1� �'�(�'�+�'�%�)�3�)� �(�&�%�5��&�1�+�/�'�/�/�!�/�A�!�7�1�)�=�(�.�#�6�(�&�#�(�,�*�2�/�.�.�8�7�,�'�0�#�3�3�=�-�)�*�1��'�2�4�A�*�$�3�4�/�(�/�!�7�.�6�"�2�+�7�9�(�1�$�7�'�+�#�.�"�5�%�3�D�,�+�+�1�-�2�8�'�,�+��(�3�/�)�)�+�-��)�-�#�4�/��2�#�5�-�,�)�,�%�"�2�0�0�2�)�+�0� �/�+�%�)�1�)�"�*�+�:�3�5�2�2�*�6�-�'�.�%�#�!�0�0�7�*�:�'�-�/�3�'��5�6�9�,�5�$�$�7�!�9�1�5��%�+�.�1�0�1�9�'�&�&�*�1�%�)�1�.�&�/�%�-��#�0�*�.�'�-�/��<�&�(�-�-�5�7�1�*�-�)�/�*�7�+�'�1�.��'�)�6�,�"�'�4�,�?�)�&�+�%��2�)��"�*�1�%�2�$�;�,�(�7�(�+�/�*�7� �(�%�2��'�%�"�-�-�*�)�(�'�(�1�%�7�/�3�'�*� �(�&�$�'�)�/�.�*�4�8��3�-�1�"�-�3�8�3�3�5�7�&�>�/�4�9�6�J�E�W�a�{�������ā΁������u�V�L�O�O�N�7�C�/�)�3�&�-�&�(�5�'�6�$�6�-�2�:�%�)�)�&�7�%�=�0�.�)�,�1�)��1�0�%�)�3�7�5�!�,�&��+�(�1�4�3�2�(�-�&�.�1�/�(�2�,�2�4�%�0�2�(��/�/�ՀڀҀҀՀրԀԀՀǀҀՀ׀Հ׀Հրۀ؀рڀڀрف*�+�0�)�"�-�2�)�,�*�,�3�,�;�A�'�0�)�0�%�1� �%�/�1�-�+�5� �.�0�(�3�,�4�2�)�4�1�-�)�0�.�*�/�0�8�!�0�,�.� �;�-�9�:�.�1�0�,�0�%�.�5�.�1�#�=�.�)�'�*�+�*�2�3�+� �-�&�%�*�@�#�,�*�+�8�*�'�%�%�'�2�-�:�#�)�4�+�"�,�/�3�7�*�9�/�*�)�2�$�(�.�%�'�-�&�'�'�3�,�-�.�'�4�-�'�1�6�'�5�3�%�)�-�)�-�#�5�)�(�(�,�/�$�(�)�2�.�#��!�"�.�-�5�2�:�'�3�7�,�*�#�"�8�,�+�3�+�'�(�/�-� �)�'��?�)�2�6�%�&�#�+�,�'�8�3�*� �(�&�'�;�&�2�4�,�)�+�0�(��-�4�!�"�0�-�'�4�3�-�-�'�;��!�/�)�%�"�(�#�(�.�+�*�#�$��3�)�.�)�5�+�(�+��2�2�-�3�'�7�'�,�6�2�,�-�3�)�+�&�*�!�%�0�3�#�*�-�/�,�/�*�.�4�$�*�%�#�.�5�)�&�"�%�-��,�7�(�,�%�0�3�)��6�*�9�!�)�2�,�/�/�:�&�#�2�;�.�'�5�!�*�9�1�-�/�*�&�$�)�6�+�4�-�'�,�%�.�3�5�;�%��/�5�7�@�,�>�4�C�<�%�,�/�(�-�(�(�#�3�)�-� �3��-�0�9�&�(�-�1�#�@�/�*��4�1�-�B�.�2�0�0�/��3�)�*�8�*�5�'�,�+�8�6�.�&�1�(��0�.�0�*�1�$�#�*�6��+�5�'�4�&�(�7�"�(�$� �+�,�3�(�*�1�(�6�D�Q�T�E�^�_�������Áˁ����ˁ����t�]�R�K�:�.�9�;�0�+�E�/�:�2�.�,�D�1�%�;�6�*�*�(�4�3�.�)�=�&�*�/�5�0�-�(�)�5�2�0�3�%�#�<�1�(�6�6�$�0�/�5�A�9�+�7�'�5�'�8�-�7�+��/�$�#�7�)�'�=�%�׀׀ۀ؀ՀԀՀ؀ۀ��؀ӀҀр׀؀ӀՀՀ׀Ѐ׀Ӏف2�%�2�1�*�#�9�,�(�6�6�(�*�/�@�8�8�/�/�/�+�4�1�'�#�0��-�*�$�&�"�(�%�2�6�1�'�-�1�+�*�4�1�5�0�+�5�%�8�(��5�1�'�/� �2�3�<�1�%�+�#�,�$�/�.�5�)�2��,�?�)�/�!�6�4�*�4�3�!�-�+�,���1�%�$�0�&�3�,��)�+�0�0�/�0�*�%�1�B�5�*�0�,�5�-�5�*�)�0�"�.�%�-�+��/��/�.��%�-�"�!�/�*�#�2�0�!�+�&�(�A�%�,�"�,�)��#�'�9�,�-�.�/�.�"�;�3�-�3�/�/�*�#�-�4�#��(�/�1�$�$�<�%�7�.�*�.�-�6�$�2�'��*�/�*�'�)�4�1�8�.�(�6�(�4�,�%�*�&�+�1�0�4�6�-�0�*��0�3�1�+��)�0�)�!�(�5�&�7�6�$�)�<�&�6�)�0�.�0�,�"�:�!�1�6�1�0�0�+�/�2�#�5�,�.�.�&�&�3�/�#�-�&�.�'�*�-�4�3�+�.�'�/�+�.�0�9�3�5�4�8��-�,�/�'�1�4�"�&�1�6�%�-�'�&�,�5�9�(�<�+�%�/��'�*��6�-�(�"�'�-�$�3�(�+�2�'�,�/�2�7�*�2�+�2�'�%�,�2�.�1��'�"�/�+�1�.�'�-�:�7�%�.�2�:�4�%�@�2�B�,��'�*�*�2�.�2�/��#�&�5�*�6�2�A�&�%�.�-�*�0�1�&�.�(�*�-��%�0�/�*�/�!�3�!�%�)�#�-�!�-�#�/�5�3�-�/�.�-�5�!�$�=�%�6�1�3�2�.�4�-�1�0�&�2�6�3�(�)�+�7�2�9�;�W�R�i���~�����ԁՁցʁ�������j�H�@�E�8�?�3�<�5�4�A�6�/�7�6�+�-��2�/�4�*�2�$�-�-�2�%�'�*�5�&�;�*�-�4�+�/�.�5�*�9�<�*�-�0�8�)�!�=�6�)�6�*�6��9�1�'�3�4�9�+�4�0�"�)�(�2�8�*�؀ۀڀ׀рր׀ڀ؀ɀӀ؀׀؀ـՀӀՀـ؀ۀـր܁!�8�0�/�7�%�2�%�2�4�&�2�$�!�-�)�$�8�/�.�5�-�$�5�6�5�6��5�,�+�1�*�+�0�+�2�)�(�+�0�&�+�8�0�<�0�-�+�2�*�/�9�1�'�/�6�1�6�3�0�'�)�,�%�+�6�4��,�1�,�%�$�+�,�)�+�.�6�%�0�/�&�4�&�*���/�)�*�0�7��0�+�,�'�)�"�%�8�5�)�&�*�.��4�4�5�-�7�/�&�4�%�8�'�)� �9�9�+�;�*�.�4�&�.�<�#�2�1�(�-��+�1�*�3�,�(�.�+�$�-�$�,�5�*�8�4�6�(�3��,�8�,�*�%�(�'�(�'�,�#�%�*� �)��)�;�2�-�$�4�+�1�/�9�2�)�0�1�0� �5�%�,�:�%�/�*�)�*�.�*�1�3�+�.�/�*�&��%�4�"�2�)�4��1�)�+�/�)�%� �;�/�2�4�6�3�/��-�+�/�+�#�1�.�<�)�(�0�3�/�,�*�)�#�0�+�.�)�-�%�1�(�5�)�'�)�3�*�,�)�#�6�3�.�3�:�*�/�/��0�.�)�5�,� �0�+�7�2�#�'�0�*�0�2�*�:�#�3�/�(�2�(�!�'�*�/�.�0�#�-�3�(�-�(�*�/�A�'�)�-�,�+�6�,�*�)�*�%�%�+�5�0�.�#�/�/�.�)�4�<�'�*�,�7�%�,�.�<�'�)�)�+��0�&�,�/�'�0�&�?�2�&��*�-�&�3�%�2�6�3�0�*�(�#�-�1�(�,�+�4�4��#�7�.�1�*�*��/�&�'�'�'�'�+�&�/�0�(�0�$�'�)�<�-�'�0�1�5�$�4�8�&�$�/�'�,�#�.�0�A�&�/�D�8�K�=�N�M�q�y�������΁߁΁ρ́����h�x�[�a�D�6�9�G�+�=�4�8�C�)�,�1�+�)�.�9�1�5�%�%�!�:�0�@�+�(�"�5�*�8�1�3�9�"�4�)�*�+�.�/�8�4�*�%�,�#�/�)�!�#�%��5�2�&�0�:�1�2�<�$�(�0�+�/�3�'�:�׀Հр׀րԀ׀ـрˀԀ΀ՀԀӀր׀р׀ԀրހӀՁ0�@�.�5�)�3�8�;�'�)�0�9�*�'�$�$�&�*�$�&�/�0�0�-�7��-�)�(�'� �3�2�.�.�'�'�.�'�0�)�+�2�=�!�=�6�#�:�)�1�2�-�4�7�&�+�2�-�3�/�7�.�<�*��.�:�-�/�-�-�'�)�/���(�"�(�0�+�+�)�(�6�.�'��3�2�.�$�#��:� �+�.�#��!�.�&�/�3�#�5�0�*�/�1�,�.�#�7�/�0� �(�5�*�1�8��4��&�$�(�0�#�-�1�/�3�%�/�.�<�&� ��*�*�#�8�$�7�0�0�.�/�4�6�6��'��)�0�3�'�.�0�2�.�.�3�'�*�2�0�,�*�*�*��3�-�,�&�-�#�1�1�'�+��4�.�&�3�%�:�8�$�*�3�"�?�0�'�,�,��3�,��,�2�4�%�2�'�*�+�*�3�&�+�'�1�9�,��2�/�:�%��+�+�4�*�&�4�!�9�'�A�0�=�%�.�/�2�6�(�1�8�"�/�)�8�.� �+�8�)�3�3�1�(�3��)�"�*�3�1�1�;�#�&�@�)�.�+� �=�(��'�,�-�+�&�+�)�/�)��1�&�)�*�:�)�9�!�5�5�(�3�/� �1�/�3��5�-�$�-�-�-�'�"�)�4�%�/�'�+�4�%�-�8�/�#�2�)�0�-� �"�)�"�4�1�8�.�&�,�(�+�/�2�*�5�-�:�9�6�4�8�.�3�0�$�#�(�+�1�/�8�*�-�+�-�*�+�/�7�(���%��8�!� �6�-��*�*�5�'�/�5�:�&�5�,�)�&�:�5�,�.� �9�*��4� �2�(�-�+�5�2�-�5�/�1�'�1�3�3�A�D�C�N�?�^�m�������Ł�����܁��������d�U�P�;�I�L�8�/�6�4�2�-�-�5�'�2�-�7�/�0�<�+�1�$�8�&�4�5�-�&�6�;�&�0�-�)�/�)�1�,�*�-�8�3�3�9�*�9�2�.�1�/�/�5�(�-�8�6�4�'�/�<�%�2�'�)�:�?�(�"�׀׀րـڀԀـ׀ۀȀ΀ـπـ؀؀ۀ؀׀؀׀Հ܀с2�-�=�3�0�-�+�9�%�;�"�2�/�*�*�0�)�(�5�(�*�7�.�$�#�/�,�/�0�2�*�*�:�$�3�-�7�5�&�'�<�1�,�*�:�:�-�2�&�&�/�1�2�"�8�'�-�2�6�3�/�3�%�1�$�&�8�+�7�.�-�4�1�.�3�$�,�.�*�(�A�,�/�$�,�5�1�.�,�>�%�.�*�1�-�2�/�)�9�4�/�'�.�"�$�(�,�9�+�/�!�(�-�+�5�5�/�&�4�4�(�#�2�,�%�:�'�2�5�:�+�-�)�*� �5�-�*�+�(�:�#�1�8�*�(�'�1�/�*�%�2�1�+�,�'�'�-�5�'�+�4�$�'� �#�7�4�,�(��-�(�1�3�,�<�1�7�-�+�?�-�)�1�.�0�*�&�!�)�&�+�2�-��1�3�)�,�8�%�2�3�$�2�(�%��/�!�-�.�&�"�)�*�*�(�&�%�&�&�(�7�'�6�"�4�1�,�+�-�+�+�&�/�0�.�7�+�0�*�+�"�+�7�.��)�1�-�-�$�1�3�'�.�0��*�.�"�+�"�6�+�1�&�,�0�-�2�+�0�*�(�,�0�#�+�,�)�+��%�7�0�2�"�-�"�*�(�%�*�+�/�*�5�4�0�5�0�$��8�5�1�/�#�,�$�.�D�(�,��?�&�'�7�'�$�'�1�/�8�,�'�.�1�.�!� �)�%�*�+�4� �2�$�;�"�A�0�-�1�1�2�)�-� �+�$�4�*�/��'�@�&�%�1�5�&�!�4�)�1�-�6�,�,�1�,�1�-�+�/�3�%�8�9�7�2�(�!�)�2�7�)�6�=�:�2�'�+�+�/�+�2�'�+�<�%�,�=�3�1�+�>�(�#�&�$�6�>�8�0�E�3�E�G�R�]�z�p�����ā��D�2��M����������x�d�H�D�@�D�F�I�7�-�6�4�9�"�4�4�%�,�7�/�0�4�!�9�7�5�4�-�,�9�:�-�*�2�.�)�*�1�/�:�.�2�-�/�6��'�)�&�'�-�*�0�&�.��1�/�!�,�,�5�1�*�5�3�0�2�/�%�؀ــ؀Հـ׀րӀǀррՀրրրր؀Ԁ؀ր׀ՀӁ4�)�4�+�0�#�@�2�,�<�,�'�*�4�0�.�-�.��$�.�3�0�#�!�2�1�+�/�.�'�%�/�/�<�,�#�#�#�&�&�0�/�8�$�,�4�!�3�'�%�-�-�6�)�/�.�6�0�-�G�0�=�$�+�*�1�7�4�-�2�1�)�0�/�/�3�%�)�8�;��1�6�+�,�,�4�+�3�%�/�5�%�4�(�.�0�1�.�:�$�)�/�)�.�.�.�-�4�/�*�(�9�5�"�1� �'�(�2�4�8�/�.�)�1�-�*�1�/�4�-�:�.�&�%��'�/��/�'�/�/�%�3�$�'�,�6�6�1�0�5�)�&�'�?�%�#�+�!� �E�/�.�#�.�2�&�1�#�%�(�4�-�&�(�+�1�/�"�$�:�/�&�0�'�.�)�7�+�+�+�)�1�1�.�*�,�/�-�0�0��,�1�,�'�!�2�;�1�+�,�.�-�&�"�)�(�/�)�0�$�(�2�'�&�*�&�'�0�(�)�*�8�)�+�%�*�,�-�2�6�,�$�,�(�&�&�#�+�,�/�*�3�*�A�2�/�3�)�/�.�(��+�"�*�8�/�&�/�+�0��,�<�0�'�,�2�1�3�7�1�'�'�:�1�4�%�-�-�(�7�)�)�+��)�&�-�,�.�+�0�+�7�2��/�.�/�*�4�-�-�/�'�-�3�.�'�:�&�%�,�.�/�/�#�'�2�2�&�(�/�)�"�0�-�$�$�7�5�/�3�4�$�1�*�+�3�"�)�1�"�)�6�#�0��*�)�/�6�'�0�'�%�)�7�&�"�.�'�,�*��2�%�.�-�2�+�)�5�&�#�2�(�&�&�'�5�?�"��!�-�>�1�-�8�;�#�7�E�-�3�0�&�0�2�6�0�;�*�>�D�E�X�W�d�u�����߂�F�����������E��􁒁{�j�U�X�S�:�B�3�1�8�6�-�+�*�+� �-�1�)�&�(�)�&�.�3�+�'�5�'�'�*�-�'�-�1�*�&�+�(�,�7�2�(�+�.�6�<�$�+�0�-�2�,�9�(�4�,�/�2�,�3�.�+�?�)� �)�)�&�)�׀ҀـڀրۀՀӀ؀€؀ـӀڀՀԀҀҀӀրрӀ؀ׁ)�.�4�+�(�-�9�'�/�7�<�2��/�.�.�&�.�)�/�.�0�#�*�2� �*�/�<�,�5�-�'�*�+�3�9�-�,�*�>�$�:�)�-��2�0�#�2�1�0�.�&�*�0�2�*�(�&�7�3�)�'�;��.�)�(�(�3�<�%�4�0�0�,�6�+�,�,�-��2�'�*�*�5�)�)�!�$�5�-�/�,�7�7�"�8�)�#�-�,�6�-�3�2�'�/�'�%�.�4�3�1�3�'�)�0�(�;�*�(�"�)�1�(�2�,�"�#��"��$�*�*�%�)�$�'�&�,�5�"�0��+�)�#�(�'�7�0�-�%�/�9�,�*�4�-�0�4�<��+��/�*�/�"�,�0�$�&� �7�+�"�&�7�%�5�%�5�$�1�3�.�"�*�/�*�*�?�>�6�*�&�.�"�1�E�)�,�9�8�1�,�7�5�1� �,�0�3�/�$�9�%�#�*�3��#�+�&�,�/�'�*�'�,�'��'�&�&�;�;�(�+�'�&�,�&�3�/�1�-�)�#�)�(�$�6�3�-�B�4�'�.�;�(�#�%�$�!�+�/�-�.�+�'�'�'�-�1�%� �0�;�>�%�1�$� �'�'�*�8�)�'�2�,�:�0�+�.�.�+�(�)�>�.�/�%�)�1�/�+�6�*�%�"�(�6�#�&�7�/�!�8�/�/�3�)�*�)�2�,�,�+�/�,�%�+�4�(�1�'�:�(�9�/�5�*�%�-�%�)�&�6�'�'�(�/�-�5�/� �2�&�%�.�/�-�)�-�'�$�9�/�(�5�*�;�-�1�1�5�.�4�4�4�.�-�.�1��#�9�,�-�0�5�D�9�3�0�/�1�3�$�-�.�6�4�*�0�.�6�/�,�)�2�0�B�9�/�3�E�W�T�m�������Z����O�J�`�&���k��偡���j�J�D�>�7�?�;�1�;�<�+�@�:�*�4�(�)�3�+�'�#�!�-�0�+�-�%�!�5�9�)�4�7�(�*�2�$�.�0�0�3�/�-�+�$�,�9�4�9�1�2�(�%�%�(�:�0�!�,�0�;�2�2�5�1�/�'�%�ۀՀ׀׀׀׀ڀـҀĀـրـ؀ր׀ЀԀ؀ЀՀր׀ց-�<�-�(�.�9�$��,�4�-�9�#�1�.�0�-�:�"�'�&�9�,�8�2�2�,�9�%�&�3�/�&�7��&�!�;�,�%�%�(�!�4�:�#�6�.�-�8�(�?�2�5�/�8�>�1�3�)�*�/�,�'�&�0�)�0�$�(�!�*�7�'�1�1�*�"�+�,�"�-�+�9�*�+�1�2�.�3�"�+�'�3�)�8�)�/�#�'�$�0�$�)�2�/�3�&�5�&�)�'��1�4�5�-�%�)��:�+�,�3��-�+�)�9�#�/�.�9�3�%�;�5�'�'�<�4�3�6�'�&�8�2��4�.�.�#�8�$�2�.�,�+�)�1�%�/�$�0�*�:�.�*�.�/�-�1�4�'�*�2�'�#�*�+�8�3�6�/�*�(�-�*�-�.�'�2�)�/�'�0�!�*�)�/�"�+�'�&�-�+�,�)�/�)�-�+�3�5�0�:�,�1�2�'�5�-�5�;�)�/�#�#��"�"�.�"�#�1�-�-�#�*�'�"�+�"�4�2�*�7�,�3�&�"�0�$�$�,�/�*�3�*�$�+�"�%�)� �0�2�(�.�%�*�0�2�"�#�2�-�.�,�(�1�0�'�;�(�&�0�$�%�;�+�-�5�'�%�+�)�%�3�+�,�)�4�1�,�-�4�'�1�1�!�)�5�*� �+�!�&�)�/�-�#�9�7�)�$�'�-�-�7�/�/�/�-�-�5�(�$�+�+�/�-�(�#�*�+�#�/�+�/�5�&�'�3�(��+�%�)�1�-�5�,�.�2�-�4�9�2�/�(�&�!�+�,�+�%�&�.�)�)�5�/�/�,��-��$�)�0�?��0�+�"�+�.�'�-�1�5�,�'�)�-�/�.�,�4�:�2�,�9��*��6�-�3�?�I�F�R�P�Y�����ǂ�_��K�ڄ�Q����n�߂e������a�S�C�S�A�7�-�3�:�6�/�/�3�(�+�0�(�'�9�$�/�/�3�'�2�(�/�&�)�"�/�&�,�5�(�*�*�,�-�'�&�4�#�&�6�/�(�>�0��/�7�4�#�3�0�/�)�6�0�-� �-�4��1�(�*�؀Ӏ݀ԀҀ؀؀Ӏ׀̀΀ـҀրـҀ؀؀րڀԀ׀πہ(�.�)�;�(�/�+�.�5�1�(�1�;�+�D�2�+�&�1�.�%�A�3�.�*�0�"�,�)�4�1�0�-�$�#�*�,�(�0�3��;�-�-�.�"�-�;�,��,�/�%�&�$�.�2�2�-�-�9�2�-�*�#�-�:�&�,�8��/�*�5�)�!�"�5�+�)�-�#�*�0�,�2�8�+�7�+�,�$�$�5�6�1��!�'� �)�#�+�'�/�/�2�$�+�-�,�%�/�,�5�2��&�)�/�4�+�,�D�-�-�(�0�-�8�,�.�)�6�/�3�'�*�"�2� �"�,�4�-�-�(�2�.�0�-�*�1�%�;�)�%�1�,�+�8�#�'�0�4�9�3�-�1�-�%�.�$�)�/�5�%�(�%�-�&�$�)�1�/�-��0�'�0�)�1�6�2�-�'�)�-�+�%�3�0�(�(�)�!�#�,�&�-�/�%�.�*�-�&�!�(�+�&��3�4�%�,�1�)��.�*�+�'�&�)�/�0�'�5�)�+�+�5�'�"�"�*�-�%�9�3�*�&�(�'�/��+�4�&�,�0�!�(�,�/�-�(�)�'�4�'�$�$�5�/�)�%�+�1�+�2�/��+�7�4�$�$�+�,�'�.�;�6�6�+��5�&�/� �0��)�*�,�)�"�9�$�5�*�(�0�#�"�)�%�'�/�7�*��3�+�'�>�+�5�1�3�;�2�,�9��,�-��'�-�3�'�7�:�2�+�6�<�.�2�,�8�+�&�*�/��0�)� �0�#�*�0�(�,�.�1��&�)�-�-�*�+�"�.�*�4�!�0�&�!�)�<�$�+�5�(��0�9�/�'�4�9�=�=�#� �*�8�8�;�*�3�B�4�-�1�/�%�+�)�/�3�9�.�4�>�H�=�F�d�|������:���6�ۄz���S�� �[���;�ց��p�e�W�I�;�J�A�.�7�;�3�.�!�,�+�'�,�$�@�2�-�1�+�.�)�)�3�0�>�-�7�/�5�)�5�'�2�,�0�)�2�/�)�2�"�-�1�%�J�1�+�.�'�-�-�"�4�*�1�"�3�+�(�4�2�3�3�-�ր΀ҀҀـՀրҀ΀ɀ΀ҀӀـ؀ـԀҀӀӀ׀րڀց+�/�5�%�1�'�5�3�2�*�,�(�/�7�$�/�'�+�4�0� �-�1�1�0�'�>�.�!�4�(�8�4�7�-�0�/�'�:�0��5�I�%�)�)�)�9�/�4�)�6�+�:�5�+�&�&�/�0�(�*�&�/�/�'�0�'�%�!�%�?�3�!�)�3�6�0�9�1�A�"�3�+�:�-�<�"�,�-�'�&�)�#�'�.�.�,�8��"�$�.�0�'�8�1�,�=�2�%�)�%�.� �3�*�/�%�-�'�4�0�8�'�0�.��.�)� �.�3�)�+�B�5�2�%�%�0�1�9�0�(�6�5�*�5�0�/�2�.�'��)�/�%�#�.�5�%�(�0�2�+�'�(�"�)�.�2�4�!�&�(�,�.�5�&�&�5�/�-�<�4�,�8�&�!�,�*�,�>�<�2�0�'�9�+�-�6�*�)�1�.�2�5�8�3�0�2�.�$�.�9�-�)�1�/�(�,�%�)�.�)�(�.�"�,�5�6�(�,�;�)�0�.�+�1�(�#�.�1�+� �)�5�6�)�3�%�*�'�*�'�4�9�1�%�%�2�$�/�/�#�-�+�0�/�/�&�$�(�'�.�'�%�&�2��8�*�*�)�.��0�/�"�(�%�&�(�'�*�7�)�-�%�3�,�2�#�&�+�,�%�)�-�/�7�-�5�+�-�3�1�5�/�$�(�*�*�$�*�-�-�1�,�:�1�9�(��(�%�.�)�0�)�/�.�*�#�;�0�5�'�+�0�+�=�!�/�%�7�;�5�(�,�7�'�)�-�/�+�:�'�,�(��1�/�(�'�;�.�3�5�1�4�(�&�/�"�/�.�-�(�0�2�.�&�8�(�'��(�-�4�-��4�$�/�1�:�,�'�/�*�4�'�1�.�-�2�8�5�-�L�:�R�c�t���Ƃ�������_��������%�m����W������b�d�M�G�/�E�'�7�1�)�8�:�'�?�-�7�(�3�1�6�-�/�)�.�%�9�2�/�#�*�7�*�0�&�)�8�=�9�3�$�,�)�$�*�8�1�2�(�3�-�0�$�)�&��+�/�0�9�)�$�)�'�%�-�)�-�Հڀрр׀׀Ҁ؀݀ÀԀ׀Ѐրڀ׀׀׀Ҁـ؀Հ؀ځ'�"�3�5�,�'�=�/�1�-�&�7�6�8�5�-�7�1�3�)�0�.�2�?�)�'�0�*�)�0�3�5�-�5�%�(�'�.�*�/�9�/�-�-�'�#�5�&�+�*�/�0�(�-�%�-�5�3�1�=�'�9�+�)�'�%�3�$�!�!�/�&�0�3�&�$�(�,�)�/�(�+�$�)�*�3�1�)�/�0�3�:�*�.�+�,�8�'��'�-�2�?�%�+�4�$�,�0�$�7�+�-�'�3�1�#�*�9�.�)�-�'�+�/�8�*�F�"�4�%�(�1�/�-�'�6�"�2�)�2�)�2�0�$�.�2�(�4�/�&�(�*�(�2�+� �<�+�*�'�,�+�*�)�2�'�5�0�3�$�8�,�+�(�9�9�-�%�2�3�1�&�5�/�6�1�+�/�)�5�+�)�+�9�&�1�4�,�0�/�%�)�6�.�2�#�/�4�%�2�3�)�.�-�,�0�,�)�0�9�+��.�*�+�#�.�4��+�;�.�,�%��%�+�+�-�1�+�5�$�*�%� � �+�4�"�)�-�/�1�$�/�'�5�,�'�(�=�3� �%�7�1�:�2�;�+�#�/�0�$�*�)��+�1�-�'�/�$�.�5�/�'�/�)�&�3�*�$�&�,�4�%�,�5�2�*�0�%��+�'�-�4�7�5�0�5�"�/�)�0�9�,��<�0�1�3�/��1��/�6�8�'�0�4�/�%�6�-�1�%�,�3�/�8�)�/�#�'�-��"�(��'�:�'�%�*�,� �0�'�7�0�+�5�.�.��.�#�/��6�!�2�,� �%�)�/�-�(�+�*�'�/�<�#�6�%�#�%�/�1�&�0�5�1�<�,�-�1�-�&�%�.�+�,�(�3�@�6�4�0�2�7�.�6�2�E�E�e�^�v���ׂ,���=�턴�[��'�����������v�����}�i�W�S�Q�J�B�3�0�E�;�.�3�1�*�!�-�>�4�0�0�'�/�%�,�+�+�)�)�"�0�-�"�*�'�(�0�*�7�'�4�&�)�0�.�/�;�+�.�/�5�/�6�,�*�0�+�.�=�.�0�7�6�)�/�4�/��րրӀԀӀ׀Հրրƀـ׀ڀր؀Ԁ܀ր׀πրڀԀ؁0�1�*�1�6�+�"�'�%�5�3�6�-�2�4�6�6�;�7�+�<�+�2�4�2�'�+�(�/�@�'��&�)�3�!�5�3�;�7�1�0�/�1�,�(�5�)�:��0�1�2�$�0�#�+�(��$�=��"�9�'�/�,�-�%�-�1�:��#�"�#�+�&�&�&�*�'�@�%�,��.� �.�'�>�)� �$�5�,�+�2�4�'�4�6�*�,�(�$�.�%�)�2�,�.�)�1�#�4�3�+�*�&��)�6� �-�4�/��+�+��#�'�6�6�"�'�"�(�3�6�7�)�3��0�-�,�-�/�*�3�8�5�)�0�*�>�8�-�/�%�;�+�)�?�!�+�&�/�*�)�,�3�*�5�(�'�*�"�/�$�(�1�)�2�7�-�/�4�&�#�'�9�4�0�'�.�,�*��1�0�$��&�8�!�.�6�*�-�'�1�&��*�%�.�.�1�/�.�2��4�+�#�0�%��2�+�0�3�6�$�3�.�-�&�%�&�3�-�4��'�#�"���-�:�+�6�3�%�3�,�"�5�1�+�+�#�%�1�&�+�&�)�0�=�'�-�.�,�)�/�%�#�(�8��(�4�7�%��1�+�+�2�/�4�=�5�2�'�6�1�"�/�$�-�5�-�4�%�9�+�9�(�)�*�*�-�8�2�-� �1�-�:�6�,�+�.�)�0�-�.��(�)�*�3�#�-�-�4�.�.�,�0�0�(�/�(�4�'�7�,�/�*�*�4�!��/�@�-�.�9�+�*�'�(�'�*�1�)�4�6�*�3�*�+�%�7�&�'�,�,�-�)�)�+�*�-�/�'�)��-�'�'�4�/�1�)�+�4�2�1�+�%�6�+�'�9�-�,�9�=�2�4�,�K�4�M�N�K�Z�����������\��v��z��E����`�������q�[�J�J�<�A�;�9�.�2�-�+�:�1�(�5�5�9�3�3�$�-�(�2�+�7�(�#�#�/�.�.�.� �'�/�4�'�;�+�)�&�1�0�5�;�3�+�/�*��&�2�7�-�9��'�A�.�0�%�2�4�&�7�(�ڀ݀؀րҀӀՀրրʀրՀրՀڀՀӀ׀Ӏ׀Հ׀؀؁/�+�0�(�(�/�)�-�/�?�,�.�8�9�5�/�4�$�'�$�)�?�.�%�0�)�$�&�"�-�,�)�-�-�+�)�.�-�1�6�,�.�#�4�1�0�$�2�/�>�#�3�:�*�(�6�4�:�7�3��3��$�5�%�B�%�4�'�.�8�7�!�+�(�+�9�(�<�7�+�7�*�$�'�4�.�0�2�&�(�,��0�+�$�/�-�+�9�-�6�6�.�%�*��&�4�-�:�-�$�/�(�,�6�2�/�-�*�,�+��"��$�/�.�-�,�0�%�3�8� �5�3�%�'�+�7��1�1�)�,�'�8�-�-�!�.�.�)�0�#��)�2�-�3�*�&�2�)�'�2�8�&�&�+�7�*�+�/�%�'�/�/�6�,�0�(�$�+�-�%�*�,�'�&�(�3�*�'�#�5�$�/�!�+��9�&�'�-�+�)�,�-�-�&�1�,�*�+�?�+�G�2���/�9�3��5�'�3�(�"�,�'�-�6�'�(�<�+�,�+�%�+�%�4�2�*�"�+�%��5�2�/�/�%�.�9�5�7�%�)�*�0�0�&� �7�;�.�<��7�/�(�'�9�#�,�(�"�<�$�,�2�"�-�*�5�.�#�3�3�"�1�*�:�$�'�=�'�"�!�0�/�2�%�2�3�1�(�.�,�4�6�.�5�1�0�/�7�6�/�-�*�7�0��&�0�#�3�:��;�;�*�"�"�#�%�3�&�-�-�'�1�+�(�0�*�4�5�.�+�-�3�4�1�-�;�0�0�0�)�/�*�$�(�,�/�1�/�4� �4�%�.�0�/�.�+�-�4�,�8�5�,�+�*�/�%�9�%�?�$�"�0�)�-�-�2�,�1�/�-�%�;�1�6�/�;�:�<�3�6�(�8�P�7�O�R�]�w�����0�e���m��n�����j��=���S�끹�w�e�e�G�8�9�G�1�0�C��7�1�?�0�6�7�1�;�)�@�#�(�-�(�6�7�5�1�8�+�2�-�(�3�5�'�.�%�5�,�*�-�9�#�3�;�/�,�*�/�.�@�7�1�6�0�'�%�9�=�8�A�'�/�"�-��ӀԀـ׀րԀـӀӀÀրՀ؀׀ԀӀـԀրӀ׀ՀԀف+�+�*��-�.��/�5�0�&�'�1�-�-�*�+�6�,�(�+�1�6�)�1�2�!��1�+�$�)�1�3�/�-�2�6�'�7�0�8�5�)�,�.�+�1�!�%�&�0�0�'�7�0�2�E�1�+�.�5�+�,�0�9�-���3�'�2�'�2�!�0�&�8�'�3�!�/�)�$�-� �7�$�6�)�5�0�+�!�)�0�1�'�&�*�2�2�:�/�'�0�2�/��,�+�3�)�'�%�1�(�1�'��*�$�/�.�/�1�+�+�$�/�(�<��%�,�:�1��/�)�.�%�'�*� �4�3�-�,�*�0�$�;�.�-�+�=�/�3�,�'�,�4�*�&�&�*�!�(��*�*�1�6�*�/�*�)�,�7�3�#�&�5�/�&�0�%�%�9�.�(��(�+�2�'� �>�)�7�/�)�.�.��'�&�1�(�5�-�1�9�3�>�,�%�/�,�,�5� �"�'�+�"�*�+�'�*�'�;�*�5�7�3�&�+�/�/�2�(�-�+�"� �/�4�&�+�2�,��8�-�0�.�5�5�7�4�)�6��#�6�3�$�'�!�4�2�5�=�2��/�4�!�5�2�4�0�'�$�)�+�+�,��&�'�2�-� �2�)�,�)�(�=�"�-��/�&�5�/�!�4�-�-�!�*�:�7�-�*�7�7�H��,�/�*�+�4�'�.�6�/�1�(�.�5�,�*�"�"�0�5�0�,�*�3�1�/�!�'�3�,�!�7�&�(�+�+�1�-�*�#�3� �4�6�)�.�(�+�9�,�-�*�7�2�3�/�7�$�0�0�"�&�:�/��'�*�;�8�<�-�8�/�$�+�5�)�1�.�-�%�,�$�&�1�)�%�/�&�)�-� �,�3�.�6�6�<�&�A�O�N�n�|������2����O����� �/���R��q�1�ˁ����d�N�H�4�B�5�=�-�9�2�%�-�>�*�3�/�=�5�+�;�5�-�-�6�-�2�'��6�+�/�1�3�1�1�+�4�&�/�+�-�)�3�6�&��(�,�3�0�-�/�9�(�/�.�*�(�:�-�2�$�$�0�1�(�,�ՀրԀۀրՀրҀԀƀۀԀـՀՀ׀߀׀݀ՀЀ׀Ѐ؁3�*�)�0�'�0�4�9�+�-�9�-�9�)�/�,�-�+�)�)�*�6�&�:�;�3�2�3�-�0�3�)�&�2�,�'�)�)�%�+�!�6��0�1�9�%�3�:�,�1�'�(�:�.�6�*�"�+�/�>�/�0�0�6�*��/�+�+�-�2�/�2�2�0�/�2�+�(�(�<�#�*�(�,�,�-� �&�)��-�(�/�3�)�+�2�9�4�/�%�%�-�+�)�9�5�+�$�!�6�;�)�'�#�/�1��,�.�.�1�/�=�)�*�/�-�#�%�&�1�#�+�(�8�2�6�1�/�'�)��7�.�-�*�,�#�/�*�4�:�*�8�'� �#�(�&�/�4�-�4�(�1�8�/�+�*�!�-�/�#�,�-�.�"�%�:��-�+�:�:�5�1�2�(�!�0�,�2�%�/�,�2�&� �,�)�0�/��>�*�(�9�3�)�%�5�&�(�/�*�(�/�1�.�2�!�&�5�%�$�1�9��+�!�,�.�-�7�1�'�)�-��*�0�&�+�3�/�(�%�4�&�1�7�.�-�*�"�#�4�/�+�/�(�'�.�4�4�:�7�:�%�-�#��0�/��/�4�2��/�3�-�)�+�/�(�%�,�-�.�+�*�+�6�&�$�2�/�6��.�4�-�4�6�@�4�'�5�(�2�-�.��=�:�E�,�6�;�3�2�3�5�3�0�+�)�*�%�3�)�.�7�,�/�)�.�:�/�2�&�/�1�E�)�3�7�2�+�-�"�,�3�1�7�(�)�'�&�'�6�)�+�+�0�)�&�,�-�+�#�3�.�/�*�"�)�3�%�&�5��1�'�0�1�7��4�)�+�"�B�(�)�0�*�/�0�*�&�,�.�!�-�;�2�'�4�%�+�$�3�,�>�4�9�C�@�7�J�v�k���ҁ��F�����)�)�B�?�����h� �������p�c�G�M�@�N�A�7�/�.�&�:�*�+�.�/�2�5�/�5�"�3�*�&�,�-�/�&�5�0�0�(�/�&�/�.�6�:�(�9�*�6�%�*�+�.�-�,�*�<�,�!�@�8�3�;�&�4�6�:�6�.�8�&�/�(�5�)�ـր׀ՀԀӀـԀҀŀԀրՀրҀҀ׀Հր׀Ԁ׀ڀ؁/� �5��3�7�)�5�5�#�1�8�<�0�B�-�/�6�0�:�/�,�2�-�2�4�3�7�(�*�9�)�*�5�1�/�7�'�(�"�.�(�3�?�*�%�(�$�(�.�3�+�.�/�2�:�*�.�:�.�5�!�.�!�*�*�4�+�4�"�'�)�'�,�-�&�5�4�+�1�-�*�2�%�)�/�-�2�0��3�/�)��-�0�5�*�(� �+�-�(�/�.�#�$�#�+�4�3�3�'�,�+�&�-�,�5�*�#�-�)�#�-�<�,��9�&�+�4�(�5�)�(�1�(�/�/�2�,�#�0�+�/�6�"�4�)�'�/�3�)�,�.��/�.�-�(�4�#�,�1�)�.�%�!�#�:�5�2�(�)�+�.�9�7�2��'�&�-�%�*�,�%�-�3�,�1�"�$�4�&�@�-�/�"� �/�/��2�+�,�1�/�5�.�3�-�/�'�.�-�3�%�&�+�(�6�4�+�+�6�3�1�9�.�'�2�/�/�&�9�*�,�+� �-�D�&�+�)�(�:�,�4�"�B�/�"�&�'�+�*��=�>�'�,�(��5�3�)�'�2�'�5�4�.�'�&�+�(�2�/�)�4�?�&�#�0�*�&�6�6�(�.�!�2�2�)�1�)�+�1�8�5�7�(�2�"�1�,�8�-�*�&�7�.�2�A�;�C�Q�?�8�6�9�+�*�@�,�/�#�8�/�(�:�4�.�.�.�,�%�:�0�%�)�2�#�9�8�+�1�*��1�"�,�8�(�/�*�6�(�/�.�'�'�,�)�'�&�-�1�/�)�*�.�-�*�&�/�)�.�6�0�5�/�*�2��&�0�-�&�0�6�+�/�*�$�7�-�:�-�4�0�4�+�5�7�)�0�)�7�)�+�/�'�4�'�2�1�/�*�?�F�.�[�P�b�����ʁ��+�M���������r�c���ځǁ��z�j�P�K�:�@�;�2�4�9�:�-�C�.�0�)�3�8�5�-�5�?�,�.�2�1���*�:�*��%�*�1�/��3�/�'�1�+�+�/�2�9�%�-�2�+�/�'�2�*�4�-�5�6�6�(�?�8�3�(�8�1�1�!�'�׀ـҀ׀׀ڀ؀؀ՀŀЀӀ؀ҀڀԀԀ׀π݀ր؀ڀׁ1�2�+�#�:�7�,�'�9�*�5�3�,�7�2�-�$�2�+�7�7�-�5�6�,�A�)�)�4�9�6�%�$�3�5�*�'��8�*�;�5�0�0�3�7�#�-�5��/�-�"�8�.�%�.�2�5�5�*�)�+��.�.��)�+�'�9�6�� �0�-�"�-�,� �0�-�'�+�%�0�"�3�0�8�.�/�%�-�1�"�0�6�(�,�/�8�1�@�;�3�3�-�'�.�/�!�3�*�4�/�,�+�4�)�)�$�.�,�*�2�#�4�/�0�(�*�2�.�'�-�8�&�3�,�-�1�-�&�-�'�%�(�/��0�'�&�/�1�4�(�<�2�'�6�+�5�2�)�6�)�)�(�"� �:�-�&�8�$�,�3�%�4�(�'�+�)�'�.�5�-�#� �*�.�)�#�3�%�!�"�2�0�-�(�'�.�+�3�,�=�$�0�0�-�,�&�)�3�&�,�4�2�1�7�+�)�)�)�+��2�/�(�.�,�D�$�$�&� �%�$�;�%�.�'�5�:�3�3�(�+�+�$�6�)�*�=�8�9�/�*�#�4�)���#�!�-�0�=��.�'�#��,�(�0�+�/�/�(�*�*�/�/�5�0�2�+�.�(�,�+�*�4�5�.�5�1�#�0�<�0�&�-�+�"�(�-�3�.�0�1�2�:�7�D�E�1�>�=�/�9�1�-�2�3�-�%�(�*�7�.�5��4�,�$�8�(�/�-�/�4�)�+�!�+�.�!�0�7�2�&��+�+�0�2�2�4�?�+��*�/�+�*�5�5�4��/�.�1�*�!�/�0�'�'�%�/�'�*�)�%�-�&�0�0�#�+�7�/�-�+�'�.�'�,�-�+�,��-�2�3�)�4�.�.�4�8�,�0�0�$�7�<�3�5�L�A�I�W�i�����ā�ڂ���;���Ձ������p�r�^�Q�E�D�:�7�4�>�6�.�7�.�;�)�-�.�*�'�-�&�5�)�:�,�/�2�#�-�=�0��/�(�/�/�7�'�,�#�%�1�2�#�,�3�+�#�8�$�9�.�7�-�/�)�!�1�!�-�4�%�.�:�.�1�2�0�րրՀۀЀ؀ۀրـȀրр؀ԀӀԀӀ׀рـր׀Հׁ3�#�5�0�4�6�.�"�$�9�(�2�6�3�'�(�0�:�9�#�)�,�6�.�)�1�0�=�2�0�.�0�&�#�9�1�2�6�2�/�"�-�0�,�9�.�(�8�.�-�;�/�4�(�=�6�5�5�2�%�-�'�+�'�6�1�)��/�*�/�%�1�+�1�%�3�,�:�1�5�/�4�8�*�:�(�/�1�+�7�1�+�1�-�.�1�%�+�-�(�5�+�)�$�.�/�4��%�1�4�+�+�3�6�!�)� �<�*�,�%��2�5�9�2�,� �4�/�'��,�3�2�"�0�%�,�#�5�,�-�(�%�/�2�2�/�1�!�"�/�'�/�-�/�6�'�!�:�/�(� �-�,�6�#�'�6�*�8�.�,�7�%�(�*�@�"�-�,�%�?��+�#�&�1�*�&�0�-�2�6�1��=� �2�+�)�$�-�*� �3�+�.�(�'�+�(�)�4�+�'�+�.�0�-�/�"�:�"�'�.�2�)�$�'�0��/�0�"�,�-�)��2�)�=�(�%�#�(�*�2�(�(�$�'�!�-�!�9�5�+�%�!�7�-�#�-�2�� �-�1�!�;�+�/�*�'�9�(�A�'�0�'�/�2�4�;�1�)�&�+�4�*�%�(�'�1�'�+�,�-�*�:�-�'�%�-�'�*�2�(�7�'�8�@�?�3�2�>�<�3�E�2�1�1�2�)�*�/�)�*�6�(�<�-�;�!�0�,�3�/�0�.�6�2�'�3�&�<��3�0�6�/��+�"�"�#�'�4�2�)�)�5�3�(�7�<�(�5�/�7�$�3�)�+�'�'�+�C�2�+�'�3�+�-�&�%��6�:�5�8�+�,�:�@�,�-�)�(�2�2�3�6�%��)�*�0�;�/�>�:�/�/�9�0�,�:�L�7�<�O�R�R�����������ρ؁��ā��������w�l�h�R�J�?�:�<�:�*�6�?�2�,�(�-�-��)�&�2�+�;�-�(�1�-�5��-�+�3�)�'�/��<�.�2�*�2�+�/�%�1�)�;�*�.�-�,�!�7�8�/�/�,�2�?�/�3�$�/�2�/�0�5�/�8�,�'�Ԁ׀Հрր؀׀Ҁ׀��ҀڀӀ؀׀׀ҀҀڀ΀ڀӀ؀ρ"�1�0�1�3�5�>�!�@�+�4�0�C�%�5�'�7�.�>�.�5�-�1�6�/�/�;�<�-�*�(�%�5�6�5�3�*�.�*�2�1�+�6�2�9�(�%�1�.�)�5�2�0�'�)�5�)�$�-�(�)�-�6�'�+�"�1�+�.�.�'�6�'�#�5�4�/�4�1�5�*�2�*�'�(�6�.�>�.�&�2�+�/�4�#�/�+�)�;�&�!�0�9�9�7�0�4�%�"�.�2�-�2�4�%�3�#�2�3�2�)�8�5�#�3�.�5�+�6�3�/�#�/�(�-�*��.��%��*�/�'�+�%�3�*�4�9�(�.�*�#�-�0�1�1�-�*�*�-�/�!�#�#�8�+�!�0�0�*��'�%�,�<�3�#� ��-�.�.�&�/�1�)�*�#�*�)�6�*�6�-�8�(�:�1�-�,�.�:�+�8�'�"�2�*�1�'�5�'�1�:� �&�+�1�4�,�*�-�-�0�-�-�!�C�%�+�/�5�/�8�'�-�)�7�,�1�.�&�'�)�,�-�'��0�/� �#�-�(�+�'�)�A�"�;�.�3��'�+�*�/�/�1�.�3�7�7�.�*�*�7�(�&�'�4�0�1�-�0�-�8�#�)�*�3�>�3�,�-�%�*�,�%�*�.�0�.�6�,�1�+�*�5�6�7�+�.�8�9�3�/�/�>�1�4�#�9�$�0�5�!�+�,�-�,��)�%��D�5�,�.�9�+�6�0�,�.�+�1�=�-�2��1�'�5�%�.�(�/�/�+�&�*�,�*�+�0�>��+�,�1�%�2�7�6�2�9�"�9�7�-�'�-�*�.�*�'�!��+�+��0�1�*�*�&�%�4�.�+�1�%�1�2�:�@�?�&��5�'�9�7�,�1�7�4�+�)�.�7�A�:�B�D�_�\�{�������������������p�}�f�[�J�?�A�F�.�=�*�=�3�1�$�E�3�7�6�/�3�1�&�9�#�*�<�2�*�0�+�7�#�&�*�5�'��7�1�,�/�&��5�/�%�4�3�"�'�/�)�+�-�-�#�&�*�4�)�)�/�8�6�&�2�1�/�2�5�2�ր׀ӀӀ׀ՀӀ؀ڀƀ׀ՀՀՀրԀڀՀ׀րـԀ׀ف5�,�2�7�(�4�0�1�)�4�5�-�(�6�)�9�6�6�5�%�+�'�:�-�A�9�%��+�=�1�2�*�'�-�"�&�'�)�-�+�,�5�.�5�'�&�4�+�,�1�6�2�&�+��1�$�%�3�,�$�4�,�5�0�%�+�8�3�3�'�1�,�1�.�1�)��/�,�.�3�%�7�1�$�&�*�2�8�-�2�.�0�6�/�'�0�#�)�,�5�$�:�,�'�*�-�/�>�0�+�-��.�-�7�>�*�)�$�+�%�(�3�'�&�� �0�/�(�)�4�)�#�,�+�#�7�&�,�$�,�'�=�'�6�&�+�&�/�'�/�5�-�!�'�3�.�2�8�/�0�9�5�7�)�#�+�+�)�)�(�-�:�1�2�/�.�6�&�2�1�1�%�(�/�(�1�+�!�-�'��-�6�*��.�#�5�3�!�*�-�/�(�)� �%�/�/�/�7�'�#�'�,�)�,�%�2�-�1�'�5�7�'�-�1� �3�.�4�*�2�(�-�0�!�(�/�-�0�*�#�(�(�'�,�*�/�.�.�4�5�&�(�)� �)�7�+�.�+�0�8�)�6�5�*�'�.�6�/�3�&�2�.�%�/�,�0�)�,�%�*�7�+�3�(�'�1�0�4�<�5�/�+�#�!�.�.�,�%� �0�/�4� �4�/�3�4�+�8�,�2�>�6�1�)�A�$�=�0�&�-�-�*�9�)�,�3�.�5�.�/�/�%��.�+�%�5�-�#�4�(�(�/�/�(�/�/�5�3�-�*�!�/�5�.�&�!�&�'�,�5�%�,�-�$�(�,�7��(�5�8��'�%�(�'�(�5�%�&�4�*�-�2�%�+�'�8�(�)�?�7�/�3�0�9�.�1�4�(�$�,�0�4��0�/�6�8�<�2�5�P�2�@�<�D�G�Q�i�q�s�x�o���y�r�q�V�Y�U�R�E�P�?�7�5�1�;�;�1�9�:�"�/�&�"�0�:�)�$�6�;�3�%�1�+�0�,�+�4�6�(�7�,�0�+�-�)�+�3�-�%�%�>�)�.�.�4�,�(�+�1��'�$�'�/�/�)�+�7�/�)�1�/�!�?�0�+�*�ՀԀ׀΀Ԁ؀؀րրǀ׀ҀـրҀــԀԀԀՀҀրց-�3�3�"�4�'�.�4�0�8�.�2��(�<�/�0�(�)�+�)�6�"�.�6�4�/�%�+�3�6�/�1�/�0�3�1�7�6�(�+�2�<�,�/�)�@�/�4�3�3�.�:�6�$�3�<�.�'�-�,�*�*�'�*�0�8�8�0�1�%�.�4�;�.�)�"�*�*�4�,�/�$�+�0�.�:�+�5�.�)�&�+�,�1�/�1�-�2�(�0�'�*�(�%�)�8�2�0�*�%�2�*�.�%�5�&�2�2�-�0�1��8�*�$��,�,� �=�/�0�'�.�/�0�-�$�+�&�)�+�$�-�%�-�(�5�3�%�3�0�/�/�*�/�3�#�-�'�+�2�4�8�#� �1�6�*�1�6�.��.�-�:� �5�1�:�3�0�8�+�1�1�/�$�+�0�1�"�*�/�5�"�,�,�/�&�#��1�8�)�.�1�1�6�'�2�+�6�%�%�-�/�)�'�2�-�2�0�,�(�8�.�"�+�(�;�!�5��/�0��0��-�*�-�6�2�?�3�-�-�-�(�'�'�%�+�"�/�0�+�+�A�*�$�5�/�'�7�/�,�:�0�&�;�*��*�&�-�.�)�*�3�0�)�4�2�4� �-�;�'�*�)�&�,�&�,�-�7�8�/� �*�*�(�5�5�7�0�7�0�$�,�:�8�'�0�/�/�3�?�,�1�'�2�2�/�/�0�$�6�2�(�/�$�6��%�&�#�#�6�%�*�5�6�9�7�)�&�9�3�0�%�+�*�0�#�$�7�'�4�"�#�+�/�0�.�+�7�$�)�2�&�*�/�0�/�-�)�,�3�%�$�-�(�*�;�-��5�(�4�/�#�/�4�/��-�,�7�0�)�#�)�5�0�>�.�*�.�:�1�1�+�4�8�0�.�/�+�;�4�6�=�?�Q�C�C�_�V�\�Y�\�]�`�k�n�T�Y�L�?�9�Q�B�'�/�6�>�*�9�%�-�.�1�,�'�6�)�%�9�1�4�8�+��.�.�9�>�7�7�*�)�6�2�$�'�(�'�;�"�6��&�+�D�2�0�*�1�'�8�8�,�1�$�)�0�3�7�%�7�-�+�*�)�1�2�,�3�րۀ׀׀܀ڀۀԀ׀ÀԀ׀݀Ԁ؀׀ՀӀπۀրրـց%�/�*�,�5�;�.�%�4��"�&�)�+�/�/�6�1�(�2�-�:�*�(�%�/�3�+�B�%�6�;�A�0�%�9�0�0�1�-�,�&�0� �1�/�2�/�"�2� �.�(�1�(�-�3�6�,�5�.�0�%�0�,��A�.�0�*�%�&�1�/�"�7�&�<�3�2�8�1�&�*�-�,�/�*�,�+�*�%�'�4�1�3�)�7�/�(�6�"�3�6�/�'�!�1�/�2�,�:�)�)�-�/�,�/�5�0�"�.�)��-�1�.�-�/�0�1��/�(�(�1�%��%�/�"�,�-�1�2��(�0�#�,�-�(�2�5�)�'��3�'�8�-�!�+�5�+�-�$�0�.�'�&�,�3�1�/�.��,�0�1�4� �#�+�$��-�%�3�7��/�&�0�.�!�,�*�1�&�3�2�%�$�%�7�2�-�.�*�0�/�1�3�%�'�*�1�)�)�(�)�2�*�'�)�0�.�+�9�5�1�%�!�6�!�;�4�!�*�#�!�6�2�7�7�;�%�9�4�*�-�'�+�8�)�-�1�+�6�/�-� �4�,��'�)�.�(�-�4�(�=�>�1�6�#�&�7�:�#�3�3�(�+�/�+�+�,�+�+�1�+�1�-�1�&�*�)�/�*�/�5�#�%�(�(�3�E�>�/�.�(�2�.�)�9�"�+�*�2�1�-�+� �.�*�,�#�-�-�-�%�9�5� �0�3� �.�+�/�4�)�+�+�$�0�+�-�8�7�+�"�4�,�*�%�2�*�-�7��2�/�;�,�6�)�.�9�'�#�0�.�2�.�'�'�5�+�'�,�(�%�.�+�/�/�'�*�+�-�+�1�,�'�8�(�1�%�1�-�*�)�4�+�-�.�!�1�/�.�+�&�=��%�!��0�/�?�1�=�I�:�R�Q�L�C�?�I�Z�_�Y�\�R�\�M�J�<�9�>�)�K�?�@�2�9�0�4�*�2�+�9�+�3�2�0�5�(�,�5�2�7�<�;�/�+�(�0�7�1�-�7�8�-�&�)�'�0�2�!�2�5�.�-�#�4�*�2�7�7�0�(�2�@�&�0�:�'�5�+�4�'�2�+�,�0�.�ـڀՀր׀Հ׀؀܀ƀ؀Ӏ׀ــ܀рր؀ҀҀۀԀԁ:�1�/�1�(�'�"�2�)�5�D�3�&�%�0�*�/�6�2��/�6�8�&�5�+�-�<�*�&�&�6�*�4�.�7�3�+�1�:�%�+�*�-�/�6�.�,�,�*�;� �3�5�%�*�4�7�3�'�+�5�)�'�0�'�'�0�-�-�-�0�#�/�'�9�3�)�/�/�/�%�6�0�$�2�.�)�3�%�0�'�/�0�/�+�,�+�-�*�2�,�'�*�.�%�*�(�0�7�*��%�1�%�-�'�6�2�/�2�*�-�*� �;�.�.�(�/�+�,�$�+�4�!�*�)�+�/�3�'�,�/�!�%�+�'�B�&�,�#�9�3�'�-�-�.�.�!�5�4�$�0�.�2�/�,�)�1�(�.�2�3�,�#�8�9�*�!�6�+�2�/�.�/�(�2�&�+�)�%�,�3�/�,�:�+��,�1�3�'�'�B�'�+�,�2��,�+�6�0�"�<�-��5�'�7�4�5�+�/�-�'�"�5�+�'�@�'�.�&� �*�4�,�5�-�4�.�)�>�8�+�*�7��0�/�/�'���=�'�!�+�!�2�1�!�3�-�+�.�/�9�.�.�+�-�&�$�(�)�'�5�#�'�#�*�=�5�*�-�+�.�&�'�9�3�!�$�*�)�%� �(�,�(�;�*�3�-�4�;�-�.�*�%�/�-�'�;�@�,�)�#�-�%�+�3�.�8�)�$�(� �)�0�)�2�+��2�%��3�/�*�)�=�(�%�0�4�0�+�/�.�0�(�&�*�+�.�&�.�*�.�*�*�*�;�/�9�+�/�.�'�=�&�)�*�,�0�6�2�7�*�5�!�&�+�-�3�1�#�2�*�+�%�6�,�#�*�"�/�#�*�/�1�"�&�4�/�0�#�3�1�4�4�0��3�+�0�.�3�4�<�5�=�*�C�/�2�I�>�D�C�S�=�<�J�S�L�7�E�>�<�F�7�9�1�?�3�0�$�1�#�1�9�0�-�/�5�7�4�7�,�3�,�*�5�)�1�<�1�(�6�*�5�0�,�>�:�3�1�-�+�-�/�5�!�)�6�7�/�'�0�=�*�7�*�7�,�1�C�7�*�2�8�,�,�+�/�#�/�؀Ӏ؀ڀԀԀԀҀՀǀ؀߀Ҁ׀׀ҀӀ׀؀ՀЀրՀ؁@�/�1�.�'�+�&�3�&�)�-�%�0�'�5�=�*�'�1�-�/�-�/�&�,�?�8�/�(�1�8�+�(�6�>�-�/�'�/�5�/�#�,�5�)�5�'�*�.�.�7�*�1�-�3�0�+�/�<�5�5�#�3�'�*�6�1�2�2�9�5�)�2�*�-�)�+�+�*�3��&�/�+�+�*�$�7�-�)�;�)�'�@�&�$�6�1�)�*��0�&�/�(�,�*�+�-�(�,�$�-�4�4�-�3�3�0�/�-�$�.�+�-�'�9�$�6�<�-�&�2�+�0�"�+�$�+�,�)�(�/�=�2�+�;� �(�(�+�#�0�+�)�7�2�3�#�'��-�/�*�&�9�.�(�*�)�&�+�!�&�#�*�(�/�6�#�,�1�9�=�(�%�4�"�#�,�"�+�%�&�'��&�/�.�&�'�.�(�%�2��!�%�0�-�+�;��*�9�'�=�3�7�3�.�2�)�-�(�+�.�+�5�(�!�1�5�9�9�)�7�2�;�)�&�4�6�%�+�"�4�+�5�6�*�8�#�5�A�+�)�$�+�6�,�9�/�6�/�(���0�.�:�3�$�-�/�5�6�-�#�*�*�1�*�9�.�/�#�)�&�'�!�)�5�2�,�.�+�%�/�2�5�:�/�7�1�%�(�-�%�.�!�#�*�0�$�+�+�.�6�+�,�9�$�?�*�&�,�*�>�)��4�+�C�*�*�+�,�*�,�-�,�0�)�1��9�+�3�-�&�$��'� �.� �*�'�3�#�3�*�3�*�&�5�)�,�#��0�-�'�/�6�.�5�"�0�5�+�-�#�2�%�1�4�%�!�$�4�(�1�&�-�9�%�-�)�+�%�(�.�/� �'�'�0�3�)�'�*�+�1�"��.�)��/�=�5�,�%�(�0�9�3�4�E�D�E�A�B�T�:�>�M�B�=�:�E�/�B�A�0�4�A�.�9�$�!�6�*�+�)�A�.�*�4�0�+�)�1�-�6�'�1�$�6�0�4�-�7�7�$�0�+�2�0�,�&�'�&� �@�-�.�1�1�.��4�3�'�1�1�(�*�.�*�0�6�8�2�1�0�/�1�7�0�׀րրԀـӀՀ؀׀ƀπր׀Ԁ؀ҀՀ׀ӀԀՀـՀҁ)�/�.�&�-�,�;�7�%�-�-�.��0�1�1�9�$��4�0�'�?�,�2�)�;�.�0�'�+��&�6�3�(�2�0�1�%�0�5�;�-�4�4�%�/�/�"��&�4�%�-�4�:�)�7�,�<�'�0�6�5�&�5�0�4�;�8�/�,�'�6�*�4�/�(�(�0�#�'�+�3�+�/�)�*�6�!�2�/�/�8�(�*�/�5�+�.�2�)�2�)�(�5�,�0�0�-�-�0��-�)�*�1�4�/�3�,�3�+�*�+�8�5�3�&�0�0�*�%�-�(�)�)�4�(�(�!�2�'�1�;�&�,�(� �7�/�:�4�:�3�!�2�'�.�/��0�0�,�0�!�5�&�'�+�+�A�%�%�+�7�1�5�"�%�!�%�,�%�'�)�/�+�"�0�.�7�#�*�4�/�/�-�(�<�2�A�2�"�3�.�(�(�2�0�6�0�1�1�"�/�3�4�0�-�.�-�%�7�-�'��'�(�!�7�*�/�1�;�)�/�1�(�'�2�4�2�#� �8�/�*�4�.�/�#�0�#�/�$�)�1�*�"�2�&�)�9�5�&�@�3�0�+�.�/�+�%�)�/�%�4�&�'�#�'�,�)�3� �$�.�-�<�$�=�0�)�2�*�&�'�)�9�#�*��&�(�%�'�1�5�+��2�/�,�4�-�%�3�#�-�.�)�'�-�6�,�"�,�,�&�)�'�)�8�1�-�,�'�+�%�4�$�5�+�1�6�*�,�4�7��@�#�'�,�7�)� �2�*�/�,�)�*�(�0�)�4�*�+�)�1�A�,�0�+�8�,��"�$�8�,�<�!�-�.�.�1�2�7�-�&�&�<�7�'�/�7�"�7�1�!�1�.�.�1�%�<�%�&�+�&�/��/�:�'�=�2�3�3�:�6�-�7�2�1�B�=�4�G�>�@�?�>�3�;�=�E�%�*�B�=�3�7�6�2�.�'�<�+�,�7�3�3�6��*�9�>�+�*�-�/�@�#�1�4�!�=�,�0�2�5�!�/�/�#�2�-�%�4�)�1�-�)�*�)�'�*�1�8�1�'�-�<�1�&�4�3�)�2�+�6��A�.�0�'�1�׀׀؀׀ӀۀҀ؀ڀĀҀ׀Հ؀рڀۀ؀݀ր؀׀׀Ӂ;�%�4�,�E�0�&�/�<�1�(�=�2�6�1�<�4�"�/�6�4�+�(�,�;�-�+�3�1�<�4�/�2�-�!�5�"�5�6�5�,�.�(�*�)�/�!�.�5�%�-�$�+��3�(�*�-�)�)�'�.�+�/�-�-�<�&�.�-�(�.�%�#�-�5�/�*�#�'�2�/�%�+�,��7�0��"�/�$�6�� �1�)�3�1�.�)�2�/�1�>�*�2�+�/�8�2�5�0�#�%�2�*�(�=�,�'�-�2� �'�"�)�1�/�6� �(�&�2�1�+�2�/�/�.�5�4��+��/�5�2�'�-�,�#�.�&�3�+�%��-�6�0�"�7�(�-�8�.�/�'�0�*�5�;�-�.�.�4�8�0�/�/�$�&�0� �3�/�5��'�'�(�0�,�%�!�1�-�/�=�1�0�)�1�'�8�(�#�(�#�-�4�)�<�'�)��3�%�-�1�)�4�)� �!��2�*�1�/�)�*�5�)�+�2�-�2�3�'�/�4�5�+�;�(�-�4�2�)�/�%�4�&�%�(�1�)�-�.�"�&�9�.�9�6�'�.�)�,�"�4�(�C�8�3�(�'�+�1�/�6�(�)�*�*�*�*�*�,�7�8�3�1�-�+�3�)�,�'�8�0�0�'�$��5�-�/�/�1�(�-�)�.�%�+�*�3�,�'�8�%�3�:�)�)�$�7�#�1�)�$�0�6�2�)�#�(�7�%�+�,�)�6�2�.�.�9�$�1�0�/�(�'�8�2�*�/�0�/�1�-�-�-�)�?�2�0�/�9�'�'�(�,�.�;�*�-�$�2�#�'�1�!�(�'�&�;�/�(�/�$�2�(�)�.�9�3�/�3�2��,�3�.��/�-�)�1�'�6�*�.�,�5�5�:�/�'�-�0�1�3�5�2�9�?�<�3�;�:�1�9�1�J�6�+�;�?�>�?�3�2�0�;�$�+�*�-�)�,�,�;�-�)�1�.�1�3�0�+�0�C�/�2�)�)�'�,�=�&�9�+�/�*�7�1�1�(�-�7�2�.�/�,�,�1�'�3�,�8�.�/�3�1�,�)�.�*�.�"�-�)�'�.�)�,�'�'�ڀ׀؀ҀҀԀՀ؀ԀŀԀ׀ՀӀ܀Հրڀۀ΀ՀԀـہ5�4�3�+�+�/��(�8�3�+�&�3�)�5�5�2�9�7�/�:�2�$�5�-�&�-�*�1�+�3�8�)�%�&� �5�6�6�-�+�2�8�3�<�#�0�2�'�.�-�#��+�7�'�)�-�,�.�4�,�9�5�)�'�-�-�)�(�,�.��'�2�&�,�&�<�-�.�<�0�8�7�'�%�*�&�2�1�<�(��3�&�'�(�-�;�3�-�5�6�*�*�*�E�)�&�+�8�5�5�.�'�1�/�+�/�.�$�.�0�2�1�2�+�1�-�4�8�-�-�-�;�2�(�@�/�.�9�0�'�8�(�(��/�)�)�-�-�&�,�#�<�=�+�2�2�*�=�1�0�.�'�0�5�(�+��3�/�9�7�(�.�:�1�#�+��3�#�-�+�(��/�)�*�&�&�-�,�(�%�-�4�.�/�%�"�&�1�/�!�5�-�'�*�0�@�:�,�.�:�)�+�+�"�6�(�*�/�9�-�-�,�5�(��0�2�!�+�+�4�+�/�,�-�'�+� �.�#�.�&�'�B�(�-�3�*�0�1�0�'�.�.�/�(�*�*�4�*�'�*�/�,�5�)�'�&�>�2�.�-�!�'� �*�#�-�0�/�3�8�/�+�(�.�&�,�2�1�'�%�-�(�4�+�-�2�/�,�:�7�*�-�-�(�4��+�/�3�;�0�8�'�%�0�+�(�"� �*�)�.�7�>�$�+�.�1�.�$�%�2�>�<�.�/�#�0�/�4�*�6�+�=�,��-�1�-�(�8�%�,�-�(�&�$�8�3�/�!�.�.�5�)�(�)�3�+�7�,�%�2�*�)�%�+�&�7�.�'�3�0�7�,�,�0�%�(�,� �;�+�"�0�-�-�&� �.�)�-�2� �:�+�2�0�;�B�3�3�2�0�5�;�2�+�+�#�?�)�8�E�5�@�9�?�7�7�2�)�5�=�2�;�/�(�$�(�6�4�(�+�+�&�=�1�+�*�&�2�7�5�8�3�!�2�8�7�8�9�4�%�5�'�3�!�3�4�>�)�4�.�4�&�*�*�/�+�.�)�9�+�/�6�(�5�?�)�3�9�>�0�'�,�3�2�#�'�2�4�ـՀ؀րڀ܀րрӀǀՀڀӀـڀ؀Ӏ؀րـր݀Ԁс=�-�A�-�,�1�*�*�*�+�.�-�+�'�*�3�)�2�&�*�5�6�7�-�&�&�.�.�4�6�+�/�9�8�=�+�<�+�8�.�+��,�>�)�*�7�1�.�&�*�@�7�3�3�0�9�0�.�#�/�.�.�<�#�5�,�9�0��2�3�?�.�+�7�'�)�,�7�6�/�0�/�#�.�#�*�-�4�6�-�-�!�1�5�4�9�7�+�2�)�9�1�+�)�-�(�3�/�)�*�-�3�/�4�*�7�!�/�'�+�'�7�-�4�*�+�+�$�6�0�(�-�-���*�*�0�+�3�"�:�=�)�&�$�0�5�*��,�;�*�*�:�9�'�.�3�#�/�-�/�/�3�-�'�,�6�&�&�!�#�3�2��.�1�2�!�.�1��/�/�*�3�%�1�-�'�4�+�/�"�"�4�-�1�!�'�9�7�9�'�/�1�.�1�4�*�3�(�.�;�4�0��&�!�/�"�-�)�(�"�8�1�*�/�"�*�)�%�-�1�!�1�2�0�&�<�&�.�%�<�'�)�%�+�*�'�4�0�/�=�.�&�0�5�3��*�(�4�)�,�-�4��6�)�2��)�8�#�0�3�'�-��1�5�"�-�!�1��3�$�,�6�5�5�2�:�&�.�$�.�4��+�"�0�1�*�)�*�*�5�#�+�.�)�;�,�'�3�0�7�3�6�-�3�.�5�;�#��'�)�2�6�(�7�-�,�!�+�*�0�$�)�+�(�!�%�5�&�0�,�1�0�,�*�/�6�$�.�+� �-� �8�7�'�+�"�/�+�3��+�'�1��7�-�.�0�/��4�$�=�*�$�.�<�1�+�+�#�6�$�;�3�=�8� �+�7�(�&�1�.�;�+�:�/�8�(�=�#�)�,�(�/� �,�5�B�6�:�&�3�<�3�.�!�/�6�:�:�/�>�.�:�9�4�4�:�"�:�0�6�1�4�,�0�"�,�4�2�0�,�4�3�5�/�!��)�+�;�1�8�%�)�6�=� �.�6�%�(�0�1�0�5�(�#�-�(�.�%�9�(�7�0�1�0�0�#�:�)�5�%�0�-�;�=�1�0�+�>�1�'�Ԁ؀ԀӀڀ؀ՀՀրĀրӀԀ׀ـڀրـڀՀ؀Ӏۀځ/�(�;�.�3�1�8�2�-�2�2�<�1�$�,�'�6�/�)�-�*�/�9�/�+�3�4�.�3�,�!�)�-�=�9�%�(�,�7�:�'�%�3�A�)� �,��3�,�,��'�)�)�,�(�(�=�.�,�8�.�)�8�-�7�%�4�.�/�8�'�+�,�(�/�$�(�,�/�4�+�-�4�/�,�"�)�(�/��1�$�'�&�(�/�#�6�7�+�)�5�/�3�/�2�:�$�0�/�7�;�*�:�2�4�/�0�$�+�0�.�+�(�(�"�3�;�'�4�2�1�,� �1�5�6�(�+�7�*�.�/�'�2�'�-�*�8�1�,�*�0�"�5�'�&�+�5�)�/�+�/�!�#�.�%�%�+�-�3�)�-�,�*�)�,�-�;�*�&�&�)�'�'�9�/�$�$�!�&�5�)�(�8�+�1�&�#�)�(�&�/�'�,�,�*�/�4�%�+�'�8�0�.�/�%�0�*�(�4�1�9�1�1�(�#�$�(�5�+�,�.�-�)�.�9�"�2�-�&�)�#�4�/�'�1�/�+�.�0�3�.�1� �3�$�+�/�;�"�3�0��@�@�/�'�+�2�.�:�"�(�5�.�-�5�,�1�6�/�%�2�+�8�/�6��0�/�'�-�'�1�4�.�,�-�0�!�9�,�(�)�,�:�#�/�2��4�5�"�/�*�3�)�$�/�.�(��4�4�6�3�9�#�-�#��(�&�:� �.�#�8�-�:�6�&�%�7�.�&�2�3�'�6�7�*�3�0�)�&�/�.�%�,�1�,�=�-�.�$�,�"�2�2�)�,�:�#�$�3�+�'�/�2�%�6�*��,��/�2�-�/�%�.�*��-�;�-�-�#� �'�-�/�&�+�1�.�2�/�0�7�3�4�!�<�2�$�0�,�*�%�$�?�+�,�6�;�)�(�=�5�4�.�9�;�D�/�+�9�5�/�8�4�/�'�3�2�,�/�,�6�0�?�-�$�9�(�#�.�.�7�1�6�"�(�>�.�5�)�%�9�5�:�!�"�"�2�(�&�4�<�+�+�*�,�/�+�7�'�$�2�)�/�<�1�!�0�+�$�/�/�.�9�4�1�4�(�:�+�ــ؀ԀՀ؀܀ӀڀÀ؀ՀـӀـ׀ՀԀۀՀԀ׀րׁ2�"�0�%�3�#�6�+�0�-�+�/�,�,�-�3�-�5�%�5�1�4�.�%�.�-�+�3�)�<�%�9�4�-�/�*�;�/�2�/�/�*�.�2�#�;�&�2�1�'�8�/�"�4�$�*�-�4�/�7�4�2�&�!�2�%�+�9�/�#�0�+�*�$�(�&�)�)�+�!�#�0� �)�0�4�7�3�1�6�/�/�-�5�0�,�#�1�2�7�8�/�/�(�%�1�1�&�.�$�$�/�/� �(�(�,�4�%�+�"�,�5�1�&�2�0�8�3�+�*�)�.�.�;�-�!�$�&�$�&�/�)�#�1�1�-�(�'�,�4�#�'�.�0�2�*�4�(�,�,�&�/�$�1��&�*�/�3�/�$�3�'�,�-�'�:�7�(�*�2�&�9�0�,�+�/�8�.�+�-�+�3�3�%�&�3�(�.�7�-�/�"�5�1�,�)�.�*�1�$��/�+�0�,�.�,�0�+�:�-�0�*�3�&�6�?�/�/�C�,�5�,�!�/�%�1�'�3�/�3�'�&�)�9�1�6�'�+�7�+�*�$�3�3�5�:�P�6�,�(�/�:�3�!�'�)�/��*�4�#�.�+�.�+�$�-�#�-�.�/�7�+�+�-�#�$�'�,�:�'�5�3�.�0�!�6�*�(��3�3��;� �'�5�+�-�*�9�,�,�(�(�)�#�/� �4�1�0�1�/�H�/�"�0�(�/�'�+�$�2�/�5�0�5�1�9�*�9�2�)�:�/�)�&�-�&�#�1�&�:�:�5�%�-�)�%�)�$�5�$�1�5��-�9�2�+�'�0�8�5�2�-�D�4�A�6�,��+�9�+�2�-�)�+�6�*�)�.�#�%�+�7�)�0�1�2�&�+�.�+�+�'�.�#�+�7�&�6�9�6�2�/�5�-�3�0�)�5�1�B�5�.�1�4�4�5� �*�5�/�)�4�5�.�1�,�B�:�1��8�/�2��4�3�%�"�'�,�,�4�?�9�*�4�0�1�.�1�#�7�:�-�&� �*�+�,�'�(�&�*�4�3�8�0�+�,�3�'�9�'�'�+�"�5�.�0�2�(�:�$�-�6�D�+�F�1�*�.�5�?�׀ҀՀ׀Ԁ׀׀Ӏ׀ʀԀӀԀ؀׀ӀԀր׀р؀Ҁրԁ&�(�&�-�+�.�'�,�2�,�!�/�/�'�"�.�3�.�'�1�.�B�'�'�%�(�0�'�-�3�7�0�,�/�*�,�.�0�0��-�0�)�5�1�*�3�>�;�*�$�+�)�7�-�6�&�$�3�+�(�6�4��3�0�%�$�?� �&�.�'�&�+�(�5�/�#�7�'��%�.�0�+�)�5�,�1�6�/�-��,�'�/�6�,�3�3�.�(�,��/�%�*�-�9�,�,�!�"�,�,�.�0�'�3�1�5�*�2�-��,�-�2�.��-�$� �1�)� �1�+�<�1�$�)�1�+�2�&�3�1�'�+�,� �1�,�/�-�/�.�0�$�;�&�4�5�!�+� �3�1�6�,�1�'�%�#�.�%�4�+�#�/�)�%�2�"�%�.� �(�.�9�&�&�5�)�0�.�7�!�.�&�&��*��3�2�/�0�9�-�+�,�2�.�*�0�3�#�.�/�+��3�+�:�$�1�)�,�7�#�;�0�-�7�0�)�-�6�#�.�3�6� �)�8�.�1�*�(�?�4�(�+�,�@�6�'�)�%�6�3�1�$� �5�&�%�)�/�+�/��*�5�)�A�:�)�$�#�3�&�&�)�-�*�#�(�/�2�&�7�3�$�2�'�3�;�5�9�/�0�'�/�+�'�-�%�� ��'�2�$�+�(�,�7�5�%�3�=�-�(� �5�1��/�2�)�+�*�4�$�-�/�&�!�7�-�2�+�1� �1�.�-�-�!�/�*�0�.�-�0�&�*��+�0�+�3�2�8�!�/�(�+�1�4�*�'� �)�1�%�5�&�+�6� �.�<�-�7�+�'�2�2�5�-�&�/�+�/�6�1�"�,�-�5�1�/�,�'�&�+�8� �-�-�1�9��+�!�/�,�5�?�5�0�'�7�/�-�.�'�4�5�,�&�-�+�!�6�/�4��,�0�-�1�2�8�/�1�5�$�+�+�2�(�/�#�-�(�'�5�-�-�0�?�)�/�+�.�7�(�3�/�"�3�0��2�&�*�&�:�.�*�'�7�/�)�-�3�<�:�/�'�-�&�0�+�2�&�-�"�)�3�/�7�#�0�,�5�׀ՀԀ׀Ԁـ׀݀݀ƀ܀ՀـԀҀՀ܀׀Հ؀؀ՀԀځ#�4�,�0�%�)�*�3�0�.�'�/�-�0�/�1��1�'�5�7�+��0�+�0�C�'�(�)�&�2�7�)�=�4�/�4�:�,�=�)�+��+�'�)�6�<�1�(�+�(�7�+�1�)�+�0�+��-� �'�,��"�/�)�(�)�,�3�6�+�-�3�-�0�;�*�6�8�1�3�2�#�1�)�4�.�+�1��&�,�:�;�0�3�'�'�*�,�$�'�6�'�$�)�/�0�&�"�'�,�0�*�-�.�%�*�)�=�-�+�*�%�(�1�(�-�0�5�*�)�+�;�*�&�9� �-�(�!�?�,��!�6�/��)��#�2�.�3�0�7�/�5�*�<��!�'�*�5�%�+�-�"�(�)�,�+�<�+�)�/�-�1�!�,�-�3��)�9�)�'�4�2�5�*��#�4�-�6�8�*�'�(�;�0��-� �1�#�+�5�(�%�+�5�1�6�(�0�1�.�1�,�)�1�*�D� �%�*�$�3�2�:�1�+�/�*�)�+�-�%�@�-�!�7�)�0�5�-�1�2�'�.�0�3�4�,�(�%�0�+�6�<�-�%�)�&�)�2�1�+�&�#�%��%�/�&�9�0�)�-�1�&�=�1�1�0�$�1�,�1�?�7�#�*�C�6�,�:�*�8��D�,�(�"�����9�%�)�.�'�1�.�)�-�'�-�0�%�)�-�0�6�/�9�)�%�5�0��4�%�#�+�8�;�2�)�%�1�*�%�3�0��.�3�"�3�1�0�,�3�$�5�+�5�"�#�0�;�,�0�*�;�-�-�'�(�*�+�%�/�1�(�-�9�/�6�3�3�.�)�4�*�/�1�/��2�#�&�$�?�+�/�0�1�.�)�+�.�*�/�4�#�3�3�3�1�3�+�+�:�=�$�0�,�2�;�'�6�5�B�*�7�9�0�1�$�/��-�4�1�9�1�-�0�%�:�>�1�1��1�H�1�3�4�.�7�&�0�7�/�8�*�0�)�,�:�-�,�9�/�/�*�4�&�)�/�'�'�+�.�1�.�&� �%��)�*�-�-�3�-�#�,�(�3�-�*�/�6�,�0�(�!�1�+�8�'�؀ԀӀӀՀր׀׀ـĀԀҀ׀րӀԀڀրҀԀԀԀހҁ4�$�4�$�+�4�.�'�,�5�)�4�3�+�;�+�/�*�,�'�(�<�(�'�%�:�$�9�-�-�9�-�1�:�<�6�#�'�1�&�3�1�5�2�(�,�&�3�)�0�)�0�9�2�1�9�/�2�(�2�0�)�,�8�(�2�1�&� ��6�'�#�+�&�.�,�3�)�,�,��+�2�7�2�*�7�9�-�!�(�)�3�C�7�:� ��,�-��+�,�(�0�4�5�-�5�,�,�7�,��4�-�#�4�/�8� �/��:�3�'�+��3�5�;�/�/�1�'�)�4�4�-�$�/�1�$�*�2�%�.�5�'� �*�1�5�0�+�.�'�.�>�+�)��)�7�/�!�,�2��.��6�*�$�'�.�'�/�!�<�3�3�3�'�&�6��.�.�5�.�'�!�/�8� �4��7�"�+�3�0�+�.�2�7�9�*�*�)�"�*�(�1�7�3�:�1�/�-�1�3�,�9�3�'�(�&�.�(�1�+�.�+�2�)�*�1�/�'�*�*�'��'�-�!�-�;�)�0�1�$�;�=�+�=�1��'�'�)�#�:�2�-�%�.�.�+� �-��-�-�-�,�-�&�"�%�)�'�1�)� �1�)�$�(�&�%�,�6�+�<� �/�5� �-�4�%�$�-�+�/�&�2�*��-�>�+�#�4�(�(�,�#�)�.�2�1�/�'�,�%�6� �/�*�0�"�$�/��'�1�4�!�;�(�)�3�.�*��'�9�(�(�$�6�-�1�:�2�6�7�-�4�-�%�-�/�5�3�&�0�0�5�"�+�4�(�5�(�#�2�.�5�(�0��#�)�!�1�.�4�/�'�,�3�+�"�)�;�'�-�+�/�(�)�0�$�3�2��1�0�"�*�*�"�2�)�#�&�.�/�0�&�+�/�+�,�(�*�1�7�,�<�&�4�+�7�+�!�(�-�-�7�;�;�/�.�+�:�'�(�'�;��.�0�1��'�7�4�/�1�9�1�8�3�+�/�/�6�0�!�3�$�,�6�!�1�,�*�1�,�#�8�0�;�>�0�7�5�0�.�2�%�2�7�9�!�-�7�1�1�@�(�-�4�,�5�ԀπՀـڀՀــހɀՀԀԀր׀րՀӀՀԀ؀рրց9�(�4�2�1�(�$�'�A�/�$�(�1�2� � �&�;�=�/�7�-�2�&�8� �:�'�@�2�.�)�8�/�,�'�/�!�/�/�7�3�$�C�8��*�/�.�%�,�0�7�9�1�"�*�.�+�)�+�*�*�'�-�/�+�4�%�6�5�2�2�*�-�,�1�)�&�1�2�"�2��0�7�.�1�:�'�7�5�.�)�&�-�)�(�*�,�%�<�1�7�*�-�.�*�*�/�/�3� �+�!�0�>�&�)�/�3�/�(�)�-�/�$�%�'�0�)�0�9�0�2�0�(�#�#�1�/�0�6�#�2�)�*�:�)�)�-�+�(�+�#�/�)�3���+�5�(�2�@�0�(�&�+�"�*�)�9�-�&�%�'�#�2�&�&�+�*�/�;� �-�#�4�.�/��5�!�3�0�1�*�&�1�-�#�!�1�+�"�/�%�!�#�<�2�*�%�$�%�.�7�-�:�5�(�-�1�'�2�.�&�0�)�0�3�)�6�/�%�%�;�&�/�8�8�9�%�'�8�3�9�+�1�;�)�1�+� �0�3�8�/�2�/�5�4�+�.�%�3�5�2�A�(�(��&�+��)�)�2�-�$�4�#�)�5�#�/�-�'�2�0� �)�.�0�)�/�/�1�*�(�,�:�.�+�+�7�*�,�+�+�0�)�+�#�3�#�7� �,�.�*�$�-�)�/�+�$�-�0�$�,�'�(�*�)�/�%�0�*�0�+�*�$�1�B�4��%�4�#�4�(�*�5�3�/�(�/�/�%�,�)�'�2�7�&�%�.�5�/��/�/�2�(��/�+�#�(�3�+�6�+� �2�)�#�)�;�-�5�1�'�&��.�3�'�&�/�-�+�2�"�+�.�6�=�)�.�>�"�2�4�)�-�,�8�.�.�2� �)�2�6�8�$�?�5�%�+�,�-�2�,�%�1�-�$�3�-�$�*�,�"�4�)�(�+�5�0�"�*�4�*�-�%�>�"�+�)�)�2�8��)�(�2�%�1�-�5�*�0�2�,�3�/�'�.�/�3�/�3�/�8�-�.�+�(�5�1�(�7�)�4�-�(�1�/��1�5�+�3�'�*�-�+�1�ՀՀ؀րր׀؀ـڀƀԀ؀ԀԀрӀـۀր׀؀ހ׀ԁ$�5�%�4�2�6�7�+�(�4�0�-�+�8�'�,�#�,�1�2�&�-�.�'�8�8�8�&�.�.�3�+�*�2�%�/�/�,�/�+�+�5�+�-�,�2��&�1�0�8�(�.�(�1�)�'�/�%�$�*�+�)�)�,��&�+�(�&�1�0�1�2�+�*�7�4�%�/�%�.�#�*�3�.�7�0�#�&�$�6�/�6�4�)�-�$�?�B�;�7�8�=�1�$�#�#��<�=�6�%�$�)�1�+�*��)�/�/�1�6�4��-�6�.�-�1�&�+�4�1�2�'�)�*�)��'�+�,�2�)�2�$�!�*�&�4�D�!�/�;�&�%�.�/�+�=�0�5�;�,�:�3�/�7�+�8�-�-�-�1�&�(�#�$�/�+�,�#�(� �+�%�#�7�)�&�3�/�$�(�7�'�/�,�(�0�*�.�$�'�*�1�0�0�0�4� �#�,� �5�6�-�)�5�-�7�+�2�#�*�1�7��&�*�5�3�1�'�-�?�'�&�+��,�.�5�2�.�#�)�2�+�,�5�-�3�5�'�+�$�%�$�@� �.�4� ��-�3�.�1�)�,�/�.�5�(�0�/�+�*�8�'�1�9�)�*�.�.�)�-�5�5�&�/� �4�$�(�3�,�%�%�-�7�7�4�,�(�%�5�)�/�6�3� �0�6�+�6�2�5�(�5�(��3�/�#�9�.�9�,�1�.�$�.�%�"�*�8�0�<�1�!�3�,�&�!�,�+�1�/�-�<�2�1�,�)�2�1�-�*�+�!�#�/�-�(�$�(�(�%�-�1�&�0�.�-�+�+�5�'�.�,�,�$�'�%�0�-�7�!�1�-�)�-�&��6�$�.�*�,��0�0�)�%�5�(�0�!�%�0�4��-�.�*�2�5�&�$�4�1�*�!�+��3�1� �3�.�1�1�:�*�*�&�)�-�+�;�,�.�-�,�'�*�/�'�*�6�$�-�1�0�/�-�$�,�"�=�/�)�4�)�+�7�.�*�-�8�,�)�?�8�%�8�-�*�+�)�1�*�#�=�3�,� �0�6�)�B�5�0�2�*�/�5�,�7�:�2�#�1�9�%�2�-�؀рր؀ԀԀ׀؀ԀŀЀՀԀԀӀ׀Հ؀ڀڀՀ׀؀ہ/�*�2�)�0�+�3�&�+�(�8�-�+�'�/�*�+�/�8��0�'�>�5�&�)�(�7�-�6�1�+�3�0�/�,�:�-�6�$��'�?�3�%�/�(�,�0�"�<�!�2�<�.�;�D�-�,�<�2�%�6�*�4�-�=�&�5�,�/�@�-�$�/�)�2�.�1�2�0��4�6�/�+�.�/�3�-�+�7�0�6�.�"�$�:�3�)�!�)� �(�#�(�0�0�,�'�%�0�(�-�1�"�%�*�2�4�/�3�,�*�"�)�$�%�.�.�(�3�(�0�2�!�<�%�$�+�#�.�)�"�,�5�%�1�1�3�#�7�#�-�%�#�)�6�.�%�4�)�C�3�&�2�5�$�(�*�'�"� �.�/�0�)�*�)�1�7�<�2�6�)�#�+�4� �1�7�/�6�&�%�*�:�/�*�+�2�(�,�)�!�.�*�*�)�/�,�8�*�'�*��.�+�,�*�,�0�-�*�&�"�9�%�*�-�,�(�,�4�*�.��-�0�/�$�"�+�$�+�&�*�5�4�.�1�;�.�%�&�,�2�B�1�2�+�*�$�4�.�=�-�2�$�-��%�'�/�/�,�'� �7�$�,�*�/�)�/�-�/�)�(�2�&�,�+�;�3�9�-�&�.�7�9�2�*�)�.�-� �,�)�'�4�&�6�8�0�2�#�0�<�3�)�.�3�-�1�6�4�0�+�5�/�7�*�-�6�&�2�>�+�-�"�=�.�0�-�3�'�$�*�%� �-�-�>�%�+�+�-�.�"�%�#�+�B��,�4�2�/�1�,�/�0� �2�/�4�&�8�1��,�#�-�#� �(�'�/�'�3�&�!�4�)�*�1�'�!�&�.�!�9�#�@�2�/�*�%�-�-�#�&�/�6�/�.�F�'�:�,�%�.�-�/�3�'�5�:�3�5�4�+�-�"�:�-�-�-��#�&�5�/��*�=�,�$�/�"�)�"�.�)�,�,�2�0�-�1�5�3�2�+�&�=�-�)�.�2�+�%�.��,�&�2�+�0�8�0�(�2�3�(�0�$�,�,� �/�3�-�*�%�+�%�8�.�/�/�5�*�4�,�*�1�$�=�*�+�Հр׀ـԀՀՀ؀݀ɀـՀ׀ԀրӀӀۀ׀ԀՀ̀πԁ7�*�,�7�,�+�(�,�-�!�&�,�2�.�*�(��0�'�0�0�:�;�$�&�.�7�#�3�/�4�!�,�6�,�,�.�2�+�)�/�C�%�/�4�*�8�+�+�-�#�-�(�/�3� �+�.��,�)�9�5�1�1�*�0�+�8�(�,�4�6�(�+�0�+�-�3�.�#�3�#�6�/�/�!�)�$�8�0�+�.�6�%�'�=�>�,�%�2�4�+�,�-�.�,�.�+�0�0�1�*��3�)�%�/�#�:�&�'�.�$�-�-��6�$�"�"�7�'�5��=�.�&�+�#�/�4�2�1�(�!�&�&�3�0�(�,�7�2�,�4�,�8�/�0�/�5�(�.�.�.�/��-�2�$�%�3�9��7�(�-�.�#�'�%�*�3�'�.�+�-�-�2�$�/�,�8�(�7�-�(�%�'�.�,�+�"�,�"�,�0�0�8�&�.�<�-�&�4�#�7��=�'�-�,�+�(�0�+�.�5�.�1�0�4�(�3�$�)�3�;�0�%�*�*�#�,��-�3�3�/�(�+�?�2�3�4�0�-�4�+�5�1�&�5�,�2�0�1��%�/�-�9�'�+�1�&�(� �+�+��7�&�%�!��%�8�#�0�,�3�(�*�+�0�&�)�'�.�*�-�:�.�4�0�*�)�%�)�5�;�6�9�3�2�(�%�+�5�)�1�!�/�/�"�&�2�*�"�6� �5�$��3�=�-�.�6� �+�0�&�8�?�7�.�/�#�3�$�-�/�.�A��6�.�)�0�-�5�2�.�'�4�/�.�/�*�.�-�,�1�+�+�*�/�#�,�+�;�'�*�+�1�;�3�+�+�'�%�-�/�)�&�.�"�.�1��/�3�D�.�2�'�&�4�,�5�7�'�'�*�)��*�.�2�8�/�)�/�-�9�.�-�7�-�/�=�-�+��6�#�.�<�/�,�2�(�7�'�:�3�(�)�-� �3�6�A�)�$�+�/�$�:�-�&�7�+�'�/�1�"�/�.�-�$�(�/�+�0�3�-�)�2�%�B�9�2��8�?�0�&�0�+�+�;�&�0�0�1�/�0�.�0�.�4�5�-�0�,�&�%�,�ՀՀӀԀـ؀ր؀؀̀׀ހрրҀՀր؀րۀڀ׀ـځ1�>���%�6�:�5�3�.�#�1�6�6�-�2�+��7�6�;�2�3�/�:�1�7�0�1�.�%�4�&�%�$�/�/�>�/�0�-�,�(�/�'�-�+�:�7�'�8�&�3�2�&�-�)�6��,�.� �(�+�2��)�#�1�/�+�$�#�*�,�-�0�(�0�8�)�$�*�0�+�,�5�)�&�1�3�6�3�1�2�5�2�3�/�+�$�&��B�5�,�-�2�)�-�*�$�1�(�3�%�*�+�3�.�.�(�1�/�'�+�#�/�-�%�.�/�$�%�2�#�!�-�/�+�5�.�1�!�2�1�'�(��)�4�0�)�.�/�%�+�9�'�$�-�7�;�&�1�1�0�/�-�/�7�-�=�&�(�+�0�1�2��/��1�1� �)�7�*��#�0�.�*�.�/�'�-�4�,�&�(�+�2�#�#�/�-�,�#�2�,�-��&�0�2�/�/�-�*�*�2�5�$�-�4�;�2�<�,�9�4�4�)�-�3�0�"�'�-�&�)�6�$�%�'�5�+�*�1�6�2�� �5�#�&��2�2�0�3�-�2�,�+�(�*�0�0�.�.�+�,�,�'�'�!�9�.�8�1��/��1�5�+�)�%�*�.�9�$�0�/�,�'�/�.�1�/�&�1�'�"��,�,�=�$�,�-�:�-�1�(�2�/�&�1�$�2�-�,�$�/�'�1�.�3��'�3�/�)�&�.�*�*�.�.�5�%�2�%�:� �/��(�%�8�7�+�%�+�!�&�'�/�(�'�#�"�+�2�,�-�4�'�%�/�1�4�0�)�4�.�$�*�/�(�1�/�*�$�+�@�"�+�0�#�1�)�1�+�#�1�<�'�.�,�-�-�+�%�&�'�!�2�/�*�,�>�-�3�/�0�/�'�2�2�&�/�)�:�&�5�-�!�4�$�)�4�*�/�5�3�6�0�'�.�,�%�2�/�/�%�1�$�6�3�,�/�+�2�(�4�,�.�0�.�-�7�2�+�#�,�,�,�2�+�-�'�2�/�/�=�-�,�.�$�>�,�"�*�1�5�,�%�2�*�5�?�=�%�!�2�5��0�;�3�*�0�5�<�4�1�!�!�π׀ՀڀրրՀڀӀĀԀԀԀрՀ߀րҀրՀۀ؀ـӁ3�/�(�(�'�3�0�$�)�-�<�>�/�B�$�6�/�.�4�2�'�/�/�2�2�1�1�9�4��,�5�!�0�7�$�5�*�/�,�0�0�@�6�9�5�/�'�/�.�/�7�.�,�(�+�.�"�5�0�(�%�<�%�2�+�.�/�+�.�*�,�/�5�*� �)�#�0�0�;�%�5�.�&�5�.�3�6�2�9��;�,�*�2�*�'��-�/�(�.�(�2�2� �)�0�*�1�4�*�+�1�)�"�*�8�8�8�0�+�/�%�)�*�/�B�.�(�-�%�!�.�<�2�-�$�1�&�5�-�.�7�3�%�"�3�)�+�+�)�3�0�$�/��&�(�,�/�%� �3�-�2�;�*�)�)�*�%�7�%�5�.�+�*�5�%�'�0�&�3�)�%�6�(�-�,�+�6�"�"�/�,�,�&�"��.�+�-�+�2�)�2�2�-�2�/�#�3�7�$�.�'�.�-�/�;�(�)�4�1�5�'�"�:�;�-�#�0�.�&�%�0�%�)�*�+�8�/�*�$�+�!�1�"�*�'�-�-�+�)�1��7�2�,�'�0�+�-�-�,�8�-�+�'�+�'�)�.�,�,�:�.�(�+�2�)�/�+�/�(�-�9�7�3�3�9�+�(�)�+�2�!�&�4�6�&�3�,�!� �+�1�1�+�)�1�-�&�1�-�$�,�9�)�2�/�2�%�2�6�3�/�'�%�9�+�5�9�.��*�5�0�-�!�1�5�!�/�7�'�+�'�7�5�/��)�,�1��"�2�!�-�#�-�6�1�'�4�)�%�-�/�+�*�1�2�.�,�'�/�!�-�/�'�-�'�(�0�5�5��9�-�5�5�&�%�(�%�*�3�8�/�)�,�-�2�-�-�0��)�/�>�-�.�+�1�8�'� �6�7�8�(�-�9�(�+�(�.�7�%�1�'�)�/�+�-�:�!�#�0�2�&�'�1�7�6�-�"�,�*�1�"�3�+�0�D�,�.�'�;��+�$�-�4�8�(�&�/�'�$�*�*�"�1�C�,�3� �"�3�,�)�,�9�0�(�/�3�.�9�8�+�0�5�/�1�-�8�9�'�)�)�4�2�6�(�*�*�̀ۀրـՀр׀׀Ҁŀրր׀׀؀ӀԀր׀܀΀ڀ؀Ӂ/�=�!�>�*�B�(�5�"�)�)�2�'��4�)�!�4��9�'�+�(�2�8�.�1��0�6�*�8�0�'�&�3�(�8�2�/�&�9�'�3�-� �%�2�*�1�3�7�)�)�/�%�!�5�,�<�4�3�)�/�3�'�*�7�/�.�;�1�0�8�2�#�2�.�7�5�7�2�4�1�"�7�/�4�(�&�1�$�1�*�+�.�1�#�4�,�%�)�%�+�%�0�*�$�7�5�)�(�&�,�'�3�&�>�)�6�-�:�-�0�+�(�7�'�,�5�#�.��3�*�"�6�&�/�,�/���3�"�4�"�.�+�*�+�-�'�'�:�8�/�1�!�5�3�8�0�/��)�/�*�6�-�(�*�'�.�4�"�.�$�#�4�'�$�+�&�)�6�0�"�7�>�(�:�0�-�/�*�,�8�'�*�"�7�+�%�/�"�*�)�$�0�#�!�/�4�(�4�/�6�2�%�2�.�*�:�'�#�.�/�*�+�+�.�1�"�9�0�/�-�)�/�5�&�<�*�4�-�)��,�$�-�7�'�2�'�1�5�#�;�+�;�%�%�/�2�%�*��.�5�+�9�-�#�+�4�2�#�.�6�.� �0�0�,�(�%�1�/�$�*��5�4�-�'�*�*�/�0�%�/�)�0�)�.�)�-�(�+�!�(�%�'�5�5��/�1�1�+�,�'�)�,�2�,�.�/�#�/�/�-�$�!�#�.�0�*�(�+��-�-�#�4�2�9�$�/�(�$�"�8�,��>�)�0�1��)�0�4�+�.�=�'�-�/�'�1�+�.�-�3�%�'�#�1�/�*�6� �'�/�&�*�:�)�$�9�)�:�8�5�/�)�'�(�4�2�,�'�2�.�2�1�3�.�+�!�.�'�$�(�&�:�1�0�6�2��2�#� �*� �2�5�.�4�2�:��2�*�6�"�3�,�'�.�/�4��� ��0�&�/�+�5�3�*�*�&�-�/�,�%�/�2�-�5�0�-�/�1�'�*�,�/�-�)�2�,�.�4�+�2�&�#�,�@�+�-�:�'�0�!�%� �(�1�A�%�)�.�5�*�-�(�7�#�5�2�*�,�)�$�׀ր؀׀݀׀ڀՀ׀ˀԀـԀـڀրրր׀րڀԀ؀ׁ+�,�4�'�3�,�&�5�4�$�7�.�4�3�'�4�/�.�)�&�-�+�-�8�(�(�8�,�+�)�-�)�/�"�(�'�0�,�2�;�:�,�4�=�#�/�/�$�.�+�*�2�2�$�$�1�!�8�(�-�=�+�$� �-�(�3�;�1�5�7�<�.�)�6�&�4�)�+�+�+�5�7�2�*�.�'�.�)�5�.�1�>�2�%�0�/�)�8�2�3�3�6�*�3�4�'�4�6�1�7�)�0�2�.�/�/�5�+�,�8�#�'��3��)�'�)�.�%�,�1�+�7�'� �"�,�4�0�)�.�.�(�9�*�4�F�*�1�5�,�+�)�*�#�5�4�#�,�&�%�*�7�6�9�*�%�7�%�6�+�/�!�2��'�<�1�&�$�3�/�2�+�)�*�;�6�$�-�/��6�3�6�!��+�*�*�&�6�-�'�-�<�6�$�+��*�#�"�0�&�2�*�-�'�-�;�'�&�5�+�=�(�0�3�0�&�0��>�'�0�(�2�+�-�3�/�4�6��&�6�4�+�#�(�/�1�(�*�6�<�"�3�.�"�/�4�7�3�1�,�%�0�2����$�8�/�3�6�$�3�+�3�'�+�.��#�/�2�-�3�/�!�$�&�/��%�1�/�+�:�0�.�;�.�?�*�(�<�4�*�,�+�2�'�%�#�'�/�$�/�,�/�,�*�1�0�*�-�9�(�(�)�.�'�%�4�;�%�9�3�>�.�9�4�6�&�$�.�/�5�,�<�,�.�6�%�#�7�3�.�,�6�-�'�)�,�/�&�*��1�*�2�(�1�.�3�*�/�?�*�)�,�+�,�&�,�*�4�.�7�-� �-�%�/�4�-�)�*�/�+�+�:�)�6�9�&�$�,�7�/�4�#�+�.�$�(�$�6�(�,�0�7�'�0�,�+�,�/�&�>�5�&�7�;�-�0�&�2�+�*�-�<�%�7�1�.�9�&�'�-�,�#�0�9�2�.�&�(�.�-�,�9�3�/�2�,�&�1�5�;�3�5�/�,�.�-�1�6�.�2�(�,�/�"�C�8�+�-�+�&�3�(�3�/�(�*�/�$�+�-�.�7�3�4�*�&�1�Ҁրـ؀ՀՀՀҀրĀ̀рۀ؀Հ؀׀؀Հ׀ր܀րہ1�#�#�/�9�/�6�(�!�.�+�+�@�9�7�,�5�0�4�4�8�4�3�;�&�7�/�.�2�=��%�3�*�6�-�5�8�#�;�0�/�0�)�*�/�%�-�+�-�.�,�4�3�(�*�#�/�%�%�-�/�,�2�D�/�%�2�8�;�0�5�*�*�0��#�4�$�>�%�9�0�$�,�=�3�1�+�,�%�*�/�@�*�1�,�.�*�2�*�;�.�6�6�,�)�%�/�-�3�3�)�.�1�8�2�0�-�'�5�3��*�(�0�.�� �/�7�'�(�4�6�,�/�1�+�5�-�)�&�6�&�;�2�-�!�4�;�3�%�+�&�'�)�#�*�(�&�'�2�>�3�:�6�%�+�*�:�(�)�5�!�3�,�,�1�-�-�0�-�%�2�0�:�$�.�(�0�)�'�*�#�5�'�4��%�'�.�%�.�,�4�1�"�3�@�!�9�&�1�$�/�%�+�8�4�1�,�)�3�3�)�4�+��*�4�&�$�.�+�8�/�1�-�)�9�&�2�$�%�<�+��+�5�'�!�$�/�/�6�+�2�0�+�!�-�*�/� �+�(�7�'�,��&�O�l�-�&�/�%�(�*�,�5�2�B�-�3��(�/�3�%�(�&�-��/�7�(�5�8�.�(�$�+�#�)� �/�-�E�)�*�*�+�'�7�6�"�/�5�4�*�"�2�%�/� �7�=�*��,�A�+�-�7�2�>�#�'�.�.��/�7�+�5��2� �2�*�'�/�,�'�9��$�#�#�%�1�)�%�1��6�,�)�$�(�+�9�4�2��)�3�)�,�4�.�(�)�$�-�&�9�;�2�)�/�.�$�2�4�,�1�%�)�1�/�!�/�4�/�'�%�+�5�2�;��2�2�>�3�� �*�.�%�#�&�2�;�,�/�2�,�"�-�7�&�%�,�&�3�-�A�!�E�-�.�?�2�+�2�5�8�=�3�*�%�+�/�-�8�-�,�;�*�/�*�&�(�1�+�1�.�.�1�&�#�"�*�-�+�,�.�0�3�,�/�:�%�3�%�3�.�$�$�7�)�;�7�C�0�'�,�!�0��5�0�;�"�.�1�5�3�؀׀׀Ӏ؀؀ԀՀրɀ؀܀ӀԀՀӀՀЀՀڀـڀـہ3�"�2�1�)�2�5�)�*�/�5�&�/�+�>�;�(�/�%�;�)�,�%�)�)�-�,�3�,�/�$�6�0�1�*��3�1�+�)�)�.�.�,�1�5�8�*�/�+�5�)�:�+�4�C�2�1�$�=�4�2�)�*�1�-�.�,�+�2�/�1�6�+�9�*�/�&��+�/�'�<�/�B�;�'�1�.�,�*�7�=�-�-�*�&�$�*�)�(�3��4��*�/�/�/�4�+�-�0�1�0�/�)�5�-�$�/�)�+�7�3�*�/�'�'�2�2�.�?�1�0�"�,�+�6�(�<��%��*�/�;�6�,�.��9�:�%�)�'�(�-��4�/�.�/�'�-�-�/�3�#�*��)�2�*�%�#�)�/�+�6�3��1��5��/�-�4�1�3�5�1�+�0�9�1�7��5�-�0�*�0�.�'�$�-�)�7�'�/�'�;�3�7�5��0�5�-�&�"�,�'�.�,�5�!�.�3�+�=�2� �2�5�$�)�*�&�-� ��4�)�3�.�)�(�)�=�*�/�+�.�)�9�0�7�+�:�<�5�,�<�6�&�1�4�5�0�+�.�5�.�*�'�'�(�4�,�'�5�/�4�-�+�0�6�0�$�3�&�+�,�"�5�1�'�3�(�1�-�?�$�+� �-�'� �0�0�2�.�+�)�*�'�%�7�)�!�%�)�1�6�5�6�2�.�:�5��1�.�(�,�/�"�*�#�+��,��-�,�/�(�4�&�0�-�6�#�-�$�5�:�'��4�1�&�0�)�$�/��7�*�!�'�.�/�.�(�1�2�.�$�*�)�4�2�9�,��/�<�8�0�1�/�.�4�� �-�)�$�7�,�*�%�+�.�1�(�)�)�2��)�.�!�#�(�0�9�%�)�6�/�&�9�)�3��0�6�+�/�6�(�*�0�-�3�7�!�/�-�3�;�*�/�8�&�%�%�1�-�'�.�2�1�-�&�#�>�-�)�4�4�4�*�3�)�9�5�2�0�=�M�(�,�(�+�)�(�)�4�&�*�2�'�0�.�'�+�2�4�&�(�4�'�/�/�+�%�%�,�+�#�9�4�+�8�2�-�ՀҀр܀؀ۀրրـʀ؀ԀӀ݀؀ۀӀԀۀՀԀՀЀс*�9�0�.�<�(�,�6�+�$�1�,�/�4�4�0�!�-�3�5�0�9�6�(�1�7�3�5�5�8�H�+�3�0�#�#�3�=�5�<�1�4�8�6�&�*�,�-�)�(�#�/�9�"�$�*�/�*�3�,�6�.�3�(�(�:�3�6�)�6�*�4�0�3�(�)�,�)�0�4�5�-�/��-�#�*�6�)�"�/�*�)�%��.�!�+�/�3�-�(�,�'�/�(�5�,�/�3�2�+�%�,�*�/�/�*�%�"�+�-�/�(�/�<�,�9�6�)�5�(�5�4�+�'�.�8�1�&�,�.�#�3�:�6�.�*�;��4�&�$�,�0�6�;�.�1�7�&�0�*�&� �5�0�5�&�;�%�-�-�+��)��-�2�$�4�2�#�2�.�0�5�2��/�-�)�8�6�#�)�=�7�.�7�-�-�:�$�7�9�1�'�5�!�"�.�,�+�)�:�'�2�4�;�)�,�1�+�#�7�/�7�3�-�'��/�*�3�6�3�0�/�-�8�#�&�3�&�-�1�'�!�0�*�1�*�&�'�:�1�.�&�.�5�-�&��3�/�+�$�+�0�<�*�#�(�)�/�!�'��.�.�3�5�+�3�&�8�,�2�.�&�1�&�9�+�"�#�2�'�)�;�*�'�)�#�.�2��)�"�)�(�0�9�2�/�5�/�3�+��=�4�$�*�(�0�3�4�-�7�9� �&�4�2�/�#�'�-�1�%�+�.�*�-�.�"�+�/�'�+�"�"�2�4��1�2�*�/�!�/�;� �4�.�6�)�*�)���7�&�,�-�9�+�*� �7�+�)�3�7�6�8�8�0�5�<�5�)�#�/�+�7�/�"�1�/�+�*�1�7�!�&�#�8�/�/�5�1�/�7�%�2�6�$�1�0�3�*�2�!�*�)�-�*�,�)�'�(�,�+�6�0�,�+�>�/�8�3�6�'�#�+�)�(�7�1�,�#�'�7�2�(�6�)�#��/�4�$�2�5�2�.�2�-�%�9�4�)�/�,�%�/�0�%�/��.�4�!�7�2�(�6�+�-�)�5�"�,�$�+�&�)�4�/�-�#�%�3�/�(�+�=��)�ҀԀ׀׀ـ؀Հ׀ՀŀրԀҀ؀؀؀πրՀۀۀӀ׀ҁ.�#�4�%�6�*�6�'�,�)�8�*�(�?�(�+�-�/�&�;�0�)�6�'�4�$�3�!�1�:�/�1��.�:�4�3��)�*�;�3�0�4�9�0�9�2�9�:�1�3�/�4�&�7�0�0�5�?�$�0�.�;�&�$�(�"�$�8�,�1�,�-�2�/�.�5�6�&�'�%�1�'�1�)�#�/�/�)� �(�-�,�3�,�+�(�5�,�6�-�/�-�-�<�)�)�3�#�,�(�0�'�1�%�#�3�%�0�2�'�)�"�/�.�)�-�3�$�A�%��'�-�#�-��-�&�%�)�%�)�6�$�)�'�%�/�'�4�5�.�'�2�8�3�:�4�"�5�6�4�)�&�/�6�7�/�3�3�'�*�:�0��"�3�-�-�,�(�*�-�7�%�/�/�'�.�2�,�%�-�.�+�-��2�+�4�)�.�0�.�+�.�%�,�5�'�/�4�5�*�4�.�*�'�#�7�,�(�/�<�0�.�&�5�*�/�5�8�#�%�,�'�3�,�(�(� �$�5�*��4�,�1�'�*�;�)�%�6�+�)�)�7�/�.�!�.�%�2�5�/�0�<�-�0�(�B�-�$�/�2��'�(�0�6�:�)�-�&�1�,�+�"�.�-�&�'�>��1�1�'�)�.�-�.�&�1�%�0�&�/�<�#�6�2�,�'�&�5�5�(�)�-�-�+�3�*�5�)�(�:�.�-�#�>�)�2�/�-�4�8�/�,�7�(�3�6�1�*��2�&�*�.�5�3�'�4�+�-�-�0�5�1�5�'�+�0�'�7�8�.�*�+�*�2�%�-�%�+�+�6�(�;�+�5�-�"�1�;�+�%�&�)�(�%�0�:�.�*��&�*�3�4�.�2�.�-�,�/�,�,��%�,�.�%�9�,�'�1�1�2�.�8�$�-�1�3�,�?�(�5�5�(�3�*�(�7�+�"��%�0��-�1�1�/�5�2�1�-�-�0�4�&�,�!�>�%�/�3�,�*�0�)�5�.�5�2�+�%�*�+�/�*�(�3�)�3�+�.�$�(�*�0�%�%�%�0�*�0�'�0�$�%�(�-�9�.�0�.�9�/�6�F�%�0�1�3�0�׀ԀЀրҀՀӀՀр��րՀԀҀ׀ڀ؀րՀрۀـ؀ہ%�%�,�5�!�,�-�+�"�2�4�%�6�3�2�4�,�2�'�:�$�*�"�)�+�?�2�/�,�+�,�.�1�(�/�/�(�'�0�&�+�-�.�2�&�7�>�9�,�3�*�%�*�>�+�+�!�/�,�-�9�0�2�#�2�(�-�,�0�-�-�"�5�3�.�8�6�.�/��-��+�3�*�0�/�&�4�1�5�6�+�1�7�3�/�(�#�1�7��%�&�/�/�'�*�2�4�/��)�3�'�)�5�&�+�'�+�?�)�'�9�0�%�1�(�=�F�1�,�&�1�/�(�8�+�.� �1�4�3�1�'�0�9�8�,�+�0�=��8�5�2�&�&�0� �%�+�)�/�/�-�.�=�(�+�.�%�2�&�5�5�?�,�5�5�7�:�2�'�&�5�.�3�2�0�(�$�5�$�6�2�)�-�,�'�.�!�&�6�3�4�%�1�&�&�-�#�0�*�6�.�2�*�1�3�/�)�6�2�+�,�*�1�-�&�4�'�.��-�'�*�2�&�%�8�'�'�/�,�0�(�-�5�0�-�5�1�+�0�<�%�%�5�$�#�,��%�$�$�.�/�2�&�$�.�/��*�!�$�4�%�&�0�)�-�.�/�/�/�+�6�1�#�5�+�(�*�#�+�5�3�1�-�8�0�.�-��7�2� ��+�'��-�$�1�2�*�2�*�,�-�1�9�4�)�+�*�7�*�2�&��3�.�,�*�2�0�+�3�(�/�'�,�#�/�&�7�/�0�(�-�,�%�-�,�6�,�1�4�'�)�8�3�)�/�#�*�'�%�0�1�/�;��+��:�0�(�(�*�;�(�.�,�5�-�&�3�.�.�4�5�9�'�5�!�1�5�.�%�4�&�0�I�)�1�0�,�.�#�7� �%�5�-�'�4�/�'�(�*�.�#�(�+�4�/�9�5�.�'�&�3�*�-�*�6�+�)�1�(��+�1�*�.� �2�/�.�@�+�1�3�+�;�(�7�(�,�*�4�5�:�*�)�+�/�3�6�1�'�@�0�&�3�)�4��#�*�0�9�3�6�/�(�3�1�9�3�!�#�&�3��8�,�,�'�2�*� �/�&�;�:�#�׀܀ـ׀׀րӀӀӀǀڀԀՀԀ׀ـՀՀـ׀׀ЀՀՁ,�4�3�(�=�0�-�/�&�)�-�/�7�*�1�/�6�5�0�.�'�+�0�-�*�)�+�;�'�0�1�0�2�/�9�1�8�(�.�)��:�&�6�1�'�.�4�3�#�5�-�+�,�"�"�&�<�3�4�/�(�/�&�*�$�'�<�)�/�"�3��/�/�.�/�5�+�+�+�4�'�+�+�,�3�$�*�6�*�8�+�$�7�+�%�+�;�/�,�:��7�7�#�/��/�+�%�A�'�.�,��$�4�)�/�(�*�,�0�3�&�.�8�)�(�.�(��.�'�+�"�.�&�B�)� �/��;�/�1�#�-�+�*�!�/�)�*�,�+�,�-�.�*�.�'�&�1�-�2�>�&�-�3�6�,�-�1�)�6�.�$�4�6�)�-�,�6�0�)�.�*�,�3�4�4�4�2�8�6�%�&�,�.�0�(�(�)�7�.�(�,�5�,�/�C�,�2�+�1�5�8�/�+�(� �2�%�2�2�'�#�2� �+�1�#�,�+�"�.�)�(�1�1�/�*�4�0�+�.�)��/�/�,�)�4�?��<�.�.�8�.�-�-�8�.�1�4�.�$�,�1�"�$�3�,�(�-�2�2�2�-�#�7�8�1�$�'�'�,�3�'�4�5��*�-�=�"�+�8�2�6�#�4�1�,�-� �1�8�0�&�#�)�$�*�!�1�%�3�+�1��$�6�/�8�3�0�3�/�%�$�-�+�(�>�%�/�%�9�1�#�.�0�+�,�6�*�0�:�.�&�/�'�%�*�&�8�3�0�3�)�.�/�8�0�/�/�0�7�.�'�-�(�6�(�,�9�1�#�,�5�+�*�3�)�0�.�&�2�9�$�.�#�9�7�,�8�6�)�%�3�$�-�*�,�2�*�,�2�,�!�7��*�+�&�'�+�/�-�3�'�/�,�5�>�1�'�;�<�;�(�4�/�*�4�1�/�(�#�,�7�2�#�*�2�:�3�0�0�4�/�3�4�;�*�0�/�4�.�.�(�0�+�@�+�4�A�+�&�2�6�2�5�)�0�5�)�/�7�)�6�(�.�(��1�:�5�1�5�)�1� �6�)�6�,�9�7�"�2�1�$�0�,�7�,�/�ӀՀ׀ԀՀـррՀȀڀـڀр׀ՀҀӀՀ׀ـӀـ؁6�3�0�-�5�3�-�(�0�2�-�1�"�.�+�-��5�6�(�.�0�)�1�:�$�)�!�'�2�,�+�1�0�-�*�.�6�/�.�2�0�.�:�2�/�5�:�,�5�5�.�,�<�.�=�"�+�/�.�'�(�-�0�#��2�2�0�)�:�"�-�/�9�#�4�$�-�/�(�9�+�1�1�,�6�&�$�!�+� �;�5�*�9�=�'�5�*�/�A�)�!�+�1�;�%�2�*�*�4�4�(�+�3�+�8�(�9�&�5�!�0�3�2�#�-�.�1�,�)�2�4�*�6�1�-�%�7�*�-�,�$�2�%�)�4�-�+�$�2�2�$�'�2�.�(�/�%�4�1�6�C�.� �9�#�-�1�2�3�3�/�*�&�?�'�'�(�7�%�;�A�#�*�'�*�)�*�*�'�;�$�*��*�.�9�)�4�2�7��B�6��5�,�(�+�#�:�3�'�9�/��A�2�4�(�5�/�,�)�/�.�)�/�2�5�3�4�+�%�&�$�?�5�6�(�$�0�)��6�+�2�&�*�+�/�2�)�4�'�1�-�3�6�(�&�)�0�/�,�'�'�.�/�'�)�5�-�5�-�!�7�4�1�;�%�/�%�(�4�*�)�.�'�-�/�9�!�0�2�+�4��1�7�2�5�3�/�&�4�1�0��+�!�'�2�8�&�$�3�+�1�/�!�1�'�4�=�-�1�/�*�9�0�3�7�#�*�&�4�3�*�/�:�(�0�'� �+�3�"�3�*�'�#�*�.�0�1�4�0�#�/�%�B�1�(�/�%�1�3�#�2�*�4�2�,�%�)�/�+�#�7�,�+�$�*�%�*�(�/�)�-�(�+�.�9�%�4�'�9� ��.�*�/�&�&�+�;�+�+�3�)�'�'�>�#�1�,�4�-�/�(�5�#�;�)�(�-�2�&�.�4�1�=�(�%�+�4�#�;�7�*�/�-�,�2�-�2�*�+�$�'�$�*�)�&�.�0�*�*�0�+��-�)� �3�1�5�+�0�;�3�:�5�:�+�6�+�.�)�%�*�:�4�.�6�3�)�(�,�7�!�2�:�5�,�-�&�7�-�0�.�1�?�,�!�%��%�7�ՀӀ׀р׀ـԀـրŀրԀԀڀӀՀ؀׀рـԀ׀؀ԁ.�$�/�8�?�1�=�/�+�1�,�4�*��$�.�5�6�7�'�*�+�$�,�1�1�1�7�:�.�.�/�7�4�5�*�0�0�*�)�6�<�'�.�0�(�<�-�,�&�1�/�'�-�2�+�8�'�$�#�0�&�6�3�#�*�)�1�.�0�/�#�+�4�C�+�&�3�-�3�=�*�2�.�4�0�+�!�0�-�/�9�+�2�4�-�4�/�6�&��"�/�:�8�(�*�>�(�/�,�/�,�+�(�'�/�*�,�(�1�)�%�'�)�$�*�'�3��'� �-�&�#�5�9�0�0�$�*�"�#�+�*�4�'�!�7�3�2�1�.�2��0�$�$�(�0�4�,�)�*�&�,�0�9�)�+��*�6��$�!�5�"�*�>�5� �2�0�(�3�-�7�-�*�&�(�.�-�(�4�5�;�-�"� �1�(�2�,�2�+�/�%�!�(�$�=�&�-�(�6�*�4�/�1�6�+�&�3�0�*�1�.�/�+�2�$�-�3�"�3�%�.�&�'�4�$�*�3�,�,�2�*�,�+�1�5�(�*�+�.�;�2�$�/�.�'�(�-�.�,�.�4�/�3�#�/�/�*�4��+�*�1�.�3�3�0�(�+�.�0�,�(�5�0�5�-�>�=�3�,�&�)�!�0��"�&�&�'�7�3�)�6�'�)�,�-�/�2�=�(�0�,��9�*��,�;��*�*�-�*�1�<�/�(�)�+�,�1�5�8�.�0�4�4�*�1�=�"�9��,�*�+�+�)�+�0�4�*�$�2�*�9�)�.�)�(�,�)�:�(�'��!�%�&�-�3�-�7�1�/�,�9�&�,�2�-�)�1�<�-�&�'�"�0�,�.�/�(�(�4�6�$�4�/�7�1�4�-�%�/�0�0� �&��*�'�5�!�)�0�.�;�-�+�2�/�2�2�4�/�)�9�%�.�-�6�/�?�#�:�%�*�*�6�5�/�+�$�/�;�+�+�;�1�2�/�4�*�'�,�*�8�2�-�$�)�-�=�6�7�$�5�/�'�2�.�3�2�&��-�/�-�4�3�5�1�5�&�/�*�*�3�,�(�"�-�*� �,�-�/�3�.�*�-�/�׀Ӏ׀ՀԀҀրڀӀĀ؀ӀՀՀӀ؀ـՀԀ׀׀Հ׀ց+�9�&�1�+�:�@�+�;�&�+�)�0�/�&�(�5�%�.�)�&�3�'�+�$�)�5�*�6�3�1�/�,�+�(�"�)�7�4�-�)�)�9�+�-�/�!�%�1�3�$�%�:�*�7�/�*�3�-�+�,��3�%�6�2�#�'� �/�-�3�$�!�/�+�:�2�3�-�0�+�-�2�+�6�-�+�%�+�-� �9�3�)�#�2�+�+�+�'�$��%�+�+�1�+�+�-�7� �6�"�*�/�-�0�5�&�+�/�1�,�<�*�%�/�1�1�(�'�.�4�6�#�.�*�*�!�-�1�5�$�+�2�*�5�5�/�+�6�1�;�,�)�,�2�)�;�'�&�1�0�;�*�-�4�/�9�2�%�A��2�-�0�>�+�(�6�/�3�2�;�0�*�2�'�1�-�2�3�+�*�6�0�/�+�%�3�7�.�.� �A�,�*�)�.�!�.�(�2�'�'�9�.�(�'�#�3�,�+�$�3�2�+�+�6�1�-�3�)�&��)�)�0�8�/�6�3�/�=�8�%�%�4�1�%�)�2�*�5�0�,�(�2�.�+�(�7�5�,�2�5�2�%��2�5�)�-�7�/�/�9�4�.�(�-�.�$�6�&�/�.�,�+�*�@�0�.�%�0��*�'�5�3�*�3� �:�)�&�$�1�8�!�6�1�)�+�5�2�/�.��4�2�9�,�.�/�$�8�!�7�(�)�4�-�4�/�+�+�6�*�3�.�+�.�%�+�&�2�-�)�=�5�=�3�,�+�,�:�(�)�6�%�-�&�)�5�3�2�2�)�+�3�$�6�,�0�)�1�.�3�'�*�!�1�3�+�#�*�9�+�4�*�'��+�&�*�*�'�7� �9�6�%�.�*�'�-�(�,�3� �&�5�4�-�*�1�'�)�1�,�.�)�+�0�9�&�2�,��-�'�2�&�/�,�8�-�)�;��'�1�%�/�/�'�1�!�$�+�>�6�%�0�1�0�,�1�"�6�,�2�/�*�%�/�/�0�#�'�>�(�'�-�*�.�/�)��.�:�-�!�)�,�-�-�%�*�)�8�0�.�+�3�(�*�&�1�7�,�,�0�'�9�+�2�.�-�B�րـԀڀԀӀހՀԀȀ׀Ҁ؀Ҁ׀рڀԀրԀՀրـ؁)�0�,�,�6��6�+�*�%�.�*�9�)�6�5�/�3�8�0�0�2�(�,�+�*�3�4�"�7�)�3�)�5�'�0�,�/�1�2�&�*�4�/�.�5�=�(�'�4�2�/�6�7�2�1�,�%�%�/�(�)�(�7�:�=�1�*�/�.�2� �/�.�3�5�*�&�'�%�+�%�,�3�/�-�'�1�*�4�,�+�1�5�-�3�8�!�4�,�2�/�7�3�&�5�/�%�&�+�2�/�.�!�+�;�/�0�8�.�*�+�3�2�)�'�'�#�-�4�8�,�6�/�+�/�2�+�>�,�%�;�.�+�'�*�+�4�'�=�1�0�,�,�8�+�'�5�%�!�=�1�7�'�8�1�+�+�.�,�=�*�+�3�;�5�-�$�"�+�5�1�-�4�$�6�8�9�-�)�$��(�+�4�,�'�0�*�/�=�/�-�-�+�3�(�,�-�'�1�.�.�;�.�,�2�8�&�)��1�9�'�"�,�7�*�-�=�,�(�4�+�1�/�+�!�,�&�.�)�'�(�2�*�*�:�3�4�8�1�+�*�,�%�/�,�&�0�"�1�$�&��%�)�3�#�3�'�7� �,�8�/�,�+�2�)�'�5�+�5�0�2�4�"�%�(�9�%�6�9�1�/�/�%�)�)�7��(�.�%�-��9�)�5�4�*�)�5�%�#�3��/�%�!�1�*�*�6�1�6�:�#�2�5�3�/�/�)�.�"�"�1�6�.�;�)�1�/��#��+�!�*�/��1�,�/�)�.�1�;�4�+�0�*�-�1�'�5�+�-�:�,�'�1�+�+�4�&�/�*�+�A�4�.�4�)�?�4�'�3�!�5�-�)�"�,�)�+�/�7�2�,�5��.�.�0�&�!�.�,�6�%�'�*�'�1�7� �"�'�6�,�/�1�)�3�'�9�'�1�?�&�0�.�$�*��'�*�)�1�5�,�)�+�%�)� �%�3�(� �5�'�+�"�-�9�1�0�1�*�.�.�1�1�;��+�7�,�0�/�+�5�%�2�9�0�3�.�&�4�-�0�*�(�8�(�1�1�+�9�&�7�3�*�.�6�5�&�%�+�3�.�K�2�3�3�-�,�ҀԀՀՀԀ׀׀Հ؀ĀՀڀـԀ܀ՀԀ׀Ӏ܀ҀրڀԁA�7�%�4�2�)�*�+�3�0�+�-�(�B�9�:�-�3�5�-�7�1�-�6�0�6�%�/�/�$�%�8�)�)�/��/�.�,�/�<�0�+�7�$�&�*�*�;�;�-�-�3��'�)�$�9�'�0�/�)�%�'�1�)�'�/�(�#�+�(�+�+�3�4�/�.�-�*�%�,�.�6�3�*�-�!�+�2�.�0�3�4�;�5�-�;�(�(�!��&�'�-�*�/�1�0�#�/�5�,�,�%�;�%�2��-�8�2�2�'�,�,�/�.�+�$�1�*�;�'�!�%� �/�.�*�7�%�2�-�+�'� �+�:�3�3�2�/�/��+�/�+�*�)�-�*�*�,�2�%�<��'�1�1�/�#� �5�/�&�1�)�1�'�,�2�1�%�'�3�,�0�+�1�0�6�(��2�,�6�1�#�#�+�.�(�+�.�$�+�3�1�1�(�9�$�+�,�6�)�/�9�6�.�$�2�(�(�!�,�2�"�6� �1�+�+�0�0�(��1�(�/�4�-�)�*�)�6�/�/�$�2�.�6�/�0�+�.�+�,�*�+�,�2�(�,��6�(�-��2�,�*�+�(�%�7�+�%�*�4�'�)�*�/�6�)�H�#�2�9�2�5�0�1�2�5�6�4�"�(�3�%�,�6�3�/�8�&�5�0�$�,�&�;�*�%��3�&�(�4�=�1�/�3�&�7��>�3�4�*�=�.��2�(�>�/� �,�"�/�:�)�"�3�)�-�$�-�-�D�)�.�6�"�,�'�%� �%�.�'�!�:�-�-�)�+�*�;�+�*�$�)�+�=�4�*�0�+�>� �$�8�&�%�0�7�+�/�;�$�'�3�%�-��*�-�-�/�,�-�*�5�"�-�-�3�*�1�(�5�<�1�3�'�5�&�$�/�3�:�5�'�'�,�6�+�2�-�:�0�$�/�/�'�6�/�-�#�(��(�,�/�*��8�#�#�%�%�/�2�&�"�)�0�1�2�,�$�1��/�2�/�*�+�&�.�*�!�5�'�%�1�"�-�(� �*�%�,�5�?�*�<�7�1�1�0�+�7�3�:�5�?�.�-�6�)�%�(�K�.�7�ۀր؀ӀԀ׀ӀՀՀÀրπҀ؀׀Ҁ׀Ԁ؀׀Ӏ؀Ҁց3�9�+�)�/�3�+�;�+�'�$�+�9�7�,�4�*�3�1�.�8�6�(�:�)�*�8�/�,�9�*�2�0�7�(�'�;�:�7�+�+�'�'�3�(�.�/�3�,�#�3�"�*��&�(�7�4�'�:��+�1�,�1�2�3�,�/�(�4�6�;�=�-�!�+�2�*�-�$�5�.�/�)�4�5�2�2�3�-�/�?�'�2�+�8�1�+�1�)�1�4�2�-�)�-�*�'�)�&�2�5�,�$�6�)�)�-�'��-�%�+�,�7�1�/�/�-�%�+�#�-�7�-�!�.�'�/�/� ��(�7�)�!�4�6�-�2�.�/�(�4�&�-�2�/�7�+��,�9�)�!�/�6�(�1�(�-�5�3�-�<�#�"�0�-�(�*�%�)�$�)�%�+�$�,�0�;�&�7�/�#�6�/�+�1�&�#�1�0�0�3�'�2�2�*�'�;�#�/�+�5�-�9�9�"�0�3�.�(�2�)�"�(�)�0�'�/�0�2�-�'�)�+�7�9�&�4�0�1�9�0�1�)�7�#�8�)��*�3�*�*�1�)�"�0�9�&�5�*�'�.�%�5�,�+�&�1�,�1�+�/�'�6�0�)��3�+�1�/�)�$�2�*�(�/�3�8�(�3�,�8�/�"�0�2�:�*�$�*�3�1�-�)�+�1�-�*�>� �-�+�9�&�,�)�9�*�,�-�5�1�6�!�0�)�2�,�-�4�!�+�'�+�-�5�2�6�-�2�1�/�7�/�1�-�5�2�$�0�-�3�9�.�-�/�5�'�2�/�:�.�&�*�&�7�*�7�2� �1�1� �0�2�)�'�7�B�-�$�6�-�?�5�<�!�G�,�,�4�+�6�3�*�)�0�/�2�#�4�8�#�0�&�;�#�%�4�8�+�/�-�6�0�)�.�;�'�/�1�A�-�+�*�7�*�-�A�,�4�.�4�+�)�-�'�&��,�2�2�+�0�-�.�.�4�)�(�5�2�,�*��%�*�)�-�/�.�/�/�.�.�,�0�)�4�2�*�+�.�,�1�9�.�*�0�.�'�;��&�9�6�:�1�-�-�%�8�4�)�4�)�-�/�0�2�4�)�1�0�+�/�ԀԀ؀ҀрڀрۀՀȀ؀΀ՀԀ؀рրԀԀــՀԀ܁<�3�1�,�:�)�"�5�+�,�&�+�.�0�)�5�7�7�.�*��'�8�+�6�4�3�7�8�7�%�#�5�0�3�=�&�8�5�6�'�.�/�6�&�3�*�!�'�7�*�1�.�7�,�2�.�+�,�2�)�+�?�+�#�9�,��-�&�%��1�+�1�0�&�,�-�2�2�&�6�8�2�-�4�>�/�/�,�3�0�0�3�2�E�-�=�+�$�,�*�'�:�*�/�*�2�/�%�2�+�,�4�.�3�7�/�4�-�#�+�+�-�%�0�6�&�+�6�6�1�1�=�9�"�)�*�/�-�1�3�2�$�&�%�2�+�&�+�/�-�1�4�0�;�#�1�/�8�,�0�#�%�4�0�#�7�3��3�.�/�,�2�*�2�,�+�6�0�(�7�5�)�(�/�,�&�1�/�2�#�7��.�$�(�,�%�:�7�)�+�4�7�&�&�-�3�4�0�:�6�1�/�/�4�6�*�-�2�(�>�#��+�$�/�"�0�"�*�3�*�3�)�3�#�%�&�1�+�7�/�/�(�&�'�#�1�+�0��5�0�(�,�-�-�%�-�-�(�/�*��+�0�*�'�'�)�1�(�3�@�%�/�-�%�"�,�$�/�4�;�3�&�/�2�,�(�8�8�+�D�,�=�2�.�&�'�/�$�0�*�-�)�/�%�-�-�-�+�#�(�+�0�=�%�(� �5�%�5�?�2�*�.�%�#�5�2�*�2�,�5�8�2��-�:�0�/�'�6�2�6�7�;� �4�4�1�#�-�6�/�4�5�1��-�$�7�6�;�2�2�2�-�+�#�/�)�'��5�1�'�0�-�-�)�2�*�/�*�8�0�1�5�2��)�8�+�*�%�)� �1�,�7�&�6�-�-�,�/�,�%�$�=�$�)�.�6��3�,��"�?�.�-�-� �+�1��.�2�-�$�(�1�*�1�2�9�/�%�9�4�1�/�0�/�4�5�-�.�,�)�5�+�&�$�1�$��2�&�)�3�$�4�;�-�7�&�1�1�,�)�#�2�'�.�/�'�&�'�'�1�2�-�/�1��'�"�,�5�,�7�-�/�#�'�-�*�%�3�.�#�#�0�5�ۀۀրրڀрՀڀ׀ǀ؀׀րրҀՀԀۀՀԀπӀ؀ԁ3�&�$�5�0�:�3�*�,�*�5�6�4�5�5�,�-�4��*�/�(�9�)�%�+�<�1�/�'�+�=�1�4�=�4�2�(��)�&�8��&�/�0�.�1�5�7�5�'�*�*�/�-�0�2�9�5�1�1�3�+�-�)�6�3�*�-�*�/�0�'��2�0�)�'�-�>�.�0�2�&�4�$�%�3�-�<�/�;�$�4�<�&�/�.�3�)�+�(�+�4�-�+�&�3�3�:�:�*�,�,�4�)�%�%�%�(�-�/�.�2�)�,�;��'�1�1�+�2�4�0�+�1�-�)�'�2�(�"�$�(�,�*�6�5�+�)�%�>�/�6�$�#�7��0�-�9�,�0�&�,�%�3�1�2�*�1�+�/�)�,�(�,�+�&�0�+��/�#�+�/�*�+�+�"�0�2�0�.�/�'�/�+�7�.�&�.�0�'�,�7�-�5�2�"�(� �'�5�1�#�3�;�-�:�/�1�'�)�2�1�)�9�)�*�'�?�#�7�'�+�&�/�:�(�+�4�)�/�+�)�'�9�1�!�,�#�*�.�)�5�+�,�)�.�2�$�*�+�0�2�2�:�>�)�4�6�'�$�%�"�-�2�5�/�3�+�.�%�/�7�*�<�3�&�&�(�*�0�9�*�3�-�5�-�/�+�&�7�,�1�-�+�"�0�/�,�-�3�%�"�.�+�/�-�,�*�=�)�/�$�-�*�0�(�.�/�%�9�+�'�*�(�8�'�*�(�*�2�)�5�'�.�&�+�;�#�2�+�*�/�:�'�(�+�%�0�6�8�'�)�0�5�@�/�<�1�$�/�-��>�7�#�+�-�%�-� �,�$�.�,�2�"�/�3�!�.�-�7�$�)�0�.�&�4�.�&�3�(�E�3�;�+�(��%�-�-�@�7�/�-�)�9�=�7�5�+�0�5�8�.�+�2�)�.�*�-�)�-�2�6� �/�2�/�-�'�-�0�)�7�+�*�,�7�,�-�)�'�4�6�0�+�,�2�2�.�0�9�+�-�'�8�1�/�+�B�&�3�/�5�3�.�/�/�:� ��+�&�+��(�-�6�/�5�(�&�!�8�0�.�&�(�6�%�-�4�0�-�%�؀ҀրҀՀрـҀ؀ȀՀԀҀՀ܀؀րր׀ՀրՀՀׁ;�)�2�+�8�&�/�)�&�)�.�2�5�%�4�)�5�-�0�(�A� �,�)�<�*�6�:�$�&�0�<�3�9�'�7�*�1�+�0�$�,�2�.�7�6�,�/�1�/�"�"�0� �5�1�&�'�5�,�2�3�,�!�0�-�*�.�0�>�3�)�)�3�#�,�+�'�'�-�,�9�)�+�$�-�/�&�'�-�)�/�1�9�*�2�-�)�+��9�,�4�,�/�&�!�1�5�*��!�5�6�"�%��)�8�-�*�/�/�#�/�-�'�*�*�9�3�*�-�'�$�/�@�-�5�2�.�-�+�:�0�$�/�+�2�+�+�,�(�-�)�.�-�)�0�-�)�5�.�/�#�+�/�4�-��#�(�3�5�&�0�1�*�-�;�;�3�"�)�(�0�*�5�/�;�)�(�'�8�%�/�7�0�/�$�8�*�&�.�-�6�%��%�'�1�4�3�6�!�%�-�7�*�/�-�/�&�9�)�2�,�*�2�6�'�+�1�=�#�/�/�/�'�&�.�&�1�*�)�C�#�*�*��$�+�2�-�,�%��%�0�)�+�/�'�)�#�3�1�(�-� �0�-�1�2�%�1��'�4�+�.�$�4�)�4�%�-�5�(�2�7�3�1�&�*�<�,�7�6�8�,�4�4�8�2�.�,�)�1�,�7�&�3�/� �1�)�(�.�#�$�2�1�.�9�,�3�,�1�0�2�5�&� �7�*�#�5�+�:�-�*�(�6�5�2�+�#�*�2�+�*�+�(�,��'�"�*�*�5�-�E�2� �/�%�0�:�-�-�/�6�-�(�$�� �*��*�$�/�/�,�(�.�,�7�1�'�,�&�0�4�)�1�*�4�*� �-�7�:�-�%�5�,�)�!�-�0�+�3�4�0�/�9�5�0�'�7�-�,�'�:�2�6�'�2�0�.�0�+�$�-�%�$�-�,�#�<�+�/�"�1�%�1�*�?�"�;�/�,�"�%�.�1�/�5�#�/�%��*�%�,�3�*� �(�<�/�5�&�4�.�6�0�9�%�1�C�5�,�7�0�3�3�3�#�:�-�*�-�.�)�2�7�+�2�-�-�4�3�4�&�1�&�6�2�<�րր׀ӀڀрՀԀՀ̀׀׀Ӏ׀ڀԀӀԀـԀՀҀـс'�$�,�(�-�5�&�$�1�>�'�4�,�+�0�(�+�4�)�&�8�/�)�/�,�5�/�)�.�/�.�2�+�,� �7�=�%�*��1�7�;�;�!�+�/�@�1�$�/�7�3�6�D�3�-�(�%�$�/�+�&�*�1�&�;�)�&�8�,�(�&�6�8�(�)�6�&�&�9�+�+�#�*�'�4�3��#�)�+�-�+�0�%�*�#�7�7�*�1�.�$�#�!�<�'�/�)�-�7�>�0�0�:�3�5�1�*�%�9�5�0�-�-�B�+�8�.�8�;�"�6�6�5�5�$�3�A�(�$�:�.�1�3�3�'�0�%�*�/�-�1�0�.�/�/�0�/�0�%�2�1�,�-�1�:�.�8�/�.�%�*�,�.�4�$�*�%�@�9�$�(�(� ���$�5�.�/�2�4�$�/�.�-�)�/�?��/�5�!�/�3�'�"�,�+�2�-�+�+�1�.�-�-�!�3�/�*�-��/�,�)�*�6�,�/��1�/�*�3�/�/�4�%�*�1�;�)�#�*�/�-�3�$�1�%�.�8�$�6�6�*�-�$�1�1�1�5�$�2�4�2�*�+�*�(�-�$�6�.��"�6�,��*�&�4� �3�/�1�)�:�"�'�2��6�,�7�#�9�,�?�!�.�$�+�*�&�0�%�1�(�$�.�'�2�"�(�(�(�=�"�;�3�.�4�8��(�8�:�/�8�*�$�7�'�?�3�0�$�0�5�,�;�1�<�1�+�-�0�'�)�#�'�2�/�%�.�,�(�3�2�-�%�"�'�5�0�5�.�/�0�"�"�1�+�+�4�3�0�2�'�0�*�0�4�*�4�,�:�%�*�7�*�!�3�/�%�.�"�/�(�2�2�2�+�(�1�)�-�$�+�.� �-�+�)�0�+�.�+�$�6�-�6�3�(�'�2�/�0�$�(�4�0�)�,�#�&�.�%�*�$�,�*��+�+�$�*�9�3�*�4�,�9�3�/�.�)�0�'�;�5�0�2�*�7�6�(�*�!�3�-�5�;�/�"�+�+�/�+�&�>�6�1�5�#�0�1�6�)�$�(�(��/�/�)�-�/�:� �/�2�5�5�)�8�>�6�րـՀր׀ՀـڀـǀՀՀЀۀ؀πҀ؀؀րՀӀр܁�$�-�@�$�'�'�*�/�*�*�3�,�%�+�6�4�7�:�+�+�5�-�,�8�-�+�+�2�>�+�*�*�4�8�8�,�'�)�*�,�+�!�7�8�'�$�*�6�5�)�&�-�-�+�/�<��)�*�'�(�,�1�&�&�"�6�7�7�:�5�1�0�0�8�3�0�,�*�3�5�4�3�7�3�1�5�)��(�7�0�+�7�)�1�+�3�+�&�;�1�7�+�%�$�5�8�-�*�/�/�&�4�2�5�'�/�9��*�5�;�2�0�,�%�2�/�6�0�<�%�&�+�0�+�0�8�%�*�;�1�-�'�/�0�8�-�*�3��1��0�7�:�3�(�7�)�:�.�)�#�+�+�1��&�*�5�'�/�;�&�:�,�%�,�7�(�1�3�1�.�%�$�!�-�-�8�%�2�=�(�,�0�"�,�0�,�*�.�3�.�/�+�'�'�7�2�6�-�0�%�+�6�/��!�,�#�+�)�"�(�&�.�4�/�(�+�4�.�=�3�*� �$�2�'�/�>�3�'�,�$�2�&�/�*�-�-�#�9�2�4�5�7�/�7�5�*�(�.�)�(�3�.�+�$�1�&�7�/�9�+�>�7�/�-�?��-�.�)�'�9�3�)�0�6�8�/�;�7�3�9�"�)�4�4�5��,�*�/�(�!�5�+�+�/�/�"�*�(�4�(�2�-�+� �2�"�7�3�.�5�0�/�,�.�)�+�&�5�7�'�'�&�,�.�+�4�-�/�"�"�-�&�$�$�2�,�&�-�'�-�'�%�7�1�#�&�7�,�6�+�/�(�0�"�.�5�5�"�(�6�0�,�*�"�5�$�5�*��1�8�,�(�+�3�#�!�/�)�"�1�%�7�+�$�.�)�-�.�1�,�.�(�-�&�,�/�2�@�0�2�2�*�0�-�$�#�/�%�#�<�.�(�-�3�(�/�#�5�<�*�1�2�-�+�7�-�0�*�(�;�5�6�&�#�+�&�&�3�0�.�,�7�0�*��:�+�-�<�0�2�*�1�,�/�.�2�0�(�+�/��.�;�1�0�)�'�,�(�6�0�2�*�,�&�7�0�2�4�,�1�(�*�-�5�0�+�/�9�ـ׀ڀ؀ـՀ؀؀рȀրՀրՀՀՀـӀ׀ӀրՀЀՁ8�.�,�+�2�3�@�;�*�4�4�/�5�5�*�:�2�,�?�1�*�6�9�)�2�?�2�1�+�6�0�9��-�:�;�4�<�&�.�+�5�*�-�-�5�0�)�5�8�3�'�)�+�'�2�&��&�5�<�6�.�(�6�.�,�9�.�+�%�)�6�$�&�&�1�0�.�:�,�'��+�0�2�.�&�?�+�1��>�3�)�/�)�1�>�)�4�(�/�1�/�%�+�)�*�!�$�'�$�+�+� �/�-�-�>�6�.�9�/�/�)�/�0�4�8�;�0�3�3�*�!�+�,�!�$�"�+�)�:�1�2�,�'�<�!�1�-�#�,�5�#�1�$�/�#�3�2�4�$�/�3�/�-�0�,�2�.�1�1�2�+�'�-�>�0�.�2�2�.�$�.�+�1�$�)�+�/�&�(�6�+�4�,�8�/�*�(�2�!�+�0�)�3�+�(�*�+�5�5�.�6�2�+�'�+�*�5�#�-��-�&�0�6�,�/�$�1�*�-�)�-�1�+�'�.�/�4�-��1�%�-�2�7�A�)�3�&�-�&�#�$�(�/�5�9�*�3�&�;�(�+�'�;�/�+�3�.�?�5�*�$�/�)�+�(�-�+�1�/�1�+�,�5�%�-�$�)�4�7�,�+�>�:�5�:�4�8�*�(�,�<�0�1�!�.�(�$�.�6�)�+�.�3�)�3�6�&�4�/�+�4�=�/�3�1�&�)�?�,�3�%�*�/�#�-�1�1�)�8�-�%�'�0�3�/�.�.��-�)�)�1�-�4�+�%�5�'�5�1�.�1�3�4�*�-�9�*�/�0�%�@�/�1�0�7�(�1�1�)�,�)�)�)�9�-�,�#�-�$�+�%�0�7�.�*�/�1�:�+�8�/�2�(�/�+�"�.�/�,�7�*�0�.�!�>�+�(�;�(�.�4�!�2�)�+�&�-�+�&�0�/��5�(�/�,�'�1� �/�,�>�#�-�)�/�5�7�:�)�(�'�(�2�-�-�7�%�+�.�/�)�(�(�+��6�$�'�3�'�)�)�+�,�4�"�6�$�(�0�*�7�8�?�5�.�4�'�>�&�'�#�#�2�.�*�0��/�+�0�)�&�рـрՀ׀ՀՀЀ׀ȀԀ׀Ѐ܀րррـрڀ׀׀ـՁ,�,�1�&�.�&�@�'� �'�'�.�$�,�3�(�+�,�)�&�4�&�)�7�&�#�9�7�8�-�1�(�7�4�/�/�1�+�3�1�-�$� �-�9�6�.�*�+�*�,�-�2�3�1��/�*�,�*�-�3�3�.�!�,�*�+�)�4�6�'�5�*� �)�2�&�*�/�5�-�+�4�4�.��(�2�.�/�+�3�2�/�1�9�.�4�(�$�)�:�)�/� �/�"�'�#�/�%��-��.�4�!��*�-�)�"�%�(�+�0�,�/�:�0�2�,�'�%�2�/�2��(�-�1�.�3�*�/�4�)��3�-�1�#�-�0�&�0�#�2�.�,��,�.�5�+�-�,�:�1�-�$�-�'�0�/�'�7�/�/�2�9�7�,�3�)�*�7�'�#�,�3�(�+�&�.�)�3�6�#�'�8�6�+�=�5�%�-�0�/�,�!�5�0�,�)�)�%�0�9�,�7�5�,�,�1�9�+�6�$�,�5�$�'�/��"�7�7��<�.�=�.�%�2�,�*�.�+�8�0�,�3�,�5�0�2�)�.�-�,�I�*�+�'�*�/�&�-�.�/�*�%�&�8�(�!�)�7�-�2�7�0�0�3�2�(�.�1�-�4�#�:�,�5�+�,�3�/��/�!�0�=�'�1�1�$�/�#�&�%�%�&�'�*�!�4�-�/�'�.�8�)�/�0�-�3�'�.�+�3�-�.�6�)�2�-�(�$�(�.�/�7�#�*�)�'�5�)�/�1�+�-� �%�"�6�4�6�'�.�/�8�-�*�.�#�,�+�-�,�.�1�;�#�7�-�$�/�6�=�,�2�4�5�.�"�5�'�2��2�1�/�,�"�/�,�%�=�.�/�#�&�?�,�4��(�$��2�1�7�&�(�4�'�3�4�5�'�/�'�+� �=�*�-�7�-�)�.�&�8�.�1�*�@�3�+�1�"�-�/�%�(�-�*�.�.�+�1�6�-�-�&�+�7�*�%�'�2�6�9�6�>�7�/�%�/�)�0�-�=�,�'�6�1�.�/�!�-�*�+�<�9�0�9�,�-�/�2�'�/�!�(�'�4�3�&�7�1�9�-�/�/�8�5�$�ـրրр׀׀܀׀ӀʀӀ׀Ӏڀ܀рԀڀӀҀڀ׀׀ځ(�6�,�.�3�-�6�3�*�#�5�0�2�-�7�6�4�.�(�2�4�4�0�8�,�(�1�*��5�8�6�"�&�/�0�)�#�4�8�9�,�"��(�?�@�3�+�&�;�#�*�*�/�5�A�;�4�(�&�4�9�'�)�5�$�,�%�8�9�-�5�7�9�+�,�2�.�/�*�0�6�&�)�6�-� �&�&�4�.�/�'�2�C�*�1��(�-�(�<�/�'�/�1�(�.�3�1�'�'�(�(�*�1�/�.�+�(�4�2�+�1�,�)�0�3�/� �6�2�+�6�4�*�-�8�6�)�.�-�(�)�$�/�%�5�(�(�-�,�(�/�/�(�*�-�5�9�%�1� �1�-�3�2�7�/�5�(�*�'�0�3�(�%�D�&�$�/�/�,�&�/�*�<�/�-�6� �4�9�.�5�1�+�8�5�5�$�#�3�3�%�5�2�&�+�-�*�0��#��9�$�1�"�$�-�,�B�&�7�-�(�.�3�$�,�,�7�<�<�,�.�8�/�1�?�.�.�8�0�,�/�4�.�0�%�*�/�'�(�-�,�.�)�3�,�-�&�6�,�2�4�,�4�!�9�(�4�'�5� �*�0�1�1�1�1��%�*�2�%�4�3�2�.�-�0�4�0�/�(�+�6�5�0�+�5�'�)�,�'�-�6�)�9�*�6�0�5�-�;�/�+�0�0�0�5�@�8�'�+��5�;�-�-�'�/�'�0�.�;�3�+�5�$�7�4�'�'�&�)�(�'�(�2�(��&�:�;�9�/�+�"�/�'�.�4�)�2�'�,�5�'�/�+�-�'�4�-�2�,�#�8�/�(�,� �2�/�4�%�*�!�/�$�(�$�&�3�$�(�(�/�.�,�3�<�)�*�(�$�+�6�)�$�3�7�5�8�'�7�%�$�0�)�/�5�,�;�4�(�)� �"�(�-�2�.�-�3�)��*�4��,�/�/�� �1�7�+� �+�5�-�*�+�-�8�)�/�"�/�2�(�1�*�$�,�1�6�6�.�-�+�/�2�-�/�(�*�.�2�&�,�,�*�+�%�:�%�)�+�2�+�*�&�/�/�2�1�6�'�7�*�(�*�1�+�5�4�ր݀ҀــրπӀр€ڀր؀ՀրЀހ؀ڀԀӀـۀׁ(�-�9�'�:�-�-� �'�.�!�-�7�/�)�8�@�1�/�(�#�1�1�@�9�3�%�-�2�.��%�-�,�5�/�/�*�1�,�3�$�'�%�+�/�%�(�2�;�7�-�.��>�2�*�)�&�4�1� �(�1�"�#�0�-�;�7�)�,�,�(�9�0�+�/�,�.�>�'�0�2�+�1�9�2�'�7�!�1�*�'�!�-�-�,�+�#�E�.�2�6�,�,�0�*�0�9�=�.�&�)�%�$�'�)�2�+�-�9�1�*�2�1�$�/�1�0��$�-�:�2�/�$�7�'�9�2�2� �.�(�3�7�+�2�1�9�%�7�2�/�'�3�1�-�/�7�+�#�*�.�*�.�4�/�'�"�,�+�'�7�1�1�'� �8�1�,�-�7�:�5�'�1�4�0� �+�*�.�9�#�.�/� �/�1�6�2�.�2�)�1�+�(�'� �0�5�-�*�+�+�1�&�0�:�1�!�)�1�)�3�*�0�3�9�/�.�&�%�3�*�'�*�)�.�1�2�,�&��+�2�2�.�5�4�'�/�;�-�3�/�!�(�5�4�-�2�4�*�0�2�.�'�=�+�5�%�/�:�9�3�*�+�3�2�,� �+�*�6�,�(�/�<�)�+�=��.�+�-�.�-�'�4�.�-�(�3�/�3�,�*�7�9�8�5�-�7�3�+�-�3�!�#�-�:�,�9�3�)�/�1�2�/�5�8�!�/�)�1�)�,��3�-�7�0�#�(�0�0�*�3�9�"�(�-�$�)�)�)�(�%�+�-�6�.�(� �(�2�*�4�0�0�+�/�0��6�*�)�3�2�3�+�'�+�)�%�*�(�?�%�(�'�)�)�/�:�)�9�+�0�8�2�1�0�.�/�2�1�2�'�3�,�#�6�,�/�2�)�2�8�<�$�2�4�)�1��$�7�3�4�8�1�,�3�'�,�4�<�(�0�-�.�1�8�#�1�3�+�.�(�$�/�!�/�8�(�.�!�3�"�%�3�+�7�-�$�7�7�-�4�/�+�.�)�1�1�#�4� �(�.�*�)�(�!�.�'�3�'�0�#�9�7�<�7�-�+�;�)�5�0�'�%�.�&�4�B�*�4�ր׀ـ؀րـрـπĀӀـ؀ӀӀۀՀ؀Հ׀ӀՀր؁5�/�!�.�(�6�#�,�3�1�(�*�'�7�'�0�2�B�'�:�6�+�0�:�2�+�'�/�/�&�'�>�0�%�:�3�4�7�3�$�1�2�,�'�>�2�+�'�6�/�,�+�/�8�1�5��'�3�'�.�,�3�0�*�*�+�+�!�1�1�)�E�;�0�0�&�9�0�)�9�&�=�/�%�2�#�7�3�*�2�+�;�9�1�/�#�)�5�/�"�*�+�:�%�/�,�,�C�1�*�*�=�%�;�)�.�/�,�"�8�,�2�$�,�6�1�&�/��3�.�.�/�)�%�-�7� �-�.�6�/�;�*�1�&�<�&�3�&�)�'�*�+�!�/�,� �8�&�$�.�%�%�+�)�(�7�'��1�5�&�6�;�2�0�+�7�(�*�6�1�,�'�5�7�(��&�,�5�0�B�&�1��*�2�"�%�8�*�&�.�,�/�-�1�.��+�,�7�/�4�.��-�%��3�%�2�$�+�2�/� �/�(�9�*�0���5�:�3�6�)�7�1�.�-�7�$�(�3�(�!�)�6�'�0�'�'�&�"�1�(�4�1�(�#�5�(��$�)�+�1�2�4�1�;�&�+�1�3�1�6�)�#�-�/�-�*�%�&�$�-�0�:�4�6�2�%�6�/�*�(�/�6�%�#�-�(�8�1�0�2�(�$�4�4�5�%�&�5�3�4�6�2�/�1�-�-�/�9�*�1�7�%�*�.�"�*�2�&�/�(�-�7�&��/�&�,�!�1�/�+�*�*�6�-�4�,�6�#�-�/�(�2�,�/�-�'�%�/�:�#�*�5�9�7�(�-�.�:�7�%�-�/�3�B�1�0�3�1�*�J� �1�'�0�2�-�-�0�*�/�>�(�-�+�7�*�/�0�-�+�,�%�<�*�=�+�(�7�)�&�*�5�-�.�4�8�3�-�-�8�6�9�5�2�0�0�3�)�#�4�2�.�/�-�(�,�)�.�1�3�/�:�5�(�,�$�2�,�3�,�'�)�B�5�.� ��/�-��/�+�+�-�7�,�.�6�+�4��-�1�1�5�3��5�3�3�@�#�<�'�;�<��,�6��4�"�7�)�%�'�'�,�Հ׀ր׀ՀҀۀπ׀̀΀ـՀڀۀ܀ӀۀՀՀ؀؀ۀс-�)�7�#�&�/�'�4�3�$�*�3�5�)�/�1�3�.�/�,�&�-�-�4�!�*�2�1�.�;��/�(�2�1�&�.�4�:�1�+�-�#�&�7�!�!�3�2�$�5�8�%�G�6�+�3�;�/�/�(�1�4�+�'�+�+�+�'�(�1��+�-�2�$�)�.�-�+�9�+�"�?�5�0�*�-�'� �!�+�'�B�2�*�#�5�7�+�+�8�:�%�(�+�&�2�4�-�5�7�%�2�,�.�-�7�7�/�0�8�/�.�*�.�5�%�5�,�'�4�0�'�5�&�-�5�2�-�2�.�1�-�$�0�%�+�/�.�&�1�.�-�*�/�7�!�&�2�*�2�"�*�*�&�$�/�-�)�&��&�.�%�)�0�!�+�"�4�(�&�%�3�)�.�1�/�0�+�,�)�,�/�-�(�8�/�$�/�+�0�)�.�(�/�#�.�)�4�*�'�-�,�:�0�8�1�'�9�-�,�,�-�?�)�0�&�!�'�7�-�8�?�0�-�(�%�/�3�4�6�2�'�+�+�(�<�(�-�'�*�-�.�>�5�!�'�%�>�5�=�0�/�(�)�(�)�(�+�9�'�!�6�.�/�.�0�/�0�5�1�8�.�$�?�,�+�7�'�9�/�*�+�0�6�7�/�(�'�0�1�3�1�+�$�/�,�,�0�8�'�2�,�1�,�%�-�;�4�4�0�7�-�*�9�-�)�.�.�(�/�/�0�&�-�2���.�(�/�+�)�?�/�*�2�*�%�.�)�<�,�.���*�/�6�+�-�*�&�0�9�*�.��,�1�1�0�.�-��9�8�-�)�)�/�/�+�)�%�/�2�)�7�'�1�.�*�6�*�2�/�3�.�4�6�6�0�/�2�&�%��/�4�/�1�8�4�&�9�4�(�-�4�,�-�0�'�4�.�'�&�*�.�.�'�,�1�.�1�4�5�-�-�$�&�.�&�*�2�%�?�-�4��$�/�6�*�/� �?�/�� �-�"�-�(�5�,�9�.�$�-�,�1�(�+�9��3�*�-�2�0�3�-�-�)�3�,�4�-�2�,�7�(�/�<�&�+�+�2�6�9�&�1�)�2�)�B�3�+�׀ـڀڀـӀՀՀ؀πӀӀ׀րۀրҀр܀؀؀ӀԀӁ9�,�,�#�)��4�0�*�7�)�,�'�2�.�0�1�&�7�+�1�4�:�*�*�+�-�,�'�*�.�1�0�)��#�&�7�'�3�)�0�2�5�-�)�$�)�!�6�3�3�/�%�9�3�%�*�:�3�1�3�(�.�/�*�(�,�6�5�3�%�3�0�1�1�*�-�3�(�*�'�.�/�/�5�/�%�3�(�(�/�-�/�'�&��.�/�!�'�+�)�2�7�0�2�:�,�'�C�-�2�:�3� �9�1�:�2�2�;�+�2�0�-�.�/�5�3�*�3�!�6�.�.�)�'�9�3�?�+� �5�0�.�2�'�2�3�)�(�+�0�*�,�/�(�0�!�%� �<�,�4�)�:�0�3�1�+�"�-�<�6�(�'�1�'�5�-�6�,�"�4�2�?�6�7�.�1�-�-�)� �5��*�/�3�*��.�6�1�%�$�-�+��1�0�@�7�(�(�0�1�5�1�-�"�3�/�,�)�"�&�0�(�)�%�"�<�/�=�3�/�1�-�+�0�2�&�/�;�7�/�&�/�(�+�J�)�*�1�*�+�+�!�3�5�+�/�.�'�8�-�9�(�5�1�?�.�/�-�2�-�6�(�/�+�F�)�(�7�!�;�"�3�&�.�%�-�(�*�-�1�-�'�)�$�:�1�-�7�,�/�(�(�5�4�1�,�5�)�"�0�!�+�4�0� �'�0�(�'�,�4�'�,�-�0�1�*�-�+�#�!�=�#�3�-�-�-�/��#� �#�,�:�/�2�#�.�-�.�+�$�0�(�.�&�-�3�7�1�0�4�-�+�(�&�-�0�3�.�/�&�9�*�3�*�"�(�#�/�(�5�;�.�1�6�5�1�2�6�(�0�3��+�)�-�#�)�,�)�#�4�0�A�>�-�,�4�:�9�/��-�3�7�7�(�9�,�/�>�2�)�6�7�6�)�+�&�&�0�#�/�*��$�)�/�2�8�(�2�)�4�.�.�*�1�,�)�0�-�1�-�1�/�3�*�1�'�/�)�<�3�E�,�%�2�3�%�1�-�&�-��&�5�5�!�'�(�O�&�=�8�7�0�(�5�1�8�(�(�.�,�+�-�,�0�4�)�'�'�׀ԀՀ׀ـڀ׀րπÀـՀ׀ـ׀׀ـڀրҀ׀Հ؀Ӂ6�)�/�+�7�/�)�7�0�)�4�.�+�)�'��2�+�!�+�0�)�&�+�'�5�2�!�,�*�1�)�4�'�5�+�3�)�/�'�5��1�/�1�+�/�*�3�/�!�(�/�1�6�0�@�"�1�3�;�.�/�-�*�0�!�/��1�(�*�#�1�=�:�/�0�1�E�:�/�/�'�.�/�-�*�-�>�'�/�"�4�(�4�+�3�-�.�)�/�*�)�9�*�$�?�.�8�#�8�7�5�*�"�'�-�,�,�-�#�8�%�9�<�1�&�?�2�#�'�&�/�-�#�&�'�0�.�(�'�$�)�/�7�;�/�4�*�%�-�*�"�2�8�-�4�#�0�2�1�1�0�+�9�4�/�5�4�5�4�+�9�(�+�'�7�1�.�:�5�4�3�5�&�5�/�;�8�#�/�*�0�2�/�#�9�9�'�(�5�9�5���,�9�2�/�%�"�/�'� �/�1�,�2�.�)�-�3�#�%�)�<�3�1�>�>�3�4�5�&�&�;�%�!�0�)�&�4�(�'�#�7�,�&�5�&�'�1�*�2�2�+�-�!�$��%�(�2��&�)�/�/�(�0�-�,�5�)�,�)�6�!�/�=�"�(�,�%�%�,�1�-�;�9�?�%�*�:�4�'�3�-�,�$�5�0�.�+�&�'�/�.�/�@�2�&�%�/�.�"�5��4�%�'�,�4�.�$�4�,�9�2�$�#�;�%�.�0�)�*�;�5�(�.�7�'�,�1�+�*�2�3�:�$�5��,�!�&�,�,�-�6�#�/�B�+�,�-�-�,�(�)�%�/�+�,�,�+�(�6�*�3�9�"�'�6�'�,�%�1�/�*�0�4�'�'�=�$�+�4�'�&�D�3�6�:�$�7�2�*�2�*�+�2�0�'�.�5�6�%�/�7�2�%�+�8�.�8�1�5�;�"�3�0�#�5��1�*�)�8�,�(�.��,�*�;�7�0�2�*�.�,�,�"�)�;�&�0�0�0�#�,�)��5�(�#�#�-�2�)�,�(�(�'�,�>�1�%�5�+�2�+�>�0�&�*�2�*�/�&�1�-�$�&�2�)�1�-�"��#�/�+�%�1�0�(�5�0��ـــӀՀ؀ՀԀҀ��ڀـ׀ـ݀ڀ׀Ԁ׀րڀ؀܀Ӂ(�/�-�7�%�$�3�8�(�.�:�%�,�8�8�3�+�-�*�/�5�4�.�(�6�-��)�0�4�&�-�<�9�� �-�1�4�)�2�6�.�+�/�+�B�(�4�5�#�7�'��3�&�/�'�(�9�&�'�1�!�8�.�8�.�)�4�0�2�5�)�<�%�0�5�"�.�,�3�0�2�6�%�5�+�1�0�3�/�)�,�0�+�)�)�,�3�2�7�&�+��-�3�-�,�)�3�2�0�.�*�(��3�8�5�1�=�/�.�'�&�,�5�$�'�,�.�0�/�:�!�3�,�5�-�+�-�/�+�+�.�9�+�-�&�#�0�9�(�/�*�3�*�3�-�=�-�4�3�1�0�.�.��2�/�9��1�6�)�%�7�7�&�+�"�-�+�,�.�,�-�*�7��'�$�&�'�.�;�.�/�,�&�(�2�0�)�7�7�1�+�;�#�0� �-�-�+�.�#�-�7�'�(�%�(�+�2�%�'�9�#�+�)�(�;�@��1�.� �3��'�6�)�5�'�)�(�)�#�C�3�,�8�5�,�7�$�-�(�#�.�1�7�=��*�-�<�,�-�*�+�)�(�6��0�2�"�,�,�1�&�-�9�;�/�0�*�.�C�4�(�.�3�6�@�,�$��'�,�+��3�5��#�<�+�*�9�,�%�!�4�*�8�8�6�4�(�+�#�)�-��0�0�.�6�.�7�*�/�.�9�0�/�4�1�9�(�/�1�3�1�(�#�0�.�5�0�/�+�5�.�/�6�+�-�+�*�-�/�&�)�0�7�7�3�&�'�4� �4�/�6��'�;�,�+�7�-�*�>�)�,�/�4�+�1�-�*�:�9�0�/�7�7�%�6�'�+�6�1�)�+�0�4�+�,�1�%�5�3�3�+�"�+�<�4�$�%�,�/�1� �)�1�9�,�-��6�*�2�6�1�4�7�1�'�'�-�)�3�4�+�$�-�+�)�+�/�&�/�4�+�,�3�9�7�9�7�-�"�,�-�<�2�?�3�8�1�*�+�5�(�+��)�.�/�&�A�)�5�3�(�/�+�&�/�2�7�/�1�+�(�4�4�'�9�.�$�/��9�&�ՀրҀр׀Հ؀ۀ׀̀׀Հۀ݀ԀـՀڀـҀـ܀؀ہ.�/�9�,�;�%�/�2�'�3�0�2�0�F�)�%�9�)�/�:�7�)�5�'�3�*�#�;�2�(�1�A�.�<�/�6�3�)�?�'�0�3�0�3�.�/�/�9�&�A�(�+�5�3�0�4�+�%�0�>�;�!�*�&�#�*�7�;�1�-�,�%�2�%�*�$�(�'�/�*�*�.�-�2�:�0�6�+�:�#�0�7�*�3�8�:�6�&�6�+�-�(��6�4�4�(�/�)�.�N�*�4�4�0�"� �5�3� �0�2�/�3�(�*�4�0�0�5�,�/�2�1�)�)�2�'�*�6�-�-�.��/�,�:�-�/�)�1�.�%�(�*�<�/�#�'�7�8�0�.�,�*�+�)�1�3�;�"�/�4�:�-�#�!�:�-�/�3�*�!�/�(�3�+�3�.�/�0�0�.�)�1�+�"�:�#�9�6�7�)�7�,�=�*�,��1� �1�,�,�1�'�'�1�/�9�2�/�3�2�)�%�/�.�7�&�+�$�)�'�7��5�<�,�+�.�)�6�1�.�3�(�7�$�.�.�&�-�3�,�8�6�+�*�&�9�1��4�/� �/�2�/�0�:�1�,�)�,�2�4�0�.�,�%�5�-�0�3�1�;�E�/�2�:�'�-�)�/�!�(�5�$�2�)�:�2�#�"�#�&�$� �0�,�3�.�*�"�-�)�*�%�+�-� �5�.�6�1�&�/�+�(�*�/�3�%�1�+�,�,�1�)�)�)�!�/�+�6�7�'�A�3�4�&�+�2�6�3�+�8�.�,�$�&�0�$�(�'�8�1�9�(�"�+� � �2�3�.�5�6�$�-�/�3�4�%�3�3�.�"�&�1�-�4�0�1�(�)�#�0�(�2�3�7�(�(�!�,�)�)�+�7�2�0�"�6�6�'�2�-�3�-�"�$�5�1�1�6�%�7�:�0�1�/�&�(�?�-�-�'�$�9�-�3�0�!�(�%�,�9�2�3�8�#�0�6�)�'�3�5�(�.�6�2�1�%�8�>�.�+�)�#�<�/�5�.�=�+�-�;�$�3�5�"�"�;�-�3�3�7�2�+�/�2�*�+�/�.�%�,�-��+�5�,�$�*�9�,�#�4�%�/�ՀՀԀـր؀ۀӀՀ��ՀՀրӀՀր׀ՀԀӀрՀрց.�9�#�,�+�,�.�#�?�1�/�E�7�.�$�6�1�6�"�/�/�;�1�%�.�6�1�-�/�5�1�,�&��1�1�1�2�5�%�4�'�&�-�1�/�-�/�-�8�)�/�)�&�9�1�/�:�-�/�2�>�-�+�0�A�#�)�5�.�&�$�(�7�7�3�)�0�1�&�*�-�0��:�*�>�)�'�+�6�&�.�(�4�&�%�)�/�B�9�+�5�-�7�2�>�9�@�A�D�4�-�'�2�>�5�/�*�(�'�2�&�/�-�)�!�/�)�<�<�'�7�6�0�;�#�0�:�3�/�6�/�2�/�*��:�'�2�2�1�)�@�-�2�1�2�%�#�7�<�-��-�/�0�C�9�5�0�-�#�,�7�&�6�'�5�.�%�&�9��4�#�.�)�.�/�+�7�-�2�.�5�(�<�-�7�/�"�+�-�"�"�4�-�2�2�.�%�*�5�6�3�1�)�'�7�A�'�'�!�9�7�'�4�!�(�3�4�:�)�%�5�+�(�.�0�*�&�7�/�$�(�/�"�+�,�!�/�-�$�$�)�/�(�1�2�/�1�(��.�,�&�/�1��2�-�.�&�1�0�;�7�1�.�:�,�4�$�$�8�*�4�-�;�-�-�1�'�,�,�<�4�6�$�2�1�,�9� �7�5�*�,�/�2�7�8�)�)�8�*�3�C�,�%�0�)�+�"�&�*�)�3�+�/�(�*�7�;�%�9�9�6�1�&�5�/�5�%�8�+�4�$�-�%�1�5�+� �1�6�0�!�"��&�1�,�-�#�-�.�1�5�=�;�4�/�,�-�+�.�(� �*�3�+�*�9�9�5�1�,�)�5�'�1�/�&�3�5�+�3�/�-�-�/�5�+�1�&�0�1�0�8�(�.�/�*� �2�<�)�.�6�0�4�2�0�'� ��)�6�2�5��(�+�%�1�4�;�(�$�.�(�1�-�,�5�/�2�;�/�2�#�1�+�'�!�0�%�%�3�5�,�9�+�(�2�3�$�/�*�/�)�-�5�)�+�0�)�1�(�2�2�4��/�1�D�+�7�-�8�&�1�,�(�4��'�,�6�.�C�,�&�'�.�9�3�,�,�/�Ԁ׀ـր؀րրڀԀƀ؀ՀրӀրЀ׀ր؀ԀۀԀրՁ2�0�/�7�2�*��4�7�,�>�/�.�(�(�)�.�'�.�'�2�6�8�5�,�,�/�2�)�+�+�$�.�/�3�+�9�"�.�*�5�+�)�<�(�4�8�5�4�/�-�'�/�0�-�.�3�'�0�9�,�1�2�0�4�:�2�2�E�%�3�.�)�0�)�2�%�5�:�*�*�4�0�)�5�*�'�-�2�+�)�3�4�+�#�0�"��(�/�1�/�B�5�3�9�8�=�/�8�1�,�9�?�&�)�+�!�<�%�*�"�8�"��5�0�*�(�4�*�2�,�5�0�)�(�!�(�:�1�;�/�'�,�%�*�(�$� �1�/�%�'�*�-�/�$�,�2��'�2�*�(�0�/�-�.�0�+�!�"�2�$�/�:�)�/�1�.��1�'�(�?�"�/�(�.�9�)�6�'�*�4�=�.�1�*�2�*�*�5�/�)�%�/�!�6�0�<�1�(�%�,�+�5�+�0�*�4�8�+��#�.�-�/�5�!�4�%�#�1�-�%�*�*�6� �)�*�.�)�4�<�0�5�4�#�+�,�)�0�1�)�3�-�*�+�3�&�4�)�-�9�-�/�3�1�1�'�1�/�&�)�(�,�1�&�4�*�,�!�=�4�.��7�%�4�'�)�3�7�8�*�1�*�4�!�-�.�>�(�2�/�%�*�'�*��:�0�.�+�0�5�0�(�-��,�*�,�6�)�&�/�-�)�:�7�9�-��(�7�'�"�/�/�6�0�"�.�;�6�)� �.�6�-�?�4�5�/�5�.��1�)�2�1�(�?�.�0�'�'�#�2�&�%�*�0��/�-�6�9�/�&�/�/�*�$�/�4�4�(�2�9�8�)�*�!� �9�+�&�1�&��'�9�-�,�+�.��6�,�7�,�1�+�1�=�8�/�+�.� �$�&�6�$�/�8�+��*�9�2�D�$�-�(�*�'�)�0�/�3�0�/�&�%�*�*�)�6�*�)�+�3�1�4�4�<�3�0�)�,�&�7�%�(�$�1�(�,�-�$�1�;�1�0�6�=�9�&�7��:�5�(�4�!�,�,�/�*�4�*�(�!�*�9�3�'�7�/�'�(�/�;�8�0�/�׀ՀҀــՀ׀ҀրǀԀՀـр׀рՀڀ׀Ԁڀ΀܀ہ6�/�%�2�2�5�2�&�+�+�5�/�<�&�)�,�:�3�*�4�;�3�A�/�(�6�<�$�+�3�#�7�/�-�5�-�5�1�9�5�+�.�5�&�1�/�4�0�%�!�2�,�/�.�%�3�*�2�0�1�4�,�&�4�"�4�3�"�+�1�,�%�#�8�$�)�.�7��/�4�2�3�+�#�;�4�'�!�4�6�.���;�+�)�"�&�2�#�0�8�5�5�B�@�@�L�0�3�9�<�3�3�-�*�$�?��/���+�,�)�;�8�'�8�+�1�7�!�2�6�3�A�$�*��-�*�2�3�/�4�/�6�1�,�)�<�*�"�1�%�0��5�3�#�3�3�3�5�?�.�#��B�-�'�'�#�/�9�$�.�/��.�'��-�'�(�-�0��+�&�-�0� �=�+�6�1�6�*�1�/�7�<�!�1�'�%�*�1�&�7�)�C�)�(�-�0�+�+�0�0�,�0�3�0�"�/�%�0�3�*�,�0�%�(�'�,�5�0�+��7�1�3�-�1�.�-�6�/�-�4�<�)�,�.�+�9�*�1�+�A�8�2�'�-�-�*�.�1�/�4�<�-�6� �'�3�=�0�'�0�-��#�*�/�1�:�+�+�+�&�:�1�/�;�#�(�*�*�7�-�'�/�(�'�)�)�5�,�'�-�(��(�,�8�(�C�3�'�,�(�5�1�7�-�4�4�0��0�2��)�8�"�,�0�+�2�.�*�3�/�8�,�,�5�*�#�,�5�1�%�/�*�'�3�8�'�*�4�,�)�,�,�1�-�3�+�/�1�1�"�;�)�+�)�5�"�+�.�<�)�/�-�'�,�6�)�2�6�4�0�.�*�5�&�&�7�1�4�,�$�)�1�%�/�6�&�/�)�+�3�7��2�(�-�+� �F�%�>� �'�&�+�!�)�"��)�4�3�>�7�5�.�9�*�3�/�/�*�'�/�1�8�&�4�0�.�(��-�%�*�&�1��:�$�7�*�'�.�-�!�)��D�/�"�+�)�-�/�1�.�&�)�4�3�6�0�.�+�0�,�:�=�-�9�'�(�.�+�6�7�/�/�3�$�%�4�7�*�ՀӀրπՀڀڀӀԀɀۀրـҀ܀πՀҀــрրԀӁ6�4�.�2�/�)�4�4� �$�8�%�-�1�)�2�.�9�%�7�%�/��/�6�5�4�8��:�,�'�3�)�,�.�-�1�*�.�&�'�*�3�-�+�2�2�2�/�+�.� �+�/�%�,�4�'�/�*�9�%�,�2�.�(�@�'�%�)�2�+�.�7�-�2�'�/�%�4� �3�)�"�/�8�.�)�,�/�/�+�)�&�+�!�-�+�)�/�1�/�8�F�X�:�E�A�E�5�2�1�7�)�<�8�7�/�-�&�.�)�/�4�'�9�5�6�%�)�+�2�%�.�2�.�3�/�0�%�*�'�:�&�-�#�"��/�8�0�7�'�-��*�%�7�&�+�5�)��4�D�.�6�1�&�<�)�(�:�3�.�9�1�)�.�/�*�5�1�9�2�;�-�.�1�/�1�3�,�9�+�<�'�2�%�<�0�6�8�-�.�6�#�*�(�-�6�;�2�*�5�8�.�(�/��/�)�+�1�/�-�2�/�#�3�4�&�0�3�?�0�-�/�5�(�/�6�/�9�*�%�?�4�9�.�0�0�)�+�+�/�'�*�)�2�,�,�=�4�'�;��6�1�2�-�2�/�2�1�4�'�4�3��%�?�0�'�,��1�/�/�.�(�(�6�)�!� �+�&�5�"�*�8�6�+�-�&��6�+�+�1�"�+�*�/�%�)�(�&�#�+�#�.�(�3�1�)�-�+�6�-�1�-�(� �7�0�>�&�*�$�8�+�(�>�"�)�5�5�/�6�/�,�(�*�1��/�#�5�&�/�=�5�,�#�*�"�(�8�+�)�0�#�.�'�)�5�6�5�1�:�&�#�3�"�&�&�/�;�1�+�"�$�&�)�+� �9�*�/�1�/��&�*�+�6�9�0�,�/�9�*�:�)�#�3�"�*�:�)�$�;�8�)�-�.�6�3�/�1�4�%�.�-�-�%�?�,�!�4�$�.�-�7�.�)�-�(�,�3�:�+�,�9�"�'�.�+�*�1�5�4�0�&�2�0�.�<�)�&�0�$�7�%�.�.�5�=�+�8�,�&�1�/�1�"�4�,�-�#�3�-�1�,�.�5�/�:�<�*�,�)�/�5�(�3�;�2�)�Հ؀׀ڀрՀ׀ڀـǀ܀׀׀ـ׀ՀـЀ׀׀ՀπЀӁ4�.�-�6�,�;�6�4�.�D�/� �,�3�'�>�6�8�>�5�.�4�0�*�9�4�A�(�)�&�)�6�2�.�7�3�,�5�&�+�4�9�5�2�0�"�/��=�3�,�7��(�3�!�2�*�'�'�3�'�"�7�1�4�7�-�5�,�&�%�2�%�7�@�(�-�1�0� �,�'�4�,�0�,�9�*�-�/�(�%�!�+�.�,�7�+�(�.�.�?�2�;�M�;�=�D�A�E�@�5�=�+��1�0�.�3�;�&�/�-�.�-�.�!�(�3�+�1�-�#�+�%�-�)�B�*�.�1�1�:�%�0�+�*�$�2�8�1�,�6�'�(��+�+� �+�-�)�+�*�.�+�1�.�3�1�+�=�3�/�:�'�+�$�-�D�2�-�1�;�(�>�:�1�B�'�2�'�.�;�,�*�+�1�/�'�$�0�4�4�.�1�)�(�4�3�.�-�-�(�+�.�/�(�'�+�&�,�"�5�4�:�?�(�8�$�+�/�4�&�-�/�/�*�5�/�(�6�3�9�&�/�*�,�-�-�-�3�2�7�6�+�3�9�'�;�/�)�(�,�%�4�,�2�,�:�/�<�2�%�(�'�.�+�)�'�/�+�6�-�3�%� �%�)�$�0�4�8�&�9�3�-�6�(�5�)�1�%�(�4�1�/�+�4�.�%�/�4�3�+�*�-�,�(�6�)�3�*�(�,�3�6�+�'�0�0�+�/��&�.�<�)�*�'�'�+�)��"��#�#�/�%�*�,�3�&�(�3�(�2�6�.�+�/�.�.�&�+�.�3�+�2�5�)�(�'�*�7�3�/�(�6�+�3�'�1�'�&�-�1�6�2�*�/�8�+�#�%��8�6�5�#�2�/�$�6�2�&�3�3�&��2�&�!�3�'�%�'�-�+�5��+�%�'�+�2�&�-�0�?�-�-�'�,�-�7�*�5�>�A�,�2�,�4�6�1�+�/�-�&�/�;�5�&�)�/�,�;�(�#�.�(�,�;�7�6�3�0�,�-�8�7�9�(�8�/�/�0�0�3�"�,�0�(�(�+�/�@�,�0�*�3�)�%�/�2�-�!�9�.�3�4�+�6�/�6�2�0�#�)�ԀԀ׀Ԁ׀ՀրۀՀƀրԀՀր׀׀ҀـԀӀ؀ԀҀЁ(�2�2�;�7�'�3�&�:�/�6�<�,�(�8�!�&�7�/�=�:�2�3�0�0�$�&�(�+�+��.�,�7�,�<�.�4�*�5�+�-�(�4�3�0�?�6�/�3�:�,�5�$�=�6�5�&�3�-�-�,�/�&�+�&�+�:�2�$�6�5�*�!�!�4�D�+�-�.�$�%�0�3�8�!�+�I�*�)�/�%�$�'�0�'�2�/�(�0�0�G�F�=�4�@�M�L�>�J�E�:�.�<�7�:�+�1�&��.�0�3�%�-�'�A�"�8�&�,�0�4�2�3�.�#��7�-�.�)�8�'�%�-�6�7�)�+�4�%�0�,�/�2�'�.�/�/�*�+�.�1�2�/�-�B�1�%�6�*�(�/�)�.�7�*�#�(�/�$�'�&��*�&�6�!�-�:�/�0�"�0�-�+�*�8�"�;�.�7�&�2�"�+�(�0��*�5�1�+�+�2�+�,�&�=�.�(�1�(�9�/�4�;�.�+�.�(��%�.�1�8�!�0�(�1�,�'�-�+�,�*�(�/�5�(�3�;�)�.�5�0�+�5�'�,�'�4�5�6�.�.�/�&�9�7�,�;�5�"�%�,�1�?�/�4�(�/�+�/�3�+�6�A�.�3�3�4�'�+�#�-�*�;�.�,�7�+�2�)�&�(��5�*�-�%�-�3�>�2�,�(�/�8�-�,�*�8�B��*�-�)�1�-�$�,�2�0�4�/�%�:�8�(�8��-�0�4�&�9�+�3�*�)�8�7�+�"�6�*�6�/��)�,�&�+�/�5�.�1�-�-��4�/�.�#�;�%�6�&�0�9�1�0�%�%�*�/�$�2�'�/�3�5�"�'�4�2�,�3�!�&�,�0�7�/�4�'�*�-�-�&�(�'�5�1�/�:�;�4�4�0�*�7�:�-�-�)�/�6�-�4�$�-�2�-�9�&�$�8�(�"�;�)�(�(�#�1��(�-�&�)�/�2�7�0�/�>�+�6�3�5�3�'�8�?�1�2�/�2�-�*�'�/�0�'��1�+�'�D�/�%�:�6�3�0�1�+�+�*�5�-�4�9�:�*�/�&�*�1�4�+�4�"�*�/�+�<�(�C�؀ҀڀӀڀ׀ۀՀ׀ÀـӀҀ׀Հ׀ԀրրހՀՀԀԁ0�3�7�7�4�:�4�,�3�+�3�0�.�$�)�E�3�3�5�/�-�7�?�"�.�+�-�*�(�2�6�!�$�0�8�/�#�.�(�)�*�4�6�6�)�.�$�9�:�3�/�#�B�(�A�5�8�=�7�5�1�'�3�.�/�#�0�)��2�5�-�/�1�5�1�)�2�,�,�!�2�2�1�3�(�/�3�3�&�2�'�/�'�+�1�3�"�#�%�6�9�.�1�;�N�B�H�H�=�C�=�?�:�.�.�#�.�*�0�0�>�,�3�2�4�%�9�$�*�*�+�5�/��0�(�8�5�.�*�+�&�,�$�8�&��)�0�)�;�(��>�,�5�4�*�;�0�-�-�&�7�,�&�5�,�1�0�.�%�/�-�*�+�)�2�+�3�)�*�7�5�,�!�-�/�*�+�3�1�+��!�8�4�)�'�4�1�#�1�0�/�1�4�0�8�&�3�*�,�7�,�>�-�'�:�=��(�-�#�%��0�4�*�0�7�'�+�%�4�2�.�7�/�4�3�+�1�0�;�.�1�#�)�8�)�1�5�6�+�/�E�&�.�-�'�9�-�,�'�;�3�)�/�>�$�/�5�5�7�.�,�)�/�,��!�/�4�-�0�"��4�7�1�,�-��0�,�/�=�8�1�-�-�*�+�(�)�/�%�3�,�2�.� �7�/�'�'�9�3�8�,�"�5�&�#�7�5�/�0�)��*�)�+�3�(�5�5�/�1�4��2�)��-�'�(�'�'�-�3�.�0�@�*�/�,�-�7�%�4�/�.�'�)�'��+�2�7�0�(�*�/�&�5�2�0�2�0�)�*�2�+�,�0�,�,�/�$�-�+�0�/�<�,�3�)�(�/�*�.�<�0�6�5�(�!�-�0�=��2�3�3�6�2�/�$�.�-�4�.�#�4�7�/�2�3�2��+�%�.�#�$�2�,�3�6�0�(�*�0�3�?�2�4�-�)�,�(��"�.�<�*�+�2�+�9�(�,�:�7�,�&�+�0�4�.�,�6�*��0�.�&�4�/�5�B�'�/�.�*�3�(�7�3�2�1�,��.�4�+�7�5�0�$�,�#�:�)�8�(�%�/�3�Հ؀ۀր׀؀׀ӀՀŀрـԀ׀Հڀـڀ׀ր׀̀ՀՁ1�0�/�-�-�-�<�0�2�)�%�6�:�&�7�*�*�+�+�%�'�7�3�.�*�9�/�,�9�)�1�0�+�*�3�-�"�@�;�=�)�/�'�7���)�3�-�#�2�=�-�7�+�'�5�-�)�7�+�2�7�-�'�6�+�-�*�'�-�%�+�!�0�)�%�9��'�7�(�8�$�$�%�8�0�0�8�5�.�0�'��8�,�+�*�1�6�A�>�0�5�>�D�<�I�F�D�1�8�7�,�5�3�,�'�9�8�)�%�,�.�1�,�6�(�.�,�2�2�+�.�,�,�4�.�6�*�7�$�.�7�'�,�2�.�3�:�$�0�6�&�7�-�%�(�/�"�&�*�;�;�"��,�@�1�$�/�4�0�=�3�2�'�0�4�+�:�(�/�2�2�,�)�/��9�8�-�*�:�-�%�9�)�-�7�8�9�'�-�1�7�(�/�.�*�$�-�4�1�@�5�+�3�+�2�.�/�@�.�3��*�2�*�8�=�.�+�.�'�/�+�/�,�8�3�1�0�)�)�2�.�#�6�'�6�3�(�,�*�2�&�1��+�5�5�E�,�0�6�(�2�1�/�%� �0�*�7�*�(�8�*�/�5�3�'�/�'�/��/�%�"�*�.�7�+�5�:�3�9�0�,�*�,�0�/�-�0�B�"�,�1�2�.�)�-�8�+�+�8�+�4�/�5�/�)�/�.�)�/�0�,�:�&�.�)�2�,�1�*��5�$�4�$��0�+�2�1�$�/�*�!�1�'�/�5�4�-�'�,�1�6�5�&�-�0�8�5�#�.�!�2�&�'�%�4�)�&�$�7�3�9�-�0�.�A�'�&�,�1�-�(�)�*�0�3�7�/�+�%�)�0�,�)�1�1�4�'�$�$�*��"�&�#�/�4�'�'�-�9�9�-�.�/�)�8�3�%� �7�)�(�4�!�,�9�'�'��0�*�7�%�*�&�%�#�0�,�1�!�+�)�2�&�&�'�5�6�1�-�.�.�0�5�#�(�(�3�3�&�)�+�3�3�2��9�0�1�*�.�&�.�#�3�7�'�(�=�5�6�3�2�)�;�/�%�'�&�9�0�3�.�/�5�G�/�5� �ڀрӀԀӀҀԀҀ׀ƀـ׀р؀׀؀ҀրـҀՀ׀Ԁց-�3�7� �7�5�5�-�A�5�(�>�/�/�1�+�.�,�'�.�=�)�$�-�4�%�+�%�.�4�-�*�1�9�'�<��(�5�.�)�5�,�/�9�1�-�.�9�,�/�4�/�1�3�<�5�-�7�.�0�6�0�1�7�0�3�5�?�5�/�6�.�/�-�-�3�'�+�)�-�7�6�3�2� �2�(�-�&�9�/��7�!�<�6�6�&�5�.�@�=�B�=�?�I�I�@�C�5�@�*��8�:�&�:�;�'�*�3� �;�.�:�)�#�5�4�2�,�7�0�3�-�6�'�/�-�6�*�*�0�8�3�0�'�5�3�/�2�&�(�%�9�(�)�,�.��(�@�/�)��-�#�D�'�+�0�+�0�/�5�%�1�5��8�6�7�%�,��.�+�'�0�#�*�'�#�'��C�9�(�:�4�/�>�&�-�*�)�.�1�.��1�,�4�-�7�)�4�1��6�-�5�5�)�5�*�#�8�&�.�0�*�/�%�0�'�3�5��,�9�(�*�3�,�9�0�2�<�%�(�/�,�2�3�>�+�&�-�/�4�+�-�:�/�:�*�0�7�#�8�1�5�7�5�/�6�*�,�0�+�2�)�$�,�!�%�>�2�<��2�$�0�3�0�+�*�*�?�-�.�0�0�/�*�*�)�,�6�(�*�7�%�.�&�.�5�/�.�,�*��.�0�-�-�5�8�0�"�>�"�+�2�%�,�8�0�1�#�@�/�"�1�5�9�(�-�0�/�/�-�3�4�$�,�,�5�,�C�,�0�'��&�/�#�3�3�1�+�'�2�-�)�8�3�0�7�*�%�-�)�-�&�5�5�-�?�$�4�>�*�4�)�5�*�+�6�+�'�4�/�%�#�3�3�3�*�/�3�#�%�3��6��.�/��,�3�/�7�&�.�$�1�'�/�5�+�/�"�+�-�+�&�,�4�*�2�!�5�/�4�6�3�"�!�.�-�%�+�/�5�/�,�*�2�4��0�2�)�6�0�9�+�-�;�8�9�/�:�.�'�1�-�;�2�!�4�3�5�%�0� �/��(�1�,�3�-�8�0�-�+�"�3�2�)�'�9�%�2�'�6�+�ՀҀ׀Ҁ܀ڀՀ׀րĀ؀؀ՀԀۀՀڀ׀ۀрրր΀Ձ&�0�/� �4�7�.�0�7�7�)�-�4�A�/�D�:�+�/�)�2�8�1�.�(�.�2�(�,�2�&�.�$�1�3�1�8�%�+�$�3�1�2�:�5�/�(�9�4�1�%�4�'�0�+�9�+�?�5�<�/�+�1�)�6�-�,�'�*��/�)�4�-�2�.�4�"�2�.�-�3�2�'�)�/�.�7�.�-�7�3�.�/�2�/�"�(�1�$�=�'�3�$�9�4�&�B�9�?�/�3�+�0�9�=�-�5�4�<�;�,�1�0�6�,�(�:�0�+�1�'�2�8�8�&�C�+�4�7�K�1�*�/�I�/�%�1�/�.�+�3�,�0�,�1�-�'�A� �4�$�1�7�+�*�!�3�*�1�)�B�7�.�)�&�+�&�&�-�-�*�"�4�+�+�)�)�8�'�#��?�2�)�.�2�*�'�,�3�"�<�7�?�*�3�4�1�-�+�+�1�3�6�:�.�8�,�)�&�0�5�-�-�,�+�8�4�/��.�/�7�0�+�1�1�.�.�-�%�3�#�3�?�3�0�%�'�,�7�&�-�(�-�$�1�*�/�7�,�'�'�/�A�=�&�1�!�9�-�/�0�-�,�+�?�"�-�(�+�0�+�/�,�(�3�/�,�8�,�%�(�'��B�4�'�:�5�"�4�2�*�:�-�9�3�9�.�@�&�6�:�,�*�&�'�4�1��3�-�2�+�,�8�:�,�5�@�9�6�4�*�/�1�/�+�9�4�(�4�3�6�/�,�(�5�;�,�+�,�,�+�/�,�/�!�&�+�.�.�4�*�1�/�.�5�)�.�,�/�.�-�2�5�=�/�,�!�-�/�:�7�/�)�4�+�3�=�(�<�/�3�/�-�3�6�&�3�1�!�/�)�5�&�9�.�5�(�+�#�#�(�-�%�-�*�>�-�6�4�)�*�*�+�,�-�-�6�/�>�0�&�&�.�,�(�-�"�7�/�.�*�8� �6�7�-�*�:�+�(�&�F�.�.�6�$�%�0�6�,�5�#�.�,�5�/�/�&�1�,�%�7�+�3�2�/�,�;�8�3�!�:�2�.�#�/�'�8�,�$�/�)�7�5�.�5�8�8�3�>��1�/�-�2�8�3�ԀЀ׀ЀԀԀԀ؀րˀӀրՀ׀׀Ԁۀրــ݀Ҁڀ؁3�2�)�!�0�@�#�4�4�@�0�*�'�3�5�3�0�1�/�.�*�)�)�-�,�-�/�&�.�4�4��/�<�5�+�1�2�?�(�9�+�&�+�0�@�2�,�2�4�.�:�&�2�%�&�1�3�2�%�.�(�1�)�.�6�0�*�9�.�:�/�A�)�#�*�'�*�+�.�,�5�/�/�.�8�/�1�6�.�2�0�6�+�&�&�'�+�?�)�=�5�,�E�%�2�H�2�+�/�:�2�4�9�2�%�,�6�.�+�>�5�/�;�(�*�0�9�,�:�0�*�0�#�5�(�)�-�6�1�6�1�%�,�0�.�'�2�1�%�.�-�5�5�+�(�-�1�6�'�-�$�*�8�%�3�4�4�7��%�+�;�)�-�0�(�2�,�(�+� �,�F�7�-�.�+�#�1�<�:�-�7�)�8�(�0�$�7�#�/�2�9�+�?�.�6�3�*�)�.�*�@�%�7�&�2�4��3�5�!�1�6�/�$�-�$�*�,�3�-�.�C�8�4�.�.�*�+�%��8�3�;�:�,�.�%�/�8�/�8�7�8�.�*�*�%�:�&�,�&�,�,�%�:�&�;�0�&�.�/�$�&�0�0�$�6�1�$�4�8�(�)�*�0�+�4�,�1�4�*�$�!�#�(�0��+�0�+�5�$�8��&�/�6�2�*�*�1�)�(�=�%�.�<�0�!�%�7�-�(�4�-�6�.�6�6�5�7�)�"�!�,�2�3�$�5�*�'�'�0�=�4�4�;�#�-�A�"�=�,�'�/�5�7�0�2�7�6�2�0�/�)�5�%�3�!�!�*�.�1�1�6�,�1�;�2�;�%�%�1�'�,�/�0�3�/�2�/�,�,�&�1�-�-�'�0�5�'�.�-�$� �+�.�+�6�(�)�7�:�1�2�6�<�#�:�/�&�;�'�7��6�%�-�'�.�4�7�;�@�1�$�*�-�4�:�4�-�4�/�:�5�.�$�B�&�2�?��1�"�3�/�!�=�"�.�-�,�5�'�+�$�<�.�7�.�/�@�&�1�8�"�*�+�!�+�/�3�2�+�>��/�+�<�<��9�<�3�1�*�,�=�6�1�#�'�&�3�4�4�'�<�؀րԀڀՀ׀Ӏ؀ր̀׀׀ڀ؀Հр׀Ҁ؀ӀрԀՀځ8�&�.�+�4�7�7�#�0�(�)�+�$�1�+�3�'�1�%�/�6�)�-�3�,�<�E�D�.�2��4�"�1�/�(�2�-�8�0�+�:�7�,�6�7�)�)�3�+�$�/�9�'�0�-�9�+�1�3�1�5�(�,�9�9�,�1�?�1�4�(�:�8�+��:��,�'�A�+�0�,�2�-�7�/�!�2�3�,�+�0�1�'�7�9�4�&�.�-�+�=�:�=�2�/�1�=�1�8�$�1�3�5�(�4�3�'�/�0�0�,�$�7�:�>�/�1�!�#�;�/�%�8�3�1�5�'�4�.�-�+�2�7�)�9�.�1�1�0�-�)�2�)�*�*�B�3�+�5�.�8�(�.�4�*�-�&�+�4�"�'�+�0�-�5�+�)�/�(�/�)�:�.�,�+�/�$�2�(�0�'�3�:�)�/��1�4�1�6�2� �3�,�@�,�+�&�)�3�-�6�*�<�-�$�*�)�9� �/�6�'�9�0�2�3�%�,�#�(�+�5�-�"�4�6�'�(�-�9�/�)�.�8�5�+�7�@�:�.�.�2�(�#�%�0�/�2�;�*�)�E�0�,�7�)�6�&�*�'�)�/�+�%�3�!�(�.�.�&�!�$�=�8�.��4�+�*�!�+�/�0�<�7�9�)�)�0�+�*�1�1�,�4�-�(�+�)�4�.�/�3�3�'�#�7�.�%�1�%�-�/�-�+�0�(�(�&�6�1�;�7�=�7�6��-�)�.��+�'�5�$�3�+�-�5�5�+�*�*�$�7�3�-�#�$�+��/�3�8�/�'�3�-�&�2�9�!�)�7�*�B�1�2�8�)�4�%�2�)�.�%�#�0�+�,�)�0�*�'�)�$�4�9�0�4�6�9�0�6�4�?�2�=�3�*�)�0�)�%�4�.�*�5�.�2�+�-�*�1�$�)�6�1�-�6�&�3��*�0�4�.�%�5�2�+�9�%�(�)�&�*�*�5�1�9�+�2�7�5���9�/�C�0�)�4�*�5�"�-�"�7�(�<�/�+�-�,�-�'�:�0�;�/�.�-�6�+�$�+�1�/�1�/�,�'�2�-�7�<�4��#��7�3�-�*�2�4�1�׀ӀӀՀҀ܀Ԁڀ׀ƀӀՀـڀՀــ؀Հрր׀؀ց*�:�+�3�B�'�9�<�5�=�7��&�9�*�+�+�)�*�+�>�)�(�0�'�2�$�.�6�5�/�7�#�-�'�4�5�,�$�!�0�5�%�(�-�*�+�/�9�6�A�/�/�4�/�3�'�4�,�-�=�3�(�5�0�%�-�,�1�1�*�0�8�,�1�-�/�=�>�%�4�1�*�"�4�2�8�)�2�0�.�*�&�5�,�+�/�*�+�6�-�/�.�2�7�.�.�6�7�(�*�,�2�1�-�1�1�(�7�.�%�2�(�"�8�1�*�#�@�3�8�+�/�)�4�.�'�-�1�.�7�6�'�)�0�+�/�.�'�,�(�9�0�&�/�4�,�'�/�)�*�*�#�2�1�4� �2��.�.�3�*�$�)�4��:�2�4�%�#�%�?�,�$�,�6�*�-�4�4�.�7�*�(�-�!�'�6�.�0�.�/�0�/�+�4�)�-�-��-�3�6�;�/�+�7�4�*�$�.�6�2�1�2��/�)�4�/�&�"�,�)�$�$�$�3�.�3�*�0�'�0�6�/�/�,�%�+�.�&�;�-�6�-�-�'�)�,�%�9�8�/�3�0�#�(�4�*��/�7�'�5�4�,�/�(�%�$�*�#�%��(�5�"�-�$�0�-�(�-�'�+�7�9�'�2�2�%�)�/�(�3�-�,�;�0�(�1�-�0�"�5�-�'�/�/�3�8�&�,�#�1�+�3�5�1�(�4�5�-�7�-�;�.�6�$�3�:� �3�)�3�)�'�0�#�3�@�3�'�3�0�(�0�'�/� �<�>�/�3�)�)�)�.�$�6�*� �)�5�)�-�1�5�.�1�=�+�*�'�.�%�3�)�-�7�3�,�(�(�2�'�4�/�-�9�!�,�)�0�.�#�>�8�5�'�0�1�*�/��,�)�2�2�/�0�.�6�*�-�-�9�9�(�#�(�4�-�5�-�,�!��2�'�/�9�'�%�7�(�3�,�/�2�"�,�-�)�)�!�.�7�,�/�6�6�-�6�-�*�'�'�-�1�&�+�(�0�)�/�-�*�:�%�+�<�0�7�3�5�.�-�$��.�*�(�1�&�0�;�3�;�8�?�/�/�'�&�1�!�4�&�ــۀӀ׀ӀՀ؀рƀ؀؀րրـڀ؀Հր؀ҀՀـ߁,�0�(�*�7�1�6�(�1�/�/�#�,�"�,�3�-�2�?�:�&�(�-�1�,�,�3�%�'�(�6�-�/�D�0�'�@�)�5�$�3�*�,�#�'�+�)�/�,�+�(�!�*�'�3�1�)�#�7�-�-�*�0�/�'�/�+�3�/�1�;�4�,�8�/�5�/�4�'�*�.�.�(�1�2�2�.�#�0�5�'�6�-�&�+�%�/�+�<�4�3�!�:�4�9�7�5�3�%�/�/�9�/�-�1�6�0�8�2�7�"�.�+�,�/�(�/�<�2�2�7�2�)�+�<�)�3�5�+�,�0�(�1�7�)�(�0�2�&�/�%�4�7�1�6�%�.�)�1�4�-�6�.�3�.�#�5�1�/�+�/�,�-�9�+�0�9�'�2�5�0�%�,�3�8�&�;�4�*�-�0�#�6�3�*�1�.�4�$� �8�,�>�+�(�3�(�/�.� �;�*�1�7�5�8�/�+�4�,�&�-�2�3�,�/�'�-�#�3�3�1�$�(�;�1�/�:�/�$�-��&�"�5�1�=�0�&�"�.�'�3��6�.��3�*�:�0�/�.��/�,�6�,�(�*�7�5�3�2�/�7�4�5�4�.���#�)�/�2�-�%�)�.�-�*��/� �4�;�'�3�,�,�2�-�#�1�*�8�&�.� � �!�+�.�-�2�2�(�-�0�0�,�)�0�;�6�,�5�0�4�)�2�1�$�.�/�)�,�1�-�-�6�0�,�1��*�.�.�/�2�/�>�(�(�5�*�5�/�1�'�&�0�3�4�0�6�4�,�.�#�+�+�/�0�$�3�7�9�+�4�,�0�3�8�-�9�/�7�.�2�6�4�)�0�0�2�+�2�'�.�1�.�1�4�E�-�+�,�2�"�5�*�*�7�5�?�+�,�!�+�0�)�.�.�+�3�0�0�3�)�1�0�'�;�1�6�,�+�6�+� �1�8�+�#�1�@�4�.�6�:�6�"�(�3�1�(�)�%��+�5�4�2�,�+�&�9�,���(�/�3�$�/�7�3�/�-�+�:�-�"�5�/�:�/�,�.�2�.�&�#�1�/�%�,�0�1�0�/�/�:�6�#�-�*�7�4�*�ــրӀӀրրՀрŀԀҀրрՀـՀڀՀՀ׀ـՀց=�6�+�-�)�4�:�A�9�/�0�/�%�&�1�2�)�0�7�;�9�#�,�7�;�:�,�3�+�'�*�%�-�+�6�8�+�7�5�-�0�8�0�1��+�&�+�4�5�&�.�)�%�8�%�0�<�8�,�)�/�%�0�/�3�.�9�<�3�/�0�.�+�+�8�/�(�@�/�.�4�0�'�0�-�2�1�;�'�5�'�)�6�8�<�2�/��0�.�/�1�/� �(�=�9��1�*�5�;�5�)�3�/�3�5�0�6�'�0�,�'�6�%�:�(�'�8�-�2�7�,�+�9�*�;�&�+�0��8�(�3�8�/�1�&�/�,�+�4�5�-�4�+�'�%�#�2�5�>�'�5�,�/�0�=�#�$�.�(�'�/�2�?�4�"�:�4�!�0�5�9�#�(�6�%�8�.��3�.�+�:�)�*�*�/�$�,�1�1�)�+�%�5�*�$�4�.�$�/�,�)�,�4�&�,�$�(�+�0�1�-�%�,�2�4�.�'�3�+�1�5�4�,�-�+�(�3�.�"�/�0�*�:�:�2�4�2�&�!�)�(�+�2�3�7�9���)�0�-�'�/�+�-�+�,�0�%�.�7�(�,�:�/�/�.�1�*�.�3�4�&�.�.�:�,�7�/�0�(�/�%�=�%�G�8�#�)�'�3�8�+�)�0�*�(�=�&�.�/�#�+�)�5�-�1�*�+�(�+�3�1�+�7�&�"�7�0�-�*�'�A�,�5�4�8�7�4�+�/�8�'�)�<�$�#�6�$�'�,�/�<�5�3�'�-�,�3�6�$�0��2�)�+�;�0�=�/�2�3�'�8�%�$�:�2�9�4�6�1�)�3�4�)�6�>�%�/�'�*�&�-�3�2�7�,�.�!�/�'�6�,�!�3�'�7�$�&�/�:�3�+�0�/�1�>�2�)�&�'�)�)�1�;�5�B�1�2�,�0�-�6�.�-�/�0�+�1�$�(�%�-�(�(�6�$�1�4�)�+�6�3�5�/�7�.�#�+�&�#�I�-�,�,�,��.�<�:�)��@�9�"�)�0�%�-�(�+�$�9�"�#�4�*�&�+�C�&�1�2�+�<�2�.�'��+�=�<�.�4�(�рԀ׀րӀـ׀܀׀Ȁـ׀ӀԀ׀ԀڀڀӀӀրрـЁ5�/�(�(�$�/�/� �.�,�-�%�1�-�1�0�'�-�7�7�.�3�)�.�7�2�6�4�5�"�%�*�)�(�0�-�1�0�1�<��1�/�1�4��*�.�(�>�,�)�#�.�*�.�5�/�'�*�:�+�5�-�+�'�)�5�0�2�<�;�1�+�.�<�7�*�3�)�6�2�0�1�!�(�)�.�2�:�.�+�+�)�/�-�5�.�6�1�0�7�-�'�1�5� �4�4�-�4�E�%�5�'�-�&�$�,�(�1�8�8�3�,�-�(�(�#�+�@�/�9�2�%��A�'�&�"�4�.�/�>�!�#�/�+�)�.�<�)�+�-��4�*�'�+�?� �5�1�'�2�4�3�1�1�%�-�6�(�*�0�#�0�(�;�-�+�3�1� �)�*�)�!�6�7�3�:�'�5�2�3�*�*�-�/�3�5�/�*�0�(�$�'�$�%�.�4��5�0�)�)�%�/�9�/�3�1�0�"�>�-�(�.�2�1�2�>�(�/�)�4�9�4�3�,�%�"��4�2�.�3�*�)�(�'�1�+�3�)�,�,�&�1�9�+�!�&�!�.�"�/�,�-�7� �)� �<��+�2�#�+�"�%�>�/�%�&�&�+�.�6�(�:�7�/�(�+�C�3�+�%�1�/�2�:�+�6�1�"��5�(�+�=�8�.�-�,�-�,�,�0�/�2�4�(�$�3�-�#�2�4� �-�.�/�2�)�.�0�0�8�/�,�4�,�?�3�/�5�-�2�)��&�0�,�'�(� �)�8�7�6�7�/�)�#�-�&�,�-�5�$�:�2��8�.�;�'�"�0��+�$�)�(�*�*�&�)�3�'�)�0�:�(�-�'�%�&�*�(�'�/�1�(�4�8�3�)�$�5�<�+�2�!�/�+�/�.�A�1�'�5�&�4�1�/�4��*�+�)�C�6�8�,�<�$�-�.�-�*�0�,�'�+�1�1�3�%� �+�3�1�,�%�.�/�+�3�.�,�2�/�6�B�2�/�1�)�-�:� �1�6�1�.�(�'�A�,�2�+�+�1�1�7�0�9�#�:�/�,�>�"�/�D�9�2�3�6�,�.�/�.�3�.�0�7�'�܀р؀րԀ؀؀׀׀ÀՀ׀րـՀހ؀׀ڀ׀Հр׀ҁ,�0�4�6�8�0�5�3�-�1�3�5�(�%�/�;�-�+�)�0�%�-�/�1�#�*�7�1�4�3�1�2�:�,�)�5�2�<�.�4�'�6�0�0�-�+�!�=�:�)�6�8�+�1�,�,�7�)�.�$�/�5�;�-�'�8�1�2�$�0�7�3�*�/�1�+�)�/�1�4�6�;�A�.�4�3�+�-�/�;�&�-�4�6�+�0�2�.�0�8�'��&�%�+�3�,�.�-�.�1�8�#�+�/�2�&�5�6�%�*�8�.�-�4�(�.�.�)�5�1�5�.�1�+�+�.�1�0�-�,�:�-�,�$�7�3�3�/�=�&�2�1�3�(�-�.�3�4�;�(�5�*�G�6�+�5�'�!�?�/�0�5�/�,�C�#�)�(�*�&�*�9�$�)�2�0�7�2�3�(�0�+�2�/�'�)�.�)�:�/� �+�6�7�"�.�.�-�1�/�"�)�1�/�!�/�'� �-�/�%�-�3�,�,�/�-�+�:�/�*�8�=�-��.�9�=��7�+�*�#�:�&�/�5�(��8�+�*�&�3�/�2�F�+�(�'�6�9�-�7��"�.�,�?�0�-�2�0�+�3�.�%�(�6�0�2�9�3�.�*�(�1�(�.�3�1��,�-�%�6�>�"�<�8�+�)�)�'�1�7�/�/�;�/�3��"�3�*�5�'�/�5�4�.�5�4�/�,�H�6��2�(�&�)�+�4�5�+�-�2�4�5�-� �1�+�5�'�'�3�!�"�,�*�?�2�.�/�+�*�'�0�,�<�2�0�;�$�*�&�4��7�+�.�"�$�0�"�,�5�0�4�%�+�7�+�/�6�0�6�6�/��1�7�"�-�-�A�#�.��,�2�-�-�2�)�6�+�&�6�)�/�-�)�+��A�.�4�>�$�.�6�(�-�4�;�2�2�'�'�-�5�)�(�0�#�.�%�%�&�.�,�-�-�*�?�@�/�?�3�4�-�&�2�5�3�9��<�3�"�,�'�5�/�1�<�#�:�/�7�.�'�,�(�1�,�8�9�1�5�-�B�4�2�)�5�9�$�3�/�+�7�&�$�"�-�-�(�2�3�3�(�/�=�%�1�-�/�րԀҀ܀׀ڀـ׀ԀŀՀـԀԀـ݀րӀրԀЀրрց*�<�>�*�'�2�1�3�2�5�8�/�7�1�#�5�4�9�8�/�8�6�-�-�,�2�+�6�2�)�,�;�0�2�0�-�-�.�1�)�'�)�)�5�!�9�+�)�.�*�"�"�+�<�4�6�3�#�.�0�$�B�&�6�4�/�)�,�*�;�4�8�'�,�(�2�&�+�1�9�1�-�/�/�9�-�.�(�"�2�(�"�.�0�-�/�#�"�3�6�+�:�4�1�@�/�+�4�7�8�:�0�/�(�.�+�/�2�6�,�6�7�&� �(�4�,�2�(�/�4�4�'�,�$�9�*�4�:�4�-�:�4�#�1�7�.�:�.�6�7�+�.�6�+�3�3�#�&�+�;�5�1�'�-�+�/�3�3�+�0�7�%�/�B�7�7�.�<�!�#�1�1�<�*�/�/�/�(�1�#�=�:�-�,�'��/�1�!�/�.�3�)�#�*�4�3�1�.�/�7�5�7�+�*�.�6�/��.�,�/�'�,�/�)�8�+�6�!�)�1�'�,�/�6�+��/�4�2�#�-�:�'�.�+�4�;�&�/�-�.�2�=�:�.�-�&�2� �/�4�.�3�0�/�,�4�1�=�5�0�5�)�4�1�'�+�-�0�(�8�1�.�1�2�(�)�,�/�.�6�7��&�/�,�%�'�.�$�1�*�.�1�7�1�$�&�.�0�8�.�6�.�2�'�%�-�#�2�2�"�2�/�4�.�-�0�3�(�2�#�*�,�*�/�0�-�8�=�4�6�/�)�1�.�)�?�;�6�*�5�3�7�.�(�:��'�!�#�8�'�+�&�2�0�2��&�#�&�(�(�-�2�*�1�'�%�-�4�<�)�3��.�3�0�/�)�"�1�!�$�0��.�+�4�3�8�#�/�/�$�1�"�*�,�+�*�3�,�1�0�*�1�,�)�6�6�0�+�5�*�(�+�#�3��)�/�/�)�"�)�.�1�-� �3�,�4�)�+�4�7�2�#�4�%�5�-�-�3�3�0�2�:�*��&�1�-�/�)�4�)�-�'�.�'�)�'�)�)�4�7�*�7�3�/�)�8�6�5�+�/�/�,�9�,�+�&�/�5�.�&�'�+�9�!�0��+�*�$�1�ՀҀӀӀ׀ӀԀ׀րǀڀ܀ЀրӀ؀րӀڀՀ؀׀׀؁'�%�7�3�5�2�-�1�.�2�+�3�7�1�&�,�+�+�&�,�2�2�4�1�'�5�/�1�+�A��=�/�&�/�:�6�+�/�7�1�7�4�5�)�.�9�3� �=�8�0�.�1�-�?�+�/�3�4�3�1�)�1�9�1�,�#�1�0�+�,�'�/�"�:�%�9�,�7�<�0�'�7�9�$�)�%�*�"�3�3�3�*�2�*�3�7�4�+�+�)��@�/�3�1�#�*�/��+�=�9�9�"�+�,�*�2�=�"�!�.�+�1�4�(�3�#�4�9�(�0�0�,�1�5�.�&�9�/� �(�7�!�*�&�:�!�'�0�;�$�/�!�,��(�0�(�+�0�$�7�1�7�6�1�2�5�)�1�1�*�+�(�%�.�6�%�,�)�(�2�(�*� �7�4�1�8�:�,�/�.�-�3�,�&�7�)�)�3�)��!�3�'�4�-�'�*�.�.�1�3�,��A�,�*�-�&�,�/�4�,�+�+�'�$�-��,�"�(�3�8�.�5�8�/�/�6�:�)�2�/�2�+�/�7�)�;�1�%�)�&�.�3�4�-�'�)�'�,�'�2�.�1�&�7�+�(�)�*�-�0�6�#�2�!�+�)�&�*�,�+�%�$��+�-�6�5�3�1�(�6�2�5�1�+�)�+�4�(�2�5�5�6��0�.�%�&�1�.�)�/�/�5��0�*�5�)�(�*�9� �*�.�(�1�/�5�(�2�3�1�$�%�(�%��:�.�2�(�$�0��%�2�%�,�(�+�0��4�9�(�&�-�&�/�#�7�8�5�1�%�5�8�2�3�1�/�.�5�1�<�'�1�8�,�9�7�*�3�0�"�0�4�/�1�0�1�(�/�2�3�2�(�(�.�-�7�1�/�,�"�;�)�,�,�,�*�.�4�.�;�0�)�+�1�*�"�2�.�2�)�9�&�3�4�-�,�@�<�&�#�/�/�3�+�3�=�*�4�/�#�4�(�:�-�<�1�,�2�%�;�8�2�/�-�+�&�(�&�8�.�2�$�0�0�6�.�6�0�(�2�/�.�6�%�/��$�"�0�*�-�1�&�2�<�>�2�2�$�9�+�(�5�1�4�,�0�ۀ؀րԀ؀Ԁۀ؀ӀŀހԀـڀԀր؀Հր؀ڀ؀րׁ2�0�.�&�"�/�2�&�5�&�%�1�)�)�.�6�%�"�(���,�/�7�5� �3�1�)�1�;�(��"�%�+�+�-�-�'�1�+�1�1���'��)�*�0�)�*�"�(�-�/�+�-�>�.�0�#�&�.�+�-�"�*�5�5�-�%�4�'�+�&�4�1� �?�/�$�!�0�1�+�)��4�'�;�'�1�%�-�/�%�)�'�1�&�)�(�5�)�/�&�,�'�(�'�*�#�.� �'�,�"�)�2�+�/�1�7�=�+�9�5�"�2�.�*�/� �+�0�$�-��.�!�/�6�$�3�,�.�.�(�%�/�,�-�+�%�5�'�7�-�.�,�)�+�5�(�4��1�)�,�/�$�&�1�(�,�'��3�*�$�0�'�'�-�)�&�%�$�'�)��0�3�-�:�'�8�"�4�%�%�2�2�+�!�)�'�"�/�&�+�,�*�2�"�1�'�/�)�"�-�.�%�<�&� �/��*� �.�C��+�3�/�,�&�-�1�/�+�'�0�(�!�'�3�+�/�)�,�&�/�<�.�&�<�.�(�/�,�%�)�(�8�-�+�,�;�0�.�5�%�/�2�"�7�/�2�#�0�6�'�!�!�6�'�.�=�1�2�8�)�'�B�)�!�'�"�-�0�&�2�>�+�$�,�,�!�(�+�!��#�%�:�!�!�(��/� �*�-�&� �4�&�'�(�*�'�$�.�)�-�3�.�%�+�0�+��1�&�*�'�3� �/�-�(�"�-�&�,�6�1�%�-�;�6�/�0�(�+�.�,�0�7�1�)�!�$�3�$�/�2�&�-�3�.�5�;�-�'�(�/�)�-�)�,�*�4�/�8�6�+�&�#�,�'�#�'�0�*�2�2�(�(�+�5�-�-�3�5�.�$�/�!�$�B�*�(�-�6�1��3�/�%�$�$�3�3�)�-�*�0�,�(�.�"�*�1�1�)�0�(�+�/�(�3�.�"�(�)�.�/�(�1�$��9�%�-�7�+�*�.�4�,�3�#�)�7�'�(�)�'�%�(�)�.��5�8�+�"�8�(�#�$�,�(�4�1�#�*�.�+�6�.�/�5�"�-�!�3�πЀӀրՀՀ؀؀؀Ȁ׀ՀՀ݀ՀҀҀԀՀ׀ҀـՀրހӀـڀڀــڀۀڀ݀܀ڀۀ܀׀ــڀ߀ـڀـۀـր݀ڀӀ׀ـ؀Ӏ؀׀׀؀ۀ܀ހ׀Հրۀڀۀــրڀ׀ـۀ܀ڀԀـր؀Հހ؀ــ؀ۀ؀؀׀܀ـӀ؀ـــ܀׀؀ӀԀ݀ڀـۀڀۀڀ܀׀ـــՀӀӀ�׀ڀӀ׀ր׀ۀ׀ڀ݀؀ۀۀڀր׀Հ܀Ԁـڀ׀ԀڀӀۀۀ݀׀ـրڀـڀ׀ڀՀ׀׀݀׀׀؀׀ـڀ؀׀ڀ݀ր׀݀܀ــ׀րـ܀߀ۀ܀݀ۀրրހۀ݀׀؀׀��ހـڀր׀׀Ӏ܀ـۀ؀݀��݀��ڀ܀݀؀ڀ׀ڀ݀܀Ӏ܀Ѐـ؀܀ـ��ـՀրۀۀ߀րۀۀ؀؀ހ׀׀րՀۀ׀؀ڀڀހ؀րրրڀـ݀؀׀ڀ��܀؀Ѐۀրـ؀ۀ׀݀׀܀؀ڀ߀ր܀ۀԀڀրڀ؀ـ؀Հ݀Ӏۀ׀܀؀ـԀՀۀՀ؀ـր܀ՀՀڀڀ؀׀ـ߀׀ڀ܀݀ڀـ؀ـ��ـ߀ۀڀـ؀ـՀۀـ߀܀܀݀��܀ـ݀݀ހــ׀ۀЀ׀ր׀ހ܀ۀ؀ր��܀ـۀ׀ր׀ڀ߀ڀـ؀ۀڀ��؀Ѐ݀ۀۀۀՀۀހـ݀؀ۀӀ׀׀߀Ҁրڀ؀րـ߀ހր؀ՀՀՀۀ׀ހՀـԀՀր݀׀ـրۀـــ׀ـрۀ߀ـހր׀Ѐۀ߀ـ݀րۀԀڀ�ۀـՀـրۀۀۀӀۀ݀ڀـ؀ڀـ܀ـπـ��ހڀ؀ڀـҀ܀׀ڀ܀ڀӀրـۀԀ݀؀؀ۀ߀ڀӀۀ�ۀ׀׀܀ր��րՀ؀ڀ݀؀Ԁـ݀׀ـր׀ۀـր܀ۀ݀܀Հڀ׀ԀـڀҀ�ـڀ܀ڀڀրۀ܀ــր؀րۀ׀߀ހ߀݀ـ܀܀ހՀ߀ـՀՀӀ؀Ҁр׀ҀƀԀրՀـӀـЀրـ؀րրՀ؀Ӏۀ݀؀܀ۀــ׀ڀ܀Հրۀۀ݀Հ݀݀ڀ׀ڀ׀Հހ؀ր؀ـހڀ؀݀݀ހڀ؀ـڀ܀ԀՀــ߀Հ܀ڀ��ۀڀր܀ـ؀׀׀ـ݀݀ۀۀڀ׀؀܀Ӏ݀܀րڀڀ؀Հۀــ؀ڀ׀Հــۀڀ׀܀Ԁ׀ۀրӀـހ܀ӀـՀڀ܀ۀՀ؀ۀۀԀڀ܀߀ڀӀ�݀ڀՀԀ؀ڀ؀րӀր߀րۀ؀րـ܀ڀۀــڀۀҀۀۀ׀׀ـ؀݀܀Հ܀ڀ؀ۀـۀ׀Ԁ܀׀Ӏ׀؀ـڀހ݀ـր߀Ӏـ܀؀ՀހـՀۀ؀؀ـ؀׀ހڀۀ؀Ԁրۀրـ׀ـՀۀԀ܀܀ۀ׀Հڀۀ߀׀ր؀Ԁހ��׀܀ՀրҀڀހ݀݀߀ހҀۀڀۀ�܀ۀۀрۀހ׀ۀڀ؀ހۀ؀׀ڀـڀ؀ۀՀ׀݀׀؀݀݀׀܀ڀڀրڀҀۀڀ׀܀Հрހـۀۀـۀـրހ׀ڀ׀ހ߀ڀՀڀ׀ڀ؀ހ׀؀ـ׀�րـۀՀҀ��׀ـҀڀـۀڀ݀ۀ܀ـۀــڀՀ܀ڀڀ׀ـۀր׀׀ـڀ܀ڀՀ݀ۀ؀݀р׀׀݀ڀӀ܀Հۀ؀؀�׀؀ڀ�ـӀրـڀӀހ܀ހ׀܀Հــ؀ԀـՀ؀ۀ݀؀ڀ׀րހ׀ڀۀـڀހۀ߀րـ׀ԀڀԀـ܀ـ݀ۀր؀؀׀؀Ӏ؀׀׀݀ۀــրրـ׀؀؀׀ހـ܀ڀۀ�׀ڀڀـ܀Հހـրۀրۀڀۀրրڀր؀؀ۀހ׀݀ր؀׀؀ՀՀـ؀ڀڀڀ؀Ԁۀڀ׀ۀــــ߀ۀـ؀րۀـӀӀ׀ڀ߀ڀՀ܀րԀۀ݀ڀۀـۀۀ؀Հ؀ڀ؀ۀ؀؀׀ـՀ݀؀րۀ܀؀��Հ܀Ӏ؀Հـ݀݀݀ۀրڀـրҀ׀Ӏ؀ՀÀՀԀڀրՀۀԀՀ׀ـԀӀր׀׀ــ׀܀܀ր؀р؀؀ӀԀҀ�׀׀߀ۀՀـՀـހ݀؀݀׀׀ـ׀׀؀ހۀ߀׀׀ڀր؀ۀ׀߀Հ׀׀ڀ݀݀߀ڀڀրՀ؀ՀԀҀ׀�ـۀՀԀՀ݀׀ڀ܀؀ۀۀ׀݀ր݀ۀրހڀր؀؀݀ۀ׀ڀր߀׀Հـڀڀ؀ۀڀۀր܀؀րՀۀրڀՀր؀؀ڀԀ؀ڀڀրۀ܀ր݀ڀ߀؀݀ـ܀؀ۀڀڀ݀܀ހՀ��ۀـڀۀـԀ؀�ڀԀ؀܀ـՀڀӀ׀ــۀ؀ۀۀڀڀۀ݀؀��ڀրր؀ڀ݀܀׀րڀހրԀ׀ـހۀ��Հ؀ـۀ݀݀ր܀׀րӀۀ؀ڀۀڀ܀ۀ�݀ڀ׀ր܀րՀڀ׀Ѐ߀߀ڀӀۀ׀܀ڀــ݀ҀـրހՀ݀ۀۀ܀ՀՀڀـ׀ـ܀ԀԀ׀ր؀ۀԀրӀր׀ـހـրՀــ؀܀؀݀ـ؀׀؀ڀڀ׀؀؀ـրր׀؀߀ڀ׀݀ڀـހ݀؀ՀۀՀۀ܀܀ހ؀ۀր׀߀؀�ۀڀ؀Ԁـ׀ՀڀӀڀڀۀ܀ۀ׀ۀ݀݀܀؀׀ր܀ۀՀۀڀր؀׀րԀԀ߀ـ؀ـ؀ր݀ـ݀ۀ׀܀ـۀ؀ڀۀԀۀ݀ـڀۀ݀ڀՀ߀ڀۀ܀ۀ݀Ӏ܀րԀԀ׀ـހ׀׀րԀ׀ԀڀـրՀ݀߀܀ҀրӀ׀րڀҀڀۀ݀���ـ؀ڀڀ݀ڀҀـ؀؀݀ڀۀ׀րـ׀׀ۀ؀ـۀڀ׀؀ڀՀۀ؀ــڀڀ׀Ԁ؀ڀ݀ـ׀؀؀݀؀ۀ��܀݀ۀ؀݀ۀڀр׀ـՀ܀؀ـ܀݀Ԁրހ׀ԀӀـ׀ۀ׀ڀۀۀـՀ܀րր܀׀��ր׀߀ـր�ۀـ׀؀ـր߀рڀրـڀ܀րՀۀـڀـ؀׀܀؀Ӏ؀րـ׀ՀڀڀՀՀЀ߀ҀʀԀրҀ׀Ӏ؀рӀԀЀӀ؀؀Ԁ׀Ҁ׀Ԁڀ׀܀݀݀Հ݀݀܀ۀڀր݀׀Հڀ؀ۀڀ؀݀ހ݀׀؀ր��܀ڀ׀ۀրր؀րހրҀ؀׀݀܀Հ܀ڀ׀݀ր߀ڀ׀׀ــۀۀۀրـ�ۀۀڀހ؀ڀڀـՀ׀݀ڀЀـހـڀ܀ـۀԀۀۀހ݀Հ׀߀ހ׀݀݀؀ڀրـ܀׀׀ހ؀܀Հ܀��ۀۀ׀؀݀ڀۀӀۀրـ��ӀրՀՀۀ߀܀߀ـ܀ڀ؀ۀ݀׀ۀԀڀրՀ؀ـ׀܀؀ۀ׀ހ؀؀׀ـ׀ڀ׀ـҀۀ؀ۀۀ݀ـՀ݀ـ؀ހ܀߀ۀۀ߀ڀڀ׀ۀ܀ހــڀڀ׀ր؀ــ݀݀ڀ؀ڀրڀ��Հ܀׀Հ݀Ҁ׀݀ــԀՀ׀ـ׀ր׀ڀـՀ݀ۀ؀ـրր߀��ڀՀހ��Ӏ׀ۀـ؀ـ݀׀ۀ܀׀ՀՀҀԀ؀ڀՀ؀րــڀ׀Հ݀ڀ؀ــ݀��ڀ؀Ԁ׀րـӀڀۀӀ؀ڀـ܀Ҁ܀Հـ݀؀ۀԀڀـۀ؀րۀڀـڀՀۀހ��؀߀ڀր׀׀ۀ܀߀ЀڀڀրԀӀـހــ��րـӀــҀــ߀ހ؀ۀրۀ׀��؀݀؀ހ׀Հ��ۀ܀ހ܀ـۀ׀܀ԀԀ߀րԀڀ׀ڀ݀ۀۀ׀݀׀ۀـހՀۀ؀Ԁր݀рڀր��׀݀݀ۀԀހـ׀߀݀؀Հۀ׀ۀـڀրҀրրՀՀӀۀՀӀ؀ـۀ݀׀ր݀ۀڀ؀ՀڀրڀӀ׀׀ـ܀׀Ӏ؀ۀـ݀؀׀ـڀـրԀـҀ܀׀ހ׀Ԁ�ۀ׀րـڀـހ؀݀րր׀ڀ؀ۀڀۀ܀݀�ڀ؀ր݀ހ׀ڀրـڀۀ׀ۀր݀؀ڀ׀ۀ׀݀؀׀݀׀րـ܀ր܀ۀ؀܀ԀӀـ݀ހԀـ݀݀ڀހրڀ׀ڀ��׀ހՀӀЀԀԀ؀րրՀȀҀՀـр؀׀ՀԀ؀рڀӀՀ׀܀׀ۀ؀؀ԀۀրԀ؀ހـ݀ـۀۀڀ؀��ــހ׀Ҁ׀ހӀ؀ڀـۀрՀҀـՀڀـրـ��ڀրـ܀؀ր߀Հـր؀߀ـۀՀـ؀܀Ԁ߀؀ހӀۀր׀݀݀ڀـ؀ـ܀ڀۀ܀׀ۀۀӀ׀Ҁڀ߀܀ـ׀ۀڀـ܀ـڀ׀ހــۀڀڀ܀ـހӀހ߀ــӀ؀׀Ӏۀހ݀րۀۀ߀ــــ܀׀ހր׀ۀۀ׀��݀ހۀԀــ܀؀؀րր׀݀ـՀՀـ׀ր؀߀ڀ܀ڀ݀ڀۀـ�݀׀րӀ׀݀ۀـ؀ڀ݀ހҀՀـ݀ۀۀހ܀ڀۀـۀۀ׀ڀـڀրՀۀ݀ӀڀԀՀ׀؀܀ـրՀހրހրހڀـ��ڀ׀܀݀؀ڀހـ؀ـڀ߀ــ߀ۀ׀݀݀ـڀ؀ۀ݀ڀրЀۀ׀܀׀܀܀׀ՀӀ݀܀ـ؀؀Ӏ܀ڀ݀ـڀ׀ۀ؀ــԀ؀߀܀ՀԀԀՀ؀ހ݀׀؀րրӀ׀ـ׀߀؀؀Հ؀׀Ѐހހր܀׀܀؀ր׀ڀր׀߀ڀۀڀրڀՀ׀܀Ԁր׀Հـ��ـ׀ـ܀׀ڀЀۀـ܀؀׀؀ڀ܀ՀۀӀ؀܀ـۀڀ܀׀ـ׀ڀՀހՀՀۀ׀׀ր܀ۀӀڀހۀڀ؀ڀ؀ڀ݀׀݀ـۀ݀ڀـրـ׀׀؀Ԁ݀��܀׀ـԀ�ڀڀۀۀـ؀݀�Ӏۀ܀ԀۀӀ؀Ԁڀـ؀ۀՀ؀��؀׀րր׀ڀ߀ր؀݀׀ӀՀ܀؀ـ��ـҀڀՀրӀڀ�ـــۀڀڀ܀Ҁـڀڀ׀݀ڀԀ׀ۀՀـڀ׀�܀ـڀ؀ـ؀ــۀ܀ڀՀـԀڀ׀ۀ݀݀ՀՀ܀ـ׀ــ݀݀Ԁ߀׀ހ׀Ӏۀـ؀׀݀ڀՀ܀ـ݀ۀۀ݀ހހ؀ـۀڀۀր߀ՀڀڀՀـԀрՀӀÀր׀׀؀րр׀ҀՀӀҀـրԀ؀ӀــހրـՀ߀݀܀ۀ��؀܀߀߀ހ݀ڀڀ܀Հڀ؀܀Հ؀؀ր؀܀ۀրڀՀހր׀ր݀րـՀԀԀ��؀ۀڀԀ�Ӏڀր؀րр܀ۀՀـ��߀؀ڀ؀ۀـЀ�Ԁ؀ۀրڀۀԀրրրЀڀրـրـ�Հڀ׀Ԁ؀܀��ր܀ڀԀ؀ـހڀր܀׀ۀ؀݀ۀۀڀڀۀڀ�ր�рڀڀԀ܀؀Ӏـۀ܀ـ܀ـր߀ՀـՀۀڀ�ـ݀ۀހڀـڀ׀ۀ��ڀۀրۀ؀׀րـ܀܀րրڀڀ؀߀܀Հހ؀ـހـ߀׀؀ۀԀ܀ـ߀؀Հـ݀ۀրڀր׀׀��ۀ؀׀Ԁڀ׀׀؀ـրހڀ׀؀Հ׀ހـ׀ــҀڀ܀ր܀Հ׀ۀڀۀڀ׀ڀԀۀԀހ؀ـ׀؀ۀԀۀӀۀӀՀՀۀ؀܀݀ـ؀ۀ߀ހڀ߀րڀ׀ـ؀ހـڀـ׀܀ـԀۀ׀Ԁڀـ݀րڀ؀Ӏڀۀـ߀܀ڀ׀ڀـڀ׀Ԁۀ׀׀Ԁ؀ۀրڀۀր܀ހހԀր܀�܀ր݀׀߀׀րـۀـ׀׀ڀۀ׀ۀـ׀Ӏ߀ր؀Հ؀Հހڀۀ��؀܀܀ۀ׀؀ڀـ؀ۀ׀ۀ׀݀߀Ҁ߀ۀـ�܀׀܀Ԁ݀ۀۀ؀րـۀۀۀր؀؀Ӏ݀ހԀـڀۀր݀րـ߀ڀ݀Հހـր݀ڀրހҀ܀ۀ؀׀րրՀ߀ڀ܀ۀ݀ڀՀـڀ؀؀؀Հր�Ӏ؀܀ՀӀ؀րՀ߀؀ۀ��Ԁ؀؀܀րՀր׀ۀՀ׀ր݀ۀՀ؀߀؀؀ـ׀Հրـ׀؀ڀـ܀Հ׀ۀ׀؀݀ހրހ�ހ܀܀Հ׀ۀڀۀՀ��Ӏۀ׀ހր؀׀ڀ׀Հـڀр܀ۀր؀ڀـ׀ـ؀րـ݀րՀڀۀ݀ՀՀـր݀րրрՀ׀׀׀ԀπҀԀʀԀۀԀӀ؀׀ҀԀ׀ՀҀ׀րԀ�ۀۀ݀ڀ׀Ӏ܀ހ݀܀ڀ܀րԀـڀڀڀ݀ڀ݀׀݀؀ڀހր׀׀ـۀЀڀ݀׀؀ۀՀ߀ـԀۀـۀڀ؀؀��ր؀ۀـրڀ݀Հހ܀րۀ݀ۀ׀ـ؀ۀـۀԀـڀ׀ڀ׀؀ՀڀۀԀ܀ր܀׀ڀ߀ــրۀ׀ڀ׀Հրڀۀրրր؀ـۀ׀܀؀ڀـހրՀۀ߀ۀ߀ۀڀ׀ۀ݀Ӏ݀ր؀Հހ݀ــ؀܀׀Ӏڀڀ׀Ҁ܀ՀڀՀـــր؀Ԁۀ؀܀܀ڀ׀ހ܀؀؀րۀ؀ڀ؀ۀ׀Ӏڀ؀ۀ؀؀ـۀـ܀ڀڀ݀�ր݀׀Հڀ؀؀ۀڀ؀ۀԀր؀Հۀڀ݀ۀ׀׀׀׀؀؀؀׀ڀ܀܀ԀՀۀӀۀ؀Ӏ݀߀݀ۀ׀ڀ׀׀��ՀԀڀـրـۀـۀــ܀ۀۀր߀؀ۀڀ؀ـ׀؀ـۀրՀ׀߀؀ހۀ׀ڀ؀ڀڀـ؀�؀Ԁــ؀ـ׀ՀԀԀ��ڀۀ܀ހ؀׀Ԁڀ܀ۀ݀ӀــԀ׀݀؀ӀӀ݀ڀ߀׀Հـ؀ހրՀ׀ҀـՀ��׀݀Հـ؀ՀՀ܀Ԁۀրڀڀ׀׀Հ׀ـۀԀۀՀ܀ۀ؀݀݀݀܀݀��ـۀ�׀ۀ܀܀ــ܀ۀ؀Հ؀؀ـۀрՀ݀׀ۀրՀ׀׀܀؀؀߀րڀـڀۀրـ׀ۀ��؀׀Հۀ܀ۀڀ׀Ԁ؀؀܀ۀԀۀހ؀܀ۀ؀ـ܀рڀۀۀـ׀ހր܀׀؀ڀ߀׀�׀ԀڀӀ׀ր܀Ԁۀڀ؀Ԁ؀ۀ݀ҀӀՀԀ؀�րۀր܀؀׀݀րڀـ׀؀؀׀ڀӀڀހ׀ـ܀؀��ހπـހ؀܀Ԁ׀ڀڀــ؀ր܀�؀؀րԀ݀܀ڀ׀ڀڀــ׀Ԁր܀Հրۀր׀Հ؀ۀ׀ڀڀ݀ހۀ؀ހրـրՀ׀ڀր׀؀ـԀÀӀ܀׀րҀـրՀـӀԀ܀Ԁր܀ڀрր׀ڀрۀ݀ـՀހـ܀Հր݀݀؀؀�ԀۀۀـրۀրրހՀ؀ր܀ۀ݀ـހـ݀܀݀րڀրۀԀۀۀހ؀ր܀ր׀Հـ݀ـՀր׀߀݀׀ۀՀ��؀ۀ�ـހր߀ـ؀׀ۀ؀ڀހ؀׀ր؀ۀր��ۀހրրۀ܀Ӏ��ހԀրـ׀׀ӀԀ׀ڀր߀׀܀݀ڀրڀ݀ـ׀׀ڀ؀ԀԀۀ׀݀܀рـ؀Ԁڀ؀ۀހۀ׀܀׀ۀۀրڀ؀؀ԀۀۀԀր؀׀ۀڀـ؀ۀ܀Ҁ܀ۀ߀Հހ��߀րـ��ـԀрۀր܀ՀՀԀـڀހ߀րҀڀــــހՀ߀ԀҀ݀ـրۀՀ܀Ӏۀրڀ܀׀Հ�ۀـӀހ܀ۀՀ܀ۀ؀ހـހ׀ՀހՀ݀؀ހ݀܀ـڀ׀؀րـՀ݀׀ڀ׀ـހ܀܀؀րր܀܀܀؀ڀ؀܀؀׀Հـ݀Ԁـڀۀڀڀ؀݀ր׀րڀՀڀրڀ׀׀Հ�Հۀ׀܀ڀ؀؀׀ـ׀݀Ԁ׀ր݀׀րۀـڀۀ܀܀؀؀׀ڀ܀ـڀ߀ԀրހӀ݀�ـӀـڀր݀ـ؀րــۀۀӀ؀ڀ؀ڀۀ׀ـ݀؀ۀ݀ـ�؀ڀـڀۀ׀ހӀـ߀ۀ؀ۀՀ܀ހۀӀ܀܀؀܀��ۀ׀Հۀـۀ؀ۀـހր߀׀܀�Ҁۀ܀ހڀڀրրۀՀ؀݀Ҁڀ܀ۀۀրـ߀ۀ܀ـր܀׀߀ـ�܀ۀր؀ڀҀ؀ڀۀـՀۀՀڀ߀ۀ׀ՀԀۀ׀ۀۀ؀�Հրڀڀ݀Հ׀؀ڀ׀܀ۀրـڀՀ׀рԀۀ؀܀ـ݀ڀـڀ؀ՀՀ׀ڀ׀݀рހ؀׀ـ׀܀ՀڀۀՀՀۀրԀԀڀ݀ڀ׀ۀހ؀ڀڀۀۀӀ׀ԀڀՀր؀Ӏހڀ׀��؀րۀՀՀ؀рӀڀҀ� \ No newline at end of file diff --git a/ccdproc/tests/pytest_fixtures.py b/ccdproc/tests/pytest_fixtures.py index f9a751a1..3e6eae15 100644 --- a/ccdproc/tests/pytest_fixtures.py +++ b/ccdproc/tests/pytest_fixtures.py @@ -1,8 +1,5 @@ # Licensed under a 3-clause BSD style license - see LICENSE.rst -import gzip -from tempfile import mkdtemp -import os from shutil import rmtree import numpy as np @@ -10,7 +7,6 @@ import pytest from astropy import units as u from astropy.utils import NumpyRNGContext -from astropy.io import fits from astropy.nddata import CCDData from ..utils.sample_directory import directory_for_testing @@ -40,7 +36,8 @@ def value_from_markers(key, request): def ccd_data(data_size=DEFAULT_DATA_SIZE, data_scale=DEFAULT_DATA_SCALE, - data_mean=DEFAULT_DATA_MEAN): + data_mean=DEFAULT_DATA_MEAN, + rng_seed=DEFAULT_SEED): """ Return a CCDData object with units of ADU. @@ -61,7 +58,7 @@ def ccd_data(data_size=DEFAULT_DATA_SIZE, scale = data_scale mean = data_mean - with NumpyRNGContext(DEFAULTS['seed']): + with NumpyRNGContext(rng_seed): data = np.random.normal(loc=mean, size=[size, size], scale=scale) fake_meta = {'my_key': 42, 'your_key': 'not 42'} diff --git a/ccdproc/tests/run_for_memory_profile.py b/ccdproc/tests/run_for_memory_profile.py index 20cbaecb..e43069a3 100644 --- a/ccdproc/tests/run_for_memory_profile.py +++ b/ccdproc/tests/run_for_memory_profile.py @@ -1,3 +1,6 @@ +import pytest +pytest.importorskip('memory_profiler') + from argparse import ArgumentParser from tempfile import TemporaryDirectory from pathlib import Path diff --git a/ccdproc/tests/setup_package.py b/ccdproc/tests/setup_package.py deleted file mode 100644 index 77a472fa..00000000 --- a/ccdproc/tests/setup_package.py +++ /dev/null @@ -1,9 +0,0 @@ -# Licensed under a 3-clause BSD style license - see LICENSE.rst -def get_package_data(): - return { - _ASTROPY_PACKAGE_NAME_ + '.tests': ['coveragerc', - 'data/a8280271.fits', - 'data/sip-wcs.fit', - 'data/expected_ifc_file_properties.csv', - 'data/science-mef.fits', - 'data/flat-mef.fits']} diff --git a/ccdproc/tests/test_bitfield.py b/ccdproc/tests/test_bitfield.py index 00c22aac..612b1e81 100644 --- a/ccdproc/tests/test_bitfield.py +++ b/ccdproc/tests/test_bitfield.py @@ -3,8 +3,6 @@ import numpy as np import pytest -from astropy.tests.helper import catch_warnings - from ccdproc.core import bitfield_to_boolean_mask @@ -69,9 +67,8 @@ def test_bitfield_flag_non_integer(): def test_bitfield_duplicate_flag_throws_warning(): bm = np.random.randint(0, 10, (10, 10)) - with catch_warnings(UserWarning) as w: + with pytest.warns(UserWarning): bitfield_to_boolean_mask(bm, [1, 1]) - assert len(w) def test_bitfield_none_identical_to_strNone(): diff --git a/ccdproc/tests/test_ccdmask.py b/ccdproc/tests/test_ccdmask.py index da89e947..f65d5e58 100644 --- a/ccdproc/tests/test_ccdmask.py +++ b/ccdproc/tests/test_ccdmask.py @@ -161,7 +161,7 @@ def test_ccdmask_pixels(): 19971, 20063, 19936, 19941, 19928, 19937, 19970, 19931, 20036, 19965, 19855, 19949, 19965, 19821]]), unit='adu') - target_mask = np.zeros(flat1.shape, dtype=np.bool) + target_mask = np.zeros(flat1.shape, dtype=bool) # No bad pixels in this scenario ratio = flat1.divide(flat2) diff --git a/ccdproc/tests/test_ccdproc.py b/ccdproc/tests/test_ccdproc.py index 8a56c473..eac5276a 100644 --- a/ccdproc/tests/test_ccdproc.py +++ b/ccdproc/tests/test_ccdproc.py @@ -6,7 +6,6 @@ from astropy.units.quantity import Quantity import astropy.units as u from astropy.wcs import WCS -from astropy.tests.helper import catch_warnings from astropy.utils.exceptions import AstropyUserWarning from astropy.nddata import StdDevUncertainty, CCDData @@ -30,8 +29,8 @@ HAS_BLOCK_X_FUNCS = False -# test creating deviation -# success expected if u_image * u_gain = u_readnoise +# Test creating deviation +# Success expected if u_image * u_gain = u_readnoise @pytest.mark.parametrize('u_image,u_gain,u_readnoise,expect_success', [ (u.electron, None, u.electron, True), (u.electron, u.electron, u.electron, False), @@ -62,7 +61,7 @@ def test_create_deviation(u_image, u_gain, u_readnoise, np.testing.assert_array_equal(ccd_var.uncertainty.array, expected_var) assert ccd_var.unit == ccd_data.unit - # uncertainty should *not* have any units -- does it? + # Uncertainty should *not* have any units -- does it? with pytest.raises(AttributeError): ccd_var.uncertainty.array.unit else: @@ -80,7 +79,7 @@ def test_create_deviation_from_negative(): np.isnan(ccd_var.uncertainty.array)) -def test_create_deviation_from_negative(): +def test_create_deviation_from_negative_2(): ccd_data = ccd_data_func(data_mean=0, data_scale=10) ccd_data.unit = u.electron readnoise = 5 * u.electron @@ -95,18 +94,18 @@ def test_create_deviation_from_negative(): def test_create_deviation_keywords_must_have_unit(): ccd_data = ccd_data_func() - # gain must have units if provided + # Gain must have units if provided with pytest.raises(TypeError): create_deviation(ccd_data, gain=3) - # readnoise must have units + # Readnoise must have units with pytest.raises(TypeError): create_deviation(ccd_data, readnoise=5) - # readnoise must be provided + # Readnoise must be provided with pytest.raises(ValueError): create_deviation(ccd_data) -# tests for overscan +# Tests for overscan @pytest.mark.parametrize('data_rectangle', [False, True]) @pytest.mark.parametrize('median,transpose', [ (False, False), @@ -118,9 +117,9 @@ def test_subtract_overscan(median, transpose, data_rectangle): if data_rectangle: ccd_data.data = ccd_data.data[:, :-30] - # create the overscan region + # Create the overscan region oscan = 300. - oscan_region = (slice(None), slice(0, 10)) # indices 0 through 9 + oscan_region = (slice(None), slice(0, 10)) # Indices 0 through 9 fits_section = '[1:10, :]' science_region = (slice(None), slice(10, None)) @@ -184,7 +183,7 @@ def test_subtract_overscan(median, transpose, data_rectangle): np.testing.assert_almost_equal( ccd_data_fits_section_overscan_auto.data[science_region].mean(), sky + original_mean) - # overscan_axis should be 1 for a square overscan region + # Overscan_axis should be 1 for a square overscan region # This test only works for a non-square data region, but the # default has the wrong axis. if data_rectangle: @@ -207,7 +206,7 @@ def test_subtract_overscan(median, transpose, data_rectangle): False]) def test_subtract_overscan_model(transpose): ccd_data = ccd_data_func() - # create the overscan region + # Create the overscan region size = ccd_data.shape[0] oscan_region = (slice(None), slice(0, 10)) @@ -226,7 +225,7 @@ def test_subtract_overscan_model(transpose): original_mean = ccd_data.data[science_region].mean() - ccd_data.data[oscan_region] = 0. # only want overscan in that region + ccd_data.data[oscan_region] = 0. # Only want overscan in that region ccd_data.data = ccd_data.data + scan ccd_data = subtract_overscan(ccd_data, overscan=ccd_data[oscan_region], @@ -245,17 +244,17 @@ def test_subtract_overscan_model(transpose): def test_subtract_overscan_fails(): ccd_data = ccd_data_func() - # do we get an error if the *image* is neither CCDData nor an array? + # Do we get an error if the *image* is neither CCDData nor an array? with pytest.raises(TypeError): subtract_overscan(3, np.zeros((5, 5))) - # do we get an error if the *overscan* is not an image or an array? + # Do we get an error if the *overscan* is not an image or an array? with pytest.raises(TypeError): subtract_overscan(np.zeros((10, 10)), 3, median=False, model=None) # Do we get an error if we specify both overscan and fits_section? with pytest.raises(TypeError): subtract_overscan(ccd_data, overscan=ccd_data[0:10], fits_section='[1:10]') - # do we raise an error if we specify neither overscan nor fits_section? + # Do we raise an error if we specify neither overscan nor fits_section? with pytest.raises(TypeError): subtract_overscan(ccd_data) # Does a fits_section which is not a string raise an error? @@ -338,7 +337,7 @@ def test_subtract_bias_fails(): bias = CCDData(np.array([200, 200]), unit=u.adu) with pytest.raises(ValueError): subtract_bias(ccd_data, bias) - # should fail because units don't match + # Should fail because units don't match bias = CCDData(np.zeros_like(ccd_data), unit=u.meter) with pytest.raises(u.UnitsError): subtract_bias(ccd_data, bias) @@ -360,7 +359,7 @@ def test_subtract_dark(explicit_times, scale, exposure_keyword): ccd_data.header[exptime_key] = exptime dark_exposure_unit = exposure_unit if explicit_times: - # test case when units of dark and data exposures are different + # Test case when units of dark and data exposures are different dark_exposure_unit = u.minute dark_sub = subtract_dark(ccd_data, master_dark, dark_exposure=dark_exptime * dark_exposure_unit, @@ -434,7 +433,7 @@ def test_subtract_dark_fails(): exposure_unit=u.second) assert "uncalibrated image" in str(e.value) - # fail when the arrays are not the same size + # Fail when the arrays are not the same size with pytest.raises(ValueError): small_master = CCDData(ccd_data) small_master.data = np.zeros((1, 1)) @@ -467,10 +466,10 @@ def test_unit_mismatch_behaves_as_expected(): assert expected_message in str(e.value) -# test for flat correction +# Test for flat correction def test_flat_correct(): ccd_data = ccd_data_func(data_scale=10) - # add metadata to header for a test below... + # Add metadata to header for a test below... ccd_data.header['my_key'] = 42 size = ccd_data.shape[0] # create the flat, with some scatter @@ -478,7 +477,7 @@ def test_flat_correct(): flat = CCDData(data, meta=fits.header.Header(), unit=ccd_data.unit) flat_data = flat_correct(ccd_data, flat, add_keyword=None) - # check that the flat was normalized + # Check that the flat was normalized # Should be the case that flat * flat_data = ccd_data * flat.data.mean # if the normalization was done correctly. np.testing.assert_almost_equal((flat_data.data * flat.data).mean(), @@ -486,20 +485,20 @@ def test_flat_correct(): np.testing.assert_allclose(ccd_data.data / flat_data.data, flat.data / flat.data.mean()) - # check that metadata is unchanged (since logging is turned off) + # Check that metadata is unchanged (since logging is turned off) assert flat_data.header == ccd_data.header -# test for flat correction with min_value +# Test for flat correction with min_value def test_flat_correct_min_value(data_scale=1, data_mean=5): ccd_data = ccd_data_func() size = ccd_data.shape[0] - # create the flat + # Create the flat data = 2 * np.random.normal(loc=1.0, scale=0.05, size=(size, size)) flat = CCDData(data, meta=fits.header.Header(), unit=ccd_data.unit) flat_orig_data = flat.data.copy() - min_value = 2.1 # should replace some, but not all, values + min_value = 2.1 # Should replace some, but not all, values flat_corrected_data = flat_correct(ccd_data, flat, min_value=min_value) flat_with_min = flat.copy() flat_with_min.data[flat_with_min.data < min_value] = min_value @@ -524,7 +523,7 @@ def test_flat_correct_norm_value(): # Test flat correction with mean value that is different than # the mean of the flat frame. - # create the flat, with some scatter + # Create the flat, with some scatter # Note that mean value of flat is set below and is different than # the mean of the flat data. flat_mean = 5.0 @@ -533,7 +532,7 @@ def test_flat_correct_norm_value(): flat_data = flat_correct(ccd_data, flat, add_keyword=None, norm_value=flat_mean) - # check that the flat was normalized + # Check that the flat was normalized # Should be the case that flat * flat_data = ccd_data * flat_mean # if the normalization was done correctly. np.testing.assert_almost_equal((flat_data.data * flat.data).mean(), @@ -547,7 +546,7 @@ def test_flat_correct_norm_value_bad_value(): # Test that flat_correct raises the appropriate error if # it is given a bad norm_value. Bad means <=0. - # create the flat, with some scatter + # Create the flat, with some scatter data = np.random.normal(loc=1.0, scale=0.05, size=ccd_data.shape) flat = CCDData(data, meta=fits.Header(), unit=ccd_data.unit) with pytest.raises(ValueError) as e: @@ -555,20 +554,20 @@ def test_flat_correct_norm_value_bad_value(): assert "norm_value must be" in str(e.value) -# test for deviation and for flat correction +# Test for deviation and for flat correction def test_flat_correct_deviation(): ccd_data = ccd_data_func(data_scale=10, data_mean=300) size = ccd_data.shape[0] ccd_data.unit = u.electron ccd_data = create_deviation(ccd_data, readnoise=5 * u.electron) - # create the flat + # Create the flat data = 2 * np.ones((size, size)) flat = CCDData(data, meta=fits.header.Header(), unit=ccd_data.unit) flat = create_deviation(flat, readnoise=0.5 * u.electron) ccd_data = flat_correct(ccd_data, flat) -# test the uncertainty on the data after flat correction +# Test the uncertainty on the data after flat correction def test_flat_correct_data_uncertainty(): # Regression test for #345 dat = CCDData(np.ones([100, 100]), unit='adu', @@ -580,7 +579,7 @@ def test_flat_correct_data_uncertainty(): assert (res.uncertainty.array == dat.uncertainty.array).all() -# tests for gain correction +# Tests for gain correction def test_gain_correct(): ccd_data = ccd_data_func() init_data = ccd_data.data @@ -599,28 +598,33 @@ def test_gain_correct_quantity(): assert ccd_data.unit == u.electron -# test transform is ccd +# Test transform is ccd def test_transform_isccd(): with pytest.raises(TypeError): transform_image(1, 1) -# test function is callable +# Test function is callable def test_transform_isfunc(): ccd_data = ccd_data_func() with pytest.raises(TypeError): transform_image(ccd_data, 1) -# test warning is issue if WCS information is available +# Test warning is issue if WCS information is available def test_catch_transform_wcs_warning(): ccd_data = ccd_data_func() def tran(arr): return 10 * arr - with catch_warnings() as w: - tran = transform_image(ccd_data, tran) + # No warning. + transform_image(ccd_data, tran) + + # Issue warning when data has WCS. + ccd_data.wcs = wcs_for_testing(ccd_data.shape) + with pytest.warns(UserWarning, match='WCS information may be incorrect'): + transform_image(ccd_data, tran) @pytest.mark.parametrize('mask_data, uncertainty', [ @@ -650,7 +654,7 @@ def tran(arr): tran.uncertainty.array) -# test block_reduce and block_replicate wrapper +# Test block_reduce and block_replicate wrapper @pytest.mark.skipif(not HAS_BLOCK_X_FUNCS, reason="needs astropy >= 1.1.x") @pytest.mark.skipif((skimage.__version__ < '0.14.2') and ('dev' in np.__version__), @@ -661,7 +665,7 @@ def test_block_reduce(): mask=np.zeros((4, 4), dtype=bool), uncertainty=StdDevUncertainty(np.ones((4, 4))) ) - with catch_warnings(AstropyUserWarning) as w: + with pytest.warns(AstropyUserWarning) as w: ccd_summed = block_reduce(ccd, (2, 2)) assert len(w) == 1 assert 'following attributes were set' in str(w[0].message) @@ -690,7 +694,7 @@ def test_block_average(): mask=np.zeros((4, 4), dtype=bool), uncertainty=StdDevUncertainty(np.ones((4, 4)))) ccd.data[::2, ::2] = 2 - with catch_warnings(AstropyUserWarning) as w: + with pytest.warns(AstropyUserWarning) as w: ccd_avgd = block_average(ccd, (2, 2)) assert len(w) == 1 assert 'following attributes were set' in str(w[0].message) @@ -716,7 +720,7 @@ def test_block_replicate(): ccd = CCDData(np.ones((4, 4)), unit='adu', meta={'testkw': 1}, mask=np.zeros((4, 4), dtype=bool), uncertainty=StdDevUncertainty(np.ones((4, 4)))) - with catch_warnings(AstropyUserWarning) as w: + with pytest.warns(AstropyUserWarning) as w: ccd_repl = block_replicate(ccd, (2, 2)) assert len(w) == 1 assert 'following attributes were set' in str(w[0].message) @@ -737,20 +741,20 @@ def test_block_replicate(): assert 'testkw2' not in ccd.meta -# test blockaveraging ndarray +# Test blockaveraging ndarray def test__blkavg_ndarray(): with pytest.raises(TypeError): _blkavg(1, (5, 5)) -# test rebinning dimensions +# Test rebinning dimensions def test__blkavg_dimensions(): ccd_data = ccd_data_func(data_size=10) with pytest.raises(ValueError): _blkavg(ccd_data.data, (5,)) -# test blkavg works +# Test blkavg works def test__blkavg_larger(): ccd_data = ccd_data_func(data_size=20) a = ccd_data.data @@ -760,7 +764,7 @@ def test__blkavg_larger(): np.testing.assert_almost_equal(b.sum(), 0.25 * a.sum()) -# test overscan changes +# Test overscan changes def test__overscan_schange(): ccd_data = ccd_data_func() old_data = ccd_data.copy() @@ -772,7 +776,7 @@ def test__overscan_schange(): def test_create_deviation_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() - ccd = create_deviation(ccd_data, gain=5 * u.electron / u.adu, readnoise=10 * u.electron) + _ = create_deviation(ccd_data, gain=5 * u.electron / u.adu, readnoise=10 * u.electron) np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit @@ -781,7 +785,8 @@ def test_cosmicray_median_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() error = np.zeros_like(ccd_data) - ccd = cosmicray_median(ccd_data, error_image=error, thresh=5, mbox=11, gbox=0, rbox=0) + with np.errstate(invalid="ignore", divide="ignore"): + _ = cosmicray_median(ccd_data, error_image=error, thresh=5, mbox=11, gbox=0, rbox=0) np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit @@ -789,8 +794,7 @@ def test_cosmicray_median_does_not_change_input(): def test_cosmicray_lacosmic_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() - error = np.zeros_like(ccd_data) - ccd = cosmicray_lacosmic(ccd_data) + _ = cosmicray_lacosmic(ccd_data) np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit @@ -799,7 +803,8 @@ def test_flat_correct_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() flat = CCDData(np.zeros_like(ccd_data), unit=ccd_data.unit) - ccd = flat_correct(ccd_data, flat=flat) + with np.errstate(invalid="ignore"): + _ = flat_correct(ccd_data, flat=flat) np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit @@ -807,7 +812,7 @@ def test_flat_correct_does_not_change_input(): def test_gain_correct_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() - ccd = gain_correct(ccd_data, gain=1, gain_unit=ccd_data.unit) + _ = gain_correct(ccd_data, gain=1, gain_unit=ccd_data.unit) np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit @@ -816,7 +821,7 @@ def test_subtract_bias_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() master_frame = CCDData(np.zeros_like(ccd_data), unit=ccd_data.unit) - ccd = subtract_bias(ccd_data, master=master_frame) + _ = subtract_bias(ccd_data, master=master_frame) np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit @@ -824,7 +829,7 @@ def test_subtract_bias_does_not_change_input(): def test_trim_image_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() - ccd = trim_image(ccd_data, fits_section=None) + _ = trim_image(ccd_data, fits_section=None) np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit @@ -832,16 +837,17 @@ def test_trim_image_does_not_change_input(): def test_transform_image_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() - ccd = transform_image(ccd_data, np.sqrt) + with np.errstate(invalid="ignore"): + _ = transform_image(ccd_data, np.sqrt) np.testing.assert_array_equal(original.data, ccd_data) assert original.unit == ccd_data.unit def wcs_for_testing(shape): - # Set up a simply WCS, details are cut/pasted from astropy WCS docs, + # Set up a simple WCS, details are cut/pasted from astropy WCS docs, # mostly. CRPIX is set to the center of shape, rounded down. - # Create a new WCS object. The number of axes must be set + # Create a new WCS object. The number of axes must be set # from the start w = WCS(naxis=2) @@ -876,7 +882,6 @@ def test_wcs_project_onto_same_wcs_remove_headers(): # Remove an example WCS keyword from the header target_wcs = wcs_for_testing(ccd_data.shape) ccd_data.wcs = wcs_for_testing(ccd_data.shape) - print(ccd_data.header) ccd_data.header = ccd_data.wcs.to_header() new_ccd = wcs_project(ccd_data, target_wcs) @@ -985,8 +990,8 @@ def test_wcs_project_onto_scale_wcs(): def test_ccd_process_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() - ccd = ccd_process(ccd_data, gain=5 * u.electron / u.adu, - readnoise=10 * u.electron) + _ = ccd_process(ccd_data, gain=5 * u.electron / u.adu, + readnoise=10 * u.electron) np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit @@ -997,11 +1002,11 @@ def test_ccd_process_parameters_are_appropriate(): with pytest.raises(TypeError): ccd_process(ccd_data, oscan=True) - # trim section check + # Trim section check with pytest.raises(TypeError): ccd_process(ccd_data, trim=True) - # error frame check + # Error frame check # gain and readnoise must be specified with pytest.raises(ValueError): ccd_process(ccd_data, error=True) @@ -1010,7 +1015,7 @@ def test_ccd_process_parameters_are_appropriate(): with pytest.raises(ValueError): ccd_process(ccd_data, error=True, gain=None, readnoise=5) - # mask check + # Mask check with pytest.raises(TypeError): ccd_process(ccd_data, bad_pixel_mask=3) @@ -1018,13 +1023,13 @@ def test_ccd_process_parameters_are_appropriate(): with pytest.raises(TypeError): ccd_process(ccd_data, master_bias=3) - # master flat check + # Master flat check with pytest.raises(TypeError): ccd_process(ccd_data, master_flat=3) def test_ccd_process(): - # test the through ccd_process + # Test the through ccd_process ccd_data = CCDData(10.0 * np.ones((100, 100)), unit=u.adu) ccd_data.data[:, -10:] = 2 ccd_data.meta['testkw'] = 100 @@ -1048,8 +1053,8 @@ def test_ccd_process(): dark_scale=False, dark_exposure=1.*u.s, data_exposure=1.*u.s) - # final results should be (10 - 2) / 2.0 - 2 = 2 - # error should be (4 + 5)**0.5 / 0.5 = 3.0 + # Final results should be (10 - 2) / 2.0 - 2 = 2 + # Error should be (4 + 5)**0.5 / 0.5 = 3.0 np.testing.assert_array_equal(2.0 * np.ones((100, 90)), occd.data) np.testing.assert_almost_equal(3.0 * np.ones((100, 90)), @@ -1061,7 +1066,7 @@ def test_ccd_process(): def test_ccd_process_gain_corrected(): - # test the through ccd_process with gain_corrected as False + # Test the through ccd_process with gain_corrected as False ccd_data = CCDData(10.0 * np.ones((100, 100)), unit=u.adu) ccd_data.data[:, -10:] = 2 ccd_data.meta['testkw'] = 100 @@ -1085,8 +1090,8 @@ def test_ccd_process_gain_corrected(): dark_scale=False, dark_exposure=1.*u.s, data_exposure=1.*u.s, gain_corrected=False) - # final results should be (10 - 2) / 2.0 - 2 = 2 - # error should be (4 + 5)**0.5 / 0.5 = 3.0 + # Final results should be (10 - 2) / 2.0 - 2 = 2 + # Error should be (4 + 5)**0.5 / 0.5 = 3.0 np.testing.assert_array_equal(2.0 * np.ones((100, 90)), occd.data) np.testing.assert_almost_equal(3.0 * np.ones((100, 90)), diff --git a/ccdproc/tests/test_ccdproc_logging.py b/ccdproc/tests/test_ccdproc_logging.py index 48713756..1af1896e 100644 --- a/ccdproc/tests/test_ccdproc_logging.py +++ b/ccdproc/tests/test_ccdproc_logging.py @@ -5,7 +5,8 @@ from astropy.nddata import CCDData import pytest -from ccdproc import subtract_bias, create_deviation, Keyword +from ccdproc import subtract_bias, create_deviation, Keyword, trim_image +from ccdproc.core import _short_names from ccdproc.tests.pytest_fixtures import ccd_data as ccd_data_func @@ -89,3 +90,25 @@ def test_implicit_logging(): 'creatvar', 'Shortened name for ccdproc command') assert ("readnoise=" + str(3 * ccd_data.unit) in result.header['creatvar']) + + +def test_loggin_without_keyword_args(): + # Regression test for the first failure in #704, which fails because + # there is no "fits_section" keyword in the call to trim_image. + ccd = CCDData(data=np.arange(1000).reshape(20, 50), + header=None, + unit='adu') + section = "[10:20, 10:20]" + trim_1 = trim_image(ccd, "[10:20, 10:20]") + assert section in trim_1.header[_short_names['trim_image']] + + +def test_logging_with_really_long_parameter_value(): + # Another regression test for the trim_3 case in #704 + ccd = CCDData(data=np.arange(1000).reshape(20, 50), + header=None, + unit='adu') + section = ("[10:2000000000000000000000000000000000000000000000000000000, " + "10:2000000000000000000000000000000]") + trim_3 = trim_image(ccd, fits_section=section) + assert section in trim_3.header[_short_names['trim_image']] diff --git a/ccdproc/tests/test_combiner.py b/ccdproc/tests/test_combiner.py index 10f48e89..a2ab84fa 100644 --- a/ccdproc/tests/test_combiner.py +++ b/ccdproc/tests/test_combiner.py @@ -1,17 +1,30 @@ # Licensed under a 3-clause BSD style license - see LICENSE.rst +from packaging.version import Version, parse import numpy as np import astropy.units as u from astropy.stats import median_absolute_deviation as mad +import astropy import pytest from astropy.utils.data import get_pkg_data_filename from astropy.nddata import CCDData -from ccdproc.combiner import Combiner, combine, _calculate_step_sizes +from ccdproc.combiner import (Combiner, combine, _calculate_step_sizes, + _default_std, sigma_func) +from ccdproc.image_collection import ImageFileCollection from ccdproc.tests.pytest_fixtures import ccd_data as ccd_data_func +SUPER_OLD_ASTROPY = parse(astropy.__version__) < Version('4.3.0') + +# Several tests have many more NaNs in them than real data. numpy generates +# lots of warnings in those cases and it makes more sense to suppress them +# than to generate them. +pytestmark = pytest.mark.filterwarnings( + 'ignore:All-NaN slice encountered:RuntimeWarning' +) + # test that the Combiner raises error if empty def test_combiner_empty(): @@ -120,6 +133,18 @@ def test_1Dweights(): np.testing.assert_almost_equal(ccd.data, 312.5) +def test_pixelwise_weights(): + ccd_list = [CCDData(np.zeros((10, 10)), unit=u.adu), + CCDData(np.zeros((10, 10)) - 1000, unit=u.adu), + CCDData(np.zeros((10, 10)) + 1000, unit=u.adu)] + c = Combiner(ccd_list) + c.weights = np.ones_like(c.data_arr) + c.weights[:, 5, 5] = [1, 5, 10] + ccd = c.average_combine() + np.testing.assert_almost_equal(ccd.data[5, 5], 312.5) + np.testing.assert_almost_equal(ccd.data[0, 0], 0) + + # test the min-max rejection def test_combiner_minmax(): ccd_list = [CCDData(np.zeros((10, 10)), unit=u.adu), @@ -238,16 +263,58 @@ def test_combiner_sum(): assert ccd.meta['NCOMBINE'] == len(ccd_list) -# test data combined with mask is created correctly +# test weighted sum +def test_combiner_sum_weighted(): + ccd_data = CCDData(data=[[0, 1], [2, 3]], unit='adu') + ccd_list = [ccd_data, ccd_data, ccd_data] + c = Combiner(ccd_list) + c.weights = np.array([1, 2, 3]) + ccd = c.sum_combine() + expected_result = sum(w * d.data for w, d in + zip(c.weights, ccd_list)) + np.testing.assert_almost_equal(ccd, + expected_result) + + +# test weighted sum +def test_combiner_sum_weighted_by_pixel(): + ccd_data = CCDData(data=[[1, 2], [4, 8]], unit='adu') + ccd_list = [ccd_data, ccd_data, ccd_data] + c = Combiner(ccd_list) + # Weights below are chosen so that every entry in + weights_pixel = [ + [8, 4], + [2, 1] + ] + c.weights = np.array([weights_pixel] * 3) + ccd = c.sum_combine() + expected_result = [ + [24, 24], + [24, 24] + ] + np.testing.assert_almost_equal(ccd, expected_result) + + +# This warning is generated by numpy and is expected when +# many pixels are masked. +@pytest.mark.filterwarnings( + 'ignore:Mean of empty slice:RuntimeWarning', + 'ignore:Degrees of freedom <= 0:RuntimeWarning' +) def test_combiner_mask_average(): + # test data combined with mask is created correctly data = np.zeros((10, 10)) data[5, 5] = 1 mask = (data == 0) ccd = CCDData(data, unit=u.adu, mask=mask) ccd_list = [ccd, ccd, ccd] c = Combiner(ccd_list) + ccd = c.average_combine() - assert ccd.data[0, 0] == 0 + + # How can we assert anything about the data if all values + # are masked?! + # assert ccd.data[0, 0] == 0 assert ccd.data[5, 5] == 1 assert ccd.mask[0, 0] assert not ccd.mask[5, 5] @@ -299,14 +366,19 @@ def test_combiner_mask_median(): ccd_list = [ccd, ccd, ccd] c = Combiner(ccd_list) ccd = c.median_combine() - assert ccd.data[0, 0] == 0 - assert ccd.data[5, 5] == 1 + # We should not check the data value for masked entries. + # Instead, just check that entries are masked appropriately. assert ccd.mask[0, 0] + assert ccd.data[5, 5] == 1 assert not ccd.mask[5, 5] -# test data combined with mask is created correctly +# Ignore warnings generated because most values are masked +@pytest.mark.filterwarnings( + 'ignore:Degrees of freedom <= 0:RuntimeWarning' +) def test_combiner_mask_sum(): + # test data combined with mask is created correctly data = np.zeros((10, 10)) data[5, 5] = 1 mask = (data == 0) @@ -322,7 +394,7 @@ def test_combiner_mask_sum(): # test combiner convenience function reads fits file and combine as expected def test_combine_average_fitsimages(): - fitsfile = get_pkg_data_filename('data/a8280271.fits') + fitsfile = get_pkg_data_filename('data/a8280271.fits', package='ccdproc.tests') ccd = CCDData.read(fitsfile, unit=u.adu) ccd_list = [ccd] * 3 c = Combiner(ccd_list) @@ -373,6 +445,43 @@ def test_combiner_result_dtype(): np.testing.assert_array_almost_equal(res.data, ref) +def test_combiner_image_file_collection_input(tmp_path): + # Regression check for #754 + ccd = ccd_data_func() + for i in range(3): + ccd.write(tmp_path / f'ccd-{i}.fits') + + ifc = ImageFileCollection(tmp_path) + comb = Combiner(ifc.ccds()) + np.testing.assert_array_almost_equal(ccd.data, + comb.average_combine().data) + + +def test_combine_image_file_collection_input(tmp_path): + # Another regression check for #754 but this time with the + # combine function instead of Combiner + ccd = ccd_data_func() + for i in range(3): + ccd.write(tmp_path / f'ccd-{i}.fits') + + ifc = ImageFileCollection(tmp_path) + + comb_files = combine(ifc.files_filtered(include_path=True), + method='average') + + comb_ccds = combine(ifc.ccds(), method='average') + + np.testing.assert_array_almost_equal(ccd.data, + comb_files.data) + np.testing.assert_array_almost_equal(ccd.data, + comb_ccds.data) + + with pytest.raises(FileNotFoundError): + # This should fail because the test is not running in the + # folder where the images are. + _ = combine(ifc.files_filtered()) + + # test combiner convenience function works with list of ccddata objects def test_combine_average_ccddata(): fitsfile = get_pkg_data_filename('data/a8280271.fits') @@ -472,6 +581,80 @@ def test_sum_combine_uncertainty(): ccd.uncertainty.array, ccd2.uncertainty.array) +# Ignore warnings generated because most values are masked +@pytest.mark.filterwarnings( + 'ignore:Mean of empty slice:RuntimeWarning', + 'ignore:Degrees of freedom <= 0:RuntimeWarning' +) +@pytest.mark.parametrize('mask_point', [True, False]) +@pytest.mark.parametrize('comb_func', + ['average_combine', 'median_combine', 'sum_combine']) +def test_combine_result_uncertainty_and_mask(comb_func, mask_point): + # Regression test for #774 + # Turns out combine does not return an uncertainty or mask if the input + # CCDData has no uncertainty or mask, which makes very little sense. + ccd_data = ccd_data_func() + + # Make sure the initial ccd_data has no uncertainty, which was the condition that + # led to no uncertainty being returned. + assert ccd_data.uncertainty is None + + if mask_point: + # Make one pixel really negative so we can clip it and guarantee a resulting + # pixel is masked. + ccd_data.data[0, 0] = -1000 + + ccd_list = [ccd_data, ccd_data, ccd_data] + c = Combiner(ccd_list) + + c.minmax_clipping(min_clip=-100) + + expected_result = getattr(c, comb_func)() + + # Just need the first part of the name for the combine function + combine_method_name = comb_func.split('_')[0] + + ccd_comb = combine(ccd_list, method=combine_method_name, + minmax_clip=True, minmax_clip_min=-100) + + np.testing.assert_array_almost_equal(ccd_comb.uncertainty.array, + expected_result.uncertainty.array) + + # Check that the right point is masked, and only one point is + # masked + assert expected_result.mask[0, 0] == mask_point + assert expected_result.mask.sum() == mask_point + assert ccd_comb.mask[0, 0] == mask_point + assert ccd_comb.mask.sum() == mask_point + + +def test_combine_overwrite_output(tmp_path): + """ + The combiune function should *not* overwrite the result file + unless the overwrite_output argument is True + """ + output_file = tmp_path / "fake.fits" + + ccd = CCDData(np.ones((3, 3)), unit='adu') + + # Make sure we have a file to overwrite + ccd.write(output_file) + # Test that overwrite does NOT happen by default + with pytest.raises(OSError, match="fake.fits already exists"): + res = combine([ccd, ccd.multiply(2)], output_file=str(output_file)) + + # Should be no error here... + # The default dtype of Combiner is float64 + res = combine([ccd, ccd.multiply(2)], + output_file=output_file, + overwrite_output=True) + + res_from_disk = CCDData.read(output_file) + + # Data should be the same + np.testing.assert_allclose(res.data, res_from_disk.data) + + # test resulting uncertainty is corrected for the number of images def test_combiner_uncertainty_average(): ccd_list = [CCDData(np.ones((10, 10)), unit=u.adu), @@ -696,3 +879,84 @@ def test_ystep_calculation(num_chunks, expected): xstep, ystep = _calculate_step_sizes(2000, 2000, num_chunks) assert xstep == expected[0] and ystep == expected[1] + +def test_combiner_gen(): + ccd_data = ccd_data_func() + def create_gen(): + yield ccd_data + yield ccd_data + yield ccd_data + c = Combiner(create_gen()) + assert c.data_arr.shape == (3, 100, 100) + assert c.data_arr.mask.shape == (3, 100, 100) + + +@pytest.mark.parametrize('comb_func', + ['average_combine', 'median_combine', 'sum_combine']) +def test_combiner_with_scaling_uncertainty(comb_func): + # A regression test for #719, in which it was pointed out that the + # uncertainty was not properly calculated from scaled data in + # median_combine + + ccd_data = ccd_data_func() + # The factors below are not particularly important; just avoid anything + # whose average is 1. + ccd_data_lower = ccd_data.multiply(3) + ccd_data_higher = ccd_data.multiply(0.9) + + combiner = Combiner([ccd_data, ccd_data_higher, ccd_data_lower]) + # scale each array to the mean of the first image + scale_by_mean = lambda x: ccd_data.data.mean() / np.ma.average(x) + combiner.scaling = scale_by_mean + + scaled_ccds = np.array([ccd_data.data * scale_by_mean(ccd_data.data), + ccd_data_lower.data * scale_by_mean(ccd_data_lower.data), + ccd_data_higher.data * scale_by_mean(ccd_data_higher.data) + ]) + + avg_ccd = getattr(combiner, comb_func)() + + if comb_func != 'median_combine': + uncertainty_func = _default_std() + else: + uncertainty_func = sigma_func + + expected_unc = uncertainty_func(scaled_ccds, axis=0) + + np.testing.assert_almost_equal(avg_ccd.uncertainty.array, + expected_unc) + + +@pytest.mark.parametrize('comb_func', + ['average_combine', 'median_combine', 'sum_combine']) +def test_user_supplied_combine_func_that_relies_on_masks(comb_func): + # Test to make sure that setting some values to NaN internally + # does not affect results when the user supplies a function that + # uses masks to screen out bad data. + + data = np.ones((10, 10)) + data[5, 5] = 2 + mask = (data == 2) + ccd = CCDData(data, unit=u.adu, mask=mask) + # Same, but no mask + ccd2 = CCDData(data, unit=u.adu) + + ccd_list = [ccd, ccd, ccd2] + c = Combiner(ccd_list) + + if comb_func == 'sum_combine': + expected_result = 3 * data + actual_result = c.sum_combine(sum_func=np.ma.sum) + elif comb_func == 'average_combine': + expected_result = data + actual_result = c.average_combine(scale_func=np.ma.mean) + elif comb_func == 'median_combine': + expected_result = data + actual_result = c.median_combine(median_func=np.ma.median) + + # Two of the three values are masked, so no matter what the combination + # method is the result in this pixel should be 2. + expected_result[5, 5] = 2 + + np.testing.assert_almost_equal(expected_result, + actual_result) diff --git a/ccdproc/tests/test_cosmicray.py b/ccdproc/tests/test_cosmicray.py index 9615907e..e5ea9f2f 100644 --- a/ccdproc/tests/test_cosmicray.py +++ b/ccdproc/tests/test_cosmicray.py @@ -1,13 +1,21 @@ # Licensed under a 3-clause BSD style license - see LICENSE.rst +import packaging import numpy as np from numpy.testing import assert_allclose import pytest from astropy.utils import NumpyRNGContext +from astropy.utils.exceptions import AstropyDeprecationWarning from astropy.nddata import StdDevUncertainty from astropy import units as u +try: + from astroscrappy import __version__ as asy_version +except Exception as e: + print("Oh no, no working astroscrappy") + pytest.skip("skipping astroscrappy tests", allow_module_level=True) + from ccdproc.core import (cosmicray_lacosmic, cosmicray_median, background_deviation_box, background_deviation_filter) from ccdproc.tests.pytest_fixtures import ccd_data as ccd_data_func @@ -16,15 +24,18 @@ DATA_SCALE = 5.3 NCRAYS = 30 +OLD_ASTROSCRAPPY = (packaging.version.parse(asy_version) < + packaging.version.parse('1.1.0')) + def add_cosmicrays(data, scale, threshold, ncrays=NCRAYS): size = data.shape[0] with NumpyRNGContext(125): crrays = np.random.randint(0, size, size=(ncrays, 2)) - # use (threshold + 1) below to make sure cosmic ray is well above the + # use (threshold + 15) below to make sure cosmic ray is well above the # threshold no matter what the random number generator returns crflux = (10 * scale * np.random.random(NCRAYS) + - (threshold + 5) * scale) + (threshold + 15) * scale) for i in range(ncrays): y, x = crrays[i] data.data[y, x] = crflux[i] @@ -32,15 +43,15 @@ def add_cosmicrays(data, scale, threshold, ncrays=NCRAYS): def test_cosmicray_lacosmic(): ccd_data = ccd_data_func(data_scale=DATA_SCALE) - threshold = 5 + threshold = 10 add_cosmicrays(ccd_data, DATA_SCALE, threshold, ncrays=NCRAYS) noise = DATA_SCALE * np.ones_like(ccd_data.data) - data, crarr = cosmicray_lacosmic(ccd_data.data, sigclip=5) + data, crarr = cosmicray_lacosmic(ccd_data.data, sigclip=5.9) # check the number of cosmic rays detected - # currently commented out while checking on issues - # in astroscrappy - # assert crarr.sum() == NCRAYS + # Note that to get this to succeed reliably meant tuning + # both sigclip and the threshold + assert crarr.sum() == NCRAYS def test_cosmicray_lacosmic_ccddata(): @@ -49,12 +60,12 @@ def test_cosmicray_lacosmic_ccddata(): add_cosmicrays(ccd_data, DATA_SCALE, threshold, ncrays=NCRAYS) noise = DATA_SCALE * np.ones_like(ccd_data.data) ccd_data.uncertainty = noise - nccd_data = cosmicray_lacosmic(ccd_data, sigclip=5) + nccd_data = cosmicray_lacosmic(ccd_data, sigclip=5.9) # check the number of cosmic rays detected - # currently commented out while checking on issues - # in astroscrappy - # assert nccd_data.mask.sum() == NCRAYS + # Note that to get this to succeed reliably meant tuning + # both sigclip and the threshold + assert nccd_data.mask.sum() == NCRAYS def test_cosmicray_lacosmic_check_data(): @@ -176,10 +187,36 @@ def test_cosmicray_lacosmic_warns_on_ccd_in_electrons(recwarn): gain=gain, gain_apply=True, readnoise=readnoise) - assert len(recwarn) == 1 + assert "Image unit is electron" in str(recwarn.pop()) +# The skip can be removed when the oldest supported astroscrappy +# is 1.1.0 or higher +@pytest.mark.skipif(OLD_ASTROSCRAPPY, + reason='astroscrappy < 1.1.0 does not support ' + 'this functionality') +# The values for inbkg and invar are DELIBERATELY BAD. They are supposed to be +# arrays, so if detect_cosmics is called with these bad values a ValueError +# will be raised, which we can check for. +@pytest.mark.parametrize('new_args', [dict(inbkg=5), + dict(invar=5), + dict(inbkg=5, invar=5)]) +def test_cosmicray_lacosmic_invar_inbkg(new_args): + # This IS NOT TESTING FUNCTIONALITY it is simply testing + # that calling with the new keyword arguments to astroscrappy + # 1.1.0 raises no error. + ccd_data = ccd_data_func(data_scale=DATA_SCALE) + threshold = 5 + add_cosmicrays(ccd_data, DATA_SCALE, threshold, ncrays=NCRAYS) + noise = DATA_SCALE * np.ones_like(ccd_data.data) + ccd_data.uncertainty = noise + + with pytest.raises(TypeError): + nccd_data = cosmicray_lacosmic(ccd_data, sigclip=5.9, + **new_args) + + def test_cosmicray_median_check_data(): with pytest.raises(TypeError): ndata, crarr = cosmicray_median(10, thresh=5, mbox=11, @@ -294,3 +331,64 @@ def test_background_deviation_filter_fail(): cd = np.random.normal(loc=0, size=(100, 100), scale=scale) with pytest.raises(ValueError): background_deviation_filter(cd, 0.5) + + +# This test can be removed in ccdproc 3.0 when support for old +# astroscrappy is removed. +def test_cosmicray_lacosmic_pssl_deprecation_warning(): + ccd_data = ccd_data_func(data_scale=DATA_SCALE) + with pytest.warns(AstropyDeprecationWarning): + cosmicray_lacosmic(ccd_data, pssl=1.0) + + +# Remaining tests can be removed when the oldest supported version +# of astroscrappy is 1.1.0 or higher. +@pytest.mark.skipif(not OLD_ASTROSCRAPPY, + reason='Should succeed for new astroscrappy') +@pytest.mark.parametrize('bad_args', [dict(inbkg=5), + dict(invar=5), + dict(inbkg=5, invar=5)]) +def test_error_raised_lacosmic_old_interface_new_args(bad_args): + ccd_data = ccd_data_func(data_scale=DATA_SCALE) + with pytest.raises(TypeError) as err: + cosmicray_lacosmic(ccd_data, **bad_args) + + check_message = [k in str(err) for k in bad_args.keys()] + assert all(check_message) + + +@pytest.mark.skipif(OLD_ASTROSCRAPPY, + reason='Test is of new interface compatibility layer') +def test_cosmicray_lacosmic_pssl_and_inbkg_fails(): + ccd_data = ccd_data_func(data_scale=DATA_SCALE) + with pytest.raises(ValueError) as err: + # An error should be raised if both pssl and inbkg are provided + with pytest.warns(AstropyDeprecationWarning): + # The deprecation warning is expected and should be captured + cosmicray_lacosmic(ccd_data, pssl=3, inbkg=ccd_data.data) + + assert 'pssl and inbkg' in str(err) + + +@pytest.mark.skipif(OLD_ASTROSCRAPPY, + reason='Test is of new interface compatibility layer') +def test_cosmicray_lacosmic_pssl_does_not_fail(): + # This test is a copy/paste of test_cosmicray_lacosmic_ccddata + # except with pssl=0.0001 as an argument. Subtracting nearly zero from + # the background should have no effect. The test is really + # to make sure that passing in pssl does not lead to an error + # since the new interface does not include pssl. + ccd_data = ccd_data_func(data_scale=DATA_SCALE) + threshold = 5 + add_cosmicrays(ccd_data, DATA_SCALE, threshold, ncrays=NCRAYS) + noise = DATA_SCALE * np.ones_like(ccd_data.data) + ccd_data.uncertainty = noise + with pytest.warns(AstropyDeprecationWarning): + # The deprecation warning is expected and should be captured + nccd_data = cosmicray_lacosmic(ccd_data, sigclip=5.9, + pssl=0.0001) + + # check the number of cosmic rays detected + # Note that to get this to succeed reliably meant tuning + # both sigclip and the threshold + assert nccd_data.mask.sum() == NCRAYS diff --git a/ccdproc/tests/test_image_collection.py b/ccdproc/tests/test_image_collection.py index 75e19236..eb5a55e0 100644 --- a/ccdproc/tests/test_image_collection.py +++ b/ccdproc/tests/test_image_collection.py @@ -12,10 +12,9 @@ from astropy.table import Table import numpy as np -from astropy.tests.helper import catch_warnings from astropy.utils.data import get_pkg_data_filename -from astropy.utils import minversion from astropy.utils.exceptions import AstropyUserWarning +from astropy.io.fits.verify import VerifyWarning from astropy.nddata import CCDData @@ -24,8 +23,6 @@ _filters = [] _original_dir = '' -_ASTROPY_LT_1_3 = not minversion("astropy", "1.3") - def test_fits_summary(triage_setup): keywords = ['imagetyp', 'filter'] @@ -35,11 +32,11 @@ def test_fits_summary(triage_setup): assert len(summary['file']) == triage_setup.n_test['files'] for keyword in keywords: assert len(summary[keyword]) == triage_setup.n_test['files'] - # explicit conversion to array is needed to avoid astropy Table bug in + # Explicit conversion to array is needed to avoid astropy Table bug in # 0.2.4 no_filter_no_object_row = np.array(summary['file'] == 'no_filter_no_object_bias.fit') - # there should be no filter keyword in the bias file + # There should be no filter keyword in the bias file assert summary['filter'][no_filter_no_object_row].mask @@ -208,7 +205,7 @@ def test_hdus(self, triage_setup): n_hdus = 0 for hdu in collection.hdus(): assert isinstance(hdu, fits.PrimaryHDU) - data = hdu.data # must access the data to force scaling + data = hdu.data # Must access the data to force scaling # pre-astropy 1.1 unsigned data was changed to float32 and BZERO # removed. In 1.1 and later, BZERO stays but the data type is # unsigned int. @@ -360,7 +357,7 @@ def test_generator_ccds_without_unit(self, triage_setup): location=triage_setup.test_dir, keywords=['imagetyp']) with pytest.raises(ValueError): - ccd = next(collection.ccds()) + _ = next(collection.ccds()) def test_generator_ccds(self, triage_setup): collection = ImageFileCollection( @@ -384,11 +381,11 @@ def test_filter_does_not_not_permanently_change_file_mask(self, triage_setup): collection = ImageFileCollection(location=triage_setup.test_dir, keywords=['imagetyp']) - # ensure all files are originally unmasked + # Ensure all files are originally unmasked assert not collection.summary['file'].mask.any() - # generate list that will match NO files + # Generate list that will match NO files collection.files_filtered(imagetyp='foisajfoisaj') - # if the code works, this should have no permanent effect + # If the code works, this should have no permanent effect assert not collection.summary['file'].mask.any() @pytest.mark.parametrize("new_keywords,collection_keys", [ @@ -403,10 +400,10 @@ def test_keyword_setting(self, new_keywords, collection_keys, tbl_new = collection.summary if set(new_keywords).issubset(collection_keys): - # should just delete columns without rebuilding table + # Should just delete columns without rebuilding table assert(tbl_orig is tbl_new) else: - # we need new keywords so must rebuild + # We need new keywords so must rebuild assert(tbl_orig is not tbl_new) for key in new_keywords: @@ -432,14 +429,14 @@ def test_dir_with_no_fits_files(self, tmpdir): empty_dir = tmpdir.mkdtemp() some_file = empty_dir.join('some_file.txt') some_file.dump('words') - with catch_warnings() as w: + with pytest.warns(Warning) as w: collection = ImageFileCollection(location=empty_dir.strpath, keywords=['imagetyp']) assert len(w) == 1 assert str(w[0].message) == "no FITS files in the collection." assert collection.summary is None for hdr in collection.headers(): - # this statement should not be reached if there are no FITS files + # This statement should not be reached if there are no FITS files assert 0 def test_dir_with_no_keys(self, tmpdir): @@ -448,7 +445,7 @@ def test_dir_with_no_keys(self, tmpdir): bad_dir = tmpdir.mkdtemp() not_really_fits = bad_dir.join('not_fits.fit') not_really_fits.dump('I am not really a FITS file') - # make sure an error will be generated if the FITS file is read + # Make sure an error will be generated if the FITS file is read with pytest.raises(IOError): fits.getheader(not_really_fits.strpath) @@ -484,7 +481,7 @@ def test_duplicate_keywords_in_setting(self, triage_setup): keywords=keywords_in) for key in set(keywords_in): assert (key in ic.keywords) - # one keyword gets added: file + # One keyword gets added: file assert len(ic.keywords) < len(keywords_in) + 1 def test_keyword_includes_file(self, triage_setup): @@ -520,7 +517,7 @@ def test_getting_value_for_keyword(self, triage_setup): def test_collection_when_one_file_not_fits(self, triage_setup): not_fits = 'foo.fit' path_bad = os.path.join(triage_setup.test_dir, not_fits) - # create an empty file... + # Create an empty file... with open(path_bad, 'w'): pass ic = ImageFileCollection(triage_setup.test_dir, keywords=['imagetyp']) @@ -570,16 +567,11 @@ def test_setting_write_location_to_bad_dest_raises_error(self, tmpdir, for hdr in ic.headers(save_location=bad_directory.strpath): pass - def test_no_fits_files_in_collection(self): - with catch_warnings(AstropyUserWarning) as warning_lines: - # FIXME: What exactly does this assert? - assert "no fits files in the collection." - def test_initialization_with_no_keywords(self, triage_setup): # This test is primarily historical -- the old default for # keywords was an empty list (it is now the wildcard '*'). ic = ImageFileCollection(location=triage_setup.test_dir, keywords=[]) - # iteration below failed before bugfix... + # Iteration below failed before bugfix... execs = 0 for h in ic.headers(): execs += 1 @@ -653,7 +645,8 @@ def test_header_with_long_history_roundtrips_to_disk(self, triage_setup): long_history.writeto(path_history) ic = ImageFileCollection(triage_setup.test_dir, keywords='*') with NamedTemporaryFile() as test_table: - ic.summary.write(test_table.name, format='ascii.csv') + ic.summary.write(test_table.name, format='ascii.csv', + overwrite=True) table_disk = Table.read(test_table.name, format='ascii.csv') assert len(table_disk) == len(ic.summary) @@ -706,10 +699,6 @@ def test_sorting(self, triage_setup): for i in range(len(collection.summary)): assert(collection.summary['file'][i] == collection.files[i]) - @pytest.mark.skipif( - _ASTROPY_LT_1_3, - reason="It seems to fail with a TypeError there but because of " - "different reasons (something to do with NumPy).") def test_sorting_without_key_fails(self, triage_setup): ic = ImageFileCollection(location=triage_setup.test_dir) with pytest.raises(ValueError): @@ -725,7 +714,7 @@ def test_duplicate_keywords(self, triage_setup): hdu.writeto(os.path.join(triage_setup.test_dir, 'duplicated.fits')) - with catch_warnings(UserWarning) as w: + with pytest.warns(UserWarning) as w: ic = ImageFileCollection(triage_setup.test_dir, keywords='*') assert len(w) == 1 assert 'stupid' in str(w[0].message) @@ -771,7 +760,7 @@ def test_ccds_generator_does_not_support_overwrite(self, triage_setup): def test_glob_matching(self, triage_setup): # We'll create two files with strange names to test glob - # includes / excludes + # includes / excludes one = fits.PrimaryHDU() one.data = np.zeros((5, 5)) one.header[''] = 'whatever' @@ -786,7 +775,7 @@ def test_glob_matching(self, triage_setup): glob_exclude='*other*') assert len(coll.files) == 1 - # the glob attributes are readonly, so setting them raises an Exception. + # The glob attributes are readonly, so setting them raises an Exception. with pytest.raises(AttributeError): coll.glob_exclude = '*stuff*' with pytest.raises(AttributeError): @@ -976,18 +965,19 @@ def test_less_strict_verify_option(self, triage_setup): TESTVERI= '2017/02/13-16:51:38 / Test VerifyWarning """ - testh = fits.Header.fromstring(bad_header) - print(testh) - testfits = fits.PrimaryHDU(data=np.ones((10, 10)), header=testh) + with pytest.warns(VerifyWarning): + testh = fits.Header.fromstring(bad_header) - path = Path(triage_setup.test_dir) - bad_fits_name = 'test_warnA.fits' - testfits.writeto(path / bad_fits_name, - output_verify='warn', - overwrite=True) + testfits = fits.PrimaryHDU(data=np.ones((10, 10)), header=testh) + + path = Path(triage_setup.test_dir) + bad_fits_name = 'test_warnA.fits' + testfits.writeto(path / bad_fits_name, + output_verify='warn', + overwrite=True) + + ic = ImageFileCollection(location=str(path)) - ic = ImageFileCollection(location=str(path)) - print(ic.summary.colnames) assert bad_fits_name in ic.files # Turns out this sample header is so messed up that TESTVERI does not @@ -998,8 +988,8 @@ def test_less_strict_verify_option(self, triage_setup): assert '17/02/13' in ic.summary.colnames # Try making the summary as in the original bug report - ic = ImageFileCollection(location=str(path), - glob_include='*warnA*') + with pytest.warns(AstropyUserWarning, match='The following header keyword is invalid'): + ic = ImageFileCollection(location=str(path), glob_include='*warnA*') def test_type_of_empty_collection(self, triage_setup): # Test for implementation of the suggestion in @@ -1021,9 +1011,11 @@ def test_type_of_empty_collection(self, triage_setup): p.unlink() # Now the summary should be none - ic = ImageFileCollection(triage_setup.test_dir) + with pytest.warns(AstropyUserWarning, match='no FITS files in the collection'): + ic = ImageFileCollection(triage_setup.test_dir) assert ic.summary is None assert ic.keywords == [] + assert ic.files_filtered() == [] def test_regex_match_for_search(self, triage_setup): # Test regex matching in searches @@ -1089,3 +1081,34 @@ def test_make_collection_by_filtering(self, triage_setup): assert len(new_ic.summary) == triage_setup.n_test['light'] for header in new_ic.headers(): assert header['imagetyp'].lower() == 'light' + + def test_filtered_collection_with_no_files(self, triage_setup): + ifc = ImageFileCollection(triage_setup.test_dir) + + with pytest.warns(AstropyUserWarning, match="no FITS files"): + _ = ifc.filter(object='really fake object') + + def test_filter_on_regex_escape_characters(self, triage_setup): + # Test for implementation of bugfix at + # + # https://github.com/astropy/ccdproc/issues/770 + # + # which escapes regex special characters in keyword values used for + # filtering a collection, when option `regex_match=False`. + + # For a few different special characters, make test files with FILTER + # keyword containing these + + special_kwds = ['CO+', 'GG420 (1)', 'V|R|I', 'O[III]', 'NaD^2'] + for i, kw in enumerate(special_kwds, 1): + hdu = fits.PrimaryHDU() + hdu.data = np.zeros((5, 5)) + hdu.header['REGEX_FL'] = kw + hdu.writeto(os.path.join(triage_setup.test_dir, + 'regex_special_{:d}.fits'.format(i))) + + ic = ImageFileCollection(triage_setup.test_dir) + for kw in special_kwds: + new_ic = ic.filter(regex_fl=kw) + assert len(new_ic.files) == 1 + assert kw in new_ic.summary['regex_fl'] diff --git a/ccdproc/tests/test_memory_use.py b/ccdproc/tests/test_memory_use.py index 972153c5..0ecc950f 100644 --- a/ccdproc/tests/test_memory_use.py +++ b/ccdproc/tests/test_memory_use.py @@ -1,4 +1,5 @@ # Licensed under a 3-clause BSD style license - see LICENSE.rst +from sys import platform import numpy as np @@ -26,6 +27,8 @@ def teardown_module(): fil.unlink() +@pytest.mark.skipif(not platform.startswith('linux'), + reason='memory tests only work on linux') @pytest.mark.skipif(not memory_profile_present, reason='memory_profiler not installed') @pytest.mark.parametrize('combine_method', @@ -41,6 +44,7 @@ def test_memory_use_in_combine(combine_method): size=image_size, memory_limit=memory_limit, combine_method=combine_method) + mem_use = np.array(mem_use) # We do not expect memory use to be strictly less than memory_limit # throughout the combination. The factor below allows for that. # It may need to be raised in the future...that is fine, there is a @@ -61,9 +65,13 @@ def test_memory_use_in_combine(combine_method): # Checks for NOT ENOUGH MEMORY USED; if these fail it means that # memory_factor in the combine function should perhaps be modified + # DROPPED THESE TESTS -- it isn't clear they were actually useful and + # in any event the important thing to guarantee is that we don't + # exceed the memory limit. + # If the peak is coming in under the limit something need to be fixed - assert np.max(mem_use) >= 0.95 * memory_limit_mb + # assert np.max(mem_use) >= 0.95 * memory_limit_mb # If the average is really low perhaps we should look at reducing peak # usage. Nothing special, really, about the factor 0.4 below. - assert np.mean(mem_use) > 0.4 * memory_limit_mb + # assert np.mean(mem_use[mem_use > 0]) > 0.4 * memory_limit_mb diff --git a/ccdproc/tests/test_rebin.py b/ccdproc/tests/test_rebin.py index 44bdc6f8..59c150a5 100644 --- a/ccdproc/tests/test_rebin.py +++ b/ccdproc/tests/test_rebin.py @@ -5,7 +5,6 @@ from astropy.nddata import StdDevUncertainty -from astropy.tests.helper import catch_warnings from astropy.utils.exceptions import AstropyDeprecationWarning from ccdproc.core import rebin @@ -14,21 +13,21 @@ # test rebinning ndarray def test_rebin_ndarray(): - with pytest.raises(TypeError), catch_warnings(AstropyDeprecationWarning): + with pytest.raises(TypeError), pytest.warns(AstropyDeprecationWarning): rebin(1, (5, 5)) # test rebinning dimensions def test_rebin_dimensions(): ccd_data = ccd_data_func(data_size=10) - with pytest.raises(ValueError), catch_warnings(AstropyDeprecationWarning): - rebin(ccd_data.data, (5,)) + with pytest.raises(ValueError), pytest.warns(AstropyDeprecationWarning): + rebin(ccd_data.data, (5,)) # test rebinning dimensions def test_rebin_ccddata_dimensions(): ccd_data = ccd_data_func(data_size=10) - with pytest.raises(ValueError), catch_warnings(AstropyDeprecationWarning): + with pytest.raises(ValueError), pytest.warns(AstropyDeprecationWarning): rebin(ccd_data, (5,)) @@ -36,9 +35,8 @@ def test_rebin_ccddata_dimensions(): def test_rebin_larger(): ccd_data = ccd_data_func(data_size=10) a = ccd_data.data - with catch_warnings(AstropyDeprecationWarning) as w: + with pytest.warns(AstropyDeprecationWarning): b = rebin(a, (20, 20)) - assert len(w) >= 1 assert b.shape == (20, 20) np.testing.assert_almost_equal(b.sum(), 4 * a.sum()) @@ -48,10 +46,9 @@ def test_rebin_larger(): def test_rebin_smaller(): ccd_data = ccd_data_func(data_size=10) a = ccd_data.data - with catch_warnings(AstropyDeprecationWarning) as w: + with pytest.warns(AstropyDeprecationWarning): b = rebin(a, (20, 20)) c = rebin(b, (10, 10)) - assert len(w) >= 1 assert c.shape == (10, 10) assert (c - a).sum() == 0 @@ -69,9 +66,8 @@ def test_rebin_ccddata(mask_data, uncertainty): err = np.random.normal(size=ccd_data.shape) ccd_data.uncertainty = StdDevUncertainty(err) - with catch_warnings(AstropyDeprecationWarning) as w: + with pytest.warns(AstropyDeprecationWarning): b = rebin(ccd_data, (20, 20)) - assert len(w) >= 1 assert b.shape == (20, 20) if mask_data: @@ -83,8 +79,7 @@ def test_rebin_ccddata(mask_data, uncertainty): def test_rebin_does_not_change_input(): ccd_data = ccd_data_func() original = ccd_data.copy() - with catch_warnings(AstropyDeprecationWarning) as w: + with pytest.warns(AstropyDeprecationWarning): _ = rebin(ccd_data, (20, 20)) - assert len(w) >= 1 np.testing.assert_array_equal(original.data, ccd_data.data) assert original.unit == ccd_data.unit diff --git a/docs/conf.py b/docs/conf.py index f33fe007..65aa22ad 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ highlight_language = 'python3' # If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.2' +# needs_sphinx = '1.2' # To perform a Sphinx version check that needs to be more specific than # major.minor, call `check_sphinx_version("x.y.z")` here. @@ -65,7 +65,6 @@ # be used globally. rst_epilog += """ """ - # -- Project information ------------------------------------------------------ # This does not *have* to match the package name, but typically does @@ -77,15 +76,12 @@ # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. +__import__(project) +package = sys.modules[project] -from pkg_resources import get_distribution, DistributionNotFound -try: - __version__ = get_distribution(__name__) -except DistributionNotFound: - __version__ = 'unknown' - -version = __version__ -release = __version__ +ver = package.__version__ +version = '.'.join(ver.split('.'))[:5] +release = ver # -- Options for HTML output -------------------------------------------------- @@ -169,7 +165,7 @@ if versionmod.version.release: edit_on_github_branch = "v" + versionmod.version.version else: - edit_on_github_branch = "master" + edit_on_github_branch = "main" edit_on_github_source_root = "" edit_on_github_doc_root = "docs" diff --git a/docs/default_config.rst b/docs/default_config.rst new file mode 100644 index 00000000..16a1f370 --- /dev/null +++ b/docs/default_config.rst @@ -0,0 +1,9 @@ +.. _default_config: + +ccdproc's Default Configuration File +************************************ + +To customize this, copy it to your ``$HOME/.astropy/config/ccdproc.cfg``, +uncomment the relevant configuration item(s), and insert your desired value(s). + +.. generate_config:: ccdproc diff --git a/docs/image_combination.rst b/docs/image_combination.rst index 0922d210..33ebdfc9 100644 --- a/docs/image_combination.rst +++ b/docs/image_combination.rst @@ -4,9 +4,18 @@ Combining images and generating masks from clipping =================================================== .. note:: - No attempt has been made yet to optimize memory usage in - `~ccdproc.Combiner`. A copy is made, and a mask array - constructed, for each input image. + There are currently two interfaces to image combination. One is through + the `~ccdproc.Combiner` class, the other through the `~ccdproc.combine` + function. They offer *almost* identical capabilities. The primary + difference is that `~ccdproc.combine` allows you to place an upper + limit on the amount of memory used. + + +.. note:: + Image combination performance is substantially better if you install + the `bottleneck`_ package, especially when using a median. + + .. _bottleneck: https://github.com/pydata/bottleneck The first step in combining a set of images is creating a @@ -23,7 +32,8 @@ The first step in combining a set of images is creating a >>> combiner = Combiner([ccd1, ccd2, ccd3]) The combiner task really combines two things: generation of masks for -individual images via several clipping techniques and combination of images. +individual images via several clipping techniques and combination of images, +with optional weighting of images for some of the combination methods. .. _clipping: @@ -109,11 +119,11 @@ Image combination Image combination is straightforward; to combine by taking the average, excluding any pixels mapped by clipping: - >>> combined_average = combiner.average_combine() + >>> combined_average = combiner.average_combine() # doctest: +IGNORE_WARNINGS -Performing a median combination is also straightforward, +Performing a median combination is also straightforward, but can be slow: - >>> combined_median = combiner.median_combine() # can be slow, see below + >>> combined_median = combiner.median_combine() # doctest: +IGNORE_WARNINGS @@ -124,14 +134,86 @@ In some circumstances it may be convenient to scale all images to some value before combining them. Do so by setting `~ccdproc.Combiner.scaling`: >>> scaling_func = lambda arr: 1/np.ma.average(arr) - >>> combiner.scaling = scaling_func - >>> combined_average_scaled = combiner.average_combine() + >>> combiner.scaling = scaling_func # doctest: +IGNORE_WARNINGS + >>> combined_average_scaled = combiner.average_combine() # doctest: +IGNORE_WARNINGS This will normalize each image by its mean before combining (note that the underlying images are *not* scaled; scaling is only done as part of combining using `~ccdproc.Combiner.average_combine` or `~ccdproc.Combiner.median_combine`). +Weighting images during image combination ++++++++++++++++++++++++++++++++++++++++++ + +There are times when different images need to have different weights during +image combination. For example, different images may have different exposure +times. When combining image mosaics, each pixel may need a different weight +depending on how much overlap there is between the images that make up the +mosaic. + +Both weighting by image and pixel-wise weighting are done by setting +`~ccdproc.Combiner.weights`. + +Recall that in the example on this page three images, each ``10 x 10`` pixels, +are being combined. To weight the three images differently, set +`~ccdproc.Combiner.weights` to an array for length three: + + >>> combiner.weights = np.array([0.5, 1, 2.0]) + >>> combine_weighted_by_image = combiner.average_combine() # doctest: +IGNORE_WARNINGS + +To use pixel-wise weighting set `~ccdproc.Combiner.weights` to an array that +matches the number of images and image shape, in this case ``3 x 10 x 10``: + + >>> combiner.weights = np.random.random_sample([3, 10, 10]) + >>> combine_weighted_by_image = combiner.average_combine() # doctest: +IGNORE_WARNINGS + +.. note:: + Weighting does **not** work when using the median to combine images. + It works only for combining by average or by summation. + + +.. _combination_with_IFC: + +Image combination using `~ccdproc.ImageFileCollection` +------------------------------------------------------ + +There are a couple of ways that image combination can be done if you are using +`~ccdproc.ImageFileCollection` to +:ref:`manage a folder of images `. + +For this example, a temporary folder with images in it is created: + + >>> from tempfile import mkdtemp + >>> from pathlib import Path + >>> import numpy as np + >>> from astropy.nddata import CCDData + >>> from ccdproc import ImageFileCollection, Combiner, combine + >>> + >>> ccd = CCDData(np.ones([5, 5]), unit='adu') + >>> + >>> # Make a temporary folder as a path object + >>> image_folder = Path(mkdtemp()) + >>> # Put several copies ccd in the temporary folder + >>> _ = [ccd.write(image_folder / f"ccd-{i}.fits") for i in range(3)] + >>> ifc = ImageFileCollection(image_folder) + +To combine images using the `~ccdproc.Combiner` class you can use the ``ccds`` +method of the `~ccdproc.ImageFileCollection`: + + >>> c = Combiner(ifc.ccds()) + >>> avg_combined = c.average_combine() + +There two ways combine images using the `~ccdproc.combine` function. If the +images are large enough to combine in memory, then use the file names as the argument to `~ccdproc.combine`, like this: + + >>> avg_combo_mem_lim = combine(ifc.files_filtered(include_path=True), + ... mem_limit=1e9) + +If memory use is not an issue, then the ``ccds`` method can be used here too: + + >>> avg_combo = combine(ifc.ccds()) + + .. _reprojection: @@ -182,6 +264,6 @@ Then, combine the images as described above for any set of images: .. doctest-skip:: >>> combiner = Combiner(reprojected) - >>> stacked_image = combiner.average_combine() + >>> stacked_image = combiner.average_combine() # doctest: +IGNORE_WARNINGS .. _reproject project: http://reproject.readthedocs.io/ diff --git a/docs/image_management.rst b/docs/image_management.rst index e4593bbd..a09bd5b6 100644 --- a/docs/image_management.rst +++ b/docs/image_management.rst @@ -47,7 +47,7 @@ expressions. For example, to include all filenames that begin with ``1d_`` but not ones that include the word ``bad``, you could do:: >>> ic_all = ImageFileCollection(dir, glob_include='1d_*', - ... glob_exclude='*bad*') + ... glob_exclude='*bad*') # doctest: +IGNORE_WARNINGS Alternatively, you can create the collection with an explicit list of file names:: diff --git a/docs/index.rst b/docs/index.rst index 49f9ed39..8383d229 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -63,9 +63,9 @@ Using `ccdproc` reduction_toolbox image_management reduction_examples + default_config .. toctree:: :maxdepth: 1 api - diff --git a/docs/install.rst b/docs/install.rst index c7a3d24f..f7499235 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -32,7 +32,7 @@ Using conda To install ccdproc with `anaconda`_, run:: - conda install -c astropy ccdproc + conda install -c conda-forge ccdproc Building from source diff --git a/setup.cfg b/setup.cfg index ad9f696d..ce03157e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,6 +4,12 @@ minversion = 2.2 testpaths = "ccdproc" "docs" norecursedirs = build docs/_build doctest_plus = enabled +addopts = --doctest-rst +filterwarnings= + error + ignore:numpy\.ufunc size changed:RuntimeWarning + ignore:numpy.ndarray size changed:RuntimeWarning + ignore:`np.bool` is a deprecated alias for the builtin `bool`:DeprecationWarning markers = data_size(N): set dimension of square data array for ccd_data fixture data_scale(s): set the scale of the normal distribution used to generate data @@ -24,20 +30,24 @@ github_project = astropy/ccdproc packages = find: zip_safe = False setup_requires = setuptools_scm -install_requires = numpy>=1.16 - astropy>=2.0 +install_requires = numpy>=1.21 + astropy>=5.0.1 scipy - astroscrappy>=1.0.5 - reproject>=0.5 + astroscrappy>=1.0.8 + reproject>=0.7 scikit-image -python_requires = >=3.6 +python_requires = >=3.8 + +[options.package_data] +* = data/* [options.extras_require] test = - pytest-astropy + pytest-astropy>=0.10.0 memory_profiler docs = sphinx-astropy + matplotlib [pycodestyle] @@ -82,3 +92,26 @@ exclude = _astropy_init.py,version.py [flake8] max-line-length = 100 + +[coverage:run] +source = ccdproc +omit = + */ccdproc/__init__* + */ccdproc/conftest.py + */ccdproc/*setup* + */ccdproc/*/tests/* + */ccdproc/tests/* + +[coverage:report] +exclude_lines = + # Have to re-enable the standard pragma + pragma: no cover + # Don't complain about packages we have installed + except ImportError + # Don't complain if tests don't hit assertions + raise AssertionError + raise NotImplementedError + # Don't complain about script hooks + def main\(.*\): + # Ignore branches that don't pertain to this version of Python + pragma: py{ignore_python_version} diff --git a/tox.ini b/tox.ini index 1ed1d8d2..35ba5e41 100644 --- a/tox.ini +++ b/tox.ini @@ -7,17 +7,82 @@ isolated_build = true [testenv] extras = test + +# Run the tests in a temporary directory to make sure that we don't +# import this package from the source tree changedir = test: .tmp/{envname} -[testenv:test] +description = + run tests + alldeps: with all optional dependencies + devdeps: with the latest developer version of key dependencies + oldestdeps: with the oldest supported version of key dependencies + cov: and test coverage + numpy117: with numpy 1.17.* + numpy118: with numpy 1.18.* + numpy119: with numpy 1.19.* + numpy120: with numpy 1.20.* + numpy121: with numpy 1.21.* + astropylts: with the latest astropy LTS + bottleneck: with bottleneck + +# The following provides some specific pinnings for key packages +deps = + cov: coverage + + numpy117: numpy==1.17.* + numpy118: numpy==1.18.* + numpy119: numpy==1.19.* + numpy120: numpy==1.20.* + numpy121: numpy==1.21.* + + astroscrappy11: astroscrappy==1.1.* + astroscrappy10: astroscrappy==1.0.* + + astropylts: astropy==4.0.* + + bottleneck: bottleneck>=1.3.2 + + devdeps: git+https://github.com/astropy/astropy.git#egg=astropy + devdeps: git+https://github.com/astropy/astroscrappy.git#egg=astroscrappy + + # Remember to transfer any changes here to setup.cfg also. Only listing + # packages which are constrained in the setup.cfg + # NOTE ABOUT NUMPY VERSION: for astroscrappy 1.0.8 have to use at least 1.20 + # for the tests to even get to the point of running. + oldestdeps: numpy==1.21.* + oldestdeps: astropy==5.0.* + oldestdeps: reproject==0.7 + # astroscrappy needs to install AFTER numpy so its install is done in + # the commands section instead of here. + #oldestdeps: astroscrappy==1.0.8 + oldestdeps: cython + commands = - pytest --pyargs ccdproc {toxinidir}/docs {posargs} + pip freeze + !cov-!oldestdeps: pytest --pyargs ccdproc {toxinidir}/docs {posargs} + cov: pytest --pyargs ccdproc {toxinidir}/docs --cov ccdproc --cov-config={toxinidir}/setup.cfg {posargs} + cov: coverage xml -o {toxinidir}/coverage.xml + # install astroscrappy after numpy + oldestdeps: python -m pip install astroscrappy==1.0.8 + # Do not care about warnings on the oldest builds + oldestdeps: pytest --pyargs ccdproc {toxinidir}/docs -W ignore {posargs} [testenv:build_docs] extras = docs +deps = + sphinx-automodapi<=0.13 setenv = HOME = {envtmpdir} changedir = docs commands = - sphinx-build . _build/html -b html {posargs} + pip freeze + sphinx-build . _build/html -b html -W {posargs} + +[testenv:pycodestyle] +skip_install = true +changedir = . +description = check code style with pycodestyle +deps = pycodestyle +commands = pycodestyle ccdproc --count --show-source --show-pep8