diff options
| author | Ján Jančár | 2025-02-27 13:10:10 +0100 |
|---|---|---|
| committer | GitHub | 2025-02-27 13:10:10 +0100 |
| commit | 509bc47bebfd95b289a644a6d3ccbec514f626b0 (patch) | |
| tree | e101e85689a569e17829a3627d80fd8d7169887e | |
| parent | 27abe1d969703a87aace43334969939be1b8c9f8 (diff) | |
| parent | 0c1a4b289fccd2b71360b9336e4e3814a0250bec (diff) | |
| download | sec-certs-509bc47bebfd95b289a644a6d3ccbec514f626b0.tar.gz sec-certs-509bc47bebfd95b289a644a6d3ccbec514f626b0.tar.zst sec-certs-509bc47bebfd95b289a644a6d3ccbec514f626b0.zip | |
Merge pull request #486 from crocs-muni/fix/segment-extractor-docstate
Fix ReferenceSegmentExtractor.
14 files changed, 34351 insertions, 6 deletions
diff --git a/src/sec_certs/model/references_nlp/segment_extractor.py b/src/sec_certs/model/references_nlp/segment_extractor.py index f77c8f5b..11dcb253 100644 --- a/src/sec_certs/model/references_nlp/segment_extractor.py +++ b/src/sec_certs/model/references_nlp/segment_extractor.py @@ -181,6 +181,8 @@ class ReferenceSegmentExtractor: df_reports = self._build_df(report_certs, "report") print(f"df_targets shape: {df_targets.shape}") print(f"df_reports shape: {df_reports.shape}") + if df_targets.empty and df_reports.empty: + raise ValueError("No certificates with references found.") return ReferenceSegmentExtractor._process_df(pd.concat([df_targets, df_reports]), certs) @@ -191,7 +193,7 @@ class ReferenceSegmentExtractor: "report": "report_references", } actual_ref_var = {"target": "st_keywords", "report": "report_keywords"} - raw_source_var = {"target": "st_txt_path", "report": "report_txt_path"} + state_var = {"target": "st", "report": "report"} canonical_references = getattr(cert.heuristics, canonical_ref_var[source]).directly_referencing actual_references = getattr(cert.pdf_data, actual_ref_var[source])["cc_cert_id"] @@ -202,7 +204,7 @@ class ReferenceSegmentExtractor: } actual_references = swap_and_filter_dict(actual_references, canonical_references) - raw_source_dir = getattr(cert.state, raw_source_var[source]).parent + raw_source_dir = getattr(cert.state, state_var[source]).txt_path.parent processed_source_dir = raw_source_dir.parent / "txt_processed" return [ @@ -222,6 +224,16 @@ class ReferenceSegmentExtractor: return list(itertools.chain.from_iterable(get_cert_records(cert, source) for cert in certs)) def _build_df(self, certs: list[CCCertificate], source: Literal["target", "report"]) -> pd.DataFrame: + if not certs: + return pd.DataFrame( + { + "dgst": [], + "canonical_reference_keyword": [], + "actual_reference_keywords": [], + "source": [], + "segments": [], + } + ) records = self._build_records(certs, source) records = parallel_processing.process_parallel( diff --git a/tests/cc/test_cc_analysis.py b/tests/cc/test_cc_analysis.py index a6b1b5e1..4606383c 100644 --- a/tests/cc/test_cc_analysis.py +++ b/tests/cc/test_cc_analysis.py @@ -21,6 +21,7 @@ from sec_certs.dataset.cpe import CPEDataset from sec_certs.dataset.cve import CVEDataset from sec_certs.heuristics.cc import compute_references from sec_certs.heuristics.common import compute_related_cves, compute_transitive_vulnerabilities +from sec_certs.model.references_nlp.segment_extractor import ReferenceSegmentExtractor from sec_certs.sample.cc import CCCertificate from sec_certs.sample.sar import SAR @@ -37,11 +38,10 @@ def processed_cc_dset( ) -> CCDataset: tmp_dir = tmp_path_factory.mktemp("cc_dset") shutil.copytree(analysis_data_dir, tmp_dir, dirs_exist_ok=True) - shutil.copy(pp_data_dir / "dataset.json", tmp_dir / "dataset.json") cc_dset = CCDataset.from_json(tmp_dir / "vulnerable_dataset.json") cc_dset.aux_handlers[ProtectionProfileDatasetHandler].root_dir.mkdir(parents=True, exist_ok=True) - shutil.copy(tmp_dir / "dataset.json", cc_dset.aux_handlers[ProtectionProfileDatasetHandler].dset_path) + shutil.copy(pp_data_dir / "dataset.json", cc_dset.aux_handlers[ProtectionProfileDatasetHandler].dset_path) cc_dset.aux_handlers[ProtectionProfileDatasetHandler].process_dataset() cc_dset.aux_handlers[CPEMatchDictHandler].dset = {} @@ -55,8 +55,10 @@ def processed_cc_dset( @pytest.fixture -def reference_dataset(analysis_data_dir) -> CCDataset: - return CCDataset.from_json(analysis_data_dir / "reference_dataset.json") +def reference_dataset(analysis_data_dir: Path, tmp_path_factory) -> CCDataset: + tmp_dir = tmp_path_factory.mktemp("cc_dset") + shutil.copytree(analysis_data_dir, tmp_dir, dirs_exist_ok=True) + return CCDataset.from_json(tmp_dir / "reference_dataset.json") @pytest.fixture @@ -250,3 +252,9 @@ def test_pp_linking(processed_cc_dset: CCDataset): assert ( pp_dset["c8b175590bb7fdfb"].web_data.pp_link in processed_cc_dset["95e3850bef32f410"].protection_profile_links ) + + +def test_segment_extractor(reference_dataset: CCDataset): + df = ReferenceSegmentExtractor()(reference_dataset.certs.values()) + assert df is not None + assert not df.empty diff --git a/tests/data/cc/analysis/certs/reports/pdf/2c47b65953dcffb3.pdf b/tests/data/cc/analysis/certs/reports/pdf/2c47b65953dcffb3.pdf Binary files differnew file mode 100644 index 00000000..e98478c8 --- /dev/null +++ b/tests/data/cc/analysis/certs/reports/pdf/2c47b65953dcffb3.pdf diff --git a/tests/data/cc/analysis/certs/reports/pdf/3129688580711e08.pdf b/tests/data/cc/analysis/certs/reports/pdf/3129688580711e08.pdf Binary files differnew file mode 100644 index 00000000..4c0a465c --- /dev/null +++ b/tests/data/cc/analysis/certs/reports/pdf/3129688580711e08.pdf diff --git a/tests/data/cc/analysis/certs/reports/pdf/d1b238729b25d745.pdf b/tests/data/cc/analysis/certs/reports/pdf/d1b238729b25d745.pdf Binary files differnew file mode 100644 index 00000000..329540b7 --- /dev/null +++ b/tests/data/cc/analysis/certs/reports/pdf/d1b238729b25d745.pdf diff --git a/tests/data/cc/analysis/certs/reports/txt/2c47b65953dcffb3.txt b/tests/data/cc/analysis/certs/reports/txt/2c47b65953dcffb3.txt new file mode 100644 index 00000000..eacc1bd8 --- /dev/null +++ b/tests/data/cc/analysis/certs/reports/txt/2c47b65953dcffb3.txt @@ -0,0 +1,1280 @@ +Certification Report +Bundesamt für Sicherheit in der Informationstechnik +BSI-DSZ-CC-0370-2006 +for +Océ Digital Access Controller (DAC) +R9.1.6 +from +Océ Technologies B.V. +BSI - Bundesamt für Sicherheit in der Informationstechnik, Postfach 20 03 63, D-53133 Bonn +Phone +49 (0)3018 9582-0, Fax +49 (0)3018 9582-5455, Infoline +49 (0)3018 9582-111 +Certification Report V1.0 ZS-01-01-F-330 V3.31 +BSI-DSZ-CC-0370-2006 +Océ Digital Access Controller (DAC) +R9.1.6 +from +Common Criteria Arrangement +Océ Technologies B.V. +The IT product identified in this certificate has been evaluated at an accredited and licensed/ +approved evaluation facility using the Common Methodology for IT Security Evaluation, Version 2.3 +(ISO/IEC 15408:2005) for conformance to the Common Criteria for IT Security Evaluation, Version +2.3 (ISO/IEC 15408:2005). +Evaluation Results: +Functionality: Product specific Security Target +Common Criteria Part 2 conformant +Assurance Package: Common Criteria Part 3 conformant +EAL2 augmented by ALC_FLR.1 (Basic Flaw Remediation) +This certificate applies only to the specific version and release of the product in its evaluated +configuration and in conjunction with the complete Certification Report. +The evaluation has been conducted in accordance with the provisions of the certification scheme +of the German Federal Office for Information Security (BSI) and the conclusions of the evaluation +facility in the evaluation technical report are consistent with the evidence adduced. +The notes mentioned on the reverse side are part of this certificate. +th +Bonn, October 26 , 2006 +The Vice President of the Federal Office +for Information Security +Hange L.S. +Bundesamt für Sicherheit in der Informationstechnik +Godesberger Allee 185-189 - D-53175 Bonn - Postfach 20 03 63 - D-53133 Bonn +Phone +49 228 9582-0 - Fax +49 228 9582-5455 - Infoline +49 228 9582-111 +This certificate is not an endorsement of the IT product by the Federal Office for Information +Security or any other organisation that recognises or gives effect to this certificate, and no warranty +of the IT product by the Federal Office for Information Security or any other organisation that +recognises or gives effect to this certificate, is either expressed or implied. +BSI-DSZ-CC-0370-2006 Certification Report +Preliminary Remarks +1 +Under the BSIG Act, the Federal Office for Information Security (BSI) has the +task of issuing certificates for information technology products. +Certification of a product is carried out on the instigation of the vendor or a +distributor, hereinafter called the sponsor. +A part of the procedure is the technical examination (evaluation) of the product +according to the security criteria published by the BSI or generally recognised +security criteria. +The evaluation is normally carried out by an evaluation facility recognised by the +BSI or by BSI itself. +The result of the certification procedure is the present Certification Report. This +report contains among others the certificate (summarised assessment) and the +detailed Certification Results. +The Certification Results contain the technical description of the security +functionality of the certified product, the details of the evaluation (strength and +weaknesses) and instructions for the user. +1 +Act setting up the Federal Office for Information Security (BSI-Errichtungsgesetz, BSIG) of +17 December 1990, Bundesgesetzblatt I p. 2834 +V +Certification Report BSI-DSZ-CC-0370-2006 +Contents +Part A: Certification +Part B: Certification Results +Part C: Excerpts from the Criteria +VI +BSI-DSZ-CC-0370-2006 Certification Report +A Certification +1 Specifications of the Certification Procedure +The certification body conducts the procedure according to the criteria laid down +in the following: +2 +• BSIG +3 +• BSI Certification Ordinance +4 +• BSI Schedule of Costs +• Special decrees issued by the Bundesministerium des Innern (Federal +Ministry of the Interior) +• DIN EN 45011 standard +• BSI certification: Procedural Description (BSI 7125) +5 +• Common Criteria for IT Security Evaluation (CC), version 2.3 +• Common Methodology for IT Security Evaluation (CEM), version 2.3 +• BSI certification: Application Notes and Interpretation of the Scheme (AIS) +• Advice from the Certification Body on methodology for assurance +components above EAL4 (AIS 34) +2 +Act setting up the Federal Office for Information Security (BSI-Errichtungsgesetz, BSIG) of +17 December 1990, Bundesgesetzblatt I p. 2834 +3 +Ordinance on the Procedure for Issuance of a Certificate by the Federal Office for +Information Security (BSI-Zertifizierungsverordnung, BSIZertV) of 7 July 1992, +Bundesgesetzblatt I p. 1230 +4 +Schedule of Cost for Official Procedures of the Bundesamt für Sicherheit in der +Informationstechnik (BSI-Kostenverordnung, BSI-KostV) of 03 March 2005, +Bundesgesetzblatt I p. 519 +5 +Proclamation of the Bundesministerium des Innern of 10 May 2006 in the Bundesanzeiger +dated 19 May 2006, p. 3730 +A-1 +Certification Report BSI-DSZ-CC-0370-2006 +2 Recognition Agreements +In order to avoid multiple certification of the same product in different countries +a mutual recognition of IT security certificates - as far as such certificates are +based on ITSEC or CC - under certain conditions was agreed. +2.1 ITSEC/CC - Certificates +The SOGIS-Agreement on the mutual recognition of certificates based on +ITSEC became effective on 3 March 1998. This agreement was signed by the +national bodies of Finland, France, Germany, Greece, Italy, The Netherlands, +Norway, Portugal, Spain, Sweden, Switzerland and the United Kingdom. This +agreement on the mutual recognition of IT security certificates was extended to +include certificates based on the CC for all evaluation levels (EAL 1 – EAL 7). +2.2 CC - Certificates +An arrangement (Common Criteria Arrangement) on the mutual recognition of +certificates based on the CC evaluation assurance levels up to and including +EAL 4 was signed in May 2000. It includes also the recognition of Protection +Profiles based on the CC. The arrangement was signed by the national bodies +of Australia, Canada, Finland, France, Germany, Greece, Italy, The +Netherlands, New Zealand, Norway, Spain, United Kingdom and the United +States. Israel joined the arrangement in November 2000, Sweden in February +2002, Austria in November 2002, Hungary and Turkey in September 2003, +Japan in November 2003, the Czech Republic in September 2004, the Republic +of Singapore in March 2005, India in April 2005. +A-2 +BSI-DSZ-CC-0370-2006 Certification Report +3 Performance of Evaluation and Certification +The certification body monitors each individual evaluation to ensure a uniform +procedure, a uniform interpretation of the criteria and uniform ratings. +The product Océ Digital Access Controller (DAC) R9.1.6 has undergone the +certification procedure at BSI. This is a re-certification based on BSI-DSZ-CC- +0325-2006. +The evaluation of the product Océ Digital Access Controller (DAC) R9.1.6 was +conducted by Brightsight B.V.. Brightsight B.V. is an evaluation facility (ITSEF)6 +recognised by BSI. +The sponsor, vendor and distributor is: +Océ Technologies B.V. +P.O. Box 101 +5900 MA Venlo +The Netherlands +The certification is concluded with +• the comparability check and +• the production of this Certification Report. +This work was completed by the BSI on October 26th +, 2006. +The confirmed assurance package is only valid on the condition that +• all stipulations regarding generation, configuration and operation, as given in +the following report, are observed, +• the product is operated in the environment described, where specified in the +following report. +This Certification Report only applies to the version of the product indicated +here. The validity can be extended to new versions and releases of the product, +provided the sponsor applies for re-certification of the modified product, in +accordance with the procedural requirements, and the evaluation does not +reveal any security deficiencies. +For the meaning of the assurance levels and the confirmed strength of +functions, please refer to the excerpts from the criteria at the end of the +Certification Report. +6 +Information Technology Security Evaluation Facility +A-3 +Certification Report BSI-DSZ-CC-0370-2006 +4 Publication +The following Certification Results contain pages B-1 to B-24. +The product Océ Digital Access Controller (DAC) R9.1.6 has been included in +the BSI list of the certified products, which is published regularly (see also +Internet: http:// www.bsi.bund.de). Further information can be obtained from +BSI-Infoline +49 228 9582-111. +7 +Further copies of this Certification Report can be requested from the vendor of +the product. The Certification Report can also be downloaded from the above- +mentioned website. +7 +Océ Technologies B.V. +P.O. Box 101 +5900 MA Venlo +The Netherlands +A-4 +BSI-DSZ-CC-0370-2006 Certification Report +B Certification Results +The following results represent a summary of +• the security target of the sponsor for the target of evaluation, +• the relevant evaluation results from the evaluation facility, and +• complementary notes and stipulations of the certification body. +B-1 +Certification Report BSI-DSZ-CC-0370-2006 +Contents of the certification results +1 Executive Summary 3 +2 Identification of the TOE 9 +3 Security Policy 11 +4 Assumptions and Clarification of Scope 11 +5 Architectural Information 14 +6 Documentation 15 +7 IT Product Testing 15 +8 Evaluated Configuration 18 +9 Results of the Evaluation 18 +10 Comments/Recommendations 20 +11 Annexes 20 +12 Security Target 21 +13 Definitions 21 +14 Bibliography 23 +B-2 +BSI-DSZ-CC-0370-2006 Certification Report +1 Executive Summary +Océ produces a wide range of Multifunctional Devices (MFDs) for copying, +printing and scanning. MFDs consist of two main parts: a Digital Access +Controller (DAC) and a Digital Copier (DC). The DAC consists of two parts, the +underlying hardware platform which is not part of the TOE and the software +which forms the TOE. The Target of Evaluation (TOE) is the software running +on the hardwareplatform. The TOE is used with the following Océ products: +• Océ VarioPrint 1055, 1065, 1075, 2062, 2075 +The DAC is a PC-based MFD-controller that provides a wide range of printing +and scanning functionality to the DC of the MFD to which the DAC is connected. +The DAC provides security functionality to the DC. It does not provide copy +functionality. +The DAC can operate in three different security modes: ‘high’, ‘normal’ and +‘low’. The TOE covers the DAC operating in the security mode ‘high (factory +default)’ as delivered by Océ to the customer. This mode is the initial version of +the security mode ‘high‘ and provides a restricted set of functionality that is +configured to meet the Security Target claim. Once changed, it is not possible +to get the DAC back into the certified configuration (‘high (factory default)’) by +changing the security mode back to 'high'. Changing the operational mode +invalidates the claim made in the Security Target. +In comparison to the forerunner evaluation BSI-DSZ-CC-0325-2006 in this +evaluation only one configuration exists where the MFDs have an embedded +DAC. Furthermore the following changes have been introduced in this re- +evalution: +• new Operating System: Montavista Linux 4.0 Professional Version +• only the Ethernet and USB connectors are available (CD-ROM drive +removed) +• a fingerprint sensor which is only used during the identification of the user +when printing secure print jobs has been added in the environment +The IT product Océ Digital Access Controller (DAC) R9.1.6 was evaluated by +Brightsight B.V.. The evaluation was completed on October 12th +, 2006. The +Brightsight B.V. is an evaluation facility (ITSEF)8 +recognised by BSI. +The sponsor, vendor and distributor is +Océ Technologies B.V. +P.O. Box 101 +5900 MA Venlo +The Netherlands +8 +Information Technology Security Evaluation Facility +B-3 +Certification Report BSI-DSZ-CC-0370-2006 +1.1 Assurance package +The TOE security assurance requirements are based entirely on the assurance +components defined in part 3 of the Common Criteria (see Annex C or [1], part +3 for details). The TOE meets the assurance requirements of assurance level +EAL2+ (Evaluation Assurance Level 2 augmented). The assurance +requirements are augmented by the component ALC_FLR.1. +1.2 Functionality +The TOE Security Functional Requirements (SFR) selected in the Security +Target are Common Criteria Part 2 conformant as shown in the following tables. +The following SFRs are taken from CC part 2: +Security Functional Requirement Addressed issue +FDP User data protection +FDP_ACC.1 Subset access control +FDP_ACF.1 Security attribute based access control +FDP_RIP.1 Subset residual information protection +FIA Identification and authentication +FIA_UAU.1 Timing of authentication +FIA_UAU.2 User authentication before any action +FIA_UID.1 Timing of identification +FIA_UID.2 User identification before any action +FMT Security Management +FMT_MOF.1 Management of security functions behaviour +FMT_MSA.1 Management of security attributes +FMT_MSA.3 Static attribute initialisation +FMT_SMF.1 Specification of Management Functions +FMT_SMR.1 Security roles +FPT Protection of the TOE Security Functions +FPT_RVM.1 Non-bypassability of the TSP +FPT_SEP.1 TSF domain separation +FPT_TST.1 TSF testing +Table 1: SFRs for the TOE taken from CC Part 2 +Note: Only the titles of the Security Functional Requirements are provided. For +more details and application notes please refer to the ST [7], chapter 5.1. +B-4 +BSI-DSZ-CC-0370-2006 Certification Report +These Security Functional Requirements are implemented by the TOE Security +Functions: +TOE Security Function Addressed issue +The TOE uses a built-in firewall to block ports and ICMP +commands that are not needed for the operation of the TOE. +In addition all network protocols that are not supported in the +security mode ‘high’ are disabled. +SF.FILTERING +By default no traffic is permitted to enter or leave the TOE +except for the TCP/IP packets and the restricted ICMP +command set via the ports defined in the rule table. +The TOE verifies the identity and associated PIN code that +was sent with the print job when submitted by +S.REMOTE_USER with Username/PIN received from +S.LOCAL_USER via the DC interface. If verification is +successful, the secure print job is released for printing. +SF.JOB_RELEASE +Once a print or scan job has been deleted, the data is +overwritten. It is possible to perform multiple write cycles, with +various patterns being applied. At least three write cycles will +always take place. S.REMOTE_SYSADMIN or +S.SERVICE_ENGINEER can choose the moment when the +shredding cycle commences. The first write cycle will occur +immediately after the print job has completed. The remaining +cycles may also take place immediately after the print job has +been completed or at the time when the TOE enters an idle +state. The shredding mechanism supports US DOD 5220-22m +and Gutmann algorithms (for more information see [17] and +[18]). +SF.SHREDDING +The TOE can be managed in relation to SF.JOB_RELEASE +and SF.SHREDDING. In order to gain access, the +S.REMOTE_SYSADMIN or S.SERVICE_ENGINEER must +authenticate themselves to the TOE. S.SERVICE_ENGINEER +does this by entering a password. S.REMOTE_SYSADMIN +authenticates himself by entering a password. The TOE is +delivered by Océ with pre-configured in the security mode +‘high’. This provides the most restrictive set of operational +settings. +SF.MANAGEMENT +During start-up the TOE will check the hard disk files system +and the integrity of the software that forms the TOE. If defects +in the hard disk files system are detected, the corrupted file +system will be automatically repaired. The software includes +all executables (operating system executables, Océ authored +DAC executables, Third party software executables and DAC +system settings). If defects are detected, the corrupted data +will be replaced by correct shadow data. +SF.SELFTEST +Table 2: TOE Security Functions +For a complete list and definition of the used subjects and objects please refer +to the Security Target [7], chapter 3.1. +B-5 +Certification Report BSI-DSZ-CC-0370-2006 +1.3 Strength of Function +The Strength of Function claim for all the probabilistic functions and +mechanisms provided by the TOE is SOF-basic. +1.4 Summary of threats and Organisational Security Policies +(OSPs) addressed by the evaluated IT product +The following Threats and Organisational Security Policies are defined for the +TOE: +Threat Description +T.RESIDUAL_DATA S.THIEF steals the TOE or parts thereof and retrieves stored +or deleted D.SECURE_PRINT_JOB. The motivation for +S.THIEF to attack the TOE is low because it requires +sophisticated data recovery equipment that can recover data +even after the shredding mechanism has executed to recover +data that has little value to the attacker. +T.NOSY_USER S.LOCAL_USER accesses a D.SECURE_PRINT_JOB that +does not belong to him/her that is stored in the DAC. The +motivation to carry out this attack is low. +T.MALWARE A S.NETWORK_DEVICE is used by malware that may have +entered the TOE’s operational environment to launch an +attack on the integrity of the TOE. Alternatively +S.DIGITAL_COPIER is used by malware to launch an attack +on the integrity of S.NETWORK_DEVICE. The motivation to +carry out this attack is low. +Table 3: Threats +Organisational Security +Policy +Description +P.JOB_DELETE When D.SECURE_PRINT_JOB, D.PRINTJOB and +D.SCANJOB objects are no longer needed by the TOE, +they will be deleted by the TOE at the earliest available +opportunity in a manner that meets a recognised +standard. +P.TOE_ADMINISTRATION The modification of TOE security settings shall be +restricted to S.SERVICE_ENGINEER and +S.REMOTE_SYSADMIN. +Table 4: Organisational Security Policies (OSPs) +For a complete list and definition of the used subjects and objects please refer +to the Security Target [7], chapter 3.1. +B-6 +BSI-DSZ-CC-0370-2006 Certification Report +1.5 Special configuration requirements +1.5.1 Security mode +By default, Océ delivers the DAC in the highest security mode: indicated by +'Security level: high (factory default)'. This provides the most restrictive set of +operational settings. +The remote system administrator must not change the security mode. If the +security mode is changed, the DAC is no longer in the certified configuration +and is no longer able to assure the security of its objects and itself. Once +changed, it is not possible to get the DAC back into the certified configuration +(‘high (factory default)’) by changing the security mode back to 'high'. +1.5.2 Authentication +1.5.2.1 Remote system administrator +The Océ system configuration application is password protected. +For the purpose of configuring the DAC prior to deployment, the DAC is +delivered with a factory-default password. The remote system administrator +must change the password before the DAC is deployed. +The remote system administrator must not use a short or easy-to-guess +password. He must use a non-predictable sequence of at least five characters. +Additionally to this minimum requirements, the remote system administrator is +advised to: +• use a long password - up to 50 characters can be used. +• use a mixture of upper and lower case letters, numbers and punctuation. +• change the password every month. +Log-on to Océ system configuration is blocked for a while after an incorrect +password is entered. The blocking interval is increased after successive +incorrect entries. +1.5.2.2 Service engineer +The service engineer is a local administrator, and is typically employed by Océ. +He has access through an USB interface to a wide range of settings on the TOE +and the DC. The service engineer has elevated privileges above those of the +user and the system administrator. +The TOE connection is protected with a default password. The service engineer +must authenticate himself to the TOE before he is allowed to modify the TOE +security settings. +At the first log on the service engineer must change the SDS password to a +different value than the default value to keep the DAC Common Criteria +Centified. The password must follow the following rules: +B-7 +Certification Report BSI-DSZ-CC-0370-2006 +• The passwords must have alpha-numeric characters, a combination of +numbers and letters. +• The password must have uppercase letters, lowercase letters, and numbers. +• The length of the password must be between 6 and 50 characters. +1.5.3 E-shredding +By default, E-shredding is enabled for all data objects. +The following E-shredding settings can be configured within security mode +'high': +• number of overwrite passes (Default:'3'), +• moment of overwriting (Default: 'Perform first pass at once, the rest in the +background'). +The remote system administrator must not change the 'Jobs to overwrite' +settings. If E-shredding is disabled for 'scan jobs' or 'print jobs without security +code', the DAC is no longer in the certified configuration and is no longer able to +assure the security of 'scan jobs' and 'print jobs without security code'. +1.6 Assumptions about the operating environment +The TOE is intended to be used within a Digital Copier. The following +assumptions for the environment of the TOE are made: +Name Definition +A.DIGITAL_COPIER Attachment of the TOE to a Digital Copier +A.ENVIRONMENT Regular office environment +A.SECURITY_POLICY Existing security policy governing the use of IT products in the +customer organisation +A.SHREDDING Shredding for print jobs and scan jobs will not be disabled +A.SLA Any security flaws discovered in the TOE will be repaired +Table 5: Assumptions for the TOE +Note: Only the titles of the assumptions are provided. For more details please +refer to the Security Target [7], chapter 3.2. +1.7 Disclaimers +The Certification Results only apply to the version of the product indicated in the +Certificate and on the condition that all the stipulations are kept as detailed in +this Certification Report. This certificate is not an endorsement of the IT product +by the Federal Office for Information Security (BSI) or any other organisation +that recognises or gives effect to this certificate, and no warranty of the IT +product by BSI or any other organisation that recognises or gives effect to this +certificate, is either expressed or implied. +B-8 +BSI-DSZ-CC-0370-2006 Certification Report +2 Identification of the TOE +The Target of Evaluation (TOE) is called: +Océ Digital Access Controller (DAC) R9.1.6 +The TOE is a series of software that runs on a generic off-the-shelf PC +(underlying platform). Together this is called the DAC (Digital Access +Controller). The DAC is a PC-based MFD-controller (Multi Functional Device) +that provides a wide range of printing and scanning functionality to the Digital +Copier (DC) of the MFD to which the DAC is connected. The DAC provides +security functionality to the DC. It does not provide copy functionality. +2.1 Physical scope of the TOE +The TOE consists of the software parts of the DAC, i.e. the operating system +(Montavista Linux 4.0 Professional Version), the DAC-specific software (Océ +DAC-specific software release 9.1.6) and the third-party software (Adobe PS3- +PDF Interpreter, Version 3016.103 v.3.1 build #03; Apache HTTP server with +SSL support, Apache 2.0.55, OpenSSL 0.9.7e (used for remote system +administration) and OpenSSL 0.9.7d (used for job forwarding), mod_ssl 2.8.22). +The underlying PC infrastructure is not part of the TOE (see also figure 1). +Montavista Linux 4.0 Professional Version +Underlying PC Infrastructure +Océ +DAC – specific +software +Third – party +software +TOE +Non - TOE +Figure 1: Physical scope of the TOE +B-9 +Certification Report BSI-DSZ-CC-0370-2006 +2.2 TOE deliverables +The following TOE deliverables are provided for a customer who purchases the +Océ Digital Access Controller (DAC) R9.1.6: +Underlying platform: +1. An embedded uATX motherboard based PC comprising at a minimum a Via +Eden C3 800 MHz processor, 256MB internal RAM, 20GB hard drive +2. Generic graphics card and network card supporting either 10/100Mbs +Ethernet UTP +3. USB hardware support +4. Drivers for the PC, graphics card and network card +Océ Digital Access Controller (DAC) R9.1.6: +1. The Montavista Linux 4.0 Professional Version +2. Océ DAC-specific software R9.1.6 +3. Third-party developed software: Adobe PS3-PDF Interpreter, Version +3016.103 v.3.1 build #03; Apache HTTP server with SSL support, Apache +2.0.55, OpenSSL 0.9.7e (used for remote system administration) and +OpenSSL 0.9.7d (used for job forwarding), mod_ssl 2.8.22 +For the delivery the DAC and the DC are packed to one package and are +labelled. When they arrive at the customer the package is checked by the Océ +service engineer and then installed according the installation guidance. During +the DAC startup, an integrity check is performed. If integrity errors are detected, +a complete re-install will be performed. +Accompanying manuals – administrator guidance: +1. Administrator guidance for the system administrator: Océ VarioPrint 1055, +1065,1075, 2062, 2075, Common Criteria Certified configuration of the DAC +R9.1.6. Edition 2006-05 [9]. +This document is not delivered to the customer together with the TOE but +has to be downloaded from the support section from the Océ corporate +website (www.oce.com). +2. The DAC administration guidance for the customer system administrator +takes the form of HTML pages. These are part of the Océ DAC-specific +software, Version R9.1.6: Océ System Configuration, On-line help [16]. +3. The DAC administration guidance for the Océ service engineer takes the +form of a Lotus Notes application that is installed on the service engineer’s +laptop. The guidance contains an appendix that is identified as +“Administrating version R9.1.6 of the Océ DAC” and is a frozen version of +the Océ service engineer Lotus Notes application made at the time of +product release [19]. +B-10 +BSI-DSZ-CC-0370-2006 Certification Report +Accompanying manuals – user guidance: +1. Job manuals +• Océ VarioPrint 1055-75: +Job manual Code number 1060028223, Edition 2005-02 [10] +• Océ VarioPrint 2062: +Job manual Code number 1060028188, Edition 2005-02 [11] +• Océ VarioPrint 2075: +Job manual Code number 1060028155, Edition 2005-02 [12] +2. Configuration manuals +• Océ VarioPrint 1055-75: +Configuration manual Code number 1060028232, Edition 2005-02 [13] +• Océ VarioPrint 2062: +Configuration manual Code number 1060028188, Edition 2005-02 [14] +• Océ Varioprint 2075: +Configuration manual Code number 1060028167, Edition 2005-02 [15] +These manuals are delivered in paper form with the DAC and can also be +downloaded from the support section of the Océ corporate website +(www.oce.com). +3 Security Policy +The TOE, the software part of a Digital Access Controller (DAC) is part of a +multifunctional device (MFD) for copying, printing and scanning. MFDs consist +of two main parts: a controller and a Digital Copier (DC). The DAC is connected +between a network and the DC. +The security policy of the TOE is to provide: +• protection against unauthorised access to data which is stored temporarily in +the DAC +• protection against malware in the TOE’s operational environment which +might launch an attack on the integrity of the TOE. +4 Assumptions and Clarification of Scope +4.1 Usage assumptions +4.1.1 Remote system administrator +It is assumed that the DAC is used in the security mode 'high (factory default)'. +The security mode will not be changed. +The remote system administrator will read the available system administrator +documentation ([9] and [16]) and must be aware of the security policy of the +B-11 +Certification Report BSI-DSZ-CC-0370-2006 +organisation. The remote system administrator has to work in a security aware +manner with the DAC. +4.1.2 Local and remote users +When secure print jobs are sent to the DAC, the user will specify a PIN of at +least four digits and a maximum of six digits and, whether the job is printed or +not, will delete the job on the same working day. Employees are aware of this +requirement. +The user will read the available user documentation and must be aware of the +security policy of the organisation. The user has to work in a security aware +manner with the DAC. +4.1.3 E-shredding +It is assumed that the E-shredding operation for print jobs and scan job data +objects will not be disabled. +4.1.4 Authentication +4.1.4.1 Remote system administrator +The Océ System Configuration application is password protected. +For the purpose of configuring the DAC prior to deployment, the DAC is +delivered with a factory-default password. The remote system administrator will +change the password before the DAC is deployed. +The remote system administrator will not use a short or easy-to-guess +password. It is assumed that a non-predictable sequence of at least five +characters will be used. Additionally to these minimum requirements, the +remote system administrator is advised to: +• use a long password - up to 50 characters can be used. +• use a mixture of upper and lower case letters, numbers and punctuation. +• change the password every month. +Log-on to Océ system configuration is blocked for a while after an incorrect +password is entered. The blocking interval is increased after successive +incorrect entries. +4.1.4.2 Service engineer +The service engineer is a local administrator, and is typically employed by Océ. +He has access through an USB interface to a wide range of settings on the TOE +and the DC. The service engineer has elevated privileges above those of the +user and the system administrator. +The TOE connection is protected with a default password. The service engineer +must authenticate himself to the TOE before he is allowed to modify the TOE +security settings. At the first log on the service engineer must change the SDS +B-12 +BSI-DSZ-CC-0370-2006 Certification Report +password to a different value than the default value to keep the DAC Common +Criteria Centified. The password must comply with the following rules: +• The passwords must have alpha-numeric characters, a combination of +numbers and letters. +• The password must have uppercase letters, lowercase letters, and numbers. +• The length of the password must be between 6 and 50 characters. +4.2 Environmental assumptions +4.2.1 Security policy +It is assumed that the customer organisation will have a security policy +governing the use of IT products by employees in the organisation. +The security policy describes and requires a low to medium level of assurance +(Common Criteria Evaluation Assurance Level 2) for the DAC. +It is assumed that the network, which the DAC is attached to, is protected by +security measures that are intended to prevent malicious programs, viruses and +network traffic, not related to the working of the operational environment, +entering the network to which it is attached. Although the virus database files +and various patches are kept up to date, the policy recognises that new threats +emerge over time and that occasionally they may enter the environment from +outside and provides measures to help limit the damage. The policy will define +how IT products are protected against threats originating from outside the +organisation. +The employees of the organisation are aware of, are trained in and operate +according to the terms and conditions of the policy. The policy also covers +physical security and the need for employees to work in a security aware +manner including the usage of the DAC. +4.2.2 Environment +It is assumed that the operational environment of the DAC is a regular office +environment. Physical access to the operational environment is restricted. The +environment contains non-threatening office personnel (local users, remote +users, remote system administrator, Océ service engineer). A “thief” (cleaning +staff, burglar, visitor, in rare cases a user who will have no moral issues in +stealing the TOE or parts of it and attempts to retrieve earlier printer and +scanner jobs from the TOE) is only rarely present in this environment and not +on a recurring base. +B-13 +Certification Report BSI-DSZ-CC-0370-2006 +5 Architectural Information +The following diagram indicates the subsystems of the TOE (blue boxes) that +implement the security functionality and the external interfaces (black boxes). +Figure 2: Overview of the TOE subsystems and external interfaces +The subsystems are the following: +Communication Layer: This subsystem provides the communication +functionality between the TOE subsystems and the internal interfaces between +the subsystems. In addition, this subsystem provides the communication +functionality to the Digital Copier interface. +Firewall: This subsystem provides state-full inspection of the network packets +that pass through the network card (both inbound and outbound). It ensures that +there is no direct path between the Digital Copier and the network to which the +DAC is attached. +Job Manager: This subsystem manages the print and scan jobs that are +handled by the DAC. There are four types of job: +1. Standard Print Job (D.PRINT_JOB in ST) +2. User associated Print Job (D.PRINT_JOB in ST) +3. User associated print job with unique PIN(D.SECURE_PRINT_JOB in ST) +4. Scan job (D.SCAN_JOB in ST) +B-14 +BSI-DSZ-CC-0370-2006 Certification Report +DAC Settings manager: This subsystem manages security related settings of +the DAC. +Start-up control/Integrity checker: This subsystem performs an integrity check +as part of the start-up process when power is applied to the DAC. The DAC file +system is checked for inconstancies. +E-shred service: This subsystem provides the shredding of the job data objects +that are handled by the Job Manager subsystem (Standard Print Job, User +associated Print Job, User associated print job with unique PIN and Scan job). +The external interfaces are the network interface, the USB-interface and the +interface to the Digital Copier. +6 Documentation +The documentation [9] – [16] is provided with the product by the developer to +the customer for secure usage of the TOE in accordance with the Security +Target. +The documentation is intended for administrators and users: +• For the system administrator the system administrator guidance [9] and the +DAC administration guidance [16] are provided. +• For the user of the MFD, the job manuals [10] – [12] and the configuration +manuals [13] – [15] are provided. +For more information see chapter 2.2 of this report. +7 IT Product Testing +7.1 Independent Testing +7.1.1 Testing approach +The tests are built upon the security functions as defined in the Security Target +[7]. All security functions have associated tests. The security functions are +SF.FILTERING, SF.JOB_RELEASE, SF.MANAGEMENT, SF.SHREDDING and +SF.SELFTEST. +The objectives for the tests are derived from the security functions and are: +1. Check of filtering if it performs conform to the functional specification. With +all network functionality enabled in security level high, the firewall should be +properly configured. Check of the external Ethernet connector if the firewall +only allows certain defined ports. +2. Check of security printing if it performs conform to the functional +specification. +3. Check of shredding if it performs conform to the functional specification. +B-15 +Certification Report BSI-DSZ-CC-0370-2006 +4. Check of Web SAS authentication and SDS authentication if they perform +conform to the functional specification. +5. Check of integrity test function if it performs conform to the functional +specification. +7.1.2 Test configuration +Tests are performed with the DAC connected to an Océ VarioPrint 2075. The +security mode is ‘High’ (factory default). +The following software components are used: +1. The Montvista Linux operating system version 4.0 +2. Apache HTTP server with SSL support, Apache 2.0.55, OpenSSL 0.9.7e +(used for remote system administration) and OpenSSL 0.9.7d (used for job +forwarding), mod_ssl 2.8.22. +3. Adobe PS3-PDF Interpreter, Version 3016.103 v.3.1 build #03 +4. DAC version R9.1.6 +7.1.3 Coverage +All testing is commensurate with the functional specification and covers all +security functions. +The developer has performed all necessary functional tests for the security +functions. In addition the developer has performed extensive vulnerability tests +that exceeds the attack potential required by EAL2. +7.1.4 Results +The results of the developer testing showed that the security functions perform +as expected. +This means that the developer has shown that +1. The TOE protects it’s own integrity against threats from the network to which +it is attached and the Digital Copier to which it is attached through use of a +firewall and integrity checks on system files upon system reboot. +2. The TOE protects the confidentiality of secure print jobs once they have +been received by the DAC by storing them until the user authenticates +himself to the DAC via a user interface on the DC. The DAC shreds the data +after printing is completed. +3. The TOE does not form a threat to its environment. +7.2 Penetration Testing +Following the developer Vulnerability Analysis, the following penetration testing +effort was made. +B-16 +BSI-DSZ-CC-0370-2006 Certification Report +7.2.1 Testing Approach +The functional specification was the starting point for the identification of which +interfaces and which functions need to be tested. Based on the more detailed +knowledge of the high-level design some tests are included additionally. +A number of publicly available scanners for obvious vulnerabilities were applied. +7.2.2 Test Configuration +The tests are performed with the DAC connected to an Océ VarioPrint 2075. +The security mode is ‘High’ (factory default) +The following software components are used: +1. The Montvista Linux operating system version 4.0 +2. Apache HTTP server with SSL support, Apache 2.0.55, OpenSSL 0.9.7e +(used for remote system administration) and OpenSSL 0.9.7d (used for job +forwarding), mod_ssl 2.8.22. +3. Adobe PS3-PDF Interpreter, Version 3016.103 v.3.1 build #03 +4. DAC version R9.1.6 +5. The test laptop ran Suse 9.3, Nessus 3.0.1 and the Auditor Security +Collection (auditor-200605-02) live CD +7.2.3 Coverage +The penetration testing was commensurate to the functional specification and +covered the search for obvious vulnerabilities. +7.2.4 Penetration testing summary +The evaluators had a meeting in which the (possible) vulnerabilities are +identified. Each evaluator contributed his perspective on the TOE and the +evaluation based on the assurance classes he had executed. The outcome of +this meeting is input for the vulnerability analysis. +The following tools are used to perform the tests: +• Openssl (auditor-200605-02) Open source ssl implementation +• Nessus 3.0.1 Open Source vulnerability scanner +• Amap (auditor-200605-02) Open source port scanner. +• Xprobe2 (auditor-200605-02) Open source OS fingerprint, sends ICMP +• Ethereal (auditor-200605-02) Open Source network sniffer. +B-17 +Certification Report BSI-DSZ-CC-0370-2006 +7.2.5 Results +The TOE behaved as expected: +1. The security functionality works as expected. +2. The vulnerability test showed that the TOE is resistant against all tested +public known vulnerabilities based on recent internet scans. +3. The vulnerability scans did not reveal vulnerabilities that could be exploited +on the level of EAL2. +8 Evaluated Configuration +The TOE is identified by the release Océ Digital Access Controller (DAC) +R9.1.6. +For setting up and running the TOE according to the evaluated configuration all +guidance documents (refer to chapter 6) and the implications given by the +Security Target have to be followed. These implications can also be found in +chapter 1.5, 1.6 and 4 of this report. +9 Results of the Evaluation +The Evaluation Technical Report (ETR), [8] was provided by the ITSEF +according to the Common Criteria [1], the Methodology [2], the requirements of +the Scheme [3] and all interpretations and guidelines of the Scheme (AIS) [4] as +relevant for the TOE. +The evaluation methodology CEM [2] was used for those components identical +with EAL2+. +The verdicts for the CC, Part 3 assurance components (according to EAL2 +augmented by ALC_FLR.1 and the class ASE for the Security Target +evaluation) are summarised in the following table. +Assurance classes and components Verdict +Security Target evaluation CC Class ASE PASS +TOE description ASE_DES.1 PASS +Security environment ASE_ENV.1 PASS +ST introduction ASE_INT.1 PASS +Security objectives ASE_OBJ.1 PASS +PP claims ASE_PPC.1 PASS +IT security requirements ASE_REQ.1 PASS +Explicitly stated IT security requirements ASE_SRE.1 PASS +TOE summary specification ASE_TSS.1 PASS +Configuration management CC Class ACM PASS +Configuration Items ACM_CAP.2 PASS +B-18 +BSI-DSZ-CC-0370-2006 Certification Report +Assurance classes and components Verdict +Delivery and operation CC Class ADO PASS +Delivery Procedures ADO_DEL.1 PASS +Installation, generation, and start-up procedures ADO_IGS.1 PASS +Development CC Class ADV PASS +Informal functional specification ADV_FSP.1 PASS +Descriptive high-level design ADV_HLD.1 PASS +Informal correspondence demonstration ADV_RCR.1 PASS +Guidance documents CC Class AGD PASS +Administrator guidance AGD_ADM.1 PASS +User guidance AGD_USR.1 PASS +Life cycle support CC Class ALC PASS +Basic flaw remediation ALC_FLR.1 PASS +Tests CC Class ATE PASS +Evidence of coverage ATE_COV.1 PASS +Functional testing ATE_FUN.1 PASS +Independent testing – sample ATE_IND.2 PASS +Vulnerability assessment CC Class AVA PASS +Strength of TOE security function evaluation AVA_SOF.1 PASS +Developer vulnerability analysis AVA_VLA.1 PASS +Table 6: Verdicts for the assurance components +The focus of this re-evaluation was laid on the examination of the introduction of +the following changes +• new Operating System: Montavista Linux 4.0 Professional Version +• only the Ethernet and USB connectors are available (CD-ROM drive +removed) +• a fingerprint sensor which is only used during the identification of the user +when printing secure print jobs has been added in the environment +as well as on the search for new obvious vulnerabilities and on the correctness +of overall functionality of the TOE after the addition of some new not security- +relevant features. +The evaluation has shown that: +• Security Functional Requirements specified for the TOE are Common +Criteria Part 2 conformant +• the assurance of the TOE is Common Criteria Part 3 conformant, EAL2 +augmented by ALC_FLR.1 +• the SFRs FIA_UID.1, FIA_UAU.1, FIA_UID.2 and FIA_UAU.2 require the +TOE to provide security functions that provide identification/authentication +B-19 +Certification Report BSI-DSZ-CC-0370-2006 +functionality that meets a SOF claim of ‘SOF basic’. +A strength of function claim of ‘SOF basic’ is made for the security functions +SF.JOB_RELEASE and SF.MANAGEMENT. These are the security +functions that implement FIA_UID.1, FIA_UAU.1, FIA_UID.2 and +FIA_UAU.2. +The results of the evaluation are only applicable to the Océ Digital Access +Controller (DAC) R9.1.6 +The validity can be extended to new versions and releases of the product, +provided the sponsor applies for re-certification or assurance continuity of the +modified product, in accordance with the procedural requirements, and the +evaluation of the modified product does not reveal any security deficiencies. +10 Comments/Recommendations +The DAC is intended to provide scan and print functionality to users requiring a +low to moderate level of security assurance (Common Criteria Evaluation +Assurance Level 2+). +The remote system administrator must not change the security mode. If the +security mode is changed, the DAC is no longer in the certified configuration +and is no longer able to assure the security of its objects and itself. Once +changed, it is not possible to get the DAC back into the certified configuration +(‘high (factory default)’) by changing the security mode back to 'high'. +The remote system administrator must not change the 'Jobs to overwrite' +settings. If E-shredding is disabled for 'scan jobs' or 'print jobs without security +code', the DAC is no longer in the certified configuration and is no longer able to +assure the security of 'scan jobs' and 'print jobs without security code'. +The employees of the organisation are aware of, are trained in and operate +according to the terms and conditions of the policy (see chapter 4.2.1 of this +report). The policy also covers physical security and the need for employees to +work in a security aware manner including the usage of the DAC. The +employees will read the available guidance documentation. +The guidance documentation (refer to chapter 6 of this report) contains +necessary information about the secure usage of the TOE. Additionally, for +secure usage of the TOE the fulfilment of the assumptions about the +environment in the Security Target [7] and the Security Target as a whole has to +be taken into account. Therefore a user/administrator has to follow the guidance +in these documents. +11 Annexes +None. +B-20 +BSI-DSZ-CC-0370-2006 Certification Report +12 Security Target +For the purpose of publishing, the Security Target [7] of the Target of Evaluation +(TOE) is provided within a separate document. +13 Definitions +13.1 Acronyms +BSI Bundesamt für Sicherheit in der Informationstechnik / Federal +Office for Information Security, Bonn, Germany +CC Common Criteria for IT Security Evaluation +DAC Digital Access Controler +DC Digital Copier +EAL Evaluation Assurance Level +MFD Multifunctional Device +IT Information Technology +PP Protection Profile +SF Security Function +SFP Security Function Policy +SOF Strength of Function +ST Security Target +TOE Target of Evaluation +TSC TSF Scope of Control +TSF TOE Security Functions +TSP TOE Security Policy +13.2 Glossary +Augmentation - The addition of one or more assurance component(s) from CC +Part 3 to an EAL or assurance package. +Extension - The addition to an ST or PP of functional requirements not +contained in part 2 and/or assurance requirements not contained in part 3 of the +CC. +Formal - Expressed in a restricted syntax language with defined semantics +based on well-established mathematical concepts. +Informal - Expressed in natural language. +B-21 +Certification Report BSI-DSZ-CC-0370-2006 +Object - An entity within the TSC that contains or receives information and +upon which subjects perform operations. +Protection Profile - An implementation-independent set of security require- +ments for a category of TOEs that meet specific consumer needs. +Security Function - A part or parts of the TOE that have to be relied upon for +enforcing a closely related subset of the rules from the TSP. +Security Target - A set of security requirements and specifications to be used +as the basis for evaluation of an identified TOE. +Semiformal - Expressed in a restricted syntax language with defined +semantics. +Strength of Function - A qualification of a TOE security function expressing +the minimum efforts assumed necessary to defeat its expected security +behaviour by directly attacking its underlying security mechanisms. +SOF-basic - A level of the TOE strength of function where analysis shows that +the function provides adequate protection against casual breach of TOE +security by attackers possessing a low attack potential. +SOF-medium - A level of the TOE strength of function where analysis shows +that the function provides adequate protection against straightforward or +intentional breach of TOE security by attackers possessing a moderate attack +potential. +SOF-high - A level of the TOE strength of function where analysis shows that +the function provides adequate protection against deliberately planned or +organised breach of TOE security by attackers possessing a high attack +potential. +Subject - An entity within the TSC that causes operations to be performed. +Target of Evaluation - An IT product or system and its associated +administrator and user guidance documentation that is the subject of an +evaluation. +TOE Security Functions - A set consisting of all hardware, software, and +firmware of the TOE that must be relied upon for the correct enforcement of the +TSP. +TOE Security Policy - A set of rules that regulate how assets are managed, +protected and distributed within a TOE. +TSF Scope of Control - The set of interactions that can occur with or within a +TOE and are subject to the rules of the TSP. +B-22 +BSI-DSZ-CC-0370-2006 Certification Report +14 Bibliography +[1] Common Criteria for Information Technology Security Evaluation, +Version 2.3, August 2005 +[2] Common Methodology for Information Technology Security Evaluation +(CEM), Evaluation Methodology, Version 2.3, August 2005 +[3] BSI certification: Procedural Description (BSI 7125) +[4] Application Notes and Interpretations of the Scheme (AIS) as relevant for +the TOE. +[5] German IT Security Certificates (BSI 7148, BSI 7149), periodically +updated list published also on the BSI Web-site +[6] Applicaton Notes and Interpretations of the Scheme AIS33, Version 2 – +“Methodologie zur Fehlerbehebung – Flaw Remediation”, 26.07.2002 +th +[7] Security Target BSI-DSZ-0370-2006, Version 2.4, August 25 , 2006, The +Océ Digital Access Controller (DAC) R9.1.6, as used in the Océ +VarioPrint 1055, 1065, 1075, 2062, 2075 printer/copier/scanner products, +Océ Technologies B.V. +[8] Evaluation Technical Report, Version 3.0, October 11th +, 2006, The Océ +Digital Access Controller (DAC) R9.1.6 as used in the Océ VarioPrint +1055, 1065, 1075, 2062,2075 printer/copier/scanner products – EAL2+ +(confidential document) +Guidance Documentation +[9] Océ VarioPrint 1055, 1065,1075, 2062, 2075, Common Criteria Certified +configuration of the DAC R9.1.6. Edition 2006-05 +[10] Océ VarioPrint 1055-75: Job manual Code number 1060028223, Edition +2005-02 +[11] Océ VarioPrint 2062: Job manual Code number 1060028188, Edition +2005-02 +[12] Océ VarioPrint 2075: Job manual Code number 1060028155, Edition +2005-02 +[13] Océ VarioPrint 1055-75: Configuration manual Code number +1060028232, Edition 2005-02 +[14] Océ VarioPrint 2062: Configuration manual Code number 1060028188, +Edition 2005-02 +[15] Océ Varioprint 2075: Configuration manual Code number 1060028167, +Edition 2005-02 +[16] Océ-Technologies B.V., Océ System Configuration, Version 4.1 On-line +help, Revision 4.1, September 2005 +B-23 +Certification Report BSI-DSZ-CC-0370-2006 +[17] Secure Deletion of Data from Magnetic and Solid State Memory, Peter +Guttman 1996 +(http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html) +[18] US Department of Defence Military Standard DOD 5220-22m +(http://www.dss.mil/isecnispom_0195.htm) +[19] DAC administration guidance for Océ service engineer “Administrating +version R9.1.6 of the Océ DAC” (Lotus Notes Application) +B-24 +BSI-DSZ-CC-0370-2006 Certification Report +C Excerpts from the Criteria +CC Part1: +Conformance results (chapter 7.4) +„The conformance result indicates the source of the collection of requirements +that is met by a TOE or PP that passes its evaluation. This conformance result +is presented with respect to CC Part 2 (functional requirements), CC Part 3 +(assurance requirements) and, if applicable, to a pre-defined set of +requirements (e.g., EAL, Protection Profile). +The conformance result consists of one of the following: +a) CC Part 2 conformant - A PP or TOE is CC Part 2 conformant if the +functional requirements are based only upon functional components in +CC Part 2. +b) CC Part 2 extended - A PP or TOE is CC Part 2 extended if the +functional requirements include functional components not in CC Part 2. +plus one of the following: +a) CC Part 3 conformant - A PP or TOE is CC Part 3 conformant if the +assurance requirements are based only upon assurance components in +CC Part 3. +b) CC Part 3 extended - A PP or TOE is CC Part 3 extended if the +assurance requirements include assurance requirements not in CC Part +3. +Additionally, the conformance result may include a statement made with respect +to sets of defined requirements, in which case it consists of one of the following: +a) Package name Conformant - A PP or TOE is conformant to a pre- +defined named functional and/or assurance package (e.g. EAL) if the +requirements (functions or assurance) include all components in the +packages listed as part of the conformance result. +b) Package name Augmented - A PP or TOE is an augmentation of a pre- +defined named functional and/or assurance package (e.g. EAL) if the +requirements (functions or assurance) are a proper superset of all +components in the packages listed as part of the conformance result. +Finally, the conformance result may also include a statement made with respect +to Protection Profiles, in which case it includes the following: +a) PP Conformant - A TOE meets specific PP(s), which are listed as part of +the conformance result.“ +C-1 +Certification Report BSI-DSZ-CC-0370-2006 +CC Part 3: +Assurance categorisation (chapter 7.5) +“The assurance classes, families, and the abbreviation for each family are +shown in Table 1. +Assurance Class Assurance Family +CM automation (ACM_AUT) +ACM: Configuration management CM capabilities (ACM_CAP) +CM scope (ACM_SCP) +ADO: Delivery and operation Delivery (ADO_DEL) +Installation, generation and start-up (ADO_IGS) +Functional specification (ADV_FSP) +High-level design (ADV_HLD) +Implementation representation (ADV_IMP) +ADV: Development TSF internals (ADV_INT) +Low-level design (ADV_LLD) +Representation correspondence (ADV_RCR) +Security policy modeling (ADV_SPM) +AGD: Guidance documents Administrator guidance (AGD_ADM) +User guidance (AGD_USR) +Development security (ALC_DVS) +ALC: Life cycle support Flaw remediation (ALC_FLR) +Life cycle definition (ALC_LCD) +Tools and techniques (ALC_TAT) +Coverage (ATE_COV) +ATE: Tests Depth (ATE_DPT) +Functional tests (ATE_FUN) +Independent testing (ATE_IND) +Covert channel analysis (AVA_CCA) +AVA: Vulnerability assessment Misuse (AVA_MSU) +Strength of TOE security functions (AVA_SOF) +Vulnerability analysis (AVA_VLA) +Table 1: Assurance family breakdown and mapping” +C-2 +BSI-DSZ-CC-0370-2006 Certification Report +Evaluation assurance levels (chapter 11) +“The Evaluation Assurance Levels (EALs) provide an increasing scale that +balances the level of assurance obtained with the cost and feasibility of +acquiring that degree of assurance. The CC approach identifies the separate +concepts of assurance in a TOE at the end of the evaluation, and of +maintenance of that assurance during the operational use of the TOE. +It is important to note that not all families and components from CC Part 3 are +included in the EALs. This is not to say that these do not provide meaningful +and desirable assurances. Instead, it is expected that these families and +components will be considered for augmentation of an EAL in those PPs and +STs for which they provide utility.” +Evaluation assurance level (EAL) overview (chapter 11.1) +“Table 6 represents a summary of the EALs. The columns represent a +hierarchically ordered set of EALs, while the rows represent assurance families. +Each number in the resulting matrix identifies a specific assurance component +where applicable. +As outlined in the next section, seven hierarchically ordered evaluation +assurance levels are defined in the CC for the rating of a TOE's assurance. +They are hierarchically ordered inasmuch as each EAL represents more +assurance than all lower EALs. The increase in assurance from EAL to EAL is +accomplished by substitution of a hierarchically higher assurance component +from the same assurance family (i.e. increasing rigour, scope, and/or depth) +and from the addition of assurance components from other assurance families +(i.e. adding new requirements). +These EALs consist of an appropriate combination of assurance components as +described in chapter 7 of this Part 3. More precisely, each EAL includes no +more than one component of each assurance family and all assurance +dependencies of every component are addressed. +While the EALs are defined in the CC, it is possible to represent other +combinations of assurance. Specifically, the notion of “augmentation” allows the +addition of assurance components (from assurance families not already +included in the EAL) or the substitution of assurance components (with another +hierarchically higher assurance component in the same assurance family) to an +EAL. Of the assurance constructs defined in the CC, only EALs may be +augmented. The notion of an “EAL minus a constituent assurance component” +is not recognised by the standard as a valid claim. Augmentation carries with it +the obligation on the part of the claimant to justify the utility and added value of +the added assurance component to the EAL. An EAL may also be extended +with explicitly stated assurance requirements. +C-3 +Certification Report BSI-DSZ-CC-0370-2006 +Assurance Class Assurance +Family +Assurance Components by +Evaluation Assurance Level +EAL1 EAL2 EAL3 EAL4 EAL5 EAL6 EAL7 +Configuration +management +ACM_AUT 1 1 2 2 +ACM_CAP 1 2 3 4 4 5 5 +ACM_SCP 1 2 3 3 3 +Delivery and +operation +ADO_DEL 1 1 2 2 2 3 +ADO_IGS 1 1 1 1 1 1 1 +Development ADV_FSP 1 1 1 2 3 3 4 +ADV_HLD 1 2 2 3 4 5 +ADV_IMP 1 2 3 3 +ADV_INT 1 2 3 +ADV_LLD 1 1 2 2 +ADV_RCR 1 1 1 1 2 2 3 +ADV_SPM 1 3 3 3 +Guidance +documents +AGD_ADM 1 1 1 1 1 1 1 +AGD_USR 1 1 1 1 1 1 1 +Life cycle +support +ALC_DVS 1 1 1 2 2 +ALC_FLR +ALC_LCD 1 2 2 3 +ALC_TAT 1 2 3 3 +Tests ATE_COV 1 2 2 2 3 3 +ATE_DPT 1 1 2 2 3 +ATE_FUN 1 1 1 1 2 2 +ATE_IND 1 2 2 2 2 2 3 +Vulnerability +assessment +AVA_CCA 1 2 2 +AVA_MSU 1 2 2 3 3 +AVA_SOF 1 1 1 1 1 1 +AVA_VLA 1 1 2 3 4 4 +Table 6: Evaluation assurance level summary” +C-4 +BSI-DSZ-CC-0370-2006 Certification Report +Evaluation assurance level 1 (EAL1) - functionally tested (chapter 11.3) +“Objectives +EAL1 is applicable where some confidence in correct operation is required, but +the threats to security are not viewed as serious. It will be of value where +independent assurance is required to support the contention that due care has +been exercised with respect to the protection of personal or similar information. +EAL1 provides an evaluation of the TOE as made available to the customer, +including independent testing against a specification, and an examination of the +guidance documentation provided. It is intended that an EAL1 evaluation could +be successfully conducted without assistance from the developer of the TOE, +and for minimal outlay. +An evaluation at this level should provide evidence that the TOE functions in a +manner consistent with its documentation, and that it provides useful protection +against identified threats.” +Evaluation assurance level 2 (EAL2) - structurally tested (chapter 11.4) +“Objectives +EAL2 requires the co-operation of the developer in terms of the delivery of +design information and test results, but should not demand more effort on the +part of the developer than is consistent with good commercial practice. As such +it should not require a substantially increased investment of cost or time. +EAL2 is therefore applicable in those circumstances where developers or users +require a low to moderate level of independently assured security in the +absence of ready availability of the complete development record. Such a +situation may arise when securing legacy systems, or where access to the +developer may be limited.” +Evaluation assurance level 3 (EAL3) - methodically tested and checked +(chapter 11.5) +“Objectives +EAL3 permits a conscientious developer to gain maximum assurance from +positive security engineering at the design stage without substantial alteration of +existing sound development practices. +EAL3 is applicable in those circumstances where developers or users require a +moderate level of independently assured security, and require a thorough +investigation of the TOE and its development without substantial re- +engineering.” +C-5 +Certification Report BSI-DSZ-CC-0370-2006 +Evaluation assurance level 4 (EAL4) - methodically designed, tested, and +reviewed (chapter 11.6) +“Objectives +EAL4 permits a developer to gain maximum assurance from positive security +engineering based on good commercial development practices which, though +rigorous, do not require substantial specialist knowledge, skills, and other +resources. EAL4 is the highest level at which it is likely to be economically +feasible to retrofit to an existing product line. +EAL4 is therefore applicable in those circumstances where developers or users +require a moderate to high level of independently assured security in +conventional commodity TOEs and are prepared to incur additional security- +specific engineering costs.” +Evaluation assurance level 5 (EAL5) - semiformally designed and tested +(chapter 11.7) +“Objectives +EAL5 permits a developer to gain maximum assurance from security +engineering based upon rigorous commercial development practices supported +by moderate application of specialist security engineering techniques. Such a +TOE will probably be designed and developed with the intent of achieving EAL5 +assurance. It is likely that the additional costs attributable to the EAL5 +requirements, relative to rigorous development without the application of +specialised techniques, will not be large. +EAL5 is therefore applicable in those circumstances where developers or users +require a high level of independently assured security in a planned development +and require a rigorous development approach without incurring unreasonable +costs attributable to specialist security engineering techniques.” +Evaluation assurance level 6 (EAL6) - semiformally verified design and +tested (chapter 11.8) +“Objectives +EAL6 permits developers to gain high assurance from application of security +engineering techniques to a rigorous development environment in order to +produce a premium TOE for protecting high value assets against significant +risks. +EAL6 is therefore applicable to the development of security TOEs for +application in high risk situations where the value of the protected assets +justifies the additional costs.” +C-6 +BSI-DSZ-CC-0370-2006 Certification Report +Evaluation assurance level 7 (EAL7) - formally verified design and tested +(chapter 11.9) +“Objectives +EAL7 is applicable to the development of security TOEs for application in +extremely high risk situations and/or where the high value of the assets justifies +the higher costs. Practical application of EAL7 is currently limited to TOEs with +tightly focused security functionality that is amenable to extensive formal +analysis.“ +C-7 +Certification Report BSI-DSZ-CC-0370-2006 +Strength of TOE security functions (AVA_SOF) (chapter 19.3) +“Objectives +Even if a TOE security function cannot be bypassed, deactivated, or corrupted, +it may still be possible to defeat it because there is a vulnerability in the concept +of its underlying security mechanisms. For those functions a qualification of their +security behaviour can be made using the results of a quantitative or statistical +analysis of the security behaviour of these mechanisms and the effort required +to overcome them. The qualification is made in the form of a strength of TOE +security function claim.” +Vulnerability analysis (AVA_VLA) (chapter 19.4) +"Objectives +Vulnerability analysis is an assessment to determine whether vulnerabilities +identified, during the evaluation of the construction and anticipated operation of +the TOE or by other methods (e.g. by flaw hypotheses), could allow users to +violate the TSP. +Vulnerability analysis deals with the threats that a user will be able to discover +flaws that will allow unauthorised access to resources (e.g. data), allow the +ability to interfere with or alter the TSF, or interfere with the authorised +capabilities of other users.” +"Application notes +A vulnerability analysis is performed by the developer in order to ascertain the +presence of security vulnerabilities, and should consider at least the contents of +all the TOE deliverables including the ST for the targeted evaluation assurance +level. The developer is required to document the disposition of identified +vulnerabilities to allow the evaluator to make use of that information if it is found +useful as a support for the evaluator's independent vulnerability analysis.” +“Independent vulnerability analysis goes beyond the vulnerabilities identified by +the developer. The main intent of the evaluator analysis is to determine that the +TOE is resistant to penetration attacks performed by an attacker possessing a +low (for AVA_VLA.2 Independent vulnerability analysis), moderate (for +AVA_VLA.3 Moderately resistant) or high (for AVA_VLA.4 Highly resistant) +attack potential.” +C-8 +
\ No newline at end of file diff --git a/tests/data/cc/analysis/certs/reports/txt/3129688580711e08.txt b/tests/data/cc/analysis/certs/reports/txt/3129688580711e08.txt new file mode 100644 index 00000000..76c17451 --- /dev/null +++ b/tests/data/cc/analysis/certs/reports/txt/3129688580711e08.txt @@ -0,0 +1,930 @@ +BSI-DSZ-CC-0517-2009 +for +Océ Digital Access Controller (DAC) R10.1.5 +for use in the Océ VarioPrint 1055, 1055 BC, +1055 DP, 1065, 1075, 2062, 2075, 2075 DP +printer/copier/scanner products +from +Océ Technologies B.V. +BSI - Bundesamt für Sicherheit in der Informationstechnik, Postfach 20 03 63, D-53133 Bonn +Phone +49 (0)228 99 9582-0, Fax +49 (0)228 9582-5477, Infoline +49 (0)228 99 9582-111 +Certification Report V1.0 ZS-01-01-F-326 V4.28 +BSI-DSZ-CC-0517-2009 +Océ Digital Access Controller (DAC) R10.1.5 +for use in the Océ VarioPrint 1055, 1055 BC, 1055 DP, 1065, 1075, 2062, +2075, 2075 DP printer/copier/scanner products +from Océ Technologies B.V. +PP Conformance: None +Functionality: product specific Security Target Common Criteria +Part 2 conformant +Assurance: Common Criteria Part 3 conformant +EAL 2 augmented by +ALC_FLR.1 +Common Criteria +Recognition +Arrangement +The IT product identified in this certificate has been evaluated at an accredited and licensed / approved +evaluation facility using the Common Methodology for IT Security Evaluation, Version 2.3 for conformance +to the Common Criteria for IT Security Evaluation (CC), Version 2.3 (ISO/IEC 15408:2005). +This certificate applies only to the specific version and release of the product in its evaluated configuration +and in conjunction with the complete Certification Report. +The evaluation has been conducted in accordance with the provisions of the certification scheme of the +German Federal Office for Information Security (BSI) and the conclusions of the evaluation facility in the +evaluation technical report are consistent with the evidence adduced. +This certificate is not an endorsement of the IT product by the Federal Office for Information Security or any +other organisation that recognises or gives effect to this certificate, and no warranty of the IT product by the +Federal Office for Information Security or any other organisation that recognises or gives effect to this +certificate, is either expressed or implied. +Bonn, 20 February 2009 +For the Federal Office for Information Security +Bernd Kowalski L.S. +Head of Department +Bundesamt für Sicherheit in der Informationstechnik +Godesberger Allee 185-189 - D-53175 Bonn - Postfach 20 03 63 - D-53133 Bonn +Phone +49 (0)228 99 9582-0 - Fax +49 (0)228 9582-5477 - Infoline +49 (0)228 99 9582-111 +Certification Report BSI-DSZ-CC-0517-2009 +This page is intentionally left blank. +4 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +Preliminary Remarks +Under the BSIG1 +Act, the Federal Office for Information Security (BSI) has the task of +issuing certificates for information technology products. +Certification of a product is carried out on the instigation of the vendor or a distributor, +hereinafter called the sponsor. +A part of the procedure is the technical examination (evaluation) of the product according +to the security criteria published by the BSI or generally recognised security criteria. +The evaluation is normally carried out by an evaluation facility recognised by the BSI or by +BSI itself. +The result of the certification procedure is the present Certification Report. This report +contains among others the certificate (summarised assessment) and the detailed +Certification Results. +The Certification Results contain the technical description of the security functionality of +the certified product, the details of the evaluation (strength and weaknesses) and +instructions for the user. +1 +Act setting up the Federal Office for Information Security (BSI-Errichtungsgesetz, BSIG) of 17 +December 1990, Bundesgesetzblatt I p. 2834 +5 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +Contents +A Certification........................................................................................................................7 +1 Specifications of the Certification Procedure.................................................................7 +2 Recognition Agreements................................................................................................7 +2.1 European Recognition of ITSEC/CC - Certificates..................................................7 +2.2 International Recognition of CC - Certificates.........................................................8 +3 Performance of Evaluation and Certification..................................................................8 +4 Validity of the certification result.....................................................................................8 +5 Publication......................................................................................................................9 +B Certification Results.........................................................................................................11 +1 Executive Summary.....................................................................................................12 +2 Identification of the TOE...............................................................................................13 +3 Security Policy..............................................................................................................14 +4 Assumptions and Clarification of Scope.......................................................................14 +5 Architectural Information..............................................................................................15 +6 Documentation.............................................................................................................16 +7 IT Product Testing........................................................................................................16 +7.1 Test configuration..................................................................................................16 +7.2 Developer Testing..................................................................................................16 +7.3 Evaluator Testing...................................................................................................16 +7.4 Penetration Testing................................................................................................17 +8 Evaluated Configuration...............................................................................................17 +9 Results of the Evaluation..............................................................................................18 +9.1 CC specific results.................................................................................................18 +9.2 Results of cryptographic assessment....................................................................18 +10 Obligations and notes for the usage of the TOE........................................................19 +11 Security Target...........................................................................................................19 +12 Definitions...................................................................................................................19 +12.1 Acronyms.............................................................................................................19 +12.2 Glossary...............................................................................................................20 +13 Bibliography................................................................................................................21 +C Excerpts from the Criteria................................................................................................23 +D Annexes...........................................................................................................................31 +6 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +A Certification +1 Specifications of the Certification Procedure +The certification body conducts the procedure according to the criteria laid down in the +following: +● BSIG2 +● BSI Certification Ordinance3 +● BSI Schedule of Costs4 +● Special decrees issued by the Bundesministerium des Innern (Federal Ministry of the +Interior) +● DIN EN 45011 standard +● BSI certification: Procedural Description (BSI 7125) [3] +● Common Criteria for IT Security Evaluation (CC), +Version 2.3 (ISO/IEC 15408:2005)5 +[1] +● Common Methodology for IT Security Evaluation, Version 2.3 [2] +● BSI certification: Application Notes and Interpretation of the Scheme (AIS) [4] +2 Recognition Agreements +In order to avoid multiple certification of the same product in different countries a mutual +recognition of IT security certificates - as far as such certificates are based on ITSEC or +CC - under certain conditions was agreed. +2.1 European Recognition of ITSEC/CC - Certificates +The SOGIS-Mutual Recognition Agreement (MRA) for certificates based on ITSEC +became initially effective in March 1998. This agreement on the mutual recognition of IT +security certificates was extended in April 1999 to include certificates based on the +Common Criteria for all Evaluation Assurance Levels (EAL 1 – EAL 7). +This agreement was signed by the national bodies of Finland, France, Germany, Greece, +Italy, The Netherlands, Norway, Portugal, Spain, Sweden, Switzerland and the United +Kingdom. The German Federal Office for Information Security (BSI) recognises +certificates issued by the national certification bodies of France, the United Kingdom and +the Netherlands since January 2009 within the terms of this agreement. +The SOGIS-MRA logo printed on the certificate indicates that it is recognised under the +terms of this agreement. +2 +Act setting up the Federal Office for Information Security (BSI-Errichtungsgesetz, BSIG) of 17 +December 1990, Bundesgesetzblatt I p. 2834 +3 +Ordinance on the Procedure for Issuance of a Certificate by the Federal Office for Information Security +(BSI-Zertifizierungsverordnung, BSIZertV) of 07 July 1992, Bundesgesetzblatt I p. 1230 +4 +Schedule of Cost for Official Procedures of the Bundesamt für Sicherheit in der Informationstechnik +(BSI-Kostenverordnung, BSI-KostV) of 03 March 2005, Bundesgesetzblatt I p. 519 +5 +Proclamation of the Bundesministerium des Innern of 10 May 2006 in the Bundesanzeiger dated 19 +May 2006, p. 3730 +7 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +2.2 International Recognition of CC - Certificates +An arrangement (Common Criteria Recognition Arrangement) on the mutual recognition of +certificates based on the CC Evaluation Assurance Levels up to and including EAL 4 has +been signed in May 2000 (CCRA). It includes also the recognition of Protection Profiles +based on the CC. +As of February 2007 the arrangement has been signed by the national bodies of: Australia, +Austria, Canada, Czech Republic, Denmark, Finland, France, Germany, Greece, Hungary, +India, Israel, Italy, Japan, Republic of Korea, The Netherlands, New Zealand, Norway, +Republic of Singapore, Spain, Sweden, Turkey, United Kingdom, United States of +America. The current list of signatory nations resp. approved certification schemes can be +seen on the web site: http://www.commoncriteriaportal.org +The Common Criteria Recognition Arrangement logo printed on the certificate indicates +that this certification is recognised under the terms of this agreement. +3 Performance of Evaluation and Certification +The certification body monitors each individual evaluation to ensure a uniform procedure, a +uniform interpretation of the criteria and uniform ratings. +The product Océ Digital Access Controller (DAC) R10.1.5 for use in the Océ VarioPrint +1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/copier/scanner +products has undergone the certification procedure at BSI. This is a re-certification based +on BSI-DSZ-CC-0370-2006. +The evaluation of the product Océ Digital Access Controller (DAC) R10.1.5 for use in the +Océ VarioPrint 1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/copier/ +scanner products was conducted by Brightsight. The evaluation was completed on 03 +February 2009. The Brightsight is an evaluation facility (ITSEF)6 +recognised by the +certification body of BSI. +For this certification procedure the sponsor and applicant is: Océ Technologies B.V. +The product was developed by: Océ Technologies B.V. +The certification is concluded with the comparability check and the production of this +Certification Report. This work was completed by the BSI. +6 +Information Technology Security Evaluation Facility +8 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +4 Validity of the certification result +This Certification Report only applies to the version of the product as indicated. The +confirmed assurance package is only valid on the condition that +● all stipulations regarding generation, configuration and operation, as given in the +following report, are observed, +● the product is operated in the environment described, where specified in the following +report and in the Security Target. +For the meaning of the assurance levels and the confirmed strength of functions, please +refer to the excerpts from the criteria at the end of the Certification Report. +The Certificate issued confirms the assurance of the product claimed in the Security +Target at the date of certification. As attack methods may evolve over time, the resistance +of the certified version of the product against new attack methods can be re-assessed if +required and the sponsor applies for the certified product being monitored within the +assurance continuity program of the BSI Certification Scheme. It is recommended to +perform a re-assessment on a regular basis. +In case of changes to the certified version of the product, the validity can be extended to +the new versions and releases, provided the sponsor applies for assurance continuity (i.e. +re-certification or maintenance) of the modified product, in accordance with the procedural +requirements, and the evaluation does not reveal any security deficiencies. +5 Publication +The product Océ Digital Access Controller (DAC) R10.1.5 has been included in the BSI list +of the certified products, which is published regularly (see also Internet: +http://www.bsi.bund.de) and [5]. Further information can be obtained from BSI-Infoline +49 +228 9582-111. +Further copies of this Certification Report can be requested from the developer7 +of the +product. The Certification Report may also be obtained in electronic form at the internet +address stated above. +7 +Océ Technologies B.V. +St. Urbanusweg 43 +PO. Box 101 +5900 MA Venlo +The Netherlands +9 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +This page is intentionally left blank. +10 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +B Certification Results +The following results represent a summary of +● the Security Target of the sponsor for the Target of Evaluation, +● the relevant evaluation results from the evaluation facility, and +● complementary notes and stipulations of the certification body. +11 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +1 Executive Summary +Océ Technologies B.V. produces a wide range of Multifunctional Devices (MFDs) for +copying, printing and scanning. MFDs consist of two main parts: a Digital Access +Controller (DAC) and a Digital Copier (DC). The DAC consists of two parts, the underlying +hardware platform which is not part of the TOE and the software which forms the TOE. +The Target of Evaluation (TOE) is the software running on the hardware platform. +The TOE is the Digital Access Controller (DAC) R10.1.5 for use in the Océ VarioPrint +1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/scanner/copier +products (see table 2 for detailed information). +The DAC is a PC-based MFD-controller that provides a wide range of printing and +scanning functionality to the DC of the MFD to which the DAC is connected. The DAC +provides security functionality to the DC. It does not provide copy functionality. +The Security Target [6] is the basis for this certification. It is not based on a certified +Protection Profile. +The TOE Security Assurance Requirements (SAR) are based entirely on the assurance +components defined in Part 3 of the Common Criteria (see part C or [1], Part 3 for details). +The TOE meets the Assurance Requirements of the Evaluation Assurance Level EAL 2 +augmented by ALC_FLR.1. +The TOE Security Functional Requirements (SFR) relevant for the TOE are outlined in the +Security Target [6], chapter 5.1. They are all selected from Common Criteria Part 2. Thus +the TOE is CC Part 2 conformant. +The TOE Security Functional Requirements are implemented by the following TOE +Security Functions: +TOE Security Function Addressed issue +SF.FILTERING Built-in firewall +SF.JOB_RELEASE Secure printing +SF.SHREDDING Overwriting of deleted print job data +SF.MANAGEMENT Management of TOE Security Functionality +SF.SELFTEST Checks for failures and integrity during start-up +Table 1: TOE Security Functions +For more details please refer to the Security Target [6], chapter 6.1. +The claimed TOE’s Strength of Functions 'basic' (SOF-basic) for specific functions as +indicated in the Security Target [6], chapter 6.1.2 is confirmed. +The assets to be protected by the TOE are defined in the Security Target [6], chapter 3.1. +Based on these assets the TOE Security Environment is defined in terms of Assumptions, +Threats and Organisational Security Policies. This is outlined in the Security Target [6], +chapters 3.2 – 3.4. +This certification covers the following configurations of the TOE: +● The TOE covers the DAC operating in the security mode ‘high (factory default)’ as +delivered by Océ to the customer. +● The overwrite mechanism has to be enabled for all scan and print jobs. +12 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +The certification results only apply to the version of the product indicated in the certificate +and on the condition that all the stipulations are kept as detailed in this Certification +Report. This certificate is not an endorsement of the IT product by the Federal Office for +Information Security (BSI) or any other organisation that recognises or gives effect to this +certificate, and no warranty of the IT product by BSI or any other organisation that +recognises or gives effect to this certificate, is either expressed or implied. +2 Identification of the TOE +The Target of Evaluation (TOE) is called: +Océ Digital Access Controller (DAC) R10.1.5 for use in the Océ VarioPrint 1055, +1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP +printer/copier/scanner products +The following table outlines the TOE deliverables: +No Type Identifier Release Form of Delivery +1 SW Océ DAC-specific software R10.1.5 Installed on HW-platform +2 SW Montvista Linux operating +system +Version 4.0.1 +(with updates until August 9, +2007 and New-Zealand time- +zone fix. These updates are +specified in appendix F of the +ST [6]) +Installed on HW-platform +3 SW Adobe PS3-PDF Interpreter Version 3016.103 v.3.1 +build #03 +Installed on HW-platform +4 SW Apache HTTP server with +SSL support +Apache 2.0.59 Installed on HW-platform +5 SW OpenSSL Version 0.9.7l Installed on HW-platform +6 SW SAMBA Version 3.0.25b Installed on HW-platform +7 SW PHP Version 4.4.7 Installed on HW-platform +8 DOC User Guidance: +Océ VarioPrint 1055-75 +Job manual [9] +Océ VarioPrint 2062 Job +manual [10] +Océ VarioPrint 2075 Job +manual [11] +Océ VarioPrint 1055-75 +Configuration manual [12] +Océ VarioPrint 2062 +Configuration manual [13] +Océ VarioPrint 2075 +Configuration manual [14] +All +Code Number 1060061982, +Edition 2007, 2.1, +On CD (Code Number +1060061982, Edition +2007, 2.1) together with +the MFD or download +from the support section +from the Océ corporate +website (www.oce.com) +9 DOC Administrator Guidance: +Océ System +Configuration, On-line help +R10.1.5 HTML pages that are part +of the Océ DAC-specific +software +Table 2: Deliverables of the TOE +13 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +The hardware platform for the TOE consists of: +● An embedded uATX motherboard based PC comprising at a minimum a Via Eden +C3 800 MHz processor, 256MB internal RAM, 20GB hard drive +● Generic graphics card and network card supporting 10/100/1000Mbs Ethernet UTP +● Drivers for the PC, graphics card and network card +● USB hardware support +The DAC is customized and installed according to the customer order form and packaged +with the MFD into one package. The package is labelled and transported to the customer. +The MFD together with the DAC is installed and configured according to the evaluated +configuration at the customer site by Océ Service Technicians. +The customer operator can instruct the TOE to print out a configuration report. This +configuration report clearly lists the separate software components and their versions. The +customer can compare the configuration report to the Security Target or this Certification +Report in order to determine that he received the TOE. +3 Security Policy +The Security Policy is expressed by the set of Security Functional Requirements and +implemented by the TOE. It covers the following issues: +The TOE protects two assets: itself and the print jobs it receives. +The TOE protects it’s own integrity against threats from the LAN, service engineer laptop, +USB memory sticks and the Digital Copier to which it is attached through use of a firewall +and integrity checks on system files upon system reboot. +The TOE protects the confidentiality of secure print jobs once they have been received by +the DAC by storing them until the user authenticates himself to the DAC via a user +interface on the DC. The DAC shreds the data after printing is completed. +4 Assumptions and Clarification of Scope +The Assumptions defined in the Security Target and some aspects of Threats and +Organisational Security Policies are not covered by the TOE itself. These aspects lead to +specific Security Objectives to be fulfilled by the TOE-Environment. The following topics +are of relevance: Physical protection of the TOE by the environment, secure management +of the network to which the TOE is attached and the local physical interfaces of the TOE +as well as the allowed MFDs to which the DAC is connected. Details can be found in the +Security Target [6], chapter 4.2. +14 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +5 Architectural Information +The following diagram indicates the subsystems of the TOE (blue boxes) that implement +the security functionality and the external interfaces (black boxes). +Figure 1: Overview of the TOE subsystems and external interfaces +The subsystems are as follows: +Communication Layer: This subsystem provides the communication functionality between +the TOE subsystems and the internal interfaces between the subsystems. In addition, this +subsystem provides the communication functionality to the Digital Copier interface. +Firewall: This subsystem provides stateful inspection of the network packets that pass +through the network card (both inbound and outbound). It ensures that there is no direct +path between the Digital Copier and the network to which the DAC is attached. +Job Manager: This subsystem manages the print and scan jobs that are handled by the +DAC. There are four types of job: +● Standard Print Job (D.PRINT_JOB in ST) +● User associated Print Job (D.PRINT_JOB in ST) +● User associated print job with unique PIN(D.SECURE_PRINT_JOB in ST) +● Scan job (D.SCAN_JOB in ST) +DAC Settings manager: This subsystem manages security related settings of the DAC. +Start-up control/Integrity checker: This subsystem performs an integrity check as part of +the start-up process when power is applied to the DAC. The DAC file system is checked +for inconstancies. +15 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +E-shred service: This subsystem provides the shredding of the job data objects that are +handled by the Job Manager subsystem (Standard Print Job, User associated Print Job, +User associated print job with unique PIN and Scan job). +The external interfaces are the network interface, the USB-interface and the interface to +the Digital Copier. +6 Documentation +The evaluated documentation as outlined in table 2 is provided with the product to the +customer. This documentation contains the required information for secure usage of the +TOE in accordance with the Security Target. +Additional obligations and notes for secure usage of the TOE as outlined in chapter 10 of +this report have to be followed. +7 IT Product Testing +7.1 Test configuration +Tests were performed with the DAC connected to the Océ VarioPrint 1055 and 2075. +The security mode was ‘High’ (factory default) with E-shredding switched on. +The following software components are used: +● MontaVista Linux Version 4.0.1, with updates until August 9, 2007 and New-Zealand +time-zone fix. These updates are specified in appendix F of the ST [6] +● Océ Digital Access Controller -specific software release 10.1.5 +● Adobe 3016.103, v3.1 build #3 +● Apache: 2.0.59 with OpenSSL 0.9.7l +● Samba 3.0.25b +● PHP 4.4.7 +7.2 Developer Testing +The developer has performed all necessary functional tests for the Security Functions. The +depth of testing corresponded with the depth of the level of the Functional Specification. +All Security Functions have been tested at least once. +In addition, the developer has performed extensive vulnerability tests that exceeds the +attack potential required by EAL2. +7.3 Evaluator Testing +The evaluators repeated all of the developer tests and additionally performed independent +evaluator tests. All Security Functions have been tested at least once. +The depth of testing corresponded with the depth of the level of the Functional +Specification. +The objectives for the tests are derived from the security functions and are: +● Check that filtering performs conform to the Functional Specification. With all +network functionality enabled in security level ‘high (factory default)’, the firewall +should be properly configured. Check that on the external Ethernet connector the +firewall only allows certain defined ports. +16 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +● Check that the job release function performs conform to the Functional Specification. +● Check that the self-test mechanism performs conform to the Functional +Specification. +● Check that the shredding mechanism performs conform to the Functional +Specification. +● Check that authentication mechanisms perform conform to the Functional +Specification. +All test results were as expected. +7.4 Penetration Testing +Following the developer and evaluator independent vulnerability analysis, the evaluators +identified the necessary penetration tests. The evaluators took the functional specification +as starting point for the identification of which interfaces and which functions need to be +penetration tested. Based on the more detailed knowledge of the high-level design some +tests are included additionally. +The evaluators applied a number of publicly available network and vulnerability scanners +for the search for obvious vulnerabilities. +All test results were as expected. The security functionality works as expected. The +vulnerability tests showed that the TOE is resistant against all tested public known +vulnerabilities that were identified on recent internet searching. The network and +vulnerability scanners did not revealed vulnerabilities that could be exploited on the level of +EAL2. +8 Evaluated Configuration +This certification covers the following configurations of the TOE: +The DAC can operate in three different security modes: ‘high’, ‘normal’ and ‘low’. The TOE +covers the DAC operating in the security mode ‘high (factory default)’ as delivered by Océ +to the customer. This mode is the initial version of the security mode ‘high‘ and provides a +restricted set of functionality that is configured to meet the Security Target claim. Once +changed, it is not possible to get the DAC back into the certified configuration (‘high +(factory default)’) by changing the security mode back to 'high'. Changing the operational +mode invalidates the claim made in the Security Target. +The remote system administrator must not change the 'Jobs to overwrite' settings. If E- +shredding is disabled for 'scan jobs' or 'print jobs without security code', the DAC is no +longer in the certified configuration and is no longer able to assure the security of 'scan +jobs' and 'print jobs without security code'. +17 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +9 Results of the Evaluation +9.1 CC specific results +The Evaluation Technical Report (ETR) [7] was provided by the ITSEF according to the +Common Criteria [1], the Methodology [2], the requirements of the Scheme [3] and all +interpretations and guidelines of the Scheme (AIS) [4] as relevant for the TOE. +As a result of the evaluation the verdict PASS is confirmed for the following assurance +components: +● All components of the class ASE +● All components of the EAL 2 package as defined in the CC (see also part C of this +report) +● The components ALC_FLR.1 augmented for this TOE evaluation. +As the evaluation work performed for this certification procedure was carried out as a re- +evaluation based on the certificate BSI-DSZ-CC-0370-2006, re-use of specific evaluation +tasks was possible. The focus of this re-evaluation was on the following aspects: +● Evaluate that the claimed security functionality is still correctly present in the updated +versions of the software parts. +● Evaluate that the firewall settings comply to the new set of allowed protocols and that +the built in firewall still protects the TOE as expected. +● Evaluate that the added possibility to hash the PINs for the protected print jobs does +not weaken the Security Function for the secure release of print jobs. The hashing of +the PINs is not a Security Function for the TOE. +The evaluation has confirmed: +● PP Conformance: None +● for the Functionality: product specific Security Target +Common Criteria Part 2 conformant +● for the Assurance: Common Criteria Part 3 conformant +EAL 2 augmented by +ALC_FLR.1 +● The following TOE Security Functions fulfil the claimed Strength of Function : basic +SF.JOB_RELEASE and SF.MANAGEMENT +The results of the evaluation are only applicable to the TOE as defined in chapter 2 and +the configuration as outlined in chapter 8 above. +9.2 Results of cryptographic assessment +The TOE does not include cryptoalgorithms. Thus, no such mechanisms were part of the +assessment. +18 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +10 Obligations and notes for the usage of the TOE +The operational documents as outlined in table 2 contain necessary information about the +usage of the TOE and all security hints therein have to be considered. +11 Security Target +For the purpose of publishing, the Security Target [6] of the Target of Evaluation (TOE) is +provided within a separate document as Annex A of this report. +12 Definitions +12.1 Acronyms +BSI Bundesamt für Sicherheit in der Informationstechnik / Federal Office for +Information Security, Bonn, Germany +CCRA Common Criteria Recognition Arrangement +CC Common Criteria for IT Security Evaluation +DAC Digital Access Controller +DC Digital Copier +EAL Evaluation Assurance Level +IT Information Technology +ITSEF Information Technology Security Evaluation Facility +MFD Multifunctional Device +PC Personal Computer +PP Protection Profile +RAM Random-Access Memory +SAR Security Assurance Requirements +SF Security Function +SFP Security Function Policy +SFR Security Functional Requirements +SOF Strength of Function +ST Security Target +TOE Target of Evaluation +TSC TSF Scope of Control +TSF TOE Security Functions +TSP TOE Security Policy +USB Universal Serial Bus +UTP Unshielded Twisted Pair +19 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +12.2 Glossary +Augmentation - The addition of one or more assurance component(s) from CC Part 3 to +an EAL or assurance package. +Extension - The addition to an ST or PP of functional requirements not contained in part 2 +and/or assurance requirements not contained in part 3 of the CC. +Formal - Expressed in a restricted syntax language with defined semantics based on well- +established mathematical concepts. +Informal - Expressed in natural language. +Object - An entity within the TSC that contains or receives information and upon which +subjects perform operations. +Protection Profile - An implementation-independent set of security requirements for a +category of TOEs that meet specific consumer needs. +Security Function - A part or parts of the TOE that have to be relied upon for enforcing a +closely related subset of the rules from the TSP. +Security Target - A set of security requirements and specifications to be used as the +basis for evaluation of an identified TOE. +Semiformal - Expressed in a restricted syntax language with defined semantics. +Strength of Function - A qualification of a TOE security function expressing the minimum +efforts assumed necessary to defeat its expected security behaviour by directly attacking +its underlying security mechanisms. +SOF-basic - A level of the TOE strength of function where analysis shows that the function +provides adequate protection against casual breach of TOE security by attackers +possessing a low attack potential. +SOF-medium - A level of the TOE strength of function where analysis shows that the +function provides adequate protection against straightforward or intentional breach of TOE +security by attackers possessing a moderate attack potential. +SOF-high - A level of the TOE strength of function where analysis shows that the function +provides adequate protection against deliberately planned or organised breach of TOE +security by attackers possessing a high attack potential. +Subject - An entity within the TSC that causes operations to be performed. +Target of Evaluation - An IT product or system and its associated administrator and user +guidance documentation that is the subject of an evaluation. +TOE Security Functions - A set consisting of all hardware, software, and firmware of the +TOE that must be relied upon for the correct enforcement of the TSP. +TOE Security Policy - A set of rules that regulate how assets are managed, protected +and distributed within a TOE. +TSF Scope of Control - The set of interactions that can occur with or within a TOE and +are subject to the rules of the TSP. +20 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +13 Bibliography +[1] Common Criteria for Information Technology Security Evaluation, Version 2.3, +August 2005 +[2] Common Methodology for Information Technology Security Evaluation (CEM), +Evaluation Methodology, Version 2.3, August 2005 +[3] BSI certification: Procedural Description (BSI 7125) +[4] Application Notes and Interpretations of the Scheme (AIS) as relevant for the TOE.8 +[5] German IT Security Certificates (BSI 7148, BSI 7149), periodically updated list +published also on the BSI Website +[6] Security Target BSI-DSZ-0517-2009, Version 3.3, “Security Target The Océ Digital +Access Controller (DAC) R10.1.5, as used in the Océ VarioPrint 1055, 1055 BC, +1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/copier/scanner products“, Océ +Technologies B.V. +[7] Evaluation Technical Report, Version 7.0, 19th +January 2009, “Evaluation Technical +Report Digital Access Controller (DAC) R10.1.5“, Brightsight (confidential +document) +[8] Configuration list for the TOE, Version 3.3, 19th +January 2009, “Configuration +Management List for the Océ Digital Access Controller (DAC) R10.1.5, as used in +the as used in the Océ VarioPrint 1055, 1055 BC, 1055 DP, 1065, 1075, 2062, +2075, 2075 DP printer/copier/scanner products“, Océ Technologies B.V. +(confidential document) +[9] Océ VarioPrint 1055-75 Job manual, Code Number 1060061982, Edition 2007, 2.1, +Océ Technologies B.V. +[10] Océ VarioPrint 2062 Job manual, Code Number 1060061982, Edition 2007, 2.1, +Océ Technologies B.V. +[11] Océ VarioPrint 2075 Job manual, Code Number 1060061982, Edition 2007, 2.1, +Océ Technologies B.V. +[12] Océ VarioPrint 1055-75 Configuration manual, Code Number 1060061982, Edition +2007, 2.1, Océ Technologies B.V. +[13] Océ VarioPrint 2062 Configuration manual, Code Number 1060061982, Edition +2007, 2.1, Océ Technologies B.V. +[14] Océ VarioPrint 2075 Configuration manual, Code Number 1060061982, Edition +2007, 2.1, Océ Technologies B.V. +[15] Océ System Configuration, On-line help for Océ DAC R10.1.5, version 4.3, Océ +Technologies B.V. +[16] DAC administration guidance for Océ service engineer “Administrating R10.1.5 of +the Océ DAC” (Lotus Notes Application), Océ Technologies B.V. +8 +specifically +• AIS 32, Version 1, 2 July 2001, Übernahme international abgestimmter CC-Interpretationen +ins deutsche Zertifizierungsschema. +• AIS 38, Version 2.0, 28 September 2007, Reuse of evaluation results +21 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +This page is intentionally left blank. +22 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +C Excerpts from the Criteria +CC Part1: +Conformance results (chapter 7.4) +„The conformance result indicates the source of the collection of requirements that is met +by a TOE or PP that passes its evaluation. This conformance result is presented with +respect to CC Part 2 (functional requirements), CC Part 3 (assurance requirements) and, if +applicable, to a pre-defined set of requirements (e.g., EAL, Protection Profile). +The conformance result consists of one of the following: +– CC Part 2 conformant - A PP or TOE is CC Part 2 conformant if the functional +requirements are based only upon functional components in CC Part 2. +– CC Part 2 extended - A PP or TOE is CC Part 2 extended if the functional +requirements include functional components not in CC Part 2. +plus one of the following: +– CC Part 3 conformant - A PP or TOE is CC Part 3 conformant if the assurance +requirements are based only upon assurance components in CC Part 3. +– CC Part 3 extended - A PP or TOE is CC Part 3 extended if the assurance +requirements include assurance requirements not in CC Part 3. +Additionally, the conformance result may include a statement made with respect to sets of +defined requirements, in which case it consists of one of the following: +– Package name Conformant - A PP or TOE is conformant to a pre-defined named +functional and/or assurance package (e.g. EAL) if the requirements (functions or +assurance) include all components in the packages listed as part of the conformance +result. +– Package name Augmented - A PP or TOE is an augmentation of a pre-defined +named functional and/or assurance package (e.g. EAL) if the requirements (functions +or assurance) are a proper superset of all components in the packages listed as part of +the conformance result. +Finally, the conformance result may also include a statement made with respect to +Protection Profiles, in which case it includes the following: +– PP Conformant - A TOE meets specific PP(s), which are listed as part of the +conformance result.“ +23 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +CC Part 3: +Protection Profile criteria overview (chapter 8.2) +“The goal of a PP evaluation is to demonstrate that the PP is complete, consistent, +technically sound, and hence suitable for use as a statement of requirements for one or +more evaluatable TOEs. Such a PP may be eligible for inclusion within a PP registry. +Assurance Class Assurance Family +Class APE: Protection Profile evaluation +TOE description (APE_DES) +Security environment (APE_ENV) +PP introduction (APE_INT) +Security objectives (APE_OBJ) +IT security requirements (APE_REQ) +Explicitly stated IT security requirements +(APE_SRE) +Table 3 - Protection Profile families - CC extended requirements” +Security Target criteria overview (Chapter 8.3) +“The goal of an ST evaluation is to demonstrate that the ST is complete, consistent, +technically sound, and hence suitable for use as the basis for the corresponding TOE +evaluation. +Assurance Class Assurance Family +Class ASE: Security Target evaluation +TOE description (ASE_DES) +Security environment (ASE_ENV) +ST introduction (ASE_INT) +Security objectives (ASE_OBJ) +PP claims (ASE_PPC) +IT security requirements (ASE_REQ) +Explicitly stated IT security requirements (ASE_SRE) +TOE summary specification (ASE_TSS) +Table 5 - Security Target families - CC extended requirements ” +24 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +Assurance categorisation (chapter 7.5) +“The assurance classes, families, and the abbreviation for each family are shown in Table +1. +Assurance Class Assurance Family +ACM: Configuration management +CM automation (ACM_AUT) +CM capabilities (ACM_CAP) +CM scope (ACM_SCP) +ADO: Delivery and operation Delivery (ADO_DEL) +Installation, generation and start-up (ADO_IGS) +ADV: Development +Functional specification (ADV_FSP) +High-level design (ADV_HLD) +Implementation representation (ADV_IMP) +TSF internals (ADV_INT) +Low-level design (ADV_LLD) +Representation correspondence (ADV_RCR) +Security policy modeling (ADV_SPM) +AGD: Guidance documents Administrator guidance (AGD_ADM) +User guidance (AGD_USR) +ALC: Life cycle support +Development security (ALC_DVS) +Flaw remediation (ALC_FLR) +Life cycle definition (ALC_LCD) +Tools and techniques (ALC_TAT) +ATE: Tests +Coverage (ATE_COV) +Depth (ATE_DPT) +Functional tests (ATE_FUN) +Independent testing (ATE_IND) +AVA: Vulnerability assessment +Covert channel analysis (AVA_CCA) +Misuse (AVA_MSU) +Strength of TOE security functions (AVA_SOF) +Vulnerability analysis (AVA_VLA) +Table 1: Assurance family breakdown and mapping” +25 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +Evaluation assurance levels (chapter 11) +“The Evaluation Assurance Levels (EALs) provide an increasing scale that balances the +level of assurance obtained with the cost and feasibility of acquiring that degree of +assurance. The CC approach identifies the separate concepts of assurance in a TOE at +the end of the evaluation, and of maintenance of that assurance during the operational use +of the TOE. +It is important to note that not all families and components from CC Part 3 are included in +the EALs. This is not to say that these do not provide meaningful and desirable +assurances. Instead, it is expected that these families and components will be considered +for augmentation of an EAL in those PPs and STs for which they provide utility.” +Evaluation assurance level (EAL) overview (chapter 11.1) +“Table 6 represents a summary of the EALs. The columns represent a hierarchically +ordered set of EALs, while the rows represent assurance families. Each number in the +resulting matrix identifies a specific assurance component where applicable. +As outlined in the next section, seven hierarchically ordered evaluation assurance levels +are defined in the CC for the rating of a TOE's assurance. They are hierarchically ordered +inasmuch as each EAL represents more assurance than all lower EALs. The increase in +assurance from EAL to EAL is accomplished by substitution of a hierarchically higher +assurance component from the same assurance family (i.e. increasing rigour, scope, and/ +or depth) and from the addition of assurance components from other assurance families +(i.e. adding new requirements). +These EALs consist of an appropriate combination of assurance components as described +in chapter 7 of this Part 3. More precisely, each EAL includes no more than one +component of each assurance family and all assurance dependencies of every component +are addressed. +While the EALs are defined in the CC, it is possible to represent other combinations of +assurance. Specifically, the notion of “augmentation” allows the addition of assurance +components (from assurance families not already included in the EAL) or the substitution +of assurance components (with another hierarchically higher assurance component in the +same assurance family) to an EAL. Of the assurance constructs defined in the CC, only +EALs may be augmented. The notion of an “EAL minus a constituent assurance +component” is not recognised by the standard as a valid claim. Augmentation carries with +it the obligation on the part of the claimant to justify the utility and added value of the +added assurance component to the EAL. An EAL may also be extended with explicitly +stated assurance requirements. +26 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +Assurance +Class +Assurance +Family +Assurance Components by +Evaluation Assurance Level +EAL1 EAL2 EAL3 EAL4 EAL5 EAL6 EAL7 +Configuration +management +ACM_AUT 1 1 2 2 +ACM_CAP 1 2 3 4 4 5 5 +ACM_SCP 1 2 3 3 3 +Delivery and +operation +ADO_DEL 1 1 2 2 2 3 +ADO_IGS 1 1 1 1 1 1 1 +Development ADV_FSP 1 1 1 2 3 3 4 +ADV_HLD 1 2 2 3 4 5 +ADV_IMP 1 2 3 3 +ADV_INT 1 2 3 +ADV_LLD 1 1 2 2 +ADV_RCR 1 1 1 1 2 2 3 +ADV_SPM 1 3 3 3 +Guidance +documents +AGD_ADM 1 1 1 1 1 1 1 +AGD_USR 1 1 1 1 1 1 1 +Life cycle +support +ALC_DVS 1 1 1 2 2 +ALC_FLR +ALC_LCD 1 2 2 3 +ALC_TAT 1 2 3 3 +Tests ATE_COV 1 2 2 2 3 3 +ATE_DPT 1 1 2 2 3 +ATE_FUN 1 1 1 1 2 2 +ATE_IND 1 2 2 2 2 2 3 +Vulnerability +assessment +AVA_CCA 1 2 2 +AVA_MSU 1 2 2 3 3 +AVA_SOF 1 1 1 1 1 1 +AVA_VLA 1 1 2 3 4 4 +Table 6: Evaluation assurance level summary” +27 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +Evaluation assurance level 1 (EAL1) - functionally tested (chapter 11.3) +“Objectives +EAL1 is applicable where some confidence in correct operation is required, but the threats +to security are not viewed as serious. It will be of value where independent assurance is +required to support the contention that due care has been exercised with respect to the +protection of personal or similar information. +EAL1 provides an evaluation of the TOE as made available to the customer, including +independent testing against a specification, and an examination of the guidance +documentation provided. It is intended that an EAL1 evaluation could be successfully +conducted without assistance from the developer of the TOE, and for minimal outlay. +An evaluation at this level should provide evidence that the TOE functions in a manner +consistent with its documentation, and that it provides useful protection against identified +threats.” +Evaluation assurance level 2 (EAL2) - structurally tested (chapter 11.4) +“Objectives +EAL2 requires the co-operation of the developer in terms of the delivery of design +information and test results, but should not demand more effort on the part of the +developer than is consistent with good commercial practice. As such it should not require a +substantially increased investment of cost or time. +EAL2 is therefore applicable in those circumstances where developers or users require a +low to moderate level of independently assured security in the absence of ready +availability of the complete development record. Such a situation may arise when securing +legacy systems, or where access to the developer may be limited.” +Evaluation assurance level 3 (EAL3) - methodically tested and checked +(chapter 11.5) +“Objectives +EAL3 permits a conscientious developer to gain maximum assurance from positive +security engineering at the design stage without substantial alteration of existing sound +development practices. +EAL3 is applicable in those circumstances where developers or users require a moderate +level of independently assured security, and require a thorough investigation of the TOE +and its development without substantial re-engineering.” +28 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +Evaluation assurance level 4 (EAL4) - methodically designed, tested, and reviewed +(chapter 11.6) +“Objectives +EAL4 permits a developer to gain maximum assurance from positive security engineering +based on good commercial development practices which, though rigorous, do not require +substantial specialist knowledge, skills, and other resources. EAL4 is the highest level at +which it is likely to be economically feasible to retrofit to an existing product line. +EAL4 is therefore applicable in those circumstances where developers or users require a +moderate to high level of independently assured security in conventional commodity TOEs +and are prepared to incur additional security-specific engineering costs.” +Evaluation assurance level 5 (EAL5) - semiformally designed and tested +(chapter 11.7) +“Objectives +EAL5 permits a developer to gain maximum assurance from security engineering based +upon rigorous commercial development practices supported by moderate application of +specialist security engineering techniques. Such a TOE will probably be designed and +developed with the intent of achieving EAL5 assurance. It is likely that the additional costs +attributable to the EAL5 requirements, relative to rigorous development without the +application of specialised techniques, will not be large. +EAL5 is therefore applicable in those circumstances where developers or users require a +high level of independently assured security in a planned development and require a +rigorous development approach without incurring unreasonable costs attributable to +specialist security engineering techniques.” +Evaluation assurance level 6 (EAL6) - semiformally verified design and tested +(chapter 11.8) +“Objectives +EAL6 permits developers to gain high assurance from application of security engineering +techniques to a rigorous development environment in order to produce a premium TOE for +protecting high value assets against significant risks. +EAL6 is therefore applicable to the development of security TOEs for application in high +risk situations where the value of the protected assets justifies the additional costs.” +29 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +Evaluation assurance level 7 (EAL7) - formally verified design and tested +(chapter 11.9) +“Objectives +EAL7 is applicable to the development of security TOEs for application in extremely high +risk situations and/or where the high value of the assets justifies the higher costs. Practical +application of EAL7 is currently limited to TOEs with tightly focused security functionality +that is amenable to extensive formal analysis.“ +Strength of TOE security functions (AVA_SOF) (chapter 19.3) +“Objectives +Even if a TOE security function cannot be bypassed, deactivated, or corrupted, it may still +be possible to defeat it because there is a vulnerability in the concept of its underlying +security mechanisms. For those functions a qualification of their security behaviour can be +made using the results of a quantitative or statistical analysis of the security behaviour of +these mechanisms and the effort required to overcome them. The qualification is made in +the form of a strength of TOE security function claim.” +Vulnerability analysis (AVA_VLA) (chapter 19.4) +"Objectives +Vulnerability analysis is an assessment to determine whether vulnerabilities identified, +during the evaluation of the construction and anticipated operation of the TOE or by other +methods (e.g. by flaw hypotheses), could allow users to violate the TSP. +Vulnerability analysis deals with the threats that a user will be able to discover flaws that +will allow unauthorised access to resources (e.g. data), allow the ability to interfere with or +alter the TSF, or interfere with the authorised capabilities of other users.” +"Application notes +A vulnerability analysis is performed by the developer in order to ascertain the presence of +security vulnerabilities, and should consider at least the contents of all the TOE +deliverables including the ST for the targeted evaluation assurance level. The developer is +required to document the disposition of identified vulnerabilities to allow the evaluator to +make use of that information if it is found useful as a support for the evaluator's +independent vulnerability analysis.” +“Independent vulnerability analysis goes beyond the vulnerabilities identified by the +developer. The main intent of the evaluator analysis is to determine that the TOE is +resistant to penetration attacks performed by an attacker possessing a low (for +AVA_VLA.2 Independent vulnerability analysis), moderate (for AVA_VLA.3 Moderately +resistant) or high (for AVA_VLA.4 Highly resistant) attack potential.” +30 / 32 +BSI-DSZ-CC-0517-2009 Certification Report +D Annexes +List of annexes of this certification report +Annex A: Security Target provided within a separate document. +31 / 32 +Certification Report BSI-DSZ-CC-0517-2009 +This page is intentionally left blank. +32 / 32 +
\ No newline at end of file diff --git a/tests/data/cc/analysis/certs/reports/txt/d1b238729b25d745.txt b/tests/data/cc/analysis/certs/reports/txt/d1b238729b25d745.txt new file mode 100644 index 00000000..30a58ccf --- /dev/null +++ b/tests/data/cc/analysis/certs/reports/txt/d1b238729b25d745.txt @@ -0,0 +1,1294 @@ +Certification Report +Bundesamt für Sicherheit in der Informationstechnik +BSI-DSZ-CC-0325-2006 +for +Océ Digital Access Controller (DAC) +R 8.1.10 +from +Océ Technologies B.V. +BSI - Bundesamt für Sicherheit in der Informationstechnik, Postfach 20 03 63, D-53133 Bonn +Phone +49 228 9582-0, Fax +49 228 9582-455, Infoline +49 228 9582-111 +BSI-DSZ-CC-0325-2006 +Océ Digital Access Controller (DAC) +R 8.1.10 +from +Océ Technologies B.V. +Common Criteria Arrangement +The IT product identified in this certificate has been evaluated at an accredited and licensed/ +approved evaluation facility using the Common Methodology for IT Security Evaluation, Part 1 +Version 0.6, Part 2 Version 1.0 for conformance to the Common Criteria for IT Security +Evaluation, Version 2.1 (ISO/IEC 15408:1999) and including final interpretations for compliance +with Common Criteria Version 2.2 and Common Methodology Part 2, Version 2.2. +Evaluation Results: +Functionality: Product specific Security Target +Common Criteria Part 2 conformant +Assurance Package: Common Criteria Part 3 conformant +EAL2 augmented by ALC_FLR.1 (Basic Flaw Remediation) +This certificate applies only to the specific version and release of the product in its evaluated +configuration and in conjunction with the complete Certification Report. +The evaluation has been conducted in accordance with the provisions of the certification +scheme of the German Federal Office for Information Security (BSI) and the conclusions of the +evaluation facility in the evaluation technical report are consistent with the evidence adduced. +The notes mentioned on the reverse side are part of this certificate. +Bonn, January 27th, 2006 +The President of the Federal Office +for Information Security +Dr. Helmbrecht L.S. +Bundesamt für Sicherheit in der Informationstechnik +Godesberger Allee 185-189 - D-53175 Bonn - Postfach 20 03 63 - D-53133 Bonn +Phone +49 228 9582-0 - Fax +49 228 9582-455 - Infoline +49 228 9582-111 +This certificate is not an endorsement of the IT product by the Federal Office for Information +Security or any other organisation that recognises or gives effect to this certificate, and no +warranty of the IT product by the Federal Office for Information Security or any other +organisation that recognises or gives effect to this certificate, is either expressed or implied. +Certification Report BSI-DSZ-CC-0325-2006 +Preliminary Remarks +Under the BSIG1 +Act, the Federal Office for Information Security (BSI) has the +task of issuing certificates for information technology products. +Certification of a product is carried out on the instigation of the vendor or a +distributor, hereinafter called the sponsor. +A part of the procedure is the technical examination (evaluation) of the product +according to the security criteria published by the BSI or generally recognised +security criteria. +The evaluation is normally carried out by an evaluation facility recognised by the +BSI or by BSI itself. +The result of the certification procedure is the present Certification Report. This +report contains among others the certificate (summarised assessment) and the +detailed Certification Results. +The Certification Results contain the technical description of the security +functionality of the certified product, the details of the evaluation (strength and +weaknesses) and instructions for the user. +1 +Act setting up the Federal Office for Information Security (BSI-Errichtungsgesetz, BSIG) of 17 +December 1990, Bundesgesetzblatt I p. 2834 +V +BSI-DSZ-CC-0325-2006 Certification Report +Contents +Part A: Certification +Part B: Certification Results +Part C: Excerpts from the Criteria +VI +Certification Report BSI-DSZ-CC-0325-2006 +A Certification +1 Specifications of the Certification Procedure +The certification body conducts the procedure according to the criteria laid down +in the following: +• BSIG2 +• BSI Certification Ordinance3 +• BSI Schedule of Costs4 +• Special decrees issued by the Bundesministerium des Innern (Federal +Ministry of the Interior) +• DIN EN 45011 standard +• BSI certification: Procedural Description (BSI 7125) +• Common Criteria for IT Security Evaluation (CC), Version 2.15 +• Common Methodology for IT Security Evaluation (CEM) +• Part 1, Version 0.6 +• Part 2, Version 1.0 +• BSI certification: Application Notes and Interpretation of the Scheme (AIS) +• Advice from the Certification Body on methodology for assurance +components above EAL4 (AIS 34) +The use of Common Criteria Version 2.1, Common Methodology, part 2, +Version 1.0 and final interpretations as part of AIS 32 results in compliance of +the certification results with Common Criteria Version 2.2 and Common +Methodology Part 2, Version 2.2 as endorsed by the Common Criteria +recognition arrangement committees. +2 +Act setting up the Federal Office for Information Security (BSI-Errichtungsgesetz, BSIG) of +17 December 1990, Bundesgesetzblatt I p. 2834 +3 +Ordinance on the Procedure for Issuance of a Certificate by the Federal Office for +Information Security (BSI-Zertifizierungsverordnung, BSIZertV) of 7 July 1992, +Bundesgesetzblatt I p. 1230 +4 +Schedule of Cost for Official Procedures of the Bundesamt für Sicherheit in der +Informationstechnik (BSI-Kostenverordnung, BSI-KostV) of 03 March 2005, +Bundesgesetzblatt I p. 519 +5 +Proclamation of the Bundesministerium des Innern of 22 September 2000 in the Bundes- +anzeiger p. 19445 +A-1 +BSI-DSZ-CC-0325-2006 Certification Report +2 Recognition Agreements +In order to avoid multiple certification of the same product in different countries +a mutual recognition of IT security certificates - as far as such certificates are +based on ITSEC or CC - under certain conditions was agreed. +2.1 ITSEC/CC - Certificates +The SOGIS-Agreement on the mutual recognition of certificates based on +ITSEC became effective on 3 March 1998. This agreement was signed by the +national bodies of Finland, France, Germany, Greece, Italy, The Netherlands, +Norway, Portugal, Spain, Sweden, Switzerland and the United Kingdom. This +agreement on the mutual recognition of IT security certificates was extended to +include certificates based on the CC for all evaluation levels (EAL 1 – EAL 7). +2.2 CC - Certificates +An arrangement (Common Criteria Arrangement) on the mutual recognition of +certificates based on the CC evaluation assurance levels up to and including +EAL 4 was signed in May 2000. It includes also the recognition of Protection +Profiles based on the CC. The arrangement was signed by the national bodies +of Australia, Canada, Finland, France, Germany, Greece, Italy, The +Netherlands, New Zealand, Norway, Spain, United Kingdom and the United +States. Israel joined the arrangement in November 2000, Sweden in February +2002, Austria in November 2002, Hungary and Turkey in September 2003, +Japan in November 2003, the Czech Republic in September 2004, the Republic +of Singapore in March 2005, India in April 2005. +A-2 +Certification Report BSI-DSZ-CC-0325-2006 +3 Performance of Evaluation and Certification +The certification body monitors each individual evaluation to ensure a uniform +procedure, a uniform interpretation of the criteria and uniform ratings. +The product Océ Digital Access Controller (DAC), R8.1.10 has undergone the +certification procedure at BSI. This is a re-certification based on BSI-DSZ-CC- +0268-2005. For this evaluation specific results from the evaluation process +based on BSI-DSZ-CC-0268-2005 were re-used. +The evaluation of the product Océ Digital Access Controller (DAC), R8.1.10 was +conducted by TNO-ITSEF BV. The TNO-ITSEF BV is an evaluation facility +(ITSEF)6 +recognised by BSI. +The sponsor, vendor and distributor is: +Océ Technologies B.V. +P.O. Box 101 +5900 MA Venlo +The Netherlands +The certification is concluded with +• the comparability check and +• the production of this Certification Report. +This work was completed by the BSI on January 27th +, 2006. +The confirmed assurance package is only valid on the condition that +• all stipulations regarding generation, configuration and operation, as given in +the following report, are observed, +• the product is operated in the environment described, where specified in the +following report. +This Certification Report only applies to the version of the product indicated +here. The validity can be extended to new versions and releases of the product, +provided the sponsor applies for re-certification of the modified product, in +accordance with the procedural requirements, and the evaluation does not +reveal any security deficiencies. +For the meaning of the assurance levels and the confirmed strength of +functions, please refer to the excerpts from the criteria at the end of the +Certification Report. +6 +Information Technology Security Evaluation Facility +A-3 +BSI-DSZ-CC-0325-2006 Certification Report +4 Publication +The following Certification Results contain pages B-1 to B-26. +The product Océ Digital Access Controller (DAC), R8.1.10 has been included in +the BSI list of the certified products, which is published regularly (see also +Internet: http:// www.bsi.bund.de). Further information can be obtained from +BSI-Infoline +49 228 9582-111. +Further copies of this Certification Report can be requested from the vendor7 +of +the product. The Certification Report can also be downloaded from the above- +mentioned website. +7 +Océ Technologies B.V. +P.O. Box 101 +5900 MA Venlo +The Netherlands +A-4 +Certification Report BSI-DSZ-CC-0325-2006 +B Certification Results +The following results represent a summary of +• the Security Target of the sponsor for the Target of Evaluation, +• the relevant evaluation results from the evaluation facility, and +• complementary notes and stipulations of the certification body. +B-1 +BSI-DSZ-CC-0325-2006 Certification Report +Contents of the certification results +1 Executive Summary 3 +2 Identification of the TOE 9 +3 Security Policy 12 +4 Assumptions 12 +5 Architectural Information 14 +6 Documentation 15 +7 IT Product Testing 16 +8 Evaluated Configuration 19 +9 Results of the Evaluation 20 +10 Comments/Recommendations 22 +11 Annexes 22 +12 Security Target 22 +13 Definitions 23 +14 Bibliography 25 +B-2 +Certification Report BSI-DSZ-CC-0325-2006 +1 Executive Summary +Océ produces a wide range of Multifunctional Devices (MFDs) for copying, +printing and scanning. MFDs consist of two main parts: a Digital Access +Controller (DAC) and a Digital Copier (DC). The Target of Evaluation (TOE) is +the Océ Digital Access Controller (DAC), R8.1.10. The TOE is used with the +following Océ products: +• Océ VarioPrint 2050, 2060 and 2070 +• Océ VarioPrint 2045, 2055 and 2065 +• Océ 3145E, 3155E and 3165E. +The DAC is a PC-based MFD-controller that provides a wide range of printing +and scanning functionality to the DC of the MFD to which the DAC is connected. +The DAC provides security functionality to the DC. It does not provide copy +functionality. +The DAC can operate in three different security modes: ‘high’, ‘normal’ and +‘low’. The TOE covers the DAC operating in the security mode ‘high (factory +default)’ as delivered by Océ to the customer. This mode is the initial version of +the security mode ‘high‘ and provides a restricted set of functionality that is +configured to meet the Security Target claim. Once changed, it is not possible +to get the DAC back into the certified configuration (‘high (factory default)’) by +changing the security mode back to 'high'. Changing the operational mode +invalidates the claim made in the Security Target. +Two physical configurations exist of the MFDs: one where the DAC is external +to the MFD, and one where it is internal to the MFD. All logical access points +(CD-Rom, floppy drives, network ports, USB/serial/parallel ports etc.) are fully +physically accessible in the internal configuration. For the purpose of this +evaluation, the two configurations are therefore identical. +The DAC consists of two parts, the underlying hardware platform which is not +part of the TOE and the software which forms the TOE. +The IT product Océ Digital Access Controller (DAC), R8.1.10 was evaluated by +TNO-ITSEF BV. The evaluation was completed on December 19th +, 2005. The +TNO-ITSEF BV is an evaluation facility (ITSEF)8 +recognised by BSI. +The sponsor, vendor and distributor is +Océ Technologies B.V. +P.O. Box 101 +5900 MA Venlo +The Netherlands +8 +Information Technology Security Evaluation Facility +B-3 +BSI-DSZ-CC-0325-2006 Certification Report +1.1 Assurance package +The TOE Security Assurance Requirements are based entirely on the +assurance components defined in part 3 of the Common Criteria (see Annex C +or [1], part 3 for details). The TOE meets the assurance requirements of +assurance level EAL2+ (Evaluation Assurance Level 2 augmented). The +assurance requirements are augmented by the component ALC_FLR.1. +1.2 Functionality +The TOE Security Functional Requirements (SFR) selected in the Security +Target are Common Criteria Part 2 conformant as shown in the following table. +The following SFRs are taken from CC part 2: +Security Functional Requirement Addressed issue +FDP User data protection +FDP_ACC.1 Subset access control +FDP_ACF.1 Security attribute based access control +FDP_RIP.1 Subset residual information protection +FIA Identification and authentication +FIA_UAU.1 Timing of authentication +FIA_UAU.2 User authentication before any action +FIA_UID.1 Timing of identification +FIA_UID.2 User identification before any action +FMT Security Management +FMT_MOF.1 Management of security functions behaviour +FMT_MSA.1 Management of security attributes +FMT_MSA.3 Static attribute initialisation +FMT_SMF.1 Specification of Management Functions +FMT_SMR.1 Security roles +FPT Protection of the TOE Security Functions +FPT_RVM.1 Non-bypassability of the TSP +FPT_SEP.1 TSF domain separation +FPT_TST.1 TSF testing +Table 1: SFRs for the TOE taken from CC Part 2 +Note: Only the titles of the Security Functional Requirements are provided. For +more details please refer to the Security Target [7], chapter 5.1. +B-4 +Certification Report BSI-DSZ-CC-0325-2006 +These Security Functional Requirements are implemented by the TOE Security +Functions: +TOE Security Function Addressed issue +SF.FILTERING The TOE uses a built-in firewall to block ports and ICMP +commands that are not needed for the operation of the TOE. +In addition all network protocols that are not supported in the +security mode ‘high’ are disabled. +By default no traffic is permitted to enter or leave to TOE +except for the TCP/IP packets and the restricted ICMP +command set via the ports defined in the rule table described +in [7], Appendix D. +SF.JOB_RELEASE The TOE verifies the identity and associated PIN code that +was send with the print job when submitted by +S.REMOTE_USER with Username/PIN received from +S.LOCAL_USER via the DC interface. If verification is +successful, the secure print job is released for printing. +SF.SHREDDING Once a print or scan job has been deleted, the data is +overwritten. It is possible to perform multiple write cycles, with +various patterns being applied. At least three write cycles will +always take place. S.REMOTE_SYSADMIN or +S.SERVICE_ENGINEER can choose the moment when the +shredding cycle commences. The first write cycle can occur +immediately after the print job has completed or to improve job +throughput performance, once the TOE enters an idle state. +The remaining cycles may also take place immediately after +the print job has been completed or also at the time when the +TOE enters an idle state. The shredding mechanism supports +US DOD 5220-22m and Gutmann algorithms (for more +information see [17] and [18]). +SF.MANAGEMENT The TOE can be managed in relation to SF.JOB_RELEASE +and SF.SHREDDING. In order to gain access, the +S.REMOTE_SYSADMIN or S.SERVICE_ENGINEER must +authenticate themselves to the TOE. S.SERVICE_ENGINEER +does this by entering a password. S.REMOTE_SYSADMIN +authenticates himself by entering a password. The TOE is +delivered by Océ with pre-configured in the security mode +‘high’. This provides the most restrictive set of operational +settings. +SF.SELFTEST During start-up the TOE will check the hard disk files system +and the integrity of the software the forms the TOE. If defects +in the hard disk files system are detected, the corrupted file +system will be automatically repaired. The software includes +all executables (operating system executables, Océ authored +DAC executables, Third party software executables and DAC +system settings). If defects are detected, the corrupted data +will be replaced by correct shadow data. +Table 2: TOE Security Functions +For a complete list and definition of the used subjects and objects please refer +to the Security Target [7], chapter 3.1. +B-5 +BSI-DSZ-CC-0325-2006 Certification Report +1.3 Strength of Function +The Strength of Function claim for all the probabilistic functions and +mechanisms provided by the TOE is SOF-basic. +1.4 Summary of threats and Organisational Security Policies +(OSPs) addressed by the evaluated IT product +The following threats and Organisational Security Policies are defined for the +TOE: +Threat Description +T.RESIDUAL_DATA S.THIEF steals the TOE or parts thereof and retrieves stored +or deleted D.SECURE_PRINT_JOB. The motivation for +S.THIEF to attack the TOE is low because it requires +sophisticated data recovery equipment that can recover data +even after the shredding mechanism has executed to recover +data that has little value to the attacker. +T.NOSY_USER S.LOCAL_USER accesses a D.SECURE_PRINT_JOB that +does not belong to him/her that is stored in the DAC. The +motivation to carry out this attack is low. +T.MALWARE A S.NETWORK_DEVICE is used by malware that may have +entered the TOE’s operational environment to launch an +attack on the integrity of the TOE. Alternatively +S.DIGITAL_COPIER is used by malware to launch an attack +on the integrity of S.NETWORK_DEVICE. The motivation to +carry out this attack is low. +Table 3: Threats +Organisational Security +Policy +Description +P.JOB_DELETE When D.SECURE_PRINT_JOB, D.PRINTJOB and +D.SCANJOB objects are no longer needed by the TOE, +they will be deleted by the TOE at the earliest available +opportunity in a manner that meets a recognised +standard. +P.TOE_ADMINISTRATION The modification of TOE security settings shall be +restricted to S.SERVICE_ENGINEER and +S.REMOTE_SYSADMIN. +Table 4: Organisational Security Policies (OSPs) +For a complete list and definition of the used subjects and objects please refer +to the Security Target [7], chapter 3.1. +B-6 +Certification Report BSI-DSZ-CC-0325-2006 +1.5 Special configuration requirements +1.5.1 Security mode +By default, Océ delivers the DAC in the highest security mode: indicated by +'Security level: high (factory default)'. This provides the most restrictive set of +operational settings. +The remote system administrator must not change the security mode. If the +security mode is changed, the DAC is no longer in the certified configuration +and is no longer able to assure the security of its objects and itself. Once +changed, it is not possible to get the DAC back into the certified configuration +(‘high (factory default)’) by changing the security mode back to 'high'. +1.5.2 Authentication +1.5.2.1 Remote system administrator +The Océ system configuration application is password protected. +For the purpose of configuring the DAC prior to deployment, the DAC is +delivered with a factory-default password. The remote system administrator +must change the password before the DAC is deployed. +The remote system administrator must not use a short or easy-to-guess +password. He must use a non-predictable sequence of at least five characters. +Additionally to this minimum requirements, the remote system administrator is +advised to: +• use a long password - up to 49 characters can be used. +• use a mixture of upper and lower case letters, numbers and punctuation. +• change the password every month. +Log-on to Océ system configuration is blocked for a while after an incorrect +password is entered. The blocking interval is increased after successive +incorrect entries. +1.5.2.2 Service engineer +The service engineer is a local administrator, and is typically employed by Océ. +He has access through RS-232 connections to a wide range of settings on the +TOE and the DC. The service engineer has elevated privileges above those of +the user and the system administrator. +The TOE connection is protected with a default password. The service engineer +must authenticate himself to the TOE before he is allowed to modify the TOE +security settings. +B-7 +BSI-DSZ-CC-0325-2006 Certification Report +At the first log on the service engineer must change the SDS password to a +different value than the default value to keep the DAC Common Criteria +Centified. The password must follow the following rules: +• The passwords must have alpha-numeric characters, a combination of +numbers and letters. +• The password must have uppercase letters, lowercase letters, and numbers. +• The length of the password must be between 5 and 50 characters. +1.5.3 E-shredding +By default, E-shredding is enabled for all data objects. +The following E-shredding settings can be configured within security mode +'high': +• number of overwrite passes (Default:'3'), +• moment of overwriting (Default: 'Perform first pass at once, the rest in the +background'). +The remote system administrator must not change the 'Jobs to overwrite' +settings. If E-shredding is disabled for 'scan jobs' or 'print jobs without security +code', the DAC is no longer in the certified configuration and is no longer able to +assure the security of 'scan jobs' and 'print jobs without security code'. +1.6 Assumptions about the operating environment +The TOE is intended to be used within a Digital Copier. The following +assumptions for the environment of the TOE are made: +Name Definition +A.DIGITAL_COPIER Attachment of the TOE to a Digital Copier +A.ENVIRONMENT Regular office environment +A.SECURITY_POLICY Existing security policy governing the use of IT products in the +customer organisation +A.SHREDDING Shredding for print jobs and scan jobs will not be disabled +A.SLA Any security flaws discovered in the TOE will be repaired +Table 5: Assumptions for the TOE +Note: Only the titles of the assumptions are provided. For more details please +refer to the Security Target [7], chapter 3.2. +1.7 Disclaimers +The Certification Results only apply to the version of the product indicated in the +Certificate and on the condition that all the stipulations are kept as detailed in +B-8 +Certification Report BSI-DSZ-CC-0325-2006 +this Certification Report. This certificate is not an endorsement of the IT product +by the Federal Office for Information Security (BSI) or any other organisation +that recognises or gives effect to this certificate, and no warranty of the IT +product by BSI or any other organisation that recognises or gives effect to this +certificate, is either expressed or implied. +2 Identification of the TOE +The Target of Evaluation (TOE) is called: +Océ Digital Access Controller (DAC), R8.1.10 +The TOE is a series of software that runs on a generic off-the-shelf PC +(underlying platform). Together this is called the DAC (Digital Access +Controller). The DAC is a PC-based MFD-controller (Multi Functional Device) +that provides a wide range of printing and scanning functionality to the Digital +Copier (DC) of the MFD to which the DAC is connected. The DAC provides +security functionality to the DC. It does not provide copy functionality. +2.1 Physical scope of the TOE +The TOE consists of the software parts of the DAC, i.e. the operating system +(OS/2 operating system version 4.5.2), the DAC-specific software (Océ DAC- +specific software release 8.1.10) and the third-party software (Adobe PS3-PDF +Interpreter, Version 3016.103 build #1, Apache HTTP server with SSL support, +Apache 1.3.33, OpenSSL 0.9.7e (used for remote system administration) and +OpenSSL 0.9.7d (used for job forwarding), mod_ssl 2.8.22.). The underlying PC +infrastructure is not part of the TOE (see also figure 1). +OS/2 operating system +Underlying PC Infrastructure +Océ +DAC – specific +software +Third – party +software +TOE +Non - TOE +Figure 1: Physical scope of the TOE +B-9 +BSI-DSZ-CC-0325-2006 Certification Report +2.2 TOE deliverables +The following TOE deliverables are provided for a customer who purchases the +Océ Digital Access Controller (DAC), R8.1.10: +Underlying platform: +1. A generic off-the-shelf PC comprising at a minimum a 900Mhz Celeron +processor, 128MB internal RAM, 15GB hard drive, one serial port, internal +floppy and CDROM drive +2. Generic graphics card and network card supporting either 10/100Mbs +Ethernet UTP or 4/16Mbs Token Ring +3. Drivers for the PC, graphics card and network card +Océ Digital Access Controller (DAC), R8.1.10: +1. The OS/2 operating system version 4.5.2 +2. Océ DAC-specific software R 8.1.10 +3. Third-party developed software: Adobe PS3-PDF Interpreter, Version +3016.103 build #1, Apache HTTP server with SSL support, Apache 1.3.33, +OpenSSL 0.9.7e (used for remote system administration) and OpenSSL +0.9.7d (used for job forwarding), mod_ssl 2.8.22. +Accompanying manuals – administrator guidance: +1. Administrator guidance for the system administrator: +- Océ VarioPrint 2045-70, Common Criteria Certified configuration of the +DAC R8.1.10. Edition 2005-10. +2. The DAC administration guidance for the customer system administrator +takes the form of HTML pages. These are part of the Océ DAC-specific +software, R8.1.10 release and is identified in the ‘About this help’ section as: +‘Océ System Configuration, version 3.1, On-line help, revision 2005’, March +2005. +3. The DAC administration guidance for the Océ service engineer takes the +form of a Lotus Notes application that is installed on the service engineer’s +laptop. The guidance contains an appendix that is identified as ‘Production +and Installation of DAC controller, Codenumber: 1000063294, 19 May 2005’ +and is a frozen version of the Océ service engineer Lotus Notes application +made at the time of product release. +B-10 +Certification Report BSI-DSZ-CC-0325-2006 +Accompanying manuals – user guidance: +1. Job manuals +- Océ VarioPrint 2045, 2055, 2065: +Job manual, Code number 1060028223 - Edition 02-2005 +- Océ VarioPrint 2050, 2060, 2070 +Job manual, Code number 1060028188 - Edition 02-2005 +- Océ 3145E, 3155E, 3165E +Job manual, Code number 1060028155 - Edition 02-2005 +2. Configuration manuals +- Océ VarioPrint 2045, 2055, 2065: +Configuration manual, Code number 1060028232 - Edition 02-2005 +- Océ VarioPrint 2050, 2060, 2070 +Configuration manual - Code number 1060028210 - Edition 02-2005 +- Océ 3145E, 3155E, 3165E +Configuration manual, Code number 1060028167 - Edition 02-2005 +For the delivery the DAC and the DC are packed to one package and are +labelled. When they arrive at the customer the package is checked by the Océ +service engineer and then installed according the installation guidance. During +the DAC startup, an integrity check is performed. If integrity errors are detected, +a complete re-install will be performed. +B-11 +BSI-DSZ-CC-0325-2006 Certification Report +3 Security Policy +The TOE, the software part of a Digital Access Controller (DAC) is part of a +multifunctional device (MFD) for copying, printing and scanning. MFDs consist +of two main parts: a controller and a Digital Copier (DC). The DAC is connected +between a network and the DC. +The security policy of the TOE is to provide: +• protection against unauthorised access to data which is stored temporarily in +the DAC +• protection against malware in the TOE’s operational environment which +might launch an attack on the integrity of the TOE. +4 Assumptions +4.1 Usage assumptions +4.1.1 Remote system administrator +It is assumed that the DAC is used in the security mode 'high (factory default)'. +The security mode will not be changed. +The remote system administrator will read the available system administrator +documentation and must be aware of the security policy of the organisation. +The remote system administrator has to work in a security aware manner with +the DAC. +4.1.2 Local and remote users +When secure print jobs are sent to the DAC, the user will specify a PIN of at +least four digits and a maximum of six digits and, whether the job is printed or +not, will delete the job on the same working day. Employees are aware of this +requirement. +The user will read the available user documentation and must be aware of the +security policy of the organisation. The user has to work in a security aware +manner with the DAC. +4.1.3 E-shredding +It is assumed that the E-shredding operation for print jobs and scan job data +objects will not be disabled. +B-12 +Certification Report BSI-DSZ-CC-0325-2006 +4.1.4 Authentication +4.1.4.1 Remote system administrator +The Océ System Configuration application is password protected. +For the purpose of configuring the DAC prior to deployment, the DAC is +delivered with a factory-default password. The remote system administrator will +change the password before the DAC is deployed. +The remote system administrator will not use a short or easy-to-guess +password. It is assumed that a non-predictable sequence of at least five +characters will be used. Additionally to these minimum requirements, the +remote system administrator is advised to: +• use a long password - up to 49 characters can be used. +• use a mixture of upper and lower case letters, numbers and punctuation. +• change the password every month. +Log-on to Océ system configuration is blocked for a while after an incorrect +password is entered. The blocking interval is increased after successive +incorrect entries. +4.1.4.2 Service engineer +The service engineer is a local administrator, and is typically employed by Océ. +He has access through RS-232 connections to a wide range of settings on the +TOE and the DC. The service engineer has elevated privileges above those of +the user and the system administrator. +The TOE connection is protected with a default password. The service engineer +must authenticate himself to the TOE before he is allowed to modify the TOE +security settings. At the first log on the service engineer must change the SDS +password to a different value than the default value to keep the DAC Common +Criteria Centified. The password must follow the following rules: +• The passwords must have alpha-numeric characters, a combination of +numbers and letters. +• The password must have uppercase letters, lowercase letters, and numbers. +• The length of the password must be between 5 and 50 characters. +4.2 Environmental assumptions +4.2.1 Security policy +It is assumed that the customer organisation will have a security policy +governing the use of IT products by employees in the organisation. +The security policy describes and requires a low to medium level of assurance +(Common Criteria Evaluation Assurance Level 2) for the DAC. +B-13 +BSI-DSZ-CC-0325-2006 Certification Report +It is assumed that the network, which the DAC is attached to, is protected by +security measures that are intended to prevent malicious programs, viruses and +network traffic, not related to the working of the operational environment, +entering the network to which it is attached. Although the virus database files +and various patches are kept up to date, the policy recognises that new threats +emerge over time and that occasionally they may enter the environment from +outside and provides measures to help limit the damage. The policy will define +how IT products are protected against threats originating from outside the +organisation. +The employees of the organisation are aware of, are trained in and operate +according to the terms and conditions of the policy. The policy also covers +physical security and the need for employees to work in a security aware +manner including the usage of the DAC. +4.2.2 Environment +It is assumed that the operational environment of the DAC is a regular office +environment. Physical access to the operational environment is restricted. The +environment contains non-threatening office personnel (local users, remote +users, remote system administrator, Océ service engineer). A “thief” (cleaning +staff, burglar, visitor, in rare cases a user who will have no moral issues in +stealing the TOE or parts of it and attempts to retrieve earlier printer and +scanner jobs from the TOE) is only rarely present in this environment and not +on a recurring base. +5 Architectural Information +The following diagram indicates the subsystems of the TOE that implement the +security functionality. +Network +Digital +Copier +Firewall +Job +manager +DAC +Settings +manager +E-shred +service +Start-up control/Integrity checker +RS-232 +Communication Layer +Figure 2: Overview of the TOE subsystems +B-14 +Certification Report BSI-DSZ-CC-0325-2006 +Communication Layer: This subsystem provides the communication +functionality between the TOE subsystems and the internal interfaces between +the subsystems. In addition, this subsystem provides the communication +functionality to the Digital Copier interface. +Firewall: This subsystem provides state-full inspection of the network packets +that pass through the network card (both inbound and outbound). It ensures that +there is no direct path between the Digital Copier and the network to which the +DAC is attached. +Job Manager: This subsystem manages the print and scan jobs that are +handled by the DAC. There are four types of job: +1. Standard Print Job (D.PRINT_JOB in ST) +2. User associated Print Job (D.PRINT_JOB in ST) +3. User associated print job with unique PIN(D.SECURE_PRINT_JOB in ST) +4. Scan job (D.SCAN_JOB in ST) +DAC Settings manager: This subsystem manages security related settings of +the DAC. +Start-up control/Integrity checker: This subsystem performs an integrity check +as part of the start-up process when power is applied to the DAC. The DAC file +system is checked for inconstancies. +E-shred service: subsystem provides the shredding of the job data objects that +are handled by the Job Manager subsystem (Standard Print Job, User +associated Print Job, User associated print job with unique PIN and Scan job). +6 Documentation +The documentation [9] – [16] is provided with the product by the developer to +the customer for secure usage of the TOE in accordance with the Security +Target. +The documentation is intended for administrators and users: +1. For the system administrator, there is provided the system administrator +guidance [9] which can be found on the home page of Océ. +2. The DAC administration guidance [16] which takes the form of HTML pages +and is part of the DAC is intended for the system administrator. +3. For the user of the MFD, the job manuals [10] – [12] and the configuration +manuals [13] – [15] are provided. +B-15 +BSI-DSZ-CC-0325-2006 Certification Report +7 IT Product Testing +7.1 Independant Testing +7.1.1 Testing approach +The tests are built upon the security functions as defined in the Security Target +[7]. All security functions have associated tests. The security functions are +SF.FILTERING, SF.JOB_RELEASE, SF.MANAGEMENT, SF.SHREDDING and +SF.SELFTEST. +The objectives for the tests are derived from the security functions and are: +1. Check of filtering if it performs conform to the functional specification. With +all network functionality enabled in security level high, the firewall should be +properly configured. +2. Check of the external Ethernet connector if the firewall only allows certain +defined ports. +3. Check of security printing if it performs conform to the functional +specification. +4. Check of shredding if it performs conform to the functional specification. +5. Check of Web SAS authentication and SDS authentication if they perform +conform to the functional specification. +6. Check of integrity test function if it performs conform to the functional +specification. +7.1.2 Test configuration +Tests are performed with the DAC, R 8.1.10 connected to a Océ VarioPrint +2070. The security mode is ‘high (factory default)'. +The following software components are used: +1. OS/2 version 4.5.2 +2. Apache HTTP server with SSL support, Apache 1.3.33, OpenSSL 0.9.7e +(used for remote system administration) and OpenSSL 0.9.7d (used for job +forwarding), mod_ssl 2.8.22. +3. Adobe PS3-PDF Interpreter, Version 3016.103 v.3.1 build #1 +4. DAC, R 8.1.10 +7.1.3 Coverage +All testing commensurate with the functional specification and covers all +security functions. +B-16 +Certification Report BSI-DSZ-CC-0325-2006 +The developer has performed all necessary functional tests for the security +functions. In addition the developer has performed extensive vulnerability tests +that exceeds the attack potential required by EAL2. +7.1.4 Results +The results of the developer testing showed that the security functions perform +as expected. +This means that the developer has shown that +1. The TOE protects it’s own integrity against threats from the network to which +it is attached and the Digital Copier to which it is attached through use of a +firewall and integrity checks on system files upon system reboot. +2. The TOE protects the confidentiality of secure print jobs once they have +been received by the DAC by storing them until the user authenticates +himself to the DAC via a user interface on the DC. The DAC shreds the data +after printing is completed. +3. The TOE does not form a threat to its environment. +7.2 Penetration Testing +Following the developer Vulnerability Analysis, the following penetration testing +effort was made. +7.2.1 Testing Approach +The functional specification was the starting point for the identification of which +interfaces and which functions need to be tested. Based on the more detailed +knowledge of the high-level design some tests are included additionally. +A number of publicly available scanners for obvious vulnerabilities were applied. +7.2.2 Test Configuration +Tests are performed with the DAC, R 8.1.10 connected to a Océ VarioPrint +2070. The security mode is ‘high (factory default)'. +The following software components are used: +1. OS/2 version 4.5.2 +2. Apache HTTP server with SSL support, Apache 1.3.33, OpenSSL 0.9.7e +(used for remote system administration) and OpenSSL 0.9.7d (used for job +forwarding), mod_ssl 2.8.22. +3. Adobe PS3-PDF Interpreter, Version 3016.103 v.3.1 build #1 +4. DAC, R 8.1.10 +5. The test laptop ran Suse 9.3, Nessus 2.2.5 and the Auditor Security +Collection (auditor-200605-02) live CD +B-17 +BSI-DSZ-CC-0325-2006 Certification Report +7.2.3 Coverage +The penetration testing was commensurate to the functional specification and +covered the search for obvious vulnerabilities. +7.2.4 Penetration testing summary +The evaluators have had a meeting in which the (possible) vulnerabilities are +identified. Each evaluator contributed his perspective on the TOE and the +evaluation based on the assurance classes he had executed. The outcome of +this meeting is input for the vulnerability analysis. +The following tests are performed: +• Openssl (auditor-200605-02) Open source ssl implementation +• Nessus 2.2.5 Open Source vulnerability scanner +• Amap (auditor-200605-02) Open source port scanner. +• Xprobe2 (auditor-200605-02) Open source OS fingerprint, sends ICMP +• Ethereal (auditor-200605-02) Open Source network sniffer. +7.2.5 Results +The TOE behaved as expected: +1. The security functionality works as expected. +2. The vulnerability test showed that the TOE is resistant against all tested +public known vulnerabilities based on recent internet scans. +3. The vulnerability scans did not revealed vulnerabilities that could be +exploited on the level of EAL2. +B-18 +Certification Report BSI-DSZ-CC-0325-2006 +8 Evaluated Configuration +The TOE is identified by the release Océ Digital Access Controller (DAC), +R8.1.10. +For setting up and running the TOE according to the evaluated configuration all +guidance documents (refer to chapter 6) and the implications given by the +Security Target have to be followed. These implications can also be found in +chapter 1.5, 1.6 and 4 of this report. +B-19 +BSI-DSZ-CC-0325-2006 Certification Report +9 Results of the Evaluation +The Evaluation Technical Report (ETR), [8] was provided by the ITSEF +according to the Common Criteria [1], the Methodology [2], the requirements of +the Scheme [3] and all interpretations and guidelines of the Scheme (AIS) [4] as +relevant for the TOE. +The evaluation methodology CEM [2] was used for those components identical +with EAL2+. +The verdicts for the CC, Part 3 assurance components (according to EAL2 +augmented by ALC_FLR.1 and the class ASE for the Security Target +evaluation) are summarised in the following table. +Assurance classes and components Verdict +Security Target evaluation CC Class ASE PASS +TOE description ASE_DES.1 PASS +Security environment ASE_ENV.1 PASS +ST introduction ASE_INT.1 PASS +Security objectives ASE_OBJ.1 PASS +PP claims ASE_PPC.1 PASS +IT security requirements ASE_REQ.1 PASS +Explicitly stated IT security requirements ASE_SRE.1 PASS +TOE summary specification ASE_TSS.1 PASS +Configuration management CC Class ACM PASS +Configuration Items ACM_CAP.2 PASS +Delivery and operation CC Class ADO PASS +Delivery Procedures ADO_DEL.1 PASS +Installation, generation, and start-up procedures ADO_IGS.1 PASS +Development CC Class ADV PASS +Informal functional specification ADV_FSP.1 PASS +Descriptive high-level design ADV_HLD.1 PASS +Informal correspondence demonstration ADV_RCR.1 PASS +Guidance documents CC Class AGD PASS +Administrator guidance AGD_ADM.1 PASS +User guidance AGD_USR.1 PASS +Life cycle support CC Class ALC PASS +Basic flaw remediation ALC_FLR.1 PASS +Tests CC Class ATE PASS +Evidence of coverage ATE_COV.1 PASS +B-20 +Certification Report BSI-DSZ-CC-0325-2006 +Assurance classes and components Verdict +Functional testing ATE_FUN.1 PASS +Independent testing – sample ATE_IND.2 PASS +Vulnerability assessment CC Class AVA PASS +Strength of TOE security function evaluation AVA_SOF.1 PASS +Developer vulnerability analysis AVA_VLA.1 PASS +Table 6: Verdicts for the assurance components +The focus of this re-evaluation was laid on the examination of the strengthened +login mechanisms for the system administrator and the service engineer as well +as on the search for new obvious vulnerabilities and on the correctness of +overall functionality of the TOE after the addition of some new not security- +relevant features. +The evaluation has shown that: +• Security Functional Requirements specified for the TOE are Common +Criteria Part 2 conformant +• the assurance of the TOE is Common Criteria Part 3 conformant, EAL2 +augmented by ALC_FLR.1 +• the SFRs FIA_UID.1, FIA_UAU.1, FIA_UID.2 and FIA_UAU.2 require the +TOE to provide security functions that provide identification/authentication +functionality that meets a SOF claim of ‘SOF basic’. +A strength of function claim of ‘SOF basic’ is made for the security functions +SF.JOB_RELEASE and SF.MANAGEMENT. These are the security +functions that implement FIA_UID.1, FIA_UAU.1, FIA_UID.2 and +FIA_UAU.2. +The results of the evaluation are only applicable to the Océ Digital Access +Controller (DAC), R8.1.10 +The validity can be extended to new versions and releases of the product, +provided the sponsor applies for re-certification or assurance continuity of the +modified product, in accordance with the procedural requirements, and the +evaluation of the modified product does not reveal any security deficiencies. +B-21 +BSI-DSZ-CC-0325-2006 Certification Report +10 Comments/Recommendations +• The DAC is intended to provide scan and print functionality to users +requiring a low to moderate level of security assurance (Common Criteria +Evaluation Assurance Level 2+). +• The remote system administrator must not change the security mode. If the +security mode is changed, the DAC is no longer in the certified configuration +and is no longer able to assure the security of its objects and itself. Once +changed, it is not possible to get the DAC back into the certified +configuration (‘high (factory default)’) by changing the security mode back to +'high'. +• The remote system administrator must not change the 'Jobs to overwrite' +settings. If E-shredding is disabled for 'scan jobs' or 'print jobs without +security code', the DAC is no longer in the certified configuration and is no +longer able to assure the security of 'scan jobs' and 'print jobs without +security code'. +• The employees of the organisation are aware of, are trained in and operate +according to the terms and conditions of the policy. The policy also covers +physical security and the need for employees to work in a security aware +manner including the usage of the DAC. The employees will read the +available guidance documentation. +The guidance documentation (refer to chapter 6 of this report) contains +necessary information about the secure usage of the TOE. Additionally, for +secure usage of the TOE the fulfilment of the assumptions about the +environment in the Security Target [7] and the Security Target as a whole has to +be taken into account. Therefore a user/administrator has to follow the guidance +in these documents. +11 Annexes +None. +12 Security Target +For the purpose of publishing, the Security Target [7] of the Target of Evaluation +(TOE) is provided within a separate document. +B-22 +Certification Report BSI-DSZ-CC-0325-2006 +13 Definitions +13.1 Acronyms +BSI Bundesamt für Sicherheit in der Informationstechnik / Federal +Office for Information Security, Bonn, Germany +CC Common Criteria for IT Security Evaluation +DAC Digital Access Controler +DC Digital Copier +EAL Evaluation Assurance Level +MFD Multifunctional Device +IT Information Technology +PP Protection Profile +SF Security Function +SFP Security Function Policy +SOF Strength of Function +ST Security Target +TOE Target of Evaluation +TSC TSF Scope of Control +TSF TOE Security Functions +TSP TOE Security Policy +13.2 Glossary +Augmentation - The addition of one or more assurance component(s) from CC +Part 3 to an EAL or assurance package. +Extension - The addition to an ST or PP of functional requirements not +contained in part 2 and/or assurance requirements not contained in part 3 of the +CC. +Formal - Expressed in a restricted syntax language with defined semantics +based on well-established mathematical concepts. +Informal - Expressed in natural language. +Object - An entity within the TSC that contains or receives information and +upon which subjects perform operations. +Protection Profile - An implementation-independent set of security require- +ments for a category of TOEs that meet specific consumer needs. +B-23 +BSI-DSZ-CC-0325-2006 Certification Report +Security Function - A part or parts of the TOE that have to be relied upon for +enforcing a closely related subset of the rules from the TSP. +Security Target - A set of security requirements and specifications to be used +as the basis for evaluation of an identified TOE. +Semiformal - Expressed in a restricted syntax language with defined +semantics. +Strength of Function - A qualification of a TOE security function expressing +the minimum efforts assumed necessary to defeat its expected security +behaviour by directly attacking its underlying security mechanisms. +SOF-basic - A level of the TOE strength of function where analysis shows that +the function provides adequate protection against casual breach of TOE +security by attackers possessing a low attack potential. +SOF-medium - A level of the TOE strength of function where analysis shows +that the function provides adequate protection against straightforward or +intentional breach of TOE security by attackers possessing a moderate attack +potential. +SOF-high - A level of the TOE strength of function where analysis shows that +the function provides adequate protection against deliberately planned or +organised breach of TOE security by attackers possessing a high attack +potential. +Subject - An entity within the TSC that causes operations to be performed. +Target of Evaluation - An IT product or system and its associated +administrator and user guidance documentation that is the subject of an +evaluation. +TOE Security Functions - A set consisting of all hardware, software, and +firmware of the TOE that must be relied upon for the correct enforcement of the +TSP. +TOE Security Policy - A set of rules that regulate how assets are managed, +protected and distributed within a TOE. +TSF Scope of Control - The set of interactions that can occur with or within a +TOE and are subject to the rules of the TSP. +B-24 +Certification Report BSI-DSZ-CC-0325-2006 +14 Bibliography +[1] Common Criteria for Information Technology Security Evaluation, +Version 2.1, August 1999 +[2] Common Methodology for Information Technology Security Evaluation +(CEM), Part 1, Version 0.6; Part 2: Evaluation Methodology, Version 1.0, +August 1999 +[3] BSI certification: Procedural Description (BSI 7125) +[4] Application Notes and Interpretations of the Scheme (AIS) as relevant for +the TOE +[5] German IT Security Certificates (BSI 7148, BSI 7149), periodically +updated list published also on the BSI Web-site +[6] Applicaton Notes and Interpretations of the Scheme AIS33, Version 2 – +“Methodologie zur Fehlerbehebung – Flaw Remediation”, 26.07.2002 +[7] Security Target BSI-DSZ-0325-2006, Version 1.9, September 02nd +, 2005; +The Océ Digital Access Controller (DAC) R8.1.10, as used in the Océ +VarioPrint 2045, 2050, 2055, 2060, 2065, 2070, 3145, 3155, 3165 +printer/copier/scanner products, Océ Technologies B.V. +[8] Evaluation Technical Report, Version 2.0, December 16th +, 2005, The Océ +Digital Access Controller (DAC) R8.1.10, as used in the Océ VarioPrint +2045-65, the Océ VarioPrint 2050-70, the Océ 31x5 ranges of Océ +printer/copier/scanner products – EAL2+ (confidential document) +Guidance Documentation +[9] Océ VarioPrint 2045-65, Océ VarioPrint 2050-70, Océ 31x5: Common +Criteria certified configuration of the DAC R8.10.1 - Edition 2005-10 +[10] Océ VarioPrint 2045-65 Job manual, Code number 1060028223 - Edition +02-2005 +[11] Océ VarioPrint 2050-70 Job manual, Code number 1060028188 - Edition +02-2005 +[12] Océ 31x5E Job manual, Code number 1060028155 - Edition 02-2005 +[13] Océ VarioPrint 2045-65 Configuration manual, Code number +1060028232 - Edition 02-2005 +[14] Océ VarioPrint 2050-70 Configuration manual, Code number +1060028210 -Edition 02-2005 +[15] Océ 31x5E Configuration manual, Code number 1060028167 - Edition +02-2005 +[16] Océ-Technologies B.V., Océ System Configuration version 3.1 On-line +help, Revision 2005, March 2005 +B-25 +BSI-DSZ-CC-0325-2006 Certification Report +[17] Secure Deletion of Data from Magnetic and Solid State Memory, Peter +Guttman 1996 +(http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html) +[18] US Department of Defence Military Standard DOD 5220-22m +(http://www.dss.mil/isecnispom_0195.htm) +B-26 +Certification Report BSI-DSZ-CC-0325-2006 +C Excerpts from the Criteria +CC Part 1: +Caveats on evaluation results (chapter 5.4) / Final Interpretation 008 +The conformance result indicates the source of the collection of requirements +that is met by a TOE or PP that passes its evaluation. This conformance result +is presented with respect to Part 2 (functional requirements), Part 3 (assurance +requirements) and, if applicable, to a pre-defined set of requirements (e.g., EAL, +Protection Profile). +The conformance result consists of one of the following: +Part 2 conformant - A PP or TOE is Part 2 conformant if the functional +requirements are based only upon functional components in Part 2 +Part 2 extended - A PP or TOE is Part 2 extended if the functional +requirements include functional components not in Part 2 +plus one of the following: +Part 3 conformant - A PP or TOE is Part 3 conformant if the assurance +requirements are based only upon assurance components in Part 3 +Part 3 extended - A PP or TOE is Part 3 extended if the assurance +requirements include assurance requirements not in Part 3. +Additionally, the conformance result may include a statement made with respect +to sets of defined requirements, in which case it consists of one of the following: +Package name Conformant - A PP or TOE is conformant to a pre-defined +named functional and/or assurance package (e.g. EAL) if the requirements +(functions or assurance) include all components in the packages listed as part +of the conformance result. +Package name Augmented - A PP or TOE is an augmentation of a pre-defined +named functional and/or assurance package (e.g. EAL) if the requirements +(functions or assurance) are a proper superset of all components in the +packages listed as part of the conformance result. +Finally, the conformance result may also include a statement made with respect +to Protection Profiles, in which case it includes the following: +PP Conformant - A TOE meets specific PP(s), which are listed as part of the +conformance result. +C-1 +BSI-DSZ-CC-0325-2006 Certification Report +CC Part 3: +Assurance categorisation (chapter 2.5) +"The assurance classes, families, and the abbreviation for each family are +shown in Table 2.1." +Assurance Class Assurance Family Abbreviated Name +Class ACM: Configuration +management +CM automation ACM_AUT +CM capabilities ACM_CAP +CM scope ACM_SCP +Class ADO: Delivery and +operation +Delivery ADO_DEL +Installation, generation and start-up ADO_IGS +Class ADV: Development Functional specification ADV_FSP +High-level design ADV_HLD +Implementation representation ADV_IMP +TSF internals ADV_INT +Low-level design ADV_LLD +Representation correspondence ADV_RCR +Security policy modeling ADV_SPM +Class AGD: Guidance +documents +Administrator guidance AGD_ADM +User guidance AGD_USR +Class ALC: Life cycle support Development security ALC_DVS +Flaw remediation ALC_FLR +Life cycle definition ALC_LCD +Tools and techniques ALC_TAT +Class ATE: Tests Coverage ATE_COV +Depth ATE_DPT +Functional tests ATE_FUN +Independent testing ATE_IND +Class AVA: Vulnerability +assessment +Covert channel analysis AVA_CCA +Misuse AVA_MSU +Strength of TOE security functions AVA_SOF +Vulnerability analysis AVA_VLA +Table 1: Assurance family breakdown and map +C-2 +Certification Report BSI-DSZ-CC-0325-2006 +Evaluation assurance levels (chapter 6) +"The Evaluation Assurance Levels (EALs) provide an increasing scale that +balances the level of assurance obtained with the cost and feasibility of +acquiring that degree of assurance. The CC approach identifies the separate +concepts of assurance in a TOE at the end of the evaluation, and of +maintenance of that assurance during the operational use of the TOE. +It is important to note that not all families and components from Part 3 are +included in the EALs. This is not to say that these do not provide meaningful +and desirable assurances. Instead, it is expected that these families and +components will be considered for augmentation of an EAL in those PPs and +STs for which they provide utility." +Evaluation assurance level (EAL) overview (chapter 6.1) +Table 6.1 represents a summary of the EALs. The columns represent a +hierarchically ordered set of EALs, while the rows represent assurance families. +Each number in the resulting matrix identifies a specific assurance component +where applicable. +As outlined in the next section, seven hierarchically ordered evaluation +assurance levels are defined in the CC for the rating of a TOE's assurance. +They are hierarchically ordered inasmuch as each EAL represents more +assurance than all lower EALs. The increase in assurance from EAL to EAL is +accomplished by substitution of a hierarchically higher assurance component +from the same assurance family (i.e. increasing rigour, scope, and/or depth) +and from the addition of assurance components from other assurance families +(i.e. adding new requirements). +These EALs consist of an appropriate combination of assurance components as +described in chapter 2 of this Part 3. More precisely, each EAL includes no +more than one component of each assurance family and all assurance +dependencies of every component are addressed. +While the EALs are defined in the CC, it is possible to represent other +combinations of assurance. Specifically, the notion of “augmentation“ allows the +addition of assurance components (from assurance families not already +included in the EAL) or the substitution of assurance components (with another +hierarchically higher assurance component in the same assurance family) to an +EAL. Of the assurance constructs defined in the CC, only EALs may be +augmented. The notion of an “EAL minus a constituent assurance component“ +is not recognised by the CC as a valid claim. Augmentation carries with it the +obligation on the part of the claimant to justify the utility and added value of the +added assurance component to the EAL. An EAL may also be extended with +explicitly stated assurance requirements. +C-3 +BSI-DSZ-CC-0325-2006 Certification Report +Assurance Class Assurance +Family +Assurance Components by +Evaluation Assurance Level +EAL1 EAL2 EAL3 EAL4 EAL5 EAL6 EAL7 +Configuration +management +ACM_AUT 1 1 2 2 +ACM_CAP 1 2 3 4 4 5 5 +ACM_SCP 1 2 3 3 3 +Delivery and +operation +ADO_DEL 1 1 2 2 2 3 +ADO_IGS 1 1 1 1 1 1 1 +Development ADV_FSP 1 1 1 2 3 3 4 +ADV_HLD 1 2 2 3 4 5 +ADV_IMP 1 2 3 3 +ADV_INT 1 2 3 +ADV_LLD 1 1 2 2 +ADV_RCR 1 1 1 1 2 2 3 +ADV_SPM 1 3 3 3 +Guidance +documents +AGD_ADM 1 1 1 1 1 1 1 +AGD_USR 1 1 1 1 1 1 1 +Life cycle +support +ALC_DVS 1 1 1 2 2 +ALC_FLR +ALC_LCD 1 2 2 3 +ALC_TAT 1 2 3 3 +Tests ATE_COV 1 2 2 2 3 3 +ATE_DPT 1 1 2 2 3 +ATE_FUN 1 1 1 1 2 2 +ATE_IND 1 2 2 2 2 2 3 +Vulnerability +assessment +AVA_CCA 1 2 2 +AVA_MSU 1 2 2 3 3 +AVA_SOF 1 1 1 1 1 1 +AVA_VLA 1 1 2 3 4 4 +Table 2: Evaluation assurance level summary +C-4 +Certification Report BSI-DSZ-CC-0325-2006 +Evaluation assurance level 1 (EAL1) - functionally tested (chapter 6.2.1) +"Objectives +EAL1 is applicable where some confidence in correct operation is required, but +the threats to security are not viewed as serious. It will be of value where +independent assurance is required to support the contention that due care has +been exercised with respect to the protection of personal or similar information. +EAL1 provides an evaluation of the TOE as made available to the customer, +including independent testing against a specification, and an examination of the +guidance documentation provided. It is intended that an EAL1 evaluation could +be successfully conducted without assistance from the developer of the TOE, +and for minimal outlay. +An evaluation at this level should provide evidence that the TOE functions in a +manner consistent with its documentation, and that it provides useful protection +against identified threats.“ +Evaluation assurance level 2 (EAL2) - structurally tested (chapter 6.2.2) +"Objectives +EAL2 requires the co-operation of the developer in terms of the delivery of +design information and test results, but should not demand more effort on the +part of the developer than is consistent with good commercial practice. As such +it should not require a substantially increased investment of cost or time. +EAL2 is therefore applicable in those circumstances where developers or users +require a low to moderate level of independently assured security in the +absence of ready availability of the complete development record. Such a +situation may arise when securing legacy systems, or where access to the +developer may be limited.“ +Evaluation assurance level 3 (EAL3) - methodically tested and checked +(chapter 6.2.3) +"Objectives +EAL3 permits a conscientious developer to gain maximum assurance from +positive security engineering at the design stage without substantial alteration of +existing sound development practices. +EAL3 is applicable in those circumstances where developers or users require a +moderate level of independently assured security, and require a thorough +investigation of the TOE and its development without substantial re- +engineering.“ +C-5 +BSI-DSZ-CC-0325-2006 Certification Report +Evaluation assurance level 4 (EAL4) - methodically designed, tested, and +reviewed (chapter 6.2.4) +"Objectives +EAL4 permits a developer to gain maximum assurance from positive security +engineering based on good commercial development practices which, though +rigorous, do not require substantial specialist knowledge, skills, and other +resources. EAL4 is the highest level at which it is likely to be economically +feasible to retrofit to an existing product line. +EAL4 is therefore applicable in those circumstances where developers or users +require a moderate to high level of independently assured security in +conventional commodity TOEs and are prepared to incur additional security- +specific engineering costs.“ +Evaluation assurance level 5 (EAL5) - semiformally designed and tested +(chapter 6.2.5) +"Objectives +EAL5 permits a developer to gain maximum assurance from security +engineering based upon rigorous commercial development practices supported +by moderate application of specialist security engineering techniques. Such a +TOE will probably be designed and developed with the intent of achieving EAL5 +assurance. It is likely that the additional costs attributable to the EAL5 +requirements, relative to rigorous development without the application of +specialised techniques, will not be large. +EAL5 is therefore applicable in those circumstances where developers or users +require a high level of independently assured security in a planned development +and require a rigorous development approach without incurring unreasonable +costs attributable to specialist security engineering techniques.“ +Evaluation assurance level 6 (EAL6) - semiformally verified design and +tested (chapter 6.2.6) +"Objectives +EAL6 permits developers to gain high assurance from application of security +engineering techniques to a rigorous development environment in order to +produce a premium TOE for protecting high value assets against significant +risks. +EAL6 is therefore applicable to the development of security TOEs for +application in high risk situations where the value of the protected assets +justifies the additional costs.“ +C-6 +Certification Report BSI-DSZ-CC-0325-2006 +Evaluation assurance level 7 (EAL7) - formally verified design and tested +(chapter 6.2.7) +"Objectives +EAL7 is applicable to the development of security TOEs for application in +extremely high risk situations and/or where the high value of the assets justifies +the higher costs. Practical application of EAL7 is currently limited to TOEs with +tightly focused security functionality that is amenable to extensive formal +analysis.“ +C-7 +BSI-DSZ-CC-0325-2006 Certification Report +Strength of TOE security functions (AVA_SOF) (chapter 14.3) +AVA_SOF Strength of TOE security functions +"Objectives +Even if a TOE security function cannot be bypassed, deactivated, or corrupted, +it may still be possible to defeat it because there is a vulnerability in the concept +of its underlying security mechanisms. For those functions a qualification of their +security behaviour can be made using the results of a quantitative or statistical +analysis of the security behaviour of these mechanisms and the effort required +to overcome them. The qualification is made in the form of a strength of TOE +security function claim.“ +Vulnerability analysis (AVA_VLA) (chapter 14.4) +AVA_VLA Vulnerability analysis +"Objectives +Vulnerability analysis is an assessment to determine whether vulnerabilities +identified, during the evaluation of the construction and anticipated operation of +the TOE or by other methods (e.g. by flaw hypotheses), could allow users to +violate the TSP. +Vulnerability analysis deals with the threats that a user will be able to discover +flaws that will allow unauthorised access to resources (e.g. data), allow the +ability to interfere with or alter the TSF, or interfere with the authorised +capabilities of other users.“ +"Application notes +A vulnerability analysis is performed by the developer in order to ascertain the +presence of security vulnerabilities, and should consider at least the contents of +all the TOE deliverables including the ST for the targeted evaluation assurance +level. The developer is required to document the disposition of identified +vulnerabilities to allow the evaluator to make use of that information if it is found +useful as a support for the evaluator's independent vulnerability analysis.“ +"Independent vulnerability analysis goes beyond the vulnerabilities identified by +the developer. The main intent of the evaluator analysis is to determine that the +TOE is resistant to penetration attacks performed by an attacker possessing a +low (for AVA_VLA.2), moderate (for AVA_VLA.3) or high (for AVA_VLA.4) +attack potential. +C-8 +
\ No newline at end of file diff --git a/tests/data/cc/analysis/certs/targets/pdf/2c47b65953dcffb3.pdf b/tests/data/cc/analysis/certs/targets/pdf/2c47b65953dcffb3.pdf Binary files differnew file mode 100644 index 00000000..5caeadc3 --- /dev/null +++ b/tests/data/cc/analysis/certs/targets/pdf/2c47b65953dcffb3.pdf diff --git a/tests/data/cc/analysis/certs/targets/pdf/3129688580711e08.pdf b/tests/data/cc/analysis/certs/targets/pdf/3129688580711e08.pdf new file mode 100644 index 00000000..35cdc814 --- /dev/null +++ b/tests/data/cc/analysis/certs/targets/pdf/3129688580711e08.pdf @@ -0,0 +1,23382 @@ +%PDF-1.6
%
+9657 0 obj
<</Linearized 1/L 1483390/O 9661/E 429228/N 95/T 1290201/H [ 38317 3491]>>
endobj
+xref
+9657 1863
+0000000016 00000 n
+0000042129 00000 n
+0000042455 00000 n
+0000042519 00000 n
+0000042554 00000 n
+0000071879 00000 n
+0000072004 00000 n
+0000072129 00000 n
+0000072254 00000 n
+0000072379 00000 n
+0000072504 00000 n
+0000072629 00000 n
+0000072754 00000 n
+0000072879 00000 n
+0000073004 00000 n
+0000073129 00000 n
+0000073254 00000 n
+0000073379 00000 n
+0000073504 00000 n
+0000073629 00000 n
+0000074347 00000 n
+0000074812 00000 n
+0000075064 00000 n
+0000075760 00000 n
+0000076522 00000 n
+0000076703 00000 n
+0000076753 00000 n
+0000076803 00000 n
+0000076853 00000 n
+0000076903 00000 n
+0000076953 00000 n
+0000077003 00000 n
+0000077053 00000 n
+0000077103 00000 n
+0000077153 00000 n
+0000077203 00000 n
+0000077253 00000 n
+0000077303 00000 n
+0000077353 00000 n
+0000077403 00000 n
+0000077453 00000 n
+0000077503 00000 n
+0000077553 00000 n
+0000077603 00000 n
+0000077653 00000 n
+0000077703 00000 n
+0000077753 00000 n
+0000077803 00000 n
+0000077853 00000 n
+0000077903 00000 n
+0000077953 00000 n
+0000078003 00000 n
+0000078043 00000 n
+0000078093 00000 n
+0000078143 00000 n
+0000078193 00000 n
+0000078243 00000 n
+0000078293 00000 n
+0000078343 00000 n
+0000078393 00000 n
+0000078443 00000 n
+0000078493 00000 n
+0000078657 00000 n
+0000078827 00000 n
+0000079009 00000 n
+0000079185 00000 n
+0000079374 00000 n
+0000079441 00000 n
+0000082795 00000 n
+0000085381 00000 n
+0000087593 00000 n
+0000090061 00000 n
+0000092984 00000 n
+0000095452 00000 n
+0000095590 00000 n
+0000095900 00000 n
+0000098240 00000 n
+0000098413 00000 n
+0000104570 00000 n
+0000104742 00000 n
+0000104915 00000 n
+0000105095 00000 n
+0000105275 00000 n
+0000105447 00000 n
+0000105627 00000 n
+0000105807 00000 n
+0000105986 00000 n
+0000106166 00000 n
+0000106341 00000 n
+0000106519 00000 n
+0000106699 00000 n
+0000106878 00000 n
+0000107057 00000 n
+0000107236 00000 n
+0000107416 00000 n
+0000107595 00000 n
+0000107773 00000 n
+0000107953 00000 n
+0000108132 00000 n
+0000108311 00000 n
+0000108489 00000 n
+0000108667 00000 n
+0000108845 00000 n
+0000109025 00000 n
+0000109204 00000 n
+0000109383 00000 n
+0000109562 00000 n
+0000109740 00000 n
+0000109918 00000 n
+0000110096 00000 n
+0000110273 00000 n
+0000110452 00000 n
+0000110630 00000 n
+0000110809 00000 n
+0000110988 00000 n
+0000111167 00000 n
+0000111345 00000 n
+0000111523 00000 n
+0000111701 00000 n
+0000111881 00000 n
+0000112060 00000 n
+0000112238 00000 n
+0000112418 00000 n
+0000112596 00000 n
+0000112774 00000 n
+0000112953 00000 n
+0000113132 00000 n
+0000113320 00000 n
+0000113500 00000 n
+0000113690 00000 n
+0000113868 00000 n
+0000114046 00000 n
+0000114221 00000 n
+0000114399 00000 n
+0000114577 00000 n
+0000114755 00000 n
+0000114934 00000 n
+0000115113 00000 n
+0000115303 00000 n
+0000115491 00000 n
+0000115687 00000 n
+0000115867 00000 n
+0000116045 00000 n
+0000116220 00000 n
+0000116398 00000 n
+0000116597 00000 n
+0000116796 00000 n
+0000116976 00000 n
+0000117171 00000 n
+0000117372 00000 n
+0000117567 00000 n
+0000117746 00000 n
+0000117926 00000 n
+0000118106 00000 n
+0000118281 00000 n
+0000118459 00000 n
+0000118637 00000 n
+0000118816 00000 n
+0000118999 00000 n
+0000119182 00000 n
+0000119358 00000 n
+0000119538 00000 n
+0000119718 00000 n
+0000119901 00000 n
+0000120079 00000 n
+0000120257 00000 n
+0000120436 00000 n
+0000120614 00000 n
+0000120793 00000 n
+0000120971 00000 n
+0000121154 00000 n
+0000121334 00000 n
+0000121512 00000 n
+0000121680 00000 n
+0000121852 00000 n
+0000122020 00000 n
+0000122188 00000 n
+0000122356 00000 n
+0000122524 00000 n
+0000122692 00000 n
+0000122860 00000 n
+0000123028 00000 n
+0000123196 00000 n
+0000123364 00000 n
+0000123532 00000 n
+0000123700 00000 n
+0000123880 00000 n
+0000124052 00000 n
+0000124225 00000 n
+0000124405 00000 n
+0000124583 00000 n
+0000124755 00000 n
+0000124935 00000 n
+0000125107 00000 n
+0000125280 00000 n
+0000125460 00000 n
+0000125632 00000 n
+0000125804 00000 n
+0000125972 00000 n
+0000126141 00000 n
+0000126319 00000 n
+0000126497 00000 n
+0000126669 00000 n
+0000126844 00000 n
+0000127016 00000 n
+0000127185 00000 n
+0000127354 00000 n
+0000127523 00000 n
+0000127695 00000 n
+0000127873 00000 n
+0000128051 00000 n
+0000128229 00000 n
+0000128407 00000 n
+0000128585 00000 n
+0000128763 00000 n
+0000128931 00000 n
+0000129103 00000 n
+0000129275 00000 n
+0000129447 00000 n
+0000129625 00000 n
+0000129797 00000 n
+0000129975 00000 n
+0000130153 00000 n
+0000130331 00000 n
+0000130509 00000 n
+0000130685 00000 n
+0000130857 00000 n
+0000131029 00000 n
+0000131201 00000 n
+0000131379 00000 n
+0000131547 00000 n
+0000131727 00000 n
+0000131899 00000 n
+0000132077 00000 n
+0000132249 00000 n
+0000132429 00000 n
+0000132609 00000 n
+0000132789 00000 n
+0000132969 00000 n
+0000133149 00000 n
+0000133329 00000 n
+0000133510 00000 n
+0000133678 00000 n
+0000133850 00000 n
+0000134022 00000 n
+0000134201 00000 n
+0000134369 00000 n
+0000134548 00000 n
+0000134716 00000 n
+0000134896 00000 n
+0000135074 00000 n
+0000135253 00000 n
+0000135432 00000 n
+0000135610 00000 n
+0000135790 00000 n
+0000135967 00000 n
+0000136147 00000 n
+0000136315 00000 n
+0000136493 00000 n
+0000136666 00000 n
+0000136834 00000 n
+0000137003 00000 n
+0000137172 00000 n
+0000137344 00000 n
+0000137516 00000 n
+0000137689 00000 n
+0000137869 00000 n
+0000138037 00000 n
+0000138205 00000 n
+0000138383 00000 n
+0000138555 00000 n
+0000138735 00000 n
+0000138907 00000 n
+0000139075 00000 n
+0000139243 00000 n
+0000139422 00000 n
+0000139595 00000 n
+0000139763 00000 n
+0000139943 00000 n
+0000140111 00000 n
+0000140289 00000 n
+0000140457 00000 n
+0000140629 00000 n
+0000140802 00000 n
+0000140970 00000 n
+0000141143 00000 n
+0000141321 00000 n
+0000141499 00000 n
+0000141677 00000 n
+0000141856 00000 n
+0000142046 00000 n
+0000142224 00000 n
+0000142403 00000 n
+0000142583 00000 n
+0000142763 00000 n
+0000142953 00000 n
+0000143131 00000 n
+0000143311 00000 n
+0000143491 00000 n
+0000143669 00000 n
+0000143844 00000 n
+0000144024 00000 n
+0000144204 00000 n
+0000144382 00000 n
+0000144562 00000 n
+0000144742 00000 n
+0000144920 00000 n
+0000145098 00000 n
+0000145278 00000 n
+0000145456 00000 n
+0000145635 00000 n
+0000145815 00000 n
+0000145994 00000 n
+0000146173 00000 n
+0000146351 00000 n
+0000146533 00000 n
+0000146711 00000 n
+0000146890 00000 n
+0000147068 00000 n
+0000147247 00000 n
+0000147426 00000 n
+0000147604 00000 n
+0000147782 00000 n
+0000147962 00000 n
+0000148140 00000 n
+0000148318 00000 n
+0000148497 00000 n
+0000148680 00000 n
+0000148860 00000 n
+0000149038 00000 n
+0000149216 00000 n
+0000149395 00000 n
+0000149578 00000 n
+0000149756 00000 n
+0000149935 00000 n
+0000150118 00000 n
+0000150299 00000 n
+0000150479 00000 n
+0000150657 00000 n
+0000150839 00000 n
+0000151017 00000 n
+0000151216 00000 n
+0000151395 00000 n
+0000151575 00000 n
+0000151756 00000 n
+0000151935 00000 n
+0000152114 00000 n
+0000152314 00000 n
+0000152488 00000 n
+0000152684 00000 n
+0000152865 00000 n
+0000153056 00000 n
+0000153235 00000 n
+0000153415 00000 n
+0000153607 00000 n
+0000153787 00000 n
+0000153963 00000 n
+0000154150 00000 n
+0000154330 00000 n
+0000154510 00000 n
+0000154689 00000 n
+0000154866 00000 n
+0000155047 00000 n
+0000155227 00000 n
+0000155406 00000 n
+0000155585 00000 n
+0000155754 00000 n
+0000155927 00000 n
+0000156100 00000 n
+0000156273 00000 n
+0000156446 00000 n
+0000156620 00000 n
+0000156793 00000 n
+0000156962 00000 n
+0000157135 00000 n
+0000157308 00000 n
+0000157481 00000 n
+0000157654 00000 n
+0000157828 00000 n
+0000158001 00000 n
+0000158170 00000 n
+0000158343 00000 n
+0000158516 00000 n
+0000158690 00000 n
+0000158859 00000 n
+0000159032 00000 n
+0000159205 00000 n
+0000159374 00000 n
+0000159547 00000 n
+0000159721 00000 n
+0000159890 00000 n
+0000160063 00000 n
+0000160237 00000 n
+0000160416 00000 n
+0000160595 00000 n
+0000160768 00000 n
+0000160937 00000 n
+0000161116 00000 n
+0000161285 00000 n
+0000161459 00000 n
+0000161632 00000 n
+0000161806 00000 n
+0000161979 00000 n
+0000162148 00000 n
+0000162322 00000 n
+0000162491 00000 n
+0000162660 00000 n
+0000162833 00000 n
+0000163007 00000 n
+0000163176 00000 n
+0000163349 00000 n
+0000163518 00000 n
+0000163687 00000 n
+0000163856 00000 n
+0000164025 00000 n
+0000164198 00000 n
+0000164371 00000 n
+0000164545 00000 n
+0000164718 00000 n
+0000164892 00000 n
+0000165065 00000 n
+0000165238 00000 n
+0000165411 00000 n
+0000165584 00000 n
+0000165757 00000 n
+0000165931 00000 n
+0000166104 00000 n
+0000166277 00000 n
+0000166451 00000 n
+0000166624 00000 n
+0000166797 00000 n
+0000166970 00000 n
+0000167149 00000 n
+0000167322 00000 n
+0000167501 00000 n
+0000167680 00000 n
+0000167854 00000 n
+0000168033 00000 n
+0000168207 00000 n
+0000168386 00000 n
+0000168559 00000 n
+0000168738 00000 n
+0000168912 00000 n
+0000169093 00000 n
+0000169267 00000 n
+0000169440 00000 n
+0000169610 00000 n
+0000169780 00000 n
+0000169954 00000 n
+0000170127 00000 n
+0000170300 00000 n
+0000170473 00000 n
+0000170646 00000 n
+0000170819 00000 n
+0000170989 00000 n
+0000171162 00000 n
+0000171332 00000 n
+0000171501 00000 n
+0000171680 00000 n
+0000171859 00000 n
+0000172028 00000 n
+0000172197 00000 n
+0000172378 00000 n
+0000172557 00000 n
+0000172736 00000 n
+0000172915 00000 n
+0000173094 00000 n
+0000173263 00000 n
+0000173432 00000 n
+0000173601 00000 n
+0000173770 00000 n
+0000173950 00000 n
+0000174129 00000 n
+0000174308 00000 n
+0000174477 00000 n
+0000174646 00000 n
+0000174819 00000 n
+0000174992 00000 n
+0000175171 00000 n
+0000175340 00000 n
+0000175509 00000 n
+0000175688 00000 n
+0000175867 00000 n
+0000176046 00000 n
+0000176225 00000 n
+0000176404 00000 n
+0000176573 00000 n
+0000176752 00000 n
+0000176931 00000 n
+0000177110 00000 n
+0000177289 00000 n
+0000177469 00000 n
+0000177659 00000 n
+0000177838 00000 n
+0000178017 00000 n
+0000178196 00000 n
+0000178375 00000 n
+0000178554 00000 n
+0000178744 00000 n
+0000178913 00000 n
+0000179093 00000 n
+0000179272 00000 n
+0000179451 00000 n
+0000179630 00000 n
+0000179810 00000 n
+0000179990 00000 n
+0000180166 00000 n
+0000180346 00000 n
+0000180525 00000 n
+0000180701 00000 n
+0000180880 00000 n
+0000181060 00000 n
+0000181239 00000 n
+0000181419 00000 n
+0000181592 00000 n
+0000181772 00000 n
+0000181945 00000 n
+0000182118 00000 n
+0000182291 00000 n
+0000182465 00000 n
+0000182634 00000 n
+0000182807 00000 n
+0000182980 00000 n
+0000183149 00000 n
+0000183322 00000 n
+0000183491 00000 n
+0000183670 00000 n
+0000183839 00000 n
+0000184020 00000 n
+0000184196 00000 n
+0000184376 00000 n
+0000184556 00000 n
+0000184729 00000 n
+0000184902 00000 n
+0000185075 00000 n
+0000185249 00000 n
+0000185418 00000 n
+0000185602 00000 n
+0000185781 00000 n
+0000185962 00000 n
+0000186142 00000 n
+0000186318 00000 n
+0000186491 00000 n
+0000186664 00000 n
+0000186837 00000 n
+0000187006 00000 n
+0000187175 00000 n
+0000187349 00000 n
+0000187522 00000 n
+0000187706 00000 n
+0000187879 00000 n
+0000188059 00000 n
+0000188239 00000 n
+0000188415 00000 n
+0000188594 00000 n
+0000188775 00000 n
+0000188956 00000 n
+0000189130 00000 n
+0000189304 00000 n
+0000189477 00000 n
+0000189650 00000 n
+0000189823 00000 n
+0000189996 00000 n
+0000190169 00000 n
+0000190350 00000 n
+0000190523 00000 n
+0000190704 00000 n
+0000190884 00000 n
+0000191057 00000 n
+0000191236 00000 n
+0000191409 00000 n
+0000191583 00000 n
+0000191756 00000 n
+0000191929 00000 n
+0000192102 00000 n
+0000192275 00000 n
+0000192448 00000 n
+0000192621 00000 n
+0000192802 00000 n
+0000192978 00000 n
+0000193159 00000 n
+0000193339 00000 n
+0000193519 00000 n
+0000193700 00000 n
+0000193869 00000 n
+0000194043 00000 n
+0000194212 00000 n
+0000194381 00000 n
+0000194554 00000 n
+0000194728 00000 n
+0000194897 00000 n
+0000195070 00000 n
+0000195251 00000 n
+0000195424 00000 n
+0000195604 00000 n
+0000195785 00000 n
+0000195965 00000 n
+0000196138 00000 n
+0000196311 00000 n
+0000196480 00000 n
+0000196653 00000 n
+0000196830 00000 n
+0000196999 00000 n
+0000197174 00000 n
+0000197347 00000 n
+0000197526 00000 n
+0000197707 00000 n
+0000197883 00000 n
+0000198064 00000 n
+0000198244 00000 n
+0000198418 00000 n
+0000198591 00000 n
+0000198764 00000 n
+0000198937 00000 n
+0000199110 00000 n
+0000199283 00000 n
+0000199453 00000 n
+0000199634 00000 n
+0000199814 00000 n
+0000199994 00000 n
+0000200175 00000 n
+0000200348 00000 n
+0000203245 00000 n
+0000205918 00000 n
+0000205984 00000 n
+0000206050 00000 n
+0000206116 00000 n
+0000206182 00000 n
+0000206248 00000 n
+0000206314 00000 n
+0000206380 00000 n
+0000206446 00000 n
+0000206512 00000 n
+0000206578 00000 n
+0000206641 00000 n
+0000206707 00000 n
+0000206773 00000 n
+0000206839 00000 n
+0000206905 00000 n
+0000206971 00000 n
+0000207037 00000 n
+0000207103 00000 n
+0000207169 00000 n
+0000207235 00000 n
+0000207298 00000 n
+0000207364 00000 n
+0000207430 00000 n
+0000207496 00000 n
+0000207562 00000 n
+0000207628 00000 n
+0000207694 00000 n
+0000207760 00000 n
+0000207826 00000 n
+0000207892 00000 n
+0000207958 00000 n
+0000208017 00000 n
+0000208083 00000 n
+0000215082 00000 n
+0000215265 00000 n
+0000215470 00000 n
+0000215536 00000 n
+0000215602 00000 n
+0000215775 00000 n
+0000215948 00000 n
+0000216121 00000 n
+0000216294 00000 n
+0000216467 00000 n
+0000216643 00000 n
+0000216816 00000 n
+0000216989 00000 n
+0000217162 00000 n
+0000217338 00000 n
+0000217511 00000 n
+0000217687 00000 n
+0000217860 00000 n
+0000218033 00000 n
+0000218209 00000 n
+0000218385 00000 n
+0000218561 00000 n
+0000218737 00000 n
+0000218913 00000 n
+0000219089 00000 n
+0000219265 00000 n
+0000219441 00000 n
+0000219617 00000 n
+0000219793 00000 n
+0000219972 00000 n
+0000220148 00000 n
+0000220324 00000 n
+0000220500 00000 n
+0000220676 00000 n
+0000220852 00000 n
+0000221028 00000 n
+0000221204 00000 n
+0000221380 00000 n
+0000221556 00000 n
+0000221732 00000 n
+0000221908 00000 n
+0000222084 00000 n
+0000222260 00000 n
+0000222436 00000 n
+0000222612 00000 n
+0000222785 00000 n
+0000222961 00000 n
+0000223137 00000 n
+0000223313 00000 n
+0000223489 00000 n
+0000223665 00000 n
+0000223841 00000 n
+0000224017 00000 n
+0000224193 00000 n
+0000224369 00000 n
+0000224545 00000 n
+0000224721 00000 n
+0000224897 00000 n
+0000225073 00000 n
+0000225249 00000 n
+0000225425 00000 n
+0000225601 00000 n
+0000225777 00000 n
+0000225953 00000 n
+0000226129 00000 n
+0000226305 00000 n
+0000226481 00000 n
+0000226660 00000 n
+0000226836 00000 n
+0000227012 00000 n
+0000227191 00000 n
+0000227367 00000 n
+0000227543 00000 n
+0000227719 00000 n
+0000227895 00000 n
+0000228071 00000 n
+0000228250 00000 n
+0000228426 00000 n
+0000228602 00000 n
+0000228778 00000 n
+0000228954 00000 n
+0000229130 00000 n
+0000229306 00000 n
+0000229482 00000 n
+0000229658 00000 n
+0000229834 00000 n
+0000230010 00000 n
+0000230186 00000 n
+0000230362 00000 n
+0000230538 00000 n
+0000230714 00000 n
+0000230890 00000 n
+0000231066 00000 n
+0000231242 00000 n
+0000231418 00000 n
+0000231594 00000 n
+0000231770 00000 n
+0000231946 00000 n
+0000232122 00000 n
+0000232298 00000 n
+0000232474 00000 n
+0000232653 00000 n
+0000232829 00000 n
+0000233005 00000 n
+0000233181 00000 n
+0000233357 00000 n
+0000233533 00000 n
+0000233709 00000 n
+0000233885 00000 n
+0000234064 00000 n
+0000234240 00000 n
+0000234416 00000 n
+0000234592 00000 n
+0000234768 00000 n
+0000234944 00000 n
+0000235120 00000 n
+0000235296 00000 n
+0000235472 00000 n
+0000235648 00000 n
+0000235824 00000 n
+0000236000 00000 n
+0000236176 00000 n
+0000236352 00000 n
+0000236528 00000 n
+0000236704 00000 n
+0000236880 00000 n
+0000237056 00000 n
+0000237232 00000 n
+0000237408 00000 n
+0000237584 00000 n
+0000237760 00000 n
+0000237936 00000 n
+0000238112 00000 n
+0000238288 00000 n
+0000238464 00000 n
+0000238640 00000 n
+0000238816 00000 n
+0000238992 00000 n
+0000239168 00000 n
+0000239344 00000 n
+0000239520 00000 n
+0000239696 00000 n
+0000239872 00000 n
+0000240048 00000 n
+0000240224 00000 n
+0000240400 00000 n
+0000240576 00000 n
+0000240752 00000 n
+0000240928 00000 n
+0000241104 00000 n
+0000241283 00000 n
+0000241459 00000 n
+0000241635 00000 n
+0000241811 00000 n
+0000241987 00000 n
+0000242163 00000 n
+0000242339 00000 n
+0000242515 00000 n
+0000242691 00000 n
+0000242867 00000 n
+0000243043 00000 n
+0000243219 00000 n
+0000243392 00000 n
+0000243568 00000 n
+0000243744 00000 n
+0000243920 00000 n
+0000244096 00000 n
+0000244272 00000 n
+0000244448 00000 n
+0000244624 00000 n
+0000244800 00000 n
+0000244976 00000 n
+0000245152 00000 n
+0000245328 00000 n
+0000245504 00000 n
+0000245680 00000 n
+0000245856 00000 n
+0000246032 00000 n
+0000246208 00000 n
+0000246384 00000 n
+0000246560 00000 n
+0000246736 00000 n
+0000246912 00000 n
+0000247088 00000 n
+0000247264 00000 n
+0000247440 00000 n
+0000247616 00000 n
+0000247792 00000 n
+0000247968 00000 n
+0000248147 00000 n
+0000248323 00000 n
+0000248499 00000 n
+0000248675 00000 n
+0000248851 00000 n
+0000249027 00000 n
+0000249203 00000 n
+0000249379 00000 n
+0000249555 00000 n
+0000249731 00000 n
+0000249907 00000 n
+0000250083 00000 n
+0000250259 00000 n
+0000250435 00000 n
+0000250611 00000 n
+0000250787 00000 n
+0000250963 00000 n
+0000251139 00000 n
+0000251315 00000 n
+0000251491 00000 n
+0000251667 00000 n
+0000251843 00000 n
+0000252019 00000 n
+0000252195 00000 n
+0000252371 00000 n
+0000252547 00000 n
+0000252723 00000 n
+0000252899 00000 n
+0000253075 00000 n
+0000253251 00000 n
+0000253427 00000 n
+0000253603 00000 n
+0000253779 00000 n
+0000253955 00000 n
+0000254131 00000 n
+0000254307 00000 n
+0000254483 00000 n
+0000254662 00000 n
+0000254838 00000 n
+0000255014 00000 n
+0000255190 00000 n
+0000255366 00000 n
+0000255542 00000 n
+0000255718 00000 n
+0000255897 00000 n
+0000256073 00000 n
+0000256249 00000 n
+0000256425 00000 n
+0000256601 00000 n
+0000256777 00000 n
+0000256953 00000 n
+0000257129 00000 n
+0000257305 00000 n
+0000257481 00000 n
+0000257657 00000 n
+0000257833 00000 n
+0000258009 00000 n
+0000258185 00000 n
+0000258361 00000 n
+0000258537 00000 n
+0000258713 00000 n
+0000258889 00000 n
+0000259065 00000 n
+0000259241 00000 n
+0000259417 00000 n
+0000259593 00000 n
+0000259769 00000 n
+0000259945 00000 n
+0000260121 00000 n
+0000260297 00000 n
+0000260473 00000 n
+0000260649 00000 n
+0000260825 00000 n
+0000261001 00000 n
+0000261177 00000 n
+0000261353 00000 n
+0000261529 00000 n
+0000261705 00000 n
+0000261881 00000 n
+0000262057 00000 n
+0000262230 00000 n
+0000262406 00000 n
+0000262582 00000 n
+0000262758 00000 n
+0000262934 00000 n
+0000263110 00000 n
+0000263286 00000 n
+0000263462 00000 n
+0000263638 00000 n
+0000263814 00000 n
+0000263990 00000 n
+0000264166 00000 n
+0000264342 00000 n
+0000264518 00000 n
+0000264694 00000 n
+0000264873 00000 n
+0000265049 00000 n
+0000265225 00000 n
+0000265401 00000 n
+0000265577 00000 n
+0000265753 00000 n
+0000265929 00000 n
+0000266102 00000 n
+0000266275 00000 n
+0000266451 00000 n
+0000266627 00000 n
+0000266803 00000 n
+0000266979 00000 n
+0000267155 00000 n
+0000267331 00000 n
+0000267507 00000 n
+0000267683 00000 n
+0000267859 00000 n
+0000268035 00000 n
+0000268211 00000 n
+0000268387 00000 n
+0000268563 00000 n
+0000268736 00000 n
+0000268912 00000 n
+0000269088 00000 n
+0000269264 00000 n
+0000269440 00000 n
+0000269616 00000 n
+0000269792 00000 n
+0000269968 00000 n
+0000270144 00000 n
+0000270320 00000 n
+0000270496 00000 n
+0000270672 00000 n
+0000270848 00000 n
+0000271024 00000 n
+0000271200 00000 n
+0000271376 00000 n
+0000271552 00000 n
+0000271728 00000 n
+0000271901 00000 n
+0000272074 00000 n
+0000272247 00000 n
+0000272420 00000 n
+0000272593 00000 n
+0000272766 00000 n
+0000272939 00000 n
+0000273112 00000 n
+0000273285 00000 n
+0000273458 00000 n
+0000273631 00000 n
+0000273807 00000 n
+0000273980 00000 n
+0000274156 00000 n
+0000274332 00000 n
+0000274505 00000 n
+0000274681 00000 n
+0000274857 00000 n
+0000275033 00000 n
+0000275212 00000 n
+0000275388 00000 n
+0000275567 00000 n
+0000275746 00000 n
+0000275919 00000 n
+0000276092 00000 n
+0000276265 00000 n
+0000276444 00000 n
+0000276617 00000 n
+0000276796 00000 n
+0000276972 00000 n
+0000277151 00000 n
+0000277327 00000 n
+0000277506 00000 n
+0000277679 00000 n
+0000277855 00000 n
+0000278031 00000 n
+0000278207 00000 n
+0000278383 00000 n
+0000278562 00000 n
+0000278741 00000 n
+0000278917 00000 n
+0000279090 00000 n
+0000279267 00000 n
+0000279443 00000 n
+0000279619 00000 n
+0000279795 00000 n
+0000279968 00000 n
+0000280141 00000 n
+0000280320 00000 n
+0000280496 00000 n
+0000280672 00000 n
+0000280845 00000 n
+0000281021 00000 n
+0000281194 00000 n
+0000281370 00000 n
+0000281546 00000 n
+0000281722 00000 n
+0000281895 00000 n
+0000282071 00000 n
+0000282244 00000 n
+0000282420 00000 n
+0000282593 00000 n
+0000282766 00000 n
+0000282939 00000 n
+0000283112 00000 n
+0000283285 00000 n
+0000283458 00000 n
+0000283631 00000 n
+0000283804 00000 n
+0000283977 00000 n
+0000284150 00000 n
+0000284323 00000 n
+0000284499 00000 n
+0000284675 00000 n
+0000284851 00000 n
+0000285027 00000 n
+0000285203 00000 n
+0000285379 00000 n
+0000285555 00000 n
+0000285731 00000 n
+0000285907 00000 n
+0000286083 00000 n
+0000286259 00000 n
+0000286435 00000 n
+0000286608 00000 n
+0000286781 00000 n
+0000286954 00000 n
+0000289901 00000 n
+0000290077 00000 n
+0000290253 00000 n
+0000290426 00000 n
+0000290605 00000 n
+0000290784 00000 n
+0000290961 00000 n
+0000291137 00000 n
+0000291316 00000 n
+0000291492 00000 n
+0000291665 00000 n
+0000291841 00000 n
+0000292020 00000 n
+0000292196 00000 n
+0000292372 00000 n
+0000292548 00000 n
+0000292724 00000 n
+0000292900 00000 n
+0000293076 00000 n
+0000293252 00000 n
+0000293425 00000 n
+0000293604 00000 n
+0000293783 00000 n
+0000293962 00000 n
+0000294141 00000 n
+0000294317 00000 n
+0000294493 00000 n
+0000294669 00000 n
+0000294842 00000 n
+0000295018 00000 n
+0000295191 00000 n
+0000295367 00000 n
+0000295543 00000 n
+0000295719 00000 n
+0000295895 00000 n
+0000296071 00000 n
+0000296244 00000 n
+0000296417 00000 n
+0000296593 00000 n
+0000296766 00000 n
+0000296942 00000 n
+0000297115 00000 n
+0000297294 00000 n
+0000297467 00000 n
+0000297646 00000 n
+0000297825 00000 n
+0000297998 00000 n
+0000298171 00000 n
+0000298344 00000 n
+0000298523 00000 n
+0000298702 00000 n
+0000298875 00000 n
+0000299048 00000 n
+0000299221 00000 n
+0000299394 00000 n
+0000299567 00000 n
+0000299740 00000 n
+0000299916 00000 n
+0000300089 00000 n
+0000300262 00000 n
+0000300435 00000 n
+0000300611 00000 n
+0000300784 00000 n
+0000300957 00000 n
+0000301130 00000 n
+0000301303 00000 n
+0000301476 00000 n
+0000301652 00000 n
+0000301828 00000 n
+0000302007 00000 n
+0000302183 00000 n
+0000302359 00000 n
+0000302538 00000 n
+0000302714 00000 n
+0000302890 00000 n
+0000303066 00000 n
+0000303242 00000 n
+0000303418 00000 n
+0000303594 00000 n
+0000303770 00000 n
+0000303946 00000 n
+0000304122 00000 n
+0000304298 00000 n
+0000304474 00000 n
+0000304650 00000 n
+0000304826 00000 n
+0000305005 00000 n
+0000305181 00000 n
+0000305357 00000 n
+0000305533 00000 n
+0000305712 00000 n
+0000305888 00000 n
+0000306064 00000 n
+0000306240 00000 n
+0000306416 00000 n
+0000306595 00000 n
+0000306771 00000 n
+0000306947 00000 n
+0000307123 00000 n
+0000307299 00000 n
+0000307475 00000 n
+0000307651 00000 n
+0000307827 00000 n
+0000308006 00000 n
+0000308182 00000 n
+0000308358 00000 n
+0000308534 00000 n
+0000308713 00000 n
+0000308892 00000 n
+0000309068 00000 n
+0000309244 00000 n
+0000309420 00000 n
+0000309596 00000 n
+0000309772 00000 n
+0000309948 00000 n
+0000310127 00000 n
+0000310303 00000 n
+0000310479 00000 n
+0000310655 00000 n
+0000310831 00000 n
+0000311007 00000 n
+0000311183 00000 n
+0000311359 00000 n
+0000311535 00000 n
+0000311711 00000 n
+0000311890 00000 n
+0000312066 00000 n
+0000312242 00000 n
+0000312421 00000 n
+0000312600 00000 n
+0000312776 00000 n
+0000312952 00000 n
+0000313128 00000 n
+0000313304 00000 n
+0000313480 00000 n
+0000313656 00000 n
+0000313832 00000 n
+0000314008 00000 n
+0000314187 00000 n
+0000314363 00000 n
+0000314539 00000 n
+0000314715 00000 n
+0000314891 00000 n
+0000315070 00000 n
+0000315246 00000 n
+0000315422 00000 n
+0000315598 00000 n
+0000315777 00000 n
+0000315953 00000 n
+0000316129 00000 n
+0000316305 00000 n
+0000316481 00000 n
+0000316657 00000 n
+0000316833 00000 n
+0000317009 00000 n
+0000317185 00000 n
+0000317361 00000 n
+0000317537 00000 n
+0000317713 00000 n
+0000317889 00000 n
+0000318065 00000 n
+0000318241 00000 n
+0000318417 00000 n
+0000318593 00000 n
+0000318772 00000 n
+0000318948 00000 n
+0000319124 00000 n
+0000319300 00000 n
+0000319479 00000 n
+0000319655 00000 n
+0000319834 00000 n
+0000320010 00000 n
+0000320186 00000 n
+0000320362 00000 n
+0000320538 00000 n
+0000320714 00000 n
+0000320893 00000 n
+0000321069 00000 n
+0000321245 00000 n
+0000321421 00000 n
+0000321597 00000 n
+0000321773 00000 n
+0000321949 00000 n
+0000322125 00000 n
+0000322301 00000 n
+0000322477 00000 n
+0000322653 00000 n
+0000322832 00000 n
+0000323008 00000 n
+0000323184 00000 n
+0000323360 00000 n
+0000323536 00000 n
+0000323712 00000 n
+0000323888 00000 n
+0000324064 00000 n
+0000324243 00000 n
+0000324419 00000 n
+0000324595 00000 n
+0000324771 00000 n
+0000324947 00000 n
+0000325123 00000 n
+0000325302 00000 n
+0000325478 00000 n
+0000325654 00000 n
+0000325830 00000 n
+0000326006 00000 n
+0000326182 00000 n
+0000326358 00000 n
+0000326534 00000 n
+0000326710 00000 n
+0000326886 00000 n
+0000327065 00000 n
+0000327241 00000 n
+0000327420 00000 n
+0000327599 00000 n
+0000327775 00000 n
+0000327951 00000 n
+0000328127 00000 n
+0000328306 00000 n
+0000328482 00000 n
+0000328658 00000 n
+0000328834 00000 n
+0000329010 00000 n
+0000329186 00000 n
+0000329362 00000 n
+0000329538 00000 n
+0000329714 00000 n
+0000329893 00000 n
+0000330069 00000 n
+0000330245 00000 n
+0000330421 00000 n
+0000330597 00000 n
+0000330773 00000 n
+0000330949 00000 n
+0000331125 00000 n
+0000331301 00000 n
+0000331480 00000 n
+0000331659 00000 n
+0000331835 00000 n
+0000332011 00000 n
+0000332187 00000 n
+0000332363 00000 n
+0000332539 00000 n
+0000332715 00000 n
+0000332891 00000 n
+0000333067 00000 n
+0000333243 00000 n
+0000333419 00000 n
+0000333595 00000 n
+0000333771 00000 n
+0000333947 00000 n
+0000334123 00000 n
+0000334302 00000 n
+0000334478 00000 n
+0000334654 00000 n
+0000334830 00000 n
+0000335006 00000 n
+0000335185 00000 n
+0000335364 00000 n
+0000335540 00000 n
+0000335716 00000 n
+0000335892 00000 n
+0000336068 00000 n
+0000336244 00000 n
+0000336420 00000 n
+0000336596 00000 n
+0000336772 00000 n
+0000336948 00000 n
+0000337124 00000 n
+0000337298 00000 n
+0000337474 00000 n
+0000337650 00000 n
+0000337826 00000 n
+0000338002 00000 n
+0000338178 00000 n
+0000338354 00000 n
+0000338530 00000 n
+0000338709 00000 n
+0000338888 00000 n
+0000339064 00000 n
+0000339240 00000 n
+0000339419 00000 n
+0000339598 00000 n
+0000339771 00000 n
+0000339944 00000 n
+0000340120 00000 n
+0000340293 00000 n
+0000340466 00000 n
+0000340642 00000 n
+0000340818 00000 n
+0000340991 00000 n
+0000341164 00000 n
+0000341337 00000 n
+0000341510 00000 n
+0000341683 00000 n
+0000341856 00000 n
+0000342029 00000 n
+0000342202 00000 n
+0000342375 00000 n
+0000342551 00000 n
+0000342724 00000 n
+0000342897 00000 n
+0000343070 00000 n
+0000343246 00000 n
+0000343419 00000 n
+0000343592 00000 n
+0000343765 00000 n
+0000343944 00000 n
+0000344120 00000 n
+0000344293 00000 n
+0000344466 00000 n
+0000344639 00000 n
+0000344812 00000 n
+0000344985 00000 n
+0000345158 00000 n
+0000345331 00000 n
+0000345504 00000 n
+0000345677 00000 n
+0000345850 00000 n
+0000346023 00000 n
+0000346196 00000 n
+0000346369 00000 n
+0000346542 00000 n
+0000346715 00000 n
+0000346894 00000 n
+0000347073 00000 n
+0000347246 00000 n
+0000347422 00000 n
+0000347595 00000 n
+0000347768 00000 n
+0000347941 00000 n
+0000348120 00000 n
+0000348299 00000 n
+0000348472 00000 n
+0000348645 00000 n
+0000348821 00000 n
+0000348997 00000 n
+0000349173 00000 n
+0000349346 00000 n
+0000349519 00000 n
+0000349692 00000 n
+0000349865 00000 n
+0000350038 00000 n
+0000350214 00000 n
+0000350390 00000 n
+0000350566 00000 n
+0000350739 00000 n
+0000350912 00000 n
+0000351085 00000 n
+0000351258 00000 n
+0000351431 00000 n
+0000351604 00000 n
+0000351777 00000 n
+0000351950 00000 n
+0000352123 00000 n
+0000352296 00000 n
+0000352469 00000 n
+0000352645 00000 n
+0000352818 00000 n
+0000352994 00000 n
+0000353170 00000 n
+0000353343 00000 n
+0000353519 00000 n
+0000353692 00000 n
+0000353865 00000 n
+0000354038 00000 n
+0000354214 00000 n
+0000354390 00000 n
+0000354566 00000 n
+0000354745 00000 n
+0000354918 00000 n
+0000355091 00000 n
+0000355267 00000 n
+0000355440 00000 n
+0000355613 00000 n
+0000355786 00000 n
+0000355962 00000 n
+0000356141 00000 n
+0000356320 00000 n
+0000356499 00000 n
+0000356675 00000 n
+0000356848 00000 n
+0000357021 00000 n
+0000357194 00000 n
+0000357373 00000 n
+0000357546 00000 n
+0000357725 00000 n
+0000357901 00000 n
+0000358077 00000 n
+0000358253 00000 n
+0000358429 00000 n
+0000358605 00000 n
+0000358781 00000 n
+0000358957 00000 n
+0000359133 00000 n
+0000359309 00000 n
+0000359485 00000 n
+0000359661 00000 n
+0000359837 00000 n
+0000360016 00000 n
+0000360195 00000 n
+0000360371 00000 n
+0000360547 00000 n
+0000360723 00000 n
+0000360899 00000 n
+0000361075 00000 n
+0000361251 00000 n
+0000361427 00000 n
+0000361603 00000 n
+0000361779 00000 n
+0000361955 00000 n
+0000362131 00000 n
+0000362307 00000 n
+0000362483 00000 n
+0000362659 00000 n
+0000362835 00000 n
+0000363011 00000 n
+0000363187 00000 n
+0000363363 00000 n
+0000363542 00000 n
+0000363718 00000 n
+0000363897 00000 n
+0000364073 00000 n
+0000364249 00000 n
+0000364425 00000 n
+0000364604 00000 n
+0000364783 00000 n
+0000364959 00000 n
+0000365135 00000 n
+0000365311 00000 n
+0000365490 00000 n
+0000365666 00000 n
+0000365842 00000 n
+0000366018 00000 n
+0000366194 00000 n
+0000366370 00000 n
+0000366546 00000 n
+0000366722 00000 n
+0000366898 00000 n
+0000367074 00000 n
+0000367250 00000 n
+0000367426 00000 n
+0000367602 00000 n
+0000367778 00000 n
+0000367954 00000 n
+0000368130 00000 n
+0000368306 00000 n
+0000368482 00000 n
+0000368658 00000 n
+0000368834 00000 n
+0000369010 00000 n
+0000369186 00000 n
+0000369362 00000 n
+0000369538 00000 n
+0000369717 00000 n
+0000369893 00000 n
+0000370072 00000 n
+0000370245 00000 n
+0000370421 00000 n
+0000370597 00000 n
+0000370773 00000 n
+0000370949 00000 n
+0000371125 00000 n
+0000371298 00000 n
+0000371474 00000 n
+0000371650 00000 n
+0000371826 00000 n
+0000372002 00000 n
+0000372178 00000 n
+0000372354 00000 n
+0000372530 00000 n
+0000372706 00000 n
+0000372882 00000 n
+0000373058 00000 n
+0000373234 00000 n
+0000373413 00000 n
+0000373589 00000 n
+0000373768 00000 n
+0000373944 00000 n
+0000374120 00000 n
+0000374296 00000 n
+0000374472 00000 n
+0000374648 00000 n
+0000374824 00000 n
+0000375000 00000 n
+0000375176 00000 n
+0000375352 00000 n
+0000375528 00000 n
+0000375704 00000 n
+0000375880 00000 n
+0000376056 00000 n
+0000376232 00000 n
+0000376408 00000 n
+0000376584 00000 n
+0000376760 00000 n
+0000376936 00000 n
+0000377112 00000 n
+0000377288 00000 n
+0000377464 00000 n
+0000377640 00000 n
+0000377816 00000 n
+0000377992 00000 n
+0000378168 00000 n
+0000378344 00000 n
+0000378520 00000 n
+0000378696 00000 n
+0000378872 00000 n
+0000379048 00000 n
+0000379224 00000 n
+0000379400 00000 n
+0000379573 00000 n
+0000379746 00000 n
+0000379922 00000 n
+0000380098 00000 n
+0000380274 00000 n
+0000380450 00000 n
+0000380626 00000 n
+0000380802 00000 n
+0000380978 00000 n
+0000381157 00000 n
+0000381336 00000 n
+0000381512 00000 n
+0000381688 00000 n
+0000381864 00000 n
+0000382040 00000 n
+0000382216 00000 n
+0000382392 00000 n
+0000382568 00000 n
+0000382744 00000 n
+0000382920 00000 n
+0000383096 00000 n
+0000383269 00000 n
+0000383442 00000 n
+0000383618 00000 n
+0000383791 00000 n
+0000383967 00000 n
+0000384143 00000 n
+0000384319 00000 n
+0000384495 00000 n
+0000384671 00000 n
+0000384847 00000 n
+0000385023 00000 n
+0000385199 00000 n
+0000385375 00000 n
+0000385551 00000 n
+0000385727 00000 n
+0000385903 00000 n
+0000386079 00000 n
+0000386255 00000 n
+0000386431 00000 n
+0000386607 00000 n
+0000386786 00000 n
+0000386962 00000 n
+0000387138 00000 n
+0000387314 00000 n
+0000387490 00000 n
+0000387669 00000 n
+0000387845 00000 n
+0000388024 00000 n
+0000388200 00000 n
+0000388379 00000 n
+0000388555 00000 n
+0000388731 00000 n
+0000388907 00000 n
+0000389083 00000 n
+0000389259 00000 n
+0000389435 00000 n
+0000389611 00000 n
+0000389787 00000 n
+0000389963 00000 n
+0000390139 00000 n
+0000390315 00000 n
+0000390491 00000 n
+0000390667 00000 n
+0000390843 00000 n
+0000391019 00000 n
+0000391195 00000 n
+0000391374 00000 n
+0000391550 00000 n
+0000391723 00000 n
+0000391899 00000 n
+0000392075 00000 n
+0000392251 00000 n
+0000392427 00000 n
+0000392603 00000 n
+0000392779 00000 n
+0000392955 00000 n
+0000393131 00000 n
+0000393307 00000 n
+0000393483 00000 n
+0000393659 00000 n
+0000393835 00000 n
+0000394014 00000 n
+0000394190 00000 n
+0000394366 00000 n
+0000394542 00000 n
+0000394718 00000 n
+0000394894 00000 n
+0000395070 00000 n
+0000395246 00000 n
+0000395422 00000 n
+0000395598 00000 n
+0000395774 00000 n
+0000395950 00000 n
+0000396126 00000 n
+0000396302 00000 n
+0000396478 00000 n
+0000396654 00000 n
+0000396830 00000 n
+0000397006 00000 n
+0000397182 00000 n
+0000397358 00000 n
+0000397534 00000 n
+0000397710 00000 n
+0000397886 00000 n
+0000398062 00000 n
+0000398238 00000 n
+0000398414 00000 n
+0000398590 00000 n
+0000398766 00000 n
+0000398942 00000 n
+0000399118 00000 n
+0000399291 00000 n
+0000399467 00000 n
+0000399643 00000 n
+0000399819 00000 n
+0000399995 00000 n
+0000400171 00000 n
+0000400347 00000 n
+0000400523 00000 n
+0000400699 00000 n
+0000400875 00000 n
+0000401051 00000 n
+0000401227 00000 n
+0000401403 00000 n
+0000401579 00000 n
+0000401755 00000 n
+0000401931 00000 n
+0000402107 00000 n
+0000402286 00000 n
+0000402465 00000 n
+0000402641 00000 n
+0000402820 00000 n
+0000402993 00000 n
+0000403166 00000 n
+0000403345 00000 n
+0000403521 00000 n
+0000403694 00000 n
+0000403867 00000 n
+0000404040 00000 n
+0000404216 00000 n
+0000404392 00000 n
+0000404568 00000 n
+0000404744 00000 n
+0000404920 00000 n
+0000405096 00000 n
+0000405269 00000 n
+0000405442 00000 n
+0000405615 00000 n
+0000405788 00000 n
+0000405961 00000 n
+0000406134 00000 n
+0000406307 00000 n
+0000406480 00000 n
+0000406653 00000 n
+0000406826 00000 n
+0000406999 00000 n
+0000407172 00000 n
+0000407348 00000 n
+0000407524 00000 n
+0000407700 00000 n
+0000407876 00000 n
+0000408052 00000 n
+0000408228 00000 n
+0000408401 00000 n
+0000408577 00000 n
+0000408753 00000 n
+0000408932 00000 n
+0000409108 00000 n
+0000409284 00000 n
+0000409457 00000 n
+0000409633 00000 n
+0000409812 00000 n
+0000409988 00000 n
+0000410164 00000 n
+0000410340 00000 n
+0000410516 00000 n
+0000410692 00000 n
+0000410865 00000 n
+0000411038 00000 n
+0000411211 00000 n
+0000411384 00000 n
+0000411557 00000 n
+0000411736 00000 n
+0000411912 00000 n
+0000412088 00000 n
+0000412267 00000 n
+0000412446 00000 n
+0000412622 00000 n
+0000412801 00000 n
+0000412980 00000 n
+0000413156 00000 n
+0000413332 00000 n
+0000413508 00000 n
+0000413684 00000 n
+0000413860 00000 n
+0000414036 00000 n
+0000414209 00000 n
+0000414382 00000 n
+0000414555 00000 n
+0000414728 00000 n
+0000414901 00000 n
+0000415074 00000 n
+0000415247 00000 n
+0000415420 00000 n
+0000415596 00000 n
+0000415769 00000 n
+0000415945 00000 n
+0000416118 00000 n
+0000416294 00000 n
+0000416470 00000 n
+0000416646 00000 n
+0000416822 00000 n
+0000416998 00000 n
+0000417174 00000 n
+0000417350 00000 n
+0000417523 00000 n
+0000417699 00000 n
+0000417878 00000 n
+0000418051 00000 n
+0000418224 00000 n
+0000418397 00000 n
+0000418576 00000 n
+0000418749 00000 n
+0000418922 00000 n
+0000419098 00000 n
+0000419271 00000 n
+0000419447 00000 n
+0000419623 00000 n
+0000419799 00000 n
+0000419975 00000 n
+0000420148 00000 n
+0000420327 00000 n
+0000420503 00000 n
+0000420676 00000 n
+0000420849 00000 n
+0000421022 00000 n
+0000421198 00000 n
+0000421371 00000 n
+0000421544 00000 n
+0000421720 00000 n
+0000421893 00000 n
+0000422069 00000 n
+0000422245 00000 n
+0000422421 00000 n
+0000422597 00000 n
+0000422773 00000 n
+0000422946 00000 n
+0000423119 00000 n
+0000423292 00000 n
+0000423465 00000 n
+0000423638 00000 n
+0000423811 00000 n
+0000423984 00000 n
+0000424157 00000 n
+0000424330 00000 n
+0000424506 00000 n
+0000424679 00000 n
+0000424855 00000 n
+0000425028 00000 n
+0000425201 00000 n
+0000425377 00000 n
+0000425553 00000 n
+0000425729 00000 n
+0000425905 00000 n
+0000426081 00000 n
+0000426254 00000 n
+0000426427 00000 n
+0000426600 00000 n
+0000426773 00000 n
+0000426946 00000 n
+0000427119 00000 n
+0000427295 00000 n
+0000427471 00000 n
+0000427650 00000 n
+0000427829 00000 n
+0000428002 00000 n
+0000428175 00000 n
+0000428351 00000 n
+0000428524 00000 n
+0000428700 00000 n
+0000428876 00000 n
+0000429052 00000 n
+0000041808 00000 n
+0000038317 00000 n
+trailer
+<</Size 11520/Prev 1290188/XRefStm 41808/Root 9658 0 R/Info 1773 0 R/ID[<1E347994A1A5E39883E390BDED167D7E><2B86CC75576C04418689A75C657746F9>]>>
+startxref
+0
+%%EOF
+
+11519 0 obj
<</Length 3382/C 8869/Filter/FlateDecode/I 8900/L 8853/O 8837/S 5072>>stream
+xY}T3;;+_*~/uXPj0~41s[c (JXEhRI$Mf𘊶V$&gMMVsR=}~Y揶Αa{ߝe +46u`/u{'YL4]E$e|=ȩ, +1IHLG,iP.D)lASoH.c n]o`>!pAfe|\iI_P$6ɭC&Gx0+FW'kS +&n!gc;$E!QoRKXBt +oɡhKVQgTA1#>%B[2Ԣ[H%9GtIkHKrSa<^MZ$4)A֥*%&
+R'R(W/)5:wPVVTpjteтz)uTf_^oNڛ+x4IjzsRZSfH=cUaSSQi]kΔ/T<i=O.9e֙":c駗֤tżҊ4BlKO.[)ҥ}?ɐU_K7'Z2n|X,Z얎U)sJ?)ڎz>ߩ.uX"ͯns=G-?xw4bzl_Nox-<z AykYtPBc7/>?R$㤄O;,+B쳃~x<ly_)8YRm2+4KkϞ5ߎ\}eGjRxSokJf5u{7jܷRh(00<Kf8K
-u+Qe>1`
ӿrkgg-N(
v˝O/k^^a?pXg_|eOO#:$hͧ;
[?܉WCl*."ՆUEG*Qٙyo~F\W9- v1gS\Æ^Z]<j+ܶ'cgxT*4P^Exș" Pihl`]_|pxN;& +y3eScz[!oD8grXJ<.} +q<̴ETsN"zQD)gWBcZ+ +&~c(Z +c-46AQ!PŢ{19v 㳱Z 1WFNu +䀞y3i U¸02q9
+ԆiAϢ@
17bl:2+r)pB9;^EVS`q'|U?v2!!0B؊<#-l@EEnPXT +ro + +@-G9nT}T2+9*$K +"lD/#@%__$A!e/S"(Z(e7Znaw]GP9E3FU@0SË1W| U,W[ԗcUk,:@@19beTEWb\00*ʷy$r6W/qE6Wbۛؑ< +<18\Q/#G.oh9Pw`5FE_zG6Cg)Yh8=q7Gdq5FmyR@3njϑ~AM1t?Xq"O=jVMR<tNqN
Ϫ1F/Ү +<e~bT,뮾Cޑk?P;6i/iM4CJdGejm0'ʟN! *`>? +7
hW!Q{@LF!) +endstream
endobj
11518 0 obj
<</Length 163/Filter/FlateDecode/W[1 2 1]/Index[1774 7883]/DecodeParms<</Columns 4/Predictor 12>>/Size 9657/Type/XRef>>stream
+x1 +0 +endstream
endobj
9658 0 obj
<</MarkInfo<</LetterspaceFlags 0/Marked true>>/PageMode/UseNone/Names 9660 0 R/Outlines 1569 0 R/Metadata 1772 0 R/PieceInfo<</MarkedPDF<</LastModified(D:20090119132419)>>>>/Pages 1759 0 R/OpenAction 9659 0 R/StructTreeRoot 1774 0 R/Type/Catalog/Lang(EN)/LastModified(D:20090119132419)/PageLabels 1757 0 R>>
endobj
9659 0 obj
<</D[9661 0 R/XYZ -32768 -32768 1.0]/S/GoTo>>
endobj
9660 0 obj
<</AP 1770 0 R>>
endobj
9661 0 obj
<</CropBox[0 0 595 842]/Annots[9662 0 R 9663 0 R 9664 0 R 9665 0 R 9666 0 R 9667 0 R 9668 0 R 9669 0 R 9670 0 R 9671 0 R 9672 0 R 9673 0 R 9674 0 R 9675 0 R]/Parent 1760 0 R/Tabs/S/StructParents 0/Contents[9724 0 R 9725 0 R 9726 0 R 9727 0 R 9728 0 R 9729 0 R 9732 0 R 10278 0 R]/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im1690 10266 0 R/Im1691 10247 0 R/Im1692 10318 0 R/Im1693 10267 0 R/Im1694 10268 0 R/Im1695 10269 0 R/Im1696 10319 0 R/Im1697 10277 0 R/Im1390 10320 0 R/Im1698 10321 0 R/Im1391 10322 0 R/Im1699 10323 0 R/Im1392 10324 0 R/Im1393 10270 0 R/Im1394 10325 0 R/Im1395 10272 0 R/Im1396 10326 0 R/Im1090 10327 0 R/Im1397 10328 0 R/Im1091 10329 0 R/Im1398 10330 0 R/Im1092 10265 0 R/Im1399 10331 0 R/Im1093 10332 0 R/Im1094 10333 0 R/Im1095 10334 0 R/Im1096 10273 0 R/Im1097 10274 0 R/Im1098 10335 0 R/Im1099 10275 0 R/Im800 10336 0 R/Im801 10337 0 R/Im802 10338 0 R/Im803 10339 0 R/Im804 10340 0 R/Im805 10341 0 R/Im806 10342 0 R/Im500 10343 0 R/Im807 10344 0 R/Im501 10345 0 R/Im808 10346 0 R/Im502 10347 0 R/Im809 10348 0 R/Im503 10349 0 R/Im504 10158 0 R/Im505 10350 0 R/Im506 10351 0 R/Im200 10161 0 R/Im507 10352 0 R/Im201 10162 0 R/Im508 10353 0 R/Im202 10163 0 R/Im509 10354 0 R/Im203 10355 0 R/Im204 10167 0 R/Im205 10356 0 R/Im206 10357 0 R/Im207 10168 0 R/Im208 10169 0 R/Im209 10358 0 R/Im810 10359 0 R/Im811 10360 0 R/Im812 10361 0 R/Im813 10362 0 R/Im814 10363 0 R/Im815 10364 0 R/Im816 10365 0 R/Im510 10366 0 R/Im817 10367 0 R/Im511 10368 0 R/Im818 10369 0 R/Im512 10370 0 R/Im819 10371 0 R/Im513 10166 0 R/Im514 10372 0 R/Im515 10373 0 R/Im516 10374 0 R/Im210 10170 0 R/Im517 10375 0 R/Im211 10376 0 R/Im518 10377 0 R/Im212 10171 0 R/Im519 10378 0 R/Im213 10379 0 R/Im214 10380 0 R/Im215 10381 0 R/Im216 9746 0 R/Im217 10235 0 R/Im218 10209 0 R/Im219 9747 0 R/Im820 10382 0 R/Im821 10383 0 R/Im822 10384 0 R/Im823 10385 0 R/Im824 10386 0 R/Im825 10387 0 R/Im826 10388 0 R/Im520 10389 0 R/Im827 10390 0 R/Im521 10391 0 R/Im828 10392 0 R/Im522 10393 0 R/Im829 10394 0 R/Im523 10395 0 R/Im524 10396 0 R/Im525 10397 0 R/Im526 10398 0 R/Im220 9748 0 R/Im527 10399 0 R/Im221 10400 0 R/Im528 9745 0 R/Im222 9749 0 R/Im529 10401 0 R/Im223 10402 0 R/Im224 10403 0 R/Im225 9750 0 R/Im226 9752 0 R/Im227 10404 0 R/Im228 9753 0 R/Im229 10405 0 R/Im830 10406 0 R/Im831 10407 0 R/Im832 10408 0 R/Im833 10409 0 R/Im834 10410 0 R/Im835 10411 0 R/Im836 10412 0 R/Im530 10413 0 R/Im837 10414 0 R/Im531 10415 0 R/Im838 10416 0 R/Im532 10417 0 R/Im839 10418 0 R/Im533 10419 0 R/Im534 9751 0 R/Im535 10420 0 R/Im536 10421 0 R/Im230 10422 0 R/Im537 10423 0 R/Im231 10424 0 R/Im538 10425 0 R/Im232 9754 0 R/Im539 10426 0 R/Im233 10427 0 R/Im234 10428 0 R/Im235 9755 0 R/Im236 9756 0 R/Im237 10429 0 R/Im238 9759 0 R/Im239 10430 0 R/Im840 10431 0 R/Im841 9757 0 R/Im842 9758 0 R/Im843 10432 0 R/Im844 10433 0 R/Im845 10434 0 R/Im846 10435 0 R/Im540 10436 0 R/Im847 10437 0 R/Im541 10438 0 R/Im848 10439 0 R/Im542 10440 0 R/Im849 10441 0 R/Im543 10442 0 R/Im544 10443 0 R/Im545 10444 0 R/Im546 10445 0 R/Im240 10446 0 R/Im547 10447 0 R/Im241 9760 0 R/Im548 10448 0 R/Im242 10449 0 R/Im549 10450 0 R/Im243 10451 0 R/Im244 9761 0 R/Im245 10452 0 R/Im246 9762 0 R/Im247 10453 0 R/Im248 9767 0 R/Im249 10454 0 R/Im850 9763 0 R/Im851 10455 0 R/Im852 10456 0 R/Im853 10457 0 R/Im854 9764 0 R/Im855 9765 0 R/Im856 10458 0 R/Im550 9766 0 R/Im857 10459 0 R/Im551 10460 0 R/Im858 10461 0 R/Im552 10462 0 R/Im859 10463 0 R/Im553 10464 0 R/Im554 10465 0 R/Im555 10466 0 R/Im556 10467 0 R/Im250 10468 0 R/Im557 10469 0 R/Im251 9768 0 R/Im558 10470 0 R/Im252 9769 0 R/Im559 10471 0 R/Im253 10472 0 R/Im254 9770 0 R/Im255 10473 0 R/Im256 10474 0 R/Im257 9771 0 R/Im258 10475 0 R/Im259 10476 0 R/Im860 10477 0 R/Im861 10478 0 R/Im862 10479 0 R/Im863 10480 0 R/Im864 10481 0 R/Im865 10482 0 R/Im866 10483 0 R/Im560 10484 0 R/Im867 9772 0 R/Im561 10485 0 R/Im868 10486 0 R/Im562 10487 0 R/Im869 10488 0 R/Im563 10489 0 R/Im564 9773 0 R/Im565 10490 0 R/Im566 10491 0 R/Im260 9774 0 R/Im567 10492 0 R/Im261 10493 0 R/Im568 10494 0 R/Im262 9775 0 R/Im569 10495 0 R/Im263 10496 0 R/Im264 9776 0 R/Im265 10497 0 R/Im266 10498 0 R/Im267 9777 0 R/Im268 9778 0 R/Im269 10499 0 R/Im870 9779 0 R/Im871 9780 0 R/Im872 10500 0 R/Im873 10501 0 R/Im874 10502 0 R/Im875 10503 0 R/Im876 10504 0 R/Im570 10505 0 R/Im877 10506 0 R/Im571 10507 0 R/Im878 10508 0 R/Im572 10509 0 R/Im879 10510 0 R/Im573 10511 0 R/Im574 10512 0 R/Im575 10513 0 R/Im576 10165 0 R/Im270 9781 0 R/Im577 10514 0 R/Im271 10515 0 R/Im578 10516 0 R/Im272 10517 0 R/Im579 9791 0 R/Im273 9782 0 R/Im274 9783 0 R/Im275 10518 0 R/Im276 9784 0 R/Im277 10519 0 R/Im278 9785 0 R/Im279 10520 0 R/Im880 10521 0 R/Im881 9786 0 R/Im882 9787 0 R/Im883 10522 0 R/Im884 10523 0 R/Im885 9789 0 R/Im886 9790 0 R/Im580 10524 0 R/Im887 10525 0 R/Im581 10526 0 R/Im888 10527 0 R/Im582 10528 0 R/Im889 9798 0 R/Im583 10529 0 R/Im584 10530 0 R/Im585 10531 0 R/Im586 10532 0 R/Im280 9792 0 R/Im587 10533 0 R/Im281 9793 0 R/Im588 10534 0 R/Im282 10535 0 R/Im589 10536 0 R/Im283 9794 0 R/Im284 9795 0 R/Im285 9796 0 R/Im286 10537 0 R/Im287 9797 0 R/Im288 10538 0 R/Im289 9801 0 R/Im890 10539 0 R/Im891 10540 0 R/Im892 10541 0 R/Im893 10542 0 R/Im894 10543 0 R/Im895 10544 0 R/Im896 9800 0 R/Im590 10545 0 R/Im897 10546 0 R/Im591 10547 0 R/Im898 10548 0 R/Im592 10549 0 R/Im899 10550 0 R/Im593 10551 0 R/Im594 9803 0 R/Im595 10552 0 R/Im596 10553 0 R/Im290 9802 0 R/Im597 10554 0 R/Im291 9804 0 R/Im598 10555 0 R/Im292 10556 0 R/Im599 10557 0 R/Im293 9805 0 R/Im294 9806 0 R/Im295 9807 0 R/Im296 9808 0 R/Im297 10558 0 R/Im298 9809 0 R/Im299 10559 0 R/Im10 10560 0 R/Im11 10561 0 R/Im12 10562 0 R/Im13 10563 0 R/Im14 10564 0 R/Im15 10565 0 R/Im16 10566 0 R/Im17 10567 0 R/Im18 10568 0 R/Im19 10569 0 R/Im20 10570 0 R/Im21 10571 0 R/Im22 10572 0 R/Im23 9799 0 R/Im24 10573 0 R/Im25 10574 0 R/Im26 10575 0 R/Im27 10576 0 R/Im28 10577 0 R/Im29 10578 0 R/Im30 10579 0 R/Im31 10580 0 R/Im32 10581 0 R/Im33 10582 0 R/Im34 10583 0 R/Im35 10584 0 R/Im36 10585 0 R/Im37 10586 0 R/Im38 10587 0 R/Im39 10588 0 R/Im40 10589 0 R/Im41 10590 0 R/Im42 10591 0 R/Im43 10592 0 R/Im44 10593 0 R/Im45 10594 0 R/Im46 10595 0 R/Im47 10596 0 R/Im48 9744 0 R/Im49 10597 0 R/Im50 10598 0 R/Im51 10599 0 R/Im52 10600 0 R/Im53 10601 0 R/Im54 10602 0 R/Im55 10603 0 R/Im56 10604 0 R/Im57 10605 0 R/Im58 10606 0 R/Im59 10607 0 R/Im60 10608 0 R/Im61 10609 0 R/Im62 10610 0 R/Im63 10611 0 R/Im64 10612 0 R/Im65 9829 0 R/Im66 9830 0 R/Im67 10613 0 R/Im68 10614 0 R/Im69 10615 0 R/Im70 10616 0 R/Im71 10617 0 R/Im72 10618 0 R/Im73 9831 0 R/Im74 10619 0 R/Im75 9832 0 R/Im76 10620 0 R/Im77 9956 0 R/Im78 10621 0 R/Im79 10622 0 R/Im80 10623 0 R/Im81 10624 0 R/Im82 10625 0 R/Im83 9833 0 R/Im84 10626 0 R/Im85 9834 0 R/Im86 10627 0 R/Im87 10628 0 R/Im88 10629 0 R/Im89 10630 0 R/Im90 10631 0 R/Im91 10632 0 R/Im92 10633 0 R/Im93 9835 0 R/Im94 9836 0 R/Im95 9837 0 R/Im96 9838 0 R/Im97 10634 0 R/Im98 10635 0 R/Im99 10636 0 R/Im1700 10637 0 R/Im1701 9733 0 R/Im1702 10638 0 R/Im1703 10639 0 R/Im1704 10640 0 R/Im1705 10641 0 R/Im1706 9735 0 R/Im1707 10642 0 R/Im1400 9843 0 R/Im1708 10643 0 R/Im1401 9849 0 R/Im1709 10644 0 R/Im1402 9858 0 R/Im1403 10074 0 R/Im1404 10645 0 R/Im1405 10646 0 R/Im1406 10647 0 R/Im1100 10648 0 R/Im1407 10649 0 R/Im1101 10650 0 R/Im1408 9920 0 R/Im1102 10651 0 R/Im1409 10652 0 R/Im1103 10276 0 R/Im1104 10653 0 R/Im1105 9914 0 R/Im1106 10654 0 R/Im1107 10655 0 R/Im1108 10656 0 R/Im1109 10657 0 R/Im1710 9736 0 R/Im1711 9737 0 R/Im1712 9738 0 R/Im1713 10658 0 R/Im1714 10659 0 R/Im1715 10660 0 R/Im1716 9842 0 R/Im1717 9844 0 R/Im1410 10661 0 R/Im1718 9845 0 R/Im1411 10662 0 R/Im1719 10663 0 R/Im1412 9739 0 R/Im1413 9740 0 R/Im1414 9741 0 R/Im1415 10664 0 R/Im1416 10665 0 R/Im1110 10666 0 R/Im1417 10667 0 R/Im1111 10668 0 R/Im1418 9851 0 R/Im1112 10669 0 R/Im1419 10670 0 R/Im1113 9931 0 R/Im1114 10671 0 R/Im1115 9742 0 R/Im1116 10672 0 R/Im1117 10673 0 R/Im1118 10674 0 R/Im1119 10675 0 R/Im1720 10676 0 R/Im1721 9846 0 R/Im1722 9847 0 R/Im1723 9848 0 R/Im1724 9850 0 R/Im1725 10677 0 R/Im1726 10678 0 R/Im1727 9856 0 R/Im1420 10679 0 R/Im1728 9857 0 R/Im1421 10680 0 R/Im1729 10681 0 R/Im1422 10682 0 R/Im1423 9852 0 R/Im1424 10683 0 R/Im1425 10684 0 R/Im1426 9854 0 R/Im1120 10685 0 R/Im1427 10686 0 R/Im1121 10687 0 R/Im1428 10688 0 R/Im1122 10689 0 R/Im1429 10690 0 R/Im1123 9743 0 R/Im1124 10691 0 R/Im1125 10692 0 R/Im1126 9855 0 R/Im1127 10693 0 R/Im1128 10694 0 R/Im1129 10695 0 R/Im1730 10696 0 R/Im1731 10697 0 R/Im1732 10698 0 R/Im1733 9859 0 R/Im1734 10699 0 R/Im1735 9860 0 R/Im1736 10700 0 R/Im1737 10701 0 R/Im1430 9861 0 R/Im1738 10702 0 R/Im1431 10703 0 R/Im1739 10704 0 R/Im1432 9862 0 R/Im1433 10705 0 R/Im1434 10706 0 R/Im1435 10707 0 R/Im1436 10708 0 R/Im1130 10709 0 R/Im1437 9863 0 R/Im1131 10710 0 R/Im1438 10711 0 R/Im1132 10712 0 R/Im1439 10713 0 R/Im1133 10714 0 R/Im1134 10715 0 R/Im1135 10716 0 R/Im1136 10717 0 R/Im1137 10718 0 R/Im1138 10719 0 R/Im1139 10720 0 R/Im1740 10721 0 R/Im1741 10722 0 R/Im1742 9864 0 R/Im1743 10723 0 R/Im1744 10724 0 R/Im1440 10725 0 R/Im1441 10726 0 R/Im1442 10727 0 R/Im1443 10728 0 R/Im1444 10729 0 R/Im1445 10730 0 R/Im1446 9865 0 R/Im1140 10731 0 R/Im1447 10732 0 R/Im1141 10733 0 R/Im1448 10734 0 R/Im1142 10735 0 R/Im1449 10736 0 R/Im1143 10737 0 R/Im1144 10738 0 R/Im1145 10739 0 R/Im1146 10740 0 R/Im1147 10741 0 R/Im1148 10742 0 R/Im1149 10743 0 R/Im1450 10744 0 R/Im1451 10745 0 R/Im1452 10746 0 R/Im1453 10747 0 R/Im1454 10748 0 R/Im1455 10749 0 R/Im1456 10750 0 R/Im1150 10751 0 R/Im1457 10752 0 R/Im1151 9866 0 R/Im1458 9871 0 R/Im1152 10753 0 R/Im1459 10754 0 R/Im1153 10755 0 R/Im1154 10756 0 R/Im1155 9867 0 R/Im1156 10757 0 R/Im1157 10758 0 R/Im1158 10759 0 R/Im1159 9868 0 R/Im1460 10760 0 R/Im1461 9872 0 R/Im1462 9873 0 R/Im1463 9874 0 R/Im1464 10761 0 R/Im1465 9876 0 R/Im1466 10762 0 R/Im1160 9869 0 R/Im1467 10763 0 R/Im1161 10764 0 R/Im1468 10765 0 R/Im1162 10766 0 R/Im1469 10767 0 R/Im1163 9870 0 R/Im1164 9875 0 R/Im1165 10768 0 R/Im1166 9877 0 R/Im1167 10769 0 R/Im1168 9878 0 R/Im1169 9879 0 R/Im1470 9882 0 R/Im1471 9883 0 R/Im1472 10770 0 R/Im1473 9884 0 R/Im1474 10771 0 R/Im1475 9886 0 R/Im1476 10772 0 R/Im1170 9880 0 R/Im1477 9890 0 R/Im1171 10773 0 R/Im1478 9898 0 R/Im1172 10774 0 R/Im1479 9888 0 R/Im1173 9881 0 R/Im1174 9885 0 R/Im1175 9887 0 R/Im1176 9889 0 R/Im1177 9891 0 R/Im1178 9892 0 R/Im1179 9893 0 R/Im1480 10775 0 R/Im1481 10776 0 R/Im1482 10777 0 R/Im1483 9902 0 R/Im1484 9904 0 R/Im1485 10778 0 R/Im1486 10779 0 R/Im1180 9894 0 R/Im1487 10780 0 R/Im1181 9895 0 R/Im1488 10781 0 R/Im1182 9896 0 R/Im1489 9912 0 R/Im1183 9897 0 R/Im1184 9901 0 R/Im1185 9903 0 R/Im1186 9905 0 R/Im1187 9906 0 R/Im1188 9907 0 R/Im1189 9908 0 R/Im1490 9913 0 R/Im1491 10782 0 R/Im1492 10783 0 R/Im1493 10784 0 R/Im1494 10785 0 R/Im1495 9922 0 R/Im1496 9923 0 R/Im1190 9909 0 R/Im1497 10786 0 R/Im1191 9910 0 R/Im1498 10787 0 R/Im1192 9911 0 R/Im1499 9924 0 R/Im1193 10788 0 R/Im1194 10789 0 R/Im1195 9915 0 R/Im1196 10790 0 R/Im1197 9916 0 R/Im1198 10791 0 R/Im1199 10109 0 R/Im900 10792 0 R/Im901 10793 0 R/Im902 9811 0 R/Im903 10794 0 R/Im904 10795 0 R/Im905 9812 0 R/Im906 10796 0 R/Im907 10797 0 R/Im600 10798 0 R/Im601 10799 0 R/Im908 10800 0 R/Im602 10801 0 R/Im909 10802 0 R/Im603 10803 0 R/Im604 10804 0 R/Im605 10805 0 R/Im606 10806 0 R/Im300 9813 0 R/Im607 10807 0 R/Im301 9814 0 R/Im608 10808 0 R/Im302 9815 0 R/Im609 10809 0 R/Im303 10810 0 R/Im304 9816 0 R/Im305 9817 0 R/Im306 10811 0 R/Im307 9818 0 R/Im308 9819 0 R/Im309 9823 0 R/Im910 9820 0 R/Im911 10812 0 R/Im912 10813 0 R/Im913 9821 0 R/Im914 10814 0 R/Im915 10815 0 R/Im916 10816 0 R/Im610 9822 0 R/Im917 10817 0 R/Im611 10818 0 R/Im918 10819 0 R/Im612 10820 0 R/Im919 9943 0 R/Im613 10821 0 R/Im614 10822 0 R/Im615 10823 0 R/Im616 10824 0 R/Im310 9824 0 R/Im617 10825 0 R/Im311 9825 0 R/Im618 10826 0 R/Im312 10827 0 R/Im619 10828 0 R/Im313 10829 0 R/Im314 9826 0 R/Im315 10830 0 R/Im316 10831 0 R/Im317 9827 0 R/Im318 9828 0 R/Im319 10832 0 R/Im920 10833 0 R/Im921 10834 0 R/Im922 9944 0 R/Im923 9945 0 R/Im924 10835 0 R/Im925 10836 0 R/Im926 10837 0 R/Im620 10838 0 R/Im927 10839 0 R/Im621 10840 0 R/Im928 10841 0 R/Im622 10842 0 R/Im929 10843 0 R/Im623 10844 0 R/Im624 9948 0 R/Im625 10845 0 R/Im626 10846 0 R/Im320 9946 0 R/Im627 10847 0 R/Im321 9947 0 R/Im628 10848 0 R/Im322 10849 0 R/Im629 10850 0 R/Im323 10851 0 R/Im324 10852 0 R/Im325 9949 0 R/Im326 9950 0 R/Im327 10853 0 R/Im328 9951 0 R/Im329 9958 0 R/Im930 9952 0 R/Im931 9953 0 R/Im932 10854 0 R/Im933 10855 0 R/Im934 10856 0 R/Im935 9954 0 R/Im936 9955 0 R/Im630 10857 0 R/Im937 10858 0 R/Im631 10859 0 R/Im938 10860 0 R/Im632 10861 0 R/Im939 10862 0 R/Im633 10863 0 R/Im634 10864 0 R/Im635 10865 0 R/Im636 10866 0 R/Im330 10867 0 R/Im637 10868 0 R/Im331 10869 0 R/Im638 10870 0 R/Im332 10871 0 R/Im639 10872 0 R/Im333 10873 0 R/Im334 9959 0 R/Im335 9960 0 R/Im336 9961 0 R/Im337 9962 0 R/Im338 10874 0 R/Im339 10875 0 R/Im940 9957 0 R/Im941 10876 0 R/Im942 10877 0 R/Im943 10878 0 R/Im944 10182 0 R/Im945 10879 0 R/Im946 10880 0 R/Im640 9966 0 R/Im947 9963 0 R/Im641 10881 0 R/Im948 9964 0 R/Im642 10882 0 R/Im949 10883 0 R/Im643 10884 0 R/Im644 10885 0 R/Im645 10886 0 R/Im646 10887 0 R/Im340 10888 0 R/Im647 10889 0 R/Im341 10890 0 R/Im648 10891 0 R/Im342 10892 0 R/Im649 10893 0 R/Im343 9967 0 R/Im344 9968 0 R/Im345 10894 0 R/Im346 10895 0 R/Im347 9969 0 R/Im348 9970 0 R/Im349 9971 0 R/Im950 10896 0 R/Im951 10897 0 R/Im952 9965 0 R/Im953 9972 0 R/Im954 10898 0 R/Im955 10899 0 R/Im956 10900 0 R/Im650 10901 0 R/Im957 9973 0 R/Im651 10902 0 R/Im958 10903 0 R/Im652 10904 0 R/Im959 10905 0 R/Im653 9981 0 R/Im654 10906 0 R/Im655 10907 0 R/Im656 10908 0 R/Im350 10909 0 R/Im657 10910 0 R/Im351 10911 0 R/Im658 10912 0 R/Im352 9975 0 R/Im659 10913 0 R/Im353 9976 0 R/Im354 10914 0 R/Im355 10915 0 R/Im356 9977 0 R/Im357 10916 0 R/Im358 10917 0 R/Im359 9978 0 R/Im960 9974 0 R/Im961 10918 0 R/Im962 10919 0 R/Im963 9979 0 R/Im964 10920 0 R/Im965 10921 0 R/Im966 10922 0 R/Im660 10923 0 R/Im967 9980 0 R/Im661 10924 0 R/Im968 10925 0 R/Im662 10926 0 R/Im969 10927 0 R/Im663 10928 0 R/Im664 10929 0 R/Im665 10930 0 R/Im666 10931 0 R/Im360 9984 0 R/Im667 9993 0 R/Im361 9942 0 R/Im668 10932 0 R/Im362 9985 0 R/Im669 10933 0 R/Im363 10934 0 R/Im364 10935 0 R/Im365 9986 0 R/Im366 9987 0 R/Im367 10936 0 R/Im368 10937 0 R/Im369 10938 0 R/Im970 10939 0 R/Im971 9982 0 R/Im972 9983 0 R/Im973 10940 0 R/Im974 10941 0 R/Im975 9988 0 R/Im976 10942 0 R/Im670 10943 0 R/Im977 9989 0 R/Im671 10944 0 R/Im978 10945 0 R/Im672 10946 0 R/Im979 9990 0 R/Im673 10947 0 R/Im674 10948 0 R/Im675 10949 0 R/Im676 10950 0 R/Im370 10951 0 R/Im677 10952 0 R/Im371 10953 0 R/Im678 10954 0 R/Im372 10955 0 R/Im679 10956 0 R/Im373 10957 0 R/Im374 10958 0 R/Im375 10959 0 R/Im376 9994 0 R/Im377 10960 0 R/Im378 10961 0 R/Im379 10962 0 R/Im980 9991 0 R/Im981 10963 0 R/Im982 10964 0 R/Im983 9992 0 R/Im984 9995 0 R/Im985 9996 0 R/Im986 10965 0 R/Im680 10966 0 R/Im987 10967 0 R/Im681 10968 0 R/Im988 9997 0 R/Im682 10006 0 R/Im989 10969 0 R/Im683 10970 0 R/Im684 10971 0 R/Im685 10972 0 R/Im686 10973 0 R/Im380 10974 0 R/Im687 10975 0 R/Im381 10976 0 R/Im688 10977 0 R/Im382 10001 0 R/Im689 10978 0 R/Im383 10002 0 R/Im384 10979 0 R/Im385 10980 0 R/Im386 10981 0 R/Im387 10982 0 R/Im388 10983 0 R/Im389 10984 0 R/Im990 10985 0 R/Im991 9998 0 R/Im992 9999 0 R/Im993 10000 0 R/Im994 10986 0 R/Im995 10003 0 R/Im996 10987 0 R/Im690 10988 0 R/Im997 10989 0 R/Im691 10990 0 R/Im998 10004 0 R/Im692 10991 0 R/Im999 10005 0 R/Im693 10992 0 R/Im694 10993 0 R/Im695 10994 0 R/Im696 10014 0 R/Im390 10995 0 R/Im697 10996 0 R/Im391 10997 0 R/Im698 10998 0 R/Im392 10999 0 R/Im699 11000 0 R/Im393 10008 0 R/Im394 11001 0 R/Im395 11002 0 R/Im396 11003 0 R/Im397 11004 0 R/Im398 11005 0 R/Im399 11006 0 R/Im1500 9925 0 R/Im1501 9927 0 R/Im1502 11007 0 R/Im1503 11008 0 R/Im1504 11009 0 R/Im1505 9934 0 R/Im1506 11010 0 R/Im1200 9917 0 R/Im1507 9935 0 R/Im1201 9918 0 R/Im1508 11011 0 R/Im1202 9919 0 R/Im1509 11012 0 R/Im1203 9921 0 R/Im1204 9926 0 R/Im1205 9928 0 R/Im1206 11013 0 R/Im1207 10026 0 R/Im1208 9929 0 R/Im1209 9930 0 R/Im1510 9937 0 R/Im1511 11014 0 R/Im1512 10022 0 R/Im1513 10023 0 R/Im1514 11015 0 R/Im1515 11016 0 R/Im1516 9853 0 R/Im1210 11017 0 R/Im1517 11018 0 R/Im1211 9932 0 R/Im1518 11019 0 R/Im1212 9933 0 R/Im1519 11020 0 R/Im1213 11021 0 R/Im1214 9936 0 R/Im1215 11022 0 R/Im1216 11023 0 R/Im1217 9939 0 R/Im1218 11024 0 R/Im1219 9940 0 R/Im1520 11025 0 R/Im1521 11026 0 R/Im1522 11027 0 R/Im1523 11028 0 R/Im1524 10030 0 R/Im1525 11029 0 R/Im1526 11030 0 R/Im1220 11031 0 R/Im1527 10031 0 R/Im1221 11032 0 R/Im1528 11033 0 R/Im1222 9941 0 R/Im1529 11034 0 R/Im1223 11035 0 R/Im1224 10224 0 R/Im1225 10024 0 R/Im1226 10025 0 R/Im1227 11036 0 R/Im1228 10027 0 R/Im1229 10028 0 R/Im1530 10032 0 R/Im1531 11037 0 R/Im1532 10086 0 R/Im1533 10035 0 R/Im1534 10041 0 R/Im1535 10042 0 R/Im1536 10033 0 R/Im1230 10029 0 R/Im1537 11038 0 R/Im1231 11039 0 R/Im1538 11040 0 R/Im1232 11041 0 R/Im1539 11042 0 R/Im1233 9938 0 R/Im1234 11043 0 R/Im1235 10034 0 R/Im1236 11044 0 R/Im1237 10036 0 R/Im1238 10037 0 R/Im1239 11045 0 R/Im1540 11046 0 R/Im1541 11047 0 R/Im1542 11048 0 R/Im1543 11049 0 R/Im1544 11050 0 R/Im1545 11051 0 R/Im1546 11052 0 R/Im1547 11053 0 R/Im1240 10038 0 R/Im1548 10049 0 R/Im1241 10039 0 R/Im1549 10050 0 R/Im1242 10040 0 R/Im1243 10101 0 R/Im1244 11054 0 R/Im1245 10043 0 R/Im1246 10044 0 R/Im1247 10045 0 R/Im1248 9900 0 R/Im1249 10046 0 R/Im1550 11055 0 R/Im1551 11056 0 R/Im1552 11057 0 R/Im1553 11058 0 R/Im1554 10053 0 R/Im1555 11059 0 R/Im1556 11060 0 R/Im1557 11061 0 R/Im1250 11062 0 R/Im1558 11063 0 R/Im1251 10047 0 R/Im1559 11064 0 R/Im1252 10048 0 R/Im1253 10051 0 R/Im1254 10052 0 R/Im1255 10054 0 R/Im1256 11065 0 R/Im1257 11066 0 R/Im1258 10055 0 R/Im1259 10056 0 R/Im1560 11067 0 R/Im1561 11068 0 R/Im1562 11069 0 R/Im1563 11070 0 R/Im1564 11071 0 R/Im1565 11072 0 R/Im1566 11073 0 R/Im1567 10069 0 R/Im1260 11074 0 R/Im1568 11075 0 R/Im1261 10057 0 R/Im1569 10070 0 R/Im1262 11076 0 R/Im1263 10059 0 R/Im1264 10060 0 R/Im1265 10061 0 R/Im1266 10062 0 R/Im1267 10063 0 R/Im1268 11077 0 R/Im1269 10064 0 R/Im1570 10071 0 R/Im1571 11078 0 R/Im1572 11079 0 R/Im1573 11080 0 R/Im1574 10073 0 R/Im1575 11081 0 R/Im1576 11082 0 R/Im1577 11083 0 R/Im1270 10065 0 R/Im1578 11084 0 R/Im1271 10066 0 R/Im1579 10078 0 R/Im1272 10067 0 R/Im1273 11085 0 R/Im1274 10068 0 R/Im1275 10072 0 R/Im1276 11086 0 R/Im1277 11087 0 R/Im1278 11088 0 R/Im1279 11089 0 R/Im1580 11090 0 R/Im1581 10079 0 R/Im1582 10080 0 R/Im1583 11091 0 R/Im1584 10081 0 R/Im1585 11092 0 R/Im1586 11093 0 R/Im1587 10088 0 R/Im1280 10075 0 R/Im1588 11094 0 R/Im1281 11095 0 R/Im1589 11096 0 R/Im1282 10076 0 R/Im1283 10077 0 R/Im1284 10082 0 R/Im1285 10083 0 R/Im1286 10084 0 R/Im1287 11097 0 R/Im1288 10085 0 R/Im1289 11098 0 R/Im1590 10089 0 R/Im1591 11099 0 R/Im1592 11100 0 R/Im1593 11101 0 R/Im1594 11102 0 R/Im1595 11103 0 R/Im1596 11104 0 R/Im1597 10091 0 R/Im1290 11105 0 R/Im1598 10096 0 R/Im1291 11106 0 R/Im1599 10097 0 R/Im1292 10087 0 R/Im1293 11107 0 R/Im1294 11108 0 R/Im1295 10090 0 R/Im1296 10092 0 R/Im1297 11109 0 R/Im1298 10093 0 R/Im1299 11110 0 R/Im700 11111 0 R/Im701 11112 0 R/Im702 11113 0 R/Im703 11114 0 R/Im704 11115 0 R/Im705 11116 0 R/Im706 11117 0 R/Im400 10015 0 R/Im707 11118 0 R/Im401 11119 0 R/Im708 11120 0 R/Im402 11121 0 R/Im709 11122 0 R/Im403 11123 0 R/Im404 11124 0 R/Im405 11125 0 R/Im406 11126 0 R/Im100 11127 0 R/Im407 11128 0 R/Im101 11129 0 R/Im408 11130 0 R/Im102 9839 0 R/Im409 11131 0 R/Im103 9840 0 R/Im104 9841 0 R/Im105 11132 0 R/Im106 11133 0 R/Im107 11134 0 R/Im108 11135 0 R/Im109 11136 0 R/Im710 11137 0 R/Im711 10114 0 R/Im712 11138 0 R/Im713 11139 0 R/Im714 11140 0 R/Im715 11141 0 R/Im716 11142 0 R/Im410 11143 0 R/Im717 11144 0 R/Im411 11145 0 R/Im718 11146 0 R/Im412 10020 0 R/Im719 11147 0 R/Im413 11148 0 R/Im414 10021 0 R/Im415 11149 0 R/Im416 11150 0 R/Im110 10116 0 R/Im417 11151 0 R/Im111 10117 0 R/Im418 11152 0 R/Im112 11153 0 R/Im419 11154 0 R/Im113 11155 0 R/Im114 11156 0 R/Im115 11157 0 R/Im116 11158 0 R/Im117 11159 0 R/Im118 11160 0 R/Im119 11161 0 R/Im720 11162 0 R/Im721 11163 0 R/Im722 11164 0 R/Im723 11165 0 R/Im724 11166 0 R/Im725 11167 0 R/Im726 10118 0 R/Im420 10115 0 R/Im727 11168 0 R/Im421 11169 0 R/Im728 11170 0 R/Im422 11171 0 R/Im729 11172 0 R/Im423 11173 0 R/Im424 11174 0 R/Im425 11175 0 R/Im426 11176 0 R/Im120 11177 0 R/Im427 11178 0 R/Im121 11179 0 R/Im428 11180 0 R/Im122 11181 0 R/Im429 11182 0 R/Im123 11183 0 R/Im124 11184 0 R/Im125 11185 0 R/Im126 11186 0 R/Im127 9810 0 R/Im128 11187 0 R/Im129 11188 0 R/Im730 11189 0 R/Im731 11190 0 R/Im732 11191 0 R/Im733 11192 0 R/Im734 11193 0 R/Im735 11194 0 R/Im736 11195 0 R/Im430 11196 0 R/Im737 11197 0 R/Im431 10119 0 R/Im738 11198 0 R/Im432 11199 0 R/Im739 11200 0 R/Im433 11201 0 R/Im434 11202 0 R/Im435 11203 0 R/Im436 10120 0 R/Im130 11204 0 R/Im437 10121 0 R/Im131 11205 0 R/Im438 11206 0 R/Im132 11207 0 R/Im439 11208 0 R/Im133 10123 0 R/Im134 10124 0 R/Im135 11209 0 R/Im136 11210 0 R/Im137 11211 0 R/Im138 10125 0 R/Im139 10126 0 R/Im740 11212 0 R/Im741 10127 0 R/Im742 11213 0 R/Im743 11214 0 R/Im744 11215 0 R/Im745 11216 0 R/Im746 11217 0 R/Im440 11218 0 R/Im747 11219 0 R/Im441 11220 0 R/Im748 11221 0 R/Im442 11222 0 R/Im749 11223 0 R/Im443 11224 0 R/Im444 11225 0 R/Im445 11226 0 R/Im446 11227 0 R/Im140 11228 0 R/Im447 11229 0 R/Im141 11230 0 R/Im448 10122 0 R/Im142 10263 0 R/Im449 11231 0 R/Im143 11232 0 R/Im144 9788 0 R/Im145 10130 0 R/Im146 10131 0 R/Im147 11233 0 R/Im148 11234 0 R/Im149 11235 0 R/Im750 11236 0 R/Im751 11237 0 R/Im752 11238 0 R/Im753 11239 0 R/Im754 11240 0 R/Im755 11241 0 R/Im756 11242 0 R/Im450 11243 0 R/Im757 11244 0 R/Im451 11245 0 R/Im758 11246 0 R/Im452 10128 0 R/Im759 11247 0 R/Im453 10164 0 R/Im454 10129 0 R/Im455 11248 0 R/Im456 11249 0 R/Im150 10132 0 R/Im457 11250 0 R/Im151 11251 0 R/Im458 11252 0 R/Im152 10133 0 R/Im459 11253 0 R/Im153 11254 0 R/Im154 11255 0 R/Im155 11256 0 R/Im156 11257 0 R/Im157 11258 0 R/Im158 11259 0 R/Im159 10135 0 R/Im760 11260 0 R/Im761 11261 0 R/Im762 11262 0 R/Im763 11263 0 R/Im764 11264 0 R/Im765 11265 0 R/Im766 11266 0 R/Im460 11267 0 R/Im767 11268 0 R/Im461 11269 0 R/Im768 11270 0 R/Im462 11271 0 R/Im769 11272 0 R/Im463 11273 0 R/Im464 10134 0 R/Im465 11274 0 R/Im466 11275 0 R/Im160 10136 0 R/Im467 11276 0 R/Im161 11277 0 R/Im468 11278 0 R/Im162 10212 0 R/Im469 10157 0 R/Im163 11279 0 R/Im164 11280 0 R/Im165 11281 0 R/Im166 11282 0 R/Im167 11283 0 R/Im168 10141 0 R/Im169 11284 0 R/Im770 11285 0 R/Im771 10138 0 R/Im772 11286 0 R/Im773 11287 0 R/Im774 11288 0 R/Im775 11289 0 R/Im776 11290 0 R/Im470 10137 0 R/Im777 11291 0 R/Im471 11292 0 R/Im778 11293 0 R/Im472 10139 0 R/Im779 11294 0 R/Im473 11295 0 R/Im474 11296 0 R/Im475 11297 0 R/Im476 11298 0 R/Im170 11299 0 R/Im477 11300 0 R/Im171 11301 0 R/Im478 11302 0 R/Im172 10142 0 R/Im479 10140 0 R/Im173 11303 0 R/Im174 10144 0 R/Im175 11304 0 R/Im176 11305 0 R/Im177 11306 0 R/Im178 10146 0 R/Im179 11307 0 R/Im780 11308 0 R/Im781 11309 0 R/Im782 11310 0 R/Im783 11311 0 R/Im784 11312 0 R/Im785 11313 0 R/Im786 10150 0 R/Im480 11314 0 R/Im787 11315 0 R/Im481 11316 0 R/Im788 11317 0 R/Im482 11318 0 R/Im789 11319 0 R/Im483 11320 0 R/Im484 10143 0 R/Im485 11321 0 R/Im486 11322 0 R/Im180 11323 0 R/Im487 11324 0 R/Im181 10147 0 R/Im488 10145 0 R/Im182 10148 0 R/Im489 11325 0 R/Im183 10149 0 R/Im184 11326 0 R/Im185 10152 0 R/Im186 11327 0 R/Im187 11328 0 R/Im188 10153 0 R/Im189 10154 0 R/Im790 11329 0 R/Im791 11330 0 R/Im792 11331 0 R/Im793 11332 0 R/Im794 11333 0 R/Im795 11334 0 R/Im796 11335 0 R/Im490 11336 0 R/Im797 11337 0 R/Im491 11338 0 R/Im798 11339 0 R/Im492 11340 0 R/Im799 11341 0 R/Im493 11342 0 R/Im494 11343 0 R/Im495 11344 0 R/Im496 11345 0 R/Im190 10155 0 R/Im497 10151 0 R/Im191 11346 0 R/Im498 11347 0 R/Im192 11348 0 R/Im499 11349 0 R/Im193 10156 0 R/Im194 11350 0 R/Im195 10159 0 R/Im196 11351 0 R/Im197 10160 0 R/Im198 11352 0 R/Im199 11353 0 R/Im0 9734 0 R/Im1 11354 0 R/Im2 11355 0 R/Im3 11356 0 R/Im4 11357 0 R/Im5 11358 0 R/Im6 11359 0 R/Im7 11360 0 R/Im8 11361 0 R/Im9 11362 0 R/Im1600 10098 0 R/Im1601 11363 0 R/Im1602 10099 0 R/Im1603 11364 0 R/Im1604 11365 0 R/Im1605 11366 0 R/Im1606 11367 0 R/Im1607 11368 0 R/Im1300 10094 0 R/Im1608 11369 0 R/Im1301 11370 0 R/Im1609 10105 0 R/Im1302 10095 0 R/Im1303 10100 0 R/Im1304 11371 0 R/Im1305 11372 0 R/Im1306 11373 0 R/Im1000 11374 0 R/Im1307 10102 0 R/Im1001 11375 0 R/Im1308 10103 0 R/Im1002 10007 0 R/Im1309 10104 0 R/Im1003 11376 0 R/Im1004 11377 0 R/Im1005 10009 0 R/Im1006 10010 0 R/Im1007 11378 0 R/Im1008 10011 0 R/Im1009 11379 0 R/Im1610 11380 0 R/Im1611 11381 0 R/Im1612 11382 0 R/Im1613 11383 0 R/Im1614 11384 0 R/Im1615 11385 0 R/Im1616 11386 0 R/Im1617 10106 0 R/Im1310 11387 0 R/Im1618 10107 0 R/Im1311 11388 0 R/Im1619 10172 0 R/Im1312 11389 0 R/Im1313 11390 0 R/Im1314 11391 0 R/Im1315 10108 0 R/Im1316 10110 0 R/Im1010 11392 0 R/Im1317 10111 0 R/Im1011 11393 0 R/Im1318 10112 0 R/Im1012 10012 0 R/Im1319 10113 0 R/Im1013 10013 0 R/Im1014 11394 0 R/Im1015 11395 0 R/Im1016 10016 0 R/Im1017 11396 0 R/Im1018 11397 0 R/Im1019 10017 0 R/Im1620 10058 0 R/Im1621 10173 0 R/Im1622 10174 0 R/Im1623 10175 0 R/Im1624 10176 0 R/Im1625 11398 0 R/Im1626 10177 0 R/Im1627 10178 0 R/Im1320 11399 0 R/Im1628 10180 0 R/Im1321 11400 0 R/Im1629 10188 0 R/Im1322 10179 0 R/Im1323 11401 0 R/Im1324 10181 0 R/Im1325 11402 0 R/Im1326 11403 0 R/Im1020 10018 0 R/Im1327 11404 0 R/Im1021 11405 0 R/Im1328 11406 0 R/Im1022 10019 0 R/Im1329 10183 0 R/Im1023 11407 0 R/Im1024 11408 0 R/Im1025 11409 0 R/Im1026 10185 0 R/Im1027 11410 0 R/Im1028 10186 0 R/Im1029 11411 0 R/Im1630 10189 0 R/Im1631 11412 0 R/Im1632 10191 0 R/Im1633 10192 0 R/Im1634 11413 0 R/Im1635 11414 0 R/Im1636 11415 0 R/Im1637 11416 0 R/Im1330 10184 0 R/Im1638 10198 0 R/Im1331 11417 0 R/Im1639 10199 0 R/Im1332 11418 0 R/Im1333 11419 0 R/Im1334 11420 0 R/Im1335 11421 0 R/Im1336 10193 0 R/Im1030 11422 0 R/Im1337 11423 0 R/Im1031 10187 0 R/Im1338 11424 0 R/Im1032 11425 0 R/Im1339 11426 0 R/Im1033 11427 0 R/Im1034 11428 0 R/Im1035 10194 0 R/Im1036 10195 0 R/Im1037 11429 0 R/Im1038 10196 0 R/Im1039 11430 0 R/Im1640 10200 0 R/Im1641 10201 0 R/Im1642 10202 0 R/Im1643 10203 0 R/Im1644 11431 0 R/Im1645 10190 0 R/Im1646 11432 0 R/Im1647 11433 0 R/Im1340 11434 0 R/Im1648 11435 0 R/Im1341 11436 0 R/Im1649 10213 0 R/Im1342 11437 0 R/Im1343 10204 0 R/Im1344 10205 0 R/Im1345 11438 0 R/Im1346 10206 0 R/Im1040 11439 0 R/Im1347 11440 0 R/Im1041 11441 0 R/Im1348 11442 0 R/Im1042 10197 0 R/Im1349 11443 0 R/Im1043 11444 0 R/Im1044 10207 0 R/Im1045 11445 0 R/Im1046 11446 0 R/Im1047 10208 0 R/Im1048 11447 0 R/Im1049 11448 0 R/Im1650 11449 0 R/Im1651 11450 0 R/Im1652 11451 0 R/Im1653 10214 0 R/Im1654 11452 0 R/Im1655 11453 0 R/Im1656 11454 0 R/Im1657 10225 0 R/Im1350 11455 0 R/Im1658 10226 0 R/Im1351 10215 0 R/Im1659 11456 0 R/Im1352 10216 0 R/Im1353 10217 0 R/Im1354 11457 0 R/Im1355 10232 0 R/Im1356 10218 0 R/Im1050 10210 0 R/Im1357 11458 0 R/Im1051 10211 0 R/Im1358 10219 0 R/Im1052 11459 0 R/Im1359 11460 0 R/Im1053 10220 0 R/Im1054 11461 0 R/Im1055 11462 0 R/Im1056 11463 0 R/Im1057 10222 0 R/Im1058 11464 0 R/Im1059 10223 0 R/Im1660 11465 0 R/Im1661 11466 0 R/Im1662 10227 0 R/Im1663 11467 0 R/Im1664 11468 0 R/Im1665 11469 0 R/Im1666 10240 0 R/Im1667 10230 0 R/Im1360 11470 0 R/Im1668 10244 0 R/Im1361 10221 0 R/Im1669 11471 0 R/Im1362 11472 0 R/Im1363 10228 0 R/Im1364 10229 0 R/Im1365 11473 0 R/Im1366 10231 0 R/Im1060 11474 0 R/Im1367 11475 0 R/Im1061 11476 0 R/Im1368 10233 0 R/Im1062 10234 0 R/Im1369 10271 0 R/Im1063 11477 0 R/Im1064 11478 0 R/Im1065 11479 0 R/Im1066 10236 0 R/Im1067 10237 0 R/Im1068 11480 0 R/Im1069 10238 0 R/Im1670 10241 0 R/Im1671 11481 0 R/Im1672 11482 0 R/Im1673 11483 0 R/Im1674 10242 0 R/Im1675 11484 0 R/Im1676 10245 0 R/Im1677 11485 0 R/Im1370 11486 0 R/Im1678 10253 0 R/Im1371 9899 0 R/Im1679 11487 0 R/Im1372 10243 0 R/Im1373 11488 0 R/Im1374 10246 0 R/Im1375 11489 0 R/Im1376 10260 0 R/Im1070 11490 0 R/Im1377 11491 0 R/Im1071 11492 0 R/Im1378 11493 0 R/Im1072 10239 0 R/Im1379 11494 0 R/Im1073 10248 0 R/Im1074 11495 0 R/Im1075 11496 0 R/Im1076 10250 0 R/Im1077 11497 0 R/Im1078 11498 0 R/Im1079 11499 0 R/Im1680 10254 0 R/Im1681 11500 0 R/Im1682 10255 0 R/Im1683 11501 0 R/Im1684 11502 0 R/Im1685 11503 0 R/Im1686 10256 0 R/Im1687 10258 0 R/Im1380 11504 0 R/Im1688 11505 0 R/Im1381 11506 0 R/Im1689 11507 0 R/Im1382 10249 0 R/Im1383 10257 0 R/Im1384 11508 0 R/Im1385 10259 0 R/Im1386 11509 0 R/Im1080 10251 0 R/Im1387 11510 0 R/Im1081 10252 0 R/Im1388 11511 0 R/Im1082 11512 0 R/Im1389 11513 0 R/Im1083 10261 0 R/Im1084 11514 0 R/Im1085 11515 0 R/Im1086 11516 0 R/Im1087 10262 0 R/Im1088 11517 0 R/Im1089 10264 0 R>>/ColorSpace<</CS10 9682 0 R/CS11 9683 0 R/CS12 9684 0 R/CS13 9685 0 R/CS14 9686 0 R/CS15 9687 0 R/CS16 9688 0 R/CS17 9689 0 R/CS18 9690 0 R/CS19 9691 0 R/CS20 9692 0 R/CS21 9693 0 R/CS22 9694 0 R/CS23 9695 0 R/CS24 9696 0 R/CS25 9697 0 R/CS26 9698 0 R/CS27 9699 0 R/CS28 9700 0 R/CS29 9701 0 R/CS30 9702 0 R/CS31 9703 0 R/CS32 9704 0 R/CS33 9705 0 R/CS34 9706 0 R/CS35 9707 0 R/CS0 9708 0 R/CS1 9709 0 R/CS2 9710 0 R/CS3 9711 0 R/CS4 9712 0 R/CS5 9713 0 R/CS6 9714 0 R/CS7 9715 0 R/CS8 9716 0 R/CS9 9717 0 R>>/Font<</TT0 9676 0 R/TT1 9677 0 R/TT2 9678 0 R/TT3 9679 0 R/TT4 9680 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC/ImageI]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
9662 0 obj
<</Rect[113 658 220 670]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 217 null]/Type/Annot>>
endobj
9663 0 obj
<</Rect[113 627 228 643]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
9664 0 obj
<</Rect[113 610 215 626]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
9665 0 obj
<</Rect[113 593 532 609]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
9666 0 obj
<</Rect[113 576 533 592]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
9667 0 obj
<</Rect[113 559 307 575]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
9668 0 obj
<</Rect[198 472 214 485]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 651 null]/Type/Annot>>
endobj
9669 0 obj
<</Rect[198 443 283 456]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 679 null]/Type/Annot>>
endobj
9670 0 obj
<</Rect[198 388 288 401]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 637 null]/Type/Annot>>
endobj
9671 0 obj
<</Rect[198 374 304 387]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 609 null]/Type/Annot>>
endobj
9672 0 obj
<</Rect[195 289 301 302]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 609 null]/Type/Annot>>
endobj
9673 0 obj
<</Rect[195 275 265 288]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 595 null]/Type/Annot>>
endobj
9674 0 obj
<</Rect[195 261 280 274]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 595 null]/Type/Annot>>
endobj
9675 0 obj
<</Rect[195 247 270 260]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 595 null]/Type/Annot>>
endobj
9676 0 obj
<</Subtype/TrueType/FontDescriptor 9720 0 R/LastChar 233/Widths[250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 278 500 500 500 500 500 500 500 500 500 500 333 333 0 570 570 0 0 722 667 722 722 667 611 778 778 389 500 778 667 944 722 778 611 778 722 556 667 722 722 1000 722 722 0 0 0 0 0 500 0 500 556 444 556 444 333 500 556 278 333 556 278 833 556 500 556 556 444 389 333 556 500 722 500 500 444 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 444]/BaseFont/TimesNewRoman,Bold/FirstChar 32/Encoding/WinAnsiEncoding/Type/Font>>
endobj
9677 0 obj
<</Subtype/TrueType/FontDescriptor 9722 0 R/LastChar 121/Widths[250 0 0 0 0 0 0 0 333 333 0 0 250 333 250 278 500 500 500 500 500 500 500 500 500 500 333 0 0 0 0 0 0 611 611 667 722 611 611 0 722 333 444 667 556 833 667 722 611 0 611 500 556 722 0 0 0 0 0 0 0 0 0 0 0 500 500 444 500 444 278 500 500 278 278 0 278 722 500 500 500 500 389 389 278 500 444 667 444 444]/BaseFont/TimesNewRoman,Italic/FirstChar 32/Encoding/WinAnsiEncoding/Type/Font>>
endobj
9678 0 obj
<</Subtype/TrueType/FontDescriptor 9718 0 R/LastChar 78/Widths[278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 722]/BaseFont/Arial,Italic/FirstChar 32/Encoding/WinAnsiEncoding/Type/Font>>
endobj
9679 0 obj
<</Subtype/TrueType/FontDescriptor 9719 0 R/LastChar 233/Widths[278 0 0 0 0 0 0 0 333 333 0 584 278 333 278 278 556 556 556 556 556 556 556 556 556 556 0 0 0 584 584 0 0 667 667 722 722 667 611 0 722 278 500 667 556 833 722 778 667 778 722 667 611 722 667 944 0 667 611 0 0 0 0 556 0 556 556 500 556 556 278 556 556 222 222 500 222 833 556 556 556 556 333 500 278 556 500 722 500 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 556]/BaseFont/Arial/FirstChar 32/Encoding/WinAnsiEncoding/Type/Font>>
endobj
9680 0 obj
<</Subtype/TrueType/FontDescriptor 9721 0 R/LastChar 252/Widths[250 0 0 500 0 0 0 0 333 333 0 564 250 333 250 278 500 500 500 500 500 500 500 500 500 500 278 278 0 0 0 0 0 722 667 667 722 611 556 722 722 333 389 722 611 889 722 722 556 722 667 556 611 722 722 944 722 722 611 0 0 0 0 500 0 444 500 444 500 444 333 500 500 278 278 500 278 778 500 500 500 500 333 389 278 500 500 722 500 500 444 0 0 0 541 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 333 333 444 444 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 444 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500]/BaseFont/TimesNewRoman/FirstChar 32/Encoding/WinAnsiEncoding/Type/Font>>
endobj
9681 0 obj
<</TK true/OPM 0/BM/Normal/HT/Default/CA 1/OP false/SMask/None/BG2/Default/ca 1/AIS false/op false/TR2/Default/Type/ExtGState/SA false/UCR2/Default/SM 0.0200043>>
endobj
9682 0 obj
[/Indexed 9708 0 R 3 10307 0 R]
endobj
9683 0 obj
[/Indexed 9708 0 R 3 10289 0 R]
endobj
9684 0 obj
[/Indexed 9708 0 R 3 10296 0 R]
endobj
9685 0 obj
[/Indexed 9708 0 R 3 10287 0 R]
endobj
9686 0 obj
[/Indexed 9708 0 R 3 10301 0 R]
endobj
9687 0 obj
[/Indexed 9708 0 R 2 10300 0 R]
endobj
9688 0 obj
[/Indexed 9708 0 R 3 10310 0 R]
endobj
9689 0 obj
[/Indexed 9708 0 R 3 10303 0 R]
endobj
9690 0 obj
[/Indexed 9708 0 R 1 10311 0 R]
endobj
9691 0 obj
[/Indexed 9708 0 R 3 10295 0 R]
endobj
9692 0 obj
[/Indexed 9708 0 R 3 10298 0 R]
endobj
9693 0 obj
[/Indexed 9708 0 R 3 10309 0 R]
endobj
9694 0 obj
[/Indexed 9708 0 R 3 10288 0 R]
endobj
9695 0 obj
[/Indexed 9708 0 R 3 10302 0 R]
endobj
9696 0 obj
[/Indexed 9708 0 R 3 10297 0 R]
endobj
9697 0 obj
[/Indexed 9708 0 R 3 10304 0 R]
endobj
9698 0 obj
[/Indexed 9708 0 R 2 10290 0 R]
endobj
9699 0 obj
[/Indexed 9708 0 R 3 10299 0 R]
endobj
9700 0 obj
[/Indexed 9708 0 R 3 10291 0 R]
endobj
9701 0 obj
[/Indexed 9708 0 R 3 10305 0 R]
endobj
9702 0 obj
[/Indexed 9708 0 R 3 10317 0 R]
endobj
9703 0 obj
[/Indexed 9708 0 R 3 10293 0 R]
endobj
9704 0 obj
[/Indexed 9708 0 R 3 10280 0 R]
endobj
9705 0 obj
[/Indexed 9708 0 R 3 10281 0 R]
endobj
9706 0 obj
[/Indexed 9708 0 R 3 10282 0 R]
endobj
9707 0 obj
[/Indexed 9708 0 R 3 10283 0 R]
endobj
9708 0 obj
[/ICCBased 10279 0 R]
endobj
9709 0 obj
[/Indexed 9708 0 R 3 10284 0 R]
endobj
9710 0 obj
[/Indexed 9708 0 R 3 10285 0 R]
endobj
9711 0 obj
[/Indexed 9708 0 R 3 10286 0 R]
endobj
9712 0 obj
[/Indexed 9708 0 R 3 10316 0 R]
endobj
9713 0 obj
[/Indexed 9708 0 R 3 10306 0 R]
endobj
9714 0 obj
[/Indexed 9708 0 R 3 10292 0 R]
endobj
9715 0 obj
[/Indexed 9708 0 R 3 10312 0 R]
endobj
9716 0 obj
[/Indexed 9708 0 R 3 10294 0 R]
endobj
9717 0 obj
[/Indexed 9708 0 R 3 10308 0 R]
endobj
9718 0 obj
<</StemV 0/FontName/Arial,Italic/Flags 96/Descent -211/FontBBox[-517 -325 1082 1025]/Ascent 905/CapHeight 0/Type/FontDescriptor/ItalicAngle -15>>
endobj
9719 0 obj
<</StemV 94/FontName/Arial/Flags 32/Descent -211/FontBBox[-665 -325 2000 1006]/Ascent 905/CapHeight 718/XHeight 515/Type/FontDescriptor/ItalicAngle 0>>
endobj
9720 0 obj
<</StemV 160/FontName/TimesNewRoman,Bold/Flags 34/Descent -216/FontBBox[-558 -307 2000 1026]/Ascent 891/CapHeight 656/XHeight 0/Type/FontDescriptor/ItalicAngle 0>>
endobj
9721 0 obj
<</StemV 94/FontName/TimesNewRoman/Flags 34/Descent -216/FontBBox[-568 -307 2000 1007]/Ascent 891/CapHeight 656/XHeight 0/Type/FontDescriptor/ItalicAngle 0>>
endobj
9722 0 obj
<</StemV 83.318/FontName/TimesNewRoman,Italic/Flags 98/Descent -216/FontBBox[-498 -307 1120 1023]/Ascent 891/CapHeight 656/XHeight 0/Type/FontDescriptor/ItalicAngle -15>>
endobj
9723 0 obj
<</TR2/Default/Type/ExtGState/SA false/SM 0.02>>
endobj
9724 0 obj
<</Length 3281/Filter/FlateDecode>>stream
+HWێ7}WQZD-/ \p^`<<b,M$I~VwH"ֆMbap~^Owje|X,
Y[=owv#cpu,1F4B9M~2_NOq, _='F'sP8YXx:?ukjARA_'_n-;q9}ҽ\5h,a6]X:mM.iiclsʯ3/)>
D!vs$b8dYYm)ݡIp+i!oR2g
,,?cMCK +1Ƿ]i{oI$dü(0\aRT[WW^hcP5KYjzg^5r:'5L8#P((1TC;d+%܀nԷo!s19˲K,h$ +}Jih +BP)="l%*0OFkC'tʸ',j|?L_fs9=[ã33%b5__/OѲ0w/5N'*$t8
W.:R^*zTKz=_~mWѧa{,Wͩr(S",lHgΏiBHa9\OBbzq +o'?m]AV +_4ttl &5H#.?7o,vVxkvp43ODXêZA~+8t`i67lsҩe7n]1wBOݷ.fs6Ogjj3LޢCaӉ3WHzxFgO@'5 +6S]ˆtۻ旆=H&4Q;DaL!|"Hv?%Q
L7ݧy!2sS,^ӗfHI˗ 會B0><shgż +_aO~1 +A0 xpQ+(K6, +9=.W +` +3`tv".c&I`]OB7?["P7\I)[P7QHFxdqZ4T t]%PbnUJ + $ȻN#;G!c +⌃Nuw4&zus^SXdgH+&@ +endstream
endobj
9725 0 obj
<</Length 2513/Filter/FlateDecode>>stream
+H;$'Y]A
O^9>b;]_P*<矿K_WJ\|Ub +\\^\K +P|X +U{- +ʹ^"vP|ư`2
hHf&R>C>5^c1W-Ha[W`!m$>6.Fh_6O-fN9/6x(}С&hƣd|2& +=k]o3xăDPb/0=Ds.#=##3Syyohyo\?gE"íU`ހ8%M;;pWr|xAY3?]xсH `ݹmz 4 +@DG/Ai"S!-`0 + +P{pؙh@سMA\),XQb +k<jq- Z*@F-_$@j,BJ? +.@ +L +P@BA219ۉ 4i>WBT(x155zuH@'[cR(`;,
Ȣ~ +pBрsP4`;,n%w7p_o7B3H pрd> dY(@& +#< +N;Y(8y4 + tiĹC-dP`7, + +G
8y4v"#l_P +endstream
endobj
9726 0 obj
<</Length 2139/Filter/FlateDecode>>stream
+H;6E@cO,g ݭrrZO>K[ؖZSZmkR~!/y]c-_폿SM__X5m ߬[ +Q + +\QNKl[S};p +(H-e渤^ztt +o}sd8y }$$$[| +
8έ +endstream
endobj
9727 0 obj
<</Length 2395/Filter/FlateDecode>>stream
+H;9E}VoY؊ٿ`I$.ȼNE8 +w:<`XuN@Tj}<`t*< +xA(N +\ $PBA +A(I Z +BA +xA( + +'(PP8 _aO^&O(8Pp<h@w[+"i^o4ge +V !R9WB} +xA(I P +xA(@(1OR^ +2Zp +#1{)۷H + +ň +l\PІm
gj:'2ބʮb,Z/R$;jI+XB~=}`-{!S/$V m^{!yCPayTVy8np鑐[!zC1 $A q>baF?B>!_{a:ICM`<Mi>ЃB?Szܳ
`^f |r-Ђ!0<NEB+&lFbN67\_"+5¶?$`oh[>IC +!h-67`L>C*QGBh> BҲ]A` +endstream
endobj
9728 0 obj
<</Length 2850/Filter/FlateDecode>>stream
+HKd 罊Zz?x5x|Ou$(ѓԗ~~_ۻR__I˽Z|nOn9߾BO,. %DO.%N(a|V Jn!8dNf5<mK$+A +ޢlnQ{:a#*2ꄶS$E_;|1І=(/NȠ +*>(ٚd +564曄\c!c"{{`pjnzuB:dB8p50@5' } +9&)Ty'%# +G
#hNlP(C7?C%j +L +-~CoBhf'u/쳁XBKܩHP1
dDE{`2 $7S +5[('*|H +(R@7}Y +>]_I2f +*73` ,SqyP0 +S7 +ʩג𡜻)'9Ce8 Nc~.[j +X} wҲHCHtYd!T46r Ahy7 (D^뗉\S +D_s4xEH;s$~lUsU=Xz"} +><?gB~>]<)y~B~a᠑:L+-/Dy͔YaE"yLj +endstream
endobj
9729 0 obj
<</Length 2395/Filter/FlateDecode>>stream
+H;r.7 +|8&5'=I<DJ p|~_/ˏB=bO>/Bx=5O ^$AWskA& _ BxJg'1YN4`DpmdM@*šzO]$zf@cD@ݦu&%BNF*94:F +SyݚHH~[ +y^`Yzb/lrARP
=_ +Jx^[Qpl0j!Zm@}0&PX +p +. +8F$)~sbÖqKoi#;~K"b|",FUGu~&HX"GZp>]H M Q[Qx@MXʠ&2b Yo*FVU7aC +1pX7ľ뵜TDJhUgy| h}"VJVym}h9w;m| + a}D_zECF93umgp&gJ˙`3-dLcbV)<jҍj&j~"jf9˰uH>"Nttql/A;~jv ޫف;uWdp`'(njB8_V;8>04*R$hOwGC {k> +?RZC!T(Ư:Z
Ώ +'!y3f?&tv,=.g`%S\tt8c$t3sj)$tRƌ+ +endstream
endobj
9730 0 obj
<</Subtype/Type0/DescendantFonts[10315 0 R]/BaseFont/PHNCOH+SymbolMT/ToUnicode 9731 0 R/Encoding/Identity-H/Type/Font>>
endobj
9731 0 obj
<</Length 238/Filter/FlateDecode>>stream
+HTPn {lDj*Y\Vn.R
hc%ˏͩ.`ZL;o 0A8<T3iCmFgqL \-puU Er~^~}gc}JŞ㫎ozD했 W\mSIBTy^zvչ7?ح[ +U!#)\Q_OeMS<אf&!K<bIR` +
+endstream
endobj
9732 0 obj
<</Length 2267/Filter/FlateDecode>>stream
+H;]+sF@x7azelUI$ǿGp-rDžZ~E_|???|wP8]T +> + +6-r+as +畟9#X1vm՚=Al +,VC˦P@))T̾2u85_gѫ;zx +B3n@v1211<bU +VW!\mez cق +0Ou+2T+$}o\#fW1?wŀe{_x&̺tbV * QBp1igU$̪WeqBG쨮`r5/"I*bGK@ +"je+B_iꕸa|+N1LaC]MJȿ/ +endstream
endobj
9733 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9712 0 R/Width 41/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
9734 0 obj
<</Subtype/Image/Length 5999/Filter/DCTDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 166/Height 166/Type/XObject>>stream
+ +$$''$$53335;;;;;;;;;;
%% ## ((%%((22022;;;;;;;;;; + + +I$JI$RI$I%)$IJI$R֏ +@A5rc9N&Z$u.љ`4r +Y +u{+ +/ozp?>bD\f6~rA%>o$q>zWrCf'T:lx|S + +I$JI$R,Z2ߍe6i\}N.V.C5 cc&m6s\(ޣI
kF1,y#`è=%麫mԼY]s u60\NVð9{:=އIv +93=<&?DI$I$I%)$IJI%t}}=kif;E!)%&R +><2cOi.P?C +s +
+endstream
endobj
9735 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hj + +
+endstream
endobj
9736 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9704 0 R/Width 40/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
9737 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H29л6" +
+endstream
endobj
9738 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H2;aT" +
+endstream
endobj
9739 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Ha
+
+endstream
endobj
9740 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+o6" +
+endstream
endobj
9741 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HZfY" +
+endstream
endobj
9742 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M@W +
+endstream
endobj
9743 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hjck
" +
+endstream
endobj
9744 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
9745 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
9746 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H +:aKMh[ 0 +
+endstream
endobj
9747 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+Ha+M0
+
+endstream
endobj
9748 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Hr=a+MHhk 0 +
+endstream
endobj
9749 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+Ha+M05 +
+endstream
endobj
9750 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H;aKMh[ 0 +
+endstream
endobj
9751 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M@W +
+endstream
endobj
9752 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H:6{#O0 +
+endstream
endobj
9753 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H +8aKMhk 0 +
+endstream
endobj
9754 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H2a+MHh{ 0 +
+endstream
endobj
9755 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Ha+MHh[ 0 +
+endstream
endobj
9756 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh
+
+endstream
endobj
9757 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr=a+Mw?0 +
+endstream
endobj
9758 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+MoԷ?0 +
+endstream
endobj
9759 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H +8aKMh; 0 +
+endstream
endobj
9760 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H8a+MHh{ 0 +
+endstream
endobj
9761 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H8a+Mh[ 0 +
+endstream
endobj
9762 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H=a+M6@ +
+endstream
endobj
9763 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+oV= +
+endstream
endobj
9764 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Motv<0 +
+endstream
endobj
9765 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr=a+Mw>0 +
+endstream
endobj
9766 0 obj
<</Subtype/Image/Length 23/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
9767 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Ha+MHhk 0 +
+endstream
endobj
9768 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Hr9a+M
+
+endstream
endobj
9769 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh[ 0 +
+endstream
endobj
9770 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H<a+MHh[ 0 +
+endstream
endobj
9771 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Ha+MHh[ 0 +
+endstream
endobj
9772 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+oV= +
+endstream
endobj
9773 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+M +
+endstream
endobj
9774 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh
+
+endstream
endobj
9775 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H=a+M6" +
+endstream
endobj
9776 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh{ 0 +
+endstream
endobj
9777 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh- +
+endstream
endobj
9778 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+Ha+Mh; 0 +
+endstream
endobj
9779 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
9780 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+] +
+endstream
endobj
9781 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H2;a+Mh[ 0 +
+endstream
endobj
9782 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H2a+Mh; 0 +
+endstream
endobj
9783 0 obj
<</Subtype/Image/Length 33/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+oyf +m~D +
+endstream
endobj
9784 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H8aKM6" +
+endstream
endobj
9785 0 obj
<</Subtype/Image/Length 35/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+Mh+ɝe +
+endstream
endobj
9786 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+}0 +
+endstream
endobj
9787 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+oV= +
+endstream
endobj
9788 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ + +
+endstream
endobj
9789 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+oD6<0 +
+endstream
endobj
9790 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mo<0 +
+endstream
endobj
9791 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+HRa+Mp +
+endstream
endobj
9792 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh[ 0 +
+endstream
endobj
9793 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+HRa+M
+
+endstream
endobj
9794 0 obj
<</Subtype/Image/Length 35/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+H2;a+Mh+mc +
+endstream
endobj
9795 0 obj
<</Subtype/Image/Length 33/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+ףv26o +
+endstream
endobj
9796 0 obj
<</Subtype/Image/Length 41/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+o72B@ .æ7@` +
+endstream
endobj
9797 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6" +
+endstream
endobj
9798 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr?a+Mm +
+endstream
endobj
9799 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
9800 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o7?0 +
+endstream
endobj
9801 0 obj
<</Subtype/Image/Length 44/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+MԎނ؛^oy
@` +
+endstream
endobj
9802 0 obj
<</Subtype/Image/Length 44/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+H2aKoxfa+oUw2@Mo +
+endstream
endobj
9803 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Ha+M0b" +
+endstream
endobj
9804 0 obj
<</Subtype/Image/Length 40/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 11/Height 1/Type/XObject>>stream
+H2>a+M6[-A\zD +
+endstream
endobj
9805 0 obj
<</Subtype/Image/Length 46/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+H2=a+M6l[M .WJ߰l{D +
+endstream
endobj
9806 0 obj
<</Subtype/Image/Length 40/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+=o F}{+ +
+endstream
endobj
9807 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+M`~
` +
+endstream
endobj
9808 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HJ<a+M6" +
+endstream
endobj
9809 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6" +
+endstream
endobj
9810 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;w +
+endstream
endobj
9811 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H?a+M->0 +
+endstream
endobj
9812 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+0 +
+endstream
endobj
9813 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6@ +
+endstream
endobj
9814 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H +;aKM6b +# +
+endstream
endobj
9815 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+mY6b +
+endstream
endobj
9816 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+ b# +
+endstream
endobj
9817 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HtW^1l~D +
+endstream
endobj
9818 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H>aKM6" +
+endstream
endobj
9819 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H*a+M6b +T +
+endstream
endobj
9820 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H<a+=0 +
+endstream
endobj
9821 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr?a+MoԷ?0 +
+endstream
endobj
9822 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+HRa+MHhk 0 +
+endstream
endobj
9823 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+~0ɰ +
+endstream
endobj
9824 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6@ +
+endstream
endobj
9825 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+M` +
+endstream
endobj
9826 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Hr=a+M6R +c +
+endstream
endobj
9827 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6" +
+endstream
endobj
9828 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H2;a+M` +
+endstream
endobj
9829 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H> +
+endstream
endobj
9830 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8>`] +
+endstream
endobj
9831 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +; +
+endstream
endobj
9832 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H += +
+endstream
endobj
9833 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2 +
+endstream
endobj
9834 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HJ< +
+endstream
endobj
9835 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HJ= +
+endstream
endobj
9836 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hr< +
+endstream
endobj
9837 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H9 +
+endstream
endobj
9838 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2 +
+endstream
endobj
9839 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H8 +
+endstream
endobj
9840 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hr= +
+endstream
endobj
9841 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2? +
+endstream
endobj
9842 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HR;cֿ" +
+endstream
endobj
9843 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr:f +
+endstream
endobj
9844 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9705 0 R/Width 39/Height 1/Type/XObject>>stream
+Hb`d" +
+endstream
endobj
9845 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+M" +
+endstream
endobj
9846 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=a+Ï0 +
+endstream
endobj
9847 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbm +Z{ +
+endstream
endobj
9848 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H>aKͯ" +
+endstream
endobj
9849 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<Ncm +
+endstream
endobj
9850 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9706 0 R/Width 38/Height 1/Type/XObject>>stream
+Hb`d" +
+endstream
endobj
9851 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H=aKm| +
+endstream
endobj
9852 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H28r +
+endstream
endobj
9853 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H!= +
+endstream
endobj
9854 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HJ8 +
+endstream
endobj
9855 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H:+@ +
+endstream
endobj
9856 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H<.{o\ +
+endstream
endobj
9857 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H&{
>0 +
+endstream
endobj
9858 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRlm +
+endstream
endobj
9859 0 obj
<</Subtype/Image/Length 20/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9707 0 R/Width 36/Height 1/Type/XObject>>stream
+Hb`db +
+endstream
endobj
9860 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HqS +
+endstream
endobj
9861 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H+@ +
+endstream
endobj
9862 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hs@ +
+endstream
endobj
9863 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HZ3@ +
+endstream
endobj
9864 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hj +
+endstream
endobj
9865 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +>aK#0 +
+endstream
endobj
9866 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr<a+=0 +
+endstream
endobj
9867 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +>a+Mo<0 +
+endstream
endobj
9868 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +>aK +
+endstream
endobj
9869 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+]0 +
+endstream
endobj
9870 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +8a+o<0 +
+endstream
endobj
9871 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
9872 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HF{m +
+endstream
endobj
9873 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +?Nwm +
+endstream
endobj
9874 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&= +
+endstream
endobj
9875 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr?a+M<0 +
+endstream
endobj
9876 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
9877 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
9878 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;a+o6?0 +
+endstream
endobj
9879 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+
oSO0 +
+endstream
endobj
9880 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2:a+oն>0 +
+endstream
endobj
9881 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+02^ +
+endstream
endobj
9882 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +?^l- +
+endstream
endobj
9883 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HJ:iM +
+endstream
endobj
9884 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR|m +
+endstream
endobj
9885 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M@ +
+endstream
endobj
9886 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
9887 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+ض" +
+endstream
endobj
9888 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:e +
+endstream
endobj
9889 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HpW
+
+endstream
endobj
9890 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;eM +
+endstream
endobj
9891 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 11/Height 1/Type/XObject>>stream
+H:a+M7@` +
+endstream
endobj
9892 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 11/Height 1/Type/XObject>>stream
+Ha+Mw@` +
+endstream
endobj
9893 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+H2:a+Mhk 0 +
+endstream
endobj
9894 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+Ha+Mh[ 0 +
+endstream
endobj
9895 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+H?a+Mhk 0 +
+endstream
endobj
9896 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+HRa+Mh; 0 +
+endstream
endobj
9897 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+H;aKMіw@` +
+endstream
endobj
9898 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HR +
+endstream
endobj
9899 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:h] + +
+endstream
endobj
9900 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&`] +
+endstream
endobj
9901 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H2;a+Mh 0 +
+endstream
endobj
9902 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HR +
+endstream
endobj
9903 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H?a+Mh 0 +
+endstream
endobj
9904 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HR +
+endstream
endobj
9905 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H?aKMPЖw@` +
+endstream
endobj
9906 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Hr8a+M- +
+endstream
endobj
9907 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H>aKMh +
+endstream
endobj
9908 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H:a+M0
+
+endstream
endobj
9909 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H<a+Mp +
+endstream
endobj
9910 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hx#W_l~
D +
+endstream
endobj
9911 0 obj
<</Subtype/Image/Length 23/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hja+ +
+endstream
endobj
9912 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hr8Ƨ3/
+
+endstream
endobj
9913 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
9914 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Hʿa+M` +6 +
+endstream
endobj
9915 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9709 0 R/Width 36/Height 1/Type/XObject>>stream
+Hb`d" +
+endstream
endobj
9916 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
9917 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hz@ +
+endstream
endobj
9918 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H{3@ +
+endstream
endobj
9919 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZv[ +
+endstream
endobj
9920 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr;Num +
+endstream
endobj
9921 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9710 0 R/Width 38/Height 1/Type/XObject>>stream
+Hb`d" +
+endstream
endobj
9922 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H2>a+M" +
+endstream
endobj
9923 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
9924 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2 +
+endstream
endobj
9925 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +:a+M +
+endstream
endobj
9926 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;Vum +
+endstream
endobj
9927 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H2>a+M" +
+endstream
endobj
9928 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?N}m +
+endstream
endobj
9929 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HR +
+endstream
endobj
9930 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H29 +
+endstream
endobj
9931 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H;a+M0
+
+endstream
endobj
9932 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9711 0 R/Width 39/Height 1/Type/XObject>>stream
+Hb`d" +
+endstream
endobj
9933 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hb +
+endstream
endobj
9934 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H29`[#<~" +
+endstream
endobj
9935 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2: +
+endstream
endobj
9936 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=a+Motw>0 +
+endstream
endobj
9937 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
9938 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?~c +
+endstream
endobj
9939 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9712 0 R/Width 40/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
9940 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
9941 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9713 0 R/Width 40/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
9942 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o%? +
+endstream
endobj
9943 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H?a+oD7>0 +
+endstream
endobj
9944 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr:a+0 +
+endstream
endobj
9945 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M@W +
+endstream
endobj
9946 0 obj
<</Subtype/Image/Length 36/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H:_OgXR|M>y +
+endstream
endobj
9947 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+= +
+endstream
endobj
9948 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Hr>a+Mh[ 0 +
+endstream
endobj
9949 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H;aKM" +
+endstream
endobj
9950 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6" +
+endstream
endobj
9951 0 obj
<</Subtype/Image/Length 36/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H:˩_/~`Xm˫e?{ +
+endstream
endobj
9952 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+Motv<0 +
+endstream
endobj
9953 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H=a+M6" +
+endstream
endobj
9954 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6" +
+endstream
endobj
9955 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H>a+M->0 +
+endstream
endobj
9956 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
9957 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hr=a+M6" +
+endstream
endobj
9958 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6" +
+endstream
endobj
9959 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Ï0 +
+endstream
endobj
9960 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+M6" +
+endstream
endobj
9961 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H2>a+M6" +
+endstream
endobj
9962 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H?a+M<0 +
+endstream
endobj
9963 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+cN0 +
+endstream
endobj
9964 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+M" +
+endstream
endobj
9965 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M@ +
+endstream
endobj
9966 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H2>a+Mh; 0 +
+endstream
endobj
9967 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hr9a+M" +
+endstream
endobj
9968 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M6@ +
+endstream
endobj
9969 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M@W +
+endstream
endobj
9970 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
9971 0 obj
<</Subtype/Image/Length 28/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+HRaKofXB + +
+endstream
endobj
9972 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+Mo<0 +
+endstream
endobj
9973 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H:aKM@h# +0 +
+endstream
endobj
9974 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hba+M<0 +
+endstream
endobj
9975 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H<a+M6@ +
+endstream
endobj
9976 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H2;a+M@W +
+endstream
endobj
9977 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H<a+Mw>0 +
+endstream
endobj
9978 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+0 +
+endstream
endobj
9979 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H?a+M" +
+endstream
endobj
9980 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+M` +
+endstream
endobj
9981 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H=a+Mh- +
+endstream
endobj
9982 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hr<a+M@W +
+endstream
endobj
9983 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H +<aK-wf +> +
+endstream
endobj
9984 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H?aKM6" +
+endstream
endobj
9985 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+Mw?0 +
+endstream
endobj
9986 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+o<0 +
+endstream
endobj
9987 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+m6@ +
+endstream
endobj
9988 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+HRa+
N?+ +
+endstream
endobj
9989 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2;a+od7?0 +
+endstream
endobj
9990 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+Mփ@ +
+endstream
endobj
9991 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H*a+Mwf +q +
+endstream
endobj
9992 0 obj
<</Subtype/Image/Length 27/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Hb6?@` +
+endstream
endobj
9993 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+HJ:aKMh[ 0 +
+endstream
endobj
9994 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+0 + +
+endstream
endobj
9995 0 obj
<</Subtype/Image/Length 28/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+Ha+M`7@` +
+endstream
endobj
9996 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M@ +
+endstream
endobj
9997 0 obj
<</Subtype/Image/Length 44/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+M6r?.&0kko6@ +
+endstream
endobj
9998 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+M`- +
+endstream
endobj
9999 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+7" +
+endstream
endobj
10000 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HZp3_1l|D +
+endstream
endobj
10001 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10002 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+M@ +
+endstream
endobj
10003 0 obj
<</Subtype/Image/Length 44/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+Mwg>noyey-w@` +
+endstream
endobj
10004 0 obj
<</Subtype/Image/Length 19/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+d` +
+endstream
endobj
10005 0 obj
<</Subtype/Image/Length 40/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Hq+o$m|%
@` +
+endstream
endobj
10006 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Ha+C[@ +
+endstream
endobj
10007 0 obj
<</Subtype/Image/Length 35/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+Mh+oOg +
+endstream
endobj
10008 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr?a+0 +
+endstream
endobj
10009 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H:a+M`- +
+endstream
endobj
10010 0 obj
<</Subtype/Image/Length 36/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 11/Height 1/Type/XObject>>stream
+H2:a+M ĸ7l\o +
+endstream
endobj
10011 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Hr9a+Mh[ 0 +
+endstream
endobj
10012 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+M` +
+endstream
endobj
10013 0 obj
<</Subtype/Image/Length 31/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 12/Height 1/Type/XObject>>stream
+Ha+#Mh[ 0 +
+endstream
endobj
10014 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+Hp#W`h[ 0 + +
+endstream
endobj
10015 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+M6@ +
+endstream
endobj
10016 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh
+
+endstream
endobj
10017 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+(B +
+endstream
endobj
10018 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 11/Height 1/Type/XObject>>stream
+Ha+Mw@` +
+endstream
endobj
10019 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Hr;a+Mhk 0 +
+endstream
endobj
10020 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+}0 +
+endstream
endobj
10021 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10022 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H8 +
+endstream
endobj
10023 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8Nym +
+endstream
endobj
10024 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRv] +
+endstream
endobj
10025 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H*aM +
+endstream
endobj
10026 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?n +
+endstream
endobj
10027 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9714 0 R/Width 41/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10028 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:t= +
+endstream
endobj
10029 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HR +
+endstream
endobj
10030 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?rm +
+endstream
endobj
10031 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;Nam +
+endstream
endobj
10032 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hs] + +
+endstream
endobj
10033 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRvm +
+endstream
endobj
10034 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9715 0 R/Width 42/Height 1/Type/XObject>>stream
+Hb`d" +03 +
+endstream
endobj
10035 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +?yM +
+endstream
endobj
10036 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HR +
+endstream
endobj
10037 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr=Vnm +
+endstream
endobj
10038 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRu] +
+endstream
endobj
10039 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9716 0 R/Width 42/Height 1/Type/XObject>>stream
+Hb`d" +03 +
+endstream
endobj
10040 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10041 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HJem +U +
+endstream
endobj
10042 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr<uM +
+endstream
endobj
10043 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10044 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Fmm +
+endstream
endobj
10045 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9717 0 R/Width 43/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10046 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10047 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hq +
+endstream
endobj
10048 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9682 0 R/Width 43/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10049 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+oLv?0 +
+endstream
endobj
10050 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+Mo<0 +
+endstream
endobj
10051 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +9Ngm +
+endstream
endobj
10052 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10053 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+0 +
+endstream
endobj
10054 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HR +
+endstream
endobj
10055 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9683 0 R/Width 43/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10056 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?w +
+endstream
endobj
10057 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9684 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10058 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<k +
+endstream
endobj
10059 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2 + +
+endstream
endobj
10060 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9685 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10061 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10062 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2> +
+endstream
endobj
10063 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&p] +
+endstream
endobj
10064 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9686 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10065 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2; +
+endstream
endobj
10066 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hzm +
+endstream
endobj
10067 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10068 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10069 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10070 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H:+@ +endstream
endobj
10071 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HʹuM +
+endstream
endobj
10072 0 obj
<</Subtype/Image/Length 17/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9687 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`$01 +
+endstream
endobj
10073 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9695 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10074 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?qc +
+endstream
endobj
10075 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9688 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10076 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbt +=j +
+endstream
endobj
10077 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?xm +
+endstream
endobj
10078 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hp; +
+endstream
endobj
10079 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H}S +
+endstream
endobj
10080 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZs +
+endstream
endobj
10081 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9696 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10082 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +;Nim +
+endstream
endobj
10083 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2a
+Y +
+endstream
endobj
10084 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9689 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10085 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Vim +
+endstream
endobj
10086 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbj +Eo +
+endstream
endobj
10087 0 obj
<</Subtype/Image/Length 17/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9690 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb` 02 +
+endstream
endobj
10088 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HR[<0 +
+endstream
endobj
10089 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +<^|- +
+endstream
endobj
10090 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;0 +
+endstream
endobj
10091 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H>a+0 +
+endstream
endobj
10092 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9691 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10093 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+}0 +
+endstream
endobj
10094 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9692 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10095 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +>a˔s-w=0 +
+endstream
endobj
10096 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:x] + +
+endstream
endobj
10097 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o?0 +
+endstream
endobj
10098 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9697 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10099 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H29qӫU>[zD +
+endstream
endobj
10100 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9693 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10101 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr;y +
+endstream
endobj
10102 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H:+@ +
+endstream
endobj
10103 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H:+@ +
+endstream
endobj
10104 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9694 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10105 0 obj
<</Subtype/Image/Length 17/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9698 0 R/Width 45/Height 1/Type/XObject>>stream
+Hb`$01 +
+endstream
endobj
10106 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:d] + +
+endstream
endobj
10107 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr=Nqm +
+endstream
endobj
10108 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H26z] +
+endstream
endobj
10109 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZvs +
+endstream
endobj
10110 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H:+@ +
+endstream
endobj
10111 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H+ +
+endstream
endobj
10112 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H+@ +
+endstream
endobj
10113 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H? +
+endstream
endobj
10114 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H*a+M +H +
+endstream
endobj
10115 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8a+oD7>0 +
+endstream
endobj
10116 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hr8 +
+endstream
endobj
10117 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hʾ +
+endstream
endobj
10118 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H*a+M" +
+endstream
endobj
10119 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+M
v=0 +
+endstream
endobj
10120 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+MoԷ?0 +
+endstream
endobj
10121 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8a+Mm +
+endstream
endobj
10122 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ͯ=0 +
+endstream
endobj
10123 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HJ< +
+endstream
endobj
10124 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hʹ +
+endstream
endobj
10125 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2= +
+endstream
endobj
10126 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10127 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H>a+M6@ +
+endstream
endobj
10128 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H<a+}0 +
+endstream
endobj
10129 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=a+o7>0 +
+endstream
endobj
10130 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H? +
+endstream
endobj
10131 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10132 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10133 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:+ +
+endstream
endobj
10134 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mw?0 +
+endstream
endobj
10135 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H= +
+endstream
endobj
10136 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H= +
+endstream
endobj
10137 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=a+M-<0 +
+endstream
endobj
10138 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2?a+oV= +
+endstream
endobj
10139 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+}0 +
+endstream
endobj
10140 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+}0 +
+endstream
endobj
10141 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hja+ +
+endstream
endobj
10142 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +9 +
+endstream
endobj
10143 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr=a+Mov<0 +
+endstream
endobj
10144 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H;a+M` +3 +
+endstream
endobj
10145 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H29a+0 +
+endstream
endobj
10146 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H8a+M` +* +
+endstream
endobj
10147 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H*aKM@h= +8 +
+endstream
endobj
10148 0 obj
<</Subtype/Image/Length 35/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H8;]o6;# +
+endstream
endobj
10149 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+HJ:a+Mp +
+endstream
endobj
10150 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H?a+->0 +
+endstream
endobj
10151 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o=0 +
+endstream
endobj
10152 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Hr?a+M` +
+endstream
endobj
10153 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H +;a+M` + +
+endstream
endobj
10154 0 obj
<</Subtype/Image/Length 35/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H?;=o6b;c +
+endstream
endobj
10155 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hr> +
+endstream
endobj
10156 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H +=aKMh +
+endstream
endobj
10157 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mov<0 +
+endstream
endobj
10158 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H9a+ +
+endstream
endobj
10159 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr:a+MoԷ?0 +
+endstream
endobj
10160 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H=a+M`5 +
+endstream
endobj
10161 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+HJ9a+M0= +
+endstream
endobj
10162 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Hb
m~D +
+endstream
endobj
10163 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H;a+M0
+
+endstream
endobj
10164 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mov<0 +
+endstream
endobj
10165 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akeo +
+endstream
endobj
10166 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+MoԶ=0 +
+endstream
endobj
10167 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+HJ9a+M0 +
+endstream
endobj
10168 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+Hr?a+Mp +
+endstream
endobj
10169 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+HRa+MHh; 0 +
+endstream
endobj
10170 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H*s] +
+endstream
endobj
10171 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Ha+MHh; 0 +
+endstream
endobj
10172 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9^l- +
+endstream
endobj
10173 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hg] + +
+endstream
endobj
10174 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Vsm +
+endstream
endobj
10175 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9699 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10176 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10177 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hhm + +
+endstream
endobj
10178 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbJa- +
+endstream
endobj
10179 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
10180 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbh +
+endstream
endobj
10181 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H> +
+endstream
endobj
10182 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+0 +
+endstream
endobj
10183 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2 +
+endstream
endobj
10184 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H29[}o6" +
+endstream
endobj
10185 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Ha+M` +
+endstream
endobj
10186 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh 0 +
+endstream
endobj
10187 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+HRa+MHh[ 0 +
+endstream
endobj
10188 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8k +
+endstream
endobj
10189 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;y +
+endstream
endobj
10190 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&p] +
+endstream
endobj
10191 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9700 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10192 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HJ9 +
+endstream
endobj
10193 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H;Vcoe + + +
+endstream
endobj
10194 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+HRa+M` +
+endstream
endobj
10195 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+HRa+Mh[ 0 +
+endstream
endobj
10196 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H:a+Mh 0 +
+endstream
endobj
10197 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+Hr=a+M` + +
+endstream
endobj
10198 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hlm +
+endstream
endobj
10199 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9dm +
+endstream
endobj
10200 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8pm +
+endstream
endobj
10201 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HJ? +
+endstream
endobj
10202 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10203 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9701 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10204 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Ha
+
+endstream
endobj
10205 0 obj
<</Subtype/Image/Length 29/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H2;}+O- +
+endstream
endobj
10206 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hn +
+endstream
endobj
10207 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+Ha+Mh; 0 +
+endstream
endobj
10208 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H9a+MHh; 0 +
+endstream
endobj
10209 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
10210 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H>a+M` + +
+endstream
endobj
10211 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+Ha+Mh; 0 +
+endstream
endobj
10212 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hi+ط" +
+endstream
endobj
10213 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9702 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10214 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9696 0 R/Width 44/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10215 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+He +
+endstream
endobj
10216 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9Vm +
+endstream
endobj
10217 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRg] +
+endstream
endobj
10218 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;tm +
+endstream
endobj
10219 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr;i +
+endstream
endobj
10220 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+Ha+MHh#P
@ + +
+endstream
endobj
10221 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hpm +
+endstream
endobj
10222 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+HRa+M" +
+endstream
endobj
10223 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H:a+MHh 0 +
+endstream
endobj
10224 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=hm +
+endstream
endobj
10225 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mշ?0 +
+endstream
endobj
10226 0 obj
<</Subtype/Image/Length 17/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9698 0 R/Width 43/Height 1/Type/XObject>>stream
+Hb`$01 +
+endstream
endobj
10227 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9715 0 R/Width 43/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10228 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZom +t +
+endstream
endobj
10229 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:Nmm +
+endstream
endobj
10230 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=N}m +
+endstream
endobj
10231 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8xm +
+endstream
endobj
10232 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H~] + +
+endstream
endobj
10233 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9^`M +
+endstream
endobj
10234 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H +>aKMh 0 +
+endstream
endobj
10235 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak鵟 +
+endstream
endobj
10236 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H29a+M6" +
+endstream
endobj
10237 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 10/Height 1/Type/XObject>>stream
+Hr8a+M- +
+endstream
endobj
10238 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H2>a+M0- +
+endstream
endobj
10239 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M" +
+endstream
endobj
10240 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10241 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9703 0 R/Width 43/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10242 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H2? +
+endstream
endobj
10243 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10244 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2 +
+endstream
endobj
10245 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9688 0 R/Width 42/Height 1/Type/XObject>>stream
+Hb`d" +03 +
+endstream
endobj
10246 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+HR +
+endstream
endobj
10247 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H{] +
+endstream
endobj
10248 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H;aKMh; 0 +
+endstream
endobj
10249 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<Nom +
+endstream
endobj
10250 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+Hr?a+M0= +
+endstream
endobj
10251 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H9a+M6" +
+endstream
endobj
10252 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 9/Height 1/Type/XObject>>stream
+H;aKMP0 +
+endstream
endobj
10253 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:Nym +
+endstream
endobj
10254 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:l= + +
+endstream
endobj
10255 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10256 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbX2p] +[ +
+endstream
endobj
10257 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10258 0 obj
<</Subtype/Image/Length 14/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10259 0 obj
<</Subtype/Image/Length 20/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Hb6@ +
+endstream
endobj
10260 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hm] +
+endstream
endobj
10261 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+HJ8a+Mp +
+endstream
endobj
10262 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+Ha+M" +
+endstream
endobj
10263 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ɵO +
+endstream
endobj
10264 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 7/Height 1/Type/XObject>>stream
+H +>aKMh 0 +
+endstream
endobj
10265 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H +>aKM@h + +
+endstream
endobj
10266 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9715 0 R/Width 41/Height 1/Type/XObject>>stream
+Hb`d"03 +
+endstream
endobj
10267 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;Vb- +
+endstream
endobj
10268 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbm + +
+endstream
endobj
10269 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbJx- +
+endstream
endobj
10270 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=cM +
+endstream
endobj
10271 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:~ +
+endstream
endobj
10272 0 obj
<</Subtype/Image/Length 15/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 1/Height 1/Type/XObject>>stream
+Hy3@ +
+endstream
endobj
10273 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H8aKM6" +
+endstream
endobj
10274 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 8/Height 1/Type/XObject>>stream
+H;a+MHh 0 +
+endstream
endobj
10275 0 obj
<</Subtype/Image/Length 25/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 6/Height 1/Type/XObject>>stream
+H*aKM@h +? +
+endstream
endobj
10276 0 obj
<</Subtype/Image/Length 26/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 5/Height 1/Type/XObject>>stream
+H?aKM6" +
+endstream
endobj
10277 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr9j +
+endstream
endobj
10278 0 obj
<</Length 2823/Filter/FlateDecode>>stream
+HK\+z9D`$AA`+ @bOdyԒϩ*q:~9I+Hd0g]S䜽9Us<[i>^ t#X]ڪloe kDsDD]iB!J1Æn +pV +k
YfB]#N*uzΒ+ +rXS` CGb<W#?`r`"2t{/Yjee,Bpv|E +I0WGuWQnJ
ep{R SpSBpEiGWp)wUcb,l3@-fwrZl߇sf$BӺ2M6^<M +Mfva`k2\EaC0b(Bu +rDCXU&rp2i){6I6[#U[B]m<50a֔Ż dj:$G"t|S,ed}82F@Kw +w[31B]F fGf 5S)0ܘȝvdКLIY@k]&= "Mr_p
t#;2b["#đFjc#Ƌ_א+RӲB[aFQ}*Sn=! + +MɤJ 㟴;?~>ݝīa{xr]rw?!ݝ_ӇwӇ_<}~^r|$F(?ca_"|P, +.w%J
UouOvxK˹Tkoݏ7R~O=Vߗڢ/ +endstream
endobj
10279 0 obj
<</Length 2575/Filter/FlateDecode/N 3/Alternate/DeviceRGB>>stream
+HyTSwoɞc
[5laQIBHADED2mtFOE.c}088GNg9w߽ + +V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'K +x- +ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r9\A&GrQhE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mDeԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel
}}Cq9 +N')].uJr +wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó tizf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 +n3ܣkGݯz=[==<=G</z^^j^ ޡZQB0FX'+t<u-{__ߘ-G,}/Hh8mW2p[AiAN#8$X?AKHI{!7<qWy(!46-aaaW @@`lYĎH,$((Yh7ъb<b*b<~L&Y&9%uMssNpJP%MIJlN<DHJIڐtCj'KwKgC%Nd|ꙪO=%mLuvx:HoL!ȨC&13#s$/Y=OsbsrnsO1v=ˏϟ\h٢#¼oZ<]TUt}`IÒsKV-Y,+>TB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY.=b?SƕƩȺy
چk5%4m7lqlioZlG+Zzmzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś
nLl<9O +zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs
2F[p(@Xr4Pm8Ww)Km +
+endstream
endobj
10280 0 obj
<</Length 13>>stream
+6 +
+endstream
endobj
10281 0 obj
<</Length 13>>stream
+3 +
+endstream
endobj
10282 0 obj
<</Length 13>>stream
+X +
+endstream
endobj
10283 0 obj
<</Length 13>>stream
+HGF +
+endstream
endobj
10284 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10285 0 obj
<</Length 13>>stream
+z +
+endstream
endobj
10286 0 obj
<</Length 13>>stream
+O +
+endstream
endobj
10287 0 obj
<</Length 13>>stream
+9 +
+endstream
endobj
10288 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10289 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10290 0 obj
<</Length 10>>stream
+
+
+endstream
endobj
10291 0 obj
<</Length 13>>stream
+7 +
+endstream
endobj
10292 0 obj
<</Length 13>>stream
+D +
+endstream
endobj
10293 0 obj
<</Length 13>>stream
++ +
+endstream
endobj
10294 0 obj
<</Length 13>>stream
+3 +
+endstream
endobj
10295 0 obj
<</Length 13>>stream
+. +
+endstream
endobj
10296 0 obj
<</Length 13>>stream
+' +
+endstream
endobj
10297 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10298 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10299 0 obj
<</Length 13>>stream
+# +
+endstream
endobj
10300 0 obj
<</Length 10>>stream
+ +
+endstream
endobj
10301 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10302 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10303 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10304 0 obj
<</Length 13>>stream
+7 +
+endstream
endobj
10305 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10306 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10307 0 obj
<</Length 13>>stream
+? +
+endstream
endobj
10308 0 obj
<</Length 13>>stream
+4 +
+endstream
endobj
10309 0 obj
<</Length 13>>stream
+ +
+endstream
endobj
10310 0 obj
<</Length 13>>stream
+' +
+endstream
endobj
10311 0 obj
<</Length 7>>stream
+ +
+endstream
endobj
10312 0 obj
<</Length 13>>stream
+3 +
+endstream
endobj
10313 0 obj
<</Length 6911/Filter/FlateDecode/Length1 10636>>stream
+HW TSg~YlMi*6eB@Ihci6 EDejTVTp\L<:.T(nqu:"hk9g̙ AxH)B@KX2 jD(4P P|ބ v=r= ow(Gpl6GP-c +o1ˉ B,BwmF}pjp*߁ E?dq}> +mҡ
"Y
$,8Pz
( 8Pl4 +C+U
%biv"IFCcGcC=cGt +PFDJ\78r.yd:) k%K;{}='״wu{Q?ިzZ_;->YTrs·><úWo[v&H7q!g^˶6q'>h[֪9keMSVLosC|1v
`A^qksƞQU|fKgCQ7{-#.(+M^mh+ܻ_D֪
.]reYC +wIm)/zEslڰVo>cH|YPʠO߾ 8b~ȗov%U6'WTN+p4q_)+(RÊSg%B9]ۍUT]hJ\Җg'8}fۆo=6*TV
1bl='LDJZv~ۢ}S)mn, }̧V`dm<d]\gfݦAgӹD{=/eZתJ|~nH9,/=G쮾wT[̺Vig'&&u?;␈5W<.vKJ&twikI{ä~O +o_q#SfO.Mpxײ&ӧ(:wG֚F<o0c&,h/d;J6<yEm0z3rB3Ap ޒFIcPyIbDdtltdx?NB&),,@CJ6Hm$AE#:a +<f"[O6+(Qڞ+`fjԗzeJ}PTl͚-
@i
K7^9n /"zw@N97>TǶVo4"b6-{Z#>nYvY{]t;ε;n㿱 W٦fۼՊ~g1fyE?Dp;+8\α75
5ig1;YMM
ҍ]˻26o<j\z5_ܖG[3r,u{qf˒#sv}ϝ!uG`w;{ve_|2|KڐcA\D]sDOz,&uV,EWǴǭ?]0W!H3a3CQ!J
|
a1JcsQH;ucaxjCK(Nƍ/zkjԚqEF=ņq9q[A 00R"o)@D2` %á7RtC-# PI +Yo0L^6 +58)1der-&W@; ]BtLɄ,SRC.~ +%ATt$0D{Q$ʠ7ٓ37
HZjg%o:IwaVaGD?(Mlr!^ʉ!8`!ŪXA$iT+5֧JY!s
z
=ID2J%\aT:NW*j?}m}_OkΔIG|䔴x5"!!M,_.\St茄֜#Ss䟅bEBy$8O}ny1zLΟSgŘXĢ%MNpٳ1uVe3۞43Y7kH. }C +yػ=KÃϱ#իɆpߩ&7ͯpTcRK:ſQ[26u6S仦'bcBbWOKåXhиswɑs+E&J;4dp<m}Nփ܋snZ?fj"^nou9آ.sx7+p/B秡Fc%QnF\㺿}m-<F|ddο.})+ulIk,Vf)nx^lmlpT
++-Υ4+^2pD`pYچ$Iڲg6uݾݞ6|ͅI\hQF.cW,¡ [_J
~Aѯg)#wܣ}O:8A`2)~kHeӦL]/aڕ;>qպzn}j}<i]4][mҔR/yڪ%NY":>^*(,NNtGb~)ϏN~h{֮ &;lӲmt}ɺ1\~=i]hݡf-*i20 +oSL +4+6s=ͥq,aPK&.C,84G +$$BlLXw`," C=
\
װgȄ +} YA.Gt MuG: +Psl]Y{15!ĕx /DzfX +E2`R_NƱTDq9z`6>O'hG +N K#v3S̓&>( ߃Ϣ_kSnZ+ R~d(H)-ÈI`Cɝ %9BjVGfYzT +]=J֎ss˛aM m:h9)`KJ5P +WdJ3j)phkߩ/hD0퓭M:mld[D5{Lyo00"ڜ"0v<{l@^Il*LIʥeeRqY.nZSx~TPٿ/Uc3]8yz#j,*6>Cڰwl +ݟ\ܼiMyr36*/z*'ɸ+M
Q:&^μḼ&w;<&,tںhrW=ꃧMYۯʮ/_76 +Fě_Ѕ1Dmo͇_oq<!>G1H"#~:+f xrjڅP%܇z
Ώ,6Bg +DBX,p!
箊q/@km! juG:Ȁu tYn+($VmXclo4Qp!b!kd_<vc|x9&%7p-tK4lR%7:Rv~g7ͶlCBK!'5-H`IQi 3~s)VϛVbe֯fLye\e{l-/*/jN);)sK|WLIoI)O4I]LT.eE%d,ˢ,Ȝry._.*kW8ֲ98z<'v=N,!IRD꒛@H5w&$NW&!>'ZXAe!>|S9}N*˩oc_-Ĵ͘fL^&͚$meL&InE{@JM#R^PլqOML0:>MhQjhQ59yfh,%RĈĴhrDqqGn[F2#EZ|NEfbYEq2#fGH|8/IoqV\ۛs(s=u{?xLH0Lai{+u{&eZ](f_..=z3;oc\nQDE*Z&y*I.é)Ã!IxPYCox=-
OU~a㉳brwOWemcWU%V
=PAZK3)Z=Z'[;\db$r +V --z]]-Qs9jZjO +U44l(A/wwH9Gt2z<6>*w·!kΐ?P+;[Ʀ/6zꠦ EjICNk`u)JuRR&* $ b$3]MMYMTD\
p=Dj@_~g,ddcde,w1Y7kbojHx.Ŵ+qD}@Ϳ11n
X5ܴ(ɚK{_/]F
dT&B#+8>`<So| + +
+endstream
endobj
10314 0 obj
<</StemV 0/FontName/PHNCOH+SymbolMT/FontFile2 10313 0 R/Flags 4/Descent -219/FontBBox[0 -220 1113 1005]/Ascent 1005/CapHeight 0/Type/FontDescriptor/ItalicAngle 0>>
endobj
10315 0 obj
<</Subtype/CIDFontType2/FontDescriptor 10314 0 R/BaseFont/PHNCOH+SymbolMT/W[3[250]120[459]164[790]]/CIDSystemInfo<</Supplement 0/Ordering(Identity)/Registry(Adobe)>>/DW 1000/Type/Font>>
endobj
10316 0 obj
<</Length 13>>stream
+M +
+endstream
endobj
10317 0 obj
<</Length 13>>stream
+6 +
+endstream
endobj
10318 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=a
+
+endstream
endobj
10319 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Fym +
+endstream
endobj
10320 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8r +
+endstream
endobj
10321 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr<wM +
+endstream
endobj
10322 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?y +
+endstream
endobj
10323 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +:^c; +
+endstream
endobj
10324 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Fgm +
+endstream
endobj
10325 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H26] +
+endstream
endobj
10326 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRg] +
+endstream
endobj
10327 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE/ +
+endstream
endobj
10328 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hy + +
+endstream
endobj
10329 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa΅ +
+endstream
endobj
10330 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=tm +
+endstream
endobj
10331 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HVb- +w +
+endstream
endobj
10332 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaUo +
+endstream
endobj
10333 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aky +
+endstream
endobj
10334 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[c +
+endstream
endobj
10335 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE_ +
+endstream
endobj
10336 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;w +
+endstream
endobj
10337 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10338 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a[ +
+endstream
endobj
10339 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakm +
+endstream
endobj
10340 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
10341 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+_ +
+endstream
endobj
10342 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+=0 +
+endstream
endobj
10343 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10344 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10345 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a+U +
+endstream
endobj
10346 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
10347 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
10348 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10349 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;u +
+endstream
endobj
10350 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[U +
+endstream
endobj
10351 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa
+
+endstream
endobj
10352 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
10353 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[M +
+endstream
endobj
10354 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ݏ +
+endstream
endobj
10355 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[eO +
+endstream
endobj
10356 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10357 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[C +
+endstream
endobj
10358 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=6p +
+endstream
endobj
10359 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10360 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=auw +
+endstream
endobj
10361 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
10362 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HjƗs +
+endstream
endobj
10363 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10364 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
10365 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak- +
+endstream
endobj
10366 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[e +
+endstream
endobj
10367 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
10368 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[
+
+endstream
endobj
10369 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ݯ +
+endstream
endobj
10370 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a[֕ +
+endstream
endobj
10371 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
10372 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
10373 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29aK +
+endstream
endobj
10374 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKu +
+endstream
endobj
10375 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[u +
+endstream
endobj
10376 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;uw +
+endstream
endobj
10377 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
10378 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10379 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha- +
+endstream
endobj
10380 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +=aKMo6?0 +
+endstream
endobj
10381 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
10382 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ako +
+endstream
endobj
10383 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mw>0 +
+endstream
endobj
10384 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10385 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+? +
+endstream
endobj
10386 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10387 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10388 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a/ +
+endstream
endobj
10389 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+uo0 +
+endstream
endobj
10390 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
10391 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU +
+endstream
endobj
10392 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak + +
+endstream
endobj
10393 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha-o +
+endstream
endobj
10394 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbak +
+endstream
endobj
10395 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H>aeo +
+endstream
endobj
10396 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10397 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKu +
+endstream
endobj
10398 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK- +
+endstream
endobj
10399 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba +
+endstream
endobj
10400 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
10401 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU/ +
+endstream
endobj
10402 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haw +
+endstream
endobj
10403 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakݏ +
+endstream
endobj
10404 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ + +
+endstream
endobj
10405 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+c/ +
+endstream
endobj
10406 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak_ +
+endstream
endobj
10407 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+_ +
+endstream
endobj
10408 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+? +
+endstream
endobj
10409 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
10410 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10411 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10412 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ + +
+endstream
endobj
10413 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[
+
+endstream
endobj
10414 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o=0 +
+endstream
endobj
10415 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10416 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;Uw +
+endstream
endobj
10417 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[
O +
+endstream
endobj
10418 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10419 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akc +
+endstream
endobj
10420 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU + +
+endstream
endobj
10421 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak}O +
+endstream
endobj
10422 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr8a+o6=0 +
+endstream
endobj
10423 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hake_ +
+endstream
endobj
10424 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+]? +
+endstream
endobj
10425 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+Mo +
+endstream
endobj
10426 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau/ +
+endstream
endobj
10427 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ٵ? +
+endstream
endobj
10428 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
10429 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
10430 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10431 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU/ +
+endstream
endobj
10432 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak- +
+endstream
endobj
10433 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[# +
+endstream
endobj
10434 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10435 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[O +
+endstream
endobj
10436 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ae +
+endstream
endobj
10437 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a +
+endstream
endobj
10438 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10439 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
10440 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaMo +
+endstream
endobj
10441 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10442 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
10443 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU/ +
+endstream
endobj
10444 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+? +
+endstream
endobj
10445 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+ +
+endstream
endobj
10446 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[sW +
+endstream
endobj
10447 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aK +
+endstream
endobj
10448 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ac +
+endstream
endobj
10449 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H>a㛘= +
+endstream
endobj
10450 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
10451 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakɵ +
+endstream
endobj
10452 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha5 +
+endstream
endobj
10453 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
10454 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ako +
+endstream
endobj
10455 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+So +
+endstream
endobj
10456 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10457 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aK +
+endstream
endobj
10458 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKU +
+endstream
endobj
10459 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU +
+endstream
endobj
10460 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U_ +
+endstream
endobj
10461 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
10462 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbac +
+endstream
endobj
10463 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+T<0 +
+endstream
endobj
10464 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+e +
+endstream
endobj
10465 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10466 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10467 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ake +
+endstream
endobj
10468 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aK% +
+endstream
endobj
10469 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak5 +
+endstream
endobj
10470 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa
o +
+endstream
endobj
10471 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
10472 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[w +
+endstream
endobj
10473 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+/ +
+endstream
endobj
10474 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakO +
+endstream
endobj
10475 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hˤ +
+endstream
endobj
10476 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
10477 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
10478 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak- +
+endstream
endobj
10479 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
10480 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+5 +
+endstream
endobj
10481 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a+u +
+endstream
endobj
10482 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
10483 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[uO +
+endstream
endobj
10484 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hake +
+endstream
endobj
10485 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
10486 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ѣW +
+endstream
endobj
10487 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a=7 +
+endstream
endobj
10488 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[= +
+endstream
endobj
10489 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku +
+endstream
endobj
10490 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaUo +
+endstream
endobj
10491 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aku +
+endstream
endobj
10492 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
10493 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+-? +
+endstream
endobj
10494 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakc +
+endstream
endobj
10495 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10496 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+m +
+endstream
endobj
10497 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
10498 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[% +
+endstream
endobj
10499 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[Ï +
+endstream
endobj
10500 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU +
+endstream
endobj
10501 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10502 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=a+ͯ6?0 +
+endstream
endobj
10503 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+- +
+endstream
endobj
10504 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak
+
+endstream
endobj
10505 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10506 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
10507 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[uO +
+endstream
endobj
10508 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
10509 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
10510 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
10511 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakUo +
+endstream
endobj
10512 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10513 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
10514 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
10515 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+o +
+endstream
endobj
10516 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10517 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ + +
+endstream
endobj
10518 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10519 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
10520 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+%_ +
+endstream
endobj
10521 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU +
+endstream
endobj
10522 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+C/ +
+endstream
endobj
10523 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10524 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKU +
+endstream
endobj
10525 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakօ +
+endstream
endobj
10526 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10527 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU +
+endstream
endobj
10528 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aeo +
+endstream
endobj
10529 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakCO +
+endstream
endobj
10530 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10531 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ake +
+endstream
endobj
10532 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+M +
+endstream
endobj
10533 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a+u? +
+endstream
endobj
10534 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaMo +
+endstream
endobj
10535 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;% +
+endstream
endobj
10536 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak}o +
+endstream
endobj
10537 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10538 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRam +
+endstream
endobj
10539 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+
6?0 +
+endstream
endobj
10540 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
10541 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10542 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[5O +
+endstream
endobj
10543 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
10544 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
10545 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HbaUo +
+endstream
endobj
10546 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ͯ0 +
+endstream
endobj
10547 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10548 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakS +
+endstream
endobj
10549 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+} +
+endstream
endobj
10550 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKe +
+endstream
endobj
10551 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
10552 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
10553 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak3 +
+endstream
endobj
10554 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aKe +
+endstream
endobj
10555 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10556 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;w +
+endstream
endobj
10557 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10558 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha
+
+endstream
endobj
10559 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRam +
+endstream
endobj
10560 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak3 +
+endstream
endobj
10561 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10562 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
10563 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+_ +
+endstream
endobj
10564 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ӿ +
+endstream
endobj
10565 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+M +
+endstream
endobj
10566 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10567 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ƕ +
+endstream
endobj
10568 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
10569 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakƕ +
+endstream
endobj
10570 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+co +
+endstream
endobj
10571 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10572 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
10573 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10574 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[W +
+endstream
endobj
10575 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau +
+endstream
endobj
10576 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ + +
+endstream
endobj
10577 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
10578 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10579 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaΕ/ +
+endstream
endobj
10580 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10581 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ao +
+endstream
endobj
10582 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H{s +
+endstream
endobj
10583 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10584 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
10585 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a/ +
+endstream
endobj
10586 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hauo +
+endstream
endobj
10587 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
10588 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10589 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
10590 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +:a+_ +
+endstream
endobj
10591 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
10592 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
10593 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;w +
+endstream
endobj
10594 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10595 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[敏 +
+endstream
endobj
10596 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+/ +
+endstream
endobj
10597 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRڧ\ +
+endstream
endobj
10598 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau/ +
+endstream
endobj
10599 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
10600 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku +
+endstream
endobj
10601 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakޕ +
+endstream
endobj
10602 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10603 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+? +
+endstream
endobj
10604 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR6= +
+endstream
endobj
10605 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;.|] +
+endstream
endobj
10606 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10607 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
10608 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
10609 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau/ +
+endstream
endobj
10610 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaSo +
+endstream
endobj
10611 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10612 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
10613 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;u +
+endstream
endobj
10614 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa; +
+endstream
endobj
10615 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
10616 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau/ +
+endstream
endobj
10617 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa敯 +
+endstream
endobj
10618 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10619 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbXe +_ +
+endstream
endobj
10620 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10621 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
10622 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku +
+endstream
endobj
10623 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+_ +
+endstream
endobj
10624 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
10625 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+? +
+endstream
endobj
10626 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HF +
+endstream
endobj
10627 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+u? +
+endstream
endobj
10628 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HvSϋ^0 +
+endstream
endobj
10629 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
10630 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku +
+endstream
endobj
10631 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HvS^}0 +
+endstream
endobj
10632 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[]W +
+endstream
endobj
10633 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a/ +
+endstream
endobj
10634 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
10635 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;- +
+endstream
endobj
10636 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
10637 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hh[ +
+endstream
endobj
10638 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Ve- +
+endstream
endobj
10639 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8aU +
+endstream
endobj
10640 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&M +
+endstream
endobj
10641 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbX*|- +j +
+endstream
endobj
10642 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hdm +
+endstream
endobj
10643 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HFbu +qY +
+endstream
endobj
10644 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +9N~u +
+endstream
endobj
10645 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hi + +
+endstream
endobj
10646 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;jm +
+endstream
endobj
10647 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hxu + +
+endstream
endobj
10648 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbaw +
+endstream
endobj
10649 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:Q{5 +
+endstream
endobj
10650 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10651 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakѥ +
+endstream
endobj
10652 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?l5 +
+endstream
endobj
10653 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +='- +
+endstream
endobj
10654 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<[ +
+endstream
endobj
10655 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<' +
+endstream
endobj
10656 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +:a+
0 +
+endstream
endobj
10657 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[UO +
+endstream
endobj
10658 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HbJ[ce6>0 +
+endstream
endobj
10659 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr8NcE= +
+endstream
endobj
10660 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Vs
+
+endstream
endobj
10661 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2=v +
+endstream
endobj
10662 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2<{
+
+endstream
endobj
10663 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8{koԷ>0 +
+endstream
endobj
10664 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8a +
+endstream
endobj
10665 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HFpko-=0 +
+endstream
endobj
10666 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=uo +
+endstream
endobj
10667 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2;Vuo< +
+endstream
endobj
10668 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=;o +
+endstream
endobj
10669 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HZpۡwy` +
+endstream
endobj
10670 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HFx +.M +
+endstream
endobj
10671 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<K +
+endstream
endobj
10672 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr8a[ +
+endstream
endobj
10673 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=7 +
+endstream
endobj
10674 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=- +
+endstream
endobj
10675 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;#<=0 +
+endstream
endobj
10676 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hcko6< +
+endstream
endobj
10677 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaǝo +
+endstream
endobj
10678 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HaM +
+endstream
endobj
10679 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+ r9 +
+endstream
endobj
10680 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H*akO +
+endstream
endobj
10681 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H;a +
+endstream
endobj
10682 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8akO +
+endstream
endobj
10683 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H!} +
+endstream
endobj
10684 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hi
+
+endstream
endobj
10685 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+֭0 +
+endstream
endobj
10686 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H:a/ +
+endstream
endobj
10687 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HK/o0 +
+endstream
endobj
10688 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
10689 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[5 +
+endstream
endobj
10690 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
10691 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H:K+^0 +
+endstream
endobj
10692 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akU +
+endstream
endobj
10693 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbak#O +
+endstream
endobj
10694 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hk +
+endstream
endobj
10695 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10696 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Fqm +
+endstream
endobj
10697 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +>aŵ/ +
+endstream
endobj
10698 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Ve# +
+endstream
endobj
10699 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HxS +
+endstream
endobj
10700 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?~ +
+endstream
endobj
10701 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hqұ +
+endstream
endobj
10702 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HpS; +
+endstream
endobj
10703 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:{ +
+endstream
endobj
10704 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
10705 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hw +
+endstream
endobj
10706 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hw +
+endstream
endobj
10707 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hq +
+endstream
endobj
10708 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H|w +
+endstream
endobj
10709 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H<ake +
+endstream
endobj
10710 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+
? +
+endstream
endobj
10711 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +8aۈ +
+endstream
endobj
10712 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+֕ +
+endstream
endobj
10713 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr>aKm +
+endstream
endobj
10714 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HbaKM +
+endstream
endobj
10715 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;ѵ +
+endstream
endobj
10716 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
10717 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a[
+
+endstream
endobj
10718 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[MW +
+endstream
endobj
10719 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H += + +
+endstream
endobj
10720 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa%/ +
+endstream
endobj
10721 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H{ +
+endstream
endobj
10722 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HxS; +
+endstream
endobj
10723 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?{ +
+endstream
endobj
10724 0 obj
<</Subtype/Image/Length 2790/Filter/DCTDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 85/Height 85/Type/XObject>>stream
+ +$$''$$53335;;;;;;;;;;
%% ## ((%%((22022;;;;;;;;;; + + +}S&1bt?JlNgBg쮖^cxm-W!ocˈ_,uH}82^ +Z]6]WˣHvڄ&1㉖\>JwIbU2{\eNZy;|r͊s{qf0*s.e^b~O~G~Ԍ7 .g81$; R.ŵTx{<soe +NR"?iL9xbrsLq}#mޑ%_}K֟R???7]]Գ~
u +꾶2مc=6<}UƳ# Mǝn`\X䳓sxX(3rV=Ļ"]-<1vցWeex1iq<'nv6mue ^V6=6)ak/7->[.N84 }T}u/W'aX}45u.o76FEM8ka0w}k=YbCndNW]yF7t;M@DDl9 eɛ>ncÜB +
+endstream
endobj
10725 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+}/ +
+endstream
endobj
10726 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[C +
+endstream
endobj
10727 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr<zm +
+endstream
endobj
10728 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HaK,v>0 +
+endstream
endobj
10729 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H?Vs[o0 +
+endstream
endobj
10730 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+ ? +
+endstream
endobj
10731 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H={ +
+endstream
endobj
10732 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +>aKMo=0 +
+endstream
endobj
10733 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=ak5 +
+endstream
endobj
10734 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRvu +
+endstream
endobj
10735 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakᵟ +
+endstream
endobj
10736 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HaKu< +
+endstream
endobj
10737 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=aK +
+endstream
endobj
10738 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
10739 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
10740 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10741 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaku +
+endstream
endobj
10742 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+_ +
+endstream
endobj
10743 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H:a+e_ +
+endstream
endobj
10744 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr:~m +
+endstream
endobj
10745 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HFi#U>0 +
+endstream
endobj
10746 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2=[XV0 +
+endstream
endobj
10747 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8Nk[7=0 +
+endstream
endobj
10748 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr8N>0 +
+endstream
endobj
10749 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=V~u +
+endstream
endobj
10750 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a+ +
+endstream
endobj
10751 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+
? +
+endstream
endobj
10752 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&d +
+endstream
endobj
10753 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
10754 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2V5 +
+endstream
endobj
10755 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10756 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a/ +
+endstream
endobj
10757 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10758 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak_ +
+endstream
endobj
10759 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU_ +
+endstream
endobj
10760 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<Vj- +
+endstream
endobj
10761 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?Nom +
+endstream
endobj
10762 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H:aۄӷ +
+endstream
endobj
10763 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +8Nam +
+endstream
endobj
10764 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10765 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=V}m +
+endstream
endobj
10766 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+N0 +
+endstream
endobj
10767 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=Ngm +
+endstream
endobj
10768 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr:a+M<0 +
+endstream
endobj
10769 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+
o0 +
+endstream
endobj
10770 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr>~ +
+endstream
endobj
10771 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2V}5 +
+endstream
endobj
10772 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:{] +
+endstream
endobj
10773 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H<a+o= +
+endstream
endobj
10774 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=aKMo=0 +
+endstream
endobj
10775 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;Vwm +
+endstream
endobj
10776 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>gm +
+endstream
endobj
10777 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hk +
+endstream
endobj
10778 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<m] +
+endstream
endobj
10779 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?Az- +
+endstream
endobj
10780 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<pm +
+endstream
endobj
10781 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2;mۅ +
+endstream
endobj
10782 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>Ni- +
+endstream
endobj
10783 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&# +
+endstream
endobj
10784 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H< +
+endstream
endobj
10785 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
10786 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<hm +
+endstream
endobj
10787 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=vm +
+endstream
endobj
10788 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:w +
+endstream
endobj
10789 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:˩'w +
+endstream
endobj
10790 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hz/ +
+endstream
endobj
10791 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hj{ۄ+w +
+endstream
endobj
10792 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;yw +
+endstream
endobj
10793 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+-6< +
+endstream
endobj
10794 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE/ +
+endstream
endobj
10795 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE +
+endstream
endobj
10796 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ͯ6=0 +
+endstream
endobj
10797 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a/ +
+endstream
endobj
10798 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aKe +
+endstream
endobj
10799 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10800 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+O +
+endstream
endobj
10801 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8aկ +
+endstream
endobj
10802 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+e +
+endstream
endobj
10803 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
10804 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
10805 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+U +
+endstream
endobj
10806 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
10807 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;ew +
+endstream
endobj
10808 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aK +> +
+endstream
endobj
10809 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
10810 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H9a+Mo0 +
+endstream
endobj
10811 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
10812 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[5O +
+endstream
endobj
10813 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[EO +
+endstream
endobj
10814 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+M0 +
+endstream
endobj
10815 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haw +
+endstream
endobj
10816 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;- +
+endstream
endobj
10817 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[y +
+endstream
endobj
10818 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[U +
+endstream
endobj
10819 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ͯ%? +
+endstream
endobj
10820 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaMo +
+endstream
endobj
10821 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[W +
+endstream
endobj
10822 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10823 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
10824 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[= +
+endstream
endobj
10825 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
10826 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU +
+endstream
endobj
10827 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=aKo0 +
+endstream
endobj
10828 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbao +
+endstream
endobj
10829 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+- +
+endstream
endobj
10830 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
10831 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+o#0 +
+endstream
endobj
10832 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H9aKoMv=0 +
+endstream
endobj
10833 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
10834 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
10835 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aky +
+endstream
endobj
10836 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak= +
+endstream
endobj
10837 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak%_ +
+endstream
endobj
10838 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
10839 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+#0 +
+endstream
endobj
10840 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+e_ +
+endstream
endobj
10841 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
10842 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
10843 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
10844 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku_ +
+endstream
endobj
10845 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U? +
+endstream
endobj
10846 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
10847 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[eO +
+endstream
endobj
10848 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10849 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr>a+om=0 +
+endstream
endobj
10850 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
10851 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
10852 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mo?0 +
+endstream
endobj
10853 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr:a+M%6>0 +
+endstream
endobj
10854 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+c +
+endstream
endobj
10855 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+e + +
+endstream
endobj
10856 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a+5 +
+endstream
endobj
10857 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[e +
+endstream
endobj
10858 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
10859 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[MO +
+endstream
endobj
10860 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKE +
+endstream
endobj
10861 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+/ +
+endstream
endobj
10862 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+M<0 +
+endstream
endobj
10863 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
10864 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU +
+endstream
endobj
10865 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H>a+u +
+endstream
endobj
10866 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
10867 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H:aKMoն>0 +
+endstream
endobj
10868 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+- +
+endstream
endobj
10869 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10870 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
10871 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+SN0 +
+endstream
endobj
10872 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10873 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakm +
+endstream
endobj
10874 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
10875 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+5 +
+endstream
endobj
10876 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+y +
+endstream
endobj
10877 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[× +
+endstream
endobj
10878 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;w +
+endstream
endobj
10879 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H28akޥo +
+endstream
endobj
10880 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
10881 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;w +
+endstream
endobj
10882 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[eO +
+endstream
endobj
10883 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10884 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10885 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
10886 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aeo +
+endstream
endobj
10887 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakM +
+endstream
endobj
10888 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+Motv<0 +
+endstream
endobj
10889 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
10890 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
10891 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU + +
+endstream
endobj
10892 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H29a+Mw?0 +
+endstream
endobj
10893 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
10894 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+] +
+endstream
endobj
10895 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak% +
+endstream
endobj
10896 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+e +
+endstream
endobj
10897 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
10898 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;Ew +
+endstream
endobj
10899 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
10900 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+
C0 +
+endstream
endobj
10901 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a+տ +
+endstream
endobj
10902 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+O +
+endstream
endobj
10903 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+տ +
+endstream
endobj
10904 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10905 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;% +
+endstream
endobj
10906 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU +
+endstream
endobj
10907 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[- +
+endstream
endobj
10908 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ake +
+endstream
endobj
10909 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+? +
+endstream
endobj
10910 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[-W +
+endstream
endobj
10911 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+Muv<0 +
+endstream
endobj
10912 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[eO +
+endstream
endobj
10913 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[m +
+endstream
endobj
10914 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2:a+e +
+endstream
endobj
10915 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+鵿 +
+endstream
endobj
10916 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2:a- +
+endstream
endobj
10917 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
10918 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
10919 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+ͯMw=0 +
+endstream
endobj
10920 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+/ +
+endstream
endobj
10921 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[e +
+endstream
endobj
10922 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2;a +
+endstream
endobj
10923 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[U +
+endstream
endobj
10924 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[U +
+endstream
endobj
10925 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+]<0 +
+endstream
endobj
10926 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a+U +
+endstream
endobj
10927 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE/ +
+endstream
endobj
10928 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[O +
+endstream
endobj
10929 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aeO +
+endstream
endobj
10930 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
10931 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hauo +
+endstream
endobj
10932 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU/ +
+endstream
endobj
10933 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaM +
+endstream
endobj
10934 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak% +
+endstream
endobj
10935 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Moշ>0 +
+endstream
endobj
10936 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
10937 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;a+M
v=0 +
+endstream
endobj
10938 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+Mo6=0 +
+endstream
endobj
10939 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE/ +
+endstream
endobj
10940 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aky +
+endstream
endobj
10941 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
10942 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+ͯ<0 +
+endstream
endobj
10943 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+e +
+endstream
endobj
10944 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haw +
+endstream
endobj
10945 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
10946 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hauo +
+endstream
endobj
10947 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakM +
+endstream
endobj
10948 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbaw +
+endstream
endobj
10949 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU_ +
+endstream
endobj
10950 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;U +
+endstream
endobj
10951 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ow=0 +
+endstream
endobj
10952 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+U +
+endstream
endobj
10953 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ٍ +
+endstream
endobj
10954 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku +
+endstream
endobj
10955 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
10956 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[e +
+endstream
endobj
10957 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
10958 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[O +
+endstream
endobj
10959 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+m_ +
+endstream
endobj
10960 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mo0 +
+endstream
endobj
10961 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o6< +
+endstream
endobj
10962 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
10963 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha7 +
+endstream
endobj
10964 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hae +
+endstream
endobj
10965 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+E +
+endstream
endobj
10966 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aKo +
+endstream
endobj
10967 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+E? +
+endstream
endobj
10968 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hauo +
+endstream
endobj
10969 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
10970 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[U +
+endstream
endobj
10971 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak3 +
+endstream
endobj
10972 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+e? +
+endstream
endobj
10973 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+3 +
+endstream
endobj
10974 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+% +
+endstream
endobj
10975 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
10976 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+-ն>0 +
+endstream
endobj
10977 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaMo +
+endstream
endobj
10978 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aU/ +
+endstream
endobj
10979 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
10980 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa5/ +
+endstream
endobj
10981 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o6?0 +
+endstream
endobj
10982 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+ov?0 +
+endstream
endobj
10983 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
10984 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[O +
+endstream
endobj
10985 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[͗ +
+endstream
endobj
10986 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE +
+endstream
endobj
10987 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKc +
+endstream
endobj
10988 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
10989 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[e +
+endstream
endobj
10990 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU +
+endstream
endobj
10991 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HbakU_ +
+endstream
endobj
10992 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
10993 0 obj
<</Subtype/Image/Length 19/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a0 +
+endstream
endobj
10994 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau +
+endstream
endobj
10995 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK] +
+endstream
endobj
10996 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU +
+endstream
endobj
10997 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
10998 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
10999 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
11000 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[e +
+endstream
endobj
11001 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8aKo0 +
+endstream
endobj
11002 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+od7?0 +
+endstream
endobj
11003 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a[e +
+endstream
endobj
11004 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak% +
+endstream
endobj
11005 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+M%6>0 +
+endstream
endobj
11006 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+MoԶ=0 +
+endstream
endobj
11007 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?s +
+endstream
endobj
11008 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8im +
+endstream
endobj
11009 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11010 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<6t] +
+endstream
endobj
11011 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?.` +
+endstream
endobj
11012 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HZpƷ֗ +
+endstream
endobj
11013 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H;a
+
+endstream
endobj
11014 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=^w +
+endstream
endobj
11015 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?a +
+endstream
endobj
11016 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +;} +
+endstream
endobj
11017 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +:a
+
+endstream
endobj
11018 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?N{m +
+endstream
endobj
11019 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hc] +
+endstream
endobj
11020 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:Num +
+endstream
endobj
11021 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRw +
+endstream
endobj
11022 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?n +
+endstream
endobj
11023 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr9;O +
+endstream
endobj
11024 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hgm +
+endstream
endobj
11025 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2hm +
+endstream
endobj
11026 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?i +
+endstream
endobj
11027 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr9.Gmw +
+endstream
endobj
11028 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=pm +
+endstream
endobj
11029 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr8VxM +
+endstream
endobj
11030 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hfc +
+endstream
endobj
11031 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HbDŽԶ=0 +
+endstream
endobj
11032 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2?g[ +
+endstream
endobj
11033 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?{ +
+endstream
endobj
11034 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR
+
+endstream
endobj
11035 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +;Nfm +
+endstream
endobj
11036 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HF{U +g +
+endstream
endobj
11037 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRkm +
+endstream
endobj
11038 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9N{5 +
+endstream
endobj
11039 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbg +g +
+endstream
endobj
11040 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H29}5 +
+endstream
endobj
11041 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hrm +x +
+endstream
endobj
11042 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?w +
+endstream
endobj
11043 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:u +
+endstream
endobj
11044 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9~m +
+endstream
endobj
11045 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>Nb- +
+endstream
endobj
11046 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&- +
+endstream
endobj
11047 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HsU +
+endstream
endobj
11048 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HR҇ޛ_5=0 +
+endstream
endobj
11049 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRƫ_T>0 +
+endstream
endobj
11050 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&
+
+endstream
endobj
11051 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H*a+o +
+endstream
endobj
11052 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb +
+endstream
endobj
11053 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr<Ny5 +
+endstream
endobj
11054 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hm] +
+endstream
endobj
11055 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+Mo=0 +
+endstream
endobj
11056 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+],v>0 +
+endstream
endobj
11057 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbu +w +
+endstream
endobj
11058 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hq +
+endstream
endobj
11059 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[5O +
+endstream
endobj
11060 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaCO +
+endstream
endobj
11061 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H;ako +
+endstream
endobj
11062 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&|] +
+endstream
endobj
11063 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?fu +
+endstream
endobj
11064 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +:^tM +
+endstream
endobj
11065 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hi +
+endstream
endobj
11066 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?[ +
+endstream
endobj
11067 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hja˛o +
+endstream
endobj
11068 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HxƷ +
+endstream
endobj
11069 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hxַŧ +
+endstream
endobj
11070 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;o
+
+endstream
endobj
11071 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZ~kw +
+endstream
endobj
11072 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<dm +
+endstream
endobj
11073 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<o +
+endstream
endobj
11074 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H# +
+endstream
endobj
11075 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9; +
+endstream
endobj
11076 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<6j] +
+endstream
endobj
11077 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?u +
+endstream
endobj
11078 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hvu + +
+endstream
endobj
11079 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZn5 +Nc +
+endstream
endobj
11080 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:M +
+endstream
endobj
11081 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H<Aj{ +
+endstream
endobj
11082 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZv +
+endstream
endobj
11083 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HjQq;_ +
+endstream
endobj
11084 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H|Ԯs.>0 +
+endstream
endobj
11085 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr? +
+endstream
endobj
11086 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H<'c +
+endstream
endobj
11087 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +:^pM +
+endstream
endobj
11088 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;Vnm +
+endstream
endobj
11089 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HJ>um +
+endstream
endobj
11090 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HQz'O +
+endstream
endobj
11091 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr7 +
+endstream
endobj
11092 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[u +
+endstream
endobj
11093 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr=;ot?0 +
+endstream
endobj
11094 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRFem +{ +
+endstream
endobj
11095 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRqu +
+endstream
endobj
11096 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr<am/ +
+endstream
endobj
11097 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HFbU +p +
+endstream
endobj
11098 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr:Nd- +
+endstream
endobj
11099 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
11100 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
11101 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
11102 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2:i+-o%? +
+endstream
endobj
11103 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hy+-oy0 +
+endstream
endobj
11104 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HF[U +
+endstream
endobj
11105 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb[ +p +
+endstream
endobj
11106 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HJ9ae +
+endstream
endobj
11107 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbh + +
+endstream
endobj
11108 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;<0 +
+endstream
endobj
11109 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2{M +l +
+endstream
endobj
11110 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8aK]70 +
+endstream
endobj
11111 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11112 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+u +
+endstream
endobj
11113 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
11114 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aK +
+endstream
endobj
11115 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa; +
+endstream
endobj
11116 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
11117 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
11118 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
11119 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
11120 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
11121 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11122 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akC +
+endstream
endobj
11123 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+
oU<0 +
+endstream
endobj
11124 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H29a+
ou?0 +
+endstream
endobj
11125 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+5 +
+endstream
endobj
11126 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
11127 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haw +
+endstream
endobj
11128 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[
O +
+endstream
endobj
11129 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
11130 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a +
+endstream
endobj
11131 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
11132 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
11133 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;w +
+endstream
endobj
11134 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
11135 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+C +
+endstream
endobj
11136 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
11137 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
11138 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
11139 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
11140 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
11141 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakm +
+endstream
endobj
11142 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
11143 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+ +
+endstream
endobj
11144 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKu +
+endstream
endobj
11145 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;a+oV= +
+endstream
endobj
11146 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaku +
+endstream
endobj
11147 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaկ +
+endstream
endobj
11148 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;% +
+endstream
endobj
11149 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr?a+0 +
+endstream
endobj
11150 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+Mow=0 +
+endstream
endobj
11151 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKU +
+endstream
endobj
11152 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
11153 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;w +
+endstream
endobj
11154 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr<a+oU<0 +
+endstream
endobj
11155 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akU +
+endstream
endobj
11156 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[5O +
+endstream
endobj
11157 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakO +
+endstream
endobj
11158 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=au +
+endstream
endobj
11159 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H296o +
+endstream
endobj
11160 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
11161 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
11162 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRako +
+endstream
endobj
11163 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbak +
+endstream
endobj
11164 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29ak_ +
+endstream
endobj
11165 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aO +
+endstream
endobj
11166 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
11167 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11168 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
11169 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha] +
+endstream
endobj
11170 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRau +
+endstream
endobj
11171 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku +
+endstream
endobj
11172 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11173 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak-_ +
+endstream
endobj
11174 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hac +
+endstream
endobj
11175 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
11176 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
11177 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[O +
+endstream
endobj
11178 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+oV= +
+endstream
endobj
11179 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+C/ +
+endstream
endobj
11180 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+M->0 +
+endstream
endobj
11181 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbe +
b +
+endstream
endobj
11182 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
11183 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak5 + +
+endstream
endobj
11184 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;Mw +
+endstream
endobj
11185 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
11186 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha= +
+endstream
endobj
11187 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H}U +
+endstream
endobj
11188 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11189 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaŽ +
+endstream
endobj
11190 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[= +
+endstream
endobj
11191 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha5 +
+endstream
endobj
11192 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
11193 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRako +
+endstream
endobj
11194 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+? +
+endstream
endobj
11195 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaM +
+endstream
endobj
11196 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
11197 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11198 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
11199 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+w?0 +
+endstream
endobj
11200 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a# +
+endstream
endobj
11201 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+MoMv=0 +
+endstream
endobj
11202 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
11203 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKu +
+endstream
endobj
11204 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
11205 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+c +
+endstream
endobj
11206 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
11207 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
11208 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ݏ +
+endstream
endobj
11209 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
11210 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ѵ? +
+endstream
endobj
11211 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakM +
+endstream
endobj
11212 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
11213 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak՟ +
+endstream
endobj
11214 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a+_ +
+endstream
endobj
11215 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11216 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
11217 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ + +
+endstream
endobj
11218 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11219 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
11220 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakm +
+endstream
endobj
11221 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
11222 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
11223 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+M +
+endstream
endobj
11224 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H28a[- +
+endstream
endobj
11225 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha%/ +
+endstream
endobj
11226 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak՟ +
+endstream
endobj
11227 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HbakM +
+endstream
endobj
11228 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haɵo +
+endstream
endobj
11229 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[e +
+endstream
endobj
11230 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
11231 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haկ +
+endstream
endobj
11232 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak- +
+endstream
endobj
11233 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+u +
+endstream
endobj
11234 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:; +
+endstream
endobj
11235 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
11236 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
11237 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ + +
+endstream
endobj
11238 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[
+
+endstream
endobj
11239 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11240 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[O +
+endstream
endobj
11241 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+MO +
+endstream
endobj
11242 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11243 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+oU<0 +
+endstream
endobj
11244 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;aK? +
+endstream
endobj
11245 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[U +
+endstream
endobj
11246 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+ +
+endstream
endobj
11247 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8aK +
+endstream
endobj
11248 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aw +
+endstream
endobj
11249 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKu +
+endstream
endobj
11250 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+? +
+endstream
endobj
11251 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ao +
+endstream
endobj
11252 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak# +
+endstream
endobj
11253 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKU +
+endstream
endobj
11254 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
11255 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:[ +
+endstream
endobj
11256 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:ΧO +
+endstream
endobj
11257 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakc +
+endstream
endobj
11258 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:_ +
+endstream
endobj
11259 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ac/ +
+endstream
endobj
11260 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+Mo +
+endstream
endobj
11261 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11262 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[- +
+endstream
endobj
11263 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
11264 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbak +
+endstream
endobj
11265 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
11266 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak5o +
+endstream
endobj
11267 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11268 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
11269 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[eO +
+endstream
endobj
11270 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
11271 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+M +
+endstream
endobj
11272 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[= +
+endstream
endobj
11273 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
11274 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
11275 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+o>0 +
+endstream
endobj
11276 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[U +
+endstream
endobj
11277 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha] +
+endstream
endobj
11278 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[] +
+endstream
endobj
11279 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[M +
+endstream
endobj
11280 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H*a+o/0 +
+endstream
endobj
11281 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aK +
+endstream
endobj
11282 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H*a+
oϾ0 +
+endstream
endobj
11283 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
11284 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+oSO0 +
+endstream
endobj
11285 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11286 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
11287 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba;- +
+endstream
endobj
11288 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11289 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ӏ +
+endstream
endobj
11290 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
11291 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
11292 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akO +
+endstream
endobj
11293 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak + +
+endstream
endobj
11294 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a[ +
+endstream
endobj
11295 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU +
+endstream
endobj
11296 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+-? +
+endstream
endobj
11297 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+e? +
+endstream
endobj
11298 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
11299 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[͗ +
+endstream
endobj
11300 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKu +
+endstream
endobj
11301 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +?a+ﺮ0 +
+endstream
endobj
11302 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[e + +
+endstream
endobj
11303 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8>5 +
+endstream
endobj
11304 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ9'W +
+endstream
endobj
11305 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H>a[ +
+endstream
endobj
11306 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<; +
+endstream
endobj
11307 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H==_ +
+endstream
endobj
11308 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;w +
+endstream
endobj
11309 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao + +
+endstream
endobj
11310 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
11311 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+? +
+endstream
endobj
11312 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak#O +
+endstream
endobj
11313 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11314 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak
_ +
+endstream
endobj
11315 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+տ +
+endstream
endobj
11316 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+M
v=0 +
+endstream
endobj
11317 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
11318 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
11319 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
11320 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKM +
+endstream
endobj
11321 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aeO +
+endstream
endobj
11322 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[# +
+endstream
endobj
11323 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
11324 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;u +
+endstream
endobj
11325 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
11326 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<[3 +
+endstream
endobj
11327 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +;] +
+endstream
endobj
11328 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha7 +
+endstream
endobj
11329 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha}w +
+endstream
endobj
11330 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11331 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak5 +
+endstream
endobj
11332 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+5 +
+endstream
endobj
11333 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
11334 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa; +
+endstream
endobj
11335 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[͏ +
+endstream
endobj
11336 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a +
+endstream
endobj
11337 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[W +
+endstream
endobj
11338 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[e +
+endstream
endobj
11339 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
11340 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;=w +
+endstream
endobj
11341 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
11342 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
11343 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+e_ +
+endstream
endobj
11344 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
11345 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak + +
+endstream
endobj
11346 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +8>] +
+endstream
endobj
11347 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U_ +
+endstream
endobj
11348 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11349 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
11350 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+O +
+endstream
endobj
11351 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
11352 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[O +
+endstream
endobj
11353 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
11354 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=轟 +
+endstream
endobj
11355 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<]_ +
+endstream
endobj
11356 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H={m +
+endstream
endobj
11357 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<{ם? +
+endstream
endobj
11358 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=Ї +
+endstream
endobj
11359 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+u +
+endstream
endobj
11360 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ӿ +
+endstream
endobj
11361 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;ew +
+endstream
endobj
11362 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[U +
+endstream
endobj
11363 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2=6[_? +
+endstream
endobj
11364 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hb*_$6< +
+endstream
endobj
11365 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hg{ +
+endstream
endobj
11366 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H63>0 +
+endstream
endobj
11367 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;lc +
+endstream
endobj
11368 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:Ni# +
+endstream
endobj
11369 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H˟շ>0 +
+endstream
endobj
11370 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=ao +
+endstream
endobj
11371 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr;o +
+endstream
endobj
11372 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H{ +
+endstream
endobj
11373 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H}Գw +
+endstream
endobj
11374 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakC_ +
+endstream
endobj
11375 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
11376 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[w +
+endstream
endobj
11377 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
11378 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+_ +
+endstream
endobj
11379 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haw +
+endstream
endobj
11380 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;`m +
+endstream
endobj
11381 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>{C +
+endstream
endobj
11382 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Vu +
+endstream
endobj
11383 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H& +
+endstream
endobj
11384 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb~ +*t +
+endstream
endobj
11385 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2<tm +
+endstream
endobj
11386 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbXM +a +
+endstream
endobj
11387 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9j +
+endstream
endobj
11388 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H6S +
+endstream
endobj
11389 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HuҮk +
+endstream
endobj
11390 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H5 + +
+endstream
endobj
11391 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZ}5 +Nh +
+endstream
endobj
11392 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11393 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;] +
+endstream
endobj
11394 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKE +
+endstream
endobj
11395 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[E + +
+endstream
endobj
11396 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[e +
+endstream
endobj
11397 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[
W +
+endstream
endobj
11398 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Vcm +
+endstream
endobj
11399 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ9akσ +
+endstream
endobj
11400 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ8a[
+
+endstream
endobj
11401 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +;.{],v<0 +
+endstream
endobj
11402 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ:aͫ +
+endstream
endobj
11403 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H*ak +
+endstream
endobj
11404 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Nwc +
+endstream
endobj
11405 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
11406 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2V{[
o6< +
+endstream
endobj
11407 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[W +
+endstream
endobj
11408 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
11409 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+e? +
+endstream
endobj
11410 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
11411 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+_ +
+endstream
endobj
11412 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&h] +
+endstream
endobj
11413 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<wM +
+endstream
endobj
11414 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbX2t] +k +
+endstream
endobj
11415 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb* + +
+endstream
endobj
11416 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbC +?} +
+endstream
endobj
11417 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H>Ng[uo< +
+endstream
endobj
11418 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H9ak +
+endstream
endobj
11419 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H;U +
+endstream
endobj
11420 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRikm0 +
+endstream
endobj
11421 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hkmd7=0 +
+endstream
endobj
11422 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;Ew +
+endstream
endobj
11423 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRgk]? +
+endstream
endobj
11424 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2=oko7?0 +
+endstream
endobj
11425 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[͏ +
+endstream
endobj
11426 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2Va +
+endstream
endobj
11427 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[yO +
+endstream
endobj
11428 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aM +
+endstream
endobj
11429 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE/ +
+endstream
endobj
11430 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+M/ +
+endstream
endobj
11431 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8cM + +
+endstream
endobj
11432 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H29a +
+endstream
endobj
11433 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +;Ngk +
+endstream
endobj
11434 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H5 + +
+endstream
endobj
11435 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=pm +
+endstream
endobj
11436 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>^gU +
+endstream
endobj
11437 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:
+
+endstream
endobj
11438 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb*
+ +
+endstream
endobj
11439 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+o +
+endstream
endobj
11440 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;6
+
+endstream
endobj
11441 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
11442 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;N} +
+endstream
endobj
11443 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H}ۻC/ +
+endstream
endobj
11444 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+e +
+endstream
endobj
11445 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE +
+endstream
endobj
11446 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaEo +
+endstream
endobj
11447 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak͟ +
+endstream
endobj
11448 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+O +
+endstream
endobj
11449 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hk +
+endstream
endobj
11450 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<Nom +
+endstream
endobj
11451 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HZwRo +
+endstream
endobj
11452 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+MoV= +
+endstream
endobj
11453 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=Nom +
+endstream
endobj
11454 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8vm +
+endstream
endobj
11455 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HVhC +x +
+endstream
endobj
11456 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+]D?0 +
+endstream
endobj
11457 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRvu +
+endstream
endobj
11458 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRi +
+endstream
endobj
11459 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
11460 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZ5 +Zo +
+endstream
endobj
11461 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
11462 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+m? +
+endstream
endobj
11463 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
11464 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;e +
+endstream
endobj
11465 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<Nkm +
+endstream
endobj
11466 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +=aKMv<0 +
+endstream
endobj
11467 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HFaϛ> +
+endstream
endobj
11468 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr=o +
+endstream
endobj
11469 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr8~ +
+endstream
endobj
11470 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRm +
+endstream
endobj
11471 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HZ{߇_ +
+endstream
endobj
11472 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?Vd- +
+endstream
endobj
11473 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=rm +
+endstream
endobj
11474 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
11475 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2| +
+endstream
endobj
11476 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+E_ +
+endstream
endobj
11477 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+e +
+endstream
endobj
11478 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aKy +
+endstream
endobj
11479 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
11480 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;E +
+endstream
endobj
11481 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr9j +
+endstream
endobj
11482 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hc +
+endstream
endobj
11483 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +9hm +
+endstream
endobj
11484 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hw +
+endstream
endobj
11485 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;nm +
+endstream
endobj
11486 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
11487 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hi +
+endstream
endobj
11488 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2 +
+endstream
endobj
11489 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H~ + +
+endstream
endobj
11490 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaC/ +
+endstream
endobj
11491 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hʾv5 +
+endstream
endobj
11492 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak- +
+endstream
endobj
11493 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>Nvm +
+endstream
endobj
11494 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:] +
+endstream
endobj
11495 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+E +
+endstream
endobj
11496 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[E +
+endstream
endobj
11497 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[ +
+endstream
endobj
11498 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[y +
+endstream
endobj
11499 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+/ +
+endstream
endobj
11500 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?xm +
+endstream
endobj
11501 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Ho] + +
+endstream
endobj
11502 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&] +
+endstream
endobj
11503 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<{M +
+endstream
endobj
11504 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&p] +
+endstream
endobj
11505 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR~m +
+endstream
endobj
11506 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hjyu +
+endstream
endobj
11507 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2;6ӏ +
+endstream
endobj
11508 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H9a+oLv?0 +
+endstream
endobj
11509 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha3>0 +
+endstream
endobj
11510 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?{ +
+endstream
endobj
11511 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H- +
+endstream
endobj
11512 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+E? +
+endstream
endobj
11513 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hk] +
+endstream
endobj
11514 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
11515 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[c +
+endstream
endobj
11516 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+e +
+endstream
endobj
11517 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[eO +
+endstream
endobj
1 0 obj
<</CropBox[0 0 595 842]/Annots[2 0 R 3 0 R 4 0 R 5 0 R 6 0 R 7 0 R 8 0 R]/Parent 1760 0 R/Tabs/S/StructParents 1/Contents 9 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
2 0 obj
<</Rect[353 289 511 302]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 456 null]/Type/Annot>>
endobj
3 0 obj
<</Rect[353 275 514 288]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 456 null]/Type/Annot>>
endobj
4 0 obj
<</Rect[353 261 520 274]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 456 null]/Type/Annot>>
endobj
5 0 obj
<</Rect[353 247 511 260]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 456 null]/Type/Annot>>
endobj
6 0 obj
<</Rect[353 233 492 246]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 456 null]/Type/Annot>>
endobj
7 0 obj
<</Rect[369 204 453 217]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 372 null]/Type/Annot>>
endobj
8 0 obj
<</Rect[455 204 470 217]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 651 null]/Type/Annot>>
endobj
9 0 obj
<</Length 1763/Filter/FlateDecode>>stream
+HWYoF~ׯG
=I.؍MleR%!)RǮiH+s~tV5}6i1#i\nieMIdh1jsM$bڏ(WLdXQքNPOqL #Q$CI"SA⧉CI=ԏ!<y"yo)D⃜x#U6\A.. 7z4^T$N BMhB$}-;*S[-{xUyL9OF^d7Ҡ6D+W;❼"{cm
U<C?GoQv$.L8SAT~S& TD?r%si4D_ѱ̵3_]zba!|7B!C:RP +ENAa^.`=bbH[<kXhF,a+ +Kz,h(&vᱩ̡OH4jEUT0l`Z>09Tڹ*KwU|!m,Quo%KYTmOmmRO} +`y
GX~{CZfYq=~'!a#е);Cx.&)䥔x,r,&ِYb&&{ؤI4
li@$ɮ`ƹΈ?$U^T9-*<KB/'ţ"˛XGQD`w+Y8;~b=>Pl̬6:MBʻ]fd£u6!(`)7T_p.`ϪH N.FFoE@@lݠEm5smXX8Gj@e_g{8P̮z3˶"ː!8,6I]~=`[gQ!8N@mHweaqmу݂ƬD-8\]5>?g}E$q2RxANwv*_*1HSq'܍#PSSR/ Pk$gfOxYotkp=;"od@yJw0 +endstream
endobj
10 0 obj
<</CropBox[0 0 595 842]/Parent 1760 0 R/Tabs/S/StructParents 2/Contents 11 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
11 0 obj
<</Length 2509/Filter/FlateDecode>>stream
+H]o+ @Q@='M-N`|$:i%ErJӶj>3tv($?0ru_t"/O[~v#ӋV1b̹#J\ +b-|Nj9\,&
%#?r\&ӟObA #̈́ќIPI,uT$!ӼW=[
g0^-&p<M*H"'ȡl&ޜN_y:tw,X@0d"8LG2w>mrޮ&bJlNf,U~ +~X\ewW2rb
[R+`KzMƨ?KI*f<fVo璟KDB8:|Zp?|S& +*K>q睇+TM:Tp +2$UH36ZܼůqCas"ŞzG RF{A'(B!dH !2{^ޮ|%qRЌk2CH!)'E$MQ*IG!Q16fHC}l=E{U9,ͶYYfs,MrӃ,~+zVe*X&b>*ΐL4mEu&~S\
χ8Gr䘊ďbO^`TpMJѻo: +j +/$ޥhجKšjMf5x8 $h#!lmP.O[:U.muSC5"QB49XEnUwWwø
i<p60nu! Cyasg;,r08Ɲg0sa*t]?Ñ S
͘T8,208~7}!"S7 +Fe5f +]G_x_ +endstream
endobj
12 0 obj
<</CropBox[0 0 595 842]/Annots 13 0 R/Parent 1760 0 R/Tabs/S/StructParents 3/Contents 51 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
13 0 obj
[14 0 R 15 0 R 16 0 R 17 0 R 18 0 R 19 0 R 20 0 R 21 0 R 22 0 R 23 0 R 24 0 R 25 0 R 26 0 R 27 0 R 28 0 R 29 0 R 30 0 R 31 0 R 32 0 R 33 0 R 34 0 R 35 0 R 36 0 R 37 0 R 38 0 R 39 0 R 40 0 R 41 0 R 42 0 R 43 0 R 44 0 R 45 0 R 46 0 R 47 0 R 48 0 R 49 0 R 50 0 R]
endobj
14 0 obj
<</Rect[170.1 666.124 541.14 681.284]/Subtype/Link/A 52 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
15 0 obj
<</Rect[170.1 640.084 541.14 655.244]/Subtype/Link/A 53 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
16 0 obj
<</Rect[170.1 614.104 541.14 629.264]/Subtype/Link/A 54 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
17 0 obj
<</Rect[181.08 594.124 541.14 609.284]/Subtype/Link/A 55 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
18 0 obj
<</Rect[181.08 580.084 541.14 595.244]/Subtype/Link/A 56 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
19 0 obj
<</Rect[181.08 566.104 541.14 581.264]/Subtype/Link/A 57 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
20 0 obj
<</Rect[170.1 546.124 541.14 561.284]/Subtype/Link/A 58 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
21 0 obj
<</Rect[181.08 526.084 541.14 541.244]/Subtype/Link/A 59 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
22 0 obj
<</Rect[192.12 512.104 541.14 527.264]/Subtype/Link/A 60 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
23 0 obj
<</Rect[192.12 498.124 541.14 513.284]/Subtype/Link/A 61 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
24 0 obj
<</Rect[170.1 478.084 541.14 493.244]/Subtype/Link/A 62 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
25 0 obj
<</Rect[181.08 458.104 541.14 473.264]/Subtype/Link/A 63 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
26 0 obj
<</Rect[192.12 444.124 541.14 459.284]/Subtype/Link/A 64 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
27 0 obj
<</Rect[192.12 430.084 541.14 445.244]/Subtype/Link/A 65 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
28 0 obj
<</Rect[192.12 416.104 541.14 431.264]/Subtype/Link/A 66 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
29 0 obj
<</Rect[192.12 402.124 541.14 417.284]/Subtype/Link/A 67 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
30 0 obj
<</Rect[181.08 388.084 541.14 403.244]/Subtype/Link/A 68 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
31 0 obj
<</Rect[181.08 374.104 541.14 389.264]/Subtype/Link/A 69 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
32 0 obj
<</Rect[181.08 360.124 541.14 375.284]/Subtype/Link/A 70 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
33 0 obj
<</Rect[170.1 340.084 541.14 355.244]/Subtype/Link/A 71 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
34 0 obj
<</Rect[181.08 320.104 541.14 335.264]/Subtype/Link/A 72 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
35 0 obj
<</Rect[192.12 306.124 541.14 321.284]/Subtype/Link/A 73 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
36 0 obj
<</Rect[192.12 292.084 541.14 307.244]/Subtype/Link/A 74 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
37 0 obj
<</Rect[181.08 278.104 541.14 293.264]/Subtype/Link/A 75 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
38 0 obj
<</Rect[170.1 258.124 541.14 273.284]/Subtype/Link/A 76 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
39 0 obj
<</Rect[181.08 238.084 541.14 253.244]/Subtype/Link/A 77 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
40 0 obj
<</Rect[192.12 224.104 541.14 239.264]/Subtype/Link/A 78 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
41 0 obj
<</Rect[192.12 210.124 541.14 225.284]/Subtype/Link/A 79 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
42 0 obj
<</Rect[192.12 196.084 541.14 211.244]/Subtype/Link/A 80 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
43 0 obj
<</Rect[192.12 182.104 541.14 197.264]/Subtype/Link/A 81 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
44 0 obj
<</Rect[192.12 168.124 541.14 183.284]/Subtype/Link/A 82 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
45 0 obj
<</Rect[192.12 154.084 541.14 169.244]/Subtype/Link/A 83 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
46 0 obj
<</Rect[181.08 140.104 541.14 155.264]/Subtype/Link/A 84 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
47 0 obj
<</Rect[181.08 126.124 541.14 141.284]/Subtype/Link/A 85 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
48 0 obj
<</Rect[181.08 112.084 541.14 127.244]/Subtype/Link/A 86 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
49 0 obj
<</Rect[170.1 92.1042 541.14 107.264]/Subtype/Link/A 87 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
50 0 obj
<</Rect[181.08 72.1242 541.14 87.2842]/Subtype/Link/A 88 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
51 0 obj
<</Length 3847/Filter/FlateDecode>>stream
+HW]o8}72V%~ +U(ӭ`0MSxNrhO%7}si0(/`7'涡Ù0E14ÉgG^I1%1We0A˯e'@ẘ]W3WҔv0$ +^^PsSwR0<f +J]_u(.[~OH*l!,VՒ2q*B<vd`Ǹa#۩:\?fHEA;iWGhZrh +9,d+
k# t5ބ>'{àG{'VFN~j9* +/ؼ/ZF-)G<,vsA,9da|몥'0ڝ(gXZhX7&{|^d2:}i5=}cikDMmٖƈV6>}SB{ Ԁ34̫I<)s4 O"Us +G2K<f
lv]p9kzu`ͬqK/ q0p>|]ud*0䗟8PfGIΘ%쀹b6\oNFYGD̗ +PL5JE)!9l앝FX>a:n 0drm> +/+P.*ˍّq-Y+RNRpBJj%eBQ3ɊqFrQ?PZn$'ѡa@neO?1-(@Cy:ÆvfHyɼڳ9)ş?.4MH=߭RwYZ`^iK忑N[Y@,Ч=ZdU +E:Tx ;B.N3K[JEWHU1íx̀4`6=8]
=TiH Ol
[>r}t-,O-?;ԉBGr +Zs}ہuNk~18! jtݘqote"3 +zƭWp'Ǭ3(x8Fxzp3Ǭ xcP5o +qiʐ`FOşIĬ +݃z< bh"~{gq-*+{WRT~?8/7Nh2)+DUw1gȘQ +endstream
endobj
52 0 obj
<</D[1 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
53 0 obj
<</D[10 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
54 0 obj
<</D[134 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
55 0 obj
<</D[134 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
56 0 obj
<</D[1340 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
57 0 obj
<</D[1344 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
58 0 obj
<</D[1347 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
59 0 obj
<</D[1347 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
60 0 obj
<</D[1347 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
61 0 obj
<</D[1356 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
62 0 obj
<</D[1380 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
63 0 obj
<</D[1380 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
64 0 obj
<</D[1380 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
65 0 obj
<</D[1380 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
66 0 obj
<</D[1382 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
67 0 obj
<</D[1385 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
68 0 obj
<</D[1385 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
69 0 obj
<</D[1390 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
70 0 obj
<</D[1390 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
71 0 obj
<</D[1392 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
72 0 obj
<</D[1392 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
73 0 obj
<</D[1392 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
74 0 obj
<</D[1394 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
75 0 obj
<</D[1394 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
76 0 obj
<</D[1399 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
77 0 obj
<</D[1399 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
78 0 obj
<</D[1399 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
79 0 obj
<</D[1402 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
80 0 obj
<</D[1404 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
81 0 obj
<</D[1404 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
82 0 obj
<</D[1413 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
83 0 obj
<</D[1417 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
84 0 obj
<</D[1417 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
85 0 obj
<</D[1420 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
86 0 obj
<</D[1420 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
87 0 obj
<</D[1423 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
88 0 obj
<</D[1423 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
89 0 obj
<</CropBox[0 0 595 842]/Annots 90 0 R/Parent 1760 0 R/Tabs/S/StructParents 4/Contents 112 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9677 0 R/TT2 9680 0 R/TT3 9676 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
90 0 obj
[91 0 R 92 0 R 93 0 R 94 0 R 95 0 R 96 0 R 97 0 R 98 0 R 99 0 R 100 0 R 101 0 R 102 0 R 103 0 R 104 0 R 105 0 R 106 0 R 107 0 R 108 0 R 109 0 R 110 0 R 111 0 R]
endobj
91 0 obj
<</Rect[192.12 700.084 541.14 715.244]/Subtype/Link/A 113 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
92 0 obj
<</Rect[192.12 686.104 541.14 701.264]/Subtype/Link/A 114 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
93 0 obj
<</Rect[181.08 672.124 541.14 687.284]/Subtype/Link/A 115 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
94 0 obj
<</Rect[170.1 652.084 541.14 667.244]/Subtype/Link/A 116 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
95 0 obj
<</Rect[170.1 626.104 541.14 641.264]/Subtype/Link/A 117 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
96 0 obj
<</Rect[181.08 606.124 541.14 621.284]/Subtype/Link/A 118 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
97 0 obj
<</Rect[181.08 592.084 541.14 607.244]/Subtype/Link/A 119 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
98 0 obj
<</Rect[192.12 578.104 541.14 593.264]/Subtype/Link/A 120 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
99 0 obj
<</Rect[192.12 564.124 537.576 579.284]/Subtype/Link/A 121 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
100 0 obj
<</Rect[192.12 550.084 541.14 565.244]/Subtype/Link/A 122 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
101 0 obj
<</Rect[192.12 536.104 537.686 551.264]/Subtype/Link/A 123 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
102 0 obj
<</Rect[192.12 522.124 238.2 537.284]/Subtype/Link/A 124 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
103 0 obj
<</Rect[192.12 508.084 541.14 523.244]/Subtype/Link/A 125 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
104 0 obj
<</Rect[192.12 494.104 541.14 509.264]/Subtype/Link/A 126 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
105 0 obj
<</Rect[192.12 480.124 541.14 495.284]/Subtype/Link/A 127 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
106 0 obj
<</Rect[181.08 466.084 541.14 481.244]/Subtype/Link/A 128 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
107 0 obj
<</Rect[192.12 452.104 541.14 467.264]/Subtype/Link/A 129 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
108 0 obj
<</Rect[192.12 438.124 541.14 453.284]/Subtype/Link/A 130 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
109 0 obj
<</Rect[192.12 424.084 541.14 439.244]/Subtype/Link/A 131 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
110 0 obj
<</Rect[192.12 410.104 541.14 425.264]/Subtype/Link/A 132 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
111 0 obj
<</Rect[181.08 396.124 541.14 411.284]/Subtype/Link/A 133 0 R/H/I/Border[0 0 0]/Type/Annot>>
endobj
112 0 obj
<</Length 2661/Filter/FlateDecode>>stream
+HWnH}Џ)
e ,0#ӱl~ER2$ +L)$Sf;on;r;HO Myv..!DmD"' 5Qǂ|7#һH{,&-?z McBIzߣq3B"҂$49Iӿ{(Qn5N{G2b|0&Ɨet7
,>k ҆߈3DDF!4$Kڗy3)FxW~s+BT5 +~d}O움VKbMHcUҀi&%>BE#%yc-3l6qb# +ktvZpPb-_ƣt/5`v!UQ:<r +[)\px5!ZvhQ@==nW~V:᷹lz4.Ȱ?>4MǗpU +>fh>J;̒R
87p4.>@^%DO<NG6 >~fV7돗y6!όj͈ӇNF[*|,vqvF<Բ
_CYw|K<E_pWDpkԾ-PPݟBͬ?^+L4BGLllr8_jgkɧ$%A?ׅqNT2fZ]zhu[[`րP"\`w`BT72"%!@/ H@k
]3%Hc
Zb9ex.yK^uni{~(;(fX̨sXoXn{`M8Ϳ=$
(nmVፍ}ysYÃ{k[Z[
\i#e\$&'<}*@ ?
D̳'ZG= +(ǐKyȾS^d 5aTbq'@Xª@DEPS=*Nz莨ð}ؑ_O@.6 =Q_`2AK
U[Ȳ⑆ٵ|{.;)w7-HdݬhMZ l:AB;rn_vux=W@94bG`cCqA+^tE/!7hlOO
J&wn*UQWAM+-Nz *@0+iL!`@
0K㊏=Q1Hd>`UtdI:.~0AZpy9Bi' +Ò8<;DẦh`hNEq)0ap*&j#pRA3,G5Hj)8w'B)=ㅺUzU>I`%5BGry]X;qք߳psunMUD,FZ<BAVӳugtUux= +<c-{Gl5@3{hdg#*fC*Z`GP^rIk7Y'pT3oΕzZ&l'
Ё9^?²}ymgo}計JJn^V.Yԯ;^87;ܚY>',7b?v}qûG[_Ɉ1]άv"I*Zj6?h<^N,l1m@a[7䏫)luU
7¶a憌j'kk.|?\l\n)^Es evHY_
S@WCw+JTҩ(ccS@Aš[t +\U氃2W/c H +endstream
endobj
113 0 obj
<</D[1426 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
114 0 obj
<</D[1428 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
115 0 obj
<</D[1428 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
116 0 obj
<</D[1433 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
117 0 obj
<</D[1435 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
118 0 obj
<</D[1435 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
119 0 obj
<</D[1445 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
120 0 obj
<</D[1445 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
121 0 obj
<</D[1453 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
122 0 obj
<</D[1453 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
123 0 obj
<</D[1455 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
124 0 obj
<</D[1455 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
125 0 obj
<</D[1455 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
126 0 obj
<</D[1457 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
127 0 obj
<</D[1457 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
128 0 obj
<</D[1459 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
129 0 obj
<</D[1459 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
130 0 obj
<</D[1465 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
131 0 obj
<</D[1465 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
132 0 obj
<</D[1468 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
133 0 obj
<</D[1468 0 R/XYZ 0 842 null]/S/GoTo>>
endobj
134 0 obj
<</CropBox[0 0 595 842]/Annots[135 0 R 136 0 R 137 0 R 138 0 R 139 0 R 140 0 R 141 0 R 142 0 R 143 0 R 144 0 R 145 0 R 146 0 R 147 0 R 148 0 R 149 0 R 150 0 R 151 0 R 152 0 R 153 0 R 154 0 R]/Parent 1760 0 R/Tabs/S/StructParents 5/Contents 155 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im1690 156 0 R/Im1691 157 0 R/Im1692 158 0 R/Im1693 159 0 R/Im1694 9736 0 R/Im1695 9737 0 R/Im1696 9738 0 R/Im1697 160 0 R/Im1390 161 0 R/Im1698 162 0 R/Im1391 163 0 R/Im1699 164 0 R/Im1392 165 0 R/Im1393 166 0 R/Im1394 9739 0 R/Im1395 9740 0 R/Im1396 9741 0 R/Im1090 167 0 R/Im1397 168 0 R/Im1091 9742 0 R/Im1398 169 0 R/Im1092 170 0 R/Im1399 171 0 R/Im1093 172 0 R/Im1094 173 0 R/Im1095 174 0 R/Im1096 175 0 R/Im1097 176 0 R/Im1098 177 0 R/Im1099 9743 0 R/Im800 178 0 R/Im801 179 0 R/Im802 180 0 R/Im803 181 0 R/Im804 182 0 R/Im805 183 0 R/Im806 184 0 R/Im500 185 0 R/Im807 186 0 R/Im501 187 0 R/Im808 188 0 R/Im502 189 0 R/Im809 190 0 R/Im503 191 0 R/Im504 192 0 R/Im505 9744 0 R/Im506 193 0 R/Im200 194 0 R/Im507 195 0 R/Im201 196 0 R/Im508 9745 0 R/Im202 9746 0 R/Im509 197 0 R/Im203 198 0 R/Im204 9747 0 R/Im205 9748 0 R/Im206 9749 0 R/Im207 199 0 R/Im208 200 0 R/Im209 9750 0 R/Im810 201 0 R/Im811 202 0 R/Im812 203 0 R/Im813 204 0 R/Im814 205 0 R/Im815 206 0 R/Im816 207 0 R/Im510 208 0 R/Im817 209 0 R/Im511 210 0 R/Im818 211 0 R/Im512 212 0 R/Im819 213 0 R/Im513 214 0 R/Im514 215 0 R/Im515 9751 0 R/Im516 216 0 R/Im210 9752 0 R/Im517 217 0 R/Im211 218 0 R/Im518 219 0 R/Im212 9753 0 R/Im519 220 0 R/Im213 221 0 R/Im214 222 0 R/Im215 223 0 R/Im216 9754 0 R/Im217 224 0 R/Im218 9755 0 R/Im219 9756 0 R/Im820 225 0 R/Im821 226 0 R/Im822 227 0 R/Im823 9757 0 R/Im824 9758 0 R/Im825 228 0 R/Im826 229 0 R/Im520 230 0 R/Im827 231 0 R/Im521 232 0 R/Im828 233 0 R/Im522 234 0 R/Im829 235 0 R/Im523 236 0 R/Im524 237 0 R/Im525 238 0 R/Im526 239 0 R/Im220 9759 0 R/Im527 240 0 R/Im221 241 0 R/Im528 242 0 R/Im222 243 0 R/Im529 244 0 R/Im223 9760 0 R/Im224 245 0 R/Im225 246 0 R/Im226 9761 0 R/Im227 247 0 R/Im228 9762 0 R/Im229 248 0 R/Im830 249 0 R/Im831 9763 0 R/Im832 250 0 R/Im833 251 0 R/Im834 9764 0 R/Im835 9765 0 R/Im836 252 0 R/Im530 253 0 R/Im837 254 0 R/Im531 9766 0 R/Im838 255 0 R/Im532 256 0 R/Im839 257 0 R/Im533 258 0 R/Im534 259 0 R/Im535 260 0 R/Im536 261 0 R/Im230 9767 0 R/Im537 262 0 R/Im231 263 0 R/Im538 264 0 R/Im232 265 0 R/Im539 266 0 R/Im233 9768 0 R/Im234 9769 0 R/Im235 267 0 R/Im236 9770 0 R/Im237 268 0 R/Im238 269 0 R/Im239 9771 0 R/Im840 270 0 R/Im841 271 0 R/Im842 272 0 R/Im843 273 0 R/Im844 274 0 R/Im845 275 0 R/Im846 9772 0 R/Im540 276 0 R/Im847 277 0 R/Im541 278 0 R/Im848 279 0 R/Im542 280 0 R/Im849 281 0 R/Im543 282 0 R/Im544 283 0 R/Im545 284 0 R/Im546 285 0 R/Im240 286 0 R/Im547 9773 0 R/Im241 287 0 R/Im548 288 0 R/Im242 9774 0 R/Im549 289 0 R/Im243 290 0 R/Im244 9775 0 R/Im245 9776 0 R/Im246 291 0 R/Im247 292 0 R/Im248 9777 0 R/Im249 9778 0 R/Im850 9779 0 R/Im851 9780 0 R/Im852 293 0 R/Im853 294 0 R/Im854 295 0 R/Im855 296 0 R/Im856 297 0 R/Im550 298 0 R/Im857 299 0 R/Im551 300 0 R/Im858 301 0 R/Im552 302 0 R/Im859 303 0 R/Im553 304 0 R/Im554 305 0 R/Im555 306 0 R/Im556 307 0 R/Im250 308 0 R/Im557 309 0 R/Im251 9781 0 R/Im558 310 0 R/Im252 311 0 R/Im559 312 0 R/Im253 313 0 R/Im254 9782 0 R/Im255 9783 0 R/Im256 314 0 R/Im257 9784 0 R/Im258 315 0 R/Im259 9785 0 R/Im860 316 0 R/Im861 9786 0 R/Im862 9787 0 R/Im863 317 0 R/Im864 318 0 R/Im865 9788 0 R/Im866 9789 0 R/Im560 319 0 R/Im867 9790 0 R/Im561 320 0 R/Im868 321 0 R/Im562 322 0 R/Im869 323 0 R/Im563 9791 0 R/Im564 324 0 R/Im565 325 0 R/Im566 326 0 R/Im260 327 0 R/Im567 328 0 R/Im261 9792 0 R/Im568 329 0 R/Im262 9793 0 R/Im569 330 0 R/Im263 331 0 R/Im264 9794 0 R/Im265 9795 0 R/Im266 9796 0 R/Im267 332 0 R/Im268 9797 0 R/Im269 333 0 R/Im870 9798 0 R/Im871 334 0 R/Im872 9799 0 R/Im873 335 0 R/Im874 336 0 R/Im875 337 0 R/Im876 338 0 R/Im570 339 0 R/Im877 340 0 R/Im571 341 0 R/Im878 9800 0 R/Im572 342 0 R/Im879 343 0 R/Im573 344 0 R/Im574 345 0 R/Im575 346 0 R/Im576 347 0 R/Im270 9801 0 R/Im577 348 0 R/Im271 9802 0 R/Im578 9803 0 R/Im272 9804 0 R/Im579 349 0 R/Im273 350 0 R/Im274 9805 0 R/Im275 9806 0 R/Im276 9807 0 R/Im277 9808 0 R/Im278 351 0 R/Im279 9809 0 R/Im880 352 0 R/Im881 353 0 R/Im882 9810 0 R/Im883 354 0 R/Im884 9811 0 R/Im885 355 0 R/Im886 356 0 R/Im580 357 0 R/Im887 9812 0 R/Im581 358 0 R/Im888 359 0 R/Im582 360 0 R/Im889 361 0 R/Im583 362 0 R/Im584 363 0 R/Im585 364 0 R/Im586 365 0 R/Im280 366 0 R/Im587 367 0 R/Im281 9813 0 R/Im588 368 0 R/Im282 9814 0 R/Im589 369 0 R/Im283 9815 0 R/Im284 370 0 R/Im285 9816 0 R/Im286 9817 0 R/Im287 371 0 R/Im288 9818 0 R/Im289 9819 0 R/Im890 372 0 R/Im891 373 0 R/Im892 9820 0 R/Im893 374 0 R/Im894 375 0 R/Im895 9821 0 R/Im896 376 0 R/Im590 377 0 R/Im897 378 0 R/Im591 379 0 R/Im898 380 0 R/Im592 381 0 R/Im899 382 0 R/Im593 9822 0 R/Im594 383 0 R/Im595 384 0 R/Im596 385 0 R/Im290 9823 0 R/Im597 386 0 R/Im291 9824 0 R/Im598 387 0 R/Im292 9825 0 R/Im599 388 0 R/Im293 389 0 R/Im294 390 0 R/Im295 9826 0 R/Im296 391 0 R/Im297 392 0 R/Im298 9827 0 R/Im299 9828 0 R/Im10 393 0 R/Im11 394 0 R/Im12 395 0 R/Im13 396 0 R/Im14 397 0 R/Im15 398 0 R/Im16 399 0 R/Im17 400 0 R/Im18 401 0 R/Im19 402 0 R/Im20 403 0 R/Im21 404 0 R/Im22 405 0 R/Im23 406 0 R/Im24 407 0 R/Im25 408 0 R/Im26 409 0 R/Im27 410 0 R/Im28 411 0 R/Im29 412 0 R/Im30 413 0 R/Im31 414 0 R/Im32 415 0 R/Im33 416 0 R/Im34 417 0 R/Im35 418 0 R/Im36 419 0 R/Im37 420 0 R/Im38 421 0 R/Im39 422 0 R/Im40 423 0 R/Im41 424 0 R/Im42 425 0 R/Im43 426 0 R/Im44 427 0 R/Im45 428 0 R/Im46 429 0 R/Im47 430 0 R/Im48 431 0 R/Im49 432 0 R/Im50 433 0 R/Im51 434 0 R/Im52 435 0 R/Im53 436 0 R/Im54 437 0 R/Im55 438 0 R/Im56 439 0 R/Im57 440 0 R/Im58 441 0 R/Im59 442 0 R/Im60 443 0 R/Im61 444 0 R/Im62 445 0 R/Im63 9829 0 R/Im64 9830 0 R/Im65 446 0 R/Im66 447 0 R/Im67 448 0 R/Im68 449 0 R/Im69 450 0 R/Im70 451 0 R/Im71 452 0 R/Im72 9831 0 R/Im73 453 0 R/Im74 9832 0 R/Im75 454 0 R/Im76 455 0 R/Im77 456 0 R/Im78 457 0 R/Im79 458 0 R/Im80 9833 0 R/Im81 459 0 R/Im82 9834 0 R/Im83 460 0 R/Im84 461 0 R/Im85 462 0 R/Im86 463 0 R/Im87 464 0 R/Im88 9835 0 R/Im89 9836 0 R/Im90 9837 0 R/Im91 9838 0 R/Im92 465 0 R/Im93 466 0 R/Im94 467 0 R/Im95 468 0 R/Im96 469 0 R/Im97 9839 0 R/Im98 9840 0 R/Im99 9841 0 R/Im1700 9842 0 R/Im1701 9844 0 R/Im1702 9845 0 R/Im1703 470 0 R/Im1704 471 0 R/Im1705 9846 0 R/Im1706 9847 0 R/Im1707 9848 0 R/Im1400 472 0 R/Im1708 9850 0 R/Im1401 9851 0 R/Im1709 473 0 R/Im1402 474 0 R/Im1403 475 0 R/Im1404 476 0 R/Im1405 9852 0 R/Im1406 9853 0 R/Im1100 477 0 R/Im1407 478 0 R/Im1101 479 0 R/Im1408 9854 0 R/Im1102 9855 0 R/Im1409 480 0 R/Im1103 481 0 R/Im1104 482 0 R/Im1105 483 0 R/Im1106 484 0 R/Im1107 485 0 R/Im1108 486 0 R/Im1109 487 0 R/Im1710 488 0 R/Im1711 9856 0 R/Im1712 9857 0 R/Im1713 489 0 R/Im1714 490 0 R/Im1715 491 0 R/Im1716 9859 0 R/Im1717 492 0 R/Im1410 493 0 R/Im1718 9860 0 R/Im1411 494 0 R/Im1719 495 0 R/Im1412 9861 0 R/Im1413 496 0 R/Im1414 9862 0 R/Im1415 497 0 R/Im1416 498 0 R/Im1110 499 0 R/Im1417 500 0 R/Im1111 501 0 R/Im1418 502 0 R/Im1112 503 0 R/Im1419 9863 0 R/Im1113 504 0 R/Im1114 505 0 R/Im1115 506 0 R/Im1116 507 0 R/Im1117 508 0 R/Im1118 509 0 R/Im1119 510 0 R/Im1720 511 0 R/Im1721 512 0 R/Im1722 513 0 R/Im1723 514 0 R/Im1724 9864 0 R/Im1725 515 0 R/Im1726 516 0 R/Im1727 518 0 R/Im1420 519 0 R/Im1421 520 0 R/Im1422 521 0 R/Im1423 522 0 R/Im1424 523 0 R/Im1425 524 0 R/Im1426 525 0 R/Im1120 526 0 R/Im1427 527 0 R/Im1121 528 0 R/Im1428 9865 0 R/Im1122 529 0 R/Im1429 530 0 R/Im1123 531 0 R/Im1124 532 0 R/Im1125 533 0 R/Im1126 534 0 R/Im1127 9866 0 R/Im1128 535 0 R/Im1129 536 0 R/Im1430 537 0 R/Im1431 538 0 R/Im1432 539 0 R/Im1433 540 0 R/Im1434 541 0 R/Im1435 542 0 R/Im1436 543 0 R/Im1130 544 0 R/Im1437 545 0 R/Im1131 9867 0 R/Im1438 546 0 R/Im1132 547 0 R/Im1439 548 0 R/Im1133 549 0 R/Im1134 550 0 R/Im1135 9868 0 R/Im1136 9869 0 R/Im1137 551 0 R/Im1138 552 0 R/Im1139 9870 0 R/Im1440 9871 0 R/Im1441 553 0 R/Im1442 554 0 R/Im1443 9872 0 R/Im1444 9873 0 R/Im1445 9874 0 R/Im1446 555 0 R/Im1140 9875 0 R/Im1447 9876 0 R/Im1141 556 0 R/Im1448 557 0 R/Im1142 9877 0 R/Im1449 558 0 R/Im1143 559 0 R/Im1144 9878 0 R/Im1145 9879 0 R/Im1146 9880 0 R/Im1147 560 0 R/Im1148 561 0 R/Im1149 9881 0 R/Im1450 562 0 R/Im1451 563 0 R/Im1452 9882 0 R/Im1453 9883 0 R/Im1454 564 0 R/Im1455 9884 0 R/Im1456 565 0 R/Im1150 9885 0 R/Im1457 9886 0 R/Im1151 9887 0 R/Im1458 9888 0 R/Im1152 9889 0 R/Im1459 9890 0 R/Im1153 9891 0 R/Im1154 9892 0 R/Im1155 9893 0 R/Im1156 9894 0 R/Im1157 9895 0 R/Im1158 9896 0 R/Im1159 9897 0 R/Im1460 9898 0 R/Im1461 9899 0 R/Im1462 9900 0 R/Im1463 566 0 R/Im1464 567 0 R/Im1465 568 0 R/Im1466 569 0 R/Im1160 9901 0 R/Im1467 9902 0 R/Im1161 9903 0 R/Im1468 9904 0 R/Im1162 9905 0 R/Im1469 570 0 R/Im1163 9906 0 R/Im1164 9907 0 R/Im1165 9908 0 R/Im1166 9909 0 R/Im1167 9910 0 R/Im1168 9911 0 R/Im1169 571 0 R/Im1470 572 0 R/Im1471 573 0 R/Im1472 574 0 R/Im1473 575 0 R/Im1474 9912 0 R/Im1475 9913 0 R/Im1476 576 0 R/Im1170 577 0 R/Im1477 578 0 R/Im1171 9915 0 R/Im1478 579 0 R/Im1172 580 0 R/Im1479 581 0 R/Im1173 9916 0 R/Im1174 582 0 R/Im1175 583 0 R/Im1176 9917 0 R/Im1177 9918 0 R/Im1178 9919 0 R/Im1179 9921 0 R/Im1480 9922 0 R/Im1481 9923 0 R/Im1482 584 0 R/Im1483 585 0 R/Im1484 9924 0 R/Im1485 586 0 R/Im1486 9925 0 R/Im1180 9926 0 R/Im1487 9927 0 R/Im1181 9928 0 R/Im1488 587 0 R/Im1182 588 0 R/Im1489 589 0 R/Im1183 590 0 R/Im1184 9929 0 R/Im1185 9930 0 R/Im1186 591 0 R/Im1187 9932 0 R/Im1188 9933 0 R/Im1189 592 0 R/Im1490 593 0 R/Im1491 9934 0 R/Im1492 594 0 R/Im1493 595 0 R/Im1494 9935 0 R/Im1495 596 0 R/Im1496 597 0 R/Im1190 9936 0 R/Im1497 9937 0 R/Im1191 9938 0 R/Im1498 598 0 R/Im1192 599 0 R/Im1499 600 0 R/Im1193 9939 0 R/Im1194 601 0 R/Im1195 9940 0 R/Im1196 602 0 R/Im1197 603 0 R/Im1198 604 0 R/Im1199 9941 0 R/Im900 9942 0 R/Im901 9943 0 R/Im902 605 0 R/Im903 606 0 R/Im904 9944 0 R/Im905 9945 0 R/Im906 607 0 R/Im907 608 0 R/Im600 609 0 R/Im601 610 0 R/Im908 611 0 R/Im602 612 0 R/Im909 613 0 R/Im603 614 0 R/Im604 615 0 R/Im605 616 0 R/Im606 617 0 R/Im300 618 0 R/Im607 619 0 R/Im301 9946 0 R/Im608 620 0 R/Im302 9947 0 R/Im609 9948 0 R/Im303 621 0 R/Im304 622 0 R/Im305 623 0 R/Im306 9949 0 R/Im307 9950 0 R/Im308 624 0 R/Im309 9951 0 R/Im910 9952 0 R/Im911 9953 0 R/Im912 625 0 R/Im913 626 0 R/Im914 9954 0 R/Im915 9955 0 R/Im916 9956 0 R/Im610 627 0 R/Im917 628 0 R/Im611 629 0 R/Im918 630 0 R/Im612 631 0 R/Im919 9957 0 R/Im613 632 0 R/Im614 633 0 R/Im615 634 0 R/Im616 635 0 R/Im310 9958 0 R/Im617 636 0 R/Im311 637 0 R/Im618 638 0 R/Im312 639 0 R/Im619 640 0 R/Im313 641 0 R/Im314 642 0 R/Im315 9959 0 R/Im316 9960 0 R/Im317 9961 0 R/Im318 9962 0 R/Im319 643 0 R/Im920 644 0 R/Im921 645 0 R/Im922 646 0 R/Im923 647 0 R/Im924 648 0 R/Im925 9963 0 R/Im926 9964 0 R/Im620 649 0 R/Im927 650 0 R/Im621 651 0 R/Im928 652 0 R/Im622 653 0 R/Im929 9965 0 R/Im623 654 0 R/Im624 655 0 R/Im625 9966 0 R/Im626 656 0 R/Im320 657 0 R/Im627 658 0 R/Im321 659 0 R/Im628 660 0 R/Im322 661 0 R/Im629 662 0 R/Im323 663 0 R/Im324 9967 0 R/Im325 9968 0 R/Im326 664 0 R/Im327 9969 0 R/Im328 9970 0 R/Im329 9971 0 R/Im930 9972 0 R/Im931 665 0 R/Im932 666 0 R/Im933 667 0 R/Im934 9973 0 R/Im935 668 0 R/Im936 669 0 R/Im630 670 0 R/Im937 9974 0 R/Im631 671 0 R/Im938 672 0 R/Im632 673 0 R/Im939 674 0 R/Im633 675 0 R/Im634 676 0 R/Im635 677 0 R/Im636 678 0 R/Im330 679 0 R/Im637 680 0 R/Im331 681 0 R/Im638 682 0 R/Im332 9975 0 R/Im639 683 0 R/Im333 9976 0 R/Im334 684 0 R/Im335 685 0 R/Im336 9977 0 R/Im337 686 0 R/Im338 687 0 R/Im339 9978 0 R/Im940 9979 0 R/Im941 688 0 R/Im942 689 0 R/Im943 690 0 R/Im944 9980 0 R/Im945 691 0 R/Im946 692 0 R/Im640 693 0 R/Im947 694 0 R/Im641 9981 0 R/Im948 9982 0 R/Im642 695 0 R/Im949 9983 0 R/Im643 696 0 R/Im644 697 0 R/Im645 698 0 R/Im646 699 0 R/Im340 9984 0 R/Im647 700 0 R/Im341 701 0 R/Im648 702 0 R/Im342 9985 0 R/Im649 703 0 R/Im343 704 0 R/Im344 705 0 R/Im345 9986 0 R/Im346 9987 0 R/Im347 706 0 R/Im348 707 0 R/Im349 708 0 R/Im950 709 0 R/Im951 9988 0 R/Im952 710 0 R/Im953 9989 0 R/Im954 711 0 R/Im955 9990 0 R/Im956 9991 0 R/Im650 712 0 R/Im957 713 0 R/Im651 714 0 R/Im958 715 0 R/Im652 716 0 R/Im959 9992 0 R/Im653 717 0 R/Im654 718 0 R/Im655 9993 0 R/Im656 719 0 R/Im350 720 0 R/Im657 721 0 R/Im351 722 0 R/Im658 723 0 R/Im352 724 0 R/Im659 725 0 R/Im353 726 0 R/Im354 727 0 R/Im355 728 0 R/Im356 9994 0 R/Im357 729 0 R/Im358 730 0 R/Im359 731 0 R/Im960 9995 0 R/Im961 9996 0 R/Im962 732 0 R/Im963 733 0 R/Im964 9997 0 R/Im965 734 0 R/Im966 735 0 R/Im660 736 0 R/Im967 9998 0 R/Im661 737 0 R/Im968 9999 0 R/Im662 738 0 R/Im969 10000 0 R/Im663 739 0 R/Im664 740 0 R/Im665 741 0 R/Im666 742 0 R/Im360 743 0 R/Im667 744 0 R/Im361 745 0 R/Im668 746 0 R/Im362 10001 0 R/Im669 747 0 R/Im363 10002 0 R/Im364 748 0 R/Im365 749 0 R/Im366 750 0 R/Im367 751 0 R/Im368 752 0 R/Im369 753 0 R/Im970 754 0 R/Im971 10003 0 R/Im972 755 0 R/Im973 756 0 R/Im974 10004 0 R/Im975 10005 0 R/Im976 757 0 R/Im670 10006 0 R/Im977 758 0 R/Im671 759 0 R/Im978 10007 0 R/Im672 760 0 R/Im979 761 0 R/Im673 762 0 R/Im674 763 0 R/Im675 764 0 R/Im676 765 0 R/Im370 766 0 R/Im677 767 0 R/Im371 768 0 R/Im678 769 0 R/Im372 770 0 R/Im679 771 0 R/Im373 10008 0 R/Im374 772 0 R/Im375 773 0 R/Im376 774 0 R/Im377 775 0 R/Im378 776 0 R/Im379 777 0 R/Im980 778 0 R/Im981 10009 0 R/Im982 10010 0 R/Im983 779 0 R/Im984 10011 0 R/Im985 780 0 R/Im986 781 0 R/Im680 782 0 R/Im987 783 0 R/Im681 784 0 R/Im988 10012 0 R/Im682 785 0 R/Im989 10013 0 R/Im683 786 0 R/Im684 10014 0 R/Im685 787 0 R/Im686 788 0 R/Im380 10015 0 R/Im687 789 0 R/Im381 790 0 R/Im688 791 0 R/Im382 792 0 R/Im689 793 0 R/Im383 794 0 R/Im384 795 0 R/Im385 796 0 R/Im386 797 0 R/Im387 798 0 R/Im388 799 0 R/Im389 800 0 R/Im990 801 0 R/Im991 802 0 R/Im992 10016 0 R/Im993 803 0 R/Im994 804 0 R/Im995 805 0 R/Im996 10017 0 R/Im690 806 0 R/Im997 10018 0 R/Im691 807 0 R/Im998 808 0 R/Im692 809 0 R/Im999 10019 0 R/Im693 810 0 R/Im694 811 0 R/Im695 812 0 R/Im696 813 0 R/Im390 814 0 R/Im697 815 0 R/Im391 816 0 R/Im698 817 0 R/Im392 10020 0 R/Im699 818 0 R/Im393 819 0 R/Im394 10021 0 R/Im395 820 0 R/Im396 821 0 R/Im397 822 0 R/Im398 823 0 R/Im399 824 0 R/Im1500 10022 0 R/Im1501 10023 0 R/Im1502 825 0 R/Im1503 826 0 R/Im1504 827 0 R/Im1505 828 0 R/Im1506 829 0 R/Im1200 830 0 R/Im1507 831 0 R/Im1201 832 0 R/Im1508 833 0 R/Im1202 10024 0 R/Im1509 834 0 R/Im1203 10025 0 R/Im1204 10026 0 R/Im1205 835 0 R/Im1206 10027 0 R/Im1207 10028 0 R/Im1208 10029 0 R/Im1209 836 0 R/Im1510 837 0 R/Im1511 10030 0 R/Im1512 838 0 R/Im1513 839 0 R/Im1514 10031 0 R/Im1515 840 0 R/Im1516 841 0 R/Im1210 842 0 R/Im1517 10032 0 R/Im1211 843 0 R/Im1518 10033 0 R/Im1212 10034 0 R/Im1519 10035 0 R/Im1213 844 0 R/Im1214 10036 0 R/Im1215 10037 0 R/Im1216 845 0 R/Im1217 10038 0 R/Im1218 10039 0 R/Im1219 10040 0 R/Im1520 10041 0 R/Im1521 10042 0 R/Im1522 846 0 R/Im1523 847 0 R/Im1524 848 0 R/Im1525 849 0 R/Im1526 850 0 R/Im1220 851 0 R/Im1527 852 0 R/Im1221 853 0 R/Im1528 854 0 R/Im1222 10043 0 R/Im1529 855 0 R/Im1223 10044 0 R/Im1224 10045 0 R/Im1225 856 0 R/Im1226 10046 0 R/Im1227 857 0 R/Im1228 10047 0 R/Im1229 10048 0 R/Im1530 858 0 R/Im1531 859 0 R/Im1532 10049 0 R/Im1533 10050 0 R/Im1534 860 0 R/Im1535 861 0 R/Im1536 862 0 R/Im1230 10051 0 R/Im1537 863 0 R/Im1231 10052 0 R/Im1538 10053 0 R/Im1232 10054 0 R/Im1539 864 0 R/Im1233 865 0 R/Im1234 10055 0 R/Im1235 10056 0 R/Im1236 866 0 R/Im1237 10057 0 R/Im1238 10058 0 R/Im1239 10059 0 R/Im1540 867 0 R/Im1541 868 0 R/Im1542 869 0 R/Im1543 870 0 R/Im1544 871 0 R/Im1545 872 0 R/Im1546 873 0 R/Im1547 874 0 R/Im1240 875 0 R/Im1548 876 0 R/Im1241 10060 0 R/Im1549 877 0 R/Im1242 10061 0 R/Im1243 10062 0 R/Im1244 10063 0 R/Im1245 10064 0 R/Im1246 10065 0 R/Im1247 10066 0 R/Im1248 10067 0 R/Im1249 10068 0 R/Im1550 878 0 R/Im1551 10069 0 R/Im1552 879 0 R/Im1553 10070 0 R/Im1554 10071 0 R/Im1555 880 0 R/Im1556 881 0 R/Im1557 882 0 R/Im1250 10072 0 R/Im1558 10073 0 R/Im1251 883 0 R/Im1559 884 0 R/Im1252 885 0 R/Im1253 886 0 R/Im1254 10074 0 R/Im1255 887 0 R/Im1256 10075 0 R/Im1257 888 0 R/Im1258 10076 0 R/Im1259 10077 0 R/Im1560 889 0 R/Im1561 890 0 R/Im1562 10078 0 R/Im1563 891 0 R/Im1564 10079 0 R/Im1565 10080 0 R/Im1566 892 0 R/Im1567 10081 0 R/Im1260 10082 0 R/Im1568 893 0 R/Im1261 10083 0 R/Im1569 894 0 R/Im1262 10084 0 R/Im1263 895 0 R/Im1264 10085 0 R/Im1265 896 0 R/Im1266 10086 0 R/Im1267 897 0 R/Im1268 10087 0 R/Im1269 898 0 R/Im1570 10088 0 R/Im1571 899 0 R/Im1572 900 0 R/Im1573 10089 0 R/Im1574 901 0 R/Im1575 902 0 R/Im1576 903 0 R/Im1577 904 0 R/Im1270 905 0 R/Im1578 906 0 R/Im1271 10090 0 R/Im1579 10091 0 R/Im1272 10092 0 R/Im1273 907 0 R/Im1274 10093 0 R/Im1275 908 0 R/Im1276 10094 0 R/Im1277 909 0 R/Im1278 910 0 R/Im1279 10095 0 R/Im1580 10096 0 R/Im1581 10097 0 R/Im1582 10098 0 R/Im1583 911 0 R/Im1584 10099 0 R/Im1585 912 0 R/Im1586 913 0 R/Im1587 914 0 R/Im1280 10100 0 R/Im1588 915 0 R/Im1281 10101 0 R/Im1589 916 0 R/Im1282 917 0 R/Im1283 918 0 R/Im1284 10102 0 R/Im1285 10103 0 R/Im1286 10104 0 R/Im1287 919 0 R/Im1288 920 0 R/Im1289 921 0 R/Im1590 10105 0 R/Im1591 922 0 R/Im1592 923 0 R/Im1593 924 0 R/Im1594 925 0 R/Im1595 926 0 R/Im1596 927 0 R/Im1597 928 0 R/Im1290 929 0 R/Im1598 10106 0 R/Im1291 930 0 R/Im1599 10107 0 R/Im1292 10108 0 R/Im1293 10109 0 R/Im1294 10110 0 R/Im1295 10111 0 R/Im1296 10112 0 R/Im1297 10113 0 R/Im1298 931 0 R/Im1299 932 0 R/Im700 10114 0 R/Im701 933 0 R/Im702 934 0 R/Im703 935 0 R/Im704 936 0 R/Im705 937 0 R/Im706 938 0 R/Im400 10115 0 R/Im707 939 0 R/Im401 940 0 R/Im708 941 0 R/Im402 942 0 R/Im709 943 0 R/Im403 944 0 R/Im404 945 0 R/Im405 946 0 R/Im406 947 0 R/Im100 948 0 R/Im407 949 0 R/Im101 950 0 R/Im408 951 0 R/Im102 952 0 R/Im409 953 0 R/Im103 954 0 R/Im104 955 0 R/Im105 10116 0 R/Im106 10117 0 R/Im107 956 0 R/Im108 957 0 R/Im109 958 0 R/Im710 959 0 R/Im711 960 0 R/Im712 961 0 R/Im713 962 0 R/Im714 963 0 R/Im715 10118 0 R/Im716 964 0 R/Im410 965 0 R/Im717 966 0 R/Im411 10119 0 R/Im718 967 0 R/Im412 968 0 R/Im719 969 0 R/Im413 970 0 R/Im414 971 0 R/Im415 972 0 R/Im416 10120 0 R/Im110 973 0 R/Im417 10121 0 R/Im111 974 0 R/Im418 975 0 R/Im112 976 0 R/Im419 977 0 R/Im113 978 0 R/Im114 979 0 R/Im115 980 0 R/Im116 981 0 R/Im117 982 0 R/Im118 983 0 R/Im119 984 0 R/Im720 985 0 R/Im721 986 0 R/Im722 987 0 R/Im723 988 0 R/Im724 989 0 R/Im725 990 0 R/Im726 991 0 R/Im420 992 0 R/Im727 993 0 R/Im421 994 0 R/Im728 995 0 R/Im422 996 0 R/Im729 997 0 R/Im423 998 0 R/Im424 999 0 R/Im425 1000 0 R/Im426 1001 0 R/Im120 1002 0 R/Im427 1003 0 R/Im121 1004 0 R/Im428 10122 0 R/Im122 10123 0 R/Im429 1005 0 R/Im123 10124 0 R/Im124 1006 0 R/Im125 1007 0 R/Im126 1008 0 R/Im127 10125 0 R/Im128 10126 0 R/Im129 1009 0 R/Im730 10127 0 R/Im731 1010 0 R/Im732 1011 0 R/Im733 1012 0 R/Im734 1013 0 R/Im735 1014 0 R/Im736 1015 0 R/Im430 1016 0 R/Im737 1017 0 R/Im431 1018 0 R/Im738 1019 0 R/Im432 10128 0 R/Im739 1020 0 R/Im433 1021 0 R/Im434 10129 0 R/Im435 1022 0 R/Im436 1023 0 R/Im130 1024 0 R/Im437 1025 0 R/Im131 1026 0 R/Im438 1027 0 R/Im132 10130 0 R/Im439 1028 0 R/Im133 10131 0 R/Im134 1029 0 R/Im135 1030 0 R/Im136 1031 0 R/Im137 10132 0 R/Im138 10133 0 R/Im139 1032 0 R/Im740 1033 0 R/Im741 1034 0 R/Im742 1035 0 R/Im743 1036 0 R/Im744 1037 0 R/Im745 1038 0 R/Im746 1039 0 R/Im440 1040 0 R/Im747 1041 0 R/Im441 1042 0 R/Im748 1043 0 R/Im442 1044 0 R/Im749 1045 0 R/Im443 1046 0 R/Im444 10134 0 R/Im445 1047 0 R/Im446 1048 0 R/Im140 1049 0 R/Im447 1050 0 R/Im141 1051 0 R/Im448 1052 0 R/Im142 1053 0 R/Im449 1054 0 R/Im143 1055 0 R/Im144 10135 0 R/Im145 10136 0 R/Im146 1056 0 R/Im147 10212 0 R/Im148 1057 0 R/Im149 1058 0 R/Im750 1059 0 R/Im751 1060 0 R/Im752 1061 0 R/Im753 1062 0 R/Im754 1063 0 R/Im755 1064 0 R/Im756 1065 0 R/Im450 10137 0 R/Im757 1066 0 R/Im451 1067 0 R/Im758 10138 0 R/Im452 1068 0 R/Im759 1069 0 R/Im453 10139 0 R/Im454 1070 0 R/Im455 1071 0 R/Im456 1072 0 R/Im150 1073 0 R/Im457 1074 0 R/Im151 1075 0 R/Im458 10140 0 R/Im152 1076 0 R/Im459 1077 0 R/Im153 10141 0 R/Im154 1078 0 R/Im155 1079 0 R/Im156 1080 0 R/Im157 1081 0 R/Im158 10142 0 R/Im159 1082 0 R/Im760 1083 0 R/Im761 1084 0 R/Im762 1085 0 R/Im763 1086 0 R/Im764 1087 0 R/Im765 1088 0 R/Im766 1089 0 R/Im460 1090 0 R/Im767 1091 0 R/Im461 1092 0 R/Im768 1093 0 R/Im462 1094 0 R/Im769 1095 0 R/Im463 10143 0 R/Im464 1096 0 R/Im465 1097 0 R/Im466 1098 0 R/Im160 10144 0 R/Im467 10145 0 R/Im161 1099 0 R/Im468 1100 0 R/Im162 1101 0 R/Im469 1102 0 R/Im163 1103 0 R/Im164 10146 0 R/Im165 1104 0 R/Im166 1105 0 R/Im167 10147 0 R/Im168 10148 0 R/Im169 10149 0 R/Im770 1106 0 R/Im771 10150 0 R/Im772 1107 0 R/Im773 1108 0 R/Im774 1109 0 R/Im775 1110 0 R/Im776 1111 0 R/Im470 1112 0 R/Im777 1113 0 R/Im471 1114 0 R/Im778 1115 0 R/Im472 1116 0 R/Im779 1117 0 R/Im473 1118 0 R/Im474 1119 0 R/Im475 1120 0 R/Im476 10151 0 R/Im170 1121 0 R/Im477 1122 0 R/Im171 10152 0 R/Im478 1123 0 R/Im172 1124 0 R/Im479 1125 0 R/Im173 1126 0 R/Im174 10153 0 R/Im175 10154 0 R/Im176 10155 0 R/Im177 1127 0 R/Im178 1128 0 R/Im179 10156 0 R/Im780 1129 0 R/Im781 1130 0 R/Im782 10157 0 R/Im783 1131 0 R/Im784 1132 0 R/Im785 1133 0 R/Im786 1134 0 R/Im480 1135 0 R/Im787 1136 0 R/Im481 1137 0 R/Im788 1138 0 R/Im482 1139 0 R/Im789 1140 0 R/Im483 10158 0 R/Im484 1141 0 R/Im485 1142 0 R/Im486 1143 0 R/Im180 1144 0 R/Im487 1145 0 R/Im181 10159 0 R/Im488 1146 0 R/Im182 1147 0 R/Im489 1148 0 R/Im183 10160 0 R/Im184 1149 0 R/Im185 1150 0 R/Im186 10161 0 R/Im187 10162 0 R/Im188 10163 0 R/Im189 1151 0 R/Im790 1152 0 R/Im791 1153 0 R/Im792 1154 0 R/Im793 1155 0 R/Im794 1156 0 R/Im795 1157 0 R/Im796 10164 0 R/Im490 1158 0 R/Im797 10165 0 R/Im491 1159 0 R/Im798 1160 0 R/Im492 10166 0 R/Im799 1161 0 R/Im493 1162 0 R/Im494 1163 0 R/Im495 1164 0 R/Im496 1165 0 R/Im190 10167 0 R/Im497 1166 0 R/Im191 1167 0 R/Im498 1168 0 R/Im192 1169 0 R/Im499 1170 0 R/Im193 10168 0 R/Im194 10169 0 R/Im195 1171 0 R/Im196 10170 0 R/Im197 1172 0 R/Im198 10171 0 R/Im199 1173 0 R/Im0 9734 0 R/Im1 1174 0 R/Im2 1175 0 R/Im3 1176 0 R/Im4 1177 0 R/Im5 1178 0 R/Im6 1179 0 R/Im7 1180 0 R/Im8 1181 0 R/Im9 1182 0 R/Im1600 10172 0 R/Im1601 10173 0 R/Im1602 10174 0 R/Im1603 10175 0 R/Im1604 10176 0 R/Im1605 1183 0 R/Im1606 10177 0 R/Im1607 10178 0 R/Im1300 10179 0 R/Im1608 1184 0 R/Im1301 1185 0 R/Im1609 10180 0 R/Im1302 10181 0 R/Im1303 1186 0 R/Im1304 1187 0 R/Im1305 1188 0 R/Im1306 1189 0 R/Im1000 1190 0 R/Im1307 10182 0 R/Im1001 1191 0 R/Im1308 10183 0 R/Im1002 1192 0 R/Im1309 10184 0 R/Im1003 10185 0 R/Im1004 1193 0 R/Im1005 10186 0 R/Im1006 1194 0 R/Im1007 1195 0 R/Im1008 10187 0 R/Im1009 1196 0 R/Im1610 10188 0 R/Im1611 10189 0 R/Im1612 10190 0 R/Im1613 10191 0 R/Im1614 10192 0 R/Im1615 1197 0 R/Im1616 1198 0 R/Im1617 1199 0 R/Im1310 1200 0 R/Im1618 1201 0 R/Im1311 1202 0 R/Im1619 1203 0 R/Im1312 1204 0 R/Im1313 1205 0 R/Im1314 1206 0 R/Im1315 10193 0 R/Im1316 1207 0 R/Im1010 1208 0 R/Im1317 1209 0 R/Im1011 1210 0 R/Im1318 1211 0 R/Im1012 10194 0 R/Im1319 1212 0 R/Im1013 10195 0 R/Im1014 1213 0 R/Im1015 10196 0 R/Im1016 1214 0 R/Im1017 1215 0 R/Im1018 1216 0 R/Im1019 10197 0 R/Im1620 10198 0 R/Im1621 10199 0 R/Im1622 10200 0 R/Im1623 10201 0 R/Im1624 10202 0 R/Im1625 10203 0 R/Im1626 1217 0 R/Im1627 1218 0 R/Im1320 1219 0 R/Im1628 1220 0 R/Im1321 1221 0 R/Im1629 1222 0 R/Im1322 10204 0 R/Im1323 10205 0 R/Im1324 1223 0 R/Im1325 10206 0 R/Im1326 1224 0 R/Im1020 1225 0 R/Im1327 1226 0 R/Im1021 10207 0 R/Im1328 1227 0 R/Im1022 1228 0 R/Im1329 1229 0 R/Im1023 1230 0 R/Im1024 10208 0 R/Im1025 1231 0 R/Im1026 10209 0 R/Im1027 1232 0 R/Im1028 10210 0 R/Im1029 10211 0 R/Im1630 1233 0 R/Im1631 1234 0 R/Im1632 10213 0 R/Im1633 1235 0 R/Im1634 1236 0 R/Im1635 1237 0 R/Im1636 1238 0 R/Im1637 10214 0 R/Im1330 10215 0 R/Im1638 1239 0 R/Im1331 10216 0 R/Im1639 1240 0 R/Im1332 10217 0 R/Im1333 1241 0 R/Im1334 1242 0 R/Im1335 10218 0 R/Im1336 1243 0 R/Im1030 1244 0 R/Im1337 10219 0 R/Im1031 10220 0 R/Im1338 1245 0 R/Im1032 1246 0 R/Im1339 10221 0 R/Im1033 1247 0 R/Im1034 1248 0 R/Im1035 10222 0 R/Im1036 1249 0 R/Im1037 10223 0 R/Im1038 1250 0 R/Im1039 1251 0 R/Im1640 10224 0 R/Im1641 1252 0 R/Im1642 10225 0 R/Im1643 10226 0 R/Im1644 1253 0 R/Im1645 1254 0 R/Im1646 1255 0 R/Im1647 10227 0 R/Im1340 1256 0 R/Im1648 1257 0 R/Im1341 10228 0 R/Im1649 1258 0 R/Im1342 10229 0 R/Im1343 10230 0 R/Im1344 10231 0 R/Im1345 10232 0 R/Im1346 10233 0 R/Im1040 10234 0 R/Im1347 1259 0 R/Im1041 10235 0 R/Im1348 1260 0 R/Im1042 1261 0 R/Im1349 1262 0 R/Im1043 10236 0 R/Im1044 10237 0 R/Im1045 10238 0 R/Im1046 1263 0 R/Im1047 1264 0 R/Im1048 1265 0 R/Im1049 10239 0 R/Im1650 1266 0 R/Im1651 10240 0 R/Im1652 1267 0 R/Im1653 10241 0 R/Im1654 1268 0 R/Im1655 1269 0 R/Im1656 1270 0 R/Im1657 10242 0 R/Im1350 10243 0 R/Im1658 1271 0 R/Im1351 10244 0 R/Im1659 10245 0 R/Im1352 10246 0 R/Im1353 1272 0 R/Im1354 1273 0 R/Im1355 1274 0 R/Im1356 1275 0 R/Im1050 1276 0 R/Im1357 10247 0 R/Im1051 10248 0 R/Im1358 1277 0 R/Im1052 1278 0 R/Im1359 10249 0 R/Im1053 1279 0 R/Im1054 10250 0 R/Im1055 1280 0 R/Im1056 1281 0 R/Im1057 1282 0 R/Im1058 10251 0 R/Im1059 10252 0 R/Im1660 1283 0 R/Im1661 10253 0 R/Im1662 1284 0 R/Im1663 10254 0 R/Im1664 1285 0 R/Im1665 10255 0 R/Im1666 1286 0 R/Im1667 1287 0 R/Im1360 1288 0 R/Im1668 10256 0 R/Im1361 10257 0 R/Im1669 10258 0 R/Im1362 1289 0 R/Im1363 10259 0 R/Im1364 1290 0 R/Im1365 1291 0 R/Im1366 10260 0 R/Im1060 10261 0 R/Im1367 1292 0 R/Im1061 1293 0 R/Im1368 1294 0 R/Im1062 1295 0 R/Im1369 1296 0 R/Im1063 1297 0 R/Im1064 10262 0 R/Im1065 10263 0 R/Im1066 10264 0 R/Im1067 1298 0 R/Im1068 1299 0 R/Im1069 10265 0 R/Im1670 1300 0 R/Im1671 1301 0 R/Im1672 1302 0 R/Im1673 10266 0 R/Im1674 1303 0 R/Im1675 1304 0 R/Im1676 10267 0 R/Im1677 10268 0 R/Im1370 1305 0 R/Im1678 10269 0 R/Im1371 1306 0 R/Im1679 1307 0 R/Im1372 10270 0 R/Im1373 10271 0 R/Im1374 1308 0 R/Im1375 10272 0 R/Im1376 1309 0 R/Im1070 1310 0 R/Im1377 1311 0 R/Im1071 1312 0 R/Im1378 1313 0 R/Im1072 10273 0 R/Im1379 1314 0 R/Im1073 10274 0 R/Im1074 1315 0 R/Im1075 10275 0 R/Im1076 1316 0 R/Im1077 1317 0 R/Im1078 1318 0 R/Im1079 10276 0 R/Im1680 10277 0 R/Im1681 1319 0 R/Im1682 1320 0 R/Im1683 1321 0 R/Im1684 9733 0 R/Im1685 1322 0 R/Im1686 1323 0 R/Im1687 1324 0 R/Im1380 1325 0 R/Im1688 1326 0 R/Im1381 1327 0 R/Im1689 9735 0 R/Im1382 9843 0 R/Im1383 9849 0 R/Im1384 9858 0 R/Im1385 1328 0 R/Im1386 1329 0 R/Im1080 1330 0 R/Im1387 1331 0 R/Im1081 9914 0 R/Im1388 1332 0 R/Im1082 1333 0 R/Im1389 9920 0 R/Im1083 1334 0 R/Im1084 1335 0 R/Im1085 1336 0 R/Im1086 1337 0 R/Im1087 1338 0 R/Im1088 1339 0 R/Im1089 9931 0 R>>/ColorSpace<</CS10 9682 0 R/CS11 9683 0 R/CS12 9684 0 R/CS13 9685 0 R/CS14 9686 0 R/CS15 9687 0 R/CS16 9688 0 R/CS17 9689 0 R/CS18 9690 0 R/CS19 9691 0 R/CS20 9692 0 R/CS21 9693 0 R/CS22 9694 0 R/CS23 9695 0 R/CS24 9696 0 R/CS25 9697 0 R/CS26 9698 0 R/CS27 9699 0 R/CS28 9700 0 R/CS29 9701 0 R/CS30 9702 0 R/CS31 9703 0 R/CS32 9704 0 R/CS33 9705 0 R/CS34 9706 0 R/CS35 9707 0 R/CS36 1557 0 R/CS0 9708 0 R/CS1 9709 0 R/CS2 9710 0 R/CS3 9711 0 R/CS4 9712 0 R/CS5 9713 0 R/CS6 9714 0 R/CS7 9715 0 R/CS8 9716 0 R/CS9 9717 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text/ImageC/ImageI]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
135 0 obj
<</Rect[170 575 533 588]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 456 null]/Type/Annot>>
endobj
136 0 obj
<</Rect[170 561 542 574]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 456 null]/Type/Annot>>
endobj
137 0 obj
<</Rect[170 548 210 561]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 456 null]/Type/Annot>>
endobj
138 0 obj
<</Rect[311 519 624 532]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
139 0 obj
<</Rect[170 506 244 519]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
140 0 obj
<</Rect[170 491 533 504]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
141 0 obj
<</Rect[170 477 542 490]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
142 0 obj
<</Rect[170 464 210 477]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 330 null]/Type/Annot>>
endobj
143 0 obj
<</Rect[268 422 283 435]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 651 null]/Type/Annot>>
endobj
144 0 obj
<</Rect[270 407 355 420]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 679 null]/Type/Annot>>
endobj
145 0 obj
<</Rect[225 393 285 406]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 666 null]/Type/Annot>>
endobj
146 0 obj
<</Rect[252 351 358 364]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 609 null]/Type/Annot>>
endobj
147 0 obj
<</Rect[252 338 322 351]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 595 null]/Type/Annot>>
endobj
148 0 obj
<</Rect[252 323 337 336]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 595 null]/Type/Annot>>
endobj
149 0 obj
<</Rect[252 309 327 322]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 595 null]/Type/Annot>>
endobj
150 0 obj
<</Rect[266 281 338 294]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 540 null]/Type/Annot>>
endobj
151 0 obj
<</Rect[342 281 485 294]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 525 null]/Type/Annot>>
endobj
152 0 obj
<</Rect[252 268 325 281]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 525 null]/Type/Annot>>
endobj
153 0 obj
<</Rect[252 254 316 267]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 525 null]/Type/Annot>>
endobj
154 0 obj
<</Rect[252 240 327 253]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 525 null]/Type/Annot>>
endobj
155 0 obj
<</Length 19778/Filter/FlateDecode>>stream
+HMoG}.fA +X>(2Tkz3eġ%UOUWH~qx\w|{&_k2Y>lf%_sbU8cL/?tquI&Ձ_rXm'b' g'8LIAOleo[L=~0D/ +2c=_O'ޟ ~y}6ONcҒŊO֓7t)U§v1\Yj>z{I~q~g$/+WM._i*5j.Cv/Hee$2HffYTR?//)/;~0p w&RRzys@yʷ&*Fe]lSqq{=mvy9#LO]-ъd,YO
;]:=c<Q"'TydN_MPx 1łWxZ2M,IU~ +\euj&ә.٤|.ML|X%WMyZVp P[zO>P؟ BaӮ.ڲ7dy /hm)N~-ov7H'e7Lױk$S[\_nބc83&,S]㮅ofD3|W7gCc<VszWz??-|)@3 +h]x?$Yu2O؝fD<[MBL=LgXO%KAPMcHSudB+};ɵDR&X0U0WFZĒJC_7Z=e.nK<|}05\Grۓw-gkE)2 X`x>M`Lwy{(*uWeʯߟ'ny\'#xʱ
b8U0mc~.4_8˗.ΥR\mw1*=.YunZ%e Haj-(BئBwHaSZ}$˴Ǥnq{=lrA?ҴQ5ٹo
@IXx`oH#"ggE:-!ۧ]=EX7]/[^2<ۻCQ +brCw.!Wڠr:UgF!KzgNr36d
Y,wcCА2ettck(ŬE^9Y$Ŭwb{1k"uH̠94 +r@>n𦂅 ~]om*!J +E.{:dJ7.~l`H}5jӮ}lۍ)D
!$S>T1\5҃H{(ǜSKϲP.\@tN+e ?G4y +HZX鑳c#q
|*80rt8͟wtpdR^Y +̢3|)yۀ_\T`7O+J&ȯo^]Wq( d' MG +c`),$`Uk7}%e^K|z +@|ϯafu|v*m/|=֯gzw+{}6{ +#c%0\SWΒl5pʌY)h֗O쯋 )e,E''GP\jh}rPSc_gWD+5 d>!U]R' +03"!"l3] + ˋ>o0j( +!&i + += }|Y` @0 +@v `n9vWT;X8 +@v ` +@'^g~>~Ϳ +@v `\8Q0+ +'``OԿ/ + + 8'lU +*i* +~B+\
Q4 +Lwozf&YCwMxflvЏnvÝ + +@-qL +@ +Y +9~ +!@kԏtZBh +@[]]P]]
+'H%ߟsyy@c @~Mv#z?YZ?8O۳1Y +>A3 +?>ÌBzgO!=@g(eNtB +! A}z +"@.
bn/BB! + +! J?-3$/G]"_pTG( +_PB} +!YQH{R>$JC@U{o+ +!@ÛOv @rQH*{n|coا3 +juC!L[;?1w{ziV:M|;(8>.Jk~?<O6[߮}|pCvŮvNw>=1?uް;he&?m~peQ~i^~wusoxVմ=̿{~p\r1rs̭ŹoF:J[wK]5~R&= ̂?=1t;ps +a*D +^9B!{ +alSe T!7JhΧD zV
ۜ~ Y Ϟd}}n3wA9lo*yk=o
_::N&+ϯ \gA@b
mp
:u6$2 +A)|}ʸ!i2)|&q]vro qNm`s}#o;(ևH4aoSL}3*#$}n&Jiv}zXTO>(#=G>˹ˊ!$:C@luAm& +.49ՖAikCh3Bf dL$Y#;O@L]].ugq05 .
!,21ê6E? uM:RpYږM:$YSY_TBXeu=N#(X0LnA!٧(5d`ob2{P)Rmm*@cQ|U[L МYD + %TX#%" + +ĭ*! +PTj@ف+8pChB<?)vڤou +(~BJ`gQo:Av.NA} +SOv g
}홥:&69˨SM>$T +`$<Yh'Мhe:NP: \&(ANBI.YD
+!n=g>BHYLdAH:(sJ=!e,c:ߴ% +:'SjB!K4#oB@I9B^9 +8W<OeV m_*GN%2>-q/?1oܒF[T +a0utو}{_B>aVA`nSW NcS(Rǐ24A{Mƣ $HW \?ýJ]1鄲Z'8,լoR)R]T 05sUX\+2 + {A#APρ# [\'ooQG0B|ሹ?ώIj:<O")MZ"c퇀[ +ebdIO=IU{tϣnC@`qWVeXC`bOaq +C>0E^j<iu{ajRs +`@_6@ +p*`8XBntA{vr*C()M3ZBqdP}-Y!8oOYHoK5հw, +RrQWXKO RO !ث%AN-$x'm}RC0%_K@
I-$ p<WXKXP,\RdzQ%Fc2+! <$!_G\%dk8rae1=@YWςx0<e>1D)z.(Pzf7uQrֽvS˫^ J!a{ +78>B-ʂ`UV%ao*oHg0 n?_|#( +ǭ_ +qU U<10{D,8=FqIBAF({.J0b,p,ȩdr=P+cw|FS/j('n>؏MnGޏ:I5~ < $BhMO%pA)F#r|I-54gi ^=Ps[e)7Boqz6"
{MQ +fp'A&lH!9T/e\ P?e ~@oP%y~6QC +vn":{JܦZq;Jଘ]A_;-M +`ވ$!]bǜ9]%CҶE1k +aS?;B{5 [Be%mPN(%ica&6QE20kQcIƂ2<7F8FXca|AFsOI/l,[#Ր$IɿW/𢿬6O`eQySd}j~?
pN7F
fJcha|7@'6AꇭN@;0 +)WCԓ" MLȓ/hD=Ծ,OZ''y~O1'RA!Y`^Or$#pIDzrđ'_$A=)oSo۔B_^s{MiֿAiHS.GNM)kJF8R#5pdȔהo@Mm%I ="?mMIWd1W7E#&#pdȚyԚ/h+=v4/gk +=5d(*'CcLXs +ܔP=I +Q
VO"}&"0.dŔyH~ӡ%b)OQ$ă/<hA0[-'#&Ґ\F5N7ey +o].}V|w>Kmİ$NӤeP- +"
ω:?tFx]K+0B +ѼlRxZN
F_lׂP쒢V +B1h{l$o\Aus[Gn2ѼnCuS+YKn2ƋAnt7ǀU?b\xS$ċb3$ +|\$һ:`]fcpT +zgW韣n/ۙ,")rw.S +0iWj +HO N +R;8ƨ,.@ +#f
DY-Bm,TU T3XnGr`"'Tui%b^.$CQBA ?6lK&o%Y(!eMRmQ +B6c[{@C-JF +rУK<R+
DX9[ZMBBY]%&P`J У.'#wd_
PͯR'ognf*u3ȥ(Õ
bAԂ`oohuՌ-gAFQEfsvq6րl`t:[omvbs;nhs1&CŴ?"s)u|UyCH{+vBڡqoUeB* Pa:i +bA҂V،0w><B,P`MPYM,F;L,F ֎p$iA$SS]7wĚ1 +@R +¡!fLeSavsAvsUbsw(<6q_*Q?u1vZ
g6WKh
jA(es*ZPoRy(8w[R<T;#~/c,0ZAW%\V@KJ@A%%Q+A%y& ũ +*?˯m1yh;HNi4 !+t+aӾH;}Cϒ-Bˍ=D7%:5c +Ȅ4Jun6- +B<jHA
jSsMt4?Y{@0|."̗@'CEp:beV~)*8.c|F8=f
,s%X6Xm/[)o Ζk??_R{G$%OOi{+ +$I$X:)~@isOd0|FGcZ8 S;q
7uUE-DH GHzMGz|_ +endstream
endobj
156 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hzm +
+endstream
endobj
157 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HFq +o +
+endstream
endobj
158 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hrm + +
+endstream
endobj
159 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +9Nue +
+endstream
endobj
160 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HbJ[e6>0 +
+endstream
endobj
161 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?Nve +
+endstream
endobj
162 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr8N#E= +
+endstream
endobj
163 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?yc +
+endstream
endobj
164 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2V +
+endstream
endobj
165 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2=M +
+endstream
endobj
166 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2<6U +
+endstream
endobj
167 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<{_ +
+endstream
endobj
168 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?ik +
+endstream
endobj
169 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8VrE +
+endstream
endobj
170 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr8a/ +
+endstream
endobj
171 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HFpko-=0 +
+endstream
endobj
172 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=O + +
+endstream
endobj
173 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=;= +
+endstream
endobj
174 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;#==0 +
+endstream
endobj
175 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+-0 +
+endstream
endobj
176 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HK0 +
+endstream
endobj
177 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK- +
+endstream
endobj
178 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hjγ_ +
+endstream
endobj
179 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
180 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU +
+endstream
endobj
181 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
182 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaE/ +
+endstream
endobj
183 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak} +
+endstream
endobj
184 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+w>0 +
+endstream
endobj
185 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaO +
+endstream
endobj
186 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku +
+endstream
endobj
187 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[͏ +
+endstream
endobj
188 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
189 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H>a[ +
+endstream
endobj
190 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE_ +
+endstream
endobj
191 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
192 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haᵯ +
+endstream
endobj
193 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+K? +
+endstream
endobj
194 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +=aK
o6?0 +
+endstream
endobj
195 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HbakO +
+endstream
endobj
196 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
197 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
198 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a/ +
+endstream
endobj
199 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+] +
+endstream
endobj
200 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+o +
+endstream
endobj
201 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+Mշ?0 +
+endstream
endobj
202 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[] +
+endstream
endobj
203 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU_ +
+endstream
endobj
204 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+u +
+endstream
endobj
205 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
206 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[U +
+endstream
endobj
207 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;Ew +
+endstream
endobj
208 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
209 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaC +
+endstream
endobj
210 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[] +
+endstream
endobj
211 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[U +
+endstream
endobj
212 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ao +
+endstream
endobj
213 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mo=0 +
+endstream
endobj
214 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aw +
+endstream
endobj
215 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[3 +
+endstream
endobj
216 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
217 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha} +
+endstream
endobj
218 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU + +
+endstream
endobj
219 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
220 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakc +
+endstream
endobj
221 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[] +
+endstream
endobj
222 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr8a+
o6=0 +
+endstream
endobj
223 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+E +
+endstream
endobj
224 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[3O +
+endstream
endobj
225 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
226 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U +
+endstream
endobj
227 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
228 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[} +
+endstream
endobj
229 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+U? +
+endstream
endobj
230 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
231 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+U +
+endstream
endobj
232 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[O +
+endstream
endobj
233 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aK +
+endstream
endobj
234 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
235 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa; +
+endstream
endobj
236 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha]o +
+endstream
endobj
237 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak_ +
+endstream
endobj
238 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakƕ +
+endstream
endobj
239 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ٍ +
+endstream
endobj
240 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8akmo +
+endstream
endobj
241 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
242 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[
+
+endstream
endobj
243 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
244 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aKɃo +
+endstream
endobj
245 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H>a#w +
+endstream
endobj
246 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
247 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
248 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;e +
+endstream
endobj
249 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
250 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
251 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU_ +
+endstream
endobj
252 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
253 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+տ +
+endstream
endobj
254 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
255 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
256 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
257 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+MoT<0 +
+endstream
endobj
258 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
259 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
260 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ރO +
+endstream
endobj
261 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
262 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[O +
+endstream
endobj
263 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[3O +
+endstream
endobj
264 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
265 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aE +
+endstream
endobj
266 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
267 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
268 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaM +
+endstream
endobj
269 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha= +
+endstream
endobj
270 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
271 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaUo +
+endstream
endobj
272 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
273 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak_ +
+endstream
endobj
274 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakUo +
+endstream
endobj
275 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
276 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
277 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
278 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
279 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau +
+endstream
endobj
280 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
281 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aK +
+endstream
endobj
282 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+ +
+endstream
endobj
283 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[# +
+endstream
endobj
284 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+/ +
+endstream
endobj
285 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
286 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hˤ3 +
+endstream
endobj
287 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU_ +
+endstream
endobj
288 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
289 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
290 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+5_ +
+endstream
endobj
291 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
292 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aE +
+endstream
endobj
293 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[Ε +
+endstream
endobj
294 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
295 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[5 +
+endstream
endobj
296 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=a+o6?0 +
+endstream
endobj
297 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a7 +
+endstream
endobj
298 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
299 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hauo +
+endstream
endobj
300 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
301 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK- +
+endstream
endobj
302 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
303 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[u +
+endstream
endobj
304 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
305 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
306 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha3 +
+endstream
endobj
307 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
308 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
309 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
310 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haeo +
+endstream
endobj
311 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
312 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
313 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haks +
+endstream
endobj
314 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+]o +
+endstream
endobj
315 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[eO +
+endstream
endobj
316 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
317 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
318 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
319 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
320 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+u +
+endstream
endobj
321 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRako +
+endstream
endobj
322 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
323 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
324 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
325 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
326 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a;w +
+endstream
endobj
327 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
328 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[=W + +
+endstream
endobj
329 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[O +
+endstream
endobj
330 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+? +
+endstream
endobj
331 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
332 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+M +
+endstream
endobj
333 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
334 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mo6?0 +
+endstream
endobj
335 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
336 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
337 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
338 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
339 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau +
+endstream
endobj
340 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
341 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[O +
+endstream
endobj
342 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
343 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+-o0 +
+endstream
endobj
344 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
345 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbake_ +
+endstream
endobj
346 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak՟ +
+endstream
endobj
347 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
348 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aw +
+endstream
endobj
349 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaO +
+endstream
endobj
350 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e_ +
+endstream
endobj
351 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[M +
+endstream
endobj
352 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+/ +
+endstream
endobj
353 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+u +
+endstream
endobj
354 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+
o6< +
+endstream
endobj
355 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ + +
+endstream
endobj
356 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;w +
+endstream
endobj
357 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[u +
+endstream
endobj
358 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
359 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+-o6=0 +
+endstream
endobj
360 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[3 +
+endstream
endobj
361 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+? +
+endstream
endobj
362 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+? +
+endstream
endobj
363 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
364 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8aK +
+endstream
endobj
365 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[͍ +
+endstream
endobj
366 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
367 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
368 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
369 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haկ +
+endstream
endobj
370 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H9a+-o0 +
+endstream
endobj
371 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakͣ +
+endstream
endobj
372 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aw +
+endstream
endobj
373 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
374 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
375 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ + +
+endstream
endobj
376 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+-o0 +
+endstream
endobj
377 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aů +
+endstream
endobj
378 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaM +
+endstream
endobj
379 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
380 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
381 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
382 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
383 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
384 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaku +
+endstream
endobj
385 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
386 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ï +
+endstream
endobj
387 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
388 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aů +
+endstream
endobj
389 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=aK-o0 +
+endstream
endobj
390 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[W +
+endstream
endobj
391 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+_ +
+endstream
endobj
392 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+Mo"0 +
+endstream
endobj
393 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+/ +
+endstream
endobj
394 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+3 +
+endstream
endobj
395 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
396 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;Ew +
+endstream
endobj
397 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
398 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKm +
+endstream
endobj
399 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
400 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae/ +
+endstream
endobj
401 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a#o +
+endstream
endobj
402 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
403 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[cW +
+endstream
endobj
404 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
405 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
406 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[E +
+endstream
endobj
407 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
408 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha} +
+endstream
endobj
409 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
410 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
411 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akE_ +
+endstream
endobj
412 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
413 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e +
+endstream
endobj
414 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hasw +
+endstream
endobj
415 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akC +
+endstream
endobj
416 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H{s{ +
+endstream
endobj
417 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
418 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
419 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
420 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
421 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakO +
+endstream
endobj
422 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+# +
+endstream
endobj
423 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +:a[u +
+endstream
endobj
424 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[Տ +
+endstream
endobj
425 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
426 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[E +
+endstream
endobj
427 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
428 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae/ +
+endstream
endobj
429 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ + +
+endstream
endobj
430 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akE +
+endstream
endobj
431 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRڧ\ +
+endstream
endobj
432 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+տ +
+endstream
endobj
433 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKe +
+endstream
endobj
434 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
435 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;e +
+endstream
endobj
436 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
437 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akE +
+endstream
endobj
438 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR6= +
+endstream
endobj
439 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;c] +
+endstream
endobj
440 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
441 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e +
+endstream
endobj
442 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+E_ +
+endstream
endobj
443 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+3 +
+endstream
endobj
444 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;e +
+endstream
endobj
445 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
446 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[Տ +
+endstream
endobj
447 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa% +
+endstream
endobj
448 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[EO +
+endstream
endobj
449 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
450 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
451 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+#/ +
+endstream
endobj
452 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akE +
+endstream
endobj
453 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbX- +j +
+endstream
endobj
454 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakeo +
+endstream
endobj
455 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[E +
+endstream
endobj
456 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[O +
+endstream
endobj
457 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
458 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
459 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HF{۰ +
+endstream
endobj
460 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
461 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HvSˍǞ +
+endstream
endobj
462 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
463 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HvS/G_ +
+endstream
endobj
464 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
465 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak՟ +
+endstream
endobj
466 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+E +
+endstream
endobj
467 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[Տ +
+endstream
endobj
468 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha7 +
+endstream
endobj
469 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aE + +
+endstream
endobj
470 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8{koշ>0 +
+endstream
endobj
471 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hck
o6< +
+endstream
endobj
472 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2;Vuuo= +
+endstream
endobj
473 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[]O +
+endstream
endobj
474 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H{% +"J +
+endstream
endobj
475 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H*a+ï +
+endstream
endobj
476 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+ +
+endstream
endobj
477 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H:K+}0 +
+endstream
endobj
478 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H)U +
+endstream
endobj
479 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
480 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H:ao +
+endstream
endobj
481 0 obj
<</Subtype/Image/Length 19/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbv<0 +
+endstream
endobj
482 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hᛏ +
+endstream
endobj
483 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakᵟ +
+endstream
endobj
484 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H<ak- +
+endstream
endobj
485 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+
? +
+endstream
endobj
486 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+U? +
+endstream
endobj
487 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+ +
+endstream
endobj
488 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Ha] +
+endstream
endobj
489 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H;a+
+
+endstream
endobj
490 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Fqm +
+endstream
endobj
491 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +>a+u? +
+endstream
endobj
492 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HxS[ +
+endstream
endobj
493 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
494 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:륻 +
+endstream
endobj
495 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H- +
+endstream
endobj
496 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
497 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HG7 +
+endstream
endobj
498 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HSׁ +
+endstream
endobj
499 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;5 +
+endstream
endobj
500 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HqSϩ +
+endstream
endobj
501 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[W +
+endstream
endobj
502 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H|S +
+endstream
endobj
503 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8ak
+
+endstream
endobj
504 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
505 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=? +
+endstream
endobj
506 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
507 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=G +
+endstream
endobj
508 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=a[] +
+endstream
endobj
509 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
510 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=aUO +
+endstream
endobj
511 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HpS +
+endstream
endobj
512 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HM +
+endstream
endobj
513 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H; +
+endstream
endobj
514 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HxS +
+endstream
endobj
515 0 obj
<</Subtype/Image/Length 1178/Filter/DCTDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 85/Height 31/Type/XObject>>stream
+ +$$''$$53335;;;;;;;;;;
%% ## ((%%((22022;;;;;;;;;; + + +
+endstream
endobj
516 0 obj
<</Subtype/Image/Length 1637/Filter/DCTDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 85/Height 31/Type/XObject>>stream
+ +$$''$$53335;;;;;;;;;;
%% ## ((%%((22022;;;;;;;;;; + + +뾨}ckKI&b>Һ3:%|;^˘mpt7̥DJ&1gu͏.Gӊ"=yjd}/z_d$
? +
+endstream
endobj
517 0 obj
<</Length 615/Filter/FlateDecode>>stream
+HiLq ++e@Mt
T/VI'HAө}%{;zU}yIm}T)V́ޡep +
+endstream
endobj
518 0 obj
<</Subtype/Image/Length 1693/Filter/JPXDecode/BitsPerComponent 8/ColorSpace 1557 0 R/Width 85/Height 24/Type/XObject>>stream
+ + + +Yg3E, Tb1B!ET%8-?)*;vCTR`\i=Nnz{%$6L[@Q)< + cp1C +/A ET4Djw DSP^);Lwgt/A0_lKZ 3/:JXf|tQ`&8Vd$5'!#(%")&9[i + + + +V +\= +~ + + + +1LjD ;[ij#;Zq8e,<D7&nlY!t}aQONFJYQ&U)vN4I`01@M5Pj@TGWU*0Z{d=jW>&vP7uM)ю8#XI
JRwCm;'^Ef%5 +'?Iy"Zڭf1Pb,,ͦC.(-$ {ߘD˻<!?dW.o7Gei^}[ +endstream
endobj
519 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +8aۈw +
+endstream
endobj
520 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr>a/ +
+endstream
endobj
521 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha=7 +
+endstream
endobj
522 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa˭o +
+endstream
endobj
523 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr<bm +
+endstream
endobj
524 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HaKc-v>0 +
+endstream
endobj
525 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H?Vs[Mo0 +
+endstream
endobj
526 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
527 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+ +
+endstream
endobj
528 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaM +
+endstream
endobj
529 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
530 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +>aK=0 +
+endstream
endobj
531 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
532 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+ +
+endstream
endobj
533 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H:a+? +
+endstream
endobj
534 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+
+
+endstream
endobj
535 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba;Ε +
+endstream
endobj
536 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK5 +
+endstream
endobj
537 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRp +
+endstream
endobj
538 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HaKߓt< +
+endstream
endobj
539 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr:fm +
+endstream
endobj
540 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HFicU>0 +
+endstream
endobj
541 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2=[XV0 +
+endstream
endobj
542 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8Nk[#7=0 +
+endstream
endobj
543 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr8N#>0 +
+endstream
endobj
544 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a[ +
+endstream
endobj
545 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=Vv{O +
+endstream
endobj
546 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a
o +
+endstream
endobj
547 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
548 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRo +
+endstream
endobj
549 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaMo +
+endstream
endobj
550 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
551 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakU +
+endstream
endobj
552 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+
N0 +
+endstream
endobj
553 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2le +
+endstream
endobj
554 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<V}- +
+endstream
endobj
555 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?Nc +
+endstream
endobj
556 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr:a+<0 +
+endstream
endobj
557 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H:aK +
+endstream
endobj
558 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +8Nkm +
+endstream
endobj
559 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+Mo0 +
+endstream
endobj
560 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H<a+
o= +
+endstream
endobj
561 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H=aKo=0 +
+endstream
endobj
562 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Vmm +
+endstream
endobj
563 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=tm +
+endstream
endobj
564 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr>n +
+endstream
endobj
565 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Vye +
+endstream
endobj
566 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:6x] +
+endstream
endobj
567 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;Vm +
+endstream
endobj
568 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>{m +
+endstream
endobj
569 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H}] +
+endstream
endobj
570 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:e] +
+endstream
endobj
571 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
572 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<m] +
+endstream
endobj
573 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?Ac- +
+endstream
endobj
574 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<Ngm +
+endstream
endobj
575 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2;} +
+endstream
endobj
576 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>Nn- +
+endstream
endobj
577 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:ˮ +
+endstream
endobj
578 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&|] +
+endstream
endobj
579 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<6d] +
+endstream
endobj
580 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hzs +
+endstream
endobj
581 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
582 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hj{˛{ +
+endstream
endobj
583 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZvҋ +
+endstream
endobj
584 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<zm +
+endstream
endobj
585 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=um +
+endstream
endobj
586 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?a +
+endstream
endobj
587 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?.p +
+endstream
endobj
588 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H;a[-O +
+endstream
endobj
589 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8rm +
+endstream
endobj
590 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?n] +
+endstream
endobj
591 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +:}
+
+endstream
endobj
592 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRg] +
+endstream
endobj
593 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[u +
+endstream
endobj
594 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?q +
+endstream
endobj
595 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<6p] +
+endstream
endobj
596 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HZp76 +
+endstream
endobj
597 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:`m +
+endstream
endobj
598 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?c +
+endstream
endobj
599 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr9; +
+endstream
endobj
600 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=l +
+endstream
endobj
601 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hcm +
+endstream
endobj
602 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HbDŽsն=0 +
+endstream
endobj
603 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?{ +
+endstream
endobj
604 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2?g +
+endstream
endobj
605 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ΕO +
+endstream
endobj
606 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaΕ +
+endstream
endobj
607 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[5 +
+endstream
endobj
608 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+
#0 +
+endstream
endobj
609 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
610 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[uW +
+endstream
endobj
611 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;w +
+endstream
endobj
612 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
613 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
614 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e +
+endstream
endobj
615 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
616 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha3 +
+endstream
endobj
617 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a/ +
+endstream
endobj
618 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H9aKMoLv=0 +
+endstream
endobj
619 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
620 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
621 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr>a+Mol=0 +
+endstream
endobj
622 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa%O +
+endstream
endobj
623 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o?0 +
+endstream
endobj
624 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr:a+o$6>0 +
+endstream
endobj
625 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak# +
+endstream
endobj
626 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a+- +
+endstream
endobj
627 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;ew +
+endstream
endobj
628 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
629 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak_ +
+endstream
endobj
630 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+<0 +
+endstream
endobj
631 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak_ +
+endstream
endobj
632 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ݯ +
+endstream
endobj
633 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haկ +
+endstream
endobj
634 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ao +
+endstream
endobj
635 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
636 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbak +
+endstream
endobj
637 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H:aKMoԶ>0 +
+endstream
endobj
638 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
639 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
640 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
641 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+MoRN0 +
+endstream
endobj
642 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
643 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU +
+endstream
endobj
644 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+O +
+endstream
endobj
645 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
646 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+
0 +
+endstream
endobj
647 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H28a+5_ +
+endstream
endobj
648 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
649 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H>ak_ +
+endstream
endobj
650 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+/ +
+endstream
endobj
651 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak3_ +
+endstream
endobj
652 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
653 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a# +
+endstream
endobj
654 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a- +
+endstream
endobj
655 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
656 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
657 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[U +
+endstream
endobj
658 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+E +
+endstream
endobj
659 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+Mtv<0 +
+endstream
endobj
660 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;
w +
+endstream
endobj
661 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
662 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak- +
+endstream
endobj
663 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H29a+ 2 +
+endstream
endobj
664 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ r9 +
+endstream
endobj
665 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
666 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
667 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+oC0 +
+endstream
endobj
668 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[m +
+endstream
endobj
669 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
670 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[Տ +
+endstream
endobj
671 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[
O +
+endstream
endobj
672 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
673 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+u +
+endstream
endobj
674 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+oMw=0 +
+endstream
endobj
675 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ +
+endstream
endobj
676 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
677 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[eO +
+endstream
endobj
678 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a[ +
+endstream
endobj
679 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
680 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[O +
+endstream
endobj
681 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+otv<0 +
+endstream
endobj
682 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aEO +
+endstream
endobj
683 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ͯ +
+endstream
endobj
684 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2:a% +
+endstream
endobj
685 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
686 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2:a[cO +
+endstream
endobj
687 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake_ +
+endstream
endobj
688 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[}W +
+endstream
endobj
689 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
690 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2;a[M +
+endstream
endobj
691 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mo]<0 +
+endstream
endobj
692 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+_ +
+endstream
endobj
693 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
694 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRao +
+endstream
endobj
695 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa] +
+endstream
endobj
696 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[
+
+endstream
endobj
697 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akm +
+endstream
endobj
698 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
699 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hau/ +
+endstream
endobj
700 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[W +
+endstream
endobj
701 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+
o$? +
+endstream
endobj
702 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae/ +
+endstream
endobj
703 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaeo + +
+endstream
endobj
704 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akO +
+endstream
endobj
705 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+-oԷ>0 +
+endstream
endobj
706 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e +
+endstream
endobj
707 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;a+
v=0 + +
+endstream
endobj
708 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+o6=0 +
+endstream
endobj
709 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aU +
+endstream
endobj
710 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+
o<0 +
+endstream
endobj
711 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[m +
+endstream
endobj
712 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29ake +
+endstream
endobj
713 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha7 +
+endstream
endobj
714 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
715 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
716 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akß +
+endstream
endobj
717 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ako +
+endstream
endobj
718 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaUo +
+endstream
endobj
719 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaeo +
+endstream
endobj
720 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mow=0 +
+endstream
endobj
721 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakյ_ +
+endstream
endobj
722 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
723 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
724 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU +
+endstream
endobj
725 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[SW +
+endstream
endobj
726 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2akeo +
+endstream
endobj
727 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
728 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
729 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mo0 +
+endstream
endobj
730 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o6< +
+endstream
endobj
731 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
732 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
733 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
734 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[# +
+endstream
endobj
735 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+O +
+endstream
endobj
736 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+U +
+endstream
endobj
737 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aK +
+endstream
endobj
738 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku_ +
+endstream
endobj
739 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HbakMO +
+endstream
endobj
740 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae/ +
+endstream
endobj
741 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
742 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbaeo +
+endstream
endobj
743 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aE +
+endstream
endobj
744 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
745 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+MoԶ>0 +
+endstream
endobj
746 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
747 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
748 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e +
+endstream
endobj
749 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKU +
+endstream
endobj
750 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o6?0 +
+endstream
endobj
751 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+
ov?0 +
+endstream
endobj
752 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak5 +
+endstream
endobj
753 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
754 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
755 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
756 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
757 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
758 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
759 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e? +
+endstream
endobj
760 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
761 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ao +
+endstream
endobj
762 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+E +
+endstream
endobj
763 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaKˍ +
+endstream
endobj
764 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[3 +
+endstream
endobj
765 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku +
+endstream
endobj
766 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+5? +
+endstream
endobj
767 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ake +
+endstream
endobj
768 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Has/ +
+endstream
endobj
769 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
770 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae/ +
+endstream
endobj
771 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e +
+endstream
endobj
772 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8aKo0 +
+endstream
endobj
773 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mod7?0 +
+endstream
endobj
774 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+%_ +
+endstream
endobj
775 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+E +
+endstream
endobj
776 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+o$6>0 +
+endstream
endobj
777 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mն=0 +
+endstream
endobj
778 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+/ +
+endstream
endobj
779 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ +
+endstream
endobj
780 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
781 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+o +
+endstream
endobj
782 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+e +
+endstream
endobj
783 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haݯ +
+endstream
endobj
784 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
785 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
786 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU/ +
+endstream
endobj
787 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e + +
+endstream
endobj
788 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakŵ +
+endstream
endobj
789 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
790 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e +
+endstream
endobj
791 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hacw +
+endstream
endobj
792 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[eO +
+endstream
endobj
793 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+U +
+endstream
endobj
794 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+oT<0 +
+endstream
endobj
795 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H29a+ot?0 +
+endstream
endobj
796 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a+U +
+endstream
endobj
797 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+U +
+endstream
endobj
798 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
799 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8aKU +
+endstream
endobj
800 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
801 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
802 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
803 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ѵ_ +
+endstream
endobj
804 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ako +
+endstream
endobj
805 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[W +
+endstream
endobj
806 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+? +
+endstream
endobj
807 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[5 +
+endstream
endobj
808 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
809 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aKU +
+endstream
endobj
810 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
811 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e + +
+endstream
endobj
812 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ŏ +
+endstream
endobj
813 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba+U? +
+endstream
endobj
814 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+/ +
+endstream
endobj
815 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+E +
+endstream
endobj
816 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;a+ͯV= +
+endstream
endobj
817 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+c +
+endstream
endobj
818 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
819 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaE +
+endstream
endobj
820 0 obj
<</Subtype/Image/Length 22/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr?a+ r? +
+endstream
endobj
821 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+ow=0 +
+endstream
endobj
822 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake_ +
+endstream
endobj
823 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
824 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr<a+oT<0 +
+endstream
endobj
825 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<hm +
+endstream
endobj
826 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +;.p +
+endstream
endobj
827 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?hm +
+endstream
endobj
828 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&x] +
+endstream
endobj
829 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:Nqm +
+endstream
endobj
830 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +;Nsm +
+endstream
endobj
831 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2F{m +
+endstream
endobj
832 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=xm +
+endstream
endobj
833 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr9.ͳO +
+endstream
endobj
834 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?k +
+endstream
endobj
835 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HpE +~ +
+endstream
endobj
836 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb{] +U~ +
+endstream
endobj
837 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9m +
+endstream
endobj
838 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr8VdC +
+endstream
endobj
839 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hmm +
+endstream
endobj
840 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr? +
+endstream
endobj
841 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRU +
+endstream
endobj
842 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H} + +
+endstream
endobj
843 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:e +
+endstream
endobj
844 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9ym +
+endstream
endobj
845 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>N}- +
+endstream
endobj
846 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9Ne +
+endstream
endobj
847 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H29we +b +
+endstream
endobj
848 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRlu +
+endstream
endobj
849 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HAl% +
+endstream
endobj
850 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HR҇ wjl{` +
+endstream
endobj
851 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr;.x] +
+endstream
endobj
852 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HR_T>0 +
+endstream
endobj
853 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&l] +
+endstream
endobj
854 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&f5 +
+endstream
endobj
855 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H*a[S +
+endstream
endobj
856 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&a] +
+endstream
endobj
857 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRo] +
+endstream
endobj
858 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbM +
+endstream
endobj
859 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr<Nre +
+endstream
endobj
860 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2a+M=0 +
+endstream
endobj
861 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+]-v>0 +
+endstream
endobj
862 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZs +I^ +
+endstream
endobj
863 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hy +
+endstream
endobj
864 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
865 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?y +
+endstream
endobj
866 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?u] +
+endstream
endobj
867 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+u +
+endstream
endobj
868 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H;a[5 +
+endstream
endobj
869 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?x +
+endstream
endobj
870 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +:^dM +
+endstream
endobj
871 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hjaӛ+ +
+endstream
endobj
872 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hx˦7w +
+endstream
endobj
873 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hx7W_ +
+endstream
endobj
874 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;.j5 +
+endstream
endobj
875 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hy +
+endstream
endobj
876 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZv +
+endstream
endobj
877 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZ~+7 +
+endstream
endobj
878 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<6~+ +
+endstream
endobj
879 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9k +
+endstream
endobj
880 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+He +
+endstream
endobj
881 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hpe +T[ +
+endstream
endobj
882 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:5 +
+endstream
endobj
883 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H<{K/ +
+endstream
endobj
884 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H<Aj目;o +
+endstream
endobj
885 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +:^iM +
+endstream
endobj
886 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;V~m +
+endstream
endobj
887 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HJ>a
+
+endstream
endobj
888 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRsU +
+endstream
endobj
889 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HjQqۉ +
+endstream
endobj
890 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H| +
+endstream
endobj
891 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HQzo +
+endstream
endobj
892 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hrȶ7i~ +
+endstream
endobj
893 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
894 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hr=;ot?0 +
+endstream
endobj
895 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HFt% +h +
+endstream
endobj
896 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr:Nx- +
+endstream
endobj
897 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HJ9aE +
+endstream
endobj
898 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbv +'l +
+endstream
endobj
899 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRFS +
+endstream
endobj
900 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hr<ak +j +
+endstream
endobj
901 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
902 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+
+
+endstream
endobj
903 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2:i+o%? +
+endstream
endobj
904 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hy+
oy0 +
+endstream
endobj
905 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;}<0 +
+endstream
endobj
906 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HF;U +
+endstream
endobj
907 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2aM +\ +
+endstream
endobj
908 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H8aK70 +
+endstream
endobj
909 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +;Nkm +
+endstream
endobj
910 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=a+=? +
+endstream
endobj
911 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2=6_? +
+endstream
endobj
912 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hb*_$6< +
+endstream
endobj
913 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hgk +
+endstream
endobj
914 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H63>0 +
+endstream
endobj
915 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:Nim +
+endstream
endobj
916 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hҋ_Է>0 +
+endstream
endobj
917 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H{37 +
+endstream
endobj
918 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H}7 +
+endstream
endobj
919 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H9f +
+endstream
endobj
920 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H6x= +
+endstream
endobj
921 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hu +
+endstream
endobj
922 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;qm +
+endstream
endobj
923 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>k- +
+endstream
endobj
924 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2 +
+endstream
endobj
925 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hm] +
+endstream
endobj
926 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbJom +
+endstream
endobj
927 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2<lm +
+endstream
endobj
928 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbX2h5 +=o +
+endstream
endobj
929 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hm +} +
+endstream
endobj
930 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HZe +Yh +
+endstream
endobj
931 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ9aKS +
+endstream
endobj
932 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ8a[獏 +
+endstream
endobj
933 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa; +
+endstream
endobj
934 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[Տ +
+endstream
endobj
935 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;w +
+endstream
endobj
936 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ + +
+endstream
endobj
937 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU_ +
+endstream
endobj
938 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU +
+endstream
endobj
939 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaU +
+endstream
endobj
940 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha]w +
+endstream
endobj
941 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
942 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[U +
+endstream
endobj
943 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
944 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha
+
+endstream
endobj
945 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+/ +
+endstream
endobj
946 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
947 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
948 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+Ϳ +
+endstream
endobj
949 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+ͯV= +
+endstream
endobj
950 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aE +
+endstream
endobj
951 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+->0 +
+endstream
endobj
952 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+տ +
+endstream
endobj
953 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
954 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak鳏 +
+endstream
endobj
955 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;Ew +
+endstream
endobj
956 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
957 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aEo +
+endstream
endobj
958 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;3 +
+endstream
endobj
959 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HbakE +
+endstream
endobj
960 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a+_ +
+endstream
endobj
961 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aE/ +
+endstream
endobj
962 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akw +
+endstream
endobj
963 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
964 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e_ +
+endstream
endobj
965 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;w +
+endstream
endobj
966 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+U? +
+endstream
endobj
967 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+E +
+endstream
endobj
968 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2>a+Mw?0 +
+endstream
endobj
969 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Has7 +
+endstream
endobj
970 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+oLv=0 +
+endstream
endobj
971 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
972 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
973 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakM +
+endstream
endobj
974 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[E +
+endstream
endobj
975 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK- +
+endstream
endobj
976 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H296= +
+endstream
endobj
977 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU/ +
+endstream
endobj
978 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[Տ +
+endstream
endobj
979 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[E +
+endstream
endobj
980 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
981 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK˽ +
+endstream
endobj
982 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbJv- +
+endstream
endobj
983 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+տ +
+endstream
endobj
984 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
985 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
986 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+E +
+endstream
endobj
987 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
988 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak5_ +
+endstream
endobj
989 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
990 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[eO +
+endstream
endobj
991 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
992 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
993 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU +
+endstream
endobj
994 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+-o +
+endstream
endobj
995 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
996 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e +
+endstream
endobj
997 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU +
+endstream
endobj
998 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H28aK
+
+endstream
endobj
999 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha; +
+endstream
endobj
1000 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1001 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hbau +
+endstream
endobj
1002 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hum +
+endstream
endobj
1003 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aE +
+endstream
endobj
1004 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
1005 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
1006 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
1007 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aE +
+endstream
endobj
1008 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha靷 +
+endstream
endobj
1009 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
1010 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[͏ +
+endstream
endobj
1011 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ake +
+endstream
endobj
1012 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak- +
+endstream
endobj
1013 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[郗 +
+endstream
endobj
1014 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
1015 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
1016 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+oT<0 +
+endstream
endobj
1017 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
1018 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak͟ +
+endstream
endobj
1019 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
1020 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
1021 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ov<0 +
+endstream
endobj
1022 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2akO +
+endstream
endobj
1023 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU +
+endstream
endobj
1024 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haկ +
+endstream
endobj
1025 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakޕ +
+endstream
endobj
1026 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[w +
+endstream
endobj
1027 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
1028 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
1029 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1030 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
1031 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H: +
+endstream
endobj
1032 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ + +
+endstream
endobj
1033 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+_ +
+endstream
endobj
1034 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;m7 +
+endstream
endobj
1035 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[] +
+endstream
endobj
1036 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[U +
+endstream
endobj
1037 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H;aKMo? +
+endstream
endobj
1038 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
1039 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8aɣ +
+endstream
endobj
1040 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakE +
+endstream
endobj
1041 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a;Ew +
+endstream
endobj
1042 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+u? +
+endstream
endobj
1043 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[-W +
+endstream
endobj
1044 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+? +
+endstream
endobj
1045 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[U +
+endstream
endobj
1046 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+E? +
+endstream
endobj
1047 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
1048 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+Mo>0 +
+endstream
endobj
1049 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:ˑ +
+endstream
endobj
1050 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
1051 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:k +
+endstream
endobj
1052 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakޕ_ +
+endstream
endobj
1053 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak= +
+endstream
endobj
1054 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+ov<0 +
+endstream
endobj
1055 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:[ +
+endstream
endobj
1056 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1057 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak#/ +
+endstream
endobj
1058 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H*a+Mo/0 +
+endstream
endobj
1059 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK
+
+endstream
endobj
1060 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[
+
+endstream
endobj
1061 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
1062 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+] +
+endstream
endobj
1063 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
1064 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[U +
+endstream
endobj
1065 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak
+
+endstream
endobj
1066 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[UO +
+endstream
endobj
1067 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+O +
+endstream
endobj
1068 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+U? +
+endstream
endobj
1069 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
1070 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
1071 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha
/ +
+endstream
endobj
1072 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8akEo +
+endstream
endobj
1073 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
1074 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak֥ +
+endstream
endobj
1075 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H*a+o +Ͼ0 +
+endstream
endobj
1076 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
1077 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha]/ +
+endstream
endobj
1078 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+oRO0 +
+endstream
endobj
1079 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaK +
+endstream
endobj
1080 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +?a+o0 +
+endstream
endobj
1081 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akE +
+endstream
endobj
1082 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8>z +
+endstream
endobj
1083 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba +
+endstream
endobj
1084 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakE +
+endstream
endobj
1085 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak# +
+endstream
endobj
1086 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaU +
+endstream
endobj
1087 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak5 +
+endstream
endobj
1088 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29ako +
+endstream
endobj
1089 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
1090 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRa+
v=0 +
+endstream
endobj
1091 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRae +
+endstream
endobj
1092 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
1093 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a/ +
+endstream
endobj
1094 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
1095 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+m +
+endstream
endobj
1096 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2a;w +
+endstream
endobj
1097 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
1098 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1099 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ9' +
+endstream
endobj
1100 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
1101 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H>a+U +
+endstream
endobj
1102 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a+- +
+endstream
endobj
1103 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ< +
+endstream
endobj
1104 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=Їco +
+endstream
endobj
1105 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+E? +
+endstream
endobj
1106 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
1107 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake + +
+endstream
endobj
1108 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha5o +
+endstream
endobj
1109 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakE +
+endstream
endobj
1110 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1111 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+U? +
+endstream
endobj
1112 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+E? +
+endstream
endobj
1113 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+e +
+endstream
endobj
1114 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[U +
+endstream
endobj
1115 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;e +
+endstream
endobj
1116 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha/ +
+endstream
endobj
1117 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
1118 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;w +
+endstream
endobj
1119 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha +
+endstream
endobj
1120 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
1121 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<GO +
+endstream
endobj
1122 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
1123 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[ƕO +
+endstream
endobj
1124 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +;GW +
+endstream
endobj
1125 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha=/ +
+endstream
endobj
1126 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1127 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +8>v] +
+endstream
endobj
1128 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU_ +
+endstream
endobj
1129 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa; +
+endstream
endobj
1130 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[u +
+endstream
endobj
1131 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a7 +
+endstream
endobj
1132 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU +
+endstream
endobj
1133 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ѕ +
+endstream
endobj
1134 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+e? +
+endstream
endobj
1135 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2aկ +
+endstream
endobj
1136 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaկ +
+endstream
endobj
1137 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
1138 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H8a;Ew +
+endstream
endobj
1139 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1140 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haw +
+endstream
endobj
1141 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
1142 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
1143 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak5 +
+endstream
endobj
1144 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakM +
+endstream
endobj
1145 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HaM/ +
+endstream
endobj
1146 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha;u +
+endstream
endobj
1147 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
1148 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[ +
+endstream
endobj
1149 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;U +
+endstream
endobj
1150 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a;% +
+endstream
endobj
1151 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRakeo +
+endstream
endobj
1152 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[EO + +
+endstream
endobj
1153 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+
=0 +
+endstream
endobj
1154 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[U +
+endstream
endobj
1155 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake + +
+endstream
endobj
1156 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[e +
+endstream
endobj
1157 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
1158 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[
O +
+endstream
endobj
1159 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29aO +
+endstream
endobj
1160 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=aͷ +
+endstream
endobj
1161 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hauo +
+endstream
endobj
1162 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaKΕ +
+endstream
endobj
1163 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H29a- +
+endstream
endobj
1164 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hako +
+endstream
endobj
1165 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2ak +
+endstream
endobj
1166 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a]7 +
+endstream
endobj
1167 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+/ +
+endstream
endobj
1168 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haku_ +
+endstream
endobj
1169 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakO +
+endstream
endobj
1170 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+Mo0 +
+endstream
endobj
1171 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=6] +
+endstream
endobj
1172 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakU_ +
+endstream
endobj
1173 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ß +
+endstream
endobj
1174 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=ໂ[ +
+endstream
endobj
1175 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ< +
+endstream
endobj
1176 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=GM + +
+endstream
endobj
1177 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<Gk/ +
+endstream
endobj
1178 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +=/ +
+endstream
endobj
1179 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hao +
+endstream
endobj
1180 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake +
+endstream
endobj
1181 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akE +
+endstream
endobj
1182 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRake_ +
+endstream
endobj
1183 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Vcm +
+endstream
endobj
1184 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<Vf- +
+endstream
endobj
1185 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +;.{-v<0 +
+endstream
endobj
1186 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ:a˔[ +
+endstream
endobj
1187 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H*a[3 +
+endstream
endobj
1188 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Ngm +
+endstream
endobj
1189 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2V{[uo6< +
+endstream
endobj
1190 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[MO +
+endstream
endobj
1191 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1192 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[Տ +
+endstream
endobj
1193 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Haݯ +
+endstream
endobj
1194 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaΥo +
+endstream
endobj
1195 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak +
+endstream
endobj
1196 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akɕo +
+endstream
endobj
1197 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H;cM +
+endstream
endobj
1198 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<sM +
+endstream
endobj
1199 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbX2; + +
+endstream
endobj
1200 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H>Ng[o< +
+endstream
endobj
1201 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb*d] + +
+endstream
endobj
1202 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H9a[U +
+endstream
endobj
1203 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hbpm +
+endstream
endobj
1204 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H;G/ +
+endstream
endobj
1205 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRik]0 +
+endstream
endobj
1206 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Hkd7=0 +
+endstream
endobj
1207 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HRgk]? +
+endstream
endobj
1208 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a+ +
+endstream
endobj
1209 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H2=oko7?0 +
+endstream
endobj
1210 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=akC +
+endstream
endobj
1211 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2Vak5 +
+endstream
endobj
1212 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H} +
+endstream
endobj
1213 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+֕ +
+endstream
endobj
1214 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
1215 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakM +
+endstream
endobj
1216 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1217 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8aM +
+endstream
endobj
1218 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H29q +
+endstream
endobj
1219 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>^}e +
+endstream
endobj
1220 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbX2] +t +
+endstream
endobj
1221 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:kU +
+endstream
endobj
1222 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +;Nvm +
+endstream
endobj
1223 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb*j5 + +
+endstream
endobj
1224 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;6~U +
+endstream
endobj
1225 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1226 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;N}m +
+endstream
endobj
1227 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H}ۻo +
+endstream
endobj
1228 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[O +
+endstream
endobj
1229 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HVp- +k +
+endstream
endobj
1230 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa +
+endstream
endobj
1231 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak +
+endstream
endobj
1232 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[#W +
+endstream
endobj
1233 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<6p] +
+endstream
endobj
1234 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=Vkm +
+endstream
endobj
1235 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H+ +
+endstream
endobj
1236 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?ec +
+endstream
endobj
1237 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR&b] +
+endstream
endobj
1238 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HZw2[ +
+endstream
endobj
1239 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+oV= +
+endstream
endobj
1240 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=Nm +
+endstream
endobj
1241 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRi +
+endstream
endobj
1242 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H; + +
+endstream
endobj
1243 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR3 +
+endstream
endobj
1244 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRak_ +
+endstream
endobj
1245 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H| +ln +
+endstream
endobj
1246 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HakO +
+endstream
endobj
1247 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ +
+endstream
endobj
1248 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1249 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha+ݿ +
+endstream
endobj
1250 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa;w +
+endstream
endobj
1251 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
1252 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8 +
+endstream
endobj
1253 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha+D?0 +
+endstream
endobj
1254 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H<pm +
+endstream
endobj
1255 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +=aK]Mv<0 +
+endstream
endobj
1256 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?Vr- +
+endstream
endobj
1257 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HFaϾ +
+endstream
endobj
1258 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr=w +
+endstream
endobj
1259 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:s +
+endstream
endobj
1260 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:u +
+endstream
endobj
1261 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a[W +
+endstream
endobj
1262 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:# +
+endstream
endobj
1263 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1264 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha7 +
+endstream
endobj
1265 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1266 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr8k +
+endstream
endobj
1267 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HZ{ +
+endstream
endobj
1268 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr9q +
+endstream
endobj
1269 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hw +
+endstream
endobj
1270 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +9~m +
+endstream
endobj
1271 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Ho +
+endstream
endobj
1272 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&h] +
+endstream
endobj
1273 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hʾfe +
+endstream
endobj
1274 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H>Nsm +
+endstream
endobj
1275 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:~] +
+endstream
endobj
1276 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak_ +
+endstream
endobj
1277 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hji
+
+endstream
endobj
1278 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+_ +
+endstream
endobj
1279 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+_ +
+endstream
endobj
1280 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2akM_ +
+endstream
endobj
1281 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a +
+endstream
endobj
1282 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=ak}w +
+endstream
endobj
1283 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;im +
+endstream
endobj
1284 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Ho +
+endstream
endobj
1285 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H?Nym +
+endstream
endobj
1286 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:z] +
+endstream
endobj
1287 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&v] +
+endstream
endobj
1288 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?~ +
+endstream
endobj
1289 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H9a+MoLv?0 +
+endstream
endobj
1290 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
1291 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+Ha㫄3>0 +
+endstream
endobj
1292 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H
+
+endstream
endobj
1293 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hakݣ +
+endstream
endobj
1294 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?w +
+endstream
endobj
1295 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[M +
+endstream
endobj
1296 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&d] +
+endstream
endobj
1297 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hak +
+endstream
endobj
1298 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK +
+endstream
endobj
1299 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa+ޕ_ +
+endstream
endobj
1300 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H~m +
+endstream
endobj
1301 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HRkm +
+endstream
endobj
1302 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2;6Gsw +
+endstream
endobj
1303 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H&x] +
+endstream
endobj
1304 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H=a
+
+endstream
endobj
1305 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8j +
+endstream
endobj
1306 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2F}m +
+endstream
endobj
1307 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Fam +
+endstream
endobj
1308 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H26`] +
+endstream
endobj
1309 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR}] +
+endstream
endobj
1310 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRaK͍ +
+endstream
endobj
1311 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Fkm +
+endstream
endobj
1312 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H2=a-w +
+endstream
endobj
1313 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+He + +
+endstream
endobj
1314 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr?u +
+endstream
endobj
1315 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa[ +
+endstream
endobj
1316 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Hba[͗ +
+endstream
endobj
1317 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[S +
+endstream
endobj
1318 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+Ha[ +
+endstream
endobj
1319 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hr<wM +
+endstream
endobj
1320 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +:^c; +
+endstream
endobj
1321 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +
+endstream
endobj
1322 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2Vm- +
+endstream
endobj
1323 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H8{% +
+endstream
endobj
1324 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HR5 +
+endstream
endobj
1325 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H +=N{m +
+endstream
endobj
1326 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HbX5 +N| +
+endstream
endobj
1327 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+HVv- +{ +
+endstream
endobj
1328 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Ha + +
+endstream
endobj
1329 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H2;vm +
+endstream
endobj
1330 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H +==_ +
+endstream
endobj
1331 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+Hb + +
+endstream
endobj
1332 0 obj
<</Subtype/Image/Length 18/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 2/Height 1/Type/XObject>>stream
+H:`e +
+endstream
endobj
1333 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<o +
+endstream
endobj
1334 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HJ<[ +
+endstream
endobj
1335 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+H +:a+Mo0 +
+endstream
endobj
1336 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+HRa/ +
+endstream
endobj
1337 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=˭ +
+endstream
endobj
1338 0 obj
<</Subtype/Image/Length 21/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 3/Height 1/Type/XObject>>stream
+H=Ǔ +
+endstream
endobj
1339 0 obj
<</Subtype/Image/Length 24/Filter/FlateDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 4/Height 1/Type/XObject>>stream
+HZpۡw·?y` +
+endstream
endobj
1340 0 obj
<</CropBox[0 0 595 842]/Parent 1760 0 R/Tabs/S/StructParents 6/Contents 1341 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R/Im1 1342 0 R/Im2 1343 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1341 0 obj
<</Length 1615/Filter/FlateDecode>>stream
+HWmoFίv}]N"prRɩ"43kc8Hy}q<izQ-|Oڶ(9z_mSA|[<֫+//"!T$2ЊEJBʳ(eL/gS]xzǠ-WW\z<g!_8ܓd*J,$ϣ +zz5C[x1@^=%p҅TEr.wi 5u +WvWn_eK״L?%ϾZzJQ7#U'%blhsa9:b}
?TJ*CFi.nBKo;lִPm#&{{Z5ڌ\;]~rW>g(:E1N7cb)$}P۪U^-p"B
FN$J^CR$)Oւdí\&Տ5m%LamK.I)Se!on> +dć0"#A'|r͠8ҧ;}]WqO"]}n\Pr(ImAAW]ѻ7z9ASu6b郟WH=44$<#}@B&R]
"T/F{]IE,iC~cZ۞ @pbA?ёQO/f&O1g fJ zHptvQ\weA6i<p惒 +Qv}N||N|]F79#mmv漗+ +endstream
endobj
1342 0 obj
<</Subtype/Image/Length 9714/Filter/DCTDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 408/Height 301/Type/XObject>>stream
+ +$$''$$53335;;;;;;;;;;
%% ## ((%%((22022;;;;;;;;;; + + +P$0)BPP BJc B% )% +PSJ(ILa(R%1J(JSJ(ILa(R%1J(JSJ(ILa(R%1J(JSJ(ILa(R%1J(JSJ(ILa(R%1$8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL!-p$)PB[T(IL!(S%0N8JS
B% )ԡN8JSJ(IL!(S%0$jP BJG-${Rډ BJG B$% )%HJR=mD%#ږHJR=B$% )T(IH(D%#ږHJR=B$% )ԡډ BJG-$SmD%#ږHJR8JI1h&>'d) ~DքBPKj3*}w
hV>#PSv +o@ +gYc}6M=fyZ
ih5菚~M#F|Bt@Q:t\!RO}د}s{ğ?"Ggzy>7碵s,!I̋]95k3ºV
R
N^^&ۛEcR| +l/{4lԝI`Wc +YmzXMn9v\vH@ikl¿ +?Q_dmnHh1~eu2/ea ;>rtj=71kMƱΒI|:ivnVvԶB[SW#ږ8KjJa-S
)I)&ԶBPQKj$% )ԶmJR͜]&>
˳N +{۱@xNku:r Z%6叅zc)ƣ1Ͼlsƴ6!i +TZ=aTvXO'WPy{1h.{Z#{ +?W*굌
織8 "ee2fo[GWAPэ}ٹ@~!Vg@c;_`6?%c( S6W˷o%+[7ӺZwkugac/N$| UhiH!mrW-]]WSmok\.#Wˮ1,nĈ$B
Y/3-n/ +~o6 +$?/h#}`gzp}ai!yGh +lŋ +{Akʽ0.{@%ߢkʄ# ;>Ucbtm[ +I1)bCXYT\gAkX_o?MWB(}S'<- 5:Srmůen-p1Vcԃ`.ps65u*M7'-ӝW;a֝a,- ȎZw'#! +->`@6l P +aw +'I%1. +չ
GB_nA]RMhM +IBJkG7Ro)]?K_BV]"䤑
p8I,Q +A%3 +AD)ͪa@)f;.Dp]g6QߐDpՏ/E$IjNA6o?Tn>(6BtTϋ*3ډ Br{Rډ BJG mD%#ڒ$$P6Ԓj[Q!(IHRڒ\RG.?rßl+Lw:T?ܕ_͏SR0 +2/h'ǺJM(Uˏ/cII/q1фc +N))K0JF +Bf;.S]]W~ENUz,I'2tӨ]Bw?Pv>jN:c*kDgpjxII.l% +{RڊBP BJa B%%0$(JKJ(Ia(RXBz +A$jPjA)P +ae +PSJ4$0$P BJa B% )% +p$^ +5IG*^a\ô +bWޣOYz}&̜q]Uέ5yBL/'w1sm~SI~kv-M}Ս|Mn=7Ii]I?2ʏCDHqW0#h:> +Ux1'L` +dB":$Hj % +P$0)BPP BJc B% )$ $p)BPXP BJc S%!sPlUKhJN];݂ڛj6ɾ}QOꞯL
!n>WsX=b#WyNҖZ{/?
W[z5~q+x,?zMWgj}xYQ= +bkhKhJMoNV6-T9DBPVJ(JSJ(ILa(R%1$II+BIIKBIIK$$$$P$$$IIKBP$% IK$$$$% %,tRВtIK% IKBIIKBIIKBP$$-RВtRД'I%,'I%,tRВtR'I%? +
+endstream
endobj
1343 0 obj
<</Subtype/Image/Length 9125/Filter/DCTDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 402/Height 310/Type/XObject>>stream
+ +$$''$$53335;;;;;;;;;;
%% ## ((%%((22022;;;;;;;;;; + + +8zk-kX' +F
x6umL +-AQ; +ssq>19I߁IH{[^+?dt<ﭚ?sq[HBie24kՎ<SޯG)iܪUv/Hv{): +qqtDq%%3?q>*? +ܠMwl +coܳߒ +LWE:{ٟ}[}9\FBb +_CY + +IL +S*%%#+;J+;RS +!H$OrZ?O? +~m>57$HI$JRI$I$IQ%9P)%D%D*$LJDJ)9TO*ryILI
w +J`TJQ))YWBE))?g+̳+E t:JYt9))UW + +{~tǭM]o"2x +십;{|\IN.}6G<~c?: +HDB )!)+E)!ղĔ5ղĔ5JʼYXc Z_JqݏrM P8ԔO{j&Vog +r%ĴD+T3@*ݥ-_8gx슚[RkN1SX)'%#l4) +ڏJS3L25ID
IJhS %* :JY:I$$I)I'$DSfTJSTJ4KE@(I$>T +ԒS@2I%>TL/7I%>a@ԒSߘP;|WJ{D\:I)qI$;|TN$xȤDS$Q;|W4Jz#1S<SΤx$(S
*BJ{m\BI)\:I)$).$ .$ +
+endstream
endobj
1344 0 obj
<</CropBox[0 0 595 842]/Parent 1760 0 R/Tabs/S/StructParents 7/Contents 1345 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R/Im1 1346 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1345 0 obj
<</Length 1912/Filter/FlateDecode>>stream
+HWnH}W#0[n^3A +p\f.ϔmrs6ǰ)!}!D=>urۉs۷213H)fB5_@2?F]DP cyuDǜqK(ۍ9[e>\Z \7Ҧ8n}2EV^Kd +l~u5'Qaq#isCISnA 8r;,.KˉGVծ.nh{o;^ШÙ5YͶWBdh7ii|\=ar}diWr[~axo3!fuդn|K uSaЁ
<apIDyŋurXLץi[ݓuߓ,Y{u-Y-ro`(u&2;pvwOVӯ>T3сjn?cUUuE5Pb7BYsf;z*dE\P4=g6%61`ϲ"(N针H7J+:b;1kn?^;yUub[:lDQz=]]=K&?ʵ"QkYB8>T2YYվ28-^Jm'*DYuYyEL +^6E1
c@Q
jKV- +KnaI7ƀ@4[bID.Oa5>O8/`όUERpoH/|+JJ.+su'<GRvO<@bNOq>)D9㻠'DyIs~!0{'*!Rub 7QcMYm5c7\hy ?TЁQƙ2:L^n*U2MG\TܯMc<y;$mlo;4AG+ͷڣ?|\G>Hi4h&rT!=3ů1Ьiuv~qYHöI4-ϡgܦNȷTjK41x"xIu㦓)8LV +f8
nxGbpFvfɈ.|S5zV[
sEc.Ww\0P)Tr-Ip1ҲO'r*4 +:֛ztǘ$_z{)
`y.?%~3c'nÖo3=`>bE!z)JM<)E&9k7'ɻy~f9;m۬l4{wug#t_ +endstream
endobj
1346 0 obj
<</Subtype/Image/Length 13134/Filter/DCTDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 483/Height 358/Type/XObject>>stream
+ +$$''$$53335;;;;;;;;;;
%% ## ((%%((22022;;;;;;;;;; + + +P$0)BP +P$0)BPP BJc )BPP BJc B% )% +P$)B% )% +P$0)BPP BJc B% )% +P$0)BPP BJc B% )% +P$0)BPD)BPP BJc B% )% +P$0)BPP BJc )BH% +p )PBP BJa B% )% +p$)PBP BJa J8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL4INIL(S%0N8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL!(S%0N8JSJ(IL!(S%0NmTckZ$,ܜw_ﲷiulseӻdmc}X7#9ܞZϤx|J|$|Rw|4Joͳ;5k*$% +pԔlā:[7WvP`_(1?` tn+]CE897N)},֒$tF_ +p$)PBP BJa B% )% +pԔ8JSJ(IL!(S0N8JSJ(IL!(S0N8JSJ(IL!(S%0N8]Ceѓk%v˔KQ6Xm3kO{<].Lkn\|ZaSC+` +/k~iBpnĞ>JEk`9iJnWN:}V 7?[ +H% +pԒ=BJa(S%0NڒBPC@%RJ +q(V~ÓÕފ,wkBP+?ÕcVk9_P66P"J% +{RڒXBP BJa BԶ8KjJa BԶ)PBP BJa(S:TX~A%!ѺM
(Rn,_
sΛkU/->-dO K5! +p ΊzV +o/o"gW!kof1N#}/WIs{8 +O-۴wړ*[sqs|BU@Шՙ.q.qI)BA:(k
0)>?m;.^i +.9/q8)J +O'JenH +:=Jŷ7cݮ#V+k +=C#m4.At+wlTcK1g>]e.32! +(rpeq=ma+_ +n99/%>:VO<Ҷ$Ȗjt&}Dϰ1.[kkis!Sh{QiZ*6]gګ{¸ +/PgU}
ЖeѨ@4 +pV[vXfwijI-?$,Ş_8(q?%{INp +\SӯvU-kXíi>ogQLM +% )% +p$RSS8J< p"BhIL!(Sڔ$"mM )PmV:0`yӋ'?,y?#~K.tmNXK:OXX.aS\sy$Uk +{Rj[T )ԶPmKj% )ԴmNި=|]*oRkd$7%I"KDE +L}հ3;4D%6]XgX&Mv|I7 +d}&e:7 +)O_%u{SvFr̃E$:8Ov! +oR
\93I:dPI"_MUP&)Х $)J" e
+ +P$%NJR>?*cʒHn-1'/4͟onMcv[c!asOÂ~8r|nXTE$b#GoF{X<=5q$CӤb&ԅx(;>h=Q;!v'
mSږTj[T(IL6NhIIL(S0N8JSJ )\wYҵi`מfS@r(kd(RLՓ'I%1A +A0 J8L'@ +a[_jC BA,ڦZ+6AHW^ǻ2I$*I$Bm*U6GI!)@XA4 +'~ENP8JSJ(IL!(S%0ڒ$P BIG B$&HJR8J!(IN7] +aD)+ATxR.ڸ]\rt:RI$bRI$_ +u6 +AD)AEMA,\rG ǛdIHĤN_o~U +q!(S-a B% )% +pԔ=BJa )I+S8J(IL!(S%0N8JSgZ ';,Z[4͝[Va;W_L䟑#&<OӖ)$7? +ʭx~%VJ+Kߤ)Bd +u) +p$)PBP BJy[[ZG +AD))K0BA)+!v\`y}V)Ĥ铤)EJ߈(=IPI2tq*A'~DJ<")PBP BJa B% )$ $p)PXBP BJa B% )% +{RZ +AD)) +AD)' +!H$aL( BF +.MuriǛ${J\)AN߈$=jtPN%.cEEƍ(R%1J(JSJ(ILRRS(J(ILa(R%1J(JS}o +AD)$aH(0YL(0K0%5re:VeRIObdd)u6}6GP +lmʒC$IBۥ.̦2SBIxM +P 0)BPP BJc B% )% +P$0$YP B +c B% )% +P$0)BK:S:_ ;c^/sm. +)=ӮFIi2" [~emx
RGުO] +0l- B%)% +P$0)BPP$0)BPP BJc )BI)% (ITxJU- BxJU1!EԕMgUVPDh!Ȳ,Sy8Cxtƞn,]Fs(6`C +/"qp&<\A\Ngxb +4)BP'$ZBJ(O BJ(O BJ$JP'$ Bt%- BxJRД'RК(IK@M)BP m +P$;B[B% )ЖХ BJcx%x)% )औ$;[G$ l +I$;G[G$ m +P$;G[G% )ЖФ$;B[B$J% ))BPxO BJZP(IKBP% (IKBPIKBI(IKBP% (IKBP(IKBP(IK$$K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*K夒S*Z/IOԩ/IOԩ/IOԩ/IOԩ/IOԩ/IOԩhZI%?RZI%?RZI%?RZI%?RZI%?RZI%?RZI%?RZI%?Ri$Ji$Ji$ +
+endstream
endobj
1347 0 obj
<</CropBox[0 0 595 842]/Annots[1348 0 R]/Parent 1760 0 R/Tabs/S/StructParents 8/Contents 1349 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1348 0 obj
<</Rect[498 296 538 309]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1347 0 R/XYZ 170 105 null]/Type/Annot>>
endobj
1349 0 obj
<</Length 4119/Filter/FlateDecode>>stream
+HW[s۶~ׯ# aNgl)9̤ɩT'D[le%g(_։'AowU~N+'UNٌ\LV7MFN>W2Ւ%:8QT$$R*IOaL/v6dp2:gdZfH9]Nd'g =Iha dr=p nهQCd + &1|x6/\ȥ881ؙ?%P4!RVxL'E*` ZRf2V-j Td&>q D̀{QMP28e*gol|9'}EGQwRV<D'6}t㷬gط'TyBnL͒Fq(YDi2%)UlY$]UI]3DG{)"HZ,ba$4Rp$Ðk{O$$t9#C|]3~++8M:75;. 2/-Cpk5[O3g)Uw=E$^Zz['.WMcɗW( mE."_Vp`kL^Cl72s ɾ-!P-˼
mb NsOZTk0\Q"+,ƔG^~#zeەr+
W,<%5+@`#0UkXt:/;^NSܕ%(jׯ +_V `iōgK+h*G
VeџBр]|VQ͋,#2+@NÈD֘ 5,Wsj*0'|e]nqM'Љ +y|2IղlHαVo<Cw\P3I}n帰,[ +)´S{Ü5S_]
R@r)ºoJ,eRu'8ozF0TG(.{؍OK[xh? (T +ޜΡ1ݭ\ޭp)xyl$Ljn͈^.9a<a?B oSPvhhV6?G̓~ E$~"= +#~6a6^y:ˍvT?mcҘ{4~*D@ %_6N՝t&a2Y鞵fap,vl$K3J(B0x0^]L7(gςɀ$ +I +kы1" JLMT .^%/* +%ovzn]`W:<ʌD _z<aq/Z.v7ꑛ|㟟)a?d`;/BFTd>vF4u&ՄP$f(A(S[݀(e n(~lv).4nʉ(Ɖ)Z=cGӸ](? +2o9JB'bՈ('$ip11w ,ӂRGÿ`?DG9DDtTlfjBir
уW]!&o(P]S !ؐ&ObCoŢfu F`!Z}I`vAO=|IAz!-YuBE^_7b8GZOl_ v$bR "YG5)G ق"Ih<O5`:
%82qd$.D&sf@v!KubD3kXT:=2;"9\dɇs1 +m,d6W_<JMR>;^m^x~vf]X|j7lCf)O1lVMnm'|yjo_j|:N_b^Zֹ3Z6̛دk\}r[|us[S'(8&W \[w>\V}ff_,wm-oHF^|aXRT +hԴlf'釚V}tQUec}JzqU[:[ɠ?.+..5{?TNdN%>v
n7 +endstream
endobj
1350 0 obj
<</CropBox[0 0 595 842]/Annots[1351 0 R]/Parent 1760 0 R/Tabs/S/StructParents 9/Contents 1352 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/TT3 9677 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1351 0 obj
<</Rect[221 435 260 448]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1350 0 R/XYZ 170 182 null]/Type/Annot>>
endobj
1352 0 obj
<</Length 3005/Filter/FlateDecode>>stream
+HWrF|WTľ"Y#t,x7D@͌~A +!
TWUfeUU}YUdAw|Eξ:,<++%qUD
0ߟ_^|6: +$?*=Lr$+}¸PDnCGA !yj6{<WdEEHFu-}}67n!t@9]
72wt6'I{r9tyvA 2So_Mg?ԮvOMvNl=|,OCT^~
\|"GFˬzR#wėx!qm,ሂ B@NKđ֮!WCgAEQuX,LnۼsΧ&&8tdK/ʟLHɄ"*B6 +GϏ(R`gAgmWmw9fmX(:YHu,I&+6cby5ϙKYUIMlGQC`yH(2YF 3R{,P?X3x1)X}\7L+YZX/ZqvWpu*Ж1]-. OBhU,℔_SUIO5wȞ.99&isָQW[Ϗ.f]%E:"^qX)qقjCqH*rr#+W[w0<ݏ݆r)JZ"0=ayC]/i78QI)w|7v<uU(f믔}<-Ao`Y%#E}Ҹ\KZ=zuVOvc}a]VXWP2\`id4~JL~K'Rv]g -ӯ.!p<,eZn\iӝreO3W$[_0-dv[EM$~͜+]'Пt.&劅=2_V_x-f<X48Jb26u3ϖ`ÖXLVq\rΛ>'O ͢v |Cz"OU^nzr{>dK2N* ڄ9:>[¥2jzv +WdmmZp}q +s&tӅsPO֨ळa+`{U/T/ٺ^thY´1U1u z!7
>155t ܇籏èuCt!d[jt~}[~&y +Lp.&}@̥[ +KlɴPҬ|m͐`_uw%QKgs/1 +endstream
endobj
1353 0 obj
<</CropBox[0 0 595 842]/Annots[1354 0 R 1558 0 R]/Parent 1761 0 R/Tabs/S/StructParents 10/Contents 1355 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/TT3 9677 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1354 0 obj
<</Rect[323 309 329 322]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1353 0 R/XYZ 177 81 null]/Type/Annot>>
endobj
1355 0 obj
<</Length 2578/Filter/FlateDecode>>stream
+HWko_"w `AIc~4HJRu},h6h.nBIܝ3gf\]Uysu]UqR6-v=o?Y\yƮnn?-!:p˱Y B+aM4qXd?㫇rrE -'[\';ﰀ/͢`o>>EgO%=ЋBMw>Sgoqg-Y0zC=Q +څq_mWL]^D&,5mͦߢ+W]n#YAkvȮg[Y
`O7S6X3/^sўF^plbZD6C0LOX<bh|]\<Op[;!Vdaa8fۖeNFcf˅37wۻɸ;
ʿ釖ǥn})(2GR<k|l&W7擿PJ}/]c:,
K4X+<IY(5n[k˫*B=*Y\(rcrn6/JJ`W4ںl +*_rX\j4~<.bjJP8,T*~T^AWHpjaia+k^mlpa"ı]=S)4xf15]#=*EԊU,%9lP++1:^7ZnA8®qoBZ:ɳL%`6增$<ot[6 ~䳆 f*0ҝ`+žP +5fh9hx!)UF_ +ߵ@P<n~AKgϲ7"U6QuR!zc#=ovha.=tPJ +
ˋ&:!3>%$qu6'F@d%G`kSpLQ*$^2h tY]``=Xvғ1R-lbxxΥṗ/
Ee{?O\
Osuga<|)qeMrG6GT$EXMW8ef./juċ +SZ1N29I_.l,Sa_$+D;p$ɋUIݗi=)OH}Rp͋)5yfn<==Yy,zW|r@LO)xmjZA@ K:Brkj@_Lʽ
*>KNٱ.]H xׄ1*f̞y=Js`z yzkZp!^lu]
"c!,R1euFԣf[zCE*ߠfJ*wnIzˢ%KmM/OHǿDT*-Vm[iSG5*ofRy[4aeuP/#'>]/KXg¯wb2vM_tNY:4Sl zeNz5by;UAuD.*
2eT1= Qp=w`*5~˫]W&niR;SQ}Nh7hJ>:KKҗe;_1MQZ9)}_%[Ljm[[Tԥrr(i*7;CMbhn*[Pĵ[YPU,.u綻sjR,'DBU¯B>7M?BI"Pi+h;Z\\g,x2<E27Hk +endstream
endobj
1356 0 obj
<</CropBox[0 0 595 842]/Annots[1357 0 R]/Parent 1761 0 R/Tabs/S/StructParents 12/Contents 1358 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1357 0 obj
<</Rect[404 393 410 406]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1356 0 R/XYZ 177 101 null]/Type/Annot>>
endobj
1358 0 obj
<</Length 1976/Filter/FlateDecode>>stream
+HWnF}W#0)vec1AIb:M5%&2[KRTbR#OU:Un̋>}Z_w]^Ֆ֙>ҷuzT5UuU͍=D+iʔs
nzsQђg~-xkW,HPVz,|/p/uc=,?W<ĞDVW+# +x$:jԪ\<y6o)N){Mu9_I?PءE ߆od~졬|.?ymqmY!?SoРĸyngqGli>;83ʉbZ?)o^m
U R #w)s}L4"Ƭ^M."s{Ogq1>fǗL8u#OiFA?QJd8 A`N@bxZ<ytW1Vp.DϱehB=O,%IIHVzWQyG}nvr@4O%1 ,ihԸA/`\ɵt7"FltESN`?VJSǦ;S?\Yް,v#?C]j%`?-闚 +k%j;@e S}"rHڵ]^mWj'wN\RĜ.W&?u)[XsUt:4Z ʅ۪+!?vxE'b}m;jz?ۮ*j|VmNa=j{0pT>vO=G*H0U^JXb@bXqP-pr8Q)ueD|Oy*uYmUU."mUqj,5҅Mv̾IHaSCGHp)vy"fOq03&=M>ѮN[`z;BbB'8~0ۆ;Lb
Dz2J؞T1v"o5h=< -
Zy'Cmጲ&OUc;rShO3i)>{ҙ|$WKj1ϩMBb8vPRsڔumHp/!^t*ZFk>!
rIP?y6ubƭD^v#1HOLtHh=PNLxP,/- M"QTL; +WDdEnM]g~~j9).,u;W.SF:mK&0q.ckyz0Dؑ-VF;Car?x050zYN[gy_jͶf8<Rxeii2WQ+Ous%=(Oة!4[&`>..{/H>c(V*(AP%{Wp"@UG<7\R"q4(:C&X ijpuՏ*PXжpU-J<l!zwEn +b/So`Pcb_nOxƘ]3rYh]ekEF´0B\5jʌB9-B +endstream
endobj
1359 0 obj
<</CropBox[0 0 595 842]/Parent 1761 0 R/Tabs/S/StructParents 13/Contents 1360 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R/Im1 1361 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1360 0 obj
<</Length 1745/Filter/FlateDecode>>stream
+HWMo8WQZT2o-.Rhv\6Ai[-"7~gHIVN6-R3of<NeerߦN\MkR$94 8b~Bs?c,o>\g0,&-J3AUd>Zɴ(p(|vO#XNp?g)1' i+":b\}P_fsف>S(*UCq#-eCs7v`~102wⓅ2jpI?zaD~Чb>xY^@Amu{뵛Ӌlerwc+AixCP +vmYAO3L
GL
: +qd +k +9ޙ6Xsk_#FlA]YPn7 [h˃ᆎEKxK(s<d$F|>?&&%JY9[1"Ɗh<慴0FTܸ-aYo>z]jXbu|1qhn/AzkVכ
og!@)QƱUj}8H!%Brr#gVs֕u4XsqsG)ƢPɍ +4r %(
uן==֏z(&2ABwXr 뺻j5w>X;E^vEYilQW+#Kd}tH8J}WX
]<Mؐ9F|rT$cuf-s2gajEE,H[bȸ@W@4w[gWF-]qe+˭%δҲE\"J{W+'xkۅT{me*Ý.Ӂ}n|g-|NoLRH#j5ʩ BGew-IH=&Xu)(+Jc^y!ʲg0oG~=# +endstream
endobj
1361 0 obj
<</Subtype/Image/Length 50536/Filter/DCTDecode/BitsPerComponent 8/ColorSpace 9708 0 R/Width 850/Height 850/Type/XObject>>stream
+ +$$''$$53335;;;;;;;;;;
%% ## ((%%((22022;;;;;;;;;; + + +U +9P.Sv۫ug#\'.BsHSf^2Qis +,HHN֗$`k@hԎJ?76pcA>ӑwÔiVGԬKMwylv/LgNmU` +$dZ2 +z +RIEJI$)IIJL2JY$BɡI2JXTIBSw1Q%%2.opg&L5Jtۈ0 D{JXyI"izH"(XNk7M\t$w>uyښt-l69l>kθd]%u/]Zq]X"7Ƃi'h +M)~*%I$M*iIELBpT +kH]2[%7rR&JRI$I*]2IE$R$HY$RIJL2*QLHLByL9L&ILJIB(Y-SbĴ)Rx0a!+[$cVIZ>|J:(a;t:*~Xrxцx; +BDqXX/!~֓(RP@x'įI +QpYՇU#q5xQu +˫n +SWG4 +%,LRB$쒖)$RIK&N%,S')"I$I$LiNRo=yz;"|3{F'w +*$!1TT HT Hʉ)!D(oxh'8/t{}kˌf8NTYN3 +;I! dک +HQ5Hҕ"£$$)IJLS$b$(QR2 IP!HEHHP!A$!!SwbSkkO?4B?OX%_A4F{5fa<I]Ŗeg߫ʠ>6Hyo=U%X<Ȓ^Bf +"B*jvV] ,afɆ8_0un߀M>kFMsK`%{'OoF]%Xw +h+U+
O,!HW+ +-V ) +$)!$0) - BtB(&)BbR'CD$0)BdTBPZR"hLB6@X
@%Z)pP,i-ЍǷݐF6N9{__:}-XCu +}{\|M@ ZzVV=i~IX́&8 +U5ZhStV4afgu
oK? +IRɔ$$&$CJ(EL!%8M )hR!4$Z)BhIRR)bM +P- BJbI1ILSBdĵCn((FBm&ڒbXȕ۷`901o,ȠvthD6aT +PSHLBLIRɔ2Jbt!e)Bt)hJNr5%,tȩdI$Q{";V(¼}Z [9m*© +Z,L4NZ`9l*gʝ:xX[ͅGP[x7C"$,}_BsGg +?Ykdw7?V,v8*ZuGDju\J#B`s]sY~ƣV.`̵Uv#($ޓ糡TuMˇRܹ~ՏOv6K\`jFGlQհoі8k?qM !)<MMCpO)&٧p)JJN)J +2P;hi'詊R%)2P;)!ILM)$I$R$HY2t)II%,I$HE +I$R$JXN90N^&~T4yVAemcF +T -Y, +;ڲX|`sAfCFmURfjs-xCp>GBc7溛0L + +ݹ&TSW&NJY7d$)$$I$$H9_\O^O}&RL8".C'HTEwt@ξ82(4@(#fIUK-q>EYu!*e:
#s;Ô\K :=i$&{E`^ yzQU8:;4}6sO<d]V3@>^>.?' X:%Y۠0Ds^w
|mwx i-G7,aꎡmvN|BSDֶls|#niB3)G>=d#PmA)-?D)6 k +H%bTI +)BВxJSOrx=%1&uQNS"N3[|\|^ +l?tvh"XcC'O$RmY=s!HΈvMl`qF)Q}`0
I& +;[K+LxZY
Hǰ*O +Y{ˏg_]<u ++ +oiGpgAɻdSugHA< +<KLCYCwtl~nW[Ձ\$wc@Vj}[oh^7HSUW +5[>1}icL +I$RI$IJI)0$'NYۉJJfYS)RN\
T +\ +Lx'S8M>(ZS;*EU[쬚jD~ +Jmh|xFLdGwq*ec1k\kۋӮqu< +˿ʎ;^@-ԥܧ*299B xU=CѲb Ƽ
uVmvuno}Q<>PӑTmx%XI2ޫ@IJYs5f5g%W+ՏM]U4ǻ@$b۟2ZXaj=yw d8WU$:exn<p?Md:B}/2M:z-7M<SҖ5ݓlsknjt$XuGՍMDw/(_1 +ӱcUmrKEYw_XzvЩWձh==-˗E쁕#?GM+q= +)^Sۘ\=ƪaI9<iJRJi IKr_+4`т`0漷b眯W2p?4 ]d:VU:_alnq2-kc@kG\?mo=]͓SI<M
z3Ĥ$NDMKa6f9.R +H%II +I$)I$%/!%SUZ, +L7wo%o#v)({yzwFΔ%$Gr9 +6fo#PaN%5M! w v^7I`UgXݵbtB&ӷ}(
'?\hO)vD2{yOʛl<p7?#5͒I y$F-:F7_Pѱ$hN-h,Sd}mlx夑GңGQe8 +`Z7(sIiSqCr+[<Z'C`Vs I%I."ՙu\17KVa~@vvq I:#6>wTp=z +{>?̓;=uoǰi?lU1rK1ݳ%7[u}5Z6涢`A +mlƷ@ +2sMu s'! +bu-:i$SZ[9fg͒?uCp:NPpŵ#YԿ>]*
[ $pŽ8<F95u +YMUGyNZb+=pz>6QLX| +
F<ZՆ2jcuL4Z<u9wNYKN\8#C%!."Gy{G*?Y
>o +mw%++Lɀ5 +stR +57`^pkly:1*q<*.X'U?faN3L%"U/R#o#ՖYI8ms#:<%WYml-K +?s@A.>K +
|C}ӳ@>CA +lwhc +I +~3*ȣާ^<]1T֖P_^ײַ'ZhW_ޛ4?ԷN4Af2:4o4ʞ7Pl˴ie½@ +=[tzxTGoߑ}d_wљE5464vn5
"F0LOL +2,qx2dRVf[ihiΪU"9s=:!«zNt:K6<-:4A&J I$R$D$!@+FN_ +hɿ(9_fǼ: +6I]uVګX)̋Mb\[UAp|dh-xo
+&y{xm }M%)LD$DdZ466٥`ski}k[(T9ξ֞Z~'-U&5.<u.>d BHX%_3 QV]c<ք#vUCHݒk??hk@kZ +c3iՔpO7s>`NH[O'׳彥u;KOmBy%T2Maq-0dFv=Voվw?WdϩO>>#jI΅
M&(N(:4H/YXr!Ckm9nc1svlNtaqǝ +RvGk8^l[tzusX74Kէ>;3m;
=B `8+/Cs#kIJVUǖёӝ_6UkGmQ˫7vf-y.3><K~E6i>N{EC]Qpt_\V%gDikӨp2!yN)wMxRѫ7_z?NëJDWKC@P6 ҄J%)AV +;5,Zl#.V;>;7m(G<(irgM> ++WI$RI% 6?1r{ +՟1UZ-O#BGT[1ǼCBQNF>o$t>`8X_gqj(=.xwq;α_DZ?A80AWz=V{4ٗS͗F|5le={< +%LȡE9 RɊ}Te$)2qG{gTh8<Sg
7Y&K +YO))LD@5dIy)2E$$I)F#BQï:jl{=r̂hԝ +Tn>#KZ@'c\@sx|L,.y8{F~S5lYrnfGE不}- +d|2kmָ}FϘAQ$_a؛KV͍@#*G̥ǻ7W{d-BHuAHּ֮n=d"Otz^#_X8wv}蟹(%l?>?D{}cNV[ەӎ}C`i$-&"$`wALFWmfX+w,xi$绡0fɟкkonoYr럥Q6<?"TuN,#.PҺrjvEG+W{D
4'ZMcma׀z51dS*+ +S/ +I$d;eQ=*{NwÈGDjRs֗8IT{_!>qg|yګ84W)|9sfjs\`Sk)}!(du K#5IK I)IIJL2JRdRr2GM7Ĩ1o.0g\>k>ǩ` +.рԵ<<X(ک?ts<|RZ^I+U6B(`YQD))*27F~c?5%bTZ-p<3<SbRQ%2ҚRIKd2J]2I$&)$cH#UͱŎk- ݫ*M_ݪ;
a0@] $ +E]k$LSLšY$4hˉѭdc"]Ñ_G|$=6< ++\'{z}!dTWY]76p+I-iO5:p4 +(EukrOu1.| cjmiap<A,4o +GڒJuNJR%/)&I$)JdRݷKx )%.5i R}+A&_Wû~H!yO*2RI+$I%)MniIN9$@~Zc,l[ͩڇ| Wʜ[r +aěqQgpoRTj+mM֜WT +-9ߛf5{^N?I<42aUbÚ1xu:/Jt@9#U%dc6/`sZuġIBBۮoCc.}3?TJda +]xn<A{7l)+cX !$|"IJI$RJI$"vwrSs0p23q#wii+}1n:K`Nce^\N>-~ٿH +c&.-BЮ´PHƢ +]$$<$$,ׂDh{x$a: +JdI%(NlX RNS +l/gGx!Z.l?dp N:JRI$:dYf
Mi[}.[Ĵ첌*'Ni|<5Gjz؛B@QJZn[x +sb%"Qv|UsMv4Ø&kt.5p?O\jgk +2 D"I +<!~!pχ}85-piH?Uc[=vf +l6].[©C1eUemhq.0<IRUnii5 dcƹ̢ӱ?kupХI}gC<{Hʣ:k!tu +tO( +siŸX>p-üT11D_Sl *nӮC+H߿Eۇ}Áe;/+Lgn0-7_Km6<ևA1L%JD
' \'L'L)4'I%,$RXaR^Ǐ( <˞Ө.GicQK$5ZAI$$drm$:Ӱ\A;]cڻ成 +tI$2t$R7^eCcmsÄ" +RHI(b5>!L#uOxYec):NwNw>[ϷDeL{K^k9H#6<0bmAbSSlـ} +ɂNSbYu;n!-3 .nW]uVjnʫhemkD +rV>$h@:~*x5ʝn`p,$2[f ~uWWq_ U{z&!Uя O~:*c$n)*~ Χ2X%cBIc8 ҄ħJR}1)t NI$6@GߑX$'@9* p6N=AdJdEk1ԍ|FMw$R3c +MJVV60RI*NH)I$IzUװ?ec={Kk{XN'a:Xu#t'I +I$)F)|pU xID4))O +u@e%!6;=|640~ȩQp^aT$RN$R'LI:dT3W +TRTI$$E% 2W/C:Nkt +$$>jgM̯fEa>$FG];}PϦ +U@!aIa)bx(!tҒI)S<=k1v }PJS%2>Ԙ*xMq\Ѻ</FC=^y>ǽ0W-*U,ƷZ~ϔכ7 eU +-_j`DG~\bԮI+*Ue){piWU8( TeK"Cuz/JfK[_}Ǵ-cnCO >ZW,%inq?7(H=UMkfb[~ee~7ixں5]l|yS3{2!ncoeuLV` +RII/F2u2Y[,cnc8y$T9ou.ռˬ7ik5~5ɐZK\sL{8$+T:dI2*^S J +dd)t'IL,~d4#Bܚ]NђEL+ɩe~?/U+zWś~rSa$82iy?p:d<SANgO\܌}~hYϬ{.?H}\״9Z>E2e0kX{t<9abN!4]N +){Ce +PLB$(B2B! +$$JOJBJ[B]յ=%JHTTGmN?w>o5\FEEƭ?5 +cK^,9Pc0vH9wCL{W7oa˶zϯ_r<%ּإ7sw)"vJT')o_rpmict +DD=>)RkJe$?;L\ho]!>N~n[vd[{q|~jdj|#]*#)$֪R'O>ɑ(f'Y%B$sǣe
sYE9~+f:w|oqudC\~,wNd)jK$-<;c+M>}?Dطt&fzm_[ۡ0 + Oв1>?j66♀{'[xsLa}q2ܖpI>> A:cScvC|8>P^Stڴ0쏁NOq=+c[?%/6c[V3O{l;Y>MG#cQ^6=xڛqKMu2Nbˏ* |\UA,Q )J(X92quK4-Ĩ:CGw +!H ITR&NI$NJ&e'I$|;
uEmuoC)4mB)%c?
y.ڷ;ŧ]J"I$'L2Hp2tu.d)I$JQ
p::qk +|rN;bd?ex8G܃+(aek{8JtƇx}&yB26'ܴ<I&Q~즌;RB8)ַ0zpAi C$Qޖ0= +
$Q%8JTLALLJiH + +Y;\9ZG?$~d&=={Xj,a4d!H$&SLBJ`Be(LB(c RLRS)hILTv0BhIL7}!>a8-w<(IAgN>-.?4wxOw (wyߩolgH,OKDӔSp,soÌt)J߫=7*]o?_`f}Nˮ]kur9wa/: +}8x}N̍>^ +H[LO* JuLUZv 9U50[W]M408Xɪ}gir +qSdOrY&JRNJ$$$RT"JPO<o<tx- +>hb,{˽1~Uw2 +GH$2FڹI)=c^\9Bd铤'L$'I$NI"JRI$I$$tIAJI$Rbt%1DµqgOG$i53 +p"D0BmD)Vc` Ngn.m~WM#j~ FƔ@/;.v3ţ]?ܱrznn)s<Ozy +WE8p¢XA +H +4֊g)nQU3ܔJRJ2jI&<SJҺ{eXva~>% HF$wz?;/fYȬiXwoVֱ +k4I'`h)I$ RdRI2J]1 $JiYұ^q#ѳάV}]KW͇-TSN}6㖻B>EYJ5.q|5Ug>q%fsk@zæ}\5.}TNeVX[@+?gTnvxMG +ƏN9"7!@_F^@ +u&8M )&!HIM$"d&!j ) oj8"ѽ̖rmngdTTUj<:dB$ +J]:d%E2tBN$d)dI%,I$$I)I$JRI$8^ߣ +څͭ;&u_ѴBe" b I!2&2$)BdPdJY2t%- IBJY$JY(NJc +3|F2JEp/Yqy_Pߣ\ "@B}L~h*>n7⒓ijiCϤ*Mʤq,'~<$p+@$JSOaJ֞&$TNqʉȢ*[ +m%-)(JR)I$)IKO*2Jd +Զ:-сQU~2ԩ}r#FM:GH<ԞJp4H%+ВtR'I-I%hI"JY$R'LI:dI$SIBtUnxI%1RL8M )( E'5X-P-I{%UZbNiEܪV㕼f<NaP-Z*ck)HE}D!PJ2B $IJRt$$tI$I:dI%)$IJI$)Hؗ{gn<IOI )Uz]>+=&R!2JbSBbCLB !I$$Tw(t̚X@s.JMआp$ +t(RM )JP%)(I$IIK$(IK$$PIKBbƑ(I%!-`%ŦmEl#soz#20:U=BJհ*c_2>~}|*UZ{&54=uOzq4 NM +&e$M3Y l*ō)Z)-Ѥ&4%j%梘RU:F+ut̊x<< +iSHD$Njj9 +%)!hD[M'Re^o%CuHUNh]ZP{' ,1yBbNtT!:L#$.BHN)II%.I$$I!dI%)$IJL$L}2O(4춗6BiYSl8 њdM\d2*X$ d8"*Fř`y +3mƴ3o:Z|0WR}(lO&s+.ӾqVZNn+,kA]gSm8NJc BtRЙI$%(LP$$'IK$'IKBPJY(N%1(Vbc +:I);=d}?ԫ2i+1~aml;B!h#]PlƳ h[#Q#Qg~k-}DqDZknxR䅛G.IR'[mֶr|H(@fUYޖٍ-\V]K"? +I$RNTLN$6Xd| +V:}ޖSg~| FRI1d$$Rɡ:I)$2H`J[~$YQDr +DX21E̛`GG7Ūؕ؎7ma#|%[o.kk̇7Vu6TU-'=:HS{!~-\3rujYg'k!gt73$4Ϥ$tl0!dm"Kwj߂X%O$v"H!0vC۪en +IBJbZX R1
Zԭ[eVIX(Nx' -1p-ERX;1[1A$IE-pKq<'τBXQCBtЛP$|S$$%:I$Ǵ]K,Ǻ"7{_IoZ vPl,I$I1IJL2JRdI +I$R +pP+ȭL9Ge&T!8D9Vp0ºI'A+% IK$(IKBI҄IIJI:dNIR'I%)$JPI$$`?YIu +Y2t)I$JXN$I$I$I:I)dIK$I)IUn$IJI$RI$I%)$IJI$RI$I%*I$IIK$I)hLZJDXPVaD+U4_ۊeZP=inn)FuVP{',0yBq<K1H +0B6O})tIJAIT'I -rշowi/$ IIJLRI$)t$2I)t'IKBbILB@)$NJY:I$$I)I$JRI$tR'I%,$RI:JY:I%- 'I$' &<RSw 'zY٣Fvs'=0Tϋ?!+`Gܣ)?VaJ$%$I)IIK$2JRE$)IIJL$I$I$RI$I$TI$$I)I$JRI$I$$I)I$JRI$I$$I)I$JRI$TI$LZJDXVLBJUP!Qi_%]KiP<6bZ]
JNXbไ(#e'ZԜE*{<8H([Ǎ6H4.Ih#Pu &/RRdNHbt)I%)$%.dRE$IJI)IBtR'R'I%,tRI$NNI)d% )hKT%, +t$xIJFfGԠM8| +!:Sӭߎyaehx~5W
)IJL2JRdR'LLI)I$JRI$I$$JJ]:iI%.I$$I)II%)$IJNI%P'I%- 'JRПT<$% %J\Oz-, + +$)IH^kVC{R9R([T[LbŔsZ%O܉v?e;noUis};;ՠA5JRdRLI2I)I$JRdRI%.d)I$JRI$JdR$$%2N$N2tNTCwZےs)̋4cKRPy +eJ +lh!ͶR<U8.-L}5ovkiU-<-]{t=-ЄJ6Ca$HR'LI$$I)I:I)I$JRI$tRI$铤L%.I,$IRUɓnf(? +-*Ul<.K]eGpxV*epn:e$>VU7S*便ms|{L!%.I$&NJRI&IKI)I$JRI% )I'I%)$IKI)tI%.IJH$I$IILn
!A:Ke2O+wFNQm`:K!ֻ2$RI9b*E1ILRN%)1N%1sZᨕ
o2?tIHŢai9 +`$I$,tВI:I)dIJI$Si$RI$I$$I)I$JRI$I$$I)I$JRI$I$$I)I$JRI$TI$$I)I$JRI$I$$I%t'IJI$R'L:I! +%5\>tAFCe*-wցe(ķV,}nA[VQ[ +Y edD#T$&j2z,Od[lǍv#Ƞi*=F֝,?ZIJI$RI$I$I)II%)$$I)tI$I$#c[''JxirOρGK[k2Nnu'<4j`+lE#1N$,S')RɓIJL$I$J$-%"9RkMAյݠJ1c?&ILI$$$IIOJuI$JRI$I$$I)I$JRI$I$$I)I$JRI$I$$I)I$JRI$I$$I%I$HRI$I$$I)t'I*L$I+$I!hLBI)D%4ReIBuh"%Vee* 1pAKf?f2u1ku9,wUA5 +J
6}LJdVUo
p5pG ]:I$$I)I$%)$IKI)II%)$I+:JdƗ84wXXr}~(i3v +&%Zo%Gpt
mV8-6fZ +v`8.6cԖE *Lʺ^EVhH)I$J]$IJI$)I$I]$njPS +3rtx-?a_$mR5p~ CCenKCe$&V}ATNTJ^T3n7Oa*`IV{1mb])uWBl5m`_Uw0?v* $REK&NHY$IK'I$)dI%)$IK$2JY$$RBtR'LI$ӒI%YI%)$IK'I$I%)$IJI$RI$I%)$IJI$RI$I%)$I*I$BI$I%)$IJI$RI$I%)$IJI$RI$I$)$IJN$dIJN$I$)2tRКILTR5TKRSI!:%XkFb?k:QBlf$-QqĴXߦ*GVн+IN܊1ͬ:},[c~q^m&]D$Qp"lJCFU{8AZ.c^!捠I]G%T}oa +6'I$PI)dI%,$R'I%,:I)dIJI$R'L $J}5$UI$RI$I%)$IJI$RI$I%)$IJI$RI$I%)$IJI$RI$I%)$I*I$RI$I%)$IJI$RI$I%)$IJI$RI$I%)$IJI$JI$I%)$IJM IKBhRI%0- +$@BVj:7QZXS%
KDHFC5-'T|Ƥ7V]JFMZaWM>Jm5 p ++APRu(.:֘Zu>HNA
"6HWRE9WtIJʟYA[h#%KFɤ +I$RI$I%)$IJI$RI$I%)$IJI$RI$I%)$IJI$RI$I%)$IJI$RI$'IJI$RI2J]$IJI$RI$I%)$IJI$JI$I$$I +M ILa1jI)bBJ@kP50+E5MJ;mأn%7eY-H5+U8V?nb_uacbxkYcONU<kւI +~NWIT$WI%? +
+endstream
endobj
1362 0 obj
<</CropBox[0 0 595 842]/Annots[1363 0 R]/Parent 1761 0 R/Tabs/S/StructParents 14/Contents 1364 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9677 0 R/TT2 9680 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1363 0 obj
<</Rect[446 309 485 322]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1362 0 R/XYZ 170 159 null]/Type/Annot>>
endobj
1364 0 obj
<</Length 16888/Filter/FlateDecode>>stream
+HWnH}W#nزg2k,hHj$˞\l6٬:utUqqQ:Zml""sXi[TX\^VwA,aI'H2R_߿Ze2[,ohr'n=6E(Ei%̕<z"Rd7<6}|*Nf#_:h#l}gg + +6;#,$t"yg!D=κMO{sWK/D%mb5@Y9%ySQoJR"YD5ZmOdJo#/x^"Ag%n7^_?xg[#dlDiו +c('#Rc b9n)qU~'Y\)I$H>5lQ4Ԃ3\>sJ綶վ.vX\[#'NdC@zf)?#iw"ig9OW/"L6H>]d|XŏA,Ub]W;JK]vvn˕}hi-z|Eud?O@fk鄠 +Xv`zIM[d +U
\E+Ų2nJAfݞm2JGP֢ؤh+X=6EFV9m3pcc
ݻl+sQxKԀ#FgtU;l +"ɷk1}+mol +S0.:$gqFR~se4v +NiU&yt#6yv'Kd<:0/<Ӝ + ҇'vڃXƁ ϕ~LH08=ۢ +&%#a(~60"<Il)#EDE'l\D{fOq
ތ_O P6GApEw 1id)20_ @i;w +0QzF lۨ0'x6Prik`((yvD +1!!ن=8>zs!!t#&Eр +kM`!_#v
.Mn
~]! + FuygUo@GAcb#54Y fT-;ģyf国'ڒdAVz]# 9UM'1!6syRYLxpɧY,ڲp +J~p0,=%cVZcu:cN`L,j&]\yWwS69,0+E仭e$AY^Hm+A"Ø[&Kӓ,(3H_;GdNXVttqչ]4zRշxlh|?Ɂp$c]KF8l2O2JFVͪ,~E:K F0Yz1SaIp +3qJz:ȏ <y'Ofr*4Ev]:^t&NIu! +ͧNQܔC%~n"=8lyKWƟduUcM\L&}S`LZ$OYͤ:pFñ6TMN&gꉬzo@C>bbԢ(/1ji;V'w\ +"zT3qJ@V-W{l GU#pQ
ҵ6X%3~ρJcG34Dz"L3#[^^ч+Fm*]AiB ru. HGࡱɪqn:ᧇ5ϟ#w#خ?HR5uЯ%\?T~71k8zr|Ed@}(f$0lۋ=('vgٱT0lU-"~e +Ίx@L'1ˢ[&J*% +I3+m(2$ݩ٪?J 'AחH;w*1|ü$c7mVѢx0џٹxMKsoaC5~ +j苅3ۤS]^⋈pȚr$I+]mBɺaP
J:1das^ڸPyw\WWIsK+xX/KH>O?elՕ +%Ejqx ̯6@@ܬژ/O}=][«U0i,6 +2W">Tlh/*-CaAZ/e_m@c?3ȮltJO)-oӯы.&<z" 2]-mVQcYPex
!TJǴRL8Z74a"2$zsɔ2C)N. +T\Ww^}+Z +d$!65ne#I+Woΐ?rY?NR̙<熭/2B|L9V4N)̦$r +H7&[& +hX=$NJlmQx~;;DSғ hE)2Om-gw&fl|{0iR0]Q:Zyyd^!jvm(ͳG-z~!~*,ý\m^%F
<*K6:7C`+XRݡ#3my
BE|J=MU*BPT&JLQOZp@gW
m:a`APY9wHسÑbn. BrC<U%9)o K*@$9V Lhs}>?~xy?e˲i~\tʳdύnFϸ rDoJIvޜnewAEK:hAH92CD[-A
PT3G \69{sWut87gn g2?̫'=P&*yd:Ӭ1^KՑ|]; +2e6'=5ۮ5]2={LBB:<jy+{W<t) p+/?ސ_#vVW-)NvC|c9+N!X<T/6A=Dމ +4JRqtjDٲMwp2¦bAPWݫX6Bf3CvrJeεxInNUr뼌[%TE40yam_0nٵ\t*b%K۰=Щ$hJaPV̤*jdSzsd-8etOFgѫjFUSN]u;vm>4R:t|YOh +=ZF4B@qqSc`bqP$cYVO'n8wa>i]$V;cf4nhkhFx'>|ˮ.9g(Ӆڈ눖8ixpiG꼑GnTԭ+FRntl +Y SDw%BdNS1FFy$q^=R#s)ezo7>Y166` +4tl2t@I8A#A潄ŅՇCIuJTz;I/T{g?b8: +,.&kU4#;}X-mbt^riU-|ǎ?mј O+j~1쌑Dl1'[bāJ(gңqs|R0| +_=!)ЇuR&cS]+?zv;Mo~~7c/}{\oG_;:rǿSݝay%!7ԉ#vZVpeؔ=2j엲\Bcm'MnӞ +6PL38<1**}k\[M 'T|HҳbnBա^dnǼRk1 Zâވf/V {q0vA뭝[zZ9'. یca +$]=3dѠ$A+H:_.lWҺ[܊Vpiny&n +sŠ S +/tf)}J{3 +C;dʑN|v6BasF!^CаS#ڤ:ȳ'u2НIA +>ջ|U!GPYKب<620ABowCҝ$q,.nS_Ҽ]7oxvg 9Uq3h?nScRCtLtQ 'u8e= >Π霑]#D4N2U=f,feKχ9m#|/=v;uފ=4,4zXͥ+kBdY߰o7 Rg4|7, T^YWPc6w~WNt$zKfbom}I#VͲu_n.c"b5`AͧNqH&*|Djr/< +;3KoLE~qҕIfg8#Blh¤Ȫמ3x@4<(pCs[UvB|uv*vXlLԗLCj)L;K[T1xZqrx-|
>j%.<Cfk4+fb\;'u*{(˚;
CxHM5YA,+yuaxl:AVͮOo"K@ޖp}yR ؠ1̘K9z +2hWBqVaHtwr>>>9N52jMJ3IڌյIrbۡXRI+b
}XE&Q+$Z0* V-," Q!ԂR]\NzƜb{sN#&P9k+(~"Pk
ˌ]+>@#QhZ= +)$'6O6gim\ͥݱi:5^I_,$3hqk!mzv¸nO}NV?h}afظ +&op)'&**Ċ쪜&d{q 4_0>þ<RjuWU:Uq{9/st/1L=QBzL2QՇxϔ>C(
K$H#-̗nAmiNp$C
+`"NV=g^4]1 +IMi|N_VG|<8еEKQ3Le1ud=Cdxq)xWw}+XP +ܿ:|3SNEץ5ʧHDV8U2bvRM_ZKEsm|pfZJuR5߾=(F3e\OXD\%+<<"
N'-Lzvt:wۼ$#Y3#P`ȱ +ğcE +TD`F嫯L<OUgr=Nf:/ظąOݣq]P TOwaK( +,_}a:)MƩj'_G} +qVӓgЩS1d%iMC,f<:'9ֆ68*yJ ANs%/g`JyΰaƓTPe#d.oUR)
7m+H;|B*Ň_E)8} +_{0U,z}PZmbw<,Mp+
ؐh3Q
*`&N.~؞Y\|Z|EW#Z5W{u\A 57{1Uc}kmPq4ŒijâzaGϼ]}IBzs>?"җN2S1ȵ>WM8. ,y+ٓ^B\uQ~qw4&Ƹp3NHP{Dqq":A_;\kUDq?I ֟ +DM{XQuI?%HVsP&4uߘ73;ۭ^4X]QE#=B s${]p̳G/zCT.{"^%P
.*[gthp +c
cnq0vڊ/߫ilG_?dx/,ÿ4|qo?'tǞq]A.#nJ!ɸvޜa%q`Zz$Ʋ TT
ˋ,b+{`kw#\
u87kg9-Ny6(]gJkjDpY<?
OԏF.uc>_A^&{i8GBQFsbN ++Nو!ҒeXCjsh`y%/8&4Z|g²XAՉkei~O9Ho'Q3-[]|| + nqi2><Jũ1o,pvpQP7;ݕ~D +Hn*b7"O` +xG9eUi.e,xa%JT^I9UuLäKeVQ&ifAu$N +lXvYP(>PFqo!nC5=MMRcQi$<q=(<c("ì&-Y 2V؎5츾*ma7Z c&֏b\Mpl˨@LoxIϞy϶.z
9@$5ĂEnPg3N_=W1(1Ô)U "Vv*wCPa&%+OyCP.
'n^(g
[ fTA
'àGѓ
^SN2IWN/m$φ oԕ($OYR1_F}Zj<$G*#l\5Qׄ{S{вIQ{ľ@e#E~5l
c-Ȱĕ
Y'0ųjToO˦рGbH2@$ICBx&)c(SVq#* +U=z +`#{gݝA^Dp _~Rh<@WQJUrFLPOLykI:xN[%f!X2'?bQ`gL0GVةG̑t#yJ:/.5dq}\@]-R.5v<eh$ʱUjkdi<+q'/v9\ng1?+/ .oKkuu*ᕵ#/BGY*"QFJ +vB&Xbaj̝>WZ@JyYTH.1v3P?"@%_jشBlP?AR hKPU<*DFT#|bdhΏ)<Մo:^]5fb5MT
nuW>[ ZA{$~Yj}|08|$2zo9UΑOPy8g\r;@Aʇp.j }Qqǀ0LjrZV|ȓ"{ZJ\PixL&I{Vr}HG)XD~)à0aa9ip/M fm>9ӘOH|w&d3&y"OM;7-T=~e``81WbI }wPD$hrO}M1*f&pSfً5og?zݷ/_sr Y^Êu.f|oD,Ʉ]vբߘʾ;-Ί_߬ޮaj0:x/`8zw= ]@ +]F.l<i74tw
lqqy}- w9VL+N5na~>ikxrD]{ 1ROpe5hWuۀ_an"nn^,|ҕ69EF#5W-HO!WsG'.0$.V]\Y/`.^o+tÿWq}a!#|q:ش:hHop!c^O6o{}0捰X6u0_wo!̂kЂƬfu8.7+|Ǘ߿Z|iKs| +8ۯp@n4FnNnj[o +endstream
endobj
1365 0 obj
<</CropBox[0 0 595 842]/Parent 1761 0 R/Tabs/S/StructParents 15/Contents 1366 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1366 0 obj
<</Length 1147/Filter/FlateDecode>>stream
+H|Un8+H#[``0Ɂi[Jr&ech5i{u_Nn^Ť2/8/ +&Z7צtjEVB@^&aTB0eXpoiMfnIUqP<Cn$(xy귗E"CSb*
:A[y?tcϰqU
K!" AX*YAT)Bf"4껃2k0GƋS8YҊC"V~3(SZhQsqup=pgW51jd.YyY\_Pƒ}^G_ a[OXBAVX(qsj"NUqZ$"ɋ6Y +u?cUo6Od'_j+{0{_(0=)ʗ֯.a.N>"RVx_m"{o5n(?bb6Y(_tIK}e`G%Z6JVPL + ;oeop$L":UDRwh'TԬ^{֎X,jag߸"=#pED'`~UC٩ơ"rIEe+k1]X/~p:L;4>%-tZEOIZ#B! +5LX +vl
M^vW+#rrB'4P4+ޣ>6znn&6x%RT)HF'[N2ciX}xG0.,ؑh
3{Q^)t
sa+NU
hvKg;_u<ۘ}ۅO +endstream
endobj
1367 0 obj
<</CropBox[0 0 595 842]/Annots[1368 0 R]/Parent 1761 0 R/Tabs/S/StructParents 16/Contents 1369 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1368 0 obj
<</Rect[446 407 485 420]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1367 0 R/XYZ 170 163 null]/Type/Annot>>
endobj
1369 0 obj
<</Length 21361/Filter/FlateDecode>>stream
+HWKs8WHM
)HUSSۙ&3ٵN@TD&7~aJM~|yӏ;ڍ6oƱwfc-6/M[MEqSL)Qzi/r+3kS>sRZ/.b\^Kbص?їanPb_)IMX2fN҈*UבPCb +3*t!,."Njz!xp +lg)M);RYu[v&ަ֩K>\D\TOЯftq_cqd(I=T!~DekP:
JE}jUcɖ*B)cb* +zh`o>I8Xy(ƟAԇ^6yF~@
#lI5!3j$.%Jz|ogabE_h&UQwqA68]6֧OM
"T&vdzm]b8> +Zn.ђeV칢am$|N_q#iĤf.!X8e1}y&I6+ czQ|x?[X]&b\SP~[+6ViFBOZh?]UU<Wo +N [bF>?.az'&',(nΝQۊvi?5l9<Rf,yq11;e L5wfC7x{\"B^(z +qAu5˱g:kfw/G-5:z=q`ghNhc͎>y#D?x~f' dtО**)Є<`RP#U2s3pGQ=6;b;?7'&lҕ:^ /wMD|;x+-3/4LA>28%V0{=K`yop=x 7/.Ք3Mzn3?.Opˬ0eF{!]<sp*ml025d྆2KqkK;W(hq$Œf#RtfPF!CIp%a3τ-jHd$*p)PAsp»ҡVR8:ʰ&tK晥MX@;N% )^/_l\?_ +SdP캡|x1!)Оi|H%.$drPprXԁVR+Ԧ@Ӗ4YЀF
.t +PÂ\/\{J'KJȇ~0m)
2Bc<U=i?K~;#aXg C SxD3%ERƸ}8PSRbPΈ˞>SH66V!@X(F1݈TTVrZpM
JJuX +:%כ0ϱr4y{ٗhQU%Y9|[!$R8iِUpc,K:^PL8\Rl@Js#<,|dV62d\1#| eCSjLˈb;n'> ++e@BtXK aAO@LjycR +.>(1_7$D ._42Paa5lɒ٨C"Sj!*~`N"[W$3)h2jAk9HV=_,"@iC<0bW-o˴IGt♎?:qp"P}cыDź9(JZ-AUK@ʹ9&q^/q:1A +Lch~2 "< +C +eW0;楡܆~>(>M}}[gqga{ SG) +7(Y<YDŽDk!Q +XpHL?q{oblyޠװ==\Jò!RzˡD$A-|gYoى" +禭8{ˏ/ԩjz/J:zivx[ׇ bi*{t?$ȢPxCYU2xA>?HA30֤SWtU7#C{'A3>:͢wrvrw>(kf,ktT@At<!CzO_w3mYDWlR-ɐ1@V(R#4 +EA?aY<a +R}T'}lT'<NDWӽx=*k
rNNVs:l[BAuvfmiFcD-7'، +Vf
rF5,`bD+Ɖ~_㺯/v(@AZ-Z1?ӅKOWuq9y]SZMn)HZy"IBd2N:bCа\jI @X?W6J~Yqop
%3ҭl|B}) 5CRӢ֚3
iZl6_᭩k3έYg7D?>P=74Aaʹj?J>[$aA-ǡ%=Lta2ܸDp*P.lyHd: Uݲ]K7A }00Ď] +NEBgtrg=_SvUH?A@{Xl6mיp^v[d$eT=Wxp'RaE\oy!:BAB:R:XN.p Wc:>5i]zӁS
.t%Z聋0b4լ1 v{_=TG+m#G>c1֒t:u351$FN)6p}aShinYL ̇PUqݾK-X3f5䞘*aF06 &3μ3p3sF*R#H[;B]Yd +<ZE/;fjG-:,E'^A% jHLE(1'ꭐ1eqPoƦ2Xpmξou1d +8b9pk{ @Vtc{aPqUJ鷯rsC)ϻvJT}ӧ:T5,xFIHefj켇m%r"1jxR@A<rӢzRO+@{Ljό-V0ud@mxil =3hfd +IVONK+a rϣToC{x l줈tOu&qy#ֶbLVO_rD}sRQ$R#@=G(^*IKFaTm
KŞ|.ln^hi]>IlSw +RwCRf1wS(eB1T#LKZQ;?W]o%}GiwH)k)H+%߀d#BS=]/ԝ8uά_7AVƬލM]nU$U2a*K +0MԅkOFa~z։&X;`,8cHHR`qPP85@Qa20#{yj@=PXBN1? +dYlm,3zC1@L-4.wJ
d:p"`eҔaq TjOTϱ1Pخ +(o<rC!2ofpJ>3AIH +*.q<j#27O-)~5SِQN476;ԁo=lƉhD=ʥPecTe9Hc
j\3jÑ01:d1wqnn-J ayKl|VV4 ]Dem1"VDӌ1U}VR)1F4[*zwa +GWE c A.Č[&lCYu +ĂE
'F٭kmq
6d 9wyrr/M7kb2"i6Jqʴ蛊 >"j騊z8B[Dl
r;RQie+%M(ʈ>^ +U[m 3a5# +.'ʀdvaȤÙk"j`Vf6+yq|yU25ԓA@<[1qrZS;,Afٰwq.iKljIEr)U!sȕy2dd.!'F8":>B+I4f{ /Ǔ1MbXmEI݈C'hV
V);"!o06*X()7e20#Jڑä + Ӊ6ZT6iWWdsX~uXavR@%61uIJDpeǨn"|qw7́''tH;搉J*ddL3[/6V +%^k&:oIaJVbR11JyY*..B$mZ`z +㫈' +YF`A0ap; U-N/.0'6W/ +SuHQV?8oYqJVIВHZE%f7HYAڔGz3 +3Q61 +APk"9U].f?$)e͏WYBknڨvOjRGӘPSiRqVfY,504b4`#qVByQϸ,Z\ZL̕B!׆ABGbS?u\zO_g/͑qOYs
eGJm9Hnبw]\]}uû|ӯÏ߭7k/oB<{_0͜LNOI`uXrQr
L5l\F2Jȧ(cYs4ZX"mUؙ]d|jܧε#흈OC5|84:4ḻ~D8۸\ "xg8st+öQh\YvX1Com#~l$T{N
H!'a2
G(1:q':RgC!<97cǷ_qI̴;oX&ǘ\ +Ѳ>[x{IV44F,:<c1Op]=擻uvY$i˂]:|<[KA'x':-%lzI +\X.cL +ܒt<`=t +d4hz\uDLT)/[R"T:VFh3.Ȑtp>Qn +@n2)ڬtnd9WC"ZH! 1^D7tɐ?XAPJĬ&iE̛ٚroFwZf HP)B#E.3mnnfd#US`BIy +EiNl*éRbܜNR +/;<\7pCaސ34>g1*/2 + +\?0FߟʫOk 5ڟ4-5֑i-.,¡0bѐLܥ}dm^noq~ev:ܿ1406K5?% +n3{xrR7]%`(D/ztˀkM`a$WQ%uu +:]T_JhZoH +Jӓ/N\:*I +ajMHT%s9m9<mǾwMM@<͎Zytj;7>Z1UWھ[͔Iyte9t1ތݑp~94Z̒cX33kTf8~CA` @HΗm_PYѪ$(=UjqF +9`M!R^S1Zl~4Rz5hfqku1h) =ViqdѾƒh9KweX%g(C,j6ԓrg_<<`J٩&NWC-IeȊb՞ljjVm55QKN="3fӎyYMvesi
v<x]hs[e +ӻm +wr>c؇AxNX07AAR3#.Km:-a#6F?B+SSRjj@U{1MC$ sVgӻ(/}k2Sg)cQ)1Kk]cE#Y~IH7yǰo3 x/c9oe9w_ԺFe@=w5&,ዷȽsZHSak!qݰ%&y`{Qi
Yۙl~1,=sLz_n<NDB Zh8>1ʉYr82D`U)e@
,B8v7D3ηw3d]KbT-6r S_zcCǂ0|HoƐT>-:\XZ-E`ôot BY'D?Jy?96St]ڰ?֕f;ÿ@zRYNJ>|1!`x&phY
8tn>6wnIXRkb'iJF#s.OxZ}E-\4<HB!~ʈȴϽ
l yifs~Uq~I-e,hmJaRl90&ON"[b%~iAǠ-(kbF VOQ/4(kc]ѡI/+|BZ +ΦE(I1Z&~.uϽlNisT.ζ=~jO3RcDXh]8ú=0UK~/o~W_{=@ы)]G{*xq1oZрqӇ_o?=˧/<wi"!^F-eǿ>>w@|D8'n55!Q؆Yz)Z5N,&6OGWƀAME18 +@;t%7OY,,ENrt鮭Nk>?skMt2grְ!Wg},G!;6] =I(=
,@!<r_
XB盿*rxW pcYC564n;mEyPC/,G)<^Gh!Ks3}5K='L`r?N>CͣA.ȉ3P +
D>]"#TtYYMRcH5Ab=~2i`-i;ؒ+&lQvAy
NMAs9q֓B_jC:x&Е=zS*PZUZy3SOȏD +>~MwRӧ0\8MDZ)L8ګb9ve_U#m2X܃#MV.SM|k9*B\VFпNjW~=x^ěcD q6T^3Ùs"KU;avFS`8ČZiJ̺CgHkjo
s؍wb_ic:=Z%Ie"zTJIGpO\k2wm^9)+VgS4gхosu,aVA!S{n(-:LAQ|oQl}['ߩѩ!/Zμ%O݅t>48q!ohIpLxb@O:c}'s%RYT ^EXrrXϬ5']xt^od<4/OkWv; +u`js7l3VQYBAS_qQ8SPIwȪ
(3 +\u9F5|Fe +a?! MȄh^U&jt y +66XS[{lJENC&HAQ +&r*B6"Z3GWWYw=IqrmS^_RX}'¯̞+u@1Mֱ+]+tZa6Ȼ(*K +_s~+M %5k +")ʗ~yX{=Z!7q\QCݧɾxkioC 3~>u>v5}n4D;EYh<}Fv#6s;R6}E۞ĔGajȂW=o!5M-}9;+RcSꄛ?[ypljp#7PN.U3@I7Wd̄mQ
߈௶(_=hM):;fMNu+|e,!;|-\az
S8* +_<gj +dk/jVo <#5(-TQmA8ńVvBL(=}]Fը?u: +,[nD!=mGz4FP
yWO,pӪ!X;^i(O\;6= +u +"07a׀~|DK"ٹ⚶^6Lc;&;pۜx>W:.1SLۛc#mߟL[Ô MټshmsN9,![0o jN/ +b#J^r083A8٩~ݠvJ(JqJ y0pU_r%zVuNqڋ3`(]S]_?(0h[pqF`ZL ]O&N2g/:xi@پqӹZSos|jh"$J5;Vűb +DKwOOWt7="sM7x<.,=ٺxqsp" .Uĉ$shd"hF4"EGi6?fQmoA^Z°θ
r'T4h-kD͞4p}%櫥,lBizfWms=$wWLXQ8;a+#մc +r{qkONdzvm55͗9qgD؍N̘
&e*s6;SH`jcׅF= +2cUG/2S +endstream
endobj
1370 0 obj
<</CropBox[0 0 595 842]/Annots[1371 0 R]/Parent 1761 0 R/Tabs/S/StructParents 17/Contents 1372 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1371 0 obj
<</Rect[446 590 488 603]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1370 0 R/XYZ 170 339 null]/Type/Annot>>
endobj
1372 0 obj
<</Length 29337/Filter/FlateDecode>>stream
+HWnG}W#i=@8U@S#E*$u랑5 tqzN:3}8mnWiߨr>Ηz5V~uZcT|k;nStmګ?xqPdj}TUn2'tw̗KZNn
rڷɫ6Y~2UI*ht#Đz@xFqU}On'oKt0SvI- +WS˯lٷW]00Uߐi8SwʼM<Mrxnt-Z&qS\+vHQkSކۍqGҝ>:|[Wo3,NlP n8_9Z +\ԟԧmsyfhß~P?Wy6j)0b|t{.!-<aUY.
SE!rV(]k3aFBALw!լ#ܫoz;#j?xo>=[;_BzJ<+ט&r2y^mUi@:f~w)Ņ8˔Ul;{uZn=mvwj-u?s]4au^`;WO@N{:pkUx8H7&B +npmc6eZo.
"|9\tG;a\}z}ViV8F9i+{k=] ww0BnFu%{!70iZ1"07@s(hK}p6^\ +TSG6&"{J(fL@"+:)8_h;#Hhr&|3 &ѳcǙKc3p%^ 7Yegt#;ME
$r~%) +v$ܥ!9PVhR5ԝU +=πN\E3Uch, 9XbֶEL/ V'l +a27d{._VKvz%2N>|!`JAKf':4 +|cHKlYrcֈ֞xȐ,&4ҺLN1u5Nx*$вI<7JG!t}F- O7WtǶ^H2/Y$=bt3Ekf.j'ź YE6co +E[SB.'E5OX&g}z1!7Xv1,OK;K<꜡eBw\K^n7gR2ΥIh]yvqsږۛ+ͧ!-ysbBD}8V'2|3@}ُC%+B>?bcÅ4i:CRW:_٭Aasu_!-
W#r!{vBR_«-uWN%^O좪 }FhTl91'XBF8hjޙSoq<ADƢmw-U;J#e?RJjԇ%..rsԨM<|v2CC>b(7=Di<U]hY-]..XQh_3i +۵L`T'Cץr4!vމ'|s<w=9Ř-)o25ᜏ }NO]Au +}3݈/Fr,ϠSST/xkG{QQkFRV +hZrm,m*r𐲂Z_S+sZxS9V7ZohN]<}`dZd8̆J\;jr@$f(&m,
|fw*5Tc[0;nmdCBhX R8%F` 2THc'[
<fp#%>hAR2Z0V%̏T|z1Q|_I +ч$ #F-nY˯:jA/ԫ8Ji1&8õN/,GP +Y\km+28G=gM
}4/
u`~=$ܲ0^"92GL^y.P~ +&L7b߰zy<r
d=I ,7jRTCgFA쳣iN_,0V,-sMM!q[ƉpHTE)b t$}bg%̙],;ԧGf$;)i^|{&:6p\S,ȼ6s-UCd?aYQwغ"PDlaT +Cpedox~&.d +y/F߰#E~c{O[DNM@.A0is?ጇgznbd{gE}cvu +p{raN3A!#~3)`FpQ)=\h
ioH:!Qں,!!<Qd~F0u +a/w'\#<B;M8:T67LzgܞDPJ.ꕛCRvilOtp*FJF=UǠ%xWlXg$0̪M3Zz
SMKDpFBNR2f3H'R;bqƛ${+uge/Y51"7zꢡ*p?jC~0-M-$MZA1$iΖTѷARo[!Ӡ)j˓*-ءqhrzIQeM}7v +ղ̝‿ou.%ۘ&):֥M>w)iZHf*h r T?>~OrRqOQc +w]]2w~U{qr03E!hyqk!8jN~ܼ=PGT4Pu┩0~N܊@JLpkiC/_ꨭkwFΌOV6n +[
䫷rE ǺSfpCeuvDz^1Qۤ2 +wj '=Wiz>6b뻙3oɔN`F>8L%rXoMRuަEW +̸[
%Kfz0BH_Wqfo?'1"V>@G,5`#|V2@E1bў㋤*{-Y*mjֽf9m
fDEn/ru,(^2laقӕ𬬲L[ */m%}dFXꙮ+3|)d`/UT2>w#bsO-m<n +lLj +*9L$P6vSu-MQQw?v=H;o0ؼ̰"CN;]e}[-*rouf41urc%"~*ח%aؙṃox-|obt+"[;CLYvmpأQ9e:jM"X
n'LqH30$ܸ5Uml7m9*f.ι<{Sg
+9\\Ψr3wBǍF1k8wLFC}a t&MDlȶŬnE#VKVZѵ"7dŜf15jK}0Lgَj5iMK0ۮem\b|.2rDaj
]"<kA>vdP*WR(ϘQ,k$ENsѼf*B`B`Nw),Q[a>84dq)=rK%*.[%sɽ*7)sU6BvT28X,-aLNpZj*d +,tG̴֒%PpwwA;5їI%\בVMB +g5g6JyQ +A/<K{~O6N,862 +Sв2A1q<i9&_)hcw׃DSâK +fa^;zkMi6efDCFirA\%p+f/.=\gnK &RịcךjZt-՝f]u|0AhK"EK6ĬA,}0!ؤfܬCCUu'ֻ;0%9qc'rwRUKNP:kvtite_($rWј _Y,}_TTہ WOAiS$v$D;yOu㊮E]ft8$:kIY[ƣP+t4ھ=u=Uغ|jIr1I +\B$52 9 +߅S +eQLJr裾Wf[2?+=z1D<W*cGoT͏~$Cx<-݀qT3ze +8cR6H<*\FzWӟ +PؘD
53 RץL\~:Ls~NZv8_1]Ӭt 2h}2|hMKeC̬GOrg8ٹ])ًI$9WkgRN><#li"4UD'{֝/5@\?7ٝ_gPN˻ ŕp{Y"^3YoE֜pIy
?d|T=R]ͭ|:OC \τ^uHK9#Ib8WQR:ё~N5]50WXRRм
o.ڥ[Ip9z):M(%a4K-:Dpķ)1r1pty H%/x XWFTLy侾$6#s<qK<Q%Fc +eِ1~J=.,nk=3gijI"f^ +#uF<R{
HU^8
^S4v(Rr{e09S_˗d}}8̔i dlo9W]^o`rdӊ7.-}xf+]9I4\oz櫇7o⋷7/Q$w;k\bC+EO~{??m_-?~_j"@M@5؊ 0v6朷9?2<0iC-?XA }<X$'dz۔F{hUL_?7mhRwVxNCڈ`?78%.bZ̑ѣ0(<H!Ï+DC뚢Ŀ[B dYR.a+/VUn*K&fF +Ԓ'2)j@80":h0nAS;J%FJ&bb
%ѣ〔{Ĺ度)Oi~yA)Ju؞-%C]B@7YFWa +T3; +C{ʔEFwCl5uQ!aLLE8ti'J?3$:T,,2&D?XNjAgz앟+Be^ќkc +GyJq5KJ03D[䲎gwŹh/ezk9Y*x;kG]k7 +$(.IKy6~)2ڭBYc +UK0$6`{elͪP2wIuՐfF(:Wj U|
,LU)x<0HFÖ5W*pX +5cd@C]pY@kgy"T8d
4'KWe0sprN
$`% '2d}+Lʢ4:b>L^UIP9C(J[J4̨H$=QPhற`ϴxlbB3Ya=eˎc
&t0 [xj U>5Zyە\sLT1[)mxѴ5\M
[o
Bqgnh0D' +SqI&ޠ5lYUH*<yǢ¥4Ws>'|rյn)a5kɃWomPaUi<pon$;?^<G+!y +ԼGMN5gߺ]z5A,QG,R#2GWʍr_vh0?+b,Mlvz1DoshV}N4sK^u~Z13Mnp+,8#L-Np*~0Mm]U*mZY2m^;te{'1C8Tg2 +ب%F|\,vp^/eu+W.~bk!Sź"3"Zjr4,hFkxD̂:r[jՖEKi,[7Tښγ-%ƽ!ބY@lZؗ0ZFggF9I9 +.Cj`Sl┺ +Z."/aÕ)j4ḁ%:-+ԛ>(-DS!e)Rz,TPxhҒS[{\M +ڸ -D,Dㆲr*Q.쨉SPj[@זAt0|~;ة}GY@~qջ͛?,/o߾{ߝNāOQ֜5qCϩSr!-..߮;}\||=}ϟ>o-.s[dsG.4!iSqXoYH> +^qgD>qXD:حu(|kMȺ7S()JbIy(y(sC%giY 055Υ!,3!;m.l땥 +Ҷ}( +2^
>pj; +Sku:B
Tls)wzU@u-,cpܬ<xl +IuUTɼE?DY%h<])f@6(eu|(ursnJ2̧]H43cP*1gv1"?G@t pMR%O|N\} J1>&)@W{}/6$*#$CM>xꪢFSȣS?ZNB`mKz0j+I2mi8|:6m/u䌇}̄u]荲Qq(>HYGTtKO*?CwL!0̈&NU` +G +gt>j}IDEv
qe7}apcn%:E-N44qVRwm T¨վ !
i@Rz +siDGSWA?mc4m&dB((K20BiWf57^Y* +2MtV-ʈ})&:/xi
MްZxD[p9K(_;@p(o:o)oΎlށe H~?{qYƢ.J0<7\SFe5jCr0J +HJӭEw"C`s.DFTu`fy̖=A Hg3 /@e6cU!+nwA7e,b.7dR!;hѻL/9hXUB +\*NK +<~Azv(^YC#8KWz\5v^V1r:'{ t7YưWrɏo3FaW0H]0 +Mչ: +!EHܔIgBܬVu(.ÎI]'5ms9E>Y( Mϝ(+X>N^l.)ED]l!ƥ7Ԉl97y)Ak&&KWC0uFȱ(.3FD'ڏu +TvjߎxNŰd>f\?q5Z7K'Ҳ!y$oqP53^Ya2aͫ3h~oLs$8Mv1TY
{7^ +/+dFU\/C {ޮ5-3\Z:)LҳvL +3g"0-_'!zjl{yKzP~׆Mi2 ~.(6k8?e gn +7W`-2'=(3^Q&>f6qrUj}eaj*$? e[l&۾z\ /&,Gr*{Fn:rtuqyK۷wu?BqGzNqWB [\\N]zΧǛ_?t?ą§?}n$scro)fiOF*,=~$Va+ջqe/^m[a][+kWKiTJ]H8Dmd{r|_-W2">_~ppg[&o뜳(]^z)Un؈i\?CiH_(dJx"oǦG7v|,Pw?|JuPkjˑ؆aWd~-R;~8DQQȱiV_~?nzI?R%U +Z\ uljҭнb.:ӠQq*5ؓf\vA#8Z&k]&Sk6֞6)L/Tq)gϧ>8lIv۳])?.DI;/V?ȴe"2UQ
#H+I59B˗.ȱ}Apm&r9BD'om9IOd6l}OH<Y;D9mt_e;#P%{a +nuFtk
7°oN.#\[vϠd4I6H vꋐA죜OΧaΩ!iEs_U¡pecah`=&3ב<:!@+q
pF/Õe6731x"KZ&H3,#Ql(]ot8˴~l8 +T]YA +.00WjH.;
6j2.oow0%YY +@pbyAꙄOAkC7-]g{66GDԎ^DPp:VXf9+^.=2ID V.tgPaغGcgAu,H}y@#>O|~\Gkknhuҽ%r_-c{"9ikm_C'̭V<TTV +į,of|gz[>216h+f@^n ğCbaGf!=$Wv\53ȩޙ"OD[ʔ/G"M@eߣP`Uy+̀,/$lx2(D*X&N0WteQګ;ڸei,!}R3TP|T8*!7
7wR}A5BY0h!Eh! Cf(7-Di,,UShY܁-\).<љ|h2۵L`PwD)ԅ5n!Nw8oIOxo19S-5YHd8Ç>[݉%тĜ7vbV|K:%t%qtI+I}J?)}RVJ@w{RFK)`=ɉ'H-ZJ +qnvP U0٩)G G!J)<̤Sg@2WTƍțz],Kcyq9SAY(K`X8@r]ѽHK}kEӟ-獳f[l-yYLj36 +AA*")<c֮5}|]xnΏ,0RKjIcr~<U}$+LnFpuO|!\Vmz<o^n KqHNӾ֦b7kۏjrn|k%m/m@qCf"@r=7-rq1:h"O[qJMY{]3݈&d|=ǘrIgJRST!Y|;Vo6kG{aQQkF??#A% +aZrX +|DIWK +2GGv;vTD-7+pCO.1%YͳEs;̊J<K4 }筡|6OLw1Uչl0wX}'H=Xj
Qh7
_0ouk"
8v;$=ԶLkCN`SK*>(vH/hч$#pJ7ffX_neh(>}q4JW|P0DgX@STO/B.SUWq&8s@P.1 ^ƐO*3#XWElAöcM2OWb;;v{Tޚ/GCiPXN +Tr.`N]e~q\Kq.~LdFG|-,<5\cL_ +2D|+kbMQSl +uzE|uz;.{LN%ga8KOKU?3Eڌ˭ATqSR"H0TeNzM4>EC+U?WuhBľkgxd4X@D +qI0BS UT)`FpQS'J\&(
i_P_j ciDukir4ǸCY J/~ +({:3jiSU{F%%4^N̮~)Kpy4Mm6ZT5/8[L/{ӈVU.ZTA^<3SdǛT4FSo=i*X8zU.+Y|Ԏ{ +LXpg:we3Y
E[IhQR%#2"8k!65}h!
Đ
<f wR]AR[)s5{Lt4N4JR{=SZ?_ zK=4ֈH/<88@;Z嘩GP3Gkv1Mh* U3/q@8*=:Kl#_#`G+ZY?5n)#e]3[98cI8RUFIZ"EǻBb +!Z=A#՟$o~S?sEZvėҰ%+'w?Y^H/vsC%>ee +)0Zbog"O +p
<kZ!( 9bq
Wy[0?,浗oƚbv~IrGp4:%5B7<#oD9(WN.<{NY
uwQtIY
6x>w TOE:]Ŗ + `iu3d@e69{NZw\ =*1TK^49kSf-2~kit[x;dwR-w4Е;2#+IWQ,44]jhMl3-Ր*l:vKo:w[+&]d:=n;jpb^5`5p[e?/!+`Voe_JyM$Pqvw*w+M+/3ڿ^N.ĎkvFÎj5tksn=,WVѾcQm-ܡ|E=7?jhzT5)XDo%&PP$CLY mYOҪ/J?}mK:$%ykCځ;$>3{3tcsQqlΑÛZ=_> +'} +wMp:z,Vh +ai?om(3Rl[ey>8Gjm%ҡgQ@ւrSwiCnXbBb5-XaL'85nH!|Bh$rZICBkЎ}|(^,,ڥ) + +OfFn&,kSi`<R[N zy91M9#z㌀. +0m7Q!oϑ9IdžGq4Fn
M/68EwcX0o]7 +J瞿-6ۮ<7m;Akv`sN&1܊3TEuАL331I*i8@J<C1'&t+h%ΕZX~R5nOa!ZJ@WfMr>=g +c%\֘lؐP*1 tlIJ^6Eqdܡ4o%3I`+;Q6ȳL>ݦPdiU0q5UoQ46>eRYLU\9bc9Q,V'I,.ơ͎X +HԺRN$NpRE%s:'ׅb|莫G*)k2Z\rSm%eX)I02'm>d`laпrt
G5GJÇlcR-ۡ+Pۉ3~[(Q">"Y.yӅr&HKJ6ЯeލTcә-hxN55CҺV@9dPBtkRH.tO[5,5G]/njX[B4h(ڞuh3:܊zթR?B/_<'(\q퇇z;&Դwo/^xM8kY^e_pF,s/7;"_Hgy[Vˤٛvvs2sq{Juה34S4y8d6}ZSƙ1ʝd:N<UצTK*j Y:(X<&y̰`ٲijPaY5ln!j)A(r>l+c4|M&Oh{ .k*p%Y)%4-bIY;KCb~A'xP(VNQґ: S#̺܄[~rnckQ0\pt5 +253is`=Ui+ 8JOHxj.7(Ti"eiLwē W $1oTRDݞl-
nJ}/hw_HNjpfA+viל} +6V{[TtgjƼ^}U:]K )
v\ +g>$0w(;0ѭxr!%e$A+ +57X1܃hmmE=- لNˣ[L<9^"ɬ` ٵŬ`=:|&\Fws>_Tu-:wj0S&t$Ύ]8nMC5K\mFba]Sd6Y2Ǒ`ߏ +:r_??o~o[gCaJr$tޒQϿ><?}}|z?~"ȉ0Ï{1]' & Np
»PWvVlta[郘~heT+Tꬅ:_)>)?㿞Ӌ1=oԫ_oc Il]LQ?[P*
>ӐOЕj +f KDu~fgftD +%HEȣD$z̲djzFF<;A4X^T()LCeAmsH|A4ӼiZhQM3-b[F ?>m轙6*cK7to7.c6,\ByP̆m3}Qnt,Y&@zIk+%@6kb]BZTPIbv1˿:l +^Ew%0eyfF dN/<Ǧ."nƸ= +9!<ǥ#"`cm%%q*9jed\+X~vkPE {-E}\vbh54y$|^ԩ^ުc;T{^jNJb)f)'z䁿Ѐ}%wj$TFFکH4i@Ԧj(9JGsCNc'E}5qN9x#`y%R`9y&kK%C9HGyJgH䊒 M -e9ҥʗ"ÎAT"m,+*nӗT +JΠv'Gx_r/*H-XYC䣙-h!sMSDbQV_2kd[V驍K(p9UFW_Jh5
Btz1{f0HJ 5/vzJx?gq5mc|8A\]F0#g?Ujq+zi/^?``02ؿȬO;hu;ʌ/YFRo 6 `@.<vSew;o· 8YudȆݴs2@a
/ +뼌MC:~NZW c#3c'Z F¶,w͵1Eo& +9l'o4[lIp|'q?]3drLk_o.&ly)z=n3A#ykzV<1`8r]ˮ
5}3J v:Lr +jV('UPޮͨs{[WV*W>mF!&W<hɕ'yZJJoZ5Rnհ-M0;*U+i(@{UfNf]!UH}MVfh+zvH=:H4я>AB]yRPJP][{ԯw<gդu!LScH0Q+2[XuDf\FhPxfPd!h5,h +J`w~fibT< +!=NPƩdCnߥo6KۀT:[Znoû_Z\!cNy(;LxvxܦZ%~veiYԧd1£WmW7ȭrvu!(-boAnTo"y܈ +zje.(뱶EۮlԒ'@fٞÞ3.8ZB}`k9+.5Q
ismy.{%haQnŽ/}R@KnM/vvϥ\LPi3@s<_Cdm(3PՉu/.X{>̐01 Sb?]$r/GQL%S96Nt[]sp0SV*QRd0ک//<e7uEŰlPc+#Sa7K̳6fBhY.z욌PF2e}Y|fQ'y{m&JDbhӬf_dg]|kӇ-]oApG4E|YZWZUX;@}BENMK!JUڒ(mZvIGN{u+qWYȻ809 +f^zPq
WZ:Dy<kxi^r&E
4&D947+d7fձC\q!T̕$jy4j&ُ@cC(ǝ-܈B>:xRBʼnr eRrh&BTQ_-|IaU8QuHfFP|:Y#^o:Bs Sn4ht]NQ!]
K'kE.gU}>J KfwqS:*O)Qme'IXNZ}GT5bhp` (,+20*eVfl
w큮>F2QAQgEkyXXKh^+՞{°~WqUߢJlP>SH`r$I|ƿ8(_1PVmD)Żk +JJzh>fRxG4`us3dTZ:4駈jK!lSBuͪ
blV5,hanJiHypӍLԈ((g,/C>;B̃d)s]K1&'"撊b.:6y1LU!s∱)K7kX`t]EĨb&bT,i,[2GlɎH ~8$ñryl.'0ni*sM +F,9>) uq(7xTH%!w<Q1؈ezj +R; *,A$ʇ23ltnzU1nM /!]$E +CM45ud$iiUTFJǒ'?7:R,usn +2I}ь`PsI0RN +Gdp*n+MhZ4i+#y$qb+*"7I<iY༚$e2<5]qkԻU^b[ed4D!̻h~KE.Y(+wR[3"NlV`Z3snT hAV`96ܡU\ut"2AO[!WdX,RCJtU9}Ǒ4ɦ<(y@C!]|oޯ\|o^|JR{ +_V
cXc,``̋4c: CDUf7RjbU?սw6?ׇt2BrDȔJOfG'=!#>>t|?ϼO=q
+x!촆; +%h[g +@' =\Z
b&
(~ڮ
fzd@]JvDZi1[hv$?у8L0g}A1߾c}Ȳizݿ\nbKt\EnO1nܤ@|hWH?U̍q%z| ʺy1iz`v똴\ֻֈ+DqRCr
؋4\yXwm +<̆xC8d!T8Z<5h{z +endstream
endobj
1373 0 obj
<</CropBox[0 0 595 842]/Annots[1374 0 R]/Parent 1761 0 R/Tabs/S/StructParents 18/Contents 1375 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9677 0 R/TT3 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1374 0 obj
<</Rect[262 506 301 519]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1373 0 R/XYZ 170 221 null]/Type/Annot>>
endobj
1375 0 obj
<</Length 37212/Filter/FlateDecode>>stream
+HWے6}Wr-)BHR8ʗUkpFjD{2{^$kqF@
`е?xuz܈j >/F,>wN,gRқLyQ<3Z83F|駫류]UrQG8[TU.ng2rH&+pJkQ1~<y,b(ffOӧ"SVDc84٫1kAaaARTkAҋQ\̛dU%t!E"_.ůLfkjWMe1ppE&햻~_mh_3墺҉\<ՉEpQ_
^:SS6zfiOԻ/i.Oaw%1ف EnΉ3;Fpenn\Ԕj:^3].SsM$U]BY/|'Jcx+\\g#Y:QK܆SU2H2}Z2b]FZA:OlMLlmmvݦ=mwOѣHuӷǽi:嗪bnx>02U"kj5kLm7P!nSwsǕ<RrߥczٖuIJ~6XidRIɪw>qR4~5bt{b $|JV~4BA%-Mslpy ݨ{Ia_D +v.^PI9ɪ9|mhv88Y!Ў%i=$6$dGARsD2iHM%L{焒}sojHM)Uf*]fʐZXޠ0]CZ!X7548Ƌ`hhjN +XWdhRY +zƖ+s厣8Y$'Z\ڏ
4=a`K
yK&)v4lT0.NЛ"Ch$FӏqOzP@!:y?(tAĆt`!}X;,BAL&,Vòl9B!Ubj\iwI=Ԅ4 "YYlȆ&RG)A{KDT90Zblf'b9R<CA8U0H k΅wFM +3C +zg9"E?岔B +@@aR*EUH2E,Km%XM mob $iwxXѫNN +d
:W`(jlmt&Z +4O0NkuO:BdeoL1R,"M5LmC +>,-U4J&]*xi(س`i6x0md<C}ƊLXR[%,`wa2&;A0V0P%47gUeKLnhGϔSnГ*йc
y$gLHW*{Mq/9pQ1dg>Ќq
fi<> +;#(PGPlžin.\%r9 ŧ%lneEPw"m?.FZ:T`裮>vizGL߄X!6RA =GOOLAi<}-"&ZXck]^OǮVg[9jPTn"\xpDXAtR獎ʛgVϐXThrL8NLb{4[,ɊWĴ:w{2T\}q#fi&p}qjVϮ xV1'z?dأmPkPz=r=6<sdg%v?k_خqv\4w@JM"e +#))Vӏ+ЬiE<Mo?PfUsi{џ.ņ.@Svi"&u +z}ńm
SN$\\L &ϧ 5ik5Z8A +#ٰ1!P'3 +
uV!I23p*0]ϒ4_KT9O6Gz[JcbdBpg\*|" 8IF cHz[*[5gr3cDϿ m
_}0,㵔غ:+ع.u/'-t"n1 b=_z0M +_V^YO
6/;8eu-KCBgPu6Syn`=\ꖭ+SS:f%}>3o6w5!˚yTܬBe(:
hvrthZi]CkDNH)dHGG8ĈqGlkjNq4to]\~Dr:~'L:㤁.!hAl
Y0Bȶ4M|p>4wƼ!\O%J@!HORf'#MzVdh?<M=*SpԌwU1@I{@M62gy|.Һ +k +y<&rmph +751D[&/ݫjrTbWm`;t#Ǯ$˸GTUY 5r@W + sXt]fU<
i6aћ0_#CT(`_]lłK; +y"~ʑՏNع8iT*GAka. +yIP=~Q<b&R5Ou۲D726]NX=?~)́u}ߪPYO|FeJs䧚1B#ɔC#* +60{>u'!^55wuPf=@tudF`<8s3Awv}5N'M#.bsR0f;Hesc|]VasBĐQzר; #P!$f,XG"HdXFX,ZcӖ)JkPf
P
ai9ȏyUX15V8.c]_%3:'H0:.%kR),^)ʕ%.4T +F/\՞9fbD|թӁX +uCW6%`"܀sA5T#@V"a&<|z8Sd!VruT.**yOb62b`/aiQQQ]RI6E+tj5d0,2QyB+-GYYAA +8α]eǨ Vs(}1 +5!'439ܳ9!/^+o? +(w(;5PO
0A*A) +jMXzU67YRs[JOmz9vrI:-7Es)t,mٳc/ +{N=;i-n_geÆnlռayuےFG^WoJ +&~*ZY F0+LH3ւr{ G:E뺊iYfʒm"`%aEXO=>}{'P +8& +핯ə[UAQsa +sڛO*34e\cZJO\dJf(/%j3{.(~ُ='槢%Q DH?n +Mcw'[ՎZoUZM&YǢqivU"φMso3'0C^>fg|h~4v +:.Nlӛe 7vf3|vz9N"Qz*]M{w5n1`WǦwKƳ3:7glh!3*D~٩hs/RS
)n$z<x^mVa՚2G~=`˱!jr|(:gvƻ<1:4?5kAO$`Nͺ} I>R%T»*'17:4I(V1$vڿ+FdJB?Im$ڏ$7߽A4vJ +p\1Q!a;ww܅8mtGx/`?j*Y5ka2&IQ>%mK.@w
ػaس5yׅ3S N]?y[+_*Ѹdǽ\HWo&0:ZGUsZ+ltai}
mSi䑉#5RCitǒȆJ!'Jߘ9`&wLYis2yhpmLPkX]:<א5KNx3ijqgO?Y#ܯuxg+"rj@ʠ[q'CH
,L&29QdLFM!#՝ؿҺiK.lϤx1YsB)'4' +pE{k&=$E@1fn-VQ,ꙟ:氵bf߬Yo&apI=(ʃX`Xxn=+OhU{^
t:cox`2,je]5&pޫ8Ho2J"EٿC'佯}lE2^4F.W}b8ޘs&wL +>ovʧmdAAֻWh
$#m|A]_xN%O*s_65?_lJTG{=NC6ʜ7+Clq({Tz8XPы\| +mq>N34ZL_CAoOr9F)x44QݙOF;=au\AeNJUV~8O<Zǣx+7~_p 2h9Ё ϕ4?cv J;U *7|`,5[ YY*Χ՞݊&XOr +\d^ZV^*Z4MwT} d~Fhj#c{ f$:hr@}jBA}8w8 +YX#JsQL D:!A@7_{E# ++U0]@㲾-&76#bk<L& +m#B&]}f0iގ-تDiZ-3ZxHE;5/=>C؋9 PV.,´Dk?EYp1ɻw r}@-%RڛZAbfh=0zC$JsQ6P֬F?ɻUle`ѾevG|4~Ue@}<?E#{`{rW`e + l/\au[1JgseiRp|ò^;=hK홎VfKVDT@-D#уVWXUҤ>Ҁɭ*IAgcI +hNDP8%r-h+kzZNEA +EM/,łQFyB +{Dӥ[6Djl,jqBhD&](K"WȰ +踑lseB +'f6ϯl q$aq19R;*Z6qsoaJO>pOd͙<4l/ΤӻFxA^Uyw~M.!+6{D!/eLtS7u1/cI)8m-نD D_]LLzi`K
mvaUt;<"Ƭ7{]-}˚%i(oEn8r3&iVT˺juFT1IC&vn nb'm:6pe.hǺ<SA^TaG]nxוg[+q8wkq?`i`g;nFvKO2.C*Mky*R庯%\Gk"S482!=].F0mՠ@k7jv5bg}8!ʾ42^ud1Ygl'%f C%&?0-{[V7*o, AEY u*x4Wx]s>m$LK0 Ctmw66>l@ lh)6\LĜ/f2^FNJ?ߞٞ^oC2НWTGT%kC&N["zjHL)E/e*jp-*&ulp@ţ(JTS^Ƃb3J_<9<[A)r`, M럾->JR[Ϳ
Z6fVuN5ZQ"@#Oz +N&>]b[ +8GS|ovvHb\ x_< <5#;'8@)֍h_nrEN༃z?8rmO;C<@Z QGh<PY%N0bwq`M7y?(q;-b"שU~Moy zVb +qxA+JGԨ
(ލiߑ
vkKf@|@ Hy<~nhw{W:ߤx;<ɓ*hVz"&aQrO0֕ +Պ~<ryr濟G +{}F!\pQ@ut JEcZbiذ N(N?.s7mұqSMcݯ!m_d>_i=+fFYiЩFQP>lJ2DQ/>!Gv*(d.r-n)6X'
؟&; +?M2OD58A>Ζ| K.n +C.,ߊFXkCel._W,8Ђ?q6oΰ]0TͿ;$xWRg՟% C'v/.FET s8ǃ^,,ρ-yGmyY7T=Xa}6v3f4Tn,H 4* 0FWz2G\T/P_Gzɠ;5iH/F 4Xt<H2k{: PI4_{ +^Ay2#U+~ +`79K7cyz÷uq-t͜1\wTX;ïg8i8w4ԝ>G~E&J.?C9=k<(1} ~i"WHMe?#P9~ +f8_Ѿ,b{L`Gm;IY9V|xVek" +%'4
!ǃ\X@i"|MJi +u(;VX-zT])H4dG<Z,póX5u|h}gqY@LX.fAh[߬(`CJ7/9c:]GIya@Tԙ캪bQ#FJ +&wiW~u"*ExoVw-"rJ!qiS"|$,TZf$^,W0nRmDaOzTwn?+-ɻ7=V
Ę@:*^E7o +2n٠쑬]a\SQ_֑%_ޅvN[E84ptorر +lz8R&5@VlNszL37tvvKmDi_齟T:>L鍽.7 z ?.|#z1hso>ļ<Ԉ,l{hZp&.EGTUU 3*j4"չlԛvAn +[?-^ύ;U3uovD($EpU?YwuVxH[;ʊ(Ym=!uJ!_'XV|h;jY}VmEzRhQ;O:#U=}QtWddD +EЃ&. oc>`Z"ҮY<b +pt.Y:h|K}ꩼ LRb?ؤ +Of=]2OEӪ(T +e?Th|XwcdRBdoީg +y93ȝfEM"hUfXQlwB
ǫRwx(7 +`;N
.^qPGBDS8]`;l&.N}ԐrW23u[%t;Jy<:T>GRA\+Rಔk=umKS."29U\:^1$|+pwjdZIɨ-fyFF4!J2W+)++<D=-\ʱlF:8ir_TF,?L:'`]mAl y#PH+3bMezHy㖃16-Oڴz֫Z]wJpR,@8M)(7gF)!+Lj^'زq-4ۣko
S@~z&)EQ%TL-,KԾcrR2YPүLZۢ}/R^ƋN}}z
+NxtWˎ]
+r& +hvq-#,%4Yn^y9,I۱6y;#X[$EM~/\w@*4+(DzkGPd9Җ-Xm;/`RG䮚g,-ח0&-v + +Q;\D~7% (jڃnR%kMa8S])cT(̻ѳ?l"]=ڠÍOCDF;oCPf*©Ӏ6x~e~mReZWJyX`b(:~+ Ɓj46g}b[ =zmTq\F+54+]c5$瓻S̘,OLزRZZp&X +]k ;YM&xl+l2k/4D0mQ87; +ituʟIZ)H +H*j9qU&S\P'Jo+M6ݟmU4)&'h{&&ݐel%T +k9[i [&[0=ھٟq~}V0 +dK|ke1rmx(iVA8J0osP˦`Ic\w@@Q.)>UFEJjkiPeV&;v×910/,fEJua Sagd)}+߉ljh۶rQ +rWπv<W!&|0md^dӈz2Y:LI*wnrK +;8奃NR\rXPpPGG`ffw':߶ZՎTl:
Tzcoc=*LEYES:H䑫v?C6·+BuIU;9(ZL +gUVMKv-55ж<G +ڎ<W^9ɛqh{zJ +;b@Y(
rÐN њeD2D~k;(ۂA4Y=CĴwӦEYe6H
!1~vfN)Z|=W:'*cTqin'EpPJk<Az9ҲoӞ">JSS}n"Ô5gM{7vZZ{!'6/b,t#X(h>OUV݂b,Ym63H-7Fբj*,ԟkY3U +vhRF?5gXU,z jXz.)#;&M6ܞ)^}s/7Jꫯ]w싧'iO?چ8.<Z Kց 5q!_O_/?>]_ +i~{_O?%(?x~~~Ǘt_/]IZAMP=|o~|o'Zp#ZR%ާ赡)c
lޫRIDF:*OGP*;=()e:"aѱor1I[SDTH~^A}, 73i2UBٛ_K̠RXܨ+n)ޚfliFϏ1 5x<OZ{,] 0\Ѡ S]|YUZ
S+#k +y_Ӑ}
2>zohrB2:aXNEi*]{Nq8}!o0sbYOd:[V0 h![<kFotE؟"Ṝ;W_eR5MLĴJ¶a+a!p#c*+epR"/BtlO#1&!sPaM5? ^thnX<Ee
N]rxc$`u'NRz[
IUkeQ,{4q؋3H`IApI9x
|\/5mg;]AhRgF8D.&6ڥ\^A/B|5Tb|H_B+g=;Z`M}DYe&, Qt) +]w CjEf!kf"^p݂2$y_-}QɺJ5]+a2(^t<o%e#b,Է`U/±f.u9158j˫F9!L()pA^- GB)fuȗod};++Ʒ:Z^x%^0SCvWqB<б8y jmuU`8!'ל<`hD
[%e˻`#R:3Q"b~5eJ=ЛATe1~\UWFIg'bKm˼Rq%aCjFBx[ayQ p~̉-*+u 'WеnqhrW: +in](s<x2Eo"l3J&gAEhv
`*pm:&]ga!Q$X@"Ju}:<A.6EWeGDq\~IDY2o6|i6~v)/<j>
DUMe0-(vAd>btBٷүsЊ2@bަٍejg9K g՛]ʡuNlZ#:wu:wC^Z]q>W'frD]Ӹ7.vEM?# +/-N/!zF";^Y96L +S rAzF,DS +ɝr(8E< +&~T;-f]Xu9O)Qi48!
V1-H#1eF;) +,`q,X`IY
E,"Y$6&S,ll5eڰ*m
wL醬ONDL"&()bӮ> Õy-n ++GUQ6Bn1ILs" +-a"BdA>@_ +QpE<n^ +zs4h&*:ljs]j059 +K| +"xO*wvî@ﵲnDէk08,FJ[ǰDqcŶB}id$OZ&-. Ef,ܥ0BIUcɍĮR<??s`$eÆw2X
_ƊKt,wn<"v`Yg࠾|8Uh ;i>7H>nldd& +I5hASM(o#8{Κ4dfe9=Psn+ ~ +YO2664]<uf\Q@F7 5͕F%5=}xe$z"E#Kd_v:V9oY +uXPEkCսQS2? +Wr! +7 \Wyu[%SR1B\&=*t``>JlR{nT|+J(AָJC,L +5BM8w%Dפ=1zу&̮
f%u#I4FnLvV9wR@6Q5%:)#Z"SD0}llElur;k/ +j53&1M ΪA)Dι +@nN +UԃP=G"Z#zns 6W'ؿ>kX,[/g2d˛ykReH3pPBo.O9nHcOmMFzvA"7Zg *ܤaT}JH:>TQ@ac9iɦtQ L"O1A$Nir]<M?7$Ԫl%:.!Z:`?0>m;;QtQp~2I<!Lq
豧кƴh (|ݜJ7}M3ZqJ:5$+Ձe^\`ƚMInJM-nwDOD7ĨTIʪfU,MlotEhbȍjΒicQzR~W#!=BFo?qbFHAU`qn9
TXʵm1Ĥ0j#L~i-"&Jb#2}4ƻ%,</@|߯68q2V)$@zvnu>SiJ\PWbyUڄռ[ҋY(TDf?MQX<ES-y>gmƵ4Ty0~ܹ|4GVU)OjO_ףc
@ʙT*@rjHNۆzeۆ;vxʒ?_fAB!RLkbTڈ(Nѹ1t:8_¡Wu/?c_2cER7~rt,l\PqT8[
q%NwaJ+ ^J|ڌQC^`
.2NR.9e^{9Tx17l67
ƍ?m|@:_a79-6+O8xBt#oTgd"hei%X6}_mtqnP؊vtlhЦaiB93%w@\.ڹvpд: +{^lcR`6gEC؈p.?5FetĝrX ++._]tgww[~sڭ6,l,x%<GmtWx5~FjlDTE@R +qo4,[_
57P ]7Ta^J%Mu +9{2vj^Xb 0c}/r7rT3fyH:ԽM_ J:-Z Ún<lЏ߰v[V;HRI&sEg}Y.S.Xǧ
7o|G{~`0Y.nLj3t1^"3oO%Vs]!
N^/jT¥PZzm?1nP:n£rIv]S?f@^lhwbQWHPjZWޱ3B.o3ʒ$UU!."; U؎fZ**W +"r?
Q CPRtq"*)X4o1zZJǦ<!590_V>IȾMMM1mZk2y@C6 +zt^>~'5-&% +4Ljk"3)w0WcǿLLάյlΕhx%bo)B` 7_-&qWXe xԘBc#vhÑUI!Z`t0pi[ϑZ +PSɞ0Zq[$Cj`Qpp1>\WŶ!C{Xfp. + *ǿؽ:s6}'(zD1H2Rkz<Wd3=z&3KODإGg~4SNhv?Vo^<bhԍûOt3xn] +vls3Ψ#=Α@f:~x0&[BcԮoabZ/>_6{ͯ[z/~e漧}(ӌK@wdNC!@NO}W#BV7MwPd`q)V̕[-W{'1%`նA>̂\)q>Zy[P54*>̻ۥi]7ͽcKb|tk:MTEgOOSzbힹ>O/LVc^wb+K+oCK֝ۘ4ƥuiv]m~N6[)}MXOJ.wHSh +ﰋT@q|D.GiHwϲJ\!~!n]`ѿЪD~.Euc^͵GSCwaCuJbQ2݉\۰n% UgoOïC}D?HC1NCqp>W4PӾ}#*}>PVFd¾^-vGx_qOwpW!BȿOUuϹ`驩 "c +tO|0Sꝇ'Qu-wN^Wnpzq{y3A&R\aKZQX. gR8$R"9yTb1hS(6#*8_[L5z&Y|ձ'+8THFiw!؋ɋt +H>;*e>ի<D +~SRG٧j?*-'?fZ%_`<SV=Ns!͐B|6LtN0l2tGu-})ۊ'%)N.*u
`:|!yRhίh+jˡ1|Rf=_S%.0/o1
e~ B.`; ¿jȁѓ .g2dܖQv +d^@\-DkLHV.g?):.P{L=$Nt[X`шBERo2-L
v!*BPYj:5H& +q +Śd2J-.C1hNr9=T,DZ}f,#7vXVSG5-䰡]pz
"%`V,Yۉ~G;d+![jz`߶6#4M0=AkXaier]#ge#HQ2͉kDsZggvqW`YZ,@t@UӃlxMiwylDGЯ7Nz,f .5Ʌ +uD3/
J<7qQa:&0ʚȉNf+lƉNf,! +"J l +E-\Nfܫ8"ٚAT\"=1)T)ԒLO.NGeghS73y
t/e6sN(.y0[C_.l/BͲn0=.8;,R~st>}nBS",O?Wk@av&s])mFDYWEB|FWh` <$/͋Cp}s#ch7L>* !wqq:/3"l0.OˬB@TF)^uzA1 !x +N +qAFLs4hD* o±Dn~uAȤk4r2$堩nh 0[P'2.'XdY`;ְ`>U5)ܭP; +!P^B$w&\Kg<kŅZAiK +$Zі;U|k]`81=xU]0Œ +qD\5"y+{D`[;8UnuPBQ@^+b\7]KȾ q:&!M
bc!c#N8l /&AțjǥEcX֗?0Mt_#9.هGaoLۉq8$Y:پu#>ՋKwc54'T;N+z=&ْ }a)?9?6%JJMW>7 %x +4sEsM|rgT4IF< +Ԩ7Sn(}뭛ksoWŮ<ry6l/73Ä]JTaŹv3msOLq(DćU:b㵅a;TB`y~Vev
8%\'[)]ōQA ^ vsg:2sn?-M!pYZcg=8EPnԌP_+Kr^e.~b&1U=cgGX* +<@Ba?Ҿ~
4 1C.0Z+T,G8.?~11Obuh(բޏjRܑ?&ߵ_a'ggY˫jW*o#uHV4"'t04$s?Cko's+fz
,iSF:S39Cܡ FΡqg =e
$_|ELJXF9;sj-o"P +XSE<]zC +F3 rBj0H(KVE&L
Pڊ._?Qy]VBe.㗢p[4cK-kv! Hth@ ݱ}*靼Dhcsv$ar1Fu%qbptl&Ь:U~T;xeO)@bDn+q/s<DR]1i'k*t(YJy1T'| +Fiia{%žm +oTIvH[7e?:OmjOseӔl>fV\\v5I.N_@}×iM;"D$@Hh1t:pXo)D5Y
J!|$&anZ>nq|rDnkdqAAEp8.`RL(_1X^6UcoWG6 Jfڬ7.ȅԣYGݠwEf?65l$#mr%dLLo<Gn)x!֜wF#ͰRxͣ:G2%*vGc (R/ȓoPc[r]e
zKlEC=/=ga4+bS1-nlN[F;fx#U_.L0jǻ-Ɍ\֭b2&:C E߹n@J.?J7a{_KYӕOmɀ/$熿ogQ.vE18nfhģc=xC3pΦv[=`w"'fP]fړy{w~:e o# +)wHPR{z
:UY>6jJ,^ʂAbWtϥV!>ϫ̂Aү/A%'MJ +4 C$XiaG/F bWL?ҷfY¦urse8QPrLlnȘD_Gr7娗LS
+]Ё48uH:`3Z8lrr)k9L:fV}~1#!\ 0b©p8%p@Ug8 +(.pGCf~Y%& .6fh<%n]v.yI٭6J`^w@W?3`"7×wnv"(lVpls)a +FfןeY̵d'\)`A|Wi";0UBwv=ꅻ,<%%'+(U#.>tBѥU%a ,x+hx}?lWKl
*j +54Q ҵ-KEyᬻ,Z]&*6M6\aI_2S#Tfr@E5j/כyYAnL+/^_6d'CX;3UDu]>qҎ"@:C(ɵFrTR
K +nSuA.Y}5<x㽖,NOt +EF5,
+ƅ>siعTgF
KԍKs~D2Hnh {g>f5IeG.lqYLS_})_`pJaDˉ+HQO1V"Rĩ6NSMuN,ƂDzUzgY{e7/d0z'MOG46=Qy\%R8:\hWz'K~5H2ߪ& +WeANl"F(:&_{͇ +SppL+QUXj +<D V\1qRpgQnU0zg9bxbZ0֕Br1c+0Ɉe@nZVpYot]Z{^ +:DQmWdRx)؝wwT`E68|Uf]$q٩OeuK""..yl#&&Y*'.x@b$_/qٙ{rFݞ=ٳɮ0!;IEP_)[U]aV94Z<-ӑf.]׀U.|?jzL5ڈXHP_ +:Um6wb5Fw2xg{klPgYW'f5,w<X]rV9<澪L`ko[#o:B(Hm6fpvcvRW=~7=<UV֨WT13.bOL}'GnBЎW +1OoQ/<.˨keR$hHA(wek0}1ݭ|{)qO(yRiʄ(`_+rxڞmbPf6H +$ +<Wz~wKzd#QN\gm:.BzɌ;/qdz[l%z:=d렱tz^ +%TO?ߟm䏭OmH>izPu+@(lB Zcu +sYG_^9&-<ؑH[jW[lK ^Pb l{bqr9/ލu-zO)X?Ymq$Ev=~fKD_ǣ'.p"ۗayxձ Hͱ'Wy @хFQ'9 h +T*5gx}5z5*Rò95%`-I^n.jg0C*{ar;V?\<@sb?zYM{Cij(12!qLv
ɧM +-Y?$8ıc:j*OJu_1ۢqCH@{V V˅TF:B̼DL{S8,*7WYgX1E3*f$=]3YC=R +Wsl{~e;s҂)p*v94N [!,1f1"d8yma`r!OC8kP:B))ZDndYte
w%%rw:F
J|^dɝ +X+jD'55JG2'WlUs5% +EWDXw@
<ko5\ Jd!4y;$7ud9/)̀!XA [sGtHrt' +? )T::AK + Bad.ϔ<Sä6I]j3#DHO*_-*VfIrEB*BPiƽ A +U8A8j0:2蘦XG1FͽҲf$ЊQ_U#>Y!%:1#T;Y'/Zr<k̔bȘNhL,.9zkv
6`S4AOZm$+$r +Nh{6 +?]-q:t
N3f0Fܧ2I5>Zy +@z}\;߭s/Og.ud/Y'$;tKyV{P1pH +endstream
endobj
1376 0 obj
<</CropBox[0 0 595 842]/Annots[1377 0 R 1378 0 R]/Parent 1761 0 R/Tabs/S/StructParents 19/Contents 1379 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R/TT4 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1377 0 obj
<</Rect[236 548 275 561]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1373 0 R/XYZ 170 221 null]/Type/Annot>>
endobj
1378 0 obj
<</Rect[491 477 531 490]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1376 0 R/XYZ 170 198 null]/Type/Annot>>
endobj
1379 0 obj
<</Length 28292/Filter/FlateDecode>>stream
+HWے۸}WQrn$Vy.&;%8jD[C"~}N7<xZ +&8H +.-а89q\>PWbW2`;wS'TpOQS6?@xFnxxߖόd֤MJP,_z_) *OG}AHҋqtxބ.{QSU݈G0sݡ:YZ1<k"DӢgBi{$,p`K)Z1CcW|e>6(J:V&mAf-tU߃\Z6\:~e +h\X!!hƒ2KnA1HIb@aH!iXBT#Y{&ɇHyD FFn<!1hI(!YQ| +2x9D~6DyذBWs$<ۼyF$%27^»&K1\RW\S +j%Prr)40W#O"qĬއ5 +$X@Tq6@o`|"iu'$~L!ֆ&>ЕeVp}"NhI
N=ˈ/#)#;n_}1EEd +'8~9 5feǸR*IR +MOĖ<B8'{)`1'PUγ&@>rWR@GC4CT=HՒ˪o@u̔3q CS ީL#p6aY~)0BS;y\euo> ]Y;R؉wQФciCK@]qB#< ולn2(y|Qs]X^BUs4!-V7~PpRGyo߁M.r{kIx!A(dKT精Gj)y]TyP:ȡƋva劧\4[.}L1DEҷQ?OKQVC;H*%w%Lx6ei9l;Ȧy{kM|$!`tح;הveԗw3*bP@18ʿ {gn*PC5m]&}hL!'!+2
5e.Rh{a2GMkIFVǃZ]ģcPKb-X +ߖx5=r]z}!x*-57"!.-+ZC.5R^bv{!~ۢT']Ӷn5']U̹ͳaf2E-ls +݃ a^@SAv*ӏ8~VL3FfpO\[Y}g?q6r&x"L3NOA{=\{qK!kvqzBLJjwx;0)UTkDYRX8 vcosQwUFHd9,bEM3yy9ךZ0.J~,@ѣCQZ\NIC\B:_Ok +m8EcTS 6S`nK +V@ڳ !9Ho +-19-O/dire*J_.?g]a/,fL%7<jz%8j_O٨NZ&w +gPJ~fyTv* +Gƫڬt(O&Qu[7'%cbk1>~1}?!.JJ9!r?kGt*1]9HZ/2ԯ`{3^gI3Fpհx0-վls2EvwU[XBQٷ[r:
ǚmƳτk4fؑ!6v +'3u9$['4/*ϻ.w8i9D)h>i=P
e`PusRL_|1&:qY=hhAq9X>q] b: +^_z̖o2U2E8H'mjwQԖd5k9 +K-Gnyu
kZRz̝ZˣB;*,I[N#Y]AU0CF#ҫ'EWԐLoFgB ~g\UMzV>~_|A@y,9 +| `)oJ{28.3ܘɱ$wF;d;|&ny~{565O4N4ovG#sD*-`8.Գӎ@`O +Hyϸ!1F3%K| a][$]};vL`#*hZeWݿW4:S֧^1<&L_xEsbmqbHŸjis+p]gyzGP02v0_RMM7B@YgieAmYvt) tͼ#bz;n[)qObG0fCf `CB(P#hǣ.%zBSic +u>uI9m
0i>я0[ Y z2yJw/ t&/oV"j +wB@}\Tuk*<[Iv8D8wLj?)q 9_9wgzi<pT +$KX2X + +*R$"g?Ѽ"*$c]?%ǀ 8W4:qpq@zdf99 +Im8AB13Tϯ5J( +~sF᳚ `sa!d#G2 +&ˊ!<&dGn +x)[k>=`MX3dv +2
ˌM&bm/јkx1:ȴm5t}xt -%EpgÕi1 :j38uyӁ}ʲn[xwbvrbGT{w1b][[fcP[Q-.\uЇk(ӝg &:$2*%[1;~DHm-EyP)9"Fb "²!f?w/6:Q
8k:
G[ܢ|xfrY\JA5: -.ՊdaĽ>M^#%#H0-ȥȧ }=Kڐ窝^zu^s`#$|)lL.ց@8f̥U?O!%"}R[V*D +%GxA4u{mil + +YkHm|lu~7Y̚'tY)BxO{pEL?^58g-N,1'ػI:@puW
ˈzPuC^#G>aNVayσ>pXN@&t?tҐL^C%-sÇ[ok2MX^V_$
UV(wHS>K阝gNL.7}Y$+-nֿ=ݍ@@Q_w{#5ff
5?[|dHf +T`WM䊩q +u$},5QӿS>Dd"{46i␞o‧ +c. 0ZNёmOΕ♬ԔsKO$ڗ)DÜc}5-#Cx*D4SLOLMRQ- +cX|m)>qbA +vn +Ri<~goL30 C< +-[*̘JrqW5#jcMYuL3go,=H
r<~ezpƕJs?+NbaQXJ
,qVgwH-U ))uaVS +}.EaWl0@(}'՝xA^{]ZkvnUF.Yv*zl5<30OPRIS`0ytJ3Ox:XT-*1M.<_]LCsTȂX`I(Z,!e#V +9[F7y#h
q7}:.STM tA5{auwTтگWj
HP!j SN.Jb
n"f'R8~9K{; S9╮~C=mOLI9||LtGu2rBSzL,κ.LWJPcg懟&q8Cv?Ĉ(atY>M
dY6rK(O-
4sR}W^/h'X7A*Qɀ
rt6DP}5qЙy^\XC|"Z`wTG>2hQ+wEOy.lZ
U#(9\=L7d\F3>m$+# J B,_*UG4x`)wft4B5sfFuϒ +\랉PقŅzN&A+eD*r$YY'eTdEf[iQOSP[m]byCwQQӎYrQaE| +'iF
2(jf*ә<=lG#
UUdm 6տF՝/F`:b,|3YqyhA!'ˬ_0k#~EHRp<8xʗ98dBX*'$mP,,G"`g_@'Kbuse$-D-IFL{{&:da@[UÍ+ULG~baߨ90m6 6{R{T4x %["(p%Z+ZV'B[n*Rsq)^BF:6̉8PPEKXx[boi(7KgEY+`4DMx +Ѧ\>QگT, +ќ<t)0X'(*W}7DT#ϗKոct4Zvv +%,ɣ4Xj;$."eZz,f% +Z^^>$sfPb}L)dM劅MU2\Wڌ4}+Ej˧|Е3kWQ<WW\4⯙(Q
etv~;JnWGXȭmWg4ي}+v
DGnʚIf2}CJ˵QҀ K`SswJˢ·ܦUh耕n2o|tJ(yto-QNXchx19<P-XJxb'
1i+aqkr (GZNJ;3eDIۣk4Qz +~z Η~-4v~~bKM:nLFqĐ\gGbik9#/WF9fU(.#sLCjtΝdQHrb7=BdzˈUe֮6ǿݶ>䙛k߲2uEQynnJILƧgЂW(S&\^qlEr_VQS+y:piOkΑgaU)^T +۰5fx*>$8«qhJdGRϫ36ߍB:A +Z;ß[S)Og~unWfVG-ȱܗOnUXɡ/"IAd$sh=ATMU( +P!Vb_OLM$Oe /mHztm
VSw$=ZT8hJ01gAo +SbB;p +XSs7 +_6䋟\Hē'R-In
2y!v
]u!B!{bw''SWloK>n3$ҍvogo/s"%mA,ļ3~')~];d=k:M*|7,|*Y0TP0̦B߂SW[jBl1L^j='_d,J˳NlRz4K$g@MS~GlxZ7N엃W=H:{;DG cկkkΚDx|ր،4`{VdFCHH
7}>u=5
6ISۭ:N,[.VZڭ6V1O)iO>#{dt/^h)hZ?tٻ +C[kirq9XR_i\V^5J'=M>+ +:16
pͩsCh-5[dg]ٙdxX<wG (&SBP*i=#['xnPeLڊLtePBwH2)\p,| @ygSQ3ק#ɸcbLs
j6v
no
Ht*մ@waojggp}ń3L%!t* +4Ra^k,|δpTԎ~:_l`
&dkتpu§V
&P`s*!1H`xԓb#K\[ xnfU["hßAQ: EhR~eʕf$
V?v >3g-W\TQE)(kxx3Td0B̦}$s^\=dF*'*| +ldV(@,`)@*7>-̳eyR7FQe8&ʹa_7%qޓ'ަqu!W͐=WlC W\H!^~s]Ѹ['}0]Ă +[!QBN +|C?a]ΊVv¦/XidK8TCܒj 18]%@B8A0'MM2ZU%a,,+S/]U[X|0 +Me%2D*q +nx#*:`+,`Dg^`D+
k`p3Ir_+VA.$[dVT+dE_ߊJe{u6!DL;֥uK*R6
di˭tv*bݐB˿<hKLYWr*P]k/mru@&B~8qki->q\ډ::~YcTiZyrDiɴ=P0cud;aᘰsfvsXK%5V@_kr)MwꠥU7;PwK-{\7R4mbjJ q`-
,zpGpٌHc\MN*-yDhKX13rǸJ룭.+6|ɬ8SgVvApN;i)N&N'8Y&oaDF;?NgznpI¯}l
[ni倒seՇn-ż* +Um //1fK3;^.U,n-|9Z C*4M˭UL+P}s`n4]0qL_7o/AhbeȥI&R6)gQ#<W(WmM7R?SY +WqcoܪG+pgUE@Lדw!iXuueJq5x##$y8[ec]G<?!Md0ja̚L~IW|]UHV/oIRAB>GAy*C H0V2Aޱq`\B +FZ/g}!'Pzg_S{Y]٥l
}mWg/^~կY}_><j_>ŕў7=Ͱ>0:o?=/w/ÛO}_w/+}}֞xQ;?
w|sb-~AF8o}@v3ˠXtW,fne͆uۛo؋j<TTsŪwf^z9??^xCUgNְ.(v?~L~ᇷ<}=s<kfCmq6٠yw{<h'8ohqOQ\}Gq~e~ahҀ,Y6jrHS"$248)9Ft' Sq4ߩ ,\Ea?3&J3#-(>' +a,̇Yn* ".Ug" -:Eݛ)ipف +ڕ=? +JÙO1}V#LmQ?R(=:Ć^eH֪B<(Xa+! +ҍz).e~y8P눺֡u
]q竇NUZ%_z +0-SQ:G"gd!BN (;Т3>z8Bov7um˰X{]ޜiM̖m^!]L14:í6|So{cyZ}}lvl,'hqED&Dg@gA J}$:]gT¢5?1SWV5Uc=՜jC(3|" +ÛS9ɂBh +Y +p4jZ lJWiW#s('P!#$0 +B +yi[$^=1S'iU7}Sg z +,QO'n,Ɂ3ə!g2ڤ9QN$pv>o& (г$J<boLrP33V|` ` ,'>j'HF
Q\~eG
xOsy|וKPHZDP07l4 + +Kv6|{8\嶕e|Rp8w7Tm\l!uY'5*I>+&{qICy0$>1dBtzmDqNZ_!'HtH>8$({9MG (,ˮfHm;mmz(I8.!'jlbp|9}l^3hJd98PCxN> <$uڷ-Cd?nf(G3 {4n#;56Od?dA|s0k\uJ,PES@5{.]t)
\oAIpy^oRp,>pbg8b+5Bc/v&IvNVSG0BĄE=[Yd?RcnYڼh +ЩmIS#H <GxK<Dْ +mc!MV\ANeUcs@5Vٱ?ux굫+ʲ%WqVrcfEYIbjvDy +%S#,:Ar#.90 +Ae_W;>oF݈=` yoe3eϩle qM5ؾ1O#`)P>
.hxÚ?k枚0b`j7@ôMIxF+mD:ZE$ +$bVT*Yɿ=MC89cfQ+t9QTwe/'.iҡ9TZ}y <*N +;HhCȚ:KXN '93J +w~.Rf3RlrK +tDSa`/j&T6=LnwdM;Hr.ȣPK. +7ku.غJ{Y^CSS@E.$ +/I3 +kш +*IDG(ErJ{dDEߏ<H3Ȳsr4a{NO +Ϻ3uQwjr!:y۬㣒Ȥ_`ηC~up=lѢ֚";0EW[ +{Odq@=a2Y!OWVSLiOcaH da}LA#R{Z˝ݓULkjwOԀTyF͍kVY&`-{3c(Jug0}9EĤA>dž2Aw qǽCvar:CXX$xÙ&HDs*GM_*Tiv_x 1;ĸHP_a֎6C EIFSb탴9n!%iB&Օ>+?tX V쐱J)f~^GQ$[i,-C@<bͱ +F,B(]OZV|E0)7*5A C<qVǭuo?]ܽUd*}1Bٖ8J>ZeG6
xr$}FCSIVH Aɨd#<#2@,މ0%aW +CEf1ESB̯ΧU{Kx&M\(L "<.0A!C&Qjub֡(-恢ڏq-^b|BFH՞ +k/'w?з5kZyնB
ب9uΝ^ ^L知vBbEI)ķ EA$ym|PvHp5%7#ݝ3Ih=ˇJ\@UEd
bKy/~΄f=~k)dĉ{2_@{/wu7r<Qftxef*1OOu/p@=g۪1]TIHkhkY/P|oT:sZn
@kV|G,IyFH(s|QAʜXop}Ƿ=Y~^{َm(('Qixq<1ZKYmNE@"Ewm*N2fXE^[ +wf*@eZo*O(|c6BAy]oxD8=ژ42(jb).vqIr!֍=E$bW +
JjO]Նn;?:xgp +Ca/3vփP{ٵν6\Zg=TCU]WLda]mډ↝E'iꑈ
+w(ruZN乐{8YZ++T_+#Pΐl;!>BQ,odFm,f1PGm܀çOW#?ǝ"+噇y Cu4Hir6U*E(} +O\H#d#HNd6{NZdL5[Ap2_[-9sLˍ^r3zOmQ<:r2yaҢq,. !d7^m]% gk\ٚGv&b=wiuFg0;7 +mǔud~6}_~0FQu:y~:S" +5:sD +@x#xq)>KR#.1}ek~%%áUVTSI4*ܨI u\> +j5yq^8E5ȡ%]'^5:r,%ܵ)n#lӊ\n?-@#U #j`'/m3q*f2+2/Uݎ9+vķdf9V*=&^ł$$4Ί{[$3',2^ +sYPϟg_::InH#*Na`q +[]X+E#u2\Ǎv#9h^)*v"{DbvϨ_ +Z RƖ[Uߤ^:JtԿ 5݊&'$yK"`NռfNIm^XgňyFWo|=Ʀv^ް҆T5^^'{+T.}5v3R=Tizju.a@3&%Ҝ0S9܃P}*gӰ/:CԨAct'Eguy:FՖpv)Ȅ38Dđ m,\NuUF'Ix' 4@bby s*.!Sdp:sRtYA
QA(E>vOT8/P nq[!+{\ +v~c7Q5UCbd +0,~ȁިd<g2DMev2Cgpu'nԟSAAVv[͍qg_6e9gwF:'7ZOj3E#+Q(my +U0%O~AcSE'p +6I +aƂ${qaAs + h2xnL&Tdqpe=)J'&h!,R>2U3p@RT*1qT갾(ܧaYgz}9s_# Rg4y-픨&.,иsT\̈́FDg6h1m)oK+Kw%vUK"}3¾\vQH)FfrL]XҮ) +pl涘{, +g(R'm!~Aי:ɛ$wDwi(aX܁0F_lےa! > Qv~g4>[gG Ö.'w|NaȃC~OkzExU'p' ͔\p|W^<yYWs}h
۶/ +m|.]?w|;zЛw|u}xͪtPyK.SW=\LϜ)ѧȦ6Um.yB ;pǯ?ݟueS=~,?~Y/$tGI^}#xy_ӝ| sV-TsH /xؗk<M[ +endstream
endobj
1380 0 obj
<</CropBox[0 0 595 842]/Parent 1761 0 R/Tabs/S/StructParents 20/Contents 1381 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1381 0 obj
<</Length 2130/Filter/FlateDecode>>stream
+HWmo_1]A +UMf?GdK@?Yf
>'~b~x:qwjN0<rtAL6&;Jf{6Aa[1Г@x!6l +9Gcj`3o:YWkN~{eӹC3$ؘSˀghƺK"oQua2ì`<G?ЉcİUWXB +?8,vӥShUmUtV]-3=q.VS*!˥)?7 +
hh"Q
t#hAKȸiU w}4hWlNcNttGgqt~8>w*Kݱ+t+&m~{w'#{%yUuVԩIK9>/OP#7먄]WI6"z-IIg?Acs0~CMHf/iaӎLb%xgYq6{اe=/?oKWHaϒ!$N7i~;yYRV䝬9vf-1?hW˝$7.2T^78 +i$?UPOt5&|{Jߦrd9vb7-Gsɕ}Cc*jm`KD5Q=8B&?bT(7e P,`SٹT06@L[N<ęGv" P;m *ĵ)qf1G85/ql
zkrĎm}"Ԅﵺ(s6U[xk:8>R9ךz貼&qČ@FHKeh#VqTת̩oNiUGp8:nz?Hkv'ÿ9PM
ĄMӑHZB_>V +ߥ"RJ51?;B +15w+x]-F3*|r,Yd^4j_aAN04^d`oG=EKU{&H*!A1IWPmhN# +endstream
endobj
1382 0 obj
<</CropBox[0 0 595 842]/Annots[1383 0 R]/Parent 1762 0 R/Tabs/S/StructParents 21/Contents 1384 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9677 0 R/TT3 9676 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1383 0 obj
<</Rect[336 497 343 510]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1382 0 R/XYZ 177 81 null]/Type/Annot>>
endobj
1384 0 obj
<</Length 2405/Filter/FlateDecode>>stream
+HW]oH|ׯGR~sX= X&$eUϐ)K>\RgfvV5}5ﳳIoҏY4>EeA?--!(=ˉls)ٶG?|1y2W6e5?b2_=ԓY$(۲~rm += +ۥib45 Ch[Qo9yCr~mݐ))y)D{:o*1]_L}gsɄGI2{p9uq]O6%w*6kP3
UֶV/XmMasbY/\eh7bVSDx+B9 apVwNNUcuEw^f.|nO#C3(<R0 +l'#_o +9|.kDheOœMrr)<_0$cX^w, +nk''-qA +YaɊ?QZIJ_S1Ҽw%k9
/,ݦKdlUc=>qܜM(kJaYYhnJj֒%=z ѣpKY=ZppuXlc<~hyq|V˛^̗?W^\-7qF[YмYgUo䃬)-%U֒P}>$tJ{+ϯͣuN?WZ-./y6r{($Cm~x--:cm+95=E
JȓäYƿɺ F7YWa)/YAT0ư`e3uC=<r+_nwCdEv5Pe-*Q93$fLx51nN5jU+vw#ǣȊ84?-8_P=lxUMJm-tP~pّoQCjY}
g"zzQ ޡU7}BBjjhhMnEE&+:[A[{{Z6#, +OM(Z=+Q,U*y.Idd+H":Or)aZ/K[>ƴrzj{q߅REW*P$s?]Wfzoe=nˊ)+@<S2jw +_lWU%f|֍]Ƒ9B
a<lerNG? #}aOQjq*# EɻS +o~H_jXl6ln5`z:_xhl3܊Z3]^dB4Don;wV=0c{0͏EJ)䩬^Q7!W4/0N?YJ%]~\f0_/.X,::Z<jHs9ӵ|WHtq
EoKHs;1R O9O$'>*z@sۿ(lB>C-î(IB\]'+}(BM/eİCy2@1UM9YQ !MŀSI[xMޏcI +N?)lA'8if +_mb+ki&c䩣HuScDs5Nz(+hJ-
Ϳ(ŝ]ucX`l[[>`LӖalͅ WUP'ٺ)WE[aiV
~10 +1'^cM<C!CaY0|t~9=.|(@z!NL&Eۖqjr?9OK|(vw^ݕH'VޅǥFʮj뽒RƘa;ULt\L[{îB$ MFC16iIxpi1ҷF_ +endstream
endobj
1385 0 obj
<</CropBox[0 0 595 842]/Parent 1762 0 R/Tabs/S/StructParents 22/Contents 1386 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9677 0 R/TT3 9676 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1386 0 obj
<</Length 2118/Filter/FlateDecode>>stream
+HWioF_Ʌ"kd,Doq" +IU[<IHTw^U=GY<FpTfo0L0|9d$H
(ъQ%3ȧO'd0ɚMN`<a'3ʄ9P~LQOLi`;:sǨB٩Y8$p8Α,<f薘| +6۰c#'/ 3hu,6[涶t4!+ȌS|i/C65WگTו?1n$9mGZ$MԌ.p۩;a.ZxP^ nV){X)^l% ym*WΠVU)jj.By~5^ϝdm +`BTYV$eS?SnAy[R;0h^eb&7tA
$t3Z<O7ITĘvEbGv'V[9( qqͭ;y[CO'@Vj6[OکLJG:]*wwsΝ甀i +R1P*;/&N]Vu +#h$eeZH-cLҦgw@فFC(|X좂DYL#r%͞@uX3G]YSCS+Yt[,e+<g߇q$$t9{<GAgf^z6[0;j_- +xr5
1N\VZO'WeK1l
.'dx(ya[eU-h:&\PZU`15r)֬}X2Z!)GѠx#XyX)\ځE/CmP51*#p֓{Lq 47F +<ÍE為xoߠй۪RfӪ#n`wYTc[\W.8y:lR'\M@ +f!de3$n 7HP ؘ6*"~o@<f)>a~ЬiI +BKQp5_c +X"aWm-RmuBC@RsdBnEGeR'ʒt%` +hx/+E}<L/ $LcgW[_vF |D[[nӗsCV;gwk9I~7cWxY"ߒ^S{>a
']_wïx@kxR@KiqSq7']!)ƶϰQ>4\>5b=L1&Yn
jY)'; +endstream
endobj
1387 0 obj
<</CropBox[0 0 595 842]/Annots[1388 0 R]/Parent 1762 0 R/Tabs/S/StructParents 23/Contents 1389 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1388 0 obj
<</Rect[411 194 418 207]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1387 0 R/XYZ 177 111 null]/Type/Annot>>
endobj
1389 0 obj
<</Length 2721/Filter/FlateDecode>>stream
+HWnH}W#)6ؖ6 ځAS-3iRIqS眪\&_Y6h4%<Lj'N.]eU Ėƞ{؊lۃ~9e2\-ljY9|[z4I$-k{VAdV.$ۑQ=mE<5KFK?G:`(9Zfmtw|kAa톐d@Wa+BYCx0yxt}1
^\=f&,.0|ҡL\W͎}]
\lHB5OנmѽuuSw@"n6?d2aqtr@T% h +rtPUEg{^`\.t_G*!2v8H<!X#=w@M[?ħt@DhqZ~`!-Xx%e5ӓ|ߏM߸flz&鸁0vi]٤
M
fU ˗\U%>RCqP㦰+j3yw7"x=v<å,eW(uq\d<>%FY#+:]"- oG<bjUKQt`!.D Q h_B+`M=CG_jbNaWy>{0DEY)=pLZJUo˂A0vZ3i6`OI?KBfJ4B^~uj+|Ob]@+o*a*!AjP*8BZ5$NT;Xa +@ ^q('k:64\WyE*+%) nژ',]Q7)Sٮ5D`0c :-nAjG}w~&Þl^+8Zϳ
6>.Z75H!ҽn+p>!O8)E] +[.֡3 wdJ%uxqz=dMD4?Z}`,EA+KItA-tTw +IC2$x5,@Jq#E]k'HNt}V+^JxEAvackADlL{Ca2)i +͊rZ`?'!v*ݲC +Ee*7{R(_t3L\KxOjbZ61`*-q}4f1Vj`QL60)*8N?gS*MgNGӍj?I{+%'@j%:?cE8kc2rRnԺ$On/`}t(@~0pK]rO4ŚI9c?3<q`{(ǃ1 s?l[2&\< [ѯfn7bpLh'܃LٞDW(E~7czZjqTkTF{i=66]G1;=K.p=@qΟLDCjXle-K17mmt;jU5py}N|8Ȱ!6 pPKx!@#{Zbˉ? +->8:dFbV|F%汣Kc$|FIqz +["s +endstream
endobj
1390 0 obj
<</CropBox[0 0 595 842]/Parent 1762 0 R/Tabs/S/StructParents 24/Contents 1391 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1391 0 obj
<</Length 1737/Filter/FlateDecode>>stream
+HWnF}W#[; d;ٱ9;HЦZ!);&5Ikv9u5mY?8vrzY^<hM;<,"x.gs|t4%&+GMҔvdqmAG,~d8m",1bW0<^y6A-GQ|EwOIs}pf@ ,ruFllƯg=03St_ӏ:ɀ
}$o<:.F+}.Tc۱ymPEͭ4₧iq'+U,kɜfeQxv<FGQD60VAX+D)`q? S8b,+XAxnI<ŜL84 +ƾ!H3$7PT'A~?L y~?ƴy7m c#Z{E8(3e -dl(ָmer8TQfOl'ʼ=@Lϐ@bmhh⍺x
2Qm[HxA +HWj=i]K3@Nx~Zΐ0v!?ħi!5d < +V
Jʕ!"{`PThZuz[yBDq?|ΉOQ!*-2Bv91)0뉼2pl{ +hq>io806jr30:Ч-t;ӹu(Q~2]뇎1E r<bjMxi/ε<C!/=E6#JZ%~mY֪-%rتX +endstream
endobj
1392 0 obj
<</CropBox[0 0 595 842]/Parent 1762 0 R/Tabs/S/StructParents 25/Contents 1393 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1393 0 obj
<</Length 2086/Filter/FlateDecode>>stream
+HWmsHίj4T0]R @;'咥(+"CnvIL<O?O"aލ'E;Ou%8 8M`|wGcLx`:3
p\]7w)x!AW`+>zcׁpB-(d 1GCשGg>8Usń
&-0qdr?WSПY9ݺtp3\u5g.<j +#WbX|hi0LaqFO>
~?薬nm0ɮm0І r]GEPyqݣjMh+vojqstٜ{,z 9됣#VNp\"#
LJT6ZTxJUyq/|6lt:w_'H?xօVy(RSP<VT,4yɱ6,tRP# +$"třDg:n]B)d鈎nKV;wո?O]н̈3d"L1ޣcFl+=>]RL׳byhH퀕̝:lDOÛHs\LDX,'Ze>QP-fS>G?ֱčʸZʬ&e^?e<?eA$[(!e5ty3mM}Vh?U-Ul`DBKO8K$-V%8CGCk +r?0v"eܨ|`%JǰUs;dD{]WjdVwvީv?j+-w?_c(xt1ͯ1 +HdqNːIcv"
=[ܦ!l8:9XV'>,ȃLP +h"ZBM.ܪ*i^O1l#[ɗ![dO:q(G +I?8yip eq#Q7ǛK^F^]V#5X\9G#7X@nK*V+ tWQCJH/PK/K =V6o{Z+?'jfBآ)0pj&fC{kOx6[ aVɧT0,NE
k0$|{W#JITle`C+ ׅ]|~Kg:1A)1Cٜ|?bSN&VaF#zo~[ga8m$o#wnsw5K +k0yA`3^-}lQ T#Eӑu,)7K~d2Sp=*%Cjh{mHWiL)Q#QJC,6 47r!Fmµ3i8HU]{Yv&1>dXAU۲J>iA +SIr JTq Uf8lF{I!WW|+ ,Aa# +endstream
endobj
1394 0 obj
<</CropBox[0 0 595 842]/Parent 1762 0 R/Tabs/S/StructParents 26/Contents 1395 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1395 0 obj
<</Length 2392/Filter/FlateDecode>>stream
+HWksίz?$]d+N4IJvHBI%5ӯsNJ㤂~^WUlD +(a0dW2`xs{/Mѭ\3pwI 2zÏ
+7&$2,O^_|P!wZNo#T# +d
/ddogs3 ,L_.}gH;GT9{i^%|%`b(^z q)Vg@pۈrY~¼ܵ\^>ׯw+,71s%@})*ôYs!YY=J^hXmMZuV +M\VRH8Q/7YkkK}:]O?/Nj+Xy4ok~4Aҟk d4~>NfBĻ6HRsq$mcbTMl 2 +B%$EӁym)2JXq(&]XҭR=@pVD^m_gUIޕ wqQ";u*0FcaL
Eѷj:4Y&q ˃_BLC}"t
aB"-JSn_FD~IR'|WI"_şwdVLT&yf^P˘LR@Vp\Z`ⲶC4rS!0b[=Q ͵Ö#S+uH2Wm +Yնk**e*xIF0 NSI3RRbWM$g<
0yF|%d!ɳd(R}kxSʺyHŋ픲RK!Jfs +@HQ%l|oe}q3M̺3^cUwjyn=;| +Ց/4sJMlPq"h@O{6 nWjp6ExG?s'u;U"qRA=JM4d20b
%n%'pqܡWк,S/:ǖ<j#ORqs̢?7M?%?c*Wd[:eG\+
sUEN)K2Io㈋j$'5j/K)yҌqIodbǴNEWowRRF`V +.@xx::*Xnp6ݰ3Ldt +endstream
endobj
1396 0 obj
<</CropBox[0 0 595 842]/Annots[1397 0 R]/Parent 1762 0 R/Tabs/S/StructParents 27/Contents 1398 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1397 0 obj
<</Rect[411 626 418 639]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1396 0 R/XYZ 177 111 null]/Type/Annot>>
endobj
1398 0 obj
<</Length 1200/Filter/FlateDecode>>stream
+H|UnH}+馛4)h6fٗM + +"*PHel/R' 3av3L0zRK3`BRQ^_2Zq3P[+˖&DQsq8}ppQ?sZƣ#e̻'͇%5Bl!)?vofqJ_u*c>=[mO6p +MQ*?IDn^%Ǐ@TBtk8[4?G/C]^c@R=+7 +wTYGƬWHIf0+E0wE079ċ9e U{XeC3^tH*KPwj ߊ4'r0dUSoGrҍS!5dtIuԀe{&OH՞o0ņv\+O\{ʨ:0**ж<
LE)]9[0Y2g0o%(~8MmWo,/,MguH?6<@ H=hƖ_ +㗻e3_`w7s!7_M Kyڵ: +264Iw+97#iT <#W-FK." ྌD:9p1Fۅ~`-g'`9.RUO7¯KBQyo+N:P |@=/=)8 ;^kQY(}0H]Jz7-Z{qF_WUs*m: +oM3G&[\v-^K:xRՑ(GM^1HI4LZên`7&wSĴV_d˫.I&2)!UMTu %es3' +endstream
endobj
1399 0 obj
<</CropBox[0 0 595 842]/Annots[1400 0 R]/Parent 1762 0 R/Tabs/S/StructParents 28/Contents 1401 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 1561 0 R/TT4 9677 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1400 0 obj
<</Rect[517 276 523 289]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1399 0 R/XYZ 177 101 null]/Type/Annot>>
endobj
1401 0 obj
<</Length 2293/Filter/FlateDecode>>stream
+HWnH}W#0)l&-M|Xfw)*fF=Tu)Q3&$rԩqRӢtw(s +I-[E/apvaP:<%]G +X+g!`8u!Y:YWֽA \O0#JǗsW@Գ}<=]'3<!<A=4<XyD7!Y+|B@}"+FCE˘Co-_ʠ=inP+$ F.D3<k T4Fj5Wrۣ],^ULИU7Z9^nՏ>C akgBAF txuL7QaUTUu,dG,Φc{4=~`1GNdDH?t<a̦Hy!HN['`` y
O./ħ8li<2K[|-ᠯ!0|U)6wo#f?6}ҧtYK;.ݛPx
Ґ;o10BYfZ=+^ta EeTÝn
*dw@41ߚ^ܮa"[*[~>U5|KԌuUOeU)wpg]&!niq}[Z5B/Uhs4V]OQ?fѮ~)hYj+uڴT+1hzxtQIR(-=sFWjRD,R&O_i|{Y&We/u:";"A(bϬuC|7Y4s<gYb +~ .G&C2ՊLi)[GVlV*@QQJr
mUE=i7!&Y{`uաV}B{V"W":l+?+u#k[p7S3Wt[Dl&f{=YE@x +m]ty\uU1,ceCm8^Q_rv5f`GRuhBӴ +o'UOPЭ
7u)1_+1K}O+Kht_4[DJvG\q*ypFtED+l>3=Дܐ^04ckŎI;vnUU%TNX]
n{!eoa[#K/| +X/L,cܷU;m>}Rβ-?X?p5lM~Kꎱot54i/jFSmi2#Ee7g!7xKJ<!YO(ϨC-yVO}!-W#}~y̒Gڔ"q[':321κqAB! +endstream
endobj
1402 0 obj
<</CropBox[0 0 595 842]/Parent 1762 0 R/Tabs/S/StructParents 29/Contents 1403 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1403 0 obj
<</Length 1764/Filter/FlateDecode>>stream
+HWnF}W#Y, +/ç84}`~)1"Vp̦hXP``QA2;]Mg)|B8!^!ΒlaXva$I+dza- X_}\q[l<]ڵj^o]6_!^.3#vuQ2Qwٔߵdp"J
G=
U8&$l|*w ~)tS<W/u,E:D7O6rl%(Uw쫊d]LO!eKgp2ED2jUMUoYn$3Heb8ŹE&2]mm
`M6IMk[; +lanG,j'Z*Yn<"̰JZYD;~wz,@JZYV +~> b;aѴj6(~];+,ȇݧũb>zӄ-R{S[mqa&Jjni3l
SltrNc1<^*PcF$d "f&Ec!psiA&M9:sY +wHsK7\$Ě갮<O!T,#Xr+쳬-ȜO?FYoX& +Ӱ)X14j.kOvI!Ú:{L[I/ݯSEJcD{H=Za|4â[dy32dX(3Xҽ1ڰk1MW/}Oi\ኯXt)guzY^x +M](mRV$Yk܈gULߣ~ݣsf<GmM
S{Gj +endstream
endobj
1404 0 obj
<</CropBox[0 0 595 842]/Annots[1405 0 R 1406 0 R]/Parent 1762 0 R/Tabs/S/StructParents 30/Contents 1407 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 1561 0 R/TT4 9677 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1405 0 obj
<</Rect[265 645 273 658]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1404 0 R/XYZ 177 227 null]/Type/Annot>>
endobj
1406 0 obj
<</Rect[381 536 388 549]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1404 0 R/XYZ 177 111 null]/Type/Annot>>
endobj
1407 0 obj
<</Length 3222/Filter/FlateDecode>>stream
+HWnH}W#4lJN`P"1#AjΩSye,hNbv1ϞطS.6*l.{/t8g~2\GI \Wo]Glp5\f.[5b\b>wgՀ+̂j$]nl8pc7w
| +#q0'h ds`,guq^{8?Ft!tny^'Nh۞skG*\C^q%ƿ=Lpl(9Y.[*yʳ2YҰYmcBh'PZUMLӿⲄhy`<zrMX8!$=^P-Moy0FZ0E-mu4{|=+fÒmVE:(.RS> +3|\&iO5$0ՎҪR:l꼿RK3@E"|7͜#Zpy6v:.ؒۚO쟳FNq=<Ln~L|m#/Pe!~yl(IGzA;@(wO8' +=C/do''3?pڔvkC&ӜR-ܺPPvm<WxڜzΉ[ԚRthJt8yJq] &cCVVГ%ߜi2B~`T|\MjWӧh}Oaq2Ru%ͩ6cnyQ||=v\$9KR<Һ-nCS}OOplĽ_B426=_}
CL [anɓ?w)\>YAruD(+wXIPi]yeVd*VǵE +qW4hIUJ^]iq2IJhơy ;Zǹi@zRF@DT/1[O!L=PZ<焗\Cȿ +^A
@?0mk%:
AVA I\FuA
QyD2$0OF+Ư'D `;I~$2Mhƛh^eZfQ/뤒|ľ6ۃ +_ɑ)r촗~Cs;01мݕlM^%J +~|qLm',a7p^W17iqGcPfĚ&il)6F +#KY)un<ZjR! <=zpdaYeo`
sΔ{J;i +b,AUn,rh>~tJvZ|}#Cn7FrCjCZ2xwʱ1;aT!CMn^6# +p҇@I&(i{K4KjgQQqE3}R3aEEŘc(9lS&x;0S3讒M9Z8:{Md +!9f=UǛ`6
q9~CZzҨpjr`jUFgV7HӐϫr@}D`V|8ee`b:i#pzz@ +endstream
endobj
1408 0 obj
<</CropBox[0 0 595 842]/Annots[1409 0 R 1410 0 R 1411 0 R]/Parent 1763 0 R/Tabs/S/StructParents 31/Contents 1412 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/TT3 1561 0 R/TT4 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1409 0 obj
<</Rect[386 422 393 435]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1408 0 R/XYZ 177 139 null]/Type/Annot>>
endobj
1410 0 obj
<</Rect[297 407 308 420]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1408 0 R/XYZ 182 105 null]/Type/Annot>>
endobj
1411 0 obj
<</Rect[404 254 415 267]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1408 0 R/XYZ 182 81 null]/Type/Annot>>
endobj
1412 0 obj
<</Length 2540/Filter/FlateDecode>>stream
+HWnF}W# ,[n^ gcv4El!q{yQMڰL캞:U5?*|5Q]'Cbe>ϗo_'&b6,=.c{.D#~:>=al~pYZ1W*p뾚͗K \τ]_hcP-f=}< +`C8zl9y\̣%s\l]]ӗ'5\Wl2 +c|e&DƄ[ktRۉOoӣv˟S}+isNHo8]l%XaZێX5kj]ѝF^pi;%b~؍/bgL@p7oIcll^0Dlm[RHFqBR<3פNGceυ7/2oŅssr0#K0N0+8x f$(=Ok@bX4_<촘Bx9K-zj"-3BxJ +D:_}Nӌ"m<~`%Q oǗUdg' +joL|K}טVn\E0Nv#48V+z?;F
jJ{(2Qw/uVMЎ1b +6-#ƓIݮ!ꮋf4jN +3n^iLXAYirۖ}RPQk93[H:?rtr.4Or8-N9
ƽT{J?D)[I쨫hy'yѫ^"<<bޏf! +k]idjdq~==,xwnrd.A)2qk`HNcDh6y)\Ł!A;Ma+Q$ښ723b6GD9"[@r];c(PaYٰcGiAriL//-V8Pbw?hOw{o_&h;C~|v]O- Bn{%'B RtL_Ǹj_x>:.2E/>JY!j72qOf
'ZL,Jux_&OO]QYf`cҌذJȒUlrlYIବyկF":O=vPdtjMSpP $I(>@W4`@_r>I)j|_5isےɶ#hkJ {X^jɶ*֘X֊ZVf9yl&te!R4,і')`FOES#coM\XMϸ:c.͛!ġpMQw텐Tvl1XIo_!=8ѱVVl!BO-rO25 I6wt5!C)p>6 sJQZll&O'SweJW2d'W!'I|gBIqId1K^JWE0"L^m!Cݤu&? +endstream
endobj
1413 0 obj
<</CropBox[0 0 595 842]/Annots[1414 0 R 1415 0 R]/Parent 1763 0 R/Tabs/S/StructParents 32/Contents 1416 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/TT3 1561 0 R/TT4 9677 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1414 0 obj
<</Rect[419 590 430 603]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1413 0 R/XYZ 182 115 null]/Type/Annot>>
endobj
1415 0 obj
<</Rect[411 575 422 588]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1413 0 R/XYZ 182 81 null]/Type/Annot>>
endobj
1416 0 obj
<</Length 2504/Filter/FlateDecode>>stream
+HWkOH_QqU9fi
4K<#-4ÿs 8qϊ*]Gq~u~VUQ<yoٷyM.zNJ3/M0ǶL[2oY6bid8ër6Cqg2-OҲMf$_g3]<]g0OҟȘֱ"g7uwg6FfaeI1'/`4MxЖ%
_*;[]{xMzR}J?צ̻W{MҤ'OC +ֺ!58ow#/m4
n.z9%bg^.7s]0Dle*)$#s1)M\:>+JU{"|Ηbo` ++f^hL.\̴2wEZ^ +1r5咟(tDg:G*E:EM~
g؏4(cBOpo $*SRE${JbuVЧ#Ns/tnOUA zC04WӓCKSê]Q^7Qgݛ_.?9G£EE¢QQ +2s@"o3mi_| /Z-noY=I۽8l%Z]_
E;Dk*+&ˤRHv /|?Oh6S4;o'1s>rx>V_$
O'c?vgF>l=_g9-̻ېUSA+~~-P.-JS{xgZ#btJT4.t4;hAQdk#\7mņNgoHoM:F~
lvx0bDwhЃH,N6t9
{5>.FOT<jÆxt3r ݩ=DzmƬ@cV$HZAd@=-T( пQx# +<b~&8P"*)E/Wcx-yA/DeiTMskr
k +A俅%#],:."MPg#Leyc[OdCe_8P +DYJttgFS(*a +ڣ\Y%Iݟ,(!ܠI +TNq<Ir"3hiM9j\v]M}6M>("-1Gvj.%T8Ii#h<VV8P?4ϒoM;ڎ&J`V(~RRUj|`)l7p2Q{S]`@e;CuW윾8Mg'%S0 ]m{c;zh +9G*1"{Kc /~DgsBStDx5QL+("DJ$PYRLi-!הc:JsJ26D+زծjP6 +endstream
endobj
1417 0 obj
<</CropBox[0 0 595 842]/Annots[1418 0 R]/Parent 1763 0 R/Tabs/S/StructParents 33/Contents 1419 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1418 0 obj
<</Rect[395 548 406 560]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1417 0 R/XYZ 182 131 null]/Type/Annot>>
endobj
1419 0 obj
<</Length 2846/Filter/FlateDecode>>stream
+HWrH}W#6embb"d=~XwĆj@"@HyX;l!2<y5d%iYFF-UmcNҨL\]_gg7/đ6,mK߮32'WMq:*mH0\P] [ROmA f߉/<.
'`G."'
\MVںGtav7=kf cW^@d_@V&<o|3̧31wKOA̯)W-O\!\WPI3 lceZ פP[mf5zl]Ө:L@W˨xb`(3lm|3#BPENG +kPj#XHl\/?lf1}yx7$$CBzumSm +
' +P2ϩt [bZQLu)ƈ9l*ѷrs/ݥɀn7CHW3*7- +.ۡQ{̩VtRT38B{DrIuP ?rS,G6)7WiZ*dv.PWV˩lWk9I(Џuo#Z\0qDH2D,"D +ZHݭ Q$7KGiRNcO):r3M$+;njЧdz$C<5``k심zg%%4P9uKB=v4l `Z<JcEԷCJP3`c-T9CoT-`H`$6#QkP^5_ d +|܉Ғ@KZ7!nGCF\gfz?'H2rd(j[VvLvG,ɭz.ƢQ*PΠ +/g@NU|i4z6fָ,lBf +[hΫ8^:rsfp!ﳪo!Jzog^a`h^7iq8F^jyչM_>.@PX`JzcUZ3,!C(_J6X%@0_1 +X@ +嚡B4N=4tefhu-LDⓗ.# +{4/%Gyų耯i3`tuUk-*2*4 +>$v64y/C!8FE3@*yW\WĜ¿1FnػlJ^r+L_f7Sռ%f8}
]sUjia ԅ]@.j{eQ1e"ITзBfMSsSPWX>r:HǡHK14|v-O^vc>XS:}߇B0d%dUgK +endstream
endobj
1420 0 obj
<</CropBox[0 0 595 842]/Annots[1421 0 R]/Parent 1763 0 R/Tabs/S/StructParents 34/Contents 1422 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1421 0 obj
<</Rect[194 548 205 561]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1420 0 R/XYZ 182 101 null]/Type/Annot>>
endobj
1422 0 obj
<</Length 1433/Filter/FlateDecode>>stream
+HVn8}Ẉht.Rln&Er\IqbɱP93pWe㤆wWu'tӨiOa9~Ί/xB&f2Ws"d=:LgKIA8TMQA@θ42_rnb:39<ZDˤJp82'O-lAaΕQ4C^,@P7e%Xkj_3hu}lL{鑬4h6pT[kQ.9РۍnN=:ayUW(:3a0@Cc?-DURH )Ba@)5ԙhY+W=g>XgיXǟAQ*?I9%AK@Lovob$) <7]Fc-ݹ%XaXH0ոb$:/4+X%DiG6@퍘lk;W\En
m֣ݥۙ|R|SHKz>^,ȑ}![yB8eCw07.8G=3s3E3^:XWu?NIW>şzhUlX^=
?ҌF3=f5WZv炚TFkb5J'q\W/ѱHnh]ўڣNw +J8좲qmy-2͟
+[@&eV7Yo+,1H|< _YWcmOK8(zvoDeK+ (a5u:"m}-G1_j.ʑ\{ֲ|I>geToR`ȍ|B|q8WLƸErQ=4Bb!^g<n[} S}OI.AvG1Ln:'|5)ŰUSzʚrJ2PZ_md:+ܝ'BÑ1Gv́nj1G@ۏhqiɨhptBZS]tt1qF t{,ط,UH +TWҢMJ}2V +:˻![mQk*gTmKh
lGX&Vcm)!xdɆ
*/[z47j FL&#gƵ +a1|qh +_ +endstream
endobj
1423 0 obj
<</CropBox[0 0 595 842]/Annots[1424 0 R]/Parent 1763 0 R/Tabs/S/StructParents 35/Contents 1425 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 9677 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1424 0 obj
<</Rect[510 267 521 280]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1423 0 R/XYZ 182 81 null]/Type/Annot>>
endobj
1425 0 obj
<</Length 2731/Filter/FlateDecode>>stream
+HWioH_) ؼ d5v ʼnDjؔ5x%ڀݢuzU5|fU]J-IRnIk1}ɋBL˿ aYN,|϶<WD2"d4"_b4G/z4I[H,GҶl_hNY'";BvEb9 +Vi2y.}[N <zDFBfk,\m7I&"ً&D{ _yb>dc32OLZ7]ƔIkHz7p-:"Y@r,mc96]C>E#ewymnJH!z6t;83e16H]ZKl6B)$#Hi >sM8.+W}.3XWz>3o1onLaȐ!E0 o1~XxCaDyf4mlq[IxA:oZ5$
-{(}k!->I/6tF@(nC
![<kq89{wM jP6{#G-R191Wٮ_ѷ"##@3ElߒQGs2}:#²FTd{6u_T"ϻ|]y!yz-R<ؖUW=l@z"(ʺq+cRlJ-@˲MYۏq]،n`NUVUM80 ݱ0t[gcGUYJ\_rPtp#nK39 +T +7>psҁy@pT"ue.˔t2(K\JQ+._ȋK#Ey9ROKKG>[>Bj|O:KARк +Zs u0U ^uJA77D*9W)?Ks@GgK+dHԆg8̜o!+qKJh5r>z +ٺe[m +bt]Ԃ@kW5ѶJfׇp>0m6]S~ ӟ:@ߦ_ޡ)96~JPUYjՐ4:8TI~ETC^a.84:D2x-&=mJJLIHWf"~ѩ0C!|sպicЪOMV0qBhmI>il ̴{YvWf7E>pJv>)~2h,3Z5%nMi.uډ%*$o!'0[Âf:zpniB϶5tu)p]->IGa+i~XUZ[^;je.nm8a_diW9-h~)Q+pV]}3·c+*СՐ2I)92jKzG
t%A.48b1sz7O.tk"QY UBFA]y\N
Lvq@ +z +M; Þ0_QNwІQc +h~嶡ʦ.:@GnO}S뭅ObQݸ.aȸUwk
vq7Mk<bYv.v{Pف1Uha>d\P t[o&Z2X/txŪAJpS_wض<do#W +N֘fٔ +endstream
endobj
1426 0 obj
<</CropBox[0 0 595 842]/Parent 1763 0 R/Tabs/S/StructParents 36/Contents 1427 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1427 0 obj
<</Length 2268/Filter/FlateDecode>>stream
+HWn8}WQZhF粱ft#`$Ѭ-y%3"uu$w$)rΩ|QTNDDi'c24Ugd~sM܀2F< mR">o67%݄rk$%e_}9I w3fRԓeԳoEL#zkޓI}|.Z3p%r"' "fڻvY-`G4O64#tG#Œ<Bdⷎa_+7O3\s]IrN7,>ePzmf7vv跋V4T0r2\Fx8m|(!:_VY8bYm+J'U5UQQGja{v O/ +lOJ1膣u/놭'r!|Tܱw@S:+pw'i?|MDQɣnp7ɸ;%D{0)WB##|0NfGd,{~ۭM4ETͱ"5E%TP`EofR8B8&VO=R1V/mi@Zf."/!-4"sacRI?&ѫXյ;ݹG_M86Gk^Ȑ~
*{mnkϯkе;p?8vT%sHI +\$7w>^u[Ykg&}lj5IkyI*%ÍS + 2ʽBYAGIt#>Le +W3lnzUA/KdhW^{2L:~TL݇CtŦ.g-^weO7{p9x7JvLwvXIQxtyDZ!-GX&~w%SFXK=$qg{^_?\2)| `{|^QP]QqM +)J啦VOq٩gdR
젶-gMF@ H\V2G݃Iʴ!XUpP4G(yy_Ivpjr<)+<fN1ZF2`nע7y[l-d=aAZ6´1h( +endstream
endobj
1428 0 obj
<</CropBox[0 0 595 842]/Parent 1763 0 R/Tabs/S/StructParents 37/Contents 1429 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1429 0 obj
<</Length 2255/Filter/FlateDecode>>stream
+HW]sJ}ׯGe3|R-;u6aT +]@o0 q\{oU9ټuWl^UQ$V0|hdQ./Mögᛦ
?|\\2̮&%(l26d&0f&/Wi
7-
&^Lw{: <9w9&'w +gc*GXiZ1Е@|x7aSG +ΘAwݒ-~?Pf-V3f]˦u]ˠ+)3T4:Dmk:3 KQ4TOYutw0Z1>E>*S@8 #3,LXlYa
+Z..l?].oՕ35?ģT&A2ɽw( +gqUQ8A$R PZ]c3!VN-ߓXz}N-Aϐ@=83t1&<=WyN6H]E!Wwߦs)þ2}T&M@O)P1"QDNף R~t;^mnCux㟈8!-Ov:XT6X0 +ލL47?'uõN[xFFϚN}LG=S&A/t53F9=p +dCN4JmDGݣrt{Cn竏6Z@h:_
Y9S%/D/jquwbۣrFdMbn3?'(+"Ƣ,l6:,.GG4ݨٌ
7wIVVF6"kRN$Ӹ>n2l{16 6bLù%3X["KX`W'+ғ ݯijHsԠlys=0$ü79?wDշֶi䭯[d"OM SsO[Uأ*T3`q?HF9ptBwu=;r'16,iW@W}o?ABɦ煣=}WCj=88bw{xjDch4\Jz FbeO,cWg(ĉ=QitD) +UjK'/h;k}Vj;̴ev}
4U^I֢w9a1{Nܿ q}.>v8.NP?U(&ciL\7d~*تA`X?U,0ÊL8EIQ(IǴ+,<i]4^+Up/|%ZQ&(*+l*(ov_jK+øFl|H0pJ5.3n䴊}h$xp? +endstream
endobj
1430 0 obj
<</CropBox[0 0 595 842]/Annots 1431 0 R/Parent 1763 0 R/Tabs/S/StructParents 38/Contents 1432 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/TT3 9677 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1431 0 obj
[1562 0 R]
endobj
1432 0 obj
<</Length 1565/Filter/FlateDecode>>stream
+HoFSKzHsR%JCyѻڦ}gcc'&Ref<I4k͛ilm0N|';O*/&/O?4"0_CpHf1|yv:hƳ{Y
:+F_U=' r$8]>I(k\B9&n}8]KFXB+huPrtX'ٻ9<}._\Fd@O +7t`>3Г SHxUd9d+t=ڀj./w|VYj($jSq_@kZXe"T(Hԩsm箈+NzDegzΛfЍ?= HA@F)G:۠?JC~H 1mGw[rtw9_i$-c/ +|%|e.E\NbjL+Hdװ狴P-봆'c +lMѠCnWS<m, +l[9/37پgۢSyc~S!i2
fmhfq=,ss +)lgQeWn䴎V.m9V<q}Ր꼒;6mQf{:J(p0PlMzcV-& -@iAݠm!OTy(6eXK\)6Mfw>fdEՎbu`j\/tUqei
0hu8LZBĠCO-Z[D:ΎK5ptL+L<l_9Q#}bypэ[Qos9"1[K9@ vm+3[ʸ^Ը67<C\tHwWC}eMUEa6<dD*bf69dj<|iN|*EMY C&:E\s1u-=8/^SaIgoYz7x˷X֥tr{ +nQwڱrSri>W&= m1mS@!J.Vt|Dz<h
fx_n<-^#Yj +mTtjܷ~eӞFQP H\|J:!㡼HM
b'"$RZg̊?]Ho롇2f߸e_ +endstream
endobj
1433 0 obj
<</CropBox[0 0 595 842]/Parent 1763 0 R/Tabs/S/StructParents 40/Contents 1434 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1434 0 obj
<</Length 644/Filter/FlateDecode>>stream
+HlTn0+HH-E ?P$@7n"'*b+.)v]߮yUWxk٢zjUv[&/ +'Prh(%l +'tP6ɾѭ}y Ul*FX%:ajA%v싅EQ~( +F=a%Xc"&ɮ7.4)s`BCƢ<RM^aiAÊѩH.FiVb"j7,UYq68"K(|yMkwkz8gKe5劽նmŮ:Y\/8?'fTP!Q(Kf?xO +endstream
endobj
1435 0 obj
<</CropBox[0 0 595 842]/Parent 1763 0 R/Tabs/S/StructParents 41/Contents 1436 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1436 0 obj
<</Length 3585/Filter/FlateDecode>>stream
+Hms۸S%9x:77#[Jԑ\4(ƱRI4@"ޜ?_O(_可[vq{Xvvqy/{Y.%˭ʲn4+/+6,W+6G&ܿy\GL@ +.௴0<7JhV~$lX9ȫq"Ѩi9 +'?eFz0:ˍq3@|bE~O<P|Q )K +.F*\eIm$H\9̪-]büZSuBu6nZEi$ō:"jv؝~HnNG|`Ҥvy.ϳ1RRYTkgDeQ9b`[[0f~TNpd[?ܱ}߲-?Oi8s&Ge{b~A0ezvJ\ᬄaӑ[kw\AB?l%8;w~˻Vu:,:t&Nv~i%_bpϿ!xPh\4qUnNǟ=:9Ugoçaz7|6-$ΰnqs}Ȼ'GB~{w|:PCؒjcKy{#g$Ta漨 +% +֣ڌRE;5Q@phL*{|2yNjP=>)MMOR՚(|3\.@Pwh%>̫[|h!i70ޛBW|a>?&9_"ˈ"&ב|;Ny'A?#J[x!!NUUMu]:PW8C39C3 +4Ru!URuG]a3tmY7] 戇,E ͽshT$$$$$$yn:Yt=A4$si8MP PjS TB
TJEZ +׃VU@ +|5zݟ-`IU(MHe%dCI4i$4Gj4i$[s9 JY.ܦ`ud}_;VE6IEw3#h$32LJ Ju^gzfj`zfP*23(3R=3(3PSfA2*[jfjPh.eߧ63
(kE?$I,Y#O<<<yz7?FtM7/A<?(P?(RAAG=G'0Ѽ`\qYcA $iI"E$IH/ɚlŬҽeU!_!_!_ u_n J@ +!T݊hu+Rt!o'wgM@^DH +H +w
gϙHHHmRD(EW8p9/
w!h$@tA@NÁR=5R=(@h@@m8H톲guQB!T{X%4yn&oS^hL1"~n!EnH#E$᥈dJA^Eʮ6"44*3tB*B+BTTOB
TTOJEZ +zP +z#Ȕ9lUs-yeݘpAEoCÑɔHXu倔ujr\t
&2Y2YH-#z~1#U,U*RI)(xӬFuM6+A9HՑR=9HՑTAAQ 9:=
/آLou,зؤ\>\ ~(*IcIccXK#^-K=%?ն8DŏɊD8* !UpPL2 +GwPQdl :'EC.kjߥuem 'A%um䲦Nz>E6@=-ãrrPX )曩!(:Z|},WusM{PZط$ewgw伸^T +fd8(]c!V1ϲ|sz9CBdoVM~o7wo
ދjYvnZ5uUҟ}cRTg+4҈g!17e֩r)7qRX^4s=H WE}M֬Ä{Jl&1[Hs] lP)~B²(po +
TQ[VLEBMz܁ s]Qz.3X@V$LUO;T*ݱ⛛nk7tx_N +J(R8(Uf^URfp~RN٧Ƅ%Ƴ[t5[yGo}
Roqlzc}pr.lLvסH` +endstream
endobj
1437 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 42/Contents 1438 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1438 0 obj
<</Length 2545/Filter/FlateDecode>>stream
+HWn}G*Ҽ(M<cq6MZ6e>U$En +nhCb57XoU
j3|#adMgfMVJ%T\¥8jwǏ
^)vh]gC[B#0ڢjŊr|qukr÷PdR5{O=] 3z+91at&DAJ[q@DJȚ1c|9W}L ;(KM}& n?Oa' +$*c6Zmh,ECWƇEzq1"e0*AUJ܉GVPjGyFJ7EԬr#xs[/qc'0"eWCG*.=Ud-!brdT*;IGD:-9喴v[၏&,]!ubvP#wxccߏD-lmmNާWeDmfɆ@=YH@e2"G6B#\M&CN0)Z~$l]W[Ef 0<3/X
Ld+&3ND^FwD3'b@JWtq +5.u6
o]U-EAt=Y/h~F9[.E4Y*e۬U>I9!bQfUYlk^9G$$GHaz]+QkԆ˰ϪX9G0@xaҁ{VTt,}8"EB=xw'-t~+(㌦@=A5 +=I79!'Ր7v(cVwr^(s[9xO+ˈ<Agm!}eQ-%DA:[֦d BWQkn"ٯ&OtŢ$3(|WN0ݫ֨'~ox;=D(4/|i2KO`tB[@yLW1"EPT2mk
Ll\EQP`!WP[(\zr~b?@tsgr#HCK2øWRibUitnk7y;F*zVtV +V|jY"C]s==F +CIq|Un>/˛O8J.P^O&_?D|Qf|:iJI"&pSW&
f6AV8zx2\M07epҿM'Ł$1gZ9aUM# @f2D]Qʜ,W92~RjB3]6u
%sVvᷢG+ʗl[g?[pEQ5FgS>M"앟SpFO.)IHNi39t%%-B?O$k}{Z<L\u'ժu6I9╼&m>*{^<2]o,byG#ȑH?r<ќjŌFwVG +۪u;__B u(A[Z^Ԅ3WzR|#/q<ŮF)ē%*Ζ/KԂXEAI7`u^m}hE(Qy7j^7TqR +s*chEϫT)=k;;q777~?]O7VVC:,# kcZ~}
wJ VBR;r1Ow\<2پM +2+bݵ9TY}ө:o7>Ln_鱟Gr8l~'`:(O3恚d/c's& 88 +IF7:,@ݐ?"Pǰij-!b +3.qH>&x0>Ҟ}I: +endstream
endobj
1439 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 43/Contents 1440 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1440 0 obj
<</Length 2375/Filter/FlateDecode>>stream
+HWko_1¤~lI*pbbZN`IʚD"$e}ϝK
Z4 1iܹsν3,kI~erY<Yg)Ŏ}įMny-M?ؽł5yiMe_~j6ex4.MT̔Y;MdW#4L[.POB32tXil:FÇh<=>y3L7h5h?L3lt'/kDr^[M2CYcOc)CdAtGtK^2jpEt:.;=,Nqkblj;<zfʠڴݨvv2ohVTfճ}0`=iy#6ܖNXX\aA~W9U:*V[UWD- <y]-l/}:ՙC + H +ɮ';HڱؓW'ծC[v3i[I;L66%wxWQip_Ɠ4vLojEhQ#҂jOJ(A 69C*$ YҼ&#uH%ESQqZjEc˃BxV-&[Z -VnnEջfzce>-ld +[Rr8-(Nz@a"t}SAKD^~XK$ƫb)^T$X{;iÎc]ztZ͢?W3'#"kD2TŢb@bUU,/Tx-U%!bח'
+endstream
endobj
1441 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 44/Contents 1442 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1442 0 obj
<</Length 2402/Filter/FlateDecode>>stream
+HWo8C%zkX qC4 +v"e:f+^=濿RZ٢]+93gywqR_eٖ<."q$_ۑ]̳"#s<zA)CǰB:$CŒΣb6IRSG$-
"LBIQ0-M[ML#oޓiZE3Ɵ\/ZD7=nTGwIZ^]u]Xi>W~HWr21BG#6vْCfnd%BY-f;zW&T[̩溭kQބsh4,?Vե6g{0`#j㬊9@,[A +mPQYX8'p`v/ӗK<Ш +T I~hx凁ca>Xր#w +3mz#vݣ/mUubA/-8,VSr0Diˇx.-lx<w"sO+~Sm\dP{Fq%[^|_,#$ ȞYN2ƶB{r2\TɈ&6.cp+q0u&>J +U*RY7V7}֢۶UGH"lCdƑe9_DDdC)3>ĩxǠh1D$&oxU:^YSBWɂ%U7Z.RFP͔OSٞ19RF-&A3Nl2\ 9æᕅLe1S*bC">xJ<śBU`n +p3 O~e
'wG,SCo䀉A[Vm?(%)js-xo-aM1ϦgQߤLfVÓ#G\xt +v<EgyKက%r[mIǻOH!dj@[CUqF}q4n*5"N<TZ/y3*j@Up*2^]_FuD>[pQ3[=6@=FȹvPtXOe${a@97Bg >zt}*_ +endstream
endobj
1443 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 45/Contents 1444 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1444 0 obj
<</Length 1799/Filter/FlateDecode>>stream
+HWێF}W#0)63عd؝ْhSll}"E.1o]]uΩS=Jk*qrO"I"eL&/e [xb1crb=\XlEOngS&tiCZBOhS&Ibd=be;ʵ=+ c+tlȀquvж +Xi.pigv0gө ?(?HV`;amPx<!X#=O@M;fri~")}@oې!lb/ȷMbkѷڬr2P[Ɓސ~AIxr~;TQz*klXO[FeYN3 oUJvșu.2m^CK|>$*9b5LʚÎM(x%+56`(iT5$:5GWI:߸
. +35Dగo(T%@rrl:1vMHĚ N&뺩xf-JSQ> +akў|+䷼( +CZV:"jco;-HmT
^TzDWܡ}RYC'<JHN8;p2s/zEzRLս,qxM^ƝPj_["U x'diS3VW.tyup(]i֏OڽrBF,nO}<>-Հ?ZϷ3f^K828W\s٥|a,r +Zى,JTpJUp[lI^HN#*Z̓$@gZvw8jU;AidTVC)uZ1gܔy12#XkI~5jo.J]%<⢹Q4.vt~ܮvlR2 +A Th$q@r]I2tc?z4K
ʡ"#( +lEG+=+険.UǦ> mx>7өTiHmSFmeʼnU#W(<lS;-TnqX&O7DW`ih7C9G=[^/kukO>&Ua OweF-JOOG'.Ѵ~[L/Tng:Ds
!O7>zBԡQs( 0~}8}JP2{J[wkga<ꇵP +]mP\?uo@+R +0 +endstream
endobj
1445 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 46/Contents 1446 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1446 0 obj
<</Length 3666/Filter/FlateDecode>>stream
+Hoo8St,H6E尸\Q8ҸH쮭oC%[Cd=!#utOq]GrwT.OGo982_rANN;msƈ2(Is)Hl^P*ɧ?I99:aMh£/QYRH4a4i67 +RN_'fӮ14/4x0; NR9DdڑU5y]w]/O/3ڂ +R)=UhwQ;'{-6ҽWQR>;"˔)DBr'l\Sq,g:eIAg4˩-zw6y7[V?SF8nL0hU:#v5؎ +یU;r`,)9lz4#TE_nB27!5')n៶DrWւ)7+%_n>'u7ʒ9tnJY4 +2bD˶OEM?IʩTu|UVz)\7uRΖCs^t<iw49+6|{[}[:Y>>ǚI$+rL'Y]AYݤ&Ǭ!ernϻV4vL&.{1d oiƓy=+÷Uꡞ9.me̛a'ϕ!49n^uJwCӤjp
OUӼ:B!Ea[r+{Q8mjՔr3V
+tg>vBs
a0ed&/H01<# +f$_6 +Gwt"t +s@1Z(1e=mܸ]b|Xk,Cc689,cfkI%~:(oJI䀽i8AhX:s8gd4Wpahu,\-v+2j N1MPkTE{"9EJ܋ԸY^Ž({ٌ?lrlp*77i`͎tn8u0|w3}ήi܄Sg~[jmMm@DtوG4H_E;L妰5TzĘ3V栎RS>P,yA܃b
IUa6C`QU̕ ژ+OBT1Wc<13UY̕"()Ff+_?LE!pd= 袑|h mD2G!͈>BdiGhq *vp]<JD4#D:ĠL]2M.qX@DDCDl
*b(mP@!" +N'R/ڵA4vtp
ƘƘs(#Z0sSDMK:}mua*SBgaFw^FE MLDMLb71\nb* +Tsb7͢&J;3*Q)ei~YܦK?8G3dMm.vvvvvKM> /Sh!GڑN0;|1FXc+,gEAGxTO/rXDDKDE1H6b(pyP$"ꈡa1 YP +KEؿeqJ%x^gEi4N:\(yNJ֝SE¢PL 55촶q[ q[k?%nߧXe'7mo<w;ݚe4̹("i7Rs3$Q;96.Eg#{n'T'j%كCg<Y[F^F
?k/lJ1ͦ"55VQf{1S-h46dX;:v@e'?/#ԀdiK=HL1a4JlS*lt`M'OT37&j<urI3Ѓ|'#CTҿ&qb|S{"R\B&q|]EyӘ64pnݶ[\N
.IEj \h$;Ab2%@yr)9{<}p16.UH:x`Z5qHChaRZMpӮ"i7=y-Zx+H 9` +endstream
endobj
1447 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 47/Contents 1448 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1448 0 obj
<</Length 2748/Filter/FlateDecode>>stream
+HWkoH_QjoH2Z'4nEm +enfk;gtex=cnjnk,t隩e&oF_shǪFL?+iP#wI>B2;mٶuSw]QYupᚏet_EӧS8и^ +%;`o٫`w&r*DϬLRwekҭ +eU+u +OjA'~hnEDqǺ"H
YK{;aDQ.d%d+4TQd#ˀnǗ{z7jQ=$!{Zt͖d9&ҏZ*qC`%M< W("4p8@ueUa@ߊd"b+!
+[M)5=/rĨUx
[ЛVrzBJISID-n9:ǐcd +2?Z@VeAluFo#%KAJͪl4TKzIK-wn{pRnP}"R``-ʺM*Ydk@Yb(F8y(Qv'_g.S74rz2Mɫ +%Ub" +}\U:T'>ڐ}ƺtl-]x;>=wAj(L3iD4%Nsl*7
LtZ ,ex2zR oG" _eY=-G~n_ +Zt^QiyXB!,}Kk8A<5#kY?oo!eH$o|vtUE.~; z6?EqˆXb!u+Cvdkr"b)a^j8ho|.$21+y%u
pNR7K~`nwX8y:4qwgFѫΥٽ
ZB5)uu)qT]ջ5?IJJi2]N9-YIk"OS6tw<dQ +ӁЉm̲<LaHKvyig-¡ӽXY;_yvUbbK| +¡b8p-t9Rv2|xvXp +.oXR8CFR]oe3%dA"Nvc@łƊp"%=̦hcC(/['<}99,~YnX9= <~G@<ɓgi)?5
3JS\N3쟢H`C|H蜡38v;9N0gZEB 2pZ:T`=+a|;|7*/؈C\KsÇ5ϸS':y{wبAzsCj ^U}Ѳ<]w;DF4{|3=n?ށ0ųv@˘FygлVa֦k8[Me
W'RaKo=_%yjֵ\YTCSvэ,,Ygnv haySsÆ+97crܱ]rMm4{21D7PY"*D;JAe-ly<gȸω:Y(_gGPN"`N +endstream
endobj
1449 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 48/Contents 1450 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1450 0 obj
<</Length 2627/Filter/FlateDecode>>stream
+HWnH}W#)6uA{-f jYL$RCRq{H`x9fgEb6;8Y%{E}E?v44<cX!splLaMΣbnd$KOdE&,ZMi|@}M[͢Dco_|<=uMM\CZL7+d5z_{wGA[x4mE o~Ȣg6B\x~L@d|j#2nUWͦʕY[sIAsйm7EK,rS[Mu[cKߙ2(6y6ꂷuGV4VYu!nT
3z?Љ6qcO(!9AWHmk+J'q +ojk|~__\t}$P +ؖq*g"p6"&TķW,OuK++F"?3J7x5͞,a.\NHq[CF4X)O@l'az^'-Z%_߳rEUJoJ2;}Cv + +T7אr/<k +;PkYW1r2T,;J, +WbitUCa^;zפ&T̷+..dS"`.|1_pФOs28IǰMWAД**MX +'8@ĵx.)x9,w88<ŪȷꮦX3TPʒ|Y*6^~[/f$nk=}5ڻUvC j:k}s撸kKD̟9)`w: +endstream
endobj
1451 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 49/Contents 1452 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 1561 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1452 0 obj
<</Length 2664/Filter/FlateDecode>>stream
+HWkoH_QjTOi4RlFN6gn.nm"%C}{ΩEQ8/.*NjɞfQcgb%*36̿'/8g~X"dc[d_/2̮6KJf_V&dnYٌh5e@}%mء[h;14<߶1GOͣ k 9`X&ƚM]XxϢѕ+
!pЩCx2yL ]>u
v}qkJ_:YۃKHa_оf{8˧6VSS,tm~x}fmۣUVUuDL?+h=q}@:;% +Ǥsut5CW^8#p`q51Lf> + +Z.W?N=XFpw1x:)zOC9FC?6-QPevE^aGdӍyZHzU%eUtE;^cv9 L 7C>E{h6*zuY̰Q>oŒ|Y1+rʠrsMj uE]{ƺxQ'J)wSnDW`]wkK%.U7&a{V@Y
w)wqun}b1h+4gohXXhi;-k1jiw(g5;M/H6Ӄ<";}JZP$bF +)FڶZ (c`zfhētaFΌNLqa .XUiHcq?W'xP"J۳Ɵ`V*xҴK__|_ + %1~{8sFx>=y>ñ>bⲌ +A2xA⡮9ȟ3'&B
tIXBB,o$iN'<9},JJmzZ68
ݕ-pB|_M;D ]{͙= +ak @59'DCrhyΖCZ1&";uf/qAYt&N~Bpо.U[j$_ vF2d +endstream
endobj
1453 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 50/Contents 1454 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 1561 0 R/TT3 9676 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1454 0 obj
<</Length 947/Filter/FlateDecode>>stream
+H|U[6~WGXZ4L5+vb3a,0@ ٴ8> E>]m|2>oewe]AX6QsHX2*d\ь1 /?.VKE̽-*/^5zqFY#$M%dL4b#^:s,AͪS1vauo?-˧@Opc"] +pB&=-KC 2>/S%x?m7}}A툁a9#{?Tltw/;Y܉B?s!9 ᔩjvTS^$BUZhAs48[Ԙ\+=2ͮknb6e +wgb +58hD#L+Ox:D$A)~/h¾nPpOlȏ+tnMJ.ǻ]*_bKP{IM);0'uk]K]LoM폾ȮFJe0LV3kjM +b"į}lq{D:z}A+ +endstream
endobj
1455 0 obj
<</CropBox[0 0 595 842]/Parent 1764 0 R/Tabs/S/StructParents 51/Contents 1456 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1456 0 obj
<</Length 2974/Filter/FlateDecode>>stream
+HWks_lR%rSIXJ&)Ab#=CIY49==gӺ-Ҭ/Φmf|EϖՎ-r:{eUIg_9Ll(J|M((V;O__<|99-r?5Y99{GltHnqeߎ|Ď\ǣvbs"r8DѓUyS`!%:d='vvu]cXxqUNv>uVl|e]Lgt̔O˓o̯:|ޜ7lrhTqgZAIפ
JԎF]սn)k3uZ`υw8F%yZ(!<; ++ I\ +6-AǺȸk +0;<(aBC?Eh7~*!tn!b]>^|{;rxo*a$4 +wo +zO.t.okn/xM}6ɑN,_kWfd +6tJGlȾKQu`ᇦMk (,HTF lP r.r>p7`FH}~hP+ 02ڂ-/Nacp-Apv#{
"uъןΊ56D)1MA d7xiv#dL` +g?k*W9&ʷ_6@յ1F' +_܊X.P$"2kEY4lb+l>6{"Wx#>pDȠM^xπMPh{Htq]Q3JEop> +q| +ƋpKNZJlw5R|OSaP*63S +akmY*vŻ.L]tQ2uy='OE~F5xj]聟ң@`GZ'Q")܅pbHPT;C{qH۫o0%w^e0||Cn`1'"?Nvyp`pa4N9K0|H`cPvkn++PV`Tvbaqa{>(\3:#(B_Mw'Sၽa;>SQ',=%MT\/`FΪAK3POrYl%6SP"l +b +6Ƕ4!Imx/z(5}N2 o6z,i1`<9cCVܫH]fӺMVG˕Cy(7#Ͱh?:r hM6.:p,ﺮB'VO^
}e.w0
I~p,p< +ENa,X`#E@BDmS]z!OwcC:s}^gYH30?vh! +,]1_#yȅ|o^]oH!Z\Hh9e +endstream
endobj
1457 0 obj
<</CropBox[0 0 595 842]/Parent 1765 0 R/Tabs/S/StructParents 52/Contents 1458 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1458 0 obj
<</Length 1711/Filter/FlateDecode>>stream
+HWmoH_1A +xwUktIUX\m\fIת.egyf\ղؤ+)l+rxX&~,]\,6ƞ{\xlGy˫5,.r} kdbo=7e0lQ<; b:̅d0L\:u2; +Cx:Y <GZ,6;@*!yYgǞ`'̴ַ"pZwo
e9R6y]MWs*3ccZOנ*Ԍoc]m{pܾg.r +_ҲM7#a+WEXBAO+]$\)6ƪ*zWC-ZxatkoFcB<J/$'A0'#_E'sh?DkX͞Ut}$)>']]p16 (+c̓uםȷM=csIZ"- +A(7*.S#k^CU!zPٮE~AQD +=r%Ƹ[m!iF7rߋmGbN
lu;e9WC;nctOe=,%Bn? ~ +l@##%K)({,\Q>oLf64
|!sw>!0w{Bf!t+&:Z.&I'p;È9EPP9?Y;l_Gld":wX4V[iB#Nŋ89dV)8#c'P%jo}D~\}8e,6s|4j7:e : y-}ЫEiZHQ)h#dS gB#TAt$fHtv`pLiX*ouD=5pӎpw|=7bgx^qpn! +endstream
endobj
1459 0 obj
<</CropBox[0 0 595 842]/Parent 1765 0 R/Tabs/S/StructParents 53/Contents 1460 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1460 0 obj
<</Length 3372/Filter/FlateDecode>>stream
+HWmo8_.X,v/aqbJ[o(Rd-*Ygpfp8j]Lj~(IB_'S&7ݪwhrq:#gT#qRDg +c.rp|qM# +ibW.X^g//T%$:R$1Lbk%S(q
F*s^ +bkB"H<JT2<GG:Z>fmmXmKbYIO%CK$ܥ+/V-Ix(nm8cyRVt'eb;r*!ŗQ gjz=YJ=3wb@%HZ.nKt:|uH"YU%_Uĥ*Kv)Zu%BALraeGDeBgdT-8nv5R:,mUB9:>?=L*o)O^M*ju5le
JQf(5yc7QOAf9If̢q9R\n &Ӕ& C}a;ͨXL/Ap _MHc厼%b}9C|~)Eo![sj\Z +vR<~Rc͒kSΟY^N}m՟[a+_9=q4>Gspq@v_,*'$_F.3bWϧGy0"H+up^vaFP
+G̵`EӲLSEà~a +IGj<l20nh5˔h'*qފ]uznټ_xD8Yq` +# Ty@Y-Vzu`JCzP>mI"!VNW}(
rCeUtՇ+BL4"kN4ٕL!{zB:#":!":!":!qgP\JEp#+#+#*6P[weNd+)W9̔oG|`sʜU:àu8H@ dZm$@*[N|a|}&AhGخX%c~m4OŰ崧pok;Iw(PC\G6+@cXl +eHsAwK s'kbY1c'cJ]<}.c@C"0P2`16hȘfА1̠!c +AC*016hȘfА1̡A$=7q}}qiy(eWTO]i{0'.$p(fd1}zy zݢb9&dNdC,6w7Ի=ެ&n"cpVɋ-aSn]mݦyR,ys(S]U~E;63$U +wWTV5)V=xCMtk^P(JT|[O`|(_+7êڴ.H@!)F\_e\Հ|gZDH8USi`^%\<WէRRu<;Yâ!@hveXh=O2Mvvvcredx"\{= +%] +ӷx 6eq>n gQHMk茅A )ݣo7_[d-AĴ!! ]nU~̅'@bybݰcqR++;5d"YmJ`4]l7يű
IFy_%qr"^l1g@8VΏ3PUo;aԊ҆eW YYU8UQk'5;>~ojFf>X?CgKv?:wWpٮGF&IJ3U(.)O,y҃\]!U%p|t_ȮQee^,@5|hG
qJ9(Xs-4@Fr&i?R<ً8Zo'w8Cj2]K}}pRFR>| +endstream
endobj
1461 0 obj
<</CropBox[0 0 595 842]/Parent 1765 0 R/Tabs/S/StructParents 54/Contents 1462 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1462 0 obj
<</Length 2388/Filter/FlateDecode>>stream
+HmoHSK8
iR{2R9Yi/3h:UunܽJCw=WӋWI/L/&I<i\n4o9L?%y4yYd5<2]Be_/gW0'ӫi
괘L?z2cī L/+rЊ&Iн'.}!5'hC<m0,|*>YM7u雫}0?,'8 +"_ kF4^[]i0zLkQ2spI?i7+u\wL pρRg
Gȣk +-}ysYdOh,jQCgTV#cRj34F +1d?0s0p8gNNDeEz=7kkkcque' -;BO.??&(!+v@4^?Y0+' =P݆tLjsem0mȰ,d~XkXtW3B4ڟO,(ExOjhI<gy*+z\7AF^.vВof&}9?]ûtC&%--_-A?3
2_`0]3+|Iš(aSV< + +3z +t_vN9MR5;|{۪L9>@/tV9Foj(E2Ju|,iiULQ@Q[~IAwL*/0i??5HeV/k\Ƽ
.
C=(ƌRzhS۲<χ"Qb>]~>|)?&hVeA[ 儦tKu
W;OOU?c
b0DcP>s!z-}$M*KHZ/y?:meLUavk@o57٥J)0THZp=1y?bT(Lx/%gޯ7)7W-4SQzg5'pEe3k/X(ݺnCZi@
ό|f=W}2{wѶPva($af69ȝсdלM;hٓ)/jHS"p:`!ӄ::ٖ:̀[ਲ?vRiP!|,~ٓ9*[Yɣڂ@0Ȭ]Pϐ*9_x!wEN .n/>o1LŁVU~"E;L0ꋶ4솮o1Ks9_v}56p};/" x)%Nd$&%ө!I왖KCAxDZܮuJvAP
'8|++"ш[xύHO';ӱzf*OF$OOC8;e^uÓxi1I5ohBpvE#K4%ZjS=T鱪*,@@ +TW(1,#Nc7P螂#_#ZՎ0y~QhTD!hk)̛'cLuA$L(=;A $otGiUNB,x}"Nk(qP̡8ϲoآ7`v|'!1no7wtspC5sĜ8#
fޣSg3
+dQܣ([֓9cHFb3Ez.zgI;Q/1EIuьDXLCV;<<rWLoHKZR7"@[):/:^l|C" +\U0AUJU +endstream
endobj
1463 0 obj
<</CropBox[0 0 595 842]/Parent 1765 0 R/Tabs/S/StructParents 55/Contents 1464 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1464 0 obj
<</Length 2563/Filter/FlateDecode>>stream
+HWmoH_ii9VhIwшv̌^S݀/M46^Ud+~{m[~,<cv:lcm1o6olv͖+%%3+l[lE,̸|A]Y{6@LbLckޓ.0xhx=rte6hX!fYxSBN\\_f
X0Qpd..<:u[QAY987Z6Z:],Zcff48t͔Aj7KV4T۷QuWFӎ1q: +EC6_8;|AkQjut$A-< +^δl-6i&:S(~DnfdsK_{FI\gb5/B:?.~ ^>:綨|:+|akMx8[^2g7,ߋ">o2Kl*SDq$)U.MNHp;p +PZ
{ӆw(暶E.]j&y'֠״[6'qihCp+^!{ݺC]nT-OJn0IuOHEГ +
YKjxT@O<Ii + !2TG
wdESPh˫b(xkz +D]]>Pn*Y)abΟNtCղĪ.1cG#
+tK2?hJ)(؎Xov˩u+>[߱V59NqÃ(HxllRGQ)@f\v3$qOf2XꅺL 9REӹ[u)Z%{{RA( +yxʳts(;7̟5p~#i%3փLmkLq$o)_*r"VɈB\m}@RF_߉_ԴE46?6鎦YEjur +ڱ<$[KW +>Ⱦ#nVCZl'Ŏ%*?F]!
I
jruJKsgsBISFMʐVZLFPϽ|_&q{30sz`kA=Rڞ0hkOjHQ)p% +XSu<smIfiߪOvP:-aqŴ;v +(:=ބQ@0o'coWl'rgn,%iaqX-{ES(g[I荆c똭ORT},WmdXVAg[md,jc
n +0 +endstream
endobj
1465 0 obj
<</CropBox[0 0 595 842]/Annots[1466 0 R]/Parent 1765 0 R/Tabs/S/StructParents 56/Contents 1467 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1466 0 obj
<</Rect[414 155 430 168]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1428 0 R/XYZ 213 546 null]/Type/Annot>>
endobj
1467 0 obj
<</Length 2545/Filter/FlateDecode>>stream
+HWr}W# +@*JymKU].E8$%@;t7J)v
Lwӧ,:&i
?Xu
<-_1CI,ÓYAsmu dڶ_~fWlq!JRqlx;cesrl +\ +@|0l+1`*ax=,K/r0m|Nl;[}T=PnpMt~`N +tDB\tngcsπ5<bf̢_=;0,vCҾcѕ
<(6s1 "jȚ}Z`Q&eGa'12'991l÷B3c
r:QQY5X#XA_ɸZߙ7&<4Xt +TɈAd6Г"#GrʇBblqwᦜQCDmCc&9fwKV%+1E9ӡ/k |1;kI,L!i2̸}>bG=ʐzseQːE5qsvݐD<c wy,=nEJ +1㜟2%sAsY0H,5JzPP) 4|aNyq<f'!H{4;Ktu~<0,/^ -w%%ߣVe63`\3<aX}MߨiC"sÚgn6[$$H;{&i%TYMPnZST[rL2q@g"1_ +T6A^S DEA"#8c=aIJt+De{>[)6!N}Og'ޭxl
ml5b݂WNٞ*Ti;J6:Y;U,+*3ZRrFPьoe<j6VkTF: }?G]qHT<QԪ%qinq)- lCQ[/oPBҟ1:{Zw\S |_g'^n>j^Iz!?cj!5,!'4XU/I%k +Ki>oq% +6Czn=F;QFĎ?唋G5|+E. yrB4Y;^a49dvp){.)bGtj"59NFokgtv$gsYz<0gM{]g_}}\}X-gOtޝa*̷?dmb&
<W77}i /r})\pRA]7SQvl`q{F_2pm<tDnc}9ēp1#@@#;MtcV~kE[<
_VU'.K}-4gWw2YjM>F+fe}$:M)ԥ|}Aru%mR=$fQ;Z<"YD̄T;yDQMRUX>+<cptUݑGm7<](Ak +H,)yII;ҽyQ7l^Y7ba:ۇk5a +xFH%W£)mgWp/v+C2-&3[ 3){-7mi3affhCKt(f5eG4.,-5}
cţ틕(!=K~9MGl<DjJ:SR+Q 9j$]uZ(~_>uR\kB"-u9!cYU9jI}!MM%7_[V/_oV],DgD(ݡ+WtpB˱8Vsuh%Y!K@d)ΨB8`9i*n*
J +(S@:A]"ˊ +1J'µb4pW7Bjk&g|`9^#l3Y+V=&ѦLςbEڕ?Nżi),4wdO 2kxr'^
ΗSraiǁéL[ActRőCB
<Mӵ)/6(:]otP1r2ڨp.lI/G}˯r6Ul0h}9kXq{WXwgu}AT~7Y
j(RS[hk/uSay۬yS/x\Q!V>tZˉ,Ȓ@8$ؽݯ9TaA +endstream
endobj
1468 0 obj
<</CropBox[0 0 595 842]/Annots[1469 0 R 1470 0 R]/Parent 1765 0 R/Tabs/S/StructParents 57/Contents 1471 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</XObject<</Im0 9734 0 R>>/ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R/TT2 9676 0 R/C2_0 9730 0 R>>/ProcSet[/PDF/Text/ImageC]/ExtGState<</GS0 9723 0 R/GS1 9681 0 R>>>>/Type/Page>>
endobj
1469 0 obj
<</Rect[362 676 484 689]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1380 0 R/XYZ 213 714 null]/Type/Annot>>
endobj
1470 0 obj
<</Rect[446 560 470 573]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1459 0 R/XYZ 213 644 null]/Type/Annot>>
endobj
1471 0 obj
<</Length 1698/Filter/FlateDecode>>stream
+HWr6}W# ! +"!p%$tyām3\]:F_VΪӘꋵXep
Q* ˥N%7 +6y}mTm.JM5PG Z'**uI5DQW7]'=Eѥhk,.I-*) +moDEIA(&-(]%HWXf?"[M-D1&.8$)W+LaF:Z:]TOk\bzF2KZh`=8+ %{jhٚ)zJCrxH +dgڋtp(CԖ2%{Nsc#"Xj]&:5z{~(-.DKأ{ +efiZ[:;#off߇sf2ozf-Ubg +/ݸ9Z']H
Mm^k}2mwͭ[8,DЧkx4_%Lri3{m9iuHj6(fUD1VI?%BDښlQA d:^!Nsj<Ӹ9%+Mi4&FAQt#ڴ[
X4bDy:T[Q&nݞT](m_C? 'G@
B)d_ +=iW3BVG:n"كx܍o* +atb8Âyk + +gko',RB+<֛VhݽBy<rt&8tFMދ7 +RZ$ҨhUh{>y7JkQ9,@ڭ_N[V2ф!mCEG:G:el-/qZ#F/sbB磊]R^E[@yc66Rx7"J4D]4_⸂AQ gpjǔ$:bK2ḟo@mE6&R+a֦2f%#s +pQJIGUUL2Ѵlۯ$~RLɕcђ`uyo +endstream
endobj
1472 0 obj
<</CropBox[0 0 595 842]/Parent 1765 0 R/Tabs/S/StructParents 58/Contents 1473 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1473 0 obj
<</Length 880/Filter/FlateDecode>>stream
+H|]oHr003HU%'TZ: 'l0ng+ZEr0f=3vyǏ&̚<[\yW55e6*aHj#"xiJ[f^G`EfӔ Ќz_&*O +}P@9hKoon5-g.`Lj +W:
$D$%l:~`ȃX-R3ʩ?f{)d~4Gn-WI)f[d?!;?$q_*:i3CU"z:uL%WSfy}wK1pctX86= +endstream
endobj
1474 0 obj
<</CropBox[0 0 595 842]/Annots 1475 0 R/Parent 1765 0 R/Tabs/S/StructParents 59/Contents 1476 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1475 0 obj
[1565 0 R]
endobj
1476 0 obj
<</Length 931/Filter/FlateDecode>>stream
+HtTێH}Wc[ZDQ(FKQ5fƻ`,l4>oulHmTsһC_ooӻ/ʗj
4߷? +҇n7fҎri*dQ%rM +-(/lz4p7L0j5v&!E}!*4(Q@h?>^T˄Iy dp4uj(aEyKen_8Y"ï)4Gc4k,cG6qlH'}\r +L8T; wg꺙K*I4̺@OEs,?b. lckTc'%RR7 +6(Hg1F
9Wd,_<Ŗp_|OPBw>]gNGO3]Vͺ3RmCՔUw[^`%wgD6!jT+T6F7,Ir
brjȲ* +ն +;}zUe$
Ɨ_Zp +he]g]4kXbM}Wp_y}~KpX:XFx,5q~}8."
V0>%gc""dyt62;vV D+4}}}eGcۣEIcg{Ku/x;y7ZZp&W7a]o3}YyN&;d*Aĸc|ffC.xi̋\IFvU}{+7ⰆgdZxP|u&84>K.Tkxz(KSwmo c߬; MPhO/2JɩU3o6_ +endstream
endobj
1477 0 obj
<</CropBox[0 0 595 842]/Parent 1765 0 R/Tabs/S/StructParents 61/Contents 1478 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1478 0 obj
<</Length 510/Filter/FlateDecode>>stream
+Hl[o0hl<6"UVniy@Ym! +kse!|gdqw۲&Y}YׯN\M5$ۮ)]@'e`bBrJ06"m, ]+U|8((qFq13|k˴GD v;y4 +ҰQ +1:z+/c`cb 0pcAz%T˞krņsO(q;@kI)5c}ݼ>*InՇy&AL&f&?1'&65ja:7cоh9$aS 0 +endstream
endobj
1479 0 obj
<</CropBox[0 0 595 842]/Parent 1765 0 R/Tabs/S/StructParents 62/Contents 1480 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 1561 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1480 0 obj
<</Length 2138/Filter/FlateDecode>>stream
+HWmF_$p*Efl'7Qvw4FwJVc=v +=@w+&ˉnЗ^^~ι+J/)FcYwPߎ,ϰrP| Sʘ1Ɣᙬ$nOW@d$#hxˬ,:ߜF} +沠+CIע&i[ˮjK!;۳ n״!v`UNا/؎o5U\B%R]XI.KˌݧՇOo凇gy% d@ y}4 gq_%o_O(%j oV_vDB%p+^?@J_C1r'2t$&Z0*K-i,}/Ɋ'O6ZZӎA27XsY^ +XgxM +jP/\\6!=s&1cU + +&-/aza'|E9Y)r`x N"Ugwz
7_p~Eu[n&
r/ZVPl@ +`I܉wh)vC
IfW%]dzSfI(/*Pnbw^<;'s/*(h.>><?XτKb8Q=Zl7y
ґ܉8/u^VINu;pOmb|b=O%دp +47nzU@l#&:-e-" C#]=L1ZVZubcZ1qz{ ba*4VR+-Bn"Tk7ʋ@̈́2{zPP'|w4q/
<U]
N^;ԍ~P~Ǥ9Y>Si<MK +0)1Y).ٍ+ t^"&wtxg:g'=qN:o +:vKo(-TEk7B&((H(55(F3"67nSVS/oic};oWq$VW-ځp#<D[S9u#֨- +endstream
endobj
1481 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 63/Contents 1482 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 1561 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1482 0 obj
<</Length 2414/Filter/FlateDecode>>stream
+HW6,~Ew,bvZ[UjK>INfHQdR(ld8C=y/&ߧۆ||49ۑ<SFS^M^d~sSNĥ^貄4t߬dr̗klkS=o6dDD\<D:q#q9N2|n&Pc(rYH|ߑ*'wm{\ +rsT#|BLSM|9gNgt8dXsos2ANem
jUu}uCBAr8wHT8fb7wh<NPbf!u8
~p?9N)wX̀B88,- ("aDLlK
QܬV_fx4vhbT.jr}IO@$qWDvt:[sQemQYoF]Aҕ`o)QO%NdC&bw̋n*l:e8D.auj3 +︸mW$a]?s9Giǵ?dC~̖}<զn)eP:ד(!' +QΕ:oXf2+mT>;NяHBENU\(w1oVȸ(UH3VsTlXl͘uxz36ɽ]4TAMI]t)7wmJ$3 +N'Ġw۬|6$ޖc{(cfn62I||T/ I#i_qE#.iHO}N=~1^eDq6qQHjvQm,25 V) +Η)V㽣7hڵ5[F?ǤPs].0[|'Wy +'è#BDbPH0U7Fm],Q-fGF^
Hd'O}.*uI0aГ'A.qIuTڸj2n9e6FT^O
FOF[ZJlJ4 +<-t|:z)j`OxcZgr{暐ųfXߧ5@Z-w!fm?87D +^v'[:'Rھ0
`49h9;#x4nTF6n!F2fj_1n
|uw&NMx-glYA{5Ӡs-!,4;H0nbT +H0fbxp1"]E}4 ݫ:VKO8XE' +endstream
endobj
1483 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 64/Contents 1484 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 1567 0 R/C2_0 1566 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1484 0 obj
<</Length 3355/Filter/FlateDecode>>stream
+Hos۸S%ٞ ?I3iks:,glQ#w!ceǙ0\pw1UG~ꦹ"E%_mCoͲ[2==m]Sƈ45QR45Kӳ99]LgYݓ#OEEY\ZqLEkjx% ''U8Pt/r2=kNO>~Nn/g`T0d"'S#Ʌ`jMkهpQ/&ʉ-JU3/VQF_D).~CG{~u*Jj4]\I[u9UN8I0R#/XݸJ7"D3Z:1(?/7SDAxUYu>6?1EzHX1d~KC +d&t͋?lB*Uڂx{{ٻ~+ֶߊA\/]Xby{Kv=YoHwxQ |gDc>
yb0R{r߬7noHHpˉ*K^M=kv +?8WdQ3u~RvrlpVr{,;5B'fw;gp䎤?bd9Uqd*_TFS9TF)b Ǘy,_`װ#?=N;ǻpxN
cxOfvz;1Ͽd㚐!XɚBWEhQ1N>/]ò +vՅU)6:*s/iy#ܩdI,6b<\IHPI^{Ǫ*WAPe-uwdޖQ$C͌Bɗ僺lִV"q_9=F{̠ACTRS0Piz9UT.uBСA˖uafAHL*9֨ʪ82pOLSe?E9a1[!x㽫[
nyr~WМEl(5FECw ,aWy*E#K2FD%K +{H rdXh"ck$d +ysذI]zO+*jtZA +@p5ƜUӪ'꾻&г3F/h6ìTٺ֍>OyzľC+
Xє*[0T}5%]Q悎1͟17,{46ar +y9=Z|b[],8[z̵̖]lȃdŮY=.n$ܱ:cݣc1_tA@1PKPeePrZsAD";/G190)? +ϷIʘ}gJf䈝kC?(^rYwIL|!</G09|.ɥ7~ښͧfG2k&A%oyfDZZԫIK.Ҕv)Iu`:oICI@"ir
sVlRCYvݧ|m: [BPmڠƸ8e(^8%dL'Ꙝa_I1l?5WRd*R&=X&sh%J*W-:y\Tf$lէ*"yWёndf.d@>f^w $mȵ%dF4@.h&gx>tS?1wNJAcH̟kDCwEsl,^Q:|:~]xS:ѐjy׀%ԆZu_r)4GˍyxAor2'] +h+q;D!'];%:ͮ-r CLzs?ie^ג˴Q"E]t/3]|Ze:hrcBMQ5dB}ͥ)LGl$WQFkbsxlJ\ZT&3GX8Q.|q瞖^Y+IE䢊ZVjfN>{'/x'ɴI.j@h@Bk^sAOh@B~UN@% +,:%,)(l{vb{ +endstream
endobj
1485 0 obj
<</Length 6102/Filter/FlateDecode/Length1 10316>>stream
+HWTg<LеKBAp,$VMEf +(q% +d`,Ӿdr"KHSdh4hwhT*CG +DI\We9ʖsd!'e(F\{3M{~ݧz9ꗫU^j击j]#g&/n6jvO__t>1!gA˶6dNz39dnռI+f6lJ8s!q
`A^Ikvju]EݜB#.'+2ޟ쿹kAU<>퐖pBλbs~$ߺ74;k<uεQs
K[lL|YHʐEs<_s!8ȗ;7T6UTKzI8g8);(7ON.;Ne5I0 +fѰ}IUzչi9^+ii}RA,iS57̞zAI:?mHu#|Uj/Ji-90ɾҶꆒ,zrNno뒺J7 /m/ΦXތ۳`NBf<Z5bbg14(LD1`?V}y3/x䑉^5;;w|̺$SN n9429&,uͥ?OHݖ^p[ZҞ<(It#:-sňnMpֲ&ӯ\mmc̘ ;ţG=f]&`*4pow@.M1(I>MIZ&Jnq44Oi\aa +xSKPP96=G3,ay9p_`0xo{2Pub䖜_8V,S8ZlKxWi6V#G߹si[v؞Q8}urW5^*s{7}6v}[_bQ\2t[o],M|8s4nuM}MFJ8wM/n1E!YQGM-EZ>Q|; ֬bAŘ>W Ga^Aڐs/,7N~ +.p$zChfۮyז1t8XݜQ7lot^(W_6Ԣe`Jv\cY˘cB!9UL0T_~_vCYLRFBxl. +s'nv VuCpE9ɤQݬenVB(Lނ
'qf܅M9HOB HE(k7M"@Yp0pO2(!D6N$i4@"Fa54g
l +'B] tY G$VjM5i*hRR=Z+6*Z5 +HsWOo̝;ws]VYNV RR{:20\khc`th@$X
GI'.Ӫ#AP՜."yUjתRNdO `)#c15=$>ː%UJzr֜Ր@50_|NZA!'J$ L1W9#3_7*h~<ILCA,>"$<]HYZʂpS50;+SauIJ 'Q.Q;8P`rDϦăg +WoVH(th#R'?j{mf4h +vկm]˒O~1wêGv\eAlG/}*FOZz*TRepUSl[q|N*ĂkTsw}X]qw,_ߕȽJ p;V0Q9vKcg5QNH{h_/_U6+C[ eTŠtRQۭ!^GنTcBvZr.?$U{ƛ(cD/T/?prݼԬ^Y͓=E-I2cwucdwPuӘ}[7uo?~N~9?1.AԎӷ&{6xVmϼ6lۼ7Wt+✻0ι|7c]/={oŲ^ߜ1 +~@5sc?[M5Ǿ](n=p.lNGٙU姪UF1.;?W H' +d"XmF&Xor#G9r|K!(jruu:)kƳr[Rvy]!p$|T*]kE +r\wݕH0J=DcݧI<;
9k
(#V\E:iv,лtLFOYrP#ΡAJ\>I^j/5Q|NMQ[4NJH@Fqzr.:TJakȵv2W2{
)ēa1ԇ#+\ d=crc\ߑ8'=~X1velmZH8EjFǛt&M) @HFЙx i1:8SFp99-?rJηЮRxS^$i7c
ggT xIV֩@^4P,@MRKhZBˤg7aDD2UjS\%`\ IXjs/60k8mZ5ǚ%BZ@N@z +HH"Rj:N8PT@ ^(1ٱC vn{QBիFewhOcb`֤YGeLtmS<{~KRZ$'uY8%;bQtPؔv%) +oP!7+u.x
(V>T@`.cjK nI(gB~5W_&1IJua<{Ѽ;s碱0ճɸScX{?,ۃ/y߃/g{oәXso\"żqB9]t\"KoCj4/ai%wYyU<aE%%O+ٯ[IN%-JJ)R%] _
| +>7kUpdap +/%zwdz<-SZ7Úix0U9v3zD&sZ֭J' DЎu^箈;He{q;HWÆ
҅Ks^h(;Xt`P%6=zI;ɞ!_'DӡiZ=MVF+if͒i fDY7
#īʱ*wlt,l840d{P5~ffrM#bw(,eh5j]~o]o=olF_rj+5my~-M>*<#ܛ粏Jͽk$
~n6![^:: +
+endstream
endobj
1486 0 obj
<</StemV 0/FontName/PIBPGE+Wingdings-Regular/FontFile2 1485 0 R/Flags 4/Descent -210/FontBBox[0 -211 1359 899]/Ascent 898/CapHeight 0/Type/FontDescriptor/ItalicAngle 0>>
endobj
1487 0 obj
<</Subtype/CIDFontType2/FontDescriptor 1486 0 R/BaseFont/PIBPGE+Wingdings-Regular/W[197[979]]/CIDSystemInfo<</Supplement 0/Ordering(Identity)/Registry(Adobe)>>/DW 1000/Type/Font>>
endobj
1488 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 65/Contents 1489 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 1567 0 R/TT3 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1489 0 obj
<</Length 3440/Filter/FlateDecode>>stream
+HMo9<v +f$R%' )~d5j~ev_}]?r>-ߟlqsq;,Udn4qabˋխ`&etr)d//xp0u^ ͖lŻr̤xm_.}(ޤwp, +Sl#pyX=XUKA1hWa9KASU3pҡ 6\C(x;;x҄>|{J_x[d^*ޘteګS\rO5.\| +>ky#?z||}$MpmN"2Xɘ+cB.)1cc0,0pB~WVlfb9Ќ cU%tpIY+=c5ŋi-X;@
đ)_iUFlȩ
JUh]_Oq +CGprM7py ^4`)pbg7`:UǽLrU +v++!W\Rj"F +V\)w+UmvjTal'˽[N22TѸ<reLȅ1ach
lbJSwE+ʶ\vW$cak謓L1іqNdKV +ia9ܮW~!9]H^&k)\1"YI ?qa=yrfr
rrh/}PofsLBi"+gI1W}a
iSjSPdq8c%ޔyj x{wNAސ@ͥV $m|Оj{ww&r۰E'gnDje9!A!xppx_aN1pyqzoWl[ցƭ$,SAU+wB.)ufok!/#UK=xԅL"1k@zԕO_4ԳLQU:!W\S&P}+\a^Sqp4j{T(s.ZuIQK
&RkT<rS._Ѵ<fbV̹[VkexRȅ>R\rAN5.\>@NVuGzG%N痸k\Euþ_dfh)LTk`<%/eؾ7vKN>)̏ +&mM>$,SP2ǴFMڷf;#\ +wT$A:]Yua$,SA
\rNC`|tq:Wxw)ʼn:woZvۆ\X$JR +\E˗H;K`d䊳3-oO8<rB5Δ8QВo(W5BJ7lmtW +!QNr +endstream
endobj
1490 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 66/Contents 1491 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 1567 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1491 0 obj
<</Length 2042/Filter/FlateDecode>>stream
+HW]o}ׯ.Q +̓,ˉZG2d.ծYɹ +:;;Cهa\/>5gy|^f<lv[2O9'*<ъQ%Z'Ll`dBXٟ//Y0I8oXFW{j6H{k32@ +CTxP)~=yzކ?^;S-lYzNJ%XoWjLԼ0'r~SKu[{1* m QdW걞x_5=!n9ja\R9XpʜU@ߖ{eEc{Um!9,:%߸"RRk7Hd%uʺ;磌|J]-|Jx69]IZ8@RRkƪ}9ǜ\u2vϻ{-f6VSr濿l?Ynгȷ`k`[x": +\6%HP\[oPkv;VvOL'i$VaCRf$ +g?onI=,##~Ġ$ j7yf-g=T[Mzo^jP<6v]织u7,uy+!6|VCe*܅mB9EVQZmuyZEBƀ[XCPX +Jq4UwGx5Uָ9*
Sm;˝-kPW YڦF|WwM=5Sa
_U 4?IkI z+v-t\XNĖ7Pu<%r7"ӈ:0`U(@C%"TXrA%p@. VKe(AZs+nj+*z-W)<LRIJ*KIg)I W_hJQ|ҧ1HvLRއ*H<eZñ{=@L[CCIZ"z.BW%In±]Mw~WKUJO4_GUaL8u1J73ca%xȹHG(Q`_k8CCc
Etgko@gCq䛷quGe?*w +WiAbR1Xp+*$2oG.ݍbpӽ:ѣF3
f4i.1Y.fq$[=mV PDAlf3t0D'Yn1aсLp?3)e'2HH֯8ёLf7dZ^0I~v(_4)A*D^>R|8apjF+î!v<Y[8sڝ11R&Ɲ31RLb}.z1%`FhQ{a='14UO70=ԊY5kC7p0B#}\b_zG#PfPơN&E#&Ŗ=wݑbtcQq1s1bTtGr1pne )Xbdw0RqF;vS(l} 0Zo)Hi1[,>!e;JߑvZ]w~s~_Qe~'M~';ʜ;]@;z"cgQKC4NMc_B\W>i-L:\u'u'gDnEݿDz}<MTi~ 0r&SLU6 +@TUnM*°0 -zʰ]ڵ"Jo1Dp7"B0&G,ꇄnP +FP +-!$2FW2q/utWGَe`MYYW#Zqɳ#NC7</kgj +endstream
endobj
1492 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 67/Contents 1493 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 1567 0 R/TT3 9680 0 R/TT4 9677 0 R/TT5 9678 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1493 0 obj
<</Length 3344/Filter/FlateDecode>>stream
+HW]o6}20M[hni}Pe]2le{)e*`u|K{Yx춏#S@>Z=4duWn|2圔PQUP[ +EruZ|dds"GNϧz'+Khi`Z$Y?_dO+U:Rards\=^ΝכoaM˸0&-YoVdJr)J
)|*>,e|r
gSWwIRYūv*530x\,UA*=,<.nJ^uO\R99pj ǯ."+8SZg6C
"RR6T<c8R,ʔ@rۏ^, Ӌ=n%l'C9[P呂#9f!Ņ_<HPʾUKh1rwlvPE@=yGAV=v!UDVK,-r-{N|YuYQbv$Sqh]si!eAT[MnSGR!ű}h0XڊV@lsKr"(Z +<uS +mt
e +UR-R\2$;pɁhZCa< +mzXPX +HL]hH,OEZym"a2 +sv:L
FE])Έ bie=i4EQJ6Вd9;#;_ʔT[%RQVѺIy(\j,wm_UzRQf +>h+9%GPr%АX>+ofU2[f,7N-[2-rn/`ܐxbZ +|PL;o5-3e<uu.xKȖ]͜j=h6IOe +j& O=Q +KPSCA?ֻ9OdaC}:m4>/ۚt.39w5b$ϼ77"vV
(C'-iߴ[aWضQʻa$^]*c,-oJnwQIxȨY{֖Z9ނ`0xx(1<<}ВSnh- y$pbq8sbi95i-&UN3QҜu`p`{ahH,!0cGU<0VJŰIf?6ѭafd؇}'%>A|ȟn@M>qTQ8GGu텔F<()WRXh!$6!X*Dn 煘bk0`g^^?0aG5 +# +`=?.UFugܓPTsknyVA ,b|}N5h,NӑikG){S<#<퉀l7ۺs +ҵ&P('TڂQ%_'T96{?mȃWA_+5<}S}#s"P(2B$7XE-8x-aYz0'ߚz>.E-ޓ?_h"7 +1CrApN'7mKDxyr$IchDDERpz|9ѕtD,h* =lNR}y(:E<Ody4H9
~J`0PtL,c;+r4Uֺd"GE +.PTS5/6b_4omu8FI#)%B;<g1j).Ehj )54G143BH` +-fe.yqXA]٢;30g=)*GQkbATuG3q +i(3g&P&Дi4 T&T +zȹ,*0rՑXc5C\q X'V4$jI?b0QFao!w ))6\Rn?.۫v: >3ui:\w=}c7[xͩTقM9;Y]'.%⠬}[]u+D۟:'(~\'|bVżw14¶+P|٤Skf756yڻtpUuikg/>l +endstream
endobj
1494 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 68/Contents 1495 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 1567 0 R/TT3 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1495 0 obj
<</Length 2143/Filter/FlateDecode>>stream
+HWn#7}W{x +0]/n?~JI^>~<5S-C6`LZҮId=i 7ԫXeu6\#5uE>qF9
Ս%??Rў!9!@ +rCnFUTs'C\Rᤦ\R9Lc8eO/+B Oa{`upXYUæSK8/"%5=a2x&#n@(PMN.>6gnNOt*ne|C*1❏xg*'
`+i tL\yq3rAîun}k17tZUۻ.TۅZXen!!'6I:Re'1l##&RbRQeue-l\НV:~ؓmjR<pCӟOWE̴ +np 0\*M)*Zq.З0ư lyO¬= +K VGsaex:e-2eD\A8k"./]aa، t4Qs<54o7_T&]Ţ4SCbPmQMF6'14Uls#fg8O~._Y2RͰqc|oON|bh.F)Uh_#/%;ˇ1ulg;(rtbJu <Dry1zmO/˂vKWQOa3B{E̚#5(Ht4}O?z9XЀ*ʱu9tÝhʑ4('4Tube'|[{<D=QkeaDg_/)9nwۯkbq߭~}
/¼*/{<4 E'I±AGԌ:cpQWw~Bӗl*H"/x16ʇ!J"""P`|cp#(B)RbDt;cW<ںZ/Oa_Oط>D!Ca3AQ#npXG:'14VX<,,u˥گFw5gPt9{28&="\GVLPmCN<"<`<"<вyD"i%#QNh7<*sQ1:OyH9QQr=/o6Qw^el2&JNk넢3#X ϣ}jC
4
}"zԺa5<%xYۯun%]StUJU;SN4j1Np-
E]Vwwu Yܐf +ѫR9-+MqhfqTh Te4&"PT +PsLݑ~T0 +Zr`D#!8H:Kl%F5%5s#/⨦"iJ;OPBmlR +FlmR +-$$2F_2zy5fh|PT4;hJ~>P64ڼaxW"C764B90hw'3<:JQC}4v(Ei&C=lyCcĻpC#]#q5 G5aL + hVaM*DzB&W^yWc|Y捶3/ᘨ*5<,$8ٚ$6ښZ5Hd>d4J Ƹe~@" v
,9A@ +endstream
endobj
1496 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 69/Contents 1497 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 1567 0 R/TT3 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1497 0 obj
<</Length 2401/Filter/FlateDecode>>stream
+HW]o[}ׯUQQ +&?LW K!*|QnerzryL1ibE'RzCjCi3&5\?'pF9
3dqSʼ{ڳkxxk$3wq>%۩o3ۣfv2͒3G~%2K*N㛆pr_>Ll`8㬊p%.am#9핺J +u3ogk{Dw^}xtdCU 4?W!?_W/&oPP\L<xTc45&_iۮ>oS" +ls}[x+_B)2YkxPPJB@S4fVD|cCդ8b
yd3
_Ϸj0 +2`k
I(]0PX +L8Îk +rwUAxTv>Vx7A*XÙuZl +mWa8S14UyK+SH<}O$ORM(\9~)ڎ\**H[MzcY,d@l;Τ@'M^Aܙ2q]u w|BLtQ#/X'>|2x<]i>
eGP5_+ϯ@ӛ +z@AQ0.ꘂ}YIA(8_~GՍa IX>s@ +ӼLMSPPݫ'_j۞a{Wp[m<5{8*+ѫf(%[$<7(PXTN¬NJֈN[l: 3M/GHպN:#h!F~WK:OO4qu?q7?P'?/qYE(H'W0ɿU1R`QXS/r`R`rR)%&% @ %ỆHH*6!
f(BLQ|POUWB&w
B>ZU- -{z&aR 4:aډU^aYgeaFDñ8Kl6b-ѴExZDfHETDu
TD*:& +PAI߷2=N"SU?J0*"U|fY륥94 $HXF8aDh0Xu%"BuLp|V8>e#Ţ /%A! +$ \sB})Po}F'F& 5IԷʤdRS/roIJIͿI&2IL&A($ KhrB͕uY$RX& ĄiRrŪAcT>VCjA گRJߺ+%ƕR2}2 UX[zt8Ȝ_H3L$\IBijpFgİP. +2_ +WG贑pFa%Nk#Ma zIX>sӼLMSpOMHThlH
MmrGʧFՂ(D5(hfT~`fT=`C B7nzXOoaږ-St0oQ
Lꮇv0wi̓@P8Z\c"lWؒt]L;>xg;U(t vrSJJ#hC#jl=3m3J3^e݉<ĉeD2:e`+ÌuZ[FuӴQWw2:íNfH#"f<Ϟ 0 +endstream
endobj
1498 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 70/Contents 1499 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R/TT3 1567 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1499 0 obj
<</Length 1671/Filter/FlateDecode>>stream
+Ho6WQ*ZM
E8(4˲>(xߑ2#R%_x<
뻦ahڇY#;jfX[\FVKi/1gH}=;[]^Ū^,/KQi}],?˺.ABZ>k KWXђEŇz^q"EE ][|^|x kX^AY2'U BPCɮ6/t$<@_H 63?,Ԯ̯[I&? ~oCjUv<C*^1cW8Â+&}Fd*܌ `3$U`|!?5C{ -Km# VF`æ0bIx92Ƹx7cqygqqQR:# +~~qEs'[?qM8y|{?f6;4<twC<E@*JO'ȒTCҝGݶtپ}_ܵ[ں]7[4Ì'±d|nsu@z6 +;.mJP˱VG5;jnx *9lh̕O"g@fq
+yQOR5[|`#L$䉜I^dQّCrOgthy>89AX8\!p:VNc$8R'!O$dNB +H2e!22T0A^*M\ʌv_1RFJGC)>֞F=(' +x<©Z5I)&1qՁbC5H=ތ9$<5ݰ[V҆|{fmX4d`Lx
8H^dQّ_S=zQUlüڰ8݆9 qz9;>375<N:r-tzQNR2M_SDQBv%T/(J!E9Ylq$)Z#nA?גX#$Y9 Uʽ
PYO%/,=Qf07LRP^:zh|,)1k# 2vh</ 0 +endstream
endobj
1500 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 71/Contents 1501 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1501 0 obj
<</Length 2253/Filter/FlateDecode>>stream
+HWێH}WWJ*/\Hu]ͨk5هm0]ta`T7"lb*ƐD7el¨6~涮E*/7B7mug]7bkpljky>?|po,V'jDA?ͿֶZܬV`j,£ҁq*naՏŗPY5l|sFŗxq9 +XE^yz7.Q +³"GK[:p{o,rsH(qm +i#\2'|;(XXm7>v(|</*IY[Z@29'wLyX܇#m>/ 7xATXK♲ReU7$Pt^e%57q3"% +HR2ʳ.CFKa楒HӐTIQ +r<9GEwkSꇊј̺xxWR0H@%9+D_veMn<wc1ql}*oZ UOEx⡾ : +TG^]R+Y5Eu\CdtO3mKHDm4aV?<ᑹؐ@k@RR1&X UbLaNWZjٖ}EŇ շyz,vS@(vrAb1DK"HB<S9$Jf-u*۟hwOY93l%nm*QA8=}%C#BO"p&p8<lO8Yj@"t.u,K`pЙ \X@)%_jī
detpeˏ>4[ۃ1~[$ѻ' ZVGwFҭf4#is+&o%+7]KõJ!"pԟGοR[MRpdq,~+ +|pN H<qAoCGY>Il߶7%ExPUz]=pjh550߁ێ06G#cC8K`yoWl=xPKn dFGϦWqbwi[XH[`ooʩ9]k˨hdQ}a&ݚاQ|Tu<if +endstream
endobj
1502 0 obj
<</CropBox[0 0 595 842]/Parent 1766 0 R/Tabs/S/StructParents 72/Contents 1503 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1503 0 obj
<</Length 1964/Filter/FlateDecode>>stream
+HWk_anV+efծntWs#`찱
<qV2m&c<]SUN?U +CUEd^כ,G_֛yEUivB맧^UQ|< )'8oO/hY?PVվ\7(V#~<GA +rB!Cߡ"YV?N2|zl\BF'w4&W7vKJ|xFSQϼן_66{hWίƯO|h27pv. +dc +ߜnbJ|Osi;4d$zïBt.buZtyB{/XSk1hW&bBW3FDC5׀Myk0b' +`1&\HqxI&o! Q**yT_%fǺ&F<Knc:r1w'37>F`1͇8Qnf}y\ʦ
C,vΟ.{GSio`$8M4蛠9żL'bB"jP{jm
yyWwЁ1n04, c? +5l[Nm}5PAnu:B3<{,kHt[t&t
ڱ;KQ1m젅ȸqkfmEiUbOSf] +LŌvHi4C_·,*ay% g"XRZ1==-0΅`8v,X:Zj'4h +T}7gwЗЗE:pgV|]!
&"o$82VNvq$v +v6Ƶ6
V.-*=& +endstream
endobj
1504 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 73/Contents 1505 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1505 0 obj
<</Length 1888/Filter/FlateDecode>>stream
+HWn}W#TF3RkFtrZeIz]`/"%^gӧ綕Neyj}Y+KnRyUCNaDnx1N"8a _aX>~sI&-ֶY,W+0,BssN =~a{ce +Tkg(u"E谈%yotie?>&+
S6?Q&iTA2Z]c<z;D5b0x,+xy*Vc7?]}cJUQ
TTj +M2jVcj|سovMbvNM,FNESg&AafV݂;.6G=bêojľ<q o.e4Їgٚe=o >7T32}C70GQxp,qw4
&a+ZҖ6UN{jwIFuC
WV&;ܯh^|0-L.Fϛ.yJM +85Is6/!G,iL'r˼y?77摐nnoi8/$ hUWz4Lm4>ػܷRaĔРNvyZ1ύ:j.C@w*}y_PH<UIyQK<^U䞶5b)=76Dۛ73⫂Q>lAlF>9\*\N͢_c*n3+W1Z㐇&d]U-zj8UxM`_`N}4A03 T56`lv&MTmZd&Em"+T,Ud{ʽ4b;#`U0֦h&MSV5beyqY8ERWP\MIQ,Q.IǕb$k˂] +1̡FYC`)C&j!tZ%Cc;:vpcZ_ +endstream
endobj
1506 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 74/Contents 1507 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1507 0 obj
<</Length 2064/Filter/FlateDecode>>stream
+HWێH}WWJ7 F#uUV3ю-!bp{~#Rv&/en~eM'jg՟.͢:3kW/pXb+.l-7jŕE?ﰴZZoC7_|(Sa\wu +Z~k3<' 5g$pҵ/ֿu.SXSVg>ODÕq=x +#;Q +k1&ƽCJit]Z%̒vǒ0PDu6nL`KN5#Qr=٦yi1cLJ(|&aw +>f5g`&kt<<(91nɐΣbҷ&1,1T@uNaD`KCB&z5YfͳFSD4K`âLz^F{#flS v ,oqڳ8[
lN2Qa +}#|68ƻ(1:d'fBD0ʄPiodcL0\1֮пM:&꾃ώPt3$3>0IMܵy7GVJm~VG-lEJg>T`ծ-:7~U,*kU<{:h +\ΖIB| +;L +ae)]hAIjBV?tYHk HzF6zBM\!pׂ6& +$ +WK7`Bj~<%XNkYqX1M@7!ɫˍ_ +z>O127uIs^a|Qv,I)^3U +-nV`az]2i2ћ{"H|%8Wwm3d +_1BcBJj]ƛΜR쐹69V{H]噙yW +IL!aQf QtU\F7mD;wGL;qU%м5o_>/$M߄?0,IJ`.*]Qkه6ݳ"u~QL:zDsW2Mr}ΌRVŁxfnȡnXcKܨ:_xWM^\/x.Lq&ձߠ<O/ܤ\
~" +zR9le{k^{9G'C0=ZY +A+Pa`HZ.9`o;OE5dQܥ7~ڥSsxag^jK62 +D^}5όiJTQJy +D-Ҟ6T'f&zH +;K3 hGz +endstream
endobj
1508 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 75/Contents 1509 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1509 0 obj
<</Length 2320/Filter/FlateDecode>>stream
+HWmoH_G|RcV+MٽYf.jh\p$j^68Fl0]UOU=SY'0_~|0ګظlk}+>&YX'yflnnq= ږA=k7wf2lϨln=VvkVe;ۖiY}ޮ*Gx?tbRv_;1_Η5xol#?}5\ +օ{|Dfi}5~Pۢ+3mh]WfޮKѮv1s&i==ҽH-,q|ߤAGp,6 xԲE0y40G5a4 +q3~2!am4d>mHC +ܙyoB~kaR>rFym>D!2,2'vM.ŚP3b ]A־d*0%vF[hҋ*&USqyY[x
̬ xAiXCҙ!ru%E_i7LE5a&dxb=I(mbUYs.z玽m&)@Gkό+$i
Pq3pxጼN^<&aK~k,_TJ=<j1B|:Jw9<K4]f;WW*"@TaݔYKGĢ#bHT>Xu1y
c`<qG1Y3$O`9J#|GO|&K6T<TyS3c%6ÐիS{S]]ED/q_45BOђLR(CSXp@PBYWH$1E$'UFJ ۶~eJLJ(CԁfFf)@S| +A"a +@qgc=& ++!F +[ +P +Pt:ϩo/_X0\V(nyNq^x}kȳT6,Dh_X$+8tOdf5m +, ~=I.|}rr!/ҪWJ
5Y +B~\ijr˶ϢSY*H6)JɣL֧e's=Dhx8+Rf#[{SjAkXevl +endstream
endobj
1510 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 76/Contents 1511 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1511 0 obj
<</Length 2292/Filter/FlateDecode>>stream
+HWnH}WZ"36HzE^$ly~$JڴXNթK[;OOmfK{Ӳ~O?*KH[[C$`̋iSRx1(Oƣd?ѢNǼ. +(wwq Tx;ߛL{yz<$~{>݂~C._<ͭ/{4xRySxwQ\xL? &>=z
XOSx:Ww}_W2
;#^9IHKTg'=}0PϒvQLb@,q2x<--i1a8|CHo/O %˘>OFGiy&26_ӏGQ5}C.!$IAd^,$$}HݴNYYmf/^E+mB6[L9A%,>
@CRG3=Z0/T'wxP"nfH-efu\y ދ?!хh'u)9FI6p!sjWbaT>M + R7 +9
dQb+Ju9kyP +I6h!"Ef'8 +Nbf.CW=x(uv^֯WHqǎTs[R!3@'ɾCK8$Pfn +!@(eDw}tGCz?еZK -]Y@KbWbr? -n~h7/щf$;ݲ+$t
0nfr]mp/Gb'WA +CR9owa[>"+rV ފ'>-=FA(_-(8iE +uC +endstream
endobj
1512 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 77/Contents 1513 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1513 0 obj
<</Length 2367/Filter/FlateDecode>>stream
+HWmH_G|R3t7MZ)3]e(эoOmdﯪFQ6SOU}lmW:wrݭ~Uƹ7Y۬,ycR'CŎ|/NDCOF,pン_-|'iqX GfqZuV|fLǞd>wVۅ,W[|\-+ǯB'2;6WçGr/>*qI3C/ݧ,I'= ϝ_](w{h#z77/|H]/I:L8G #Or4n_d?Jgq_גra(؉d`#@t{r8}YŠC1%&J{<><<ȥ}pFu]ݭhD
IS<hgWM^'S}JEgPIx@Ĥ6ͨ>nv_J_PfY?*@<g +#!-TmI>Tq(]E'ւy6IfReӪ?O_:Uj@LJ1]po0j|:at|eRUi +L+JLWTNdc +x0KYAvYsCl65t:k}REʦrlM$K
J +^IYJP^]e~aPUك/f-! htSx\,t%WrbM[7Ќ#|'=y}"CN]U%1*SeyZ4<1:[u *ZUPD\U4**yEarJ.V;cCYhy侀?NHWtՋnTA|D/>^STk8q @.xW?j{nYdnMԶ%ú@W4f'{#Q]H[F&M͏KVĄ-O@bote{M.`K*0j _<++8ն +&`w8crtrAFC!rv!=53Xm,?4͎C}R_f~-V0$ J+p
l1$3[D0*¥ +@hvUhlX0?؇;.$jSzdhffV|UKNKrx.ɒNKһAlkl]<eeF2 ؒJ=8n*n
bb/+8 +5e}:|Oƽ[P9ܴ6ڢ%aЏ0&ߵ +GI'orrIJVIq?iP^kd#/͆ywD| ۚl'$k$p)P`ב[Z +w
3oM$: . +! +c^2Ȍłv| Hod =SOr =C gBǮ0Y1c1SF2[8(B!-z%,`.m"\7w9F7 +L3ÇwUpLUmm7ʗl+s4`:Aĺ;[1 +ReDAPCD.r ?ӭa;+.IdOhA@?Wȏ +endstream
endobj
1514 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 78/Contents 1515 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1515 0 obj
<</Length 2259/Filter/FlateDecode>>stream
+HWێH}WW$hn5i?.3\H.cZmSDCY'0~Z=uTlya|_?e~ߒ,<3VxM!n\v!}A]??>?b1p?_pZk zmсS4/2ɷ)7\|Zl/_[ЗO_֖87֑W~`S&1~0dYzdNx׳fƔUGq9<0|n.-49:{{VEaM;08^~5
CX~. 3
8B[@[05A8%th\SNWӓe8RćaOPtw: "tg6bQ _"&5/x9֒]YaU!$^gy뺔0SU*JfR=$#-:vuTj,bSi6&s% Gg_Ϟ9Dp{2%7Sղ>
\ZYJV54Nk_vxCZN4C/??PC|+0{S2,260TUA1rs1G sS,kY$ܔaK}7b$Kjp\tq +Δ14Q69>dKXE2#,${C$"|`sZ9߾E7'@fIS& +2Kf>G[ +7ݤ9M:_9QstPjJ~2n`|ʈ7C>^P;w?<HpRe&U55"=20JQC[ܞAm54݄;X;C
Jl"JRn0d`3QF&+/:=(^Gp +H<FQtM8NĠYɳA%8TL`PAFi=Rbc-NG*Y'M0UcHݽ,"W:*H:[42zFne0y~[sظ^ە8q'0>$*&luItۅ6A=/$B$<mDa*
IDaZFw:'yP0 \c^boO$6q|zI[[ol̻H?5V%>`PEP@0<AB4m%aU%RE]wR%uPҊ<tN mй$~0{}WYݫ9jrv\YXO`+ݏĺ[9rpg+@Bn@
݇x'|&X:Жv`g#Lxad¸58=:>V֩pV7b{-dd*,u-6h(ij[X+qOFȯ +#g}\m;9PP/ +endstream
endobj
1516 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 79/Contents 1517 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1517 0 obj
<</Length 2192/Filter/FlateDecode>>stream
+HWkoH_G^ F$ՌԳ6*(ll` +|YQ̐ptb4z gϿ9Ov&>>t'hsaЁ+PDt2w<d8p
j{DKbxj=VQ]OwWDu.5N6Ā</'')xbsB<.M[U(u"F섹c]\ZAȗKeZ-Dl'N{h+9E)BgR?.U?]'PnSbT5.t]-1TIr`;!yG>B.?!>3YcN{E@x.Tu.Oo0Zؗ>SW=z(щiA2<)mh3_+|+*UQke
/"&|e']LqLC aFBzK6 +x-x{4_gV4Syb@z^zAek7Z3ؿTT
pb>V'Dhg|YWuYFu4#z^<'F}A$+jJtfTOtJ9T7v +KzCm~<ӹvqHs3EYgv
~'X%:dqgftz]VV[|oi +;b5{;wcyIfp{YG%PЉ3)e!a.f2ԔL@W^-9 +FXiψ9TnQL֛ԏbvn
VbBDvq=2MjhT3c.}wJp<h}W|Y5 ECG`__sLϚ'%fR\8Tp9 ʟ,^&&|Bֆ~$B-z! F.БNsЕt +14#nim3%ycdx =IG١pz^]`Ÿ$o*3]"AU1;z2cfgXя6j0 +ZSU,Q&h^3o>W<TIzRtbtWE;,V $)PNw>s +endstream
endobj
1518 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 80/Contents 1519 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1519 0 obj
<</Length 2501/Filter/FlateDecode>>stream
+HWk>x%ѴZiU"e8՝0m260U:Nl'믷wM'{ZO뢴ޮʺ+eydEn/S(\J.V.o}~}sXImϪӮ]EN(ƶVo77ïB2!;R7ۛw۠!6s4x[w\XT +\M +O)Y9/)q
OzI嶧?b4B>ŸBN!b%mK(s>:D.|ަ#Sc0\o K"1zɶ,!OqsE=bD: +D`p +EPyϥa ++枓z<̼(a_5y$t#PyW"VP$r~(&O#:T]~PqϜ}dA$WE,>Ŷ=m+p<p2LAbBtL42ީsɊ3,#<S=fKa*]MٕY5@ʡRQh{ +v;m 2Ξәj4nbc
ڷPgI{`'1@Ҡ![U=Ʀ=19]HKx?&*w5;0=$gp\{InpL<͚lzdjnE~]CPoQ
Imo8Uy|Ѝ#j{(~ʸ <}PU*= +^C:;E1 :`2{fx*L<=!!V'La ea=.{qavse{a-*YYZPWk51,-,SEdELaKr8⼆YoX'㦫LsW3usyNjRl +]5 Zvv6CLN`yˎ5^i}22nGKcF0&@ș&ܕ + i Qѵtxno#O`3Zr
A.?úd5IF@Aɥ(AM%{o +6ۍCR})_˟k@ldh[G-ӡ;pbvfp{#z +(sִ(AYDY&w?``-)3LCZR[VBQeKIzX +0۪7;L+f;m䀕AYJꦘ1n`T~M3tt*^6)Sli{#f +DҬGֱUeCҶQw
0WDjtlWOFxI:aS}пR,q*x <_ws.{xnY2>.Fݿm4U]\sSYD̵1//&y8W2ZSGBO!$o\ԼE$sg +endstream
endobj
1520 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 81/Contents 1521 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1521 0 obj
<</Length 2029/Filter/FlateDecode>>stream
+HWiH_G<HgwK쌶JCڦMf2//"gNV2_~ZFOE^?fBordN̘oƓڄ44\l?7wf1>:FTgTQ6_lpb,Vv~/|<0>uxtsr +h=;HvRōveL\Ʃ' 'Ro>O-YFMtӼ)RղԵG|?
XlIh +]|Pe#kWzD-n=s/&ДSjnHV]WI~IOiIxaR=)Eу:^"3X8)AYυEKuixp'6Z
qię vUKM.㵪5MRTX]Zi0^mjUQZIV*Hl-絰︡K&0.G{jTf+yD{TR2J?I("˛r](:'`ڣ%BԤQ.+R&rrd'9iHt`d^8N_,:gp2zZh˶M?u%/.iu%o_}IXgY`xvΪc<Gب4>a]us{ڌ{!w/d@jJw]!mzEB%cL1o0=bǮSϯΐt4XWHqwAX`UW`ZS~̞kPň +GfW0vk*fPcRI8#bܴE]TJ5nc=-T~Ur[]qZS(:̻F@+Uc=,?$-?t/?W6J'mX&5\, +4I;|nhQNe"S1xkB&*BDq{JeU
(|P)ׇJz&KYy~MCщKj$9}JGi#$ZRiC%ٷյ*Wt82<6:<a[?Y쩞ĂC(OUS8B,2}O#\{ +endstream
endobj
1522 0 obj
<</CropBox[0 0 595 842]/Parent 1767 0 R/Tabs/S/StructParents 82/Contents 1523 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1523 0 obj
<</Length 2049/Filter/FlateDecode>>stream
+HW]oH}Ը?i4MrF;iW-58ɝ_U
(RBN8]V5._6ߚ&:^6ۢ~l?Kmm<j"6ŧ"C1+q0wh3ڢǪ|'zWZVCyH0:>Wo}T.-?UnOoO`(-|Ckas/+^ڳoֿuo="_alo]ٜCKDuJxp `*֡[B5EF#Fh6=FjHc2D2`mY +\?|#O!Ģ:}WygmkaГ'Igy0#UAvm1VuSYUc@E- ӥQl-mQ}_.&Xhtf s/Zq)Ja_MY!6њ; +܁^g8Z%=u
/E@5cW@5VZjWThOKUL2Zr@+% 7&/TU9i2xG x t"BI15S +GH
~5[_ r;V:W;Cxp 6[]LOe5zAƼ"<c=T]F1ULQ㎆&S]:[@aٻ@;[:,=%屳2Cv!E)hSW.1Nţ7Kq6 +f.upvP:^L5->0;b`9l.ƅK@_0]pĽ8&{Ӕ@3x6ޭ\nm2B3qJ+*Qpb J|P\ʾMhkmr/si#e4Zs{} +endstream
endobj
1524 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 83/Contents 1525 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1525 0 obj
<</Length 2405/Filter/FlateDecode>>stream
+HWێH}WW"/$ Fnfю}V͚vWF$
juq;qNoUè1~左 ]Q_v2^ +I6I/Ň.wM͙a{>_}fl^woՆuo^esbv~/<u6wuy6a9Q~_˟o3;_acӘsօwG|?%[4f86k1ˌ+/Cj_h!]NЮ``O]6|bo-ne|;"o{M4G40M?|n#a%4q3^2Pb: bmHC L O|7_n}o2wăhqWN& +YC4p'I/u:1RFi++Ʋ +#f^52lFtwk|3`z[ +$O4.Z5MdtLRxZa˦[3WKGߦwՙ@'Ny4(EE>Kv݉`d7*+%@A5eģ۾쀘.o+*7ˊ\7R*Z`gpڂ
+q`@U$qGh[8*BZ台V<vڍ:ECS#&spyI~xL$v]e+x/F5KębMlOت,N}b琏Љ`xڲkʲ0mxfWXbs V)sY<̀*5d wħ hcdvYVqfiC.wTZ0jF +\-<Ҕ~>Rp? N?Xq/2A1w06t#ȕaT[yKͻ}1/H{Ѳ3f!3!lq#!1a/
uR3:/ +\P,; +<%"G22h3nu'̣0)<\ ~m +K&yҙLjB0Mo*D~'Ϲvv_ +E_"%uMEJzVE"l" q^9ב]^W&dAG6wPx?6%(X'%\ +#%GOBE1p{,VحPXQAɢE'\; =d
(WBbEt=l聣]vwYiuoE(bdE{x(p}<zD +ڟ1iT]FJ<_RY\,kk_Td9O@p!'SAfm<cWكߪ譒3fEd[QaTBsU^\q9Yr?⌘Gdx֍>4|"q$̵*u|& +endstream
endobj
1526 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 84/Contents 1527 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1527 0 obj
<</Length 2226/Filter/FlateDecode>>stream
+HWkoJ_G~ ]])j6FEm +<ߥ%rfwe@rxx<Ϫ|;Z׳rYZf\H
|0zZng5_wm9.-R9ҳ۟'χ`r/x2J C
y~^:s'z{E<xW8|2ksGeqH=~Eor~}|LSC{5wm5圽={!^J&}35FA0O\//ؖ]T} -yA@N A!A{Ebk+fp,цt()}y|X64GW;z"40胀+E'PyXV96ܑrs+
I綪t>wmjJk횇2j
;=K%@x<"GiQeQ5JwE5*Ik<4_CZiRR%"@\P39 +S<E6mw{1\t4gv+LE
ت$j뵐k9?8xѡJX03&N4`mt0>q>U?EqAH&4J|{eb!NT$6]Jsux
_7<
s"j)R7exd*I92f+=vIނ\!ךI^mQژ Ju7o۳B XJkQ
Rܻz՛=ET؊fkbݱv'>ؠTD_d +9Ƅjo]gMU]m!Yu|x2{:BwphVAa&Pl%5[5*YzJeʠJ+Bp:i;]7*~]<Ьߎ +nR:2X]YlP;aOz"eU;0Q{, g1s +e'\}'ULjSíI-#y<F2_tr%f%tW(n4ysD$ +^Q7QbpGZaLQAvQ)`: +D;z^/K8/oj^HDž,[PΕ>hy`@X:/9h$(}'NВFyl|B4H9Br_; ΎqV{l>$iBzKwa +w997y9[I!'eO)*a!۵/_
DwЩRɮ̎[\ XvYUB$79]A>g"*+cY|[' +endstream
endobj
1528 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 85/Contents 1529 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1529 0 obj
<</Length 2318/Filter/FlateDecode>>stream
+HWk_G|#~薢HJnM!UM3_6ՎWS}s[5:oon&:nVEi}Yں5ڤyԤEnoS ]J-AIqK
/}wpo-VĊkV狛֦^ܬVĢj]s+Z!#Z\x\- +g
N۸L1tB XQ:s=bY8eSEkQxʠA JmD7f_2jenW,&ԝeYoN7Nr]*뽆0|pUV4ktb_LH !ϑFA-a,4hms'zق9*˘3\x%uv(S6:7!!$0u!Jj>`0] #7A^Ԥe.#`&zδW=0zP ;H3;s͗B.Gџ&KQ(>Yp&1Vvn3p2bN1$:7YнS>"#8!BheXd,fL×@50d>2ZLt[JF2sdeRAʙQݒY29G9wA-ɔKǴmqi{T0/+Md]_rC7/$*8
h D#*DR 4ϖWZɳuF\gD 6 ( \2ͯ0 !aXdPd]]:~tW*<h"lq>'4Qv87*W]Tkh:l +hkA̞F*%Մ^%+:7a
0N䉙Jý(wb+̠ՍXuܘ(ژfB +(Ѿ։z~Wh/*f|d=D9uš~n/Owp{?'w 26p?q8W`Kj_q[*ltŻ*/ +kl}҄ +_H4yz
0kC*J
Utݪ/-y|#5mUVF-4X>gjǛU +y٘N +`ήgqsT0_Alqݥy8ZpF ,%l 0@ov><wroEfth\]:OYHHxA&Lq.ǖgK!]j65N%FY4SWhQ:ZoBqs(utS +OHK"
ADPXь̆ҏlG~{w??"j|9i4ی8+'Do4KpQ KG9YT!=^X +} +endstream
endobj
1530 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 86/Contents 1531 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1531 0 obj
<</Length 2568/Filter/FlateDecode>>stream
+HWkoH_G~F#qwɝ3U{ߪacclE1:O-* +J駛۪ +Mio7,,~veT2Kl9IYI}ət=ʵ?|pWKKR?Zu9Y,,h5-.\X7]j1m|ٗ2kRG ӊx}yn Xe
^,jP+X +>oRx_o0m]{$&
>6I妧b4tq9x]DZ6R{3
byl|_'~A`lL6 +nԥ}$yPq`hĤ.kb6ϹN-J(YOV;kճDE +p%ǃ!MF>Aɼyy<s2y\P]d+'o*yfzV|MP(D&bmge +(8 BY5^WذH~12ZhMOĢ%Q>I|Aa%r!Mia +nͱ#x&v)
0 +xOL8/̉>;H/0m! RQ#(eQq[=DB{UQC3D'L`g9"'xTru6 +J~5ñ\{w525wXi\mb @qV7,]e&4Z#5 [m3._м+ ͒uNڮ+r#WP9Pz/0ks;M&p,:Υ7qZTfWvخo8:`:bk`\@="X7n-A]]3Úqג؍C,M!1Z9o|E9 aU[g8*tJab -P15i T"5)<T: mzș8~ʡwH84n~w]5v(EEgg&?OS93;h<;|YGKL8SG^Ӫ3VdʍoYbOzAb ĆJ#X"\PeZݰzG8_kqbn;F`T>'M{GzI1kۄuZٴgj:*|Cqm!p {<:5C-gH +9RP=J +^u$3s.g2or:Fָ0V=:|KUW8JI1TG#5;mYh8F!S])s=_u\&e٘h`މ$qAl-ST®\x,7ʯ2d +Q׆0*|2#'(:E^"xǕѝV<=e0zb
_&`f*>N0
e3뗅:`,/E +Wrګ"Cقv, u6[|R.@Lf9ߑN;uuZT]oc5R"Pk< r`LֹgˣAG,c@g/9e + +_xoWm۟_O#O[RUTel +ҜU'"JLF_A>.kg.]鴂 ɀX$A+vHx]Յ{X_'&ekQ!6cIxLa,
'3t`MfHL٠0>WIE@g/+\C +endstream
endobj
1532 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 87/Contents 1533 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1533 0 obj
<</Length 2034/Filter/FlateDecode>>stream
+HWmH_G8 L/j˞FK'\bp&xj6cjqnzM/,?uzZ\,o,<wwzb#>iEy\_j[IeϪl'ʷ,f, Zׅm9oR^9ԋS3lOJ,\qi~XCdOg/Ç{/{_#oj9_W7P'#jI7$Q@j
:Dd厴7ږQ(/oYS}c"B=3ed[=q!Զ9*[͊PEN5' I' + +B.2/݇/q]ˏa.}V\NQS\!EgNyi,%͈kԠ52\>$w\nLT8TϩV}Vt;ۛar6e(m2r)x1,)DI: +\5SΣ` +OU\ҥ2/Uzy}ho4E(]p CK>SBjTVL2[9n +8yn 5v}sߺgs2FZϓ=&l5OqNSA/&ӵJ6_DU?qYmv4{AJQau +{n!SLI+W7]n2eY2sLt
Zzs$X"A}oاwn#>w[״3ViYU߫Ro4\,ѕs*ɳ4zs*ܪV2/ +=؛J.r2RueWdDKfMH# 0L@*V!ﶒӕV;x + QU0.zjܤ0A& 8DC9QLTYc:7u\kU$L@LqڷFs>S`?5"\s͟|mz W)ٴwcWCH&Q3yq?kSw#]-G<'$]s&*<WÀM:<'Ḻ))xˮг϶2 +U0s BqRq?Ple<V`2Ep*w<:X^$I½fN$`N^=A)bIMs|2"#D7"K="wr6I: +88ɱ> &Um3ӊ3Ll?^,Czw\G0&:@ߥk=ELXͬ 0c/g0ncD|`l\-' +endstream
endobj
1534 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 88/Contents 1535 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1535 0 obj
<</Length 2426/Filter/FlateDecode>>stream
+HWmoH_G|UZ4IfNYDtQ
m
Nﯪy1[1穧nT*]XrE)oeb.y,q$6i.TZ]aM:M#seFH|;k{nys{qm8Q?֦].M`;T?c>u|1Q`SpQɛ?ZOpf8,0WAd,ߍs.oGn+4<L˽86g1Ɍo+}j+ZsHg%hg`lbF5GYG1|j_}DjfQ0Ol'F/NTL:N= pN4A+ _c p +E೨)4S +=OH" g{'}q]L0&GdGvyMȜ"R<\eJJrUX&B"ހEK@6-~;O01C8gFD2y\Ͳ+m6 +Gԋ:k|qx5\]τx%ՖoEX;_RUL
ni7gRX\]zZrAs곰/גvk^IpŇLg<½!a%iY!kvpɝtoƥ]*Հ +n
l +XQK`d%===@)ˠ^AƢ;
u.z:{B)+V|| +3p?_~AZ쒫]šj:zЎmxd_^d Oܲ&!yM?w.9墢|OζtʦJfڱ(SwxT{ +*ۖuB%Sop)*Ne^T|[2Gv+<^(T'ѐkքi:KAwL9n0^?(tsY 9_B[-Թ>fy/JVrAw8Lxxf)Xcp@VY{[F7٥&OMxpDQ0W%i7Gub6zhYbNUJ8A?^Sp2NE6(vt+c(!%`)dV{Ybd("VQy+5D3ESԱ160{guVgb5!QR@+)f +a +§nEHiӇۃ̵c0ӟ>ޕeQ"}l%?ɗy~ugi뵐ۏhƊREv +4OoCJm>Yoӈ99$KΤ,yz4I&):Þ + XۺWSV<\9ݠ$LHm_=pIblhi<1lty]d)P UӪ楪D,gOߜ4<ɸYkcoJԯ(}
tZkbm21LuJ0@!4GOw'=,08JxIdq*MqG}<_.93zzHepݩA{xeQ̴V2 d/;9OK'TP| +PMM@E@hV{"6-q +$|7+wԓ[5nѝUo*D
,Ӹm#jO7prLY{8֨pJJ::2S/.@JqK,6'gkAwi17G'.o/ +endstream
endobj
1536 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 89/Contents 1537 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1537 0 obj
<</Length 1916/Filter/FlateDecode>>stream
+HWm8_$lZi{v+n4;ohbn_eIEUKWW*MB?PUQZg9Z5Z}1V;z&)O` <|RQ#Z<g%*b ^mjAd!Gw;Vև.>`7$13"׃yЋdgǟ`Ɨ5XyDXv/]d}!&ؼo}veu<ki2b + ހ
%Qd2ʽYun%fCjg~+TY $)}dc@7/XVG̒p iQC: "/C$b^ŝq7@}LDk1/2SnvQKdkmCD(H_FG +,VaIQo.^0rxqSnN)\87}5Q +lv?ux?R@?a^r]7xKg;-129%(l8Mm +endstream
endobj
1538 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 90/Contents 1539 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1539 0 obj
<</Length 1542/Filter/FlateDecode>>stream
+HW[oH~GX <7nRU)NU+U[5h6[ 6[,l_sU6\sf~S5J
yn~4*$K8|eB:U9/w6cħHjKA|ڞ%l~@I\Hh]aH #jٔ£ցq*H<33g*gsHwJfg칳( cW^@%ٚh<iac[QԱ/5ؚ2?vFW2uเ.IaʴA-mO8`AAOu8LآCrM ?|W pJ}m}|OjH +)O@%hFX<|b8k^:*<Kdג,#T xB1'm|U1 +-_zjuui,8t'1nn +HTn^n
ysF<RFMfW
J.OQ_*hI08l<[%Erȫ1tIϻ© +%}?T +,xYRLļ#a'iUI`YmTL?FMH~$#mNeQ$r,zu
{<DM0ə4vōT:4!aZGNoSkc>` +endstream
endobj
1540 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 91/Contents 1541 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1541 0 obj
<</Length 2699/Filter/FlateDecode>>stream
+HWn}WQ> +ۺ]Y_P +'R[{_1KŸ>x>]'#rxn)=EB m;i1rC|kmYwUT}Im1
M d>@wE9G:L`o/O|jE,W,Cgc(6vc$:! +U]J i.o>(gɊLt}I[/$#$wk$®T3C. +S(P;||%듷+AGڲ<YgI} hEв)kAPwzT$SS窸ԽHil6F&͡ҧ@d
7]丝VWG^:rN$9wA.3Q|h@{ ^KnuNVqqѨ[|BYsPjc p6ac<~ .%Bn$ +94B^i;!'^u +QoF7U?:&ue\ 8e^*ʹl_z?,Z??Z6+t#x2>C]G@f6,uy䊑G a,JTrfO: >lb70dql4.g=M>p|9aܟ %q +[0m("|&Y%.!P\KLnU&ݓ)T|tN7Y+-:'HEIZٴ&-ql|=T2%\Ց0!h
7Uk#l^y{ݲ́g49<7:~?Rm]FPplղT_{]xh +X'A*r6:']Yؔ\qR-J2UYӣ`{4jk1QzOƖ
Rko0Jgh3J*DY`pt +&<,䈽 9JȬDp<)p߮ǜ_ƪ0Vѐ-mY"=7זj 3O<ijiVE:nax;M){<;S8qHD}//3Nx|J4& +47|;OQz$P3`~/wATU\HYY3`
C`#ܬ7ʃQ
+pmd:x:.(¬[|c,&xW4ty]17[㹤q[++؟M>_XTqvIUЇܨW0ҿR.$ЏĖ0:EPrqֶ8%C]#ߍ0w8
(RA.x$!PxI܄
30L)novh}":3HwϪGu01 ǕrEIEkE kjYѷFiwUD`~_s̬݇!4k-,ck ++}F~ +4&+hd2`NP*m3`<GRuK{0 +endstream
endobj
1542 0 obj
<</CropBox[0 0 595 842]/Parent 1768 0 R/Tabs/S/StructParents 92/Contents 1543 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1543 0 obj
<</Length 2168/Filter/FlateDecode>>stream
+HW]oH}TF#%N4QwOԱa3찍$Vel(RsϹh0^W4~6Y}xe&>^n`cٖiXTsc0Xڏ?Xkb~15L~X b٘63LfIakR,C!~bxZ>K._O`CL2mkqm
cprU٠%r=ܭ4!ڈO-l\Y˯
%CM +SKpڀUS"tM0*JmX|_z4^:f\WqWwp!"O
4Y"pH^\F0(@8%"zy6m2Av0@xhPp!"(,K[T1WW妒G82G&!2q%g۸ǎ0)%.aАjU¾_b!Dn{t}/^|}vo(HT}Zi&14nWI(˗^u((GsYO8v}. +$%ºP>A,vi~Xb{e "-.^֛g +RX8`[þz[x.P)GNe(LKٱq(YKsnH:'B\"6Rؼw[q̯yh9u >UBe ˊ<MTVv&w4-e^M즀`F0(y+lo@
RRjg`%Jm|FITF^|ǀW*60>?3%V&`ך"91DfI2m5D5,h]q59#C\qJf~0ZZ,(FU<Z8~2kh*]H;J'"w>d"hr4)Q#S-9SFNiX=ˇI%T% D'q +qZی1aun{>oL,Ֆ +(9Cd-wQ!ph1~Z5W}B)ɚ'~p<L
ڦiy!b0'1ǖ91[8j^2,UxsQ(C8&||SszwHoDl,̩p.GstPK&Y){U9/>-dUC^|RUә ^1Qmqk;'iNr|( Jo_+aBKxd9q5ן`6
f8帤9}K&fj-_4g?՛SdbLn@m +`]o`\X[n3dn4/eX!K $D<sxLd@cOGapi]?"8!u3̓00V<Ū/1mN[IJ:QU'RT$%p$_#椐F0&$mЃ0%3әʤ576:6\٠gx\\9Vwt70 +endstream
endobj
1544 0 obj
<</CropBox[0 0 595 842]/Parent 1769 0 R/Tabs/S/StructParents 93/Contents 1545 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1545 0 obj
<</Length 2414/Filter/FlateDecode>>stream
+HWkoJ_G~ +?)=tЮױˆC0Y}zw{z@{&!NSY0-P+*1e"'vi#xzTpڐ.uRF8[z&ø2X{DT&x++Sg~; +@ +`-yFvz~0p'۵=KOZ`B-R8+VTA!~KňePa'fPjr>PɐGڭu+&&S˫qAfӌ5bnZd*MJp dQhN):~pl֫p2\*[Q{@Z `zxUjDyJUk۹db@VR$߮r̲H.#!0[79=Y8?pK\i2}ASAJRgDžPbo ^^T>Uu390'"u$u{NaP13p;I$VDcZpboݑrVf^S\ + ϫi١X2iYla
=,S yx%o$R.߾L>~72uƚ ܱ@vnQa"V oՁƧ F NZPSϑQVCU%Z|'3ISK+eZ(=@){ap G'.&yqi=
{˘ӶzNuwXh-[y{GdrIYgiZ>ȧK2|S3=(=[ɹu$#{Kw'j} ]hSK'HsDjL9+>IZemQSmpCdz-ٺ^L/ +endstream
endobj
1546 0 obj
<</CropBox[0 0 595 842]/Parent 1769 0 R/Tabs/S/StructParents 94/Contents 1547 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1547 0 obj
<</Length 2422/Filter/FlateDecode>>stream
+HWaoH_G|nV+9Nfo4݇`
,`O_UӀi6]^z}(tFOwmVya|[Y$ݗpfaqwx`bi`xc O]??,jv|u2QEѦݭVAz&lՃplс-Ì~f2Jؔ.3d=_ԹaXE>X0RI-/3Jg173W4ub4q]q9xbP#znxQ֧g-`ob`<l6 +"[D:lۈE[]֦L }+EJa4 +|QRRT۠~mq*7Et~,5ˤe?i^{t/vEXG۹%&PeR,bS=a}Y>%fKL +YQ}dV2Ͱ>H +YY?559ÏVEj/֕mENzŨUK\\<H0]ND#VbWD]cCh'Ȃϱ +05I0HezT/إ$8/klktcXqeO8pVFQN3k}Q>$Uyke;aaZ"@bɳMoPODƀ9m0L>6"ʑo~[sI艢A}zde\(;^|֍+~//~ף7eQ&uZAq4mK+.s2Ir4koWy:bbu DzO{(8GH{:P~,}s߂evyf ǤILwgv+M
0nq# +gy]`_8Zt*u]}T_LSϑ{T U)l=c8N)|f}vUJ8[G>dhMOpFԱ2'f:+ hRp
:N( hzP.!?T*p09gӇ.yr
?S@K
>los<^6m +,Oulk۳oEԦ}5Ń]35X؆ 27T r8MP%rf<&40+=擻7;Џ"pG'B"ղ +zyTj_)EMwK#c%)8 +R4C HXAPʮT3GXX5 +0BH(m2\6bsa7j? +endstream
endobj
1548 0 obj
<</CropBox[0 0 595 842]/Parent 1769 0 R/Tabs/S/StructParents 95/Contents 1549 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1549 0 obj
<</Length 2267/Filter/FlateDecode>>stream
+HWko_G|% +i
܄h_8sGc>ux.q0ɬW՞kEoir~Xɬ|.%}c9z{NC<m"
2' 'dG۲(Eǜ0ۢ't숐9n+/17'dLpHia SRCѷh_wnq,ϟ_+;1yGOtAHт+I'y撠XCNnߋ?].UGO9J%<<η飈J=+D6w-:ڀ1LJMqic4̎sd|T [W<0; X{o=̗m&uU0&Iy|;k:$븡i,K!EhK@W][,VY-]Iٜ`-PaƂ.vm͝t{l6`kY)N.~E9<Z݁<!}햅Zq%Y<2_\"Xq +w8G oq 9C(H +}PC^LI5ry<DtXԥ<hêG]czfX{V۴Юte2<7¦mwM,ճBMkURda-@DaN` +z4OӃPRI4Ŷ*p i'
wԉyL'zBq}k+M82y z7cr_oS,[4fNڀx\ 4yąH 9Z+CN,zw
>U"cW`(.dP1 +endstream
endobj
1550 0 obj
<</CropBox[0 0 595 842]/Parent 1769 0 R/Tabs/S/StructParents 96/Contents 1551 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1551 0 obj
<</Length 2086/Filter/FlateDecode>>stream
+HWkoH_Gh<zw3&0V@fcG_cSǹ)tŕON2[{m-uEUg6?X"t '\?8\F-IHYΚ.g'ϊK32fu9[,Ejo~7JKn{Zf5_we9T?/,sVgٗ-#rzpk{@<2*umA(ܐ5[xoܑ('sn[7wswC'ߗ4[Yů.C{5wmY9{{NC<6
*' ui#ɰmY +D''ڊ:ylt+A^ńPAܦMWn + $].#xB>B)>i_M~qӾ}5)sbm34"}ӅҪ>8 +>4)`#RݵBE}L}?ӃB*Q G8 'LGz%e&
m.ABWuh[kL&&ix +x+d6MԢ}=6Z2J㨬\4v(Sp:M=z.{Fu{Ó5| +V +xBΒ%&ηz?ba= pPs{]GQiLY?Xf2$?6J|pdnIo?ܖE`A[]}KUAcH\+{\V
^Cm"P3-A70t_DkJ)9oplmGJ/;a.s5px*\k]k|K˴ƥ[p + +崺B=-~nfUDF +*D(:I<3<<V1qP΅^`aD v,_%zM +endstream
endobj
1552 0 obj
<</CropBox[0 0 595 842]/Annots[1553 0 R 1554 0 R 1555 0 R]/Parent 1769 0 R/Tabs/S/StructParents 97/Contents 1556 0 R/Rotate 0/MediaBox[0 0 595 842]/Resources<</ColorSpace<</CS0 9708 0 R>>/Font<</TT0 9679 0 R/TT1 9676 0 R/TT2 9680 0 R>>/ProcSet[/PDF/Text]/ExtGState<</GS0 9723 0 R>>>>/Type/Page>>
endobj
1553 0 obj
<</Rect[227 659 247 672]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 624 null]/Type/Annot>>
endobj
1554 0 obj
<</Rect[227 641 334 654]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 609 null]/Type/Annot>>
endobj
1555 0 obj
<</Rect[227 623 300 636]/Subtype/Link/C[0 0 0]/H/O/Border[0 0 0]/Dest[1 0 R/XYZ 353 540 null]/Type/Annot>>
endobj
1556 0 obj
<</Length 533/Filter/FlateDecode>>stream
+Hk@W<g(.}XKR.إ쿟8N[gKH*)}2zP>T̪/m2L6]2^_'F,~j Iw ې' iȃw\3W:)/pu5{jy}]֡FR*`.`.JXM- +LMO(*>PY#7Պx'1\Աust8!¨"3tKy3*Κ,x +N/B#|~zViX +endstream
endobj
1557 0 obj
[/Indexed 9708 0 R 201 517 0 R]
endobj
1558 0 obj
<</Rect[209.756 349.814 273.239 364.242]/Subtype/Link/A 1559 0 R/H/I/StructParent 11/Border[0 0 0]/Type/Annot>>
endobj
1559 0 obj
<</URI(http://www.oce.com/)/S/URI>>
endobj
1560 0 obj
<</StemV 142.397/FontName/TimesNewRoman,BoldItalic/Flags 98/Descent -216/FontBBox[-547 -307 1206 1032]/Ascent 891/CapHeight 656/Type/FontDescriptor/ItalicAngle -15>>
endobj
1561 0 obj
<</Subtype/TrueType/FontDescriptor 1560 0 R/LastChar 95/Widths[250 0 0 0 0 0 0 0 0 0 0 0 0 0 250 0 500 500 500 500 0 0 500 500 500 500 0 0 0 0 0 0 0 667 667 667 722 667 667 722 778 389 500 0 611 889 722 722 611 0 667 556 611 722 667 889 0 611 0 0 0 0 0 500]/BaseFont/TimesNewRoman,BoldItalic/FirstChar 32/Encoding/WinAnsiEncoding/Type/Font>>
endobj
1562 0 obj
<</Rect[465.479 643.81 528.963 658.238]/Subtype/Link/A 1563 0 R/H/I/StructParent 39/Border[0 0 0]/Type/Annot>>
endobj
1563 0 obj
<</URI(http://www.oce.com/)/S/URI>>
endobj
1564 0 obj
<</URI(http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html)/S/URI>>
endobj
1565 0 obj
<</Rect[212.879 619.569 484.87 633.997]/Subtype/Link/A 1564 0 R/H/I/StructParent 60/Border[0 0 0]/Type/Annot>>
endobj
1566 0 obj
<</Subtype/Type0/DescendantFonts[1487 0 R]/BaseFont/PIBPGE+Wingdings-Regular/Encoding/Identity-H/Type/Font>>
endobj
1567 0 obj
<</Subtype/TrueType/FontDescriptor 1568 0 R/LastChar 121/Widths[278 0 0 0 0 0 0 0 0 0 0 0 0 0 0 278 0 0 556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 722 722 0 0 0 0 278 0 0 611 833 0 778 667 0 0 667 611 0 0 0 0 0 0 0 0 0 0 0 0 556 0 556 611 556 333 0 0 278 0 0 278 0 611 611 611 0 389 556 333 611 0 0 556 556]/BaseFont/Arial,Bold/FirstChar 32/Encoding/WinAnsiEncoding/Type/Font>>
endobj
1568 0 obj
<</StemV 144/FontName/Arial,Bold/Flags 32/Descent -211/FontBBox[-628 -376 2000 1010]/Ascent 905/CapHeight 718/XHeight 515/Type/FontDescriptor/ItalicAngle 0>>
endobj
1569 0 obj
<</First 1570 0 R/Count 108/Last 1571 0 R>>
endobj
1570 0 obj
<</First 1673 0 R/Parent 1569 0 R/Next 1640 0 R/Dest[1 0 R/XYZ 0 714 null]/Count 5/Last 1673 0 R/Title(Document information)>>
endobj
1571 0 obj
<</Parent 1569 0 R/Dest[1552 0 R/XYZ 0 714 null]/Prev 1572 0 R/Title(Distribution list)>>
endobj
1572 0 obj
<</Parent 1569 0 R/Next 1571 0 R/Dest[1500 0 R/XYZ 0 714 null]/Prev 1573 0 R/Title(Appendix F Montavista 4.1 Patches applied)>>
endobj
1573 0 obj
<</Parent 1569 0 R/Next 1572 0 R/Dest[1498 0 R/XYZ 0 714 null]/Prev 1574 0 R/Title(Firewall Rules for the USB Port)>>
endobj
1574 0 obj
<</Parent 1569 0 R/Next 1573 0 R/Dest[1496 0 R/XYZ 0 301 null]/Prev 1575 0 R/Title(Kerberos)>>
endobj
1575 0 obj
<</Parent 1569 0 R/Next 1574 0 R/Dest[1496 0 R/XYZ 0 412 null]/Prev 1576 0 R/Title(NTLM)>>
endobj
1576 0 obj
<</Parent 1569 0 R/Next 1575 0 R/Dest[1496 0 R/XYZ 0 455 null]/Prev 1577 0 R/Title(Authentication)>>
endobj
1577 0 obj
<</Parent 1569 0 R/Next 1576 0 R/Dest[1496 0 R/XYZ 0 595 null]/Prev 1578 0 R/Title(Raw Socket)>>
endobj
1578 0 obj
<</Parent 1569 0 R/Next 1577 0 R/Dest[1496 0 R/XYZ 0 714 null]/Prev 1579 0 R/Title(Multicast MDNS)>>
endobj
1579 0 obj
<</Parent 1569 0 R/Next 1578 0 R/Dest[1494 0 R/XYZ 0 275 null]/Prev 1580 0 R/Title(LDAP)>>
endobj
1580 0 obj
<</Parent 1569 0 R/Next 1579 0 R/Dest[1494 0 R/XYZ 0 415 null]/Prev 1581 0 R/Title(SMTP)>>
endobj
1581 0 obj
<</Parent 1569 0 R/Next 1580 0 R/Dest[1494 0 R/XYZ 0 559 null]/Prev 1582 0 R/Title(Printlogic /UDS/IntraLogic)>>
endobj
1582 0 obj
<</Parent 1569 0 R/Next 1581 0 R/Dest[1494 0 R/XYZ 0 714 null]/Prev 1583 0 R/Title(SNMP)>>
endobj
1583 0 obj
<</Parent 1569 0 R/Next 1582 0 R/Dest[1492 0 R/XYZ 0 415 null]/Prev 1584 0 R/Title(FTP Client)>>
endobj
1584 0 obj
<</Parent 1569 0 R/Next 1583 0 R/Dest[1492 0 R/XYZ 0 714 null]/Prev 1585 0 R/Title(FTP Server)>>
endobj
1585 0 obj
<</Parent 1569 0 R/Next 1584 0 R/Dest[1490 0 R/XYZ 0 377 null]/Prev 1586 0 R/Title(HTTPs client)>>
endobj
1586 0 obj
<</Parent 1569 0 R/Next 1585 0 R/Dest[1490 0 R/XYZ 0 524 null]/Prev 1587 0 R/Title(HTTP client)>>
endobj
1587 0 obj
<</Parent 1569 0 R/Next 1586 0 R/Dest[1490 0 R/XYZ 0 714 null]/Prev 1588 0 R/Title(HTTP/HTTPs server)>>
endobj
1588 0 obj
<</Parent 1569 0 R/Next 1587 0 R/Dest[1488 0 R/XYZ 0 176 null]/Prev 1589 0 R/Title(SLP)>>
endobj
1589 0 obj
<</Parent 1569 0 R/Next 1588 0 R/Dest[1488 0 R/XYZ 0 429 null]/Prev 1590 0 R/Title(ENDPS)>>
endobj
1590 0 obj
<</Parent 1569 0 R/Next 1589 0 R/Dest[1488 0 R/XYZ 0 714 null]/Prev 1591 0 R/Title(SMB)>>
endobj
1591 0 obj
<</Parent 1569 0 R/Next 1590 0 R/Dest[1483 0 R/XYZ 0 192 null]/Prev 1592 0 R/Title(LPR)>>
endobj
1592 0 obj
<</Parent 1569 0 R/Next 1591 0 R/Dest[1483 0 R/XYZ 0 444 null]/Prev 1593 0 R/Title(Base: ICMP, DNS, DHCP)>>
endobj
1593 0 obj
<</Parent 1569 0 R/Next 1592 0 R/Dest[1483 0 R/XYZ 0 588 null]/Prev 1594 0 R/Title(Base: DAC \(> Copier link \(PPP\))>>
endobj
1594 0 obj
<</Parent 1569 0 R/Next 1593 0 R/Dest[1483 0 R/XYZ 0 714 null]/Prev 1595 0 R/Title(Appendix E Firewall rules in the DAC)>>
endobj
1595 0 obj
<</Parent 1569 0 R/Next 1594 0 R/Dest[1481 0 R/XYZ 0 700 null]/Prev 1596 0 R/Title(S.REMOTE_SYSADMIN)>>
endobj
1596 0 obj
<</Parent 1569 0 R/Next 1595 0 R/Dest[1479 0 R/XYZ 0 616 null]/Prev 1597 0 R/Title(S.SERVICE_ENGINEER)>>
endobj
1597 0 obj
<</Parent 1569 0 R/Next 1596 0 R/Dest[1479 0 R/XYZ 0 714 null]/Prev 1598 0 R/Title(Appendix D Security Related Administration Functions)>>
endobj
1598 0 obj
<</Parent 1569 0 R/Next 1597 0 R/Dest[1477 0 R/XYZ 0 714 null]/Prev 1599 0 R/Title(Appendix CGlossary of Terms)>>
endobj
1599 0 obj
<</Parent 1569 0 R/Next 1598 0 R/Dest[1474 0 R/XYZ 0 714 null]/Prev 1600 0 R/Title(Appendix BReferences)>>
endobj
1600 0 obj
<</Parent 1569 0 R/Next 1599 0 R/Dest[1472 0 R/XYZ 0 714 null]/Prev 1601 0 R/Title(Appendix AAbbreviations)>>
endobj
1601 0 obj
<</First 1602 0 R/Parent 1569 0 R/Next 1600 0 R/Dest[1451 0 R/XYZ 0 182 null]/Count 12/Last 1603 0 R/Prev 1604 0 R/Title(O.F.SELFTTEST)>>
endobj
1602 0 obj
<</First 1668 0 R/Parent 1601 0 R/Next 1663 0 R/Dest[1453 0 R/XYZ 0 602 null]/Count 5/Last 1669 0 R/Title()>>
endobj
1603 0 obj
<</Parent 1601 0 R/Dest[1468 0 R/XYZ 0 383 null]/Prev 1663 0 R/Title(PP Claims Rationale)>>
endobj
1604 0 obj
<</Parent 1569 0 R/Next 1601 0 R/Dest[1451 0 R/XYZ 0 574 null]/Prev 1605 0 R/Title(O.F.AUTHENTICATE)>>
endobj
1605 0 obj
<</Parent 1569 0 R/Next 1604 0 R/Dest[1449 0 R/XYZ 0 211 null]/Prev 1606 0 R/Title(O.F.JOB_SHRED)>>
endobj
1606 0 obj
<</Parent 1569 0 R/Next 1605 0 R/Dest[1449 0 R/XYZ 0 547 null]/Prev 1607 0 R/Title(O.F.JOB_RELEASE)>>
endobj
1607 0 obj
<</Parent 1569 0 R/Next 1606 0 R/Dest[1447 0 R/XYZ 0 434 null]/Prev 1608 0 R/Title(O.F.OUTBOUND_FILTER)>>
endobj
1608 0 obj
<</Parent 1569 0 R/Next 1607 0 R/Dest[1445 0 R/XYZ 0 331 null]/Prev 1609 0 R/Title(O.F.INBOUND_FILTER)>>
endobj
1609 0 obj
<</First 1610 0 R/Parent 1569 0 R/Next 1608 0 R/Dest[1443 0 R/XYZ 0 421 null]/Count 2/Last 1610 0 R/Prev 1611 0 R/Title(P.TOE_ADMINISTRATION)>>
endobj
1610 0 obj
<</First 1662 0 R/Parent 1609 0 R/Dest[1445 0 R/XYZ 0 686 null]/Count 1/Last 1662 0 R/Title(Security Requirements Rationale)>>
endobj
1611 0 obj
<</Parent 1569 0 R/Next 1609 0 R/Dest[1443 0 R/XYZ 0 616 null]/Prev 1612 0 R/Title(P.JOB_DELETE)>>
endobj
1612 0 obj
<</Parent 1569 0 R/Next 1611 0 R/Dest[1441 0 R/XYZ 0 490 null]/Prev 1613 0 R/Title(T.MALWARE)>>
endobj
1613 0 obj
<</Parent 1569 0 R/Next 1612 0 R/Dest[1441 0 R/XYZ 0 644 null]/Prev 1614 0 R/Title(T.NOSY_USER)>>
endobj
1614 0 obj
<</Parent 1569 0 R/Next 1613 0 R/Dest[1439 0 R/XYZ 0 224 null]/Prev 1615 0 R/Title(T.RESIDUAL_DATA)>>
endobj
1615 0 obj
<</Parent 1569 0 R/Next 1614 0 R/Dest[1439 0 R/XYZ 0 308 null]/Prev 1616 0 R/Title(A.SLA)>>
endobj
1616 0 obj
<</Parent 1569 0 R/Next 1615 0 R/Dest[1439 0 R/XYZ 0 448 null]/Prev 1617 0 R/Title(A.SHREDDING)>>
endobj
1617 0 obj
<</Parent 1569 0 R/Next 1616 0 R/Dest[1437 0 R/XYZ 0 308 null]/Prev 1618 0 R/Title(A.SECURITY_POLICY)>>
endobj
1618 0 obj
<</Parent 1569 0 R/Next 1617 0 R/Dest[1437 0 R/XYZ 0 476 null]/Prev 1619 0 R/Title(A.ENVIRONMENT)>>
endobj
1619 0 obj
<</Parent 1569 0 R/Next 1618 0 R/Dest[1435 0 R/XYZ 0 189 null]/Prev 1620 0 R/Title(A.DIGITAL_COPIER)>>
endobj
1620 0 obj
<</First 1621 0 R/Parent 1569 0 R/Next 1619 0 R/Dest[1435 0 R/XYZ 0 714 null]/Count 1/Last 1621 0 R/Prev 1622 0 R/Title(Rationale)>>
endobj
1621 0 obj
<</Parent 1620 0 R/Dest[1435 0 R/XYZ 0 644 null]/Title(Security Objectives Rationale)>>
endobj
1622 0 obj
<</Parent 1569 0 R/Next 1620 0 R/Dest[1433 0 R/XYZ 0 714 null]/Prev 1623 0 R/Title(PP Claims)>>
endobj
1623 0 obj
<</First 1624 0 R/Parent 1569 0 R/Next 1622 0 R/Dest[1423 0 R/XYZ 0 714 null]/Count 4/Last 1625 0 R/Prev 1626 0 R/Title(TOE Summary Specification)>>
endobj
1624 0 obj
<</First 1660 0 R/Parent 1623 0 R/Next 1625 0 R/Dest[1423 0 R/XYZ 0 644 null]/Count 2/Last 1661 0 R/Title(IT Security Functions)>>
endobj
1625 0 obj
<</Parent 1623 0 R/Dest[1428 0 R/XYZ 0 546 null]/Prev 1624 0 R/Title(Assurance Measures)>>
endobj
1626 0 obj
<</First 1627 0 R/Parent 1569 0 R/Next 1623 0 R/Dest[1399 0 R/XYZ 0 714 null]/Count 10/Last 1628 0 R/Prev 1629 0 R/Title(IT Security Requirements)>>
endobj
1627 0 obj
<</First 1654 0 R/Parent 1626 0 R/Next 1653 0 R/Dest[1399 0 R/XYZ 0 644 null]/Count 6/Last 1655 0 R/Title(TOE Security Functional Requirements)>>
endobj
1628 0 obj
<</Parent 1626 0 R/Dest[1420 0 R/XYZ 0 504 null]/Prev 1652 0 R/Title(Explicitly stated requirements)>>
endobj
1629 0 obj
<</First 1630 0 R/Parent 1569 0 R/Next 1626 0 R/Dest[1392 0 R/XYZ 0 714 null]/Count 4/Last 1631 0 R/Prev 1632 0 R/Title(Security Objectives)>>
endobj
1630 0 obj
<</First 1650 0 R/Parent 1629 0 R/Next 1631 0 R/Dest[1392 0 R/XYZ 0 644 null]/Count 2/Last 1651 0 R/Title(TOE Security Objectives)>>
endobj
1631 0 obj
<</Parent 1629 0 R/Dest[1394 0 R/XYZ 0 614 null]/Prev 1630 0 R/Title(Security Objectives for the environment)>>
endobj
1632 0 obj
<</First 1633 0 R/Parent 1569 0 R/Next 1629 0 R/Dest[1380 0 R/XYZ 0 714 null]/Count 8/Last 1634 0 R/Prev 1635 0 R/Title(TOE Security Environment)>>
endobj
1633 0 obj
<</First 1646 0 R/Parent 1632 0 R/Next 1645 0 R/Dest[1380 0 R/XYZ 0 588 null]/Count 4/Last 1647 0 R/Title(Definition of subjects, objects and operations)>>
endobj
1634 0 obj
<</Parent 1632 0 R/Dest[1390 0 R/XYZ 0 407 null]/Prev 1644 0 R/Title(Organisational Security Policies)>>
endobj
1635 0 obj
<</First 1636 0 R/Parent 1569 0 R/Next 1632 0 R/Dest[1347 0 R/XYZ 0 714 null]/Count 3/Last 1636 0 R/Prev 1637 0 R/Title(TOE Description)>>
endobj
1636 0 obj
<</First 1642 0 R/Parent 1635 0 R/Dest[1347 0 R/XYZ 0 644 null]/Count 2/Last 1643 0 R/Title(TOE Overview)>>
endobj
1637 0 obj
<</First 1638 0 R/Parent 1569 0 R/Next 1635 0 R/Dest[134 0 R/XYZ 0 714 null]/Count 3/Last 1639 0 R/Prev 1640 0 R/Title(Security Target Introduction)>>
endobj
1638 0 obj
<</Parent 1637 0 R/Next 1641 0 R/Dest[134 0 R/XYZ 0 644 null]/Title(ST Identification)>>
endobj
1639 0 obj
<</Parent 1637 0 R/Dest[1344 0 R/XYZ 0 333 null]/Prev 1641 0 R/Title(CC Conformance)>>
endobj
1640 0 obj
<</Parent 1569 0 R/Next 1637 0 R/Dest[10 0 R/XYZ 0 714 null]/Prev 1570 0 R/Title(Document history)>>
endobj
1641 0 obj
<</Parent 1637 0 R/Next 1639 0 R/Dest[1340 0 R/XYZ 0 686 null]/Prev 1638 0 R/Title(ST Overview)>>
endobj
1642 0 obj
<</Parent 1636 0 R/Next 1643 0 R/Dest[1347 0 R/XYZ 0 589 null]/Title(TOE physical scope and boundary)>>
endobj
1643 0 obj
<</Parent 1636 0 R/Dest[1356 0 R/XYZ 0 700 null]/Prev 1642 0 R/Title(TOE logical scope and boundary)>>
endobj
1644 0 obj
<</Parent 1632 0 R/Next 1634 0 R/Dest[1390 0 R/XYZ 0 714 null]/Prev 1645 0 R/Title(Threats)>>
endobj
1645 0 obj
<</Parent 1632 0 R/Next 1644 0 R/Dest[1385 0 R/XYZ 0 248 null]/Prev 1633 0 R/Title(Assumptions)>>
endobj
1646 0 obj
<</Parent 1633 0 R/Next 1649 0 R/Dest[1380 0 R/XYZ 0 505 null]/Title(Non-human subjects)>>
endobj
1647 0 obj
<</Parent 1633 0 R/Dest[1385 0 R/XYZ 0 609 null]/Prev 1648 0 R/Title(Operations)>>
endobj
1648 0 obj
<</Parent 1633 0 R/Next 1647 0 R/Dest[1382 0 R/XYZ 0 403 null]/Prev 1649 0 R/Title(Objects)>>
endobj
1649 0 obj
<</Parent 1633 0 R/Next 1648 0 R/Dest[1380 0 R/XYZ 0 355 null]/Prev 1646 0 R/Title(Human subjects)>>
endobj
1650 0 obj
<</Parent 1630 0 R/Next 1651 0 R/Dest[1392 0 R/XYZ 0 532 null]/Title(Functional Security Objectives for the TOE)>>
endobj
1651 0 obj
<</Parent 1630 0 R/Dest[1394 0 R/XYZ 0 670 null]/Prev 1650 0 R/Title(Assurance Security Objectives for the TOE)>>
endobj
1652 0 obj
<</Parent 1626 0 R/Next 1628 0 R/Dest[1420 0 R/XYZ 0 588 null]/Prev 1653 0 R/Title(Security Requirements for the IT Environment)>>
endobj
1653 0 obj
<</Parent 1626 0 R/Next 1652 0 R/Dest[1417 0 R/XYZ 0 434 null]/Prev 1627 0 R/Title(TOE Security Assurance Requirements)>>
endobj
1654 0 obj
<</Parent 1627 0 R/Next 1659 0 R/Dest[1399 0 R/XYZ 0 602 null]/Title(SFRs for Filtering)>>
endobj
1655 0 obj
<</Parent 1627 0 R/Dest[1417 0 R/XYZ 0 518 null]/Prev 1656 0 R/Title(Strength-of-function claim)>>
endobj
1656 0 obj
<</Parent 1627 0 R/Next 1655 0 R/Dest[1413 0 R/XYZ 0 379 null]/Prev 1657 0 R/Title(SFRs for Protection of the TSF itself)>>
endobj
1657 0 obj
<</Parent 1627 0 R/Next 1656 0 R/Dest[1404 0 R/XYZ 0 478 null]/Prev 1658 0 R/Title(SFRs for Management)>>
endobj
1658 0 obj
<</Parent 1627 0 R/Next 1657 0 R/Dest[1404 0 R/XYZ 0 700 null]/Prev 1659 0 R/Title(SFRs for Shredding)>>
endobj
1659 0 obj
<</Parent 1627 0 R/Next 1658 0 R/Dest[1402 0 R/XYZ 0 574 null]/Prev 1654 0 R/Title(SFRs for Job Release)>>
endobj
1660 0 obj
<</Parent 1624 0 R/Next 1661 0 R/Dest[1426 0 R/XYZ 0 636 null]/Title(Probabilistic functions and mechanisms)>>
endobj
1661 0 obj
<</Parent 1624 0 R/Dest[1428 0 R/XYZ 0 700 null]/Prev 1660 0 R/Title(Strength of function claim)>>
endobj
1662 0 obj
<</Parent 1610 0 R/Dest[1445 0 R/XYZ 0 616 null]/Title(The SFRs meet the Security Objectives for the TOE)>>
endobj
1663 0 obj
<</First 1664 0 R/Parent 1601 0 R/Next 1603 0 R/Dest[1459 0 R/XYZ 0 686 null]/Count 4/Last 1665 0 R/Prev 1602 0 R/Title(TOE Summary Specification Rationale)>>
endobj
1664 0 obj
<</Parent 1663 0 R/Next 1667 0 R/Dest[1459 0 R/XYZ 0 644 null]/Title(The functions meet the SFRs)>>
endobj
1665 0 obj
<</Parent 1663 0 R/Dest[1468 0 R/XYZ 0 481 null]/Prev 1666 0 R/Title(The functions are mutually supportive)>>
endobj
1666 0 obj
<</Parent 1663 0 R/Next 1665 0 R/Dest[1465 0 R/XYZ 0 140 null]/Prev 1667 0 R/Title(The SOF-claims for functions meet the SOF-claims for the SFRs)>>
endobj
1667 0 obj
<</Parent 1663 0 R/Next 1666 0 R/Dest[1465 0 R/XYZ 0 211 null]/Prev 1664 0 R/Title(The assurance measures meet the SARs)>>
endobj
1668 0 obj
<</Parent 1602 0 R/Next 1672 0 R/Dest[1453 0 R/XYZ 0 602 null]/Title(The security requirements for the IT environment meet the security objectives for the environment)>>
endobj
1669 0 obj
<</Parent 1602 0 R/Dest[1457 0 R/XYZ 0 434 null]/Prev 1670 0 R/Title(The requirements are mutually supportive)>>
endobj
1670 0 obj
<</Parent 1602 0 R/Next 1669 0 R/Dest[1457 0 R/XYZ 0 574 null]/Prev 1671 0 R/Title(The requirements are internally consistent)>>
endobj
1671 0 obj
<</Parent 1602 0 R/Next 1670 0 R/Dest[1455 0 R/XYZ 0 138 null]/Prev 1672 0 R/Title(All dependencies have been met)>>
endobj
1672 0 obj
<</Parent 1602 0 R/Next 1671 0 R/Dest[1455 0 R/XYZ 0 700 null]/Prev 1668 0 R/Title(The Assurance Requirements and Strength of Function Claim are appropriate)>>
endobj
1673 0 obj
<</First 1674 0 R/Parent 1570 0 R/Dest[1 0 R/XYZ 0 525 null]/Count 4/Last 1674 0 R/Title()>>
endobj
1674 0 obj
<</First 1675 0 R/Parent 1673 0 R/Dest[1 0 R/XYZ 0 525 null]/Count 3/Last 1675 0 R/Title()>>
endobj
1675 0 obj
<</First 1676 0 R/Parent 1674 0 R/Dest[1 0 R/XYZ 0 525 null]/Count 2/Last 1676 0 R/Title()>>
endobj
1676 0 obj
<</First 1677 0 R/Parent 1675 0 R/Dest[1 0 R/XYZ 0 525 null]/Count 1/Last 1677 0 R/Title()>>
endobj
1677 0 obj
<</Parent 1676 0 R/Dest[1 0 R/XYZ 0 525 null]/Title(IT Security Evaluation Facility)>>
endobj
1678 0 obj
<</First 1048/Length 6990/Filter/FlateDecode/N 100/Type/ObjStm>>stream
+xkoǑ +cXL|HOOUt3u>R)%-Jy56Pjuꟙ9aSCvwV][jFiָhfEs
EK
Ek3Zj],~źHMvo,f۪ܬX͊Jh~״X~E^lfy-KQK?]>q~Y47HBnH4dK,14X6kBW%uToh]Rl3RvI%~>T=miɹݗ*y)IY|mRUOV_"XrXHmF}Ain7_kAEnj}}~UBzUsoiַZ[rIͮ>v;|tNڮGƶuR:_}З$ZیmVw͂smRܢo9itX~w|[jm5>6wm;"k5f,R3=jmUIv{;/~}->l
1d9Ss2XnKjympmJfS-͗YpVÓg߬u۾5`~Fw@oO:8|qq87^kïqO>ux^/~}s8y~y'O_UZ?
Ot߷Ӌ^Cß/'_+5?K^:{}xSާg?|q8srq.?9\ٛ˓oN_{w|/],O/O~>8t˳2^ڧ>
oO><̩yo/.첏~|'g{|/=ŏm>99K>'wOWÏ7.''e[c㯻
v[_~EVmcio
m^x7g'mmZvsߜpn6nGv1ix}W^ۃ.xw5jW|Cvf@kőG00B'L!nb5^ŵ]gň8ڇ#h"C1B}E6Bcdߍ+#ynPf8MyAjF&6£[Gt[AT_AK]5=ªmDWF{£u]wnA[j$~_^\_/.O>xݸ_ۍ}Оbn&Cy@Út?Oߚ=г>IvzftßhxrDOÛMIwUӏć:IVO~ob['1>ã>{s~`=ڧkz;z"[E{CO=c}3dz˟ ɷ'_ckEfmp$Xbyɋ%782X겦0S
;Yjl;궆g;6<{
R&EA+#YE1m~g]ߙewM_~W_~W_~ך_ի\%\
k7owzcvmͷ1kwiqa]:Klxb[8Cl~cs8881giMo~Sf٥Moj~ߔfi47
ՙ%5yo~s779..9JeF<zedz:J a,;EˎuT-;Q8ei.;Σrqˎ]v<aT/;QXGc̎g4JQ츌"fǣ9:ʘa1;QXG%cQk̎(fvG52ʙcII'F*PlZ-r+ <sUŶu.Za5sҟ+PV\ +33;H̼y %B@`vD`` &`` &`` &`` &`` &`wbD|s\\\霷Ö:irv;J"XZY
|;H:QABLKZDK7s*P<#ȳ89\+50G8m
l-#,BK歙K%m-sj]vE0@KZֺ +-`joLeKVnaL +3fJ a"!Lh)7h)4( +ܾ7rp6xb!%9lP[e[`<AQ$(E'}a z!y.W:d"]"ʼ3}#͟)ĭE'j(-s)0TE|L3Vy5' +/Y tfЙ9T93Ta2AF:YTAF:H93$2AF:٣{Sxo9[Lj|L @BuZ0#7C;L,P.I, ML(LeXX +šݽ*+V8[ƺln[
|Li[ہ" 2 +Lk +LWY +L%x`rvealSI82L% +䕊eJJq92L%*seJ`;seJ~M Ua*98%\T +S )UaTNXYͼsyJTJ0 /!3K +S):2L% +Ja*`U +S*L% +2t +Q);2L%,T +V(Yi +XQ+EݴśxSoMO|%&xobÊtX
ߵ< &KC)8M>Qj(S(X &,a*X &JqC\,o7&LG)292LM05T>SLM0(:A^je($8`l RseJa*=M0M2L* +S+LEVK+L0 +S~i镟S~N+Ǫ3UZCu0Tv_Q)'SrM98ҩns8BRDq)ؔ"SL)#9)吔rBJ9(QQER;(>0t`*&eVZajV0rDC+LE +S,*G=SZQ)Tn)HrD+䭐(S9q +yW^rrI*BI,TH +S +Љt +Љt +Љt +ioI_~8F\gFyvbs|J}Po>Сl(7 + +v
+endstream
endobj
1679 0 obj
<</First 985/Length 1368/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xę[k\7?$!/-)!}+}pIi +Fu\u5)'EoMCIԡ&,-1O5'HR0pJ%;p* vYQu P>50j'`*e'T* &̹[LNf?-g#3Mp"NPf'QGht, +Dܒv{ҭJ#2r +-LGt,t4
ͫI?9hT`fG63ڊhhkFf+mth3:LZ۫WwzfUY^o~>w0×o:k>ټl +Sg7ڬI7AH|~6ol3^%}TE2@r +~Cy:ϱT9bnc; +P>ږDr-W!m(A(8.8}x3{tg~ͧ;</@4l% Ɨ|: +5Xߏ4uyu9 +endstream
endobj
1680 0 obj
<</First 977/Length 711/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔMnAR7*OHQ6,P'`۰A(7/R's~hF4)"w!Ed@""#Ȍ!bS$cT,;< kOoal+gZZB)9QSED
Q1^QQc֨1kԘbԘbXb=N:?Fdob ˛a"K%IԐ|$5#!I
(jGQC>QԐ|s!9(IlE%6͓R >t=1SQ;K]D.FqMjL1jL1j,1j,Ys&69@oN(1%Ɨb$FGѩ!ѩ!1!1}\O?Ƞ7</x{61io,wn{io{μμv39agM +endstream
endobj
1681 0 obj
<</First 976/Length 723/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔAC`k"!DBǺ!$'{uo̞ZWԵ3z)<ÎzAh&0+fg@gرzpW]g@?CDFl-rRESvdveg!VFd5'1jbԸŨ1Ũ1Ũx<dRbԀ559)ǜxb)CL1|Z>*"œGQC>QԐsj~|,Éo`c\ڠL|c;ӊb$c(4a;i'Ś5n1jbԘbԘbX9nj@y3MNb+Z>np1/N-|LI
ԐI
ԐI
XԐE
XԐEP{}x}4;zŗ7>?yv77({cmol.p]X܅.eoaviǝviviGveg^veg^veg^veg^veg^v|ؙK|ؙ;ag>̇3o;3o;ۙy6
n`6
n``7
v``7
v``7
v``7
v``7
v``7
v``7
v``7
v``7
v``6G +endstream
endobj
1682 0 obj
<</First 975/Length 720/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔͪTA_`N@ܸD \QaAlfr;5͊'f}^}FyĊwu:E(]ѣ"3Ȋ!c^KD2HA%_؎<T-@%X11qW@KK[[gsG-}^?3?$Oc(~Uܩ*t1~dqleɯ%====X|،lbJlGz.ZbJ)]bE%FQ=ڃW9GڣC{tzh'A{A%6G_Tb;J{E9P89:>N1=y01N̂j^Ey٤Ǽlcccyz/^^y;ʛkJt;݁͞=wnvNّ7;sؙv39ag;sؙ<<<<<μμμ3;݁Lw`oG`}vG`}vG`}vG`}vG`}vG`}vG`}vG`}vG`vQn(].m嶋rEvQv(].ne +endstream
endobj
1683 0 obj
<</First 977/Length 711/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔAj1$2l,nZ +~ɦL4Ϛo&Jk澆sZoXIʜd_R$nI$7&6IMEm]%[mM焷pj{<.<ި;:*2d6TYBQ!c<2& ++UGiQ!OڷB&C&
np
ٹ!<p$C C C$C$Cƺ,.dps28G s{A6Q-l[pě9%8G
Α#9 *8G"cy8k@Fձ:Xu91Qձ:e[*m͆-DHDEAAIIuBƺl!ȐQd`OO/o/ox_(c.wrGCre.;yCv<d!;ySv<e4PRmjTPjVz;!...+se.;wٹ]vs<d!;<d!;yCv<e'<R7R7R7R7R7R7R7777777777777777777 +endstream
endobj
1684 0 obj
<</First 976/Length 716/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔVKnAJ`]5lX"N
/paP$oQw ݣhbf@ +fޑ-RdbFt130ybA̵6X57Xkl7ڇD<uhqhEC!ذjRep"GG5qQcQcQcG%K~[
6q@AqmѴ|!|j!|$5#!Ԑ|õQ'bD#$bD+۴E|9x!bY#]58jqQcG%Keč`vM"q+xp NG/"qԐN
ԐN
ԐA
ԐA
>^^ק~|~}dX7?qW$__XDD'`O=QcOt{bvig^veg^veg^v\w܁p;܁v͞nv͎y7;f'ț9ag;sؙv39agvigyڙyڙyڙyٙyٙMmpv]mpv]nv]nv]nv]nv]nv]nv]nv]nvg +endstream
endobj
1685 0 obj
<</First 976/Length 727/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔA1CR7TI$Ć%BpVl@H!$ozO#h3Ȋ._xYU88_\ub<bļdX"=H"*tnZw؎\}UbJ,XQccb= +0=====b<&mb<r-h~YtTENu/`,T`/uƒ_◮u=/[lD>bMlQ~o(e')(X]E!F!Fby٠cC{=fJlGi<TEit*N +endstream
endobj
1686 0 obj
<</First 975/Length 716/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔM\G7WY0FK F/U!-@l?:;*Lϊ'g}ľ3&Kj"(ݢGEfCdǼd?1/-bdloѣ=BOco[KjߪEK1KN,Vg[111c1c103&Y1c<3Ɋ\:?>WN̊mکSmߊ?@|I13eu&v+ƌyY2c^|YbXbbun[Gl#+9au?(J$5GչnQĩ9*Rstfhљ9:36{OjgTc/V; +g1V-*V`%v 1>%ƌ.ƌ.ƌ!ƌ!ƌydƼl2c1c1c>>|_?x'S9cw4vGewtcXvsa;sa;sv<mi;Oyvl?oK6݆6La
mhWMG;lͶll6lv9l簝v9l簝v9li;Oymi;Oyvle;/? +endstream
endobj
1687 0 obj
<</First 977/Length 709/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔjA_`?gB. (vJ/"l_N&=nӜdYlCmyrK"I+&ikiMll!mmMR Pd85ql6~ͳƣ + +U(x1(x2x4<0<pGp\' +NqXEdXȰxpxpXUC{$<G{$#=#YCMKl[rMx#<*(\(x|,xdhɲ\=(x=+al65ٴrEⰾkJ2I +Mc{Lxp g__op%?ChybKD!O<!gr)gr)gr%g^r%g^r%g^{@7uԁ:0Ձluoy 9lv9nv9pw9r39393939393O93Oyʙyʙyʙyəyə\μVH}>jiGZ#-H}>riGZ#-H}>riGZ#-H}>riGZ#-ȟ +endstream
endobj
1688 0 obj
<</First 976/Length 699/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔKj\ACrwu?I`dIB DU"`7hP[:vY,aޮtmq,ܒNXI+:/\a}#G,{mV#Va_i(t:.ֹhzjm8y<4/zE::=tz1st,zXбcF|#pnw;@w:#e#P`Ac: +H:nG
(~~dqԶE3W^@KˢWP顣CǠAzs^cCǢM^Lo@ћVmA]ow%c=衃;:c;:c;&:c;&:cxyy|z|8<\hox[`rbɉ& !'RNjٌ.5PjXj`ore.v]&2r<d!3yCf2<d)3Oy2<e)3OyKf^2\f^2R]
50R[
<惄 ˴]2oLe.3yCf2<d!3ySf2?e)3OySf2̼d%3/7̼@0W +endstream
endobj
1689 0 obj
<</First 975/Length 726/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔAT17tq) \Q҅ Bmffzu=k"k>{
mbGH=r_1D*ȌYQ";%ynDz,-"##TTb&nb;Z?l?վEKN%XTbbb(1z= +====1?b<&0ϿSuKA e:!MEu_CW%%t^Xb]RXQ&vd2NJ1J) +TbbKS{ڃrjA1==s^E1$hQTb3=ƢQeڣ:}&1 +stEqs=:Y=.zyvcxǜ'Iկ ׇ͛?zħ?sO߾{ +endstream
endobj
1690 0 obj
<</First 977/Length 700/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڔKj\1Drwкxa de)$&5prz%8,k{v0ow$˂d[\%-I$H +ϻL2lL$&ɶyn.n$lm:+SDUs2Y:YYb";>:: 1P :&G"1cU []wB&8alZ8 .l+.HDEV111/KtGȢ&LgdHpLG踏qr#> +W8/9:p9bqO0cGBXQ6O 9ױ.kvt<:^εq&idٶFtp${"(DNNAAyDǼlcc_>>:?^pf_^\q?.'rbɉ& !'RNCv<d);OySv<e);OyKv^֛GJ
t50TK
l5MNele.vY]V<d!;yCv<e);O<e);OySv}(5PS
,5G$\NȲ]n},e.+wyCv<d!;yCv +endstream
endobj
1691 0 obj
<</First 977/Length 1055/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼV]o\5+ؖJmxA jP*3;i!%9wsR\j[i_ +T@DF̂6^<2E&*t e0eL1@e +`͐|w+fSF솆"ݢh ֘m$Bn`E)j͐zHCc!"ԣRSc1@=Fz}]E1* + !)@.kԃ@˄
CKM<flgzD(lRSu!^?R><óᙒz1^R20 C^ + xLʎLUOU=S{itkՔ<Ӧ[`YxVM3cUS>\O2qcZB?A+z)2R"P'(0 #i)P<ӮGjowknÇ\d^-WA3bF!3Ōq1c^z11>'0_wAy&o˼ܞ^%v`3 zs~3^F5>FHAAAAh@j@j@j@j̓&=3=5zjџȚB5gj +Qn +ګ9^{b_z/ȏ{Dҋ29ًmN,(+B+'9K<h}')d7Eka_ +endstream
endobj
1692 0 obj
<</First 973/Length 967/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWю\5H|;NR[@jxX`@ؙ0)osaw=8N!S!Ӥk,X"ĹyWmHT$P<(I{ I4M⏩դ%-i
%Ńxrϩ#EEaHFꁦV̓zvK=
X# +眈L40F )"])X`ogh #hHg4`섪 4,"hAug04z`n1BTk WD5(
?BUh@C(0hH@CWQ5փeg`pѳw.h5ή!q9苋c1QxZS, +GH)Sˋ+%ғz;'+h5^͘DǬmyDǒy8C؇鰏/W?erz7,a([tf/_^8p.^8029px'79o?=
vIG_7<|J;=9i{}9rv\r 9rz91^zƋ/]B\Wȕ29px'gK79KKerGمQvC PrwKv)]bz:<RpLb}δ/vaL0-79Kvю9arم;.C(Ȑ]tEbt$eEHLb}δ,vLbor_9arGمQvC vwt-n[ה/'N9-uqK}tK]Ry3Rhɹt+ߜ~9}Fd\Wq=>TK\T*W +endstream
endobj
1693 0 obj
<</First 976/Length 1255/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xXMo7+znRAU#+&oKiY{( <Q켣ժ'B'ŘTs(E\#) +c +9 +9`{\EHt"W."
V
i1hYl>h$I5t1(@#SbX + h24J4 +Ш*`9H7W1#PP#udNc.b!dN^c
lN ,
1WX^ꀠA#b(1FI:CSFeA`Lͩ.OTeZ0!![L\Y9+ -@@ΧCtI!(HKNRqj([Eh椳$hd[PRuME6.9$(NUXj7{Ǒ;^Epk~7~>,my>=/߯ZEZPӢ8$1ݽqwSvzxw=\v٭)
ïOA)4r7߆j77,U +m2Al.--
$@:HԐǁt}D?Oݞtgz@=G;(e;c[9?8] G99<yzs1,\aXjVzx+4)<~{va +
wa=<M.H7t9MN)wvkg6znM{5Wȡ 'r|yg9<Ad H.5x"9irصH47]~~Ǻ<5'5yk>Nj>-_N-2v@.6\>v-rx_vmFL845ϓg?ˡ^4y9[l:~699\;D>Sص7i}iOͷ߯Կ;N9IKIˇEՓcup0.8 ?@"0zAe/*Ii?,z?lgkWghZzsN3Ez;Oid?A OFoUK?KV5owmT]R|'~w$R&Us` +endstream
endobj
1694 0 obj
<</First 972/Length 1163/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xXo7Ww"EQP+ZtA^E={2GR'eۃ//M~8!$rޅف'5yCbdఘGw`A7Ot([pr̓]FqUEK&KQr<e<]1a%Bɮ$\LGZ P@őbQ,U*!Z>)~%&&hA8Xҋ%Zlqrp$,i\4 +GACAljr`+[;Ġ0UtQY_2AXUI@"cQ`T t2-Ldi0Updo>Ȥ5
VMbAurpSEBMJ2- *m$4U$ D)S]:UfՍ:ZhJuc2+æ4JΖ@А*RH|M.m6U,_)(JXJoXViGM^,˜jkD*˄~ݿUu_i͛#*F6͈ᓘfv#a5 +:\~)9qBxL(Q)sO !ӬmfSSŊwPKvPD?
0v#iV<z4.dx~5zBC/yI &ČЋ-Xp!:tpK[3~<T\m8cǴ4i='=$fRzWDž^tXofZE]u)ۏWxǫYv8yL4g1z'=$/~zߠ^_o0 +endstream
endobj
1695 0 obj
<</First 975/Length 1200/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xW]o[7+<_"n]-Ak+byHGH7rf],.M.E]Bq!UMwTE,SR˕U +;Eq"Yl8LU\&.;W +>5VUo+ըE=[JXڛ' ;=E +*H9D(Bz8IQI %G1y)C+WFR"8!C տ"ۡ9PPiZp Uۏ5,rOj0vr!DY&N0`89h7d;*",`ڔ
ݑ#Wl^%*J1T $I$4eH+d"HD]R!E9Yz5>,xX
o6/.W-ny6<{|W6+SiZޭp]
\ޣ29(Gz̯OowP9Y ƕ-q8?|
Yqz$X$7v\'D]qnaB'Ǚ߿'XDG@<fiuYϭ:ԛ@bvڛ-hc2lژGtZC9F.ZmQj1lZ;K-Lp1ch1cr3|4FWNDG..4tL:Őz}ۺo~#`hs>r^9ϽNb&j0o66>
[il4lѱ1Vc]v| ~;yLOx$<<'<M f4`}//~{{_~a`:%F\D|̋b>C,fϙ~|(x7>XeBĜwRϧ4zO5Iaʽp/a~j줻'F!F!w(ȤQcYd2rpy2r:ٵ9{_Zx"I{IXqLes>Mr><||IZSNDz^'~Y'k#' +endstream
endobj
1696 0 obj
<</First 976/Length 1232/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWMo7+zΎ!J +@9A>UCP˕"U}E4S@Rr>tL#GWE!brd;fQimf]>d#(ŔrT0?VZEYXɣǙ5#@ +(MW M +endstream
endobj
1697 0 obj
<</First 970/Length 1133/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWQo7+<Ht]xAQkHd_|Kx>}HS +1,K +G%\%TVK*HDS&CLĤ5)) +Y>/Q&4*D"M_- [,+*S +'&>(`I9+U",|յrT15F)QtUFWE +B?IjiR^?wZ5
7vdn<Xy}R16 +endstream
endobj
1698 0 obj
<</First 972/Length 1148/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xW]O\7+ܽx>l)hFD)PaRBTM}gU؛j`3gf<6YCYBˁQBb1HUH2CE(>`@) +>OIS%PSG10TMͻ(BO f`(͠PP%b1W9&VPW5dŤYfV 0j~jq5K˂)ZJTʶ.)yN>k,Cy'2[NSrcZhU+)jXH!C@ +U{:T'n|èw^`Ѐ˘10`^\3=|ԾoUAsyWvt㰕&aƇdͶC7ܾv&?mv~ v034|Kif
_y/f٬o6}aO_~-(wϛ?7nNZ?7trzVźWB=AZ +㧓%VS +V{̘ͷBܩLWTVqN]$Iu6L<']<G>r~G>R>`U<Sݑ{v$e<`"zd90s##hӏXXJ?7V.NjK4r$:itrH:k/rA.4ȅ$u JrA.X1].8i傃\ba>%3tK.6t (qr.e\1].<ȅa/慇kvp| +0 +endstream
endobj
1699 0 obj
<</First 975/Length 1176/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xXn7=WK9$Dn6RAU#+&7åy4{y$$]]?;@Au∵zG5@:ڹF
^K\4`Aq1Tq9&
՚ĕ(jґ\m,pԀ]^IF->PA,XOr\*H<8GRI8h.#{/#RQt:$dCQhjJ88T8TQpM憼cQH:%D-ǎ,ieDM)iP㘕#ɔ`D`SJb,6UTaPʦ +wcV*
Vu12VG^i(*ELGi:1`~y @wЫKs'(:b]AAbͷ1y|A,Twh;:t/> +}sc1;ovlct'<yuL`Q̸tu?]@ЅG.C)ԋP^Po~=GO0q=&~k_'2Y'(f2}U;kxjFFFOwtwzYu14<ţ%v-PBtv?S`wzI% 1iD4|)6QZI]Yq]?]?;i>=#8Ywcyy棘n^gy$pvD0}3J7܈E=R"U4ЌG'g>; iZzyxAx{wCPzP{ c@;gȓ; +endstream
endobj
1700 0 obj
<</First 974/Length 1131/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWj$7A3RJ%`o {3{'K !UӶޓۗSJM9ĐJ(r1!UCZF ++Q6+gT 9`EΦ(cbl +\ 4ڊ,iXw*(ǠQ܋@C=(lc +4*ШX9S"=@S0~,%-g%@K,SOA(w71\~@9f +;O[]˭.˭.˽z.y.y.eI.y.9.rhڅt3څfBBvt3;?wS'}sx=b̀vn@̀tew?c[< +õmFhqڞI* +ec_sRҦȧ&o=Լ)N/_5?F?7Vﳧ30m2ٳo %/Syqzjg{2;dq1⼒"3Nx3"3N"'#I*"+|\YI.v9YG.ue{]qeh9e||eΨ2'9v߃V^?Vw\Y>_ +endstream
endobj
1701 0 obj
<</First 972/Length 1168/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWMoG+\9 8H
7#5VT.>rvZh%`Qy,}λ8&L.~fQ\HY(T;Ayȱ=DY-8#'X䒝D\dT< +endstream
endobj
1702 0 obj
<</First 974/Length 1224/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWn[7{DJn]-xAk~-Cw/6-PIǐ.~U5Ԩ.T]RT!DZ +cV#PRIPR-.>ջW(Adݧm$l$ZE-8൯9>BPW{Xé V*jƢv. :DQɃ#fl?p$æApH8D= +ՂH< +ǶKU
[s +*6y(N9ZAΩ#Y48LJSD"76T*CxpKQ.k1pTJQ+74`SմŠ D}SX-'"4$/w_n7ӫf|io֟wO~N_ww~ߑiMgy:C8w= J_Ͷ_ޯ_o1 +uq{GR&NOwVPcʫU&_Wjg|'~O':kNp'}ț6}reycG
-)[*;tw=ni>Uʒ-tZ ~{PBn0"TS-CO,vYK-V:懇:0)~#á<äeLa ,j#ocFW?]nǯGFWN>h1}#ha2fh>4"?{' f>mF'GFDG.>ydcNfwz9i)/ciy1Ot,t.)|sT9PȡuC7rhW;ZhL8RQHqԲ+ׯqOGÈ*=xQy22RJetoM7"8܋#Gz/2ܓYƓe4X,㥼gI2fT4)Q+HˑZ+v2eYD%Yϼ3gyi^A,|NʑڹЪB; +endstream
endobj
1703 0 obj
<</First 971/Length 1178/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xX]o[7+<_l]-ȃxAkXcɣC%H9:"eqL\b.Bq! +2QA1UGĢ +AQ
S!XH%,mdpd(QyИ#8CY*f:tʁzr6]$)E
DFTq5d`GnoCr8QYX ٫r66;dV}lVpdVpjVpdVpjV$[iiG먤*֞*ij:|kva:Ӥׯ~mtrǛ/dve
8Tq֟]F_to.Y!\j1~b|DŽ-ߐC|t-&Ď{1C9z
tbGc{Q?Vozw#:#11qakGPˑ]>ot8ts"\nJ-7Q 1<
-aLo0|9{?eZ¿ACȟ?jRQnWֳ}ny{v}ZWcNN6_//ĉЂiB" SLڎZ7+}3.?4=_Hԇ}XuY1'o$POCY|?]˓>A$va^QrBBH==7]woD,teaL0~/f*bxdh;So1ʱ/='<VNI*ϩ?4\czߧH{^^#/z+ -r
A"h;Q"32EQYeQEAƬ.iWaߴԶTw݃D<ټ:oRSrvh< +endstream
endobj
1704 0 obj
<</First 979/Length 1106/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼWۊ\7/1f kxBHTNo?y〉Ԫ#iTTZIe +ye|Aa
^2AcdaPư(ęV <8'&wM91UC +IѪp^`h@x !Ш!Fmqn +ҚCڀ|!t"l +:W@CA
\+2\[eK!pRr\+7ƞCJWhtPFUh̕ޡ +0Wڦ݁-TvTLAUCyf
:Y-9=&( +endstream
endobj
1705 0 obj
<</First 970/Length 977/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼъ\7_o0%Y6@6k!]&lBȒ)K>g0̹h5X>"&)'$?kj䟖-QLOA˩RȔY=\=ĭyi4O,%T9Uuyd@a1!Z5`MM"YR/1cvќe!c5<GjD"DGXR<f,3p6"0G`$FUF +0=5o0Z +D^}©)Y"XBQi1DCըsK*U10U1БC[QRVAMT!`XT*`90@hQ)r`JQ͉)£2ZFV-9xTOJdf!_Q,Q0VFXR,L904\ +E}>[h#9χG3O_p>1INO/}/Z^-ǟNh}zx>翞W=yo>ƞƞ8m{\4ktvM4P3tl/f75XVE6pgw6!p?B7IT4t~ɛhFvN +endstream
endobj
1706 0 obj
<</First 971/Length 1247/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWn7=#")A-Aj89zE/I
8;=aVđ* %ωK*hTohJ-' +R3`Q,~QuRjPQ4Bdj7S+!d\ZH5Shѫ
?i8b +Q/.-sM6O:oi]f7rҦGuwίEjjyiwh:ίo%@N |Ss؋Q*UlO‖^$2 +endstream
endobj
1707 0 obj
<</First 971/Length 962/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼWM7+VI`sK -MBBȿOuk`ٹ\~S]5ZI+Rjs-+=BDQB:F :VY\أMѧD(%E%=:kZL3tãDqRzZ$icxic2Rts
э*|"*KQAjaϫĬ QaUXe45z$aad$
SNp
K+s#hĠ)1ht~
=bhĠ144ViT2Jt$Q60t1t0+q~
4ɦ锡4Cҩ@#*RD
Ok4zBӕ@cB +oJLkaPIҩ"%&P-&9*D(4$ƒ)t0+F4|bpOf?htj=0<B6xS!ӯ/ϧ#Z>>__K,:oO +>;?_"SN)ڹ7l8h}sݕC-˙εэcGr|A)kS)Wsޱou~8@&c8pxC-z,_8fZ2\?HO9?HΧ=:.nzfƑ9[ےy2OKrS,nILK$'S]_xʵGgQey]筷q}e̳synw9)7cES$~8Dǔ^qqc.8͈Ʊ#-d^i#[uɼe_?L˧$7w}9hˣo8_q6#|yؖy[2o2oKMr囧t<.<w};hή +endstream
endobj
1708 0 obj
<</First 972/Length 991/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼWM7+P`;7blB/ل<BHn +6;LuըK=]K-{+o${!jx!4x-)*23\eFxq-*QQ2cEGT^^Z(Vkqb.=e +y!ĜYDVHj",""А
Nh! G=8eKJ 2x*'&Ocp@JQgNTᚪTQb/̜`:R#'HJE ++e!TƙG8, +8L#T3pOU + +ޣ́ćcEj* \0h
VMgfrDRim02gE$U(U5ph* +0+"p(Q*LF=BdE_:pӧ:}|{F_yۧ_~{o_xo~=Xǹtz?w(Ӈ˜.l鉁iF1axԻwxC
17dWש<kt<&D瓮D'$s7cwwK#1]0f{}x~]̲|7AjNI'ɤ-{չz+^1x>f<-'Y8-t q@;Ƥ2~7[H0`ty^bx,gY/bq;[}At6&GKG~FLy]<}y^ϫ,˗o9[2 9Osk}i/ׯzblyϛc6yw1ͷX;-6_bO9A3.|9Gvkq +endstream
endobj
1709 0 obj
<</First 976/Length 1309/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xX]k\G+}^}@R-!W\yoc]`vfFҪ$HjN$1&,ЌͧA^d>8 e34Fvf%fԔhK=U49wL
ͧSjsh\]R5Uv%fbV7hu2YPl])jrdtrd1ȖK(dTmXVZVzͳҠh})G>fS3%] +2tY +^V5@qժrW*NR|= +ءjt4ǏgV{L9y:j/ۋ'/hGt/5~.Nvk~O>~ζ>m//?|ŧϮ/Q3|}9Pdm:;}yUYnH"-U65sR5vxvS}.˗Pr9Z*ܑ6K|F:o}bl`x8;"a*.;{ #ko*M3llm귇vu똘C f.zu:|?1nn='73e_#$5BY\`<-j:&j5 f!>jѠEXh5qsccyQ,똨y^<A@qInuO%F#z!cـp^6d)A6utdp#WYknd}-ٝѭe߄0(c{mD1J(!C"Dr$E1(bБ1 b@Ā1 4BSMሦBh +)pDSM!4BS8)Bh +)BSM!45oŭ +hW#1J(D14[カ\pO[U..*Ȭ..M]]4uc+䃘}FSWNԵԕ5um4u +endstream
endobj
1710 0 obj
<</First 971/Length 939/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼ͊\7_EoВOc6w!ILBTZL=֭$n[*hHwS^V%U!j.(1
eskQ$䞓W'La<h-*ZhGR6zK=9gsPd +P0AũTWáШa*dQX@[eLHqFC|QC1(0aUâSUZZa"P`tF*PUIp(ԨTZo^;9U^#|a"gPj 0D
#0F
N %1saߢaѢ+P5`QDQsm˒5)PJ|U5$NjG
N,`#(vDOJ) +endstream
endobj
1711 0 obj
<</First 971/Length 950/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼъ\7_o0%Y6@%]ŶlB)!Kw\9w㛍Vtdh6I9i6MߚZn<h{uy)Jr%qpbc$a?2%=詊sp,ɽ$S/ZFꁦVe#cGuԜ3R#B$ot0 ZT*)G]a"Qg_#%gZ]A썌{A +0"EUE8Z\yGR&.zTP8UATx*3D=r/ӿtDV8{q/ȁ!CȁQQR}蕀aQѢ*P%`9G!br|Hsbo""B$@VZJ(908R0$*!0c+L7kTUU0j*& +F00:{epΰ$ǭ0ѦWNN{~:0)gPxK__ޟ_9}>?>9}t)/8|Oܛ_8m8v;!IWpE#ǚ25hP䫦cMh-YZ.&n7M8]vwo/_ s|7^HNhꢑcM^4t}jvzU75זKzrn]n]&.ˑi^rv.L2]J;L.EojvEa]v).4pvi]좋]ˑi]rv.Jv.Ҏ5.ErE6مvMv]d]xldEnv.vMbcʹ-v1:i[R۱fڥ.vzS|l.c]vۥ. +endstream
endobj
1712 0 obj
<</First 972/Length 1173/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xXMo7+zήH +2Oڞﯯ\lOnzA;]|J1[0>7ўiRgL^`dZ60qԺFL!y,c?xK@ҳ (] +))Nl9 +expV\` +endstream
endobj
1713 0 obj
<</First 971/Length 1109/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼUnGrNf`C &D
>EhIbU7"g
sc)bs J5P +dNH
Rr s +A{5:$vr\9d=G;j>a\S(tg2yfdE!i# ""bEDZIAQArGj#PB0D$!s'%x'``Q0$<{N'sO|*0.sxlňQ4I!x0O%0P©媽)0R1 +*0r0O(>TP`ԖF͞+xd,q=;*Έ"uxpP&P0 6Hz[`(!cW6Ŵn 1FFl9`$0R2xf}F 0O9dH\FF
I."z3վn;o~.6FkBO|yzCV#G<eyavO{*?.*V1jѦRk/R+Ư6PXvv7´#cja +endstream
endobj
1714 0 obj
<</First 971/Length 1180/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼXn7@=HE +İMAѭ\R}_ E#2(or7@FqyA=ŻIbe5hr$Y
v8ASFu)jջ$%e+˚I +ZQrPv-T\.xÒVpjEXR"X@.hQ,B,JWf`0ZVT#E#EEQe@{4 +EW͍+CI-/
> +,c%G̰t8XVsN LYgFQGF2M1b> +PF̆KȬW4F1j>."&#*'y6:[h> +VgXY12a٪JpDV)ڋ(l@Nb +KAC!)F +SJ0RUUbk|Z{2Zh8*, +0 +endstream
endobj
1715 0 obj
<</First 1014/Length 3498/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼMR69Uu^$d`(fX8pCPQķOU={Gr<U=9sG>oDd5bkʘ_-!Emk3p6cm6;XZ1;mtm}!2R7oǖi-˘=-O[|~l-}&s}]٘iX-uq]l.fomcfc欴uc6!.i̙!}Ӷc[_S֕}f~\>%W:\W0gLR#DZm>[;fˎȚY[wh֚ء.cm_d).<pe#ilq˼G֔ȺygN[sc5i혿9h/uZ<goWH<żsqZf$j3>=j9MjƺKV1z-DZ7kDZ7;a\VVo>VǶzcz:[\qzN""m<r-W3וʹ\V(b[|1>g~|q}=̠}SǶ??<yuų_緻O_Owů'o30;U9;e˰$~ú.NŔ^f$ˌ[f1żyaq||YSwbfd}.\f1.39i̼_3<jX8 ~ꮽY\Y3>-7fq}WϹV[O3zN,8ψeF_f$ޜEQiWȃ\
Kafq?tYKӌeEYԝsjs.$~8ﷷ/_go察m?9X^}l#s[/v||(G+[iy1>/ȏb|Q/egb{?/hyxV/6[qO7+(oWu+ϊ+//yϋ{1(_^7kl;2E:Jj)!su@<GRB_JHb)!RBK )R,%XJHb)!RBK )R,%XJHb)!RBK )R,%XJHb)!RBK )R,%XJHb)!RBK )R,%XJHb)!RBK )R,%XJHb)!RBK )R,%XJHb)!RB<8jQ/%|37;/ew]s4f]ק +K8IzZ_lX
!&آ4Nc0N.ھzvrr=`4r:߄u$w;ɝNr'I$ɃA y<H$d#H6d#H6d#Ivd'Ivd'Ivg 9H<6 9H 9I~M$9I1$_!4FiFi
d!MH܄d!YHfהd%/MIVd%C5h4
Aàa0h4
Aàa0h4
Aàa0h4
Aàa0h4
Aàa0h4
Aàa0h4
Aàa0h4
Aàa0h4
AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1t:AǠc1``00``00``00``00``00``00``00``00``00``00``00``00`b01L&`b01L&`b01L&`b01L&`b01L&`b01L&`b01L&`b01L&`b01L&`b01L&`b01L&`b01L&`b0NCh(F4$B,$B,$B$+J$+J$7ɍFr#Hn$7ɝNr'I$w;ɝN y<H$ɃA yl$Fl$Fl$N$;N$;N$Ar$Ar$Ir$'Ir$'I2A`P0( +A`P0( +A`P0( +A`P0( +A`P0( +A`P0( +A`P0( +A`P0( +A`P0( +A`P0( +A`P0( +A`P0( +A`P1T*AŠbP1T*AŠbP1T*AŠbP1T*AŠbP1T*AŠbP1T*AŠbP1T*AŠbP1T*AŠbP1T*AŠbP1T*AŠbP1T*AŠbP1H=ͨ4fь2QF3hF(e4fѬaz{zοQ~?_BZ}{~>!t!u<<AOt<AOt<AOt<AOt<AOt<AOt<AOt$?|zMAWu-awyO]=}չ0ƂXP +cAa,(0ƂXP +cAa,(0ƂXP +cAa,(0ƂXP +cAa,(0ƂXP +cAa,(0ƂXP +cAa,(0ƂXP +cAa,(8^WէGێjv?n<n<o<>n<>o<^[O[O[OhpMwO֫
quÃO!Ϸt=_oNue/M5co!jlb/8;]mdyg6W>)οOzc;oq7&w 0 +endstream
endobj
1716 0 obj
<</First 975/Length 1161/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڬXM7+\J%1L6frc04o^}HB;faovP\(EAu1),%-ѥnII887 .YAuz'9)+ݒ\r[M۠:td +ju!BgSJJ.pPG>7.|4kjbCt +.rl>CGCZl9 +"|UKq|TшjFoAKH"tP(eb _tE2*AB'n"n#+St|fc^p +(!F
F9_ +#u* +GG=962:^N:ߛ/V?M26_wϺ/-Oz{io d噻Bm??T~><̀g0oQ/3(C1؎Wc5E#l@AA#ah ?>Ȣ8ɖe!TW"ڞTyb<1)zukeNemOy;P +_a0)!hf$3Y+# +zhޟ5ZjRj~ϻ&T|)g4D@G:ukqIŪ+)I%m`889Pd%a'Xf:i'29gzTߜ~~8y;s4eY l%d+A2DIG$)%caw[_~ģ~J.ٛ\<lmx6!+߶ϟΣ?/!45
bMX`.3` +endstream
endobj
1717 0 obj
<</First 981/Length 1153/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼXn7bE$ nQpSunjlP>r㝝HvE>jd-bZr@(+-HddBV8"AJL4LJhm6jj/5 +D.дƁT +$4^ +͛~ׇRpqwMhĬ7b}ԟy{VW;O?Bs/95&l
MX0p8s̾>
7v +endstream
endobj
1718 0 obj
<</First 976/Length 1197/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڤXMo7+z.,R @@MnAh]>³g4G>ֹV 1ZsH>K(Yhj2 +HA( _9EvPC@%WP9j%4P%Pd*(!&㬊9*-@!B"@HR2,+Glb2m#pMlF%p8JcHQL +EE
H +8-8GYt%mGߓqXͶ([+!zu+Zb[h/wׯ~ow_X+oR5Fyȃ5qk#VE'WS˟u,+y8yOgÏ` =ۡ6p:@{<JWYUV*rպuوu;82͎#̘ŃolaPwV͠5ibNS:Pȧ +6Qؼ®p]Oz8SJoMy|ypG:<Ϗq|o>elE)3!-7ݔ>2m;niUF=Nk`VyE\7w?\|Ӈ0La־hI%K]KZ]2c],u8:ZMyt#Y;]&zS3G:/omRE$oId4hG$
<-Ҽ>Ʋ/OĉY_t(N]eȍˮsz:b<h8"=$ +p(y,4jhj
tm^k$"[ھ
3Ȗi:bI~뀘Oˠ.Q6:ф{gkι \^m!DFTquiiڅRe[LK`#_ +endstream
endobj
1719 0 obj
<</First 978/Length 1140/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڬWMo7+V$ZE"z]Z)~H%],9?9 ;*IAqD]So]hqYYUpѳ^5Kq9>i@ +ɆQ?-4;,Vl(8d"R͖ٲX*Y[9Fi6h`hh@Ш)G'A%9;A'Lf@*(3v.$Q$h%& +4yApE-HhQjf财чj`,C!Pj +dGCWi64l`GdQ۰FhĤ;,)j7d?CEBQ
٠Q
͆7fCR=7$>2Y]'xCx{v7{v߽KӃw ˗'68=;
Q厝ɶx:%JLf4#|EjƮvv=a1f^CsqBҳy{k1"r8<"Xto=7'ٯ?܄5J +eJr| +^/g< ig ep}/{_m*neO3d1]j5MMe*~z;Gc!%5]{gKr7 0 +endstream
endobj
1720 0 obj
<</First 975/Length 967/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڤV]oT9+'NKiUXVaV+c]p9c6N95oODj@u#:Tx +8D8CV9ב=iqкZ
J*VS@ i@l,@jH66QZ_dkf~hI1#pU}Fp<mh41Un@AV
W0U. O]f9B Owgyӛi}*`z]Ws`W/ 7`L;'.~R:]q}nVq[
hрB#ʯ ++קQ'zu +endstream
endobj
1721 0 obj
<</First 977/Length 920/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڬXjG|v`p&08 r%hwg5HQM:{mkno+TB[d"pDF-AE"Rt(@-Ҋ頗(,Y˨fRk&Y)ӚC5m1ئ-6 +@H8m1. +NG44:G:`634#hOԀa@0up@Xpu(=Pw/̅5jcjeh$aNa[
4EhhH@cW 4r9="z7r+1/<\C1Jq@[Lh*PTbQBâJF#5PXAc3AcF̧u1pZ[^ +4bll#rxiTT"_Ùȇ_[Lb'4
'ifFuVSBAcl1hLp߽;zz߿~>bOpZ8y~<Ҍf4c3fPi3%Hӷ?Ap=lYBF0ՃFHA I34HwcNF5/9 2-toc͗6f@gg gg`gж/??}z k{)Pxru6/o[v^~=n'ҷXV$yݑGu=?v>֛;FËٯs>F@ukmw~
ޖvqz\7~>/sM}3?fMn쉏1793}u[akъ&>=tQ|[I̒3Ow\wW@2h,7/x}u@ҽcǿ? +endstream
endobj
1722 0 obj
<</First 975/Length 1029/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڬWMk$7+\C$`C`Y&lI<㞶47ݪz5VTM"i5pr'bh9QP9ճ4NB$rEO, +@O,
ide,߃_ۙFgGgokE1V2J?>WO#O34lߒe hm"WW(qEm^QBї8dY|[' +5Wdv'֎Fflal>GwgBg&<F_fd}6/1O鈱 +endstream
endobj
1723 0 obj
<</First 974/Length 1136/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڬMoG +Nj +^[{HLl\`2Pє to*BqRF@Cd#y`$H)#)0r&U`6F6 +FRP`l*;?Ma(y($*8"9&|11TfUgHl>S]cF"65`!yz +-[-9jj!s#E/2"YMKWZh}ksiQpkUT,E硚ۼ^BK"Jh6-Be!,^A+Z% +eQ`D JJqn8^ZYqwjr݇{#c7ܱI_P96s
\:`}e
:A^1!Zt&{&nB;=n0}=ύd2fs
dAdKW8'_Ikl0bv´MqzS<g=\t}}<ͷAIo8"?!i?G44CH^ sjʞ~nN\<_}oow7ws( Pe9к=4oӉ̣0٣C7?Ad&7H:lO:e}Bgm3movmo!C$ˇaxrXKҠdz˓ʐōKt=8ǡEY4d +djN~QV{wiYQ(\vw-p>?a̓:2V_r.#=Z+,X~iVv1r]5ңn(?ww:'/B ٕ!K#Ju#?Nr^ +ҐC_BKCwŰ4Oyq uaDǷՕ8&֗bW<O +endstream
endobj
1724 0 obj
<</First 986/Length 1299/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼWێT7c}oDa'
ZmO +H<m팫ovTt[N6E5uM-Yt YUjni-UN*B%tBso(@-茖3nFɝ*Z:M:
e
AIslSr<
ȀruZMGHgȳjfu
mn%B=KFx5BA#Q-#R[F*@&AKͮbGh^2hHDK*BA]CꖢvԀ{PniB:#a)y5)PJb h8
w{a:YY{w*4J%Mk(4tu[h(ýGϢ\QcE܊)Pb~){e:lHgTmS/mVH,ta=/{#Kg@Hg@FF-AE"hm,h#\ %ZBxts_wϧWn?]||'˷Ę~>]oYP6ļ~7e*e.YoeLewy6{ST"$%0L@ˑ#---K<bxn⦍F +A%H lllllu馕]j B2A!hrFMnXbe,XbeBA0eeeen*,Xb),Xj`mi9rL9/L,VbXb%+X)dZnJ`(zȞ=/ǘc9/>sqv9̤đ5hImIs'9,n&8 K{]G!g܄oso'9lqwN\rxU>>;qꃸSuph La}>/\G#7ïN7ܝO/wo>o@c]~uK8qa([yo0:aė uaieִ8{jZ4u4o/Fq4m_p4m_'4m_NVjmZZYsikpkӪ!ڦU5^VjkW:zUzuZʲp+ӪWUL^IkW2e}>I<䅰!xؤ:W +endstream
endobj
1725 0 obj
<</First 969/Length 882/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼ͎9_oPNm !{!EmhX7کu:zJ/NUK9UOZ)5ђS$|j-RTQTZФ:%B2ṅ!ZrʰzPW +XWp!4UaR5=>DVX*ro!zR=ԣRH,C(T +]Aw=CE +(ГbC)-BW4D}(0ÄR,e7/ήl4QsvXU'^hFGu:FGTrT$Gǥ|t`EՠEU0(0(ܥ}Fꑌ+kīD#6-.MKc^00z%j62<C^$lգ*NP!EYhU#骍lPM050M(0|<Pq4Q#kP`O#ZkCxp_)8PP`t`tѣ݇zyK?_{rד˟lO~m/>] +z{?xL`Y e<yk/ lˀu2`L`,2M-I&MƗM:'Iqx'#C.Jжշ=xl=ɧh7OOs8xSv<roa{nc쇞yyܣrɻG<O=9؞;s`{;ρ9C<@9=@75/1nj_l즎:n \vSOಛ:lԡ즎2n \?AISMFMFMFMF& +endstream
endobj
1726 0 obj
<</First 975/Length 1004/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼQ5J$c;RU-o ھ!^Tcm^Ӟə39{)iKT$! +7=,ZEIl5Q[bŒbMbcqO}qI,b,;}q[,nBչeZ\P;U"vU,BE\1+0kwKvF+h:(`H
+1g0B5 +(`̫/` +FP`ךj +EcρC1TlqTp8`xp`z(0܋!D uS +~?GF$[ߤę\i28%ri +_gǻ/ǫS9\?<^^뇏Oqӛx1w±2Jxjx=xU[OY<Sڧ'=y.{Ory-{xz⡽g,9(䙃 sgA9K6zn{3m=x/{`;?i +endstream
endobj
1727 0 obj
<</First 969/Length 961/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWME+-qg}떢H r0Y!VzDk.^U{==.5T[]RD$jAK\Pb@HIj)@IjQ::Dd%*78PzTn;%JeSjj9*xΩ +endstream
endobj
1728 0 obj
<</First 974/Length 1249/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+x̘]Od7J^3'|hW+EB\LaJQggЈ:90eX +E&رbdcMQ9L;ǤB26@HUpI*xCVJj&a*#b8g5\@lt
c&T`dQ;9gu^;_Im%k
YII#D* :10T#&%FY%0bT@)՞#HQ:wb]YP=Urb=<A*\ƳS@*<R#T{Y3[ +,ɃF(P2=EѼHFE,ekz%lE=\4aWIv\c_!eBe*hO䢁j?$CX졐8{uxn8X/_\o'Lp8|/# +t?FK,ʓӻj32s~X]m4p^W
_Uio>q1Vk.'r~ XS4]38CS8(F +pTc
DOkiS1lY=w҇w
~LUk,ó|jo _Mo8Mg7sH܆qmP:#>2Hݭv@drg!Xhw09}
g=gI^^O2cݱG~vYlKqшވBSCaqb}khX+2d&~}蒣s6rQQcnl73EMf~w^=.,xBhmA^ Vx~RёآՇUjWtx xrm
ih"8<W@|1_7dL:J̵ʊB-X 1J7ސs|
7c9"FP{'z\~<Mz^ȘkZnmlonU+7dL:d̷w Ss'r&
i"q!q<koH4ƹΐ0^Ć0]FLoq9B5H
3$NWx +endstream
endobj
1729 0 obj
<</First 979/Length 1349/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼWˎGGRBHܰ cA+,wfUNC&4zt-'JoML%.=@OBKRNIEHR+42-݅rroxdհ0J$ +7ˉsUCNy"r<j@sr$ID9:$QIFsdѣ("G`)G+`葇{{ඨr{R#/#oswsDI+GLrRO)Pq0IC{h=覹Qhy{肩{֚Lk =o>TܣqD4muG]"1Zb8Tj=B$$bgbbP"
c̓^@>f xq}s.F9ȅ#*/(||sQDŽUcª{791a=0/Iª{ؘ0#ۘ0_F
ƄyZDŽ5q4"<9\M;o4χשo?zxw<k)>u/O7?|:^~uͫILf¦E*S_Yݖ?zX7_߶)㾘Yl)m-tȏ`N/eKD&Ɂ +TeBYf% + +eBYPδ +su86 +endstream
endobj
1730 0 obj
<</First 972/Length 914/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼ͎5_oЮ_($ف JXh!nrQB=ۙ073gnlzoZjެo/T5E+d" +זpKSP\$㇊=Rb:DvEICsiqֆ#n%$v/C9[˩TZJ$ABDC z*⡬P +* +4Y 0ԆC P`%HP`9hMQC3a`0z +.='Gə3CQp4|eVfNTC/&r2V +FjErYP5Gm ՌPB;bP̹8aKiIePE<P`枢D[2{`gס'P`xTe*0
F%Ap0SI̾%8<dT̞=ޏW˛y ~ھz{]<x{{O=`ӃRyr"+l+'?
ˏۻ/moMu{?^\vwÇ뗇ym&Q$*bˀ1&. +endstream
endobj
1731 0 obj
<</First 972/Length 1005/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼQ\5J$R[ފ`
BL;!=΄n^PӞܓss[լ%YkWZKd\Pb
Irw!I\$=DMEK]A +SRmH]Pjn(A+(0k<ܒq<z<(kP"(/Pq!W%pT(GKTJ(RvFm𑪗LFc_h +;2\=+0zq>P+e093bR\ :KbPz5V졄PdgvXj(0{F!gri(UCѲWGVǨ:s(0xYܛ3)l ++^=6-%s(j^=-!T_ +Y%H+khg*Q%lT*aiV<T9Nh^h, =*ϒI8H,-9)~n(CEp/7w//ۤ +endstream
endobj
1732 0 obj
<</First 969/Length 885/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼKT9JI#Li/qpXZ"-w{3 4QS+_SJS+͓㵥RbF1R='JQx9&AaILBd.-YȽ'#yu<JBR ̑9TGKidNu4ߓ!J*4*NP#qՙʡjH )"BU2W*0Q0
Ag2 +pT +K,Rh1gT;Q.!`B5 +
Gh G+ӡN!jt@q61C
j%`JjF5ɐ8JcxiΑ
YIXWHLBc4ۨaRk2@-Q+ rP8QUpȷe!ۡ0P`8OT0Q3P<4eidT06Y{&o{(0:jt2?݇Gur!?~x{ٞm78AN/W<b{}r=^^}m
e2'PWmL, ,ˀm2`
*O`_ lˀNcNcNci%.G
p&>VOOvGw<rɻqSS={sO=rSſsKzعGv<c{;ρ9C<9؞;@s{=ρ9C98Xu6njZV}jVe7.LಛZ.O ȲN#ȲN#ȲN#Ӕi~0 +endstream
endobj
1733 0 obj
<</First 974/Length 1381/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+x̘_oT7ſ>w3?*Dh6"dKQCE +߾3=^^B"'=-H@I]@]CBE +<rUA,4%hkn}p`3U&I>8Gi}7%єdWd]qL+6
D $)RSʮ*Σgq2VȔ>9&=(YjjY,)5,d5,ՠ; <K2܁1OD Y:Ew`+Q%n HVC;)$wȝ[RbV;`Q:
݁{b5ZrɳH&V{f4݁MxSغۜ=g߳J`4Rw`*zK`Q<Z
ew`K˚=MsϢV#aKa{\FfQ}sU=MDezmBoq͚:5H}_fѮjkd%Vɛ"}({DIdW콥ɓf7N?w3{l:߾_~H1Mӥu^N~|AG=l6rPoma{ee-sw.efu/sZ~XxC"&/bx=bHc.bt=#Zᆘx0AZg -u ҂AZg@`h-:Z0" A\0,c3[Z6/m[;7}M^ӡ4I͇~iSKo~$ʁ_jo:IFuSOaQ~k;E|o4z~eH&8IoH8Iozox'w-,zپ}I8.cH+*qCveO.Mo*iS(.MLyoez/
tF3xc +! +Dhv^~"s*dvW5BD`@fE⨗ BdQ!*U`WvǽȜH;;+`W]v +ؕ\EH! +! +D;+q/x/.]v2e`e}jshB촭]e`'e +endstream
endobj
1734 0 obj
<</First 983/Length 1072/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼWю]5Ml'NR[ފ`[Â +q[U 3v٠Ҽ jq9rR֚8hMBz%#U +YWv`*ݺjy°@ O]7=-@0|¾<{vyNgNwl8Z +
8莣;8PPŮ6/ +endstream
endobj
1735 0 obj
<</First 974/Length 985/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼX]5;vR[v Z!VU sLh*ԈMw$rIY%Uϖ&"v`XDXNJEڪNL2IAKBXh,J,/Ȥ{Iy|qk,ARH:s5eXGT%W"N2%*; +]q PˎQ=+`x^(*
zG!h4ߺ4z<f*VϊFƞuWѫG)ij*%L-=Ja IÏ)yVj):z/5{V~PRtgUͣOF+AFVhhq$35@a3:)=2k`4bl@[r52ص~٣4
毱rW&0LQ*j5hh8_44jРa
T5hp +[{8Ca(6۟\n?n>=\zW|=lAyyzq{x݇D_=>x_SZDajE +5n=O7rBg788&[LN[8ɩꓓ?q!]8S<9m='GNsxo-[LN[8_gBTzX)Ps<n5S,C)Psy(c49);94;wиsak5mf״kjrtvM]=gvM]=gvM]--S=gNOm9szjhˑ9=ezs$$L@d}NEES9CVۍ-sUCD/)P<7Q6MTYnG +endstream
endobj
1736 0 obj
<</First 973/Length 964/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼ4E%0;TUjUb@ + +{&5+^Vs5NZKʩj$L&۪fčBHxIRJv{M[OjՒQ@[Nf18&0&9Z!}4އ#jYPVBPcu +k*$4M]Te}ؘcfC%f&0bP`X,&ֈ +/ +5qW`45K,];.1`AiW#z9߰ȗ}Hq!AMd]QrD/` ŻC#U0X5Q)3RQHap`=[DquͺÒd +ճRTK^D(j*uW5*8 +Jg.#H +``;eHXDڂa`b*;J@d䷂<D/C!.~|z>S˻_C|\^?]/?]^?|~s8?G6GA,<W~|!|C[͓n\ +w=2=eޓj[՛|SG=4=x֓uu::ȳRy[n{D[_h9̃h
˭ +endstream
endobj
1737 0 obj
<</First 972/Length 962/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼ͊\7_EoЪJc.!1w!I;ϩRka}uUՔI?--艺@%Jn.J**MU|f hIJuѓsR2Tqa;J0/WKjk[-.F(:Ayq2+*P=TMTiYD5¶Ԣ!^R}eCQP +UvƸ#j(0̼R,E-;h +
3c0:9B]Cq✽zι8+T%zt:
j&{CfqhTr1g`c9zjWQ39m5l6z@8X+,ʞ)(9kƖp+-VAhWUC8
S!!хB Mu2X8E<Q)\J2m/UF^)6 +Y3CS0FxP@1}p[g He+EkKgV/P#h:E>{vyu]j +endstream
endobj
1738 0 obj
<</First 971/Length 956/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼϊ^7_op?e$ݥ4!ɮt1-P:WBK3M̽?]I\kՔS$&" TCD-l!(q!8IBHIj%)waII=VvOEhXh9+7J]p2D +"
;>550feĜo{PUBK(BI"J;J"0(dEHu/ +"FѮ(Fb% '0*k(0P` +`Kj⳨`0'ι+P|*R:Ƥ=WvjP%(-EYjD`zD/` +^V0JCuRD`T
M + ņ(R"H"9P`xtSZ Hi@G}+CYD_^/n᷏?ǯn_>=\S)[d2wgw>p=so`9c@@9c<M/~x.B<yzɃg5<xdœG'L-{xzdCmz|GSfyyA^ M-ވ¡]>6x`Scc@|8akǀc6?Ӱc1
۱+<v҈F +endstream
endobj
1739 0 obj
<</First 970/Length 1027/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xW]oF+}-
A췢JAU)0\3m5qvvEB"Y(ePp$8HA*!E+JHA
+Tɳhj-dhlP +oU%FQ*@Q=q76 Y
m9%zABGU(Ԫ5$O#C#9@HǶp9ȞFF!s$[Q}GsVz.$isF{HFHD3
8 á$m_~.W7l>k_v8>fz;ݬ}lewj3#=a_ב.|.A._L kl/&X`}1ˋ .|Q;Ӆ)/|{NNȑ 'rzGo!夑'đC@dg c2@31dO2x̀'|4f@h>3I4[~ +endstream
endobj
1740 0 obj
<</First 974/Length 1363/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼX]o[7+<_I"@nXb
)x]V.K+_;SN$爤(]XJ +x$ b8CxVd2bp]L Md$N'႖LbU,~ +A@0jPJ4zqT f/P*@!lyW9Ȃ<<6 >kq\"p:&c:ijGQ8Yy墳(P +%(CmiXv=mP/'PuJT +K-#xYAU8#pDUE#xNP@>GE(uEǰk^-D.Ji$B,EEC5Ax9A(L U3,uъ?,H4#fGҜp$e9E9J#9g>P +[saڲqmu
n]R$krk>c7w߳m~E.#&^%OFX%ѣWYh
y aˆ۴Vl6r.O9?_m|18'\ֳO˫K/NR +;=]^d'Z!L,>fKZ] 8n?Vj=J=JlqwEA;ʘ6:mtD~ȣƸc8p.6/H`#،;#d7Af-㾯;PA} l|()|r +endstream
endobj
1741 0 obj
<</First 971/Length 1220/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xXMO$7+r^okWH&jPfCPfhϫr{zҳt<\~UeM)^Yߠߨߤ8Y +2h8*#K._BϙAP @łT?Is=5Yˈ ڊSd3@.0 + pbcaFb#p#B pĠq<k)Lȑfh$/6O,.buy͌ 4&7(cDD,ޤ+dg,8<V<&hȂ#X +vt)Zӫ4J.y#hTPM +R'RIcJ6awD1U2mjj٨JnTژiQ$qÒn_ xcguYuziuzHMg +t/61oz~jYܭn0ڼ?cqi+Ly|Q|W +)4 ;I^w;*\)Yd1W~nռy|lbs.iSnV|*<u?Ql_#99"N"N$~HoJ?CI܄#nQ9rtg{mӼ}y&e:ު]2?;*?4/Ӻ;/oٝnm|=aӻ\vo;J̿ ˅KO_p1/ʽӤ\KGݱlÄ<|%Z)0 +endstream
endobj
1742 0 obj
<</First 974/Length 1188/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xX[kG+};3{!Ƀd +OWJR^̜,λrtN +F#%Q +;8R0Z̆͂(fQ쁣&eP{tF("*gQR#&###fU8RV
xtՈ +P !Q-GM֢l#8PlU+Tց#<g;}8%plőQM5K)Y@%XA WZZ0 d-,Nףяr6_vߑ}[&btbZ鿎wV\}.:!m2z?}]/m7[L#]4J_~z.7
~rU? 8&oرz7v@~>|Zݐ4Z# N Aӂ}xxܸ=1vYW;WQ־n.&!.BwaQ2ţLrɍڃTz6V@ZϾLipz|c]qmua'>BJ>Be2L2Gy^X7['?PG2p${@hpj4`hZmy\+}z.[Q:-ɫ͆Ik>g:8Zysa?@;Dva~؎Xumy0| iG2n`Z-S%*L%]S+[ҪlӋ迺%3%to(;mܾⶾ3F$˫Df^"*{־I{Z{wFs)]"?R(\P<ʹqSwloպ}y7`2H̵nzgc+=]ӪDynu䟢l;5WOYU *h +endstream
endobj
1743 0 obj
<</First 973/Length 1408/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xXN#G/7eDY%h!OZFWϩj{c8aE8>FRZ%"Ae AR:YVd<)YNL^y=Id53C9 +A#gA+k5Z$H5A!@),ς +@E E:hxNCw9A#H4H5Y`@8h :0C#DPGZ"N($9D@eWX3!`X%8@yhe+c>[FvC#X̅F)1KFg/._h-a d? +zU!(M _yf,G;8:.QO#jcG99^K3hG?9h"Sjh_C4X;&t\u֛JuHw`KV4r+N-vͭ5Vߝ|^^Og?$a/#`2Ya0+$K +W(f|Yc}"4rY+ٸsk&njTjވeȽ$Wf*YeW5n\n}똦É/fcnmF=c$&re5six[T'4.w&~7[mBn8h̓^^@ǸXZ*51 +e
.*\hו
hoާm/JMk]N˾j$m$|^.'.~%rI*ȃ$V[lmze봼~W;m:cua$:.Y^3Wk_ܑCcęӮSjE?Ypp5h1{o?r+I!_>|Cj<կͷl2Z+fD'&iiHkt'(70]m)2%p2lz_U{(` +endstream
endobj
1744 0 obj
<</First 974/Length 1322/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWo7Wy9Q~Eٰ,4S71H|^|@<>ȏ(eX} +Ɠ&:L? +,B1T +lbxDpGaR.Q`BM(&@UDPLYIEDYĢM *C֊k +`F.!-I<{`dϠ^QJ(YtfA'ڽcwA%6[ɈѤKFHeSm2]ΐ2d] +{ D6)hTQ)d$JHkO C҂@Ry9Ӛ9pV
Fv̚?֏Ka +<j>̟lqs]6(IsxjLplE +#R@<r~or}u+eu7+"Xhk:k~]7f+,VϷxBӨU=wM])r:VR偦R{T9LtVK+}B05L5&#B]/Yb~{C7##Հh@CFIQnsiˡ2!_r.~dŢ
@ Piqݶ'u\Fa\4ж߆B!N+!t|Je)~Wa|:6[W_kHV'_QK[Wm'*_-zRq_[U"{GvqzLӕbE.}CvbթoiFHyZ$?"vIܝ]tqu<VB7OA80waiyr,VO>ݤXgז{5]%{ae,8;=˱q*<ۓZj.wNݼY[8'~Zx>>֫6'M:t +m +}wf +/r|^{0_)W?.o.H]DRW[5DjH{I$@{qtu2cDqvO +endstream
endobj
1745 0 obj
<</First 972/Length 1361/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼXMoG+r 1bHu*R`8hٕV^i4J yZ|Yn2'6dN$&8%Ÿ +
Wvٰz`W4!*H&}(&٧XLJBQIbSHA4%Dɔ,;lY."5Y'P$A`,@B,B,8eA`a!.E1)GjGZQ"-X=oI_sxG(RExP}g_#tY "G/"pD
aB*DHN*DHI}#gG%/;C5#9Ecqd%GkZ!j@Q V8JT8$ +NS-TCbZ^j7=/.VEkSl~? %^"2FvhctL=SO01u:1:R1cXw:l,w +0 +endstream
endobj
1746 0 obj
<</First 974/Length 1683/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڴYMO]7+iyj)JED
+F%Ewg. + +7JHsG\Ntn;ETSQb1ĈO&1+8)<r URBՇ>O}ԞVnjGQ 硎2< +(IBCdfS__]ڜ)غXQU+K,|d݂!ziմwϗm͋:?uLG?N;4kNֿ^l6vI>UG66[~|:؞P.?W}h
<RPUA~y!v?Fi)V>apN6_Ϩ(&\?by>}]?^m.U^]jpR]lV!>%MuY~O=b^<D}"G'V}bk6NcçV:""%p6ABUQoUӫզ::z;X~/e"w
_`{~98/ԦމJ@ F& +xSo8o-߫7pW}7EH,ܩhR\O +mP!Σ +45~A1oXfZ^ĩΫ"B"I9ZxvTG8@l:讅б~U>tѪ!etAW-zwSh~h6,f
֘~5"~kWH9QH$:-wFba
e3brMd7UmMd7
TFI,<l2`3MlfF\G[ +Ȼ +xLxkQh ~ǡy\q"Ypy،S8L4lI,& Nc1;Lhĩe\F<qflF83q>aB'43
S8g^qNaR'5V#=bJ!~O7aɤzacAFX'4Uv\e؈`[0M
O8]ИG8%_X8%5№ +J6bw86l[0<;ɿ +endstream
endobj
1747 0 obj
<</First 976/Length 980/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڴQ\7?`lIl%} )Mh7O!K:@-4G%@j3Fw7SoZSRJVDT9q6M/i:%)霤FT5-MM\ӓ]F1iFN:Lc?4RWN\#itT2й +ԥRT@9ժ +nj*NE=d=juz:ha2]Aa E +zt20JWס`סPDNQ5a\[RJlD%JĶHp]M$:uQuQ|Ǧc5( Im衶
{I\==FsuT꺑 +endstream
endobj
1748 0 obj
<</First 975/Length 932/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڴV۪$EKe,o +.~,9{#s*GLe&茎fI4&ߣMokWV#Kj01;yR`M]4Nڔ>Gqi1uYVo%߬N_%mki&@Lݵ0>uN>uL؏}bIBarC-p1zcrWݍױÆ:v0aaÎÎg. lԯ.#416N0YP8P +vvD80ɺ;Lۓ?>&#pرaǒaZ/
yոG{䁗)2E9M#%y0CC#Ŏy`9/[aPcFx@bnj<;V\.L^G"!Q9S1@)("aM$pc`FyCFa1"<x۷_^|z/~<oynO"}
_adQNǛdOz:ߞJV?,NGk;9 +q"$kXSvR+FJEWy>}F:>˻TQ]\#R߳s{6w,6^۩51Y[{ȫ>k;{tJ=eka#\+IV#SmUgkkS9[;oҪ֎mVgkHgku(kS%[Y+Zln+gdkkS5[+YZY51Z6VZ֊Hgka#UZJNZ~Hvdkjc공m#[\#RoZ6VZҪҶrZ@[ +endstream
endobj
1749 0 obj
<</First 974/Length 1207/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWn7|@+ +4h0$_Zn9ׇ7fn+Bww7+4\Ʈ#RpF#Hgs_Xxl$:t.jdb8<riymDž`:V(gaV'PЏ8 Nˡw(^8Em|cd
9#8gjd )#a`x?ga&le 0gb`^@f!k~^s߆ߒy}f|5yy,/dfR60g3d`^sy`fB10f2i +
+endstream
endobj
1750 0 obj
<</First 970/Length 1000/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWˎ7 ـaĆ M A6`AOuS"<Nt +VF5I9uk8k-wOEԁb
DbJB)V8q*]@H$8hI9@OZXвmqPRA +樦¥8j@c
ca5hy
i44t44M hT +3F͢4x=F5.>CQ(tIwI5@wU>cj^EI4$tҽCCOE3w whLP큠B
R\ѳw)B§#hX.h2Z.A/ PhL;ךٻԣ44$@EY!fW.+4FMAnF/9E5PU/Xc yyyקn{^>,?<[<?[|xJe{yyQylN+xHwG8|SVM|sĎfc~AHiHsDUkj٫UŶZ;k}5F6$gTFWDr墑+HT(rDy*.Wy#'YNnkĩ'9:vH6(D|HjMVj[{WL:YcDS̃TWvHPFti$dJ&[{8&1)FL'9(J(C._8lH&i$tJ'ҭb+'9s#ѓiPj1(DB=%|H(m"i$jUrJVZ9<qY1S̃7+EbSZ/H;KhU}/(⭽MV'1jSZ9ə5nv_ +endstream
endobj
1751 0 obj
<</First 971/Length 1017/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xWncEO"V;-h7o +Q==>~KR3c\5sAKTJ\'@/4){c$˱RIiPZ=R8U VT9Դ:ˢJO] M#β#X*4QtGـJ䚔1c*^EIC7dc
^QwE(Q84U"}*5Ay=Vf@*P]qK̡Żyѱp +]y
U4^Oac
%tżh\ +k._fBW;={QUg5B(tͣڼ!,+Sſ{Y/~@5hyQ%[̼얒^aJ^R@.i]h~+4:F]'y爏fnc2@>m>/5om|nvO{|NcoywO|y{wj?Ct;'u>n_ZƐ<h#vq0{=|8pZsZ?r`Y-2q$gTA5G!GBې[FO*?V^-8ǯ}z3ƠzR$ʐFoU$lHM#A{=KhU^Gtđ%F4ňI<(AnjDB\p$#C4X%UVp8<gO1b9ə7N$GB*҇ti$tJ'V9rdL1r3*nX ~HHrzH#Q4XeUfG^s#'9oFĸ^8V֑wF.Vɪ-e)uy2ŨI<qR$=U#Q:β~HŪ6YVN>rjo +endstream
endobj
1752 0 obj
<</First 972/Length 1013/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xW]o7+ +oKc&XiLD +f+[*4:{ +ѯ$u-y( ހ+Ȫo
aV iDЪhhy!%t
%;0?;Tr5%\
F>|fh՟VhFpx*I3o,~ӧq~\>
|A~^yׇGo'8<GǗwOO?:</Ͽ{~ykCN.(Abt|N~(x{z=j_U}*U#rp@| ;8,"Q]8l#C2~ULGyJ68:r<WL:ə%>(P _zl$BDti$x'8⭽#y#bDz3*G$H C/ M$
ii$dJ&DV^'#b$gTܰ/u"aC\8H!7VdѪWu唉#9kt擜yPqwDbS. H7VdUUJ-)my2ŨI<aKu"1BM$ƕUMQWKP8նּrȱ~cklJI4qZN %ez<TaW&10 +endstream
endobj
1753 0 obj
<</First 973/Length 1219/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xW]OcG+#=wlϧZ hV!,B&j{C.-7sc=Iwst7$7;Fq1U;.-䄂$(\D2\gSRX5r.U\U^]a%Vk +B#V4 gXOy",vZxEH8aAXQhQa PH#pPG#VNBc*8Jjd;GeR-)c/Df. +Šsvs(V6\qB%*NV#D8^NFAآ#eÁ#j YFpH
BpT +F
`uq[˲ʩ
m4⮲)M(N|XV18B2_pDSpDtGjKȬ9'pdS<#WERp(8Ґ
*FLk40M%{E +lj1,S60xnm8}?+Gfo?]0.,nW~a'W6]AipJp9|~#'L|x>|Zi߱q1Y
5b X7){haƞހ|9^|Y
a~G.ΤfDf% +qUx`0)v'cpUv'v']\{@_; +ep>Imd->yez#v˸7ćwLb~s#;ҷč"]
MP3U0(Y9O{6jgO,;} +W
:mJ:ߧ8Oqr/QYBo{Ol=aIނhҧ>i2i2i[ەx#}a=UN\qf~wqRLOwS2xyo{'v?m~};v̓};vLeT鶰қlGn i;' +endstream
endobj
1754 0 obj
<</First 991/Length 3437/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+xڼQUǿʑ>${B4RP }B<l`CiȂUo9^=g<n˲.-.Hހ/⭃d%yP%>ʒQ5-nMy)vPb[]JlѲEvP+X̣.ڇx}Z^,ն>x1;ۆ_"kZ e]t$v|ERn@1@QJZ-}.BGIQСk!C[ayk
f]v ^<mDi:j6))tےҒִ@}MJ*I&I][cFx[k,pޚ@EYծ-X4[Qpg{7ے]<Tb
%,j!Y}l!c)ʔwJpm-&y狥]^
l^Lcuݤtk>pNl٫tkXc:Yn3K}Q3]CxW֖,-uIYBL'֡tm%4tawj`KN-zr"H.
v2w\{E<ޣ2
|him/\|w2FƘ[v?*Nw?^R{neSAuo/{}uśO^^/rw4\?/~{_wWC><L]7ǫ/^_ek2֣RRݠss}l3Aݕ`۽7C61zvMͨ2փyW?9<X7:!xcώ-^x:Pt8C)g:Pc1rv
n)] +hU +'VYYA69sU4 + +RNv}.@@ȎHfe@!p.LuEny&h6rk!Fj +3f9 T0SaL +3f*TdT/#3,03,03$$f=,03,0SQ4xwL>#M frnHI[\\\>eee2ELQHV$+ɊdCNs5e(e2CB3ɎdGܜɎ乷;+""c:aFCrCrCrC;B2Ceu6)QDm&fQ&X`LgI LͤLfm"%P" %P" %P" %PDJ$DJؕHB3B⌐00{'{V$.!G8Gh
ۅ͐SN@8%FȻ܋cG2svăFN9脬N;I!Nq,dBj$Y_W>+?.}%F4qI2.Re˸Y#q6.C +ipBLc9bi@ơd^n`Z9M Cd./:@єp06iM :WwN +w +F!(Da"BIQ0F?`Q0F);e`Qv0F(;e`)+++Sm0
F6`TB2*dB+0`{)2E`rϯV d!*0 +Xe$$g yp0^@"dX&<'Hlo\`)DN4-p:os[-}Ds&?#A)'$(,$m`"̈ Mjh>|*b.<[s:Ms}i(,'߈b.,H3 FT[HBOs"A$~ fX:P(indľID +o@KUL}xŋRywHkmՁ_x0JΝt$wB=ѽ\dWw68b{j;,."O3%@(>~dT*8-(Lc()ʞZOB0L)nkẸve^֜vl*ʓ>-6}w^`H&u+B%jw|YH.H@< @rB2/R(jq`Hal{o_)JlsgGw~GW'Ys
v6(BBx//V/d±+|p͋oF>C +endstream
endobj
1755 0 obj
<</First 1029/Length 3193/Filter/FlateDecode/N 100/Type/ObjStm/Extends 1678 0 R>>stream
+x[\ǿ$F 12E4QBl ۯfwf ~R?]>[B +YJHKߴؐ:R4.FDŽ*6B MA]rӐTT8^̒ʚ}hDoTh5EMK7%Ys5wiĘE\T]D|iY(DS:4J5*.16O3HcZ>xRi:m6mW-YB/27*,9&ʒKif`ukN[UzyiحrUQz[誳LS_Ԧ⤒mU5yz`W*YM7,Idl5I>U[)hf@S#ZY?ȎX6tӃmdd}"iɦS#}eiȦ-%
M[nq&ҴJVZ93PȁVmT9Ъ͍PȁVmη\ӬdfUu@lڢosM[OM[ +mni+UĦ-M[*RMWl#{̖RW|n>xy{˖W/߷zjūO3,1}ÿ좗+;oݷ?v7<_|g"6^,:Շʦ&ۛOn`,݇_8w*q]IA"wg!_CZ&C [V!oe(g1_&!"Ad2p~Y7UۺaOB "D5z> QQQQQ,H$ɂdA Y,H$G$G$G$G$G$G$G$G$G$G$: $ZK8sX!7WWU_2@LɞyN'?%S=S8q=xqZzĖ'"=Q z0nyk1ux@XpGP8D2gs::&Qd:і +Ao3"ăcdֶBBHT#HY!js6g{ڌ%lxU1eΡlx5 +fWⱙ>z8BfdxcĪxզ8![l-ٔY!GHpD.BfLjܓ*RVڜ@d#_< <cDsp슔$H< L$AE4IsxUsp jeNHY!:
iy@t8ZRMKњii%J#ִ< q"eҴ< j3״TD2UM6UM6UMKHMKHMlQRM˄ +M͚3EhZ&Vq-Z:YɄp|O8 >'p0gO4`q6YX0,8ZfY 1^0DE&FHVEX 9-`Y cn ˛PAPq5̇34TݑQӠ= +l^0p܉/2nW*kaU)c,`_cTi1EFAij='ĕp=ppIԟO<
hG[Ztm[Zb[FB)3?MRQVOl܌e.̈́L辄I葄FH~i߱Gч ͖QlWǠMFha>EhF$йHT߳N%U`	D-ol͜^+glqz߈%N.U% *0I#ɸ;E4GJ pNtÖh<;`xv*=NG 944&ФGo[It=>̈́۟J(;Zz<ܘ|轖(qAD3L{ HcN'LW&#d$nE/Ï7DwpY Zhδ\ +@
Hz=μyf1ː5ŭ'j`ZX
lz9y-AyiJ8Ly\vۇ1<y>}'~qL1}nKJ̼w D\V멢#jW_>"1Oc)Ң$4˜yq}hq;N=`+!H +endstream
endobj
1756 0 obj
<</First 805/Length 1031/Filter/FlateDecode/N 83/Type/ObjStm/Extends 1678 0 R>>stream
+xWn7@%H"hvwFjAU\K
5LQ7z㣙{x_YBUB Tڛ(
3X +\B*DU4hl,ۓۓA
V
Ɛ :BΪ`$rW~"{@A(!ȗCH#2u<eGdՑ$qCqCqCjs|K 0v.NfMa%^DKsG[GE_(FssaLG +ˢ5z}lǦO>'Hz{?o~monKOKfx%ۖ>ޟyE벡GRz9͜9iEO,vo!߇?wû_ow>w"(u83Y<7K{M{Fjo/&ovw߶lz7qGG纾;9M+)"LU+чVϬr&YGä
L
EC?H
}ĞL/:]{uОEwySyX,K?;'[\?Ց'<GY4_9/ ˾YҨ4GLd"YRW
D:_fI4?.r;S^c6!܆VϳJ1kqϝ'W0H%Lonc??w1:ElKoeCp.eC]îRcAV9I!î0#YJS"d!TDU2_9ϲHMGq9ϲkM"Lݧvo}1*# +endstream
endobj
1757 0 obj
<</Nums[0 1758 0 R]>>
endobj
1758 0 obj
<</S/D>>
endobj
1759 0 obj
<</Count 95/Type/Pages/Kids[1760 0 R 1761 0 R 1762 0 R 1763 0 R 1764 0 R 1765 0 R 1766 0 R 1767 0 R 1768 0 R 1769 0 R]>>
endobj
1760 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[9661 0 R 1 0 R 10 0 R 12 0 R 89 0 R 134 0 R 1340 0 R 1344 0 R 1347 0 R 1350 0 R]>>
endobj
1761 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[1353 0 R 1356 0 R 1359 0 R 1362 0 R 1365 0 R 1367 0 R 1370 0 R 1373 0 R 1376 0 R 1380 0 R]>>
endobj
1762 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[1382 0 R 1385 0 R 1387 0 R 1390 0 R 1392 0 R 1394 0 R 1396 0 R 1399 0 R 1402 0 R 1404 0 R]>>
endobj
1763 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[1408 0 R 1413 0 R 1417 0 R 1420 0 R 1423 0 R 1426 0 R 1428 0 R 1430 0 R 1433 0 R 1435 0 R]>>
endobj
1764 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[1437 0 R 1439 0 R 1441 0 R 1443 0 R 1445 0 R 1447 0 R 1449 0 R 1451 0 R 1453 0 R 1455 0 R]>>
endobj
1765 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[1457 0 R 1459 0 R 1461 0 R 1463 0 R 1465 0 R 1468 0 R 1472 0 R 1474 0 R 1477 0 R 1479 0 R]>>
endobj
1766 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[1481 0 R 1483 0 R 1488 0 R 1490 0 R 1492 0 R 1494 0 R 1496 0 R 1498 0 R 1500 0 R 1502 0 R]>>
endobj
1767 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[1504 0 R 1506 0 R 1508 0 R 1510 0 R 1512 0 R 1514 0 R 1516 0 R 1518 0 R 1520 0 R 1522 0 R]>>
endobj
1768 0 obj
<</Parent 1759 0 R/Count 10/Type/Pages/Kids[1524 0 R 1526 0 R 1528 0 R 1530 0 R 1532 0 R 1534 0 R 1536 0 R 1538 0 R 1540 0 R 1542 0 R]>>
endobj
1769 0 obj
<</Parent 1759 0 R/Count 5/Type/Pages/Kids[1544 0 R 1546 0 R 1548 0 R 1550 0 R 1552 0 R]>>
endobj
1770 0 obj
<</Names[( +HL1n0DdRfr $p4{8DH('%nAveG5nk5tLF8wIW:5Yl8ԜTXfV#'X.jE'ʭ8#)>n;;AO\ClqpQM(b&Gj3pql?t36ktV<aq ˕R%Euv
ҧYdqQ~<ao;;{F!:*~'$RѸ>.q0 +endstream
endobj
1772 0 obj
<</Subtype/XML/Length 4469/Type/Metadata>>stream
+<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?> +<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.0-c316 44.253921, Sun Oct 01 2006 17:14:39"> + <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <rdf:Description rdf:about="" + xmlns:pdf="http://ns.adobe.com/pdf/1.3/"> + <pdf:Producer>Acrobat Distiller 5.0.5 (Windows)</pdf:Producer> + <pdf:Keywords>Common Criteria, Certification, Océ, Digital Access Controller, DAC, MFD</pdf:Keywords> + </rdf:Description> + <rdf:Description rdf:about="" + xmlns:xap="http://ns.adobe.com/xap/1.0/"> + <xap:CreateDate>2009-01-19T13:21:59+01:00</xap:CreateDate> + <xap:ModifyDate>2009-03-19T18:41:50+01:00</xap:ModifyDate> + <xap:MetadataDate>2009-03-19T18:41:50+01:00</xap:MetadataDate> + <xap:CreatorTool>Acrobat PDFMaker 5.0 for Word</xap:CreatorTool> + </rdf:Description> + <rdf:Description rdf:about="" + xmlns:dc="http://purl.org/dc/elements/1.1/"> + <dc:format>application/pdf</dc:format> + <dc:creator> + <rdf:Seq> + <rdf:li>Océ Technologies B.V.</rdf:li> + </rdf:Seq> + </dc:creator> + <dc:title> + <rdf:Alt> + <rdf:li xml:lang="x-default">Security Target The Océ Digital Access Controller (DAC) R10.1.5, as used in the Océ VarioPrint 1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/copier/scanner products</rdf:li> + </rdf:Alt> + </dc:title> + <dc:description> + <rdf:Alt> + <rdf:li xml:lang="x-default">Security Target</rdf:li> + </rdf:Alt> + </dc:description> + <dc:subject> + <rdf:Bag> + <rdf:li>Common Criteria</rdf:li> + <rdf:li>Certification</rdf:li> + <rdf:li>Océ</rdf:li> + <rdf:li>Digital Access Controller</rdf:li> + <rdf:li>DAC</rdf:li> + <rdf:li>MFD</rdf:li> + </rdf:Bag> + </dc:subject> + </rdf:Description> + <rdf:Description rdf:about="" + xmlns:xapMM="http://ns.adobe.com/xap/1.0/mm/"> + <xapMM:DocumentID>uuid:56e05c3b-5c67-4eae-a2bc-69ae4c259ac1</xapMM:DocumentID> + <xapMM:InstanceID>uuid:c2246ba4-cc7d-444f-8367-52e826594293</xapMM:InstanceID> + </rdf:Description> + </rdf:RDF> +</x:xmpmeta> + + + + + + + + + + + + + + + + + + + + + +<?xpacket end="w"?>
+endstream
endobj
1773 0 obj
<</CreationDate(D:20090119132159+01'00')/Subject(Security Target)/Author(Oc Technologies B.V.)/Creator(Acrobat PDFMaker 5.0 for Word)/Keywords(Common Criteria, Certification, Oc, Digital Access Controller, DAC, MFD)/Producer(Acrobat Distiller 5.0.5 \(Windows\))/ModDate(D:20090319184150+01'00')/Title(Security Target The Oc Digital Access Controller \(DAC\) R10.1.5, as used in the Oc VarioPrint 1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/copier/scanner products)>>
endobj
xref
+0 9657
+0000000000 65535 f
+0000429228 00000 n
+0000429608 00000 n
+0000429730 00000 n
+0000429852 00000 n
+0000429974 00000 n
+0000430096 00000 n
+0000430218 00000 n
+0000430340 00000 n
+0000430462 00000 n
+0000432295 00000 n
+0000432614 00000 n
+0000435194 00000 n
+0000435540 00000 n
+0000435817 00000 n
+0000435924 00000 n
+0000436031 00000 n
+0000436138 00000 n
+0000436246 00000 n
+0000436354 00000 n
+0000436462 00000 n
+0000436569 00000 n
+0000436677 00000 n
+0000436785 00000 n
+0000436893 00000 n
+0000437000 00000 n
+0000437108 00000 n
+0000437216 00000 n
+0000437324 00000 n
+0000437432 00000 n
+0000437540 00000 n
+0000437648 00000 n
+0000437756 00000 n
+0000437864 00000 n
+0000437971 00000 n
+0000438079 00000 n
+0000438187 00000 n
+0000438295 00000 n
+0000438403 00000 n
+0000438510 00000 n
+0000438618 00000 n
+0000438726 00000 n
+0000438834 00000 n
+0000438942 00000 n
+0000439050 00000 n
+0000439158 00000 n
+0000439266 00000 n
+0000439374 00000 n
+0000439482 00000 n
+0000439590 00000 n
+0000439697 00000 n
+0000439805 00000 n
+0000443723 00000 n
+0000443775 00000 n
+0000443828 00000 n
+0000443882 00000 n
+0000443936 00000 n
+0000443991 00000 n
+0000444046 00000 n
+0000444101 00000 n
+0000444156 00000 n
+0000444211 00000 n
+0000444266 00000 n
+0000444321 00000 n
+0000444376 00000 n
+0000444431 00000 n
+0000444486 00000 n
+0000444541 00000 n
+0000444596 00000 n
+0000444651 00000 n
+0000444706 00000 n
+0000444761 00000 n
+0000444816 00000 n
+0000444871 00000 n
+0000444926 00000 n
+0000444981 00000 n
+0000445036 00000 n
+0000445091 00000 n
+0000445146 00000 n
+0000445201 00000 n
+0000445256 00000 n
+0000445311 00000 n
+0000445366 00000 n
+0000445421 00000 n
+0000445476 00000 n
+0000445531 00000 n
+0000445586 00000 n
+0000445641 00000 n
+0000445696 00000 n
+0000445751 00000 n
+0000446098 00000 n
+0000446275 00000 n
+0000446384 00000 n
+0000446493 00000 n
+0000446602 00000 n
+0000446710 00000 n
+0000446818 00000 n
+0000446927 00000 n
+0000447036 00000 n
+0000447145 00000 n
+0000447255 00000 n
+0000447365 00000 n
+0000447476 00000 n
+0000447585 00000 n
+0000447695 00000 n
+0000447805 00000 n
+0000447915 00000 n
+0000448025 00000 n
+0000448135 00000 n
+0000448245 00000 n
+0000448355 00000 n
+0000448465 00000 n
+0000448575 00000 n
+0000451308 00000 n
+0000451364 00000 n
+0000451420 00000 n
+0000451476 00000 n
+0000451532 00000 n
+0000451588 00000 n
+0000451644 00000 n
+0000451700 00000 n
+0000451756 00000 n
+0000451812 00000 n
+0000451868 00000 n
+0000451924 00000 n
+0000451980 00000 n
+0000452036 00000 n
+0000452092 00000 n
+0000452148 00000 n
+0000452204 00000 n
+0000452260 00000 n
+0000452316 00000 n
+0000452372 00000 n
+0000452428 00000 n
+0000452484 00000 n
+0000479435 00000 n
+0000479559 00000 n
+0000479683 00000 n
+0000479807 00000 n
+0000479931 00000 n
+0000480055 00000 n
+0000480179 00000 n
+0000480303 00000 n
+0000480427 00000 n
+0000480551 00000 n
+0000480675 00000 n
+0000480799 00000 n
+0000480923 00000 n
+0000481047 00000 n
+0000481171 00000 n
+0000481295 00000 n
+0000481419 00000 n
+0000481543 00000 n
+0000481667 00000 n
+0000481791 00000 n
+0000481915 00000 n
+0000501766 00000 n
+0000501937 00000 n
+0000502108 00000 n
+0000502279 00000 n
+0000502450 00000 n
+0000502627 00000 n
+0000502798 00000 n
+0000502975 00000 n
+0000503146 00000 n
+0000503317 00000 n
+0000503488 00000 n
+0000503659 00000 n
+0000503833 00000 n
+0000504004 00000 n
+0000504175 00000 n
+0000504349 00000 n
+0000504526 00000 n
+0000504700 00000 n
+0000504874 00000 n
+0000505051 00000 n
+0000505228 00000 n
+0000505402 00000 n
+0000505576 00000 n
+0000505750 00000 n
+0000505924 00000 n
+0000506098 00000 n
+0000506272 00000 n
+0000506446 00000 n
+0000506620 00000 n
+0000506797 00000 n
+0000506971 00000 n
+0000507145 00000 n
+0000507319 00000 n
+0000507493 00000 n
+0000507667 00000 n
+0000507841 00000 n
+0000508015 00000 n
+0000508189 00000 n
+0000508363 00000 n
+0000508540 00000 n
+0000508714 00000 n
+0000508888 00000 n
+0000509062 00000 n
+0000509236 00000 n
+0000509410 00000 n
+0000509584 00000 n
+0000509761 00000 n
+0000509935 00000 n
+0000510109 00000 n
+0000510283 00000 n
+0000510457 00000 n
+0000510631 00000 n
+0000510805 00000 n
+0000510979 00000 n
+0000511153 00000 n
+0000511327 00000 n
+0000511501 00000 n
+0000511675 00000 n
+0000511852 00000 n
+0000512026 00000 n
+0000512200 00000 n
+0000512374 00000 n
+0000512548 00000 n
+0000512722 00000 n
+0000512896 00000 n
+0000513070 00000 n
+0000513244 00000 n
+0000513421 00000 n
+0000513595 00000 n
+0000513769 00000 n
+0000513943 00000 n
+0000514117 00000 n
+0000514291 00000 n
+0000514465 00000 n
+0000514639 00000 n
+0000514813 00000 n
+0000514987 00000 n
+0000515161 00000 n
+0000515335 00000 n
+0000515509 00000 n
+0000515683 00000 n
+0000515857 00000 n
+0000516031 00000 n
+0000516205 00000 n
+0000516379 00000 n
+0000516553 00000 n
+0000516727 00000 n
+0000516901 00000 n
+0000517075 00000 n
+0000517249 00000 n
+0000517423 00000 n
+0000517597 00000 n
+0000517771 00000 n
+0000517945 00000 n
+0000518119 00000 n
+0000518293 00000 n
+0000518467 00000 n
+0000518641 00000 n
+0000518815 00000 n
+0000518989 00000 n
+0000519163 00000 n
+0000519337 00000 n
+0000519514 00000 n
+0000519688 00000 n
+0000519862 00000 n
+0000520036 00000 n
+0000520210 00000 n
+0000520384 00000 n
+0000520558 00000 n
+0000520732 00000 n
+0000520906 00000 n
+0000521080 00000 n
+0000521254 00000 n
+0000521428 00000 n
+0000521602 00000 n
+0000521776 00000 n
+0000521950 00000 n
+0000522124 00000 n
+0000522298 00000 n
+0000522472 00000 n
+0000522646 00000 n
+0000522820 00000 n
+0000522994 00000 n
+0000523168 00000 n
+0000523342 00000 n
+0000523516 00000 n
+0000523690 00000 n
+0000523864 00000 n
+0000524038 00000 n
+0000524212 00000 n
+0000524386 00000 n
+0000524557 00000 n
+0000524731 00000 n
+0000524905 00000 n
+0000525079 00000 n
+0000525253 00000 n
+0000525427 00000 n
+0000525601 00000 n
+0000525775 00000 n
+0000525949 00000 n
+0000526123 00000 n
+0000526300 00000 n
+0000526474 00000 n
+0000526648 00000 n
+0000526822 00000 n
+0000526996 00000 n
+0000527170 00000 n
+0000527344 00000 n
+0000527518 00000 n
+0000527692 00000 n
+0000527866 00000 n
+0000528040 00000 n
+0000528214 00000 n
+0000528388 00000 n
+0000528562 00000 n
+0000528736 00000 n
+0000528910 00000 n
+0000529084 00000 n
+0000529258 00000 n
+0000529432 00000 n
+0000529606 00000 n
+0000529780 00000 n
+0000529954 00000 n
+0000530128 00000 n
+0000530302 00000 n
+0000530476 00000 n
+0000530650 00000 n
+0000530824 00000 n
+0000530998 00000 n
+0000531172 00000 n
+0000531346 00000 n
+0000531520 00000 n
+0000531694 00000 n
+0000531868 00000 n
+0000532042 00000 n
+0000532216 00000 n
+0000532390 00000 n
+0000532564 00000 n
+0000532738 00000 n
+0000532915 00000 n
+0000533089 00000 n
+0000533263 00000 n
+0000533437 00000 n
+0000533611 00000 n
+0000533785 00000 n
+0000533959 00000 n
+0000534133 00000 n
+0000534307 00000 n
+0000534484 00000 n
+0000534658 00000 n
+0000534832 00000 n
+0000535006 00000 n
+0000535180 00000 n
+0000535354 00000 n
+0000535528 00000 n
+0000535702 00000 n
+0000535876 00000 n
+0000536050 00000 n
+0000536224 00000 n
+0000536401 00000 n
+0000536575 00000 n
+0000536749 00000 n
+0000536923 00000 n
+0000537097 00000 n
+0000537274 00000 n
+0000537448 00000 n
+0000537622 00000 n
+0000537796 00000 n
+0000537970 00000 n
+0000538144 00000 n
+0000538318 00000 n
+0000538492 00000 n
+0000538666 00000 n
+0000538840 00000 n
+0000539014 00000 n
+0000539191 00000 n
+0000539365 00000 n
+0000539539 00000 n
+0000539713 00000 n
+0000539887 00000 n
+0000540061 00000 n
+0000540238 00000 n
+0000540412 00000 n
+0000540586 00000 n
+0000540760 00000 n
+0000540934 00000 n
+0000541108 00000 n
+0000541282 00000 n
+0000541456 00000 n
+0000541630 00000 n
+0000541804 00000 n
+0000541978 00000 n
+0000542152 00000 n
+0000542326 00000 n
+0000542503 00000 n
+0000542677 00000 n
+0000542851 00000 n
+0000543028 00000 n
+0000543202 00000 n
+0000543376 00000 n
+0000543550 00000 n
+0000543724 00000 n
+0000543898 00000 n
+0000544072 00000 n
+0000544246 00000 n
+0000544420 00000 n
+0000544594 00000 n
+0000544768 00000 n
+0000544942 00000 n
+0000545116 00000 n
+0000545290 00000 n
+0000545464 00000 n
+0000545638 00000 n
+0000545812 00000 n
+0000545986 00000 n
+0000546160 00000 n
+0000546334 00000 n
+0000546508 00000 n
+0000546682 00000 n
+0000546856 00000 n
+0000547030 00000 n
+0000547201 00000 n
+0000547375 00000 n
+0000547549 00000 n
+0000547723 00000 n
+0000547897 00000 n
+0000548071 00000 n
+0000548245 00000 n
+0000548419 00000 n
+0000548593 00000 n
+0000548767 00000 n
+0000548941 00000 n
+0000549115 00000 n
+0000549289 00000 n
+0000549463 00000 n
+0000549637 00000 n
+0000549814 00000 n
+0000549988 00000 n
+0000550162 00000 n
+0000550336 00000 n
+0000550510 00000 n
+0000550684 00000 n
+0000550858 00000 n
+0000551029 00000 n
+0000551200 00000 n
+0000551374 00000 n
+0000551548 00000 n
+0000551722 00000 n
+0000551896 00000 n
+0000552070 00000 n
+0000552244 00000 n
+0000552418 00000 n
+0000552592 00000 n
+0000552766 00000 n
+0000552940 00000 n
+0000553114 00000 n
+0000553288 00000 n
+0000553462 00000 n
+0000553633 00000 n
+0000553807 00000 n
+0000553981 00000 n
+0000554155 00000 n
+0000554329 00000 n
+0000554503 00000 n
+0000554677 00000 n
+0000554851 00000 n
+0000555025 00000 n
+0000555199 00000 n
+0000555373 00000 n
+0000555547 00000 n
+0000555721 00000 n
+0000555895 00000 n
+0000556069 00000 n
+0000556243 00000 n
+0000556417 00000 n
+0000556594 00000 n
+0000556771 00000 n
+0000556948 00000 n
+0000557122 00000 n
+0000557293 00000 n
+0000557467 00000 n
+0000557641 00000 n
+0000557815 00000 n
+0000557986 00000 n
+0000558160 00000 n
+0000558334 00000 n
+0000558506 00000 n
+0000558677 00000 n
+0000558851 00000 n
+0000559025 00000 n
+0000559199 00000 n
+0000559373 00000 n
+0000559547 00000 n
+0000559718 00000 n
+0000559892 00000 n
+0000560063 00000 n
+0000560237 00000 n
+0000560408 00000 n
+0000560579 00000 n
+0000560750 00000 n
+0000560921 00000 n
+0000561092 00000 n
+0000561263 00000 n
+0000561434 00000 n
+0000561608 00000 n
+0000561779 00000 n
+0000561953 00000 n
+0000562124 00000 n
+0000562298 00000 n
+0000562472 00000 n
+0000562646 00000 n
+0000562820 00000 n
+0000562994 00000 n
+0000563168 00000 n
+0000563342 00000 n
+0000563516 00000 n
+0000563687 00000 n
+0000563858 00000 n
+0000564029 00000 n
+0000564200 00000 n
+0000565533 00000 n
+0000567325 00000 n
+0000568011 00000 n
+0000569859 00000 n
+0000570033 00000 n
+0000570207 00000 n
+0000570381 00000 n
+0000570555 00000 n
+0000570726 00000 n
+0000570903 00000 n
+0000571080 00000 n
+0000571254 00000 n
+0000571431 00000 n
+0000571605 00000 n
+0000571779 00000 n
+0000571956 00000 n
+0000572130 00000 n
+0000572304 00000 n
+0000572478 00000 n
+0000572652 00000 n
+0000572826 00000 n
+0000573000 00000 n
+0000573171 00000 n
+0000573348 00000 n
+0000573519 00000 n
+0000573696 00000 n
+0000573873 00000 n
+0000574050 00000 n
+0000574227 00000 n
+0000574401 00000 n
+0000574575 00000 n
+0000574749 00000 n
+0000574923 00000 n
+0000575094 00000 n
+0000575268 00000 n
+0000575442 00000 n
+0000575616 00000 n
+0000575793 00000 n
+0000575964 00000 n
+0000576135 00000 n
+0000576306 00000 n
+0000576483 00000 n
+0000576657 00000 n
+0000576828 00000 n
+0000577005 00000 n
+0000577182 00000 n
+0000577359 00000 n
+0000577530 00000 n
+0000577701 00000 n
+0000577872 00000 n
+0000578043 00000 n
+0000578214 00000 n
+0000578385 00000 n
+0000578556 00000 n
+0000578727 00000 n
+0000578898 00000 n
+0000579069 00000 n
+0000579240 00000 n
+0000579411 00000 n
+0000579582 00000 n
+0000579756 00000 n
+0000579927 00000 n
+0000580098 00000 n
+0000580269 00000 n
+0000580440 00000 n
+0000580611 00000 n
+0000580785 00000 n
+0000580959 00000 n
+0000581130 00000 n
+0000581301 00000 n
+0000581472 00000 n
+0000581643 00000 n
+0000581814 00000 n
+0000581988 00000 n
+0000582159 00000 n
+0000582330 00000 n
+0000582501 00000 n
+0000582672 00000 n
+0000582846 00000 n
+0000583017 00000 n
+0000583188 00000 n
+0000583362 00000 n
+0000583533 00000 n
+0000583704 00000 n
+0000583878 00000 n
+0000584049 00000 n
+0000584220 00000 n
+0000584397 00000 n
+0000584568 00000 n
+0000584742 00000 n
+0000584916 00000 n
+0000585090 00000 n
+0000585264 00000 n
+0000585441 00000 n
+0000585615 00000 n
+0000585789 00000 n
+0000585963 00000 n
+0000586137 00000 n
+0000586311 00000 n
+0000586485 00000 n
+0000586659 00000 n
+0000586833 00000 n
+0000587007 00000 n
+0000587184 00000 n
+0000587358 00000 n
+0000587532 00000 n
+0000587709 00000 n
+0000587883 00000 n
+0000588060 00000 n
+0000588237 00000 n
+0000588411 00000 n
+0000588585 00000 n
+0000588759 00000 n
+0000588933 00000 n
+0000589107 00000 n
+0000589284 00000 n
+0000589458 00000 n
+0000589632 00000 n
+0000589806 00000 n
+0000589980 00000 n
+0000590154 00000 n
+0000590328 00000 n
+0000590505 00000 n
+0000590679 00000 n
+0000590853 00000 n
+0000591027 00000 n
+0000591204 00000 n
+0000591378 00000 n
+0000591552 00000 n
+0000591726 00000 n
+0000591900 00000 n
+0000592077 00000 n
+0000592251 00000 n
+0000592425 00000 n
+0000592599 00000 n
+0000592773 00000 n
+0000592947 00000 n
+0000593121 00000 n
+0000593295 00000 n
+0000593469 00000 n
+0000593643 00000 n
+0000593817 00000 n
+0000593991 00000 n
+0000594165 00000 n
+0000594342 00000 n
+0000594516 00000 n
+0000594690 00000 n
+0000594864 00000 n
+0000595039 00000 n
+0000595214 00000 n
+0000595388 00000 n
+0000595562 00000 n
+0000595739 00000 n
+0000595913 00000 n
+0000596087 00000 n
+0000596261 00000 n
+0000596435 00000 n
+0000596609 00000 n
+0000596783 00000 n
+0000596960 00000 n
+0000597134 00000 n
+0000597308 00000 n
+0000597482 00000 n
+0000597656 00000 n
+0000597830 00000 n
+0000598004 00000 n
+0000598181 00000 n
+0000598355 00000 n
+0000598529 00000 n
+0000598703 00000 n
+0000598877 00000 n
+0000599051 00000 n
+0000599225 00000 n
+0000599399 00000 n
+0000599573 00000 n
+0000599747 00000 n
+0000599924 00000 n
+0000600098 00000 n
+0000600272 00000 n
+0000600446 00000 n
+0000600620 00000 n
+0000600794 00000 n
+0000600968 00000 n
+0000601142 00000 n
+0000601316 00000 n
+0000601490 00000 n
+0000601667 00000 n
+0000601841 00000 n
+0000602015 00000 n
+0000602189 00000 n
+0000602366 00000 n
+0000602540 00000 n
+0000602717 00000 n
+0000602894 00000 n
+0000603068 00000 n
+0000603245 00000 n
+0000603419 00000 n
+0000603593 00000 n
+0000603767 00000 n
+0000603941 00000 n
+0000604115 00000 n
+0000604289 00000 n
+0000604463 00000 n
+0000604637 00000 n
+0000604811 00000 n
+0000604988 00000 n
+0000605162 00000 n
+0000605336 00000 n
+0000605510 00000 n
+0000605684 00000 n
+0000605858 00000 n
+0000606032 00000 n
+0000606206 00000 n
+0000606380 00000 n
+0000606557 00000 n
+0000606734 00000 n
+0000606908 00000 n
+0000607082 00000 n
+0000607256 00000 n
+0000607430 00000 n
+0000607604 00000 n
+0000607778 00000 n
+0000607952 00000 n
+0000608126 00000 n
+0000608300 00000 n
+0000608474 00000 n
+0000608648 00000 n
+0000608822 00000 n
+0000608996 00000 n
+0000609170 00000 n
+0000609347 00000 n
+0000609521 00000 n
+0000609695 00000 n
+0000609869 00000 n
+0000610043 00000 n
+0000610220 00000 n
+0000610397 00000 n
+0000610571 00000 n
+0000610745 00000 n
+0000610919 00000 n
+0000611093 00000 n
+0000611267 00000 n
+0000611441 00000 n
+0000611615 00000 n
+0000611789 00000 n
+0000611963 00000 n
+0000612137 00000 n
+0000612311 00000 n
+0000612485 00000 n
+0000612659 00000 n
+0000612833 00000 n
+0000613007 00000 n
+0000613181 00000 n
+0000613355 00000 n
+0000613529 00000 n
+0000613703 00000 n
+0000613877 00000 n
+0000614054 00000 n
+0000614231 00000 n
+0000614405 00000 n
+0000614579 00000 n
+0000614756 00000 n
+0000614933 00000 n
+0000615107 00000 n
+0000615281 00000 n
+0000615455 00000 n
+0000615629 00000 n
+0000615803 00000 n
+0000615977 00000 n
+0000616151 00000 n
+0000616325 00000 n
+0000616499 00000 n
+0000616673 00000 n
+0000616847 00000 n
+0000617021 00000 n
+0000617195 00000 n
+0000617369 00000 n
+0000617543 00000 n
+0000617717 00000 n
+0000617894 00000 n
+0000618071 00000 n
+0000618245 00000 n
+0000618419 00000 n
+0000618593 00000 n
+0000618767 00000 n
+0000618941 00000 n
+0000619115 00000 n
+0000619289 00000 n
+0000619463 00000 n
+0000619637 00000 n
+0000619811 00000 n
+0000619985 00000 n
+0000620159 00000 n
+0000620333 00000 n
+0000620507 00000 n
+0000620681 00000 n
+0000620855 00000 n
+0000621029 00000 n
+0000621203 00000 n
+0000621380 00000 n
+0000621554 00000 n
+0000621731 00000 n
+0000621905 00000 n
+0000622079 00000 n
+0000622253 00000 n
+0000622428 00000 n
+0000622605 00000 n
+0000622779 00000 n
+0000622953 00000 n
+0000623130 00000 n
+0000623301 00000 n
+0000623472 00000 n
+0000623643 00000 n
+0000623814 00000 n
+0000623985 00000 n
+0000624156 00000 n
+0000624327 00000 n
+0000624498 00000 n
+0000624672 00000 n
+0000624843 00000 n
+0000625014 00000 n
+0000625185 00000 n
+0000625356 00000 n
+0000625527 00000 n
+0000625698 00000 n
+0000625869 00000 n
+0000626040 00000 n
+0000626211 00000 n
+0000626382 00000 n
+0000626553 00000 n
+0000626724 00000 n
+0000626895 00000 n
+0000627066 00000 n
+0000627237 00000 n
+0000627408 00000 n
+0000627585 00000 n
+0000627756 00000 n
+0000627933 00000 n
+0000628104 00000 n
+0000628275 00000 n
+0000628449 00000 n
+0000628620 00000 n
+0000628791 00000 n
+0000628962 00000 n
+0000629133 00000 n
+0000629310 00000 n
+0000629487 00000 n
+0000629658 00000 n
+0000629829 00000 n
+0000630003 00000 n
+0000630174 00000 n
+0000630345 00000 n
+0000630519 00000 n
+0000630693 00000 n
+0000630864 00000 n
+0000631035 00000 n
+0000631209 00000 n
+0000631383 00000 n
+0000631557 00000 n
+0000631728 00000 n
+0000631899 00000 n
+0000632070 00000 n
+0000632241 00000 n
+0000632412 00000 n
+0000632583 00000 n
+0000632754 00000 n
+0000632925 00000 n
+0000633096 00000 n
+0000633270 00000 n
+0000633444 00000 n
+0000633615 00000 n
+0000633786 00000 n
+0000633957 00000 n
+0000634128 00000 n
+0000634302 00000 n
+0000634476 00000 n
+0000634650 00000 n
+0000634824 00000 n
+0000634998 00000 n
+0000635175 00000 n
+0000635346 00000 n
+0000635517 00000 n
+0000635688 00000 n
+0000635859 00000 n
+0000636030 00000 n
+0000636204 00000 n
+0000636378 00000 n
+0000636555 00000 n
+0000636732 00000 n
+0000636909 00000 n
+0000637086 00000 n
+0000637260 00000 n
+0000637431 00000 n
+0000637608 00000 n
+0000637779 00000 n
+0000637953 00000 n
+0000638130 00000 n
+0000638307 00000 n
+0000638481 00000 n
+0000638658 00000 n
+0000638829 00000 n
+0000639006 00000 n
+0000639177 00000 n
+0000639348 00000 n
+0000639519 00000 n
+0000639690 00000 n
+0000639861 00000 n
+0000640032 00000 n
+0000640203 00000 n
+0000640374 00000 n
+0000640545 00000 n
+0000640716 00000 n
+0000640887 00000 n
+0000641058 00000 n
+0000641229 00000 n
+0000641400 00000 n
+0000641574 00000 n
+0000641748 00000 n
+0000641922 00000 n
+0000642096 00000 n
+0000642270 00000 n
+0000642444 00000 n
+0000642618 00000 n
+0000642792 00000 n
+0000642966 00000 n
+0000643140 00000 n
+0000643314 00000 n
+0000643488 00000 n
+0000643662 00000 n
+0000643836 00000 n
+0000644010 00000 n
+0000644184 00000 n
+0000644358 00000 n
+0000644532 00000 n
+0000644709 00000 n
+0000644883 00000 n
+0000645060 00000 n
+0000645234 00000 n
+0000645408 00000 n
+0000645582 00000 n
+0000645756 00000 n
+0000645930 00000 n
+0000646104 00000 n
+0000646278 00000 n
+0000646452 00000 n
+0000646626 00000 n
+0000646800 00000 n
+0000646974 00000 n
+0000647148 00000 n
+0000647322 00000 n
+0000647496 00000 n
+0000647670 00000 n
+0000647844 00000 n
+0000648021 00000 n
+0000648195 00000 n
+0000648372 00000 n
+0000648546 00000 n
+0000648720 00000 n
+0000648894 00000 n
+0000649068 00000 n
+0000649242 00000 n
+0000649416 00000 n
+0000649590 00000 n
+0000649764 00000 n
+0000649938 00000 n
+0000650112 00000 n
+0000650286 00000 n
+0000650457 00000 n
+0000650631 00000 n
+0000650805 00000 n
+0000650979 00000 n
+0000651153 00000 n
+0000651327 00000 n
+0000651501 00000 n
+0000651675 00000 n
+0000651849 00000 n
+0000652023 00000 n
+0000652197 00000 n
+0000652371 00000 n
+0000652545 00000 n
+0000652719 00000 n
+0000652893 00000 n
+0000653067 00000 n
+0000653241 00000 n
+0000653415 00000 n
+0000653590 00000 n
+0000653765 00000 n
+0000653937 00000 n
+0000654112 00000 n
+0000654287 00000 n
+0000654462 00000 n
+0000654637 00000 n
+0000654812 00000 n
+0000654987 00000 n
+0000655162 00000 n
+0000655337 00000 n
+0000655512 00000 n
+0000655687 00000 n
+0000655862 00000 n
+0000656037 00000 n
+0000656212 00000 n
+0000656390 00000 n
+0000656565 00000 n
+0000656740 00000 n
+0000656915 00000 n
+0000657090 00000 n
+0000657268 00000 n
+0000657443 00000 n
+0000657618 00000 n
+0000657793 00000 n
+0000657968 00000 n
+0000658143 00000 n
+0000658318 00000 n
+0000658493 00000 n
+0000658668 00000 n
+0000658840 00000 n
+0000659012 00000 n
+0000659187 00000 n
+0000659362 00000 n
+0000659537 00000 n
+0000659712 00000 n
+0000659887 00000 n
+0000660065 00000 n
+0000660240 00000 n
+0000660415 00000 n
+0000660590 00000 n
+0000660765 00000 n
+0000660940 00000 n
+0000661115 00000 n
+0000661290 00000 n
+0000661465 00000 n
+0000661640 00000 n
+0000661815 00000 n
+0000661993 00000 n
+0000662165 00000 n
+0000662340 00000 n
+0000662512 00000 n
+0000662687 00000 n
+0000662862 00000 n
+0000663040 00000 n
+0000663212 00000 n
+0000663387 00000 n
+0000663562 00000 n
+0000663740 00000 n
+0000663915 00000 n
+0000664090 00000 n
+0000664265 00000 n
+0000664440 00000 n
+0000664615 00000 n
+0000664790 00000 n
+0000664965 00000 n
+0000665140 00000 n
+0000665315 00000 n
+0000665490 00000 n
+0000665665 00000 n
+0000665840 00000 n
+0000666015 00000 n
+0000666190 00000 n
+0000666365 00000 n
+0000666540 00000 n
+0000666718 00000 n
+0000666893 00000 n
+0000667068 00000 n
+0000667246 00000 n
+0000667421 00000 n
+0000667599 00000 n
+0000667774 00000 n
+0000667946 00000 n
+0000668121 00000 n
+0000668296 00000 n
+0000668471 00000 n
+0000668646 00000 n
+0000668821 00000 n
+0000668996 00000 n
+0000669171 00000 n
+0000669349 00000 n
+0000669524 00000 n
+0000669699 00000 n
+0000669874 00000 n
+0000670049 00000 n
+0000670224 00000 n
+0000670399 00000 n
+0000670574 00000 n
+0000670749 00000 n
+0000670924 00000 n
+0000671099 00000 n
+0000671274 00000 n
+0000671449 00000 n
+0000671624 00000 n
+0000671799 00000 n
+0000671974 00000 n
+0000672149 00000 n
+0000672324 00000 n
+0000672499 00000 n
+0000672674 00000 n
+0000672849 00000 n
+0000673024 00000 n
+0000673199 00000 n
+0000673374 00000 n
+0000673549 00000 n
+0000673724 00000 n
+0000673899 00000 n
+0000674074 00000 n
+0000674249 00000 n
+0000674424 00000 n
+0000674599 00000 n
+0000674774 00000 n
+0000674949 00000 n
+0000675124 00000 n
+0000675299 00000 n
+0000675474 00000 n
+0000675649 00000 n
+0000675821 00000 n
+0000675996 00000 n
+0000676171 00000 n
+0000676346 00000 n
+0000676521 00000 n
+0000676696 00000 n
+0000676871 00000 n
+0000677046 00000 n
+0000677221 00000 n
+0000677396 00000 n
+0000677571 00000 n
+0000677746 00000 n
+0000677921 00000 n
+0000678096 00000 n
+0000678271 00000 n
+0000678446 00000 n
+0000678621 00000 n
+0000678796 00000 n
+0000678971 00000 n
+0000679146 00000 n
+0000679321 00000 n
+0000679496 00000 n
+0000679671 00000 n
+0000679846 00000 n
+0000680021 00000 n
+0000680196 00000 n
+0000680374 00000 n
+0000680549 00000 n
+0000680724 00000 n
+0000680899 00000 n
+0000681074 00000 n
+0000681249 00000 n
+0000681424 00000 n
+0000681599 00000 n
+0000681774 00000 n
+0000681949 00000 n
+0000682124 00000 n
+0000682299 00000 n
+0000682474 00000 n
+0000682649 00000 n
+0000682824 00000 n
+0000682999 00000 n
+0000683174 00000 n
+0000683352 00000 n
+0000683524 00000 n
+0000683699 00000 n
+0000683874 00000 n
+0000684049 00000 n
+0000684224 00000 n
+0000684399 00000 n
+0000684574 00000 n
+0000684749 00000 n
+0000684924 00000 n
+0000685099 00000 n
+0000685274 00000 n
+0000685449 00000 n
+0000685621 00000 n
+0000685793 00000 n
+0000685971 00000 n
+0000686146 00000 n
+0000686321 00000 n
+0000686493 00000 n
+0000686671 00000 n
+0000686846 00000 n
+0000687021 00000 n
+0000687196 00000 n
+0000687371 00000 n
+0000687546 00000 n
+0000687721 00000 n
+0000687896 00000 n
+0000688068 00000 n
+0000688240 00000 n
+0000688412 00000 n
+0000688590 00000 n
+0000688762 00000 n
+0000688937 00000 n
+0000689109 00000 n
+0000689284 00000 n
+0000689462 00000 n
+0000689640 00000 n
+0000689818 00000 n
+0000689993 00000 n
+0000690171 00000 n
+0000690346 00000 n
+0000690521 00000 n
+0000690693 00000 n
+0000690868 00000 n
+0000691043 00000 n
+0000691218 00000 n
+0000691393 00000 n
+0000691565 00000 n
+0000691737 00000 n
+0000691909 00000 n
+0000692081 00000 n
+0000692253 00000 n
+0000692425 00000 n
+0000692597 00000 n
+0000692769 00000 n
+0000692944 00000 n
+0000693116 00000 n
+0000693291 00000 n
+0000693466 00000 n
+0000693638 00000 n
+0000693813 00000 n
+0000693988 00000 n
+0000694163 00000 n
+0000694335 00000 n
+0000694507 00000 n
+0000694682 00000 n
+0000694854 00000 n
+0000695026 00000 n
+0000695201 00000 n
+0000695379 00000 n
+0000695551 00000 n
+0000695723 00000 n
+0000695895 00000 n
+0000696067 00000 n
+0000696242 00000 n
+0000696414 00000 n
+0000696589 00000 n
+0000696764 00000 n
+0000696939 00000 n
+0000697114 00000 n
+0000697289 00000 n
+0000697464 00000 n
+0000697636 00000 n
+0000697814 00000 n
+0000697986 00000 n
+0000698164 00000 n
+0000698336 00000 n
+0000698511 00000 n
+0000698683 00000 n
+0000698855 00000 n
+0000699027 00000 n
+0000699202 00000 n
+0000699374 00000 n
+0000699549 00000 n
+0000699724 00000 n
+0000699899 00000 n
+0000700071 00000 n
+0000700246 00000 n
+0000700418 00000 n
+0000700590 00000 n
+0000700762 00000 n
+0000700934 00000 n
+0000701106 00000 n
+0000701278 00000 n
+0000701450 00000 n
+0000701622 00000 n
+0000701797 00000 n
+0000701972 00000 n
+0000702147 00000 n
+0000702322 00000 n
+0000702497 00000 n
+0000702672 00000 n
+0000702847 00000 n
+0000703019 00000 n
+0000703191 00000 n
+0000703363 00000 n
+0000703535 00000 n
+0000703707 00000 n
+0000703879 00000 n
+0000704057 00000 n
+0000704229 00000 n
+0000704407 00000 n
+0000704579 00000 n
+0000704754 00000 n
+0000704926 00000 n
+0000705101 00000 n
+0000705273 00000 n
+0000705448 00000 n
+0000705623 00000 n
+0000705798 00000 n
+0000705970 00000 n
+0000706142 00000 n
+0000706317 00000 n
+0000706489 00000 n
+0000706661 00000 n
+0000706833 00000 n
+0000707005 00000 n
+0000707177 00000 n
+0000707349 00000 n
+0000707521 00000 n
+0000707696 00000 n
+0000707868 00000 n
+0000708043 00000 n
+0000708215 00000 n
+0000708387 00000 n
+0000708562 00000 n
+0000708737 00000 n
+0000708912 00000 n
+0000709087 00000 n
+0000709259 00000 n
+0000709434 00000 n
+0000709606 00000 n
+0000709778 00000 n
+0000709950 00000 n
+0000710122 00000 n
+0000710294 00000 n
+0000710466 00000 n
+0000710638 00000 n
+0000710810 00000 n
+0000710982 00000 n
+0000711157 00000 n
+0000711329 00000 n
+0000711501 00000 n
+0000711676 00000 n
+0000711851 00000 n
+0000712029 00000 n
+0000712204 00000 n
+0000712379 00000 n
+0000712554 00000 n
+0000712732 00000 n
+0000713095 00000 n
+0000714783 00000 n
+0000724655 00000 n
+0000733938 00000 n
+0000734288 00000 n
+0000736273 00000 n
+0000749566 00000 n
+0000749919 00000 n
+0000750047 00000 n
+0000754239 00000 n
+0000754606 00000 n
+0000754734 00000 n
+0000757812 00000 n
+0000758189 00000 n
+0000758316 00000 n
+0000760967 00000 n
+0000761335 00000 n
+0000761463 00000 n
+0000763512 00000 n
+0000763862 00000 n
+0000765680 00000 n
+0000816375 00000 n
+0000816730 00000 n
+0000816858 00000 n
+0000833820 00000 n
+0000834131 00000 n
+0000835351 00000 n
+0000835705 00000 n
+0000835833 00000 n
+0000857268 00000 n
+0000857622 00000 n
+0000857750 00000 n
+0000887161 00000 n
+0000887515 00000 n
+0000887643 00000 n
+0000924929 00000 n
+0000925305 00000 n
+0000925433 00000 n
+0000925561 00000 n
+0000953927 00000 n
+0000954251 00000 n
+0000956454 00000 n
+0000956808 00000 n
+0000956935 00000 n
+0000959413 00000 n
+0000959750 00000 n
+0000961941 00000 n
+0000962282 00000 n
+0000962410 00000 n
+0000965204 00000 n
+0000965528 00000 n
+0000967338 00000 n
+0000967676 00000 n
+0000969835 00000 n
+0000970159 00000 n
+0000972624 00000 n
+0000972965 00000 n
+0000973093 00000 n
+0000974366 00000 n
+0000974747 00000 n
+0000974875 00000 n
+0000977241 00000 n
+0000977579 00000 n
+0000979416 00000 n
+0000979806 00000 n
+0000979934 00000 n
+0000980062 00000 n
+0000983357 00000 n
+0000983742 00000 n
+0000983870 00000 n
+0000983998 00000 n
+0000984125 00000 n
+0000986738 00000 n
+0000987128 00000 n
+0000987256 00000 n
+0000987383 00000 n
+0000989960 00000 n
+0000990314 00000 n
+0000990442 00000 n
+0000993361 00000 n
+0000993715 00000 n
+0000993843 00000 n
+0000995349 00000 n
+0000995703 00000 n
+0000995830 00000 n
+0000998634 00000 n
+0000998958 00000 n
+0001001299 00000 n
+0001001637 00000 n
+0001003965 00000 n
+0001004332 00000 n
+0001004361 00000 n
+0001005999 00000 n
+0001006323 00000 n
+0001007039 00000 n
+0001007376 00000 n
+0001011034 00000 n
+0001011358 00000 n
+0001013976 00000 n
+0001014300 00000 n
+0001016748 00000 n
+0001017072 00000 n
+0001019547 00000 n
+0001019871 00000 n
+0001021743 00000 n
+0001022080 00000 n
+0001025819 00000 n
+0001026143 00000 n
+0001028964 00000 n
+0001029288 00000 n
+0001031988 00000 n
+0001032312 00000 n
+0001035049 00000 n
+0001035386 00000 n
+0001036405 00000 n
+0001036743 00000 n
+0001039790 00000 n
+0001040114 00000 n
+0001041898 00000 n
+0001042222 00000 n
+0001045667 00000 n
+0001045978 00000 n
+0001048439 00000 n
+0001048750 00000 n
+0001051386 00000 n
+0001051727 00000 n
+0001051855 00000 n
+0001054473 00000 n
+0001054837 00000 n
+0001054965 00000 n
+0001055093 00000 n
+0001056864 00000 n
+0001057143 00000 n
+0001058095 00000 n
+0001058390 00000 n
+0001058419 00000 n
+0001059422 00000 n
+0001059701 00000 n
+0001060283 00000 n
+0001060575 00000 n
+0001062786 00000 n
+0001063065 00000 n
+0001065552 00000 n
+0001065858 00000 n
+0001069286 00000 n
+0001075475 00000 n
+0001075663 00000 n
+0001075861 00000 n
+0001076153 00000 n
+0001079666 00000 n
+0001079958 00000 n
+0001082073 00000 n
+0001082391 00000 n
+0001085808 00000 n
+0001086100 00000 n
+0001088316 00000 n
+0001088608 00000 n
+0001091082 00000 n
+0001091374 00000 n
+0001093118 00000 n
+0001093397 00000 n
+0001095723 00000 n
+0001095989 00000 n
+0001098026 00000 n
+0001098292 00000 n
+0001100253 00000 n
+0001100519 00000 n
+0001102656 00000 n
+0001102922 00000 n
+0001105315 00000 n
+0001105581 00000 n
+0001107946 00000 n
+0001108212 00000 n
+0001110652 00000 n
+0001110918 00000 n
+0001113250 00000 n
+0001113516 00000 n
+0001115781 00000 n
+0001116047 00000 n
+0001118621 00000 n
+0001118887 00000 n
+0001120989 00000 n
+0001121255 00000 n
+0001123377 00000 n
+0001123643 00000 n
+0001126121 00000 n
+0001126387 00000 n
+0001128686 00000 n
+0001128952 00000 n
+0001131343 00000 n
+0001131609 00000 n
+0001134250 00000 n
+0001134516 00000 n
+0001136623 00000 n
+0001136889 00000 n
+0001139388 00000 n
+0001139654 00000 n
+0001141643 00000 n
+0001141909 00000 n
+0001143524 00000 n
+0001143790 00000 n
+0001146562 00000 n
+0001146828 00000 n
+0001149069 00000 n
+0001149335 00000 n
+0001151822 00000 n
+0001152088 00000 n
+0001154583 00000 n
+0001154849 00000 n
+0001157189 00000 n
+0001157455 00000 n
+0001159614 00000 n
+0001159928 00000 n
+0001160053 00000 n
+0001160178 00000 n
+0001160303 00000 n
+0001160908 00000 n
+0001160958 00000 n
+0001161088 00000 n
+0001161142 00000 n
+0001161326 00000 n
+0001161686 00000 n
+0001161815 00000 n
+0001161869 00000 n
+0001161962 00000 n
+0001162091 00000 n
+0001162218 00000 n
+0001162607 00000 n
+0001162783 00000 n
+0001162845 00000 n
+0001162990 00000 n
+0001163098 00000 n
+0001163244 00000 n
+0001163380 00000 n
+0001163493 00000 n
+0001163602 00000 n
+0001163721 00000 n
+0001163836 00000 n
+0001163956 00000 n
+0001164065 00000 n
+0001164174 00000 n
+0001164305 00000 n
+0001164414 00000 n
+0001164529 00000 n
+0001164644 00000 n
+0001164761 00000 n
+0001164877 00000 n
+0001164999 00000 n
+0001165107 00000 n
+0001165217 00000 n
+0001165325 00000 n
+0001165433 00000 n
+0001165559 00000 n
+0001165697 00000 n
+0001165838 00000 n
+0001165960 00000 n
+0001166083 00000 n
+0001166240 00000 n
+0001166372 00000 n
+0001166497 00000 n
+0001166625 00000 n
+0001166781 00000 n
+0001166909 00000 n
+0001167019 00000 n
+0001167140 00000 n
+0001167258 00000 n
+0001167378 00000 n
+0001167502 00000 n
+0001167625 00000 n
+0001167787 00000 n
+0001167932 00000 n
+0001168049 00000 n
+0001168163 00000 n
+0001168279 00000 n
+0001168399 00000 n
+0001168509 00000 n
+0001168625 00000 n
+0001168747 00000 n
+0001168865 00000 n
+0001168986 00000 n
+0001169137 00000 n
+0001169243 00000 n
+0001169357 00000 n
+0001169524 00000 n
+0001169673 00000 n
+0001169782 00000 n
+0001169949 00000 n
+0001170113 00000 n
+0001170234 00000 n
+0001170395 00000 n
+0001170546 00000 n
+0001170676 00000 n
+0001170842 00000 n
+0001171016 00000 n
+0001171139 00000 n
+0001171296 00000 n
+0001171422 00000 n
+0001171591 00000 n
+0001171698 00000 n
+0001171803 00000 n
+0001171922 00000 n
+0001172038 00000 n
+0001172160 00000 n
+0001172281 00000 n
+0001172393 00000 n
+0001172509 00000 n
+0001172618 00000 n
+0001172719 00000 n
+0001172831 00000 n
+0001172950 00000 n
+0001173083 00000 n
+0001173215 00000 n
+0001173364 00000 n
+0001173504 00000 n
+0001173613 00000 n
+0001173730 00000 n
+0001173872 00000 n
+0001173996 00000 n
+0001174119 00000 n
+0001174244 00000 n
+0001174373 00000 n
+0001174490 00000 n
+0001174616 00000 n
+0001174793 00000 n
+0001174911 00000 n
+0001175039 00000 n
+0001175205 00000 n
+0001175346 00000 n
+0001175534 00000 n
+0001175665 00000 n
+0001175812 00000 n
+0001175947 00000 n
+0001176125 00000 n
+0001176236 00000 n
+0001176347 00000 n
+0001176458 00000 n
+0001176569 00000 n
+0001176674 00000 n
+0001183766 00000 n
+0001185252 00000 n
+0001186080 00000 n
+0001186920 00000 n
+0001187757 00000 n
+0001188585 00000 n
+0001189418 00000 n
+0001190262 00000 n
+0001191095 00000 n
+0001191921 00000 n
+0001192737 00000 n
+0001193580 00000 n
+0001194397 00000 n
+0001195570 00000 n
+0001196654 00000 n
+0001198027 00000 n
+0001199308 00000 n
+0001200626 00000 n
+0001201976 00000 n
+0001203227 00000 n
+0001204493 00000 n
+0001205787 00000 n
+0001207036 00000 n
+0001208322 00000 n
+0001209664 00000 n
+0001210960 00000 n
+0001212184 00000 n
+0001213278 00000 n
+0001214643 00000 n
+0001215722 00000 n
+0001216830 00000 n
+0001218257 00000 n
+0001219313 00000 n
+0001220380 00000 n
+0001221671 00000 n
+0001222898 00000 n
+0001224196 00000 n
+0001227813 00000 n
+0001229092 00000 n
+0001230363 00000 n
+0001231678 00000 n
+0001232936 00000 n
+0001234020 00000 n
+0001235057 00000 n
+0001236204 00000 n
+0001237458 00000 n
+0001238875 00000 n
+0001239874 00000 n
+0001240996 00000 n
+0001242074 00000 n
+0001243441 00000 n
+0001244908 00000 n
+0001245939 00000 n
+0001247062 00000 n
+0001248064 00000 n
+0001249563 00000 n
+0001250753 00000 n
+0001251855 00000 n
+0001252936 00000 n
+0001254015 00000 n
+0001255088 00000 n
+0001256233 00000 n
+0001257714 00000 n
+0001259052 00000 n
+0001260358 00000 n
+0001261884 00000 n
+0001263324 00000 n
+0001264803 00000 n
+0001266604 00000 n
+0001267701 00000 n
+0001268750 00000 n
+0001270075 00000 n
+0001271193 00000 n
+0001272328 00000 n
+0001273459 00000 n
+0001274796 00000 n
+0001278351 00000 n
+0001281663 00000 n
+0001282811 00000 n
+0001282851 00000 n
+0001282878 00000 n
+0001283017 00000 n
+0001283162 00000 n
+0001283317 00000 n
+0001283472 00000 n
+0001283627 00000 n
+0001283782 00000 n
+0001283937 00000 n
+0001284092 00000 n
+0001284247 00000 n
+0001284402 00000 n
+0001284511 00000 n
+0001284612 00000 n
+0001285130 00000 n
+0001289679 00000 n
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+0000000000 65535 f
+trailer
+<</Size 9657>>
+startxref
+116
+%%EOF
diff --git a/tests/data/cc/analysis/certs/targets/pdf/d1b238729b25d745.pdf b/tests/data/cc/analysis/certs/targets/pdf/d1b238729b25d745.pdf Binary files differnew file mode 100644 index 00000000..3b09fb0d --- /dev/null +++ b/tests/data/cc/analysis/certs/targets/pdf/d1b238729b25d745.pdf diff --git a/tests/data/cc/analysis/certs/targets/txt/2c47b65953dcffb3.txt b/tests/data/cc/analysis/certs/targets/txt/2c47b65953dcffb3.txt new file mode 100644 index 00000000..93960afb --- /dev/null +++ b/tests/data/cc/analysis/certs/targets/txt/2c47b65953dcffb3.txt @@ -0,0 +1,1969 @@ +Océ Technolgies B.V. +ST-Océ DAC R9.1.6-2.4 +Security Target +The Océ Digital Access Controller (DAC) R9.1.6, +as used in the Océ VarioPrint +1055, 1065, 1075, +2062, 2075 printer/copier/scanner products +Certification ID BSI-DSZ-CC- 0370 +Sponsor Océ Technologies B.V. +File name Oce Venlo DAC Security Target 2.4.doc +No of pages 63 +This Security Target was prepared for: +Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +by TNO-ITSEF B.V. + 2006 Océ Technologies B.V. +Version 2.4 +Date 25th +August 2006 +ST-Océ DAC R9.1.6-2.4 2 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Document information +Date of issue 25th +August 2006 +Author(s) Rob Hunter, Dirk-Jan Out +Version number report 2.4 +Certification ID BSI-DSZ-CC- 0370 +Scheme BSI +Sponsor Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +Evaluation Lab TNO-ITSEF B.V. +IT Security Evaluation Facility +Delftechpark 1 +2628XJ Delft +The Netherlands +Target of Evaluation (TOE) +The Océ Digital Access Controller +(DAC) R9.1.6, +as used in the Océ VarioPrint +1055, 1065, 1075, +2062, 2075 printer/copier/scanner +products +TOE reference name Océ DAC R9.1.6 +CC-EAL number 2+ (augmented with ALC_FLR.1) +Classification None +Report title +Security Target +The Océ Digital Access Controller +(DAC) R9.1.6, +as used in the Océ VarioPrint +1055, 1065, 1075, +2062, 2075 printer/copier/scanner +products +Report reference name ST-Océ DAC R9.1.6-2.4 +ST-Océ DAC R9.1.6-2.4 3 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Document history +Version Date Comment +0.2 14-10-03 Initial draft +0.3 17-10-03 Added initial comments from TNO-ITSEF BV +0.4 28-10-03 Added comments from Océ +0.5 06-11-03 Added comments of Océ resulting from meeting +0.6 Added telephone comments from Océ +0.7 17-11-03 Further expansion of versions 0.5 and 0.6 +0.8 1-12-03 SFR’s added and comments from Océ included +0.9 20-2-04 Added comments from Océ +1.0 2-3-04 Initial release (unevaluated) +1.1 28-5-04 Modified after initial CC evaluation round with comments +from evaluators and from BSI +1.2 17-6-04 Modified after second CC evaluation round +1.3 25-08-04 Modified after comment BSI (Rev Prot 3) +1.4 23-09-04 Modified after comment BSI (Rev Prot 12) +1.5 30-11-04 Modified after comment BSI (Rev Prot 23) +1.6 01-12-04 Modified after comment BSI (Rev Prot 23) +1.7 13-05-05 Modified to reflect differences between R8.1.10 and +R7.3.6 of the DAC product +1.8 1-08-05 Modified after comments from BSI (Rev Prot 1) +1.9 2-09-05 Modified after comments from BSI (Rev Prot 5) +2.0 12-01-06 Modified to reflect differences between R9.1.0 and +R.8.1.10 of the DAC product +2.1 01-05-06 Certification Id Added +2.2 01-07-06 Modified after comments from BSI (Rev Prot +ZK_0370_ASE_01) +2.3 27-07-06 Modified after comments from BSI (Rev Prot +ZK_0370_ASE_02) +2.4 25-08-06 Modified after comments from BSI (Rev Prot +ZK_0370_ASE_03) +ST-Océ DAC R9.1.6-2.4 4 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Contents +DOCUMENT INFORMATION.........................................................................................2 +DOCUMENT HISTORY ....................................................................................................3 +1. SECURITY TARGET INTRODUCTION ...............................................................6 +1.1 ST IDENTIFICATION ..............................................................................................6 +1.2 ST OVERVIEW ......................................................................................................7 +1.3 CC CONFORMANCE ..............................................................................................8 +2. TOE DESCRIPTION ...............................................................................................10 +2.1 TOE OVERVIEW .................................................................................................10 +2.1.1 TOE physical scope and boundary ................................................................10 +2.1.2 TOE logical scope and boundary ..................................................................13 +3. TOE SECURITY ENVIRONMENT.......................................................................21 +3.1 DEFINITION OF SUBJECTS, OBJECTS AND OPERATIONS.........................................21 +3.1.1 Non-human subjects.......................................................................................21 +3.1.2 Human subjects..............................................................................................21 +3.1.3 Objects...........................................................................................................22 +3.1.4 Operations .....................................................................................................23 +3.2 ASSUMPTIONS.....................................................................................................23 +3.3 THREATS.............................................................................................................25 +3.4 ORGANISATIONAL SECURITY POLICIES...............................................................25 +4. SECURITY OBJECTIVES......................................................................................26 +4.1 TOE SECURITY OBJECTIVES...............................................................................26 +4.1.1 Functional Security Objectives for the TOE..................................................26 +4.1.2 Assurance Security Objectives for the TOE...................................................27 +4.2 SECURITY OBJECTIVES FOR THE ENVIRONMENT..................................................27 +5. IT SECURITY REQUIREMENTS.........................................................................29 +5.1 TOE SECURITY FUNCTIONAL REQUIREMENTS....................................................29 +5.1.1 SFRs for Filtering..........................................................................................29 +5.1.2 SFRs for Job Release.....................................................................................30 +5.1.3 SFRs for Shredding........................................................................................30 +5.1.4 SFRs for Management ...................................................................................31 +5.1.5 SFRs for Protection of the TSF itself .............................................................33 +5.1.6 Strength-of-function claim .............................................................................34 +5.2 TOE SECURITY ASSURANCE REQUIREMENTS.....................................................34 +5.3 SECURITY REQUIREMENTS FOR THE IT ENVIRONMENT.......................................34 +5.4 EXPLICITLY STATED REQUIREMENTS ..................................................................35 +6. TOE SUMMARY SPECIFICATION .....................................................................36 +6.1 IT SECURITY FUNCTIONS....................................................................................36 +ST-Océ DAC R9.1.6-2.4 5 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +6.1.1 Probabilistic functions and mechanisms........................................................37 +6.1.2 Strength of function claim..............................................................................37 +6.2 ASSURANCE MEASURES......................................................................................38 +7. PP CLAIMS...............................................................................................................40 +8. RATIONALE ............................................................................................................41 +8.1 SECURITY OBJECTIVES RATIONALE ....................................................................41 +8.2 SECURITY REQUIREMENTS RATIONALE ..............................................................46 +8.2.1 The SFRs meet the Security Objectives for the TOE......................................46 +8.2.2 The security requirements for the IT environment meet the security objectives +for the environment.....................................................................................................50 +8.2.3 The Assurance Requirements and Strength of Function Claim are appropriate +51 +8.2.4 All dependencies have been met.....................................................................51 +8.2.5 The requirements are internally consistent....................................................52 +8.2.6 The requirements are mutually supportive ....................................................52 +8.3 TOE SUMMARY SPECIFICATION RATIONALE......................................................53 +8.3.1 The functions meet the SFRs..........................................................................53 +8.3.2 The assurance measures meet the SARs ........................................................56 +8.3.3 The SOF-claims for functions meet the SOF-claims for the SFRs.................56 +8.3.4 The functions are mutually supportive...........................................................57 +8.4 PP CLAIMS RATIONALE ......................................................................................57 +ST-Océ DAC R9.1.6-2.4 6 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +1. Security Target Introduction +1.1 ST Identification +Name of the TOE: +The Océ Digital Access Controller (DAC) R9.1.6, +as used in the Océ VarioPrint +1055, 1065, 1075, +2062, 2075 printer/copier/scanner products +Name of the Security Target: +Security Target +The Océ Digital Access Controller (DAC) R9.1.6, +as used in the Océ VarioPrint +1055, 1065, 1075, +2062, 2075 printer/copier/scanner products +ST evaluation status: Evaluated Release +ST version number: 2.4 +ST publication date: 25th +August 2006 +ST authors: Rob Hunter, Dirk-Jan Out +This Security Target was prepared for: +Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +by TNO-ITSEF B.V. IT Security Evaluation Facility +Delftechpark 1 +2628XJ Delft +The Netherlands +. +ST-Océ DAC R9.1.6-2.4 7 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +1.2 ST Overview +The firm Océ produces a wide range of multifunctional devices for copying, printing +and scanning (MFDs) for various purposes. A number of these MFDs: the 1055/65/75 +series, the 2062 series and the 2075 series, use the same Digital Access Controller +(DAC). +The Océ Digital Access Controller (DAC) R9.1.6, is used with the Océ VarioPrint +• 1055, 1065, 1075, 2062, 2075. +These VarioPrint products are referred to collectively in this Security Target as +MFDs +A digital copier from the +Océ Varoprint 1055/65/75 +series with embedded DAC +An Océ Varioprint 2062 +digital copier with +embedded DAC. +ST-Océ DAC R9.1.6-2.4 8 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +An Océ Varioprint 2075 +digital copier with +embedded DAC. +For external DACs, an optional ‘removable hard disk’ is available. +The DAC is a PC-based MFD-controller that provides a wide range of printing and +scanning functionality to the Digital Copier (DC) of the MFD to which the DAC is +connected. The DAC provides security functionality to the DC, the DAC does not +provide copy functionality. +This Security Target describes the DAC and the specific security problem that it +addresses. The Target of Evaluation (TOE) is a collection of software components +(printer drivers, OS) that use the underlying hardware platform. The TOE is a +subset of the complete DAC. +1.3 CC Conformance +The evaluation is based upon: +• Common Criteria for Information Technology Security Evaluation, Version +2.3, Part 1: General model, August 2005. +• Common Criteria for Information Technology Security Evaluation, Version +2.3, Part 2: Security functional requirements, August 2005. +• Common Criteria for Information Technology Security Evaluation, Version +2.3, Part 3: Security assurance requirements, August 2005. +• Common Methodology for Information Technology Security Evaluation, +Version 2.3, Evaluation Methodology, August 2005. +The chosen level of assurance is: +EAL2 (Evaluation Assurance Level 2 augmented with ALC_FLR.1) +This Security Target claims the following conformance to the CC: +ST-Océ DAC R9.1.6-2.4 9 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +CC Part 2 conformant +CC Part 3 conformant +ST-Océ DAC R9.1.6-2.4 10 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +2. TOE Description +2.1 TOE Overview +This section presents an overview of the TOE. +2.1.1 TOE physical scope and boundary +The firm Océ produces a wide range of multifunctional devices for copying, +printing and scanning (MFDs). For the purpose of this evaluation, MFDs consist of +two main parts: a controller and a Digital Copier (DC). +A number of these MFDs use the same controller: the Digital Access Controller +(DAC). +The DAC is a PC-based MFD-controller that provides a wide range of printing and +scanning functionality to the Digital Copier (DC) of the MFD to which the DAC is +connected. The DAC provides security functionality to the DC. It does not provide +copy functionality. +The DAC can operate in three different security modes: ‘high’, ‘normal’ and ‘low’. +This Security Target covers the DAC operating in the security mode ‘high’ as +delivered by Océ to the customer. This mode provides a restricted set of +functionality that is configured to meet the Security Target claim. Changing the +operational mode invalidates the claim made in this Security Target. +The DAC is connected between a network and the DC. This is depicted in Figure 1. +Figure 1: Relation between DC, DAC and MFD +Digital +Copier (DC) +DAC +MFD +Network +Copy Data +Flow +Scan Data +Flow +Output Tray of MFD +Input Glass Plate of MFD +Print Data +Flow +ST-Océ DAC R9.1.6-2.4 11 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The DAC consists of: +1. A embedded uATX motherboard based PC comprising at a minimum a Via +Eden C3 800 MHz processor, 256MB internal RAM, 20GB hard drive, +2. Generic graphics card and network card supporting 10/100/1000Mbs +Ethernet UTP. +3. USB hardware support. +4. Drivers for the PC, graphics card and network card +5. The Montvista Linux operating system version 4.0 +6. Océ DAC-specific software version R9.1.6 +7. Third-party developed software: Adobe PS3-PDF Interpreter, Version +3016.103 v.3.1 build #03; Apache HTTP server with SSL support, Apache +2.0.55, OpenSSL 0.9.7e (used for remote system administration) and +OpenSSL 0.9.7d (used for job forwarding), mod_ssl 2.8.22. +Of these 7, the first four are not part of the TOE and together form the underlying +hardware platform that the TOE makes use of. The underlying hardware platform +does not provide any specific security related functionality for the TOE. The TSF is +mediated by the last three software components that are part of the TOE. This is +depicted in Figure 2. +Figure 2: Division of the DAC into TOE and non-TOE. +The underlying PC hardware platform has the following characteristics: +• The USB port is used by the service engineer for administration and for +attaching the Varioprint MFD to the DAC. It is also possible to print jobs +stored on a USB memory stick and scan jobs to a USB memory stick. No +Embedded Linux (4) +Generic PC Hardware (1,2) +Generic PC Hardware Drivers (3) +Oce +DAC-specific +Software (5) +Third-party +Software (6) +TOE +Non-TOE +Embedded Linux (4) +Generic PC Hardware (1,2) +Generic PC Hardware Drivers (3) +Oce +DAC-specific +Software (5) +Third-party +Software (6) +TOE +Non-TOE +ST-Océ DAC R9.1.6-2.4 12 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +other devices are attached to the USB ports that are not related to the +normal operation of the DAC. +• All other interfaces, such as the keyboard or other ports, have been +disabled. +The physical interfaces through which the TOE communicates are: +• A USB connector through which a service engineer can install and +administer the TOE +• A network card through which print and scan jobs can pass and a remote +system administrator can administer the TOE +• A USB connector that allows for data flows between the Digital Copier +(DC) and the TOE via the DAC cable. +• A USB connector through which print jobs can be sent the DAC for +printing and for receiving scan jobs from the DAC. +The user guidance for the TOE consists of : +• Océ VarioPrint 1055-75 Job manual +• Océ VarioPrint 2062 Job manual +• Océ VarioPrint 2075 Job manual +• Océ VarioPrint 1055-75 Configuration manual +• Océ VarioPrint 2062 Configuration manual +• Océ VarioPrint 2075 Configuration manual +These manuals are delivered in paper form with the DAC and can also be +downloaded from the support section from Océ corporate website (www.oce.com) +In addition to the manuals listed above, the usage of the DAC in the configuration +described in this Security Target is defined in: +Common Criteria Certified Configuration of the DAC R9.1.6 +This document is not delivered to the customer with the TOE and must be +downloaded from the support section from Océ corporate website (www.oce.com). +The administrator guidance for the TOE consists of: +The DAC administration guidance for the customer system administrator takes the +form of HTML pages. These are part of the Océ DAC-specific software, Version +R9.1.6: +• Océ System Configuration, On-line help. +The DAC administration guidance for the Océ service engineer takes the form of a +Lotus Notes application that is installed on the service engineer’s laptop. The +guidance contains an appendix that is identified as: +• Administrating version R9.1.6 of the Océ DAC, +and is a frozen version of the Océ service engineer Lotus Notes application made at +the time of product release. +ST-Océ DAC R9.1.6-2.4 13 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +2.1.2 TOE logical scope and boundary +The TOE protects two assets: itself and the print jobs it receives. +1. The TOE protects it’s own integrity against threats from the LAN, service +engineer laptop, USB memory sticks and the Digital Copier to which it is +attached through use of a firewall and integrity checks on system files upon +system reboot. +2. The TOE protects the confidentiality of secure print jobs once they have +been received by the DAC by storing them until the user authenticates +himself to the DAC via a user interface on the DC. The DAC shreds the +data after printing is completed. +The TOE does not form a threat to its environment for the following reasons: +• The TOE does not form a threat to the integrity of the LAN to which the +DAC is attached. The TOE configuration has been tested and is configured +so that the integrity of the configuration is checked and restored upon +system reset. +• Additionally, all data that enters the TOE via the Digital Copier must pass +through an internal firewall. There is no direct line from the Digital Copier +to the network to which the DAC is attached. +In order to do so, it offers the following functionality1: +1 The DC can also perform copying, but this is done without interaction with the +TOE. Copy job related data does not enter the TOE boundary. This is therefore +out-of-scope of this ST. +ST-Océ DAC R9.1.6-2.4 14 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The TOE controls printing +The TOE accepts Postscript, PDF, PCL5e, PCL6 print jobs from remote users on +the network (lpr over TCP/IP or raw print data via a raw IP socket). The TOE also +accepts jobs printed by a remote user (commonly know as ‘print to file’) that have +been copied to a USB stick that is then inserted into the DAC by local users +through a USB port located in the DC Local User Interface console shown below. +Figure 3: The DC LUI console showing the USB connector used for printing and scanning +and the optional fingerprint sensor that used for identifying mailbox owners +The DAC processes these print jobs and provides these as images to the attached +DC. The TOE can print these jobs in three different ways. The remote users can +select the way in which each of his jobs is printed from a printer settings dialog box +on the screen of their PC. +Automatic printing +The TOE receives a print job from a remote end-user or from an inserted USB +memory stick, and stores it in a queue. Once this job is the first one in the queue, +the TOE processes this print job into images, and sends these images to the +attached DC for printing. +Mailbox printing +ST-Océ DAC R9.1.6-2.4 15 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The TOE receives a print job from a remote end-user or from an inserted USB +memory stick, and stores it internally. The end-user then has to go physically to +the DC (become a local end-user) and identify himself at the Local User Interface +of the DC (LUI) either by selecting his name from a list displayed on the LUI +screen or by using the optional fingerprint sensor. Only after this, will the TOE +process the job. The resulting images are sent to the attached DC for printing. +The fingerprint sensor is an optional feature of the MFD that is not always present. +The sensor hardware is not part of the TOE but is part of the DC +(see figure 3) and connects to the TOE via a TOE-DC USB cable. The software +support for the use of the sensor is always present in the TOE. The user +identification credentials can either be stored in a remote LDAP server or in an +internal database within the DAC. The internal database within the DAC is part of +the TOE but is not security enforcing. +Secure printing +This is similar to mailbox printing, with two differences: +• When submitting the print job, the remote end-user adds a job-specific +PINcode that has a length of 4 to 6 digits to the job. +• The PINcode is stored in the DAC. +• After identifying himself at the LUI of the DC as described in mailbox +printing, the local end-user also has to provide the job-specific PINcode in +order to authenticate himself. The DC interrogates the DAC as to the +validity of the PIN. If correct, the print job data is released by the DAC and +is sent to the DC. A replay attack with an intercepted PIN is countered by +shredding the print job data immediately after the print job is completed. +The end-users and interfaces they interact with are depicted in Figure 4. +Figure 4: End-users and interfaces for printing +The TOE is configured to destroy the data relating to secure print jobs (print jobs +submitted to the mailbox with an associated PIN), non-secure print jobs, scan jobs +and temporary files. +Digital +Copier (DC) +DAC +MFD +Network +Remote end-user +Local end-user +LUI +LUI +Network +Network +ST-Océ DAC R9.1.6-2.4 16 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +This is achieved by writing over the job related data with other data, thereby +making it difficulty to retrieve the original data. +The TOE administrators can select the number of write iterations and at what +moment the shredding takes place. The first iteration takes place after the data is +released. The remaining iterations can take place immediately (synchronous) or +with low priority in the background (asynchronous). +Additionally, the TOE is also configured to shred all data at the end of each +working day by specifying a specific time interval no greater than once every 24 +hours. +ST-Océ DAC R9.1.6-2.4 17 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The TOE controls print jobs that are re-routed to DACs elsewhere on the +network +Local end-users can re-route print jobs that have been submitted to their mail box +(see mail box printing above) to other DACs that are attached on the network. This +functionality does not support the re-routing of secure print jobs (see secure +printing above). +This functionality is provided for a situation whereby the remote end-user, having +submitted a print job to a DAC, walks to another MFD located elsewhere in the +operational environment and thereby becomes a local end-user at a DAC where the +print job is not located. They can then re-route their mail box print job from the +original DAC to another MFD and print their document there. The original DAC +maintains a list of ‘friendly DACs’ (officially known as smart mailbox members) +that can request mailbox print jobs to be re-routed. The re-routing of secure print +jobs is not permitted. +The local end-user must identify himself by selecting their name or my entering a +value which will be used to retrieve their identification details from a LDAP server +located elsewhere on the network. +The end-users and interfaces they interact with are depicted in Figure 5 +Figure 5: End-users and interfaces for printing +Network +Remote end-user +Digital +Copier (DC) +DAC +MFD +LUI +Network +Digital +Copier (DC) +DAC +MFD +LUI +LUI +Network +Network +Digital +Copier (DC) +DAC +MFD +LUI +LUI +Network +Network +Local end-user +Local end-user +ST-Océ DAC R9.1.6-2.4 18 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The TOE controls scan jobs +Local end-users can scan documents on the DC, and the resulting images will then +be submitted to the TOE. The TOE can process the images to a variety of file +formats and then transfer the resulting files by ftp to an ftp-server on the network +or by SMTP to an e-mail server on the network or to a USB memory stick if +present on the DC LUI console. +The end-users and interfaces they interact with are depicted in Figure 6. +Figure 6: End-users and interfaces for scanning +The TOE can be managed +As indicated in the previous sections, the MFD (of which the TOE is a part) +supports local and remote end-users. The MFD also supports various +administrators, which are described briefly here: +Key Operator: These are typically administrators or secretaries from the +organization owning/renting the TOE. They can interact with the DC through the +LUI, and through this interaction have access to a limited amount of non-security +related settings of the TOE. +Remote System administrator (HTTPS): These are remote administrators, typically +a network administrator from the organization owning/renting the TOE. They can +change a less limited set of settings of the TOE through a HTTP over SSL +connection (HTTPS). The remote administrator can identify the TOE via a +Digital +Copier (DC) +DAC +MFD +Network +Local end-user +LUI +Network +FTP-server +E-Mail server +Digital +Copier (DC) +DAC +MFD +Network +Local end-user +LUI +LUI +Network +Network +FTP-server +E-Mail server +ST-Océ DAC R9.1.6-2.4 19 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +certificate. Help files for the administrator are also delivered via the HTTPS +connection. Web pages that are delivered via the HTTPS connection are ‘non- +cacheable’. +Remote System administrator (SNMP): These are remote administrators, typically a +network administrator from the organization owning/renting the TOE. They can +read and write a limited set of non-security related settings of the TOE through a +SNMP connection. +Service engineer: These are local administrators, and are typically employed by +Océ. They have access through a USB connection to a wide range of settings on the +TOE and the DC. The TOE connection is PIN code protected. +The various administrators and the interfaces through which they interact with the +TOE are depicted in Figure 7. +Figure 7: MFD Administrators and interfaces +Digital +Copier (DC) +DAC +MFD +Remote system +administrator +(HTTPS and SNMP) +Key-operator +LUI +LUI +USB +USB +Network +Network +Network +Service +Engineer +ST-Océ DAC R9.1.6-2.4 20 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The TOE has minimized all other functionality +The TOE supports TCP/IP: all other network protocols are disabled. The TOE +manufacturer has closed all network ports except those that are absolutely +necessary to its functioning. This includes the physical connectors on the TOE. The +TOE has further restricted the functionality behind each open network port to that +which is absolutely necessary to its functioning. This is done to maximize the +integrity of the TOE itself and minimize the risk of the TOE being infected or +hacked and subsequently being used as a stepping-stone to damage the network. +The availability of security related functionality +As depicted in Figure 7, The Key Operator is not able to influence the security of +the TOE as they have no access to security settings via the DC. The Service +Engineer cannot influence the security of the TOE via the interface to the DC. +Because the Key Operator and Local End-User cannot access security related +settings on the DAC, they cannot affect the TOE. For the sake of clarity, Figure 8 +shows the interfaces to the TOE and the subjects that can access and manage TOE +security settings. +Figure 8: TOE Administrators and interfaces +DAC +Remote system +administrator +USB +USB +Network +Network +Network +Service +Engineer +ST-Océ DAC R9.1.6-2.4 21 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +3. TOE Security Environment +The TOE is intended to provide scan and print functionality to users requiring a +low to moderate level of security assurance. Additional environmental and +organisational requirements support the security functionality provided by the +TOE. +3.1 Definition of subjects, objects and operations +To facilitate definition of threats, OSPs, assumptions, security objectives and +security requirements, we define the subjects, objects and operations to be used in +the ST first. +3.1.1 Non-human subjects +The systems (equipment) that will be interacting with the TOE (in alphabetical +order): +S.DIGITAL_COPIER A device that physically renders a print job or scans in a +job and is attached to the TOE via a cable. +S.NETWORK_DEVICE An unspecified network device that is logically +connected to the TOE and is located in the same +operating environment (office building). +3.1.2 Human subjects +The users (or subject acting on behalf of that user) that will be interacting with the +TOE are: +S.REMOTE_USER A person located within the operational environment of +the TOE who is aware of how the TOE should be used. +They are not malicious towards the TOE but are +capable of making mistakes when operating it. +S.REMOTE_USER typically sends print jobs from their +desktop PC to the TOE +S.LOCAL_USER A person located within the operational environment of +the TOE who is aware of how the TOE should be used. +They are not malicious towards the TOE but are +capable of making mistakes when operating it. They +may be interested in the content of other users’ print +jobs. S.LOCAL_USER typically interacts indirectly +with the TOE via S.DIGITAL_COPIER +S.REMOTE_SYSADMIN A person who can change some TOE settings using a +Océ supplied interface. They are trusted by the +ST-Océ DAC R9.1.6-2.4 22 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +customer and are adequately trained. They are capable +of making mistakes. They connect to the TOE via the +network. +S.SERVICE_ENGINEER A person with elevated privileges above those of +S.LOCAL_USER and S.REMOTE_SYSADMIN. This +person is an Océ representative and accesses the TOE +locally through an USB interface. They are not +malicious towards the TOE but are capable of making +mistakes when operating it. +S.THIEF S.THIEF (cleaning staff, burglar, visitor, in rare cases a +user) will have no moral issues in stealing the TOE or +parts of it. Once S.THIEF has stolen the TOE or parts +of it he may attempt to retrieve earlier printer and +scanner jobs from the TOE. S.THIEF is not able to steal +Copy jobs2 as they never enter the TOE. S.THIEF is +opportunistic and is not a recurring visitor to the +environment in which the TOE operates. +Note that the key operator is not included as a subject that interacts with the TOE +as he is not able to make changes to the security settings of the TOE and is +therefore equal to S.LOCAL_USER with respect to security. +3.1.3 Objects +The (data) objects for the TOE that the TOE will operate upon are: +D.SECURE_PRINT_JOB A secure print job submitted by S.REMOTE_USER to +the TOE over the network or by S.LOCAL_USER via a +USB memory stick that has been inserted into the MFD +LUI console.. D.SECURE_PRINT_JOB has the +Security Attribute Username/PIN associated with them. +D.PRINT_JOB A non D.SECURE_PRINT_JOB type print job +submitted either by S.REMOTE_USER to the TOE +over the network, by S.LOCAL_USER via a USB +memory stick that has been inserted into the MFD LUI +console or by another MFD located elsewhere on the +network. +D.SCAN_JOB Data that is scanned in via the DC attached to the DAC. +Data is sent from the TOE to a FTP or e-mail server +located elsewhere on the network or to a USB memory +stick that has been inserted into the MFD LUI console. +2 See Figure 1: Relation between DC, DAC and MFD. +ST-Océ DAC R9.1.6-2.4 23 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +D.INBOUND_TRAFFIC TCP/IP network packets received by the TOE. +D.INBOUND_TRAFFIC has the Security Attributes +Port and Protocol associated with it. +D.OUTBOUND_TRAFFIC TCP/IP network packets sent by the TOE. +D.OUTBOUND_TRAFFIC has the Security Attributes +Port and Protocol associated with it. +3.1.4 Operations +The operations that are performed by the TOE are: +R.RELEASE_JOB The TOE processes and releases a +D.SECURE_PRINT_JOB to the attached DC. +R.PRINT_JOB The TOE processes and releases a D.PRINT_JOB to the +attached DC. +R.FORWARD_JOB The TOE processes and releases a D.PRINT_JOB to the +attached network. +R.SCAN_JOB The TOE processes and releases a D.SCAN_JOB to the +attached network +R.SHRED_JOB The TOE shreds redundant D.SECURE_PRINT_JOB, +D.PRINT_JOB, D.SCAN_JOB data objects from the +TOE’s hard disk. +R.ENTER_TOE The TOE allows D.INBOUND_TRAFFIC to enter its +boundary. +R.EXIT_TOE The TOE allows D.OUTBOUND_TRAFFIC to leave +its boundary. +3.2 Assumptions +A.DIGITAL_COPIER It is assumed that the TOE has a S.DIGITAL_COPIER +device attached to it. S.DIGITAL_COPIER is an Océ +VarioPrint 1055-75, 2062 or 2075 Digital Copier. When +D.SECURE_PRINT_JOB is sent to +S.DIGITAL_COPIER, R.REMOTE_USER will specify +a PIN of at least 4 and a maximum of 6 digits and, +whether the job is printed or not, will delete the job on +the same workday. Employees are aware of this +requirement. +ST-Océ DAC R9.1.6-2.4 24 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +A.ENVIRONMENT The TOE assumes that its operational environment is a +regular office environment. Physical access to the +operational environment is restricted. No parts of the +TOE will leave the operational environment during +normal operational ownership unless the product is +being returned to the manufacturer as part of flaw +remediation or end of ownership. The environment +contains non-threatening office personnel +(S.LOCAL_USER, S.REMOTE_USER, +S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER). S.THIEF is only rarely +present in this environment and not on a recurring basis. +A.SECURITY_POLICY It is assumed that the customer will have a Security +Policy governing the use of IT products by employees +in the customer organisation. The TOE assumes that the +network to which it is attached is protected by security +measures that are intended to prevent mal-ware, viruses +and network traffic, not related to the working of the +operational environment, entering the network to which +it is attached. Although the Virus database files and +various patches are kept up to date, the policy +recognises that new threats emerge over time and that +occasionally they may enter the environment from +outside and provides measures to help limit the damage. +The Policy will define how IT products are protected +against threats originating from outside the customer +organisation. The organisation’s employees are aware +of, are trained in and operate according to the terms and +conditions of the policy. The policy also covers +physical security and the need for employees to work in +a security aware manner including the usage of the +TOE. The Security Policy describes and requires a low +to medium level of assurance (EAL2) for the TOE. +A.SHREDDING The TOE assumes that the customer will not disable the +shredding operation for D.PRINT_JOB and +D.SCAN_JOB data objects3. +A.SLA It is assumed that any security flaws discovered in the +TOE will be repaired by Océ (possibly as part of an +agreed service level agreement). +3 The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible +to disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the +TOE claim is no longer valid. +ST-Océ DAC R9.1.6-2.4 25 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +3.3 Threats +T.RESIDUAL_DATA S.THIEF steals the TOE or parts thereof and retrieves +stored or deleted D.SECURE_PRINT_JOB. The +motivation for S.THIEF to attack the TOE is low +because it requires sophisticated data recovery +equipment that can recover data even after the +shredding mechanism has executed to recover data that +has little value to the attacker. +T.NOSY_USER S.LOCAL_USER accesses a D.SECURE_PRINT_JOB +that does not belong to him/her that is stored in the +DAC. The motivation to carry out this attack is low. +T.MALWARE A S.NETWORK_DEVICE is used by malware that +may have entered the TOE’s operational environment to +launch an attack on the integrity of the TOE. +Alternatively S.DIGITAL_COPIER is used by malware +to launch an attack on the integrity of +S.NETWORK_DEVICE. The motivation to carry out +this attack is low. +3.4 Organisational Security Policies +P.JOB_DELETE When D.SECURE_PRINT_JOB, D.PRINTJOB and +D.SCANJOB objects are no longer needed by the TOE, +they will be deleted by the TOE at the earliest available +opportunity in a manner that meets a recognised +standard. +P.TOE_ADMINISTRATION The modification of TOE security settings shall be +restricted to S.SERVICE_ENGINEER and +S.REMOTE_SYSADMIN. +ST-Océ DAC R9.1.6-2.4 26 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +4. Security Objectives +4.1 TOE Security Objectives +This section consists of two groups of objectives: +• Functional Security Objectives for the TOE, that deal with what the TOE must +do; +• Assurance Security Objectives for the TOE, that deal with how much +assurance one should have in that the TOE does what it is expected to. +4.1.1 Functional Security Objectives for the TOE +O.F.INBOUND_FILTER The TOE will only support TCP/IP as a network +protocol. D.INBOUND_TRAFFIC shall only enter the +TOE (R.ENTER_TOE) if its Port is specified as being +open in Appendix D. +O.F.OUTBOUND_FILTER The TOE will only support TCP/IP as a network +protocol. D.OUTBOUND_TRAFFIC shall only exit the +TOE (R.EXIT_TOE) if its Port is specified as being +open in Appendix D. +O.F.JOB_RELEASE The TOE shall only perform R.RELEASE_JOB once +S.LOCAL_USER has successfully identified and +authenticated himself as owner of +D.SECURE_PRINT_JOB. +O.F.JOB_SHRED The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is +no longer required or during the start-up procedure if +residual D.SECURE_PRINT_JOB, D.PRINT_JOB and +D.SCAN_JOB is found on the TOE’s hard disk. The +first write cycle will either immediately after the job has +completed or once the TOE enters an idle state. The +data shall be deleted according to a recognised standard +so that it cannot be reconstituted. +O.F.AUTHENTICATE The TOE ensures that S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER must authenticate themselves +to the TOE before allowing them to modify the TOE +security settings. +ST-Océ DAC R9.1.6-2.4 27 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +O.F.SELFTEST The TOE will perform check of the integrity of the TSF +when it is re-booted. +4.1.2 Assurance Security Objectives for the TOE +O.A.SLA The TOE shall be evaluated to ALC_FLR.1 +4.2 Security Objectives for the environment +O.E.ENVIRONMENT The environment into which the TOE will be introduced +is protected by physical measures that limit access +S.LOCAL_USER, S.REMOTE_USER, +S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER. The physical measures are +adequate to prevent all other persons but a determined +S.THIEF who deliberately wants to steal part of or all +of the TOE by methodically planning an attack on the +TOE over a period of time. +O.E.NETWORK_POLICYThe network to which the TOE is attached shall be +adequately protected so that the TOE is not visible +outside the network. In addition, measures shall be +implemented to only allow connections to the TOE +from devices situated on the same network. No inbound +connections from external networks are allowed. The +network scans data for mal-ware (viruses and worms). +This type of data may originate from either inside or +outside the network to which the TOE is attached and +includes the TOE itself. +O.E.DEPLOYMENT The network (LAN) to which the TOE is attached is +well managed with established procedures for +introducing and attaching new devices to the network. +O.E.DIGITAL_COPIER The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 1055-75, 2062 or 2075 +Digital Copier that provides a Local User Interface and +Glass Plate through which S.LOCAL_USER can +interact easily with the TOE (selecting username and +entering PINcode). When sending a +D.SECURE_PRINT_JOB to the Digital Copier, +S.REMOTE_USER shall specify a PIN that consists of +a minimum of 4 and a maximum of 6 digits and, +whether or not it is printed, will ensure the print job is +deleted from the TOE during the same workday that the +job is sent. The DC provides a glass plate and LUI with +ST-Océ DAC R9.1.6-2.4 28 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +which S.LOCAL_USER can perform scan jobs. The ST +claim is not valid when the TOE is used with any other +type of Océ Digital Copier. The TOE will not work +with any other device (including Digital Copiers from +any other manufacturers). +O.E.SHREDDING The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and +D.SCAN_JOB data objects4 +4 The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible +to disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the +TOE claim in no longer valid. +ST-Océ DAC R9.1.6-2.4 29 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +5. IT Security Requirements +5.1 TOE Security Functional Requirements +5.1.1 SFRs for Filtering +FDP_ACC.1 Subset access control +FDP_ACC1.1 The TSF shall enforce the NETWORK_POLICY on: +• D.INBOUND_TRAFFIC +• D.OUTBOUND_TRAFFIC +Dependencies: FDP_ACF.1 (included) +FDP_ACF.1 Security attribute based access control +FDP_ACF1.1 The TSF shall enforce the NETWORK_POLICY to +objects based on the following: +• Port; +• Protocol. +FDP_ACF.1.2 The TSF shall enforce the following rules to determine if an +operation among controlled subjects and controlled objects is allowed: +• The TOE shall perform R.ENTER_TOE on +D.INBOUND_TRAFFIC only if +Port(D.INBOUND_TRAFFIC) = DAC, ICMP, DNS, DHCP, +LDAP, LPR, HTTP, HTTPS, FTP, SNMP, SMTP, SSH, +“RAW_SOCKET”5 and Protocol = TCP/IP +• The TOE shall perform R.EXIT_TOE on +D.OUTBOUND_TRAFFIC only if +Port(D.OUTBOUND_TRAFFIC) = DAC, ICMP, DNS, DHCP, +LDAP, LPR, HTTP, HTTPS, FTP, SNMP, SMTP, SSH, +“RAW_SOCKET” and Protocol = TCP/IP +FDP_ACF.1.3 The TSF shall explicitly authorise access of subjects to +objects based on the following additional rules: +• none +FDP_ACF.1.4 The TSF shall explicitly deny access of subjects to objects +based on the following additional rules: +• none +5 It is possible to submit raw print job data via a raw socket to the TOE. The words +‘raw socket’ are used to refer to the port in the firewall through which the data can +flow. +ST-Océ DAC R9.1.6-2.4 30 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Dependencies: FDP_ACC.1 (included) +FMT_MSA.3 (included) +5.1.2 SFRs for Job Release +FIA_UID.1 Timing of identification (Secure Printing) +FIA_UID.1.1 The TSF shall allow R.PRINT_JOB, R.FORWARD_JOB +and R.SCAN_JOB on behalf of the S.LOCAL_USER to be performed +before S.LOCAL_USER is identified. +FIA_UID.1.2 The TSF shall require S.LOCAL_USER to be successfully +identified before allowing R.RELEASE_JOB on behalf of +S.LOCAL_USER. +Dependencies: No dependencies. +FIA_UAU.1 Timing of authentication +FIA_UAU.1.1 The TSF shall allow R.PRINT_JOB, R.FORWARD_JOB +and R.SCAN_JOB on behalf of the S.LOCAL_USER to be performed +before S.LOCAL_USER is authenticated. +FIA_UAU.1.2 The TSF shall require S.LOCAL_USER to be successfully +authenticated before allowing R.RELEASE_JOB on behalf of +S.LOCAL_USER. +Dependencies: FIA_UID.1 (included) +5.1.3 SFRs for Shredding +FDP_RIP.1 Subset residual; information protection +FDP_RIP.1.16 The TSF shall ensure that any previous information content +of a resource is made unavailable upon the +deallocation of the resource from the following objects: +D.SECURE_PRINT_JOB, D.PRINT_JOB, D.SCAN_JOB +6 This is a refinement to show when the de-allocation is to take place. When you +delete a file, the OS modifies the relevant entry from the file allocation table. The +data remains on the hard disk and can be retrieved with suitable tools. This is why +the TOE shreds the data. What is happening is that: +• When the job manager discards data, it moves the data reference in the file +allocation table to a location that is dedicated to the E-shred subsystem. +• The E-shred subsystem then erases the data (makes the data unavailable) by +overwriting the data several times. +• The E-shred service then removes the reference to the erased data from the +file allocation table so that the erased disk resources can be re-used. +ST-Océ DAC R9.1.6-2.4 31 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +• on deletion of R.RELEASE_JOB, R.PRINT_JOB, +R.FORWARD_JOB and R.SCAN_JOB by S.LOCAL_USER, +S.REMOTE_SYSADMIN or S.SERVICE_ENGINEER +• on start-up or reboot of the TOE.7 +Dependencies: No dependencies. +5.1.4 SFRs for Management +FIA_UID.2 User identification before any action +FIA_UID.2.1 The TSF shall require S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER to identify themselves before allowing any +other TSF-mediated actions on the behalf of that user. +Dependencies: No dependencies. +FIA_UAU.2 User authentication before any action +FIA_UAU.2.1 The TSF shall require S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER to be successfully authenticated before +allowing any other TSF-mediated actions on the behalf of that user. +Dependencies: FIA_UID.1 (included) +FMT_MOF.1 Management of security functions behaviour +(S.REMOTE_SYSADMIN) +FMT_MOF.1.1 The TSF shall restrict the ability to modify the behaviour +of the functions described in appendix D for S.REMOTE_SYSADMIN +to S.REMOTE_SYSADMIN. +Dependencies: FMT_SMF.1 (included) +FMT_SMR.1 (included) +FMT_MOF.1 Management of security functions behaviour +(S.SERVICE_ENGINEER) +FMT_MOF.1.1 The TSF shall restrict the ability to modify the behaviour +of the functions described in appendix D for S.SERVICE_ENGINEER +to S.SERVICE_ENGINEER.. +Dependencies: FMT_SMF.1 (included) +FMT_SMR.1 (included) +7 The DAC can experience errors and sometimes require restarting to handle these +errors (or users restart the photocopier anyway in an attempt to handle these +errors). It is therefore important that the photocopier also deletes data whenever it +is restarted. +ST-Océ DAC R9.1.6-2.4 32 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +FMT_MSA.1 Management of security attributes +FMT_MSA.1.1 The TSF shall enforce the NETWORK_POLICY to +restrict the ability to change the default 8 security attributes Port and +Protocol to nobody.9 +Dependencies: FDP_ACC.1 (included) +FMT_SMF.1 (included) +FMT_SMR.1 (included) +FMT_MSA.3 Static Attribute initialisation +FMT_MSA.3.1 The TSF shall enforce the NETWORK_POLICY to +provide restrictive default values for security attributes that are used to +enforce the SFP. +FMT_MSA.3.2 The TSF shall allow nobody10 to specify alternative initial +values to override the default values when an object or information is +created. +Dependencies: FMT_MSA.1 (included) +FMT_SMR.1 (included) +FMT_SMF.1 Specification of Management Functions +FMT_SMF.1.1 The TSF shall be capable of performing the following +security management functions as described in appendix D: +Functions related to R.SHRED_JOB that are available to +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER +• Set the number of shred runs +• Set the shredding moment +• Shred print jobs: yes/no (D.PRINT_JOB)11 +• Shred scan jobs: yes/no (D.SCAN_JOB)12 +Dependencies: No dependencies. +FMT_SMR.1 Security roles +8 For grammatical and clarity reasons, the underscore between change and default +was removed and the word ‘the’ before security attributes was moved to between +’change’ and ‘default’. +9 The TOE does not allow any users to change any security attributes in the evaluated +configuration. +10 The word ‘the’ before ‘nobody’ was removed for grammatical reasons. +11 Disabling these functions will invalidate the Security Target claim. The functions +are available but there is an Organisational Security Policy that defines that they +should be enabled by default. +12 See footnote 11 +ST-Océ DAC R9.1.6-2.4 33 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +FMT_SMR.1.1 The TSF shall maintain the roles +S.REMOTE_SYSADMIN, S.SERVICE_ENGINEER and +S.LOCAL_USER. +FMT_SMR1.2 The TSF shall be able to associate users with roles. +Dependencies: FIA_UID.1 (included) +5.1.5 SFRs for Protection of the TSF itself +FPT_SEP.1 TSF domain separation +FPT_SEP1.1 The TSF shall maintain a security domain for its own +execution that protects it from interference and tampering by untrusted +subjects. +FPT_SEP.1.2 The TSF shall enforce separation between the security +domains of subjects in the TSC. +Dependencies: No dependencies. +FPT_RVM.1 Non-bypassability of the TSP +FPT_RVM.1.1 The TSF shall ensure that TSP enforcement functions are +invoked and succeed before each function within the TSC is allowed to +proceed. +Dependencies: No dependencies +FPT_TST.1 TSF testing +FPT_TST.1.1 The TSF shall run a suite of self tests during initial start-up +to demonstrate the correct operation of the TSF. +FPT_TST.1.2 The TSF shall provide authorised users with the capability to +verify the integrity of the TSF data. +FPT_TST.1.3 The TSF shall provide authorised users with the capability to +verify the integrity of stored TSF executable code. +Dependencies: FPT_AMT.1 (not included)13 +13 The dependency FPT_AMT.1 Abstract machine is not included, because the +underlying IT platform does not contribute to the TOE requirements (See part 1, +paragraph 147). The underlying PC platform is a standard PC platform that works. +Testing of the platform does not provide assurance that will support the claims at +the level of EAL2, as functional testing of the DAC in its operational environment +is performed (it does what it should do). +ST-Océ DAC R9.1.6-2.4 34 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +5.1.6 Strength-of-function claim +The Strength of function claim for all the probabilistic functions and mechanisms +provided by the TOE is SOF-basic. +5.2 TOE Security Assurance Requirements +The TOE security assurance requirements are conformant to the CC Evaluation +Assurance Level EAL2 +ALC_FLR.1. In detail the following Security Assurance +Requirements are chosen for the TOE: +Components for Configuration management (Class ACM) +ACM_CAP.2 Configuration Items +Components for Delivery and operation (Class ADO) +ADO_DEL.1 Delivery procedures +ADO_IGS.1 Installation, generation, and start-up procedures +Components for Development (Class ADV) +ADV_FSP.1 Informal functional specification +ADV_HLD.1 Descriptive high-level design +ADV_RCR.1 Informal correspondence demonstration +Components for Guidance documents (Class AGD) +AGD_ADM.1 Administrator guidance +AGD_USR.1 User guidance +Components for Life cycle support (Class ALC) +ALC_FLR.1 Basic flaw remediation +Components for Tests (Class ATE) +ATE_COV.1 Evidence of coverage +ATE_FUN.1 Functional testing +ATE_IND.2 Independent testing – sample +Components for Vulnerability assessment (Class AVA) +AVA_SOF.1 Strength of TOE security function evaluation +AVA_VLA.1 Developer vulnerability analysis +5.3 Security Requirements for the IT Environment +None14. +14 The ST defines security objectives for the IT environment in which the TOE will +operate. In accordance with the Common Criteria Standard, these objectives are +not mapped to Security Requirements for the IT Environment. +ST-Océ DAC R9.1.6-2.4 35 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +5.4 Explicitly stated requirements +None. +ST-Océ DAC R9.1.6-2.4 36 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +6. TOE Summary Specification +6.1 IT Security Functions +SF.FILTERING +The TOE uses a built-in firewall to block ports and ICMP commands that are not +needed for the operation of the TOE. In addition all network protocols that are not +supported in the security mode ‘high’ are disabled. +By default no traffic is permitted to enter or leave to TOE except for the TCP/IP +packets and the restricted ICMP command set via the ports defined in the rule +table. +SF.JOB_RELEASE +The TOE verifies the identity and associated PIN code that was send with the print +job when submitted by S.REMOTE_USER with Username/PIN received from +S.LOCAL_USER via the DC interface. If verification is successful, the secure print +job is released for printing. +SF.SHREDDING +Once a print or scan job has been deleted, the data is overwritten. It is possible to +perform multiple write cycles, with various patterns being applied. At least three +write cycles will always take place. S.REMOTE_SYSADMIN or +S.SERVICE_ENGINEER can choose the moment when the shredding cycle +commences. The first write cycle can occur immediately after the print job has +completed or to improve job throughput performance, once the TOE enters an idle +state. The remaining cycles may also take place immediately after the print job has +been completed or also at the time when the TOE enters an idle state. The +shredding mechanism supports US DOD 5220-22m and Gutmann algorithms15. +SF.MANAGEMENT +The TOE can be managed in relation to SF.JOB_RELEASE and SF.SHREDDING. +In order to gain access, the S.REMOTE_SYSADMIN or S.SERVICE_ENGINEER +must authenticate themselves to the TOE. S.SERVICE_ENGINEER does this by +entering a password. S.REMOTE_SYSADMIN authenticates himself by entering a +password. The TOE is delivered by Océ with pre-configured in the security mode +‘high’. This provides the most restrictive set of operational settings. +SF.SELFTEST +During start-up the TOE will check the hard disk files system and the integrity of +the software the forms the TOE. If defects in the hard disk files system are +15 See Appendix B – References for more information relating to these algorithms +ST-Océ DAC R9.1.6-2.4 37 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +detected, the corrupted file system will be automatically repaired. The software +includes all executables (operating system executables, Océ authored DAC +executables, Third party software executables and DAC system settings). If defects +are detected, the corrupted data will be replaced by correct shadow data. +6.1.1 Probabilistic functions and mechanisms +The TOE contains probabilistic functions and mechanisms in the form of +passwords and PIN numbers that are used for the authentication of +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER respectively. There is +also a probabilistic function and mechanisms that protects +D.SECURE_PRINT_JOB and is used for the authentication of S.LOCAL_USER. +Subject Function Mechanism +S.REMOTE_SYSADMIN SF.MANAGEMENT, +SF.SHREDDING +For HTTPS based +management. an alpha- +numeric password (ASCII +characters 32-126) ranging +in length between 5 and 50 +digits is used. After the first +failed attempt, a delay +mechanism is invoked. +There are no security +management functions or +access to the assets that the +TOE protects that are +accessible via the SNMP +connection. +S.SERVICE_ENGINEER SF.MANAGEMENT, +SF.SHREDDING +An alpha-numeric password +(ASCII characters 32-126) +ranging in length between 6 +and 50 digits is used. The +default password is changed +during the customer site +installation process. +S.LOCAL_USER SF.JOB_RELEASE A numeric pin code varying +in length from 4 to 6 digits. +6.1.2 Strength of function claim +ST-Océ DAC R9.1.6-2.4 38 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The SFRs FIA_UID.1, FIA_UAU.1, FIA_UID.2 and FIA_UAU.2 require the TOE +to provide security functions that provide identification/authentication functionality +that meets a SOF claim of ‘SOF basic’. +A strength of function claim of ‘SOF basic’ is made for the security functions +SF.JOB_RELEASE and SF.MANAGEMENT. These are the security functions +that implement FIA_UID.1, FIA_UAU.1, FIA_UID.2 and FIA_UAU.2. +6.2 Assurance Measures +Appropriate assurance measures are employed to satisfy the security assurance +requirements. The following list gives a mapping between the assurance +requirements and the documents containing the information needed for the +fulfilment of the respective requirement. +Configuration Management (ACM) assurance measures +The document containing the description of the configuration management system +as required by ACM is: +• Océ-Technologies B.V., Configuration Management for the Oce DAC +R9.1.6.doc +Delivery and Operation (ADO) assurance measures +The document containing the description of all steps necessary for secure +installation, generation and start-up of the TOE is: +• Océ Engineering Venlo, Delivery and developer security for DAC +R9.1.6.doc +Development (ADV) assurance measures +The developer documentation for ADV can be found in: +• Océ-Technologies B.V., Functional Specification for DAC R9.160.doc +• Océ-Technologies B.V., High Level Design for DAC R9.1.6.doc +Guidance (AGD) assurance measures +The document containing the guidance for Oce service engineers is maintained on +the service engineers laptop with the reference: +• Océ-Technologies B.V., Océ Product Installation Guide, +and is not a publicly available document. +The guidance for the customer administrators is in: +• Océ-Technologies B.V., Océ System Configuration On-line help, +ST-Océ DAC R9.1.6-2.4 39 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +This guidance has been supplemented as appropriate for the claim in this Security +Target with the Common Criteria Certified Configuration of the DAC R9.1.6. This +document is not delivered to the customer with the TOE and must be downloaded +from the support section from Océ corporate website (www.oce.com). +Life Cycle (ALC) assurance measures +The physical, procedural, personnel and other security measures applied by the +developer can be found in: +• Océ-Technologies B.V., Flaw remidiation for DAC R9.1.6.doc +Test (ATE) assurance measures +The developer test documentation can be found in: +• Océ-Technologies B.V., Test Documentation for the DAC R9.1.6.doc +Vulnerability Assessment (AVA) assurance measures +An analysis of vulnerabilities can be found in: +• Océ-Technologies B.V., Strength of function analysis for DAC R9.1.6.doc +• Océ-Technologies B.V., Vulnerability analysis for DAC R9.1.6.doc +ST-Océ DAC R9.1.6-2.4 40 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +7. PP Claims +This Security Target TOE does not claim compliance to a Protection Profile. +ST-Océ DAC R9.1.6-2.4 41 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +8. Rationale +8.1 Security Objectives Rationale +For each assumption, threat and OSP we demonstrate that it is met by the security +objectives. The tracings are provided in the following table. +The individual rationales demonstrating that the threats, assumptions and +organizational security policies are met are described as follows: +A.DIGITAL_COPIER +The assumption is met by the following TOE assurance objective: +O.E.DIGITAL_COPIER - The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 2045-65, 2050-70 or 31x5 Digital Copier that +provides a Local User Interface and Glass Plate through which S.LOCAL_USER +can interact easily with the TOE (selecting Username and entering PINcode). +When sending a D.SECURE_PRINT_JOB to the Digital Copier, +O.F.INBOUND_FILTER +O.F.OUTBOUND_FLITER +O.F.JOB_RELEASE +O.F.JOB_SHREAD +O.F.AUTHENTICATE +O.F.SELFTEST +O.A.SLA +O.E.ENVIRONMENT +O.E.NETWORK_POLICY +O.E.DEPLOYMENT +O.E.DIGITAL_COPIER +O.E.SHREDDING +A.DIGITAL_COPIER X +A.ENVIRONMENT X +A.SECURITY_POLICY X X X X +A.SHREDDING X +A.SLA X +T.RESIDUAL_DATA X +T.NOSY_USER X +T.MALWARE X X X +P.TOE_ADMINISTRATION X +P.JOB_DELETE X +ST-Océ DAC R9.1.6-2.4 42 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +S.REMOTE_USER is aware that they must specify a PIN that consists of a +minimum of 4 and a maximum of 6 digits and shall delete the job on the same +workday that it is sent to the TOE, whether or not it is printed. The DC provides a +glass plate and LUI with which S.LOCAL_USER can perform scan jobs. The ST +claim is not valid when the TOE is used with any other type of Océ Digital Copier. +The TOE will not work with any other device (including Digital Copiers from any +other manufacturers). +Although the assumption states that a Digital Copier from Océ will be used, the +Digital Copier is an un-trusted device. The chances of an attack on the LAN being +mounted via the Digital Copier interface are reduced by the TOE filtering the +outbound traffic so that only ports that are absolutely necessary for the operation of +the TOE are open. Requiring D.SECURE_PRINT_JOB to be deleted from the +TOE on the same workday it is sent reduces the time available to an attacker in +which the data object is vulnerable. Additionally the access to the job is limited by +specifying a minimum PIN length. +A.ENVIRONMENT +The assumption is met by the following objectives for the environment: +O.E.ENVIRONMENT - The environment into which the TOE will be introduced is +protected by physical measures that limit access S.LOCAL_USER, +S.REMOTE_USER, S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER. +The physical measures are adequate to prevent all other persons but a determined +S.THIEF who deliberately wants to steal part of or all of the TOE by methodically +planning an attack on the TOE over a period of time. Normally, unless a fault +develops in the TOE, the TOE will no leave the environment into which it is +introduced +A.SECURITY_POLICY +The assumption is met by the following objectives for the environment: +O.E.NETWORK_POLICY - The network to which the TOE is attached shall be +adequately protected so that the TOE is not visible outside the network. In addition, +measures shall be implemented to only allow connections to the TOE from devices +situated on the same network. No inbound connections from external networks are +allowed. The network scans data for mal-ware (viruses and worms). This type of +data may originate from either inside or outside the network to which the TOE is +attached and includes the TOE itself. +O.E.DEPLOYMENT - The network (LAN) to which the TOE is attached is well +managed with established procedures for introducing and attaching new devices to +the network. +ST-Océ DAC R9.1.6-2.4 43 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +O.E.DIGITAL_COPIER - The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 1055-75, 2062 or 2075 Digital Copier that provides +a Local User Interface and Glass Plate through which S.LOCAL_USER can +interact easily with the TOE (selecting Username and entering PINcode). When +sending a D.SECURE_PRINT_JOB to the Digital Copier, S.REMOTE_USER is +aware that they must specify a PIN that consists of a minimum of 4 and a +maximum of 6 digits and shall delete the job on the same workday that it is sent to +the TOE, whether or not it is printed. The DC provides a glass plate and LUI with +which S.LOCAL_USER can perform scan jobs. The ST claim is not valid when the +TOE is used with any other type of Océ Digital Copier. The TOE will not work +with any other device (including Digital Copiers from any other manufacturers). +O.E.SHREDDING – The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB data objects. +The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible to +disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the TOE +claim in no longer valid. +A.SHREDDING +The assumption is met by the following objectives for the environment: +O.E.SHREDDING – The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB data objects. +The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible to +disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the TOE +claim in no longer valid. +A.SLA +The assumption is met by the following TOE assurance objective: +O.A.SLA - The TOE shall be evaluated to ALC_FLR.1.There are measures in +place to repair faults in the TOE when they occur. +T.RESIDUAL_DATA +The threat is met by the following TOE functional objective: +O.F.JOB_SHRED - The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is no longer required or +during the start-up procedure if residual D.SECURE_PRINT_JOB, D.PRINT_JOB +and D.SCAN_JOB is found on the TOE’s hard disk. The first write cycle will +either immediately after the job has completed or once the TOE enters an idle state. +The data shall be deleted according to a recognised standard so that it cannot be +reconstituted. +ST-Océ DAC R9.1.6-2.4 44 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +‘Scrubbing’ the data from the hard disk when it is no longer needed helps prevent +the data been accessed by unauthorised persons. +T.NOSY_USER +The threat is met by the following TOE functional objective: +O.F.JOB_RELEASE - The TOE shall only perform R.RELEASE_JOB once +S.LOCAL_USER has successfully identified and authenticated himself as owner of +D.SECURE_PRINT_JOB. +By first requiring a print job owner to identify an authenticate himself before +printing can commence, observation of print job related data by casual users is +prevented. +T.MALWARE +The threat is met by the following objectives for the environment: +O.F.INBOUND_FILTER - The TOE will only support TCP/IP as a network +protocol. D.INBOUND_TRAFFIC shall only enter the TOE (R.ENTER_TOE) if +the Port is specified as being open. +The chances of mal-ware being accidentally sent to the TOE and causing a security +violation is limited by only opening the ports and enabling the protocols that are +absolutely necessary for the operation of the TOE. +O.F.OUTBOUND_FILTER - The TOE will only support TCP/IP as a network +protocol. D.OUTBOUND_TRAFFIC shall only exit the TOE (R.EXIT_TOE) if its +Port is specified as being open. +Although the TOE is designed, tested and configured with security as a main +concern, it is possible that vulnerabilities will be discovered in the future that could +be exploited in order to use the TOE as a launch pad for an attack. By only opening +the ports and enabling the protocols that are absolutely necessary for the operation +of the TOE, the chances of a successful attack launch are limited. +Although policy states that a Digital Copier from Oce will be used, the Digital +Copier is an un-trusted device. The chances of an attack on the LAN being +mounted via the Digital Copier interface are reduced by the TOE filtering the +outbound traffic so that only ports that are absolutely necessary for the operation of +the TOE are open. +O.F.SELFTEST – The TOE will perform check of the integrity of the TSF when it +is re-booted. +ST-Océ DAC R9.1.6-2.4 45 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +During start-up, the TOE checks to see if any of the TSF relevant files on the hard +disk have been modified. This can happen due to a malware attack but occurs more +often as a result of a power outage. Maintaining the integrity of the TOE gives +assurance in support of the claim that the TOE will not form a threat against it +operational environment. +P.JOB_DELETE +The policy requirement is met by the following TOE functional objective: +O.F.JOB_SHRED - The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is no longer required or +during the start-up procedure if residual D.SECURE_PRINT_JOB, D.PRINT_JOB +and D.SCAN_JOB is found on the TOE’s hard disk. The first write cycle will +either immediately after the job has completed or once the TOE enters an idle state. +The data shall be deleted according to a recognised standard so that it cannot be +reconstituted. +‘Scrubbing’ the data from the hard disk when it is not longer needed helps prevent +the data been accessed by unauthorised persons. +P.TOE_ADMINISTRATION +The policy requirement is met by the following TOE functional objective: +O.F.AUTHENTICATE - The TOE ensures that S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER must identify and authenticate themselves to the TOE +before allowing them to modify the TOE security settings. +ST-Océ DAC R9.1.6-2.4 46 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +8.2 Security Requirements Rationale +The purpose of the Security Requirements Rationale is to demonstrate that the +security requirements are suitable to meet the Security Objectives. +8.2.1 The SFRs meet the Security Objectives for the TOE +For each Security Objective for the TOE we demonstrate that it is met by the SFRs +as shown in the table below supported by the following rationals. +FDP +ACC1. +FDP +ACF.1 +FIA +UID.1 +FIA +UAU.1 +FDP +RIP.1 +FIA +UID.2 +FIA +UAU.2 +FMT +MOF.1 +FMT +MSA.1 +FMT +MSA.3 +FMT +SMF.1 +FMT +SMR.1 +FPT +SEP.1 +FPT +RVM.1 +FPT +TST.1 +O.F.INBOUND_FILTER X X X X X X +O.F.OUTBOUND_FILTER X X X X X X +O.F.JOB_RELEASE X X X X +O.F.JOB_SHREAD X X X +O.F.AUTHENTICATE X X X X X X X +O.F.SELFTEST X X X +The individual rationales demonstrating the objectives are met are described as +follows: +O.F.INBOUND_FILTER +FDP_ACC.1 Subset access control +Inbound traffic is filtered so that only traffic relating to the operation of the TOE is +allowed to enter the TOE. This SFR supports the security objective by restricting +the TOE data flow to only that that is necessary for the operation of the TOE. This +reduces the number of vulnerable entry points. +FDP_ACF.1 Security attribute based access control +All ports that are not necessary for the operation of the TOE as described in this +document are blocked. This SFR supports the security objective by reducing the +number of entry points that could be vulnerable to attack. +FMT_MSA.1 Management of security attributes +The TOE is delivered pre-configured to the customer. This SFR supports the +objective by ensuring that it is not possible for any user (including +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN) to change the settings of +the firewall mechanism. +ST-Océ DAC R9.1.6-2.4 47 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +FMT_MSA.3 Static Attribute initialisation +In order to change the security attributes of the TOE the management interfaces +provided for S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN must be +used. This SFR supports the objective by ensuring that the TOE provides restrictive +default security related settings that require no additional modification by +SERVICE_ENGINEER or S.REMOTE_SYSADMIN. Nobody is allowed to create +new settings with alternative values. +FPT_SEP.1 TSF domain separation +Filtering of network traffic occurs is an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the filtering +mechanism is protected by it not being exposed to non TSF mechanisms from +which a possible attack could be made. +FPT_RVM.1 Non-bypassability of the TSP +In order for data to enter or leave the TOE it must pass through the filtering +mechanism. This SFR supports the security objective by ensuring that TSF cannot +be bypassed, resulting in a direct line between the Digital Copier and the network +to which the TOE is attached being created. +O.F.OUTBOUND_FILTER +FDP_ACC.1 Subset access control +Outbound traffic is filtered so that only traffic relating to the operation of the TOE +is allowed to leave the TOE. This SFR supports the security objective by restricting +the TOE data flow to only that that is necessary for the operation of the TOE. +FDP_ACF.1 Security attribute based access control +All ports that are not necessary for the operation of the TOE as described in this +document are blocked. This SFR supports the security objective by reducing the +number of exit points through which an attack could be launched. +FMT_MSA.1 Management of security attributes +The TOE is delivered pre-configured to the customer. This SFR supports the +objective by ensuring that it is not possible for any user (including +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN) to change the settings of +the firewall mechanism. +FMT_MSA.3 Static Attribute initialisation +In order to change the security attributes of the TOE the management interfaces +provided for S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN must be +used. This SFR supports the objective by ensuring that the TOE provides restrictive +default security related settings that require no additional modification by +SERVICE_ENGINEER or S.REMOTE_SYSADMIN. Nobody is allowed to create +new settings with alternative values. +ST-Océ DAC R9.1.6-2.4 48 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +FPT_RVM.1 Non-bypassability of the TSP +In order for data to enter or leave the TOE it must pass through the filtering +mechanism. This SFR supports the security objective by ensuring that TSF cannot +be bypassed, resulting in a direct line between the Digital Copier and the network +to which the TOE is attached being created. +FPT_SEP.1 TSF domain separation +Filtering of network traffic occurs is an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the filtering +mechanism is protected by it not being exposed to other non-TSF mechanisms +from which a possible attack could be made. +O.F.JOB_RELEASE +FIA_UID.1 Timing of identification (Secure Printing) +Printing will only commence once the TSF has validated the Username associated +with the job by S.LOCAL_USER. The TSF receives the Username via the +DAC/DC interface. This SFR supports the security objective by requiring the +S.LOCAL_USER to identify himself as part of the job release process. +FIA_UAU.1 Timing of authentication +Printing will only commence once the TSF has validated the PIN associated with +the job by S.LOCAL_USER. The TSF receives the PIN via the DAC/DC interface. +This SFR supports the security objective by requiring the S.LOCAL_USER to +authenticate himself as part of the job release process. +FPT_RVM.1 Non-bypassability of the TSP +Print jobs cannot be processed by any other mechanism than by the specified +mechanism. This SFR supports the objective by ensuring that no other mechanisms +can access the print job data. +FPT_SEP.1 TSF domain separation +Management of print jobs occurs in an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the job release +mechanism is protected by it not being exposed to other non-TSF mechanisms +from which a possible attack could be made. +O.F.JOB_SHRED +FDP_RIP.1 Subset residual; information protection +This SFR supports the objective by ensuring that once a print or scan job has +completed, or if during the startup procedure, residual print or scan job data is +found then the related data will be electronically shredded from the hard disk. The +SFR has been refined to describe the moment when the data will be shredded. +FPT_RVM.1 Non-bypassability of the TSP +ST-Océ DAC R9.1.6-2.4 49 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Print and scan jobs must pass through the shredding mechanism. This SFR +supports the objective by ensuring that print and scan jobs cannot leave the TOE +except in the authorised manner. +FPT_SEP.1 TSF domain separation +Shredding occurs is an area of the TOE that is separate to non-TSF related +operation. This SFR supports the objective by ensuring that the shredding +mechanism is protected by it not being exposed to other non TSF-mechanisms +from which a possible attack could be made. +O.F.AUTHENTICATE +FIA_UID.2 User identification before any action +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER must identify themselves +to the TOE before any TOE management actions can be performed. +FIA_UAU.2 User authentication before any action +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER must authenticate +themselves to the TOE before any TOE management actions can be performed. +FMT_SMF.1 Specification of Management Functions +The functions that can be performed by either the S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER are defined. +FMT_MOF.1 Management of security functions behaviour +Only TOE administrators and Océ technicians can use security related functions. +FMT_SMR.1 Security roles +The TOE shall make a distinction between administrators and ordinary users. +FPT_RVM.1 Non-bypassability of the TSP +Users other than S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER cannot +gain access to security management functions of the TOE without begin first +controlled by the mechanisms specified in this document. +FPT_SEP.1 TSF domain separation +Identification and authentication of users occurs in an area of the TOE that is +separate to non-security related operation. +O.F.SELFTTEST +FPT_TST.1 TSF Testing +When the TOE is started up, it will perform a suite of self tests and determine that +it is working correctly. If it determines that there is a problem it will try to repair +itself. If this fails it will place itself in an ‘out-of order’ mode +FPT_RVM.1 Non-bypassability of the TSP +ST-Océ DAC R9.1.6-2.4 50 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The self-test mechanism cannot be by passed. +FPT_SEP.1 TSF domain separation +Self-testing of the TOE occurs in an area of the TOE that is separate to non-TSF +related operation. +8.2.2 The security requirements for the IT environment meet the security +objectives for the environment +The TOE does not make any security requirements on its environment. +ST-Océ DAC R9.1.6-2.4 51 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +8.2.3 The Assurance Requirements and Strength of Function Claim are +appropriate +The Assurance Requirements consist of EAL 2 requirements components. The +TOE is a commercially available device produced by a well-known manufacturer +and most importantly, provides a limited set of security related functionality. The +TOE has been structurally tested by Océ and is suitable for environments that +require a low to moderate level of independently assured security. The developer +works in a consistent manner with good commercial practice. +Occasionally the TOE may develop a problem that requires +S.SERVICE_ENGINEER to make a visit to the customer location in order to repair +the TOE. Océ has procedures that support these processes and for this reason the +assurance requirements have been augmented with the following assurance classes +as the developer is able to meet them: +Components for Life cycle support (Class ALC) +• ALC_FLR.1 Basic Flaw Remediation +The evaluation of the TOE security mechanisms at AVA_VLA.1 is designed to +provide assurance against an attacker with a low attack potential. Therefore the +SOF claim is SOF-basic. This strength of function claim is consistent with the +security objectives for the TOE and the defined TOE assumptions that have been +made. +8.2.4 All dependencies have been met +The following dependencies are identified: FDP_ACF.1, FDP_ACC.1, +FMT_MSA.1, FMT_MSA.3, FIA_UID.1, FMT_SMF.1, FMT_SMR.1, +FPT_AMT.1. +EAL2+ ALC_FLR +Which comprises of: +ACM_CAP.2 Configuration Items +ADO_DEL.1 Delivery procedures +ADO_IGS.1 Installation, generation, and start-up procedures +ADV_FSP.1 Fully defined external interfaces +ADV_HLD.1 Security enforcing high-level design +ADV_RCR.1 Informal correspondence demonstration +AGD_ADM.1 Administrator Guidance +AGD_USR.1 User guidance +ALC_FLR.1 Basic Flaw remediation +ATE_COV.1 Analysis of coverage +ATE_FUN.1 Functional testing +ATE_IND.2 Independent testing – sample +AVA_SOF.1 Strength of TOE security function evaluation +AVA_VLA.1 Developer vulnerability analysis +O.A.SLA +ST-Océ DAC R9.1.6-2.4 52 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +The dependency FPT_AMT.1 Abstract machine is not included, because the +underlying IT platform does not contribute to the TOE requirements (See part 1, +paragraph 147). The underlying IT platform is a standard embedded PC platform +that works. Testing of the platform does not provide assurance that will support the +claims at the level of EAL2, as functional testing of the DAC in its operational +environment is performed (it does what is should do). +All other dependencies are met. +8.2.5 The requirements are internally consistent +Because the assurance requirements form a package (EAL 2) they are internally +consistent. The addition of ALC_FLR.1 does not cause inconsistencies with the +EAL 2 package. +The functional requirements and assurance requirements do not have any +dependencies between them, and are therefore completely independent of each +other. Because both functional and assurance requirements are internally +consistent, and they are independent, the requirements are internally consistent. +8.2.6 The requirements are mutually supportive +The requirements are complete and do not cause inconsistencies, therefore the +requirements are considered to be mutually supportive. (This argument has been +based on section 9.3.8 of Guide for the production of PPs and STs, PDTR 15446 +N2449) +ST-Océ DAC R9.1.6-2.4 53 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +8.3 TOE Summary Specification Rationale +8.3.1 The functions meet the SFRs +For each SFR we demonstrate that it is met by the Security Functions in the table +below supported by the following rationales. +FDP +ACC1. +FDP +ACF.1 +FIA +UID.1 +FIA +UAU.1 +FDP +RIP.1 +FIA +UID.2 +FIA +UAU.2 +FMT +MOF.1 +FMT +MSA.1 +FMT +MSA.3 +FMT +SMF.1 +FMT +SMR.1 +FPT +SEP.1 +FPT +RVM.1 +FPT +TST.1 +SF.FILTERING X X X X X X +SF.JOB_RELEASE X X X X +SF.SHREDDING X X X +SF.MANAGEMENT X X X X X X X X X +SF.SELFTEST X X X +FDP_ACC.1 +This Security Functional Requirement ensures that only traffic is allowed to enter +the TOE that is relevant to its operation. This SFR is supported by SF.FILTERING +that restricts flow of network traffic and limits the supported network protocols. +FDP_ACF.1 +This Security Functional Requirement ensures that all ports that are non-essential +to the operation of the TOE are blocked. This SFR is supported by +SF.FILTERING. SF.FILTERING expands on the restricted flow of network traffic +and supported network protocols by defining which ports are open and which +protocols are supported. +FIA_UID.1 +This Security Functional Requirement ensures that the TSF verifies the identity of +S.LOCAL_USER before allowing SF.JOB_RELEASE. This helps to ensure that +access to confidential print jobs is restricted. +FIA.UAU.1 +This Security Functional Requirement ensures that the TSF authenticates +S.LOCAL_USER by correctly supplying the PIN associated with the secure print +job before SF.JOB_RELEASE will commence. This helps to ensure that access to +confidential print jobs is restricted. +FDP_RIP.1 +ST-Océ DAC R9.1.6-2.4 54 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +This Security Functional Requirement ensures requires that residual information +relating to D.SECURE_PRINTJOB, D.PRINTJOB and D.SCANJOB is deleted +once they are no longer needed, or, if during the startup procedure residual print or +scan job data is found on the hard disk. The SFR has been refined to describe the +moment when the data will be shredded. This SFR is supported by +SF.SHREDDING that provides functionality that ensures the data objects detailed +above are shredded in accordance with known standards. This SFR helps to reduce +the amount of sensitive data present on the hard disk in the event of it being stolen. +FIA_UID.2 +This Security Functional Requirement ensures that administrators correctly identify +themselves to the TOE before security management functions can be used. This +SFR is supported by SF.MANAGEMENT and provides functionality whereby +administrators (S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER) can +identify themselves to the TOE. This helps to restrict access to security +management functions and thereby reduces the risk of modification being made to +the TOE settings by unauthorised users. +FIA_UAU.2 +This Security Functional Requirement ensures that administrators correctly +authenticate themselves to the TOE before security management functions can be +used. This SFR is supported by SF.MANAGEMENT and provides functionality +whereby administrators (S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER) +can authenticate themselves to the TOE. This helps to restrict access to security +management functions and thereby reduces the risk of modification being made to +the TOE settings by unauthorised users. +FMT_MOF.1 +This Security Functional Requirement ensures that the TOE management functions +are only used by either the Océ technician (S.SERVICE_ENGINEER) or customer +system administrator (S.REMOTE_SYSADMIN). This SFR is supported by +SF.MANAGEMENT and ensures that non-administrators cannot administer the +TOE. +FMT_MSA.1 +This Security Functional Requirement ensures that the TOE management functions +related to the filter mechanism settings cannot be changed. This SFR is supported +by SF.MANGEMENT that ensures that filter related settings cannot be changed by +administrators. +FMT_MSA.3 +This Security Functional Requirement ensures that the TOE management functions +related to the filter mechanism settings are given default values. This SFR is +supported by SF.MANAGEMENT that ensures that the filter related settings are +pre-configured before delivery to the customer. +ST-Océ DAC R9.1.6-2.4 55 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +FMT_SMF.1 +This Security Functional Requirement ensures that the TOE management functions +are defined. This SFR is supported by functions made available by +SF.MANAGEMENT and defines the set of operations that are available to the Océ +technician (S.SERVICE_ENGINEER) or customer system administrator +(S.REMOTE_SYSADMIN) that are needed to administrate the TOE. +FMT_SMR.1 +This Security Functional Requirement ensures that the TOE makes a distinction +between security related roles and normal users. This SFR is supported by +SF.MANAGEMENT. This SFR is supported by SF.MANAGEMENT and ensures +that non-administrators cannot administer the TOE. +FPT_SEP.1 +This Security Functional Requirement ensures that the TSF operates in its own +domain and cannot be influenced by external sources. This requirement is met by +the physical characteristics of the TOE that comprises software that uses a generic +PC hardware platform. The DAC only provides functionality related to the +operation of the TOE and does not have dual function, for example, as an office +file server. The nature of the TOE is such that evaluation at EAL2 provides a +suitable level of assurance that the TSF operates in it’s own domain. +The operation of the TSF in its own domain provides the following: +1. The filtering mechanisms are in a separate domain to the rest of the non- +security related operations that the TOE performs. This SFR is supported +by SF.FILTERING. This protects the integrity of the filtering mechanism +against un-authorised subjects and threat attacks. +2. The print job management mechanisms are in a separate domain to the +rest of the non-security related operations that the TOE performs. This +SFR is supported by SF.JOB_RELEASE This protects the integrity of the +print job mechanism against un-authorised subjects and threat attacks. +3. The shredding mechanisms are in a separate domain to the rest of the non- +security related operations that the TOE performs. This SFR is supported +by SF.SHREDDING. This protects the integrity of the shredding +mechanism against un-authorised subjects and threat attacks. +4. The TOE security management mechanisms are in a separate domain to +the rest of the non-security related operations that the TOE performs. This +SFR is supported by SF.MANAGEMENT. This protects the integrity of +the security management mechanisms against un-authorised subjects and +threat attacks. +5. The TOE start-up check mechanisms are in a separate domain to the rest +of the non-security related operations that the TOE performs. This SFR is +supported by SF. SELFTEST. This protects the integrity of the start-up +check mechanisms against un-authorised subjects and threat attacks. +ST-Océ DAC R9.1.6-2.4 56 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +FPT_RVM.1 +This Security Functional Requirement ensures that no security related operations +can be performed without being controlled by the TOE’s security mechanisms. The +DAC provides a limited set of security functionality that is related to the operation +of the TOE. The nature of the TOE is such that evaluation at EAL2 provides a +suitable level of assurance that the only the TSF can perform security related +operations. +This SFR is supported by SF.MANAGEMENT. +This Security Functional Requirement ensures that: +1. No filtering mechanisms can be performed without being controlled by +the TOE’s security mechanisms. This SFR is supported by +SF.FILTERING. +2. No secure print job management mechanisms can be performed without +being controlled by the TOE’s security mechanisms. This SFR is +supported by SF.JOB_RELEASE. +3. No shredding mechanisms can be performed without being controlled by +the TOE’s security mechanisms. This SFR is supported by +SF.SHREDDING. +4. No security related operations can be performed without being controlled +by the TOE’s security mechanisms. This SFR is supported by +SF.MANAGEMENT. +5. The TOE start-up check mechanisms are in a separate domain to the rest +of the non-security related operations that the TOE performs. This SFR is +supported by SF. SELFTEST. This ensures that no security management +mechanisms can be used by un-authorised subjects. +FPT_TST.1 +This Security Functional Requirement ensures that the TOE to performs a self-test +during start up. This SFR is supported by SF.SELFTEST. The self-test helps +protect the TOE against T.MALWARE so that it does not become a possible threat +agent against S.NETWORK_DEVICE. +8.3.2 The assurance measures meet the SARs +The statement of assurance measures has been presented in the form of a reference +to the documents that show that the assurance measures have been met (CC Part 3 +paragraph 188). This statement can be found in section 6.2. +8.3.3 The SOF-claims for functions meet the SOF-claims for the SFRs +The SFRs FIA_UAU.1, FIA_UAU.2, FIA_UID.1 and FIA_UID.2 require the TOE +to provide security functions that provide identification/authentication functionality +that meets a SOF claim of ‘SOF basic’. +ST-Océ DAC R9.1.6-2.4 57 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +This rational for this is that the claim must adequate to defend against the identified +threats to the TOE that are identified in the TOE Security Environment for which a +low attack potential exists +The Security Functions that are realised by probabilistic or permutational +mechanisms are: +• SF.JOB_RELEASE +• SF.MANAGEMENT +The claim for these two Security Functions is ‘SOF basic’. These Security +Functions are traced back to the TOE SFRs they implement in 8.3.1 +As the SOF claims for the three Security Functions are equal to the SOF claims for +the TOE SFRs they implement, the SOF claims are consistent. +8.3.4 The functions are mutually supportive +The requirements are mutually supportive (see section 8.2.6) and the functions that +implement theses requirements are complete (see section 8.3.1). The functions are +mutually supportive. (This argument has been based on section 9.3.8 of Guide for +the production of PPs and STs, PDTR 15446 N2449) +8.4 PP Claims Rationale +This Security Target TOE does not claim conformance to any Protection Profile. +ST-Océ DAC R9.1.6-2.4 58 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Appendix A Abbreviations +BSI Bundesamt für Sicherheit in der Informationtechnik +DAC Digital Access Controller +DC Digital Copier +ITSEF IT Security Evaluation Facility +LUI Local User Interface (of a DC) +MFD Multifunctional device for copying, printing and scanning, +connected to a network (Combination of a DC and a DAC) +TNO Netherlands Organization for Applied Scientific Research +ST-Océ DAC R9.1.6-2.4 59 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Appendix B References +1. Secure Deletion of Data from Magnetic and Solid State Memory, Peter +Guttman 1996 +(http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html) +2. US Department of Defence Military Standard DOD 5220-22m +(http://www.dss.mil/isecnispom_0195.htm) +. +ST-Océ DAC R9.1.6-2.4 60 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Appendix C Glossary of Terms +None. +ST-Océ DAC R9.1.6-2.4 61 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Appendix D Security Related Administration Functions +In this appendix the security related administration functions that are available to +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN are detailed. The tables +give the administration function name and a short description. +S.SERVICE_ENGINEER +Administration Function Description +Security / security level / required level Changing this setting invalidates the claim +Security / data shredding / shred moment Sets the actual moment of shredding +Security / data shredding / shred non secure +jobs +Sets the type of print jobs to shred +Security / data shredding / shred scan jobs Sets whether scanned jobs are shredded +Security / SDS password Sets the SDS login password +Configuration / Network / TCPIP / HTTPD Configures the Webserver that uses the +TCPIP +Configuration / Network / TCPIP / HTTPD / +Port nr +Configures the port number that is used by +the webserver +Configuration / Applications / Web based SAS +/ Enable +Enables web based SAS +Configuration / Applications / Web based SAS +/ ResetSASPassword +Resets the SAS password to its default +value +Configuration / licenses / Erase license Erases the current license file +Enable LPD / Disable LPD Toggles the LPD daemon +ST-Océ DAC R9.1.6-2.4 62 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +S.REMOTE_SYSADMIN +Administration Function Description +Security / security level / required level Changing this setting invalidates the claim +Security / data shredding / shred moment Sets the actual moment of shredding +Security / data shredding / shred non secure +jobs +Sets the type of print jobs to shred +Security / data shredding / shred scan jobs Sets whether scanned jobs are shredded +Configuration / Upload settings Enables a default set of settings to be +uploaded to the DAC (useful for configuring +multiple DAC in one customer +environment) +Configuration / Download settings Enables a default set of settings to be +downloaded to the DAC (useful for +configuring multiple DAC in one customer +environment) +Configuration / Network / TCPIP / HTTPD / +Port nr +Configures the Webserver that uses the +TCPIP +S99 Configuration / Network / TCPIP / HTTPD +/ self signed certificate / common name +Configures the port number that is used by +the webserver +Configuration / Network / TCPIP / raw socket +enable +Enables/disables raw socket functionality +Configuration / Network / TCPIP / raw socket +port nr +Configures the port number that is used by +the raw socket +Configuration / Network / TCPIP / LDAP +enable/disable +Enables/disables support for LDAP +functionality +Configuration / Network / TCPIP / LDAP port +nr +Configures the port number that is used by +the for LDAP functionality +Applications / Web based SAS / +SetSASPassword +Sets the S.REMOTE_SYSADMIN +password +Enable LPD / Disable LPD Toggles the LPD daemon +ST-Océ DAC R9.1.6-2.4 63 of 63 +25th August 2006 BSI-DSZ-CC- 0370 +Distribution list +1. BSI +2. Océ Technologies B.V. +3. TNO-ITSEF B.V +
\ No newline at end of file diff --git a/tests/data/cc/analysis/certs/targets/txt/3129688580711e08.txt b/tests/data/cc/analysis/certs/targets/txt/3129688580711e08.txt new file mode 100644 index 00000000..6adcc02e --- /dev/null +++ b/tests/data/cc/analysis/certs/targets/txt/3129688580711e08.txt @@ -0,0 +1,3463 @@ +Océ Technologies B.V. +ST-Océ DAC R10.1.5-3.3 +Security Target +The Océ Digital Access Controller (DAC) R10.1.5, as used in the Océ +VarioPrint 1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP +printer/copier/scanner products +Version 3.3 +Date 19th January 2008 +Certification ID BSI-DSZ-CC- 0517 +Sponsor Océ Technologies B.V. +File name Oce Venlo DAC Security Target 3.0.doc +No of pages 95 +This Security Target was prepared for: +Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +by Brightsight BV. + 2009 Océ Technologies B.V. +ST-Océ DAC R10.1.5-3.3 2 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Document information +Date of issue 19th +January 2008 +Author(s) Dirk-Jan Out +Version number report 3.3 +Certification ID BSI-DSZ-CC- 0517 +Scheme BSI +Sponsor Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +Evaluation Lab Brightsight B.V. +IT Security Evaluation Facility +Delftechpark 1 +2628XJ Delft +The Netherlands +Target of Evaluation (TOE) +The Océ Digital Access Controller +(DAC) R10.1.5, as used in the Océ +VarioPrint 1055, 1055 BC, 1055 DP, +1065, 1075, 2062, 2075, 2075 DP +printer/copier/scanner products +TOE reference name Océ DAC R10.1.5 +CC-EAL number 2+ (augmented with ALC_FLR.1) +Classification None +Report title +Security Target +The Océ Digital Access Controller +(DAC) R10.1.5, as used in the Océ +VarioPrint 1055, 1055 BC, 1055 DP, +1065, 1075, 2062, 2075, 2075 DP +printer/copier/scanner products +Report reference name ST-Océ DAC R10.1.5-3.3 +ST-Océ DAC R10.1.5-3.3 3 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Document history +Version Date Comment +0.2 14-10-03 Initial draft +0.3 17-10-03 Added initial comments from TNO-ITSEF BV +0.4 28-10-03 Added comments from Océ +0.5 06-11-03 Added comments of Océ resulting from meeting +0.6 Added telephone comments from Océ +0.7 17-11-03 Further expansion of versions 0.5 and 0.6 +0.8 1-12-03 SFR’s added and comments from Océ included +0.9 20-2-04 Added comments from Océ +1.0 2-3-04 Initial release (unevaluated) +1.1 28-5-04 Modified after initial CC evaluation round with comments +from evaluators and from BSI +1.2 17-6-04 Modified after second CC evaluation round +1.3 25-08-04 Modified after comment BSI (Rev Prot 3) +1.4 23-09-04 Modified after comment BSI (Rev Prot 12) +1.5 30-11-04 Modified after comment BSI (Rev Prot 23) +1.6 01-12-04 Modified after comment BSI (Rev Prot 23) +1.7 13-05-05 Modified to reflect differences between R8.1.10 and +R7.3.6 of the DAC product +1.8 1-08-05 Modified after comments from BSI (Rev Prot 1) +1.9 2-09-05 Modified after comments from BSI (Rev Prot 5) +2.0 12-01-06 Modified to reflect differences between R9.1.0 and +R.8.1.10 of the DAC product +2.1 01-05-06 Certification Id Added +2.2 01-07-06 Modified after comments from BSI (Rev Prot +ZK_0370_ASE_01) +2.3 27-07-06 Modified after comments from BSI (Rev Prot +ZK_0370_ASE_02) +2.4 25-08-06 Modified after comments from BSI (Rev Prot +ZK_0370_ASE_03) +3.0 1-03-08 Modified to reflect differences between R10.1.5 and +R.9.1.6 of the DAC product +3.1 01-10-08 Modified after comments from BSI (Rev Prot +ZK_0517_ASE_01) +3.2 12-10-08 Modified after comments from BSI (Rev Prot +ZK_0517_ACM_ADO_ALC_01 +3.3 19-01-08 Adaptation of figure 2 +ST-Océ DAC R10.1.5-3.3 4 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Contents +DOCUMENT INFORMATION.........................................................................................2 +DOCUMENT HISTORY ....................................................................................................3 +1. SECURITY TARGET INTRODUCTION ...............................................................6 +1.1 ST IDENTIFICATION ..............................................................................................6 +1.2 ST OVERVIEW ......................................................................................................7 +1.3 CC CONFORMANCE ..............................................................................................8 +2. TOE DESCRIPTION .................................................................................................9 +2.1 TOE OVERVIEW ...................................................................................................9 +2.1.1 TOE physical scope and boundary ..................................................................9 +2.1.2 TOE logical scope and boundary ..................................................................12 +3. TOE SECURITY ENVIRONMENT.......................................................................20 +3.1 DEFINITION OF SUBJECTS, OBJECTS AND OPERATIONS.........................................20 +3.1.1 Non-human subjects.......................................................................................20 +3.1.2 Human subjects..............................................................................................20 +3.1.3 Objects...........................................................................................................21 +3.1.4 Operations .....................................................................................................22 +3.2 ASSUMPTIONS.....................................................................................................22 +3.3 THREATS.............................................................................................................24 +3.4 ORGANISATIONAL SECURITY POLICIES...............................................................24 +4. SECURITY OBJECTIVES......................................................................................25 +4.1 TOE SECURITY OBJECTIVES...............................................................................25 +4.1.1 Functional Security Objectives for the TOE..................................................25 +4.1.2 Assurance Security Objectives for the TOE...................................................26 +4.2 SECURITY OBJECTIVES FOR THE ENVIRONMENT..................................................26 +5. IT SECURITY REQUIREMENTS.........................................................................28 +5.1 TOE SECURITY FUNCTIONAL REQUIREMENTS....................................................28 +5.1.1 SFRs for Filtering..........................................................................................28 +5.1.2 SFRs for Job Release.....................................................................................29 +5.1.3 SFRs for Shredding........................................................................................30 +5.1.4 SFRs for Management ...................................................................................30 +5.1.5 SFRs for Protection of the TSF itself .............................................................32 +5.1.6 Strength-of-function claim .............................................................................33 +5.2 TOE SECURITY ASSURANCE REQUIREMENTS.....................................................33 +5.3 SECURITY REQUIREMENTS FOR THE IT ENVIRONMENT.......................................34 +5.4 EXPLICITLY STATED REQUIREMENTS ..................................................................34 +6. TOE SUMMARY SPECIFICATION .....................................................................35 +6.1 IT SECURITY FUNCTIONS....................................................................................35 +ST-Océ DAC R10.1.5-3.3 5 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +6.1.1 Probabilistic functions and mechanisms........................................................36 +6.1.2 Strength of function claim..............................................................................37 +6.2 ASSURANCE MEASURES......................................................................................37 +7. PP CLAIMS...............................................................................................................39 +8. RATIONALE ............................................................................................................40 +8.1 SECURITY OBJECTIVES RATIONALE ....................................................................40 +8.2 SECURITY REQUIREMENTS RATIONALE ..............................................................45 +8.2.1 The SFRs meet the Security Objectives for the TOE......................................45 +8.2.2 The security requirements for the IT environment meet the security objectives +for the environment.....................................................................................................49 +8.2.3 The Assurance Requirements and Strength of Function Claim are appropriate +50 +8.2.4 All dependencies have been met.....................................................................50 +8.2.5 The requirements are internally consistent....................................................51 +8.2.6 The requirements are mutually supportive ....................................................51 +8.3 TOE SUMMARY SPECIFICATION RATIONALE......................................................52 +8.3.1 The functions meet the SFRs..........................................................................52 +8.3.2 The assurance measures meet the SARs ........................................................55 +8.3.3 The SOF-claims for functions meet the SOF-claims for the SFRs.................55 +8.3.4 The functions are mutually supportive...........................................................56 +8.4 PP CLAIMS RATIONALE ......................................................................................56 +ST-Océ DAC R10.1.5-3.3 6 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +1. Security Target Introduction +1.1 ST Identification +Name of the TOE: +The Océ Digital Access Controller (DAC) R10.1.5, as used in the Océ VarioPrint +1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/copier/scanner +products +Name of the Security Target: +Security Target +The Océ Digital Access Controller (DAC) R10.1.5, as used in the Océ VarioPrint +1055, 1055 BC, 1055 DP, 1065, 1075, 2062, 2075, 2075 DP printer/copier/scanner +products +ST evaluation status: Draft for Evaluation +ST version number: 3.3 +ST publication date: 19th January 2008 +ST author: Dirk-Jan Out +This Security Target was prepared for: +Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +by Brightsight B.V. IT Security Evaluation Facility +Delftechpark 1 +2628XJ Delft +The Netherlands +ST-Océ DAC R10.1.5-3.3 7 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +1.2 ST Overview +The firm Océ produces a wide range of multifunctional devices for copying, printing +and scanning (MFDs) for various purposes. A number of these MFDs: the 1055/65/75 +series, the 2062 series and the 2075 series, use the same Digital Access Controller +(DAC). +The Océ Digital Access Controller (DAC) R10.1.5, is used with the Océ VarioPrint +• 1055, 1065, 1075, 2062, 2075. +These VarioPrint products are referred to collectively in this Security Target as +MFDs +A digital copier from the +Océ Varoprint 1055/65/75 +series with embedded DAC +An Océ Varioprint 2062 +digital copier with +embedded DAC. +ST-Océ DAC R10.1.5-3.3 8 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +An Océ Varioprint 2075 +digital copier with +embedded DAC. +For external DACs, an optional ‘removable hard disk’ is available. +The DAC is a PC-based MFD-controller that provides a wide range of printing and +scanning functionality to the Digital Copier (DC) of the MFD to which the DAC is +connected. The DAC provides security functionality to the DC; the DAC does not +provide copy functionality. +This Security Target describes the DAC and the specific security problem that it +addresses. The Target of Evaluation (TOE) is a collection of software components +(printer drivers, OS) that use the underlying hardware platform. The TOE is a +subset of the complete DAC. +1.3 CC Conformance +The evaluation is based upon: +• Common Criteria for Information Technology Security Evaluation, Version +2.3, Part 1: General model, August 2005. +• Common Criteria for Information Technology Security Evaluation, Version +2.3, Part 2: Security functional requirements, August 2005. +• Common Criteria for Information Technology Security Evaluation, Version +2.3, Part 3: Security assurance requirements, August 2005. +• Common Methodology for Information Technology Security Evaluation, +Version 2.3, Evaluation Methodology, August 2005. +The chosen level of assurance is: EAL2 (Evaluation Assurance Level 2 +augmented with ALC_FLR.1) +This Security Target claims the following conformance to the CC: +CC Part 2 conformant; CC Part 3 conformant. +ST-Océ DAC R10.1.5-3.3 9 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +2. TOE Description +2.1 TOE Overview +This section presents an overview of the TOE. +2.1.1 TOE physical scope and boundary +The firm Océ produces a wide range of multifunctional devices for copying, +printing and scanning (MFDs). For the purpose of this evaluation, MFDs consist of +two main parts: a controller and a Digital Copier (DC). +A number of these MFDs use the same controller: the Digital Access Controller +(DAC). +The DAC is a PC-based MFD-controller that provides a wide range of printing and +scanning functionality to the Digital Copier (DC) of the MFD to which the DAC is +connected. The DAC provides security functionality to the DC. It does not provide +copy functionality. +The DAC can operate in three different security modes: ‘high’, ‘normal’ and ‘low’. +This Security Target covers the DAC operating in the security mode ‘high’ as +delivered by Océ to the customer. This mode provides a restricted set of +functionality that is configured to meet the Security Target claim. Changing the +operational mode invalidates the claim made in this Security Target. +The DAC is connected between a network and the DC. This is depicted in Figure 1. +Digital +Copier (DC) +DAC +MFD +Network +Copy Data +Flow +Scan Data +Flow +Output Tray of MFD +Input Glass Plate of MFD +Print Data +Flow +Figure 1: Relation between DC, DAC and MFD +ST-Océ DAC R10.1.5-3.3 10 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +The DAC consists of: +1. An embedded uATX motherboard based PC comprising at a minimum a +Via Eden C3 800 MHz processor, 256MB internal RAM, 20GB hard drive, +2. Generic graphics card and network card supporting 10/100/1000Mbs +Ethernet UTP. +3. Drivers for the PC, graphics card and network card +4. USB hardware support. +5. The Montvista Linux operating system version 4.0.1 with updates until +August 9, 2007 and New-Zealand time-zone fix. These updates are +specified in appendix F. +6. Océ DAC-specific software version R10.1.5 +7. Third-party developed software: Adobe PS3-PDF Interpreter, Version +3016.103 v.3.1 build #03; Apache HTTP server with SSL support, Apache +2.0.59, OpenSSL 0.9.7l, SAMBA 3.0.25b, PHP 4.4.7 +Of these 7, the first four are not part of the TOE and together form the underlying +hardware platform that the TOE makes use of. The underlying hardware platform +does not provide any specific security related functionality for the TOE. The TSF is +mediated by the last three software components that are part of the TOE. This is +depicted in Figure 2. +OCE +Digital Access +Controller +Specific Software +(6) +Third Party +Software (7) +TOE +The Montvista Linux OS v4.0.1 (5) +USB Hardware Support (4) +Generic PC Hardware Drivers (3) +NON TOE +Generic PC Hardware and USB2 (1,2) +Figure 2: Division of the DAC into TOE and non-TOE. +The underlying PC hardware platform has the following characteristics: +• The USB port is used by the service engineer for administration and for +attaching the Varioprint MFD to the DAC. It is also possible to print jobs +stored on a USB memory stick and scan jobs to a USB memory stick. No +ST-Océ DAC R10.1.5-3.3 11 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +other devices are attached to the USB ports that are not related to the +normal operation of the DAC. +• All other interfaces, such as the keyboard or other ports, have been +disabled. +The physical interfaces through which the TOE communicates are: +• A USB connector through which a service engineer can install and +administer the TOE +• A network card through which print and scan jobs can pass and a remote +system administrator can administer the TOE +• A USB connector that allows for data flows between the Digital Copier +(DC) and the TOE via the DAC cable. +• A USB connector through which print jobs can be sent the DAC for +printing and for receiving scan jobs from the DAC. +The user guidance for the TOE consists of : +• Océ VarioPrint 1055-75 Job manual +• Océ VarioPrint 2062 Job manual +• Océ VarioPrint 2075 Job manual +• Océ VarioPrint 1055-75 Configuration manual +• Océ VarioPrint 2062 Configuration manual +• Océ VarioPrint 2075 Configuration manual +• These manuals are delivered in paper form with the DAC and can also be +downloaded from the support section from Océ corporate website +(www.oce.com) +The administrator guidance for the TOE consists of: +The DAC administration guidance1 for the customer system administrator takes the +form of HTML pages. These are part of the Océ DAC-specific software, Version +R10.1.5: +• Océ System Configuration, On-line help. +The DAC administration guidance for the Océ service engineer takes the form of a +Lotus Notes application that is installed on the service engineer’s laptop. The +guidance contains an appendix that is identified as: +• Administrating version R10.1.5 of the Océ DAC, +and is a frozen version of the Océ service engineer Lotus Notes application made at +the time of product release. +1 This includes the “Common Criteria Certified Configuration of the DAC R10.1.5” +ST-Océ DAC R10.1.5-3.3 12 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +2.1.2 TOE logical scope and boundary +The TOE protects two assets: itself and the print jobs it receives. +1. The TOE protects it’s own integrity against threats from the LAN, service +engineer laptop, USB memory sticks and the Digital Copier to which it is +attached through use of a firewall and integrity checks on system files upon +system reboot. +2. The TOE protects the confidentiality of secure print jobs once they have +been received by the DAC by storing them until the user authenticates +himself to the DAC via a user interface on the DC. The DAC shreds the +data after printing is completed. +The TOE does not form a threat to its environment for the following reasons: +• The TOE does not form a threat to the integrity of the LAN to which the +DAC is attached. The TOE configuration has been tested and is configured +so that the integrity of the configuration is checked and restored upon +system reset. +• Additionally, all data that enters the TOE via the Digital Copier must pass +through an internal firewall. There is no direct line from the Digital Copier +to the network to which the DAC is attached. +In order to do so, it offers the following functionality2: +2 The DC can also perform copying, but this is done without interaction with the +TOE. Copy job related data does not enter the TOE boundary. This is therefore +out-of-scope of this ST. +ST-Océ DAC R10.1.5-3.3 13 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +The TOE controls printing +The TOE accepts Postscript, PDF, PCL5e, PCL6 print jobs from remote users on +the network (lpr over TCP/IP or raw print data via a raw IP socket). The TOE also +accepts jobs printed by a remote user (commonly know as ‘print to file’) that have +been copied to a USB stick that is then inserted into the DAC by local users +through a USB port located in the DC Local User Interface console shown below. +Figure 3: The DC LUI console showing the USB connector used for printing and scanning +and the optional fingerprint sensor that used for identifying mailbox owners +The DAC processes these print jobs and provides these as images to the attached +DC. The TOE can print these jobs in three different ways. The remote users can +select the way in which each of his jobs is printed from a printer settings dialog box +on the screen of their PC. +Automatic printing +The TOE receives a print job from a remote end-user or from an inserted USB +memory stick, and stores it in a queue. Once this job is the first one in the queue, +the TOE processes this print job into images, and sends these images to the +attached DC for printing. +ST-Océ DAC R10.1.5-3.3 14 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Mailbox printing +The TOE receives a print job from a remote end-user or from an inserted USB +memory stick, and stores it internally. The end-user then has to go physically to the +DC (become a local end-user) and identify himself at the Local User Interface of +the DC (LUI) either by selecting his name from a list displayed on the LUI screen +or by using the optional fingerprint sensor. Only after this, will the TOE process +the job. The resulting images are sent to the attached DC for printing. +The fingerprint sensor is an optional feature of the MFD that is not always present. +The sensor hardware is not part of the TOE but is part of the DC +(see figure 3) and connects to the TOE via a TOE-DC USB cable. The software +support for the use of the sensor is always present in the TOE. The user +identification credentials can either be stored in a remote LDAP server or in an +internal database within the DAC. The internal database within the DAC is part of +the TOE but is not security enforcing. +Secure printing +This is similar to mailbox printing, with two differences: +• When submitting the print job, the remote end-user adds a job-specific +PINcode that has a length of 4 to 6 digits to the job. +• The PINcode is stored in the DAC. +• After identifying himself at the LUI of the DC as described in mailbox +printing, the local end-user also has to provide the job-specific PINcode in +order to authenticate himself. The DC interrogates the DAC as to the +validity of the PIN. If correct, the print job data is released by the DAC and +is sent to the DC. A replay attack with an intercepted PIN is countered by +shredding the print job data immediately after the print job is completed. +The end-users and interfaces they interact with are depicted in Figure 4. +Digital +Copier (DC) +DAC +MFD +Network +Remote end-user +Local end-user +LUI +LUI +Network +Network +Figure 4: End-users and interfaces for printing +The TOE is configured to destroy the data relating to secure print jobs (print jobs +submitted to the mailbox with an associated PIN), non-secure print jobs, scan jobs +and temporary files. +ST-Océ DAC R10.1.5-3.3 15 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +This is achieved by writing over the job related data with other data, thereby +making it difficulty to retrieve the original data. +The TOE administrators can select the number of write iterations and at what +moment the shredding takes place. The first iteration takes place after the data is +released. The remaining iterations can take place immediately (synchronous) or +with low priority in the background (asynchronous). +Additionally, the TOE is also configured to shred all data at the end of each +working day by specifying a specific time interval no greater than once every 24 +hours. +ST-Océ DAC R10.1.5-3.3 16 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +The TOE controls print jobs that are re-routed to DACs elsewhere on the +network +Local end-users can re-route print jobs that have been submitted to their mail box +(see mail box printing above) to other DACs that are attached on the network. This +functionality does not support the re-routing of secure print jobs (see secure +printing above). +This functionality is provided for a situation whereby the remote end-user, having +submitted a print job to a DAC, walks to another MFD located elsewhere in the +operational environment and thereby becomes a local end-user at a DAC where the +print job is not located. They can then re-route their mail box print job from the +original DAC to another MFD and print their document there. The original DAC +maintains a list of ‘friendly DACs’ (officially known as smart mailbox members) +that can request mailbox print jobs to be re-routed. The re-routing of secure print +jobs is not permitted. +The local end-user must identify himself by selecting their name or my entering a +value which will be used to retrieve their identification details from a LDAP server +located elsewhere on the network. +The end-users and interfaces they interact with are depicted in Figure 5 +Network +Remote end-user +Digital +Copier (DC) +DAC +MFD +LUI +Network +Digital +Copier (DC) +DAC +MFD +LUI +LUI +Network +Network +Digital +Copier (DC) +DAC +MFD +LUI +LUI +Network +Network +Local end-user +Local end-user +Figure 5: End-users and interfaces for printing +ST-Océ DAC R10.1.5-3.3 17 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +The TOE controls scan jobs +Local end-users can scan documents on the DC, and the resulting images will then +be submitted to the TOE. The TOE can process the images to a variety of file +formats and then transfer the resulting files by ftp to an ftp-server on the network +or by SMTP to an e-mail server on the network or to a USB memory stick if +present on the DC LUI console. +The end-users and interfaces they interact with are depicted in Figure 6. +Digital +Copier (DC) +DAC +MFD +Network +Local end-user +LUI +Network +FTP-server +E-Mail server +Digital +Copier (DC) +DAC +MFD +Network +Local end-user +LUI +LUI +Network +Network +FTP-server +E-Mail server +Figure 6: End-users and interfaces for scanning +The TOE can be managed +As indicated in the previous sections, the MFD (of which the TOE is a part) +supports local and remote end-users. The MFD also supports various +administrators, which are described briefly here: +Key Operator: These are typically administrators or secretaries from the +organization owning/renting the TOE. They can interact with the DC through the +LUI, and through this interaction have access to a limited amount of non-security +related settings of the TOE. +Remote System administrator (HTTPS): These are remote administrators, typically +a network administrator from the organization owning/renting the TOE. They can +change a less limited set of settings of the TOE through a HTTP over SSL +connection (HTTPS). The remote administrator can identify the TOE via a +ST-Océ DAC R10.1.5-3.3 18 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +certificate. Help files for the administrator are also delivered via the HTTPS +connection. Web pages that are delivered via the HTTPS connection are ‘non- +cacheable’. +Remote System administrator (SNMP): These are remote administrators, typically a +network administrator from the organization owning/renting the TOE. They can +read and write a limited set of non-security related settings of the TOE through a +SNMP connection. +Service engineer: These are local administrators, and are typically employed by +Océ. They have access through a USB connection to a wide range of settings on the +TOE and the DC. The TOE connection is PIN code protected. +The various administrators and the interfaces through which they interact with the +TOE are depicted in Figure 7. +Digital +Copier (DC) +DAC +MFD +Remote system +administrator +(HTTPS and SNMP) +Key-operator +LUI +LUI +USB +USB +Network +Network +Network +Service +Engineer +Figure 7: MFD Administrators and interfaces +ST-Océ DAC R10.1.5-3.3 19 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +The TOE has minimized all other functionality +The TOE supports TCP/IP: all other network protocols are disabled. The TOE +manufacturer has closed all network ports except those that are absolutely +necessary to its functioning. This includes the physical connectors on the TOE. The +TOE has further restricted the functionality behind each open network port to that +which is absolutely necessary to its functioning. This is done to maximize the +integrity of the TOE itself and minimize the risk of the TOE being infected or +hacked and subsequently being used as a stepping-stone to damage the network. +The availability of security related functionality +As depicted in Figure 7, The Key Operator is not able to influence the security of +the TOE as they have no access to security settings via the DC. The Service +Engineer cannot influence the security of the TOE via the interface to the DC. +Because the Key Operator and Local End-User cannot access security related +settings on the DAC, they cannot affect the TOE. For the sake of clarity, Figure 8 +shows the interfaces to the TOE and the subjects that can access and manage TOE +security settings. +DAC +Remote system +administrator +USB +USB +Network +Network +Network +Service +Engineer +Figure 8: TOE Administrators and interfaces +ST-Océ DAC R10.1.5-3.3 20 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +3. TOE Security Environment +The TOE is intended to provide scan and print functionality to users requiring a +low to moderate level of security assurance. Additional environmental and +organisational requirements support the security functionality provided by the +TOE. +3.1 Definition of subjects, objects and operations +To facilitate definition of threats, OSPs, assumptions, security objectives and +security requirements, we define the subjects, objects and operations to be used in +the ST first. +3.1.1 Non-human subjects +The systems (equipment) that will be interacting with the TOE (in alphabetical +order): +S.DIGITAL_COPIER A device that physically renders a print job or scans in a +job and is attached to the TOE via a cable. +S.NETWORK_DEVICE An unspecified network device that is logically +connected to the TOE and is located in the same +operating environment (office building). +3.1.2 Human subjects +The users (or subject acting on behalf of that user) that will be interacting with the +TOE are: +S.REMOTE_USER A person located within the operational environment of +the TOE who is aware of how the TOE should be used. +They are not malicious towards the TOE but are +capable of making mistakes when operating it. +S.REMOTE_USER typically sends print jobs from their +desktop PC to the TOE +S.LOCAL_USER A person located within the operational environment of +the TOE who is aware of how the TOE should be used. +They are not malicious towards the TOE but are +capable of making mistakes when operating it. They +may be interested in the content of other users’ print +jobs. S.LOCAL_USER typically interacts indirectly +with the TOE via S.DIGITAL_COPIER +S.REMOTE_SYSADMIN A person who can change some TOE settings using a +Océ supplied interface. They are trusted by the +ST-Océ DAC R10.1.5-3.3 21 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +customer and are adequately trained. They are capable +of making mistakes. They connect to the TOE via the +network. +S.SERVICE_ENGINEER A person with elevated privileges above those of +S.LOCAL_USER and S.REMOTE_SYSADMIN. This +person is an Océ representative and accesses the TOE +locally through an USB interface. They are not +malicious towards the TOE but are capable of making +mistakes when operating it. +S.THIEF S.THIEF (cleaning staff, burglar, visitor, in rare cases a +user) will have no moral issues in stealing the TOE or +parts of it. Once S.THIEF has stolen the TOE or parts +of it he may attempt to retrieve earlier printer and +scanner jobs from the TOE. S.THIEF is not able to steal +Copy jobs3 as they never enter the TOE. S.THIEF is +opportunistic and is not a recurring visitor to the +environment in which the TOE operates. +Note that the key operator is not included as a subject that interacts with the TOE +as he is not able to make changes to the security settings of the TOE and is +therefore equal to S.LOCAL_USER with respect to security. +3.1.3 Objects +The (data) objects for the TOE that the TOE will operate upon are: +D.SECURE_PRINT_JOB A secure print job submitted by S.REMOTE_USER to +the TOE over the network or by S.LOCAL_USER via a +USB memory stick that has been inserted into the MFD +LUI console.. D.SECURE_PRINT_JOB has the +Security Attribute Username/PIN associated with them. +D.PRINT_JOB A non D.SECURE_PRINT_JOB type print job +submitted either by S.REMOTE_USER to the TOE +over the network, by S.LOCAL_USER via a USB +memory stick that has been inserted into the MFD LUI +console or by another MFD located elsewhere on the +network. +D.SCAN_JOB Data that is scanned in via the DC attached to the DAC. +Data is sent from the TOE to a FTP or e-mail server +located elsewhere on the network or to a USB memory +stick that has been inserted into the MFD LUI console. +3 See . +Figure 1: Relation between DC, DAC and MFD +ST-Océ DAC R10.1.5-3.3 22 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +D.INBOUND_TRAFFIC TCP/IP network packets received by the TOE. +D.INBOUND_TRAFFIC has the Security Attributes +Port and Protocol associated with it. +D.OUTBOUND_TRAFFIC TCP/IP network packets sent by the TOE. +D.OUTBOUND_TRAFFIC has the Security Attributes +Port and Protocol associated with it. +3.1.4 Operations +3.1.5 +The operations that are performed by the TOE are: +R.RELEASE_JOB The TOE processes and releases a +D.SECURE_PRINT_JOB to the attached DC. +R.PRINT_JOB The TOE processes and releases a D.PRINT_JOB to the +attached DC. +R.FORWARD_JOB The TOE processes and releases a D.PRINT_JOB to the +attached network. +R.SCAN_JOB The TOE processes and releases a D.SCAN_JOB to the +attached network +R.SHRED_JOB The TOE shreds redundant D.SECURE_PRINT_JOB, +D.PRINT_JOB, D.SCAN_JOB data objects from the +TOE’s hard disk. +R.ENTER_TOE The TOE allows D.INBOUND_TRAFFIC to enter its +boundary. +R.EXIT_TOE The TOE allows D.OUTBOUND_TRAFFIC to leave +its boundary. +3.2 Assumptions +A.DIGITAL_COPIER It is assumed that the TOE has a S.DIGITAL_COPIER +device attached to it. S.DIGITAL_COPIER is an Océ +VarioPrint 1055-75, 2062 or 2075 Digital Copier. When +D.SECURE_PRINT_JOB is sent to +S.DIGITAL_COPIER, R.REMOTE_USER will specify +a PIN of at least 4 and a maximum of 6 digits and, +whether the job is printed or not, will delete the job on +the same workday. Employees are aware of this +requirement. +ST-Océ DAC R10.1.5-3.3 23 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +A.ENVIRONMENT The TOE assumes that its operational environment is a +regular office environment. Physical access to the +operational environment is restricted. No parts of the +TOE will leave the operational environment during +normal operational ownership unless the product is +being returned to the manufacturer as part of flaw +remediation or end of ownership. The environment +contains non-threatening office personnel +(S.LOCAL_USER, S.REMOTE_USER, +S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER). S.THIEF is only rarely +present in this environment and not on a recurring basis. +A.SECURITY_POLICY It is assumed that the customer will have a Security +Policy governing the use of IT products by employees +in the customer organisation. The TOE assumes that the +network to which it is attached is protected by security +measures that are intended to prevent mal-ware, viruses +and network traffic, not related to the working of the +operational environment, entering the network to which +it is attached. Although the Virus database files and +various patches are kept up to date, the policy +recognises that new threats emerge over time and that +occasionally they may enter the environment from +outside and provides measures to help limit the damage. +The Policy will define how IT products are protected +against threats originating from outside the customer +organisation. The organisation’s employees are aware +of, are trained in and operate according to the terms and +conditions of the policy. The policy also covers +physical security and the need for employees to work in +a security aware manner including the usage of the +TOE. The Security Policy describes and requires a low +to medium level of assurance (EAL2) for the TOE. +A.SHREDDING The TOE assumes that the customer will not disable the +shredding operation for D.PRINT_JOB and +D.SCAN_JOB data objects4. +A.SLA It is assumed that any security flaws discovered in the +TOE will be repaired by Océ (possibly as part of an +agreed service level agreement). +4 The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible +to disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the +TOE claim is no longer valid. +ST-Océ DAC R10.1.5-3.3 24 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +3.3 Threats +T.RESIDUAL_DATA S.THIEF steals the TOE or parts thereof and retrieves +stored or deleted D.SECURE_PRINT_JOB. The +motivation for S.THIEF to attack the TOE is low +because it requires sophisticated data recovery +equipment that can recover data even after the +shredding mechanism has executed to recover data that +has little value to the attacker. +T.NOSY_USER S.LOCAL_USER accesses a D.SECURE_PRINT_JOB +that does not belong to him/her that is stored in the +DAC. The motivation to carry out this attack is low. +T.MALWARE A S.NETWORK_DEVICE is used by malware that +may have entered the TOE’s operational environment to +launch an attack on the integrity of the TOE. +Alternatively S.DIGITAL_COPIER is used by malware +to launch an attack on the integrity of +S.NETWORK_DEVICE. The motivation to carry out +this attack is low. +3.4 Organisational Security Policies +P.JOB_DELETE When D.SECURE_PRINT_JOB, D.PRINTJOB and +D.SCANJOB objects are no longer needed by the TOE, +they will be deleted by the TOE at the earliest available +opportunity in a manner that meets a recognised +standard. +P.TOE_ADMINISTRATION The modification of TOE security settings shall be +restricted to S.SERVICE_ENGINEER and +S.REMOTE_SYSADMIN. +ST-Océ DAC R10.1.5-3.3 25 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +4. Security Objectives +4.1 TOE Security Objectives +This section consists of two groups of objectives: +• Functional Security Objectives for the TOE, that deal with what the TOE must +do; +• Assurance Security Objectives for the TOE, that deal with how much +assurance one should have in that the TOE does what it is expected to. +4.1.1 Functional Security Objectives for the TOE +O.F.INBOUND_FILTER The TOE will only support TCP/IP as a network +protocol. D.INBOUND_TRAFFIC shall only enter the +TOE (R.ENTER_TOE) if its Port is specified as being +open in Appendix E. +O.F.OUTBOUND_FILTER The TOE will only support TCP/IP as a network +protocol. D.OUTBOUND_TRAFFIC shall only exit the +TOE (R.EXIT_TOE) if its Port is specified as being +open in Appendix E. +O.F.JOB_RELEASE The TOE shall only perform R.RELEASE_JOB once +S.LOCAL_USER has successfully identified and +authenticated himself as owner of +D.SECURE_PRINT_JOB. +O.F.JOB_SHRED The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is +no longer required or during the start-up procedure if +residual D.SECURE_PRINT_JOB, D.PRINT_JOB and +D.SCAN_JOB is found on the TOE’s hard disk. The +first write cycle will either immediately after the job has +completed or once the TOE enters an idle state. The +data shall be deleted according to a recognised standard +so that it cannot be reconstituted. +O.F.AUTHENTICATE The TOE ensures that S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER must authenticate themselves +to the TOE before allowing them to modify the TOE +security settings. +ST-Océ DAC R10.1.5-3.3 26 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +O.F.SELFTEST The TOE will perform check of the integrity of the TSF +when it is re-booted. +4.1.2 Assurance Security Objectives for the TOE +O.A.SLA The TOE shall be evaluated to ALC_FLR.1Security +Objectives for the environment +O.E.ENVIRONMENT The environment into which the TOE will be introduced +is protected by physical measures that limit access +S.LOCAL_USER, S.REMOTE_USER, +S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER. The physical measures are +adequate to prevent all other persons but a determined +S.THIEF who deliberately wants to steal part of or all +of the TOE by methodically planning an attack on the +TOE over a period of time. +O.E.NETWORK_POLICYThe network to which the TOE is attached shall be +adequately protected so that the TOE is not visible +outside the network. In addition, measures shall be +implemented to only allow connections to the TOE +from devices situated on the same network. No inbound +connections from external networks are allowed. The +network scans data for mal-ware (viruses and worms). +This type of data may originate from either inside or +outside the network to which the TOE is attached and +includes the TOE itself. +O.E.DEPLOYMENT The network (LAN) to which the TOE is attached is +well managed with established procedures for +introducing and attaching new devices to the network. +O.E.DIGITAL_COPIER The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 1055-75, 2062 or 2075 +Digital Copier that provides a Local User Interface and +Glass Plate through which S.LOCAL_USER can +interact easily with the TOE (selecting username and +entering PINcode). When sending a +D.SECURE_PRINT_JOB to the Digital Copier, +S.REMOTE_USER shall specify a PIN that consists of +a minimum of 4 and a maximum of 6 digits and, +whether or not it is printed, will ensure the print job is +deleted from the TOE during the same workday that the +job is sent. The DC provides a glass plate and LUI with +which S.LOCAL_USER can perform scan jobs. The ST +claim is not valid when the TOE is used with any other +ST-Océ DAC R10.1.5-3.3 27 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +type of Océ Digital Copier. The TOE will not work +with any other device (including Digital Copiers from +any other manufacturers). +O.E.SHREDDING The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and +D.SCAN_JOB data objects5 +5 The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible +to disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the +TOE claim in no longer valid. +ST-Océ DAC R10.1.5-3.3 28 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +5. IT Security Requirements +5.1 TOE Security Functional Requirements +5.1.1 SFRs for Filtering +FDP_ACC.1 Subset access control +FDP_ACC1.1 The TSF shall enforce the NETWORK_POLICY on: +• D.INBOUND_TRAFFIC +• D.OUTBOUND_TRAFFIC +Dependencies: FDP_ACF.1 (included) +FDP_ACF.1 Security attribute based access control +FDP_ACF1.1 The TSF shall enforce the NETWORK_POLICY to +objects based on the following: +• Port; +• Protocol. +FDP_ACF.1.2 The TSF shall enforce the following rules to determine if an +operation among controlled subjects and controlled objects is allowed: +• The TOE shall perform R.ENTER_TOE on +D.INBOUND_TRAFFIC only if +Port(D.INBOUND_TRAFFIC) = DAC, ICMP, DNS, DHCP, +LPR, SMB, ENDPS, SLP, HTTP, HTTPs, FTP, Secure FTP, +SNMP, Printlogic/UDS/IntraLogic, SMTP, Secure SMTP, +LDAP, Secure LDAP, Multicast MDNS, “RAW_SOCKET6”, +NLTM, Kerberos, SSH and Protocol = TCP/IP +• The TOE shall perform R.EXIT_TOE on +D.OUTBOUND_TRAFFIC only if +Port(D.INBOUND_TRAFFIC) = DAC, ICMP, DNS, DHCP, +LPR, SMB, ENDPS, SLP, HTTP, HTTPs, FTP, Secure FTP, +SNMP, Printlogic/UDS/IntraLogic, SMTP, Secure SMTP, +LDAP, Secure LDAP, Multicast MDNS, “RAW_SOCKET”, +NLTM, Kerberos, SSH and Protocol = TCP/IP +6 It is possible to submit raw print job data via a raw socket to the TOE. The words +‘raw socket’ are used to refer to the port in the firewall through which the data can +flow. +ST-Océ DAC R10.1.5-3.3 29 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +FDP_ACF.1.3 The TSF shall explicitly authorise access of subjects to +objects based on the following additional rules: +• none +FDP_ACF.1.4 The TSF shall explicitly deny access of subjects to objects +based on the following additional rules: +• none +Dependencies: FDP_ACC.1 (included) +FMT_MSA.3 (included) +5.1.2 SFRs for Job Release +FIA_UID.1 Timing of identification (Secure Printing) +FIA_UID.1.1 The TSF shall allow R.PRINT_JOB, R.FORWARD_JOB +and R.SCAN_JOB on behalf of the S.LOCAL_USER to be performed +before S.LOCAL_USER is identified. +FIA_UID.1.2 The TSF shall require S.LOCAL_USER to be successfully +identified before allowing R.RELEASE_JOB on behalf of +S.LOCAL_USER. +Dependencies: No dependencies. +FIA_UAU.1 Timing of authentication +FIA_UAU.1.1 The TSF shall allow R.PRINT_JOB, R.FORWARD_JOB +and R.SCAN_JOB on behalf of the S.LOCAL_USER to be performed +before S.LOCAL_USER is authenticated. +FIA_UAU.1.2 The TSF shall require S.LOCAL_USER to be successfully +authenticated before allowing R.RELEASE_JOB on behalf of +S.LOCAL_USER. +Dependencies: FIA_UID.1 (included) +ST-Océ DAC R10.1.5-3.3 30 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +5.1.3 SFRs for Shredding +FDP_RIP.1 Subset residual; information protection +FDP_RIP.1.17 The TSF shall ensure that any previous information content +of a resource is made unavailable upon the +deallocation of the resource from the following objects: +D.SECURE_PRINT_JOB, D.PRINT_JOB, D.SCAN_JOB +• on deletion of R.RELEASE_JOB, R.PRINT_JOB, +R.FORWARD_JOB and R.SCAN_JOB by S.LOCAL_USER, +S.REMOTE_SYSADMIN or S.SERVICE_ENGINEER +• on start-up or reboot of the TOE.8 +Dependencies: No dependencies. +5.1.4 SFRs for Management +FIA_UID.2 User identification before any action +FIA_UID.2.1 The TSF shall require S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER to identify themselves before allowing any +other TSF-mediated actions on the behalf of that user. +Dependencies: No dependencies. +FIA_UAU.2 User authentication before any action +FIA_UAU.2.1 The TSF shall require S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER to be successfully authenticated before +allowing any other TSF-mediated actions on the behalf of that user. +Dependencies: FIA_UID.1 (included) +7 This is a refinement to show when the de-allocation is to take place. When you +delete a file, the OS modifies the relevant entry from the file allocation table. The +data remains on the hard disk and can be retrieved with suitable tools. This is why +the TOE shreds the data. What is happening is that: +• When the job manager discards data, it moves the data reference in the file +allocation table to a location that is dedicated to the E-shred subsystem. +• The E-shred subsystem then erases the data (makes the data unavailable) by +overwriting the data several times. +• The E-shred service then removes the reference to the erased data from the +file allocation table so that the erased disk resources can be re-used. +8 The DAC can experience errors and sometimes require restarting to handle these +errors (or users restart the photocopier anyway in an attempt to handle these +errors). It is therefore important that the photocopier also deletes data whenever it +is restarted. +ST-Océ DAC R10.1.5-3.3 31 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +FMT_MOF.1 Management of security functions behaviour +(S.REMOTE_SYSADMIN) +FMT_MOF.1.1 The TSF shall restrict the ability to modify the behaviour +of the functions described in appendix D for S.REMOTE_SYSADMIN +to S.REMOTE_SYSADMIN. +Dependencies: FMT_SMF.1 (included) +FMT_SMR.1 (included) +FMT_MOF.1 Management of security functions behaviour +(S.SERVICE_ENGINEER) +FMT_MOF.1.1 The TSF shall restrict the ability to modify the behaviour +of the functions described in appendix D for S.SERVICE_ENGINEER +to S.SERVICE_ENGINEER.. +Dependencies: FMT_SMF.1 (included) +FMT_SMR.1 (included) +FMT_MSA.1 Management of security attributes +FMT_MSA.1.1 The TSF shall enforce the NETWORK_POLICY to +restrict the ability to change the default 9 security attributes Port and +Protocol to nobody.10 +Dependencies: FDP_ACC.1 (included) +FMT_SMF.1 (included) +FMT_SMR.1 (included) +FMT_MSA.3 Static Attribute initialisation +FMT_MSA.3.1 The TSF shall enforce the NETWORK_POLICY to +provide restrictive default values for security attributes that are used to +enforce the SFP. +FMT_MSA.3.2 The TSF shall allow nobody11 to specify alternative initial +values to override the default values when an object or information is +created. +Dependencies: FMT_MSA.1 (included) +FMT_SMR.1 (included) +9 For grammatical and clarity reasons, the underscore between change and default +was removed and the word ‘the’ before security attributes was moved to between +’change’ and ‘default’. +10 The TOE does not allow any users to change any security attributes in the +evaluated configuration. +11 The word ‘the’ before ‘nobody’ was removed for grammatical reasons. +ST-Océ DAC R10.1.5-3.3 32 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +FMT_SMF.1 Specification of Management Functions +FMT_SMF.1.1 The TSF shall be capable of performing the following +security management functions as described in appendix D: +Functions related to R.SHRED_JOB that are available to +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER +• Set the number of shred runs +• Set the shredding moment +• Shred print jobs: yes/no (D.PRINT_JOB)12 +• Shred scan jobs: yes/no (D.SCAN_JOB)13 +Dependencies: No dependencies. +FMT_SMR.1 Security roles +FMT_SMR.1.1 The TSF shall maintain the roles +S.REMOTE_SYSADMIN, S.SERVICE_ENGINEER and +S.LOCAL_USER. +FMT_SMR1.2 The TSF shall be able to associate users with roles. +Dependencies: FIA_UID.1 (included) +5.1.5 SFRs for Protection of the TSF itself +FPT_SEP.1 TSF domain separation +FPT_SEP1.1 The TSF shall maintain a security domain for its own +execution that protects it from interference and tampering by untrusted +subjects. +FPT_SEP.1.2 The TSF shall enforce separation between the security +domains of subjects in the TSC. +Dependencies: No dependencies. +FPT_RVM.1 Non-bypassability of the TSP +FPT_RVM.1.1 The TSF shall ensure that TSP enforcement functions are +invoked and succeed before each function within the TSC is allowed to +proceed. +12 Disabling these functions will invalidate the Security Target claim. The functions +are available but there is an Organisational Security Policy that defines that they +should be enabled by default. +13 See footnote 12 +ST-Océ DAC R10.1.5-3.3 33 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Dependencies: No dependencies +FPT_TST.1 TSF testing +FPT_TST.1.1 The TSF shall run a suite of self tests during initial start-up +to demonstrate the correct operation of the TSF. +FPT_TST.1.2 The TSF shall provide authorised users with the capability to +verify the integrity of the TSF data. +FPT_TST.1.3 The TSF shall provide authorised users with the capability to +verify the integrity of stored TSF executable code. +Dependencies: FPT_AMT.1 (not included)14 +5.1.6 Strength-of-function claim +The Strength of function claim for all the probabilistic functions and mechanisms +provided by the TOE is SOF-basic. +5.2 TOE Security Assurance Requirements +The TOE security assurance requirements are conformant to the CC Evaluation +Assurance Level EAL2 +ALC_FLR.1. In detail the following Security Assurance +Requirements are chosen for the TOE: +Components for Configuration management (Class ACM) +ACM_CAP.2 Configuration Items +Components for Delivery and operation (Class ADO) +ADO_DEL.1 Delivery procedures +ADO_IGS.1 Installation, generation, and start-up procedures +Components for Development (Class ADV) +ADV_FSP.1 Informal functional specification +ADV_HLD.1 Descriptive high-level design +ADV_RCR.1 Informal correspondence demonstration +Components for Guidance documents (Class AGD) +AGD_ADM.1 Administrator guidance +AGD_USR.1 User guidance +Components for Life cycle support (Class ALC) +ALC_FLR.1 Basic flaw remediation +14 The dependency FPT_AMT.1 Abstract machine is not included, because the +underlying IT platform does not contribute to the TOE requirements (See part 1, +paragraph 147). The underlying PC platform is a standard PC platform that works. +Testing of the platform does not provide assurance that will support the claims at +the level of EAL2, as functional testing of the DAC in its operational environment +is performed (it does what it should do). +ST-Océ DAC R10.1.5-3.3 34 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Components for Tests (Class ATE) +ATE_COV.1 Evidence of coverage +ATE_FUN.1 Functional testing +ATE_IND.2 Independent testing – sample +Components for Vulnerability assessment (Class AVA) +AVA_SOF.1 Strength of TOE security function evaluation +AVA_VLA.1 Developer vulnerability analysis +5.3 Security Requirements for the IT Environment +None15. +5.4 Explicitly stated requirements +None. +15 The ST defines security objectives for the IT environment in which the TOE will +operate. In accordance with the Common Criteria Standard, these objectives are +not mapped to Security Requirements for the IT Environment. +ST-Océ DAC R10.1.5-3.3 35 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +6. TOE Summary Specification +6.1 IT Security Functions +SF.FILTERING +The TOE uses a built-in firewall to block ports and ICMP commands that are not +needed for the operation of the TOE. In addition all network protocols that are not +supported in the security mode ‘high’ are disabled. +By default no traffic is permitted to enter or leave to TOE except for the TCP/IP +packets and the restricted ICMP command set via the ports defined in the rule +table. +SF.JOB_RELEASE +The TOE verifies the identity and associated PIN code that was send with the print +job when submitted by S.REMOTE_USER with Username/PIN received from +S.LOCAL_USER via the DC interface. If verification is successful, the secure print +job is released for printing. +SF.SHREDDING +Once a print or scan job has been deleted, the data is overwritten. It is possible to +perform multiple write cycles, with various patterns being applied. At least three +write cycles will always take place. S.REMOTE_SYSADMIN or +S.SERVICE_ENGINEER can choose the moment when the shredding cycle +commences. The first write cycle can occur immediately after the print job has +completed or to improve job throughput performance, once the TOE enters an idle +state. The remaining cycles may also take place immediately after the print job has +been completed or also at the time when the TOE enters an idle state. The +shredding mechanism supports US DOD 5220-22m and Gutmann algorithms16. +SF.MANAGEMENT +The TOE can be managed in relation to SF.JOB_RELEASE and SF.SHREDDING. +In order to gain access, the S.REMOTE_SYSADMIN or S.SERVICE_ENGINEER +must authenticate themselves to the TOE. S.SERVICE_ENGINEER does this by +entering a password. S.REMOTE_SYSADMIN authenticates himself by entering a +password. The TOE is delivered by Océ with pre-configured in the security mode +‘high’. This provides the most restrictive set of operational settings. +SF.SELFTEST +During start-up the TOE will check the hard disk files system and the integrity of +the software the forms the TOE. If defects in the hard disk files system are +16 See Appendix B – References for more information relating to these algorithms +ST-Océ DAC R10.1.5-3.3 36 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +detected, the corrupted file system will be automatically repaired. The software +includes all executables (operating system executables, Océ authored DAC +executables, Third party software executables and DAC system settings). If defects +are detected, the corrupted data will be replaced by correct shadow data. +6.1.1 Probabilistic functions and mechanisms +The TOE contains probabilistic functions and mechanisms in the form of +passwords and PIN numbers that are used for the authentication of +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER respectively. There is +also a probabilistic function and mechanisms that protects +D.SECURE_PRINT_JOB and is used for the authentication of S.LOCAL_USER. +Subject Function Mechanism +S.REMOTE_SYSADMIN SF.MANAGEMENT, +SF.SHREDDING +For HTTPS based +management. an alpha- +numeric password (ASCII +characters 32-126) ranging +in length between 5 and 50 +digits is used. After the first +failed attempt, a delay +mechanism is invoked. +There are no security +management functions or +access to the assets that the +TOE protects that are +accessible via the SNMP +connection. +S.SERVICE_ENGINEER SF.MANAGEMENT, +SF.SHREDDING +An alpha-numeric password +(ASCII characters 32-126) +ranging in length between 6 +and 50 digits is used. The +default password is changed +during the customer site +installation process. +S.LOCAL_USER SF.JOB_RELEASE A numeric pin code varying +in length from 4 to 6 digits. +ST-Océ DAC R10.1.5-3.3 37 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +6.1.2 Strength of function claim +The SFRs FIA_UID.1, FIA_UAU.1, FIA_UID.2 and FIA_UAU.2 require the TOE +to provide security functions that provide identification/authentication functionality +that meets a SOF claim of ‘SOF basic’. +A strength of function claim of ‘SOF basic’ is made for the security functions +SF.JOB_RELEASE and SF.MANAGEMENT. These are the security functions +that implement FIA_UID.1, FIA_UAU.1, FIA_UID.2 and FIA_UAU.2. +6.2 Assurance Measures +Appropriate assurance measures are employed to satisfy the security assurance +requirements. The following list gives a mapping between the assurance +requirements and the documents containing the information needed for the +fulfilment of the respective requirement. +Configuration Management (ACM) assurance measures +The document containing the description of the configuration management system +as required by ACM is: +• Océ-Technologies B.V., Configuration Management for the Oce DAC +R10.1.5.doc +Delivery and Operation (ADO) assurance measures +The document containing the description of all steps necessary for secure +installation, generation and start-up of the TOE is: +• Océ Engineering Venlo, Delivery and developer security for DAC +R10.1.5.doc +Development (ADV) assurance measures +The developer documentation for ADV can be found in: +• Océ-Technologies B.V., Functional Specification for DAC R10.1.5.doc +• Océ-Technologies B.V., High Level Design for DAC R10.1.5.doc +Guidance (AGD) assurance measures +The document containing the guidance for Oce service engineers is maintained on +the service engineers laptop with the reference: +• Océ-Technologies B.V., Océ Product Installation Guide, +and is not a publicly available document. +The guidance for the customer administrators is in: +• Océ-Technologies B.V., Océ System Configuration On-line help, +ST-Océ DAC R10.1.5-3.3 38 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +This guidance has been supplemented as appropriate for the claim in this Security +Target with the Common Criteria Certified Configuration of the DAC R10.1.5. +This document is not delivered to the customer with the TOE and must be +downloaded from the support section from Océ corporate website (www.oce.com). +Life Cycle (ALC) assurance measures +The physical, procedural, personnel and other security measures applied by the +developer can be found in: +• Océ-Technologies B.V., Flaw remidiation for DAC R10.1.5.doc +Test (ATE) assurance measures +The developer test documentation can be found in: +• Océ-Technologies B.V., Test Documentation for the DAC R10.1.5.doc +Vulnerability Assessment (AVA) assurance measures +An analysis of vulnerabilities can be found in: +• Océ-Technologies B.V., Strength of function analysis for DAC +R10.1.5.doc +• Océ-Technologies B.V., Vulnerability analysis for DAC R10.1.5.doc +ST-Océ DAC R10.1.5-3.3 39 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +7. PP Claims +This Security Target TOE does not claim compliance to a Protection Profile. +ST-Océ DAC R10.1.5-3.3 40 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +8. Rationale +8.1 Security Objectives Rationale +For each assumption, threat and OSP we demonstrate that it is met by the security +objectives. The tracings are provided in the following table. +The individual rationales demonstrating that the threats, assumptions and +organizational security policies are met are described as follows: +O.F.INBOUND_FILTER +O.F.OUTBOUND_FLITER +O.F.JOB_RELEASE +O.F.JOB_SHREAD +O.F.AUTHENTICATE +O.F.SELFTEST +O.A.SLA +O.E.ENVIRONMENT +O.E.NETWORK_POLICY +O.E.DEPLOYMENT +O.E.DIGITAL_COPIER +O.E.SHREDDING +A.DIGITAL_COPIER X +A.ENVIRONMENT X +A.SECURITY_POLICY X X X X +A.SHREDDING X +A.SLA X +T.RESIDUAL_DATA X +T.NOSY_USER X +T.MALWARE X X X +P.TOE_ADMINISTRATION X +P.JOB_DELETE X +A.DIGITAL_COPIER +The assumption is met by the following TOE assurance objective: +O.E.DIGITAL_COPIER - The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 2045-65, 2050-70 or 31x5 Digital Copier that +provides a Local User Interface and Glass Plate through which S.LOCAL_USER +can interact easily with the TOE (selecting Username and entering PINcode). +When sending a D.SECURE_PRINT_JOB to the Digital Copier, +ST-Océ DAC R10.1.5-3.3 41 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +S.REMOTE_USER is aware that they must specify a PIN that consists of a +minimum of 4 and a maximum of 6 digits and shall delete the job on the same +workday that it is sent to the TOE, whether or not it is printed. The DC provides a +glass plate and LUI with which S.LOCAL_USER can perform scan jobs. The ST +claim is not valid when the TOE is used with any other type of Océ Digital Copier. +The TOE will not work with any other device (including Digital Copiers from any +other manufacturers). +Although the assumption states that a Digital Copier from Océ will be used, the +Digital Copier is an un-trusted device. The chances of an attack on the LAN being +mounted via the Digital Copier interface are reduced by the TOE filtering the +outbound traffic so that only ports that are absolutely necessary for the operation of +the TOE are open. Requiring D.SECURE_PRINT_JOB to be deleted from the +TOE on the same workday it is sent reduces the time available to an attacker in +which the data object is vulnerable. Additionally the access to the job is limited by +specifying a minimum PIN length. +A.ENVIRONMENT +The assumption is met by the following objectives for the environment: +O.E.ENVIRONMENT - The environment into which the TOE will be introduced is +protected by physical measures that limit access S.LOCAL_USER, +S.REMOTE_USER, S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER. +The physical measures are adequate to prevent all other persons but a determined +S.THIEF who deliberately wants to steal part of or all of the TOE by methodically +planning an attack on the TOE over a period of time. Normally, unless a fault +develops in the TOE, the TOE will no leave the environment into which it is +introduced +A.SECURITY_POLICY +The assumption is met by the following objectives for the environment: +O.E.NETWORK_POLICY - The network to which the TOE is attached shall be +adequately protected so that the TOE is not visible outside the network. In addition, +measures shall be implemented to only allow connections to the TOE from devices +situated on the same network. No inbound connections from external networks are +allowed. The network scans data for mal-ware (viruses and worms). This type of +data may originate from either inside or outside the network to which the TOE is +attached and includes the TOE itself. +O.E.DEPLOYMENT - The network (LAN) to which the TOE is attached is well +managed with established procedures for introducing and attaching new devices to +the network. +ST-Océ DAC R10.1.5-3.3 42 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +O.E.DIGITAL_COPIER - The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 1055-75, 2062 or 2075 Digital Copier that provides +a Local User Interface and Glass Plate through which S.LOCAL_USER can +interact easily with the TOE (selecting Username and entering PINcode). When +sending a D.SECURE_PRINT_JOB to the Digital Copier, S.REMOTE_USER is +aware that they must specify a PIN that consists of a minimum of 4 and a +maximum of 6 digits and shall delete the job on the same workday that it is sent to +the TOE, whether or not it is printed. The DC provides a glass plate and LUI with +which S.LOCAL_USER can perform scan jobs. The ST claim is not valid when the +TOE is used with any other type of Océ Digital Copier. The TOE will not work +with any other device (including Digital Copiers from any other manufacturers). +O.E.SHREDDING – The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB data objects. +The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible to +disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the TOE +claim in no longer valid. +A.SHREDDING +The assumption is met by the following objectives for the environment: +O.E.SHREDDING – The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB data objects. +The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible to +disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the TOE +claim in no longer valid. +A.SLA +The assumption is met by the following TOE assurance objective: +O.A.SLA - The TOE shall be evaluated to ALC_FLR.1.There are measures in +place to repair faults in the TOE when they occur. +T.RESIDUAL_DATA +The threat is met by the following TOE functional objective: +O.F.JOB_SHRED - The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is no longer required or +during the start-up procedure if residual D.SECURE_PRINT_JOB, D.PRINT_JOB +and D.SCAN_JOB is found on the TOE’s hard disk. The first write cycle will +either immediately after the job has completed or once the TOE enters an idle state. +The data shall be deleted according to a recognised standard so that it cannot be +reconstituted. +ST-Océ DAC R10.1.5-3.3 43 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +‘Scrubbing’ the data from the hard disk when it is no longer needed helps prevent +the data been accessed by unauthorised persons. +T.NOSY_USER +The threat is met by the following TOE functional objective: +O.F.JOB_RELEASE - The TOE shall only perform R.RELEASE_JOB once +S.LOCAL_USER has successfully identified and authenticated himself as owner of +D.SECURE_PRINT_JOB. +By first requiring a print job owner to identify an authenticate himself before +printing can commence, observation of print job related data by casual users is +prevented. +T.MALWARE +The threat is met by the following objectives for the environment: +O.F.INBOUND_FILTER - The TOE will only support TCP/IP as a network +protocol. D.INBOUND_TRAFFIC shall only enter the TOE (R.ENTER_TOE) if +the Port is specified as being open. +The chances of mal-ware being accidentally sent to the TOE and causing a security +violation is limited by only opening the ports and enabling the protocols that are +absolutely necessary for the operation of the TOE. +O.F.OUTBOUND_FILTER - The TOE will only support TCP/IP as a network +protocol. D.OUTBOUND_TRAFFIC shall only exit the TOE (R.EXIT_TOE) if its +Port is specified as being open. +Although the TOE is designed, tested and configured with security as a main +concern, it is possible that vulnerabilities will be discovered in the future that could +be exploited in order to use the TOE as a launch pad for an attack. By only opening +the ports and enabling the protocols that are absolutely necessary for the operation +of the TOE, the chances of a successful attack launch are limited. +Although policy states that a Digital Copier from Oce will be used, the Digital +Copier is an un-trusted device. The chances of an attack on the LAN being +mounted via the Digital Copier interface are reduced by the TOE filtering the +outbound traffic so that only ports that are absolutely necessary for the operation of +the TOE are open. +O.F.SELFTEST – The TOE will perform check of the integrity of the TSF when it +is re-booted. +ST-Océ DAC R10.1.5-3.3 44 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +During start-up, the TOE checks to see if any of the TSF relevant files on the hard +disk have been modified. This can happen due to a malware attack but occurs more +often as a result of a power outage. Maintaining the integrity of the TOE gives +assurance in support of the claim that the TOE will not form a threat against it +operational environment. +P.JOB_DELETE +The policy requirement is met by the following TOE functional objective: +O.F.JOB_SHRED - The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is no longer required or +during the start-up procedure if residual D.SECURE_PRINT_JOB, D.PRINT_JOB +and D.SCAN_JOB is found on the TOE’s hard disk. The first write cycle will +either immediately after the job has completed or once the TOE enters an idle state. +The data shall be deleted according to a recognised standard so that it cannot be +reconstituted. +‘Scrubbing’ the data from the hard disk when it is not longer needed helps prevent +the data been accessed by unauthorised persons. +P.TOE_ADMINISTRATION +The policy requirement is met by the following TOE functional objective: +O.F.AUTHENTICATE - The TOE ensures that S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER must identify and authenticate themselves to the TOE +before allowing them to modify the TOE security settings. +ST-Océ DAC R10.1.5-3.3 45 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +8.2 Security Requirements Rationale +The purpose of the Security Requirements Rationale is to demonstrate that the +security requirements are suitable to meet the Security Objectives. +8.2.1 The SFRs meet the Security Objectives for the TOE +For each Security Objective for the TOE we demonstrate that it is met by the SFRs +as shown in the table below supported by the following rationals. +FDP +ACC1. +FDP +ACF.1 +FIA +UID.1 +FIA +UAU.1 +FDP +RIP.1 +FIA +UID.2 +FIA +UAU.2 +FMT +MOF.1 +FMT +MSA.1 +FMT +MSA.3 +FMT +SMF.1 +FMT +SMR.1 +FPT +SEP.1 +FPT +RVM.1 +FPT +TST.1 +O.F.INBOUND_FILTER X X X X X X +O.F.OUTBOUND_FILTER X X X X X X +O.F.JOB_RELEASE X X X X +O.F.JOB_SHREAD X X X +O.F.AUTHENTICATE X X X X X X X +O.F.SELFTEST X X X +The individual rationales demonstrating the objectives are met are described as +follows: +O.F.INBOUND_FILTER +FDP_ACC.1 Subset access control +Inbound traffic is filtered so that only traffic relating to the operation of the TOE is +allowed to enter the TOE. This SFR supports the security objective by restricting +the TOE data flow to only that that is necessary for the operation of the TOE. This +reduces the number of vulnerable entry points. +FDP_ACF.1 Security attribute based access control +All ports that are not necessary for the operation of the TOE as described in this +document are blocked. This SFR supports the security objective by reducing the +number of entry points that could be vulnerable to attack. +FMT_MSA.1 Management of security attributes +The TOE is delivered pre-configured to the customer. This SFR supports the +objective by ensuring that it is not possible for any user (including +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN) to change the settings of +the firewall mechanism. +ST-Océ DAC R10.1.5-3.3 46 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +FMT_MSA.3 Static Attribute initialisation +In order to change the security attributes of the TOE the management interfaces +provided for S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN must be +used. This SFR supports the objective by ensuring that the TOE provides restrictive +default security related settings that require no additional modification by +SERVICE_ENGINEER or S.REMOTE_SYSADMIN. Nobody is allowed to create +new settings with alternative values. +FPT_SEP.1 TSF domain separation +Filtering of network traffic occurs is an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the filtering +mechanism is protected by it not being exposed to non TSF mechanisms from +which a possible attack could be made. +FPT_RVM.1 Non-bypassability of the TSP +In order for data to enter or leave the TOE it must pass through the filtering +mechanism. This SFR supports the security objective by ensuring that TSF cannot +be bypassed, resulting in a direct line between the Digital Copier and the network +to which the TOE is attached being created. +O.F.OUTBOUND_FILTER +FDP_ACC.1 Subset access control +Outbound traffic is filtered so that only traffic relating to the operation of the TOE +is allowed to leave the TOE. This SFR supports the security objective by restricting +the TOE data flow to only that that is necessary for the operation of the TOE. +FDP_ACF.1 Security attribute based access control +All ports that are not necessary for the operation of the TOE as described in this +document are blocked. This SFR supports the security objective by reducing the +number of exit points through which an attack could be launched. +FMT_MSA.1 Management of security attributes +The TOE is delivered pre-configured to the customer. This SFR supports the +objective by ensuring that it is not possible for any user (including +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN) to change the settings of +the firewall mechanism. +FMT_MSA.3 Static Attribute initialisation +In order to change the security attributes of the TOE the management interfaces +provided for S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN must be +used. This SFR supports the objective by ensuring that the TOE provides restrictive +default security related settings that require no additional modification by +SERVICE_ENGINEER or S.REMOTE_SYSADMIN. Nobody is allowed to create +new settings with alternative values. +ST-Océ DAC R10.1.5-3.3 47 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +FPT_RVM.1 Non-bypassability of the TSP +In order for data to enter or leave the TOE it must pass through the filtering +mechanism. This SFR supports the security objective by ensuring that TSF cannot +be bypassed, resulting in a direct line between the Digital Copier and the network +to which the TOE is attached being created. +FPT_SEP.1 TSF domain separation +Filtering of network traffic occurs is an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the filtering +mechanism is protected by it not being exposed to other non-TSF mechanisms +from which a possible attack could be made. +O.F.JOB_RELEASE +FIA_UID.1 Timing of identification (Secure Printing) +Printing will only commence once the TSF has validated the Username associated +with the job by S.LOCAL_USER. The TSF receives the Username via the +DAC/DC interface. This SFR supports the security objective by requiring the +S.LOCAL_USER to identify himself as part of the job release process. +FIA_UAU.1 Timing of authentication +Printing will only commence once the TSF has validated the PIN associated with +the job by S.LOCAL_USER. The TSF receives the PIN via the DAC/DC interface. +This SFR supports the security objective by requiring the S.LOCAL_USER to +authenticate himself as part of the job release process. +FPT_RVM.1 Non-bypassability of the TSP +Print jobs cannot be processed by any other mechanism than by the specified +mechanism. This SFR supports the objective by ensuring that no other mechanisms +can access the print job data. +FPT_SEP.1 TSF domain separation +Management of print jobs occurs in an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the job release +mechanism is protected by it not being exposed to other non-TSF mechanisms +from which a possible attack could be made. +O.F.JOB_SHRED +FDP_RIP.1 Subset residual; information protection +This SFR supports the objective by ensuring that once a print or scan job has +completed, or if during the startup procedure, residual print or scan job data is +found then the related data will be electronically shredded from the hard disk. The +SFR has been refined to describe the moment when the data will be shredded. +FPT_RVM.1 Non-bypassability of the TSP +ST-Océ DAC R10.1.5-3.3 48 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Print and scan jobs must pass through the shredding mechanism. This SFR +supports the objective by ensuring that print and scan jobs cannot leave the TOE +except in the authorised manner. +FPT_SEP.1 TSF domain separation +Shredding occurs is an area of the TOE that is separate to non-TSF related +operation. This SFR supports the objective by ensuring that the shredding +mechanism is protected by it not being exposed to other non TSF-mechanisms +from which a possible attack could be made. +O.F.AUTHENTICATE +FIA_UID.2 User identification before any action +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER must identify themselves +to the TOE before any TOE management actions can be performed. +FIA_UAU.2 User authentication before any action +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER must authenticate +themselves to the TOE before any TOE management actions can be performed. +FMT_SMF.1 Specification of Management Functions +The functions that can be performed by either the S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER are defined. +FMT_MOF.1 Management of security functions behaviour +Only TOE administrators and Océ technicians can use security related functions. +FMT_SMR.1 Security roles +The TOE shall make a distinction between administrators and ordinary users. +FPT_RVM.1 Non-bypassability of the TSP +Users other than S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER cannot +gain access to security management functions of the TOE without begin first +controlled by the mechanisms specified in this document. +FPT_SEP.1 TSF domain separation +Identification and authentication of users occurs in an area of the TOE that is +separate to non-security related operation. +O.F.SELFTTEST +FPT_TST.1 TSF Testing +When the TOE is started up, it will perform a suite of self tests and determine that +it is working correctly. If it determines that there is a problem it will try to repair +itself. If this fails it will place itself in an ‘out-of order’ mode +FPT_RVM.1 Non-bypassability of the TSP +ST-Océ DAC R10.1.5-3.3 49 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +The self-test mechanism cannot be bypassed. +FPT_SEP.1 TSF domain separation +Self-testing of the TOE occurs in an area of the TOE that is separate to non-TSF +related operation. +8.2.2 The security requirements for the IT environment meet the security +objectives for the environment +The TOE does not make any security requirements on its environment. +ST-Océ DAC R10.1.5-3.3 50 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +8.2.3 The Assurance Requirements and Strength of Function Claim are +appropriate +EAL2+ ALC_FLR +Which comprises of: +ACM_CAP.2 Configuration Items +ADO_DEL.1 Delivery procedures +ADO_IGS.1 Installation, generation, and start-up procedures +ADV_FSP.1 Fully defined external interfaces +ADV_HLD.1 Security enforcing high-level design +ADV_RCR.1 Informal correspondence demonstration +AGD_ADM.1 Administrator Guidance +AGD_USR.1 User guidance +ALC_FLR.1 Basic Flaw remediation +ATE_COV.1 Analysis of coverage +ATE_FUN.1 Functional testing +ATE_IND.2 Independent testing – sample +AVA_SOF.1 Strength of TOE security function evaluation +AVA_VLA.1 Developer vulnerability analysis +O.A.SLA +The Assurance Requirements consist of EAL 2 requirements components. The +TOE is a commercially available device produced by a well-known manufacturer +and most importantly, provides a limited set of security related functionality. The +TOE has been structurally tested by Océ and is suitable for environments that +require a low to moderate level of independently assured security. The developer +works in a consistent manner with good commercial practice. +Occasionally the TOE may develop a problem that requires +S.SERVICE_ENGINEER to make a visit to the customer location in order to repair +the TOE. Océ has procedures that support these processes and for this reason the +assurance requirements have been augmented with the following assurance classes +as the developer is able to meet them: +Components for Life cycle support (Class ALC) +• ALC_FLR.1 Basic Flaw Remediation +The evaluation of the TOE security mechanisms at AVA_VLA.1 is designed to +provide assurance against an attacker with a low attack potential. Therefore the +SOF claim is SOF-basic. This strength of function claim is consistent with the +security objectives for the TOE and the defined TOE assumptions that have been +made. +8.2.4 All dependencies have been met +The following dependencies are identified: FDP_ACF.1, FDP_ACC.1, +FMT_MSA.1, FMT_MSA.3, FIA_UID.1, FMT_SMF.1, FMT_SMR.1, +FPT_AMT.1. +ST-Océ DAC R10.1.5-3.3 51 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +The dependency FPT_AMT.1 Abstract machine is not included, because the +underlying IT platform does not contribute to the TOE requirements (See part 1, +paragraph 147). The underlying IT platform is a standard embedded PC platform +that works. Testing of the platform does not provide assurance that will support the +claims at the level of EAL2, as functional testing of the DAC in its operational +environment is performed (it does what is should do). +All other dependencies are met. +8.2.5 The requirements are internally consistent +Because the assurance requirements form a package (EAL 2) they are internally +consistent. The addition of ALC_FLR.1 does not cause inconsistencies with the +EAL 2 package. +The functional requirements and assurance requirements do not have any +dependencies between them, and are therefore completely independent of each +other. Because both functional and assurance requirements are internally +consistent, and they are independent, the requirements are internally consistent. +8.2.6 The requirements are mutually supportive +The requirements are complete and do not cause inconsistencies, therefore the +requirements are considered to be mutually supportive. (This argument has been +based on section 9.3.8 of Guide for the production of PPs and STs, PDTR 15446 +N2449) +ST-Océ DAC R10.1.5-3.3 52 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +8.3 TOE Summary Specification Rationale +8.3.1 The functions meet the SFRs +For each SFR we demonstrate that it is met by the Security Functions in the table +below supported by the following rationales. +FDP +ACC1. +FDP +ACF.1 +FIA +UID.1 +FIA +UAU.1 +FDP +RIP.1 +FIA +UID.2 +FIA +UAU.2 +FMT +MOF.1 +FMT +MSA.1 +FMT +MSA.3 +FMT +SMF.1 +FMT +SMR.1 +FPT +SEP.1 +FPT +RVM.1 +FPT +TST.1 +SF.FILTERING X X X X X X +SF.JOB_RELEASE X X X X +SF.SHREDDING X X X +SF.MANAGEMENT X X X X X X X X X +SF.SELFTEST X X X +FDP_ACC.1 +This Security Functional Requirement ensures that only traffic is allowed to enter +the TOE that is relevant to its operation. This SFR is supported by SF.FILTERING +that restricts flow of network traffic and limits the supported network protocols. +FDP_ACF.1 +This Security Functional Requirement ensures that all ports that are non-essential +to the operation of the TOE are blocked. This SFR is supported by +SF.FILTERING. SF.FILTERING expands on the restricted flow of network traffic +and supported network protocols by defining which ports are open and which +protocols are supported. +FIA_UID.1 +This Security Functional Requirement ensures that the TSF verifies the identity of +S.LOCAL_USER before allowing SF.JOB_RELEASE. This helps to ensure that +access to confidential print jobs is restricted. +FIA.UAU.1 +This Security Functional Requirement ensures that the TSF authenticates +S.LOCAL_USER by correctly supplying the PIN associated with the secure print +job before SF.JOB_RELEASE will commence. This helps to ensure that access to +confidential print jobs is restricted. +FDP_RIP.1 +ST-Océ DAC R10.1.5-3.3 53 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +This Security Functional Requirement ensures requires that residual information +relating to D.SECURE_PRINTJOB, D.PRINTJOB and D.SCANJOB is deleted +once they are no longer needed, or, if during the startup procedure residual print or +scan job data is found on the hard disk. The SFR has been refined to describe the +moment when the data will be shredded. This SFR is supported by +SF.SHREDDING that provides functionality that ensures the data objects detailed +above are shredded in accordance with known standards. This SFR helps to reduce +the amount of sensitive data present on the hard disk in the event of it being stolen. +FIA_UID.2 +This Security Functional Requirement ensures that administrators correctly identify +themselves to the TOE before security management functions can be used. This +SFR is supported by SF.MANAGEMENT and provides functionality whereby +administrators (S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER) can +identify themselves to the TOE. This helps to restrict access to security +management functions and thereby reduces the risk of modification being made to +the TOE settings by unauthorised users. +FIA_UAU.2 +This Security Functional Requirement ensures that administrators correctly +authenticate themselves to the TOE before security management functions can be +used. This SFR is supported by SF.MANAGEMENT and provides functionality +whereby administrators (S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER) +can authenticate themselves to the TOE. This helps to restrict access to security +management functions and thereby reduces the risk of modification being made to +the TOE settings by unauthorised users. +FMT_MOF.1 +This Security Functional Requirement ensures that the TOE management functions +are only used by either the Océ technician (S.SERVICE_ENGINEER) or customer +system administrator (S.REMOTE_SYSADMIN). This SFR is supported by +SF.MANAGEMENT and ensures that non-administrators cannot administer the +TOE. +FMT_MSA.1 +This Security Functional Requirement ensures that the TOE management functions +related to the filter mechanism settings cannot be changed. This SFR is supported +by SF.MANGEMENT that ensures that filter related settings cannot be changed by +administrators. +FMT_MSA.3 +This Security Functional Requirement ensures that the TOE management functions +related to the filter mechanism settings are given default values. This SFR is +supported by SF.MANAGEMENT that ensures that the filter related settings are +pre-configured before delivery to the customer. +ST-Océ DAC R10.1.5-3.3 54 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +FMT_SMF.1 +This Security Functional Requirement ensures that the TOE management functions +are defined. This SFR is supported by functions made available by +SF.MANAGEMENT and defines the set of operations that are available to the Océ +technician (S.SERVICE_ENGINEER) or customer system administrator +(S.REMOTE_SYSADMIN) that are needed to administrate the TOE. +FMT_SMR.1 +This Security Functional Requirement ensures that the TOE makes a distinction +between security related roles and normal users. This SFR is supported by +SF.MANAGEMENT. This SFR is supported by SF.MANAGEMENT and ensures +that non-administrators cannot administer the TOE. +FPT_SEP.1 +This Security Functional Requirement ensures that the TSF operates in its own +domain and cannot be influenced by external sources. This requirement is met by +the physical characteristics of the TOE that comprises software that uses a generic +PC hardware platform. The DAC only provides functionality related to the +operation of the TOE and does not have dual function, for example, as an office +file server. The nature of the TOE is such that evaluation at EAL2 provides a +suitable level of assurance that the TSF operates in it’s own domain. +The operation of the TSF in its own domain provides the following: +1. The filtering mechanisms are in a separate domain to the rest of the non- +security related operations that the TOE performs. This SFR is supported +by SF.FILTERING. This protects the integrity of the filtering mechanism +against un-authorised subjects and threat attacks. +2. The print job management mechanisms are in a separate domain to the +rest of the non-security related operations that the TOE performs. This +SFR is supported by SF.JOB_RELEASE This protects the integrity of the +print job mechanism against un-authorised subjects and threat attacks. +3. The shredding mechanisms are in a separate domain to the rest of the non- +security related operations that the TOE performs. This SFR is supported +by SF.SHREDDING. This protects the integrity of the shredding +mechanism against un-authorised subjects and threat attacks. +4. The TOE security management mechanisms are in a separate domain to +the rest of the non-security related operations that the TOE performs. This +SFR is supported by SF.MANAGEMENT. This protects the integrity of +the security management mechanisms against un-authorised subjects and +threat attacks. +5. The TOE start-up check mechanisms are in a separate domain to the rest +of the non-security related operations that the TOE performs. This SFR is +supported by SF. SELFTEST. This protects the integrity of the start-up +check mechanisms against un-authorised subjects and threat attacks. +ST-Océ DAC R10.1.5-3.3 55 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +FPT_RVM.1 +This Security Functional Requirement ensures that no security related operations +can be performed without being controlled by the TOE’s security mechanisms. The +DAC provides a limited set of security functionality that is related to the operation +of the TOE. The nature of the TOE is such that evaluation at EAL2 provides a +suitable level of assurance that the only the TSF can perform security related +operations. +This SFR is supported by SF.MANAGEMENT. +This Security Functional Requirement ensures that: +1. No filtering mechanisms can be performed without being controlled by +the TOE’s security mechanisms. This SFR is supported by +SF.FILTERING. +2. No secure print job management mechanisms can be performed without +being controlled by the TOE’s security mechanisms. This SFR is +supported by SF.JOB_RELEASE. +3. No shredding mechanisms can be performed without being controlled by +the TOE’s security mechanisms. This SFR is supported by +SF.SHREDDING. +4. No security related operations can be performed without being controlled +by the TOE’s security mechanisms. This SFR is supported by +SF.MANAGEMENT. +5. The TOE start-up check mechanisms are in a separate domain to the rest +of the non-security related operations that the TOE performs. This SFR is +supported by SF. SELFTEST. This ensures that no security management +mechanisms can be used by un-authorised subjects. +FPT_TST.1 +This Security Functional Requirement ensures that the TOE to performs a self-test +during start up. This SFR is supported by SF.SELFTEST. The self-test helps +protect the TOE against T.MALWARE so that it does not become a possible threat +agent against S.NETWORK_DEVICE. +8.3.2 The assurance measures meet the SARs +The statement of assurance measures has been presented in the form of a reference +to the documents that show that the assurance measures have been met (CC Part 3 +paragraph 188). This statement can be found in section 6.2. +8.3.3 The SOF-claims for functions meet the SOF-claims for the SFRs +The SFRs FIA_UAU.1, FIA_UAU.2, FIA_UID.1 and FIA_UID.2 require the TOE +to provide security functions that provide identification/authentication functionality +that meets a SOF claim of ‘SOF basic’. +ST-Océ DAC R10.1.5-3.3 56 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +This rational for this is that the claim must adequate to defend against the identified +threats to the TOE that are identified in the TOE Security Environment for which a +low attack potential exists +The Security Functions that are realised by probabilistic or permutational +mechanisms are: +• SF.JOB_RELEASE +• SF.MANAGEMENT +The claim for these two Security Functions is ‘SOF basic’. These Security +Functions are traced back to the TOE SFRs they implement in 8.3.1 +As the SOF claims for the three Security Functions are equal to the SOF claims for +the TOE SFRs they implement, the SOF claims are consistent. +8.3.4 The functions are mutually supportive +The requirements are mutually supportive (see section 8.2.6) and the functions that +implement theses requirements are complete (see section 8.3.1). The functions are +mutually supportive. (This argument has been based on section 9.3.8 of Guide for +the production of PPs and STs, PDTR 15446 N2449) +8.4 PP Claims Rationale +This Security Target TOE does not claim conformance to any Protection Profile. +ST-Océ DAC R10.1.5-3.3 57 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Appendix A Abbreviations +BSI Bundesamt für Sicherheit in der Informationtechnik +DAC Digital Access Controller +DC Digital Copier +ITSEF IT Security Evaluation Facility +LUI Local User Interface (of a DC) +MFD Multifunctional device for copying, printing and scanning, +connected to a network (Combination of a DC and a DAC) +ST-Océ DAC R10.1.5-3.3 58 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Appendix B References +1. Secure Deletion of Data from Magnetic and Solid State Memory, Peter +Guttman 1996 +(http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html) +2. US Department of Defence Military Standard DOD 5220-22m +(http://www.dss.mil/isecnispom_0195.htm) +ST-Océ DAC R10.1.5-3.3 59 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Appendix C Glossary of Terms +None. +ST-Océ DAC R10.1.5-3.3 60 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Appendix D Security Related Administration Functions +In this appendix the security related administration functions that are available to +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN are detailed. The tables +give the administration function name and a short description. +S.SERVICE_ENGINEER +Administration Function Description +Security / security level / required level Changing this setting invalidates the claim +Security / data shredding / shred moment Sets the actual moment of shredding +Security / data shredding / shred non secure +jobs +Sets the type of print jobs to shred +Security / data shredding / shred scan jobs Sets whether scanned jobs are shredded +Security / SDS password Sets the SDS login password +Configuration / Network / TCPIP / HTTPD Configures the Webserver that uses the +TCPIP +Configuration / Network / TCPIP / HTTPD / +Port nr +Configures the port number that is used by +the webserver +Configuration / Applications / Web based SAS +/ Enable +Enables web based SAS +Configuration / Applications / Web based SAS +/ ResetSASPassword +Resets the SAS password to its default +value +Configuration / licenses / Erase license Erases the current license file +Enable LPD / Disable LPD Toggles the LPD daemon +ST-Océ DAC R10.1.5-3.3 61 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +S.REMOTE_SYSADMIN +Administration Function Description +Security / security level / required level Changing this setting invalidates the claim +Security / data shredding / shred moment Sets the actual moment of shredding +Security / data shredding / shred non secure +jobs +Sets the type of print jobs to shred +Security / data shredding / shred scan jobs Sets whether scanned jobs are shredded +Configuration / Upload settings Enables a default set of settings to be +uploaded to the DAC (useful for configuring +multiple DAC in one customer +environment) +Configuration / Download settings Enables a default set of settings to be +downloaded to the DAC (useful for +configuring multiple DAC in one customer +environment) +Configuration / Network / TCPIP / HTTPD / +Port nr +Configures the Webserver that uses the +TCPIP +Configuration / Network / TCPIP / HTTPD / +self signed certificate / common name +Configures the port number that is used by +the webserver +Configuration / Network / TCPIP / raw socket +enable +Enables/disables raw socket functionality +Configuration / Network / TCPIP / raw socket +port nr +Configures the port number that is used by +the raw socket +Configuration / Network / TCPIP / LDAP +enable/disable +Enables/disables support for LDAP +functionality +Configuration / Network / TCPIP / LDAP port +nr +Configures the port number that is used by +the for LDAP functionality +Applications / Web based SAS / +SetSASPassword +Sets the S.REMOTE_SYSADMIN +password +Enable LPD / Disable LPD Toggles the LPD daemon +ST-Océ DAC R10.1.5-3.3 62 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Appendix E Firewall rules in the DAC +All rules in this section apply to the DAC’s network interface (eth0), except were +noted differently. +The firewall denies all packets that are not permitted by rules. +1. Base: DAC Å> Copier link (PPP) +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp >1023 5010 outbound +Tcp 5010 >1023 inbound +Icmp 0 both +2. Base: ICMP, DNS, DHCP +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code on +OS/2 +Dest Port/ +ICMP +Code on +Linux +Direction +ICMP 0 Echo reply 0 any outbound +ICMP 3 Destination unreachable >=0 any inbound +ICMP 4 Source Quench >=0 any both +ICMP 8 Echo 0 any inbound +ICMP 11 ICMP Time Exceeded >0 any inbound +ICMP 11 ICMP Time Exceeded 1 any outbound +ICMP 12 Parameter Problem >=0 any both +UDP+TCP >1023 53 domain 53 domain outbound +UDP 53 domain >1023 > 1023 inbound +TCP/ACK 53 doamin >1023 > 1023 inbound +UDP 67 dhcp/bootp 68 dhcp/bootp 68 dhcp both +3. LPR +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp any 515 inbound +Tcp/ack 515 any outbound +ST-Océ DAC R10.1.5-3.3 63 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +4. SMB +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp 137 inbound +Tcp 137 outbound +Udp 137 inbound +Udp 137 137 (on broadcast +address) +inbound +Udp 138 138 both +Tcp 139 inbound +Tcp 139 outbound +Tcp 139 inbound +Tcp 139 outbound +Udp 137 outbound +Udp 137 outbound +tcp 445 outbound +tcp 445 inbound +tcp 445 outbound +tcp 445 inbound +5. ENDPS +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Udp > 1023 3396 both +Tcp 3396 inbound +Tcp/ack 3396 outbound +Tcp 3019 outbound +Tcp/ack 3019 inbound +Tcp 3018 outbound +Tcp/ack 3018 inbound +Tcp 3016 outbound +Tcp/ack 3016 inbound +Tcp 524 outbound +Tcp/ack 524 inbound +icmp 8 0 outbound +icmp 0 0 inbound +6. SLP +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +udp 427 both +ST-Océ DAC R10.1.5-3.3 64 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +7. HTTP/HTTPs server +Used in WebSas and Smart mailbox +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +tcp > 1023 Configurable, +default 80 +inbound +Tcp/ack Configurable, default +80 +> 1023 outbound +tcp > 1023 443 inbound +Tcp/ack 443 >1023 outbound +8. HTTP client +Used in SmartMailbox +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +tcp > 1023 80 outbound +Tcp/ack 80 >1023 inbound +9. HTTPs client +Used in SmartMailbox, LDAPs , FTPs and SMTP with TLS/SSL +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp > 1023 443 outbound +Tcp/ack 443 >1023 inbound +ST-Océ DAC R10.1.5-3.3 65 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +10. FTP Server +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +tcp >1023 21 inbound +Tcp/ack 21 >1023 outbound +tcp 20 >1023 outbound +Tcp/ack >1023 20 inbound +The firewall supports passive mode FTP, via the following rules: +Protocol Src Port Dest Port Connection +state +Direction +tcp > 1023 > 1023 established outbound +tcp > 1023 > 1023 established, +related +inbound +Here established means that the packet being filtered is associated to a connection +which has seen packets in both directions; related means that the packet is +starting a new connection, but is associated with an existing connection. +11. FTP Client +Protocol Src Port Dest Port Direction +tcp >1023 N outbound +Tcp/ack N >1023 inbound +tcp N – 1 >1023 inbound +Tcp/ack >1023 N – 1 outbound +Here N is the ftp client command port, which is configurable. By default it is 21. +The firewall supports passive mode FTP, via the following rules: +Protocol Src Port Dest Port Connection +state +Direction +tcp > 1023 > 1023 established inbound +tcp > 1023 > 1023 established, +related +outbound +Here established means that the packet being filtered is associated to a connection +which has seen packets in both directions; related means that the packet is +starting a new connection, but is associated with an existing connection. +ST-Océ DAC R10.1.5-3.3 66 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +12. SNMP +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +udp 161 inbound +udp 161 outbound +Udp 162 outbound +Udp 162 inbound +13. Printlogic /UDS/IntraLogic +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +udp 2697 outbound +Tcp 1028 inbound +tcp 1028 outbound +14. SMTP +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp configurable, +usually 25 +outbound +Tcp/ack configurable, usually +25 +inbound +15. LDAP +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp configurable, +usually 389 +outbound +Tcp/ack configurable, usually +389 +inbound +ST-Océ DAC R10.1.5-3.3 67 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +16. Multicast MDNS +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Udp > 1023 5353 outbound +Udp 5353 >1023 inbound +17. Raw Socket +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp configurable, +usually 9100 +inbound +Tcp/ack configurable, usually +9100 +outbound +18. Authentication +18.1. NTLM +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp configurable, +usually 139 +outbound +Tcp/ack configurable, +usually 139 +inbound +18.2. Kerberos +Protocol Src Port/ +ICMP Type +Dest Port/ +ICMP Code +Direction +Tcp configurable, +usually 88 +outbound +Tcp/ack configurable, usually +88 +inbound +Udp configurable, +usually 88 +outbound +Udp configurable, usually +88 +inbound +ST-Océ DAC R10.1.5-3.3 68 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +19. Firewall Rules for the USB Port +To enable the service technician to connect his laptop to the DAC via the USB +port, the firewall incorporates the following rules: +Interface Protocol Src Port Dest Port Direction +eth1 tcp any 22 inbound +eth1 tcp 22 any outbound +eth1 tcp > 1023 configurable, +usually 80 +inbound +eth1 tcp/ack configurable, usually +80 +> 1023 outbound +eth1 tcp > 1023 443 inbound +eth1 tcp/ack 443 > 1023 outbound +ST-Océ DAC R10.1.5-3.3 69 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Appendix F Montavista 4.1 Patches applied +pro-0287-omap_kgdb8250_oops_fix.mvlpatch +pro-0288-8250-early_serial_setup_spin_lock_init.mvlpatch +pro-0289-ipv6_conntrack_core_mising_include_fix.mvlpatch +pro-0290-ip6t_reject_missing_include_fix.mvlpatch +pro-0291-ext3_show_options_remount_bugfix.mvlpatch +pro-0292-ext3_options_remount_quota_warning_fix.mvlpatch +pro-0293-ppc440ep_yosemite_support.mvlpatch +pro-0294-ppc440gr_yellowstone_support.mvlpatch +pro-0295-ppc32_export_cacheable_memcpy_symbol.mvlpatch +pro-0296-ppc32_emac_rt_fix.mvlpatch +pro-0297-ppc32_cleanup_booke_NUM_TLBCAMS_usage.mvlpatch +pro-0298-driver_core_add_bus_find_device_function.mvlpatch +pro-0299-common_jbd_relaxation.mvlpatch +pro-0300-mqueue_mnt_mnt_count_CVE-2005-3356.mvlpatch +pro-0301-fix_refcount_in_ip6_flowlabel_CVE-2005-3806.mvlpatch +pro-0302-redundant_NULL_check_in_kernel_sysctl-CVE-2005-2709.mvlpatch +pro-0303-fix_sysctl_unregistration_oops_CVE-2005-2709.mvlpatch +pro-0304-ipv6_restrict_information_exported_to_userspace.mvlpatch +pro-0305-fix_infinite_loop_in_udp_v6_get_port_CVE-2005-2973.mvlpatch +pro-0306-kill_annoying_mount_version_mismatch_printks.mvlpatch +pro-0307-call_exit_itimers_from_do_exit.mvlpatch +pro-0308-mips_rbtx4939_big_endian_ide_bugfix.mvlpatch +pro-0309-fix_arm_slab_corruption_due_to_pud_t_integration.mvlpatch +pro-0310-fix_compiler_warnings_with_ARM_set_pmd.mvlpatch +pro-0311-mips_pnx8550_sync.mvlpatch +pro-0312-mips_pnx8550_stb810.mvlpatch +pro-0313-mips_pnx8550_rt.mvlpatch +pro-0314-mips_pnx8550_kgdb.mvlpatch +pro-0315-mips_pnx8550_hrt.mvlpatch +pro-0316-mips_pnx8550_nand.mvlpatch +pro-0317-mips_pnx8550_meuconfig_warnings.mvlpatch +pro-0318-mips_pnx8550_nand_fix.mvlpatch +pro-0319-mips_pnx8550_mmu_bug_fix.mvlpatch +pro-0320-introduce_kzalloc_function.mvlpatch +pro-0321-ppc_xilinx_move_xparameters.h.mvlpatch +pro-0322-ppc_xilinx_virtex2pro_to_virtex.mvlpatch +pro-0323-ppc_xilinx_add_virtex4fx_to_cpu_table.mvlpatch +pro-0324-ppc_xilinx_add_ml403_board_support.mvlpatch +pro-0325-ppc_xilinx_intc_cleanup.mvlpatch +pro-0326-ppc_xilinx_ivr_hw_bug_workaround.mvlpatch +pro-0327-ppc_xilinx_platform_stub.mvlpatch +pro-0328-ppc_xilinx_edk_common.mvlpatch +ST-Océ DAC R10.1.5-3.3 70 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0345-ppc_xilinx_edk_uartlite.mvlpatch +pro-0329-ppc_xilinx_edk_emac.mvlpatch +pro-0330-ppc_xilinx_emac_del_LookupConfig.mvlpatch +pro-0331-ppc_xilinx_emac.mvlpatch +pro-0332-ppc_xilinx_edk_gpio.mvlpatch +pro-0333-ppc_xilinx_gpio_del_LookupConfig.mvlpatch +pro-0334-ppc_xilinx_gpio.mvlpatch +pro-0335-ppc_xilinx_edk_ps2.mvlpatch +pro-0336-ppc_xilinx_ps2_del_LookupConfig.mvlpatch +pro-0337-ppc_xilinx_ps2.mvlpatch +pro-0338-ppc_xilinx_fb.mvlpatch +pro-0339-ppc_xilinx_edk_sysace.mvlpatch +pro-0340-ppc_xilinx_sysace_del_LookupConfig.mvlpatch +pro-0341-ppc_xilinx_sysace.mvlpatch +pro-0342-ppc_xilinx_edk_iic.mvlpatch +pro-0343-ppc_xilinx_iic_del_LookupConfig.mvlpatch +pro-0344-ppc_xilinx_iic.mvlpatch +pro-0346-ppc_xilinx_edk_temac.mvlpatch +pro-0347-ppc_xilinx_uartlite.mvlpatch +pro-0348-ppc_xilinx_temac_del_LookupConfig.mvlpatch +pro-0349-ppc_xilinx_temac.mvlpatch +pro-0350-ppc_xilinx_tlb_bug_workaround.mvlpatch +pro-0351-ppc_xilinx_add_memec_2vpx_board_support.mvlpatch +pro-0352-ppc_memec_2vpx_lcd.mvlpatch +pro-0353-ppc_memec_2vpx_mtd.mvlpatch +pro-0354-ppc_xilinx_ps2_lockup_fix.mvlpatch +pro-0355-ppc_xilinx_edk_touchscreen.mvlpatch +pro-0356-ppc_xilinx_touchscreen_del_LookupConfig.mvlpatch +pro-0357-ppc_xilinx_touchscreen.mvlpatch +pro-0358-ppc_xilinx_xparameters_ml300-fix.mvlpatch +pro-0359-ppc_xilinx_edk_spi.mvlpatch +pro-0360-ppc_xilinx_spi_del_LookupConfig.mvlpatch +pro-0361-ppc_xilinx_spi.mvlpatch +pro-0362-ppc_xilinx_ml300_remove_unnecessary_files.mvlpatch +pro-0363-generic_serial_driver_bugfix.mvlpatch +pro-0364-mips_nec_vr5701_serial_fix.mvlpatch +pro-0365-mips_nec_vr5701_errata.mvlpatch +pro-0366-mips_nec_vr5701_sound_next.mvlpatch +pro-0367-mips_fpu_and_preemption_fixes.mvlpatch +pro-0368-mips_tx49x7-cpu-name-pci-clock-report-fix.mvlpatch +pro-0369-mips_tx4927_38_pciccfg_gbwc.mvlpatch +pro-0370-mips_tx4937-fix-timer-reg-defs.mvlpatch +pro-0371-mips_tx49xx-mfc0-errata-fix.mvlpatch +pro-0372-use_mtune_arm1136j-s_for_ARMv6_targets.mvlpatch +pro-0373-arm-remove-udivdi3-from-pxafb.mvlpatch +ST-Océ DAC R10.1.5-3.3 +pro-0388-arm-eabi-kconfig.mvlpatch +71 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0374-mmc-remove-ref-to-divdi3.mvlpatch +pro-0375-arm-remove-udivdi3-from-nwfpe.mvlpatch +pro-0376-arm-remove-udivdi3-from-kernel.mvlpatch +pro-0377-arm-optimized-libc-functions.mvlpatch +pro-0378-slab-add-more-arch-override.mvlpatch +pro-0379-arm-fix-sys_sendto-and-sys_recvfrom-6-arg.mvlpatch +pro-0380-arm_mno-thumb-interwork.mvlpatch +pro-0381-arm-eabi-relocs-for-modules.mvlpatch +pro-0382-arm-eabi-slab-align-to-64bits.mvlpatch +pro-0383-arm-eabi-sp-align-1.mvlpatch +pro-0384-arm-eabi-sp-align-2.mvlpatch +pro-0385-arm-eabi-helper-func-names.mvlpatch +pro-0386-arm-eabi-syscalls.mvlpatch +pro-0387-arm-eabi-syscall-adjstments.mvlpatch +pro-0389-arm-update-syscall-table.mvlpatch +pro-0390-arm-inotify-ioprio.syscalls.mvlpatch +pro-0391-arm-mempolicy-syscalls.mvlpatch +pro-0392-arm-oabi-statfs64.mvlpatch +pro-0393-arm-oabi-syscall-wrappers.mvlpatch +pro-0394-arm-oabi-multi-abi.mvlpatch +pro-0395-arm-oabi-nwfpe.mvlpatch +pro-0396-arm-oabi-kconfig.mvlpatch +pro-0397-arm-eabi-sigreturn-fix.mvlpatch +pro-0398-arm-nptl-compat-mb.mvlpatch +pro-0399-arm-oabi-is-experimental.mvlpatch +pro-0400-arm-oabi-struct-sockaddr_un.mvlpatch +pro-0401-arm_mempolicy_syscalls_compat_hack.mvlpatch +pro-0402-arm_eabi_syscalls_compat_hack.mvlpatch +pro-0403-iptables_counters_fix.mvlpatch +pro-0404-frd_smp_affinity.mvlpatch +pro-0405-frd_mips_abs_latency.mvlpatch +pro-0406-frd_report_correct_runtime2.mvlpatch +pro-0407-frd_cleanup_whitespace.mvlpatch +pro-0408-frd_specify_major_device_number.mvlpatch +pro-0409-frd_remove_debug_code.mvlpatch +pro-0410-kgdb_ppc64_smp_fixes.mvlpatch +pro-0411-ppc_boot_treeboot_entrypoint_fix.mvlpatch +pro-0412-mips_uaccess_might_sleep_removal.mvlpatch +pro-0413-fs_enet_dma_unmap_fixup.mvlpatch +pro-0414-mips_fix_ssnop_macro.mvlpatch +pro-0415-fix_potential_dos_in_load_elf_library.mvlpatch +pro-0416-mips_au1xx0-kgdb.mvlpatch +pro-0417-mips_do-not-clear-irq_desc.mvlpatch +pro-0418-mips_au1xx0-hrt.mvlpatch +ST-Océ DAC R10.1.5-3.3 72 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0419-mips_au1x00_uart-remove-serial-registration.mvlpatch +pro-0420-mips_au1x00_uart-deadlock-fix.mvlpatch +pro-0421-mips_au1x00_uart-claim-region.mvlpatch +pro-0422-mips_au1xx0-make-kseg0-uncached-on-reboot.mvlpatch +pro-0423-mips_au1xx0-use-au_readl.mvlpatch +pro-0424-mips_au1xx0-preserve-default-cmdline.mvlpatch +pro-0425-mips_au1xx0-use-prom_printf.mvlpatch +pro-0426-mips_au1xx0-fix-ohci-Kconfig-entry.mvlpatch +pro-0427-mips_au1xx0-ohci-region-size-off-by-one.mvlpatch +pro-0428-mips_au1xx0-fix-prom_getenv.mvlpatch +pro-0429-mips_ramdisk_parse_cmdline.mvlpatch +pro-0430-mips_db1200.mvlpatch +pro-0431-mips_au1200-kgdb-on-uart1.mvlpatch +pro-0432-mips_au1xx0-dbdma-backport.mvlpatch +pro-0433-mips_au1xx0-nand-chip-select-fix.mvlpatch +pro-0434-mips_au1550_ac97-fix-spinlocks.mvlpatch +pro-0435-mips_au1550_ac97-print-newlines.mvlpatch +pro-0436-mips_au1xx0-fix-dbdma-warnings-and-move-irq_tab_alchemy.mvlpatc +h +pro-0437-mips_au1xx0-fix-dbdma-cache-snoop-issue.mvlpatch +pro-0438-ppc_440gx_rev_f.patch.mvlpatch +pro-0439-8349e_initial.patch.mvlpatch +pro-0440-83xx_serial_debug_fix.patch.mvlpatch +pro-0441-chipset_version_fix.patch.mvlpatch +pro-0442-mpc834x_bcsr_size_fix.patch.mvlpatch +pro-0443-mpc83xx_add_soft_reset.patch.mvlpatch +pro-0444-add_834x_rtc_support.patch.mvlpatch +pro-0445-add_mpc83xx_pci.patch.mvlpatch +pro-0446-ppc32-check-ppc_sys_get_pdata-return.patch.mvlpatch +pro-0447-mpc8349mds_flash.patch.mvlpatch +pro-0448-mpc834x_reset_cleanup.patch.mvlpatch +pro-0449-mii-add-gige-support.patch.mvlpatch +pro-0450-mii_gigE-bug-fixes.patch.mvlpatch +pro-0451-add-mii-test-for-gige.patch.mvlpatch +pro-0452-ppc_booke_wdt.patch.mvlpatch +pro-0453-ppc_booke_wdt_namespace_cleanup.patch.mvlpatch +pro-0454-ppc_head_4xx_missing_endif.patch.mvlpatch +pro-0455-ppc32-pte-conversions-to-page-frame-numbers.patch.mvlpatch +pro-0456-ppc32-fix-pte-update.patch.mvlpatch +pro-0457-ppc32-support_36_bit_phys_addr_on_e500.patch.mvlpatch +pro-0458-ppc85xx-fix_platform_device_initialization-8250.patch.mvlpatch +pro-0459-ppc32-fix-booke-kgdb-support.patch.mvlpatch +pro-0460-ppc32-skip-8258pic-unless-pci.patch.mvlpatch +pro-0461-ppc32-add-8548-support.patch.mvlpatch +pro-0462-ppc32-add-8548cds-support.patch.mvlpatch +ST-Océ DAC R10.1.5-3.3 73 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0463-ppc32-add-8548-internal-interrupt-support.patch.mvlpatch +pro-0464-ppc32-remove-unnecessary-prom.h-includes.patch.mvlpatch +pro-0465-ppc32-fix-mpc8555cds-build.patch.mvlpatch +pro-0466-ppc32-gianfar-update-marvel-phy-name.patch.mvlpatch +pro-0467-ppc32-add-8548-gianfar-tsec-features.patch.mvlpatch +pro-0468-ppc32-add-cpm2_reset-prototype.patch.mvlpatch +pro-0469-add-phy-abstraction-layer.patch.mvlpatch +pro-0470-phy-numerous-minor-fixes.patch.mvlpatch +pro-0471-phy-more-cleanups.patch.mvlpatch +pro-0472-phy_layer_fixup.patch.mvlpatch +pro-0473-ppc32-fix-85xx-pci-io-space.patch.mvlpatch +pro-0474-gianfar-use_new_phy_layer.patch.mvlpatch +pro-0475-ppc32-85xx-phy_platform_update.patch.mvlpatch +pro-0476-ppc32-add-E200-support.patch.mvlpatch +pro-0477-delete_CONFIG_PHYCONTROL.patch.mvlpatch +pro-0478-gianfar_zero_mii_bus_structure.patch.mvlpatch +pro-0479-add_phy_address_mask.patch.mvlpatch +pro-0480-mpc85xx_cds_kgdb_fix.patch.mvlpatch +pro-0481-add_gianfar_net_poll.patch.mvlpatch +pro-0482-ppc32-factor_out_exception_code_for_4xx_and_booke.patch.mvlpatc +h +pro-0483-ppc32_kgdb_cope_with_singlestep_on_critical_exception_stack.pat +ch.mvlpatch +pro-0484-gianfar_update_and_add_sysfs_support.patch.mvlpatch +pro-0485-allow_overlapping_resources_for_platform_devices.patch.mvlpatch +pro-0486-gianfar_include_in_h.patch.mvlpatch +pro-0487-gianfar_use_proper_resource_for_mii.patch.mvlpatch +pro-0488-phy_add_PHY_ID_FMT_macro.patch.mvlpatch +pro-0489-gianfar_use_PHY_ID_FMT_MACRO.patch.mvlpatch +pro-0490-gianfar_pass_mdio_bus_params_for_new_driver.patch.mvlpatch +pro-0491-ppc_booke_add_isync_after_changing_debug_registers.patch.mvlpat +ch +pro-0492-add_include_of_netdevice_h_to_etherdevice_h.patch.mvlpatch +pro-0493-gianfar_crc32dep.patch.mvlpatch +pro-0494-ppc32_mpc8548_pex.patch.mvlpatch +pro-0495-gianfar_xmitirqstate.patch.mvlpatch +pro-0496-ppc_booke_wdt_handlerfixup.patch.mvlpatch +pro-0497-ppc32_mpc8548cds_fix_board_reset.patch.mvlpatch +pro-0498-net_sched_debug_fixup.mvlpatch +pro-0499-ppc32_rt_remap_kmap_atomic_functions.mvlpatch +pro-0500-ppc32_rt_enable_interrupts_in__exception.mvlpatch +pro-0501-kgdb_mrproper_cleanup.mvlpatch +pro-0502-kgdb_8520_dep_fix.mvlpatch +pro-0503-ltt_kernel_tid.mvlpatch +pro-0504-__wait_on_freeing_inode_fix.mvlpatch +ST-Océ DAC R10.1.5-3.3 74 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0505-rst_ip_conntrack_handling.mvlpatch +pro-0506-ppc_fix_timekeeping.mvlpatch +pro-0507-usb_ehci_shutdown.mvlpatch +pro-0508-83xx_Kconfig_cleanup.mvlpatch +pro-0509-83xx_to_syslib.mvlpatch +pro-0510-ipic_off_by_one_fix.mvlpatch +pro-0511-add_ds1374_rtc_chip.mvlpatch +pro-0512-ds1374_asm_rtc_fix.mvlpatch +pro-0513-ds1374_workqueue.mvlpatch +pro-0514-mpc83xx_ipic_pend_fix.mvlpatch +pro-0515-mpc834x_usb_offset_fix.mvlpatch +pro-0516-mpc834x_kconfig_mismerge_fix.mvlpatch +pro-0517-mpc834x_sys_config_update.mvlpatch +pro-0518-ppc32-83xx-phy_platform_update.mvlpatch +pro-0519-8349_pci_prefetch_fix.mvlpatch +pro-0520-ehci_pci_splitout.mvlpatch +pro-0521-usb-ehci-for-freescale-83xx.mvlpatch +pro-0522-usb-ehci-and-freescale-83xx-quirk.mvlpatch +pro-0523-8349_add_usb_host.mvlpatch +pro-0524-ppc83xx-fix_platform_device_initialization-8250.mvlpatch +pro-0525-ppc83xx_gianfar_pass_mdio_bus_params_for_new_driver.mvlpatch +pro-0526-mpc83xx_kgdb_fix.mvlpatch +pro-0527-ppc_emac_typo_fix.mvlpatch +pro-0528-matroxfb-fix-big-endian.mvlpatch +pro-0529-mpc8540ads_kgdb_fix.mvlpatch +pro-0530-mpc8540ads_serial_text_debug_fix.mvlpatch +pro-0531-mpc8540ads_phy_disable_force_mode.mvlpatch +pro-0532-ppc32_405gpr_pci_region1_en.mvlpatch +pro-0533-touch_watchdogs.mvlpatch +pro-0534-kgdb_need_nmi_watchdog_h.mvlpatch +pro-0535-kgdboe_touch_watchdogs.mvlpatch +pro-0536-kgdb_serial_touch_watchdogs.mvlpatch +pro-0537-Kill_signed_chars.mvlpatch +pro-0538-kbuild_signed_char_fixes_for_scripts.mvlpatch +pro-0539-fix_gcc4.1_build_failure_on_xconfig.mvlpatch +pro-0540-kbuild_signed_unsigned_char_fix_for_make_menuconfig.mvlpatch +pro-0541-rw_verify_area_error_relax.mvlpatch +pro-0542-fix_FRD_and_MIPS_CPU_TIMER_config.mvlpatch +pro-0543-pro_mips_pnx8550_hrt_fix.mvlpatch +pro-0544-pro_mips_pnx8550_external_pci.mvlpatch +pro-0545-fs_locks_fix_lease_init_CVE_2006_1859_60.mvlpatch +pro-0546-2421_i386_add_memory_clobbers_to_syscall_macros.mvlpatch +pro-0547-2138_x86_Make__syscallX_macros_compile_in_PIC_mode.mvlpatch +pro-0548- +lsm_add_missing_hook_to_do_compat_readv_writev_CVE_2006_1856.mv +ST-Océ DAC R10.1.5-3.3 75 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +lpatch +pro-0549-remove_bogus_BUG_in_exit_CVE_2006_1855.mvlpatch +pro-0550- +scsi_sg_do_not_set_VM_IO_flag_on_mmaped_pages_CVE_2006_1528.mvl +patch +pro-0551-netfilter_fix_do_add_counters_race_CVE_2006_0039.mvlpatch +pro-0552- +common_netfilter_fix_do_add_counters_race_ipv4_CVE_2006_0039.mv +lpatch +pro-0553-driver_core_Separate_platform_device_name_from_platform_device_ +number.mvlpatch +pro-0554-generic_file_buffered_write.mvlpatch +pro-0555-ide_unexport_atapi_byte_io.mvlpatch +pro-0556-ide_cleanup_globals.mvlpatch +pro-0557-ide_dump_atapi_status_fix.mvlpatch +pro-0558-ide_flush_cache_error_lba_fix.mvlpatch +pro-0559-ide_claim_extra_dma_ports_regardless_of_channel.mvlpatch +pro-0560-ide_remove_dma_base2_field_from_ide_hwif_t.mvlpatch +pro-0561-ide_always_release_dma_engine.mvlpatch +pro-0562-common_kgdb_8250_ttyS1_fix.mvlpatch +pro-0563-gen_init_cpio_symlink_pipe_and_socket_support.mvlpatch +pro-0564-initramfs_unprivileged_image_creation.mvlpatch +pro-0565-gen_init_cpio_When_outputting_a_buffer_don_t_use_char_at_a_time +_I_O.mvlpatch +pro-0566-cpm_uart_Fix_2nd_serial_port_on_MPC8560_ADS.mvlpatch +pro-0567-common_phy_layer_aneg_enable.mvlpatch +pro-0568-common_ppc32_pal_support_fixed_phy.mvlpatch +pro-0569-common_ppc32_fs_enet_use_pal.mvlpatch +pro-0570-common_ppc32_fs_enet_pd_8560ads.mvlpatch +pro-0571-common_ppc32_mpc8560ads_rt_cpm2irq.mvlpatch +pro-0572-0165_stop_CompactFlash_devices_being_marked_as_removable.mvlpat +ch +pro-0573-ppc32_busid_format_change.mvlpatch +pro-0574-ide_actually_honor_min_cycle_time.mvlpatch +pro-0575-common_kgdb_oe_cpm_compile_fix.mvlpatch +pro-0576-fix_alt_sysrq_deadlock.mvlpatch +pro-0577-common_fs_enet_phy_fix.mvlpatch +pro-0578-common_kgdb_ppc32_singlestep_fix.mvlpatch +pro-0579-common_ppc32_mpc8560ads_disable_force_mode.mvlpatch +pro-0580-pro_serial_cpm_uart_pq2fads.mvlpatch +pro-0581-common_ppc32_mpc8560ads_cpm_uart.mvlpatch +pro-0582-common_ppc32_mpc8560ads_cpm_uart_pins.mvlpatch +pro-0583-common_ppc32_cpm_uart_kgdb_fix.mvlpatch +pro-0584-pdc202xx_old_remove_obsolete_busproc.mvlpatch +pro-0585-piix_remove_mwdma0_check.mvlpatch +ST-Océ DAC R10.1.5-3.3 76 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0586-0434_ext3_EA_Ext_23_no_spare_xattr_handler_slots_needed.mvlpatc +h +pro-0587-0554_cs89x0_collect_tx_bytes_statistics.mvlpatch +pro-0588-0530_IRDA_out_of_range_array_access.mvlpatch +pro-0589-common_rt_pi_list_add_list_del_init.mvlpatch +pro-0590-ide_dma_speed_fixes.mvlpatch +pro-0591-ide_dma_speed_warning_fix.mvlpatch +pro-0592-add_ICH7_support.mvlpatch +pro-0593-piix_add_82801DBL_support.mvlpatch +pro-0594-piix_remove_init_setup_handler.mvlpatch +pro-0595-piix_remove_useless_comment.mvlpatch +pro-0596-piix_merge_header.mvlpatch +pro-0597-piix_fix_82371MX_enablebits.mvlpatch +pro-0598-piix_slc90e66_pio_fallback_fix.mvlpatch +pro-0599-Fix_oops_in_sysfs_hash_and_remove_file.mvlpatch +pro-0600-sysfs_remove_dir_needs_to_invalidate_the_dentry.mvlpatch +pro-0601-mtd_cfi_init_wait_queue_in_chip_struct.mvlpatch +pro-0602-common_jffs2_gc_1.160_backport.mvlpatch +pro-0603-pro_ppc32_add_platform_device_functions.mvlpatch +pro-0604- +pro_ppc32_adds_mpc885ads_mpc866ads_mpc8272ads_specific_platform +_stuff.mvlpatch +pro-0605-pro_ppc32_mpc8xx_irda.mvlpatch +pro-0606-pro_ppc32_i2c_885_866_support.mvlpatch +pro-0607-pro_ppc32_fs_enet_use_pal.mvlpatch +pro-0608-pro_mpc8272_fec_setup.mvlpatch +pro-0609-common_i386_io_apic_cache_build_fix.mvlpatch +pro-0610-shmat.mvlpatch +pro-0611-mtd_cfi_cmdset_0001_fix_range_for_cache_invalidation.mvlpatch +pro-0612-common_remove_scsi_timer_race.mvlpatch +pro-0613-common_scsi_memory_deadlock.mvlpatch +pro-0614-common_scsi_module_panic.mvlpatch +pro-0615-pro_usb_dev_serial_gadget_criticalsections_fix.mvlpatch +pro-0616-pro_common_driver_bus_sem_fix.mvlpatch +pro-0617-common_kgdb_serial.mvlpatch +pro-0618-common_ppc64_boot_makefile.mvlpatch +pro-0619-common_bit_spinlocks_preempt.mvlpatch +pro-0620-common_fix_pfkeyv2_type.mvlpatch +pro-0621-pro_mips_rdhwr_fix.mvlpatch +pro-0622-pro_mips_fp_branch_emulation_fix.mvlpatch +pro-0623-pro_mips_rbhma4x00_rtl8019as_init_fix.mvlpatch +pro-0624-pro_mips_fix_non_linear_memory_mapping.mvlpatch +pro-0625-pro_mips_hrt_fix.mvlpatch +pro-0626-pro_mips_db15x0_noncoherent_dma.mvlpatch +pro-0627-pro_mips_db1xx0_platform.mvlpatch +ST-Océ DAC R10.1.5-3.3 77 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0628-pro_mips_au1xx0_eth_fix_tx_stats.mvlpatch +pro-0629-pro_mips_au1000_eth_probe_rewrite.mvlpatch +pro-0630-pro_hpt366_driver_reworked.mvlpatch +pro-0631-pro_mips_36bit_phys_addr_swap_entry_fix.mvlpatch +pro-0632-pro_mips_36bit_phys_addr_sys_mprotect_fix.mvlpatch +pro-0633-pro_mips_36bit_phys_addr_really_mark_pte_dirty.mvlpatch +pro-0634-pro_mips_36bit_phys_addr_really_mark_buddy_pte_global.mvlpatch +pro-0635-pro_mips_au15x0_fix_counter_frequency.mvlpatch +pro-0636-pro_mips_au1x00_alsa_spinlock_fix.mvlpatch +pro-0637-pro_mips_au1x00_alsa_ac97_memory_mapped.mvlpatch +pro-0638-pro_mips_au1x00_retain_od_bit.mvlpatch +pro-0639-pro_mips_au1500_work_around_unknown_errata.mvlpatch +pro-0640-common_frd_remove_extern_declarations.mvlpatch +pro-0641-pro_ppc_xilinx_ml403_to_ml40x.mvlpatch +pro-0642-pro_ppc_xilinx_edk_to_common.mvlpatch +pro-0643-pro_ppc_xilinx_ethtool_support_to_emac.mvlpatch +pro-0644-pro_ppc_xilinx_gpio_dual_channel.mvlpatch +pro-0645-pro_ppc_xilinx_add_xparameters_defaults.mvlpatch +pro-0646-pro_ppc_xilinx_temac_fixes.mvlpatch +pro-0647-pro_ppc_xilinx_mac_eepro.mvlpatch +pro-0648-pro_ppc_xilinx_kconfig.mvlpatch +pro-0649-pro_ppc_xilinx_emac_fixes.mvlpatch +pro-0650-pro_ppc_xilinx_edk_new_emac.mvlpatch +pro-0651-pro_ppc_xilinx_edk_new_gpio.mvlpatch +pro-0652-pro_ppc_xilinx_edk_new_iic.mvlpatch +pro-0653-pro_ppc_xilinx_edk_new_ps2.mvlpatch +pro-0654-pro_ppc_xilinx_edk_new_sysace.mvlpatch +pro-0655-pro_ppc_xilinx_edk_new_uartlite.mvlpatch +pro-0656-SNMP_NAT_fix_memory_corruption_CVE_2006_2444.mvlpatch +pro-0657-pro_ppc32_pcmcia_8xx.mvlpatch +pro-0658-pro_ppc32_pcmcia_update.mvlpatch +pro-0659-pro_ppc32_8xx_pcmcia_885_866_support.mvlpatch +pro-0660-pro_cpm_uart_kgdb_8xx.mvlpatch +pro-0661-pro_ppc32_mpc885ads_mpc86xads_mtd.mvlpatch +pro-0662-pro_ppc32_mpc8xx_i2c_algo.mvlpatch +pro-0663-pro_ppc32_mm_dcbst_fix.mvlpatch +pro-0664-pro_ppc32_pcmcia_8xx_fix_build_error.mvlpatch +pro-0665-pro_ppc32_rpx_i2c_platform_device.mvlpatch +pro-0666-pro_ppc32_pcmcia_kconfig_cleanup.mvlpatch +pro-0667-pro_ppc32_fs_enet_pd_885ads.mvlpatch +pro-0668-pro_mpc885_fec_setup_fix.mvlpatch +pro-0669-pro_ppc32_mm_fix_tlbie.mvlpatch +pro-0670-common_fix_io_apic_cache_with_irq_threads.mvlpatch +pro-0671-common_ide_cs_suspend_resume.mvlpatch +pro-0672-common_ppc32_mpc8540ads_phy_disable_force_mode_fix.mvlpatch +ST-Océ DAC R10.1.5-3.3 78 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0673-common_i386_hrt_monotonic_clock_fix.mvlpatch +pro-0674-common_rt_fix_load_in_softirqs.mvlpatch +pro-0675-ppc32_dont_sleep_in_flush_dcache_icache_page.mvlpatch +pro-0676-common_ext3_remove_bit_spinlocks.mvlpatch +pro-0677-common_pxa27x_pcmcia_suspend_resume.mvlpatch +pro-0678-common_orinoco_cs_suspend_resume.mvlpatch +pro-0679-common_usb_gadget_file_storage_short_no_ok.mvlpatch +pro-0680-common_ext3_handle_attempted_delete_of_bitmap_blocks.mvlpatch +pro-0681-common_ext3_handle_attempted_double_delete_of_metadata.mvlpatch +pro-0682-common_BUG_on_error_handlings_in_Ext3_under_I_O_failure_conditi +on.mvlpatch +pro-0683-common_jbd_journal_overflow_fix_2.mvlpatch +pro-0684-common_JBD_reduce_stack_and_number_of_journal_descriptors.mvlpa +tch +pro-0685-common_JBD_log_space_management_optimization.mvlpatch +pro-0686-common_Factor_out_phase_6_of_journal_commit_transaction.mvlpatc +h +pro-0687-common_ext3_jbd_race_releasing_in_use_journal_heads.mvlpatch +pro-0688-common_ext3_fix_journal_unmap_buffer_race.mvlpatch +pro-0689-common_jbd_dirty_buffer_leak_fix.mvlpatch +pro-0690-common_ext3_fix_list_scanning_in___cleanup_transaction.mvlpatch +pro-0691-common_ext3_fix_log_do_checkpoint_assertion_failure.mvlpatch +pro-0692-common_kjournald_missing_JFS_UNMOUNT_check.mvlpatch +pro-0693-common_Fix_JBD_race_in_t_forget_list_handling.mvlpatch +pro-0694-common_Change_ll_rw_block_calls_in_JBD.mvlpatch +pro-0695-common_Fix_race_in_do_get_write_access.mvlpatch +pro-0696-common_jbd_catchup_integration.mvlpatch +pro-0697-common_marker_inode.mvlpatch +pro-0698-remove_ARM_specific_set_pmd.mvlpatch +pro-0699-add_ARM_inline_functions_to_find_pmd_from_virt.mvlpatch +pro-0700-common_arm_dma_consistent.mvlpatch +pro-0701-common_arm_preempt_rt_irq_sa_interrupt.mvlpatch +pro-0702-common_arm_default_eabi_on_non_v4.mvlpatch +pro-0703-0534_ARM_3477_1_ARM_EABI_undefine_removed_syscalls.mvlpatch +pro-0704-common_ARM_eABI_unistd_h_uclibc.mvlpatch +pro-0705- +ARM_3495_1_EABI_undefine_removed_syscalls_for_userspace_only.mv +lpatch +pro-0706- +ARM_3486_1_Mark_memory_as_clobbered_by_the_ARM__syscallX_macros +.mvlpatch +pro-0707-common_arm_mach_types_060213.mvlpatch +pro-0708-common_arm_mach_types_060518.mvlpatch +pro-0709-common_ltt_arm_oabi_fix.mvlpatch +pro-0710-ARM_EABI_more_64_bit_aligned_stack_fixes.mvlpatch +ST-Océ DAC R10.1.5-3.3 79 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0711-ARM_fix_PXA27x_DMA_allocation_priority.mvlpatch +pro-0712- +0147_ARM_3470_1_Clear_the_HWCAP_bits_for_the_disabled_kernel_fe +atures.mvlpatch +pro-0713-common_ARM_DEBUG_STACKOVERFLOW.mvlpatch +pro-0714- +0399_ARM_2796_1_Fix_ARMv5_TEJ_check_in_MMU_initalization.mvlpat +ch +pro-0715-0878_ARM_Simplify_setup_mm_for_reboot.mvlpatch +pro-0716-0081_ARM_Fix_XScale_PMD_setting.mvlpatch +pro-0717-common_arm_eabi_kconfig_help.mvlpatch +pro-0718-common_arm_eabi_slab_debug.mvlpatch +pro-0719-common_fix_ARM_preempt_schedule_irq_recursion.mvlpatch +pro-0720-ARM_3626_1_ARM_EABI_fix_syscall_restarting.mvlpatch +pro-0721-fix_silly_ARM_non_EABI_build_error.mvlpatch +pro-0722-pro_arm_omap5912_osk_audio.mvlpatch +pro-0723-common_arm_kgdb_longjmp_cpsr_restore.mvlpatch +pro-0724-common_usb_gadget_chips_update.mvlpatch +pro-0725-common_jffs2_autoplace_erasedcheck.mvlpatch +pro-0726-common_yaffs1_deprecate.mvlpatch +pro-0727-common_yaffs2.mvlpatch +pro-0728-common_yaffs_noerasedtagsecc.mvlpatch +pro-0729-common_yaffs2_enable_complex_oob.mvlpatch +pro-0730-common_yaffs_losetup.mvlpatch +pro-0731-common_yaffs_readdir_rewind.mvlpatch +pro-0732-common_yaffs_chunk_erased_check_disabled.mvlpatch +pro-0733-common_yaffs_rt_lock_held.mvlpatch +pro-0734-common_yaffs_umount_flush.mvlpatch +pro-0735-common_yaffs_kswapd_deadlock.mvlpatch +pro-0736-common_yaffs_needs_mtd.mvlpatch +pro-0737-common_mmc_v4.mvlpatch +pro-0738-spi_1_framework.mvlpatch +pro-0739-spi_2_7846.mvlpatch +pro-0740-spi_3_mtd_dataflash.mvlpatch +pro-0741-spi_4_add_spi_driver_structure.mvlpatch +pro-0742-spi_5_core_tweaks.mvlpatch +pro-0743-spi_6_ads7836_uses_spi_driver.mvlpatch +pro-0744-spi_7_bitbang_driver.mvlpatch +pro-0745-spi_8_m25_serial_flash.mvlpatch +pro-0746-spi_9_linked_lists_instead_of_arrays.mvlpatch +pro-0747-spi_10_misc_fixes.mvlpatch +pro-0748-spi_11_removal_fastcall_crap.mvlpatch +pro-0749-spi_12_butterfly.mvlpatch +pro-0750-common_spi_fixes.mvlpatch +pro-0751-arm_ptrace_singlestep_bx_blx.mvlpatch +ST-Océ DAC R10.1.5-3.3 80 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0752-mmc_sd_support_protocol.mvlpatch +pro-0753-mmc_add_mmc_hostname_macro.mvlpatch +pro-0754-mmc_add_class_devices.mvlpatch +pro-0755-mmc_ios_for_mmc_chip_select.mvlpatch +pro-0756-sd_initialize_SD_cards.mvlpatch +pro-0757-sd_read_only_switch.mvlpatch +pro-0758-sd_scr_register.mvlpatch +pro-0759-sd_scr_in_sysfs.mvlpatch +pro-0760-sd_4_bit_bus.mvlpatch +pro-0761-sd_copyright_notice.mvlpatch +pro-0762-mmc_allow_detection_removal_to_be_delayed.mvlpatch +pro-0763-arm_3120_1_fix_mmc_sd_card_driver_resume_deadlock.mvlpatch +pro-0764-common_arm_omap_mmc_detection_removal_update.mvlpatch +pro-0765-pro_davinci_core_kernel.mvlpatch +pro-0766-pro_davinci_network.mvlpatch +pro-0767-pro_davinci_i2c.mvlpatch +pro-0768-pro_davinci_audio.mvlpatch +pro-0769-pro_davinci_flash.mvlpatch +pro-0770-pro_davinci_ide.mvlpatch +pro-0771-pro_davinci_mmc.mvlpatch +pro-0772-pro_davinci_rtc.mvlpatch +pro-0773-pro_davinci_usb.mvlpatch +pro-0774-pro_davinci_video_in.mvlpatch +pro-0775-pro_davinci_video_out.mvlpatch +pro-0776-pro_davinci_enable_config_swap.mvlpatch +pro-0777-pro_davinci_hrt_fix_timer_period.mvlpatch +pro-0778-pro_davinci_add_frd_support.mvlpatch +pro-0779-pro_davinci_config_ilat.mvlpatch +pro-0780-pro_arm_davinci_usb_preempt_rt_fix.mvlpatch +pro-0781-pro_arm_davinci_vpss_ti_fixes.mvlpatch +pro-0782-pro_arm_davinci_musb_dma_ping_s22.mvlpatch +pro-0783-pro_arm_davinci_mmc_detection_removal_update.mvlpatch +pro-0784-pro_arm_davinci_emac_locking.mvlpatch +pro-0785-pro_arm_davinci_reboot_fix.mvlpatch +pro-0786-pro_fix_long_patches_link_line.mvlpatch +pro-0787-pro_ppc_xilinx_edk_new_emac_sgdma_fix.mvlpatch +pro-0788-fix_memory_leak_with_file_leases.mvlpatch +pro-0789-fix_oops_on_ipv6_route_lookup.mvlpatch +pro-0790-fix_xfrm_tunnel_oops_with_large_packets.mvlpatch +pro-0791-fix_dst_destroy_race.mvlpatch +pro-0792-oprofile_add_check_user_page_readable.mvlpatch +pro-0793-get_user_pages_kill_get_page_map.mvlpatch +pro-0794-check_user_page_readable_deadlock_fix.mvlpatch +pro-0795-get_user_pages_race_for_write_access.mvlpatch +pro-0796-fix_scheduler_deadlock.mvlpatch +ST-Océ DAC R10.1.5-3.3 81 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0797-fix_kill_proc_info_vs_clone_thread_race.mvlpatch +pro-0798-fork_fix_race_in_setting_childs_pgrp_and_tty.mvlpatch +pro-0799-fix_signal_live_leak_in_copy_process.mvlpatch +pro-0800-preempt_race_in_getppid.mvlpatch +pro-0801-common_kgdb_cross_hang.mvlpatch +pro-0802-pro_mips_nec_emma2rh_base.mvlpatch +pro-0803-pro_mips_nec_emma2rh_pci.mvlpatch +pro-0804-pro_mips_nec_emma2rh_i2c.mvlpatch +pro-0805-pro_mips_nec_emma2rh_ramdisk.mvlpatch +pro-0806-pro_mips_nec_emma2rh_kgdb.mvlpatch +pro-0807-pro_ppc_xilinx_ml300_rename_ts.mvlpatch +pro-0808-pro_ppc_xilinx_sysace_fix.mvlpatch +pro-0809-pro_create_dev_console.mvlpatch +pro-0810-pro_add_xilinx_ml40x_defconfig.mvlpatch +pro-0811-dont_autoreap_traced_children_CVE_2005_3784.mvlpatch +pro-0812-fix_ptrace_self_attach_rule_CVE_2005_3783.mvlpatch +pro-0813-vfs_local_denial_of_service_with_file_leases_CVE_2005_3857.mvlp +atch +pro-0814-pro_ppc32_4xx_kgdb_exception_stack_workaround.mvlpatch +pro-0815-pro_ppc_xilinx_gpio_dual_channel_fix.mvlpatch +pro-0816-mv643xx_eth_skb_leak.mvlpatch +pro-0817-mv643xx_eth_shared_irq.mvlpatch +pro-0818-mv643xx_eth_ppc_iomem_annotations.mvlpatch +pro-0819-mv643xx_eth_hw_checksum_workaround.mvlpatch +pro-0820-mv643xx_fix_outstanding_skb_counter.mvlpatch +pro-0821-mv643xx_fix_promiscuous_mode.mvlpatch +pro-0822-mv643xx_eth_sram_printk.mvlpatch +pro-0823-mv643xx_eth_include_ip.h_and_in.h.mvlpatch +pro-0824-mv643xx_eth_rx_buffer_8_byte_alignment.mvlpatch +pro-0825-mv643xx_eth_fix_small_unaligned_fragments.mvlpatch +pro-0826-mv643xx_eth_iounmap_correct_sram_buffer.mvlpatch +pro-0827-mv643xx_eth_minimal_spinlocks.mvlpatch +pro-0828-mv643xx_eth_hw_checksum_only_ipv4.mvlpatch +pro-0829-mv643xx_eth_fix_transmit_skb_accounting.mvlpatch +pro-0830-mv643xx_eth_merge_open_and_stop_helpers.mvlpatch +pro-0831-mv643xx_eth_remove_masking_of_extended_intr.mvlpatch +pro-0832- +common_mv643xx_eth_whitespace_and_comment_sync_with_community.m +vlpatch +pro-0833-common_mv643xx_eth_fix_spinlock_recursion.mvlpatch +pro-0834-common_mv643xx_eth_update_last_rx.mvlpatch +pro-0835-common_mv643xx_eth_whitespace_cleanup_a.mvlpatch +pro-0836-common_mv643xx_eth_fix_module_build.mvlpatch +pro-0837-common_mv643xx_eth_remove_port_mac_addr.mvlpatch +pro-0838-common_mv643xx_eth_merge_unicast_multicast_filter.mvlpatch +ST-Océ DAC R10.1.5-3.3 82 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0839-common_mv643xx_eth_rename_tx_ring_skbs.mvlpatch +pro-0840-common_mv643xx_eth_consistent_port_enable_disable.mvlpatch +pro-0841-common_mv643xx_eth_use_mii_library_for_phy.mvlpatch +pro-0842-common_mv643xx_eth_use_mii_library_for_ethtool.mvlpatch +pro-0843-common_mv643xx_eth_cleanup_platform_data.mvlpatch +pro-0844-common_mv643xx_eth_select_mii.mvlpatch +pro-0845- +common_mv643xx_eth_fix_misplaced_parenthesis_in_mv643xx_eth_por +t_disable_rx.mvlpatch +pro-0846-common_ppc32_mv64x60_uart_sdma_fix.mvlpatch +pro-0847-common_mv643xx_eth_Wait_for_carrier_ok_on_open.mvlpatch +pro-0848-undo_do_readv_writev_behavior_change.mvlpatch +pro-0849-common_fix_update_times.mvlpatch +pro-0850-ide_cleanup_eighty_ninty_three.mvlpatch +pro-0851-ide_fix_SATA_drive_cable_detect.mvlpatch +pro-0852-common_ppc32_ibm_emac_kgdb_fix.mvlpatch +pro-0853-net_marvell_sysfs_symlink_fix.mvlpatch +pro-0854-common_mv643xx_eth_Clear_int_cause_registers_before_calling_req +uest_irq.mvlpatch +pro-0855-fix_stop_signal_race.mvlpatch +pro-0856-move_group_exit_flag_into_signal_struct_flags_word.mvlpatch +pro-0857-NPTL_signal_delivery_deadlock_fix.mvlpatch +pro-0858-common_mv643eth_carrier_init_fix.mvlpatch +pro-0859-common_ppc32_rt_highmem_fix.mvlpatch +pro-0860-pro_ppc32_pq2fads_support.mvlpatch +pro-0861-pro_usb_gadget_mpc8272_udc_config_fixes.mvlpatch +pro-0862-pro_usb_gadget_mpc8272_udc_pq2fads.mvlpatch +pro-0863-pro_ppc32_pq2_reboot.mvlpatch +pro-0864-common_add_hostap_drivers_rm_wireless.h_for_commuity_update.mvl +patch +pro-0865-Wireless_Extensions_18_aka_WPA.mvlpatch +pro-0866-common_mv643xx_eth_carrier_init_fix_fix.mvlpatch +pro-0867-0288_SPI_spi_butterfly_restore_lost_deltas.mvlpatch +pro-0868-pro_mphysmap_updates.mvlpatch +pro-0869-pro_ti_titan_board.mvlpatch +pro-0870-pro_ti_titan_mtd.mvlpatch +pro-0871-pro_ti_titan_i2c.mvlpatch +pro-0872-pro_titan_mac.mvlpatch +pro-0873-pro_ti_titan_kgdb_fix.mvlpatch +pro-0874-stop_calling_phy_stop_interrupts_twice.mvlpatch +pro-0875-common_scsi_adaptec_94xx_unlocks_in_error_path.mvlpatch +pro-0876-fix_de_thread_send_group_sigqueue_race.mvlpatch +pro-0877-fix_kill_proc_info_vs_fork_theoretical_race.mvlpatch +pro-0878-module_strlen_user_race_fix.mvlpatch +pro-0879-remove_duplicated_code_from_proc_and_ptrace.mvlpatch +ST-Océ DAC R10.1.5-3.3 83 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0880-ptrace_attach_ptrace_traceme_de_thread_race.mvlpatch +pro-0881-fix_signedness_issues_in_net_core_filter_c.mvlpatch +pro-0882-pro_ppc32_440sp_mal_channels_fix.mvlpatch +pro-0883-pro_ppc32_440sp_sram_dcr_fix.mvlpatch +pro-0884-pro_ppc32_440sp_cputable_entry.mvlpatch +pro-0885-pro_ppc32_440sp_uart2.mvlpatch +pro-0886-pro_ppc32_440sp_uic_fixes.mvlpatch +pro-0887-pro_ppc32_440sp_pcix_fixes.mvlpatch +pro-0888-pro_ppc32_440sp_l2cache.mvlpatch +pro-0889-pro_ppc32_440sp_clk_pwr_mgmt.mvlpatch +pro-0890-pro_ppc32_440sp_mtd_defs.mvlpatch +pro-0891-pro_ppc32_440sp_mtd_map.mvlpatch +pro-0892-pro_ppc32_440sp_kgdb_serial.mvlpatch +pro-0893-pro_ppc32_440sp_kgdb_single_step_fix.mvlpatch +pro-0894- +common_powerpc_Fix_machine_check_problem_on_32_bit_kernels_CVE_ +2006_2448.mvlpatch +pro-0895-common_netfilter_sctp_fix_endless_loop_caused_by_0_chunk_length +_CVE_2006_3085.mvlpatch +pro-0896-sctp_conntrack_fix_crash_triggered_by_packet_without_chunks_CVE +_2006_2934.mvlpatch +pro-0897-fs_xfs_eagain_bug.mvlpatch +pro-0898-pro_arm_davinci_i2c_fix.mvlpatch +pro-0899-common_ltt-fix-null-trace-handle-dereference.mvlpatch +pro-0900-pro_mips_fix_dcache_aliasing.mvlpatch +pro-0901-Add_debugging_check_when_adding_timers.mvlpatch +pro-0902-Fix_add_timer_race_in_neigh_add_timer.mvlpatch +pro-0903-common_ip_tables_h_c++_fix.mvlpatch +pro-0904-common_hrt_fix_tstojiffie_rounding_error.mvlpatch +pro-0905-usb_another_workaround_for_cdc_acm.mvlpatch +pro-0906-usb_cdc_acm_module_and_zoom_2985_modem.mvlpatch +pro-0907-usb_fix_for_open_disconnect_race_in_acm.mvlpatch +pro-0908-usb_fix_bug_in_acm_open_function.mvlpatch +pro-0909-usb_add_usb_cdc.h.mvlpatch +pro-0910-usb_cdc_acm_uses_usb_cdc.h.mvlpatch +pro-0911-usb_fix_acm_trouble_with_terminals.mvlpatch +pro-0912-usb_export_usb_get_intf_and_usb_put_intf.mvlpatch +pro-0913-usb_fix_usb_reference_count_bug_in_cdc_acm_driver.mvlpatch +pro-0914-usb_cdc_acm_patch_to_use_kzalloc.mvlpatch +pro-0915-usb_converting_cdc_acm_to_a_rinq_queue.mvlpatch +pro-0916-usb_fix_oops_in_acm_disconnect.mvlpatch +pro-0917- +mmc_add_comment_about_GENHD_FL_REMOVABLE_to_mmc_block.mvlpatc +h +pro-0918-mmc_proper_mmc_command_classes_support.mvlpatch +ST-Océ DAC R10.1.5-3.3 84 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0919-mmc_use_command_class_to_determine_read_only_status.mvlpatch +pro-0920-mmc_fix_protocol_errors.mvlpatch +pro-0921-mmc_proper_check_of_scr_error_code.mvlpatch +pro-0922-mmc_set_correct_capacity_for_1024_byte_block_cards.mvlpatch +pro-0923-mmc_improve_mmc_card_block_size_selection.mvlpatch +pro-0924-mmc_fix_missing_comma.mvlpatch +pro-0925-fbcon_save_var_rotate_field_in_struct_display.mvlpatch +pro-0926-common_blk_dump_rq_flags_boundary_bug19607.mvlpatch +pro-0927-usb_gadget_ether_highspeed_conformance_fix.mvlpatch +pro-0928-af_unix_fix_siocinq_for_stream.mvlpatch +pro-0929-common_ensure_futex_enabled.mvlpatch +pro-0930-common_mtd_core_bounds_fixup.mvlpatch +pro-0931-mmc_ensure_correct_mmc_priv_behaviour.mvlpatch +pro-0932- +mmc_add_mmc_detect_change_delay_support_for_pxamci_driver.mvlpa +tch +pro-0933-common_ppc_kgdb_omit_frame_pointer.mvlpatch +pro-0934-Fix_race_condition_in_sk_stream_wait_connect.mvlpatch +pro-0935-common_mv643xx_eth_rx_dma_unmap.mvlpatch +pro-0936-common_mpsc_interrupt_clear_fix.mvlpatch +pro-0937-common_yaffs2_write_return.mvlpatch +pro-0938-Fix_deadlock_in_ip6_queue.mvlpatch +pro-0939-Fix_SKB_leak_in_ip6_input_finish.mvlpatch +pro-0940-ip_route_input_panic_fix.mvlpatch +pro-0941-IPV4_Fix_DST_leak_in_icmp_push_reply.mvlpatch +pro-0942-common_usb_gadget_rndis_overflow.mvlpatch +pro-0943-NET_fix_oops_after_tunnel_module_unload.mvlpatch +pro-0944-IPV4_Fix_memory_leak_during_fib_info_hash_expansion.mvlpatch +pro-0945-remove_offsetof_from_user_visible_linux_stddef.mvlpatch +pro-0946-pro_ppc_prpmc275_platform.mvlpatch +pro-0947-pro_ppc_prpmc275_i2c_max6900_rtc.mvlpatch +pro-0948-pro_mv64x60_wdt.mvlpatch +pro-0949-pro_ppc_prpmc275_kgdb_mpsc_fix.mvlpatch +pro-0950-pro_ppc_prpmc275_mtd.mvlpatch +pro-0951-common_ppc_mpc8641.mvlpatch +pro-0952-SATA_support_for_Intel_ICH7.mvlpatch +pro-0953-SATA_AHCI_support_for_Intel_ICH7R.mvlpatch +pro-0954-libata_ahci_Add_support_for_ULi_M5288.mvlpatch +pro-0955- +POWERPC_Add_Vitesse_8244_PHY_for_MPC8641_HPCN_platform.mvlpatch +pro-0956-pro_ppc_mpc8641_hpcn.mvlpatch +pro-0957-x86_cpuid_missed_cache_entries.mvlpatch +pro-0958-common_Mobil_Pentium_4_HT_and_the_NMI.mvlpatch +pro-0959-common_i386_x86_64_Fix_SMP_NMI_watchdog_race.mvlpatch +pro-0960-common_check_nmi_watchdog_is_broken.mvlpatch +ST-Océ DAC R10.1.5-3.3 85 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-0961- +common_i386_nmi_watchdog_Merge_check_nmi_watchdog_fixes_from_x8 +6_64.mvlpatch +pro-0962-common_x86_64_fix_apic_error_on_bootup.mvlpatch +pro-0963-common_ppc_mpc7448_cpu.mvlpatch +pro-0964-common_serial_smp_race_fix.mvlpatch +pro-0965-gianfar_Fix_sparse_warnings.mvlpatch +pro-0966-Fix_locking_in_gianfar.mvlpatch +pro-0967-common_net_ibm_emac_sysfs_symlink_fix.mvlpatch +pro-0968-common_fix_numeric_overflow_exception_in_tstojiffie.mvlpatch +pro-0969-NETFILTER_Wait_until_all_references_to_ip_conntrack_untracked_a +re_dropped_on_unload.mvlpatch +pro-0970-Fix_timer_leak_in_neigh_changeaddr.mvlpatch +pro-0971-common_jbd_hang.mvlpatch +pro-0972-jbd_split_checkpoint_lists.mvlpatch +pro-0973-jbd_fix_transaction_batching.mvlpatch +pro-0974-pro_ppc32_rheap_grow_fix.mvlpatch +pro-0975-pro_ppc32_rheap_align_fix.mvlpatch +pro-0976-pro_ppc32_add_mpc8360.mvlpatch +pro-0977-pro_ppc32_8360_qe_irq_fix.mvlpatch +pro-0978-pro_ppc32_8360_phy_irq_fix.mvlpatch +pro-0979-common_rt_drivers_fix_ibm_emac.mvlpatch +pro-0980-pro_mips_vr41xx_calc_clock_anytime.patch.mvlpatch +pro-0981-pro_mips_vr41xx_spare_timer_init.mvlpatch +pro-0982-pro_mips_vr41xx_rtc.mvlpatch +pro-0983-pro_mips_vr41xx_update_pci.mvlpatch +pro-0984-pro_mips_vr41xx_gpio.mvlpatch +pro-0985-pro_mips_vr41xx_rm_obsolete_giu.mvlpatch +pro-0986-pro_mips_vr41xx_update_icu.mvlpatch +pro-0987-pro_mips_cmbvr4133_serial_fixes.mvlpatch +pro-0988-pro_mips_cmbvr4133_rockhopper_irq_fixes.mvlpatch +pro-0989-pro_mips_cmbvr4133_defconfig.mvlpatch +pro-0990-pro_mips_cmbvr4133_serio_irqs.mvlpatch +pro-0991-pro_mips_vr41xx_remove_timex.mvlpatch +pro-0992-pro_mips_cmbvr4133_timer_irq.mvlpatch +pro-0993-pro_mips_cmbvr4133_m1535plus_init.mvlpatch +pro-0994-pro_mips_vr41xx_kgdb_serial.mvlpatch +pro-0995-pro_mips_cmbvr4133_alim15x3.mvlpatch +pro-0996-pro_mips_cmbvr4133_usb_irq.mvlpatch +pro-0997-pro_mips_vr4133_gpio_regs_fix.mvlpatch +pro-0998-pro_mips_cmbvr4133_candy_eth.mvlpatch +pro-0999-pro_mips_cmbvr4133_ide.mvlpatch +pro-1000-pro_mips_cmbvr4133_raw_ops.mvlpatch +pro-1001-pro_mips_vr41xx_rt.mvlpatch +pro-1002-pro_mips_cmbvr4133_i2c.mvlpatch +ST-Océ DAC R10.1.5-3.3 86 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1003-pro_mips_cmbvr4133_ricoh_rtc.mvlpatch +pro-1004-pro_mips_vr4133_erratum15_fix.mvlpatch +pro-1005-pro_ide_lba48_dma_check_fix.mvlpatch +pro-1006-pro_ide_alim15x3_no_lba48_dma_fix.mvlpatch +pro-1007-common_ltt_new_event_before_tracedaemon.mvlpatch +pro-1008-common_syncppp_buggy_protocol_fix.mvlpatch +pro-1009-pro_arm_davinci_defconfig_warnings.mvlpatch +pro-1010-pro_arm_davinci_i2c_fix_from_TI.mvlpatch +pro-1011-pro_arm_davinci_eth_half_duplex.mvlpatch +pro-1012-pro_arm_davinci_nand_clean_unmount.mvlpatch +pro-1013-pro_arm_davinci_vpfe_buf_release.mvlpatch +pro-1014-pro_arm_davinci_audio_fixes_TI.mvlpatch +pro-1015-pro_arm_davinci_usb_ti_updates.mvlpatch +pro-1016-pro_arm_davinci_nand_driver_model.mvlpatch +pro-1017-pro_v4l_videobuf_compile_fix.mvlpatch +pro-1018-ppc64_fix_32_bit_signal_frame_back_link.mvlpatch +pro-1019-ethernet_fix_first_packet_goes_out_with_mac.mvlpatch +pro-1020-NET_Fix_memory_leak_in_sys__send_recv_msg_w_compat.mvlpatch +pro-1021-pro_mips_tx49xx_FIXADDR_TOP.mvlpatch +pro-1022-pro_tc86c001_remove_old_ide_driver.mvlpatch +pro-1023-pro_tc86c001_ide_driver.mvlpatch +pro-1024-pro_tc86c001_make_init_hwif_static.mvlpatch +pro-1025-pro_tc86c001_mark_init_chipset_for_hotplug.mvlpatch +pro-1026-common_abslock_before_list_empty.mvlpatch +pro-1027-common_remove_host_binaries_after_checksetconfig.mvlpatch +pro-1028-common_fix_too_long_requested_time.mvlpatch +pro-1029-common_do_hardirq_locking.mvlpatch +pro-1030-common_rt_remove_special_case_load.mvlpatch +pro-1031-common_mtd_ioctl32.mvlpatch +pro-1032-common_mtd_jffs2_rt_fix.mvlpatch +pro-1033-common_ipv6_flowlabel_stream_fix.mvlpatch +pro-1034- +IPV6_Support_IPV6_RECV_TCLASS_socket_options_ancillary_data.mvl +patch +pro-1035-common_fold_nanosleep_into_clock_nanosleep.mvlpatch +pro-1036-common_mtd_nand_prepare_oobbuf_fix.mvlpatch +pro-1037-consolidate_sys_ptrace.mvlpatch +pro-1038-use_ptrace_get_task_struct_in_various_places.mvlpatch +pro-1039-ptrace_attach_ptrace_traceme_de_thread_race_traceme_fix.mvlpatc +h +pro-1040-NETPOLL_pre_fill_skb_pool.mvlpatch +pro-1041-IPV6_fix_lockup_via_proc_net_ip6_flowlabel.mvlpatch +pro-1042-common_ipv6_recv_tclass_panic_fix.mvlpatch +pro-1043-TCP_Fix_sock_orphan_dead_lock.mvlpatch +pro-1044-fix_uidhash_lock_RCU_deadlock.mvlpatch +ST-Océ DAC R10.1.5-3.3 87 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1045-Fix_uidhash_lock_RXU_deadlock_fix.mvlpatch +pro-1046-pro_mips_mips64_pgtable_64.mvlpatch +pro-1047-pro_mips_pnx8550_fix_write_config_byte.mvlpatch +pro-1048-common_i2c_eeprom_allow_bigger_sizes.mvlpatch +pro-1049-pro_mips_cavium_octeon.mvlpatch +pro-1050-pro_mips_cavium_octeon_kgdb.mvlpatch +pro-1051-pro_mips_cavium_octeon_hrt.mvlpatch +pro-1052-pro_mips_cavium_octeon_16bit_cf.mvlpatch +pro-1053-pro_mips_cavium_octeon_cpu_ids.mvlpatch +pro-1054-pro_mips_cavium_octeon_pci.mvlpatch +pro-1055-pro_mips_cavium_octeon_config.mvlpatch +pro-1056-pro_mips_cavium_2Gmem_cf.mvlpatch +pro-1057-pro_mips_cavium_2Gmem_hal.mvlpatch +pro-1058-pro_mips_cavium_2Gmem_headers.mvlpatch +pro-1059-pro_mips_cavium_2Gmem_octeon_info.mvlpatch +pro-1060-pro_mips_cavium_2Gmem_setup.mvlpatch +pro-1061-pro_mips_cavium_2Gmem_smp.mvlpatch +pro-1062-pro_mips_cavium_2Gmem_userio.mvlpatch +pro-1063-pro_fix_octeon_thread_pointer_fetch_in_delay_slot.mvlpatch +pro-1064-pro_mips_cavium_octeon_partitions.mvlpatch +pro-1065-pro_mips_cavium_octeon_rt.mvlpatch +pro-1066-pro_mips_cavium_serial_irq.mvlpatch +pro-1067-pro_mips_cavium_octeon_memory_fix.mvlpatch +pro-1068-pro_mips_cavium_octeon_4Gbpci_fix.mvlpatch +pro-1069-pro_mips_cavium_octeon_memfree_fix.mvlpatch +pro-1070-pro_mips_cavium_octeon_up_compile.mvlpatch +pro-1071-pro_mips_cavium_octeon_kgdb8250_setup.mvlpatch +pro-1072-pro_mips_cavium_octeon_ethernet.mvlpatch +pro-1073-Fix_sctp_privilege_elevation_CVE_2006_3745.mvlpatch +pro-1074- +common_CVE_2006_4535_Regression_with_fix_for_SCTP_abort_issue.m +vlpatch +pro-1075-setitimer_early_fire_fixup.mvlpatch +pro-1076-xtensa-architecture-support-for-tensilica-xtensa-part-1.mvlpatc +h +pro-1077-xtensa-architecture-support-for-tensilica-xtensa-part-7.patch.m +vlpatch +pro-1078-xtensa-architecture-support-for-tensilica-xtensa-part-6.patch.m +vlpatch +pro-1079-common_xtensa_headers_update.mvlpatch +pro-1080-common_xtensa_define_hz_for_userspace.mvlpatch +pro-1081-common_xtensa_config_core.mvlpatch +pro-1082-common_xtensa_le.mvlpatch +pro-1083-common_xtensa_be_fixes.mvlpatch +pro-1084-common-add-pfn-arg-for-xtensa-extern-flush_cache_page.mvlpatch +ST-Océ DAC R10.1.5-3.3 88 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1085-xtensa-architecture-support-for-tensilica-xtensa-part-4.mvlpatc +h +pro-1086-xtensa-architecture-support-for-tensilica-xtensa-part-2.mvlpatc +h +pro-1087-xtensa-architecture-support-for-tensilica-xtensa-part-3.mvlpatc +h +pro-1088-xtensa-architecture-support-for-tensilica-xtensa-part-5.mvlpatc +h +pro-1089-xtensa-architecture-support-for-tensilica-xtensa-part-8.mvlpatc +h +pro-1090-xtensa_fix_asm_macro.mvlpatch +pro-1091-xtensa_zlib.mvlpatch +pro-1092-xtensa_flat_memory.mvlpatch +pro-1093-xtensa_ipc_errno_cleanup.mvlpatch +pro-1094-xtensa_remove_old_syscalls.mvlpatch +pro-1095-xtensa_remove_sys_ipc.mvlpatch +pro-1096-xtensa_remove_old_syscalls_part2.mvlpatch +pro-1097-xtensa_extern_inline.mvlpatch +pro-1098-xtensa_BE_support.mvlpatch +pro-1099-xtensa_kgdb.mvlpatch +pro-1100-xtensa_be_fixes.mvlpatch +pro-1101-xtensa_diamond.mvlpatch +pro-1102-xtensa_gdb.mvlpatch +pro-1103-add_pfn_arg_for_xtensa_flush_cache_page.mvlpatch +pro-1104-xtensa_posix_fadvise.mvlpatch +pro-1105-xtensa_misc_fixups.mvlpatch +pro-1106-xtensa_kernel_num_aregs.mvlpatch +pro-1107-xtensa_kernel_ptrace.mvlpatch +pro-1108-xtensa_kgdb_register_fix.mvlpatch +pro-1109-xtensa_kgdb_more_fixups.mvlpatch +pro-1110-ppc_mpc7448_taiga.mvlpatch +pro-1111-ppc_mpc7448_tsi108_arch.mvlpatch +pro-1112-ppc_mpc7448_tsi108_uart_z1.mvlpatch +pro-1113-ppc_mpc7448_tsi108_tesc.mvlpatch +pro-1114-ppc_mpc7448_tsi108_tesc_phy.mvlpatch +pro-1115-ppc_mpc7448_mvsata.mvlpatch +pro-1116-ppc_mpc7448_hpc2_kgdb_serial.mvlpatch +pro-1117-ppc_mpc7448_hpc2_kgdboe.mvlpatch +pro-1118-ppc_mpc7448_mvsata_fix1.mvlpatch +pro-1119-ppc_mpc7448_mvsata_timeout_fix.mvlpatch +pro-1120-ppc_mpc7448_tsi108_phy_fix.mvlpatch +pro-1121-ppc_tsi108_pic_preempt_hardirqs_fix.mvlpatch +pro-1122-ppc_tsi108_eth_poll_save_and_restore_irqs.mvlpatch +pro-1123-add_ARMv6_aliasing_cache_flush_2.mvlpatch +pro-1124-fix_ARMv6_aliasing_VIPT_caches_5.mvlpatch +ST-Océ DAC R10.1.5-3.3 89 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1125-fix_ARMv6_nonaliasing_delayed_dcache_flush_3.mvlpatch +pro-1126-8115_MM_Add_pfn_arg_to_flush_cache_page.mvlpatch +pro-1127-1480_Reformat_cosmetic_cleanups.mvlpatch +pro-1128-8495_SH_Cache_flush_simplifications_after_flush_cache_page_arg_ +change.mvlpatch +pro-1129-common_ppc32_pci_bridge_base_fix.mvlpatch +pro-1130-common_ppc32_add_8548_rev2_silicon.mvlpatch +pro-1131-pro_ppc32_85xx_add_arcadia_31.mvlpatch +pro-1132-pro_make-sure-uart-is-powered-up-when-dumping-mctrl-status.mvlp +atch +pro-1133-pro_i2c-nforce2_supports_the_nForce3_250Gb.mvlpatch +pro-1134-pro_i2c_use_PCI_DEVICE_in_bus_drivers.mvlpatch +pro-1135-pro_e100_replace_locally_implemented_delay_routines.mvlpatch +pro-1136-e100_sort_device_ids.mvlpatch +pro-1137-pro_e100_update_driver_version_number.mvlpatch +pro-1138-pro_i2c_support_for_intel_ICH7.mvlpatch +pro-1139-pro_enable_i2c_piix4_for_64-bit_platforms.mvlpatch +pro-1140-pro_i2c_group_intel_on_I2C_hardware_bus_support.mvlpatch +pro-1141-pro_e100_driver_version_white_space_comments_device_id.mvlpatch +pro-1142-pro_cdrom_kill_open_failed_error_message.mvlpatch +pro-1143-common_e100_revert_driver_version.mvlpatch +pro-1144-pro_x86_86_access_of_some_bad_address.mvlpatch +pro-1145-common_Fix-offset-error-when-reading-CS89x0-ADD_PORT- +register.m +vlpatch +pro-1146-pro_piix-backport-fixes-from-libata.mvlpatch +pro-1147-pro_IPV4_Replace__in_dev_get_with__in_dev_get_rcu_rtnl.mvlpatch +pro-1148-common_ipv6_flowlist_not_share.mvlpatch +pro-1149-pro_fix_missing_wakeup_in_ipc_sem.mvlpatch +pro-1150-pro_piix-tuneproc-fixes-cleanups.mvlpatch +pro-1151-pro_0404-MTD-NAND-Use-vmalloc-for-buffer-when-scanning-for-bad- +blocks.mvlpatch +pro-1152-pro_net_fix_too_aggressive_backoff_in_dst_garbage_collection.mv +lpatch +pro-1153-common_provide-better-printk-support-for-SMP-machines.mvlpatch +pro-1154-common_back_out_get_user_pages_race_for_write_access.mvlpatch +pro-1155-common_frd_drop_migration_adjustment.mvlpatch +pro-1156-pro_mtd_propagate_oobavail.mvlpatch +pro-1157-common_provide_an_interface_for_getting_the_current_tick_length +.mvlpatch +pro-1158-common_time_add_barrier_after_updating_jiffies_64.mvlpatch +pro-1159-common_ppc_use_current_tick_length.mvlpatch +pro-1160-common_i386_use_current_tick_length.mvlpatch +pro-1161-common_clean-up-and-make-try_to_free_buffers-not-race-with-dirt +y-pages.patch.mvlpatch +ST-Océ DAC R10.1.5-3.3 90 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1162-common_realtime-free_uid-fix.mvlpatch +pro-1163-pro_slab-respect-architecture-and-caller-mandated-alignment.mvl +patch +pro-1164-slab-debug-and-ARCH_SLAB_MINALIGN-don-t-get-along.mvlpatch +pro-1165-common_diffserv_class_handling.mvlpatch +pro-1166-sctp_fix_bad_sysctl_formatting_of_SCTP_timeout_values_on_64_bit +_m_cs.mvlpatch +pro-1167-ppc64_cputable_c99.mvlpatch +pro-1168-ppc64_970MP_PVR.mvlpatch +pro-1169-common_ppc64_970mp_tw2_mtd.mvlpatch +pro-1170-common_ppc64_970mp_tw2_initial.mvlpatch +pro-1171-ppc64_970mp_rtc_nvram_fix.mvlpatch +pro-1172-ppc64_970mp_tw2_pciio_res.mvlpatch +pro-1173-ppc64_970mp_u4_pcie.mvlpatch +pro-1174-common_ppc64_970mp_tw2_defcon_cpunum.mvlpatch +pro-1175-common_ppc64_change_zimage_load_addr.mvlpatch +pro-1176-common_ppc64_initrd_boot_param.mvlpatch +pro-1177-common_ppc64_bootwrap_fix.mvlpatch +pro-1178-common_ppc64_undo_zimage_load_addr.mvlpatch +pro-1179-common_ppc_openpic_ack_irq_preempt_smp_fix.mvlpatch +pro-1180-common_yaffs2_fix_write_tags.mvlpatch +pro-1181-common_ppc_smp_kgdb.mvlpatch +pro-1182-pro_ppc440epx_sequoia.mvlpatch +pro-1183-pro_ppc440epx_emac.mvlpatch +pro-1184-pro_ppc440epx_mtd.mvlpatch +pro-1185-pro_ppc440epx_usb_ohci.mvlpatch +pro-1186-pro_common_usb_ehci_be.mvlpatch +pro-1187-pro_ppc440epx_usb_ehci.mvlpatch +pro-1188-pro_ppc440epx_kgdb_serial.mvlpatch +pro-1189-pro_ppc440epx_sequoia_defconfig.mvlpatch +pro-1190-pro_mpc885_usb_dev_serial_peripheral.mvlpatch +pro-1191-SCTP_Add_SENTINEL_to_SCTP_MIB_stats.mvlpatch +pro-1192-common_rt_smp_runqueue_lock_fix.mvlpatch +pro-1193-common_ip6t_conntrack_ftp_fix.mvlpatch +pro-1194-simpler_topdown_mmap_layout_allocator.mvlpatch +pro-1195-Avoiding_mmap_fragmentation.mvlpatch +pro-1196-Avoiding_mmap_fragmentation_fixup.mvlpatch +pro-1197-pro_mips_vr41xx_cmdline_fix.mvlpatch +pro-1198-pro_mips_vrblade_arch.mvlpatch +pro-1199-pro_mips_vrblade_watchdog.mvlpatch +pro-1200-pro_mips_vrblade_bu9929fv.mvlpatch +pro-1201-pro_mips_vrblade_kernel_entry.mvlpatch +pro-1202-pro_mips_vrblade_defconfig.mvlpatch +pro-1203-pro_delkin.mvlpatch +pro-1204-pro_mips_vrblade_pci_backport.mvlpatch +ST-Océ DAC R10.1.5-3.3 91 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1205-pro_mips_vrblade_pci_mips_backport.mvlpatch +pro-1206-pro_mips_vrblade_pcmcia_backport.mvlpatch +pro-1207-pro_mips_vrblade_yenta_backport.mvlpatch +pro-1208-pro_mips_vrblade_pci_resources_fix.mvlpatch +pro-1209-pro_mips_vrblade_candy_marvell.mvlpatch +pro-1210-pro_mips_cmbvr4133_nec_candy_update.mvlpatch +pro-1211-pro_mips_vrblade_pcimem_fix.mvlpatch +pro-1212-pro_mips_vrblade_candy_vlan_compile_fix.mvlpatch +pro-1213-davinci_ide_udma4_support_fixup.mvlpatch +pro-1214-ppc32_8343_pvr_fix.mvlpatch +pro-1215-ppc_smp_tbsync_merge_from_arch_powerpc.mvlpatch +pro-1216-ppc_8641d_smp.mvlpatch +pro-1217-ppc_mpc8641_hpcn_kb_mouse.mvlpatch +pro-1218-ppc_mpc8641_hpcn_lpc47m192_gpio.mvlpatch +pro-1219-ppc_mpc8641_hpcn_smp_i8259_irq.mvlpatch +pro-1220-use_modern_format_for_PCI_APIC_IRQ_transform_printks.mvlpatch +pro-1221-PCI_pci_ids.h_correction_for_intel_ICH7.mvlpatch +pro-1222-AGPGART_i915GM_support.mvlpatch +pro-1223-AGPGART_fix_silly_typo_in_the_i915GM_support_patch.mvlpatch +pro-1224-ALSA_AC97_audio_support_for_intel_ICH7.mvlpatch +pro-1225-arch_i386_kernel_pci_irq.c_wrong_message_output.mvlpatch +pro-1226-ALSA_intel8x0_fix_for_broken_pci_id_define_for_ICH6.mvlpatch +pro-1227-2472_1_updates_8250.c_to_correctly_detect_XScale_UARTs.mvlpatch +pro-1228-serial_fix_16550a_misdetection.mvlpatch +pro-1229-pci_ids.h_correction_for_intel_ICH7M.mvlpatch +pro-1230-ide_pci_ids.h_correction_for_intel_ICH7R.mvlpatch +pro-1231-serial_add_UART_CAP_UUE.mvlpatch +pro-1232-irq_and_pci_ids_patch_for_intel_ESB2.mvlpatch +pro-1233-irq_and_pci_ids_for_intel_ICH7DH_and_ICH7_M_DH.mvlpatch +pro-1234-serial_dont_disable_xscale_serial_ports_after_autoconfig.mvlpat +ch +pro-1235-common_ppc_TSI108_UART_detection.mvlpatch +pro-1236-x86_remove_bogus_pci_usepirqmask_suggestion_when_no_irq_is_defi +ned.mvlpatch +pro-1237-PCI_irq_and_pci_ids_patch_for_Intel_ICH8.mvlpatch +pro-1238-PCI_Rapid_Hance_quirk.mvlpatch +pro-1239-VIA_VT8235_PCI_quirk.mvlpatch +pro-1240-fix_and_clean_up_quirk_intel_ide_combined_configuration.mvlpatc +h +pro-1241-PCI_be_more_verbose_about_resource_quirks.mvlpatch +pro-1242-PCI_ICH6_ACPI_and_GPIO_quirk.mvlpatch +pro-1243-unhide_ICH6_SMBus_take_2.mvlpatch +pro-1244- +PCI_add_PCI_quirk_for_SMBus_on_the_Asus_A6VA_notebook.mvlpatch +pro-1245-PCI_fix_ICH6_quirks.mvlpatch +ST-Océ DAC R10.1.5-3.3 92 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1246-gregkh_pci_pci_add_ich7_8_acpi_gpio_io_resource_quirks.mvlpatch +pro-1247-PCI_clean_up_printks_in_msi.c.mvlpatch +pro-1248-libata_fix_ata_piix_on_ICH6R_in_RAID_mode.mvlpatch +pro-1249-PCI_clean_up_the_msi_api.mvlpatch +pro-1250-x86_disable_MSI_for_AMD_8131.mvlpatch +pro-1251-ia64_msi_build_fix.mvlpatch +pro-1252-SATA_ahci_correction_intel_ICH7R.mvlpatch +pro-1253-msi.c_fix_a_check_after_use.mvlpatch +pro-1254-ia64_Andrews_fixes_for_warnings_on_ia64_build.mvlpatch +pro-1255-piix_IDE_PATA_patch_for_Intel_ESB2.mvlpatch +pro-1256-ata_piix_IDE_mode_SATA_patch_for_Intel_ESB2.mvlpatch +pro-1257-AHCI_mode_SATA_patch_for_Intel_ESB2.mvlpatch +pro-1258-PCI_clean_up_the_MSI_code_a_bit.mvlpatch +pro-1259-libata_check_PCI_sub_class_code_before_disabling_AHCI.mvlpatch +pro-1260-AHCI_mode_SATA_patch_for_Intel_ICH7_M_DH.mvlpatch +pro-1261-scan_all_enabled_ports_on_ata_piix.mvlpatch +pro-1262-libata_ata_piix_use_dev_printk_where_appropriate.mvlpatch +pro-1263-libata_ata_piix_cleanup_remove_duplicate_ata_port_info_records. +mvlpatch +pro-1264- +add_boot_option_to_control_Intel_SATA_PATA_combined_mode.mvlpat +ch +pro-1265-ata_piix_fix_MAP_VALUE_interpretation_for_ICH6_7.mvlpatch +pro-1266-fix_deadlock_in_msi.c.mvlpatch +pro-1267-libata_ata_piix_fix_ICH6_7_map_value_interpretation.mvlpatch +pro-1268-pro_carrilloranch_vermilion_range_i2c_driver.mvlpatch +pro-1269-pro_carrilloranch_serial_8250_pci_add_vermilion_range_support.m +vlpatch +pro-1270-pro_carrilloranch_mtd_fix_cfi_point_method_for_discontiguous_ma +ps.mvlpatch +pro-1271-pro_carrilloranch_jffs2_fix_unpoint_length.mvlpatch +pro-1272-pro_carrilloranch_mtd_vermilion_range_nor_flash_map.mvlpatch +pro-1273-pro_carrilloranch_mtd_vermilion_range_nand_flash.mvlpatch +pro-1274-pro_carrilloranch_mtd_ich7_spi_serial_flash_driver.mvlpatch +pro-1275-pro_carrilloranch_vermilion_range_msi_quirk.mvlpatch +pro-1276-pro_carrilloranch_mtd_support_ich7_in_ichxrom.mvlpatch +pro-1277-pro_carrilloranch_vermilion_range_spi_driver.mvlpatch +pro-1278-pro_carrilloranch_vermilion_range_framebuffer.mvlpatch +pro-1279- +nfsd_discard_CACHE_HASHED_flag_keeping_information_in_refcount_ +instead.mvlpatch +pro-1280-common_NETFILTER_ip6tables_remove_duplicate_code.mvlpatch +pro-1281- +common_NETFILTER_make_ipv6_find_hdr_find_transport_protocol_hea +der.mvlpatch +ST-Océ DAC R10.1.5-3.3 93 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1282-common_NETFILTER_Fix_ip6_tables_protocol_bypass_bug.mvlpatch +pro-1283- +common_NETFILTER_Fix_ip6_tables_extension_header_bypass_bug.mvl +patch +pro-1284- +common_NETFILTER_ip6_tables_use_correct_nexthdr_value_in_ipv6_f +ind_hdr.mvlpatch +pro-1285- +common_NETFILTER_ip6_tables_fix_udp_fragment_conntrack.mvlpatch +pro-1286- +IPV4_Fix_BUG_in_2.6.x_udp_poll_fragments_CONFIG_HIGHMEM.mvlpatc +h +pro-1287-jbd_log_do_checkpoint_fix.mvlpatch +pro-1288-jbd_remove_transaction_fix.mvlpatch +pro-1289-jbd_revert_checkpoint_list_changes.mvlpatch +pro-1290-jbd_embed_j_commit_timer_in_journal_struct.mvlpatch +pro-1291-jbd_convert_kjournald_to_kthread_API.mvlpatch +pro-1292-JBD_split_checkpoint_lists.mvlpatch +pro-1293-ext3_fix_memory_leak_when_the_journal_file_is_cor.mvlpatch +pro-1294-jbd_fix_BUG_in_journal_commit_transaction.mvlpatch +pro-1295-Manage_jbd_allocations_from_its_own_slabs.mvlpatch +pro-1296-manage_jbd_its_own_slab_fix.mvlpatch +pro-1297-common_ppc32_show_backtraces_fix.mvlpatch +pro-1298-x86_TF_handling.mvlpatch +pro-1299-pro_mpc8349mIDX_initial.mvlpatch +pro-1300-pro_mpc8349mIDX_rtc.mvlpatch +pro-1301-pro_cfide_driver.mvlpatch +pro-1302-pro_mpc8349mIDX_plsprt_cfide.mvlpatch +pro-1303-pro_ppc_pciauto_scan_dev0.mvlpatch +pro-1304-pro_ppc_mpc8641d_pex11_erratum_rev1.mvlpatch +pro-1305-pro_ppc_mpc8641hpcn_rev12_pci.mvlpatch +pro-1306-unbacked_shared_memory_core_dump_fix.mvlpatch +pro-1307-ppc32_85xx_add_arcadia_31_fixup.mvlpatch +pro-1308-getblk_slow_can_loop_forever.mvlpatch +pro-1309-timespec_normalize_off_by_one_errors.mvlpatch +pro-1310-pro_mips_rmi_phoenix_xlr_base.mvlpatch +pro-1311-pro_mips_rmi_xlr_drivers.mvlpatch +pro-1312-pro_mips_rmi_xlr_misc.mvlpatch +pro-1313-pro_mips_rmi_xlr_eeprom.mvlpatch +pro-1314-pro_mips_rmi_xlr_sensor.mvlpatch +pro-1315-pro_mips_rmi_xlr_pci_fixups.mvlpatch +pro-1316-common_sh_generic.mvlpatch +pro-1317-common_sh_sh7780.mvlpatch +pro-1318-pro_sh_sh7780_sci.mvlpatch +pro-1319-pro_sh_sh7780_net.mvlpatch +ST-Océ DAC R10.1.5-3.3 94 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +pro-1320-pro_sh_sh7780_block.mvlpatch +pro-1321-pro_sh_sh7780_usb.mvlpatch +pro-1322-pro_sh_sh7780_video.mvlpatch +pro-1323-pro_sh_sh7780_hrt.mvlpatch +pro-1324-pro_sh_sh7780_dma_fix.mvlpatch +pro-1325-pro_sh_tmu1_start.mvlpatch +pro-1326-pro_sh_frd.mvlpatch +pro-1327-pro_sh_rt_generic_hardirqs.mvlpatch +pro-1328-pro_sh_kernel_preemption.mvlpatch +pro-1329-pro_sh_sh7780_rt.mvlpatch +pro-1330-pro_sh_sh7780_sci1_fix.mvlpatch +pro-1331-pro_sh_sh7780_kgdb_fix.mvlpatch +pro-1332-pro_sh_sh7780_hrt_fix.mvlpatch +pro-1333-pro_sh_sh7780_latch_fix.mvlpatch +pro-1334-common_e100_driver_update_to_3_5_17.mvlpatch +pro-1335-pro_mips_rmi_hrt.mvlpatch +pro-1336-common_ppc32_Fix___copy_tofrom_user_return_value.mvlpatch +pro-1337-MTD_NOR_Fix_oops_in_cfi_amdstd_sync.mvlpatch +pro-1338-pro_arm_davinci_add_nor_flash_map_driver.mvlpatch +pro-1339-pro_ppc32_add_mpc832xmds.mvlpatch +pro-1340-pro_ppc32_ucc_geth_add_napi_multicast_and_mtu.mvlpatch +pro-1341-pro_ppc32_ucc_geth_remove_8360_workaround.mvlpatch +pro-1342-pro_ppc32_ucc_geth_NAPI_fixup.mvlpatch +pro-1343-pro_ppc32_83xx_second_hose_P2P_bridge_fix.mvlpatch +pro-1344-pro_ppc32_83xx_config_PIBs_bus_switches.mvlpatch +pro-1345-Fix_buffer_overflow_and_races_in_capi_debug_functi.mvlpatch +pro-1346-USB_ehci_requeue_revisit.mvlpatch +pro-1347-common_mipv6_redirect_fix.mvlpatch +pro-1348-IPV6_Don_t_use_expired_default_routes.mvlpatch +pro-1349-Always_add_a_fragment_header_after_receiving.mvlpatch +pro-1350-USB_Storage_Header_reorganization.mvlpatch +pro-1351-USB_Storage_remove_unneeded_NULL_tests.mvlpatch +pro-1352-USB_Storage_make_usb_storage_structures_refcounte.mvlpatch +pro-1353-USB_Patch_for_rtl8150_to_fix_unplug_problems.mvlpatch +pro-1354-pro_net_driver_smc91x_merge_fix.mvlpatch +pro-1355-pro_arm_xscale_make_console_uart_work_during_kernel_initializat +ion.mvlpatch +pro-1356-pro_ppc_xilinx_emac_xenet_start_xmit_fifo_fix.mvlpatch +pro-1357-pro_ppc32_85xxcds_early_debug_compile_fix.mvlpatch +pro-1358-common_hrt_timer_recalc_workaround.mvlpatch +ST-Océ DAC R10.1.5-3.3 95 of 95 +19th January 2008 BSI-DSZ-CC- 0517 +Distribution list +1. BSI +2. Océ Technologies B.V. +3. Brightsight B.V +
\ No newline at end of file diff --git a/tests/data/cc/analysis/certs/targets/txt/d1b238729b25d745.txt b/tests/data/cc/analysis/certs/targets/txt/d1b238729b25d745.txt new file mode 100644 index 00000000..934ac67c --- /dev/null +++ b/tests/data/cc/analysis/certs/targets/txt/d1b238729b25d745.txt @@ -0,0 +1,2007 @@ +Océ Technolgies B.V. +ST-Océ DAC R8.1.10-1.9 +Security Target +The Océ Digital Access Controller (DAC) R8.1.10, +as used in the Océ VarioPrint +2045, 2050, 2055, +2060, 2065, 2070, +3145, 3155, 3165 printer/copier/scanner products +Certification ID BSI-DSZ-CC-0325 +Sponsor Océ Technologies B.V. +File name Oce Venlo DAC Security Target 1.9.doc +No of pages 64 +This Security Target was prepared for: +Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +by TNO-ITSEF B.V. + 2005 Océ Technologies B.V. +Version 1.9 +Date 2nd +September 2005 +ST-Océ DAC R8.1.10-1.9 2 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Document information +Date of issue 2nd +September 2005 +Author(s) Rob Hunter, Dirk-Jan Out +Version number report 1.9 +Certification ID BSI-DSZ-CC-0325 +Scheme BSI +Sponsor Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +Evaluation Lab TNO-ITSEF B.V. +IT Security Evaluation Facility +Delftechpark 1 +2628XJ Delft +The Netherlands +Target of Evaluation (TOE) +The Océ Digital Access Controller +(DAC) R8.1.10, +as used in the Océ VarioPrint +2045, 2050, 2055, +2060, 2065, 2070, +3145, 3155, 3165 printer/copier/scanner +products +TOE reference name Océ DAC R8.1.10 +CC-EAL number 2+ (augmented with ALC_FLR.1) +Classification None +Report title +Security Target +The Océ Digital Access Controller +(DAC) R8.1.10, +as used in the Océ VarioPrint +2045, 2050, 2055, +2060, 2065, 2070, +3145, 3155, 3165 printer/copier/scanner +products +Report reference name ST-Océ DAC R8.1.10-1.9 +ST-Océ DAC R8.1.10-1.9 3 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Document history +Version Date Comment +0.2 14-10-03 Initial draft +0.3 17-10-03 Added initial comments from TNO-ITSEF BV +0.4 28-10-03 Added comments from Océ +0.5 06-11-03 Added comments of Océ resulting from meeting +0.6 Added telephone comments from Océ +0.7 17-11-03 Further expansion of versions 0.5 and 0.6 +0.8 1-12-03 SFR’s added and comments from Océ included +0.9 20-2-04 Added comments from Océ +1.0 2-3-04 Initial release (unevaluated) +1.1 28-5-04 Modified after initial CC evaluation round with comments +from evaluators and from BSI +1.2 17-6-04 Modified after second CC evaluation round +1.3 25-08-04 Modified after comment BSI (Rev Prot 3) +1.4 23-09-04 Modified after comment BSI (Rev Prot 12) +1.5 30-11-04 Modified after comment BSI (Rev Prot 23) +1.6 01-12-04 Modified after comment BSI (Rev Prot 23) +1.7 13-05-05 Modified to reflect differences between V8.1 and V7.3.6 +of the DAC product +1.8 1-08-05 Modified after comments from BSI (Rev Prot 1) +1.9 2-09-05 Modified after comments from BSI (Rev Prot 5) +ST-Océ DAC R8.1.10-1.9 4 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Contents +DOCUMENT INFORMATION.........................................................................................2 +DOCUMENT HISTORY ....................................................................................................3 +1. SECURITY TARGET INTRODUCTION ...............................................................6 +1.1 ST IDENTIFICATION ..............................................................................................6 +1.2 ST OVERVIEW ......................................................................................................7 +1.3 CC CONFORMANCE ..............................................................................................8 +2. TOE DESCRIPTION ...............................................................................................10 +2.1 TOE OVERVIEW .................................................................................................10 +2.1.1 TOE physical scope and boundary ................................................................10 +2.1.2 TOE logical scope and boundary ..................................................................14 +3. TOE SECURITY ENVIRONMENT.......................................................................20 +3.1 DEFINITION OF SUBJECTS, OBJECTS AND OPERATIONS.........................................20 +3.1.1 Non-human subjects.......................................................................................20 +3.1.2 Human subjects..............................................................................................20 +3.1.3 Objects...........................................................................................................21 +3.1.4 Operations .....................................................................................................22 +3.2 ASSUMPTIONS.....................................................................................................22 +3.3 THREATS.............................................................................................................23 +3.4 ORGANISATIONAL SECURITY POLICIES...............................................................24 +4. SECURITY OBJECTIVES......................................................................................25 +4.1 TOE SECURITY OBJECTIVES...............................................................................25 +4.1.1 Functional Security Objectives for the TOE..................................................25 +4.1.2 Assurance Security Objectives for the TOE...................................................26 +4.2 SECURITY OBJECTIVES FOR THE ENVIRONMENT..................................................26 +5. IT SECURITY REQUIREMENTS.........................................................................28 +5.1 TOE SECURITY FUNCTIONAL REQUIREMENTS....................................................28 +5.1.1 SFRs for Filtering..........................................................................................28 +5.1.2 SFRs for Job Release.....................................................................................29 +5.1.3 SFRs for Shredding........................................................................................29 +5.1.4 SFRs for Management ...................................................................................30 +5.1.5 SFRs for Protection of the TSF itself .............................................................32 +5.1.6 Strength-of-function claim .............................................................................33 +5.2 TOE SECURITY ASSURANCE REQUIREMENTS.....................................................33 +5.3 SECURITY REQUIREMENTS FOR THE IT ENVIRONMENT.......................................33 +5.4 EXPLICITLY STATED REQUIREMENTS ..................................................................34 +6. TOE SUMMARY SPECIFICATION .....................................................................35 +6.1 IT SECURITY FUNCTIONS....................................................................................35 +ST-Océ DAC R8.1.10-1.9 5 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +6.1.1 Probabilistic functions and mechanisms........................................................36 +6.1.2 Strength of function claim..............................................................................36 +6.2 ASSURANCE MEASURES......................................................................................37 +7. PP CLAIMS...............................................................................................................39 +8. RATIONALE ............................................................................................................40 +8.1 SECURITY OBJECTIVES RATIONALE ....................................................................40 +8.2 SECURITY REQUIREMENTS RATIONALE ..............................................................45 +8.2.1 The SFRs meet the Security Objectives for the TOE......................................45 +8.2.2 The security requirements for the IT environment meet the security objectives +for the environment.....................................................................................................49 +8.2.3 The Assurance Requirements and Strength of Function Claim are appropriate +50 +8.2.4 All dependencies have been met.....................................................................50 +8.2.5 The requirements are internally consistent....................................................51 +8.2.6 The requirements are mutually supportive ....................................................51 +8.3 TOE SUMMARY SPECIFICATION RATIONALE......................................................52 +8.3.1 The functions meet the SFRs..........................................................................52 +8.3.2 The assurance measures meet the SARs ........................................................55 +8.3.3 The SOF-claims for functions meet the SOF-claims for the SFRs.................55 +8.3.4 The functions are mutually supportive...........................................................56 +8.4 PP CLAIMS RATIONALE ......................................................................................56 +ST-Océ DAC R8.1.10-1.9 6 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +1. Security Target Introduction +1.1 ST Identification +Name of the TOE: +The Océ Digital Access Controller (DAC) R8.1.10, +as used in the Océ VarioPrint +2045, 2050, 2055, +2060, 2065, 2070, +3145, 3155, 3165 printer/copier/scanner products +Name of the Security Target: +Security Target +The Océ Digital Access Controller (DAC) R8.1.10, +as used in the Océ VarioPrint +2045, 2050, 2055, +2060, 2065, 2070, +3145, 3155, 3165 printer/copier/scanner products +ST evaluation status: Evaluated Release +ST version number: 1.9 +ST publication date: 2nd +September 2005 +ST authors: Rob Hunter, Dirk-Jan Out +This Security Target was prepared for: +Océ Technologies B.V. +P.O. Box 101, +5900 MA Venlo, +The Netherlands +by TNO-ITSEF B.V. IT Security Evaluation Facility +Delftechpark 1 +2628XJ Delft +The Netherlands +. +ST-Océ DAC R8.1.10-1.9 7 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +1.2 ST Overview +The firm Océ produces a wide range of multifunctional devices for copying, printing +and scanning (MFDs) for various purposes. A number of these MFDs: the 2045/55/65 +series, the 2050/60/70 series and the 31x5 series, use the same Digital Access +Controller (DAC). +The Océ Digital Access Controller (DAC) R8.1.10, is used with the Océ VarioPrint +• 2045, 2050, 2055, +• 2060, 2065, 2070, +• 3145, 3155, 3165. +These VarioPrint products are referred to collectively in this Security Target as +MFDs +A digital copier from the Océ +2045/55/65 series with optional +embedded DAC or external DAC. +A digital copier from the Océ +2050/60/70 series with either an +embedded or external DAC. +ST-Océ DAC R8.1.10-1.9 8 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +A digital copier from the Océ 31x5 +series pictured with optional external +DAC +For external DACs, an optional ‘removable hard disk’ is available. +The DAC is a PC-based MFD-controller that provides a wide range of printing and +scanning functionality to the Digital Copier (DC) of the MFD to which the DAC is +connected. The DAC provides security functionality to the DC, the DAC does not +provide copy functionality. +This Security Target describes the DAC and the specific security problem that it +addresses. The Target of Evaluation (TOE) is a collection of software components +(printer drivers, OS) that use the underlying hardware platform. The TOE is a +subset of the complete DAC. +1.3 CC Conformance +The evaluation is based upon: +• Common Criteria for Information Technology Security Evaluation, Version +2.1, Part 1: General model, August 1999, annotated with interpretations as of +2003-12-31. +• Common Criteria for Information Technology Security Evaluation, Version +2.1, Part 2: Security functional requirements, August 1999, annotated with +interpretations as of 2003-12-31. +• Common Criteria for Information Technology Security Evaluation, Version +2.1, Part 3: Security assurance requirements, August 1999, annotated with +interpretations as of 2003-12-31. +• Common Methodology for Information Technology Security Evaluation, +Version 1.0, Part 2: Evaluation Methodology, August 1999, annotated with +interpretations as of 2003-12-31. +The chosen level of assurance is: +EAL2 (Evaluation Assurance Level 2 augmented with ALC_FLR.1) +ST-Océ DAC R8.1.10-1.9 9 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +This Security Target claims the following conformance to the CC: +CC Part 2 conformant +CC Part 3 conformant +ST-Océ DAC R8.1.10-1.9 10 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +2. TOE Description +2.1 TOE Overview +This section presents an overview of the TOE. +2.1.1 TOE physical scope and boundary +The firm Océ produces a wide range of multifunctional devices for copying, +printing and scanning (MFDs). For the purpose of this evaluation, MFDs consist of +two main parts: a controller and a Digital Copier (DC). +A number of these MFDs use the same controller: the Digital Access Controller +(DAC). +The DAC is a PC-based MFD-controller that provides a wide range of printing and +scanning functionality to the Digital Copier (DC) of the MFD to which the DAC is +connected. The DAC provides security functionality to the DC. It does not provide +copy functionality. +The DAC can operate in three different security modes: ‘high’, ‘normal’ and ‘low’. +This Security Target covers the DAC operating in the security mode ‘high’ as +delivered by Océ to the customer. This mode provides a restricted set of +functionality that is configured to meet the Security Target claim. Changing the +operational mode invalidates the claim made in this Security Target. +The DAC is connected between a network and the DC. This is depicted in Figure 1. +Figure 1: Relation between DC, DAC and MFD +Digital +Copier (DC) +DAC +MFD +Network +Copy Data +Flow +Scan Data +Flow +Output Tray of MFD +Input Glass Plate of MFD +Print Data +Flow +ST-Océ DAC R8.1.10-1.9 11 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Two physical configurations exist of the MFD: one where the DAC is external to +the MFD, and one where it is internal to the MFD. These are depicted in Figure 2. +Figure 2: Views of the internal and external DAC controllers. +The internal configuration helps prevent theft of the DAC, but prevention of theft +of the DAC is outside the scope of this evaluation1. All logical access points (CD- +Rom, floppy drives, network ports, USB/serial/parallel ports etc. are fully +physically accessible in the internal configuration. For the purpose of this +evaluation, the two configurations are therefore identical. +1 Note that the DAC does protect data stored in it against theft through e-shredding, +but the DAC itself may be stolen. +ST-Océ DAC R8.1.10-1.9 12 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +The DAC consists of: +1. A generic off-the-shelf PC comprising at a minimum a 900Mhz Celeron +processor, 128MB internal RAM, 15GB hard drive, one serial port, internal +floppy and CDROM drive. +2. Generic graphics card and network card supporting either 10/100Mbs +Ethernet UTP or 4/16Mbs Token Ring. +3. Drivers for the PC, graphics card and network card +4. The OS/2 operating system version 4.5.2 +5. Océ DAC-specific software version R8.1.10 +6. Third-party developed software: Adobe PS3-PDF Interpreter, Version +3016.103 v.3.1 build #1; Apache HTTP server with SSL support, Apache +1.3.33, OpenSSL 0.9.7e (used for remote system administration) and +OpenSSL 0.9.7d (used for job forwarding), mod_ssl 2.8.22. +Of these 6, the first three are not part of the TOE and together form the underlying +hardware platform that the TOE makes use of. The underlying hardware platform +does not provide any specific security related functionality for the TOE. The TSF is +mediated by the last three software components that are part of the TOE. This is +depicted in Figure 3. +Figure 3: Division of the DAC into TOE and non-TOE. +The underlying PC hardware platform has the following characteristics: +• The CDROM is only used by the service engineer to install new software. +• The floppy is not used for any security related functions. +• The serial port is only used by the service engineer. +OS/2 operating system (4) +Underlying PC Infrastructure (1,2,3) +Oce +DAC-specific +Software (5) +Third-party +Software (6) +TOE +Non-TOE +ST-Océ DAC R8.1.10-1.9 13 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +• All other interfaces, such as the keyboard or USB ports, have been +disabled. +The physical interfaces through which the TOE communicates are: +• A serial port with a RS-232 connector through which a service engineer +can administer the TOE +• A network card through which print and scan jobs can pass and a remote +system administrator can administer the TOE +• A Digital Copier (DC) cable through which data flows between the TOE +and the DC. +The user guidance for the TOE consists of : +• Océ VarioPrint 2045-65 Job manual +• Océ VarioPrint 2050-70 Job manual +• Océ 31x5E Job manual +• Océ VarioPrint 2045-65 Configuration manual +• Océ VarioPrint 2050-70 Configuration manual +• Océ 31x5E Configuration manual +The administrator guidance for the TOE consists of: +The DAC administration guidance for the customer system administrator takes the +form of HTML pages. These are part of the Océ DAC-specific software, Version +R8.1.10: +• Océ System Configuration, On-line help. +The DAC administration guidance for the Océ service engineer takes the form of a +Lotus Notes application that is installed on the service engineer’s laptop. The +guidance contains an appendix that is identified as: +• Administrating version R8.1.10 of the Océ DAC, +and is a frozen version of the Océ service engineer Lotus Notes application made at +the time of product release. +ST-Océ DAC R8.1.10-1.9 14 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +2.1.2 TOE logical scope and boundary +The TOE protects two assets: itself and the print jobs it receives. +1. The TOE protects it’s own integrity against threats from the LAN and the +Digital Copier to which it is attached through use of a firewall and integrity +checks on system files upon system reboot. +2. The TOE protects the confidentiality of secure print jobs once they have +been received by the DAC by storing them until the user authenticates +himself to the DAC via a user interface on the DC. The DAC shreds the +data after printing is completed. +The TOE does not form a threat to its environment for the following reasons: +• The TOE does not form a threat to the integrity of the LAN to which the +DAC is attached. The TOE configuration has been tested and is configured +so that the integrity of the configuration is checked and restored upon +system reset. +• Additionally, all data that enters the TOE via the Digital Copier must pass +through an internal firewall. There is no direct line from the Digital Copier +to the network to which the DAC is attached. +In order to do so, it offers the following functionality2: +The TOE controls printing from the network +The TOE accepts Postscript, PDF and PCL5e print jobs from remote users on the +network (lpr over TCP/IP or raw print data via a raw IP socket) and provides these +as images to the attached DC. The TOE can print these jobs in three different ways. +The remote users can select the way in which each of his jobs is printed from a +printer settings dialog box on the screen of their PC. +Automatic printing +The TOE receives a print job from a remote end-user, and stores it in a queue. +Once this job is the first one in the queue, the TOE processes this print job into +images, and sends these images to the attached DC for printing. +Mailbox printing +The TOE receives a print job from a remote end-user and stores it internally. The +end-user then has to go physically to the DC (become a local end-user) and identify +himself at the Local User Interface of the DC (LUI). Only after this, will the TOE +process the job. The resulting images are sent to the attached DC for printing. +2 The DC can also perform copying, but this is done without interaction with the +TOE. Copy job related data does not enter the TOE boundary. This is therefore +out-of-scope of this ST. +ST-Océ DAC R8.1.10-1.9 15 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Secure printing +This is similar to mailbox printing, with two differences: +• When submitting the print job, the remote end-user adds a job-specific +PINcode that has a length of 4 to 6 digits to the job. +• The PINcode is stored in the DAC. +• When identifying himself at the LUI of the DC, the local end-user also has +to provide the job-specific PINcode. The DC interrogates the DAC as to +the validity of the PIN. If correct, the print job data is released by the DAC +and is sent to the DC. A replay attack with an intercepted PIN is countered +by shredding the print job data immediately after the print job is +completed. +The end-users and interfaces they interact with are depicted in Figure 4. +Figure 4: End-users and interfaces for printing +The TOE is configured to destroy the data relating to secure print jobs (print jobs +submitted to the mailbox with an associated PIN), non-secure print jobs, scan jobs +and temporary files. +This is achieved by writing over the job related data with other data, thereby +making it difficulty to retrieve the original data. +The TOE administrators can select the number of write iterations and at what +moment the shredding takes place. The first iteration takes place after the data is +released. The remaining iterations can take place immediately (synchronous) or +with low priority in the background (asynchronous). +Additionally, the TOE is also configured to shred all data at the end of each +working day by specifying a specific time interval no greater than once every 24 +hours. +Digital +Copier (DC) +DAC +MFD +Network +Remote end-user +Local end-user +LUI +LUI Network +Network +ST-Océ DAC R8.1.10-1.9 16 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +The TOE administers print jobs that are re-routed to DACs elsewhere on the +network +Local end-users can re-route print jobs that have been submitted to their mail box +(see mail box printing above) to other DACs that are attached on the network. This +functionality does not support the re-routing of secure print jobs (see secure +printing above). Rerouting is only available between DACs operating at the same +evaluated ‘high’ security mode and number level of shredding cycles. +This functionality is provided for a situation whereby the remote end-user, having +submitted a print job to a DAC, walks to another MFD located elsewhere in the +operational environment and thereby becomes a local end-user at a DAC where the +print job is not located. They can then re-route their mail box print job from the +original DAC to another MFD and print their document there. By re-routing the +print job, the job is deleted from the original MFD. The original DAC maintains a +list of ‘friendly DACs’ (officially known as smart mailbox members) that can +request mailbox print jobs to be re-routed. The re-routing of secure print jobs is not +permitted. +The local end-user must identify themselves by selecting their name or my entering +a value which will be used to retrieve their identification details from a LDAP +server located elsewhere on the network. +The end-users and interfaces they interact with are depicted in Figure 5 +Figure 5: End-users and interfaces for printing +Network +Remote end-user +Digital +Copier (DC) +DAC +MFD +LUI +Network +Digital +Copier (DC) +DAC +MFD +LUI +LUI +Network +Network +Digital +Copier (DC) +DAC +MFD +LUI +LUI +Network +Network +Local end-user +Local end-user +ST-Océ DAC R8.1.10-1.9 17 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +The TOE administers scan jobs that are exported to the network +Local end-users can scan documents on the DC, and the resulting images will then +be submitted to the TOE. The TOE can process the images to a variety of file +formats and then transfer the resulting files by ftp to an ftp-server on the network +or by SMTP to an e-mail server on the network. +The end-users and interfaces they interact with are depicted in Figure 6. +Figure 6: End-users and interfaces for scanning +The TOE can be managed +As indicated in the previous sections, the MFD (of which the TOE is a part) +supports local and remote end-users. The MFD also supports various +administrators, which are described briefly here: +Key Operator: These are typically administrators or secretaries from the +organization owning/renting the TOE. They can interact with the DC through the +LUI, and through this interaction have access to a limited amount of non-security +related settings of the TOE. +Remote System administrator (HTTPS): These are remote administrators, typically +a network administrator from the organization owning/renting the TOE. They can +change a less limited set of settings of the TOE through an SSL over HTTP +connection (HTTPS). The remote administrator can identify the TOE via a +certificate. Help files for the administrator are also delivered via the HTTPS +Digital +Copier (DC) +DAC +MFD +Network +Local end-user +LUI +Network +FTP-server +E-Mail server +Digital +Copier (DC) +DAC +MFD +Network +Local end-user +LUI +LUI +Network +Network +FTP-server +E-Mail server +ST-Océ DAC R8.1.10-1.9 18 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +connection. Web pages that are delivered via the HTTPS connection are ‘non- +cacheable’. +Remote System administrator (SNMP): These are remote administrators, typically a +network administrator from the organization owning/renting the TOE. They can +read and write a limited set of non-security related settings of the TOE through a +SNMP connection. +Service engineer: These are local administrators, and are typically employed by +Océ. They have access through RS-232 connections to a wide range of settings on +the TOE and the DC. The TOE connection is PIN code protected. +The various administrators and the interfaces through which they interact with the +TOE are depicted in Figure 7. +Figure 7: MFD Administrators and interfaces +Digital +Copier (DC) +DAC +MFD +Remote system +administrator +(HTTPS and SNMP) +Service +Engineer +Key-operator +LUI +LUI +RS-232 +RS-232 RS-232 +RS-232 +Network +Network +Network +Service +Engineer +ST-Océ DAC R8.1.10-1.9 19 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +The TOE has minimized all other functionality +The TOE supports TCP/IP: all other network protocols are disabled. The TOE +manufacturer has closed all network ports except those that are absolutely +necessary to its functioning. This includes the physical connectors on the TOE. The +TOE has further restricted the functionality behind each open network port to that +which is absolutely necessary to its functioning. This is done to maximize the +integrity of the TOE itself and minimize the risk of the TOE being infected or +hacked and subsequently being used as a stepping-stone to damage the network. +The availability of security related functionality +As depicted in Figure 7, The Key Operator is not able to influence the security of +the TOE as they have no access to security settings via the DC. The Service +Engineer cannot influence the security of the TOE via the interface to the DC. +Because the Key Operator and Local End-User cannot access security related +settings on the DAC, they cannot affect the TOE. For the sake of clarity, Figure 8 +shows the interfaces to the TOE and the subjects that can access and manage TOE +security settings. +Figure 8: TOE Administrators and interfaces +DAC +Remote system +administrator +RS-232 +RS-232 +Network +Network +Network +Service +Engineer +ST-Océ DAC R8.1.10-1.9 20 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +3. TOE Security Environment +The TOE is intended to provide scan and print functionality to users requiring a +low to moderate level of security assurance. Additional environmental and +organisational requirements support the security functionality provided by the +TOE. +3.1 Definition of subjects, objects and operations +To facilitate definition of threats, OSPs, assumptions, security objectives and +security requirements, we define the subjects, objects and operations to be used in +the ST first. +3.1.1 Non-human subjects +The systems (equipment) that will be interacting with the TOE (in alphabetical +order): +S.DIGITAL_COPIER A device that physically renders a print job or scans in a +job and is attached to the TOE via a cable. +S.NETWORK_DEVICE An unspecified network device that is logically +connected to the TOE and is located in the same +operating environment (office building). +3.1.2 Human subjects +The users (or subject acting on behalf of that user) that will be interacting with the +TOE are: +S.REMOTE_USER A person located within the operational environment of +the TOE who is aware of how the TOE should be used. +They are not malicious towards the TOE but are +capable of making mistakes when operating it. +S.REMOTE_USER typically sends print jobs from their +desktop PC to the TOE +S.LOCAL_USER A person located within the operational environment of +the TOE who is aware of how the TOE should be used. +They are not malicious towards the TOE but are +capable of making mistakes when operating it. They +may be interested in the content of other users’ print +jobs. S.LOCAL_USER typically interacts indirectly +with the TOE via S.DIGITAL_COPIER +S.REMOTE_SYSADMIN A person who can change some TOE settings using a +Océ supplied interface. They are trusted by the +ST-Océ DAC R8.1.10-1.9 21 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +customer and are adequately trained. They are capable +of making mistakes. They connect to the TOE via the +network. +S.SERVICE_ENGINEER A person with elevated privileges above those of +S.LOCAL_USER and S.REMOTE_SYSADMIN. This +person is an Océ representative and accesses the TOE +locally through an RS232 interface. They are not +malicious towards the TOE but are capable of making +mistakes when operating it. +S.THIEF S.THIEF (cleaning staff, burglar, visitor, in rare cases a +user) will have no moral issues in stealing the TOE or +parts of it. Once S.THIEF has stolen the TOE or parts +of it he may attempt to retrieve earlier printer and +scanner jobs from the TOE. S.THIEF is not able to steal +Copy jobs3 as they never enter the TOE. S.THIEF is +opportunistic and is not a recurring visitor to the +environment in which the TOE operates. +Note that the key operator is not included as a subject that interacts with the TOE +as he is not able to make changes to the security settings of the TOE and is +therefore equal to S.LOCAL_USER with respect to security. +3.1.3 Objects +The (data) objects for the TOE that the TOE will operate upon are: +D.SECURE_PRINT_JOB A secure print job submitted by S.REMOTE_USER to +the TOE. D.SECURE_PRINT_JOB has the Security +Attribute Username/PIN associated with them. +D.PRINT_JOB A non D.SECURE_PRINT_JOB type print job +submitted either by S.REMOTE_USER to the TOE or +by another MFD located elsewhere on the network +TOE. +D.SCAN_JOB Data that is scanned in via the DC attached to the DAC. +Data is sent from the TOE to a FTP server located +elsewhere on the network. +D.INBOUND_TRAFFIC TCP/IP network packets received by the TOE. +D.INBOUND_TRAFFIC has the Security Attributes +Port and Protocol associated with it. +D.OUTBOUND_TRAFFIC TCP/IP network packets sent by the TOE. +D.OUTBOUND_TRAFFIC has the Security Attributes +Port and Protocol associated with it. +3 See Figure 1: Relation between DC, DAC and MFD. +ST-Océ DAC R8.1.10-1.9 22 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +3.1.4 Operations +The operations that are performed by the TOE are: +R.RELEASE_JOB The TOE processes and releases a +D.SECURE_PRINT_JOB to the attached DC. +R.PRINT_JOB The TOE processes and releases a D.PRINT_JOB to the +attached DC. +R.FORWARD_JOB The TOE processes and releases a D.PRINT_JOB to the +attached network. +R.SCAN_JOB The TOE processes and releases a D.SCAN_JOB to the +attached network +R.SHRED_JOB The TOE shreds redundant D.SECURE_PRINT_JOB, +D.PRINT_JOB, D.SCAN_JOB data objects from the +TOE’s hard disk. +R.ENTER_TOE The TOE allows D.INBOUND_TRAFFIC to enter its +boundary. +R.EXIT_TOE The TOE allows D.OUTBOUND_TRAFFIC to leave +its boundary. +3.2 Assumptions +A.DIGITAL_COPIER It is assumed that the TOE has a S.DIGITAL_COPIER +device attached to it. S.DIGITAL_COPIER is an Océ +VarioPrint 2045-65, 2050-70 or 31x5 Digital Copier. +When D.SECURE_PRINT_JOB is sent to +S.DIGITAL_COPIER, R.REMOTE_USER will specify +a PIN of at least 4 and a maximum of 6 digits and, +whether the job is printed or not, will delete the job on +the same workday. Employees are aware of this +requirement. +A.ENVIRONMENT The TOE assumes that its operational environment is a +regular office environment. Physical access to the +operational environment is restricted. The environment +contains non-threatening office personnel +(S.LOCAL_USER, S.REMOTE_USER, +S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER). S.THIEF is only rarely +present in this environment and not on a recurring basis. +ST-Océ DAC R8.1.10-1.9 23 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +A.SECURITY_POLICY It is assumed that the customer will have a Security +Policy governing the use of IT products by employees +in the customer organisation. The TOE assumes that the +network to which it is attached is protected by security +measures that are intended to prevent mal-ware, viruses +and network traffic, not related to the working of the +operational environment, entering the network to which +it is attached. Although the Virus database files and +various patches are kept up to date, the policy +recognises that new threats emerge over time and that +occasionally they may enter the environment from +outside and provides measures to help limit the damage. +The Policy will define how IT products are protected +against threats originating from outside the customer +organisation. The organisation’s employees are aware +of, are trained in and operate according to the terms and +conditions of the policy. The policy also covers +physical security and the need for employees to work in +a security aware manner including the usage of the +TOE. The Security Policy describes and requires a low +to medium level of assurance (EAL2) for the TOE. +A.SHREDDING The TOE assumes that the customer will not disable the +shredding operation for D.PRINT_JOB and +D.SCAN_JOB data objects4. +A.SLA It is assumed that any security flaws discovered in the +TOE will be repaired by OCE (possibly as part of an +agreed service level agreement). +3.3 Threats +T.RESIDUAL_DATA S.THIEF steals the TOE or parts thereof and retrieves +stored or deleted D.SECURE_PRINT_JOB. The +motivation for S.THIEF to attack the TOE is low +because it requires sophisticated data recovery +equipment that can recover data even after the +shredding mechanism has executed to recover data that +has little value to the attacker. +4 The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible +to disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the +TOE claim is no longer valid. +ST-Océ DAC R8.1.10-1.9 24 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +T.NOSY_USER S.LOCAL_USER accesses a D.SECURE_PRINT_JOB +that does not belong to him/her that is stored in the +DAC. The motivation to carry out this attack is low. +T.MALWARE A S.NETWORK_DEVICE is used by malware that +may have entered the TOE’s operational environment to +launch an attack on the integrity of the TOE. +Alternatively S.DIGITAL_COPIER is used by malware +to launch an attack on the integrity of +S.NETWORK_DEVICE. The motivation to carry out +this attack is low. +3.4 Organisational Security Policies +P.JOB_DELETE When D.SECURE_PRINT_JOB, D.PRINTJOB and +D.SCANJOB objects are no longer needed by the TOE, +they will be deleted by the TOE at the earliest available +opportunity in a manner that meets a recognised +standard. +P.TOE_ADMINISTRATION The modification of TOE security settings shall be +restricted to S.SERVICE_ENGINEER and +S.REMOTE_SYSADMIN. +ST-Océ DAC R8.1.10-1.9 25 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +4. Security Objectives +4.1 TOE Security Objectives +This section consists of two groups of objectives: +• Functional Security Objectives for the TOE, that deal with what the TOE must +do; +• Assurance Security Objectives for the TOE, that deal with how much +assurance one should have in that the TOE does what it is expected to. +4.1.1 Functional Security Objectives for the TOE +O.F.INBOUND_FILTER The TOE will only support TCP/IP as a network +protocol. D.INBOUND_TRAFFIC shall only enter the +TOE (R.ENTER_TOE) if its Port is specified as being +open in Appendix D. +O.F.OUTBOUND_FILTER The TOE will only support TCP/IP as a network +protocol. D.OUTBOUND_TRAFFIC shall only exit the +TOE (R.EXIT_TOE) if its Port is specified as being +open in Appendix D. +O.F.JOB_RELEASE The TOE shall only perform R.RELEASE_JOB once +S.LOCAL_USER has successfully identified and +authenticated himself as owner of +D.SECURE_PRINT_JOB. +O.F.JOB_SHRED The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is +no longer required or during the start-up procedure if +residual D.SECURE_PRINT_JOB, D.PRINT_JOB and +D.SCAN_JOB is found on the TOE’s hard disk. The +first write cycle will either immediately after the job has +completed or once the TOE enters an idle state. The +data shall be deleted according to a recognised standard +so that it cannot be reconstituted. +O.F.AUTHENTICATE The TOE ensures that S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER must authenticate themselves +to the TOE before allowing them to modify the TOE +security settings. +ST-Océ DAC R8.1.10-1.9 26 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +O.F.SELFTEST The TOE will perform check of the integrity of the TSF +when it is re-booted. +4.1.2 Assurance Security Objectives for the TOE +O.A.SLA The TOE shall be evaluated to ALC_FLR.1 +4.2 Security Objectives for the environment +O.E.ENVIRONMENT The environment into which the TOE will be introduced +is protected by physical measures that limit access +S.LOCAL_USER, S.REMOTE_USER, +S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER. The physical measures are +adequate to prevent all other persons but a determined +S.THIEF who deliberately wants to steal part of or all +of the TOE by methodically planning an attack on the +TOE over a period of time. +O.E.NETWORK_POLICYThe network to which the TOE is attached shall be +adequately protected so that the TOE is not visible +outside the network. In addition, measures shall be +implemented to only allow connections to the TOE +from devices situated on the same network. No inbound +connections from external networks are allowed. The +network scans data for mal-ware (viruses and worms). +This type of data may originate from either inside or +outside the network to which the TOE is attached and +includes the TOE itself. +O.E.DEPLOYMENT The network (LAN) to which the TOE is attached is +well managed with established procedures for +introducing and attaching new devices to the network. +O.E.DIGITAL_COPIER The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 2045-65, 2050-70 or +31x5 Digital Copier that provides a Local User +Interface and Glass Plate through which +S.LOCAL_USER can interact easily with the TOE +(selecting username and entering PINcode). When +sending a D.SECURE_PRINT_JOB to the Digital +Copier, S.REMOTE_USER shall specify a PIN that +consists of a minimum of 4 and a maximum of 6 digits +and, whether or not it is printed, will ensure the print +job is deleted from the TOE during the same workday +that the job is sent. The DC provides a glass plate and +ST-Océ DAC R8.1.10-1.9 27 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +LUI with which S.LOCAL_USER can perform scan +jobs. The ST claim is not valid when the TOE is used +with any other type of Océ Digital Copier. The TOE +will not work with any other device (including Digital +Copiers from any other manufacturers). +O.E.SHREDDING The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and +D.SCAN_JOB data objects5 +5 The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible +to disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the +TOE claim in no longer valid. +ST-Océ DAC R8.1.10-1.9 28 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +5. IT Security Requirements +5.1 TOE Security Functional Requirements +5.1.1 SFRs for Filtering +FDP_ACC.1 Subset access control +FDP_ACC1.1 The TSF shall enforce the NETWORK_POLICY on: +• D.INBOUND_TRAFFIC +• D.OUTBOUND_TRAFFIC +Dependencies: FDP_ACF.1 (included) +FDP_ACF.1 Security attribute based access control +FDP_ACF1.1 The TSF shall enforce the NETWORK_POLICY to +objects based on the following: +• Port; +• Protocol. +FDP_ACF.1.2 The TSF shall enforce the following rules to determine if an +operation among controlled subjects and controlled objects is allowed: +• The TOE shall perform R.ENTER_TOE on +D.INBOUND_TRAFFIC only if +Port(D.INBOUND_TRAFFIC) = DAC, ICMP, DNS, DHCP, +LPR, HTTP, HTTPS, FTP, SNMP, SMTP, +“RAW_SOCKET”6 and Protocol = TCP/IP +• The TOE shall perform R.EXIT_TOE on +D.OUTBOUND_TRAFFIC only if +Port(D.OUTBOUND_TRAFFIC) = DAC, ICMP, DNS, DHCP, +LPR, HTTP, HTTPS, FTP, SNMP, SMTP, “RAW_SOCKET” +and Protocol = TCP/IP +FDP_ACF.1.3 The TSF shall explicitly authorise access of subjects to +objects based on the following additional rules: +• none +FDP_ACF.1.4 The TSF shall explicitly deny access of subjects to objects +based on the following additional rules: +• none +6 It is possible to submit raw print job data via a raw socket to the TOE. The words +‘raw socket’ are used to refer to the port in the firewall through which the data can +flow. +ST-Océ DAC R8.1.10-1.9 29 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Dependencies: FDP_ACC.1 (included) +FMT_MSA.3 (included) +5.1.2 SFRs for Job Release +FIA_UID.1 Timing of identification (Secure Printing) +FIA_UID.1.1 The TSF shall allow R.PRINT_JOB, R.FORWARD_JOB +and R.SCAN_JOB on behalf of the S.LOCAL_USER to be performed +before S.LOCAL_USER is identified. +FIA_UID.1.2 The TSF shall require S.LOCAL_USER to be successfully +identified before allowing R.RELEASE_JOB on behalf of +S.LOCAL_USER. +Dependencies: No dependencies. +FIA_UAU.1 Timing of authentication +FIA_UAU.1.1 The TSF shall allow R.PRINT_JOB, R.FORWARD_JOB +and R.SCAN_JOB on behalf of the S.LOCAL_USER to be performed +before S.LOCAL_USER is authenticated. +FIA_UAU.1.2 The TSF shall require S.LOCAL_USER to be successfully +authenticated before allowing R.RELEASE_JOB on behalf of +S.LOCAL_USER. +Dependencies: FIA_UID.1 (included) +5.1.3 SFRs for Shredding +FDP_RIP.1 Subset residual; information protection +FDP_RIP.1.17 The TSF shall ensure that any previous information content +of a resource is made unavailable upon the +deallocation of the resource from the following objects: +D.SECURE_PRINT_JOB, D.PRINT_JOB, D.SCAN_JOB +7 This is a refinement to show when the de-allocation is to take place. When you +delete a file, the OS modifies the relevant entry from the file allocation table. The +data remains on the hard disk and can be retrieved with suitable tools. This is why +the TOE shreds the data. What is happening is that: +• When the job manager discards data, it moves the data reference in the file +allocation table to a location that is dedicated to the E-shred subsystem. +• The E-shred subsystem then erases the data (makes the data unavailable) by +overwriting the data several times. +• The E-shred service then removes the reference to the erased data from the +file allocation table so that the erased disk resources can be re-used. +ST-Océ DAC R8.1.10-1.9 30 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +• on deletion of R.RELEASE_JOB, R.PRINT_JOB, +R.FORWARD_JOB and R.SCAN_JOB by S.LOCAL_USER, +S.REMOTE_SYSADMIN or S.SERVICE_ENGINEER +• on start-up or reboot of the TOE.8 +Dependencies: No dependencies. +5.1.4 SFRs for Management +FIA_UID.2 User identification before any action +FIA_UID.2.1 The TSF shall require S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER to identify themselves before allowing any +other TSF-mediated actions on the behalf of that user. +Dependencies: No dependencies. +FIA_UAU.2 User authentication before any action +FIA_UAU.2.1 The TSF shall require S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER to be successfully authenticated before +allowing any other TSF-mediated actions on the behalf of that user. +Dependencies: FIA_UID.1 (included) +FMT_MOF.1 Management of security functions behaviour +(S.REMOTE_SYSADMIN) +FMT_MOF.1.1 The TSF shall restrict the ability to modify the behaviour +of the functions described in appendix E for S.REMOTE_SYSADMIN +to S.REMOTE_SYSADMIN. +Dependencies: FMT_SMF.1 (included) +FMT_SMR.1 (included) +FMT_MOF.1 Management of security functions behaviour +(S.SERVICE_ENGINEER) +FMT_MOF.1.1 The TSF shall restrict the ability to modify the behaviour +of the functions described in appendix E for S.SERVICE_ENGINEER +to S.SERVICE_ENGINEER.. +Dependencies: FMT_SMF.1 (included) +FMT_SMR.1 (included) +8 The DAC can experience errors and sometimes require restarting to handle these +errors (or users restart the photocopier anyway in an attempt to handle these +errors). It is therefore important that the photocopier also deletes data whenever it +is restarted. +ST-Océ DAC R8.1.10-1.9 31 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +FMT_MSA.1 Management of security attributes +FMT_MSA.1.1 The TSF shall enforce the NETWORK_POLICY to +restrict the ability to change the default 9 security attributes Port and +Protocol to nobody.10 +Dependencies: FDP_ACC.1 (included) +FMT_SMF.1 (included) +FMT_SMR.1 (included) +FMT_MSA.3 Static Attribute initialisation +FMT_MSA.3.1 The TSF shall enforce the NETWORK_POLICY to +provide restrictive default values for security attributes that are used to +enforce the SFP. +FMT_MSA.3.2 The TSF shall allow nobody11 to specify alternative initial +values to override the default values when an object or information is +created. +Dependencies: FMT_MSA.1 (included) +FMT_SMR.1 (included) +FMT_SMF.1 Specification of Management Functions +FMT_SMF.1.1 The TSF shall be capable of performing the following +security management functions as described in appendix E: +Functions related to R.SHRED_JOB that are available to +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER +• Set the number of shred runs +• Set the shredding moment +• Shred print jobs: yes/no (D.PRINT_JOB)12 +• Shred scan jobs: yes/no (D.SCAN_JOB)13 +Dependencies: No dependencies. +FMT_SMR.1 Security roles +9 For grammatical and clarity reasons, the underscore between change and default +was removed and the word ‘the’ before security attributes was moved to between +’change’ and ‘default’. +10 The TOE does not allow any users to change any security attributes in the +evaluated configuration. +11 The word ‘the’ before ‘nobody’ was removed for grammatical reasons. +12 Disabling these functions will invalidate the Security Target claim. The functions +are available but there is an Organisational Security Policy that defines that they +should be enabled by default. +13 See footnote 12 +ST-Océ DAC R8.1.10-1.9 32 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +FMT_SMR.1.1 The TSF shall maintain the roles +S.REMOTE_SYSADMIN, S.SERVICE_ENGINEER and +S.LOCAL_USER. +FMT_SMR1.2 The TSF shall be able to associate users with roles. +Dependencies: FIA_UID.1 (included) +5.1.5 SFRs for Protection of the TSF itself +FPT_SEP.1 TSF domain separation +FPT_SEP1.1 The TSF shall maintain a security domain for its own +execution that protects it from interference and tampering by untrusted +subjects. +FPT_SEP.1.2 The TSF shall enforce separation between the security +domains of subjects in the TSC. +Dependencies: No dependencies. +FPT_RVM.1 Non-bypassability of the TSP +FPT_RVM.1.1 The TSF shall ensure that TSP enforcement functions are +invoked and succeed before each function within the TSC is allowed to +proceed. +Dependencies: No dependencies +FPT_TST.1 TSF testing +FPT_TST.1.1 The TSF shall run a suite of self tests during initial start-up +to demonstrate the correct operation of the TSF. +FPT_TST.1.2 The TSF shall provide authorised users with the capability to +verify the integrity of the TSF data. +FPT_TST.1.3 The TSF shall provide authorised users with the capability to +verify the integrity of stored TSF executable code. +Dependencies: FPT_AMT.1 (not included)14 +14 The dependency FPT_AMT.1 Abstract machine is not included, because the +underlying IT platform does not contribute to the TOE requirements (See part 1, +paragraph 147). The underlying PC platform is a standard PC platform that works. +Testing of the platform does not provide assurance that will support the claims at +the level of EAL2, as functional testing of the DAC in its operational environment +is performed (it does what it should do). +ST-Océ DAC R8.1.10-1.9 33 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +5.1.6 Strength-of-function claim +The Strength of function claim for all the probabilistic functions and mechanisms +provided by the TOE is SOF-basic. +5.2 TOE Security Assurance Requirements +The TOE security assurance requirements are conformant to the CC Evaluation +Assurance Level EAL2 +ALC_FLR.1. In detail the following Security Assurance +Requirements are chosen for the TOE: +Components for Configuration management (Class ACM) +ACM_CAP.2 Configuration Items +Components for Delivery and operation (Class ADO) +ADO_DEL.1 Delivery procedures +ADO_IGS.1 Installation, generation, and start-up procedures +Components for Development (Class ADV) +ADV_FSP.1 Informal functional specification +ADV_HLD.1 Descriptive high-level design +ADV_RCR.1 Informal correspondence demonstration +Components for Guidance documents (Class AGD) +AGD_ADM.1 Administrator guidance +AGD_USR.1 User guidance +Components for Life cycle support (Class ALC) +ALC_FLR.1 Basic flaw remediation +Components for Tests (Class ATE) +ATE_COV.1 Evidence of coverage +ATE_FUN.1 Functional testing +ATE_IND.2 Independent testing – sample +Components for Vulnerability assessment (Class AVA) +AVA_SOF.1 Strength of TOE security function evaluation +AVA_VLA.1 Developer vulnerability analysis +5.3 Security Requirements for the IT Environment +None15. +15 The ST defines security objectives for the IT environment in which the TOE will +operate. In accordance with the Common Criteria Standard, these objectives are +not mapped to Security Requirements for the IT Environment. +ST-Océ DAC R8.1.10-1.9 34 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +5.4 Explicitly stated requirements +None. +ST-Océ DAC R8.1.10-1.9 35 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +6. TOE Summary Specification +6.1 IT Security Functions +SF.FILTERING +The TOE uses a built-in firewall to block ports and ICMP commands that are not +needed for the operation of the TOE. In addition all network protocols that are not +supported in the security mode ‘high’ are disabled. +By default no traffic is permitted to enter or leave to TOE except for the TCP/IP +packets and the restricted ICMP command set via the ports defined in the rule table +described in Appendix D. +SF.JOB_RELEASE +The TOE verifies the identity and associated PIN code that was send with the print +job when submitted by S.REMOTE_USER with Username/PIN received from +S.LOCAL_USER via the DC interface. If verification is successful, the secure print +job is released for printing. +SF.SHREDDING +Once a print or scan job has been deleted, the data is overwritten. It is possible to +perform multiple write cycles, with various patterns being applied. At least three +write cycles will always take place. S.REMOTE_SYSADMIN or +S.SERVICE_ENGINEER can choose the moment when the shredding cycle +commences. The first write cycle can occur immediately after the print job has +completed or to improve job throughput performance, once the TOE enters an idle +state. The remaining cycles may also take place immediately after the print job has +been completed or also at the time when the TOE enters an idle state. The +shredding mechanism supports US DOD 5220-22m and Gutmann algorithms16. +SF.MANAGEMENT +The TOE can be managed in relation to SF.JOB_RELEASE and SF.SHREDDING. +In order to gain access, the S.REMOTE_SYSADMIN or S.SERVICE_ENGINEER +must authenticate themselves to the TOE. S.SERVICE_ENGINEER does this by +entering a password. S.REMOTE_SYSADMIN authenticates himself by entering a +password. The TOE is delivered by Océ with pre-configured in the security mode +‘high’. This provides the most restrictive set of operational settings. +SF.SELFTEST +During start-up the TOE will check the hard disk files system and the integrity of +the software the forms the TOE. If defects in the hard disk files system are +16 See Appendix B – References for more information relating to these algorithms +ST-Océ DAC R8.1.10-1.9 36 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +detected, the corrupted file system will be automatically repaired. The software +includes all executables (operating system executables, Océ authored DAC +executables, Third party software executables and DAC system settings). If defects +are detected, the corrupted data will be replaced by correct shadow data. +6.1.1 Probabilistic functions and mechanisms +The TOE contains probabilistic functions and mechanisms in the form of +passwords and PIN numbers that are used for the authentication of +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER respectively. There is +also a probabilistic function and mechanisms that protects +D.SECURE_PRINT_JOB and is used for the authentication of S.LOCAL_USER. +Subject Function Mechanism +S.REMOTE_SYSADMIN SF.MANAGEMENT, +SF.SHREDDING +For HTTPS based +management. an alpha- +numeric password (ASCII +characters 32-126) ranging +in length between 5 and 49 +digits is used. After the first +failed attempt, a delay +mechanism is invoked. +There are no security +management functions or +access to the assets that the +TOE protects that are +accessible via the SNMP +connection. +S.SERVICE_ENGINEER SF.MANAGEMENT, +SF.SHREDDING +An alpha-numeric password +(ASCII characters 32-126) +ranging in length between 5 +and 50 digits is used. The +default password is changed +during the customer site +installation process. +S.LOCAL_USER SF.JOB_RELEASE A numeric pin code varying +in length from 4 to 6 digits. +6.1.2 Strength of function claim +ST-Océ DAC R8.1.10-1.9 37 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +The SFRs FIA_UID.1, FIA_UAU.1, FIA_UID.2 and FIA_UAU.2 require the TOE +to provide security functions that provide identification/authentication functionality +that meets a SOF claim of ‘SOF basic’. +A strength of function claim of ‘SOF basic’ is made for the security functions +SF.JOB_RELEASE and SF.MANAGEMENT. These are the security functions +that implement FIA_UID.1, FIA_UAU.1, FIA_UID.2 and FIA_UAU.2. +6.2 Assurance Measures +Appropriate assurance measures are employed to satisfy the security assurance +requirements. The following list gives a mapping between the assurance +requirements and the documents containing the information needed for the +fulfilment of the respective requirement. +Configuration Management (ACM) assurance measures +The document containing the description of the configuration management system +as required by ACM is: +• Océ-Technologies B.V., Configuration Management for the Oce DAC +R8.1.10.doc +Delivery and Operation (ADO) assurance measures +The document containing the description of all steps necessary for secure +installation, generation and start-up of the TOE is: +• Océ Engineering Venlo, Delivery and developer security for DAC +R8.1.10.doc +Development (ADV) assurance measures +The developer documentation for ADV can be found in: +• Océ-Technologies B.V., Functional Specification for DAC R8.1.10.doc +• Océ-Technologies B.V., High Level Design for DAC R8.1.10.doc +Guidance (AGD) assurance measures +The document containing the guidance for Oce service engineers is maintained on +the service engineers laptop with the reference: +• Océ-Technologies B.V., Océ Product Installation Guide, +and is not a publicly available document. +The guidance for the customer administrators is in: +• Océ-Technologies B.V., Océ System Configuration On-line help, +Life Cycle (ALC) assurance measures +ST-Océ DAC R8.1.10-1.9 38 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +The physical, procedural, personnel and other security measures applied by the +developer can be found in: +• Océ-Technologies B.V., Flaw remidiation for DAC R8.1.10doc +Test (ATE) assurance measures +The developer test documentation can be found in: +• Océ-Technologies B.V., Test Documentation for the DAC R8.1.10.doc +Vulnerability Assessment (AVA) assurance measures +An analysis of vulnerabilities can be found in: +• Océ-Technologies B.V., Strength of function analysis for DAC +R8.1.10.doc +• Océ-Technologies B.V., Vulnerability analysis for DAC R8.1.10.doc +ST-Océ DAC R8.1.10-1.9 39 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +7. PP Claims +This Security Target TOE does not claim compliance to a Protection Profile. +ST-Océ DAC R8.1.10-1.9 40 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +8. Rationale +8.1 Security Objectives Rationale +For each assumption, threat and OSP we demonstrate that it is met by the security +objectives. The tracings are provided in the following table. +The individual rationales demonstrating that the threats, assumptions and +organizational security policies are met are described as follows: +A.DIGITAL_COPIER +The assumption is met by the following TOE assurance objective: +O.E.DIGITAL_COPIER - The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 2045-65, 2050-70 or 31x5 Digital Copier that +provides a Local User Interface and Glass Plate through which S.LOCAL_USER +can interact easily with the TOE (selecting Username and entering PINcode). +When sending a D.SECURE_PRINT_JOB to the Digital Copier, +O.F.INBOUND_FILTER +O.F.OUTBOUND_FLITER +O.F.JOB_RELEASE +O.F.JOB_SHREAD +O.F.AUTHENTICATE +O.F.SELFTEST +O.A.SLA +O.E.ENVIRONMENT +O.E.NETWORK_POLICY +O.E.DEPLOYMENT +O.E.DIGITAL_COPIER +O.E.SHREDDING +A.DIGITAL_COPIER X +A.ENVIRONMENT X +A.SECURITY_POLICY X X X X +A.SHREDDING X +A.SLA X +T.RESIDUAL_DATA X +T.NOSY_USER X +T.MALWARE X X X +P.TOE_ADMINISTRATION X +P.JOB_DELETE X +ST-Océ DAC R8.1.10-1.9 41 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +S.REMOTE_USER is aware that they must specify a PIN that consists of a +minimum of 4 and a maximum of 6 digits and shall delete the job on the same +workday that it is sent to the TOE, whether or not it is printed. The DC provides a +glass plate and LUI with which S.LOCAL_USER can perform scan jobs. The ST +claim is not valid when the TOE is used with any other type of Océ Digital Copier. +The TOE will not work with any other device (including Digital Copiers from any +other manufacturers). +Although the assumption states that a Digital Copier from Océ will be used, the +Digital Copier is an un-trusted device. The chances of an attack on the LAN being +mounted via the Digital Copier interface are reduced by the TOE filtering the +outbound traffic so that only ports that are absolutely necessary for the operation of +the TOE are open. Requiring D.SECURE_PRINT_JOB to be deleted from the +TOE on the same workday it is sent reduces the time available to an attacker in +which the data object is vulnerable. Additionally the access to the job is limited by +specifying a minimum PIN length. +A.ENVIRONMENT +The assumption is met by the following objectives for the environment: +O.E.ENVIRONMENT - The environment into which the TOE will be introduced is +protected by physical measures that limit access S.LOCAL_USER, +S.REMOTE_USER, S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER. +The physical measures are adequate to prevent all other persons but a determined +S.THIEF who deliberately wants to steal part of or all of the TOE by methodically +planning an attack on the TOE over a period of time. +A.SECURITY_POLICY +The assumption is met by the following objectives for the environment: +O.E.NETWORK_POLICY - The network to which the TOE is attached shall be +adequately protected so that the TOE is not visible outside the network. In addition, +measures shall be implemented to only allow connections to the TOE from devices +situated on the same network. No inbound connections from external networks are +allowed. The network scans data for mal-ware (viruses and worms). This type of +data may originate from either inside or outside the network to which the TOE is +attached and includes the TOE itself. +O.E.DEPLOYMENT - The network (LAN) to which the TOE is attached is well +managed with established procedures for introducing and attaching new devices to +the network. +O.E.DIGITAL_COPIER - The environment into which the TOE will be introduced +shall contain an Océ VarioPrint 2045-65, 2050-70 or 31x5 Digital Copier that +provides a Local User Interface and Glass Plate through which S.LOCAL_USER +ST-Océ DAC R8.1.10-1.9 42 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +can interact easily with the TOE (selecting Username and entering PINcode). +When sending a D.SECURE_PRINT_JOB to the Digital Copier, +S.REMOTE_USER is aware that they must specify a PIN that consists of a +minimum of 4 and a maximum of 6 digits and shall delete the job on the same +workday that it is sent to the TOE, whether or not it is printed. The DC provides a +glass plate and LUI with which S.LOCAL_USER can perform scan jobs. The ST +claim is not valid when the TOE is used with any other type of Océ Digital Copier. +The TOE will not work with any other device (including Digital Copiers from any +other manufacturers). +O.E.SHREDDING – The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB data objects. +The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible to +disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the TOE +claim in no longer valid. +A.SHREDDING +The assumption is met by the following objectives for the environment: +O.E.SHREDDING – The customer requires the shredding of +D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB data objects. +The TOE shreds D.SECURE_PRINT_JOB, D.PRINT_JOB and D.SCAN_JOB by +default when printing/scanning is completed in the delivered mode. It is possible to +disable shredding for D.PRINT_JOB and D.SCAN_JOB. If this happens, the TOE +claim in no longer valid. +A.SLA +The assumption is met by the following TOE assurance objective: +O.A.SLA - The TOE shall be evaluated to ALC_FLR.1.There are measures in +place to repair faults in the TOE when they occur. +T.RESIDUAL_DATA +The threat is met by the following TOE functional objective: +O.F.JOB_SHRED - The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is no longer required or +during the start-up procedure if residual D.SECURE_PRINT_JOB, D.PRINT_JOB +and D.SCAN_JOB is found on the TOE’s hard disk. The first write cycle will +either immediately after the job has completed or once the TOE enters an idle state. +The data shall be deleted according to a recognised standard so that it cannot be +reconstituted. +ST-Océ DAC R8.1.10-1.9 43 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +‘Scrubbing’ the data from the hard disk when it is no longer needed helps prevent +the data been accessed by unauthorised persons. +T.NOSY_USER +The threat is met by the following TOE functional objective: +O.F.JOB_RELEASE - The TOE shall only perform R.RELEASE_JOB once +S.LOCAL_USER has successfully identified and authenticated himself as owner of +D.SECURE_PRINT_JOB. +By first requiring a print job owner to identify an authenticate himself before +printing can commence, observation of print job related data by casual users is +prevented. +T.MALWARE +The threat is met by the following objectives for the environment: +O.F.INBOUND_FILTER - The TOE will only support TCP/IP as a network +protocol. D.INBOUND_TRAFFIC shall only enter the TOE (R.ENTER_TOE) if +the Port is specified as being open in Appendix D. +The chances of mal-ware being accidentally sent to the TOE and causing a security +violation is limited by only opening the ports and enabling the protocols that are +absolutely necessary for the operation of the TOE. +O.F.OUTBOUND_FILTER - The TOE will only support TCP/IP as a network +protocol. D.OUTBOUND_TRAFFIC shall only exit the TOE (R.EXIT_TOE) if its +Port is specified as being open in the Appendix D. +Although the TOE is designed, tested and configured with security as a main +concern, it is possible that vulnerabilities will be discovered in the future that could +be exploited in order to use the TOE as a launch pad for an attack. By only opening +the ports and enabling the protocols that are absolutely necessary for the operation +of the TOE, the chances of a successful attack launch are limited. +Although policy states that a Digital Copier from Oce will be used, the Digital +Copier is an un-trusted device. The chances of an attack on the LAN being +mounted via the Digital Copier interface are reduced by the TOE filtering the +outbound traffic so that only ports that are absolutely necessary for the operation of +the TOE are open. +O.F.SELFTEST – The TOE will perform check of the integrity of the TSF when it +is re-booted. +ST-Océ DAC R8.1.10-1.9 44 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +During start-up, the TOE checks to see if any of the TSF relevant files on the hard +disk have been modified. This can happen due to a malware attack but occurs more +often as a result of a power outage. Maintaining the integrity of the TOE gives +assurance in support of the claim that the TOE will not form a threat against it +operational environment. +P.JOB_DELETE +The policy requirement is met by the following TOE functional objective: +O.F.JOB_SHRED - The TOE shall delete all D.SECURE_PRINT_JOB, +D.PRINT_JOB and D.SCAN_JOB data as soon as it is no longer required or +during the start-up procedure if residual D.SECURE_PRINT_JOB, D.PRINT_JOB +and D.SCAN_JOB is found on the TOE’s hard disk. The first write cycle will +either immediately after the job has completed or once the TOE enters an idle state. +The data shall be deleted according to a recognised standard so that it cannot be +reconstituted. +‘Scrubbing’ the data from the hard disk when it is not longer needed helps prevent +the data been accessed by unauthorised persons. +P.TOE_ADMINISTRATION +The policy requirement is met by the following TOE functional objective: +O.F.AUTHENTICATE - The TOE ensures that S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER must identify and authenticate themselves to the TOE +before allowing them to modify the TOE security settings. +ST-Océ DAC R8.1.10-1.9 45 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +8.2 Security Requirements Rationale +The purpose of the Security Requirements Rationale is to demonstrate that the +security requirements are suitable to meet the Security Objectives. +8.2.1 The SFRs meet the Security Objectives for the TOE +For each Security Objective for the TOE we demonstrate that it is met by the SFRs +as shown in the table below supported by the following rationals. +FDP +ACC1. +FDP +ACF.1 +FIA +UID.1 +FIA +UAU.1 +FDP +RIP.1 +FIA +UID.2 +FIA +UAU.2 +FMT +MOF.1 +FMT +MSA.1 +FMT +MSA.3 +FMT +SMF.1 +FMT +SMR.1 +FPT +SEP.1 +FPT +RVM.1 +FPT +TST.1 +O.F.INBOUND_FILTER X X X X X X +O.F.OUTBOUND_FILTER X X X X X X +O.F.JOB_RELEASE X X X X +O.F.JOB_SHREAD X X X +O.F.AUTHENTICATE X X X X X X X +O.F.SELFTEST X X X +The individual rationales demonstrating the objectives are met are described as +follows: +O.F.INBOUND_FILTER +FDP_ACC.1 Subset access control +Inbound traffic is filtered so that only traffic relating to the operation of the TOE is +allowed to enter the TOE. This SFR supports the security objective by restricting +the TOE data flow to only that that is necessary for the operation of the TOE. This +reduces the number of vulnerable entry points. +FDP_ACF.1 Security attribute based access control +All ports that are not necessary for the operation of the TOE as described in this +document are blocked. This SFR supports the security objective by reducing the +number of entry points that could be vulnerable to attack. +FMT_MSA.1 Management of security attributes +The TOE is delivered pre-configured to the customer. This SFR supports the +objective by ensuring that it is not possible for any user (including +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN) to change the settings of +the firewall mechanism. +ST-Océ DAC R8.1.10-1.9 46 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +FMT_MSA.3 Static Attribute initialisation +In order to change the security attributes of the TOE the management interfaces +provided for S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN must be +used. This SFR supports the objective by ensuring that the TOE provides restrictive +default security related settings that require no additional modification by +SERVICE_ENGINEER or S.REMOTE_SYSADMIN. Nobody is allowed to create +new settings with alternative values. +FPT_SEP.1 TSF domain separation +Filtering of network traffic occurs is an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the filtering +mechanism is protected by it not being exposed to non TSF mechanisms from +which a possible attack could be made. +FPT_RVM.1 Non-bypassability of the TSP +In order for data to enter or leave the TOE it must pass through the filtering +mechanism. This SFR supports the security objective by ensuring that TSF cannot +be bypassed, resulting in a direct line between the Digital Copier and the network +to which the TOE is attached being created. +O.F.OUTBOUND_FILTER +FDP_ACC.1 Subset access control +Outbound traffic is filtered so that only traffic relating to the operation of the TOE +is allowed to leave the TOE. This SFR supports the security objective by restricting +the TOE data flow to only that that is necessary for the operation of the TOE. +FDP_ACF.1 Security attribute based access control +All ports that are not necessary for the operation of the TOE as described in this +document are blocked. This SFR supports the security objective by reducing the +number of exit points through which an attack could be launched. +FMT_MSA.1 Management of security attributes +The TOE is delivered pre-configured to the customer. This SFR supports the +objective by ensuring that it is not possible for any user (including +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN) to change the settings of +the firewall mechanism. +FMT_MSA.3 Static Attribute initialisation +In order to change the security attributes of the TOE the management interfaces +provided for S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN must be +used. This SFR supports the objective by ensuring that the TOE provides restrictive +default security related settings that require no additional modification by +SERVICE_ENGINEER or S.REMOTE_SYSADMIN. Nobody is allowed to create +new settings with alternative values. +ST-Océ DAC R8.1.10-1.9 47 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +FPT_RVM.1 Non-bypassability of the TSP +In order for data to enter or leave the TOE it must pass through the filtering +mechanism. This SFR supports the security objective by ensuring that TSF cannot +be bypassed, resulting in a direct line between the Digital Copier and the network +to which the TOE is attached being created. +FPT_SEP.1 TSF domain separation +Filtering of network traffic occurs is an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the filtering +mechanism is protected by it not being exposed to other non-TSF mechanisms +from which a possible attack could be made. +O.F.JOB_RELEASE +FIA_UID.1 Timing of identification (Secure Printing) +Printing will only commence once the TSF has validated the Username associated +with the job by S.LOCAL_USER. The TSF receives the Username via the +DAC/DC interface. This SFR supports the security objective by requiring the +S.LOCAL_USER to identify himself as part of the job release process. +FIA_UAU.1 Timing of authentication +Printing will only commence once the TSF has validated the PIN associated with +the job by S.LOCAL_USER. The TSF receives the PIN via the DAC/DC interface. +This SFR supports the security objective by requiring the S.LOCAL_USER to +authenticate himself as part of the job release process. +FPT_RVM.1 Non-bypassability of the TSP +Print jobs cannot be processed by any other mechanism than by the specified +mechanism. This SFR supports the objective by ensuring that no other mechanisms +can access the print job data. +FPT_SEP.1 TSF domain separation +Management of print jobs occurs in an area of the TOE that is separate to non-TSF +related operation. This SFR supports the objective by ensuring that the job release +mechanism is protected by it not being exposed to other non-TSF mechanisms +from which a possible attack could be made. +O.F.JOB_SHRED +FDP_RIP.1 Subset residual; information protection +This SFR supports the objective by ensuring that once a print or scan job has +completed, or if during the startup procedure, residual print or scan job data is +found then the related data will be electronically shredded from the hard disk. The +SFR has been refined to describe the moment when the data will be shredded. +FPT_RVM.1 Non-bypassability of the TSP +ST-Océ DAC R8.1.10-1.9 48 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Print and scan jobs must pass through the shredding mechanism. This SFR +supports the objective by ensuring that print and scan jobs cannot leave the TOE +except in the authorised manner. +FPT_SEP.1 TSF domain separation +Shredding occurs is an area of the TOE that is separate to non-TSF related +operation. This SFR supports the objective by ensuring that the shredding +mechanism is protected by it not being exposed to other non TSF-mechanisms +from which a possible attack could be made. +O.F.AUTHENTICATE +FIA_UID.2 User identification before any action +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER must identify themselves +to the TOE before any TOE management actions can be performed. +FIA_UAU.2 User authentication before any action +S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER must authenticate +themselves to the TOE before any TOE management actions can be performed. +FMT_SMF.1 Specification of Management Functions +The functions that can be performed by either the S.REMOTE_SYSADMIN and +S.SERVICE_ENGINEER are defined. +FMT_MOF.1 Management of security functions behaviour +Only TOE administrators and Océ technicians can use security related functions. +FMT_SMR.1 Security roles +The TOE shall make a distinction between administrators and ordinary users. +FPT_RVM.1 Non-bypassability of the TSP +Users other than S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER cannot +gain access to security management functions of the TOE without begin first +controlled by the mechanisms specified in this document. +FPT_SEP.1 TSF domain separation +Identification and authentication of users occurs in an area of the TOE that is +separate to non-security related operation. +O.F.SELFTTEST +FPT_TST.1 TSF Testing +When the TOE is started up, it will perform a suite of self tests and determine that +it is working correctly. If it determines that there is a problem it will try to repair +itself. If this fails it will place itself in an ‘out-of order’ mode +FPT_RVM.1 Non-bypassability of the TSP +ST-Océ DAC R8.1.10-1.9 49 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +The self-test mechanism cannot be by passed. +FPT_SEP.1 TSF domain separation +Self-testing of the TOE occurs in an area of the TOE that is separate to non-TSF +related operation. +8.2.2 The security requirements for the IT environment meet the security +objectives for the environment +The TOE does not make any security requirements on its environment. +ST-Océ DAC R8.1.10-1.9 50 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +8.2.3 The Assurance Requirements and Strength of Function Claim are +appropriate +The Assurance Requirements consist of EAL 2 requirements components. The +TOE is a commercially available device produced by a well-known manufacturer +and most importantly, provides a limited set of security related functionality. The +TOE has been structurally tested by Océ and is suitable for environments that +require a low to moderate level of independently assured security. The developer +works in a consistent manner with good commercial practice. +Occasionally the TOE may develop a problem that requires +S.SERVICE_ENGINEER to make a visit to the customer location in order to repair +the TOE. Océ has procedures that support these processes and for this reason the +assurance requirements have been augmented with the following assurance classes +as the developer is able to meet them: +Components for Life cycle support (Class ALC) +• ALC_FLR.1 Basic Flaw Remediation +The evaluation of the TOE security mechanisms at AVA_VLA.1 is designed to +provide assurance against an attacker with a low attack potential. Therefore the +SOF claim is SOF-basic. This strength of function claim is consistent with the +security objectives for the TOE and the defined TOE assumptions that have been +made. +8.2.4 All dependencies have been met +The following dependencies are identified: FDP_ACF.1, FDP_ACC.1, +FMT_MSA.1, FMT_MSA.3, FIA_UID.1, FMT_SMF.1, FMT_SMR.1, +FPT_AMT.1. +EAL2+ ALC_FLR +Which comprises of: +ACM_CAP.2 Configuration Items +ADO_DEL.1 Delivery procedures +ADO_IGS.1 Installation, generation, and start-up procedures +ADV_FSP.1 Fully defined external interfaces +ADV_HLD.1 Security enforcing high-level design +ADV_RCR.1 Informal correspondence demonstration +AGD_ADM.1 Administrator Guidance +AGD_USR.1 User guidance +ALC_FLR.1 Basic Flaw remediation +ATE_COV.1 Analysis of coverage +ATE_FUN.1 Functional testing +ATE_IND.2 Independent testing – sample +AVA_SOF.1 Strength of TOE security function evaluation +AVA_VLA.1 Developer vulnerability analysis +O.A.SLA +ST-Océ DAC R8.1.10-1.9 51 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +The dependency FPT_AMT.1 Abstract machine is not included, because the +underlying IT platform does not contribute to the TOE requirements (See part 1, +paragraph 147). The underlying PC platform is a standard PC platform that works. +Testing of the platform does not provide assurance that will support the claims at +the level of EAL2, as functional testing of the DAC in its operational environment +is performed (it does what is should do). +All other dependencies are met. +8.2.5 The requirements are internally consistent +Because the assurance requirements form a package (EAL 2) they are internally +consistent. The addition of ALC_FLR.1 does not cause inconsistencies with the +EAL 2 package. +The functional requirements and assurance requirements do not have any +dependencies between them, and are therefore completely independent of each +other. Because both functional and assurance requirements are internally +consistent, and they are independent, the requirements are internally consistent. +8.2.6 The requirements are mutually supportive +The requirements are complete and do not cause inconsistencies, therefore the +requirements are considered to be mutually supportive. (This argument has been +based on section 9.3.8 of Guide for the production of PPs and STs, PDTR 15446 +N2449) +ST-Océ DAC R8.1.10-1.9 52 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +8.3 TOE Summary Specification Rationale +8.3.1 The functions meet the SFRs +For each SFR we demonstrate that it is met by the Security Functions in the table +below supported by the following rationales. +FDP +ACC1. +FDP +ACF.1 +FIA +UID.1 +FIA +UAU.1 +FDP +RIP.1 +FIA +UID.2 +FIA +UAU.2 +FMT +MOF.1 +FMT +MSA.1 +FMT +MSA.3 +FMT +SMF.1 +FMT +SMR.1 +FPT +SEP.1 +FPT +RVM.1 +FPT +TST.1 +SF.FILTERING X X X X X X +SF.JOB_RELEASE X X X X +SF.SHREDDING X X X +SF.MANAGEMENT X X X X X X X X X +SF.SELFTEST X X X +FDP_ACC.1 +This Security Functional Requirement ensures that only traffic is allowed to enter +the TOE that is relevant to its operation. This SFR is supported by SF.FILTERING +that restricts flow of network traffic and limits the supported network protocols. +FDP_ACF.1 +This Security Functional Requirement ensures that all ports that are non-essential +to the operation of the TOE are blocked. This SFR is supported by +SF.FILTERING. SF.FILTERING expands on the restricted flow of network traffic +and supported network protocols by defining which ports are open and which +protocols are supported. +FIA_UID.1 +This Security Functional Requirement ensures that the TSF verifies the identity of +S.LOCAL_USER before allowing SF.JOB_RELEASE. This helps to ensure that +access to confidential print jobs is restricted. +FIA.UAU.1 +This Security Functional Requirement ensures that the TSF authenticates +S.LOCAL_USER by correctly supplying the PIN associated with the secure print +job before SF.JOB_RELEASE will commence. This helps to ensure that access to +confidential print jobs is restricted. +FDP_RIP.1 +ST-Océ DAC R8.1.10-1.9 53 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +This Security Functional Requirement ensures requires that residual information +relating to D.SECURE_PRINTJOB, D.PRINTJOB and D.SCANJOB is deleted +once they are no longer needed, or, if during the startup procedure residual print or +scan job data is found on the hard disk. The SFR has been refined to describe the +moment when the data will be shredded. This SFR is supported by +SF.SHREDDING that provides functionality that ensures the data objects detailed +above are shredded in accordance with known standards. This SFR helps to reduce +the amount of sensitive data present on the hard disk in the event of it being stolen. +FIA_UID.2 +This Security Functional Requirement ensures that administrators correctly identify +themselves to the TOE before security management functions can be used. This +SFR is supported by SF.MANAGEMENT and provides functionality whereby +administrators (S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER) can +identify themselves to the TOE. This helps to restrict access to security +management functions and thereby reduces the risk of modification being made to +the TOE settings by unauthorised users. +FIA_UAU.2 +This Security Functional Requirement ensures that administrators correctly +authenticate themselves to the TOE before security management functions can be +used. This SFR is supported by SF.MANAGEMENT and provides functionality +whereby administrators (S.REMOTE_SYSADMIN and S.SERVICE_ENGINEER) +can authenticate themselves to the TOE. This helps to restrict access to security +management functions and thereby reduces the risk of modification being made to +the TOE settings by unauthorised users. +FMT_MOF.1 +This Security Functional Requirement ensures that the TOE management functions +are only used by either the Océ technician (S.SERVICE_ENGINEER) or customer +system administrator (S.REMOTE_SYSADMIN). This SFR is supported by +SF.MANAGEMENT and ensures that non-administrators cannot administer the +TOE. +FMT_MSA.1 +This Security Functional Requirement ensures that the TOE management functions +related to the filter mechanism settings cannot be changed. This SFR is supported +by SF.MANGEMENT that ensures that filter related settings cannot be changed by +administrators. +FMT_MSA.3 +This Security Functional Requirement ensures that the TOE management functions +related to the filter mechanism settings are given default values. This SFR is +supported by SF.MANAGEMENT that ensures that the filter related settings are +pre-configured before delivery to the customer. +ST-Océ DAC R8.1.10-1.9 54 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +FMT_SMF.1 +This Security Functional Requirement ensures that the TOE management functions +are defined. This SFR is supported by functions made available by +SF.MANAGEMENT and defines the set of operations that are available to the Océ +technician (S.SERVICE_ENGINEER) or customer system administrator +(S.REMOTE_SYSADMIN) that are needed to administrate the TOE. +FMT_SMR.1 +This Security Functional Requirement ensures that the TOE makes a distinction +between security related roles and normal users. This SFR is supported by +SF.MANAGEMENT. This SFR is supported by SF.MANAGEMENT and ensures +that non-administrators cannot administer the TOE. +FPT_SEP.1 +This Security Functional Requirement ensures that the TSF operates in its own +domain and cannot be influenced by external sources. This requirement is met by +the physical characteristics of the TOE that comprises software that uses a generic +PC hardware platform. The DAC only provides functionality related to the +operation of the TOE and does not have dual function, for example, as an office +file server. The nature of the TOE is such that evaluation at EAL2 provides a +suitable level of assurance that the TSF operates in it’s own domain. +The operation of the TSF in its own domain provides the following: +1. The filtering mechanisms are in a separate domain to the rest of the non- +security related operations that the TOE performs. This SFR is supported +by SF.FILTERING. This protects the integrity of the filtering mechanism +against un-authorised subjects and threat attacks. +2. The print job management mechanisms are in a separate domain to the +rest of the non-security related operations that the TOE performs. This +SFR is supported by SF.JOB_RELEASE This protects the integrity of the +print job mechanism against un-authorised subjects and threat attacks. +3. The shredding mechanisms are in a separate domain to the rest of the non- +security related operations that the TOE performs. This SFR is supported +by SF.SHREDDING. This protects the integrity of the shredding +mechanism against un-authorised subjects and threat attacks. +4. The TOE security management mechanisms are in a separate domain to +the rest of the non-security related operations that the TOE performs. This +SFR is supported by SF.MANAGEMENT. This protects the integrity of +the security management mechanisms against un-authorised subjects and +threat attacks. +5. The TOE start-up check mechanisms are in a separate domain to the rest +of the non-security related operations that the TOE performs. This SFR is +supported by SF. SELFTEST. This protects the integrity of the start-up +check mechanisms against un-authorised subjects and threat attacks. +ST-Océ DAC R8.1.10-1.9 55 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +FPT_RVM.1 +This Security Functional Requirement ensures that no security related operations +can be performed without being controlled by the TOE’s security mechanisms. The +DAC provides a limited set of security functionality that is related to the operation +of the TOE. The nature of the TOE is such that evaluation at EAL2 provides a +suitable level of assurance that the only the TSF can perform security related +operations. +This SFR is supported by SF.MANAGEMENT. +This Security Functional Requirement ensures that: +1. No filtering mechanisms can be performed without being controlled by +the TOE’s security mechanisms. This SFR is supported by +SF.FILTERING. +2. No secure print job management mechanisms can be performed without +being controlled by the TOE’s security mechanisms. This SFR is +supported by SF.JOB_RELEASE. +3. No shredding mechanisms can be performed without being controlled by +the TOE’s security mechanisms. This SFR is supported by +SF.SHREDDING. +4. No security related operations can be performed without being controlled +by the TOE’s security mechanisms. This SFR is supported by +SF.MANAGEMENT. +5. The TOE start-up check mechanisms are in a separate domain to the rest +of the non-security related operations that the TOE performs. This SFR is +supported by SF. SELFTEST. This ensures that no security management +mechanisms can be used by un-authorised subjects. +FPT_TST.1 +This Security Functional Requirement ensures that the TOE to performs a self-test +during start up. This SFR is supported by SF.SELFTEST. The self-test helps +protect the TOE against T.MALWARE so that it does not become a possible threat +agent against S.NETWORK_DEVICE. +8.3.2 The assurance measures meet the SARs +The statement of assurance measures has been presented in the form of a reference +to the documents that show that the assurance measures have been met (CC Part 3 +paragraph 188). This statement can be found in section 6.2. +8.3.3 The SOF-claims for functions meet the SOF-claims for the SFRs +The SFRs FIA_UAU.1, FIA_UAU.2, FIA_UID.1 and FIA_UID.2 require the TOE +to provide security functions that provide identification/authentication functionality +that meets a SOF claim of ‘SOF basic’. +ST-Océ DAC R8.1.10-1.9 56 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +This rational for this is that the claim must adequate to defend against the identified +threats to the TOE that are identified in the TOE Security Environment for which a +low attack potential exists +The Security Functions that are realised by probabilistic or permutational +mechanisms are: +• SF.JOB_RELEASE +• SF.MANAGEMENT +The claim for these two Security Functions is ‘SOF basic’. These Security +Functions are traced back to the TOE SFRs they implement in 8.3.1 +As the SOF claims for the three Security Functions are equal to the SOF claims for +the TOE SFRs they implement, the SOF claims are consistent. +8.3.4 The functions are mutually supportive +The requirements are mutually supportive (see section 8.2.6) and the functions that +implement theses requirements are complete (see section 8.3.1). The functions are +mutually supportive. (This argument has been based on section 9.3.8 of Guide for +the production of PPs and STs, PDTR 15446 N2449) +8.4 PP Claims Rationale +This Security Target TOE does not claim conformance to any Protection Profile. +ST-Océ DAC R8.1.10-1.9 57 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Appendix A Abbreviations +BSI Bundesamt für Sicherheit in der Informationtechnik +DAC Digital Access Controller +DC Digital Copier +ITSEF IT Security Evaluation Facility +LUI Local User Interface (of a DC) +MFD Multifunctional device for copying, printing and scanning, +connected to a network (Combination of a DC and a DAC) +TNO Netherlands Organization for Applied Scientific Research +ST-Océ DAC R8.1.10-1.9 58 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Appendix B References +1. Secure Deletion of Data from Magnetic and Solid State Memory, Peter +Guttman 1996 +(http://www.cs.auckland.ac.nz/~pgut001/pubs/secure_del.html) +2. US Department of Defence Military Standard DOD 5220-22m +(http://www.dss.mil/isecnispom_0195.htm) +. +ST-Océ DAC R8.1.10-1.9 59 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Appendix C Glossary of Terms +None. +ST-Océ DAC R8.1.10-1.9 60 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Appendix D Firewall rule table +The firewall rule table that is used by the DAC for controlling the inbound and +outbound flow of data is given below: +By default no traffic is permitted to enter or leave to TOE except for the ports and +ICMP commands defined in the rule tables below. +Traffic that flows between the DAC and the LAN via the network card +ICMP(administration) +Protocol Source Port / +ICMP Type +Destination Port / +ICMP Code +Direction +ICMP 3 >=0 Inbound +ICMP 0 0 Outbound +ICMP 4 >=0 Both +ICMP 8 0 Inbound +ICMP 11 >0 Inbound +ICMP 11 1 Outbound +ICMP 12 >=0 Both +DNS, DHCP (administration) +Protocol Source Port Destination Port Direction +UDP 53 >1023 Inbound +UDP+TCP >1023 53 Outbound +TCP 53 >1023 Inbound +UDP 67 68 Both +LPR (accepting print jobs) +Protocol Source Port Destination Port Direction +TCP >1024 515 Inbound +TCP 515 >1024 Outbound +Web HTTPS server with HTTP redirect (administration) +Protocol Source Port Destination Port Direction +TCP >1023 443 Inbound +TCP 443 >1023 Outbound +TCP >1023 80 Inbound +TCP 80 >1023 Outbound +ST-Océ DAC R8.1.10-1.9 61 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +HTTPS print job forwarding client +Protocol Source Port Destination Port Direction +TCP 443 >1023 Outbound +TCP >1023 443 Inbound +FTP client (forwarding scan jobs to remote FTP server) +Protocol Source Port Destination Port Direction +TCP 20 >1023 Inbound +TCP >1023 20 Outbound +TCP 21 >1023 Inbound +TCP >1023 21 Outbound +E-MAIL client (forwarding scan jobs to remote E-MAIL server) +Protocol Source Port Destination Port Direction +TCP 25 25 Outbound +TCP 25 25 Inbound +SNMP (read only and read/write administration) +Protocol Source Port Destination Port Direction +UDP 161 Inbound +UDP 161 Outbound +UDP+TCP 162 Inbound +UDP+TCP 162 Outbound +Raw socket (used for submitting raw print job data to the TOE instead of via the +LPR daemon) +Protocol Source Port Destination Port Direction +TCP >1024 9100 (default) Inbound +TCP 9100 (default) >1024 Outbound +Traffic that flows between the DAC and the DC via the linking cable +ICMP(administration) +Protocol Source Port / +ICMP Type +Destination Port / +ICMP Code +Direction +ICMP 0 Inbound +ICMP 0 Outbound +DAC-DC +Protocol Source Port Destination Port Direction +TCP 5010 >1023 Inbound +TCP >1023 5010 Outbound +ST-Océ DAC R8.1.10-1.9 62 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Appendix E Security Related Administration Functions +In this appendix the security related administration functions that are available to +S.SERVICE_ENGINEER and S.REMOTE_SYSADMIN are detailed. The tables +give the administration function name and a short description. +S.SERVICE_ENGINEER +Administration Function Description +Security / security level / required level Changing this setting invalidates the claim +Security / data shredding / shred moment Sets the actual moment of shredding +Security / data shredding / shred non secure +jobs +Sets the type of print jobs to shred +Security / data shredding / shred scan jobs Sets whether scanned jobs are shredded +Security / SDS password Sets the SDS login password +Configuration / Network / TCPIP / HTTPD Configures the Webserver that uses the +TCPIP +Configuration / Network / TCPIP / HTTPD / +Port nr +Configures the port number that is used by +the webserver +Configuration / Applications / Web based SAS +/ Enable +Enables web based SAS +Configuration / Applications / Web based SAS +/ ResetSASPassword +Resets the SAS password to its default +value +Configuration / licenses / Erase license Erases the current license file +Enable LPD / Disable LPD Toggles the LPD daemon +ST-Océ DAC R8.1.10-1.9 63 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +S.REMOTE_SYSADMIN +Administration Function Description +Security / security level / required level Changing this setting invalidates the claim +Security / data shredding / shred moment Sets the actual moment of shredding +Security / data shredding / shred non secure +jobs +Sets the type of print jobs to shred +Security / data shredding / shred scan jobs Sets whether scanned jobs are shredded +Configuration / Upload settings Enables a default set of settings to be +uploaded to the DAC (useful for configuring +multiple DAC in one customer +environment) +Configuration / Download settings Enables a default set of settings to be +downloaded to the DAC (useful for +configuring multiple DAC in one customer +environment) +Configuration / Network / TCPIP / HTTPD / +Port nr +Configures the Webserver that uses the +TCPIP +S99 Configuration / Network / TCPIP / HTTPD +/ self signed certificate / common name +Configures the port number that is used by +the webserver +Configuration / Network / TCPIP / raw socket +enable +Enables/disables raw socket functionality +Configuration / Network / TCPIP / raw socket +port nr +Configures the port number that is used by +the raw socket +Configuration / Network / TCPIP / LDAP +enable/disable +Enables/disables support for LDAP +functionality +Configuration / Network / TCPIP / LDAP port +nr +Configures the port number that is used by +the for LDAP functionality +Applications / Web based SAS / +SetSASPassword +Sets the S.REMOTE_SYSADMIN +password +Enable LPD / Disable LPD Toggles the LPD daemon +ST-Océ DAC R8.1.10-1.9 64 of 64 +2nd September 2005 BSI-DSZ-CC-0325 +Distribution list +1. BSI +2. Océ Technologies B.V. +3. TNO-ITSEF B.V +
\ No newline at end of file |
