pax_global_header00006660000000000000000000000064151475202500014513gustar00rootroot0000000000000052 comment=bc3df10ff30ee342b944aff5d85283a26b7de342 prjpeppercorn-1.12/000077500000000000000000000000001514752025000143275ustar00rootroot00000000000000prjpeppercorn-1.12/.gitignore000066400000000000000000000000441514752025000163150ustar00rootroot00000000000000#python __pycache__/ *.pyc *.tar.gz prjpeppercorn-1.12/.readthedocs.yaml000066400000000000000000000002751514752025000175620ustar00rootroot00000000000000version: 2 build: os: ubuntu-22.04 tools: python: '3.11' sphinx: configuration: docs/source/conf.py python: install: - requirements: docs/source/requirements.txt prjpeppercorn-1.12/COPYING000066400000000000000000000013551514752025000153660ustar00rootroot00000000000000Copyright (C) 2024 The Project Peppercorn Authors. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. prjpeppercorn-1.12/README.md000066400000000000000000000010471514752025000156100ustar00rootroot00000000000000# Project Peppercorn GateMate FPGAs Bitstream Documentation and Tools ## Credits Code is heavily based on [prjtrellis](https://github.com/YosysHQ/prjtrellis). Special thanks goes to [@gatecat](https://github.com/gatecat) ### License All software (code, associated documentation, support files, etc) in the Project Peppercorn repository are licensed under the very permissive [ISC Licence](https://opensource.org/licenses/ISC). A copy can be found in the [`COPYING`](COPYING) file. All new contributions must also be released under this license. prjpeppercorn-1.12/decompress.py000066400000000000000000000513371514752025000170560ustar00rootroot00000000000000import zlib import struct from dataclasses import dataclass from typing import List @dataclass class T_delay_tri: min: int typ: int max: int @staticmethod def from_bytes(data: bytes) -> 'T_delay_tri': min_val, typ_val, max_val = struct.unpack('<3i', data) return T_delay_tri(min_val, typ_val, max_val) @dataclass class T_delay: rise: T_delay_tri fall: T_delay_tri @staticmethod def from_bytes(data: bytes) -> 'T_delay': rise = T_delay_tri.from_bytes(data[:12]) fall = T_delay_tri.from_bytes(data[12:24]) return T_delay(rise, fall) @dataclass class Tpin_pair: i: int o_or_clk: int # Represents either 'o' or 'clk' depending on the boolean case @staticmethod def from_bytes(data: bytes) -> 'Tpin_pair': i_val, o_or_clk_val = struct.unpack('<2h', data) return Tpin_pair(i_val, o_or_clk_val) @dataclass class Tentry_rec: pins: Tpin_pair entry_no: int @staticmethod def from_bytes(data: bytes) -> 'Tentry_rec': pins = Tpin_pair.from_bytes(data[:4]) entry_no = struct.unpack(' 'Tdel_entry': key, edge1, edge2 = struct.unpack('<3i', data[:12]) time1 = T_delay_tri.from_bytes(data[12:24]) time2 = T_delay_tri.from_bytes(data[24:36]) return Tdel_entry(key, edge1, edge2, time1, time2) @dataclass class TRAM_del_rec: iopath: List[Tentry_rec] setuphold: List[Tentry_rec] width: List[Tentry_rec] del_entry: List[Tdel_entry] @staticmethod def from_bytes(data: bytes) -> 'TRAM_del_rec': offset = 0 iopath = [Tentry_rec.from_bytes(data[offset + i*6:offset + (i+1)*6]) for i in range(3001)] offset += 3001 * 6 setuphold = [Tentry_rec.from_bytes(data[offset + i*6:offset + (i+1)*6]) for i in range(8001)] offset += 8001 * 6 width = [Tentry_rec.from_bytes(data[offset + i*6:offset + (i+1)*6]) for i in range(51)] offset += 51 * 6 del_entry = [Tdel_entry.from_bytes(data[offset + i*36:offset + (i+1)*36]) for i in range(101)] return TRAM_del_rec(iopath, setuphold, width, del_entry) @dataclass class Tdel_rec: val: T_delay conf_mux: int name: str x: int y: int plane: int dir: int inv: int cnt: int con_type: int @staticmethod def from_bytes(data: memoryview, offset: int) -> ('Tdel_rec', int): val = T_delay.from_bytes(data[offset:offset + 24]) offset += 24 conf_mux = struct.unpack_from(' ('Tdel_rec_tri', int): val = T_delay_tri.from_bytes(mv[offset:offset+12]) offset += 12 conf_mux = struct.unpack_from(' (List, int): SB_del_tile_arr = [] for i1 in range(4): # [1..4] level1 = [] for i2 in range(8): # [1..8] level2 = [] for i3 in range(4): # [1..4] level3 = [] for i4 in range(12): # [1..12] level4 = [] for i5 in range(5): # [0..4] level5 = [] for i6 in range(8): # [0..7] chunk = mv[offset:offset + 24] if len(chunk) < 24: raise EOFError("Unexpected end of data") delay = T_delay.from_bytes(chunk) offset += 24 level5.append(delay) level4.append(level5) level3.append(level4) level2.append(level3) level1.append(level2) SB_del_tile_arr.append(level1) return SB_del_tile_arr, offset @dataclass class ExtraTimingDelays: skew_report_del: int fix_skew_del: int del_rec_0: Tdel_rec del_min_route_SB: Tdel_rec del_violation_common: Tdel_rec_tri del_dummy: Tdel_rec del_Hold_D_L: Tdel_rec_tri del_Hold_RAM: Tdel_rec_tri del_Setup_D_L: Tdel_rec_tri del_Setup_RAM: Tdel_rec_tri del_Hold_SN_RN: Tdel_rec_tri del_Setup_SN_RN: Tdel_rec_tri del_Hold_RN_SN: Tdel_rec_tri del_Setup_RN_SN: Tdel_rec_tri del_bot_couty2: Tdel_rec del_bot_glb_couty2: Tdel_rec del_bot_SB_couty2: Tdel_rec del_bot_pouty2: Tdel_rec del_bot_glb_pouty2: Tdel_rec del_bot_SB_pouty2: Tdel_rec del_left_couty2: Tdel_rec del_left_glb_couty2: Tdel_rec del_left_SB_couty2: Tdel_rec del_left_pouty2: Tdel_rec del_left_glb_pouty2: Tdel_rec del_left_SB_pouty2: Tdel_rec del_inp: List[Tdel_rec] del_CPE_out_mux: List[Tdel_rec] del_CPE_CP_Q: Tdel_rec del_CPE_S_Q: Tdel_rec del_CPE_R_Q: Tdel_rec del_CPE_D_Q: Tdel_rec del_RAM_CLK_DO: Tdel_rec del_GLBOUT_sb_big: Tdel_rec del_sb_drv: Tdel_rec del_CP_carry_path: Tdel_rec del_CP_prop_path: Tdel_rec del_special_RAM_I: Tdel_rec del_RAMO_xOBF: Tdel_rec del_GLBOUT_IO_SEL: Tdel_rec del_IO_SEL_Q_out: Tdel_rec del_IO_SEL_Q_in: Tdel_rec in_delayline_per_stage: Tdel_rec out_delayline_per_stage: Tdel_rec del_IBF: Tdel_rec del_OBF: Tdel_rec del_r_OBF: Tdel_rec del_TOBF_ctrl: Tdel_rec del_LVDS_IBF: Tdel_rec del_LVDS_OBF: Tdel_rec del_LVDS_r_OBF: Tdel_rec del_LVDS_TOBF_ctrl: Tdel_rec del_CP_clkin: Tdel_rec del_CP_enin: Tdel_rec del_preplace: Tdel_rec del_CPE_timing_mod: List[Tdel_rec] @staticmethod def from_bytes(mv: memoryview, offset: int) -> ('ExtraTimingDelays', int): skew_report_del, fix_skew_del = struct.unpack_from('<2i', mv, offset) offset += 8 del_rec_0, offset = Tdel_rec.from_bytes(mv, offset) del_min_route_SB, offset = Tdel_rec.from_bytes(mv, offset) del_violation_common, offset = Tdel_rec_tri.from_bytes(mv, offset) del_dummy, offset = Tdel_rec.from_bytes(mv, offset) del_Hold_D_L, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Hold_RAM, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Setup_D_L, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Setup_RAM, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Hold_SN_RN, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Setup_SN_RN, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Hold_RN_SN, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Setup_RN_SN, offset = Tdel_rec_tri.from_bytes(mv, offset) del_bot_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_glb_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_SB_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_glb_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_SB_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_glb_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_SB_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_glb_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_SB_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_inp = [] for _ in range(8): rec, offset = Tdel_rec.from_bytes(mv, offset) del_inp.append(rec) del_CPE_out_mux = [] for _ in range(4): rec, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_out_mux.append(rec) del_CPE_CP_Q, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_S_Q, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_R_Q, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_D_Q, offset = Tdel_rec.from_bytes(mv, offset) del_RAM_CLK_DO, offset = Tdel_rec.from_bytes(mv, offset) del_GLBOUT_sb_big, offset = Tdel_rec.from_bytes(mv, offset) del_sb_drv, offset = Tdel_rec.from_bytes(mv, offset) del_CP_carry_path, offset = Tdel_rec.from_bytes(mv, offset) del_CP_prop_path, offset = Tdel_rec.from_bytes(mv, offset) del_special_RAM_I, offset = Tdel_rec.from_bytes(mv, offset) del_RAMO_xOBF, offset = Tdel_rec.from_bytes(mv, offset) del_GLBOUT_IO_SEL, offset = Tdel_rec.from_bytes(mv, offset) del_IO_SEL_Q_out, offset = Tdel_rec.from_bytes(mv, offset) del_IO_SEL_Q_in, offset = Tdel_rec.from_bytes(mv, offset) in_delayline_per_stage, offset = Tdel_rec.from_bytes(mv, offset) out_delayline_per_stage, offset = Tdel_rec.from_bytes(mv, offset) del_IBF, offset = Tdel_rec.from_bytes(mv, offset) del_OBF, offset = Tdel_rec.from_bytes(mv, offset) del_r_OBF, offset = Tdel_rec.from_bytes(mv, offset) del_TOBF_ctrl, offset = Tdel_rec.from_bytes(mv, offset) del_LVDS_IBF, offset = Tdel_rec.from_bytes(mv, offset) del_LVDS_OBF, offset = Tdel_rec.from_bytes(mv, offset) del_LVDS_r_OBF, offset = Tdel_rec.from_bytes(mv, offset) del_LVDS_TOBF_ctrl, offset = Tdel_rec.from_bytes(mv, offset) del_CP_clkin, offset = Tdel_rec.from_bytes(mv, offset) del_CP_enin, offset = Tdel_rec.from_bytes(mv, offset) del_preplace, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_timing_mod = [] for _ in range(42): rec, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_timing_mod.append(rec) return ExtraTimingDelays( skew_report_del, fix_skew_del, del_rec_0, del_min_route_SB, del_violation_common, del_dummy, del_Hold_D_L, del_Hold_RAM, del_Setup_D_L, del_Setup_RAM, del_Hold_SN_RN, del_Setup_SN_RN, del_Hold_RN_SN, del_Setup_RN_SN, del_bot_couty2, del_bot_glb_couty2, del_bot_SB_couty2, del_bot_pouty2, del_bot_glb_pouty2, del_bot_SB_pouty2, del_left_couty2, del_left_glb_couty2, del_left_SB_couty2, del_left_pouty2, del_left_glb_pouty2, del_left_SB_pouty2, del_inp, del_CPE_out_mux, del_CPE_CP_Q, del_CPE_S_Q, del_CPE_R_Q, del_CPE_D_Q, del_RAM_CLK_DO, del_GLBOUT_sb_big, del_sb_drv, del_CP_carry_path, del_CP_prop_path, del_special_RAM_I, del_RAMO_xOBF, del_GLBOUT_IO_SEL, del_IO_SEL_Q_out, del_IO_SEL_Q_in, in_delayline_per_stage, out_delayline_per_stage, del_IBF, del_OBF, del_r_OBF, del_TOBF_ctrl, del_LVDS_IBF, del_LVDS_OBF, del_LVDS_r_OBF, del_LVDS_TOBF_ctrl, del_CP_clkin, del_CP_enin, del_preplace, del_CPE_timing_mod ), offset def read_IM_del_tile_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(2): # [1..2] level1 = [] for i2 in range(8): # [1..8] level2 = [] for i3 in range(8): # [1..8] level3 = [] for i4 in range(12): # [1..12] level4 = [] for i5 in range(8): # [0..7] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level4.append(delay) level3.append(level4) level2.append(level3) level1.append(level2) result.append(level1) return result, offset def read_OM_del_tile_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(8): # [1..8] level1 = [] for i2 in range(8): # [1..8] level2 = [] for i3 in range(4): # [9..12] level3 = [] for i4 in range(4): # [0..3] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level3.append(delay) level2.append(level3) level1.append(level2) result.append(level1) return result, offset def read_CPE_del_tile_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(10): # [0..9] level1 = [] for i2 in range(19): # [1..19] level2 = [] for i3 in range(10): # [1..10] rec, offset = Tdel_rec.from_bytes(mv, offset) level2.append(rec) level1.append(level2) result.append(level1) return result, offset def read_SB_del_rim_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(165): # [-2..162] level1 = [] for i2 in range(4): # [1..4] level2 = [] for i3 in range(12): # [1..12] level3 = [] for i4 in range(5): # [0..4] level4 = [] for i5 in range(8): # [0..7] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level4.append(delay) level3.append(level4) level2.append(level3) level1.append(level2) result.append(level1) return result, offset def read_Edge_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(165): # [-2..162] level1 = [] for i2 in range(4): # [1..4] level2 = [] for i3 in range(24): # [1..24] level3 = [] for i4 in range(8): # [1..8] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level3.append(delay) level2.append(level3) level1.append(level2) result.append(level1) return result, offset def read_IO_SEL_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(11): # [1..11] level1 = [] for i2 in range(4): # [1..4] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level1.append(delay) result.append(level1) return result, offset def read_CLKIN_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(7): level1 = [] for i2 in range(4): delay = T_delay.from_bytes(mv[offset:offset + 24]) offset += 24 level1.append(delay) result.append(level1) return result, offset def read_GLBOUT_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(28): level1 = [] for i2 in range(8): delay = T_delay.from_bytes(mv[offset:offset + 24]) offset += 24 level1.append(delay) result.append(level1) return result, offset def read_PLL_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(7): level1 = [] for i2 in range(6): delay = T_delay.from_bytes(mv[offset:offset + 24]) offset += 24 level1.append(delay) result.append(level1) return result, offset def read_Tentry_rec_from_bytes(data: memoryview, offset: int) -> ('Tentry_rec', int): pins_i, pins_val, entry_no = struct.unpack_from('<3h', data, offset) return Tentry_rec(Tpin_pair(pins_i, pins_val), entry_no), offset + 6 def read_Tdel_entry_from_bytes(data: memoryview, offset: int) -> ('Tdel_entry', int): key, edge1, edge2 = struct.unpack_from('<3i', data, offset) time1 = T_delay_tri.from_bytes(data[offset + 12:offset + 24]) time2 = T_delay_tri.from_bytes(data[offset + 24:offset + 36]) return Tdel_entry(key, edge1, edge2, time1, time2), offset + 36 def read_TRAM_del_rec_from_bytes(mv: memoryview, offset: int) -> (TRAM_del_rec, int): iopath = [] for _ in range(3001): entry, offset = read_Tentry_rec_from_bytes(mv, offset) iopath.append(entry) setuphold = [] for _ in range(8001): entry, offset = read_Tentry_rec_from_bytes(mv, offset) setuphold.append(entry) width = [] for _ in range(51): entry, offset = read_Tentry_rec_from_bytes(mv, offset) width.append(entry) del_entry = [] for _ in range(101): entry, offset = read_Tdel_entry_from_bytes(mv, offset) del_entry.append(entry) offset += 2 # alignment added return TRAM_del_rec(iopath, setuphold, width, del_entry), offset def read_IO_SEL_io_coef_from_bytes(mv: memoryview, offset: int) -> (list, int): result = [] for i1 in range(4): # [1..4] row = [] for i2 in range(27): # [1..27] value = struct.unpack_from(' 'Tdel_all_rec': offset = 0 sb_del_tile_arr, offset = read_SB_del_tile_arr_from_bytes(data, offset) im, offset = read_IM_del_tile_arr_from_bytes(data, offset) om, offset = read_OM_del_tile_arr_from_bytes(data, offset) cpe, offset = read_CPE_del_tile_arr_from_bytes(data, offset) sb_del_rim, offset = read_SB_del_rim_arr_from_bytes(data, offset) edge, offset = read_Edge_del_arr_from_bytes(data, offset) io_sel, offset = read_IO_SEL_del_arr_from_bytes(data, offset) clkin, offset = read_CLKIN_del_arr_from_bytes(data, offset) glbout, offset = read_GLBOUT_del_arr_from_bytes(data, offset) pll_del, offset = read_PLL_del_arr_from_bytes(data, offset) fpga_ram_del_1, offset = read_TRAM_del_rec_from_bytes(data, offset) fpga_ram_del_2, offset = read_TRAM_del_rec_from_bytes(data, offset) fpga_ram_del_3, offset = read_TRAM_del_rec_from_bytes(data, offset) io_sel_coef, offset = read_IO_SEL_io_coef_from_bytes(data, offset) timing_delays, offset = ExtraTimingDelays.from_bytes(data, offset) return Tdel_all_rec(sb_del_tile_arr, im, om, cpe, sb_del_rim, edge, io_sel, clkin, glbout, pll_del, fpga_ram_del_1, fpga_ram_del_2, fpga_ram_del_3,io_sel_coef, timing_delays) def decompress_file(input_path, output_path): with open(input_path, 'rb') as f_in: compressed_data = f_in.read() try: decompressed_data = zlib.decompress(compressed_data) except zlib.error as e: print(f"Decompression failed: {e}") return all = Tdel_all_rec.from_bytes(decompressed_data) #print(all.GLBOUT_del_arr) with open(output_path, 'wb') as f_out: f_out.write(decompressed_data) # Example usage #decompress_file("cc_best_eco_dly.dly", "cc_best_eco_dly.bin") #decompress_file("cc_best_lpr_dly.dly", "cc_best_lpr_dly.bin") #decompress_file("cc_best_spd_dly.dly", "cc_best_spd_dly.bin") # #decompress_file("cc_typ_eco_dly.dly", "cc_typ_eco_dly.bin") #decompress_file("cc_typ_lpr_dly.dly", "cc_typ_lpr_dly.bin") #decompress_file("cc_typ_spd_dly.dly", "cc_typ_spd_dly.bin") # #decompress_file("cc_worst_eco_dly.dly", "cc_worst_eco_dly.bin") #decompress_file("cc_worst_lpr_dly.dly", "cc_worst_lpr_dly.bin") decompress_file("cc_worst_spd_dly.dly", "cc_worst_spd_dly.bin") prjpeppercorn-1.12/delay.sh000077500000000000000000000005031514752025000157620ustar00rootroot00000000000000#!/bin/bash set -e ARCHIVE="gatemate-timings-latest.tar.gz" rm -rf delay mkdir -p delay wget -O "$ARCHIVE" "https://colognechip.com/downloads/gatemate-timings-latest.tar.gz" tar --extract \ --file="$ARCHIVE" \ --wildcards \ --strip-components=1 \ --directory=delay \ 'gatemate-timings-latest/*.dly' prjpeppercorn-1.12/delay/000077500000000000000000000000001514752025000154255ustar00rootroot00000000000000prjpeppercorn-1.12/delay/cc_best_eco_dly.dly000066400000000000000000017643411514752025000212570ustar00rootroot00000000000000x̽weeyH5Ec4oL1vwFA@f`"bI 6^@AQTPXۻᆵs5ٜu~=z>Yw/׳$"v]G׮kѵѵzzu;]Fךѵgtѵ:dtYο=YwG7v*63]'FׇFE>gt}ytwt}dt}2]];1~?>6FoGߍ1~8Z~3b_FsFF׳G׋G׫^]5]FkZqPn]I/FmkfGFku|;;/מF|G䳬H\:?|ό9旣|GM3~?GMkh}]\ς,1?)ѵ6i^cui_%}?wtuz.=jtzy9]E%<.N"2^,|or*,zYkxcsO#r{zz_ܑ/_ueQxހGjs~~Kexzzzz~2>8uE V|d^c>F)mR!j>5~|f怤gbW_<Fק}\Y~uyu(]>ˢ2۳ *?WCqzϹI7 c,˗X+~މ{k xluW>itEL.߯ lwvE}x}_okv]qtW^{B;cY#]]" z}]/ 1S#id&y[^~);Z'ףشX&xXyO/d} 4I3τ-~T~YyIu(zPd}*_gQ]s7]]]]"kwi$:Ȟκ&dgtк25@zs'k;(>w sӋ7kG\zO,~rsf8]޹߇wYxЈ O (T}t=(CG?=uѽӱ/Ȱ_v ;r 㒼O/7=ɦu,|Y? 4sGό1oߑ8Њ>&_F'uFu?EVes %ϲ$o%GGܚ\KO묗F{|SDz,K1-|s̽&u=|f1GfE+&״ǧD[òЉݤM ߩ#9ѿO56k(nc] YlݫwFҟ[6Ew|NaEIK);1{t_(zQt G>6mBJNkvwujq˸Y'O%Yŧqȧr?1\F'GEl]+?xMa$ر6c)Cm<~;=U-?ۭ2e֔@IQ"a{nX!IG*ϷI{5UX3{衵Qr*_~lzC[|](9-L? 6F׫DbX%F;gݕ_.]_k߯ɯ uF ]7_|1C's?!?ߘk;8E|8MUyt=3R_ u{ }u}<lj'S^+~ϪI7+t/[臧v{:Io.ϔB~+'<ȁ|PҼdz|ʕ[E_=et^bt^~!ygSgB笉%7BRC~bw w}eY|=wܾdϮsY,ſI^6yF{g~El,$%EyCDYYkۏ8vw} 6FRO?C4-QRoMsL>%^y^e AGCkyUnѶU)ǃzΙRgJl2KᏒB70r[iɀrMQ?ү)vh(׬C;_y];z/3/R/M{ZehIzF͞NӾl:垣{^t*ںE9935 Q|/' Q|n2]~VޜϛJ{'@'77s|_:G%ЊO!ݸeM_ _q؁,WLe)h~.J-g 0f6I.CeT$%Y'ߋv>|FlՔ'>jcG׿gg?GDs|}}u_ܚ;Oߌ55:|!#QrkyqH9ϕQd;ZmtMr_rgGR>n_:vaxm-~7&%g@KNxWr(C_%hǼg^wxϼ459S6?X_~iQjtov\M~ųSg%PSo亖ɯ]Z3{vֵ׼ 6|~4{eGC^?2}V;~'F_^s>?ϋc,S_ŭŵ˸9ҟݢvD> O_qf^+u-\>^FfOMZc捖&×sɣǿ?>}o;uMNk}EzM3u-bcRWDK $ES{ Hj+bxj/4v'S93]\~kr]- Pψz&Cs7OhL#%\+M|(񞟾H^Qꦊq.J>k/<]tZ$?C6JOf^Ҭêh&c_\< /Uo7kcɿ F~%䜉{kN?%s3¢fO?<=¤o3 0d `ɂ3~zV[>ņs:Rf_睹k-a6Y$p G?~r~z\x\3 ϨQt4\cl Y23VY_kw'eNa&a}GkS0~}q\Aۨ;$Lχlˣfv֏5r_׾_Ūt礴\O5Xך?3Œ3=&#£ 1f4K,P'&u%ͿG8osux|atkxC_E?a/d#參@^Y`drx6@j\K/i_w7j#a5JutrG{Z ?A볜>g-{l'XMu|W#,OJz(=S!ycrTZxC2K,,l/ W'e~)eT:=gxvyGwW3wsYC<9u]񇅓,_F[Nº󴎥3t̊.qp젟|"5G(  |6׿D>+юdeo/h60i ƏMßH~D.wqr k5{}]tgz-Vג ~Ѻc-.2+q~p?9eY1h[_9m?rv;x/D_G9[D-)y!=Ckk^3=91J1AR| f{EaangghӦ9US}ώ?ɻ!Oq"1JNWwMhSJ>k?,ZhMP9;-Sw&_P ?w^t>w>~ԙ';Ңഀ$}k9k+#>w7G^cb͊$:0Ӵ1}^wݾs\r~E_(uJJ|OYӓvx(sruB6mXÚ}wLeoZJUӟf͟UdqN>{](pkm,û6{y_߭w r<9a<`7s`ǒCSv6}ϩNQ|h΅Xu1c~i繄zS߄Qu,ZF/2+<49+c)^躤M23(.Kľq96s.?{1^VFkRF_>y:-sM/ 3w71֛r^']m˽Roon/xm/f&c emϿSLljjQ|j(zʅ3+W5(V| +tӦ7w#%`ѡgF Z9B5k9]ϟRM]=l2yпl s ߣ.HWκ6P{P/0{3_Y&,d(yx^5&/pwɡ >rʥKL#]=}uZ"+u+gA'Fq>:mP}~AQۓ(8_=.PVe#~16u~ⱡ/Cś_6W2Z=Ic'~sG+ٹ08|6ܕWN~.:eEL bc"ҲeƞvX5{ߢy4{N=;/(uY-x~F&{/Yp<&}Հ/1(Iu0P)ϒ:xI_+;}wmmw=z}lq-.XS;ذn\4=dhcc?6_U=@y;5%wЦעSr뵤%Ql׹\~=kL8?Y;5mnF'Q[L0~66}=?U?"mj,ݨi_q'&ү_E>+u0ߐcy(^ WFu_+EnA˪ Ś]&C&3T$٥SJNGayD[,_+ܵ+']H7uZW>/w3޿:YQz|y ߷{:|g4r<,Sw> ͏g" _Sj/4L3ݘ<(=Iɮ1~?weі7|_'&KJ_Z_vFU/=#Gʟ(}D'/ eTzPOU}>}_kS]48K~_V-4{u/ۯL(؁N~ǹtugd_Jd33|Sfw`<muIT1|ky|z $LRl>Su~g_gߝ,3uEr6ZJۍku7^dokIu>Qz|rհQac풿Ro9g._y(_ՉK|4⯡9o>>\do6v|_59}^5?=WW2w`s?Df!"䮨"Ԍ>S\ߡwWa ϊY>Wߚkju^YkzeOR#\yuS]ņ ]pfvCDwgi #{黎;t5{bvR_]z^kq׏WߡsL}Ͼ'J.Z+ٯ_jݞpkFxߎK/=57j{\ޗ5c+%RG[~QNjI깵ֿVy=B_d1 %FPpdyiѯâ]g ^wwy* 6w&gu\BXiÚk=L__v]Us?/ѝ_hRs<9޿a ȫ| ge>{NZoP{^Y{'Ewevd _1i{d/y]frfLdq~cDaS۫ur-/]뫔wzg_{ u>>4ɔaa`q>Qj>_5~4BL QӰ_C)u6|ӿb 5\>=:im֧Q\szi;kmQg$գxhit q|N3:ͳ(ױ4w(S8#ʙe_h@j3 ~\u}QutFL>g?C4|_TZ\P[wp܇Z/vWsH_ϑOGr[Ϟ2 휀zo}h=b(X?l)X7Y7>q듢3ey=~N֒rG;ьP1K5kǁ)&{ۺF9x@ReQ?6-5kkPuÒ}/}}zq.U듬K׾/=?^w_Hs >*ea_kTu}FP=~靮rB_^tA>4(5<_\CMk5Z\tC^E""$\[q61s(']5M:w̥0ۡqIOY%G!kٻسya({ }_3vlFY#T#:{K'E^Y^9s1>@gor09R\ؾ!elژ{Vu"ga39ɡ y`%~esuv~9ؔsazS3:sB(AjnҨzE#|.5Qw`/]\wvw'}sog㳍nrLd9wA.sqn=T4Y^lFajX:\{מO=?>~".:or]G9sr&ob,w0~f|v#G\䇞lFt6Y\gYA~)gaS2R?yw>p[7  O9A;{B_r.~i~yoYr_Z1(vϿ~<,9A<ίw頡 Y]HR]\\n(: ?} E5OMQd9"iDHek{I^| G[~ݒg:3AM9?zY_>ILWz!O/{XE/}9?Cg}I'!.~g5?,|FtgD9 |t@o?rϢsi/r_F]`OLg=/v~" %sD;s6tu/sv{OI,g7 ~#U(G#,Y6@u#:o@b,1nQ(x >O;>?d=c\EFwsFGЊό-M]Ԕu)ӼBo^+A{;j9]3w>ׇ3vB/>#ψWйH$__=-6K~DZ\ſwO{|C_ ]d]/?bMzQ}mˣGr|=_qRhMlQkq:[J+lrA,},?S[[$´3@QlnQNg!xTP/[%LՎN?n)^?ZfFUPC˻>1ϻ== 6zam0x^ {(qb嚦}PF=ǫ9csnھ|frvF[ cϞr\*g]u^;s>ZsrOK@>ut$К]Lsky}w4xGn=}ϫ^D؟ Ws"FQ ߝ|Bf4(g6WuS׮Hш?},7K }_.w2ܭ*LZ1;g]k~o͞WauOS3_ wad6pN5z~\_Ԕz {76xD3=;1E{>oF^oOfiIHݏ"L9/=,;) > 9v|5uՑx6OxT6I9=)RrhW4vWM ]3g ä96.09^eŹVzkxA+e1I(ح1GVaχүc=s0ۇ<\_t?ko~Tku%[ [毉Iw,Pt绢1_1~:fz'ڣi/5~gQNQA ~Ba%Mc~fO%ݹ~.di_xoN3ihyg]gzȮ;+\+5v)ў7?a_ClWDO?߯L$a^oG+.l^?!I\kY:JL@~zZuCW+3bs+io (X?򥏌r~1҅F>ח~BOWW; ׮{Y-<,uk'cR3$?^#ן5{(ݹ,y^ex/11ذc_]Ai3wn?GWɵZi٬3#Z{? }(3ԅWi%6Zwؙ(u"Yo wk>2ɯ^[h;.r3Ɔ8Q:br8&yɿ_=]/2B"ĺ%wa}}'_ m7<+@pYf=&Zi+w \ß-}Y?Y[C*W3iC}{(tb4/CBϤS>bxj&iP]zZ{? <.˻l1+! ąFbva:](&vi=Uyכ|o{'4IޏvjdSȨC.|vn̾#5/zJ?p.{D9k.gb:yǿ'Y˲̒Տ&ճ%1R8»wV؟䝩ҋS9?RFd(JzigE?p6ks c:kͮtԜѝNoF/ _|_gߊLM`FAY0f}AqE3~':ɭw~]1D=sdbˤcg'ǘLk65ûO;fa>F >/&& V~|CxEX|܂y)fE7ͱ |hIYAqF\P<s3zMbM~7r}U_{aE{ ^f?XCqaQxFLW:ˣ Z139.ϒ;xF?6B*}/; ʿCޕPpi\`Y ߋF6>+Mt ?A}e)k3S61~Pzw*uZu.*>wGs2-< ]@zS혝qA?~YY+cpm|uѹyʋ_`yK\_eT#6=3ژ߉C1[m Qrdhˣˤuˎ/byZе=|WC\_&O<()巄~U)v Ff|;ſ1g^)/;2 PdiYAǏIŕ67nMȞq9?xϧc">}|'Ϣ]8m9#>=nr?% M ToJr Ingy_|T>f=6ҧ8W+ sяĈNl|4O.[^<2}ge^'uޗwzl⸓ǂ畻~ޅ[> 60!5x66~rgCQe_M+t)~0yKnǃY|}[7?>sh˲O>ašD#\GٽSN:c{=l=Jn=:?ݯ?M^#c|j^c"36 =0߉OngCu|<|:䚯Դ9~˯r{x Kҿw^s[ϕ^񵥏= 듖OONi{l ;坺W2콹^^TE?~=_! 5GY=?$ >:{Mwl (/ϿM{,(nwk{^Q/{"M{sfү\/σ<`wF! a5Jyo5XM<r=^%{*gދ矗F=~|Mү|υ9~b`=Nғ{7!M 8Ǡ\>0%QZp펋EzM^NwON?? GNM__b;wY?ܿY(9>$Vg?.k/Ó#dwyN堻>07 WJO>}|.9\ \ˢ~~+rss9!<_:.2r $IaW\B7Y_#lhcMy/L_#r$_{OFdy}1q-Qr#tw58>N㷨O^xKu* >K"shWӓēE`<ٚwF1rP=~qiI׷rɟ`wUR |som6W%t'q0=/ c9g:&59':rmV\}N1 h/q5&7F]辝'O~hwrW1>G<ү+~veH(_ 袯E9OHwib {}mb]ļWGDZmѓҝ>Sк$~/y]s?Ջ>[3v[ég?=O1~$^c _%|mN|lg_[ ~=J;Qr?gR[r%޿u|ƈ)Jn"=I^:z{.Cvml \;l b=ٕ_)oԞK~~FMgYŇnϭ9_?kH3I/6ΓbC,fjsC5< _{=^sZݳ,Jkދljo|Vlzza~\F$¿RtE~\|ߕSp\?'!3Y%f7GIõzPmk9wi&?ɏԔ>4J~V952g ^v=_h?> 7G^7]tqq)'t7w\g^%uߑܣ៨VJ%ʞ~RG~?JFF845yYЯw|*i~]95[W+u|rѾWoҌ"OIσm5yi9swK}Ӥ6wރb^ qON<36z[[G'︽k~jc; _~%r3U'RؓӰ_{ _(53ľmQ<?~yEɟlJY{|jrt5J}]Nk:~l#o?"gL-S*_{j5sY^h_;M<[_5)~f']=/]C뼵:(sQn}ϔF囜#M~,̞JI.)Џa3=箼+_{{c:鮽g{kC/SK<k_Oxio___rφ|Sޣ@-N=4u{]SM'K 茗G}eQERLa8'|PLt(>yy1._>Ӱ5yt+}~u, c>{O1뫟+S3ls2hQ/3 ]+sҿW<|c]Չjqqͯ~R~hW0JxswaZ;|W}M?},xw,hokl-N&|ԤR*^iҿ΁]GN#<~ϟD\ wHf<̾㽈w Ib ~=πDV>Qj쯟uY~W_o2uM2;G9wf@nԁ齺 f>u1g>圂Wdq3Ə?7uK`sa4>Ϡ qV5 ՔY6_G93q(?9`< ysIt*1E\_w]X@ 1'lf"C_K75yq(4=naq8 1ӠY_r a@ݽ$z9.ly 5\p_;惯ߘQnD03.1?{iwx\7,FѼM? "a<&mF_Eh6:yrޭ2씰sAg Ǒ_͒u7?r _=JuQ|}= ў=/R_g?O38\.x_ u~YVϕjDn')rEwuS4ǞEv2X{˸ĤzLlhOk__&bks[as?WgȪp_l}`E/OʻlPFBq|#썵Qpͯ1sgnM{[CT7B2GM$ KJfKyO?`_ؖ!n?4ӹm9y^ٲ?昙3wri)܄+] ǚwq)ksK>}nҟfIu޾fFOUD78~FdqrZk,4{c/so cvҏӼw>K`?IY!: %qxL̑<|&_'|89 `+<.! ${΁~=Ȱ׏S"~\|e}. 5SÝSx8=?L>-$5?yhww>_:E+G~mg-9~_́~h?i|mW5S=wnI;<˅rwn=>?X?Gq7}NܕW?ށJSp)e=.vGr5[_v\ÙePC ~ѣW>$}0}Qȿ9%yݚ1CGze(@}}1W>;^'uCwwߦ}~-Jg 7UMh+'{gޕ@j[J7+L9u5)].Np?呟W-ϒI]%Qp<ٕAя߾&J5U6}#􋨇csի>JCӃH> ݏ_uxYF$MR?bċ`8kգuiw9lf8;GYxW{ 8S 3VXo^dx(rpKTU1E"_w LMe_|3+?ĻQyCՇS4%v:ڸ?_WtݴҔ;h_!y_9w,0Κ] lY2K8wop}:)J_(x_!s"[Lk5L\N3SI<i}\V(X+]Sd(X(^?ZlYsel%5kGd篼~Xo7F)_ kvYʽ=:؞^[yC(H_o`9kdTN?0P|~dޟ }Y_ߘ ϯ䙺O>{̅{*r/<gqѮ?7{-Ls-[vc2W~cs eL|CfןڤϢ}_G\-~\I8}}sxκs.a(Edώq܋|_>b1r+V~##}ui_ Q$?759;=~G@P2T޷kۻ3/ly+l.5xrӘt}]jЮcߦIl_}ג(y-n;vx/Mf}|1\Nksֺ5^oxm7$ȉ%wRY/7FR\ 4ݳu_T@?r&Xkrߨ}&^u-^Vתκ kNa/(8gDsgU [<P 蟆0~mC9 v\?AƯs?׷7]}^gxPORE}_FsM$?/ϬwSbCYꬅ펯o^k筋EvL9z)yQۑ_|s=?vƿgtP3ywF#^ht;&|{8|d:癹S?x)y}nk6}+ЩWpD~>y}Sϯ:C_g)vF_"4{s2<Ŏ߄ 7c'GcOF%.j؇S[+Ӎ1ΊXSnr>k}i柇>Q;"cѯ=Fo)4W6t|ݢ"|)$J.(/lֵa#3OFj(g oL~=Q?N=1\QSa$w=/OQ| >V},ZbՕLFAy.y3@$gfwGyj`55aNϜ9n0,W4mr SDlrM>N0kGٺ}3|WG\|0=KTk@yÒOW|0~ύ2g=]a³`6r92to.{> 6O?1aF5 r'y#_;sKG=;s5yU޷LHG2;f8yn]O.rf5sׇ3y;7mpٯ]*( zj>ef;{iҋy__{ ^#Žx Lo n݅Y[oonWK5A&¿yه>ֵg^uwfߤ|  >Ƽ 0?)탚6ΉTHv|f3Ưk(9)rBC?<̎k.ўKņ9fej\3C;{zxGy'o|51$:C6qE/7PQb|ˣj^sSya w{S풿K~:n‰ZeyMv@.!}`gt_> no:0> kr'M4EH܂]Kv(>g0餓=WqQfd h^d=.}b9_?QA菣~bX^{!ILGcƿwڮhʹG+~aѯ=3"[}R(zІ 9 n}k~yOp7>;>CoDZ;juZ6gTklj]Px^Z]'+sK= W. fݖ̔͒gמ߱n[u~y˿޾{J 2 _ksX7S0yT9+h@9V'+աWoA~a^d675w~aj8= cs9v1xV3]f=遹OO̗W86ںѱpseۻ.|}A3ːexh$:L9 _\랕 !{}·w(^mOޗLS?9_!>G eE|0;`;/EI<+O^/8PqOW<<&YT=B66~=3p=OZȟ9Kws4Z;>OzgF:LJ>@|ԏD9Cq;?~t=5mr+:'`u(8/qtL/(??AL}{?i6BRA?'Kfm:W\M{D!T.hc̺mF;,5 k Wk5uYZ|ޯZ][Ѻ{[NהW$[~+|hd\4v$YCJg}(S)g2͈FmGļ_)96\l\A~ks/f$GIѯaʧEm.9konn4ճ',Ss(ʗlcr}M;}DM>?7`h8>[q(rWGckO_{>׵?{jfw3~#6*S>ZS17F"wfh_sׯ_ G[?\5(9Gk}D f<rLH9U/idž>9fxpϳ4 NQ`4XLxm }Wy'_{?FM~kvkҵf4i9E3G+e?@ǹVM9=xN)^N(ͫ*OʼnWj]ڑOg5Vўs|>rߡ;QCVM#ϪoMcvwy* .?|!Woqt~}Z?Zs|?iˢW)]bat; tfF'߲L_Rf:Ce(k^p_ _\oݛr9~k{5%7~ 1T@^ZznrўWy]'s;dSv+QܼzU8+M-NpU{)%G;f t,C>8%ItqC}9m_T L,|aeWdgt<>-QzRvLs =Џ;q{^eϘ )?ES[5geҴi 3཈$gF_<POv2<29Gy/?9Wg:{nw檤_2]5 J5x߮ݹw܁:&5yŹhN3`BoGG;|Py͸_3zZ _3vE!O?{]tkN>+y=5*b_w]LNldw9gOmԱkwmk.eVkqMM_%hrHMk<_>uM~eWDNs 5}O~K^*/\<|gO{𜕟]FR~6wh+j(y6&V"㟭6wzTQjd^?R6^Fn5߀Z%9ѝ@p{\UVݗۢcIl׏fKot& Dd]w>7]}2:cPn^]宰B}f;G-S(9s*x-뼚y4P_0שwGiЛyY~)}4M i {F͒ϩe_|م3O\]WT.;Ɔ=ZZ?亖޷ry?3y*ftM_=ŧFs-ί)Wؗ_ u~*{G)Bܥ -]4iz,鱀Gk.}''^EvCpeOtw0{W~/x}>-|VҬ/؇ˢ z$kSNGVϤek}>oXӯo|g3?>yuT?kIހ/}mx~u\ޔ]ϰ,&п_O27.D6B:[|ِ泽> ?.NϽF;f}ud[a4srqky===\廈_d&対bùB0^$y gZK{ߩ M_Mӣ! ֞zj_}w|6f|}]C7N^Mfin͏J-1[ꃀnqC}#Jw䄾YBl2CcLϏH\6o~A5;:S6%ZE<y^MW>u^C,ϩ;oEa6E,2 Q)7woJļˇJl,[~KM{OP ώ9SRS?{豼0~m: Kf?UM +ϞV_u ?-Cvn7}ل}_TwBg(^^><}Nǿ,t,d@qosOE -%pU8&b3K3QzS ts95G?yȡ&y-I~R!*z+,GG{SiXemPsCݳCѥ7D3nkiȩt'Uy|K_<:CҟT>hǃݪ|}fg]5:*_'p̥mazzʭs_=lSnz&E~߯:Y⣻uk( J ׀^\ߡ4Ǐ~:c\{&=;99ggxhc/ϤO%Ǯϟ;3W OrFӢsy%ŵ8seV}91ʼ)}_▷t_?W Ѯ_Dq'1Qp,@r(+8|?TGG]}fDZW{.mw 0:]S;~zO(vVt5値]+w(P1{w9<"O=]%6p9syB];_27"N8E~ttkҫG%)Po>^'h!Jzrѯhm*c3G䚙f~Α˵˯|]uͯ^{wmsz?1}_w?^=8hc)O˯Uy݃M}@=~^=o(Fg}n(i/rgOq׋=jߚykWΌB/|i\$JѨ9d}wI< o2ֵ֬M "1@ ʙkYu1yC/pgq>}fDg<=00 <~-:8BfekEWE9@ɚ\䢦~.~r}# _Au4 gьf(͟o,Cw:7,Ԍ0s֍i) S ˬ|;ާ"9.Oֿqxg]7}Wòκ[c{?͜|.Lk5/:{)!O:ۺk$tC' C>kh>A<$zgKT;|4 ^0Ǔ~A84^>wfØSbnPå t n?a~6N kr|fJ_5sF ߩ:׏}dϺ^,۳& n/kiOS߭K"EC3䓛wW,-3wOآ)78J.Qf],e4(r%Ek.ܔ%.>W}ףF"#²H_q {z_>=9:NT$ n36q~c}SvGaY~޻kY}j5b|H5 ?G>?ypeE97Gfѝ룜9ޣ)<&5cXkگn_)QB|) -?kgL03νq4Km=u^~|'LZ|4ie/#̊I5Q| d?BŸ٦i_ ]TF56 vP|6a \k&?c{􀼃mZֵ+^l9_־(}v\ب߭y#䘺|wCc < Vώ_ęojt-]/];5_~;cG_)_ݺi,j P}j}l>p[¡OkULz`Sns?ggu(}>WG?ZfGvֵ8W_v[3"_JO^j| ,1WG 왇6m"||d5}<zP>ƧppIqƥn g03+b7S;-qBLkՓҟ:K}8 6%ƳP~lGߓgztS~gi%3r3(6Ҧ]!muIeę/Yܚ噳~K kן/F -dEY)EkG(~1>+ڎ2Cf9{'#,0hc֎? r ?Þ#>3ӶiJ\e}#;,赢@އוV~3}.T݇I~WgXЌ7Z?dT<ֵү R^;+ oS۫x'nb&E\"ϔIga|rvJR]gQgOz}Zذ GcM]PS-\C!?u%Щo355QWU~iW2|?Q뤊KICП)eH;@ؓM?ЦmnBOij5/,{' ˪gN;'kG5_g7q29SPe+М懳Q?ٵ#VD۬碮o1%4t>| 32 E >n@w*3d2WlpW.0vǞj2Οg7m.t x.喹^}RS\)ֿh;;#ĽWOБk\C~?~)w AC.VZ*+Tp {+3V#YÒ}GWיg?G65w~eP|l#' |f_+?Je{0_+<| sX$k3hמ}.yMyAW/sV]z :͟c _~Lu_mm_z!gβpE~M\`ſk8k/fK>ʻ5f>_βVڲQw_sUE3l0}̟v6$+P {0957>ҨW Ű\R=W ;A|2y{tᏵ%X@?z?ٕ~~α;31ו~,?m-b5cH??yѨ韰vyB3ys_3fS2_OX?thwW05j K,qsY3ԹBO k_.p9޿0g˼C?9\@b9\5=W8Ӯ̫.}5F?{<'<3c18j3{\ev%ЄAV?iYSѵ{rkԐ>wO ĵcM1_B!(v_TyI'm,.8WuU6ǔ7NZh?ƌZ 觜2;Շ}W~HWB_Zs#8a8ϐI¨ek>*Xoh^לHry_>~3O撎yuѯ8'9bظ=A3|'AeGY\<(^V#]k?uw'ZYoFL0}WYs)bgn-uF H1x-xЯsCV\QӟŭY4v)Y=WguͺY:3{lYj k`zO@J?hOvE GZQ3nk͗_McC?ƃ kWƑjgwݵ_Aut}hPw_M?< Ky]ߨӶ^ay'VyVBAƵ/eg~YW1olj֟yÅ79˃@BogJU8k=n+~}sHBǍ~͙+ΧL{ fj7:nmSMƼd0sW}_uP$oWΞ:~N\ -{闌!sJXQ9̷;57>b\Vڿudo:Tj1éy =v1_jbfcވK%kJ*)6+ĸ3x[z<Ō#Y0C̣f10p?Zr{:{ЍA`vy!_wm NJcO~"v]]?יMftDnA9BV^Ӷb^ךԵn|/13V4/D7O c6 rsݦf6;+Jd}}m8AGYSb,|}rmF~*+ue?sG sx-08Ks{כs0ZCYlL/t!&ʯ_ϟr ,wbb٠|Â)R[@@\ YզBC]&?HR,{A8#}\öANـVg`o\ Y|Fo+0k2Yd.hga~i%fbA#wL F'`+rs4b}1Ig@] k\}s5Xd  kR{˅ ;ָs/v\wޥE^b٧`<de/\?lR?ϸOw 쨷?үyi,Pb(\cCv4|۬8ߋWoSrΚbsepfBzQa3.I2 ;v1|4Y>߁ 6|`f;qgӝ:C{~17?v >&YM__?NMz!a1%{ٟvJadqgo-|})7S3|W A-VM_炙Z~pA;EX;e4xzY lW;96ɶu?:ZkLQlZ,k{ ;{}ockt%{/(ү~|S.̓З&V h_TQIH)V3oa[fSs=П_AW"wx wM+_YZ 9[~4Nh&nу>39FE6z ]< L,m!{j3Y{G%˃iEיfy,Ϸ?rS|_Wݟ{F-Ϸ?S6!ؕ~"ÞWX/})@0BݬSmJ؝G۫)'Cп6x.~×F[= K;fRlЯs޽^I4C]% /ne}rLZey,>IV?ꚿl;zwW_2>5תZ?y@!=:N  Y=_03<^=ֲ<5.uN36 qN;xwN;:u7CwEH9-;2?2f$46twg/:787/]@?_+P㝶6Yz`]G5$s-VVq/:~^)4}#>~N9M`ޒx_e=_ό|}Eɞ56YFmqSm[WsdSdzMs3F.x3!LCA^9d>^<w|~Ey'߬Ja^r&_YL8sx@lj FÁd5ZgKztaϕCo[K9[,@'s?le$߳!]GX°Գy~Փ+gWo=gs|-WZl7~ߵgR{u.O+k'~]g3e^}5V%FM9#[NQӟlPvx dDa]csYiaԖi{ѯ<97t4+3Xp:<1=_mK6|V)>B~)5OfO_odg9OwҚB9G]: z Eq?y~ke/Ѩ_&4/ `/>_ߧ/ 9U_4d<39 #BJH<}uVf:_}~_n]$e/\e +q_^C?iB^`!{ŷX)W?,#FpuK\U&sfm#'z2+{G!+3_oj#4_ڧu~e]wԙ}͟\ɨ韰xxSQ&+bbtSԖbdu-]+No:+q4Wwf+gN^ھBb K,U'_=Uvb.Vʵ,T?j[g#A'kv5.J_oU+Iq`̻~>æ_tHLi2.).>䗵^/dt)?Ldv6[grVUz=V+}K2Oߩωp4lϨ9oY򋬽w_+VYp5o+/e6; 9Q;H2xS}\k<:A M}x;~QWU_:aWgU14ge>9,!:/F>?+3j39M{<Gy|t`zu Bgޱkǐ~7h!Ϻk:LYb"S~uOt]pRk,^Y?Nf?{ϵϜWJ̱mJ)'><*fgfk3ڦўAo?2ISl}G?^6(,Yo`1Ùw2 7;t3wH<9R-fO+_y0})Β70OuO,bDg^ U, *pb+~CC,rr\#Y`]cc3raM܅~2G2iĢ[ξmv[˱k%B3e1?闪,sgxvŌ$)"`3Ś5 `YbNJq6v99;G؇xUl_}WS_6ϞE:ӟu\ߝ7gy~);5x}{ [mٔ4j$Y/M-pS'MSW܎=M3uUyŜBV–#>y{y5Х8oB35Fc-p?`,9Gw[9șeE9۔s;smKw ϤI\%V_hYU׹uo">m)t9~s!,t~v&0ү6Ɖ \AUbW@я,8XnbB(s˘?g߃bfϊEÙKO[`\g1+s ~!Y x!aBĒP-|M-& ΀ڠz ;;f ? ׎rտl3|JSb\( }N?"_珴O)!΁|[:_кE8X܀ϰ?hy3k=|E/sg _tv5g3>Bfu=ZZs\3cU P/;F? ة)߈ J?giYPS*[{4~g|5h=R^ {2ݕ9wi7!4Ul$hLjһ,w{ky]A~?DY%h%CVMe839՜~*G+ kX8_3sxͿqN}yo?#Wu_/?n v/} W2v1.7/RMϼ&p[!,zg(9|gɦǿ;q6N=gxC|9GcX`__}"}ogA3r5#Ņ_j75H}=i[?ge+fуZ(tQ\ eX>뜦+v_O{M]>o,?c<9[b+~oJ a=1G€YclG,h̨,ۊ3vw̯g: I?qsW,A=?i~uRgUi&YkS%y ? א[gCB2TJ_(q\!SG_U,/5tVMv~5}ge~|g0u/G ̥o~Ë<{{6_O[tFx߲Y5 fn+?r)nyfל*Gmtfx]?l=V 9 9_/}9lxI,Y ++*zi'ȿ2OT6ڔE<<O@Ӛ~dQso;@~gLsA@;(*ޡop|+kװŬS~/3/؅;vw枱:/_.;ּܠݶ9l~0CWá2qkxZ`@!CF۽{=L0˼}~>0ە~6_M 9Y {:f7HJ3>~w?B=L3X~bG-\dծ)Ώ1z} 7;c0?CgiWayϦڐ[{>JeG+Uga:oshgj\L3?^b/_ԡ ^gy{i{IxgW:< ʜٓaWٻz$;]"gĬ gޯ2=w^+Nm9A5;l?3>5N y^ϕ,~W~T()=OWVJvO~ү)',lƿx3|bw[X2LNUdoʻ-&-A읹u^_ckߕ~9o_ґ~ya4_WSc+f~2?ҌasO,Ofqt?\'i߮kmNA/EGƍ~?1Ux+,rF?uj &?jQ\"Ŝdv8m/Y9;$/k.q/qz~_ͫh}#~:3E9f\s yBV?Y"n$|]ōWZUV>R]ӆuuM_ƵK,б7#"؛5u.^Qi9_K?q W_'Z?Zfas'lGi**.%֛5:QC^/igo7JlQWs]`iǍ~"daүsjihwck;KYJ+_e,[}6=?BM8~:}_s1]C3ٜ>?f ~ ӗZĹoYmg_WZsGgSkPKJ_bXk/1'gǍ-0ÙZ*&֨Iky`}osz6w]_;C;}ϳ!쁞9D+]5?ktJ1{\~KL>+ΌG+YًX|ϙnĸO˜_/ryrՏ&ljkՠ9߶sTq~ {>}? >c_n=>ULVJ?ɹV l{)1g9ڇv<'QkcD'33s*"}_ۯ~_gK),c,9œ>Dܪ k?\g dlodXY|cYY:_qcf_;J,b:g??3E sE-_,m_§F m:TouVy }f+j+ZPW=n+(ӺC~~EJb#?ӗ׻(I(4>֎O?juaYbҵ6u~}|r/IQW%vw/)w5`#w^މ} }Yo ,tQ}wGM[=)vmǝAdooH)>'36E=8{l _ tL}{$As\n$A|Gk⾦[Ĝŝ睭XMOvʤwhJ=ls婲-w1i%Nlw]*,޿5u^ߦx꛾?A!+~IVދxk'e7x7\MϝFmqwmq/l owZ;=ۮ\pBgП_wz￶'z 獟 \_k޲'pEN62b38x FBkןH*+k1S@ _+6Ka|g;w4ݼlw۔+_s&+9S?Nuf X[s..?^WKTMN?l]w¶Angy~{ hטs=_tX$l}~kmvCusjfy,L,⨓9{FODla{ﲸ' >o*>m.ﲸ/=|3\'&g T {|OLE۹D!QkwpjJO@+|!SV}j9ջ6MiOU^cIq2=–靤fo,:Ç33Ϭ;'qQ>oqW4xx ] A+My 6uou9\lk [̘|:)[0}t6>hHY^П_n} rI'CwR'm{vp_9:3%/ha{xg"uOeé6Hcajֺ-*} Sc6;H~^󯵼#,jsyz/sY]c/?ƙ@5g~SwAQӝ#-lgZ̴ '(q0x_(ӳ2.Op;? w?ca7Je D }iGHf^w m]ğ A?gK3ř3EyN3 -,_cSϣU2~XRL~ik<ɮr?ϯ~׎hֹ`1of7X_|{sk!2?+̿:V{?Y켂\b۝?4O/xvg~6{y ͡+.750@2zh}].lWl(_{4LgС_Eoo?^5Ys2/mK7b+\,55H۾$ڿřݬ~~I>{~א_t%dχ-_ B}K]ך)urXhJʬֿ> jS:/xh'g)J4 7.h ]/xln}s Meү8{̟0ROa(˰W~&ߟ9[ĔnЕ~y/z1C ,}i՜]5#Ȁ~>3uAg?̝]`?|۝oe1&qio)jy68]6P-Q2a_bhMUb xq]W}OOvEi~;h+ٟ/Wos3 s|nac!-e9x?~W~+iKlyf1AɜYo3syPJ}]tͦ|AK<Zy?IrY8OӗB l)2Du*6 o!h,t,oWKsm[<ۻ@ M/6GY4՗?GyXG"?=}x: L׫/8__߲n^Vb?}߱ ~"Y` 24t~PtC畲:ow!T 'pWOPfu.FǍE~Zq\je.ac2K>}9}?ʹ$3| ] е>:!ï{yXଂ,5~ͨ+:p2\6qu8gǿ{^gq5#g/9@:A+whSүo* Kke#>_P~rfO!d~-ל42 ~8_m֤9{3{ ᬮٮ8 -5cV;s7vs*jCN\|{fO~䚯e֚- tV?kq 7cr\6I5m=ZkR3YgKϨ.e{V_ߧٕ~kLZ6s~1HC7X{̀~qѯTҾ/گ_Ѽn&/= Y:k-v|ZqZk_}?ЯOtMgƍ~[4oYaF?k:x.<s[Ś:;NԖZd75|+X8ObpTz3~ў+ Gneg2=1j3Щ5#͟iY\\XCcc}q15Ye8ҪO>M:?҆?ōzw?w_K{hY7UB]GANCNk6rʿ}r4ÕZ]֊YrGJ{a~]ל6cHگZFAr=ng si!j0'S!q {S}YgTD_tH[E/УHw[yΫrՕ~ 9>ߺүb.:ɿG_/Ϊ=Z91aa5evw3VYa6ſ}_֕y\bh6c>_hÝS ck ڳwȿ?ȢNP^cqeu6@c-z;]]-Qo Y#vz?nSsQÌ fbk5oP~]gv~Lc~A8{9! $,i7_Jb9xsvYڟYj(!gYcӬet_tjJlRFf,k?koZ>F2y3,גj(E. f0C)^cS51i)cܘ g~+w~RJ__gQU//95Ԝ&_i8~P<k$ h ~-_"L]b9}kX =SJt]f_vl)ÿ^PlIG). sAAZY^51OVTkX Žǩ,7FAÎZŴЮO^-gqEt>g۔r["  ?8xגtP C{,V3ɞ3uwTF_mi~X<*>O;xw1%h? ׌wӴ_)Y{j9̩io؍9t^O΋]2B?l l?g4wE?ϣ:g_ͼnZs$ g@r>5VX_;]86WyWC_d}ѣ58'GVbA~_U}8ZotKg;IeX C_5> m}ΗYgYkƐ~旻ҟՕO6Xů#N嗲9A]Xf.GgI _yAwc~+X˘V3A?_j3+̌u qM7\cNt `k;t&23:G="U,t$k?]g a:+qV1ԓs_io;~Ս.tr׆KYə7lN0>L{ZcO[cs 1]WL^b%sǏ!QOX}e}v<댪sH{wV V{t8$z c ]R9Os^:OsӼD_2~0ޅ V[?+|_k,sncHjyuVˣ5NƳ5~Z- {Su:ƾz O;ނQ??o35"+_O7UYLZ&ߞY(ky-GgsY>*w ;| u:eJWF쟁jΧOv?`/J?#SXm> ~o u%Vԕh_g=3\l߬M}o<#_ҿB׫j}Ǎ!YMZܙ5k}ſ]_?o3wtS󴣦_qbOӁwB>߇a%^pbgZWʾx#ym}9YVJ,V75:G/iaEntE߳36@ni[ϬֺAgCg7V} J[2+d:u _e/o ,tɋls9fMg3mL_xu:C|78N T\QW~͙ Y+ZҜs?CYZ<+-~ũSl-t\pŌ{tQgK:ʟU]&e"5Veh-Fy8^zϣ3y| >3™me}կ ΗL ]bU|8u?yb#f3t̿{r!Μ*. sA>s T|-jgҹ`nW~>Wk-2ryN΋MM=i%ހ51#_4%.4^0{/Gm| 9T,;%)^e_t)S1[R׬gWy+u6?BO?gNRW(/+/,>^| o(."ΉQ쿝)A2ڗ% |sw?v9Ŭbv=i?韬ocfF7Y`w/Ia_1[}'&2Bl,:XX5y|Fzg{J1=q3(ѕ7͟cfj~ƙd Q26ZQ-0gYejh]?Sxz@}C-b kE_'-f9{xBCoւ'Reו~:};❯KԆmP=q9N.Y_Ywx祸cԣ^cY=޹XbS,GW^YAMZmVb>nSi~iȹEI:L>sNt}uF(3ۋP̖k-lU;Ll@_Е~PCѿfϵ%3Qj8Sኟ7N7@: b߃l?C lg9i[>w,^x^?*wQ3hyGVA}m43oT}s^ό gπ5KF4 {  ?3<ڗ;/^.2wrQm^`QO3? 3w1'<tiG!gl SYy}{jZjcؔi1ӕZO9g܈wڭ6>~gڪ `gAʬ s53b/+rď[s\ln|s,vq{ÆE [u17Z`8۪KO#\i%b]1VʲkżR;j:]gJVZk./Sg_K9`_3?-Iqvًѯ/1B&vj ,/bԁf7g9Ğ|^}3 N8h.n9X9-0 ;/ w1g>bٓw?by85x;zg5w{':I YU*~2k֠sx3ڦOfk_bֳ][?wKe,2'Yg|4Tq3g*+gdC6)B()gKya7Ts٧Lg 14g~+:'=W~ѯ[fN UkF?y|>˭7gtZ=~ nߧ|;*8]A]/M4Z'fW'Gn/]iAgĸ?γdB~?P\ŭpu|Y_h't;S[֌7t`fܵZ3^!9}>GZ`Ҩ_i gUs,M߿xd`9'™w[WQ0}o6g|ކk_o%ojk]k>_+Z/gϟ9G +̝5JIj_{c߬}w5eNzMjY;cF^?:=;F[7 ˊاJet|'|W'-0'Yo++q_qS2@_~e|F+6:'/yӳPƢX@:4JJu /zJ?>献w{FM2l:?Wj~XGZ;MXfqnQg3dsḀh NaOߎ2V'jW}ү9y /Y?Yu0߅z-GWg|E].ONYh?Ǯ/ȟh/ڧ:n3Fg.?wQ_HhJ`6XɿuMM϶NU'?̟оVC&ס3HS@/:fͦG9@9n>7>Ӏ~.rѯ_ -|} EO=鉋 ϠK3C-uY>YYkU\fI0pFr3l|kjEET/>o1Gs^ڮ lpІjm<  g74 6s>ں GȰj/nF"d"S!+} ~ Fg Q1ߖ:_͵ϜgBl1]Y0F9c3any.3{δg/ƾr8 m~u~ع)1sQ+@}AS<[ARW 7j[+1+ӟGXM^O=$/gw^hS6z畇p>[Wtx ldGH9ġݔ_`|˅WO9߿F \WF?d)ܭX]:[A4* g7wrZ]-]v_Lљ2yR篱׼'N6'vxu}LYb_ܔڞrf8+gi[ȭ~lRm'-x>~Õ3 O ;| lݾgw3p> 3ؕEq:}_w*?m:!xlޔ4τ~gp}o;q`S7s:)5qBWK}6bJ=U]!1躇6W?;:XXc.Np9m1/~3k,|7=d?oO)2}#_{=׺}bA>"<?џc: #cwyUYVY/3M{kR+ku9SYO1ˍ g+&~ŠV .Vev3Ԛ%K{Ns.'dM#A/+Ẉ!w;rK ƿ+s8RС]9S-_Rd|a7ZCVmJ\bׯ~SfD+sڣE쓍B#vrpXġq:G{|*f_ux.M}k=җfyfY$K揲873lk$k0[>h̫[䢿g{M,%^M~YW|9G9~`=`|~RYZ]Wgl)9!2K/`xdd?vGb5V;]NN/W+5OO 5,λ2e7?guA!<Qͽ Z?U,_?eVE]_W:g{ g>j%~ 8BOj9e@-ר2O,<@Ĝ=Nuz!gĮo)s]bwG!Wl%q"JeޛFKݍZ` SvsaC AIkϩ[V[''kUt{dmoZ~Qu&~R m2y- НX߭WWI?}]羂F_Jywto_}~VWmCOoZ=z/X(`gQ˃ gͽxCӕ~e,I覼'H o_ϨVWZԱ< ʼ>#?V])V,Wg3ٹYh?]:ЍmiXhM| ^Zk"y)~bwh_q60Ng g-^ 6e`CЫ)Go6+ܕ5V7~so7;]{%ں)bU}4:~30u< ){?sd;K+?†¶A;<M3CD[ ;?zgǼj>Ƴg֞gWkڍW~JV[/1  Y/ y va{CNWNw]geƹ sTEizˮr}SC s&+ĕbGĴsGu+?a<~56bƿy~b-Yyt.gۻMF \чos#z4 ۪I k lj͙[cO9?x< kez$p|;?`yD`蟴3d},{4'ilhfO.dWc^3an!nM:\@/g-4Og>1> ;/>{ӆymCX>ƢN,F4M2̟n*M]?\[?,8ӚLU\V }t2 ў%=_`{/5B~KFw 6ɏj_4ܕ~SS3?[b^um/cM\v!Oob Ԣ瓴/@a C.9ew='@Gl7M`u%1e{{. NF r~7G4e1MkOtNぬ+8ji&U՚+KĢw8u;J`1~~W3o~&rWc|Ufiq5g!?4.\;,rͬMo}b3/M5a싳Yog{1Y3G[71/8Y <+~|;vk,Ir;F]?h^ZO\ʦ3,a]e]XGY|):/o(n43fh>^SĿ7^o/OIS+l:9N3o!րr΂}>[Y@mʸ#MsEz)_h¬r~,t^~G{{·['do|[Kx.[?o O\xFkςQ_Z3_Wk1½a-YO??l ΂:o/[{?[|l6 tWC>C!ڦ7I%ƶ#6qˆZ+8{3IХC'ەGZ;ͥwgX˃R?;B6O_GftMyp ZҰ&Əyu!#% #E`A/]WgY[ZgwuN^᛬O@?:آ=eXi.+ﰘ~ޢ?{}͝;:6Z77YL~3@_h4+{Cƺ| U̎^Y)55domLjmKJ'w>/oa)] mdU>͜Or_MqɈ0f\FϵN^gϕb&rOmJ+?nуcgџuUgEWV+Ң{𗵏fV1ji; g8b.Đ{- oה?^wj'̉AJl̯ğ.O|E>d#i?2}5?z y;w/{ _?F)Tl([\uPk+\k+Qo]-@?}`/>ޢGmwIʳ`YWZ5;{NZ;53Po?Sgo};${ֵQ:˓ΌG׌Uƨ+|9[lq7HFh:7t3)2ʰbFMBj7EsTߧ}H/pePד.WUkVOЗ+eW\c2UUzү#ļ)RF?+y,C9~2W72WZPF/R3{EܫkּϮ֙gwZy-_KYQW5<{@k3;v7ӢOE7nךb]4+1 FM= ž",Bկ!_xkF֯kY]%:;3 H9^ge֖F]'^տ2/:nk=&무_:ew]坾5WRyZru~6{^Sw~LB9ҢB?gc^B}l,̟3Gؕ~91!δҗ5fZN)2a rjM?ZZ=5^=g)Kw_}(g[^߆Yռ_@:?5I*3g/{YLs2stzOYg~ʺJ}WOu`ؗz י_E_8}e.#MТWwE4+e'_ube̢wFcKNG]Xλ_m-^e6n"3s@ 3n5bsa٧4jy<3&/ArV'3%-ot;aR~1Ш+칺"s79?>|)wGY?9w`|=Я}/+փcN1slg[U ?vEߪ >f. =b/6_mA\f{k`pfds1י/ҿآn<:@;+ H:װbοm.x禼3O,bxkm׍_ 1{Ͽk<f5cJ-|?&_෭[U qA Eq4c6^Q!m/7:זOf}اg~u '\+8s-|e]%9F/{1>wjJ ^c~+=o%ޤks^;Vǂ<ę`.^!vSL Aÿ1iq} ɐcx6"ώs7ws|שwmN9Qu~h!CVS?Wt%7}fX_ ?6YE?/GmΜ^{ޟB\rv\N5984M;ԯ#-h ؗˬ)N)%&t1[7\00/]gG=5$S/~eAlhg6.8S-Ԍ}?ľ0zJ'f I;!gzKc7,3Zgr}?XryNrN|Di %1? ;`l C.W+anKc3Σ+Sit^U!93~3Mwam~> a_k{ieA+۬l+Wqqg‡xZ(4A2+u }T|prq}rn1.,}yeyもn[9jGBQ R@YHBB6%ԥim;v.Ak]QGOA[Fkt~}y{9|yrΗ~ޗQ]yם23 z87 B3W M[ b(0C!ȥe~eq3#:j:szO;լ\g%{5,zyy'.M`=#|sFb Ȣu]KR մE-r{,Z'y-d]%'~j%N{܆Naey)gCn+f:gjL!sBNδ'_*6jQ . ?2{D{4qXW5N79Y^:l͐{M`=eXys_j&y53 ]`, _ &BcT~vs&[/j?wqE_W{=5=Ky e{zޖP3YVY@NJg1OԜ?CgVm.3AMܴv4n~-g{ s/|շUkU4e `=W(K{@?t(wn[_<?ȟ+OsS1t/cEܠW_ߓ]+ e0/_YY)~`+fuib^QYWч,묌itmV?o?ϥlAg  &0r5/_]gm=rZ,ϭ mv΁~gqtc?kͬ?r9xOz {9/ۿJBgq2?g~S[~:8<ρ&L3.Gk? U,JՈ!w {iy'~+1h? 5b|g-ϐ?} ;ҿ8W\?%f9=\໐˽3>E|Xi=0}bSxZMՙ;TgUNmh]#1{"Cw*~ޫޕsge.L+Ϭ]Av]':g:K9zco&g~m  ]@lxkgu|ǺJЏg3߷[-4R\&XwVk󓺗9+m潄16G¶}X=asܘEם=T{zկer)G?^_<J?su_a' ۆޗڟOYX͌3@XOa@_tWgGfx`7ʆ 4^,o3̟sGԕ=} ' sYy:O;m-/OaޅzFi"5;S/}ss6tgD3\6A~ù\ءqϟ/ς~눿ʙC?ޕm7'ؕ~:"PO}6:|h_qp Gygu+=gZׯm~:7nw? Ĵd%ѯ;G:?/@<.+6ßk?˽*UL]^W3L{ъx+s``Ӈv_sCYp&9I]~ʹI`dqVM *oKC_?#^?L?W7;{3{FWVgq\_Ϟ_zVl8J\G,̶ָ3G;U}kO;_}/@k= u.1W+]k9Y)Fr܆I_OI1~Sү *cqmMkӺ_1]/u;.W?l3>ע:n5e~:V3qE2)kY8+y~K ߸yͼW/k7hCWZX?]?a`׍oϞζ_eLO9ouCuȊqs+Ywi1czߕ6Z9wˤ+;/u?3sq?eqנyk=e=YZ2lp`\G5[ e}$\#_Jfbf@glg:+׌΅~_u.zOgc<`lΌ:kߊ=g0Z{j3͹k7߆r,HK& tE#{6Ko߱:/tAuAgϨg9Z|eqg)Ž\|M6W`9[y'S}nKmN_Ⱦf}aL;ݿϩqp6特s!E32ޡ?F~ǜALqvw=B#ޥ.e,EqtHkt7gTWѳXfs̾Z&`g9Jkʘ?t2]vi%fd_wcbWpo:L~b>919:o~va]nrTwirYb?)17_Ng5.ҹbo@?n9 l) :qDR5ɇwO&g2Iq2v׸wkX5Xx=U\7YPN.řQyq{Šő?^R3?wzw_eqbWd}\6`ovbߎ {7;,8-iJ|5n>c6g/-.#{Ӈ 7xU]v3Cx|꽮k#Q"b=lN$B>@/-vtʹ,z>!t*~q /@:oPvn&0dl/{{+~]kMuVMY^<Sfo(v,Bqjs]q*ن^@f:Nb'<zAϺpϴqg'k+ Pp)o_lqb ,ł3f"fn'~ ~zySb*i?jvENᝪmGO_[yb?ɟST+56_஦LK;|׸9}?:Gy q [ \!y'X`i*~z.RO3{,oU{zYS=suF|aޫOP!+9{̃g@:MNN@^!}BgJNqG(|Wʞ;7Z`l—AiCAl_͟q5 ,Ho;f5O|psnqXa ]kQO!&C5~>ig-~o›*_s6ϚVb!*?|g]&v"Q(.}w9OE?sNrD {PV uuVIߊ"]"ų͢Nt|t?+;Xw3ᶴw9}.H3, Vi1V֩XsBǰ7'S֩7Y*]V/gyyN֪wY`^ovQe^ZϞ61s>Yg\5V[ڶywGn_fKSyAU:bh[` kFxˬ~ cc{WC7ww5}?!ng:ЕNƫzߨY?k%zbwh7GLh4fŘj&jBgY۵O~z3%1AXF~oiW{=tyY؍@e@[em:i}j`y✳skZ{V4CYc~wWj+u=/˧u!>vX_siѽ>*KWX~r_A㹲ꣵFOGi[] 9lknЫuOWxЌYOX{hyyN(q?ß 3 _c御.=kMƁiz^\Z߬_|fo}dgç9qRcv??r,R]Dr/RgM7%gp׾phB{:۩vq2xNVe5q)er+cN(g3=@?5䧍ɠ_cq_rWm~ʽ)謹Y]K|Z[ sA}OnuVwURc_וZk+l\ g75Y;f+_ofx{NH}߁.a M{yՇE?p%g8^7߮׺L۹ůS_*K:;M?i9N] :lPu=øGo,Ü$go޲ʢ6ngg/[󲞵9;J}U—n߶dD~Ÿj>,x;NJj̝Ss&?縼gϟvB+44+uV2yEݫ4kE̷9gsfuB[84~z,KGN'觍RuA3Xkn{2e|d|X{|o eGn\/i6'yEXkTg-՚0ktr':?~Au/i{џ_gsd^FcWU}1/=Яzu'}߷Μoy-ܘA| /5CM.3 Y:fh_Йg+Wū%Q9k-_}o>fu-nyf23{`ſcnX'wO7Y6+{F(;#:e9,DQ71{pgp.<Ōwf}s W98\xLí#2֫ʚ)ߍmVM,s kYyYE?3)/adeoO=mu]Zuj],jY+/(kuX.ێߕm{ >TԽz/[tU`Go-/WV[21\`Zw 'sܧ N; {Gϰןџ#U;U=3) \S w-`N>orq[f#s +Оw{żaKAbaG[=N ~'|PR@G?9jƹISѾJ,;woC`?<ëlS 9g bmĂ}<vĈp?tj~eo3 'X麿I] ^_=]E~tK]]`%~bQ7uW]]l~2+eyj}&5iHWmWgKF]7:_PoR;G)r{mw-d2qd@c!?o]=8"Zw4@9b[V,^ O;`\!?Ivw9_hΰβ؆S=mcG &?5~n2aӧ?/+֣gX#^笮x3ט[B/L]"!|2V"?,ѯ?LbCuyrD>S{Y :Ö2]z\K=k/_S֤}"&Y_V;1nZ-|:ք?fs/f1owXBY/Ϊl;dA}1>1oW,QOV[;bͧjgi]|_ӕѿf#`x._-}jP'@&V̬~Ehf֯y޿u-{RokKWPޫ1eyn6?udvFy@ p`}߅hZl=x e {禶]ws^iR;7gn-,ceYw߻my:+k}a/ϡX~#9wMpz}9B'sb9W7 XC/`ɵxXc ևjvDY*s>opϫ=vl>;xqos#DžOCsdýU<bڕv=_No?r?t~K}uY/Yp ,ek_Ϸ3ý̽XdC= ͜u5ON0}F/BW\ /+SelNkǯ[*_:[QXaA5_WWgľGO;S_^qitn|{_Ӝ_s]4 ;^pk{3?j65Ls5~,wįh]eq }eg?e* -v6ZˌL~2sOJ+|Ĝ/yVy/\_eeX_Gmvp^2Zm-΢F^+?J3mS'ۋ9'CM5}f+qDݭ}mc_y*z}(:u6ޞ7uYZU]w`1~M}{Yg]6|gYאB׸5生߬NE kY?hT-~>bvKK|EuVbh?nggX:9ۯge,{֮3$j+k,?󳙞f?@'go69zj~o=8r>ό~(-uwwەm}U/x݅4Yx.ݫ^߬^עթ_%EgsY?7 0 Uh.{:p~yϜ 737ĶZVY^go˃,1uou*V%}ԙY+esY\߆YjXWJ uЯ)ڛT5IlߦxFbn⹸SG_,fme\'3fq5tyʆ ]4ƟoVY(;kgzi?;*3[g1:n[W}ϵN=o~`y|ΨOz5gWLql xXZɿr`QmAu5?:/!T4{A<^ CW9cz~l%g˭r?yqguf+c g~?ܬΜYߋl/gq.sψUA6%ǪFĽ umjեJwWUg=YkzֺaOwYٿӝ/e}p{E竷A?/ ~pMW+9.a=Hg̟fGٜFyIՙ؆r¸'9觿%£qӯ4φSrށ֧-Zjw|^l/k[3} elVkZ's/: gQ8úүq濧ȳYV͂VޟȽTLqӟc[Y2VK\K>_9tf{ʻJ?6Yyu6@鿸OʜQq?i,zObpw臞T`/govپ>,?g;=ZYƭX A.w0!# p^OsF sYy=#iݿf=n֬Miz3emQ[;*Nn;SoWTg'\qց;}͟4{NAN84Zw+߱Gp3Ysc,J}/F_O=Hv}/ifW$y^+w3##J?/u!(;ѯ8˯>+M| :ԧpZg;^Cd3?ؐ?2g~"=(3-_i/xJlqY)FƟ_-j"H?yv>OWYkի3l)uz/I]wY΀_-2E5ΈO1 s<GOZgS]ֽ*O۔Y?k(QG=ӳb:v5V?Y_俛-j?vm[t*'zx'3s[ܱ;iϥO:=bw 3 z+OaL~J{يx.*z^eq<+6zO m5: wwXzVb~A܍s`?LޞjJ=OW[ډs?fûb; !~?ǽ6 )[~ pρ~xS޿ٕ~lmgиZugVe+y_euLpޓ†7彴;4qW>.Cwk5qw 9wr*?V=⎪l!ˋ=gz=k=AyNLK-f55 @pu637SwFVݕlEwޟ{lzصqsŬ[l/X_Po! p믿n,sܖє6 Jt_qƈq l^Џs }tyGS\?!]'ݝ׸/n-|C3P;3WO{ovſ]m<翱>bѽ0;mhCﵸI啕ˆ6nKws};Ot=~vS<Kq4fNn;6O9h~ha~aq [;?gρsXWkt۸3363-?ӡMy|@EZs-FCM6C>G,x߄Zjg'俌XzV9k;v fsY=ؿ9|.6#Ȋ?_ȼL.G݅݁#^?ƥ}ӿ_+z{} %`_mN_g@ف݇i:n~_xd 6x:v7/4g)W[)w]Yi'YB1GF +Y`U0nˬ?VA-(?inPwy'9Yf~Uؿ`;D;[|aM?Z,|sF;?1%wQυ)mC- ]3ȹ~Ch9OgNu,|.] vbaOӾc;i3'tי+WY!?45{w՝.O?KnG;svV/ .s > ugO3=G.1 nS/E9i'g5;Dis_g9|9 y㯿>bCSxif^߅&YsU+gWuf?X5[}#q3r*v7]oLېSD{h.s5ܮ3=CRSz؟\ɴ=p{+6yOXWAዩϚ s ? ۺuv-N]WGae̦;/kRҟ/N+N2r~v蟲[tͼ/ Lo/Κ:>Kډ?gN1+i7_Wvz2i:b恕[? ۆ }Խ~'qgo?꬯ ]!lBwew\.Jy랠u~; kzkĶ:]t?֕~ݿӽBa%Su׏/4ufx5gWgRgf"fى_wŮUKnűk_/{nrl?aeט?wLQW pw`J;n=!Ox[o[ym9,k_^v8Kzż 39!l}otp8f>Jo][,N; ׮,'wٿÙ0?!v~7J?mWN쮫LW3}v_aEW:sg-~.^^ai?9;#<< HrNV+~nA3?N,Mq.35OaùP{}ү\a3q/Nh *Yթ2|;1/]o{m?vһ\h_>l.HcQ_Z2KOAbs|{]l14nIJ}sm}$}g_ 2;3 l1~n gѸ?x7C~Ϟl&~W[ds:7iu_@^͋U~N*fz_ڌZU)b_d 7nφ~e r^?_#~o#R\GKKӉ9]U?y-7)o G݋4JVg[V\)Jy׿J<99ѯ8@2̖~_]3˴OT_2/vfQ:mql|o)NŻs3g(?_s~}EI_D E1?ٕ~^5b8>6PYo;+k,k̑7pf{>vcG񢰳bvN/mEvZsog2aO 3z zlB/؁'xkͽZ'aO{= 6J'E~_%lqw q=ҿCSǮ+dj8u؟+q?k[Ng`xEЕzΊr o׵=| ?gFW]ԎܝŽcxtqo[ر7wU笯g[i[n4r_t-a˹/~s|~M?ysYpV1dG )Q{إ \ j/Yo%үĮ Cxjd=-hKh_pv?X츜me;=xb)v}O0ZnG6 WXqkZSl:C =:+Je4v(Bos_.'Q;">)u17q4vNbowi]:Y\ŀgBỠ %8S-^Ph!7;|PwAWv zЬ@[f9 dU'{>y?g3!v"{zhv*~(~;}?PZ.7>;:M?9g ׳_)qdsVZlqwDvc'Є]=v 7N'eMw7ʻƕۿv>8z9Яd91g|F:8x|&䒏~rv(uq9A߲J''u9{WK@ԦPҚbHRwYkm~|l*;)mOuܶ~Ţ'9#@ދtq4lE,;b`{+Gy=b>Ӗ3 9؛sXc{BSb)N5~{Ru6Wwu ߬N՟z^lZz5$ϭc[/ְ޷OB&n?#Gs}8]?g 0~#oGcQb"v\w_9Я}^er;gM_wcvb]dwu{t+´ y`N= gp<}EVVXh(ֲ4]]ͅO^`Qgµg`;#0kjp?ʝԸBQۼǢwEc1o53z@+[?B.~0kuL 5քu+?~ޕ~s^5 U{zMOFNMρ~ K%k-Tk)Z5{Š_:7Km ~SqYOύ '㟓\:;+ X{}*b=N*?{Z3~JpNXڿ@79$O vi mo-@u؟Z*o/-z،wt#OzKt/s#V ~i?}s>6?9kW1t~/#gz: M>rFо%rgdwR?63)]]9IũYi~gyB֮>~X]ϗXiή=ǰG%WwyAMԕ~=#:ž:d9/}Vدۧ4Q;G<ZŢYV!hY[x;f8uy`*z>/ĥ/C/.3[\N>~"G=~'e}1VVCi_e}%QÅ\!к9AGhSs)񌈣Y>C!{41ѕkA_S`˩mv~ƢO9,9(lu/|+&~9GI\|S68\a{Y>K:vWuVOԶň`3hfSI]WRP]>/J뼆z:2i{2gqumqumαFuW5{د\.s}϶_iqڙ.3r>i3O)kAF?2LCh߬OY\}5VW:h?uL+wx['ޯw:+,tyo]g\9ok3 7=7t5eW,hݻ7Y>Փ/15>́dգF,=;f}kd`57QJ?/X[= sa"M[sghNa;ɽ|WGUY._7|V^,_K\϶6VImKbX~/`}b Œg/ j9vb6į29+l%+Hׅ\vǺү8E#@woZ*zJفE<7sKc=gCN8CX:/8COßv]gp;C]]ܕc-;Bp 1QP\l/x߿XwtVbWokե3id^o:l)`CwG[:]qo]`*l뜿Le9C{Ol ȋb@(7?"\g̩u*5w9E|c3]'a?p[ԕ~9uX},0>S]e vhv<1U<3gDVd]Y{3e}3-d9lV޿x,B}/Gx+1kw!v&ch ~ ?Q'΁~мi@ε<1*g'N7;|B3;h~=2J?뜐ũP@~JIO`?i%)'rSi,XwZGk+3k̦u 759֢BjmHCxy"kWK:&ߔ)ŚkXvA;ɘ_"~L%E1'zͼ.+3!=ܿ3S2uŞ~?{?3}'+ę+=yN=׿?}57O,pyݡM\ۈ|dE~͆>JOEOm[+"2ֱ裡.Ztޕ~^9c`y+k)"{S=#]Y:H˔??UPG^V^ g K;O_{~y:m|$qw.gYej?~)[gq {} +9}V8Ol3SY-E|+sQMԵ:FႲ65^^Txgu:=ܯuVWsd89C(+;62+Wk x/i%؋΅~-z0GƟX1W_Eg/h.gk  {ܫngೀȅ8:spϷwSeogu7ʏ+x̚(){MSbb< uX֯D^3~泩slOm*72gW{xj1xveC-S/s^_?^f- Fy$?+a'q5RpduGIg'~dFwn‡=i_'E],?|.2'XpR#^cܬ}8!fs=)kǹdqrףp60㓫s]YAbv~y]g \J?c}_3:Ag_4r?6|P/N=߬{jrֹ5=^lwf/{`ү~ I^myڷ> 'Ru-o9䬀Bk\:nsGN4 _10Άsokǡgĉx8ӣ#|ڇˊzg|<5Dvor&Яu9YdQI_?/s9cyI_ٓVhbc?jOY 7N=okax_j3>4ǾgEuP劻3 񿞫TeƢNVޓH]VqO:e+NٜdB4{ۢg7.o=qmQkM@Ùܾ./!.L՝텟6*Nn3_]rK3omufM~GϜ5:ajW9/vꎛ=[?{5TCW5_/sݓF,Gy=O(4|ZgwGcN|{ >m<:jH #?K7OK-HX~4wKωƞ5gX~+q#5~{V8:OV7cNNvf-3:?fN3\4g zyksάs}֟_gC]b1Ww3F?y IJ=|Kz*-t|SZ4t[,0)_cީ9cBNB+g 9b_|5-qG])9=R,qJ+[BB/2hf:F~=)qӯϵCes1cLeeo:s ?,E\.>lJyj\,!'~]?E9SͤѯzrB2şuY_8Kj;g_!؋  C{5nϖ~k9#g>W]_KƟ_wN^=}}ۺjOf  Y^9)N" wTOuY 1=0c?Ï v0gp&08E\2zq'@ֆ]P-\_Kj5+ ,,,S,O׹k~,pCwllӊ} ݗTWl7~(O[to%y}aBˉ)Mr^cpqdxY>LLmKy}B~hcq>h_p2{:ws=wš9_gWYyWZ+@3wAwپf C9W]&>s_,𯴯ʼ:?l ,׽.1_=6}Zر }! ϣ?bΫ F#_OE1'gRw![߮qrWG/g{ +gL3S-=M{R;w6uE ޮط{{8Xď[YyO K݅? %5w!O]< uwJ?\i֯ZS|Ӈq_t`W!9?}EZ&x?jmw 1x@t\ĿZ`,@NsE~B-Cf{9uT9;;u~ P_bOmAfįk/13dXǸz !'ү3cVgƟ__r/.W{3J֜U~4;1og XR僚 t>n&0}ᬪ/`b_[SSSjbw`x[:3a=GՋlъ<*9ç9>䞸c!߷aW? wFp[=sQ S,"^?٢m9gv:>*sA9k"UOCGV5sTY]2;0ɶ}QZҳm8{x k'Ss(-bKXGy,bF7rgm6kW^m~Jx/X+ݐw.@UЋ@qvSşgN@x=]b)cW؏ W>?TSvv=e?3?+Tgϒկ2:׫ϺGóy5p+L6Ø<O ^&,'}.3Or̰_G?g *sϗ[C _qy~a'Wآ=xf>i/Ϝ+ {NCG`cCૠ'ͤДwu?gg=Z{!;w[ΰfsh"^~/^K3U]c }Ty]=g}?s{>բfZ9Grcq׬?udv69Cүywϵ[?kH X<KBݪiڕ~S\6QYåcYZ' X׷鄮@'`ol?g`h9Za.O=he]me#zyh8{?\=G|fXF9Gw+4m#gYSZs6?VN?䟶_@?bqܴEV緭w>IgOvqf+.Xh\u+iwii_+dQCh |>;4t_cBAƝknwYYd~<ߧ Cg>Zwҳcd~՟y)f@_ﴴ\B ]fy࿰a Vrn a7?tS޿eJ~yfODy1ğ,U?Y:piTgT7Z?? ANi AhYݟ uwv)1iN?|ḯ9:f-3h$Pyo+Z6UzW朳:]=fr?owEOiqu+S[A.3;0XwfC;u~VB՟o3{0'gqV]YXZtWf Y W9W}|i]ųB2׌tKZjS및K+cyS;ٍ#GY?A6Vcf=e}y35ee :sboa.:yZ9n_~^G sbc+8K c;o1ҸBҚMBğ?Jy;+(⟿!;;  ~Ї=Q7e/+9;YY5h,zVdn#?F0ށ֩tXQ'AgtRsz?Zi}znКqw:Ke#owgANP{}5Ou;q`e/R{?Cq9A̠yCy.hcآEnߏ_,{w//|.seŽegܿ{jb~9ЯSRgѳ` ώsӹ};S~\^nOQU{w0?~meήs:3X.Zz>%$c.ΧYP=kM[A">#ҚP?a= ՚Ͻ@k.3G51GҼҶMUV tǜZ9?8.+O7+~^'z,}‘MIlWE]x>{,j>Mo?ĺ?l,tz&?ڬOwΠs;n[-jїxv'{ at@t,+ml>fyn6_z֚?mÕx:3_kg-c~Z+Y{r.*! +b5><>2OwA1g50#&?ε§COB?O,(J?gA r:3c4}/Zǂz\?}9݇gsIL3=:lS_?vS0vh?ts+*g@7qw(93@uYLu.]mlo~g?6yIEg`8/[luo@:s?ٍW6ḛ~ oM/<<68t7`vpSw?'Sb9mBMҾ lӎwأ2dyV=VB>W߳{a΂٬w3ٞ`oY}_bq48q|+:b8g{*9dA=]Ꟛs1IX;(e"'[sӫ+:? gf/έ\{5˩ү9܉AܶZL|>Z |DkZWڋwԜU9׋-0d_jyZgdu?3dgy B%N0k̦s2ekYv^z+b~>ceQ/)2lcg+//֞M6H1f֯?k-sѲlԝ>w_I)= ga3ıC!w Örﳛԕ~. + Gde-5gg'|qZlʚj+Z,<5. ;ΤC٢ƈ2y۴J;R]Jbnp3콣~w3XY?ѹhG;@,dz~]Wx+s6A:~bvUTXWkLhώqA7w?y/mZ=o}R<w?kE9:`E{-+_ĦKCm(q/Xٕ~Tߩ:XYY{KӞ,gC_`Ο9c yo[b<}z,Zo9:ḳApk_kVٸ3~~.q" l>Ξvt"+mxa)Ÿk?-Gk/f=Y*ըҖ/mC'܇w2UVޫh_jBG6Xڭ>O*jn9wM?]])@Zo[A3kebo {н -?T\?Ǣ?Ag0ie}~@#ʺM-۫ =c@}^cz29RVxX@=gq"'yrj^3n+_G{gﯶ.-3=&:Zs틍,e^ =n2gkᛳ|9ege64_}aƟ7 ut׃-j뭜g{SΠgwH4Z`^rz/ hOuJ75TӶ3t矞Wb(ۋ79_dl+/K,vŲ8I|E3igK\AgO\ j>;qs-evX5w-O>ë,zoF?V۫6#,>oԻ>-ϭib2=KmVk5~]qOy[b@ѯ >p[mS,-^,3ىD_| ?'~~&f:.yq/z`7o{?Rcݻg6_+S_6 kkYsM?s֗BikXsᬮ3yϳf:gL^me C[1nõ[ʢ+3JohJb>8}@?5=293}T۫g3mƫ.栶T9˹hbp _S|Iܡ"ؿzF_..}~ `'¯k;?sWQ5gwuĎX!sq_s[#NbNb{Hv0upiӯEP-;wz1M_=68i%~ks^OŬ'd3~`)p{! ;GcNC.07_Kox@ש.^k#N[*uϺ&{?\uVٳ=_icuigT9ysJ]0_pg0?? 80kA5ه-N w2DzgK\儹+;_%}mKBoYA?ܥ:jߢ&zCۿ{8(8Cr /g8ȘXwϰ#-^rnřru ֎ʢzNV޳ [-!v ev>gsEc.Kw>+T_?vwS߄wsN2XdjCu.9 x8{ܔXR ͵ѯ9ye{qP`Wja y"51ug_MX(?xXuVzQ ]ѳڬY nmu^|?mxwm(]aC}8Llq_Bo:>~ݏ49sgm+ 0L og>@?3r' { W#_;_;޲Js"H`shn:f-HEQ @+(rD8[P6!->6﷾Yy=x߹>+om{zl猴zӎǜfbV{@@.0Ìy{>t*~d:gAv2LN9_?C=XLUp646b^P{ w=,;Eߡ'\ 5wů /~ oد9M?vW'{?j>Z V7,Zk!:s25s:w!_oY {þӔůY1bkإ-/S[=VlL^ī#f1'{*s%Xá}v-5ΨY{kWjվï`-0GZrAVmG~s}߁sHSү~Q-E ǜ_oqʔ x;ĥ$0a?1ZxR >eHq. ??naKR|6U,ЪϠ2RaLwoDk?hN^Vg#DVX СD> _JCOvaoa+3;?:3ž839[o"FX={8aeuTʬ?d`{DFQ;BMw5YbkE[?%߬6KW?y|ʗ< ?9s"ůF9f֏@^G3YرZwGk[My]W)_i {~Yu:Nas3e6Y{52r{Dיg}g̵!ǵ}ĒE,  M`~le.<}vy~;=f噹(̝<MskڎL//A~|ԯBog\}"Ou1\ǵt9|qya8_=f'[Y[&g[~KV]]gv6?| ut/-z ˌ+Q~awgŵJ?~EjONfǂ'9û4幄]?‡8oS+ =olWcr|;l 7]<7gAsAuG{!`?%]Y8_8k늃vsyC%hYh/ WuyW5WX<ÜVƍ~әkG37uNE_G5V[K _.3"wU?cbϕ31=?Kw_gvgX3S*.rZONg4j']_da_`!ۙg9_ᷨά.sFy>ς6^b;"5j'hHF39C %]:rt=aFy 8 6xqEusKw_1Nhc+L =ɯCU3gxEOW5=p2Gh e4Z{76g2'53{[kǚFl׾"Oy,OfO?u,.lql25~rx yNEcQ?gyV>g}M ?gL駟 k^M֎ /Z2{6Zs?ZUtfU_Z3zF~syK3/e3S>]g8':'D=A_֠2a?g,./z̑ę6?NJ<0}eCWYs)פ3}OH?3 \R85>CaaO\QӟŭY4v)Y=WguYuo3gFd9r hzOd]n瓬ɮS6ZgُZsʦ)g0j kWƑjgwݵ_aYv %~1~l_zPP=eb.T1!y5x~QWb^ so7Y?&0*=Ʈn!gBcsӍ=nC bd> e6ۤE.t3!ᅭk84z3w_7՗ͽ¢wvt'd!ޣ)} bw]y~AW,l+k|}G,γQ@,0p A9~ָULXsqڿZ_ r93YS^7Tku;Z2;s!_n%Mm) LJ6 =;9~qe3~m+g[x7_?ۿ3_&~oxcWN]w_W?oo0>n,k|J,Pwq<|wYȞ'Q`cu&Y^+˃e;<ϟYIJF;L4y6r/mӯXds <o#0ebJhG'/dDG]W{g@/ހ#jyCƼڧ+  aCe;?~Oq_K=)5=y1/ z{1iu.Kk‡Jz/.sC  ~gL#t&rqk<ךM`醿ӌԗPX.B^Y F_v+Zc-u$[kIZ׸-ikamdzl589Z?b_:l۴=6g6=L2=_ 8F+Nsasc yʮGXkYu6Y}No~a_ӕ~9_䭈_J_Z??vW(=)Ws<zBƳb&h13.]}e9ٜ&q\3]O yY /!_33-/rg+Z7xq-}4ȭeu YWz,W,q2rN7Xu뇾ϸҩz,g)B>e֢ [@D^E\6ea!еĕռ ^?ir5x1q9b$sf_{ ?yw[?z?gu8SN\[,ߴ\  <=_όվπ=kmy[wZFX,Yg}e%:l|/Xy~j\ ?uQgw|~E3ǚ.g>dz+o-:gFeΟl{_ YC-䗲[dFֿ9}_k-,\neyxΐzOY/^c,-mҿDcyudRy _dxX@}?*:O_rs-ixfrFu?Z6=ԗY;~4V:'K-z 8}.uB3zƸѯy~b7YK~Ҩͅ=B(oRN¯ YF/,i&Y[ ,OP̖Ie=<9צsX/~]_贝<_gw^ _d!묜+56gaOi'q1uo2.!fLNfOkY+FYҵAu戽@=fՌc-55VK3.ץO,a|ׇԞ*N}1:+ZuwEhfwpTWޕ+Jq`K5/?줕8Wu> 07'g_j幐}/k_脵S^Ldv6[grVUz=+}K:?\+Z?JlD>v2s毴_h_6; 9Q;HŊYe:jx5=MG]gt>o]WAG wΖCuZ}l9*.֨ y5L|6E~."gTk}еb_6˭?o!_=[_}r~ӯX:ڇ?nkϪb2ȃ-rXjO CNu^3}~~nf}Ժgֲ;m㡘?c^U?Y`.G_y g!Ӿ8ǝ0:L#a;+f<tk}WƘzG?f:1`3!x6x0{:`u ֊sXNY`?`E~b1:K3_xFS*"a9{,V/U6ןf_d7kPg|a3+˳F/q~O}`۾ ,w-vgЕ~2G2iȢj/[̾wXP,dyЬ~6ݟ/K-t-80 2YbFmהX(+4duNkT_j>Ji1#^P qC'AMNaYc w9>?T;e ''gjOywΰ?O_~`_GMoД4j$Yݜ]\lz6 zm8iĥ/fA?|_' uyF斵OuB^p}{~ K}v= ̊cЭ~?edl!vx KyGw,pP?F_r{9}]gy^`esM'Mo[YA,VƒY6:ןfE '|~, %޻ma Om+]Z=@Q̍ɽ!>#._WfET1U~ɷ3raE؆16C_1_g^~^b>t&s:;;qlp;Wy3+~'9\27/ş t(m#2[+Cg_c @v!꿩WQ_TZgQAX_@Fv.iJ:Y>Uw\')80߁ ϊYZgh9@\ϴǚK&+B֮YyiGZ ~ʹ~GԟYOcNv'~Qf {:?u E(?a#!BI=F39L﬽|3By\rt_WϹ`8 A_SgF0 dOp & gAa5"%#.l5VI9@`ez?{?e+Z[QyŬS~7wϬiA}i%v_'{<@:@w m9Ĭ5?aQ3Ҹ@B22 || V еÖԕ~6__ |Cم!~,^tl۔gFk\"):OU%` B[_wEz;?ҟgA5yPX>iQA3{McGm\ֆ4O5Q*;_: yu=RΉ>qNRgWL7eX9\hمgm}pJR*fo/_\2 MϼCSbϘAb)R Ϭ7<ۜF%_M?kf֐_|称 +ϯd[)͚rpܮ\ : ^"esY>9O*ZҚ}<34bv)-C3Ϧzigb +skB71+WqKA]4u0( 'AqM5g r?3nvzX|ˡq'^rC&+{krvVnQqr^n%.4fY`%~l u{sǘWk})Kg@_A{~]34yq_ׯr[FML^h1O[&+_uoү:^ڷku'tb嫟y~_'e3<4H߿îwu8־>'f3Kdﯴ2=?'G6Z+"Q羆#wߛg~ufѵ)ԼƏFl~>K|W |y+?kE5~O . ]ɩ֪f\jԍ9zk),g~wV#Hq-΀gn+W#~O:/6W .YdGg~hOAŸJ47ͥq9զc+sxXjM~g6VE K:sw'/k.qE}w?HxnZs/\gj^Eoܷ>/[C:=̑|jC/FU,__e_#u_zXךuW^]1Y,,a?`~\98;Z{/1_k^],gW6w¦DqRoj)[38e:E[{k2gjTg7/ެQWhQiǍ~ŦQyud6+3ez0vՕxV;,dW7^g3Y*뷬6:wg@55~r+_1Og_ЕL~u6{b¢CqEk9[VټC?s1u-fe55vZo7nϷk\40>◮{|¢QӯyfSųj2i-jߴP-Ŀ]g^vKug]ƍ~Y7}e:p|GLd,:Ϸӵiϼ?+< \Q|(!k>eu?deu} ;ʲ~>o|kںӫu/ʵG^f%hl}:KBzއK-buaiW'Y93|'NoWg8?}?/.Mto>asmk9h{\oJ!>_eop}V_ӮϳXe\VJ?rmg l{)1g9ڇv<'QkKkpە~1s"?4kX$f_Ӯ^nq֎)}?UW֞wy]g dlodXQ|cY/hШ&J<0J\7{Wn5E3_[´OŹmWYS~YZs-:Ood>ԞC숫oIg;]ךP*Ǎ~see.rIWúss'f/ÿ$3mPtM}?@nvmJ?ifs/kV2oq.1}F+bq`r -YooGG_;8'Xga\DKgyS3 _`:߅s < )xg8Sz,ΰ)WFL;[YKLU͟)_koZuM?<]ğ16V6W?i^Þ_D.oIo3 ΢U?`Ƴvsv*b]gx_*vY^+?+|s3ܦ?<(|Wmpd2] eLYи{q^?ۺ-f@?A_3 oa{wSN/T|B{\[}e}k;"wXdzA vE Y}Iaclukz) ߁gAwBfwS˩e'4=UyC^&ęfo,:݆\?OM(-?n8<5&q=-{>Gp6>mκ9l5Th!37kPygͿgi10"g:VE2~ى[ٍ=cI|]<̂~U*ﰿ9ݐ k=aځ}*GmjOFuwZ Sc6;L~^zΠ򎶘3Rl.f oGlb{T}^t_{sࡵdzzNwBӔqٶ(M=hL#~= -#c@'bO@j}/sV݉YOS׬9AsG >4c.?O\~wwRZkq+tj^wh3$u> 3J3{6Z 4?үA%keYx|R]gֱ|&뭜kV?ooe h~йۮ93ufSm:tw?sH?'|ϡ?SN~3KB;:{?'7ZF?u?l+g?q#[l`o-ߟkyX~vhʼⶩ/M`^yVƹ,55L۾$ڿi5ka-l|fG#i/bKAЧŰg7$>>+Z3]fy_ֿ;G4gEށ `>MwxLS".;,. Ŝ7;8U2Ov}fP+fAƏ_xv_??6z>dG zgo_Q~4Ϭ2$ÿںKg8Y?Rj/ ygi_1+'̿}ѰY__Ms>iA3&/be]֒Nqگ犽G x؝zV~~/-#wY߆Y}#@ 2%+c1,oe1&-PNôVϔM/$SY`1F[kߛ3\lޡGܛ-e#L/pZ}bG@~=XUwe]4(b0=Ei:{zv+;j+ |kX cΟ~(bI\|~Alܿ9tsnq|qS>@)hHWZ;kZ\g1 <3 hd,SXנ_ay*It"~uw{V>Pyd8r \ rOut)m0~-۟ e_>г{ p-3~sYX{۹Z9e `w2\#w{T'΂3w?m~l2ep_om/c\'O˜'i~??>_=ѯ/~<84t~PtC畲:o7l_G3U?h_s>KFޕ~ߘr_c~+g6}qOݳ޿pܓ-5>g✾j\12v=/@:\ .aӨ+$k9Ɛ~neasY 6:g;x칥N]&5aW{/ul~9A|*+dFf=J?yu.͗2':9kE: q_#n>=Aə= ç~\s^831um&m;b;FG;m=< 8ks~k>=qX9:nkygfîBN?? U<:s]o&=kZku$kh V}t_ J 1͇z~ "lE>9͘ >8e_euzO֚LY3K$ZƏ<ە~kLZ6s~f߆ ALY3}gY_VN/zWgcG}zM^{uZfK?a:kٱq_댊F>fCbO#]v=:-bWwV'jw-ЛZYPl%k̨:3~iϕEY3U׸pͩi5Υͅ|>4;=&WJkV} 2υĕQWO5{ (|CWi-kFO^>GSĐSg}Moo`439pecwAszm1zTfw_s ??;B\q]Y:J߿Օ8\o}F?m[iR 2Y>įsv9[zPogG?av___`ou|?GF<av_T,z\';8an[o0}au>е5lʢAccn }OsaG={yVf0YoJ359D`!Ә_5Ξ^t@璈>Е~ł:;ea|Y{XtcKqitYq?r>|,mrXEQlڜ L̪aF s%NiD{;u_quW[}<c1:_5s$m/mO E< @v? 2pP3<fozekKͥ(οK/G"8qE?\ޯ7Y:NL ,vN_*fq/rfomjoϊ8wʞ{8ۜSܣ)Kaoן JC}KGis~tVk뚘'Wkk٪bfUbw/vkzL,I|^ca>e%bx_̤&+GXΦr&5)g-gw{wX;." k>m\Wq:4ssY@#x姾eu#D=){$4r+}bYr5&c:'_wmS꫕N3K`\}7oo;_k6~s5 u!x6aҖ) uyTudz=T/u:bVpYNk37;xS̰kȧM`?7{,8?)3!״wqޡ?ܗdW Z)Gfr?M վ4>{K/%d,_wb^3yKg'} x1g5 ̓;,犹:NGQMI~ʯ_Z{Yk3_isVT6g9:9p :/w;j/[EVġٱey Ϲjow.BfS> #F޷meĢ}kec3\c5?3R2daf/A/<(|pFzj籷L} Kym5گ3[i(֡4LNksлNd0w[痩-&~]] ^F(S:֌ 5q ^*^6NzЭ>/_4Bbyyn岰†^ g]mk YĢ Xpbq#cdĐ8ox`/q uF+\?sSV9Лq~њ Vr8f{{U߸:U?3\*WںV@q ڿ}JVO8WKCB{: s)z bW5M.@O/]އޡܪ*ƿzb]ݝxaXo< ڲkHgܯ2A ;v*>i}= 9gx~bWuU&F}0F|5Xjg}|Uf݅|E؍;szNSy9z pL'_l1ϐfsfOk!Y<8:~u Zs$ _ s cѨ{1Q3U{gif?㟵y* m}ΗXg[kǐUEwr=[rWR=Q߆uĩR1'?#l0~9i_c}<#T}ߕ~b^f}ϗ~iԜ9[yθsk{¦M][Wp3y6ۆ_/ G+,zpүY]i%cL ΫKl~0_u#c]i!;jUUj9|j339DKx?X]CkyߠJ>oү1/gp07'33ƙwDw~\{NNC0еΝ.gB<%kZ/=_4/_mM6Gt<=LVߑC-WZY+Éxϡ\a3{Ya}Y'ϫ]NxzU]52"sO/gz6Z?]18]c_9q_>Iä=ПՏ2kiHke,5_6XYs=G]3_)t+_t@f+ 5?Uܚb/Ψ韰BXWmU\JWa96y 2[g7S߻cN}iE3~J?U~5ȾcHRf)~{ҿ@2g|yQӯ8ڧAY}yF N;[5ؙ֕+<Gjī^>+d3}-f͕}կүuп":j>6},0} ugUkO] kelF+9Їٕ%V/t~9io37cm'SI_7'lzo5ya~M]d4Os!fN9Ú%p_ zy_i,/Ef_Ne eL,,K8SB?y_Ĩ k!e$+4es Y?F3z՚x Wl~Yh9?o,ـo?z50ۙϹV/꾬Z"i v,onM`o9Ɋ~I5<3w^~[tqo>O~f8c{r'2]3y##r^q&;njΑ7>l0ïu~P 6/DvRb r9Zbr |u;'C&0Cޕ~bae{ dq凬_"a[?Eo?1?̦}N k'21IcbvnyM`o:WO_y_9YAMDrnn%f쁮Ӕ}w_ko N ]f1'd*+ot>*'!~^*wQ38GVa}m43o$j%ż3qrBtX> x b`T?)ծjϜԕ@W,tΑ']e!^A֕~OF[3g#-$}|e>w3X/ރb)0s?!ȝ˚}VscO(,rn2.Qlׄ_NM@~vfguﭔc.۠6xɵ݅.E|2ʜ毠[wq\ ?g/nFƿIR?h@z-N31я}g9rTgG3\bYhnv {G!{7 y]?|>a`=xm=!+[>>v.ﳟ?;24gUBSn523fr嫵6i{iN󇠓IYPH r bb_s.wtghgTӯs7+N#kd=\ f;MĒo]"+-Ο=/1wHL bo,:$mӚ+ڿD__|StzhJHYq,~v7U{?lnhҦl^0wMN/*G:y+k02ZTF~I._u0;jN>}82ބwSו~ eJh!!X(l-l|k>M5v=γ\v8 jܬ@~'@]b/1en&_vj"KvЮb빔GWZOWgvO-+~ϷYOSO4_b;'e+OYx.ďȱ/B+F>|E _xY8PVgfL9jYѩVebg1a{X= l~{JGlֿt;YЯ74EJ+Ͽm_tk%֯Kk._&4hey,Ϝ_{u}%;9%U+/`[bW6 vw_qՕ_AC3yOOLwb򩳠?).nȟ3;e]{ށ as=KWү=󇌽lwXGdMbfsxh969'3G}?+_d1מ 1&t7 ޺ͦYW2kew7+Kmc7k1&z : Yswk,usyrAGM?dPGyO[ĿkKyaVs٧X:Y_! 1/sWWYWzg[Eƙ7WYĺZYoZ3v}7 X}8՚~dξ_ ztofW:rvVߕ~ѺKWX`3^^i^2D{N&W<ÿ?j',vuPNx\Z{u$sُoWaӸxߕ~͋2C}uF?X*K-j:g'|V{m89!/_c!f?5NkY3еbqײjx"KAA+͜_FjEPS&^RCWi4Zd]G=ƇYkP_mv:+'wh3WX]@zVVkf+u)MV΅-+VX'~NWpΗZͥ\ƸOݹ^R3 g}]eNK-,^1D}uu_ОUO2Iuߕ}+5q_s>u~Ҙү8'Y`Xk^=ЯWOf2JkeK{Y0̙DҺ++f)XV\ 7#s,>2_NiqhFM?G~"k\ ,Z?&ӟ -j k_t+lոѯ1s?t_9uO6w610!wz]/~HvLkОUեݣ>;dv?gC?xu?Zﵲ/eg}g39N}BY_7_Hc몵Z՟29uߕ~T}ҕ~^b]lQ_k/~4a灶 cկۻϘոv}կ5o%KH,\ĹZ^\O8յG}#kmx b1\5c}g1C3 \cv9>Ks?ߖgrѯ_ ,,X9qЊY!;-p~ez/aAgX3XR8Y09?f/~0˃94Y欴v H)R<@מ>_9/b< _pvCCì}N_鼒~]V'ʾB/v@uMϳܨb{,8_a2B,hߩv}^>=ڋ6gA_F)*dV+nw$a|$~^K1:( >s'-Wwt + 6\>\'dX@ ]g+,+{k+gz+qv3 YS+.;%MY7W<[IVW 7j[j]W˓W?Л'0h,[,M Lb<'?xzUp z`_wZ pXA;qs8G;e!kX.?%~O9߿_#k.+||nm/œA.V L{:󲰫w9Ĝ:{jyşk5A/jX]=8>)4VSUFW[9KgUp6u6U_Oc~m įků k7kK} EҺswX`}MOtCY':~ٮ)i :'^?sDGN'5_JSD7ָS;vʬ,ա;'Gg#j\[~ɟ~ τXWJ 1 'uFw h!+[,9☢fDLe5ޣ#}À?ݢNw?|!Y3B[V k8><k'_/*u~;|hi򫵤c,by8YܚY5^efw;wYϡ#W!5e^Y9ȟ3SУ^͐a_-bwȟnw`i\ yf ]D ;9W]ל'@5:ٖr:!e, |2水:WZ+Z,P_tÎ}-ew:)ƿJ5;w{5bP[|eS IPmZ~,_jߥ3گbqu)^Y)Y[{}h$AIkԭWX''kUt{dW~^_GXXwm x>łl/՚I_;lא?JYc匹Og|˝#Ȯkh査ү;Yf}v &&_(tKo o>Cx6O?ĩS,x;ݷ9]߳8?M k-} ̾;fWY~Qu&~͵ȹb,lj~liJpji>žB^lO-Jίi^WkSz6=1{˳Cєg^еYHZg=q=j#3Yco^^OjxO%?-6x &n5P:<<t?i͚#'˟dO=7>zPV0 VU9g{= 5t+'{7k.q,t,EWgb&z(,|FvȞC721cV6>3\Zz];4?"ȸ>O;34[SoW߷L@V 1XWXڈ>s~G?t]{%Qܔg~Ǫ>[UYKF<nkWwߖs^A>@79ۇ7M]g'n3C?t|!0_STh_{qYCLx{SY{VkڍsuIk??%i/n燮p[y~/7Cm_a/`g/ oȟt_;{Xaƹ sT7e>QOog4 s&+,́~W-!fo=߾)ϟ#>('5e+kwĿ[,Y-[y}1\MF \чo̗eh( hS^ga[u=ia_u}?+5g~?0gYZ Dq.k/`~.+־F0'-c/=P٣F-+?߬1/O=B|:`aЯK;Ϭ@,ou-IWuMԏүg ,}[,j^`^o>zͥ'Ϧ CJ?,8Ӛ~O9'Tk|bL~Z`/Uh737f"{w_׾ae-Ӻ 2?wYŤ3Ṣ\cѻuN:e\myOGLOҾxG=LZybY0wg y9C@W!n? vMļoJklθyC EsjaMy4x  VLN3WWkZS~#?٦/_tfq$4s:?.yfCeXd@?}\>xN=~E=49wOlاIKl_/C ЛA4̲lOsr>ʗbI)e࿱Z<-}6po]I4/kIeS5PY:|\O>^_3:?kq d_|F3A—sZqŐgĐϐ4ge6<H{p:ζ# >Y+U;ۭ';?_Wj]to/|oh3q 2{ UG\g>)߮Y=oV9}ўmXӸ YYgW_j ^kFLh/}֗~|Z5l+ :ʾ9d 25lϜLwo/3żG_ڿyfgs3.[) :9VX?G3wj[~Of}/׽!^v #Nd߭7:j {V>qA_ ,Ejj]㏡-VZ~I7d ΢2+>?s󃐣o;Y!mi-}?ͨCRv.:-6KsxN?àCW=< gbegOK'fٳ <\45!gY\̼%՚U#?g~YC4줵/Y{EkХZxJڞns3݁^+ jm?g8[:M?4[KJ?{NCsC~u''ly+YN<c/3֚oV |"h߳Ck_ @#:aqv ^xcuPs _?RϫٜQ6'H?Z\Y mڊiLc-zGM!3WBL!9T}9S.9żǙ g=tTQ9 X'~ q0e~!VWx΋OrE߳9f3#8Gfs/}iG7pXfc| 'ЦPOZ?NX!v/XaA9'yh}[B3,Pu^P\Y!kgҾQW7|_S1?q؅ϝ礕yq_}'s s٣2[ d>2y1el,=a{u͚:.g\֞s-_8g3k,8u~ĵX:W@:lK,T|6:,Y&,)dq,e2~^?DCr>_ |ƇZf XB :J?g/k,S57u΋yxKw_Ks&u FMƳh!{V#SH>jyVH֐ d5;Ehd"|T,fTG?i39>+kf6+9RP;W?ja[3kJ{Z)Sϯ}|Y]E:;3w}ќ|i֖F]' YB|~yq=ZkҹQӯg3=(8FM?l.mg]坾5WR~6 l5Z|yVu{AG]'\iG~}]W?]<qG5穽9__uf+\F`o}E X;jiVW5'_vlc^ zҿ/{yxE۸)O7"78+}4Zyf A1~2˪kys3L~I>?s.ۨ_ ~ U]k*yX{5g`3=+q6 C|s#&fP^{̓wEBgů tabοm.x<3GZxu^8u?;9L 0j` O{]W_k#{7Z`l΃_P,UX}_uVk+6\u'˺^kaGgfօzQ\iVi*fSA?| K 0W-L[~ڎ}+ZP,rjYH=׃cWKc24|{?Qy^9#'8C\MЬ5qhWP|gwSn!ft ?s~Nzl,[=չ~`ş'smYd'9iϔ oMωޞkb6ĜV0 YU1!ĒoeWPןs~v_d 4߻{y~{pͪw,TF$6C5hb&Q*"MQ .@Z4IN:MbbDl`,NDcP139_sWw}U5Xouw\2N;9S'\05ҁkbψn"albmJZ%xDOGLbX#KgVt:~sܷ|Bt nb]oEgٜdvȯM>3`hOƠŤ7Gxpex헊>PySx/ϢҎ~C?e=z~olQ{?h/~sOvgŜ%tS^:݆AP1tT#/Fݑ"(<ꋿch{{.5gcJ+EfuLOgGM]*d}">1À|)j~;w喻J?u3EK >tşiawPq*WCruK|(*֪Gfd^vH<&?BO*͇G{L O+^;E oZ|ngb KWgKW,.x=;e~9;gW07lh/#Ef"|wT 8(%WG_o93~ة&޼HO۲n?=ew;W"?Y絘 $ZlabD̓e׿5HfܾA.eرtsgY{ʙgۋ/|?lRԜ;#vOܱ/0XT5-_8~ѿFn)DvSz-ya:\Q+=/;dk$ߋ*QN~ߔυ$'Z. ?,&#Zuw{ˈOgK6Eq Qk^ ]ulP</+]&ǑSJQBrS[=.f&~3fa,IUI7Lk@8~]7uU7tU/-f~K3(^O9a$ZQ=r+~EO.>fìN1zʱ(3\l7K%>>fi~+9WF{ O)tk9*^(&b(@<S[G@,OG>/ȍd yCWAkD>"mQ +A_1#N?`?+hq>?@>C+)9p_|VwKܥg0n?bJ_I4:꽿=DŢ4|w?ܵN= J?D ;]wrHEGKzƥhkV*]lXzs|j 5~WruCٷE`E/?1^y<1a̎eYv޿cHg~<ƕ1{Xlqby҉ w*K=\~/4{zt:=9j🩷g}tN[.n|?{)]%$?%);%> ?;ޓH4ǭYtYj?f919O7'N.cD{S~ST\3;ډnQk0ٟFJqJ %PJ ebJv܎N[5C{ F\kq7L_|翿Div<;c6SgɭC"B֚S=G1g۲@ٞ!c9-:'wװg_N,XWgUP~~n>/ݙݷw~5}l"f~xE "Ӧw3W͖فG]~)joCak*BqɈ_ױv;Ҩ8Ov`)X ~oԓ=_~JRߞ.d6ב;УVŀ-^-~zya?TGď~}Vxt]kߞ?̟l;}"YgMg8{9C\q:=q~=ua?GXh|n5~~{׈L߯;{ߊhXH8ﵭ5?;aҟl,=~z/`W13^k7Fy~ۭ:+i;޿ =xٟ3s6)LY,tKkG ,hg_$Cf޻]k_aay]؜d_Y^OTlFϹ3ZK{{]$9w1zR#OvgFv\Gg^vqU=x<Ԟў3^~|gD1۽쿀!(aqߥ]==B+EO7FetV85: #k,+9<;w?;Sˤ<Ĝ-ϕɛ0,OvIwg0d6RO?PpIvN\3mQw}9Kq fǏrdB;Sh;yadۤ.^€@.Y.k޵llMXzas\FőANB̸UQ#ϙeYrrWg:f,"dF:]5JfUg%K~vfߩu?gO2rorbo8~ڣПdMQq ?A=+U׎KNweSYOYˢ;㎟c)`{Co'ˢey.^sÌϪ9ˋW_U߽㷥9W[@|ɍ~ܣџsJğ}mAGw ;{-fCJ3C; !W,U5cqp'/?qL3Pd䊨w 2.'9>:*)wك~|C= Xa \g2F,|N;ofz>?5?} cK3k7_R_r|vUk_s=$ީv Z_Pλ/xy=R/*=xW9IxXB<g`a9~;.%yz,n/-ɍQ:Oxx~ȑ9/^x*[]^9~>kg>o'33[8#)X: FNHnRHE}W& uR葮Q/?PqYd %Δ}ڽ:C#;{ϝwrIԝ*d^>KK]byi=3 \{4T]+?瘅o0Q-}^oۢŪ~+,PͭQ1UށtdhWӃ},}>+M=mVݗJνg moԴDל=V@9n糹?Y W2Zڨ8_.^Ww5﹁^/jXʅ]6y^Q=Q"b =eFOX] ~vw~^l ݢ y(.3)S?WxkjqɐE,߼z=;=Ի gg+t9}YSC5[:.T& 4I3A_k,~HGgXN}sc)SCt,,~'b20}hkc_ٔL].l*LOW3v8D\uG /ۢbhf~m+{=,~-^?R^'lp<ٟ]y]C<{8E>\d^ԿlLܯ8 ߍ=~v}&ZN{EyLOe|~Y1=Ǐq}{sV:4-Ѽ*"?w}~{\]qtkFM{{B~9 }/ Ѵ-Zt9݊ݳ~5JaӓgG]1UU)_,Y}gԘQz*ꨘ6+̭^wa\]~shwG~>2}~W^ 7tgI80cXχ~no'v0ZϟggÒLIy:.Hb=.GKF]se- 1ïS.#}2|.?hZkC߿XO)pA"'>e?و.ށg^cL~X|fgGW!xrL߬~>:-zsEnss\}fuST ,,(|h{S;/kMx[i|]q?;%}lb?l\:W6,/}G8v;4wS;̡0i9N]ݖc|0=>;UΒq\\m53uwo-|^9/E/f-6⃢W)_vT,&:lu̓gO={\O_{uV5n!9c߽X}U?9"L~G;/ߢ)vωU7g!;YyC9gsfuX8<~zQgeRetdQk(_qY=z޿ۑO?X@v@z?2#˼ⷃF1XD?~hKw'?gzIG-Q? ݖ _>W'>?~}/iGџ~ .|gF颟\Zw^g} ˑי3:Eέ_G ˿ȏ5&gk~?݁gJ]H$;^z?5*MeiZnFd4;gxy"޳[X`,y VdeYD"X!3烢ޛt@ݰE_W?|Clވh Zl2^LG`=޵ǣ[М|w.;z͑'7SyZ֮uI{*Ϣ|2Z,m^xOs4ھ0 'hW?bgٷ #l~un#;Gyl{~>3~v~C??8Av]m3-ves3?uW1S;E fC?g*|99~˳(Hz1?:qN=|@с͡??zpj̢[lQ./{x_3N?,ϖS7:_Qo7rjQ.c}JyG=3M"r9>G,5+}Nßȹb6Z`Pq;:ⷩw8 *< y-r(K{3naVzʮ}!s<^~s}ע]w|~@̃c|͛Ge8]O<dobZ;[1h5K濾 v5hdH~ẫfu.W?5[v⤨;U~ ^3ZU+w.:wy\{+cAS#g9j|&;#'GާrT4ͣ _ tE2K8 Ny^LMG7ig99әQ–ިjr7튙O{~fw+"ibD{/oq1|_#ܮ1e\Ƨ?W'G[B_zVvmf5^<nca8.t@룽'礷}>}v_#=7}~(V?D[;bBEI]k,Sv^1GF^g~g>*_hӸb{S?w?)ک4&|90._nZ֡{Mc?O?ΙjZso/.A34noY}/:%e;%3ϣω9W a?-,;]$Sώe5K~kv8RvaS紉3=ָ$^kby/c=[%mꋽy(1<7:'v< ?/jo;3?H>/>`'g~ܶ31+忶F}'~3DH/z\M^#o>7ty-AGu1?G~7!Q'oX'`?=G+Ϩ;0s՟/q0/>;~5>QV*}\ϋʻWaC^oϧwgO?_uw{ >̣)'^.;mGۿW;o>?|,gTA=llj?{G趨~h0 ~PBSO%ܝhcg|6bGl/L:U4w6ۗ=)#+?ZϟocNl?xņ{ޗYk5+ע~ΗXך~ǹ C>'J_ټϬeϥ{K\<%>q}n|G?l.хuu f:l/ǵB˙gy~CR. }q=g ~T,f=??6撨so|Q\kM&?ɫ.)7Q=c;SZE⇟msߝcv0*9c-vmz?/ sdGџ)?>7lt~'?p/Tݭ}ݽ ZuyT~v~gw[ ?qJ]<]3tI;E݋.wvVw.F9c=Xdթ>/7^hADc)Q{:~ޜ|Ĝ,ER.ϰ9M/{oOJ1IYemkl3;Y{xgWw|[] ۣU~3k&#Ŏ9.¬7?HV}vGozul(w^wf|T9?'Gc]^XR-B~:cs_y.3'-}y.jTféwyEl.kjS^#Ǖw`v^y=z u3ӱgg[3q~^h(_FA{F?x}h֚~Jt)Q{?YjC9^t6's7ߠަE_2;9XF?:JϚ~]vf*gN ^\"޷]Iy/R串>-1Aled9s^0;1,N ~Mޤla>+%tO?=gƜ:HgfqtyCtEU~q/G7O=3>s.'_8--ߞu糈^'ܑl/0#t):Ώ3ӽ=^^r~_6o8/uy`%-eA"'4oZ2~f|qEGuHffW_o3[ɬ~aX':3wyՙx;CR9y?KC5O NtN<\oR Edmq~{D[K9<׎,/\%%m=sE~c4kã>?v35)5SHT|zbGN?!kMOlN#js~Py~vND_E1~O*sT߿;x;+D|f)}ߟ"J{L>336;J7^óbecykY|Xs6՟isDb%^Ts*.!QqYv[ɥ|-?Zӟ1GMh~%9gbgb?g䃓pETߵpi: "T[Z{zeCދ_o/Es{jf?g;jD{gAE^g=nšۡ|g}ϋ="o~/:?&iEA75뵦?"*>'X׼H:=jwK5W?O!o^Ǟrxc3s>330 as^Qh.0?Ϙ]ܽs2։vpn}ػ}ɘ& qa1ܝܽ`3nJfC葑˿'f1sA/꽨~迣=puwEo*= :$C)܃'KwYw_Tԡޝ">jCvP~N^nWG9k sZ~Em->t"#Guuw.>wWh_Sz;^뾔g {CwEݟ"=GoNſ]؈19/fߧ &quʕ1{|ɏdڨw@纻C~g[gwf;6,y,MN|E|cvgdD1wJg|~vZ旨CK'Δ+ %g/LߊzJ?g?JA97G[>W=;QΗlb֮ƨ+z&tZϕxz,3{cy. bgZ?է=(v/Ȑd swV>ggu6{E楿Wۢ_|]*vk?zSԽ?gs7 sYcIs?\?;l{O=画aglh`f {` tC8Hqµ&?z0=^~vLsg).n*;:򹋬 Rw7=6?QKY&܏LF~ Qs^Ald˦EGktQ'Ao%?W^beɑGNpw#zOE6$H@3(E)YC{g+Ͼg:ׯ8_ 4uѿP_#B +8܉#_zqwv|o g-1FϿ|yW"w{W۸?n*m4%w#XA|.qHB{.JXK~~ٜ,nD("(ewbw1:ēWA:?_dB8_-XQmv-GNnC=~FgYf?b/?++E~$߈zwwr޵?!]5UT &}ʼ1mEvt[ԻU'עq3{;0S ?o[Ջ/2seGU;|*3aߗA++^P1{'_+{[~xggυ?g=m8Y]+? c^==կT?Udh[dF ɾo^$G(۹b7D9o>^RԚ-&wcHуoE?kzG*q^Ew`?gwhU3V. qk_)cS%xe?1E{>Ǭ؛@?9^~az=p@f~6;g:bvF!-٣ߓKD>o(Db3W>GWߥu2{Қo+s>m_DrS}YBv<}ړy*?0'Free&Tt|.W, ܷNbG~{]nտM|!'`+j/gǼ68srB}l,W՝|v޾9q/Eig ɽ/thgZ"%?xn*zW%g`$bfoU~}V{Oi=? ]h{wO\h}V3zhџ } =9] b7bb}u~ Vh=Zןݭͻ;_sGEϜx-u?{3/̩9scd3$XwQ|ffç`tYz>Oq9E{(9z(>wv-1?a =f]E_,k ooB׬y*g⏾~G_\>09 g>{ɭQ{.gh+7.t}w,2?~zα5;<7XY@Tdww"^ރtvߛJ?9 zXY2~Cޑ{+n]Lb{ЁS?x -Q}ٟ,$hy?>^TN#?$?߾~5z -|I0oOA{ ϏLߊ!^dynVD?K_y-+O`Wv:5nܿ0~dhsv߅O{|fgdK/\b>#=#ߗ=bw89sXϯgu!9:swT3;6j^,'~foϏ}YwT"|ow Y{}O{߬Y_~>{k_Wl)/?r"'}pp cA3OTd_{|esF=#zq9ljZ~JtCǩ~>Yթ2|Pyכ2cރs;~GG̡? BΊ^DJסEf9{gf<'ucޣ ^DOK_m??'3fhdS^Pcs挪9ˏ)"f= vZLU!~zP:~FO߹^/ Xy_ßLO3k95bhz~cA5WB2|O }9ESOr\GK\;}ӉwAN?{* c{~Fw߲N.֮T}gϥ~zevT}*Eg{:/b?>S}N2_풹Gpu"Ku~ߩ{z-~;v ?6?~o~Qs5v'<>oKLG L&3LK6)t9.KyU|e3?;?_{4 VFό{%Z}K򪚖g.ZmOE"+kO,wG:~3t7]9mT̎11i[z 3g݁N8?MHF݉:b.g ;GER ۫HT4:aB3zUYa7=@^/}W5< wEpk҇s,w+X"wӒg_5o/m?EY_1{b[?/KW_+"-וw 凙=ɞEgp<{_ɏAr.<4K$[Y d=79?j/hϊQ1ȰFSB XVWurv\Nv@a8)Hq8?iJ5&g kMŎSg =#+~+~>wg-zl/fy}"fK2#=Ph]g:KmvOZ;Qs]jZGiizCt=Z=l=dQmxUпkb'3}gb)~Jgrv}߽ǯCޟT=Xx?`'\fE 򅨱1xEns~??x(F]:n|(;7EGE>g53~+!`w.._}ȋd"7bfom}[{Q9/8}Nc]`0^'ynûǰ>G?[.wgQu1oRCcH}51?~Tl*;_YqaAQo? g~sFf#?\(~SQ2sP.Acۢih⹫ɓӼ~ʅYlϲA7DW[:A cCūxp^ v]vI^w wz4t8c{ڟ`qlӸB|א=3μGOӟ:?yLԸ2{'5xNHN>UdGq:f[ɹdEvz,e/h?f.w[}=ZG'tvG -Tg{ cQheg>U?v#Wa<ޣόm1wz?dPȅgԝz>E}6w} ߬N՟~^z5s'w"+w(S٨\ _u{obW~9$fx#~w;xQWDDX_L צ} -yUv r?I<8a}G>=O~hI茝wjmG C%~&q :ey, kΒՙ^f`E5pyb]6Vc/[Vo,z{J^]ЯJ?XD?}w Scf0Բoh0~zGq^.o.{UTgҧ?:Hx*<Kv^TlEYNͽz>CGghOr?%㟃 gGg/P= ɏ8>~Ƕ9AH|$y+na>6N0{uD_5f[A}""f?Cz\-/oRfNP{0S㜌..}W=v]o0O"B|.%NyI,ǏkuL*ș߬߱ovIvlcK/;2G +N^|ww3 m-b*>'8hkA^BWʕu[/5{Ts0{c~]Ңuclˣb z[x;f8uy)yϘ>],yd^69"O^dio}=H[6sy\CrX{aZ s*_uVϞ?Բ,*Ea?MUb=^.WvE7fgIza:ψxYω|o(p{ ~/kʿ)|uJT˿ۣysHD\kas}]d#y]fkXk{=EWYFSǙdWI$fp.~s?{=}\5/ïS5ϼuj/sR,ӓ<=]*zz?Dך~tWzz!r\yx;=7tg0^ΎfԝxxVjok{{/@_sZS"=x7s03jjZ-xX?g:TգEy~XE>;l*r/ӿ/; 5~?g{a_\$+?~! #/Y޺!N~˜:gq~} ?E5WBio%/m^ 9ͮ7uN>WkMU&(ES\1jt؎z=w۱gXǏ)'|C5T]=}V玣s7E/i^ ^{٧,~~8?uNf}#m9/":1miA?_u]bb9F߉#🜅T{I1X~TAF3ⶔ/=ϔmj{8ϽSv^=3>}Fzqԙ\kϣlYou{PxB"jvς]d,8uN5ohl/)ˋ7f$*v"O5vNqJ}NuX~Tc9?4jJ2B{aY(ˋw/B=QCDOʽ >f\g}rgװT}7fu޾x52(]򽻵?gzS3HY=j^_iL_T=y]`[kO'KQ焽"?S_|~Bfw D{+O"GF#8{m~ϲLguMu60e^7U\l]w`iA{ Wc_V3~Pa 4/|1|/OEF D?ȞE;ޙxXԟXGߑs/U|3i7Ņs)u8XYF+j0>uTuFCvzUTyzr^o;;g~9p?;惟΍bR:~{bnxW=z\1xzgFvg[ԝ6 v䛝}aXHf؛e\;=~~ES?:ۅ΅J?SheQΝLZ?gg߅+o;Q1/partgHW?}.޾Q_cd\DZKzoAKܟf۳ Dsl='{{^?t@%dJt[X(Ӓ/>]ϟJ?3'GS<+ wHnSdGv&`VP1- ;㏑2x'z/ uV}~XKo{=l:v?v>X] vztcIvqUW:+YnY~w?tw8͇9ecƺ8~y,!9Bnܯ9T O-_ZdAza|}ekap)ٟ^.stGβcCb+V&vװ? ,.q$K`?.OY<ş?8z΋//**t`[,/"w~Yo{fܘN>Rp Kޅ"Wߊ٨M/3Zg`*BdyJgx[@^q.žZxX??><`5S8Nc3;/wɯE^r^XZy93ͣޕgxYG?{u 7=/j hcTY,__ɿjVc9o,DN秊/sl_%ڙ#TLbS!uT er.0$+qy_suQ:SDHqlmϟ7IL߃g V/#_C g=h/ы+usȖׂe}@%I֣g\Wr'xgV;.Z[+Y+% ȐdSj&ԝGIOp@bgoS9I&Ue[5s#y=Z{~'~|Rk$#X78Xǣ: }bN߽Ĝ߰?>sdg<zO8ׯbwMG{;p_z*\Jyk\nyU?e_GF~79{F>}Do0?z"Yx/>O^-[ 7F'~'*!558}\wD2fzs]3GP^C3O&|/=yLKz[c5v.sʿED ˒8h-gt<}Q{m> OQ7bw'WEמ:zʁ|Ru8j[/u]ܵw=|{*10*`O͟Z%7G_`pci_t~ ^y9?8;S78;ܯ}sdb{fQ܆ߎWV{[*~ɾWC?h=`\OI?{{|2~sl~83@sިEPSlZO-{z!+tX~%Qq湳F{N/Rs1ǒ3%+s_ygsٞUoefW_^xXOI^uC6jdIW/OyO?ߩQ_N+>osI/X:L&Z^h;6ӟo,+'ϞsIzb; ?5`Eһ%T,T8]9 y9waf-K1qO_)Co.$r~Oa{{FbCLlaJ$ul5}ϋz/ΈTaňvT2c}E_~.|- "2=g~g _|7}n^gGg^]k;~wuZh"_ ]J"V%MOY<.]kٹW{^Oyusp6'՟u6ۀ?"[ͩi=mJ?u#^zB7;幎yXf{%㳺8i,b\zNÙ>#7gz}(?|>ߟ-faQkkuvϏo4jOhg_E؋e?,[fOΏzGbY 1~/ ů8kX)^L_x]n< }k^"g_)j'g09c5I.Squ2$/@LmШsqךS?ELKbYo{w?ךyqX~c9~ίםy33~2k9?pIy+bwԀ֚۞h8~bd/xN"{uG;Y"pbz:>י]3ȉ_<\Jj+9|Z,>-3$>J1Q13d?;29I̐^ogW 7z̰m.K_\Qس:ywPc89ٙZ3>?9f?g{/͡w|Ι>T x0Wz??:~Ou=}~ypQkqbGŤ2ssV~~K=9{F<~]p]؋Aך/H?>b huM屄ʨX^Rd;91T=ZZOZ4Ԙ_Leeo>F-"[Ǡ^ak#bчC7)y`Lj~% [g8 g}y{IclP>ywpP_^|jRjl|=S=Eԯsƥ5^p$_ON^ d}/w΃)>,j 5!cŞ9+Rh>8*;E$sy^):h_{`q8o\NlG -~c8Kq{aN k/ Å~g&~ubI^gp,eYY^bNw {+ǟ9LBa{R=qgⴓ?ػR@ %;` Y2b3`>vh㷜=^7 vݕgβN aTݕX;ٿ2Na.ߏYþ 坆jWv/"v~Eg?8{ScKowzcT O`W;]t㷍1~ς.75?0ٞov_y9/쌃CvE|i`Uw)}]E~bߟJcNΣc]HXK&ڽ 4C?cghwFDG86~9~?yll7x;ݑ}QgYy&=~;'ʼ)2wzgh؞3bbS;Q,!7zrasׁXSOyF=x/WL{Q{~nnzע⿉^*bOogF?z/*$*4Wc=qvj1z<+rTYC3;ɱ}yZ|p65v!!K̡)'&ͨ]2/~שּׂ~3so:Ψ~2ZDM+%Ck3cmjסb/Sc?}^t/=E{ _''f ?%YUSx/h8;>)}-;Όs.;;ʖKYNL w; }fKA߳ '!~0_<$Gآ/\^]{ICb7LUΈV`]RtLJ=Px?i٩G{lW?nR3t^݇jD߫`kђ{}^Y_p؜dQg _-V5{=b?3 Q,h$_t;D{v;~?9zH9/+/g7, 'ҿoT 2 t:ũdC=gp:{3U3?s\wQ#*-z)~C /i뗆ـ#nc}l?|~g_@MtboR:1{|P5csj*STlvE{Y>󾨱}\\#$oܥ},j ]24˟oޛ"B7s(9$q7T5'~*Ę}Vһmo[=]_;12xVټtvfGJZ.E hߨ5o_$K>q9HR&#vwПZoSMO
?~?E;1c8F_IS\B'u?(?/jn,^S\ұ.]h_$>\,[v[<^b5{WZ6Ю^rϻgsYyϲ̟kw_=ƨ=<Gے?CR.) })jO}QT~|g%{d:V;d1fQH EO+ 'E☨=m ҅D?Ez!b7U#Vgo-sǍͿFA//n+"o,.k5?9~rwY{y* pa{߈7*fp cg$>%j//[6gzr䇘;:zGsyKϣyjhφdH5oUzy̢/>\[ΒYšAަS'w=QfcGs+=kz߿8c_|7,gg`gA:uh~J SWA?u-/>I97>j>ױGy&=cDO6g r99jc^lN2Ñ>: נ<*edG~xH閨wY}=>^W9x;OJ3w!NfU]: yQg ZWBgƤ^oCGܹoxwSd6"?-ߙAgya}f"]Y5>{f\k؆1U^|^o~z-u qdT /G433|/ۊ9g /9AvjLJ~G{:Yyǿǫ <r?.<ߣ{}e!.޿{5e>Y^Cx硽2|IzF@}M31?{Mϙjcs3\~ET /1+cJ/n_{ Jo^),ec bNjءL~`:WAuB[!їw^2l+^x[cVA?3ϒ?7b e ^Zىs]r)>?Kotgivs?g>%~gTI֩Rr{>vOf9H~2cZBԸ=~2K,grx\{G쎾AɾM|wf}OV<׼aVwvl?$1'=$Q!̰*"xCԚm5\ 5Le}ۍ1^sr,Bdzo?gzիHV߹|>R!n6Rya_sF?9~:-"'T{/vi a*z.kgn.ұKEsw;ǝ/Ig<~S/}W Xgݮ2K_?3~o}?C]=hf{G9+|C,_Ǒ%jNɏ|G{ȍj/Qb]⇵ډrߟژaSzQ=fb|6¨x_8jۛi6^5_4E9۞ {}f=ثy{߂^ջd4gg[b^!9΂٬屴w3ٞ`o}ia1{lJbGC_cVTxKEO9>K1*Op@rcyku(yȾ~w&9S1ETmr~~FK {xB=ԯ}S'nLg O-OI?Uރ!kbuSw vi^/w?)jsѮcIw채^t*s6b~~jv'7D?wy/KfSJ=mN̳S{f by<7DQ^uE|tg_?9T bs[Wo-|gQiݽCsqC[JLR9Ʌޝ}2Z+ov@=rЧEc~ڹRw4<+jg5ZA?gyqz[~C[g/s3VZog~ΎqQ9A+wβwexL.^3ǸXkm:Efu,WΛGsߦ'J 򳛢ֱ7ΈjO^S;$&d1<_z>J1ftC}W1~ww0Ll;uo:{xPk acT73L373਻~M/b}Eӌ^?7{\],8Y\w-y}?0ژk;ψWw9=YkC=_Wq gGvT,+j֚,%cS,_AR9%~qصXk~sǞkqI\;#/#]D cyn_N:ót5[>:^\ghwgxK]cSk_qjlH7~fogs ~35Y=wgo=9p?Sҝ3W|~iZ*s|fZgz}~|uѿ)j@X+F~?ooJ^eG7K;8FQ^D{%/R}huZ?Ν-Jwcϋ_pV穙ƌoD`7 n;4j.{u?K>}ߧԯx~v/K用@fsÞfϙ>cj./3 O):\Xk{mKT_s|F)ݻX'wwcAG7=Aݘ|>yuc*rIIuD(zo\.CY i>lTSޢˉ?:֨i _vIcoVW{-{zWFK8|;H^WzmQW|<w1gSwlqOv'{Ni䲏!d{'}罿C/m0z_~:i w1 AJwx{?P<@"SϹ[Æv:j?|:'X-8(:_9sL#1~g7#~1%*n>毎鹘[g-?g_R9fdEuZ/DXw>UY.;`W }Nñȼ¬RODݣ&r2{9CzP)F?1==l}e{/xST?W=ܾx_aY?7|vnf23Xs^yFǿ#~L]k-~\Ev[UR~.M1o+l_ۢ ^}xn#7sYY?k(*%4A,hƈƮF6"u` ֘c(XPQtScA㾾羞}zk-?{k<]O/c\guZ J/9!J^ {7q#~? }/16gzb]Z9L̽LNsg?69|Yg1W/e뙜fov}V\jQዬ%1ւ :~&~1i w7ba?WK|4[Y"Gւ߂bvZ"°r R\yM`vzΚHI5.V|!?su xˮMs}Ə]^{W7[3^[c+y N:B!s G:JC&z2fY:sut~պJm-|]k_9+ƾ%Kf >癭v"(g:+|̟|2 9Pp[ĥ$|RnM`+1_17](Ҕ dN;+qE?+ dXo5vaaKR|6U,G@n5F75 T}ſޣx'[yFpu𲲸8<&yEBCXjeWib} x2 tIW9ot~&6+ŹwXv)~ tςQg;{g\oCtVD~wuyhf{8+6,v}&!muI {2NLҗ,nYP:iogF ?YB,h` X3񼂃ʮg^b%~l-{nEl.c*Jos2eGr+U@lt&=~۔îkšg,ί2 Oԝ53??dkZk;Nf嫳9s\Ow5igǘk<7X{ʩƿ|l&_1VvE- 6ȁ_ |i M!]oȵlJ,Ќ~Ԛ>g_ߔa\E5Tsr&p)2e '}!58Q1'9?%x>N;,'kG50èe҆'(+ԓpV?'ud~8{9_o^OJ[ڣf_皻V?kuA  2|1#7= drW~N8be4}8?wcACQx<+svEJ/V>3c!;_ q\sx ̹o`15eQj awv]qݮqn6oH䓭<>Sl3h^e]\cr6ic+B6ԗP7?gZbas~P m%sϕė *1JX? l-Z3s~oCuκy=yL'vVg75.[߿LU~3:o1,jO<3}-HuQu;/eܨc?n+Θ uPu%]:rt=aFy 8X3جkeOĨ+YGKӕGh}v_{k3{+̞f8W]ƽ2G=u?yj=~~ڹߜ+}}_3g<P{׎5>KjrD\:祲\OY?o=UWT׳8sŹ9&3:?iS֏=5O9]keu=? Fiͬ2ʹ>H ^aӮg']g1;{6 }?i]RpOfYB˄ՏxX Y׊A_`= E44_l;Ln\5gn-uF?{9â\<1GM"5CW"Xegqkfy-q?:찮7:Zg6sfkm83󄫝-z/zO`%NH?bOv_嗵T+Z{f)w0j kWƑjgwݵ_au? U̥e/Z9c҇BG+mm׸7*+-O9Y F?Y蛋sG5o꾬.rctQ?5׭?/{#-0gWuN_/tg=qY}&wٹX3W47:ˇ06՛ԟ ?vEfw?tX$[{G+8W˸-aZО+}/}/8=åu͍ϯ:ןsodx4XWU7=Fo:JB{n9~g(5s;=;+1w>|z3cQ~Q3Ռ~?;0t_{m0 G_W+m_yMbrLl j !VU=W{a߬{&Y9\ <}'W|߿=ι;yץv3g@q9pE7Mހ^p>Y1c sʰ[x4?~H{݄<,A)fbsI՞?~GC"_h%~B*q_dZve}[?׼4y# [M[w[<0D&m 9+)f>Wgo&k-'V="LXL15/y&΄ @w><]o^j_e%~/k ƿ Gd/&&m.X%}1t"ϋ8)\_}>1RI fsKbkA;6 xAWcU;g4]'֙|EOQ,yP2?t'e?,l0qdkÊ6~`]W?s)?ZTaIK٘WʩOFn:֖?p~ ۭę8E_yFM7l'3!Z/ [IW0X˜OQmq?kdyܱLNV燝t|3,5紻_[,|gŐdU?Y}mt_ȰV<+@Ō%F|P͟ ,sx{,fJ;2v깈[rs{MIlWg_h%7bO2Lީu|Uϥ$TYJ}Z哬~5Lw 8o7>UNs>l߭_B N? d5Jłcl<5.};biڲ[Դ754 >tWPgn Y3cD(ZO<1sz)Mz YӌA2VX.f y }߱\B%a){5ZOҟ8[Yu6y6v~Ju6IYPg{҇"~8g~XK:.o🯷O>oZ+:me\S-_q)qbg,Uׁ֏If^:~ov&F,fuXSe_:d9._w ~7,`qϨΞqЯgF"]k3"?V~i27?gKF /=GbNzIcI毘dZ>?͢ЙfWcM[y }6qx:yL,8rs}е=]Z/ϲC^hjL}9G1+O˝n:+s?Ӆ6\W̄c-bQOzWK͹q_nk#QO Y{Q_g2_ 9Q_TY*L9v|g9~γFJlW /~]_N\ƍ~:& ?ʹQ?axxSQ+bbt[bdu-]+No _4W|3Zi-3dZy.m_v)o hE0WjO1k,rYR^gQ:OH>?H# nǨ>qqƁBk?/ j?k}Og?M|"&Tc}C.YBF'ݞZ?gz :C[[j&Seү[Oyh%1BFxտ,0GW3wF֋%3murd  | lwkiߕ~)δ~͜ 7:.'FүckQqFM_oΫg^\$E5Ϫ:kuݿ ;뭌?o%_=$OI,M?msF*?YG>"0T;'oofv3_u?Fil?K--E,>++-c׮}M8{<+/иq}䟻ү!й`ϰ3gNmwj<ʞ=kx3KOY)\\4 3&10s5`~3 C=uGuQ>Io!^ }Db`=/܎833=zTwә@z/b)`w-0dwډ]J?g?bxż˴f/ŜY"ثOcHgg6 U, *'?8߫kPϴʟKr{A0C<fI0S\c&r YOq&2M~{WɔEzEM3˜}8c&0e!Kf]gcΊ3WflEN늊>~ N¯gQ^?z\Jl_X8R+k1#+q6Wl`&r78Ht?Cc w9>Q;e ''gj=~iE ?!0E6 o@>JiU'ɜ]\?fߡo~C\-?臞'>rp1}&srʙ'cЭ~ ce`}y?C\g?l/p2ܹ-&VLX2f}V]lU@P un>> f ? ׎|yo3 O#oֿ6J(^&z~.O_vui+p2L>SGd)X`@ V ar=c8X ]îgw.uF yYo1Wx󏈟;gjCGwAGާ[-0ϊF̍]\w6Xq&-0MSfWXM2})=ŝfy<5x2kE՚w|uΚ?\1tY. p~[Ư#BW9O[_^%v G!-0A7ctI joET<t{?~(|s˘f {r9G Пm;m?V?vrK}ŇTsz]gU~'G+ kXD_3sxeg8_t̥@. !U~6j еQ Щ]13(\[&N3m Nk?t~Sv2sӬ^k_CP^gB݃X^9 z柑 OZԌ=<_j7G<^,n42˓ϰ3gqEƺ<|T@I_} 2% } K=t E4 ?'y d~]~>֔uhokO{",boZ.ZH# |}^',?w}a:1(ᳩ늵X=x|g)<'yEL9(^:iϪL87ל@'zK?:~~+ߋ\-rb%d~XZs,Į_ڕ~I?_EI2 >C<ʽ8Ie+k,}%C=ZL^n9/t zE s:RnaLsvr3ڔu[3kGsZU9um4c*u9_gsį#޶?9 䁶Zy0xvi<2 Y|q\9=Eme?>N3tʯ-,2?<+[&OZ̊}\ӏܦ`:EO.١{">tW+{9,b-jusP_ 1q}a{<@Vƒ66fsYj83_+׾ʏ>?/]MP69߻-r]WYo;h>Myfʅ|Mu>6kO[=kĪ ??IlpWgM?U<c<Gϊ_篘dMٿ!SMZ{>JeG+Uga:oshgj\LӅ13˄1 lmG=_Keϰ xgR~8Dg/uodsͭ)huj毈L\w(i{ [}YG/3 y?u2Ws5k_W)ߨi{P;?4Oq c_l8IK#Юs4^Cm0],]63Gz:q |u:O~+5]5z~_k\?n3}ESs15as\Ę~Y kGyИe=J,f,U3esx]k})gA?{6;^h1\lyKwC~үy~b^e,_=bV_g_]]+^oM7-O'Ο?QWcoeJsǑ~+8~JON6_ie{n]+Nz]!ċ Fݫ} 9FN;27.ϣkS47/_>k_uz^ 96Xf_?s|w0e+?kY_#S_|xV>1l[,l,rwN&Z:6sg[LYk:?$~]=0J?GTrfX@YK@?M"oc+W[a3jV?4_\5@w埳,Q?MuOA99Jt53̥%oм-6˨FMV?jk_䯘ӂNXg,vB_埳2h]sKwğa/[Ͻpѯ典o}_ju:=̑:s0к'n$|]ōWZUV>R]ӆuZ5mckw]INuY00?F鹊+q_tj./\3֏N(U5Υk+֛5:QC^/6񜅵VlYfo֨+'EVUGkE}TSvOC5gNh)̻fu%& Wu-y i} 3g!g[3" vߨǍL~u6{b¢Cq.2՚F:?wgzEЙ:xEe-5vZo7n紱OA{,COq7Y8"+1FM5OBkr}\.N懯:k@,lä9bhV3#p j_xxdSO+;|A//W\ѿQ Z sY kg5g֎^U6y_|,r #+~WoW5~ˬ̫BW}R/Z'!ڳɷ__?g҇ U޻szq&++εns]5b霝?w_z\ǺMuGY#"u)/NV\:sw> ,}as=h!OY;k~]_U.t 1r_s$|fϳB^=asW;Z\k|Vbq>Ɔm v<bq>cuaiW]3'NoWc^\&~4a3Z.]og` bU??~ /~u3u1>?? 6ge[c=O9#1>L]Ͽѯ/ׅ/)K_=J9#BI(P}#+.75 ΩY^+;eEJ:S e%8S 0!v`j} ' yξ3 \bҬaS׳O ];Kmy -H?Y^C<~gH|3|xܷlp6?Zgc~eyg̅X_V鼄3p~GW#u}L9-c)g=[ {I })==zv38 /):#wZy2y(7qe&:Țʩ3l|7[0V:kZC8GZY :)ϚT,ߏXGkVK3 ûll8Kyf- o޾=3;2pH4e:_TcʢgAg/_g_cq!}XywQ_?3!ie-3x^s&38[tdz}H|hq~ <M[ų}_!|y7Zy~  6q: D5Zh(?j>ʬƿ]o ?տm9 m~Mw6ҟ:}l-Ź?y`o!Oƿ<uGe"ާ-v{9HS=lonJ{iq_&UVgſYJ1?uZ)k#p "sa,d_l _,HbsF\82wAYM`L _Fݧa)l1co@60.єcpl}/z @asz1 #0O|=Oxdz+ZP>&3Vǿ 3whJcajֺ-_˿jlw}NkyXԊ$XioaD( yf&t_{s^g!2ן˶ 3J3zc]~?)Èk`~x:>]muWu,E؁;m9onu-/|}Ѯ1œP6?ѯ4CC-!!ç{"] Q۵1bahOҚ3Ήykyhi8ǘ~b-alʸ@qԗ>3|+\,55L~_elw?#׊š0"p/⯏˾V}Y=N`{ t#) }Y_ʴ9+lNhX`S",.9|w>SܱO>sAs_G/ ?./n^gg^b`MZ{[UfdWZy C<9Kj+Ґwn9uqrV!loO@>i/ECJ?_hEEY ;>]/}XSƕs!–>:~Yѧ޻#w쾲_us gG3?>/#!3\']2<DVϔMk-r<3cYy9m5~>^gyh `%>X<Ї}]:u'~je+:?OG7[?JƦ'پn`gBS]_'ei{ޢ^u+m"G =!nse}S毴~oеNs4=O<3 [$g)GmryXJ}]x~{`~tt#-·< <t*t'dWȊ(r9[{Kdy6o bOADO@ UdV?a>֬i5fWJgA?KKzߴ'}pЫ߶ `쵧<84t~PtC畲:ow=!T}yk] eVbtz觮Y_nS9ԕ~Ꞌ,0.2{ޣ>CK"]߮Zgtːe<,՟cϴڅ>7OK1uүW"G| W;S~p2\6qu8;ſ{^gqzH?~ѯ9QW;4_)]5Yg42ng5"g'g2 5Vry O#ϐcfMY̒\le0~Pwzq={xpVP{lgnO_ [XdhιS{vs*jCN\K=Y?sv0g^_<{w~VWQǮ)M> 7cr\6I5m=ZkRYgKϨ.%FE+i\B#Яu)+_fϜ8C/R~=Z='KgA/i~yYyfyqtw^tVX;~R֨Op26WJϚ?ѹ67:">WY\t:.Տpq櫻[EJدq '__JZ9_\qA553yfsis+?J=*bk*ҚUkAm⇳ScQWO5{6Xӧܕ~9WYׂXKFOAȅj->11i{_j3)?/LN3\,؝o%OX<9 @>+s2eῩ^pүX'q_W5/4si!j0'+=s\V_Y:WG/ӾtLAOZzB+yU3Օw:JΉ+fS>j!;TχY91aa5evwxECϼUm+m=/qzxZ 7OU_LCw/)5пEڸzMi6lX -z;>a8kVg7gtBKl0ӀsAuKү~c9D^o!ӛ+9{Y!-t.l ]W@k 㜈lbk^?ļ}tS]לcymӥ6 =r6N/p&wbHٴS~28wsL[m6[&0l1J?5.N󖳃[l ߔ[ŕ>gg&GZĽGX̦q!?B~ dX?v{F;9Яz=A/@?Nu 8K?}%_Rl:aM1P唵Soa4j\.rAž[mĞηn}C^"_#|ۅ~o!wusV35XF'ԅZ7-Q]R g?u)~1aXsL[ C5%VAbsrϋ~NW}{ c?{g >Րk]׻8Пֳl?'ÿpVK 6iXҴſfkOqGsjߏ8C~>d:Kߓ#l1`;ӯ,9ILŏ)͊ѯgKa=5~1 c ,S*e@&ppv#@ONc77淾ڽ 9w;P@?1-ܲ)sjw9ģ#o`3~b=VrW묁#p(\]gX U:PנG )(~,14Gl`w%a8;c#sYطN(ˬZe?3,iwJ$YUFJ XkyY{-N!ԓGh_:y>߮ڷ_}_<"qq V`L ?VWhhmտYk_ճ\gxP}Vm]r>{~Ŀ7!71<1?ҼjS dyrֿoCߟ ;1~m!Ř}[m̘k3Xﱙ ǚ v;`KO{a4M[|]]^#羄bn3sو?=l~/+oZ=Zk3 ;Cբo}qZW13}u_]__ <3cGtX;Xt/ga/}̍jb1@^3ֽ<㟶ροʚy:_kXsZյgƽb^j5X[׊Y;N7igQ"y @>z62|į,_vnsү9,dj/r'BA9SnUfKMzcH?3wZ],YY;'x]-jZsMۿj=G~nB~w@\֯,#oW\J3 ~6 Xz'v&b.uo}f 7ne11k4 5đGG#~ 3+< 6+}i+q鏩O9>ӧx4eƿUŜ-2Kf$i'ggbk>U'{c47^/x ??!BKyrknJ/!aB}x Zy.o< Ǻ?ڕ~ 8ƟapEV_E Y`, E|G5Q?}\}fPC"tWuu{Om֚5MU^枟{@<Yi!okrA[ ._|ι&:4‡S} @맷6>ݵN?5bAveRߵ~͜՝Vڲ,~s \#"> k%Ȳ ?Vš3Wg1IsGڵ6{}5x>,~ՈGw`N]ϼkIkdl'i1ϐfsfOW_אE>OkʼgE,IqC<οXa!5]>bsGM?if?gy*>O=j1Yzs:4a%.u k^:iƆZs5u]B[f xٸџՕO6Xů#N嗲9A]Xf.Gg):=qĈwQdX]f%D8_k1L 7{/j9o''l݄ex5} G:amxYՙAzq7cIJ?gyrU;~?"rߨ3U72JCv<ܵR~r?.q+c/]kRl/eQWWYopbW4:3?`3Xegv<33 }fIT̸Nr?g895/XC:wL~? [?Y4/Β~ƻ5^Gt_g{YzqΗy+-^g89k߶<6qfO7KY\ӆOhex >_9Z;7U께?LCdL{浴~5|TwY{뭽~zYfjЭ,*tQ}> Eo3d=Voy#[S,Pkg56@J+k sQ{'g:Yu![ E}/]gVʯWyOgʾP4ۅ :שyQӯ8ڧAYsyF@;!ן7VEo 'vu~9A,dlCX{Y#ҕ~2FJƍ~o9>Z֜3>6},0} ugWkO] uϬkͱm.xߕk.c'rVEi5]gdӢſ63ϴճ9%ݞfeVoC}$T\QW69[ St1& ?ŹSxї[`?_GXD-D%+kϮʟU]&e:o2笾ȭ`nB=fx>k̲a 32+Wb^qQW_bQ|ɔm*o8u ~z9Ãg~ckJV̿{sp^sb/Iƾ,pnkKοsĕeb<_kӭ_c=3='P1=8Oʰ&F:8`_26ZQs;Gy@m5~]w6?z@}#-0W8 X z ' ,Yb: D`]O9k.>)bL_mVo}]?ɿq~3*ϥW8]kggc7\(NNn{l/"]_}?r^n|_GbAۊ{yxӾ;/MZ)_l~ҹ gERucXo?'__obA`-؂ψ9?nt:S w ?n dr _akXν+}fkvEG{)m;ts˸>*r];pʢu0z,ti_}ż>4I@_* :O߿cr~b1_Xj;5Rz48W(}.'{֯3_|V7Vy)%%*`W} }z__w<F*#ԫ ]?Cz F|ӗnìء ,rZ;5y_ݯA lzw/pasZt>%}^ ]x}#@q+߲nMZ/ci+4':6j?3Q6AʲkżR;j:]g ﭒuOoԢaŬ]\l0OcO-(ﵐ,$k,aZ3~k_bI^z. t12Sҩ9Kv;gEMr+皱c%O-p4F7%#}O(?{HXț|?-rYȓ{|ɯO3x}ݏϢ2˾5Ф9r,qY6,_=l5IGkv?sq>p 69+/}B,LM2ΥZ?=٢~B?Q) =C+k\b>}3y_ׄ i&ܔ۝և Ӎ<3@?Z$y _L[wabbצ<)?E >]ߪV674e3avf/z;Z=8Nr]r![-~d6S~[_։XF{௮Ϸ.VKM?}Yp̙BPG?su7[c_?3gxݾ|H~ļnpfk_ϙ{ϴWVp@v?u NM~ƪklf=xo&יկ-+~7ZOfg[nQ?Z3ubQB&S'~? ݊Е~I+wd!ؗ~>eU}fd]qjCW7Xy{@ :re tYų6/MC@4߈p}݊^̍g7w[>MW MZ^?S 即JhM'X`q}(fAbuW<5s:{c\GF_or.X{ t^qM}yŹ˧p DG]׼(s{m&d~VBެ=v'S|V ?g:@9,6# ]5 ]+&w֌W6 _lRbKS׌zfί _{V5Ǣs(}?/y!ǹjwe]=Z/?zJIqojk]\UZ]ow9+1nkYgs՗)ͩ}6OyƟ:^BQ1g| YU]J],UQWsc=Q?]kWac}}4}߮~g T_Y׬.CtM9ZkGSkGg0Ǭ_ԹQWSyLY?J_{un=}u͜`%~q3ĐXcQ#Е~:fĵ~=_R*ټb %&?5q>f:V( _Yg77PaT|#6_gmD+gi. *FK]i3"[~J,[ز[,kmp61w]8]} EҾ\ůB<^%^whJgCΉ3b1%үlu gC = ndV l5uQ}.ҏ{̙w?O:ܖEj^S*,3~WU ?ىQCE'e@t8/`{ל3k\}X:]ļϝ7~< h̗\^~2}5%Wfk\Y ۩7[;^eVoPC?!9ʟա~J\ kc:Ob|3ƾg`+3\ocz>:zs,;4y }OX ay1>'}|@dNko1yq|'u{n \пGCk N>Gu_%-o[9YܚY5^efw;wMYϡ#Q &`! ?oq |;~QC/gI/{!8Y@No`^Ƙ=gXvW󄯺ү9OA[2+ϼ`o3?s:'Y mg̑USq>m%~>1tMH /}=>2;i_TW}f_e']gt?cmH\Ysa|y@rOV7e15mWFOƏJB љ{=P~x |/b5̺үms WY?93`SkܹY/W|'z1xkԗ?򬎻-|5M#%wOG*wW㱓 ?ש[Xۧ%kUt{dW~0| B[}D/M1o}~\ M֕鋬4I 'cށB;@n2kN礲N;󈠝X%]> F9ϾΒr"k߰}޽ ߧ;ٷ&j97?Ix@珴s- c2u+--WG$ b`͗j̮T-V⢷/>kbu^+g1g^bMWпqg}Ϡ7B?>O蛽_/]_l7y]k6 0>gYVoC~yه}ԓa}7VQvjEq*auĿYc ß,Cal Ұc]Z+ϛS xT?Zn[~s<8/a|߁2`kI_zCw_;>>gO\]V_4Lݿ鶖Otᅵ1gr=dY~_=ڿAjlOkw:0~a[yYy\g9?_VQ<цj}m}n֜?u??kZIah /x~{1Z^C>)W<;mG|Nd=Ed̻Kyt@&-Gqپk@;noi>i̪kȹ?zJ:Kn{Z9ga}SQ^׆!O%8ӚLWs}O6Wk~3]nB~V=} X;ٿq*IGO9gtvFg~Wb^h[ ={L\A,$K?Ô xOH7xm9c5/2rүwyQMhzTs(~>4\45!gY\̼jM uֿ3IL)VOrji{j1~bނr <P+J?kwg+ j`=xFLX?ݣ?GnͥtӭN7/{#O?mN;{wF'r/?/GV 6#+1F4|:aqv ^xMuPs ?F)Wl(_PW[/9dȡV4;;b b )ٮs :gǙ g=SgexC0CY焾ȯ!,8 swI{5gQ3{"}@.KZк+g؇N#ڛ=wOMa6m1Uk1 !Ƣ r9Ciiq- 6@5\3ZtEVZ_?iߕ/wߕ~M%!UL!O} oDΧ˱{WdɊ s٣2[ d>2y1el,=a{u͚y:/򏮵\}X\G]XLqt֢s]<*+Ҿq͟h.u=ASıEȰzG| M]4~-#SU׺ /Ds:5J?g/εXV|qG|?g뜂9Ǻs_gX5Tjr笮:{5rM}Ϗ4AmѺ$g G]gujLjοOJ?Em߲EѯJ5n=ϔK)5+uVWbZggp3w[mߕ~٠8K_ee^tg+D5>GMz[ |;m5O϶8Wr-zz`պ ^}+♫^'-kw|;\B]g6xP:߸ѯ3qu_hLN|r-_WX0ufg9oti}]:kate}k}7Yԧ֕~KʼnEu'|1^3~3<9Qӟ&˙f3Wk潶T9po5OXp3Y8J?yJ .+{_'ٕ҇~g%~ g߮k-r >Y2F[hҢWwY4+e'_/u_ge̢{O^, u7su8?34"75btgҨo +̼M~SݯarV'3%-9}C{_FQWs"F>+_=ssh̾"7>tɾ\=gfgYn%;S,;̩ϪB{Eߪg|\| _ 4/)3qB=zρeD+o` el S1G3τ^+^ǺҿĢnY_ 3:0m16OSǴ<̙11^1`vD00~yM}~a7k ^Mٕ~[~WW,0@PAU**Vmu<'˺^kaGgfօzIQlӜoĚsmQY~:߭X:Y=-dbVD'pWX5ES1׎B7i}Fx*?lkE}is]n%21cϮ[ku7~e>2c\cϚkqٸME /@ : ;q#1ƚ1yYh7uF?s32WЦtE ]/̊?x5Tůqu`F g*z&VO;$S?0WwZ"֞,B2g[ȯʬ,Ţpe,/M,su?k*yߧGR.~X"ds2{| cJ؁3}9?Y[ex4մ5 5^ói:0bYu zwZI3k;6q YT̮_b?Qn #\|5u"I#;~Q}@mq'YYojWZ^{_&L'3.g>|v~x *Mw3ڕW3,y E>Ͽ5Vڵjq|{5Υ ?Y5N{%h{_4 *;~p kPߟMY?\3>r;eq.epcy!j73迂 |JYw__ce\>)BZ/J wkj,<,LX߮ŹU%QS޿ٕ~ͷ029k58wCo~ʻA3rqA};WӠ_hke /coMX/wMK܇vO\*~;}zy$]+l~HǍ^tRo{AW𙙿BfȄk-իZx+Y-3ѐ_OY]=`. 57N!栻Op_{ς>vϠnXkI6J g&snxp`nd&b_WߟЋ_bZqt~~/|7Όl.=?ݢwvK=EB)Яy,| θ;{ѯv29U\w1ՕG;}=Oy6:|gy_8XY⣼Z앮~KϰA//gvvIibEl梙#]<׾_kGYԕFMr3J%]SWWk~jM9>Zmqb#|{3|31{k/,ԗf J'{66߀?]v?ɘ *oKC^?#\?~rޟ_kyu՚5՚}VkG'ӯ21և΄gnkE϶3D!}+~e,={g"ќa@\) 䵎g^kR [dyLN5j۠H[#u<(z+.ug[#/ϐ>3l<20oϓoc~aKjYWZ;~k,j{k5g[U6נ?k_{Y3,̕ϴ1Cm3  kOO\ ι﵈]_O}>":j5(߉+_YY] wzyuRm;oC+BmC qFM?d?eO,!KG'aǿ} ~0vz=eo֎39e5gGWksxWM( {w4Wgߕ~+ /LF?}9s\L?3όaFM]ZdoQC۳qk:y֨k@աCd89/'jWm/bIgXc6L @|^WI3q/3@M +.cWY.\?Z?~\xWZsvg}>"|Rߕ5|sf + fAd>kѯ}2bv~c+i{/,5o5p0j]?ϕuUOj=EJY*:μH_5o/KFMy-uJ8b_,jgH?ZnŚ3h2\CVU#-fF]ou9k H3f OǹsuWY{dB@U LwZ4̠/_skuZgZ\h{z{-[q9TM`ޅρrO'>U?J럶>Ia6 l0:7sR5qOnb&M9S],f#{f\|s$X+F0y̆`6瀹e(+/Z@79byeJ A9`b ^8h!臿K9m!˔Yca>l,cgh?Gs)Ym&`n.+u<E O{oW5L~},W}g!V=^ς9}<3UM9d:}Y G WstTOlX{|\fX:]s~՟<ѢNA=b8-9kН|3f۷u;&pt;796< 8bO4_gx}Vt wVCvK9ʯE毲UeZ{Mu~#ƳjxP?㻰_?yr yNKCvr:8 ?{}us{N8 r!U|BxA CQ~ ; ~V΂q xF?_4.+vyM~B9 O1=)ff ,Jo&ȃ9D>69ބEuQȰe8Y彖69}?_uϜ)Vb!fď>nהxO?~ƴda,~'fe$gMgwAkz'hd~e8|]0Đa;̻$4u9rx{?ĺX]_\GZ:~'Z?uV橘sB@]).Yɯ橲7Y*]T.gqyN֏ ,2\K5g7G׾v.?F?4RRZ%~1uwS5x8柏D l +ex[̈sOj#?y7W/W rnR],Ű7GLh<z6s!͔cLVZ:b:wq+s}|aam0?5VWIl:@cqsF69K;yeX1՜3d9/nqg֏8=B~GcS3/i.?}4_c_@i3wj^T &,|ý,Zg=&my-Ūk|ϡ{pA?kyÞ;VZi#We />L WkexGgFBJv'EXȦ"vw[Ж-I_-/&P<Ƿ\sKY'zNE?}1!_c)3XXZc*?EѼ4srxԔ9ƶ/tJ&*SSY*LN=UJ3됬/^e #$W-dv@޽)џo6g]њ2Sp<+%BEBu~v6F<}_(_kBgٳGE{Z+~oSRlPߣmשV<9/nџ_+ }_2e>kewxo>p7֘O_q>Y|2 QxTYgATۙ\gyL~Z\1uՕџ)VihKƲ >5ZǬ93=ŭYd6櫵RsY飌eO58ׯIk}+֦m9 û`.H>GGW\a;gLN>c-jĺ^iq5gTg{O&ggWs:_sw ivE 1_(UcOxܩfrՉlr3گŘ}3ن׏\{3Ug ӖCtc-]8.39cރ-13mbRڪQ_#mmb3=lo6׏ Ɓlx}̟lrC{0&Gd@dje.w)?OXGpw[^:?NzZ/{gv6G߯~V\uRukzVkLtᡶZ@1! WM,c^+.?J>Oݢ~IK'ZOk0=1L>TԹz/lzEOg9Ϳ Ƕx^e[*oy&z/|"+?3?GϿlr3<j+,Y9Iιw3g-|ӎ>9-On;h^q?00q?us7xY`c&6A&H3k\g_OS?m.L` `> +Gטu!3fG0 !5#ʯbh>DgU9\ch\Oq)?ϽJ\e^ ~&i\x Yg1Y V+f XsT?}ڧu%=ԕ>rwω傹5*|?"'6QwЊY6|~ 9>ymX4:/?"8vSϷrNY:˩s֜e_l+襁LgɬOfe=ƉЗwԯk@fC~Fwcnbv7<yZPv1-|7t?0P9<nuyP&p&ʙ6O2 , ~s>)q~twgק~]g3=e?~c wz>O ?'3/7%^"]r g]tE;MƉC?Tg3k;Ki?ո_eu~B?\3dkyrC~˭;>&pnJ#,ι9A!v;5~lfAbo/=4eg'Us}[_g 3l`{?E1bui!yXJ߁V_u5yr^Vb٩-i-fρg/8>޿)WZ?s-pgBv/M;CRz sh[%ͶZR82+kLYOf}Bc?#u*u,}5? \m~g/~V-~6s@yb6RC9‡z%W7[ m|-ze/}e5370~?kWZ'qgnagQ?]0_b>}wi?D'YJɘ~֕db{/ D\_Z:Q*'meNWŝY;B&n+G v{?4jgk-f`-&g.]_,!Zd'd = ?:z9]w_Sz_g38">{o? {BkB>ٶ}D #_ˑeeyi߶͗íkRu]8?}?5~cp}^shy6/k3?rЭ?_?":jJ2 |6'ʘQR|ƺ2{:-l.ƵӹB˙5gўz~b}A-zhW^kmL{gQ<jF:'Ea+|FM?kmQ,<WXZrJϱZ_<\m-9Bv'ԹxŸQu?\)REľ?b^/{2r}F LM臌f"V` 3wY$'-GMfg39@'goٿ c?goe/D?35gR?2>TZo9kKd_1Agafſd7Y:{??꼜;Zsu}^Zg_!!˳TmV4X=}]1VrFi?}7,(,pD꾬QӟSj^kG+o9l=n+{igiCc3-{pkEK[_bgk_ָ}Y2|OR~,Nj$znf56W5glkV1˱xO=Jd%s߲j R3m5OE\oe_" ?ZJ.r\lJk`ά~m)~a;C8W57Uׯ>kJgfA1~6}TlY(~+>)u7!c6ͿU~5~WY]guli՟d/y9-z[GߒU|:+[C~6Kg<3BntѿlZ VXZjor<جrؼaf}Zg{iOwL{-ПyEso~#3~Ξa/>4[^}Q_?!-9}*,ϜYH#uRg|g+q[]Pƛ3~?:fZcU\FĹ'OiT'r*m֬a^Eך" "]͏\i}Z԰}|qĊ|~1Z(.ͨ_ܑ Wm̞fGYF?ëbHo3WNgGG |;~ޢ~ʾQG_i K-&]̽i?n%Y=Zcw|ŭGuzR]\gbk<9*N }g+h1^3Dٷ8Zf4-/;]c~ rSeYՋ3f@~wSO9㽋}-Я}Y1D߂},t=f~t_y:o:g0k;5:q>o=gmQ[;On[SnWkvX1i 9>y9V_x}-H?C̨^ Dsna39[ZmA}/F_OHvyW+rZo寲>ɬ_:>}7Z_kә_J?/u;L_kzK9'<ڛ'Y`Xgx8_3N=אc?Lfq:uV,VXLGUîkv[^3俙F19-MԜ]׽U\;dsi;Y*cwsEG y6bf<b~3tX طt2{g`u3`w;1U5Ϧ5㯾g䬞۵~(ޣUZcR]S`3"_g_ү#Vά.[tѯĎ~>ar3~Q,P2~089WbVޟ2"GANkيvSW< C}]/8PmV='^ai,;w +>pw.g7<ǽeCK1?-_uh'έ°Aels`KJY~NM_p3A?eϰWLy~ 6kNKgɟܭC`)YݧAs1=3o Z;)8}wЋ{˞|4qw st>}KXgY\w:kZ ~EU\_OZa6rwK^_a.{Еl΅o~)sM?T?7%zAW8x@9_+~5piq5w'6]W1bl?bz0;+C򶾇r]L/l. _{RmwC' +նS Gw8ÓͮWY:MjE_Sk}AB3wy>`poȵwgB)ΒҌ79mA#92) /?l|:ݚ+R\{hA,XC83 =ß w;e-LY3i=.oQ["esI_ͯ֊ jURgrL~y2:ug\\-;4>zh3T)M=bnGd_nZ1?gl УWZGLyx\{;ww4g^GZ`cx}a ?:;pa O9[E_dz-b^]]f^r"N]dXo30U\"!}<-WM %x 2;? ?eٕ~OO ܂WN#5f Ϟ7P, NGl?_J(B^O@B]4N9 MyOF2Eռ%Vx8}}y,~Į~ . ܖRTWz)u&Y65+{,bļ_s`rŝݐg\ع} }AOnh]_tڵ ;= jD` sN?xpGAs%d>ۚqgӠ_?uNd^nùN?~,l-|8O:Лi<~py*6Tgʌ3;,?go_H}i KPs 8|.M$?4?bV~־K~?q}+ [K%oyӠ_qhG b_j?hJmʣ~G+au6g#ke(Ab^rKeȮ_={O]WˆOVb-"k!Y!}~MǸx]͓}uF-E=3|| _kwZ!sxB6C7 D+s_QG䠿g—EnG ڭX9(~ifguf>.9}4{rY;NdQY<D!A.C۶{'ۀyNg+6B?sZgɿ;nz}<DŽEE^"Дqk/5qN~Ӡޏw뾔/^2gx>f;bww?S_m.wG[3CxK-YcM■LX /clr!^nmy,6߶gt-juS74߈Ԛ#![ԑ/5{! waҏb|XqsQM,?>A#Gg }Giп%B7YGC_|4mh= iM_iЯ=W,B9-j΄^gS8h}&l[G}_.T{_枑g̎}֙ki&gN֙e&gO]B==Lτv\3y ]|دǹ?.]W?GטW+f<^+?QNNnvp)N;gM~֐/|Q_䂾ҢWzEe%9Úoy4`1f½7 594آg5#E*[f\e*YUfg3{Oi?${͖s]1Bv: x0tMzS[ @eQJkb).=} &9;V~2s?u׿d| 3CM .tz.A>-d 6?+>ףwsFĂ`JkZct/uϬ:8͔Lp|Ira؜o^dqnںfJsY~ ߕwX9>cO?ʙ#a]?eu־"H~{W3g:l<#cKO:f;/Ql4_߃>_V65šuVYs^F?}w_Mןl/<ɸ\Tǎ1k{)iaǬV{7V_F]9}UY'/ZtÉ9QWz7{+No~3,p`u.L_7u-~B'kKKk5^]lwسTf'ukw<^ϕʼL_qXwY %623~}|v_5Ֆs}ƺwmrz^3kOʺZjb_"|Ќ~ŏgAHk|ZuuF?{'Zh]lѯs͜cqbr:fqޤffy.o1?4uVa-5Q?]$/BD;բG Qγ\g.˳ͳ~5wоd [` *'ڗ5j3I7[YOd}ݖ_m3yEШ+\L˜}\o1ǀoԟZS?!gm~ov蘵Tio&xkw3ÚW,QTZ,ļ~)L_5.yB"Gqf}!ς1UV?~-7>oa" U՚omܢ\=?_u_gxuّ~b>2Wއ{9}-p> Ot>|)qrKf[Ȫ*~ʯր4y{fgXNssXa~;f^0CR7w0>$̐`g3aoVWά?c+:L_qt\qų~x|}Jg?bpڱט&8Os͗;>o47Y{$~g!qYQѯ|1'>?lK{x}S3m]vW0ioGG2 ~xm!YCfxzJKZ+]J4 ;xA!x< 0v"=^kPXZn<1(, م9tsnf?ߟgcN?,_ML,gi4cφYYȰ;G9 ;P"1I9 &>M`z|:vSmT-ָƁgsCٜΑW]ZQ[:J_|^F+Noa~vM}vx+{uo.g+h=~=J,pnJ"?QvzERq#aC92~&< '\8Yv9㬜ew*6E묌 tOޮ"xүaGXstmָ@,G2 kE9/>!8סoρ? 9x:mg>f/m ~>v?=n|?)B̺ݛ ڔJR In3kμ͎/<_e?,0u濝ee}2V ,K,.wl!ciM{~uFfk} 5oj K-2.z.SB& E Nv?sB&~㴃/y;R{,b,B6U1xoOS>_كYs¿juNk2 @ORYW-_gm 12q~9/yH? ڱ2~\fCڗ *Άb6;Eފ>6\3xx*^}JSbuS\u΅V8~qE.Bvrxk2hAhGg}x;  {!֘bf*zN5~{R7Wo ,Ouu={57gs=@ygn UN_A.0P}9?Sž@h{aqV'ӞӠƿ"h/+w?@ݟe[й OOaCaaw{psRGW0͘ -ԓYMs&س ҧ5e N14j,y~lgb捵oV14OcW\{.vCkxEws}8qu3݅j~{gŏq0ouY뿊I{Y9amՑWl[^zE|: t(gpWY_m2l+?z~17X9/s?#SAf5OsU+?WU4So5]ȝ帔vj QwZfmpuuj#y~ΒguQW)물3Zkc~Mi;{ CL=3fNo{%Z~壘0zg7w&?X<ʹQү9)sO)̿i?Lu}oY/ɩY8޿o3ԥs-pi/z?UNkO M@?BoX~kfk_~+dsMʣb?Oݘx*y V=0u&nǶ?[QF@,JП]We9Vk<C&"G\7~TB2W_p. Or*~~_]ҙZȋ-6uib&ɾtփ6~7YgeH'Db^];B϶MS_\VZK;3L1+sV[yj-O[ϩ3=YzuYx.}[0lu.?{bf}μ{\ /'Sj4JG-gST撲~t[-{n3d_ĸEtEߕ~)>c?Үs/>lQ8YF⴫/O?Gk9mfǢ}m_]:,8@<=C%Θ?[__c=,o3|^V慨߻O\0u֯DY\{Xy_!5dg1V@` ,Tk_?yXs,ø{tg}\C_[ɳi'X?C훧H`ɃxłֹQӟųY>YrS;YH&Y>jX]M~?Yn>g8!s߇J?}Lb$|Ȣ H?Z+oeghљ#lZ%A7K\L~gyys6;‡9) :(~P1cs1)1?l =~iF_p.h+u.W[8YP7b ?R.s=by6Z'1Y)Y1+_MzxM,N~rgQ&g6o:\t?XwZ̺`ک)7.ׇZ;.5l} ]4C׊>o"g0na@m/Zc 3/+d2? svI2fjc? okW}Ӎ +񣈝>,9)fϜre,|˜֟rOgV :γ1B vgA?8\:_g ͱ˩S&pnA6ٞf۳ -W,&̏=fi/_,WG~o;1Mޕ~Y!&.JFo-0!䝝\P{O܇s0113u9G5lx&Q/t*9{ؽ\~u]!CM^y~!Rfs:}jRKEuwX-/͙eN#k:߈` }Kt?^` ?lƶR^ym~ꟓe?Iǟ+( |84g FA;t& e1s=ao*fMـf-އrן9 7J?2# `} Og}m|ߩWO,&sc_Yabۑo'w?g{oCgg{F~4|N5簃bw{9-Ol+#LIĉ%*| :cv<ßJ?%<Тw}L@l}MNz~9f! 4V]o3Ws=`gG'b?iA2{ O<҈ϙ~q滲y ='Wk4S,r@}q-ۙ{^g[^B G17)18+\X7XTGB1'11+J,b?'_oAއ6}Ԕ;Br`ð[`Ja.̿z0[4shkl8bVD3WQ\ͳ=h33sx[/\Ͷaoe>Jm~Ge|* 2gyV ;[a'v;]1bL7q_ߓ}yCWOJU~>{އM-\C@3T6 Z W^*~^= dv/d&rOh`F?s쥤Ϡzr{/t+毬 pr*ոX5iKuT:o%9Ù9"1;mZ s_ >jm}gw{Ѿk_`s":-py^M?'*g*:?5o ‡p>EȭO0֕~cos̿zM9Ż-DCSp>_M[@?(+-g$-4Ƴwu߾ҢL~٣􋰇UcsƻhX?ҜV>mDA?SkKmwhm寮K Y?h_1xL?_ѧ&f6nw}A?9sw~YpC_|W4moWC 8z#-0-7Z Yz"txL[׃O>R'ce<`Qֿ}J*Y`϶G'L+{ ?_ew~gԬWF;,*蟯=U;GΣmgCn}zϯּ?=pfAZ B*y? yl@7a!S2sS?gL϶<;A2|ӏ=lZGsMyQ)ku eϡxwjyzgkյߪjLg?#ً4χB>36ȧ;O5t3l`:̎8-ow/Ww,a ~5v_ ?W:_P ,V=q.97y|F_Q&7kh]qVJ}Z@ӔXYA7W(ê5#Gu)_e]fꁾ8wZjm@.C-rm_ ߐK}O=aq y 9N\3}2}7rЯp?Wk̿iQ{Ք:lYh-XO9k2t|A*4ijK-f`k߿l?^.$b}zH–Ƭ窞CLlaBsu6؋sm+aїZ]g4qγD 48 yGM&m9_g/ϐ-L9߬0YkI׬3Yםig5&K{_jk1pO?v Wi}gr)fi6< N}`3 I6{xmT~_heLz=W;<Ĵ/Nf+,pV盬pg S}rFX397gru(]/JYVGC_R%ld=Яy(h:@?΅3^)Yge-i&Яޓ5VhgџjgǬ^įS?D[k*^ΫL_ͥh^qgE?y4i?u#ɢq+qu=s9ʻ$eFM?q SӮ:f}k ʏj h"^Ӭzү9+~}]ghnGbL_:Oa~r[߯Kl2~Ϋά|UZ}']5{/k͵~X4l8"Zn8!GwcO}J=sJ,F }-(4|g+g1&9a-Oe(:j!9gR+,]tE^k>W;ѯ9[d+zδǾ2F}ڢ}V£JH_lǞOSU~ e؆KcOF*~8{z!묑93m}n/5ԙF?tk2}V>6Ut?,d|Sl\4d^&w:{5uBϛ9ɹV3[ќ%Ѽp r}Y}k-mU Q?z?꼝s^u^Xek?-PYm5lsuo*}YYgkY_`пA6J?}6\, ˜ i99k- k 4O+$fiFߗq.~~rgu3l.mw ~A Xe/ އ.[WS(}6B๘Om[y]ΓQ;SϲKZ:q%l,djuk߻ґN8(:؆^U8ux 3 +1P0Sţw=kg8Fo_ݢX.~ cm_-0D0Go|nSaN F/,i/SOIkO`nuڱL f' b>W6y¶o;q:sq>{ygtZ/ w7?ҵy\C=Zglf3՚Y/'cb1? ̑`~&#̑`#?;L]n)ǐ__uRO#gAgٮsQ3`s;*ekZ\ 슏cfvĬ1? z  ʾ)ubѰ2\8\(} WQ}Iqe=UIřy5NmfLs+gL3Nӂj5))L{V]ceO 'x < ?W~&޿$9̠oYm=ݚ7嗲 ;k-`L?{ م w+t/C̊ }Y_i;WŦ3 W~͏/|~x iБ? @ۼ/bϦĿm,o6盭Wg^:SU=.l%Vq~9`u~?Y 3oo'6]iЯK\b0F_C:CG8ٰYM`qvM?Vq˞0~95⺰~1#t3Z?]?~֕_އBl} = 9C^c3 û ?u}*_93~OʹBČCoLݟsFLG[?_s`D}1 g+_ttzϿ;`GiFԻ|6/~M{X'`s~3#5XܳW9s#*éS@sV}ŠY'esF_?'jlB=;S/o_.+x&?R,=ޙ5uF?V 'Z6kga,Sut!sp]9YOb6i%4dz+qόqg+4%~&33Pyiz AY1~)YMĽYjԟjO̗W8JXi1?BK @Wз w03<)g֦Bϙ}Z[?-+kx<2z>dglw6^эB?hbB,m},l)s_]G}?'bjqEw`w 2 ]kXih?MObd5#},ic9D˜qřakY?ZڽSs>g5d bQS\+ךT9 $϶^O30?.lן5g^:JY֜dg YNE-ה]  D~v}4i3+V?h3~NM` ~J&*k!Zkp]:;xtkv\kJ-z Gola 6 (~]׸3'X؈~y`-l$ޥ|hW؀VY(;gvuOGߴ{55v{ϼӠ_{~g!묬4XZvhX;^_KlơmuC]8fcu?Ӗ̳Nόۧא_䰾je:?k#w(]ބoJ^,G,S?~8ukt9t mpj@~;@>?dqt,iFψ sy`NwiЯ>0' 7-3eg ߥ 罚}&p|^_;Z12xYtx=orZNbh,g + Z^\OAv񔦼?WOgow~)18J_=WY&\_ds}jI[? :#UQ~1au>jRĐvgB0!g>R9 \j3~3|4Z}ljoCZQsY*w}93_5t&1;_ hMǻx(߁.J?cw^zo 3=s1'MGsV{G,eVq?d?c_?oA. ]~ԟ uΰƼJc釮TI8S/8SϠ3i[jՏV]GKOmqi_gx#Av?iqւY]\/1. CG]g8ne-Rkˁۜ[O hEp]__gO']axA~'x1wZT<醼@/=&zϟ/AI?"oNϢuvM:niS:vnrG}^JqVw=r^¬O2Ñ^jCus)Z, d#?lݭ~7` &+Klk^eΘ%6OS~a݈/Cg9O󴦤y*+r C E/|,[yϦyb?6zEE޿֕6h+s?9 +"vE>\eX{VuX+ul&30x4m/Zt%OiZ?b.}ӝo&Zuƿ?k,}@ CۻQy6 Gיz~ҟ~+-r-[-'me-CY`¨_=W}FkN7 dGNjm~krM[}^Ք4gJ?{VZ@~V3xEN.+ D_%-ζ;'-xVL|Gse?JEy0g6y޼u%k"D qU:_wӚ{WX_`د:5~T[L}[?tqK?"~GZR9%_CVTοOF?hfK| ^ù[ԫD,u%㚸;C=TW{YUfsYGz*nӟg8VK:' 5`q\o{MMĎ/hJaCK-_c}!F}54t~V|JGv[tf-qngq?5okSOe{BhwsK+a h-~&):v6k/1[N6'ɩM]M,{zX9#އ,Þ4wtYƞa3%On ܕ,1[j?[|8d{Z_M~ywU|1 ^]E+/tV k7GIc{e 11`6m~ĚdM9 3B4ܬYJ{?4gնuǵ+lO+,7j֟ =ΕsNB{ү>wզySw_g5:Sٳ }?l,t|O&|R螿o]v|Vq9dy_/35a\aҔ!JҲ{E6vHU~w3ԟ]U|Vƃ(FϪ_sFڸWen;g4+ka]ӼN|+4i/?ztb,Z~,0Seo@׊MzX&wVb^R]4?lr_ }!}B3[?rFy,t"6P9#W7~w6w5\x^l17BBq<?ÿ^&5F]gqZ334~U] 4#ʼM˭ 9c @y\crJ9RV3X@]g~5l z>"Xf^3qͨ?'h8K 5~δ+"؇lg~/Z)m,d0| ۜY=(=XSYr=_QҼH!@6A/ dV1O2~+W3z42׆Cݗ+_RΪV:Se;LNЕG-~7<YseuF:36Wg[=Z5dL?_Q?fq.߯_9C~)ON.g}\Ah.B\KyXd -f9k1W?SisOF?i=?-fO1sDFMTgX].(wmu"u[[!S{Yer:zS[mT9ՅW0~{\{m~*Xl ̵aI)gγY8Mg5Y>cZh5sP+u&Y*=< #|i4o6J?B[>蓬uO9/>L_q+ns[F-6%.#@ m)u.}?SZj]O}k-ȍV)uuH:ssm}/͞q֋5ZY7Y7>sfȳV0,j\;bzEVgޕ~_eFȳisvkٯT'gˢ<\!oe^ 'U|H3Z*9=~>7!s+kA h}9FV49_4;Uf'h6!5O?o\k}SG9?̫~hgZY?lqo"A6~gYN`GK+S z~?W: Ě t,`&0*[|gs6`&2]UX!@ UJD`.Ap@z !$*(E P5^7$4 Ex>Yqryg?k9gƘ?[I;|ff 79=fO4s?'t[͞񋢞tʎ)3C}¿r\;Uz3<>󹼹#->gb=U/91n/kMIבoY)Z.Ts,澐 f _VWW [\cǡƿK,@/ڿF'|E-,%fdo /6򏞠?Q̾o.?g~6Y>??/;~IFjsS{Ls^o~. ,gU?& nsf?:+=kW¯{n>xM?/v^1U~Ys&pyl)ΜV*侏C\o3~;W  gFcI/{*`fN'{7H۰w^1^W>s7.M:?`Ҏ|AouŖ>;ߌ0{~:8yͩmW ̸*=>?FKQlxlXż_zwq*WC_OU8#Zetbe<|=ʢݸxJohTjo!>4+ſIl74,ӹW*ȿxyF+LeUqq5?2csnj#RW}u,}%{G,jWbFſ*d_HS+lhs׼ű5Wڇ۱Y}`w-sM|ߋ{W? 3m5/r4;8So}1γ|W72YelfO]Dž/Iҕ\ŭUj_WJ}'EÂFߔ#~~"| r. I❆q-i.=Oc^bI<-1\%?u &O-ر{eyh2n5\}fcaqyJiʟ(^~rXswJ}5#_{ro%Wݬ!|u }r$F8 ZEA$_Xt`l^+r&)|9XshVd[~|./;ts;_.Cͱ{x.8? t64N{g{sWdW~>^?'Ex; isﰨQ{uY:Ingf'κ^W+uUu\}NV3/2/q{g- ?0>p.SWD<3iX7:KKyO?`؟GB[^nuWsA2a-+'8O"==2N3;}Ƚ,j.)wZ5ᆘyF'e{>㱌53pr?[_>{GA;Ƹ.{aY:GD!v=$joKS6eD=GeӾ;U > ~T+n>0̑3cgҠ;+Z2ˇ;d\2:)?k?0kM~,^~?bS[/\[W…/^}uUa_+otZmQ-Oxdrv|?ߞKdh݋ckX\}NS^YHկa5_<6\f>7^)j8s))=f%@yB+/6b/k.> ,^4{U/?:<#n[ȏ"J˨U3W9z]c߸~\G?+ـeO__9Z7ל˨ͥ_}g-Js Y+WuPyn%;5P՛ܟ D~N4g\W)sWHɿ_eͥO&s;oE?k/ah~.fy.>9~~_>1h:%]J9Sk+"RqoV{F?FOfɅ\081%_6?Foq~,X~ϧy`>y'}^Bwx!'cy_T9| gYAauA/z,ܺͱwd;N߅^ ޯ>Gya -;Ks?6>,(]}YosL3e;㻰cAq6O6%=6bs^s3TWg:}o*I3{/cAHw? =~/<-Ƶ`+c᫽=Sz\qg}=60w<ǀ>=75)\A?g[׳?jt?{~X#˞ ^' ?:--Eiu3]+ ?5ct\g{>@>$]14.tؖ9q~khw }.qaHSyv%!:̓w>=Ft}µݯ}=)ٞ,?~/hG{"c9+9fWWo'F|agH௰Oq/lj9˛^_!,Ρ6z/J}y<̧N#}}6?GqYЪ{7OU++lU5w +宰CE;r=w3c3;>sxX} %'Dy?*[w }Ur E\ȂUǪȍf4u)LON+h?_{l{٠YX':79"A/+cѰt}l0vsD+9_K:$hghc=ǟtM4uro_hı7J%y)'훥zJ3wHs7_:iyW#Z >3WthCR4"Y?1λ0~i!ⶸU:w*U)M-\W+t}"tUF;2v&ya:,Bb Z+urZ; cۧY`?$=Lg`-=Ap~&?S[|i磆1|+ZZ?#Xܯvs\3z>6T Xx9e>LF\?hdh5?LYânto>z#y쟊}.R }eڗWϱ\Bdm7O*1Y{\Qǿ=JSTŞTqr<%}UTL|&8|fk 7Z2>={<W,\8V~s:>s)ȸl.WbN؟Fay>nXُBWA?L3݊_7ȗvx]Ǣtad;هSxRHqrt?\߹v޷?Mzջ$cTs$X`-yN._^>lI^(?*wwz/\/s'o{WgGCoǣU_=VA|U!J^30mAg|-߃&jC^$i05m.9}=?ϥ_ 02W:Qr%{a|.UR3GgG~43J,~yNH0S â>L^x*ּz]o<֖׸La~33Sq>kb4[9nU:[d܎-cRFqN+M9yqqɳSU?R'$꿎E򒼧W,~*}gF/%IkM5gsdJz8{cjbj3s95@C{Y\ I+}f{ُWe,GI7<'XO* 4Wngn:j) mo|j~D<.> 1_PQ=$MU|I,{M~>cOoe+.T@v?N c?%w~Q=Ak⬎~j \jy~bω6&,IkMl.vh']|\T/~51L\Fs|WV}o ;+*r~>Yxݖ_7U=bQcauHytϕ5bbOe'qQuq\fJOOݖ;Z יDYH͐siE61l^WyQ| _=uvďzduT?ZWŋ1???%_ѽ*UҌ|}޴,CGl=NqYkroX2"?M h1b-CUbڞV*^NuAz-~.`-{ߩ+z[>k 꼞^>*+1}."8>1}?1/EzLS| ewų3˩_\E\StүUUܞFO}^L3!?nV}Ծgղϓ6YTof?Ϗvh:ʏ8;w/h6ؗ~l.u#XoZ{mg|.x 1sv&z}_k牯>=kн~g$s='-C$o=vjfyayfY~Wf?Gș|`90~65f >Kȳ`~(߰08症 Y?Y=μjE5|I9-1p"͖n?1'}g=W_z8gyWhzXU5_Vw^_{?g gBzɩhg_m. Y<0:ͬ 3$ 2l9 Oa.^Ud~^{lfǡS/k Q*rqhF+3?R}_x3]ev1iΖX&9püνS7Yuo }NV=zr>rhOl8N6Wp _بw9>q;^U 'Wz%}nlShud|n˄_~ʼsKe^'3כ^y0y[ӯ>I:5F=eѰq YB7~+]=w-I7 } bd_Yͤ/B ݾS(;#/KRnd{㫣L4o{&\ӢSMoG`1ƂUܹu[͌^pjP]e7 1hsfk3d{ ~e.^k; YK%3/=%nEwL.<>G&IO):o)yʽg<O?oKpy4<g sc;wI .-cl:AKVQ.J.֭>jZd<#رVb_l+ qgKfe8nw _ϊa951;~!{Go3FWG/4[CN :L8<>dXž/s—>.ϥ_I13Ka@0>3 ^̥_T̾";,I+!W}Yf~}7JY+ؓ~w9%ċc?b埉Q,x,grjFe=ݣa[h?OֹUUiV_v>lXtsrW}@d-ś%h.MIw/ݥ5IܓˣaN ,2!%]wϟuh8ž_Ƕ;#OYzZuVZp[Bb[\Mߪ>l-U1?h[5ۥ|ͥbwͺsYH..QK{\WAI~#_{)~Z*q/,o%Y6So_j_U}>{D:(9\U Sy.V~rrC3;6̽zhoc}\\@,_ѿ&*cn#cmLZTUTVrs. ݚɃvEڒ40Zvϟ1m0k=$GU^7T?&G9<:6Jq0ol. {mMѰXU98~VsKkSoovr TW)tn=XynwjηՕʳ).b?ce}lɱlgH3̶B[t[|F\v* ȍr Kn#~q {y_ Z|29q{b:ߕ}l  ]Ӝʭ(y v1?=d}J?0ڐ6t>u+=:osdgz\jz*u0z8ΒB_W|dt՞* eK=qD:׹BgvWzj]bthykZޛߟ}&r/}#WqoJ/q}1q4ls5hA:~%yż{jη'W{/;Sy R&x>"K d9I3N O0^y=__ya^d2M 1=_!GXO=\=g_vrRS5SS/+%`\>vJur b-`cއ<*uw;z!qr~?Ƹ̲>:U+UsyyEN@Ayg3ӗ8UcStX\=ϯL޵o oEᗭ~l_}دv}|~U?&Z15|!g}m?~D󃞳|esk T̛D0|]_xQ.~q?y ?[x¨\{yʯ<8s}S}J<{\Z.Տ*T:}A%?sw:5ސk^w̒k6Drh6]Sתe]yp϶-撿|A3Zsue4~i9;#ܙ\g4wI."a׽e_x8c?~Ҋ'WxwUE'8׹,ɹ{mAFΈ191$6͹ ~Ysx痩&W)v%:!rwʯ9xUD="ڹ{D}pϽh]y N\su1'oEEG:fx_9l˯5u*__U_#u__{~s{<ձ ȇ^kY9\9~_yXksM~_cg񌖕?n?N'>z블_7UqkWu WGAfM33Egϥ_V?X)] <ӿ1~ >t2YjUW'G]xdl[UWUe'j0^\\aW94?03Es8'ZN/cgs YWc^8Wv|矫e_;TJ}[euCoהFJj~5˹wl4_-/wf1֚~3{j*E{Yz}\Nג}Wļ휿濰Z+#pi6)S?K?|~7?WS}D|Z2}'oxWV#_UqJz:Mr W ˴s082үAW /: ?Ƣ߯Cg՟EJnך~=\b/Bܪ^\6uj~<^ %w [.q^z{8q֓ Kz7˜?7|gwUq|]}ܝg)G:T,lz ;hc74΃j:aY߹w(7|9w3_;}BƖ?Y?oK}U􆘞Ctv|W__c1hx_kEbc2/ҿgy`𡅕@eҿ- ?h߹˞ncr%[grﱟߗwf=އv'Q+)L7 =߹ \&~hWEϐ}xY9?|hʠb^FWb:w}1S寪uտQ? sn7\Yp)ZZ[7<;"ZQscWz~`=ѯ_|H, b~5\U shfbU;h>5}*Տ(P~Ng.~}z c\s\ko+Y ,hx_ɇ뛎,oi;[#sz%O {`<:z~u.u.?s~\{2q?=hp8ijb:׉,}EO7U[i=5_D磒n͐T1KE~ѹ1pk.f䶘 lsM y.. ڙZ5~o53|jRNWkU~u{ɔC_Y=' |OK"ۻ <>/Z3\=~:?g%?^hh> ?t1/?nӺuתa90Z>~>&C-Nu8d ,ñיYH`)8`s#o+'j/{y^b;> ,tGIhs^7g;X?}Xx9෿1~~]&9 sD|9~K'I=Os޿SI?8:)D;UgrƄλx>hsVJz:uQǮD=g* 3g&[S^8{ `?/Cۭ+Vs1Q5m첟oDohZ3H|yeHY $KS<}m?wbAY)'̗[rR9i_=z'Ghby9 Eƹ qΔz1ԽE4fO->s4[z3n@Y~p#MOl9foPXz س Y M5gI8‘"@ hw|6G#` ;&3ƹ;ze}ya91^W_g ?ӯ>97\t:7%T=>u"EG;gΞݒ|ORFbY-Ka΄=ZN+vm{lt(e?ytF1zlX {EOmV9-_qky`>ς+>|1z>C>A:_ʙHvZfˣOD;ߣB\`ZJ;'63ZǿtAf>E˪NDCm%Z 󍼗_z}~-10㸋}F}z;Vy*,uuΈsy/g2c|fdOC"z?|r~oWFin|Vmg> }Ǯ*R9+Z 9d% ߧS?iw}fUh1W[ſc~NYI~ M`Da6|6?v%^A l+~}w=5he3'|'GKwLMR=~\g*0ډѵ׏%oyvgm|Pc;*9_/ey71> 򤻏ߺmxcan-|ﬔjw%z^9gE˵U|c)O\}1v 7H=Ex:va>G4Ng"AѰǝfQ8@ޯ+"ne.:{g_XFЋ^t5[b!Z @Ɖi[<]ww~赯G _z.?8$u>l`!ɔI4r\wHI^Kݶz=bc_3VwGv_|=WgOxV^IY>)>Ц|V/r*-T^`vڹf.ʿ{əj% 1"~vbJM9umgN'qn5?U>I??c! A#c3. y8m,76I?y?gz~P?VΓS꼧~=?1yi8/mK vq߭sQ+W5s}W}VW~ux>+?`%#O3Ȟq%/CsF̥_cDݗʖ˿dgɇr';)/?;ks'ϩ.r-Bre)7xuX /Feww+>RdXԏCϥG/?+^*%{R~TO➠heF>5 3~1֞:s}^>ORYOgEÓu,=E& [yF|,"zFetZ\WOϋq%]u]pڔbWL^9[Nc-^ޜ<>n\tҊ%i*18߻zTΊ?Jݸ ;B+Vw} ;g }=E,?H90E˰-1tS=InF1ډQUµz|un㔤Y`hWW< cߏ_ʾ|<IVlW+՞T~ˏjWFϪN:򛑾.{_uϼΥgw|Lĉ5h{|~C_||T 5=i{{EOFWA׏<V:ݷY%z{6~6}e3KŃȷY4,=9K5R}_-~uw{X>A` xogF;y-8?kR_ޯWT^qE_\wxF.zYo#м_iXh^s/dBS _3aNn@+\BL^-O6@~|!Z=*< t:y[+N/T#3}p*T {|\Y7Mޟ>Y}(-yBasG;{5kKs>% îo|e*~V~+k˯K*^:zްخZϟHO[N]1=U뽗u5wx4sy ȿl2s/s:eMſRL5?sH v&2XJq~u<<ǿzWqtw|^_K|]i|y?=|ĿKϞ?6[oxjTu\j,/XYFzj\TzW_Տx{K\s+Չ]G7 O̿,W?N1FϿxl2_Us*~Gg_o[H?<ǹb}67UYyM׾?u&o/ ֚s?#w2W#T7=~:OCgx~d#T>1z̲ۥ Wk)vW{;97~?j.Xkϥs>on;[㜨_%gE>X!޿yin+YO~qt~ue=[W} }~ʟx?L5dLyʯ#*xt>>_ ֊>☁n//+?!y?Y~`G1.WqkU?zX=y]ŐhjͥjLſ~oĺ:@Mu~ylz\7r/L9='?-Z^kl_+[a%?g%m u{>M=̳{|§bWY(?>ٓv~})u1_)=i$a0s)*+\ zs^ߘ|;߻,ieֈg#+fH|NSXE͹foX?r++c޹1gn?ͭhHm7q2}6"ff{o{=%j~=9J9 ;na??G?K|E,b2p7ȩ^$f͙ѼۖX觰;~a={U#彻ǿdu*<~~f_ G?3Hub~&̞H?FpWU؛O? _Me~?G=߯%Oq\ E㩰'}F{-Rgkf˱~&O9++Gr\z>G~|VkZ'uk{[=JsWI\z$:o6?h#x6[1s闟|=q8%_)7h.c -ta} rVJs=dXے>}cŸnsOZÀ^DӋ @,'|7kx]sq, Fa6}\}bwf״z\.|9[ocu G,)aC8~56xsǜ<2 axF*(rc4c8cϟh/b.ϟ8u0 s  ?}GGp %:Љ.2baz׾2,0,ҿo~ =v;'>qݕSދi?s* kݸѰӣ+=֞kNS/]}V{^'ROY3?IY5YG #nK,[\[ xGspFhc%l/[bJT/ϫ0 tFK-X{F;ehxYb%?GGl,Ύ?w{T^ iVux04?OS| {@>5v305\X+g \%+UXue>1cs:.|rǯJ\r~~S결M)xa>CNlga0ےt6W/v`J^7&R|~6}fdCkoo1/108O^85} J>N .CЩc]:矟Δ\ g;5[Tx ^<5]Sy[.`/s6,R8GlErwĖzO4lG塱{FW#\8s|ΏP>h:~?D>_@?W⽯eb\!GĿ3hxk6z˞-1>Dq~Iv/꥟\؋{@'C9߉:]6 SlE`_9W$O%y~Ja]FKgS7g>{rarA}]/z>PKar^SAF{ 7e?k;gŽR^n=7X׎;'ާ$LKYUEO^}Uu߯@x>'l ܫ|3K K_t:&uu,5;YFC/T`?_{C+9B_&{#v71LQ3CC*?z&vfu_bWҟK+>PdQM uuЯ{fc ^m_$<}P;NiH/?H=Ŀ&Bb'9+ѦpQ֚ߗu b`H1^oڄsa׌2UՔ>8c7RF {gR3Kn=1γoV}V<`_W˟dS88z ޻K-|^#S3 B>ǖh:ymWEW>s9s%Г_o¶B>&]rռʰ[vUg oK=0YZ"5}|鄗^c<5,8|*゚c9⼾4+blFrof0x~icQ5Qڛs-k[ogG/}=:+>ĕvW3S=a[EGn:4Q4ԕ;'>'%1>os,trsf_vA3\34wzcߘWo~&y;#ic .&r{sWC`w{^rh!>/q퇆+~l/tz6ƴg(׎?RŔ=.W穼w/y.Rd ;3{yJWdH7]W?_9 ihWK)_{}o4{xTKws"sh"\UoM=9n>䞃lkuMܗnv=%XwL/Z< isL~τ<<x qI?}䣮?9ޫ~-uߧYERsm{U{Y,SlY|9mî<[w~v\*壝mx휷~ީǯ=&꣼8/{sXxK1OG?kd3 ;x8u&.}ήWkgXNãw>K^IJ{#W jy|6?+~2v;<+OHՋ[o==/җD"^`Q>_ϾxI,b(tkF~"Z@Fÿ"}ho wKYgUYΒ˳๰.ُs S0=3Sx6Ŀ}ӻU -\ͪn[id:/^EͩGSu"l›'0f7U* Lݣͷ>`O@~yZrMF/t0ۥwrM V Sw1 ,4swnh WH`z WGORsV~pU l% r8YQba|.R~R89w^s^Nޑ&pԤhX7? \Ѝ9{+WWd1*=jhz^|Np6pЌ-iZN.+_9&>~Mc+c\x_F,7:ٿ]g'mVϲWE). 1yg r! گv֎C;ra=VuJ-xו<ׯG;W~'ƸM㬨IfeӿE?)9ͱIyF>;:W?9#zÉvE]|iե1*r"]uY1T>u+W,תy.y? ŧ@O-soE8> VgZ~G?\g4<N._an}p4dwO s}J5Q׏dF+t{qgdnRLҭGK0A!{b| τ}{`vxMEThՓajVA+tF9R qtJNY{>zR?%i{ysz=_Z:ho%.7޹]ʸ_OEk.'_}OE󝯌qQ5yd*75 /Z:rSsoo3DC_Ol_ߑ|>lO*o_To])O,)E.ʡ*]Sp*?|h;%y~;,ϰWwʽ&C?vWYW$=D?8}νxܧYbz.#' Y|FC{ƽ>?ܮ*\ ?|_J߫9D{b蜟ܢZC~5$Og5YTW ƋO\uދc\s]kBMŠOsWV\zjWӯzc?}W__Wn*|W&!F&' 8~T)K\a|=q}t\~Z~n]}A&OM[12*S|0/+=i FN˒W<ьKbk|ך v}5xoj.{ |>hZ]>69C̑x_Z󿢿BgMȘdhYk]%~ג{|k|7C{_oY=uܪ WG8??"~il}__j|z޾vL0_+:[K^S* '\6|iÖYk=Uϱf?WǶ!b{Ģ'K_&+q.kz|cy/y N?2x_OuD\_̂b8saй,m_]xns,^X&~\O^w*>^~\lEsbwt> WvV9>.V EC>:׏/xϪ}~^_kWW-'tXEb\|d(TxF!\ow@ѹ žXkJF}])^GϽ]~|_W!Y(7qZHKDYZ.}Nu r#FǙ_kM)p8:7:݉5.5{\{8wnoʓc\n5ZkWW|c<'e1YF>wbs۷sU= `s7†/Z vAt_.ZeNu=YL/T۪sykzΌY)]?/v)jW5uC~Jg茼eooge_+? U Z)8j_;=^zHy룣"7sQE9V˘SXbwezu,'׈K_~!_cՏ:o|]\z)q_Nyb3h<@ޘ3~|Ӝ<]b/լ҅Ofcq<@-sHs^VC4bzN׼:Q}O4~x/RQ=+yyR:FLJn{n|z5gXd'w|~)RD4le_s>c踈v+t,K[.ufu6bY@\Uah 9^Ԧfzh{9!i0FEyŽ nT+壦zt*uh=3ݣ.^MO? f̯+z 3pAt5fz|^,,'ah}T;{QͥU=֪'}86NC%_qoڰz;yP^8,We0 Zdwt=R_MaO_j-?Ǜuݯp6u5_}tMdgt^W Xgr|{|-v=z>!o›1/ ?Zܫ"y_qe}tP˱ipӼ-C9$d/c{&>2׻mƿ-s?_{pF}|1J֐{_W|e\~4 ۆ#6k3bh8#*{\>0~->&;{nhUp˵‡ra|;{{$%{#gDR$v`^qؓ=q+{A1LɋBGan8N/!:bcb־ *YCzރCN4pv}}l'{ |Da<$:R>ǎ)'0ƕ׾(z⋓_ ާMUYagjfUǧ|E=^?A31 L>dhgnhؓ8xWMy} WWt_BV_߸q4_GPahg0kzbU1s WGU[Uv5彗=Zގ/O #BzW04|F?6D:,OߣN?9O寐3寰ϐ'lG~7&/c8vׇ!>U'5)=o70.kQY)3 |7ޤY]_As'0(i0,]tnDYhgHwq#8ߒ6I':kRg4,RY)5wgrzϲ@4^ϟ!Vr]ە {>όi-O!?=X5za8A/{ϋͽQy}ҬsId-.3Tvj%}8co_4cڡׯqo胷I'm>UrTCá6;~WՏh{eS1'}5h#SfWC|)+ߍ*uWs`+Z ]|-784iVbyO2ͷ ^czg!:BE?'9}ɏ,h"C 9!Wdɱ_b5_4}r~r?D;K|kO'][KOz.Tջ1~D;kJp(wH$AsuZ 1}j_WtPs:BN.'exWS|$wHwo;4 Wz (z,O 5ڙ0ujG.:%kx_x /M36?G~y3>< ?|=`?`r:K-@_v~ϷھSVuSW8~S]W~{qYr+6l篼,W:AL3xNghWדr*K;4YޟW8/43yqkv~_ =zݿ_fzo/ۅp\檧C#埝0?R?g#w>*q{۝wNv^vmYwcN@.oOTҳN0{_ ]V~FG}pES'V#{Q.SO[$}[{:cyUsQ*yzKS>ׂ7B%+#m+v ~yKUe}_y8o?COI{myodv[6]>۸>9pVvL~ӣ}c#/~U4LEd 9]_%6םTbd]B{=_Qャ}AO_^=s%/ȉrTO%}6tv׼ W?=i?V>]F;Gj[s^bq;]w†a_>~ U{˔/[WvM>oE3\w{KA|z\>'ھSV_of_} O΋v֚_7\~=-ZSǵ*O)/ !Cv/bװq؍qgh7^0]}dbޕ%ωH'I׻'ʯ~ Ϗ==3 ϷhS=WJq~/%~gjWc!>_[cQ"c/faU 7P7-Ҏ+zꢯ%ch [+[Mo1Ln>9_MM>KHs}>}S X~Ϗ>ju;guv\t*on^#suwv3//J~u= Z1Y3p?S1/:,)'h|w9D_tc^Oz_޿ yWLzɕ?}yǂ@~~_?{Ȼ)ރNI|a^]1/k_qkk_S|N)07OERE-ۥ:WxF{Wv_7>[W>[cQ1[?>hg W.~z+_lϲ"CexOhE?]~?;_}fOCg.NxoF{?tW1u^is5K9A`Ԭ㛢սwS[_ KAa1׵bvUh *^~wU~xF=Sf3:*{b_A=of|C'\ QV}hg,ZO?Uo>[l)1#!Shc4uʎ޾[K_/ֲ/*5WwjtN|K ZÇ}U._(W_ۀoUzkEԏ}\mN~RrS`s>v\fK{+.kHB1Sw#?ac\"7{͖Gy_5V+[F$dB.LBQ@IDE!dhAJHmLnwۧ[.|+]/} $@ % !A((H!%??^gS>P:O=ﻞ~H=E=PJx^-̐|\g_d?!e4ORM^x!l%ߏ6.֬.?עs| ߙ6-koͻ7I'r~3}sγt򟎆3r Iwڮ6ݒ>EO)o&ÿxDN>:It#i߿&=O~~Fs'd-h{ }zg4DƟ)GkoLKο;?gFq,\ 3AU5go36)QrqvG^v7)gC~ÿmOq0~G1w6Ikz(3{}{qУAm`i== Cf蟝BYh~tڥw#q;xB?$89ҽDB/mlR-mүdy)ϖkrY/ol2yC%>\>9u}T}]lfy}/{oSҖd.e9[9h icMFkjWLg7+?_{WֹF{~c;}ڭw@X@羞ʨ2fnO| eQ{,Z]oh4e0iƱbʰjz=>_I|8^+U_Y9ڠ*ŗ"ܓ7ؗTe n.f(s)[ˉcu| } Kߣ.@bohkU#RK+E?;fdm(moB?]gO.?83S~ߛ_vh;}m[@׷?6F|} z?֓Hhe+gDGz_핍ȥz2o9kwNfs&-739哫"}J3;Kk?r:{xVgĽFyί#nOݛعE&^ۺ&9P(y.gdz%5g;CP ?s?t7.B~gל - z+'zg̛GMQߔ?S?n_c~k׌SW'7I{Kn Հm-z&^Y]Ϳ/q_%_~yK|Fc.6m}狢vޟ߈[̸?wRzgJ/8>F[>ONGəBїz?)o#z~q{~}/`晥OZ`gy~rƸz{?H| 'Op{?Q_L?ބ'ߧNy?܈tg.:cq;`__k;뽘s`V Y(?p_ wm%t4hz'e__fG?5حݓ9ⶶ?476Uۜ~/k)~ע1yQh3sjg>G{/n?sWFf=_34f}m3 '4?#5Џ9hOEGI30/FI~uFlI`?e7귝h3&9IhӘ46OLJ@)xٱ/n9{IO9c:}7~eO^mn<sA9O[<Okx~h+ڎֿt۽efp0?ܥgX/?{l~ '9Ց4/F!GO%mvś<.s)ߏVLGm.-fޡ3;y]~~&M噥Mc!"I.39j3!b{׳OyeIiS^Sv_y;㴫Iy5̺?yOh}g}f}3~G0g \|ad%MEl4ٲL\bؾ^$L΁< \~~XJD?W`C9=oG3 ˂{cKW6Zgmw _nv6)㐌9R?&f9o??ѓ|2)02e!6:fgMΙ_zv'yv;Uߎ~~W;<[)ϖ=k99lk6Wĸؒ%fvyv=I_?ql˯?+5@V񟙅dCBm+3O6՘[_i>z7%4rXzǼI,_y[oms_1럍wb6{5K#?fWSNE~h6M]>smK'zLV/ؕWt̯!{ߢſoII_0(}hj,,uLgxț/I|_̉w>=ףh}`97秢Jai1dODl|9:mٌ~h@z"|S7HMAϤ^I9H[lagq/$0˝Hg_l9Cg+m2 C0%y=iKY|{%'; ZV3h"֟̿ ~RϐK׿TJ!iuA/y(PK;ν#-s}}3{\͂W/D.|q#mokV:y-mljNr0){﾿\̦Mxvlj}3L &OKFgeg雤~>gz^wڭ_=F2nf`Q{I[|O_>syq@[@_}[G2yӘϕ̒}\gWX4{IrL_ׂ&rA埼7i;f'3 5|9?^K?/e%-Gޗv3ߜhL흲/>ﷶ6mg֫`ϴz~{+ h}OG8Ģ3!ϖzG4vN/=RV25m23~wsqY|fM3'ʘg/~9j?wm>i~v{= Ň1g~N!i~y{=u_mlo2;oG}Cџy?. Rh{ԲmM\ԛv%EΦ-M9N9Gg\|o ~=JG_{;Z]ioGrv:U>dv| o,fs4u|!Z/s__wbbfrfxgP泓w,36chm_~_v-{yrE/BݧvL}и|{9WP^km?~Ac\bg^.g}:6sSo)cx>&ٛOD5:oSɎml~c 1wF6?gOx9p*+ q719fEKf싍MY2K|Lke\4=,|ľ3f|G9j?W׳1~Gg\[qǷs38cg>AbQ_ oD^OM~s։R8s)cxӕcor<ױ-yz>5Z쵱:G)H13^o48βүVH=J9}g'0u4+ﭞr,M';+q湸맢|9ZW]{-̰cIK٥7l>!.FR/gn9}[j~}}/ Dcf7/wH3Wt ?ΖY^`a?wv}ԂeYgVX3>*_6w'.GKMO z?XI0 l p^{Θ{sV0.|7woߟ^¯~zz-r<&9ϲI{9%U0[po~"3r4b{%C^G{Θq1f4!K+v0ЏG&xuq4پ3w1<=)}y{ӏl^&13|q柋6'gDY/'߮{\4]-;+= ƐϚ琶zf?ރ%ߛ~x9:2d.KSc~>mQ4u\u-D4|W{s '&qhY>b>?{z$\o.܏\;OeǾ=]㇬h N8_|o}CĶUPkJ4jqQ??hK6fh=Ó>kؙM`>qm&`/j$le~3懮:7 9^wS|&.OG7W{r#z[F%m{9kFȟl#Ľg}Q;[A?*tϳŝIlF}\ވ[v~q9yDvyMfEhz41u8n㑞+)ȗ#=|cG27#B!"#MoWB|ʠ>|ϗ?V>st>.OSFLoW-g/MTƣy,x^ Ϝ'W$>' 7]0oo]?ྨTz{Vϙ~3]f3_E79?VG{pcW%7ןrr/F߮ǘVO,=σ~yg{/JuXr̸zfE{?$|) oCLZӵ=/[\֓{ܛ~r8I_}8ON.r`2~.Z!ym>s)EkyȪ1uyd5 W?yl/D.]#?7N}F7~jɝjNW&L8./l?=N[`/Dߧo ZQ2o\Vc7Ft{^ ǢUVԿlw|3 |+׮{}x(7%-o۷7ԭ wٞzxoyWOk1G'/i{ߏV^Y$?:9XgzihqI>[ Vr!o}Z{'c!kD/3ԏ\{#%?]ˊ3w>wGg~.6"1a~g^뿎Os{OyUI:ܓًٌ\u=jq*~3?y(efߎibO `~m{o~ P?mїX~WY?sY7ZOEۉ+.7sֵ&g_4ұ?=,!/6t?D{=<2C=]'W[I4 83'z(Ly|k/6zԈj*q ݹc\@Ӌ/y/$|'<9K>h=uy~7׸m ֙ugy^B~k=zh3bS~q{gXQg}U9Ǣǵ:_`Η\&T{=x ؁[[pι ]{OY'FYϓgFwP8h9t܁Ǿ= &e]!6Y̱ԇE-WoEhPkߊ~ǧYܛ~hIY5gOK-/^8\M!Lt5]؃HWO&+#_h3ko;^ۛ~bgygJ(ZlI~~ܧouz`ɵ=8݈y#V_sFnυU/co>bryǨ<u]ku28eU8Vx'I3!/Gq6~G7!xg}-Z_XbWuOSZLx!<>G?32z,E蟻aPh|':6;"IEw^stK+(5:/{N6ZOEGu~Ql]Yȕ8sM6;e,z9x/_v0WoOlݧ#g :gaEF, SN~>V$yf+g xZ=VGz7G gL*{&Oz; D;xaZ*8Nټq{Gzr!Y?v{qwk3vߩk+ϓGc{{ݾ_ZyqG}&n}I{9\y>uRyM$wfk3bKǔqۻ;po#x1l.LiE.*c|Wk#B~ƷyG! ~f/{޾w??=q8 *VvL:/?14뿻k{>Y\~^ۊhB|:z亀oöO4Zۯs k(ᚗk_F7yN gNu횻Ŧnb'> rKwsa?r#>;ϙ7.ȽZ^u.3oFƠK^^qx+>sJ}.u uS^JV17O)>#a Va;/z{D'zx-Uo^#s4miag4?5hmK~i+Y)΁87}<|b6AX?_s5go߭_ο9z->;,;735얭8Q$f,'{W}ԏIMr%!yq,9}Ufy{5/F/7l\jju-ZI=ޯ&/Dzh_I?`/~AQ=Ѿ?h[~]r]ÙUr>s$_Kg=|zMqLh>x"2V?:W׍\T{sJ\3Lֵ׽m|!b_ =Oo\u@/fa ^ՇYj`Y+_67*~ ?7Pn^~orDx6gB~]798DF%Sg|7 gy:G8+[{{˟Mw}_g}ܔɝ}/yҟ]NK44ýnhE;}9`63?qϔw-co'+GGÞ3秣+侶Cu!g83S&l Fm)&&|o?9lΉg2{}=çc-m :D˓5yZb_eao]/E?[s6'x[?y?yF`ߒFWh~'8ѾskEl.6h=%QYU?={5y tL?`~ab'>D,暂M%'NNnh旺_vy5'#_Y׼gׯ_>Z lg{s!8ڹa~^GK{e/9? #7^Xa~]WC|VoݛM ƽ /lt |S~{6z=#ݳY<}\V/,YWY:~vo+xguƍˑ =C=s$Տ-y'Pϼ]Y"Nog}<}Mm+]':l2\q6W_lgȌ⑼OGj$^}:>qc=s߲=_woW%:/y Υ?䤌gsmcC\3ƀMsW!ܛ~cv.ُ$Z?ig~s+'{mte{yG_Fr}zy^ξ׶{ȳ.<̺O6}jDe|: \0kAp/;{F߳r~,ޥxos5ߎqEse>OݥEmػٟ*x0Q'7~n<$ݫO7zވތ{xarcѡ;&ǽ-p|+YL_ܿ=,6/g7a^_F.Fs#+OI`p_\`/̾U =q_}vr~`8?c~$'XWOlw3n/}֞Խ?ֳY' 'kFK+8{lj`6?&~{?;sF'gs7+GWgg7NW_l4ڧٳ:O@G_~,X3owϙhT4/y䅜c?&=!~Wɏ1kK9x$,Gdao?-fR58w=wF?[`Vȯⱼ83y!J,ߣ ϲq߭c܋{g4γ;Ǜ734ۍBX775 _=3G_BwG?s164ƌY@U|Ǐ3h7Nnū⟤d;S|>~6*땟^Vfn$`w.0;߲~>*~wp@ףי+[ghF25;{{}u."yrόo\A|Ktfq4]E]S!#_ϕ5ޘ+u^Ql/ldZ/CkM̻߱y拺7"9;w):F?/\ۛ|Bҳ͍3~ϯMlN8s؍n{ ټt^|W/qot9-H>5΁Eo},ZXH^I~rϔzOwn>}Ow`Dopog{ޫ?̽8hVQW?Aͫq.fr~=szƼļ(+Dw\ 9?m?lt6csΟ[G}7B~s&wʚ Sc'yq|pEs,d}9z\ As L{\3G?u~~{=ֵk_c8΢y0g/?s NQ?7YAhOZ./H?Gzl0i2>wϫOo~洘qV m+uj ַ,hsCwa>Kٛ~zF-#}=K7=u91g䒓~V[Wkeg%טs'ۮU#x .Q+T7. /jqujLWcs{G}\X {7Y/]~ uDmZ^=+|2G'q*VᯌMG@>^͑̚kgsR+=UiXwQ^(?d{.+;kO͞YTB>|-g=ìߨvrs&;sub,g۳ًtG4쎱XxkeijZQ"l\f晍#^-~ͺ[u/ Ş鳦{dD/^Vyc@nfMo77G=wuN8~)x׷d{6=bo<֛o B4+hߎzX8/x:ŘǶfѲVgݛ~F[x${~{KX@qƖxi\(ȷG?ybuq誗toEMW6{K͹_jY_*+ww>IzR6SKP#\4R}mvMI4<잻4=OK9WGo9X5|o9Z?sAs`_O?G=+'@]Ιtu?}ghl޶ẙP fX,oE0MuussIUVϑ4~}r v*@kҞ:F8^e=Bnxi0srԵWcU*Оh2o_beu^o5OhQٛY]o'E68zE%*s5~SH9ct1{GV?_g3^ɍ~ף}/z{</x6]:_\t {t?sBssӾkkݍ^ޗc_Q?=ǿ F;2|GD!;nʞ0+6e6?ǽKՈW_UN-ˮE:GquO/.oqx3k`O:gZw{j:fċ#*ƨ/qͻ[u}]3Ly /K֓3?vo;|}ˣgVo{V{\Qşx碟7ƽf h's:?$=ܾ7DZ7~vq3CFx<"97b>bW}xOp/cOGy9W W>3O?yD߿?2]?~#;"ĚM,Vl{Mhߘ|7В|9W5.p^M5z=oG 5N8u?Y^$Dc"~fqd}%Y>[?עqh|Ny#m_=[@u~ 篌}V_Wj}29>kYH1^r7пyOsKPw>rB+G$Ox=>\?ˮScנq,}r]xGIxC<|^ g^osf\ 3PȶUoc/r[ D'̾ںͼ/xעaQOszxu&O<3=ݵ3=9XEX7/>& MZL=2td\+d74G#OZF\n 2i\Dç\_rKΉND>Uq){_]h>Ҁ6.}t?5{Jsd:ۧ>1lt_~~TpxwFmFm1XYߥPdK,w γG{*~uk+t}u,3vў<p{={[b3+:.ўe7D->ڋ|{QWOKOԞdsNj/WϵqMq{:h;{}v_uŞM{+f}tυcOzg'MwE<8ۃ7#;F=oEiuF:;~r{O*}yEo1=s},{Fq5޽~7\g43"ڵ?Պ/]pϟI7_Alce?oJh5;\ ܿCb}l:3u1޷ r]nŽM>_|f{=RSTG+9ߌw ^[qwlߝx};ʣhFx纂~xt2:&+pkg/cV_t?k3is(Osb,'+g*~&u)ۮDx~wxhow9A>qyOz>__2n ۛ~9|r%zkc㧢Jc a+W3ش|gߺ;t>dRaDS389mq.(~#vvީW4-RY?G/ga?Dcǻ(A9ÞnVߨ8|vvBo\c+{>jMn^y~1f'y=30[ϻo?7ͪUYf3Vy xԷ{)$Ŷ ޯwڛ~ 9+]}9Z Z=xDҎCqCtm6^\9ݞ ;TJ e쏟]{VI4[|I}7x=Ϯ]?Cv!Z>⥙?3ytn ~>Zmz_ٞF_O^75Y?#B,sM~VoI33hJ?{VLFi|&8+Uf9X*`V__~uL>?bEgu`4Z{V/+?2:'#ؙ~-?y\< wߧ,ܷ=_qZ|_lu\+z~#es, M?8׶ЙzF:5FO~ۛ?|g)N7LE8gy_wE%MlCK8osͮMh~Eu5z+?ć~qv~@?#+'~Lg#~>g9sQ矴dX?y>[n76x'p'z  s[\vl՟?(czE3^?{תdEm.mh+WK]>r^z =ϟwRW^Y|,g[Y·s,ϖg2B< r979s-z/Vp=:5GtUb?јuFwd~`"rc< =?iy|N<3Jd+i\>F3(o=>)s=ׂy y/ַC{ۛhV^wdq͗/HxldscϜEW9w>^#`Vo?5 %Ob;U]+/{Ϊ1[N#> p/m=n>nh64'<}lF׾WOx=y"îx,_?D>s\,j^mۅäFϐg ~ {zY_g#c{g5f絏xU})SϿ]93J.B9/!#>;y ah~= ]oո| ?~bL{>үbroG}FeJn8toq4Llx\;qbWh63z,8bo[Y>UQ=<}'M߈~O{.Fw}LKݛ~DSV8dYpR{ӟ{?o9yY7fGN&_cݛw9?fhcVu?)oZϸsV??l?YN+Xc?SL_VKI tU=]<:x#Z|}~ɸ|'uOwzE/cԍQ^p!Ϸ1~i?d >qM? /u暋q8Z?߾׻̠=>1z>7F˸wlet>s \p{9W⽩?cq?,hc!^ݯeXOS}=H~h>巣Ρ.ٕyFI =FgbXO>`;<=9-ͻ=+ҷ$ ~ٞ}By~ujgw\΁sv9Chd+ӿpw?kD8<-vyvwu>/G;5,y~'{Z}G'3.ޡ5?M?~ww|Um=>P0J4[csoE/wtoDD_~[E^پ:8 nh]gkwd{dhF9׎-hR49dKY''!xƅ{E[3_7>7E/*o$\ywWL]y3gWIz-D:ehz,?:ĵ6m߳欗}9G^S;qv!*3wǶqmeM+韤XAۂhrb=Zbz-GF+=c,9FIP?_k? |qVǒr,dG#T.[Y7yZ'sW+$sf7^lm/}SߋC' ףx~v>o;gih>ɍ~YrAc|֟#6x6q<ϴN:{v e^g73C ߚ3I.EľE쒀gj[}1=󷮶Gܓb_nlS~HĹ/8AE3J׈;ε}5,wu z+z}2+>ϱ^o>tXlFoӭx8bDo>qsfm]c?zAg8J:<|Yƙo-;{__Lg_w?删{gϽ?c?wj9C/4?_߃;}aýY}֟>s?}\漐"hw'kcdLG+>b+=fyٯ|G{~9OoOEom+Uo_?&:n}a93cl,Pg^]@Q>ǀο Ryeae>?3yrd/iԦ?#c=}9yuηs=ѼܩnV?+Ϋ}yw\9ޟJ݈>., xֹ][qQ~W=q|19Yܧm<OMx/zY3g5GQO _g{1߫LqIj#*Vqw1?ZN]Ω~8/sO+Ͼ[s_e.=w>:`q|_(;Y?3d8~+1?k]VmوYna~M/ljWp?5#1j=z~%^/Wef D_5;otRh/-LbsQ {Q?>/DKU H4fwſSſ5kotOEo_3`/;s3:3_?#\s/3?{-y΅Yo?;oyAVP+3a,9$!~դls,?_3?|ue}~N9ons]:8ʗV=;̦;6󚣰q7Xo܌g/!#j߲;7+9~ީh(,~.om+(&r5FqΟTU׏/DAChf#οY@f}~ObU=?~5u,Sy3t:ľ(=8^UAsYcfXwk ~Q϶_>:~Oj?G3cOԣ|{=ufn?k^534T>ľ}?3#nEgob?32!ŏoU3?Ik |)?_k̑_> >m!օ6>1op1TH'5&8V3s1f3w֟οu>Loup#\s>)dv8g!f5N~2y?Ι<vF:uy׌3Tٜ|Pc>jӺFzF3\6}Q<o?ٹY?O; G篜寠9=/w߈^-{yB?~❰_jM՞#,~ti=Y}֞X w>}fs]39ϸWb~~^uZ'u<uxAgj}X?{~Wa_I>e8s߰au&?}]+~>Ͽƿ#}kzϘؚOI#x$ pѕ~c߽,\.݈oIpw٢c^?58_QrTsˏ3g?h;3C+6ŵYyK7fqnx(;Oۯމ,TL897c/ɓI%lg} \'^4~s=k]Cs> }{2h;BNyߌooX^V[jެ7ܯT_9޻6:' ߟFo_T}4W]uvQ\fi<`ebZϽ< #>;\ΫODMhf![jXWD8cdH>YW[~4[_g6l[;yk/yyZw~Y~D:Bsf:gW{@Fg>$ Y:>B_l%KFCͺx B2vu\i]Λ9dۙ◊Ӹ?z?/E":5rF׶Ga߫4Qh~?9$i-`_yjO[XWt.=#{xcj/jx/,~37?ZL]S7j:)vб!X6ɎAFuqnLa{gّox1:)o Su7Gqt=cw}U#_R6q"/ya ?p|;gjNpƏh tר}1_pzg219tލ4[3?V+?8&^a8b0.}?7gm7Q bMpjَٙW?3*??sK?g5#]j4!<9'r}Z?B&LVh^Ĉ/8@LWWO߀?gr|lɏH2:.?Vzwc3>W{Ϥ|8zeǶ9?*ﰌYW}sA3<> g9:&9tǏ3#Fkʬ:ֺŸܝ9Xq䟑Y# ac_@{?b\UkO ^{~~c_^ڧ;Wokb~ͯ _j{O57y/c[9G~~cߣگ[mNQ K9ZGG//·]圇x?K?gY<8?w~F_#ˈG2:3oɛ^,}?g|gu󁜛u?{NU{y^֟ǹ_)6zg4ϴ>?56_Ց5_WSQ},O?}3:}ֶ/Y>dֿ3˷b3n_3x>ﯸڻjꏣ'掠ƈϟ}95j$_ y%y4?~1gtqιYbbDw3A9g_g;◣_=h]jUI>o{m_jxӌՆgť`+/>JcOR>|5zyo 9?9akk5<'g:i@ύU$du?^r5?Q_mSŴT:?<}=ց٦>e~6µV%Oy~9?g>1q?P}'g0;?>!p>$80l1ͨ^PjOZ}jOh_ϯ'0Ӷu 2V=6>_ՏfG 9׹3Ok²FLnٙᷝ0?7:ywñdֲykf8Lwyː_:dTOͯr#yg+fdׯMȊ/<]k8vngZ'U<[bVgkc7|'N>58&1VLtZX~͓u̬hLHՍwV.ώyU<}}FkU{?e}5lnN^KK~^wY]fy'skg]wT{&z~sdǑ3?'1U[F9Q8ul3On+۲x;35~dc5+;ێrgg7y4xx|/w3c9ј-SkTy?۟9~ۯ~l<˹|]G_~^wv3FFQM֥g]=O8'8&<=^ϱ_ ^S/{GyF*~.W[Y 59;^sdF1>Yev7?֙Y?(^;_| ]qVFk_fgjf >+kV|bj?9 ?UuFC}ddmw><3«Ըv?~Qo G|NK^),ZzVWfLj~4;: :7bywgiOGx^[fց5lCd3y|~y'#Do|&?k7?1`Yg,s9[k<_ש}g7G*ެUԌY:n=Mܓ]=iy 8ߨ|Ŷ?_kǜ}y #]!U@ ~Rkټc<$z_rl;ZgO 5,ϗYMIg\~ GrmX/h<2܏nːgCkٱpNg\{",UZܑ?MxQ4ߋަ@C'fObj߻_l|LJe38G΋_Fyosɘ#zs4Yg~'>kճZjO诘oV/26syB/fj}y+[F}CqyqeWgh>J[5Np}WE?kߵ:xźGf8v}QOr:ukeֿc-W3<o!7;YHW8Yy4?['Ly{hV7FgU'ۦ t۾^ޛvhӓ3mCl B !mN,@̈#, @B6f$NIHҝ8m1ɄɘL{;]j}>S֧wϭkWժqs_|8cƳڞyo{#/Cu=shCtiq~ D+ ~>WὩ_RxʊG.KmkzS uD}Jh?_g%~WɛzuNIc=x`kB!j?]"Lc{V 称DyPPn1v8 eSy_.I7WX'YXEL~'N<7"cgoBg?cqeOuQ]zAK=WX{&cO.7Hn/:{ajviq D; Y|=ςg~c+~yp N/3 /z~J}0<{/<<){_:~~puʃi{htE><|b_a 7~;kNJd:~~7υYV]ϿcW.zXF7 s4$e[~iBY.V?׿*ϋ_Uܯ?WV?ǾgQ/fZL]N/Ԏ_QOWP|m?&K0y}ba?7#¾ woļoKm_ s__~ z\P^>W77'(RPbOI/Tڞ[;'?gi^yu(iae-wxFh۫?OB8o+6{2eu^=@ѳxz3씏{/ S;1-O0 5Is/:,}}j:_!{/Q D/ gvS^O~HgtN !t_(:~ܔoO^WBtY.aLVQ2u=k3w:OLGUiY Ye?ƍuǪ?~y^kHY1_{}xa{?VȏM'xJǏbOt7F_ĉ2iDh@{UCG@=E)ʳcֹ=#-0)s^j3q5Wt?~$/<¼~܃>]"ƿ(?{z1ƛ;7~W=[ԶWX )~GDϋ.3-HK \*֬eo.KmC_]׏VYX>|^y_KUOcKo_~Z;^Ur7գoy9(|^8hE}.ny$WG<=a`z?' uvaj"]独t_] YF}G?Ov3֛|=<3ZqVKW5?yK_t/ o 7^{S_KϿm Aeshp~m/o 'qptG[EiW$Z 9mw9W]{#8o_ڞsBwuse?ɽ^ oџqPfP&uW>|u/J˹#tM2iiyծi(xY{(瞿Bb{D 앚';vt5߂=A ~FfEgCp~Sd@sy?b>_H ?Y}Y?i?ҾGĠb/P&^$yFox=O[SV`'_xVB[O]g|Um_YyзV=>F]W|y.1;x_8/ ߢ>{z:haR*1%25Oaգv+̪SxVRF}!Kw+~_|Ǵ_dC_+Ë|i?<9_YRwui1h.ZE_0y*y^=(yf.c yץ>ƳOs+cNIǶ?ʞvy!3B@ǏlH,Ԏ7_n{o>xvs{3TΨ|7rS^ާyE[v^{mj}Bs9N-or]ĀxZ_'{ G{Y {g+{^gw`]u/ -Azgޗӫ7MDG<#̟>'XtԶhQ~i\lOC~K `j~=kGo +Y\b,`KS[w.}'0W=!x^zSWaoI,X e_>ִx悼#08xbnW^s"V3CVσKެdJǭ|8.询yԾ~롂 Z%G-;xJσzo^sA ]#V >#}X#4t^?<M}_j>yoj:lY[tGjp?S[{CY9{W1ߎhsPNýE}Ws7Q0N/z^g\A{'_˪ `= s hF X3hۻޟVk} ~/I 5bSpyr_zWtuG}v`M̷5fI A]j~7O Fw.ST?sOyς}ZSܴ1O~=ΛsgYkR[Y{XG)>yZ~< C ^Ey܅7ze^ǽy@m3~cyz^@;؏j[S[YX³}^ȟ?͏ ~9KzDxa-/L _]{$l,VY?>_aLha]"bo7s>/7ὣLs\W@YϦ%ߵWeoOZx^uWA<8x~y[@aDߥey'^=)悼 _B=m=|M{cMɿϱEz-!kN'Y̙X_ПDό{_QdB -?"+;g.8|޵o)ߛ?Eļ|UZ5_g( ~^k}ZWeɿ{>ZX˳&mܻ/bs";< 1`P_t[d<䬓zUja^>?sؓgboP[75yb7О ӓ7ziakОKZ="J>zť&DS;>¹*ω9=ŗ"rm#OV#C'Q߳?޼קVo,{/!֏_`] {,<\(?~ݏg:xUE|NϻY[bPt<;)$ 0zl<%Y~tG{/˞\dPWEwY NKQ~~{ۧ7es? ֹFī='-cw߼s?<< =/a?*0<- R<=MsdP07%5b?cśqt Kwzw<zZt mw_SKWK ϞXֻ73F;?{O)/Y\ܝbNIlS0Gu {eчk:v>?1{DG?"A\7.x _γ8v%<75U4Pў`HI2oa]POy*躛(Ca7]k睮zXW`)9 я5s(oxy>_/~q>/Kşqv.9pcO=&8'JYr(K{rFC⏼E}LՏ;޼cL{j_/ocy/};b}SxCթmƴ/3gІ~JyO]#8oBS7+]]?G?˿a qb{h LOݕ_hPAAb߽qxa1k폜':_ias0B ?kR+ f~?-ς :n}^Ӣ~$ _x^Kk_"(?(y|S|`v~ kV0-F*~xcZD!Hm2ycC{_ic~= V?5M/s_EiAz<-djĉS߬9x?cU=u\/<;ygv<7ΘuF+Uk^R6IJia1{wtX2o3,O~ݿW]t?}?g{߹,-ϒ|-y<5W}lA+_u>ǚa1/?oa#y7kNyG?o׶Z5:6O) 7S}ZO,z?1%u[b$GWgߙ羗yq@ m. CQ~PwKbNx׿4~ѦHu^j75c̱wտ4Oz`돺ʒg ?Qxw X^<9ߋg#ZKvt5֘+ga5?zwOzmZt+>׏H?ޣr%ޯ:xx/R|| >#ɝO ,x֣}59Kأ!H Yt@jۜK>\/X 1`N zy J/saػT5SgŇ? |(Ϙ{MZz'=aMDy5*~~ Y<E_Yb>s^<5O }=О6ݛ_`{_ y9>X'^;=Qn1׊;\{RwgDKVgMOy>`/<}y' ĀI1x 9AYBۨ{E&Gu a$~K>?M\+ă]髒ge=a1[{uyc^ 'hP~О~ `n}'| u ۻ3=`jx̠?/ʶǢ_?Uiaޗ29szKaD,BqyϠM?G7+??#"=Lے߿d"s~N˛_מ[SˡMr)c#zA{iᯢlc>o X+AgKQ?1zAucpOG~/ʨثeC>1;/7^~`7y7-.K~?xO~0yvh_XDe+?/-ywo⴨Hmo2-sӢR1צY?zLzQoyI;{S>+>gQ@jxO :O8cpKfп3#~!zZ1y˽y}~=;`/tYx^︷b_#+uR[q1q<-׻O#W{/g>ckڷʧ扳RB5Զb7dk^'x^` '?^-}#g0<O9t.߬)=L횋?Oq 8?uQjz~Vy@VO/Ib;uʉ>>WD'uA@A|vկ{ŒOw_0?Qײ+<szGh,}AshOt6ZXSz=|g]x\x=| ~^(?^?DWפBw}X! 6CC͛J0\hwe,{}q<~_N1)CPP_hC,+Qm@Q-2y[^~{c7͕^]+\˵m?u)(|LrOߒ~BUVJ{OkH;^ (+>eb-%к#뺆?cϒok~Dv?bN}U{'zW; ߋ|7og %}V+#cI$:/5q?Ǟug5YuMO~o~?z~D>9UwͿc.>S_KD<~^PjYϤyz:<| X< aOt?׸(ɳ<~:~@svwW?OoxD}(/shhɞZe/pއ=PO1.i2UW-B@<3xyҳ"gs:ѵWՏ?zX@yq5x{$!Lc| 5\k+fſ?gE~^C?xjyO3,Y|^ʟ; o#jWrO%[!QQU[Ox/C[+__|^=z7OBI1c%ݗtn/0x 5"~9@9yF3z:Jm {1=dLDXc z, `NO7gl-߳?(oo]9 Gy@{sa(:+y.E߫AԖKB~Џ{R;"!6A//bw.9 'Y#=-~,V߻O~ tW/]i~jIǿ#}Ǽ9_cLvϋ~3CǿӋw]Xgͩmpoy'~>#[s^oJ :o]<7-rRyW@Jge}kG=ߋ7ԎO˾_>8kGPw |[S;W#{ؤ%@ϋM`j;+վU1^i[^瘏~9c{.#fO"]\<Z3@ڽߟs!p^?R9i"3>{t?)(e_\Q~~7vM~Z}ht=]gO0h<k";~ϓ?xq4e:icxv{3 {}Vgߊ~z~^31 @=D]tjkSd|{ou^9dVrX88sa-uO1/|b{2YtA3,{Vk~?]eן_uտSp4-zʳ,63^\ԞŜ 0괐=<1^3\uQ ݿjzEk-xyVF=WB]J/ <%=?V/XʞXId}/^W.HyWb܅_y//'xLq? 4ɿ׿s_^,"3]ֿ|oQ ƿ^?<># a'xNK}M¼[1hP7 B9Q=b?7iśOȐ?N_hߟ)-F|x?s. W_ O~"u6iakr6_ sqD^:j:k/wcWz8/-I~Z/k'x{_فK{Kk/*7ρgWY<SFGZuL۱~_]~7k,=Kc}Yz!f>,_ɂS_򃱕e?gV<};/?GQ=|^җs6qʒ ^x}5\,XҳR;[WekmgdgTUcQ.zJx.`VBgaďX+Dί~_R)^RF>Eρk]O_}V^3sI܀Q;}5;C0>vtұNGVl,7=}ߗwt]XyqaWNJu|n ?{X^~/>%ӫ2kLxUϲ 7<ίE^t=ڳ}k} k_ro .~zu ׋wś߫t,ީTUy/17=?īyGAȳ[*g߆k^=Hl # '-yF۫*-VRֿoI,ީ(O痤emnZQ״Yg/ɗ?#-rL5_yn!kAyw=w/ϊ_$5~KW6_.GyY~sr\{ѿmZN^ÏsC_/,c?<' 8-˛ 'WJt\Pf$9O9k;xuB_^+{zLKgv>/eՋ/~Y3(yFy呼CgyלK_{&,%ͳX5z>G}_Xޯw]D]xh /RU3(3:d.ϫep}^j1a,7ZWmc?sVጾ<_?꾋of|ߚ_>+??^??}?񗶟CvLxW~D>:+~{d\}.t܄uIo>\3DuYrzy~+.uV\;>LUZA`v,}^țNZf}J9yey3ܮGX1ǼWyE (?ήqZꆞ9ԗ8uٞe5qBkY _s9C=`_wsyz]#kO>gO'tڙy=5uz^;.g>j _Byyv.[淳~kYOοQ^?דzÏA~]w奧~t2%^y&3q0=*Cy/_vQ?ȯKԏ.[淳ȿ{ziпՏxlՃWKԏ.[O?Oul^ EǞa~C aȏȏȏȏ4u׎'D{f/*_%~Kw఼׏.SzI`ٛRX^Kg"Ͻk3ݘ y}G -K?ů?S&{6-l__Q?/u߁_?Oϧ|LyZŴ8>k~_ꖿeuO%bp^>/ԟ<2\gy؃_TK䗺ay]ϔ3XѷhjrŇ,r.OR8,/K^'c9,-ΧB"ϫ yUQl?n;pX^G)~$]so=X_+ǯ]׳0k,~ qD7<#y~4ܽ;자3 ~P܆#iYnߟ16|֓Vяۃ=i~=R??c-j=س=| #i뒿 ,S]}\N2sԼ/aXeyv뒿 ۬~0`{Y3uY3h* σ_\fc^=aXeyv뒿 ۬~0`םkO1ݠ㏍|{v<.~]wp!Տl(=SzX?6x;⑵U k S Xмh~_\Ko?ͯ^絞׉ż||mz'V-[?O#ȿY6ay^a՟wOB^zGi~}$UK%Q<0_Ȫ`Gmx7_\Ko?o㐧+ע~cC_` ϗ뒿 yYqȏȏȏȏȏȏȏȏȏȏȏȏȏȏȏȏO/ae6gk/Lg?|iO]e!?oz\^r) Q?gwC0<>uջo6<ƯKف%vY33zx^~}㻩ױu/]֏Ө1u!|=K,G"?,Ͻ'lU;PYsqяRteK@GL~]woO蒿e~;K7+o|<-zZY.|1GяmW_Aԏ>ߞ%vcVty=a|{^~O~`GL~]woO蒿e~;KI&WmügF/C1u!|=K,IljǗm.-D_1WVb/C1u!|=K,;uYݯ&^Ӳ<-ZϸΚYG#{oS_%Ǜfex#&.;wo߰ m?#?#?#?#hG3>?a~+}?/uz^zDaG| <ȏȏȏ/>ڑg_u6M_WQYwG:?[A7o3 G~G~G~G~G~G~k7吡m|a:UK$ߗz| _w[o~.k?~%% mW䰊Rg><'A G~G~G~G~߶v6MѳFKS;xރ _+yWR#Zry|tϼN'_^NP~1>#?#(8_K~nb97͚*%_o>kZ?t*U)rּ_YAJOk)ETSa=3Nu+e"5-=3>3zO^?;ЏM^GZ;uJ]ů/B4 m?#?#?#?#);'e'gFl ~~ y#?[CyĈA~awZO~=1E|oקR.oD^N[A?1]U=<彛*;m臯~G w|(Xj륐WЏ/;n?koUWQ?ȯ>"wdG^?yy QލV{#=h臯~G Ö*ߥ> E^~|-59/{oA~}`^>l~_Z'^?ZCVЏ~G?|k|g?IMwǖg"/]A?b}gMli~}z}jO3%F(Vì.~IJ~_?~_CW^k*5F^NܯH?Q~m_я닯0~e>G#xwZ_~ׯfqy/m+Y~u6<_ﴺCzX^?SYO~M;m~l_o|] ϗv߁(6H_~ϗAҁ՗pD~P6|GɣiB^N/˯oޟ}/8sՙܰu&+EE^6_a Wgҿ"^וyü^gzxB˯o?)mx{y)}Fon Ʒϗ*#R}mR?VˏA~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~G~Լۼ|'R{j~7Լ|?3ϗ#(ߍWSO?,`|7fS^?mN{Sf;F{E[,5߻"'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4GM/1y=%zz^̈~/\_'OqS?O%~⏋K??.~/\_'OqS?O%~⏋K??.~/\_'OqS?O%~⏋K??.~/\_'OqS?O%~⏋K??.~/\_'OqGߓC^ww.> t-OQyׁz]~`?G]^??F.Gct?:=~?G]ǏGGoέfQGU_cI+w &~~?EOC;Nc"~zD??!4,"iGOC;Nc"~oCyݘ!O¿*4_<QJ? 6>Y_Cm=7=rDӐoCgKXCmH/L}SjnsJ? 6 ^G*4_Be,"i!ٕ=:WߗƒoC1%4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]wzL^O물98O?ow^#~7:N"~7;ur}Aoߩw&~wG.?G#Əy)$<)?ǏG/?PǏǿG/?P?g'~, y}"uct?D߿̿ >G3?G]~7]G)8 [|*u\G].?vElg%G]~//:Z].?7z].?7z].?7z].?7z].?WjQtu?:]?7?S??7?S??7?S??7?S??7?S??7?S??7?S??7?S??7?S??7?S??7?S??7?G߱QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? ߆NpzO3⟺EUfk⟶EYs}L^tSRWF&iXDc^w?98UH%fk⟶E݋ ?Fǿ*?)zD_rZ'<9U"~/ҷ~^?Q759[nH_ߨk⟶E}=<ɼN t~Eǿ*?YY-cw/J?m{>b־&iXDc1~U"~/RÃ5O["ŏw ?Fǿ*?[&iXDߵשy ?Q7%W[f͚D&iXDYpB?1Gǿ*? +5s;xMӖYe=&uV^O=8??.~/\_'OqS?O%~⏋K??.~/\_'OqS?O%~⏋K??.~/\_'OqS?O%~⏋?+(]p'C!wj|o.^G]~;yױUoCnռQ.?O|Nw Cߑ.?OeW~7?wS_zNR]G]~;lybnhS\Ծ??w?UR3}6u?GO g'y}W[S?1[ľ?GO@Q@tq?[a,;.ɿu?:~/Sc&=S_U͚طPE}2\O[co= +T(W%4,6wruY: U; yOuw?m^G*QcѶgKK"/.*5R+ץ{/cw?mjγo[ # U; ?_^3BiXm{{QJiXmXc߻A{ KD/r1Qco15tC^=O]>RI>GOHEg3O~zDďɼ>gͩO]R~ļ)?MĿ;o9{%qS#'~$ƿ$gK%h(5~Zj?#I/g/w7O]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXD]7y3#Ǽ]:%O%!om:_ļN3r_ͿͼQG/y׃uKCթUG/_~vߪxX}PgRG KC2:^@?/~齺\G}?|+uKܘMyݐ'u_?cr; ~/gI3O?3O_9)K?_ŏoR~?~ƿ⏋/cK!XR~?.~ƿ⏋W>gS;K??.~/\_'OqS?O%~⏋K??.~/\_'=-Au`|/FSg_{OĿ uB'~~?g=zШ?σ Ƕ?Gn?J牁?o!~_u%mwOQ@OĿ7$~=HĿwEOC;Nc"~zD??!4,"iGOC;Nc"~zD??!4,"iGOC;Nc"~zD??!4,"i6$/^;O*4SN^?VuO?[{n3k_G*4S9/euDOm/%Q!~oC-fޚKDĻ_WQJ? ߆Y8_ NwU"i6}U"im=6@^+*(=2{uY: ~(vL>(7C^Q{GQ7ӝ۬K(=ߣ(~F=cY^GQtE_R_-޳>(:~1~Q? ~/ߣ=g;ſێߣ=b?/Qc̋Q{GQWh(uێߣ=g8˳(=ߣ(+6S▓gMn%G/ɳ<=ߣ(~ļ{n~oe=&uV^OO%~⏋K??.~/\_'OqS?O%~⏋K??.~/\_'OqS?O%~⏋K??.~/\_'OqS⏮GTQG7WS: C!^G]~;W>חRst!~/߸C!V: C!gy2#Ŭ[CߡļᏮG͚>0cKtZov$]~;}.?OSW>WyuSK\YI- Q#SwW^ ?OUsC%'t(Gt۩(?w;? gTם᏾Sߣ//'N,-᏾Sclg}gM,QGgGۆ3EF_tS3 ~: ?unE?=6GdwqFԂSg Sz Q{(TwEĿYEo _hߡʘ;UNcǢmlO>rqORw}55@(W%4,6^< U; ?ƼMĿYRbK "bj-uDEۆߛUNcǢmD/}%=Xe_.ozj˩ÿ UNc",D^7'?w="~GHj> ׻?#},5:[yݘ#,lj7\=O]R~o>16Ŀܕ?w="~G\6~zDďDkƿ$,*[]6~zDď/g/?!4,"iGOC;Nc"~zD??!4,"iGOC(vt^̚G'ݠ[`OĿYOAQ|Q' /G_o?~"onPDh?wonPyt'~ 'nPD ~ QYy==sfĿWv豺m KC+󺕺?S*~v( O%!?y}-5#$QG/Ǽ]:%O%!喳w.׷5>uKC.g{{w ?S}_}'Ys:)O%~?o:_gwĿߐyݔ׍'}[KGR7QK xZQS?95q{QS?gK!R~?.~ƿ⏋/gK!R~?.~+ɇuĿ񗘷 /wqwqwqwqwq7G|c{OOm #?S??7CĿ3(/i/N OY/OYO'O߸OĿ7zw6QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? QcO?w="~BiXDO]w?4S#'!DE? ߆nሼ_ }9uDOm7S[ٓ(W%~oC7ɼ>׍pDOmĻn]cc."i6Tty}DOmc^ƿĿDݝmX%= fWRS;b^_QJ? ߆0eKM_ƿCyWPyD(˳o^(:~"o*;ub,~(FQsN9EQtE߃A? wrYS(=#/iw{GQǫ E(ˬšN(:~o% ~ƿۉ#/<~l־ߣ=R~1;͚u=Q(7 ~(FG_pݮ>Vݽ,~(FQ;-xG{E/1y=%zz^̈~/\_'OqS?O%~⏋K??.~/\_'OqS?O%~⏋K??.~/\_'OqS?O%~⏋Kt-u뼎RQG+_뛕uC#ʷNZ\] Cߘy}6.?OeW~7?w{E_~]oH⏮V&(SB/Ծ??wIXt!~nNM,|S^ ?vgul^: gySc*(שUgGoa::X? ܽ?OU?Qׁs?OU~SeJo;м~6QG}T' ;?OU(9[O(T7Wn9kb_?OUQ{(T7z. +QG/O"/Q?);gM+ ?UD+?Hw: ?UmcoڊQJiXmcWQJiXmD={'{ϱ; ÛS#7f_h3%fwI_hw^86 UNcǢm>חuw?m~|džKD_޷]dy}%5a@W%4,6{IĿY9KX# U;oL.}2OS{?#}4-ci?#-[|Oߛ?w="~GljbKO]R~/ǢmDnGOH-qo%fK-"~ƿ_ ?ƿrߴ?뿔$~zD??!4,"iGOC;Nc"~zD??([ާms\ewo{>CyhwoTIĿM~ޛ@_UeR@P9IfRIMUdY3mwH"v3LH?BZcb͚,BJg95=;ġrvĎ7.9P;7GsP?ڿW琢!߿R?9_ ?9_ßC*UwqA,u'X<~8Q_=>*w z/}`ΗU~ڱ z/ǿec~_uڶ;c~__ktמ z/}CW?ǿ¿:_;?.5MWw4]-r۽>_?W59X?e~p vu#i/Swvڱ ?ul:isia_h?ǿO?yoi?+2x2_?yv]~ ?~u/_ǿïˏ_.?~]~ ?~u/_Owf~[;S)mc6^?U?enhV ~G~^? S5Ï?]ۿ(~;ǿ?oK#c :r>¿u,_?]NG%ǿ ~֑w9:?௃.'#[Gu?}X~oK#c :r>¿u,_?]NG%ǿb5-cEӍY97V_T;γ[_ 6U/*ǿR௃vHWZ\77V_T;m>$cm{ ~)i* :o^Ÿ_*dm귳oC%*g~ cSRo4mڵcS¿̟X;iۇ}Ÿ:Jަoo׎USROIſ'Eshoǿ}oUn۸B~ۇ#',l֎UWw_ktO_ݿziʗ-mfW?_/tVW?u[,^sxyBտ'k-6Zl̿ ;,NVS1*_OU_;6lʿ lU_v](*9 V/*eTڿ8ֽ4!~_oݿTj~W_=SbT?ɿoX_=W3*W_=SVwʟU_s%Wjw_׮/*[GRin}nn¿oK{rO/ ¿u,scEX*)֑T}o^=B ֑T'-8_Tݱ>];V_T4s{\>/*[GRiw7s{ V_T_T%WMΑ܉rX:X\tƿ̟\γοԬ=ǿ ~c߻⮹qn~?/gHOK{d~?/gHOK2T?/gH_?]NG%ǿ ~֑w9:?௃.'#[Gu?}X~T^hb6N?T^෵9*¿OIſ'G?R?琊Cty귵C(ßC* S~sHſ 琢!_{=J?T;!5n?琊?T ,Ynn-`E?VW?ʝMx¯ ~Z|Nǯ *Ň z/Iǯ km z/qN-U>t}U_UU?]s/iu[\/_=)is-4~q)skX?eγ5}/w H8~ y~n쮝ߑ/?e~-nj*)=;vקǿO?n{o^4~q)2/~]~_ǿ?_??_??_??_??_??Fv?Sz{m~{?So\?C'Oٿ}X?u/?eO៲'Oٿ~ߐM>n?Oٿ T'Oٿ?oK#c :r>¿u,_?]NG%ǿ ~֑w9:?௃.'#[Gu?}X~oK#c :r>¿u,_?]NG%ǿnD;uNUB :o'k,k:^tQ_T;9[|=hc ~v;,jf}]B :o?j>"Ŀ௃vH_>~cnsGcE/C XQ_nndbV'*gY{n|žV?%uT^෵ _{pvŸ:J*n[;.-vZso)_}'k*)P?7OcΟ F϶];VOI?%s`TO>OI?%O~~vŸ:J*U2SRh+O_ߥ̟կo)_Ee_~WX8`qp ?ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/6V)į>ǿ}?f|fX_}V<UmY|sB~ۇv[厦y.!~?[MwQO V_}Vyn^ om[ W?>Νu w׫B>qB~ۇ쾯^X_}_k-6Zlb-?~9[8!~_ WwL,NV~XUWOg  U**'xx¯)wPU׍vfSW?UݜvX_=S ^uh¯ڿV*ǿe_oy)Ə˼¯?}tPC۵ z_~ύU_s%W?s;~ ¿u,?_?6#c4,njt@MQ:?JXQ:?Jwg->_T]WtXQ:?J#FQ:?JXQ:?Jws.E /*[GRiſC t{?oc ֑jj׵Mw9,{;οGo.'Gqxϟ?o87?]NhrX̟!w9,_ϐT?/gHu~eۣe !ǿ ~֑w9:?௃.'#[Gu?}X~oKkXlS?琊7l淵](ßC*us?9_ ?9߭~sHſ?T/~sHͿ'EWßC*]v@nlngU?9_ßC* BT?9_ßC*UwqA,~-nLǯ *x3"_z/}j rSz_Vy{,fN?VW?{oj*ǿOY|~¯ sfv9߇V[>/_=~___t3bt|9B¯ ?k|ޯ9-/?eO7}/x2u,ui/Sw}/wˍoo_?3{^e_?v}OǏ2|*)t}߻_H8~ _?w~ǿ~ǿ~ǿ~ǿ~ǿ]omhbŶv~߸q@)W!(ܻS?W~,:?௃.'#[Gu?}X~oK#c :r>¿u,_?]NG%ǿ ~֑w9:?௃.'#[Gu?}X~oK;}J->mq5B :o[}B :o'4{ >]M6XQ_?D ¿y_w3WX|#Mwa /*ǿRw M-n_T;~scE/C 6oxk]{~s4V_Tۿ쵍,Zl_4c:>:OI?%ugtlX?%uT!-~ڣΟ UOI?%kvvpPUS J)W~9cSR;=Z[:J)W-X84/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?r!~?,gvw w~}OyqB~ۇmج//4-B~ۇͬ 㫅[mwxYΧUYUWw_7ljb{[**~iqzkf{BW?sc~uz>Ci9ӿߍwY,įZrA8*_<`n¯Z#a¯Z?Uvwv΍U_ݜV-_=WQVU_=~{kΟ¯vv4%[{U_OT?U=o>¿u,_?]NG%ǿ ~֑w9:?௃.'#[Gu?}-vXlu?9?ϟ66~?9ߐ{ ?9P?O!/ßC*}!_P?琊kڮ ~sHſg}!yhRo8$!^h]dq~y *~WX8`qp PU>`̟JO׽o(?6w5رRi{ \W~? kdZ7qXVy8ʽR~wǚnQW0R*?G^R~w}[3XVs 0kϩtZ^?Uտ/\(Uտv^-/? |Uk;;e/#_~?.m,ifk_I[ʦ_y/~=l[6 ?{uVǿOyjx287{KǏ2yoeO_?uX?e~2X?߳z{-Ycq^[jOʿkg(Ɵ?Oٿ~k5'Oٿ!߮Ƶ4TU?eۮ)?៲j]Cu>߿v=/03-^#ğj%yC~!ǿ:^PpL*):<*)O ~sCiŇSN뎻ksDcǿS_h&!ǿSaZ!ǿ}{b&[¿ǘN8ƧZΟC7o&OSɿ |*)_ELT_wqA,ߏ?zs^?j)w~s^?U?u*O៺~~_~_?e~n~n~n~n~n~n?/.xt|L[mwXxjB{"K,.`Ec{O75ghfO3-^#_K?-~:Z=߾p>T ~UuoY/L ̰] u3PzpOo>ڿhu~{ooO߿U^9o?Tʿ쵍,Zl.G~_ zkzܶ6} |;*տ}jhi8 zkzTwu'ύU_zřgύU_!JT̍U_ֿlʿ va~P?OjgT¯Z_S)*{W_=W~og}*տj^WᏯ!~_*~;*տk]W܂xgp˷5U?//?~ڏ3/*7W?dT0hg9}!E5WFcE_׿sRpۚ}kU_T*U{fcxC=BJſq_EK_T*Us cEߐG/;ks(ĿT^?ώBJſ 9c ~c}WY|Jǿ ~c9:^t>ڏs?±fvv~?66;ǿ ~c2.'ER&[,nǿ ~co2r <Οw9,?3忡[ƹsR{2G[\ض?9_ދn?\◗ ~sHſEuS~=+"_;CUßC*UßC*UßC*U~?9_ ?9GG53,Q(ßC*UßC*U~?9_ ?9[,~sHſ!|Yl?琊V? ~sHſqT<Ro'~sHſ~~sHſڮ/ßC*_ԮW琊hRRzR#{+]\aq!-CmMxś+?)Ɵ=E0^m `T?_FcZϰ0;ߐw? w]fc'/_Z;߿g#y_̮Ae_C/?j7UkSC{W6k_~[f =oTI4~ WVq?i|j4~q)7/~ ~OY\̎WǿO[f,n*)sez]v2?_u?̎X?e~]Ww7MǏ2ci/SxŸ{YgZӖǟ??>s})?៲C|/J?V)|O៲Z?SvVC៲_(x?OͿv#<4c_?EvٹyB)7\op9W_ j޿)7>Q?Sf{mV;,v ~olXvWÏu~_??_~n??OٿbE0?9 ?9~yP?_4ßCjUßC)_ {GA)ßC)__W~77X>¿u,_?]NG%ǿ ~֑w9:?௃.'#[Gu?}X=^;bs,k-`&?~śS>{\}딖Wx_-ğO~UoA?%oo8 ur;?{=˯USNwW JU%KO ~ǿquUS-V{8*)WYjrtǿS8{J> ;N?-Vmv#Οww _>׺vX?%uT?U7$["J)wCWlΟ*)0T/oLX?!uT,USROIſSs_J4KOI?%K'}bϣ_*1=bcvŸ:J*!nk׎USRO 2b=SROIſ֏u WUC[ǟRiQx~o?So̓ݯB)7~~`o?Oٿ!~ߜ_3t?So̱ Z ?SC៲}~_?e?~ܿ7dW_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?9H Y\ҖJ[U~<'ğ?>h-^*?̢WG/.05~M_Nne ΩUk)ϥ-[=?ZB{ ?}gpaj!ZGuJ?>J,aU?*5Wx~-<;w!c]./~oU~GϿM_?sU:Jnb.SW1'įZr`' _߭s-ύU_k6ܺ;>(?~tv.Ɨ VO~Ǹ̹ zko[ŸU_=O~[lVOV UWU*!sc~߸G(*_usc~pn{Di_~_*w*w[ӬV>00ty_3/*vvwIT0n2ҿ7|=.@iO ~sHͿ~sHſ¿O 2/?%|T?(\GTz~>琊'琊ϟ˿ZRzRZR琊k[6vw ~sHſ}w8Y(ßC*us[[(ßC*}QrT??T޿7 琊'琊'琊C!n˻WRzRo-X8?2`TXΝo3ȏUkz^?ʟzp,~q'z/VypW_Ý?-7̟J?oX*O_~/K7Ri_sy 3ZziwC?_կ_N[2U~YoW_=i[*k4~q)i֎U/S描WZ\per皵c~ 92wo?VǿO/~]m-nk֎U/S描ak?X?eZ߳z|cq^[jOʿ{8|Ͻ^)7s_ ៲~8.Ɵ?Oٿ5uKO~nU?SoPG៲'Oٿ=w ?S: ,6[l?Oٿ.}]~_ ?Son[vn?Oٿ~X?  ?Sz?Sz)W~]{AB)W;ߵW_}??T޷( ~sHſ~sHɿqtK?9P7 O!E*O!^j/ßC*UßCU_?T;N~W~7Eg?T,:?௃.'#[Gu?}X~oK#c :r>¿u,_nuZc\_j/˿O ~׿!nvD)-,^hO?%oh?B)Wu\r|A3;[?%搜{rKY)ğwoBf?B)/_ JUKO ~;o|-_ J>/^?L*)pH7緳s-->*)wbf-[S-NV?%uTrR _cSR& _c:L cSRomq}~e ΟVQO*)ֿ-?%uTy`Ϸbgß:J*U_T?o%΍USROIſ >-?%3ܿS*m3ΟCЛ_?>m= J)7-_SR[\dqe+]\aq!-O4/m>^?uܿ'Q ?Sz)7_'OٿvyqW?U~?S|^?U?e_?)W_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?9>oXoԖb[%[T?5ǿ}hcEi/?/Oo~};WX>lG~!N /uJWK _?՟/*?]K~ɟg~b!ZuװuUΟRiןq/_[uJ?>{F;~Xx? KΟRis(,KfvM.uz-Xlʿ {my~|Bտ.\Ɵʿ I}]BտNaS;gu~_W;7S߭w_7VP; _wϲg]?¯ZvvaPU77VeQ*k0VW˻ZT?V[:zkoyPiǪ|Fc~aJUOlg zko|mOQO*տU-_="{bK-.>*܂;PTgxXn? ަ T_T* ^.᏿sBTQwEjaeK_T*PG/?;?LQ7s aa~/!EmWC/uT~? |E~!EEU_T* %>CᏏGK_T* S!o R|T_uS*Jſ ~{S.Q77XXW[\kq87?]Nz,nǿ ~chqsyyǿ ~c}n/΍s?B{CyʝC8?]N+6̟e !W?87?]N+u~/'_+{HS7qn~?V| ǿ ~ckUGm:qnykJßC))7|뱂RrRo&vv"!? 琊'琊կ?WßC*{fw~D{mM- ~sHſ.\޷~sHſ~sHſ~osP?T^??TO~sHſ~sHſ->J~sHſ~sHſ 琊C\/Z??Tz~*ݿR~{B-.U.8hqVC?#|A'/}e*X*Ow,/ncnXy'Kǿea5?i Tֿ? 3lkyL?]I4'Uտqr?n_ýK|Uտqja]{WVqUZ_zX?e~ηG7ǿO_l֎U/SeO_?>/~;YU/SezsVǿO.Fy ʿk?}4)ԟ~P?Oݿ~_ ?Sz?Sz)W~> ~P? ?S|rPU_]omhb6rbv? ~oW?ùR)W)W)W~=O៲CT~?Sz?SoܿԿ޿>k~mt-!^~Ͻ[^&!O)7]1ßC*{Kr7_'琢?__ßC*U_?T^??ܿ77X>¿u,_?]NG%ǿ ~֑w9:?௃.'#[Gu?}Xg_'|?h~GB)<{|GF?US^T`<,t|/ğwU߰JiOO ~;}C*)puׯo]zJU\~Rs-O ~;Ϯuװ57VO ~;E%~bUSN y;s ?]_ǿS84dǿ}^෵bߞJUO,3,δ8OI?%mlfoC%*<ヽgX?%uT^?Uwn=ڱ J)wfPCU}'k*)P?7FsPU oΟC7O*)u~>m@:JUwonΟ_CTɿ -fqvX?%u/'i= VOI?%뇪 ѱcSRh)޿Sw'}zaSRzTW,vX?%uT^gqy VUC[ǟRi)?Sz)~C~^?U?eܟjO៲կ޿^?u9,S)7\?T?e~n~n~n~n~n~n?/.x_^_mX_?5ǿS8sg*S*xzbiγU%/o^53W"B[ 3+xΣ1MwŸ?>u /i˽~;MgDg wj*)Ɵ:{m[, _Έ{y}a¯[fU.S)Bտ'}BWw^=ͿU?O{m,N*U*gXv}GVbT<7VW s}Y?Uw>tn¯Z?UiKO4~[V*տgcyNXoտq W_TwXwq=Bտq W*_Ujusc~߽9mYs??<=BJſn|? Ӛ;`{_̞¿Tr]~? 6cp|,V_T* s_'/[j4~Rᄄ9=E%zߏ_T*U_?<ٟ_T*U_}R9iscE_ ngSS~0o{} /*_?wk*Jſab/*Kz-X`qw9,[,nǿ ~ccm8:?]Ns_h^w9뚮u 2r ? ͬe~?/gH_ X*?/h|w9,_ϐ_K,mq_>-/)׽oE%BRo\?R~W~2߷|}|P?TH }uˋ?9_K} ˯?琊/Q ?9pvDw~k*Ro\?R~WR:{mM[, ~sHſ!}~sHѿ?9ߓD'琊Olfa~sHſ'OwaP?T_?TßC*6k*RzW~_?ϟuO8t~i.8hqVU_x_z'S=ϡS}pP/6◚*~aWqכ7*?)<_? *?t៵xP?9Bg*ϴ=QI4~Ο{ΝΟݹoW0R*?߇9Z?wl7q8,Ri>/7q8VI4~ΟΝ9oFKΟ;Kǿeao_ެUo%_~?.[-4~q);wǿOmMw <2l{-ڬ_zp vo8_r盵c~ ?c*)if=ͬVǿO?|^myV?VǿOfv̍E__ke>^jOʿ.;,vܻ?_ ?W~޿;V?U?e/?eO៲'Oٿ~ߣ{PUW?_??_??_??_??_??_ϛ{bqig-!|(U?9߸~~sHտj?ßC)wOԿ(W~_pz~sHտj~sHſ?T,:?௃.'#[Gu?}X~oK#c :r>¿u,_nnvX>^ZW--M?%o --?kZ[JU>Aiwu}J|J)?qvU* ~Gi׎UJ>ڵcE0yNZ+,Z8dq~)Ɵo=s~?wk?խÏu'_ ?W~_W?_wÏ>;P~޿޿¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿut7ww_׭W/*l+WS~ǿ. *g,[ z3 SlxjE!oͰV`珿aŸ?)S /uJW?^םCks_ΟRisuQjtu}Jy!9~k=[姚ͬVΟRizV᯵TO4~oΝýߧzRO4~F˟ΟRiQ*0WX_r3WϿ:?yz;:2o>\_=w\Y27VWϿ:?|.bBWǿvϏ_>̏C/¯u~K;{*Wǿo*Wǿv{z*Y07VWϿ:ʿ6Nn~dU0w\矨/*?|}+ ¿Wwb/*k)}g)a'8U'b%!E_ 07ܵ,/*5>D4ߟ!E_ 0?̮;a!E_ 0o> Rjϟ?#Ŀ/&𙫧6^8K_T_V_T*??7ZbqM|y-hqw9,硻wZ||.'uۮǿ ~c33?]N3_-8~en.'_ϐYtarXڳMw}~?Vo"xwzJJßC*?샇 ~sHſ~sHſw6'琊'琊'琊'琊'琊O?=Å?94!ڿWRon?}X~oK#c :r>¿u,_?]NG%ǿ ~֑C}!Ii.8hqS-Z`T#0?cS-~)PI4OngVipXT'zP/D'5ŏV0R*/9_Z;_?Kտ~)7󋆺^U~Uk[v}Ӆ Uw<|뎻7JտqC(/_}' | UW?`dqō7[ܖ/?e[w5oc~ yv[/?e/*X|Y;VǿO?[_wwm֎U/SeO_.{gv287{?k~;X?ߝڮv=]S~PRu4TjZU?~ǿ~៲õÓ63JO~_?e3(O៲៲¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿ?su_U?9 RzR)s?L7|:g~sHſ 琊CZ??T^??T^??T^??Tg.j?T;_??9c ~֑w9:?௃.'#[Gu?}X~oK#c :swϢ'[ŏG˟O ~;,?bqH?%ovS o]8O ~ǿ.s@KY|AO ~o?l-~:ZJUPJO4W?)ğwϥ>Y?]e[j9>I?%ΟS JU'7׍So)p(UXJ>?? Vgm0V_T>*$vk* ~GF盧r*+k* ~Ge`Ź cE?7>W*?yÏSiǿ˩4vXQ4 Qi3§k/*oO;Mu3rNJ]\aq!-O4cwGYdk ?Sz~[?Oǿ)7~_?e?n] ?So\?}P៚៲U?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7ßÿ7N8ïwfVmi?j<Ǣ w}l|5ǿo3xG2UwÏo89GlQ:J7 _?fv8,LΟRi^ :J]W=)Z/uJWFU)kq~|BWǿqMpX_=w\#7WϿ:?߽"Wǿ~wyX_=wWǿSο:?^*Wǿc#a¯u~;.-x¯u~;..އ΍UΏuwXlgdžUP3f'/*u\w[,?̾XQwkаv}ᏟBJſj[h]A!E_a7>/*N=Bp Ro *JſW;7Uկ?7sRo?ԏ6wtW_T*=Z?? |Rz*JſǺⶦЭ[1?]N.7?w>t;->7?]Nkk׎s?BΝñrX̟!?ן/c4/767͏Ǻ;̎ǹrX|9?ǹrX̟!?v{<.)-)lBR]{gF@%ßC*UßC=K0ßCUßC*z e_>J*=A8:1*RzRZRs>j~sHſ#c :r>¿u,_?]NG%ǿ ~֑w9:?௃.'#[Gu[d)m}N]\aq!-COF OJ_eX[*?)Ɵ? 6cpJ*?oK#c :r>¿u,_?]NG%ǿ ~֑w9:?௃?w矸('8`}~*)׽gYF-*)CóN-0|)ğwuvE5tOVok:ߺw ?]7~iͬ{aǿS]W?%*^zf.!ǿ8*~=o*~m* ~G*{,>z~Jwk* ~GF0V_T>*탭mwɍ}¿ǿ}T|7|[=?]NNZW ,YnᇿJ˿w?W~?H1Ï=d?SoP??OٿG៲?V?=ڳ?_U Oٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~3~4j(G?5ǿ}~ N/J6[-/Ÿ?> y?ˇ<|)ğ?),h֎Uk=~TrNiUX|_~!c2=gUO cZ_)WRzR)/ßC*U~?9_~sHſ#c :r>¿u,_?]N&ޖ%Wy95T9g|Y9UVfef $Q6RJBL6$`06n7fu8fj誒T>}zs߽qo|o wn|;Ύ3-#[G7%ǿ/#[G7%ǿ/#[G7%ǿ/#[G7%-o\lR_\uq.#Mc?J˿E=`T߳akEÿwC|" KOZ=sXO}|U[bf_X?mٿoUտ~'sdczz? }noW~_F[:}4CWVmU_w_s 8~ ~\͏U/-#l+_ǿ+lU/-Ͻ?k]|ŷ;_Ue_~]q*uWǿ_kӽ#~[?>&oٿ?S~[oZ?qR;νZ?-W߲ǵS^?ᇿeOoٿ^?ᇿe~n~n~n~n~n~n^#?9U?(?T܂R琒c 7/r ~sHſ[ßCJU_?ܿ)W~)WR!琊soJÿoߔ௃Oÿoߔ௃Oÿoߔ௃Oÿoߔ௃Oÿoߔ௃Oÿoߔ௃?H&1!~Kestq'?Bǿ-̿?<??#o ~7? do ~K :q,y`!!~KUͿ%?C!Q?]ƿgڿX %*[WwU/ܿ$?mU-[]o4V?w4~v񌋛XQQit¿ǿ˨4~lcM?>zFE?]F~aow*6\<* ~J~~¿ǿ˨4=K ?ݟJ* ~Jow* '/*2*?yǿSim? V?-zi>sqϻrJǿ_((~[~vmA|Rᇿeg|QiS?kǿ7]{P?ߴQ\*;߲E~[o?_Coٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~_r.~{|KY!~kb-=Pk<].͏Uk-?ſ7Z`7EϞPrm.t3.>+o?U̿{6z8~~F ~[{ :8VuRTxo7?VuRThJ̿?Vn~?e:aS7]vL?kzf8*oUΏ71ra4VWϿ:?,n\?_u~[V*Wǿ-_>!~_ߖΏ7#.N*Wǿ~0_nn¿*-nvH:V_Tj ߵK%vϧU'~SQL?[OQ7[BJſܫO7*/*% z}dE߭w,ß>s, E_C7/*ܫ¿S1>(Ŀ/M?tE_w}T_T*U?t¿TST_q5pU_w5 ~S}K.^u/qn~?*!] ~i wT~ku:͏'O{~?e-kǿz.~~Oßoz.87?ݟ??n~1s'_-\{d?jg&\qqŵ[Ro!O!T{19Q?琊% ~sHͿiUZR8j~sHſ?ßC*Mx?9_ ?9Z?TSewewewewewes.yznw' K_fyRiSFOVX*eMwq-|Ʊ ?-3M?Jc׵ß?g2zx&g+,3uWy|kr?Js_5tJ-_Z{.|v?-MiV ߻Mk..*Yo[wHkii?S_pn~l4)oX?fT_gwo??M~Ri̿{ot>ǿAi{_ÿ&/ӱYez–J:kiJZ'7Yϛ- ?–JmYm~̱MǖJkM,~U7ot8}l4)KS?+l-o.N~~[T:U߲}~[zgzot?W޿U_eOoٿ ߎ:Pᇿepv0G] AiVᇿe 5PᇿeOoٿ~5'_ ?-7_|'_ ?Wkg̿wǿC?-7>3߿s겋+aU琊{/T?9/ߒeW~_緄/ߒ/ ~sHѿ~s_>%%*w|Uׄ?9_v?wU&?T}3*R?9Sw\?ZJ?T;^wPßC*sK~7hRo<7^CT?琊ZVW!m'wBǿT\|iho ~O wkBǿ}ÔX?/xl4V?mŸ_*=CK7B<9[0^qc*ǿ-?_ qu4V?maMP?mao ~}`?ӱ %o Iſܿvq1__c~KT{0CW0pztoIߒ <q~K*U*w^7vq%u~K'Uc~K/O*u87Jߒ:%/*e[Ro#!'_5o %u~K*U* %u~K*U_T9[&%F93[Xߒ:%5cW۹UᷤoIſ*~Ϲ⎋]9~K[;nOϝoٿ~[zߢ'ߝ}Pᇿeym+?_Coٿ _ ?-W;>w~?-ww߻\?ߴQ߲ᇿeOCoٿ~[oZ?Tᇿe/߲'_ ?-7]s׽] ۗr7?V2Ms~-ls?6 U~kp5sn*?]x_n͏U_Z'!n&qKKRiӜޗY?/wC\*?][^\ZGu~KO9{/~N9[2E{?ww=|OiU~}{OY.\3V?e~r.<&~'^ cX_=@ȿ. _]U_S-*9QgܩVOWwt zoWO{t¯{H4*gGc~ؿH~߱y1lףU_ՏTv J2*S|t~_Eyt4VWM)/*~>ӱ zkzŸ[*S-o¿T1P_Vs R{_CK%\ Row zO83/*~zn5i/*Ƽ-P?=~V_T*O7 Eo-7m!E_~RowBFcE;ÿWQW}=o:V_T*U_W\|ŗ]|w{V?ؒU%"oƖT;_Ԯ_)z|s_??X?kOQ>ᅥ)J{z_W[-yؒc2[)3?E;nv._i ~ϵ^α_i ~'MǖT{1۟sV`-7w oySßC*MsX??Tga'琊q ?9qJ?T^??Tsؿ7RzRzRCvqőDŽ?9ߘ8.!O!O!!yH4ßC*}jj?9_~sHſßC*M!J~sHſßC*U_?T9w]q{={gW?Ρ¯ 2'!NB_=etC<2 ~_ xl_\7n~¯ ??S z/?~U[X_=~__k*O#]wn/w_lo\k)~\[Riw/~^JǖJ:wQ?N~vRi  >띭o^;.^ǖJgef7[òT?/- ۦcK[  =p Uԏ,怃⾥]Xߒ:%y8G~ӱ %u~K*jT?pztoIߒu&QooIߒ$^oPExc4VᷤoIͿ~ %u~K*U_T~XǙXߒ:%câ?*چ^ߒ:%O\Xߒ:%x]w\<^?m_ǿïˏ_.?~]~ ?~u/_ǿïˏ_'\>jiVᇿeMrrQ(߲s;|WiS?_ ?-WsG~U߲cZ?ᇿe>ϞMoٿ߲%)޿U?*?ev; ?]nPWǿ??U?]Hs?__~ qF_}ѡn~¯kU>o_ݿuC"C8☋.N[W_NW_@5*oMwFc~28X_=mvc~2¿fX_=7]??!ɾǧ_ yo4~[+=oIJyoMsX_=-W~OKWW^O/M^7Vߔ_-ڔoߔJO6%[G7¿oߔJO ¿uS*[s ~eT?/]_-CF/*[G7Dž#Ri;uޔoߔJd8*ĿoߔJE-oL\u?S}w.⿻{_U{.|G}|xi?S}ؒﬡ ̿%២F7x.[=e~ܱ7ؒτmoJ˿%២ZߘOK?E*OWYߛ–TsQ%២׺}s4qCi?STkK_,ccv{yOQJ?STkSewewewewewe{!G\sq^'ßC*?D>7O_緤_~s_>%5?琊o!?9GzC!?Hvܟ?琊U}<⮋;.wq]u; z/l_@7*ǿ/ZG¯ 2c_Rt; z/ǡ¯ ?ϺǿsW7Um%v; z/86 ~[۞m8b/?O;.*gC](0?S_vRi̿;.^rm/v-?e˭S?[xջx}g4~_[ykK?;ztl4)oz T?U7~xh<6TOߒzf_ ۾͏-3-}o [*6sJǿïˏ_.?~]~ ?~u/_ǿïˏ_.N8_^oٿooٿiAQ?;?-W~PC?W~{?-w-kٱRMߣ^~[onM ~#u ~#u ~#u ~#u ~#u ~#uo<޷=u?9߳R}?9 C|L(ßC*ێt?9ڃ琊?9_ ?9_!ßC*U_?Rz?9c!.BQ_?t.* :k! ~;見[.n* : _)6BQ_?S{]Q_?tEwA#TuAu 6njP_T2BQ_npv2|Gz-JU/:.T-[RdR̿  *-7=*WvxᷤoIſ~ }?w%u~K*s &[R緤_Xߒ:%sTyT=6*W.U-[Rzx=RoIߒw:wV(*8.c~KT^?UtlU-[¿?^o*-Ws.yzo.?~]~ ?~u/_ǿïˏ_.?~]~ ?/mLW[`ᇿeOoٿ7kOoٿ~[z;ׄ?W~?_e^?bᇿev~~ nǺ ?]j7X_}.䦋[X_}.qQ_}.{쏗uc~~ ' ?]n~¯? q?eOwC ?]T7Q?__2{1'Q~L.n*տ$]g<ۅX_=hU\U̿ ~yśazoWv?}WMBW?Ώ*oɿJS_t~_Z7W=G~g^U_}ڃ?~:PUZ0>w~_E?rmk Vy׬*Fc~4XQ:).s[Q:)y6/*[G7z/</*[G7O89 ET?ſߜzئTbޔoߔJſ֑M4~2{!l{ݗW?Oѷwv{gb?S}s_??_LOnwv{?1 ̿%២'q|wOQ+o?Sou?+nxvݬR-=oMo\(=[|]^ſ*OQ<_ד%KͿ%២Z[)Ϳ)2¿uS~?2¿uS~?2¿uS~?2¿uS~?2¿uS~?2¿uS=.N8l!D_緤xsR~sHſy:|J?/[RqW~Wm~sHſßC*Μ o ~sHſ?ßC*}e}0|p1ÿWVsS5׿Pտ_vKտ2ko~|7?VտouC U_mٿ'ηwo~m};-o(\lk)~vRiOgk)MusFg4W- ixU?/-cfnf2T^o{zY~p?NT?eZ_}Riw: u]q\C;~E[/o4~˿'w^~N(߲P߲ r?n]oߢs*wᇿe~OE?խÏu?W~n?װ?k^Zoٿ3Jr_ ?-wC ?-7O;(OoٿGᇿe/߲ϿU߲'_ϲ>`?,*܂Ro|61W~7'?9_ ?9ߘ{ ?9߇P?T޿WRo|ZRNRR!琊3u[;U?91s.~sHſ=׊~sHſc_C?9~sHſ;=(/ßCU;Ro\?WßC*M ?9'OW~7}b?T>3V'CL%*ޟy_nxӣ %o] XwU-~c[ϥ[ڿ%;Ķ%o]C\H1!~Kߒ*]2B!~K֟P?-v}/ [.ػ%XZWgK*W57aDT-[RoZ?$0{tұ %u~Kj}`*WϕϏU-[R oU-[RzT}MO開7oIſ׿[ %u~K*U_?T6,?cboIߒ~2-W~sL~K*}$oT?UXߒ:%O.Ϟu~wT~ w]~~oIߒ.yGQ\uq.ÿ~)~[jsZ?ᇿe>5T~U߲%_~P?-kiVv~ZeJT?ᇿe/߲oٿ~╰}iV~nR~[Z~;lX?ᇿe>ׄ?-w\;Վen'W_u*?M?-W~MU? q}*?m!J>uWT_gӱ :].>X_Ri}(Tk-Ư__6 Zu~KO}~c[X~[;wǿ:~}׺[*sOt?~c<\_~k.mVר0!~2d|Q_=Wq*~|'¯{B(*oMqRWU=Q-RibO[z?Q| ;KazkzT~X_=WuP?F5h~_(=:̿ V?{xUݿ?*uX_=~XGGw[as _!_T*}Tzƞ瀦cE__;oT?_3̳1%ĿTsH~¿gFcE_OBQW7T/[BJſH¿T^?_E_Cōn8UU R~v])Nϥ/*B\ qU(?Ev񢋗+/K?Ip_oRv>WJ̿!២x^}{Wv^? y^IǖTR?-o ~'i ~i~(>?+[RN[)zw]^ſ*OQ<^}LǖTo ~nxn=eZ˧]qq[Roɐ{P?T^??T^??T3]~7}gb?Z??/[Rz?9_~sHͿ~sHͿ~sHſ^F%ßC*ΏdZ!/[RQpR}*Ro|'LS%ßCUßC*U_?¿?o _>%5~uU>sqϻÿ.gwƳ?JUÿgӱ }HÿM~g{w뚿n{\@ K3¿ nXV/_ zןM]?Jg?g[:[u?? K[k1jG7׿k3 S =B.. ~6y9lǯvJ3=-J~džJl][Oۿmox+~-﬉5t[O?8FcKO}??oz?/n?o7 J{ߍ?^_rr4T߸kgM^rJ7 [*ss'[xRi?ؿ, ?c&ݬT?_kםcG ̿/uhǔo~[NPᇿe3](Jkg;[{2l#?E ߴ~•?kU߲cT]?~ _w߲￈EiV~X4)_R?_ ?W7ÏuOǿ~ǿ{( }$V܂Ro?9߃RP?琊#?ßC*UßC*WßC*=54'?9_C!/ßC*}LnwԿw|N~7}}?9_]T?9_ ?91BRzRoZ?oT??T^??ThR;?T^??{V4ßC*=-^??T~?9\@iH&1!~Ke<.>ӣ %o 맺J*ǿcKfXwYj_~K9Dw qo ~7]|h4V?]h6ĻFo ~cRz^}*ǿ7Γ}  %o RT9.n冋[%u~K'{sұ %u~Kj=ϯE_?svoIeI;G~C0~Ϳ?;=}SBS/2ϻ?)~cg̜U_ο~I|H ~w;Ϳ_do?)KuRTy]|X_=7HkiiVUO<V[o_jߟ *oſ\@iSR;O*ݿ_?̿ _W̿ pq𷷅̿ >:VtNi_U_Z$m*oɿJT\U_5 6*տ~k)-n_T}D0ߺZQ)P_Ǻsӱ R z? d7,PEgGa!EX?O:UcO7z8} RzzOt_T*Mb_t¿Tk~B(ǻacE_r RxP~¿BJſw{b3].}1*)z+.^ur7]^ſ_rq[)5 ؒXO:8>Xwo ~?g+'cK*Ub{%២ OK?Es񆋷Ko%OK?EؒK]?Sb7o [Ro(ǿCχ1??_??_k߲S-߲'Yǿ~oٿܿu=hU?9_#?琊c(O!5>"!5O!5ֿW~W~W~Wu~s_>%T{#lw-]<-!}2O ~sHſ7+O!^ w-T?9!7F~sHſy3~sHſ 琊j~sHſ~sHſ~'琊ϭ$J~sHſßC*MEU`?S.>>XwܟI\TuBǿoPb?|%*Ӆc~KU̿C,5f=Noǿ-̿ѯύ*ǿK^oǿZNZZ)c!~KU!>*ǿw|߅di!~Kο[.tp?w[.! _?ާcS%u~K*MscaG %u~K*=_r]{%[R緤X?c/ _M9Xߒ:%/*e[R8jSxm<_:VᷤoIſ ߄~KU*oq*-wk{=v+.VᷤoIͿۢWO ٹ^ߒ:%?G+>~ᷤo wT'r(N0񜋻.xŽ~T?~[Zᇿe>~C?-7ýf}78.oٿ _ ?-W~U_?^?>w9)oٿ{7病?-w|߈PᇿeOoٿ3'_ ?-W~U߲ᇿeOoٿ _ ?-W~=>tQɏ*?]ƿ'mK䎋υϺ+o?ekw8S`y3Xǿ7gt۟98U~7 ؿ_BSGow:[*_oӹXQRio<^LYwk-Ư>n~cZ/u~KO%KR_ןt.VuVRiRNg~5o>x-ziVUox:﷓ zkV} OO*տ1bT⺋ zkoz*û*տ ?oJkyW_T+ zkoM~_q¯Z1)oտ%C?*zl)!~qT[?T$ݹ0n Va׫*JzkzTo>U_:A}'V܂==1~\Q___޷kE_ w ?y\(?>o'?FcE_ƞ>5XQW~¿7UcZ?_wS*Jſÿ`ExsJ_w~NQW}Ws\R_T*U__<|WQw|H]%?E/ww^KƯ*܂)k%gK?Eu8>T㟒o ~rnc8XK_,+.^KjUo ~wܻE?St*x#ŏUߜ-២N﮹Z`-}>ӱ%/3{x;-w\?K=?STk9to ~sHſ^I0T?9M=}*R~nT?琊yZ~wP?T~?9_ ?9#{!!~sHſ3{?TJ?T{0g9<7yz-J?T{v{E7\~wܗOKßC*UßC*Uy%!W~w\;?TmKßC*UßC*]~@?p? *~Ϲ⎋]_OuCt?Sc4E{R({g]\7?Vտ>z zWw+, 2ޯ◻W*,O ?o@鳸Kk?/XVԿ(7ιVX*Qÿ>uN*ÿlNb/DžvKտ -VOgWX*moOx. ۖo~}_loF( }.-|ǺLk)om-?e՗[?ss.$ (^y_qvJ뷹~X4~k)}ӱw[Vq,Z'󣱥oqe?{.phl4~_[qW_߻wk) \2ު# ̿/ s,XS1߲cyF(߲D׿UÏE)߲g?*oٿ;+Ooٿ _oٿ;ڃRᇿe5?ߡno,~[j*Ooٿ?߲'߸4~+߲cs.~[!YǿF~?]?ߡx߷*܂RY|I_緄/ߒ~sHſ7H w)W~sHٿJ~sHſ;/J~sHٿJ~sHſ 琊o{3! ۪~sHſ~.nJ?T! ۨ~sHſ~sHſ>緅'琊on: 7.ßC*SIt?9X?Mr7B%ßC*O~sHſE~_w]tמ.0?⟺ [.GBr--ѯχϹy!~KUͿ%???-=_pK.~/&c~K8V?ma~o:V?maM\֟-8~]}^wg*yU-Wqx?{.>]?-o ~[ʿ' d~Ke{:ow9BW>t^w^ߒ:%c![;UH<ϏU-[Ro%X?Uu:l %u~K*MoT?UyϏJߒ:%^~o:VᷤoIſiT_TK緤oIſ ?o?Xߒ:%E*Okz?<͏{Gn1nߒUoIߒ tŕ~_rqwT~M*-7V9w]q{=/o4~˿ٽ#g?-7Z޿U߲%OkU߲oٿ~^:?-wܿOoٿ3~*]??-\ ;=2?-w{_?_ ?-7z ?-kOoٿ~E~U߲j~[z޿U߲s?{U6E|WG ο?wX?ݯ,WÏk.~{.~Cǿ-̿9λUk-Ư>z98k-Ư_Zu~K73_o4~u~$_o4~7~|=d_JWk:[*_}_Z/u~Ksf7]<%įZ7&07_W. _=.a.> įZ;~հ}iVUߞq-įZ;(j/?η~>ta!~ZSsc~_ŸVOCpV*տSYס?$įZwS wvq¯ZQ~"įZ^?Uyh4VW=ߥ?_̓BJſ1琩_T*=5T~¿~W_O>CQ7=I9U'n/*KjÿY8/*yJ_s\saEߴ~*^XQ7>"ڿ~*Jſv= soOE_2֟K_T*D?[;<+wNT_T*;O+.^unkalIſ;j?Scz}-W~ZIrLxE0-២~܄tlIſ~AOQJ?S䏕cϛ-W~Z)z~{blIſ*Oѩ8/nw>x\nsG%g?֗ݿX)zz`z`K*ό[Z-ηwKßCj=P?/[Re|~KU\¿?o _>%P?琚9W琚U?T^ka\ۦk[k~~[os ?-/~[o~\@i_ߪ%](J?W}~[xP~U߲OCoٿ|^iVᇿe??~[kiiVᇿeOǿ~?-W~U߲c[ßC*U_?Rz¿?oIͿßC*U_?T.?琊v T?9'sT??T]?]~W~W~W}~sHſqV~?9_ ?9_ ?9_ ?9_ ?9߮m|\s]Ww>Xo.U-[o?]dϵ⏒ [.KIQ`u98U-[|={/[-~Z %o _X|~KUͿp?ӱ %2~(-U-[x[yR#j}T-[R/T;I*-7o*Wsd_[R緤_1=~toIߒ>^ʿ \;~zسT~KT쨆*?NDlqXoIߒՏT'v[R緤_) Y:7oIſS?^#{_ןq~K*Mߟ#d`M*-W}P?#ϏU-[RzTn:VᷤoIſ}<⮋;.wqo u[*7m_ ?-7^۩Ooٿ?U߲'ܻb;^;V+?_~[z?}ɝoٿ;];PᇿeOoٿ~[zEiVᇿeOoٿ~[z;Oߒy׫߲oٿݿgr&w#o?eq~w c~kjMPo7BS/}4{ϵ߻=*?maM{^-KRiS?Xr^~ּ߫fs-[u~KϿi$_o4~9\ :_xUk-Ư>k`Z/u~K񫿿ۚU~?{"\W5SM.Nq¯Z~ vˣ zoW~X_=G룱 zoW?d?+ *QJ[2z[bT]<I*տϽ uW_=W~g|X?\w¯Z^x]?>b?zkzTm*տٟ5V܂= , ĿT܂=M$cEmÿ8aǹTzş?q__T*U? ¿5l¿T^?_kg}XQW~___ٛx9oJѿ{^_?_T*M9!២;xū.^U?-២Ӄ.cK*Mzo ~nw >ߝ=/~Z): q]%0 ̿%២}ww{/.|=-7yOQOK?Ee??E/u8=lIſ[?I~}ƆTr%២7YW~):<ƖTlKßC*LzA(ßC*U?RzRz?9X?1R?琊c ?9_jJ?TV~?9__;ό~C!O!^_?琢~sHſ3ObK|~%!S?琊wz~BRoZ??9_!<琒S)ßCJUßC*U~~sHѿßC*לs.yz'n?u*,o7}XZKKz_k?`T^Wϵ޿ 󰏫_ z=r0gUc4~_s~߿`TW1;%a(^GT?_wy#c?B7X?_k!uw0l΍_`T?/*,o.Lئ4~+?%+.^ur:[[~Bk)]<4[*G[*W!ߋ߿cͿi{4T?/-޿nAFcK[ٰmi?Sf}o [*g[)N+os?-Of6Pi̿F7f=oTs7~>[`? {kr?=wᇿeן+Ooٿ3?x-3B^?ᇿe'߸v跹!oٿi,"Pw߲sv%_[VUoٿ=r?WÏu?-w|)oٿiX???_ǿ~{~n~?7_s ~s_>%kRzRxpן琊:[ßC*O!UO!/ßC*UßC*UßC*UßC*Mn)7r ~sHſ7?9Z?X??Tn? T?94vG(ßC*-!?vҷ(R3ßC*U??9ߴ~kCN"Bǿ7gJ.]/%o ߄߆#7U-ozU\\/0 H!o ~Gp ' [bg{c/gBǿ!~>S`97~~Aw)~z~15[n %*ןK ~c!~Ke׼=ӗ{j-[8뽺So ~緧P$xu~KTk??_c:L??VᷤoIɿ;lT.c~KT~~~oIߒؿǵXߒ:%UOÎ鄋0>~+~KTV?U%[R緤_E^ߒ:%Ou?oIߒ ~v׏8K巤oIſڙ9c%u~K'[.k 8%k3@K񜋻.xŽ~TX;/1*?AOߚv~[8j b;^?T_e/߲ᇿe׭*OoٿU߲w^d)oٿג?_ ?-7Oz~[oZ?z~[z^?ᇿeyW߲c ?-WX?~[of?-m."|z(o?e_sUY7do?UͿwn 2;cR_DB{_ߚ6_]߅k-o>ϲUo oyǿ[jb*S/o_Z?-ow|.> D⯺ WZ?\U2~7.]?c/~;ν_{"^aD{~˽U8k=X_=W~Gka`~t_5*Mrh¯Z^?UT?/oտ?*V¯Z?Uyh4VWU_TTWGϵ]U_TuGc~_X_=7]{ȑ܂=Yc@Us܂= ]RoO&ĿT{?_|f'J_8:~Rzz=gRozr8y\({túkYUQW~¿f}_w¿T;M~¿~쏙dEߴ~-/oJſ%'K_T*U?f_E+Iͼ!២\|K.E/*OLLǖTwy[)ʱMǖT;^/~Z){K̷RZri-ZRխޅv k#`˖Yʽ_`\vi؂}ߗ ǬH|]q;([|~O9u_[VSE{^Rk]wkN_B*='~wlT?%鷁JᇿT;x/JᇿTO~KHſ 𗐊c  W~ W~ W!𗐊n G~ W_B*U8/!O/!ORjRb?%_~K2௟?'~T޿ 7t(O/!%*~KHſ>}}-=>q_5IX_oSmc*7*ߪ'ßsmi60rz/oY`xm*_۱i[FU[#jvV~a3o~70rg|nm/ߪKf#_wYYߪՏs],zf UW?gǏ}I:~ m'͍U/S}<?G?egמǿO?Z ?/~]~_|+c{__x͍U/SuX?eM*9q!G:OkE S.?eO[?Oٿ~_oQ_ZbB)W!Oٿ~ߴ9'OٿE~^?UW?_??_??_??_??_??_ >|\֏/sR񯭿3'L%_B*jR𗐊Տ/sRyRoڻ?𗐊 wsJ~KHſᇿT[,6?o&"Fm?CX ~oKWm#c 6j!¿m,iqA}u=sݫi{ >Io? ~;7mŸw ׆*9@R7U\?s N!q}?&-W?'W~n7 ?ZUsNa}wswOw??s}N @-?eOǿ~ߘX;ص?SoZ?/Ïu'Oٿi-៲?e?)WOٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~/mno>6~N\V?7ǿCkҊ{j㷿k~owJvouΟSmϴϩ~F3?U~#!V_9Z*9Ɵv7qPm7mŸ?!]3k޵Z!N?s*9Ɵo<o9?,*?]75^X~ߴM*^?Uϩ6~_?37VWϿ:?-u|¯u~;.ukxooWϿ:?a]c~+pQWϿ:?=9~ں6~S~+ghqSzz}1?WϿ:?ro=UΟ󯭿۵/-7=/uaisBJſ};^͞z!e_ !|_7 /+sV?8y 7 ¿cd!e-?S[;¿ͫoo_Vg}_/+_W?^U_V*Uo |[T*Jſi/ #7OV_V*V?߸Gm(^V_V*-??}cGb>a\&Oh{ɹqi~?牮fQ:.͏W'g&o8'_7RǏفq?7&O'w5*{v/gc?/,_F r4?]Mß̷q?Ҟw[X~~'6Om ~KHſi{9U?%g ?%_sg~KHſ 𗐊/!= ~KHſ~KHſi|`?%G~ W!𗐊/!K?D%ǿ ~w56?o&"Fm?CX ~oK_ڿفxXm|QW+o |Sm9;Smg ߰}w*W~¿1G:VoտCKol`T"ߘ{ =oW!*W㎟ӱ Mg;T/޷[ _᷿6/o\^z^?ᯧUqWIǿO$47VǿO8)>N>E?e~խO?_?eu7U/S?i>Θ_o?}ǓsD/S޷cn2?/~]~[Ǯ<7VǿO.ᄚށ}vO{^X׾bMcPfsӫ?e /ZJubݴzkr OٿK/g]'OٿM ?So ?S;៲U?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7_¿kgwww/-/!w?'BR񯭻ͶZRs;O(_B*Mb?%کֿ W!𗐊sֿ WRzRz?%_w_B*-?oKWm#c 6j!¿m,?]M?D%ǿ ~w56?o?㐫/_!ǿCkq }g7W>,ğw 7vHo ~;Ŀ_U[)W!ǿ_q\?'zϯ~YC O?'?~N)NUsNsM{aǿC+]vu/0xc[>V ~;Ŀi<G*U ~ػZ?s N__e//vk* ~;DYt¿ǿCT]Szŋ Qm?ڱ Qmv¿ǿCTi~lvce? ~k<c~qOq*Wǿ_0BWǿSο:?r?[\jtןo>{n¯u~;.ٱWϿ:?rs^a=/-7Aoΰ|G|eq\,7ۺ޿6~0| ¿}-_VjM}͝ww{U'7 Kۅg)O7ߞ}b;1?x*ĿT^?-!5OKHſ3q׏xm^XYW~¿1% /+Ƽ_.߿YW~¿q=o:V_V*-??|c]ȣ]w536֎K?N8NMSH/П'qi~?U> ǿ ~Sm ~֎K?YE'8ljI\&Oekvmd\&Oex-̟R}љv:.͏Wr7K?|v:._ڿo97|𗐊csPT?%n<~KHſ~KHſa~KHſi'𗐊'𗐊Ӝ"S?𗐊w~KHſ9Y*Rwg'𗐊O/!K?D%ǿ ~w56?o&"Fm?CX ~oK~z[q{|~Fg{>ɩ6g0ÿ13Ͼ={'f70r/CͳuXU/o73,>_U?D~¿1oz1t _ M&n|~F/?ЭU[zw-q[Yk<ONs{^XUOXUk ayPU x˫6]6/>΍sQZZ~D'8I>NqZ:l'*n"/76뒜|??7鶨?7~;nI9Lopޥt~Z?,Z]ֱ_؀sؿ'/qoSO[ssÿH-?T? =o:Ω6\ֱ?7/ A?Sz)}'t?S|ǕB)w~/?e/?e/?e/?e کֿ^?Ӭ?e8D>\mk~6\g@~ϴ?Sz?Sz)W)W~ϸ'OٿU?e/?eַ5tK ~KHſψ`W*RoD'𗐊'𗐊Ӽ+O/!O/!O/!5 ?%_ ?%X?mpPᇿT^?ᇿT~~KHſׅoq},/!^mp}x_*¿IſW׮ XH%_B*>Y*O/!O/!Ο?MBRoZ?m/!<~KHſ$}bRz?%߫x~KHſGkG/ +[gװV!ǿC?=;P3=-[Tsai~5ǃ ?-:} Nߡ#}X?s N)3Ǜ}]iǿy2WT-Ts돉j˿sH*9CG%* UsRIſcc-Uɿ YlVföSI?'E^, ްύcsRozs0*W 4vŸ:N*U?QmcWY{sRoq_? N97=?T*9ߋ+OǺ~֎UsRIſSp2N*MbgvŸ:N*\JUwmd}p:VI?'OEߚsRIſ/8.}uz[q{|~?s?\ ~& ~X?vP?eyC'Oٿi.?OٿU_UÏu?W7?e>#t~_{=CߞŔzmzc^?=ri[rX6E?OͿ Oٿo.+/?e{+?So_T'OٿicU_EOٿC ?S}= 7 ˷xnr> ρ w7b/koQ~>&ğ?ߡ9vR-̷% 7j}~`;s~^o jw /?Ϸtn<to밌U[Tcf7 ?So__7Rϩ6"OR.*o~z[ .IAٓ/WMg,5_8%U_=b78~{)>ΜU/*o9ƿWQ* rq_Uߺ9_v6UWS ^93 e*O9un¯V7Rc?>>8>#BJſiK?RZo mǻ !eX7c7~=k|I!e%XZo yS>>77V_V* *㎟cd¿T[𿿛H*JſRZo\^[^XY7}~bcm΍U=O7`w}¿T[kJ uoߝU9lR|\_.-k_V*{E~#n˄?ѮГ>񸏧~ZΏ?/ /"ʖ\*{ ϜzyEl|F=Ұ?'_DX?>?Ppx,T[sE{CIck9"ߺ=o:Iſo֤B?'_DSk9"2\tPᇿT/!Z^?T_~??_??_??_??_??_??goXžuǟ?OٿzBX ~_ ?SoZ?-\?5O៲Ӝ+O៲'Oٿ1Z)jg<C?Oٿ{~ؿֿO~c ~w56?o&"Fm?CX ~oKWm#c 6KJU>qkU?%߫6BRoZ?_B*jRzRz?%_ ?%_ ?%+'𗐊kׅ BRozs𗐊IX?ᇿT[yd¿o2ϾCB 6o/޿|/'7>C][c ~+̿_V{g]/e7o d!eW{磹~)k}W_ 3o>]B 6oux,}ϯY?E FJſ{k|qa~:!G}\tsRIſaN ?*a[]֎UsRIſϸ-Tg׏wŸ:N*$99rD(*O8s֎UsRIſat[_?W?'uT/y` N9WQwTڱ N9WQQm+Οկߩoq7Ο$ŸŸ:N*M{#v>O(*O8smrN?'uToqǽ>qO.?~]~ ?~u/_ǿïˏ_.?~]~ ?993p?So̻s+?Sr~ۿ_~{e~;j?Ïu?W~_?eS!OٿU?eׯ~x_2VW?!}kW?!ݸ6>?~uvaW?ߡ6z }WK?$į>ǿUw]~ |X_}?5~u>׀o^!~?z*v*UWw_8㰫?+ؾz[KŮ?s| /UuO}p{X_=w~4g͍Uߪ~ھaӬ*G7UߪUO oտBn*/*ǩ>6ύUߪկߩ BoտUDžsc~_EW Uߪ%}om_5?W9/HƛߪK%ח>>>> >$ĿoKwsceXk>]o ¿m,o>77V_VӞ7__V?XY6?j7Zl}WY¿oK_|w* T8V_V?ͮ~&/+FRmܳWm#c6~;W/+?/זlb"{F3'? $'\re ~=sN97}6?Ws?o^ vk9 '5/9"j?Pk ~Q<^~[;Iɿi59"jk_rEj~?qOvwfpN*Ms5^ ~3oݭ_9"VIſ*3'_D {{[,6?o&"Fm?CX ~oKWm#c 6j!¿m,i q~KHſ~KHſV?Y"m/!Z3s.?𗐊a{~KHſ 𗐊&31J~KHſ~KHſV?9nv O%_B*U_B*MC/!|^R 1}>wo*_U__Wǯ /tgѭ?[᳾> c~__{ұ z/ǿ?߼{ovX_=!t}nX_=~__nX_=! z/Csc~{Vm>p??Wy*d ׀o㖰-n ۠6Esj?7<;+??&g=3.k}v΀ݫ|Y|Ǻy~/q nmEm?_ÿhfu3=?7=qN/ze?7n_ÿHqN/rOw[ T"os ~/r*?~ǿ~ǿ~ǿ~ǿ~ǿ~/_~۞u?៲'y8Ɵ?Oٿzf)w~ ƿh)W~k9sf)։: ?SC៲'OٿU??SozaeW돡_V{gͿ* 6o/_7R*;⠏N'**w)4G:*W˭Ο}~¿3 X?'uT~(ZTI 7or:9ߴ~B%*i{IOq:9iPUc{[;VI?'?T*9_*iϛUsRIſ3Pɿ k?޿K?'Lrnq4w9sRz?'O_sR 1}>w? ~ ?~u/_ǿïˏ_.?~]~ ?~u/s}iXrW.?e ,>?Oٿ~iR(?ex T~r׿AY6?j~7U{,L&"g&'4L+Nÿct힯XCc?hg5x;sy?'_DÁ1>GR?sEd>Ns{4gNÿq[;Iſ'5Ϝs{x{MeϜs{d;x.'_D=}=?SMYٵ#^t]Gр5Ϝb=6KCU?'_D;M94X!¿m,?]M?D%ǿ ~w56?o&"Fm?CX ;q)~KHſCBQ?𗐊'𗐊'𗐊'𗐊Ӝ[<Q?𗐊?%_ ?%_~KHſ> T%_B*U??%_ ?%_~c>q|(;y}w޿ǯ_=!n6Q:~_<|OW?gq}<*ǿO ?n/\?t¯ ~q7ǯ_=~_{F7),ou??s.<_ǝX_Gxs9ƟN$*n"}lY>r/S?ߕalkB<^?uO ;7Ω6~O?snY]G؞w?T? ?o> Z??7{qN?e3ݬ w~?OqxݞU'T?/.?~]~ ?~u/_ǿïˏ_.?~]~ ?~us{Y\zƟ?OٿLCa;m<{8=O[rk:Z)w~/?eO៲៲g/ZJMy៲կ޿޿[,6?o&"Fm?CX ~oKWm#c 6j!¿m,i^_M>n [NᇿT{vw&cBRJ~KHſV3qWXO/!/7U(_B*\jg\%/!O/!O/!53.o?𗐊sw 7f ~KHſiϢx~KHſK qi!e}|!z?/+ǿ>xͿ]RY?eſ-ZK icR¿xn_K m^>7¿oz'ceׇqsz-XY?E FJſGkG-.qɿ >ϴ!׏8tsRIſ6ӥBW˭ΟӜ_ֻ\(*q[;VI?' tGT¿3 &Ο n۳eniL(*ߵmUsRIſi͌ʿ |UsRIſ1QŸUsRIſTמl{Οߩ?T_o9X?U_sRzTI vŸ:N*Uᷰ4/_ǿïˏ_.?~]~ ?~u/_ǿï˿G}f{:ׇ&[ UU?eO៲-o?Oٿ~_~_ ?Sz?Sz)W~Iʧ}|ǧ||w*z~$Oǻ~¯>ǿCͷvl[cn~N_}(?Uw=ߏwO_ݿW;nc s T[oͿVW?k~zv{vG:\}t¯Vk?nƟ˿ >wn¯V^?27cwz[!7w0.ʿ v;kX_=W~~6w΍Uߪ%}Jm_5/̯V^?U/ ``UWM{Ef~x>qz[jT]~UWjUwc__f}z[C*'xz[oiǏ|}Om#c6~/|<17V_V9D2~RY6?j㷞?Nuk* T36* Tw[;V_VF s~fB}}u\B T=O* T}*w_/+FRmiK[[ؽ#W8"sމ}sԟ׮wLo˛+NÿL'8',4wy ~ѳow{s=g?ȼq(!_/V{/x|kcaNÿҞw{Io3'_DyI97~Ws ~'4k^˫-9"іg77-?'_Dgzͮ,oz?4X!¿m,?]M?D%ǿ ~w56?o&"Fm?CX =qqkT?𗐊-C{T?%ߴ~T?ᇿx?%g~KHſ?_BU<¿Iſ 𗐊'𗐚cT?𗐚U W☏{}>;7~W?gغX_=!Uzÿw:W<fS|!į zqLu~;_9qX:~_qD:~_fo:VW?n6a:~_W|գ] z/Ch8~<_z/C'8}~,¯__{~>^~*sB2>_ǝay*n" ;7Ω6vB7/¿ےﭮw$gn"ڡ8sP?s~2^8?e>vjgJT˿tSm9Zb ??W??^qN/r9.Mmҿ_r~n~n~n~n~n~KHxߥa]}k!qPyg?SozsyUB)W)7_,j Oٿ~E~^?U_U?eO៲K%"Fm?CX ~oKWm#c 6j!¿m,?]M?D%/^W]?~8 ڭ>nq[X)/!ޝM ?%[Cݼ#N[%/!/_B*U_T{xR-IX?ᇿT^?ᇿT?K_B*MK?%_ ?%O ~X?X2V_V{_>Sl¿o2~WK>*ĿoJ{QY?E F m^Y* 6oo_K o?zt})!e~_V{¿R!aGC/s:W8Ÿ:N*4WJ(*ö8sROtn._@O]qŸ:N*WZ(*'zM>~|-O?'uT޿_UnX?'uT޿׭Ο_T7ΟwT UI?'?T?8/^Οc"CmqΟg*WOʟ:N*U2锰L_~c>q|~u/_ǿïˏ_.?~]~ ?~u/_7:~ZW.?eg'\lk?Sz)7>$tU?e˕N)7\B~~~ߘf)W)w~Z?Oٿ~_U>>a¯>ǿC?WOuUw޻L7xnX_}}q%!~?o^)]Y}_¯_;돣B~_?՝??+į>ǿ:{Ŀv4kGk_?>06ƫߪ^k>nʿ 657VWU*_^c~_;\_ _)I~yF2$įVN~[& UuayPU;U^{[,sW7}0UO]n }lWM:Կ/rf~vNKx z[; d¯V޿?W9}ݬVW-?___x됍m>>)ĿoKomΝ֎Um#c6_Oq˿93ov r/-+' CX4?tͷv IϽu}O¿oKۼVO΍Um#c6ſ7/+=vݗzeXwU?Ȏ7v`qDN{ʯ09"zNȅn8'^=*Nÿۃ?x#Qϯܭ?'_D{=o _%'_DO{[ cWT쭹~?w~s?'_DSk=/V%'_D[c3n1_ ~}Ӟcq|(ǻwl[Bz/C'8m~,¯ }'Wǯ ~;_ew}X_=OuwzW߻xX_=~__?9in¯ ?uοҿ}[v\.ÿ]}>^¶?7-};r\?/zoݖՀӚYs<^g7?'?e'z.Ѐw531]as~i꬟ZR??=_roßg|fWk"??돝c{,5?<^g?#3ݬΩ6EUs\??W?7 ~u/_ǿïˏ_.?~]~ ?~u/_&->nKws)r}3?OٿV?oqӬ?eZcT?e/?eƟ?Oٿi}B)W)W)W~^?U?eK?D%ǿ ~w56?o&"Fm?CX ~oK_ڿҿ}[v/!¿JvU7C%_B*U_B*}xR߈O/!/_B*U_B*U_B*}#/!53[(_B*︵c 7Q_B*-Ϳ^o/+ǿ>]%ceח~k߸/f )w|% /+ǿ`ڱs/+ǿ>zO%cegͻ/7x*/+ǿbk/6o~7/+ǿl_kv7䷅m[|ܖ,p:W8N9N]>^,_(͞inX?'uT^?U/ 㒰} N91wO'}6csRzT?'/*[=ڱ N9j>nOw _?Οf%._$\Ÿ:N*y~/*q8VI?'fs*Wm8>Οvk8VI?'ZyC\csR ܸ=^~_.?~]~ ?~u/_ǿïˏ_.?~]ÿ>~cǟ?Oٿx럛>^*៲Ӛ/?OٿV3'OٿoQ_U?e?)_ K.៲jfJM[/?e/?e 'Oٿ*_|Ƿ||7}|[_}}|=¯>ǿCͻ6Ϛwm-!~?^v¯>ǿCcH7}W?!ii;B~WwK*~;U}ׄwt¯>ӿw>?6\U>AGߪ՟_}0VWbT{ z[n }[Z.*ǩc~߻ܬ _yBoտiW*_:VWU?o>$c~%KV'*'妹 z[C}n8VWU**oտO׿(?T{n¯V^S*+sX_=4X}mNN9'oK\ڱ ¿m,ƿ53_6o;/-$ח\gֹaƿ__'|K_%_B*U??%wj~KHſ~KHſwf'𗐊U-ܦ=ߞo?Id!~_olcT?~?~l|=Bǿ*sB2>Q_=!8X_=!s z/ǿsW7~__׫M*ǿŞƻT+kn6\*x:vF$mj_?^J9Ɵo8~/zEX1i-x~>}ǁJ75/>뉮W~?9X:Ω6~OeN~/{ߣalR??n\?WӚ迨0ǫL_IƛCo. I9 ïˏ_.?~]~ ?~u/_ǿïˏ_.?~]>\=ܖwxP6?SozsT?ygťR)7=Q?e៲B)w~])W!Oٿ~s~_[,6?o&"Fm?CX ~oKWm#c 6j!¿m,iܿJ rwU?%?ϟ_e/+ǿ]eח~ko_Jw}?n6ڱkB 6o/_7Rw}{߿/+ǿ5_;oe]냿%ĿoJ8* 6o5+ )_m;}Kw;_vmUsRIſw^I_$g;:N*Mkf/ʿ m=nX?'uT{Gr w`Tmu:9_E,tv8Nß:N*U*}tŸ:N*=&^?Uc{[;VI?' ŸŸ:N*U?¿3mv:9_iJUm;k;ΟE~]ytŸ:N*U~4/_ǿïˏ_.?~]~ ?~u/_ǿï˟}<~_yg$._*៲'OٿOW?_"៲'Oٿi៲'Oٿ/LrJ~ߴ~ۢ6E?OͿ~_~v~_oUo:Q*_!~ί>Hu}:B_N{YX_}u;ݬWW?U_:Q#v>珺ӞNQGݿ_|7||돇)į>珺?Wb T:Q#ݬg>ƾ;B_N{WQ'߻v;Yk |BW?9ڿ{a|PU7cG2~z[zT?.UOG*O8yn¯V{Ӯ*Yk=> U>]Tz >8> z_ŸU߲珩/*=in¯V~PfދߪӜ+/*8+g e*W?'wUߪӜ+>[~'|87VW-?__\7_&ח_JǪvl/ s~ضA_&ח0~l w,~__~mixǿ ߔ~[B?9vǿ __F63qco FΏWo>ڳ~*7#_H^/"gѮ/|<_ſ1/u=$/k?'_DvmSL:Iſ*-_DW;og5Eq //9"-*3'_Dxy[;Iſ*3'_D@{n~nnik9"J{} W~?/Lr^˫-9":tUgNÿ^\fpN*U9"gowqN*-?oKWm#c 6j!¿m,?]M?D%ǿ ~w56?orgs{HT?%Y*RbR1 ?%_ ?%_ ?%?ϟՏT{gw 鞟_sR]~KHſ* ~KHſ*^~_.?~]~ ?~u/_ǿïˏ_.?~]^_>~-~ǟ?/o?>}Ҁ__{W¶?7>vؙӀ~ƺYs<^gcmY 宯V7mkim? Tο/q2/{_^?/HnOW?k_?_7,X?Wl΍s/S?}ְY9O Ӟ^`UW9_??_??_??_??_??_ ^_}7ǟ?OٿW׮ dƟ?OٿӖ7 ~߫\_??Sos ~ؿֿ~~ߴ~^'OٿU_<U?eK?D%ǿ ~w56?o&"Fm?CX ~oK_ڿ/ǯ'p:Rkjv/!O/!̿  3U?%_ ?%ֿ W~ W~ W~ 7=g ~KHſ~KHſ 𗐊K%"Fm?CX ~oKWm#c 6j!¿m,?]M?D%/kk>Yto2WmrN9d]{PUz>vcsRI݌I(*qI>{}w:9_)N ,gΟZŸUsRIſiN~/̟:N*U_TYk}><~(kZ?!b_!bC 1\ O -c7.[s2o\?% e߸Joq2+?twvߊ}?Y->uPV7ɉuPwO_Xi[slqlwS(C_3by[9#Ub?+=_~ns!+:uP??b?+=Z8i՞XzЊ}lrlm'>l?X鯾iC+s:qT؊(C_??on=ZZPbşVwN:W uPwO|V罧˱Pbz͛şVPbVkT {{s_O߮?_O߮?_O߮s?O~K_3_}ϵş?>V6~??/)W_?_k'O_?)Wgykǟڝ?_kwO?;v?ǟڝ?_kw?Du<]?/nRZ|CG9NXrlKO+j/_}ccU= [~0*Z_z돭[~b8qܒc+_j_o޹؊_??X|Ī=o}~пnv64+_ׯcm3o}W~^\iq%VϿ+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_J9b?H uwb(㿜]X-+[ _N5wo_N=ޫwO/'jq(V[ρ3_NJ>՟y#(㿜zkO(㿜|g(㿜p;/''5]{rt8+߿g(㿜oo~q%+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_Y-\ǽZ|_+ +?7w5{_??X +,!b_?!bV ZZ?CJ__+5{{W;9W? ?v/oן⏿]?v/oן⏿]?v/oן?eG: _Ʊqc+)߷5O@ϥq%/Sv㍎q[ _rp޻Z|.lş?eU{/0O񟲿r[[Oٟ_?i?;v?ǟڝ?_kwO?;v?ǟڝ?_kwO?;v?ǟڝ?_O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\k] *;]?MW5˦jdlۚdG؊OS26C}pjdlz9-ߟelNӟelwc,[?9?4o\8NW7dlNӟelqc+]˿fcj>x/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]厛Coݟ؊[yw\xɱOߠK[u;KWTO^=o}o^w8]rl߼:n[>7N.K[uUMK[uc%Vߺ?{؊[\2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\_Spx1'T߸j۪z@_z 3C߸ޯ3޻WqQyo=ڟ5Y߯ݏ5͹O?w2y@׿/9q@_ծN7.Y%_ϋ?Fq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ ˿fcj> O߮?_O߮?_O߮?__ю[OcC=zlş?eՎ[-O.DžK[Oٿ>=qjxC)ض؊?_X؊?9ne<~jߖ\c+)s;?;v?ǟڝ?_kwO?;v?ǟڝ?_kwO?;v?ǟڝ?_kwo?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_?w\c+]?MOuzjx]sYoJ濭O{؊OS26c}pcu؊OS26s}p^s_dlNӟelpcKq?q??Os^=5ߔj^{;o7.c?'9V[_DZqcc < _O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?"ǥr|!Ouض؊[yu8nCoݟ?qc͒c+oݟr;[Nyo^=kk?w!Ot}؊[y[|[>)ߺ?H/9o}s7W?% e߸Joq2+O?)e?W/ßSB˘_? 1\ ל:pjgBݙU/+Aqޞ!C߸+ޯ~O?=9I΅q <~V2缜:+<~ W-XC߸~μٱySOkQwt9ڟ5Y_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?%_:vs_O߮?_O߮?_O߮?6߳9^Xgȟ?eYrlş?e-펳c+)_qNJ?'Wyo}U5/Sۖ؊?߮Ŏ+W6\؊?^lş?e͎msf=O7 [Oٟ_?O9v?ǟڝ?_kwO?;v?ǟڝ?_kwO?;v?ǟڝ?_kwO-7W?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq>8q~eǿk)}lpln>Dq>8q-ޟelXI1o7.c?GyŊOS26UrΫV9/q?qΗ߸͟i߸{O26؊_Fڱϱ??v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן?n9Ȑ[yyɱOp8qNl߼G8kl%K-[eccu=o}o^v4gU Vߺ?mN1o}oןw:vU_o}/߼۪W[u_rloJoq2+O?)e?W/ßSB˘_? 1\ O -c7.9Zسh &jxO?߷g6ڟ5qjaޛ9nIy ?Fg +[_W2cs^y *C߸*ׁkw_?~OkQ ڟ5峫}5ϝw_?~owg}.3P+ߔJoq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSBڱϱi_O߮?_O߮?_O߮?)otlqlwlc+)ם8kɱ7_|9/Sojɱ9qN6O?<~+yoߟ^㸕Zx޼Q_쿵9K__lc+)qǝidȟ⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/oן⏿]?v/o?WsSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ sU ;*;]?MW5=Dq>Q->5ߔw8q[oJ4o\_?_=5ߔL{Kq}{tsp;s;MӺ>:Π߸͟NӟelK_DZqcc < _O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?BͿv\b߼_|ߺ?xcCoݟx*9>Ր[9ǜOm9/_[}\9>ϐ[yu( ߺ?___|}o2o}o^K[u Ǒ?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Jqo\_Z؃j7.YS-i@_޽WT ^东(sKϕsg%zλ3TWqM_`gY߯t~(59j9ڟ5՟Yj?;Bg_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?%_=+?_O߮?_O߮?_O8qXC)vkv#9Oߵ]`ȟ?e:.Xrlş?e=Wυ_/纗8nŎ+ _/ri[OFMg/9O?<~ǟNsO?;v?ǟڝ?_kwO?;v?ǟڝ?_kwO?;v?ǟڝ?[oJoq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O26}qnp|ʎOS26}qz؊OS26m}RV#Jw 7%c?;<|[?OvZc+]?M9?8O26/?Ot>c+]?Myo}{؊OS26j_DZqcc < _O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?ccגc+oݟ_|}]g>7;.9o}o^?~ɱOow8Oρ؊[yUy[>7A#c+oݟ>7؊[y8;Zrl߼3[>+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? kL8ZxHݝco\_Sc]ӉU @_MgniLy +Z|ڟ5z/p翫93p׿Ϊ,9ڟ56Yۼ~ρqM݃ϯ.C߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘__DZqcc?oן⏿]?v/oן⏿]?v/oן⏿]?v/S?q(9>ڐ?':NuYrlş?eՎ96OkK_G4=Ɛ?_|mU\<~/os-1O񟲿_??j{؊?4]؊?;?;v?ǟڝ?_kwO?;v?ǟڝ?_kwO?;v?ǟڝ?_kwo?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_?6َm5ߔ}jo\_7{؊OS2601c+]?M,9rO26}ʱZ|lſk)Fwlc+]?M+w8Z8>q-ޟelXlſk)η>>ٱO26=$[oJ?sV2ۗ^Վ}+1_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?_O߮?7vYs؉?k8I5cؒɎK_[߼g86:4Ǜ[CM׷9M}|&뿷9֪=ğ ٰ?w;̟;i;[y8qcy[?oC8ձ~1<~ߝnvlߣnǟ5_38y8/zl'WsSB˘_? 1\ O -c7.[s2o\?% e߸Joq_7 G8~Ogq*COc~1W?Wbv7.뿹y,՟!o\g[לG?o.?yOomSgnc_#[gݑ͹㱆˟~o~.l;{-|Nx_GYBh G " t ]W«w']x6 ]_gu}} { {rֿO!XLSzroꐼ} ^t]/m<)t&LΙ6uK]9Ƴ]_Qy^4sg0_R^}Kq{{ =Cgw/W sG_mCB_sky+tG_y=P˿k^Su Z{GOy!|Z;)\&0Rt }|SAp/^L/C.Az]_p/l.~] ϣ2uΡ}}B!bz +<l=C&0O'e ~&Wut}]:z-S>B]9 But}r~ν=4g<]3ϰ磟sC뇾_Wϋ}meG_/ \Pϳ}~ {J_s)Ͻ!OB!bz +<l=C&0/@麎^7{?su#m6%{Gsǂ/ۺ<n)$6}{toݟ煏Rh]߅+ݟ/ |t ,])t!nA#\=_/OtG c@ !b1}=_y?!y VDm7 P_pky~U`ws?t}e>ڇG_yAdtW t_]_ut><7 ]_pCAFɂڇG_^)$to [t#lA_zЗ ???MA=au~}⥂3B- PO aO/\,BB߯] u_ tO?Yׯ'u_o kt%K ]$3kЗ_I63=V}حG1A?#^[˓\£fu??f{u>tw 猾Π ?7's/H}c.t[n.<^}utdEA Ou-]_>E}uV ${PHOwӄfu??ry|Bu7 }Z>3:FpBhA_GC?AN}v r zh! 'B,竰2ǖ:$orCckQs?wO:]/t]?m<)teGo6w^2'݌<o6ur~tO ]{ZkB_skyRYBh_?|L6 o+寯ź a$/zOywmA]A_C?RɂϬV}-gZͳJ8Kߜo{-g-կ>ƺ'{Y?XE!;  .uϷ|tz!OZ:]>!b1}=_y?!yןt]G(ahButdhF%e6GBu|c6w ]{ewϷ/ g@G?k}m<Y޷ʭkm<[!}{twvpa˿k^SZyJA_KSقϣ{׼L=d~OxA_Cxl`eˬ0|!ou-̏[ڛ7ߢ$Ohl5}=JUxpAOPypaڟG~2~?^"B,竰2ǖ:$orC*C\nkZkQzp\ I7#~VZu>n0_Rl6s~/n-wsV}ǭM6w .K_?_^Gq~]7ח ????3{^.螺uU>?O^!G?sJkHΘuN|weE }KGH7B_н ν.~ ^+a2'!_y O[} B!UXcKM7Iu ]F! 6}{3sG'm<_~???@ _[Bמ~_?Wx"/<C }ŭ}>B~U/zO׽\^*g +Fyb!V“]_?sj-f-o^3>3z-YKhͷg{I%Yךz-ս+A A8ߢktnG: _[ZB*B !*%ɛ?P<|6w|7rʬ%'[TpA=5݂tkBB_(^@o믾=rE_gE-g-{Y !b1}=_y?!y[Eu>GskEgu C7#~~VuֻxG?xڪ@/???7gsе_up/<uW}#tWB_vky>"t}/N/B]guU6}Ru]Gk\???Wfsе_w:t5(wBWxtgBWx~C=K˿k^S/u3Y;Wȭ}o''ut}su}![W=Cw'o uկu2?N\ l.fY}3„c矅 $|>%w]G_s뺏ΟB<[roꐼ}$^w4? Z+::=zQׯXׯ6CBfr?JM!?p=εNW8?w ^뢟ck5Q)5TCB_Hᛳ@xOVЗ9BW6 O[BWxAx{sum)]BC_gINe=V; WRu?;XLo3Θs$J9s9/9#9 9*QP0`v0P1|k}YT_wϪ߽{}p&*@ԇ]J)SU'R3)@8u! \p/_@? :[ _o~7o~Hw }Jm4yez8'so:'5pxw,{NGյo~7o~Mzu?8|3?8{{ѿ%RW{cן{{W=s޻J@QG#x}x} x J@/uyK@J)LT[ϫ25M߸ d@NvoY`Yl V읎-k)O~jRWϟHM8sٛgK8u!)sK:'' 7QM|ܚQaaP(m}/~1o~7/"M7 9S:'9Fq0o]9DoиO:gcA@2h]93Ӹ\[7o~7o&9^V2,{P?Ͻ7V_a? {l^2=W=J@ Fo>KR/C5ygǀן}>%^Rj&UoQuUԄs2vJǗռ/`D|Jx`y`D:sx`Dԇ}{E}y FىJJ)SU'R53끨;[Ao }8[u~6vtNt]IϽ gxB7o~"҄7_Ass/s#5VWlϿe;l?Z[2?Hdy*h++s1/GΕm只k7o~7?s]=^o(Xoy6WG\~_կ෠#xoy`Ļ;y>7e ?Op_'x}8GSSNRJWejj_qGU/RC3'v JǗ?>@`Aπe/> ˊ{=uF}'vq_Ϳڮ>;GR_MQuUQj gHu/{CQ9Xܗ*y!fu~Y>7N]o{o~7o~i!O[ =VՓW*˧s29>yens2_kA[y}v~k9V1o~7o~I~vJ=?~`Z#(]S_Ψ|<?_u/Y75w/oRPuJ=?^ޗ;@#Tz]Rj&UoQuUԄt|i1'Bǀ0W˺/>b/3gЖ?ڲ;ߦ;a[w+R_MQuUQj zp(g{CQ99u_p%B:'GukdQϦs2P7o~74ސAstN)h+?UwX4?pFs2m)ye7s2_WA[WM^zEsV3im@[7o~7o&OgeطRJ=a 3"Oo^R_̀k}2^5*ھЇsz Tz#xJ};~+p/(b_W)jyU9wT]վ"5>>s t|i}p( E_ !y@?W[?Ql JBoɉ7+y XzRJj?5EUGɫO&{@9ΐt~oM sZ:'s:?gTg:%527@^b~7o~_D7=/9߀oq~fOV~v'tNVW^[ҀHm只k7o~7,qVm@y`П3K#.F$| }8w(`z/< ^{ p>`GDՀ=B.(]5qOc`"SRJ)fz^yΟn}UWHMN@:~:grQ \`?s }aWRԇ8[vtsކ]F7%y7maǑRJT篦}}(5yԄCqϩgKT\ >s29:?gQvt9?irP7o~74?~NMd^OA[K=s2GyDߓ<7z{Odg~vm只k7o~7ggA-;v,> GKaDo,͗jÞ~ O?_>܋_M}m3Z{4oϿZz,V^iw*诔RJD*S?T;jWg68JǗ\,lj ^WU:r߲_fE7;ϖ|C e]oY2YVJ)SU'R>i#~o s|:'ýú=Ÿ_U^#i91tZ/7o~7E yD?/@[7I^#A4 }89ߔ2wh[9|\Ͽc?R4gi#h+T]7o~7$?a> ^ S'ðۇ@ €o|.` z\]sxpQ:<O;jq0]@ߚ??# |G}[#~gs%u}سmpRJ)5LstS7}EjrH?|dp`O .ߋt|i^:dQv`o{u^ D}g'@)xWST]վjDjYΟD}89<pFaOԇI:152gtNR]o{o~7o~i“ސ@stN')V~ h9pLm¥Ws27kmD/ ;h+T]7o~7$3K, J=礿RJT篦}}(5y=@ԇ0:?mSԇ97?^#tN淠TԇqoP7o~74<9R/P[s_%bP[s"\mg?Ϟ tNfGV1o~7o~Iצ3g`W@u>Ra._% p^۠Sj{1v%/}>[5lO'_G)jyU9wT]վ"5Dwu*'SZ_aO[Om07`GPt}CQ# 8;Rj?Ld~zz g>'s2[m}/~1o~7/"M77~NJg1mʩ tN0~A[H^oh95VV-WEsi_!Ά?}o~7o~o_3=0#fJN7o?pylp3(s^Np n/^g#^2|#w_@`c0ׁU<6Pg%p&(R3Qm==m>ܣhsRj7o~7o~7`^Q !p{ysG|paPwOaPtNuj}7o~&<9 yD?Os29`P[U9'Cm}| Dߔ]2h59 8V1o~7o~I3gwRne]};RajR 篞࿝]@eg~ B F?]L1#}g:,.:pJ)jyU9wT]վ"5Hit|iHDzJoRoO:bGR |Ku @uVE}J?RJj?5EUGɫO&O{C8+ܣ;>{s2@9 gcUwN9D}Md]o{o~7o~i¯!σ=BςL^cA4?]ܜ2h9;6VW@ͿZ:'XU>7o~7o~7_<{`J=J鏠gRQ$) JK@RQ^`#v:J<s})sF볠t<RJWejj_qGU/Rή};4/og P:4h?5v< JE?p{-6J)SU'RΓ D}8C½9%9t30_Q^#Ùnm}/~1o~7/"M͠7 9eO/A[O^ـ3$ǀߑ2h9{Zm ye\4Z VGյo~7o~M? ao̓`ċEdJa^1h\9\sp9x<\>x<~JL׏ p>8p8p%8 |pO ^:\ RJWejj_qGU/R!)󔎟p/, JGv%E}v`+]5D}>eRJT篦}}(5yԄOD}Id8ukdQ]9#@IaPtNf*ZG:'3׿Z/7o~7E D?-x&̙ %-yk ?w[% K?k@[7o~7o&9y`;a~004?1`|>va?Š y Aɟs2y <~ءD_oGA[>G^7po/^{ .%0RJ)5LstS7}Ejr 7DI맂A*hk`u!?vOVt]7zھԷ]lUԧ# (O~jRWϟHM y`Dԇ t']A^Q6 tZ/7o~7E zC^){~?Ostْ`h++Us:'sʿnphu9J{?}o~7o~o"};a'`0SZu|J촡Oo@烒c >>qF觠S/K>^\J@=?%zRJWejj_qGU/R}! u %@;g s,. 3?u#O)3J)SU'Rw s9uސ3Aԇ?g'F39Qs2:q52gLZ/7o~7E zCRϓ]Cm,ye~X~ߑ2h[9{ %! tNdCmoV1o~7o~I!2WFy~o\#^1 ?7r>k@@YPZ?\J}A+;~xJXD}RJj?5EUGɫO_:Nsfp?&=6QI2p.u~v \uZ/7o~7E D? < ^m.yeY4 }/th+}+r:'C տe:'C q6Quc~7o~7{a {f(syu=WSL jYg=gQJ@Cp4|7;%a^l^v'v>%RJWejj_qGU/RC!ct|i0  P)]XD}8߲/o ع ύ/ QR_MQuUQjΙD}8//^#ÙϚǪI 2t@gtNfkuj}7o~&/ 9}* 95h+?gHfh~u~Xߞ2.\ nm~dhU9#vm只k7o~7~7 ~  u}0ϓ?YcAg p3-# 0gb'̀=lRJ)fz^yΟn}UWHMs S:@i=nwAzG>Y{N]IQvv `Qԇ?@)xWST]վjDjr_7OE}ο|z ,pﰮ^#ùω jοZz& B:'>Fi{o~7o~iސiYs_R㬭D_F%VVHdv/?}o~7o~oa`Gs1e7fKpX /Ց k{xx .{ x e_zh8-8ا^ ǽ_{ H)jyU9wT]վ"59hr {t|t}?p , ^ S:jq]4Q-> D}6П\EYh@R_MQuUQjI[=s2:52Mz{Y^#yOz{qB7o~"҄ zCSI.s&?98V[W>\ nmgog#D{U>7o~7o~7Ͼv<3? ` M=J3\gWr`7P_V_r+zJW;@3Gl MϽПE)jyU9wT]վ"59qr٠tD/ n,x3X/ p`Ip:dvQi= X S(>lUԇMݚp6I)xWST]վjDjrg77Q=Ϲ@ԇۀ:v -( v!Rj&UoQuUAoș{- JǗly%X/,^ 9_ǃ&G%v+mkD}>&⯔Rj aPp{Nu @ԇ=B:?;QMqﰮP7o~74Aozӟs2?m4ye܋&>Ymg? tNvp I#_)vm只k7o~7S:5 ó+(zxVeDC벇< zx_zC. 85 x%?_ҺRJ)5LstS7}Ejr73!g+@@g~9ʠt|t}n* OVtq) :t8Uۉ/6QR/;6J)SU'R ( u=m >ks23:952灨|8Su~^-@gtN|uZ/7o~7E D?z<m<p$I:'=:?m> >Ws2so/D}vB7o~"҄?zCs~N<%`P[wL^SA4F6[ tN^ph+?#;DVwj+T]7o~7$o=piğ>vV~_=?@i-ׇ?+e7iWyRJD*S?T;j 8r(_Z?& | |/,h:إyƠ:g>h/Rj^z@)xWST]վjDjrE7r,t@ԇs> ^#}ʢ>jrP7o~74;ސAstN>??m_%ye8Ϳj:'Cz[?22\VW]IKs2Y U>7o~7o~7vLxvJǗ܋yGaPi=<7x/Jdzז=B)O̳<_y#Ğ/_RJ)fz^yΟn}UWHM)_Z? ǃS:YׂEASoӖ?v]/D}> ^RJ)5UW&ڟ?pރ{?E}HdT_^#nys:'3:&52[g`U_^#>y{:'3:[ _o~7o~H~? 3~N_Ǡ' $9_hOVWQ{:'s/` [$1 :%u[7o~7o& 8/p&(! K=?R1Ӡ3ޡK=KAg9ޞ/)R3Qm=XZLxR_MQuUQj I8ϛ99A7K\Jԇ.:kd>7o~: 9]:'=8h+?{{Y4̱`EY~ΟFV~y7o~7?qr+(F`"}A_>`o7a9S)zǂQGR?gH~!SvJ5Π3~mRJ)5LstS7}Ej7 JGX | -v | +R3<)?'\3Zݶ$?RJWejj_qGU/R!'RoO:|pRNA1_A[|A @g~@)xWST]վjDjrNlvyI_Xgu>Ës;]<Pkr9uj}7o~&l+)h+?g?9vm)yeO/+c^ks2e;k+T]7o~7$)ސ{{ط.πcNW?;jF)ΓpWJ}>%Wu`Ρ`;?8_4/Xv x lY@)jyU9wT]վ"5ur` t|i]1ǀ}q 1f8(_Z8(DWہz?բ}`U]`Q罀WJ)5UW&ڟ?|_\\koW9=>L4:[ _o~7o~H<Rϣ{m,pi)h+m+s2.m_'ye˦s2;gU>7o~7o~7ޞ{{Iz{J>ŠOR/пk{{J>}9((p_0p0lJ[}{{{aoR`Q^ \|RJ)5LstS7}Ej=N{Yt|t{9 >oK׀EAb |Qt} kYpfKύsgع)PJ)5UW&ڟ? 9D}LdEIws2s7Q9&=BQj#Z/7o~7E D?Os2sHͿy:'Cj+]+UO:'Ck-9DsV0k7o~7gE`p:|?hlRɟ.K `Mɟ:=<\} JJZ=?|e@G)jyU9wT]վ"5l`p*(_Z-w6 (?@[;P]Z5i#`{]~j;&ہ{RJj?5EUGɫO&{CNQs9t52QvpsIgr]_(FE}>,B7o~"҄zC{uWFCj" +sgϭ:Vg8 h+T]7o~7$=<9p3'#*s8~dzx^o }8RLg-v`oPo=<˂p}A{JJ)LT[ϫ25M߸уސ,p(_Z?pXppOU@p}.o ROԇ4vFK?Q`I#R_MQuUQjɉސ@ԧVϻkd8a ܟD}/:?;87o~7EAo 9eϳ?& g7LdO֚`?VۓW~S:'s<9Dsjo8V1o~7o~I#!vp.? +/Ǘ9r:x3`gTJ@Y3*)ph{k>1^=?<~'P >V^Oet|ɟ- RJWejj_qGU/RδJ};>~?yVët|i}^@:n8oӵ?D[RJj?5EUGɫO&m V]^ZM8=V@^b~7o~_Dޞ߀`P[}ߘ2wh~| \mkϞ`%;h+T]7o~7$s< 3A@v] ó`ϢB+UkAɟ4|j`cY p8^lv%/)ཀK a9R`J)LT[ϫ25M߸Q󰷇YRN{ʠ-vjo8.C 4Yt?}0:[ _o~7o~HRA[7O^5_Yp'̗A4 {ws4Ϳz:'(?}o~7o~os;v\E]4Rip$賀=<j^x+X]1oa3Ewf3^sVk;\v+ B^ \ VZ >6g/SχPkR/RJ)5LstS7}Ejr7"p,8/.ms5@3-m]p;s 88]_>QJ)E~jRWϟHM8g¹Tp39QtAԇ30:?::B7o~"҄'!ρ?:ʿAp&tN{zcʰ'>w{'?ޠQuc~7o~7!R>Þ\ ?{S,\R`%Aɿ#࿝=?D{e{We=P]Vzɿ#RJD*S?T;j> Kg> , X[^`68aM VÉ/ vQKv%)O~jRWϟHMv>'s2ܯsp$]go>s2ëT :[ _o~7o~H~5 yD?yʿq#Ĺs&} tN?\h++?/_s>m只k7o~7?r>`}AxA>"v԰M`qfu/&ZV/^ x8+X J< _/ >Z@)jyU9wT]վ"5 ;v}JQw` P:>'^TsG`)_SkSRJ)5UW&ڟ?p-9%aP9g9Op>'t{q_8guj}7o~&tk><<% U7Jd뀃@[M^;@4sƉ{Esvk_@@[7o~7o&O|>Nu%\8p98 \Jαp}UN<`p`š׊E?3v(m8ó)`'VH)FlJ)LT[ϫ25M߸Aoy{]JG9=VY D}J};-ۊz(DۀO䯔RjYtyqﭨ^>OYD}g~B7o~"҄zCcDstN>x9 D|l m8yes27/sDm只k7o~7uBp;8 \J%K]H7s?k1 N?^'A@}>V8s>%31ط5Xpo2v%m ?l@v@mRJWejj_qGU/Rc!ct|i=Y}>Q5`N`m>@ԟ{9>( !!>kQҾo}ܔRJj?5EUGɫO& D}8' =8WI(c39M|H9}>jZ/7o~7E ~NHd|o25/p^v<Odno2>K[7o~7o&/J=>p>П}Aޡ=`A9gT> 6p0, RoωH'@wLlS{7PJ)fz^yΟn}UWHMr)(|> z{JOd2m8'] )38 X0Ct}%>˃=*`_Rj)E+s<2 :yDߓ<n<_ gv`ϵ!džN};[`^>̰???_c<ǂsр}J%9.!}|v}>J:D9=PJ)fz^yΟn}UWHM8r:`?JǗ!s68'n*_Z.EwiˇYR`ЖqRjp+6 < >+Mpx>fOp4pewt͠$zx/Ğ?+i6pfD9 pJ)LT[ϫ25M߸ɡސ3gZ> JǗg(^2`oO p, pަtW{zi?`68(O~jRWϟHM> ]Qv|tAԇs>^#sDu~vl>tZ/7o~7E y#?3mgo) tNDM[-tNQp='h-9`ck7o~7g ys` kC TgRϧv`)ΙR/G9%vԔN:^pk_,< gm~RϦ{q`Pz]s}3@Rj&UoQuUAoe/Ks L€{Qf`sp:;p(/ ط]_ >ˁ+O~jRWϟHMýpߨs>g gMu~v >:tל:Q^stZ/7o~7E  -Ϗ#m9yeNZVW1p:'CM: DЇ|?}o~7o~o~owes  <]P |p6'SY3˃tޗ[;|xK?{nw YGǀlgwрRJD*S?T;j; طS:>ޖ:ԷS:>ޖ]9D}yx gtJćEGJ)xWST]վjDjٛ{AtFID}Jd AԇϹ]@gtNuZ/7o~7E 9zC D?v 15%d9+-_NͿ}:'s"^lܿQuc~7o~7ܷap? <J"] m>ܗuA3Epﭨ϶nm}/~1o~7/"Mݠ7O 9}*y1'hM90V/'7@4 =os.^h9j`oV1o~7o~IRy-((ӆ뷂ogU/(Ї2Oo*-#Y6/+X#AG{v@ɟ>WJ)fz^yΟn}UWHM|pf3t|ipp8 \sΊ,WT`MQAE|8{F]e|VR_MQuUQj rOtNukd8K(NaPtFOaOgtNfWuj}7o~&<3 yD?Ϧs2/߃m2yewX4VlL[N^A4?},MV~v(`sU>7o~7o~7Y 3B<^N!8 p.4k:0Z-pꫀL;vZgA@^sҞ N;8u 8П>fRJ)5LstS7}Ej½8>X K ήD}؍C};Q^[ ֕RJj?5EUGɫO&<>:52{^ vCz ܕpp*ÙA^b~7o~_DN1"9eϟsǴ9Dɜ'-ye |/Vg1`#=U>7o~7o~7~oO;^?GP(gc0 l.8~!ΨDK?SzpkBOg"_.{~~(R3Qm=Uw8 J}>7%(?J__>?\x(_Z/fʀA3e])xWST]վjDjy8 umkdSgtN3$]>FF-;pV'k:'ýB7o~"҄?zCs~N2.m%yes2gj+7W ;AmVWͿk:''^Gյo~7o~MO??|P/ 8r~UǃM|J?;3 !kuχ@y=p7&(qV|;>@*{t)8/H)jyU9wT]վ"5Io9 JOdӀ灨j`(_Z?Xmp(~08 D}';o?D׹ .~ah{I)xWST]վjDj?]>FIo gNmp&{P7o~74 N+;DRj&UoQuUd֠7|=^:~48pB>^:>7``= )ཋp- 82DW&\bǑRJT篦}}(5yԄ3$πj#s>+VPδ4 L(p&'w:'ӤG(J[ _o~7o~H D?LdπsLͿm:'s(ҴaP49}' g\:?}o~7o~o?/yK#菘FzJ>\zxva cMɧ^a/;J}>ў0zx t`H{N׀S}JJ)LT[ϫ25M߸hk2 ߰1gGG8:a̎9`$QA AQA2DY2$QQPHPg}S:S^Vsӽ{޵KU/Ғ&YC@`,>_>^WOM :̜@b3v}>qlu>=<`}Rө_}QmQjj}h}C0V ZqF{ Zs es5V/׿_׿ELG>3,=q㤃AD>{j Dd.:T+F`|jj:׿_׿hL:nw~M:8~IǍ˸こֹϤ4c}3/7prP+瀙N:=`nO)S JuJJ)Zϫ0ZiGU/Ғ-&Y/3+f/PAs{@k# ,ڀmDf ժv>PJ)5jVHKfaO AfD|1p瑱7Lf0 hhD0WCE׿_׿h;@>50 4^?[X:iNfWPGV 4':?JaQGҜ pHG5t_׿_׿m<塓|1ϧ#tRC?a :l_gc\\0ÇAV~.gf"{`QNɏRJ)8,soQm{'e{(_2`ζ`_ jy=`VRJT篾j}(5DZg3okOnViNfW0f0'Z4'>= 5k}/~ѿ_׿/"}`yiN/zU?bP?{Hvfa>OiN\p8ja>OӜ {s~Z_׿_}Oo]GN:q^)`<uI vw0I'=?g@>YY:wt0焹Ihehg6Ks2/D뜛d~K@6iN{u B_׿_"҇MF\ eiN'|DdZOH2?&ɜ Zߑje>ߚdojj:׿_׿9$^Gt0CyAy2aa'9lNܞ*q|29(.GqWpުR}RjqTUYEMߴڪio su{/o- Z?_ثS:4^z6`LX 9zׂORө_}QmQjj}}&yp-y(k=?:? `dh[铿tDV/׿_׿ENF\iN淀j_>lK96T+s ?"ɜ'ZI2ÉgϚSTCѿ_׿뿏0]GL:|t~)9E_a/Y9<'=s~JyAr#Ĝ"L:%\0O^Gt0;wr{)\ \ѾJ@RJ)8,soQm7|:[/ov_{hܫ빀?KY0_ Z{mM⹍l 6qS}DZ0׈MM)tW_T[~~Z"-a_ {HuO>o>žhZ96QH#>>uo3} uKs2V/׿_׿EDӋҜoWZAϾ j?9ʜNs2ǀq6~R79p0eVTCѿ_׿뿏<̀fpoRiTq`.9<0+f{p0GCb}f,5isa.<uIG)THǃ@)w:R.PRJ)8,soQm7|fG /o 8̖ASz:X׾#9fЧ>s[Y7൮URj:/Z_??J_? Z}AW,`{s/kAiN`haOΡiN B_׿_"҇_OFDSf\ .Cʟa?kZH2QG9;ZJqׂA-Q ]G׿_׿>w~!c r<3f.s}yS:~70YlP:6&aq3ϧt<{Jf1燽=<=Qs9G4RJQWea5>ӎj_%0(s~4V/׿_׿ENF\EiNuX2P?{rQ;s{ sH9DdX p4p(MiN=NG5t_׿_׿D͜y7B(!{S/\CE0p)(%4~850{<r{X14ι;'㎛fDR.RJ)8,soQmd>7` vJǗƷ{ 1'Zy{uq =?9?/ Xe;PϽKÜ_`o iu80;T^')=0Co|0(p7^` s_9 NWRjqTUYEMߴڪi sxvNi4J]4DU!g;3XDp)N~jϏRWO%!:Is2 x4 {uHs2odn:7dRDd_{_׿,W}ze\a{]?d'ISQVdR8oT+6_1lѿ_׿{͜yxx9`> 3@+K3p/55=8 f;z7bbc̼;3Z>sS륔RJ-* 󜿨vT["-$6RsŒwR5&`Qt9[>7낭: j~^ܛ,{gIPTCѿ_׿뿏H3o6X0s XJOw0OH<Qp)qbXYI|g<#Y^J3ۤq'#3f&u0sIRJ-* 󜿨vT["-.o}S%Cŀ{x/|\ƹ7 :1SE#x/`SqE0}J)Sڪi x>S:ca͡6'4's"8 guJ^3KO:̟A{_{_׿õ,4's };F 03R̹ 4's6( >/g?G5t_׿_׿g+A)y{j J 'x㎫@)lp;!>\U&`M>3j 3{^xy{Sc[E㎥&;Teq@uN:;J)Zϫ0ZiGU/| K[.O}QļqG# Z}~s+f L$k1H)tW_T[~~Z"-L:g.,hӜB1 uLs2e4'ý_{_׿o&Y4's9\jg /dPV>QG9wI.^;z?_׿_׿?KƳ[;A瀷']LSunUiS:1M:<>0OuJ3ǿ uDϤq̤w{N:Jux&W;;PJ)Gz^y_M;Z_|=0/5h}f ^> JǗƹQU@:ct=ۀZKB{V}f7ͥL)Ԓ_}QmQjj}I$ZiN{ h>39G_c;O3sl9 ~+}/~ѿ_׿/"}y2 z2:p# T+~ҜVc}2je~ CP<Ég{_kj:׿_׿9P{La 'x3( r~JܫkA)4'{R4I3G <poǀ r~J㗌;ؿɤ0{]=mRj:/Z_??J_?<"pϩh9f hDdC^ch>q߱FLspak}/~ѿ_׿/"}~2 z^dU?bOK?` Ijna>OiNtp21'4'.`І_׿_~oROtTY7ˁR<^Qw\Kn:Ky>RO?tp>~O:J3_&J)Zϫ0ZiGU/ҒR>K`9T/ p/q|DJfEǿv:ܫk.W_f ]_)tW_T[~~Z"-a~ROCgVAN9ph 72h0Z __׿H8'unW@-kZoRO)3S 4's(~D;ɰg@G5t_׿_׿/78|V|tt<3j[a]s>i~ oSM:J<˾ts{s.[)Y֕r{'|;3now뤣q;RjqTUYEMߴڪi {cx9/)r~fׂOW>xṊa[H쏊yuǙ4RJ-jVHK+ΰ$Z*Cx4 {rucs=9yPVCgE Z B_׿_"f DkӜJZ۳-` ljA9DdǂSA-H2_>ɬG5t_׿_׿_&f7;@=)f&*S_yٸKt\1`>a/ s.wkqzqI3v/:yc./c .Py7 k~{gf7=y %f~ɧRJ)8,soQm=8/3e_Ds\?Y/3@̣S=-ۀzVxAm \kUHRJMZ?EUG'H<Dτk&C\}g_{t/u#y.:9t B_׿_"҇LF*Z{K96$je~Os2?ranR?:_׿_+̙y6gT3G{_3`f˰GY16Ÿ9B5{ ^< XYIZ 0g w=fw;4PJ)Gz^y_M;Z_r~(_/ԪϜ#pt|iS>sxOYt1[>y2bOt|Eܞ>ٯURJ)5jVHK5h0yhaONsl~E9'L$_׿_D4rާפ9ּ jX D}&˞{Z n!}85=ȸ={jj:׿_׿_a& =N9㎇N:wqǣ'W;u 0xܤy;4f]b>K_xnyX׋M3}s|xTJyDxJ)Zϫ0ZiGU/Ғ}oq`Op4(\5+{JG_J9sov:eZt|~h[fF+N~jϏRWO%'y#aƣY~ u~d~^ǀhǦ9C<̍ Z&0Z __׿HftDk'C5Dj~Rje.Q?Ms2R.P-Gg֖`y`_׿_߰o|׆@y \ }̖a_ʃ'ܞR^P~)_wEq=b^R^l+R_ߝܞR^P=^#mWJ)Zϫ0ZiGU/ҒRρ$P:>:^e(_/ժϼR\73a =13˥ܫ!)0Yw>*(_G̱7f'`T/8ךMuB>"Rj:/Z_??J_?p]}:\'afOfD뜞d.CT/a_ t2ŊyV/׿_׿Eg}zd4M@6<{ýjI%?3  T?wX?{6T5t_׿_׿_>fp̈́(}=yõRZteIMO:nwpq3dX牓t2xҤ9K<^<L `0kPVgϋk %RjqTUYEMߴڪiI)W/h>}p"ܞqfs=$Z4 f/iO5=EǙ1k sfOqjRj:/Z_??J_?79 Z{<1Shhf9 DdC} DLҜ̽t1A ~+}/~ѿ_׿/"}d4 )s~t3~D8| dKPS̹ {iNY@!ޗ@iN!]6}VTCѿ_׿뿏o J=):3\7aRUt:x򤣔SbGL:X)̢a6ീyM\*08pMa?%Sy$xx0`}^^WRjqTUYEMߴڪi7p ;83ChÜK0C0K.p},ZM| DWgW׬g&A3851f)N~jϏRWO%~I:y,hSҜ`hcud e:?Ks2W^h_׿_Dpd43?*F~RQ{}kPVg 4'R.P-+Z/9&}@'XTCѿ_׿뿏̙OwOì K!=e3"̢a/ _wr@(էuyIUt0xqsnwo;tpt}=,q#Cϼ&0}_ xMP?ׂ=l֯J)Zϫ0ZiGU/f qfI>+JǗƹuuhR΢0Πj#ĵ/k)N~jϏRWO%aOH{<3h Ӝ 394'd0;D0sF0Z __׿HfDkҜMjp#cV{]ErlJ4jeQ'93AiwZB{u_׿_㟿q|s~JKsw0{Q=fU3RGM:JdzW4-N_ Dǹp߱W? A|tRJ)8,soQmY.=Ѡt|tV}qp0}pWVgN8=DǙAl+N~jϏRWO%\R:Ns2\{y,Wh Ҝ 3mϞ";4'ΆQ:G4'')JV/׿_׿E,h;:P?3aQk9ߍT+s9?+jyDs.gfjj:׿_׿}Z; =?3|eǂwfpi=f9f ?pjk`~f]'.`} .Ai=qM镀 C}RJ-* 󜿨vT["-Q`;p (_gV̑V}| JǗNj M:y.ǵz3{Wl%p}L)tW_T[~~Z"-a_[u{ýÆsi#9ʰG(Z}Me?Y Dܘdt B_׿_"҇h}:dXY@[}@?߃c~Z/L2Q99\j/&EWu{jj:׿_׿9ü04̟a.~dzN~i#Pwp7kV_gв$-ߓbVsJ=1#T{s#BA"!VbaP_g@)ZUyU9QS7j}EZ85A8{c>?|:2q>¬8׎vƹV\#buxRө_}QmQjj}o [uIs2ih?fD"\ oegYӜ 3Y:GA`hZ}_׿_>5r}l{'KtϞD'w> gV 4';p8T+>=n߃?_׿_׿?v=A [;RO+<]o^Jy>f^RsJs{5sm6/a_d/| 7x-t5fG+Rj=Zkίk^ j~[[Ş%kZ_׿_}~3g^6?0dž||65&Py:x/(|X9_#m M;׵xn_ ̼U!ZW 5"~JJ)Zϫ0ZiGU/ҒR ׂR:>l@K>3aJǗ_ PzWil.\anv2:O>dSuJfsُL)Ԓ_}QmQjj}7p=:oOs2˃3zsqS'S9< t2whkӜ_k}/~ѿ_׿/"}`V}A>edIǝ_7Y̙?KR 4'̟\=,u_׿_7sf; _9</pT4\oa< 0'K)u 's-d}l>8^#:̾{m\C|]q;_\ qMI)ZUyU9QS7j}EZR)8skRJ?ru_C)ru+N~jϏRWO%y+>9BQf D0`hI( Z?t2h&CE׿_׿<ާK9{k'=)EsvUʷV=QLs2_Zoý^ۖ_׿_׿b|S:y`.KB̆`J)Zϫ0ZiGU/ҒR {Z<9l޼p-8fDs-P0'ZtK9N{8ףZk 0}\J)Sڪi7p ZiN=`hG D\dnCt2:d Kֹ9L:_{_׿3y oLǟ&ų$${XRA/Ӝl P?^[S_TCѿ_׿뿏Rڀ^q] ~M~Ni~)_zx-x(x=(/-(]M6ebr>߇2(n)1Ck;JbQ~NxRjqTUYEMߴڪiɷo,q| Zk,\k*8dh}}Dǹ&s=\ZͶ :άfDp͇}G+GRjV篾j}(5DZL YD#ɬhAΥiN6Cb:Gh}&e:Ls2KO:_{_׿z)6I] R̞ g=<{KS̕ 꿔s._:?Qa_yZ-Q ]G׿_׿>~3gbU8wy<[Ѿ3+5Ɵ3CqsOKuY}-}#s!(s=k琟-ksRJ-* 󜿨vT["-UlJGǹhfȔrKG_> u;XKB̗5QCGJ)Sڪio SG;ɰ'74?s'?ב^ ud?N#ýϢux?V/׿_׿EWޙA>>~ }S51> T+#j9 N];Rө_}QmQjj}7p-:|~9b/x-xV|YO)Rj=N~9?|狙̟K})Opmp1p=>QS{I\`y\fJ0fz=,yRJQWea5>ӎj_%\_0t|i|q5re0t|i_ g6M⹍a.Tq{H:<̲~dJ)l~jϏRWO%]̽u>fYzsU Dr~ Sv8GfєrJ9<\{LwS*) rxL+/\/8yy`.0ךRJ)8,soQm'=`sx)Ok}'`o)ot|t .E? }sS DǙ0t}Rө_}QmQjj}1qhiݫ_>rֹ20fhJ( Zs)4[9gsgychZ}_׿_>\~{goӜՀ@éVE󽡍3b?I-'Z@qiN4p4ߪk_Q|wﬕkj:׿_׿Ͻ\3Yf6` pb!>߫bQ)oIY4 ؟+D<31oyM;,q;|΀w<|wÌR6-xxn^&WJ)Gz^y_M;Z_0CP-`s83:/);V5aV^ :ε@8^Z_g&:#E0yץJ)Sڪi FV:k9O2rIG37+p(ZiF@Ӝ \V/׿_׿Eפޙ>?Z?jeT?bL)ߦZ?Ǥ9StP?mpG5t_׿_׿gF a bn s}ÿ5]\ <0ikb {Ndgq 8\{*<Ҿd3k0V>(ƹ.syΕRJQWea5>ӎj_%e>3dϽu^> {CתLcEǙ+)/q `UL8Aþ1\)tW_T[~~Z"-D <^,tD%k174':0y,ֹOy4V/׿_׿Eޙ ާFPS o/p/3UVBl90 LP?X?_ץ_׿_EDDDDDDDdɀYat|i2b Z:yK|ޏugꊎu#l?p`3s£pߊaN8ə_\qRө_}QmQjj},47OF 79[eS7@?Q+^?3yQg9s{Ns-&'DTCѿ_׿""""""""d\ K̙^TR\stt\?^}y5pyP5?3^h^:`Rj:/Z_??J_?h:iN&k0DV=-QJs2J2SӜ kry_1<_׿_׿'Y{/ri )x7`Lct{u?0[Aqf(1*Zg} (N~jϏRWODDDDDDDDDd}2e陎:*0燹@w<ۃO9Y j?'\ d~3k 4':\Z_׿_C%fgqf9C6 |/0[fe8DٛtU;p08hqY j$~pJ)l~jϏRWODDDDDDDDDdd4LGt?Kt0 $g{l> KSOS% 9Bcjg>V 4'9kZ_׿_C%}'YN{fx `Nokh}v3l#A>A5دgT_)tW_T[~~Z"""""""""" gFDQofaϝLG-̄aP?sv;Z/M2W9_sEϦZ]@iN?[Z_׿_C%C&YNS@hZ_oqN83m} t8X':~!,R^RJT篾j}(5DDDDDDDDDD߳~=Athg:>PRg{ojy D$\s1Vf;-APCѿ_׿""""""""dhu8/\X=*3 JǗW[ 'hǃ/E7Z7RJMZ?EUG'"""""""""<|f4c@th?M:W(}GkS̭ 4's !T+~Ҝ f_׿_EDDDDDDDdɠs(8DdgFP2{~- >JǗˁ>wǀ> Z{ =sBquDb.!@)tW_T[~~Z"""""""""" R3Y K9{'Z?fvQa~^sA/Ҝo"P'Rv 4':C/E5t_׿_׿/""""""""KZ9 T8shf¬Ko̖Up,sohR{}At|m')RJT篾j}(5DDDDDDDDDD͌f/+<rjgB _7_jeQ Zon| ljj:׿_׿_DDDDDDDD f9S:4~ ;F`(__l jgΉO}wA)o':EpS `}Rө_}QmQjj},41̟&ZٓÞ5Ҝ7G<Q?Ns2?߭m@iN}}YG5t_׿_׿/""""""""KLFxP:4~)`}D ؇`H@83:G3u{ Zg+쩝?J)SڪYhffFDQiNOfoӜ {TV ?f\P)7)4'Þw A-Q ]G׿_׿!Ȓ,]90{t|i :6K˂/Z 78FǿRJT篾j}(5DDDDDDDDDD?OF DQrI]ZmA?sv_YV>Q9\1je6Q>_?_׿_׿?Y28t2t@Jy>+6(/D] Zg7p4 F2aF?cbƑRJT篾j}(5DDDDDDDDDDf}#zK+#V&g7*kS s{Ls2^ZWK2[Ҝ̗{~jj:׿_׿_DDDDDDDD fJǗƙr Z&6(_3` ?ٛܞYI:{cDyn:@)_H)tW_T[~~Z"""""""""" ͓,퉮ޑd.P?gQJs28`.P-?J2?7\Z۳)/, jj:׿_׿_DDDDDDDD ^t|ipU!*_6pЧ>J?ܓgҷA{dRJ)W_T[~~Z"""""""""" m,KtDQoL3֯T7=g@_OR s{Hs2T+ܞ9U?_׿_׿?Y2`VSNK̊a/T"yJGǗ:{c@t|Op,8 D ekPJ)5jVBg:ק[kdDrl> V-ػŚ?_w9q1u_׿_¿,4r Jed hR}iYy ^w$yu B-DB!Q@EQᰇeYs{/k-ĘZ=w<'gWr߹_ċyT6RTϜ9*3g?u}R$:g\ʿrQ*rN*u}}K*IagRs'x<_l9@?O<|sqRiߧ5d2~P}Sjϩߦ&ʚTvR_ X5y*mjd*r*uo&{Rߦ0zh'?????????????LLLLLLLLLLLLLLLL̟G~T|RTϓk{ɤS_Hec*SIY`}|mR^*]*g.LTMTyԾTTҿ_N O%W<O<@M<'Ͽ?u^M*>ͻMM>ITJ"X5TzuSYʎT7&RMMMTS_Ly65I8I%zh'?????????????LLLLLLLLLLLLLLLL̟G~T|y~ʕ񵽞~婤9su*uܞVzmTFX]T?rV*uuҿW*cON%T2IO<_9пcρ=zq/&&&&&&&&&&&&&&&&&&&OOd~w߅o_s~^LT VM_~Gmmj~L?;S%ʵ񵽞~U!s]*uO;u*RzmqQ*R/H%gq*5JۚJzu}=ܡ S/W*O<_9пcρ=zq/&&&&&&&&&&&&&&&&&&&O7O~*u卑=TI`$gW·I|3Mkj~P]C65I?'{xM0X5ٞJ]mj~TNH_E;_cbbbbbbbbbbbbbbbb<~KϊJ?&|>Mg~lHK*JǪοrQ*?C-=3g+{*uu6T6oO9?bbbbbbbbbbbbbbbbbbbby34MMHTI&X5Tzsl&T&ׅoS;S){R/ VMNNz65I/P}ݿvy{*Ra*RWj*Ǥrx*?ëS_Tϫg}NS?R//O9?bbbbbbbbbbbbbbbbbbbbI?',w÷I?iTURoSSR_ܑJ]U655kS=`ds*umjTJau/ډ"'T~:>#E/J/J~T*O9J}Yeu}[1κTg*i?cO<_9пcρ=zq/&&&&&&&&&&&&&&&&&&&OגO_F*M%z}?@N_MMZJ}E?g~jrR*u9BN%|]Osi*ũ/_ʿrQ*uK%엩SvM%lT_T~T%TK'x<_l9@?O<|sfRi>Hmj~ЋJ}?IҿwF65ٚʢTR_1X5'mjrS*?CT UO]ҿRIyju/ډ"*** %;B y?xB S!a9!g\rSHV~Y!^W\\ ]T~5կ_Tڽoo3!WjXcw]%!7g oKBU_STTL 9"K!CoP_ ֈQoLJrJܻBVߣOWm!!UgxȸI!U7~91x`2=ԏωl 9z6W#!<r_{ ;?_iTT pcTH}~G! 7YVȻ!W\r}=_!|Ҩyo _ ?C&t22Sk^ $]Hw[֐!BF៏!B1M**^ 9υR~}3oB6!? yȷC6!UOoϫ~zm/䃰Gg7o}#k!?kv=B\s 繐Ӫ~*z&y)"dYȭU} rx=9n 0*]}z}v׫W9*Sޡ!mC 9$ڐnM|!oA!mC6z7>ocݩpv@HzF]=4 㤐*9:3׿fsIHa?ո6 wrtȻg| YWwY.M+*^w}xʺ1h燷_z]-!\r8(忇kxz}W߄ _թ> o}ȷCօ Y?!G~ޟ^T#>aW:C-_C%!? gy,2-iHc5~vMHm_u݇YU쿅 95ϸ^!z]?]k;?S5OBΩS? Q/Mx MO\}wo//>OyUFxQx1C y:u~=<BoB^; q1B{?5Ϩ*zmǵǺ>ǹ׮UZ\ȯy~rOxHx+~v{9f*k^0cB6 {_zCUU%|Amȹ10C oR?-UGUU_QYow!7rwU=w![iZW{G?Ϸs-{_~z[ߋ`zv ?^[`z]S5 W=gk_qz7d^|ۇBƆړ'l U }꟡s៫!7W)z*%!W\Te߯ +>MTl ߇^OyFw]QOo?gOH'::n+uSL7-tKJmt[NtGIw]tWMw=tOK}t_OAzL}go9zz^%z^z^W5z>Fw]QOoUmdH'::n+uSL7-tKJmt[NtGIw]tWMw=tOK}t_OAzL}go9zz^%z^z^W5z>Fw]QOo?0˪&|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71|M71ߌY1ߌf1ߌf7c͘o|31ߌf7c͘o|31ߌf7c͘o|31ߌf7c͘o|31ߌf7c͘o|31ߌf7c͘o|31ߌf7c͘o|31ߌf7c͘o|31ߌf7c͘o|31ߌf7kf7kY;Y͚o|5߬f7kY͚o|5߬f7kY͚o|5߬f7kY͚o|5߬f7kY͚o|5߬f7kY͚o|5߬f7kY͚o|5߬f7kY͚o|5߬f7kY͚o|5߬f7kY͚o|˿~ʙo|s3ߜ3ߜ7g9͙o|s3ߜ7g9͙o|s3ߜ7g9͙o|s3ߜ7g9͙o|s3ߜ7g9͙o|s3ߜ7g9͙o|s3ߜ7g9͙o|s3ߜ7g9͙o|s3ߜ7g9͙o|s3߼e7߼7oy7oy͛o|7߼7oy͛o|7߼7oy͛o|7߼7oy͛o|7߼7oy͛o|7߼7oy͛o|7߼7oy͛o|7߼7oy͛o|7߼7oy͛o|7߯6W4ԍt3:s:&R7tsBԭtkFt{AwԝtgEwtwCԽtoGt=@g^MGYzyz^Ez^ez^WUz^oc:m^Go&}]o0`.u f]0Y̺`.u f]0Y̺`.u f]0Y̺`.u f]0Y̺`.u f]0Y̺`.u f]0Y̺`.u f]0Y̺`.u f]0Y̺`.u f]0Y̺`.u f]0Y:rE.uѬf]4YͺhE.uѬf]4YͺhE.uѬf]4YͺhE.uѬf]4YͺhE.uѬf]4YͺhE.uѬf]4YͺhE.uѬf]4YͺhE.uѬf]4YͺhE.uѬf]4YͺhE.uѬf]4Yͺha 6tɬKf]2Y̺d%.uɬKf]2Y̺d%.uɬKf]2Y̺d%.uɬKf]2Y̺d%.uɬKf]2Y̺d%.uɬKf]2Y̺d%.uɬKf]2Y̺d%.uɬKf]2Y̺d%.uɬKf]2Y̺d%.uɬKf]2Y̺d%.u) O<O<O<O<O<O<O<O<O<O<O<O<矚VuO~.k3:s:{L+'W4҉鼮jƾNik;p_{لӄӄӄӄӄӄӄӄӄS)f%SɩTr*9JN%ӔSϦfS)UH':: fziiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiDU_SՍt3:s:k嫾Zz֜֜֜֜֜֜֜֜֜֜֜֜666666666666vTJUH'::k[vjiiiiiiiiiiiW'thYy]U|h'_Yלu攟ҙәәәәәәәәәӅS~JNNNNNNNNNNWN,]9]9]9]9]9]9]9]9]9]98'ttttttttttt生ӝӝӝӝӝӝӝӝӝӝӃS~LNNNNNNNNNNON95=9=9=9=9=9=9=9=9=9=98'攟ӛӛӛӛӛӛӛӛӛӛӇS~NNNNNNNNNNN_Ny=}9}9}9}9}9}9}9}9}9}98'生ԟӟӟӟӟӟӟӟӟӟ3S~@@@@@@@@@@@@ ````````````PPPPPPPPPPPP000000000000ppppppppppppHHHHHHHHHHHH((((((((((((hhhhhhhhhhhhXXXXXXXXXXXX888888888888xxxxxxxxxxxxDDDDDDDDDDDD$$$$$$$$$$$$ddddddddddddTTTTTTTTTTTT444444444444ttttttttttttNS8NS8NS8NS8%NS8%NS8%Α#9Gr9s$HΑ#9Gr9s(Q8Gq9s( Ό?Opggggggggg&g&,™YYs gqfqfqfqfqfqfqfqfqfsfs@͙͙͙͙͙͙͙͙͙Ù)??qggggggggg.g.ƹyy3qqqqqqqqqssOϙϙϙϙϙϙϙϙYY)?Grggggggggg!g!$ʅEE,qqqqqqqqqssO\YYYYYYYYYY)?Os g g g g g g g g g)g)DΥee3=qqqqqqqqqssO]YYYYYYYYYY)?Wtggggggggg%g%dҕUUMWqVqVqVqVqVqVqVqVqVsVsOG]YYYYYYYYYY)?_u g g g g g g g g g-g-lֵuu]qqqqqqqqqssO]YYYYYYYY)?Ivggggggggg#g#ڍMMl7q6q6q6q6q6q6q6q6q9s,Xαc9r9s,8q8q9s8q8q6s6s6s6s6s6s6s6s6s6s6s6spppppppppppprrrrrrrrrrrr9s|9s\s 8p.\s΅ 9r.\ȹs!B΅ 9r.\Ĺs"E8q.\Ĺs"Ŝ9s.\̹s1bŜ9s.\¹s %K8p.\¹s ΥK9r.\ʹs)RΥK9r.\ƹs2e8q.\ƹs29s.\ιs9r9s.\s +8Wp\s Ε+9Wr\ɹs%JΕ+9Wr\Źs*U8Wq\Źs*՜9Ws\͹s5j՜9Ws\ùs 5k8p\ùs εk9r\˹s-Zεk9r\ǹs:u8q\ǹs:9s\Ϲs=z9ss 87pns΍97rnȹs#F΍97rnĹs&M87qnĹs&͜97sn̹s3f͜97sn¹s -[8pn¹s έ[9rnʹs+Vέ[9rnƹs6m8qnƹs69snιs;v9sns;8wpsΝ;9wrɹs'NΝ;9wrŹs.]8wqŹs.ݜ9ws͹s7nݜ9wsùs={8pùsν{9r˹s/^ν{9rǹs>}8qǹs>VTYP7҉鼮3 sϹs?~9sϹ8p}9s>|8p>|C·9r>|!C·9r>|#G8q>|cǜ9s>|1cǜ9s>| 'O8p>| ASѠnYyUߪiiiiiiiiP3NNNNCNCNCNCNCNCNCNCNCNCNCNCN#N#N#N#N#N#N#N#N#N#N#N#NI8 '$pNI8 'd8Nd8Nd8Nd9YNd9YNd9YN89N89N89N9yN9yN9yN444444444444444444444444Tr*9JN%SɩTr*9JNSNSNSNSNSNSNSNSNSNSNSNSN3N3N3N3N3N3N3N3N3N3N3N3NsNsNsNsNsNsNsNsNsNsNsNsN N N N N N N N N N N N NKNKNKNKNKNKNKNKNKNKNKNKN+N+N+N+N+N+N+N+N+N+N+N+NkNkNkNkNkNkNkNkNkNkNkNkNNNNNNNNNNNNN[N[N[N[N[N[N[N[N[N[N[N[N;N;N;N;N;N;N;N;N;N;N;N;N{N{N{N{N{N{N{N{N{N{N{N{NNNNNNNNNNNNNGNGNGNGNGNGNGNGNGNGNGNGN'N'N'N'N'N'N'N'N'N'N'N'NgNgNgNgNgNgNgNgNgNgNgNgNNNNNNNNNNNNNWNWNWNWNWNWNWNWNWNWNWNWN7N7N7N7N7N7N7N7N7N7N7N7NwNwNwNwNwNwNwNwNwNwNwNwNNNNNNNNNNNNNONONONONONONONONONONONON4 P7҉鼮x{5(袮{szszszszszszszszszszszspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppp9s A8q9sg g g g g g g g g g g g ggggggggggggg0g0g0g0g0g0g0g0g0g0g0g0ggggggggggggg(g(g(g(g(g(g(g(g(g(g(g(ggggggggggggg8g8g8g8g8g8g8g8g8g8g8g8ggggggggggggg$g$g$g$g$g$g$g$g$g$g$g$ggggggggggggg4g4g4g4g4g4g4g4g4g4g4g4g g g g g g g g g g g g g,g,g,g,g,g,g,g,g,g,g,g,ggggggggggggg7??汐kjǜuxؐux?\ׄ9(!? 3#|cZwU̴1g95|9|Ǎ w>&|~|m+nc 3)T(3O<O<O<ē>UQnYyX7ѕnn[6;.{> =#|oT|MGYzyz^Ez^ez^oc:m^Go&}0??????Og3Yl}>WW=NtFguNucDWꦺn[薺n趺论{螺辺 ߛh=K]s\=O BH/KRL/k7Z-}^ zޤh>??????Og3Yl}>WWC#ШzDgtVt^7Mtn溅n[ֺn;κ{޺z>Hֳl =G|@/ԋbD/rFSuzޠ7M#cS3st}>Ssu>$O>$*}HCb؇>$!}HCb؇>$!}HCb؇>$!}HCb؇>$!}HCb؇>$!}HCb؇>$!}HCb؇>$!}HCb؇>$!}HCb؇>$!}HCb؇>$!}HCb2}؇2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!c2!kʿJڇ}ڇYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY_/C>C>}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ه}ۇsۇ}ۇ}ۇۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}ۇ}j}jNtFguNucDWꦺn[薺n趺论{螺辺t>|L}go9zz^%z^5z>Fw]QOo??4Ч3,}>G:lW]QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQe+څ.ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍ(ڍSmCFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnي6 o'x'x'x'x'x'x'x'x'x'x'x9TuOr+kk:s:{L¯F:9U_W4.&&&&&&&&&&&&JN%SɩTr*9JN%Siiiiiiiiiiiii;U_PՍt3:s:Bj^VETUUH'::k[*Vhiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii)M*F:9U_UϵR|ML{N{N{N{N{N{N{N{N{N{N{N{NNNNNNNNNNNNNGNGNGNGNGNGNGNGNGNGNGNGN'ϻ*?QSE#몯O+;N3LΜΜΜΜΜΜΜΜΜΜ.S-ppppppppppr)?Y;l=zpzpzpzpzpzpzpzpzpzpzr)?a7ޜޜޜޜޜޜޜޜޜޜ>SNpppppppppprI)?i?^pppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssFpFpFpFpFpFpFpFpFpFpFpFpFrFrFrFrFrFrFrFrFrFrFrFrFqFqFqFqFqFqFqFqFqFqFqFqFsFsFsFsFsFsFsFsFsFsFsFspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssss&p&p&p&p&p&p&p&p&p&p&p&p&r&r&r&r&r&r&r&r&r&r&r&r&q&q&q&q&q&q&q&q&q&q&q&q&s&s&s&s&s&s&s&s&s&s&s&spppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssss )p )p )pJ)qJ)qJ)q9s$HΑ#9Gr9s$(Q8Gq9s(Q8GqfpfT9n3838383838383838383939g┟73333333333S~lllllllllNus8s8s8s8s8s8s8s8s8s9s9'㔟73333333333S~|||||||||N} 8 8 8 8 8 8 8 8 8 9 9'.,,,,,,,,,,┟!S~ bbbbbbbbbN9K8K8K8K8K8K8K8K8K8K9K9'!.,,,,,,,,,,㔟S~rrrrrrrrr JJJJJJJJJJJJ************jjjjjjjjjjjjNyk8k8k8k8k8k8k8k8k8k9k9ge㔟S~:zzzzzzzzzNɞ88888888899姂nllllllllll┟(s,Xαc9r9s,Xαc9q9s8q8q9s@[=gtQ~}-ӮrJf^1ngguoGpFpFpFpFpFpFpFpFrFrFr_9w$g$g$g$g$g$g$g$gggwGqFqFqFqFqFqFqFqFsFsFs_w4g4g4g4g4g4g4g4g g g pppppppprrr_Ax,g,g,g,g,g,g,g,ggg5qqqqqqqqssssssssssss&p&p&p&p&p&p&p&p&p&p&p&p&r&r&r&r&r&r&r&r&r&r&r&r&q&q&q&q&q&q&q&q&q&q&q&q&s&s&s&s&s&s&s&s&s&s&s&spppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssfpfpfpfpfpfpfpfpfpfpfpfpfrfrfrfrfrfrfrfrfrfrfrfrfqfqfqfqfqfqfqfqfqfqfqfqfsfsfsfsfsfsfsfsfsfsfsfspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssVpVpVpVpVpVpVpVpVpVpVpVpVrVrVrVrVrVrVrVrVrVrVrVrVqVqVqVqVqVqVqVqVqVqVqVqUFȈʘ˄̼2%3%ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss̿o22GFdTd\&d#KVRd_899999999999999999999999ϹȹȹȹȹȹȹȹȹȹȹȹȹĹĹĹĹĹĹĹĹĹĹĹĹ̹̹̹̹̹̹̹̹̹̹̹8YedȨɸL[|URdds9ٜlN6'ds9ٜ222222222222N'pr89N'Ép"'‰p"'‰p"'‰r('ʉr('ʉr('ʉqb'Ɖqb'Ɖqb'Ɖs8'Ήs8'Ήs8'Ip'Ip'Ip'))))))))))))rr9\N.'rr9's9FٙyQv##2*c2.2/5Nʔ;?999999999999M8M8M8M8M8M8M8M8M8M8M8M8M9M9M9M9M9M9M9M9M9M9M9M9888888888888999999999999-8-8-8-8-8-8-8-8-8-8-8-8-9-9-9-9-9-9-9-9-9-9-9-9888888888888999999999999m8m8m8m8m8m8m8m8m8m8m8m8m9m9m9m9m9m9m9m9m9m9m9m9888888888888999999999999888888888888999999999999888888888888NS)p 8NәәәәәәәәәәәәӅӅӅӅӅӅӅӅӅӅӅӅ<;%2p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p /yU!22GFdTd\&-ٙLʔL,knW V`=_^qhV֛`Gfe n?[ŲF=ܾc |x"+D~:~|K/okwx `- ֹ˗/wkgez7Fc^>bnGcc nj ޯx.X >?Qb1Â17{1ccj7 +ض+YPr:8fh3u X౯ +; 'p 'p 'p̢?Ye:ȬLȈʘ˄,+se̗dyYAVdeYEVu()w_˻=^y_> !9H_vr+ǕDo/GFdTd\&dY+d,' $+*!_;]nyW'"|H=??9Vf'NȨɸLȲ2W|YNdEYIVUdUYMV5dMYK֖ud]YO֗ dCH6MdSL6-dK9Cw_ɻyO/EA$ˇ|T>&')9L|ZVY??#H9JcXOD"%rdDFeLeB2Or +J"j!kZ#zl Fl"fl![L"џD'?OD"џD'?OD"џD'?OD"џD'?OD"џD'?OD"џD'?OD"џD'?OTQOǢ՟D'?QOT՟D'?QOy:Q1 !9H!|L O'SrG.'$//_!$Gȑr-ȱ?1Ȥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥjQ Sҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJEULRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki] εUJ8N8N8N8N8N8N8N8N8N8N8N8{ogesɘ˄,ue2dȨɸL z[Y=*Y#\N.'rr9\N.'q8y's9|N>'S+dQqgܾrUissssssssssss*p*p*p*p*p*p*p*p*p*p*p*p*r*r*r*r*r*r*r*r*r*r*r*r*y-̳2##2*c2.2JX*yQeNeNeNeNeNeNeNeNeNeNeNeNNNNNNNNNNNNNUNUNUNUNUNUNUNUNUNUNUNUN5Ҕy6T&sdDFeLeBfU\Ay&_5ΩΩΩΩΩΩΩΩΩΩΩΩɩɩɩɩɩɩɩɩɩɩɩɩ2 dȨɸLkyfm-ωl999999999999u8u8u8u8u8u8u8u8u8u8u8u8u9u9u9u9u9u9u9u9u9u9u9u9888888888888999999999999 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9888888888888999999999999M8M8M8M8M8M8M8M8M8M8M8M8M9M9M9M9M9M9M9M9M9M9M9M9888888888888999999999999-8-8-8-8-8-8-8-8-8-8-8-8888888888888999999999999m8m8m8m8m8m8m8m8m8m8m8m8m9m9m9m9m9m9m9m9m9m9m9m9888888888888999999999999888888888888999999999999888888888888NS)p 8NәәәәәәәәәәәәӅӅӅӅӅӅӅӅӅӅӅӅӕӕӕӕӕӕӕӕӕӕӕӕӍӍӍӍӍӍӍӍӍӍӍӍӝӝӝӝӝӝӝӝӝӝӝӝӃӃӃӃӃӃӃӃӃӃӃӃӓӓӓӓӓӓӓӓӓӓӓӓӋӋӋӋӋӋӋӋӋӋӋӋS)r 9BN!S)r 9999999999999}8}8}8}8}8}8}8}8}8}8}8}8888888888888999999999999IN$9IN$9IN$9iN9iN9iN9rnʹs+Vέ[9rnʹs6m8qnƹs6m88{ȹs'ɹs'NΝ;9wrŹSڂwqŹs.]8wq)~]»9ws͹s7nݜ9p={8pùs={9r_^ν{9r˹s/^}8ůx>}8qǹs~gs?~9sϹN+<>y8p<)q_#S)q8E"N ANL>y A΃9r}9s>|8p>|C·9r>|!C·9r>|#G8q>|cǜ9s>|1cǜ9s핝Ȝo_OYQqSVRd GpFpFp_'zgggggggg$g$g$GrFrFrFrFrFrFrFrFqFqFq_zgggggggg4g4g4ծGsFsFsFsFsFsFsFsppp_/{ g g g g g g g g,g,g,rrrrrrrrqqq_}gggggggg| 'O8p>|)SΧO9r>|)3g8q>|3g8q>|9s9s>|9g6g6g6g6g6g6g6g6g6g6g6g6ggggggggggggg.g.g.g.g.g.g.g.g.g.g.g.ggggggggggggg>g>g>g>g>g>g>g>g>g>g>g>ggggggggggggg!g!g!g!g!g!g!g!g!g!g!g!ggggggggggggg1g1g1g1g1g1g1g1g1g1g1g1g g g g g g g g g g g g g)g)g)g)g)g)g)g)g)g)g)g)ggggggggggggg9g9g9g9g9g9g9g9g9g9g9g9ggggggggggggg%g%g%g%g%g%g%g%g%g%g%g%ggggggggggggYYedȨɸL̿V笤Lk{llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll| /8_p| Η/9_r|%KΗ/9_r|+W8_q|+ל9_s|5kל9_s%+c%̑1 )oqqqqqqqqqqqqssssssssssss.p.p.p.p.p.p.p.p.p.p.p.p.r.r.r.r.r.r.r.r.r.r.r.r.q.q.q.q.q.q.q.q.q.q.q.q.s.s.s.s.s.s.s.s.s.s.s.s3NVv##2*c2._)q9ٜlN6'ds9ٜlN6 'pr89N'p"'‰p"'‰p"'‰p('ʉr('ʉr('ʉrb'Ɖqb'Ɖqb'Ɖq8'Ήs8'Ήs8'Ήs'Ip'Ip'Iprrrrrrrrrrrrr9\N.'rr9\N.'q8y's9|N><<<<<<<<<<<<""""""""""""222222222222 ************::::::::::::&&&&&&&&&&&&666666666666............>>>>>>>>>>>>!!!!!!!!!!!!Q̑1 e'eJfƜƜƜƜƜƜƜƜƜƜƜƜ&&&&&&&&&&&&ffffffffffffVVVVVVVVVVVV֜֜֜֜֜֜֜֜֜֜֜֜666666666666vvvvvvvvvvvvNNNNNNNNNNNNNS)p 8NSιs 5k8p\ùs 5k9r\˹s-Zεk9r\s:u8q\ǹs:u^^^^^^^^^^^^9s\Ϲs=z9s\)r 9BN!S)r 987pns 87pn͹s#F΍97rnȹs#F΍>>>>>>>>>>>>~~~~~~~~~~~~87qnĹs&M87qnϹs3f͜97sn̹s3f͜dvUR2- 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'Y,#sdDFeLeBޒɤLɴ2fv`փ/0Xrj>&|lY~|ovI\qLc:ʺ>Qp@"sf[]5'ۃ˗nwx L|GYq5@n ޟ kZ>cFWn<Y1ipL cx1c*e0X |lnjx+XGpLcۮ8fXjy68W3j?\d 'p 'p '}Ɇz≧,}+x٢T<\4|C?U'/wo?7!7o_2S{7Vf*~wf;G GVfr=5hpЧg qW **S^7w <ş~3Ҟ*do)ܿ͟.[|uͫz`84חMܞ{wXZ//̏" %-ᕙmWGeRPSo=g\=S6Ka n/ӏwXg[Jqdr춢vMW-Wr~oh` =` =%oCEϯ=#+3yzW?2o~!{{5WfxS4Ëw[[de&7ˢßw`Q6{{?xğ^6w[}oe&\\~>Rq?xÞ27 .e=2{?3y;򋂢n?s/~p]~ػ`=u_|,3e׮O``5 V`(y7oSO TԷS)_`e~\tCY[oi$S^q?\KW*g ֘`M W>y?ae~_U?sy}n84xN z1Xݒt* Ҝެ̏ ?f=̯oLYtb{7?楃+_^9ϸ8ۙ)7g J׫̟i2ٯvڔ|r}o*}~עkٿ.3prjpeppercorn-1.12/delay/cc_best_lpr_dly.dly000066400000000000000000020157341514752025000213020ustar00rootroot00000000000000x̽yeUu=&H+("(* (E11"E%xZ{Fh 11&Do$5xU{:y5>T5s8%";ntqt2;Y1V FUuzzZ9]F9ult][߸^g/]G{kFɿqstn|t}{t}~t8ftG%⫣/GcFFףG~qkѵzct:]O]]gFגѵvt]^,/_]kG缏]\{=mt2iz3gxD>þ''G׋3sF׋nVzuGׅk$yuK?1OGߍ]>G4t=2e|jϰȟo]^H>do]?]<]Hz87c|W'uzzTN>ޓ4~n5{cONwsNj{/7_4\6*'8_#OXFן?U~?Ff۞{MޣkCFk|d-ѵzt]gv_Ͼ&Yg$}+Ƽߣ?o55 HgSF&̟9^Xޯ3BQys{?xtUeg1o3}'ϳ!:[w{UO: %Z3usˤyYݛ oga)iF5^0 =eυSv*_{6ۛ+Ac_$? j;g?Y}A,xJz|&1[_*φm/yl-e|&ׯ̓~h>/r&$sGGד&Ў-=l=X:XvIr9o]]-cXN%{M-4A_<ݾ3ѳ[ `o}uc/~F?chti_]46_S?qn}X&y=?et͌5)/)Ug7 ˣˢʯxⵏE'9W>%i癞YsxޟvzMGG$zegI^;;EoǠ~'+co#[v6=8ey|?gmUIh~tv[>t|D{j<= v>m7DշEDzegV yg]!jt]:n(cuG,-3Gu~OWuv^^s~;[W;eSyKLTyIhǯZ~Qe.9zYQcW/m;r_!WoG.Ο{*j#yg _M~QX{|7ۗj{,K1pO׹ﶽG~uV"KWΊmo+Պ?;֒ˣ~/&iN`.b8!g=:w_1$o OOS}tT3x(wql=7 L\gR$|]JO|ɪaʹKcn׭n.yK#3ISG3]:~md輨1O!ҏIgvvrf'~stvtUne_!lůZW~uuK/VAy1> ?|9;? >80_Z~oE|D|ElsR~үэ^ƞȎHҏyߤ۔WΤ_T:KgsKQ43OCgfb,A׺]|WIw|=V_~t8~gtzusOo..\|9k:xctXL.!y~jebst5ޕue8 l/p[䶘/vۓe웿@+bGsJWĦ^ϟA\я][e3y/3^3Qcn(>#+;/]GxE+K\3X.S|#}wRJno(grCo[51_+y,(Ն>;~Nyosy?䖋 zx9$j7g>RQx?] o#99ɇ3ߕq~tk@`M7t-W.B~?gR_cE_4'寑g\9g)߃3_!r^_;}wsjɵǔ-/lu/v˒ouK-FY <+ ɳ~.޶cߏ(5~o,cK݆oGu:ۢ?R ܧmŤRn?/|`0b/]cc)$ߠ%w8SٟEN)yU뙞[px֟ u_6~vݘPB>v"J{Rd_Nuxt*oue^߭Phy[y:N}^{mRCTsGػ}s$؟%`G]r]~{||:3SG> ][/^ozfglӺ,{j('Ȃr`ʉ]x/ g7!Ez,ƅ~1%)f1_G=]/N91Y1{k|>!y+ְeo|&EO˟^vo}`>.|\li;kr}K'uVgq1cF4?^eX<+ {]~7(n:~<st/6v3qbe2rN9g̲6D\Q*6s៕L;L~#b,RXl "Qu/;:?DnZq-|gm^c:6 [?} c - C_|,v۫+!wzWwxIn;s*A~ɱBpK~FF#?fz떞miUss[U3foXw5JtԇrCy-U}UtϜgtr‹m+&s]#^hO}>E^ۻlmeձ\[oUs/]1Yb|"?'>1ƾY g 䫏!w)<47_ҭWFW&Z5%s[{,ZɗW]݅D>=.r׭\~_[ukBƮVr)/Z/ϕϘ _l-خ.)n$3|˦@V?ǯZj?jCmu~R!L܊:qhk!4`K(|4yN1%QmF?z$EHbs?zosjZ<*n"n}>/>.]NuVX9f0V [K89霡w8gD,K:x(ʱ\ Kz6}uQbq~s?N&01,z; |OCwxŠ0 J?r)$k,-_]\REG wGY:LseZukY,kW!Ǟ~;e9ԗӛvO-^>YOIe7a8qt5êq4~|<* kAn>k\*_=<^YOσ2*nc)wT?]Lew}%ŗЫ@lxG71.y~Lj[a-=oMa&G@׻gg0院Rqi jIϋ.ր|Q{WGU^kz[ua\~s_]1 L.xC-k=K}HMeC8~DmQKqf$c.{,adC$BU"IzyO*=zS^Kh_:* 6V}R;JK{:~l gsnɎo}DZZ-Ǵo TŷErnoF䗍K"ۦLz Y;Iy_.XoK9(^gxfp·>18x[X'0^zJ:j=,;y~4ڿτ\ [#|u>xvͿO6N1>{v#z]~O*[Zզwgˣ+iZ:D_\Ld_maŜOb!,qVrfSݣTz&Ε~HUˤߩSy|psFȮYc*֓蟉nzT{B.I!d|:=~+QU~Xp)N9y:?>jFm(mܳt8cwM\3d@3r݃cV/~׹g$}g'̝Z3lLګGMy^>>2bVg')Wx ѭ]ӨXISvH۞KW|.¾R}:݄/?.=|DqǏ{2oHX?EK{-;j_Z忣ߜ^'þ*C+a}+O]6fmgv?: JV"<~(К K)W ~x6q=΁~)MΆ[x׿_em#c>*_O_E-cs:ៃ5K ]8!A]NuKmcוΨN~)Rĝ5s첨L˸Yp9%ML CJyO.R}f.?Ugb+<g(~ >z+Ԛ$mbWǤ GgRW~1:sC7\5n3E-{[=͐e1տⱯmeΪwvR:yq:oGxc:u%sbXk#uѨ#S>bOӼx1XJ%}<Qg t 9Pِ-,o?tcAtz-ǟ'&eS\*>tZ>?N^]=hz }D-upރ[ˆʷ+XS7˽ž!޹CLt0t}F1;~?=sXU ˄Ezv(K(uT{AT,Ybpw"],[ 4?QZsү>AhFI3U*GUX-O.5xhiǟ9w$ _ɦ/ߕchӡu~'=GN'~<}&M5y%!(*31 dHee;lr\/JLԳRu?56I \[@,fůZ៷Gxbt[qZu:f;r'siOq{t"= [l{xCQmO~%vđQSWq|qu&/?${eo`ʷ=赩4/1qg_1iu:$3#ߜ&~P=f?6M,+t:˭q^n[sx('1M}(꽸%joQ1udK:oq*Džc:/Qv8u./qBtcn l|}N:sm= ?/AVq\GK_L~Pst{M~B6-ЯBzc\ M9=>?xbIqZzkY S " KJq ϝ;~k8;ǺzuQQex_C>isZp$GN$sLT[3S⟳u~Ͽx_M {b^,j$kbS\gMɧV+tL NShVsGWFͿO97-#=g / j.X1RAp.u~sv;x4ϡ?gyeL'ۊ'+DLZּVݲ.uj;0δY<.FNOPW|Ma8RfJLLx۱8Ts>~Twܓ\OK0&~Gzk+}ݒ_a5m)s-ylŭzK|2nEoݪFRR;L?8: y%__8罖@<%^l/ܨg.6GEkVlDjߣ';?~Њc/?䇰YDu;ae>^t버18K3V9SsIGbtax|i[vIqf:yG:gc`|iPyvͬ.=&OK~ѕ+r77GזXhg5 yFӊOV=y'.c?n-ml򫸏OX"Ž$/.Xwz#;Y藍y{9n_ò^,o՟,IY.L~WٺEsU/j~rr:I/&ƯZ8u+5=5+b_a#Fpܑ_grG5JOr;!q́~LܘN|׾{/)þ=͊Έlcn5оvKO:Qf jGvwL߷Թ@G|kϟb:y2%Xa^;[ѝ1krf>b&fJYs v+uf SJZ 吾! 2 2=L_:l'q> k'Dwi|aptE+3?T~wSF׫x%CWSvFt Q]ޕҿ;nV~Z߻$j]ky_ŭ>ݓ?G}x;%hVLu=0yS`s^ؾXt ?mǔzͯԜ#ͯ|^':M]4;Z ? ]!#F6>|"Je6Dz=}W~ѝO8YRG'Wo|,Y<7sqtcG._>ٕo-:x^ƿuW8l6K[[;ܿ?`7R|[ϰ99e|_=$?HA~57WsI̵o,jݰ3g_ 3Qc")}atgo]! XU%g,IZD,]Sd ?nSRG?ٿ;z&#u&RLc٥_<~߮kNџνמb(׹$Ǧ3ĆF_P5^?ܢ->\xuwFwٕyS;w?{Q)їEaZ߿8N|1jnxZAI7إcoޫTϵ_YnKi{W='ۇzUyy9ywV뉥"-j9U~}aק}LWA_m`w'%\졻/Y{ _|_GJ&v2ޗ6wBj~bj<#gv/ȱbX;q?gGs;OC$M|alG$DvONVEyǧ,2쾽cL8~A~ߓL:>j Fnom^9kJ~?:!R_Pߙ/ ȯ|+#w;^g`a?c!O;_T>gy5gJ~y G_pn'PjiREz[T/*yT9/~Ϡ['/ ~'[y<藽1D+꿓w!dAQB{e3=gAxO)~wݽTh +Ag~YkQOᨼo}nc蜔s.1v2Mo˽ ]>~ߜuˆ߯mX ?gj5};ofe'˚‹VY$7VſB~9vV3SѼKgde-?+\07ygWx9ʩ“0%?mC4KWs+ T?6[p7MߩCkү ;.Z5ARZEZ.|NbJU=c4s$~?>!n/_#n-=ۚҲUܿZ^rrSNX{W/')Pe{]eV'>Q)ǯٴ_3W͜_}ݱ}$\,~nжpZuγI;V̪z6+IbX%wD. 15?'~;ꄛrlLc(ƊyϑZxB?d? )֋ /od%>U__呮[+:|tύ"%LV5%(~{y)1w.d^GRO 7'ůǹ׹^v׳O{o[#52uV zoˢeݢ] 7qE,W!龼E# /6C1ۣ/5 ۊ3pڟ%''[.ͮ}㜔͌ _gD0o߶wˢzUXb M*DE4]f \uS_r9/̨}=ޗ+N^.6E6rC֋b;[ϧ~rZ:4{GoDM*=6S={f4ǡUQ1o]/KNC 1ߤsTWgg+n~c+~}ekAlqUL~J9{nLJjߔ[c?Ug=/~Uk08^ҳ-\Vj՟{ԧ4g.;ΛkSW?|ү+{3*f,u31g.$_^]>n'>UJ7^]; דJ-yoοyE0[rF›$~E<&>d}{.< )w;^׭h"_m)Y: Mo__XizHK}K ܲ[TuK>S:/DXt~d;zYԞS_1};gc\}lSjz;׎}\5.,?+j xX43I"${3v.7>T ǟȡ3j ~a4y Q8+c3=ώL .&_}4iyHCs l*88=H`# d{Z3|v$w-sϸ{^e߃KIe~xF:~1 D{4}o8-m?{|oo?/2rM ,^.xG윿gw^`:M1/J}:?Pys\~wHY}|>TR?3i>j"n.g8nLKwW=[й:͓w}Ga''ˁNз玮el;_ZuCo WP$yxa@;Qt:MX.C/ggn:ispv[~}*IKq]3],?TXgl%Qjϯ-qV.?T<[8cQL{rT[wmt|z~Uao?cYF"z&NCαuЯvs䍃'}xhxc3[ƘWg _T?ՇQY/jR\rZ){hʪp-|}y8W {}x_< M)JW:Pϴ-:kbp.|ociޥy1:y+aiHnFg>r֯#z( }5KY]dгqWsȭb䓐ehŦI[ts_xM;B ;F3Z?-'Iϋ.{QkE- ptwнK\X„8T/m]t$o?ȩl~9etgۗ;|R'~|_qbυ}rWT"dvR1')ybg 0SvoP>03òqqo=kdkGk>k|,t&Yu.{ _)%mzw n슼ZW߯S}ELN1u^bx0)w3J҄5f(yW=%?2ޑpsdW(.\eed[:튡KG{\6Kr?ZX*>&4d ;f^KK9,KDzfeI[{Mo=[@6s+?{/rHĹwF&?TlÃKݣwkԫR}rJ^?|˿Qt$/'Ꞩߋe۹-=p9|BiQWN$1vעbx/ʅ9Εes\V]׼}%}[a>tq&¹ҌcJ߃c:#*R+Qҿي3-n;ԉsǎ:7Ħ곓FoM~F9Mg瓌YɀL4^R'S/rR+阱:,uolסsHV= Ygg+f>n̪NZ_vw ŵS Zcw=jcq\: -rK1n^^X _lObZCCẏ}DA~5l|#מ|4~_AQj6n:L?Z|OgK*/ `^JW k9[Z3}g{AΏVܒ V|kQxa@}nӗ̓~vak {Zt_{y?PK)Tcs14s(}'P}ٶ'˯⅚#_W9I(=FՓt}ǏU[x~x?\=y>V!<)n)v}o¿gG7_tv1v~#:uW C>̻󓗦?C¹_w.$g~;׿~"v8Zg'[z5Q|7_OFC~kE?_MgXhB߲Z c@1 \iW5M8_]w{soxY}gIu\Ps[nzf 09$|,䁼җ^;N15?;tQGK=߱req+P3I88P;%<Բ\W %_=uQDu4Vd~nZg&xm忨VgP_=\hWt&C]~]_[>mszW}-Uu] RJbeT?rG/{k~ǬΞ"g_ˣ;U?9G>;jZE_1?59im_vf @t{D7/b_K5ǹ#&ϓp_mg%έק=k՜[;fB̿5jNuĸ/yoOau}\_~P[W|z? s(~{ߍbr*N<,;.e+N5){|֡}I-\?ͽ=ϪS!'k ?{}Ә4~q/wiCo93 mnWKNVhRѝ7u쿯'QASal aC skNOUoܯ狁}<5j[&k|0ylIa Dsj NyI~]Z5&??Mw~cE| b{I\$A^ߗ̮jC{_B߲[qNQ@^۲[:˒qD^JdթI..BU>q 7F<_l |Mt/~ǿ#'@^oK{`oݒ[~쭽\%ǫk@үsW7jegR{ޫ>ח1$瀣j|ݢ_qZd}>\_8;Q0S}vsqV9:"kpEԺZjtJQc#_IڱǠ߆ޅ松މ]Gn_ne0~_gOq[³qJ/X}$O?wq@bU:Ǿ#jM{bS\U}ŦxYC攵UkzixEgۙlZ gOIGV/]4sX<ޕ| /26Uvag}=!s %y_>TSyᄀx{e?s;Qzs;O5~>tsKo_Ϻ-=]U^"d_LI~n grhg_i^'zVeRfs~Rg!33/+۟:3=,_8n?oY*Frn?l/JiVDݠhHySE$ݜ‚vY1w¦8T_aeCnGރ ~?(]~JŃRȜOFAzx{u\[{;:fkV9}qG&<4Ŝ|z<2G,nfUe8BFg_й Oq_}4O;kϊZą|qAm L/h<;5|?̃~4”"/SK?6&%j qі2x[N~n[u-{[_ᵸ_ a5rV'ƶn)[:~.)Sz8e0 lYD{{E{_W\_g+&Fi Ʃx. FxAbF4/b?Yq۔:g>:yXr ?Ks {nG.#]NnO^uݥ'ͿX59՞pCBF%#gY/KFv+]}ݢ_8cʿ(+fc/'. ag># ؔmYwZ;~ůݻƯ/O X!F#ϵ6K9޵T?)yP}C3^~'ίAtqmEr{~x~ʗ])4XȹJ^OuJ8[ũkɯ0B{Hq0Fbwʇi "P a) ̽$_%ǒL",xtm]ﶓ*: oA3y4OW1#KwPߑ/qeŜ0ORd]YF$1D9KR}$?p] exD0{ $y#0d ~{%]-OIDwjy_xqlgχzW)9žܞ1~=.qB{%~8nDoߋ.쳨v*6LJ7g08+,{ی)oH_\֭Zg{Q;㻲]1WptC#-]Ov˽}PS.d+v J7#OO*Ms}Πϩ~R1̓37nrb%1!݌.QsIT.P|b:ˬϭ~nj՝s@:hCq[8-}}U'KX"W-5?*۷D5 ^lOy|?K=b|,g") M_Y8t-«9nI?y2yN7FWaCsf,bWӐߡ{]#woJrղ=WF=/^+pstk6WiKɮ9S^޺տ u+K֮^j`lZYJn y%LQ0L}my>c6>Er}͔iFҨv|7E)rtޔ?nxk??r~LjRqb(~L/1ίJ"3񁹬[cQk6?YWQcl ?~ǩ:e#$]=#7w(})~xY[ՐRGTIXN^Ez/,wIu˦H[~}RM߯: M0y_'ںGnӖ\{O[qla߼MgGGgՐ y\g{ ?~_IEHo8Ҳv4OGo~~:˯,4Ț|Z\şNeIysZV_r2?^ݺo~tZ.4juIrFc82-6=NχJU>5>_:y>S}vQһneLU_;Ά_3H5 ;.ԼV|RuHUg.Oޑ k󾺌d}jaxc Q1~Q} ڿC-VEc)φ|L9 P^^XXC|ps˦7>ԃ<;Y=ۻ9|x~tz[aSuR=Gj]j5U?`CǙ<%8<ϲ>g[pK_^~;6)9 +z6Xuhg~ksro1MzC.-wLQEUN|6=0d;,tKr-븦C.nϾj &g ԃ-XJ^gn?iEgVOp~O3¾z~7)׿.-o^g}.˳"-Z1<'ue[Wrw|`cK=pVn|@)Ç%o s/p|+eW_; C/ vpݡ6IN3qfgR?޻+Ʋ o%[.S. )z_Uy{ƪdO|Kt7e RqRq|,t;* ;~э EZqy|=Ϸo^: 즨we?=lf4Kfkbm.yv-CsO:f+cYx:C?-*yasr:'j=t/- ġ{weԳX _:x'`Kӌ,,_&ws$ se&Nhv4n4qkRq}fݓJbyW +Lw#yN=-ᢘaRo+Zio&zP}!ܾot0v/y8$es[sV1P[j ;'EvαO_89nK;~Y3Ιg~IVQki~O?ի*~Eݕp}CryY=~m]@n>uӼb;~Œ}nqWMσ ;*pG G(]alC_$^wFcO?染>S|dY;{p(j6PvA@_zŽѹsNOR`g$3f̺Q? ǙE  yŪ\Ħ9K3Њ_VFf5yCw9u(Fg_% ğ9;w`Ru/<)|{eMv>TZggBοo?>$ƨ2BFB8'/\ /U}2pgԙ6C;eYMv/ՇV>:tߗ^ {-u #?%CŰ<0yK]S<)/>a(+IT*xu{)g9sI[ϔZ-gy9_YxGncI|v*_v gq+6{ѿ-痓GГߟ3r<3_Г_?Ty<`AA9+sW˭QkQc=ey^![!ãA?9x~l"ߣ< 2\[|/m%PZ|tQtϪ̔&=ו?;yfR^{wMO][ONSV/=iM}I MZV/)QsۿKP/{=;x@-Kѥ?Qa)Yt/,IYOQ|kȰǯOl_e>Pټ;_l =IpZB#ᱭr }Jս{L6=(wolOޣߡtqcvbZeİ&z_Gc9Ъho+OԚVr,;fĎ%y<㟞|r`{5e\C$e;Cw߄P WvKt"ĝ#gOx\~\ZZK˒o|t#߷EF>Y$gl;#tL}h3NՒIZ?9ͿءL /fg ޛ~cCTW6& f8j+vi_]b/Mz{-zɋ;{A8w~ݙ)KruRxϟ̽V-F%4ҿ;uSLm>f>7bϚcO-Z}r{w?RpuoʿYyg๨D碯wxJМ5 ]ܿԼʳOml$0?IzPTcs^t}4yY=sT~Sf {?>N*㟓|/Ī\2sekn5'تOLxJU6Ǣ[sI/q`=8c:/fxo[fS$.9>sy; E%`t^h_8 ^3GaCy9ewcsY&z?a JYz]Y&Jդ= ;t\5V>O.TϪEK/&FݲyG^],Ǹuk`_nE{ϠĜe75_;nJaC*ݚ=l FG9usN?"vO9>ݷ+xR<=L[{Vһ$wv>G~CuY;Ѭ=Se7VyЯ^ H%>Qu]h.}r\WEs![y7nKZzKřn뭇Ev̷zR.nWġuVrc<׏J}tޏ(5x@Og1+zgfv?NJrrF&-u9#vx>{y9ѻǕZyFT_W'rƨ7s!O}I, OyЯ1dz7ާ,V_V5qMUxtk A=#Ͽ%>Z}_kzkoQ{~aUGl8䞫? %-]+}I=^/ˋ8*bWN99cu~ QA2>AjVb'z+Ix|^/mѯWEq?1$zaz#=ٕ$iŦRe\*v>#*|5g[v[-U{?˦CNgѝY˨I?<Zhꢕ]գY2)} ǨY9e˼no,ZOz]6Dz%~Xr;oT{v^jѽ;_\jeCsai~r!/uU4Yj!FxU Ρ,ou(aN]1tgbz^?>ϻVR_Ҏ=:_s՗/~\miɕby,VI떺0Nq-~ײbI/I8!ǜ}VﮩvJ^9!)Yeet H~+5Oxǖ}N?ĬEN,B;A>U{]ΧJP^[6J׼?~(jr+jS x_eэ3gb2~~x_vΪ[UQ G k#vD~eP>vzwℼ2.TwNF;td` 7"2#/8j;+"I'0D}watyctx2uʨrsUuʽW*&sCL| ?A5Ť.kҵR특Oz^uAձ&J1Ж+=|So[y(Gt~^ZVLXϒ _+AJ{'σSn!3B@)g+xbQX4bK-jz 9G~:˯ :`Ro,ݺtϸz~?sİ WD=ur㜊w*&ez)KAbEDNp?gk"\[nsJ7G3y/LD.S9]_z-q)%ӜKϏ:?ȸe/\Bᴿ( ȾnwcV8~eQ>|C]N[6s&j}Q9I\ITT:K_ϲ&3d(_|v#ZhtWEG yF~۾sxTG: Ն\[5AZ}ܜ|Ro=zWI yѿ|93x^׺8չ9{}(.= 5QŹɛrϲυxoů"[zlu-m枮쭽q9R ȷ|.Kϲu~k(.z{t}DL#3QTn?{B@?r]t{Ff ߙ/y%(9s;s 'g.h=TWFkϧ{c&NNX-{)쿟s_??ﳨ^Hsn[y)EN+6d({Δo񫾟K,WQe^?ي?*}gG3E}EҼ.Z{W E~P%Ij :pOUs_y-I>즨5S_zyT y<&?#qNV yW%əMN'ɵ+zkTO-M+oįZƲzүkwFS`wf"\smL'+ٷ{=;eDZ[}C-{%-=.7޿9 _qkн,6'c(k~xOD0c{Wt?^v_xߊ?kBG$J/[mV}L8?ND?~S-r_Edz D d5)Dw#G>Nqho]LS_[}-y\\֭|a"[9GOFOj(nѝ?x~SPw1~L·tLS~[8]#uߟ-<}6x:t[vD^jwaE%^Ggg~`}|wC̲>~] Su4 #gR{(>  d>zPEm?;k#_+޿V_/^1GN"ıo_cM-s1VDDNz饷"* (b"7(,p &j9Ͻɉ'$ǫ1Uv$&暘VÛ5gsolG=kWU57p~y]!?Z" +_[̙߱z[~m Ņc0Ktп`Z1^8ջo`& ߨ3J+Jv~p9\i&xTbGO9Jr<;ŵ_fuϧⷫ꼙ѺbVgAVl"/"f=|+b=!#`q[+&̦qw>%+vG]B/->SuSg3}Fu?Ws__t6%fv/1_rڮ-lOg?{c]E3w܁IAŒϾ+_exO_-@8;yJ)2 Y&,PdGeV1 3:fizzzh~:}g8u+m4=w]X~3dvS]?>.7u?-#Z?zcF}Y?L(؂t?quC%bVw+#1tӄϕV3X[Ԕ`?CBv;{9~ޱԻ)E <{{4;6sNsQ9}GꃜW-`~۽c[?4ÿphLfvvYwy^d™>Vb΀oop(B O<|1* ߫2)eܗyW6E6tyxWsW/uͥh]7N3l|J? a?wp*.%?Wj rz}pD~G@?:צ,Z3x96z=n<ѳ陘K'@?+lT=t.]ueώ.S! oɊyONC?i.{>:Uw= !إ{ߡܿĜ[Ơ"Jx7C+()x.+[%W+h,q}g^`U}j褟;@XۻDrJ1欲W}_wWs5,߬}jƄo >!V^w^Xa{-D$f||Ľbقҟ~mI刟Kek-6(~ w繓1wk|֢,4eųϷzNmϐgQ|Ǻm fMҐYD[O!ci]IaZ?~jg,noߡ\Ҝ[I}1$7yhw;_֪i-\{?_gcS3IVC+9R8ɯ/uuƠv@Gm 93P6~ȪĄ<_ڗ WȽQ[}=KԲ tbE 6{5Ϭ\'7LZH}fke8wɻ9sC|X# è^?Уq+Kipgq%߾gG_Yx?~*%v]g_eպ8w?j:*%Ίֿ?N~՚5?Е_LRr~EV):kr֏꼤ԞocljwWwCl['Uol<y0w`XB/C/|1s;NgyZmW[f{vtA~_/衤}C^8 _2?C~99z7^euƠu 8_͝SGh?D9gsոUڏqE3_ eu,٬3?W̩ceAoS!;pg~I2 K?I?̵Td:9s"2 jWցsgt~blӿS?X#6B8<+FC>jxttsLUy2SVĿ_+Z\OZ5[ 1z!үXv9ER6ٜ\f!ϔӬƵs29߬:?.5,j7l?}JِºbIL3sfџd/fvv 'Gp}3 ^%"}?#/Dˆ?I2 yyηϼ}jĞ!OfO3.V3~̞f~rOZ]Ob)|jx߲Ql_̙h|嘗Еs~ săB\_1c?-i{A/Zܹ?V3Ҽu#l9nΊyZ_EBݡcwxbPs)}ka Iwg5?Pk-Pu3)'ڭoel^;GY3KY8^ߜUirA zxgo*8 MC>Ӯ4e+Ήe٦?ÝS3mH9bY>,/W 7;C, >oל9ҹC~98u|ڄlӿHf3ouA6\5[)>.&.tkgOY>*ïWwz&|6䬐oF$C9ߗ~YrΔ=W@Udm9klAFaji^6Ol.oȇK/kk+X\_s]??Vq-k\2_=亷QF^Yй 9󓳺pAk,P=j3:_s`>`n3y?qXResR_Uw?.'uAyRR{O?00"̻G+0 Hٞ>13+mALboSW mS%g}|o)PLŸ ,8SKY&q2IyrӏW Lyixw229p,t/P=YFOo#/Yחz O}'+g^mK`/ s/9Ğo 'AEJו1i‚pYܿqso+?cЯؠ:L?sA`N {_bnVj-K`p(~, O*EBqzWkerg}\$g5sM͙5kzi)62u<^2Kc_nK=Hõr䁾3q;!/s^ٻ:%Ko -xz1 ;YuJ`2 >'~%f|(5f~iKv+hs)nj/ip^ JZ7Uw8 ;i;xO0MV\,|7RR,5b c z[*k}m3yâ~ٞ{9g2p }[ t#?eXf5בqv(Q73-Lb|8MkaA?t mwg?q0wu8߾{4cG±sS9Ÿw}j&ݛǤVcg-}} KmÈ!?nƇ,-rXۃV *gOԷ>6 _<:3iIFY:CeaOm= d+^cѾ|[8VsNqߠ`ϼ@mNraGh?nbqw|LOpAO[9'12^9<? _;"^PkϠr,dlm;ϼWSqko-b-݂`` 7? :+e;A 2K:͓hz~R 3L~_//s6:E\)ت;Qb^.Wb3Qg}%~wPΐ.1QpT;׭\w"y>?guYp39eڃ9kϼJ |ZY ݉Jƻ _nS׃x۸]zʡ.מTbw1_w{ј d:<[;#\SdXA|gB"C_兌 2{rNVi_ SWj\s|#x9g9<y_A},b ӗEN'{/^?us~{h!۹7w)l-1 є[U~ߓD&Z ŸnΙfg9,Ό.eqTpC__[5I25[o]>SF's1B˘ |X"鴽y,O1r[-fdhY*,fc;_\_iṭͫ,o~޶u!q9V?"= W~1d+frcg~o,TONA;Jܖ 4τ}k¾?{³xq?D3 ͋26TM%fƿſ\XjJXҜAZg!{K;[M,&./ nu~+84g Ox٦rZ/,(}궞K,YmUdv6;grV%yb}U=dl5zz}e_Z /ڛ<4qM0d/k}nŭ?g[ά17G힣O.wɵ֣K_sZ[Iuq ?~.!oG ޿9T/#OnvY@r{jh_d}*ok.Q1=g9/Mŝ?a!_c F~үq5}$z^o_5ʟ@f)wZ[93euM]}\Q b㬾[ZPsfH?/Z1E\SV5 25t:ʹ$С e:GS]=kUOlΊ?ato>3Xa91B%'}9K+f`,3g?9_8;uEf_,f_;^U4bWx*Kif G̏A%2|EAu^-0,k79sG KbN(_d Ơ_1 ;N'Yo4aX|M秶)1/q\敘=3'1C g3]FwmݲF|8x-v9U?S{ ;_CA`BsF?>X=?i>3 {'Uf'=gw9/p~?kLit^yiM]]]J >f>d6Xsʬ[:>8˙ų\gxY Y]'|FOXtאOYor? ]V+ҿi%{!T,]3u|}Y L]'Ϳ1~=gklpŜW՘Qpdh;jg?wBod_lk\{~2])<}"vm*$3Vcf /k:fYjS :x߲~tv  x}]BVagLo1_>aﰾ/q̅2~TOٯDROu/E݉E?GNvi2s~́o51_%cN[ uO1&_^bOw(O #=bXWegȡ-f[m *SeZ1[?qӦ)9}]g5/usd;YD_8-7[^?#XoSbwquE\cK`:%?g56CE,k[?ԎAΓޚI'p3[ +N lǜ%gǚj|渴F7Źf6f0?qz;֬uvğTMJ П?){6KJVJ` g%2/?Y]XX?<l>eu b"¸+?~ymԽTqvv9ϟ:cOLeok=uF2}nqpt=kpQ7jӮo_yd?Yٵ3:Ĵ`E= aM p>^?ob+KNXԮY<7Ο됲 Yܵ?΁plcϚ;dynPv)UvŒ]Ϡ}\ao8Fxg}Vԟ9D, Fv֧{v)X8-eOX :ߧXZcR_UΚ/dxtt;G:~6_'GqJCoӡ{ ෥6UE {6w5X4mߋU.vryƠ_sD_9j_7B"uhA5u^S(`VMh lfr>l,J@ g?au/J>ȥ|~ 2ch )/Q@ι)ڿGZsa^e^$m0>ү8:3™GwfAY`-(t%v0u;s? 1gRJ?3B3Rٿџ篈8?w%r~z 3Id9۟f~ybBJ4jBkNzگ~RW6sGe~к!ү; Z4ڬӧBuP W r:%W5+;K,> vgz.Y sCzؿ* -W37Fb;.ZlY _0m+ o3̞~ϙw¢G돊YWp}l2F~l5ufViݪss~bs.u6/߇57Gf wLRE/8Ǧ?HH71C_U6 ~l_ Qgi/\_i/ 6־k)CyWl" 1b?f{!-6?ӟ]}}}W>Q[k7T5w10u9H+ok+CP3lŸ@n1sYMg{YݏKSV)A44zŭ~1#6u!o_Dq.CĿ}韰ۭXgf74+<}/X3:5gDųǫ,.ӳY*ds-b!ү:G1tgg_g^>vVe5=:NyW3~ך~Ùݙޞs3x߆Vc >̴}bӶ)\_={_6dKN$Ek9wgշޤ=zQۧMپ3f| ү?׼:篇?}g>5꫄|E1wY-Y=7nNK̤M kI%}bf6 _~Jz9sFbu|6OK߈Y5,Ws쟄m:1>~F,)dGY_y>uufGgffH}V'ML5j#wm3?oG-af8v(4L;ϳ^g~oVW+^xM?k͈rUn<1w;З~QgPoү~t1 ulӟ=]ÿVV=gϠg3,0?ΜX i}#70;}gQ1`E_55 J yk+~߶5ڼq['jG̎gs}ϙ:gHOXtӶ4d/X._ח~?֕3k/\0 6*wwR}gSS)tŹYFfUgC?g})z]7Kwp~Y9Hy<ǭ? ۗ~lmm}Ezð.. .cx~ߒ=+ʬ/U~&E!v>0+lmBձ_X:9v.-`sc\gsF2m@Luo |;'4{tg-`gSF;wN Ǡ*91'oIy?gu jOEwqͩ3#zXnuζpw4 {, ~nN{z3x&nrp3yq;˲/jf, Fn >'/~ƿ+]&^2 ;\e@^(f/{C;k 3倵<?z3m/|A7rVIBO;ȁBrz w2~|t/_Ы k^Zc,z ,/=]%Zж@; a4!] [nlǗ/\'Z_`>VǏeľ]z9wӿȺd+1PEw-v3G=N `V)eā31>rgS_~>;jYXu)fy _6x?y>_pAі،w4;sҙ\ggp{U49a[9'N},3[Sb7r*`?vy\y;aҏEKYheҢA]5y%⮬HڱXA;?jᳩMfAob,F.{.ʿ<`/pazϟXϡR?nMYh.5K]?m@\ǹZ~  [,egb}sO;! g5l-dz# 9@O2T]4k}ʟ0wЯlY"SZ ~6 ;튿nz~S?3{w^]ý<φ\J=_" شg838v%bݝvNx1ȳD2sOX^2t;a _Yח9fļ^;Ǡr ;wX3x9ϔf.{i=QDrJ_22 lezﲩF: <ڜuV[ٻA]G߇OB7 ח~og_~A H[ݿ@ƕW3dIW; nJRj-rѯ8E|C͟R^a7?Vq&u_u'ryLNy޾x'W7i{Q`6Ws(Ja=gk_g޿b2|߿\k`I{C~089ߠh=3;}>ß\?/jG\52X>ߗ~_7Ð!}׹ryo\_':3qg ?rhb)ly 9{^\7gVT_ga<ߌ~<`ohlӟ?gNּ:2?9~0MX? ~ك,W>"ME }E} g34sDZw.ӭ{֜ XǾk " nZ_ӸRk~ݗ~M>65TKN!ϴG\t~`adrՉ2yg-rj{yxOd؃`&lc_ƒ݆?.ZW]jAes~&*"9b>ʦ-վ,5Ly:? *KúCQ?޾k4jOː}韰>JYkviϹ_>9Mu-bOV,8?gqkfzqvV|Tkwu!g+,L\JeϔC_ Zh]3DclfP^nl ByLʫzfSYD3/pqAkI4clY(_3m, _8?K a2 Pٿ=:WW3l3 \f0wA\$6sr~X:@}@ SGBjǘ $o^/3093qo]6O,b~R;cˑb>Ԝ9M ΏCpN6Y`_}\%|>XfIy-?׹uX)\3!}v*\?!4o:U,#Ǯh&^Wq9(.#;ĴLwH?él01_ uOJmcHq\x9qBB ]D#ms9js=gYܡ3zl/g UGZn\ 3_3l-lۆ)'fgTw]~45FyQ?2WK9k?/;˟H(WI;d:w}_b=U6uy8տQ.}'i5gj`1gA,D^_JKF|_t2 QF'ƀU9^GX)_9˷[5=CLȮΗsWVq2/}?Ϲ0<οzk2X x! /?WO×zK_5=+~;17R"œԜsfe}WNN,<]uRsY~&xr˩;%=G؃t?a@$ğ3X{9L=N׏; uYgnK~oX;.(k پYK{܅:c \ l#¯#g<^$%by=gvW\)!Es61ȧhY:C?sF?c,>C~5qC~aAT; LǸ?0wg0fו<ףYŪu.^W?AkT|XGBoW]kZWVDs֬s-0|aQ\6/rso* /gV<鯰ߡg胮Dž گƿ]gX]c?ߢ nv8/o_)/椷.u->y~՟󭮽CKSe_jX+a`4Dżۭ{dS, ZmZhSe&-wȭ+l<L^wm\k/렾Xo`ڼ. ܧD1oQ띰/#ZI@/f*q+s? tB<9үڧ}:צyݝ?1ۻ~^51_.cR5Oo?,YXG~Ęa;!uBw >B\]J9qw./&,_K%0dVc12{MAcПϓ[No[]JSYv?zgsg Y_6}=Qqz _egs))c[&h?e߫z=gObo562/ 1j3wuKY{x'Npw!?үqj_E Q^c2won/`g2Xs_zd}YNDgU `hR9_댓v1=~Gzؾk]P_}׾,Y𯈋'T:boΞf`i_\D}."{^FK?m3VO}([O/Bg5G4?.w^7Ki|f[{J9ڧϵ6g3='k6̎_oua"7r{5 .^k_l_{=wm](ϾryTY336 {gMuk]CӴ3З~ڨ--_چ_үi_C\5<3_Ķ+k'[7^Ye ''+ 5ΊS!uߗ~}іfDbָ?iuY󺚷kkE#wm?k^KG]{ its6O6g[=+?==B KvaJqįK?w=gL?szyLPO+[JZK=yx*3?:~G52_q4s 5>7/Z&-ؿЗ~ňkN |lӟYѧnx':Aieogsq A<цXsӗ gRqerϻG͚wkrP_5fQqyoWvxV/ؿ@9Y>*;+V~ik]1T/?d΄3[kwAv?D/Ĩ~Uk0wLBڹ$K,f{Ŝkg{˛?М_М[so}Y]٨YF=7nj*{4_"MjZ{ s!|Gg(ǘT9ſ"~;|>=PyĽ7Yl73ɸw_tb'~g|69F_;_,pY!!8f.usS5];7_N-PL>yxQ{Zqv+Yz~mb9g_`1ϙEXԮ;ߵbYbz>s (#_cC?tbNye]>/-5~,qN,Zɷr 4hF`Vt]F gAW}:3 _<z3ߠ*f m/| ~Ⱥ1[,Y`;]s3?\OfvK ^'-]._rqXS¾/GE?w/C!2ɳO L]K`l0p~z W%Gx,vRĞ31glȬ}_{ϿW(3q;XA;{;m[䦈]G \^-)8}c|Wb3{=Nk~6%b=J~%|j|G']cZClB1kY>9lY實wZC2H7|oih-]L)zk _@#]ƥxIyB?+lf3\.%rmGkS}G-j@5M4ر7Bxg9iQFaA3w{'SumΙ8[z/tu__a?:Omr9e mUlvUfUdrɹ|fUU|jZάf [o>N}K/Uw϶/xտAIdSwh-CsG7]Ь3j'mdQg_i#zE.s硟vN?r-?y|_xEV07>Ш;?0Qֆ/м.}X93sYmssN!^/k0jȟl؟Aj{S.`{y.)=řT'ȡtVmDT̞K?ܗ~5X.bg7l{"tV G:8o uv?@aaW{jS|}= G -Z~՞ҧn$Ujϙ?L|rnЇ6Ϡ}:Ŀ_G1 k``+l pkui/M_r=hY/_ޥK ^u>󟧍A5wk-.%oTb/%bJ_2;]7;=}Ag tػy-mwY:{Efxyq3#d b?5;=ekҢg* JqvyV>s-@m%:G6b6u!Ggr:sٗX=˦y٦١C-p!?h!aC: .᫻gxyC 9Ǭs1.b k/F*W~\ی/gghy5_c( KkdKB>gw5}Y{Vo*r:srK_9,fP:'ςJs~?5v>}(=U@ꜯʣOB.1+8A,1<K?KhΌL-.tvV}9ے^gFߎq?: 3xLm۾wub)ƐW}׾ͳtw0[8uÇ#_fyMi38g}3;:8d/UK%}bӎZ\\90!cR q15sW':Aq壴oM+9<-18_̚֌?Ob/pZaPHzjxBO׎sߏ@u=ڢ?}d>٦2KPQjuY/l/$?3\X?~ܡcI=2 xE_\_,''닛k{G?3)XֽPson!Y۽*I轂bY>0{'sۿڅtCo_\;26sΗ v=98W_r.C@^[9yf柳l/7=r s}^_ ?_jfb#}V'k_8_Fs"".В9H޿/uȉb(Ωx;KP2)ܖoGϠa?=k87q}?L0Ybsi@?~={?f/ݸ?_ t_#~,|}?Ҿ]jg`X񗈫vdg{e{G?1ęNa4b>`5XYЍ)ybz3NʬbﰯoD&1u>Qla F8ٜ4j/璈j3dQ{:;<'{~5*+-0 0 Ƴq =!06G_պ>x2̔:q!ew+bb~eR==ggy*k@s[ŝcgCK|OqN[\?t̍?GOI{ZO J19SD|K=3{NȻSrՇsa3\.,YS;oHNY^:>E_*?\jXvZKE]kİ/[yxFY:csG$~%O-y+_cK-x'~xsk 18GԮB*]g7~Ʉ^gQSZNwlKrݲ~4=ggs^-~篹o:U}H|񻅽a19R՞'v/PşD^<Kue}Ѿ_[n1~M ̹o̽o.?sχKJ㵾g9H)2UJ䭸 )q^пtYhʟ|i%&N|6hA~vZs9-.ow=WZL(wX_"^;.lN!3sCǙ9?\'[F׏,0Sy$FOLN*8NH؀-~EV__aݸKGDosoo>XԝY; مQb+JbwםV¦u*rA?hM%B'q#x}0k\{z֕vs:޿l6;#jh}cݮb9 Յ[8{xG>jyRUT\)շ1׳F|/l29=#+-=G Ǿ^7a/v̟S~A֒|.T^ͅ~З WiO-v?kﵝu1&<> 1 YS\łubY3'w/\e3Q_ oVW{g OVlV/f/zfЇNO9 ,bs`_%g4.޺^#\Ÿ@]1%6Bb.h%N;=ľeR=XV9 =Kk/ g))zVD=L3+~4/32'O w? ѦGНǸ f@l\ԗ6C뿚?Ya:F)xHĿĮ>b 5gN [ãCgAP&ss ﴞKu/39 +ҍ3w[z.23t+SwQbw{JĿo%{~y=<bS&W`E_دa#s-͝Oصuk{F2t.`yyUJ`W7k]/*4g#}%%O%^ܿ .a3p~gYO\ {J?5XnwZ6ާ|Yh_k_Y"sWxhw4>IJ}w3A a!:3?i5Ft#z~䖵/ĸi]#8C8eSǠrS/.r>oT5'o@O2sj,#3<bÂ,&B~\믻#}%*: :?-n_=E>~ :}wng}&o*Q/YCAsF mA3Ri6| ѰY Yּ.^mR[QyWG3VgzHyCaLt6ByL\|93}9?̸+͙.]Y{5_=KE3C_҈{6`'ࣿp^zU+~\6Áma&zR3ƸWPK(OYǟ:ru|%f3=3+wXZjaW2lsfk͙76={k(+m7cG ?k㽗lpB| M~K>g_nug!= vΑDNb9<֥Sqq?qkwL_.dg=W-bY/1+c4s^{󛇻>m$SV̯~"3Pw'~/zY?hy k] 5?m78|8ex.k_;Ώv= F,ٗ;T: :s`l/{n|_Ji9s e/Y$@O{";ƎE]{޹ȿ׍A?d:sʲ~+Zߠ#ք8''[rvv8ѫY|G>iٜ @/ir _X:Z?uNo!ЛŨ)^LCo2f.?{2їKxvaZ3,> XQq/5O=W?L?Зb1Ii> ba_Muݱ}>G<Ơh|}65 ʯwh_1lTA76NۗE~96vs*/.  1|⤽e3|584?_w_H(왧j=D;yt2_Ak ͖Qs_i#-wR,,?ijaK]nwqއ?|cЯX:9_o֞K5׺qSӜӖ[=̞5g$|9s]a! >l'5G? ]ʞ /k_h:#}gFc9T8JqMw)}KB J[Gp Zs K糫!kƠ Bz13H̝ Ѽϊs846:xX' w謣g{;=Ã+% ;·hyݿu%m{]F+4{ꝪD@X=8_~ssz]ҊsM? ztBO8Bwjy$qkGo\0{7gQXFdOW]c/8N.g&,b٦Δ.Z0Ѿvbu=6=19FTC4#3Ky<%8?S=~ R9k?9sQ?Sqr/m~Lqoa߁O_s,j״/qb\X7OLxqd>?l)ev mi68<^Ӫ:]PAP@DeFdFdAPPQq)jy< (Fݷ&vn!&7hѾ<9gzשG]Z~<< ~}z9gs /=ggs;wB}6ywlOM :~E{X?=G ںg;GM?b^_kWe>_gZ>}j'i<$,z6Le?gGqɆ߾~++ҿb>dQ6?@!kYb #OW39G<>gޜ)Ԝ9ymsؤ=g=DނQ_{E_|ucO_,ཏY=L\F?c\?<9/eE`TWL 9U̙6gy[Cu=p6/:3~%m\_>zb <9go}Jk5:@xjʝl7ha;;i` 5WE5g;T 4i/u ?]GS/̾S3oF?}Ӈ{eb_j,[K~aS1rJ/ud79/8i_Aw?u~q̳|hg_OS,v.<8׾&|Y<ߛm3Ɯ*gg=)w@kO) Y䟯Vbo'(Gw:ӗ~bggXmbv '#z95k.HvKƿ; f6̿c^ǜ%nυcvul -3}wX cq "?m29㸵(>qA{cPFﴺ|BYVcUTsxs'9w;e|L/fz.+f# ]{j8 ZiRc+~%X>tPQM1CFeB޳ɬ9 / 4+k"Lh~] 8ahz4ߗ~?`;GZڵ?y3g_\zQŏ"3eΝ*[6u.Ǻ@&Κ>)_:i5X9)b`|Ԙ9/cٷlJv09LǠ/<9[2 #ӰWMxK_hw%a=g_}ջPE@3t-~+^U[}<-=S v'snN]VH s9} xYHII.# :=*کC$w~ʩƭ*3:>7}lȿ5OX7~{VWʾK/ҳΩi#t~~4L?sya x ;&O$v@z/̋n犿J^ž>`ڽ*f,1!,5N_OWN>mCV^]e8W9M%.e.g.\,~i.3oB.ч~\6CJI~lz-yiJ}9yC).//{3ܟ9U[-z6AQcV/i՘tR~&vXXi [<~,t %;OB1߈?-`ݱM,b@(~}wᮩ1s mX vԪ%tdxM*.t]Nw]J\?fQj Y %oU(f;MtX:s!'I?;g?9ßO;#.M!2?FY2=uʟ@aZ뮮Kr;;JLe35|?Y``>G?kk:fݦwo 7ƿ;ǻ|hSkV;!/ԝ_/˨)]Z`; Wz|w¢MoXg95-{OC $5ճگK-zX,֍튋3Bj7̘sEv9gB-EpT]~-j~'6ɓ_y p ܳ'}J`_%?۳{͈wũ.ӗZkwYU\]/3> } ;wO+ܽb>$hJܡ]wgVue_5U;;fcgCAhsȧ35gKzfߴ-Ⱦ A?"~ 2C3+ޑ-Q;/þ[*?^qgt1aq)mQj?;+u΀~̘Qq+=3q&s͝:_E _}۬Ι2RX[JTv^]~[=fp_IjSmx?37~zZ}΄tL+(2ҹNe6)K)ͦ.9__}W?SkI+ؤqbaƒmg۔cO[,/g]Q @,zt1gl7g(ץ K?c_ł,X?@w"fj)'DחP]0]=<8lސ><_iNl79넟qEUBGޗ~<2o.Bmvv>𑈧9o,C//w>t 䔳Յu[~9s&ŋ_Zgi!F}W\kV3ۼ(:b}8: dJfe7'f}Z 6l lS.'/el|uWYugՕDsfޢijy&(E@"xЭ~^Jkw:/=<} GTq`xݿoҟ$vũB3=IfLN9ϳ!bٖo,0z,91K?1X_ӞIiaO]pПF6gԥn~ƹn?|!uա&j*~.M7Yo,.?~ח~#duFO! Vo _$5/O,eu\|"Ouʻ~?g~М3w~ZOj_i 3|/ڧ#K?= _`1Wz{☱ ^OL.kCZQk'k.{~93Bgrmꯛ&y6b dӇ~?k~W_:2%LYJ~Я}z!s?g+ =z~3s-~\Ϭia cߗ~>m65O}sC_qZҜ}Qb=c+_<_3Gsw3)n/v?#ik9\,Ccz&gFy<\-01:s=ܝj]bg=_࿧X 9ڏ@?f,Y~ p;͘{$/5R9%<0'=fQKeODs~UWyuK?),p>k5kv_ ⟀?ry>.3``H7'v1עG~qkXWڷG5sooUgߴ8 Y*oYj?W1_U\&N)1COW?[ԗ-Bk^-隟{йM\žbK&}9߅y9=ʠQ\,4׳d unOR.L'y:v¢Sv;8^Xb8=e|R@na{/+9]-OZݧDۭU~{gěis6u^u^ ɳw _`7X`G  :Z .33cה,]ddo:U2"vPKhN򟑇H3<3} m4(zQ p&%eiC/';P?v _qB;%f;Q'!O?ۢ[Jw1/&%-b)i|j%YV͑Ye_ϚlѮq^+gZ=JBw1 cyB!Iv9r_r')>Z/]+Nbqr10%.E.q=*|ne7a>S;O' AXijSljU,;,:"VoϪͷЗ8>Z+βi]l.q0rJ?].ۚ_gȵg Ybfy_hřay$ޯ˃SПeM_s (~"[ |VB 2@Sgp*}ڿOqߵ'N~ԝr{ЗſCV2zrg͂9B,mnglᮁUS 4k{ץejiS57}¼[a3j]yŬS0ycVt;z%g~@XY"Wżou+h-y~'#Jر3fpX@b}Ue{-E" pG(Q]0WIf. 2yiU~nRoՑ}BVσ‡"$SV/ 2R{U]NuY'He3e=:E/y䶈S Ǫ,S?Uj@?zΛCfY֜'|ɺ;r?ZѺ`^y#KY̪)NK0?r~;9Ŋ߳^VE^S,tʔ}Tsֿቱ =|R~՗f |Og؟m~W>PS2Ŀmo[O /ZU;ܫELbNAvEgX,e{?z֯ϰWLgwX/2n_ovcN·7z5_er9%OSYи2\gqٳ z϶IϏ[]eῩY6֧;_{_e[ŝ+f/r👳R"v2~رOXͱYvq9i>Œszl?:9MY:]ON'W v]{֝S;Ad??u*,x.)Qt)xJG[9~ 3L9/{{:oVW72%# QwާĎ\Ix2hfK,շ^oCp.{P;tʲuV\eeMbp/Z€F~x!m{O3Ҽnۿ ZfN;t{:)/J  Wųv~ }rN}_kz^hêg'_vu1n%?[엽wa/o%ҟ _S{$T/ y$&g^{FMn掲w<{:cH=Yz^_;hG|e_ϭ } [ z]h2k:5ܸo;!Kp3ylh[~dᬮW+N>EϚ"OAj_e6WWs& wՃV^Yg ̩OXc6jܿ 0/zճ<_L~S*wa!ӈuE#9fbn;{Tj}W ?ir?Ypa/naWsv-~&;:S0'C[pE 9QO{-R:!jg3:}9l0s{]s֘Kb_KmX577:_}߱gNhH{W?qk/΄~5#o'dS)P>39u,5>jc%΄wξU=gÜϡ_!sC~MX]g ?}￝ f9%VB~}ZoOcµ}ժ38\gjouK}ឯg?xEGܣ~M)05yP 9?Ήj K!;$%p Ѻ/(y`>a1Y7Y_e?ZV;\l~< ìrA% x_|3.˘#*zzO?ڧ}վ܄E_XДJ!JxL(S L52KnOy ٤B?sbN90?E\ 4j".z Jԙ[%')a@b?6ÙT/mXXYs9km{nkOZ=8wm _ɮ[q_/9~x'ɰϊ&V_\n7kŽw&ݟ'?;?o͗}퀟CgЧk9x?;~=1_}q&yůl:Л_iڴx{:'HK`ǞL*r4h§'ne_qQ2<[f} ԗZLOKƩMc8{ K[E(I2YSK=NF/nhֳLXWXs OMΛrnWb^:_qhc|O~ڸI]Ϻ:(]!E 3ĭLo漿N gv䴆~:%<-! T7n ߈g mYb3"` ?ßT2f@Uɻ%W\Wjs??ԟ:Ke?1h+`٤ Sj7 \N3_|tF v\ƾc]#Ap9gt"ݟrw'u>=ǖ7.ƾkk- F嗘x^̊w1}?ƿ +ڥ󫽠;PIΈV*΃/O+ſRt*Fgr|L:auli^cz<>>%NcDj.Ǹ|B՜?#\󤿀^ c ?n^;~x,':/_L<4_uD ]σ1!{m7G)!jΧsͿB'{i +/KtTja{TW川!"֏b2?9GeW\_vۭGm3,2؀_Uj:2{O|~癥lQ,~~1 y_~>)C?+ JMDߤoWYVç3f WQR_׹'m?ok([ uJ9`s?g.?C{^m1:w]_da ]ft/ֈ3 W~6d% e,_[]#3jL~;׭S65JmU~uON Ŭrϳ9#e5s7ofxZ`\B7h}]Zw^ɚ1;?әͶZy Vo}~)#Ob\)Ʃt/d*lgYXo9g'>} &<~mB:կn?5ռv@Wd悉s_v9rW3K wâ^c}Y#նXZ9CP, O8u*8\9߾KK7Xy(,9cz ߅5NWOǬ~<ۧ^ ށϰ4\_گ5E**!]V[޵N~L9+3nF};]ճ|Zp&͓\Z,[A~;Znݿ֒Is~~pVGՉqs{,lC;oXooc?i/3?7k}_l߆Ÿ{3j_m#Ok~ޕ>keg)ӳάWk?{9o[ߝl%?A½6{סyȽsu,[0{7KI|sſZu޹)?П_qZN`?,_znsn|'_iSq qbL^uֈ{^wՊ1j3;cZkec-GN5'5,wz}B^?Y *Zp.l\79`QW8ytF~gk/kܢ/k =ТՕ].k/iisofv'oB4gUssOE?{@5oϞ^Zw?B/:wavU/gaW毺peg(ëPԟgY?{_Ǭ_y*c:9`_PO9#y`nʢκw"r|sS)EEuEW] x7ɳ4w9C*.js{Xs$/ʌ~b=fuEZ6jY֏t^)=U.\u|[Y{sY?;_ Ӯ+?Tǭ_/5s{?gX?}^ sѣ_"W{)S[ؙNqK0e5rs?Q!]8}Ou"/cogp&O%Yszfk+`5.< ~yͪsF?}g,ph8wsCGi&vT}N3 CrgV_V\53ȝi]J爡ϱ:Տeg\A-q3G<c_wƹY(#a s2{V K=b/7XIW {)߾kWUgvSWY=7S52z}YwqYG>iWy'Ws*mc_?˶|MYJS@~֟rqE9'? וsb1wq-?ou>_7Z1;' 2P7=SFo$j_%gW/$v>v7.ݸ_|ݟŝŌSؽyY2@5fɈ'6',.<?.8s}(~-;G _7?Ŏ0o4]`7޷}{̀~AynkI/ž`sNϖ%vK;!K-g޻}9p?RZdv`\=뜔a/[}tgz=gr=ߢZjq̢j [{E]}k؟cݓuq _cJdދCf@SwvmY?zcx)a;rp}آWCy&kc ]Af{ cpuis958]&E{~/@ ؍}k^|o_wˋw>E%faW eїws@w ~6廮}΢γ)3dqn~￴c]RZmmQbyK?54^`_ڦ3&{6/É++tǸK-yE{W}bW7>l!σOWy )uڃg@be}}g]߷.v:D]17?k,lT.}OtL@Bh$ﷺOXo`&xe5??ig=pmd@u3YֹtN+>n<>-~F~Og7Lg}33?Uϗ,~#g]ß ;^$}\6cLh~|=dETx`MI?h`t#;:O#2_Ye.Qw]a!Y?FOV,_͞gr F~X_㲛%;O?E %ϳwr>BhK?/7?|YA_ /wu/83W8c=JKŬU8'C',lp۵]l2 ,[M_XUUygq Y;Oid쟹YB mB]ej 꼃{MDO wu_-}RmBCso_90~oBށﰩ' e5"})KD}_٤^]ꛜ9:5}&:I?[N#z \.w\Üw C92t VmhWdo7߸âޠ's8cA~a?vYuﺳlX>_u˿(ǻ"Ώ9yo6tevMmϹz[sg?3Q_r,œ >w@_[2񪮏֗{?9%p,4g83PmoGKw|y#JV k>rLRƿE,:.iOY^K{Vu=X[if=v{hi7c(c:y/bɅ 64# 8*9 ŐgE_Z؀W_wqX"G>ga3d{ b=< dOlr69+# K'^`g>l=Ji?O'γ{9ܢTso򯿲I_rW:}%v-=̇:yg) =m1]iU~毦vA;qYgD{2C r#Ok~3\|~JYM#>5Mךܢ-rX>zc,M>:ePf*N0 DΊ5"bu gȩ]](ϊ23od-b@Zs_ov9?E??4,LtW"Se羸9f Νy*Ϊ)kw;fjR6u=9=7s=|RK%Vׅ10=>ƿt}ʱN3tN'f@U3_ͅ"vL(%rB΀~9 G_ȷ!>3~sRe{g7׫#Z꿬O/?g73ng52~z;݂`ǎvYϼ y+_{i~ -xugw1[J\ogn:dƖsDx#'&s̸W4113.q=}g@gJuwſuv%}J2@_͇h/tNJ;}mbvTfVUw߫1%V}زe?>b7;w~J:J]g]E+u )./|5h7q>ibw?3bc{\ g@̯\ou}iOĿ{a}MAw^mqv.ѫ W?3]՟Zcb}c he5|lQ6pbszny9\:?ştk8jvX^G}'Y{iDzks/%L+94'̽-:оhCGvZ:_q~:c3>.ib?P!y| {ճju83;Ip;2O|Bw{HP#=?1G}}>Ot^fET]`-~ul#4(~FM=E>W.\,>áp>$=_;_w~"}І_}觍b}J3PO%/>zzme/ƿ_窕w\_s,=v?؜3v? k@B~9Ӷy>IbwqƜߙms~sE.+Β/kS}_Wq·¿fW 8:˚T8]x9ܬ# }WE炇Ye;-ƵgUqE>ۤ?Ku0g՘,dxgy pޗ%'o?U/]]ds{̖ǏEVu:4o3ɸ[SGM?*:_diqEn~bF=h\¿eJ[Ԭ y{N6Ovi?YNu~~|f΋M8ҟ͕\!Ǿa qWp}W7UP ?*Yg;}#>F#Wgn!?}9Aѹ*F?cWsB2q?}g] kseOֺ0+7_8q\*+ڋ滲U9=kbbΈS K|t^b6uVY13VqgcuFo:)T58j?V 箺R&=b3GgcCqe{ߗ~e⊃dž_s=Dd_ۏ{ּ M?sVg>{ozW9qg39Y XRD؛q?\./[0!FS;2@? KїY<(~{ї~͓s,K,t7bXziXz<wCg@-b]rA2Z7~/f0`ظ?g[>~5K`kNfV?K]~2[e[YyM>;J6gNC<90F Ȫe;uexwZ69_F~ij3K'xG/"~Kgoa{bGa/:{䝰njX߈+_UCe͜{[hA^MaVEĵ^\-9_+L3_sn=fӍ 9Q?Ë$ç_PG7MPK-Sc=a,ܺq:lA 9o*^ͫ2[s_:?K=yROUbbgxWWX]f^KW[,xo,ϳm~ -_ ?jQ &.{뙘_Uܶ^j(5Mr_'inz~yQK`%{Xq5t^§J;wqyNnDgK7?k}i*+lYrbY QBR/a10v1nQ>W_6?ط+56j)q&KruXЛwI!Zי!3󵚿B~/m',jٺl҆v)mdCk܅X/W3@pN34~2r!`?lzfmeČħFK?m|NUk'B~[6r[:Oxg SJKdjMQfd)Ɣ=wſsKg \`/z1 &O|Ž!a-7׭;GWh0mT3$K-/ +^oܥxЯhX9Ϳ 1<KW9'4V-,џW_o|˼FƩғo+9%_bgS Rmj.o7[^=J7b%|'qC_qs~GZYP݅B.2Y`nY#+ ><<1wz g_9` A~wh/,{p8ee5 ӗ~LYcbЭuuG==k9+koS#o̸W}Y KH> ?s7g}=|UN7䗘Kw[ -Kr՚w!җ~-Ϳמz9O]ρ:m.!0cyI ? W' ENW&~k{٠D y=f@sPC~:coܿs%v.1jFnS)m;GesI~ݿj k\jܢmGa kJ,u4x[C)~}1F_f'gYYr/!xmWA{ |%7i ?drz;hqכ8.;F?O^ρ~mm#ѝ9"_r}p+I꜡5XZ#YUv"?h=C])6~;ϟ\wW(?hb_;>I*Nݜfb@3=NNAv:BIZcٷA;82_nX2_XFy,YVFfsI:G~D OCGzVh9}Β ?֗~0jQ_}z#K#6fg5Ƚ9_:˩+5 lq)g[=?"Ǽ!8?9){9gW}آި 6nqmdmlߗ-osLb?}oj&g,s5*wj~B~v'Yg d|woK zf~$*7Z_9;v mgXI_OZuv̝?n>󿊻p"V~޲>.s3gYﲯfl~-_{G5?cΟq/O.bUb?aS;|/ZceO{'>W39P]{\ %{r}YCsG9!Ϭ2_LtNs$ C?*,g!_Mذ **'kW:>'1umʫz&9s>V%sodN<3'S 9F?Ss<| ?%_~q.z_C?.#/C_yN_}PCo31U&l53 bQ5E|"fpOYbi}?Mϙ2=|qsڄ<{W?@Ǩ/e2?v&O;K} r'l4+pgOȲRfy節ǭ}2\>jqǚ;o{*fU(c0K"?!ozҐ_>g},nUr G]j5}:_ܿ9j1kIC~ϟ&tf˘-W?D9M?k.?ŕRp91ӏ>NAP3s=`\,OoZ~l?gL~wKȍgX3!ǾQqp]?מaQ}>'%Q5s_tHt6P8trK{x9gr}?;9+o<w_iUc/ϞLNVu&Bi NCbG%fN_)e|/kM\/@*fWYCE:<1KH]ę*HM@~~3f_Ѣ',fm5o=lT!,g(璈Qܛ 2Еlˡ6Kܻ/?j,&eS\ۤ}+\W7(1+k~G/Ǹ 8y s 3[=s' w6AEo{0+H !f8ssv(2Ar. ELNLןy5"KɬRnzf>Yo5g?T䙙_8Nv|Y(Й'+np7!K쨛ոGrclܩ]}<l3w(0y?&<1t8C,t7v ~,՟ЯO=+}"^M)w_\9 0okg՗ƝH8f8}?9ūc+ɹa$$g? ~m{\~}rAk~8 8o`'Ve DF܅':L x?AWwu?J4<w/9[(cd=*C{s2~g `02Y\Pe=hi}wi_tΚ739wZm[: g&p߼ι9lr'>ϖ~ CwiҕN;dܺ A b ]W~ƿ9qb͘kDLطmA.:| N~~>L-c B,漴RKB~kAeaG%6%v)5f\į_AŏT?w29;g}㙿/С] w;y2a=#K2ln>a ygb*A?ܿ>I" M}~/+KIyK_`Ϸ sψ}BR2Xs"fN$t*>p|SYLCfp=#6#_29ãvksVwX??O/9^AzumKMBnaRӯ~⌱r??ut|Nۼ{ʴ6\g/wܿt}O3._Q'͹xĿۚяg~τ?ԟEsoE3tsJ3C +~=h^E('cloXg^I.؁XfyǛs_L~kl>V/ #n$N8qiR<ۨחrw.ϟx?_wR_ l39׈ ^<ŵfN|AπOYTDd} |[ 9.ЧA??U.Q+۱DL י)Θ5#t)k*L';KDH)s]3  FgvvVQֿ>%'B7?#?ۤ YXF᪟.'8r_뚲ho]n4@݀wX!TjlRi:CϾuƿܽU_Ύ3&Y*E2LlU%Y ϝzb~ P_TO?Z? e>J0[>z{$G++q !u4O^ЊA^ڤD s,ಫ0+,kۘ^7Yhn3sב@gBA/ xl߷!`-2%pnnXC)ng>蓮AtJkp\{ych$|hشNAvs7Pu;2s,2ii^?xE>tퟜ/a?4u5gveJk4G 9l8WUKxdf'?}4c}fkyiN uy_>%|yXb~/:s Cwd6;issvj. mɟaf C2뼳w&D=k̵rnq/ۓ]xanPjϡba?g.SE9ZR89~/mVu>9#{3l!;ϷYam5OoX_gD̙Y;Km;Z`X!f:נ5]0d6󇉿quo辕-di3Uϭx$,b/̕y99qZoF sCl9ȟD1ٗ;TU9WXM>x62MڿXcޔ~ ,{{j\!oo*owLpbg&:H5KĪĩ*<ë=tz$gw-ng-Sӧ_ 4aMoH+NbbE_ў ֕tQqΪv!&Ε9_`ػzEГ9 }2j,r@-u~M>aw @k;c56}Gom#0+8m> =f3?ϲ7 gR9g,ԓ=B1?Zԑ?,ې_kHw|/{ﷲ5 KNX=#?j!?lLolCϓ8WyuDϤ|3S-c`l}OոLcaqmk~]mk T{fWisw9E]nr)TcCX>}ggྎ3zؤ 5CԞa?e~*rYW|¥cοR^ڤU~:ע_=w>?\EESܿIium?gωE;|:rfO3֙,=gylbٶoF݉=_=K 6)'_:Ou;Ƙq.+ڟU,;gs]Æ!a1qnnY_TsVk8O~8Z/U?IίR&Ω>>;v#39_1Z{!mϰ ?< O 5l]j\y0Chkhϒb)OUL!u+:\Pҟ-r:X/ZϪ,x2@nR_oߥVcE?gWҎ3tZNڮksN[Yf⊼3GqOކ[x#ԝ /|e^j=a~=-0]`)pg!]ֹX.]Y9;kHRguņ%ffK3qp9&G_>1z'}i}V>Oly\ ?Mg H3G=fŜW0vwն ;'o:9#w_,g/I8#N;🙿/Z0c72U/A/Cq"e |_Oֽ4.g"d. ?6_h_{^ͿeMwIgցpw(z{}J`gϺHkZk\6>d/. XP_@~j.JKӱGeS/j2dL~z-on?eW/XޑEv |A<Gp=9z=7 3'oI&/XjrO>3{}^ܩ½0"?yT g@(#~[ g h]&<+ldG}_w ^љAڔ__:ڧʝ)zg:kG8[ |*k}*?:u(loE9kΓs ƢWuƢ̚׼ _zYOչ+A.^!%|D&̽g:_1t\i6O۹ϭ}Yql`/g}:3gݿ 3kϚ,ꨬK=Fr|mO _C^!ΪxQ>#_~OUN;7⺝ua.1CsqwgGZJ }qo,@_)zC_|ƕ},ds?{ʯj9. ߽3/~ }.߫/=fݽ:;3=ݜrzV̷5y''́ge ^>a_ ;vneQK?krX'9ո.f[^ ;~K9~?}W7ڤs?1<A_r> 1:sksG;;}P<2͹՝wZ:gN_ϕk!pf ~&wfsFٙs_5gunQ<#w]h1?cn-.3u6y0^S:| xu\ίmѾ sF/7|9s~bs2i뤣/_Й&ojʄE5x< oj ~g!:_]}m梑L~ϘE W?4fp&\L~.:s//-f9ao3l+n2 {y:svQw{LHֈ?;^Ӳ:^7H/"U@PHo"IU)" ذ=0ahC{]XKbr~'&9c1|&4Ǖw]g]=z=3Y\k5yХSڿί\^t`ݕS}xOYhOR:vkʲZ༱ӊg~,/͏g_`15?sgGf.IںւSҧƽOXj-=g{ʺY˼9g-zлZ[x-?JW,r߰Q] ۥ3k]+unsQ}vfn/?_OI?>բ^߸ExOs.㷴}Y8y=S^c9ia6ߗ?l3D݈WqX:SgO4Ź$䠉B_]T/ƸmdR_rX:s6܅sOz>FX6ezw=!.:lT/8:8Q~a>R"^}ϰ_v~-jaNxGğ9+b߅Ҝu:y\zR->k/:{^4]otN |qp{#Vbv wiiK=d~&{ÿG%0-5E_/zO%}Q߀"SYdCb@0'w}5|?GFeV/\9iPYU\ Jk1g!GH ؽr/l'yWo_s,ߗEN;uOZiѯsFvhlS{!{|g~o'c{ d[m~E;gl{"7p|ל95muLT迺X!?(Ő/seXsLצs]2~;Ryk.XkzpN4gyӳ95G7iOs+l=@%NN?ZT~/;{C6aK6wŹK)ey|g :wQ֧ސۛsf1WmVfI|}wx: 4BL!W_g_= nbb\ Uq}]L~~ γ+Nw x/N3} ϕsF5ձ {"_}g#~t/L?'gȄw+j`ß>H8fq89srb6K:*Su!89x'Yi'ø9+m+6E.ZW-dֿ2?g}{EL:gQƾD|3} vPF|%?'P2NtVNr!l u?9y"~si7!_APU8~t89Ks9f7~r?Pkszq/&]9ŕ="7XL5ν"'24߫ܮ}cgsC?ofljyG;W"sFϹlܿ4+\j_7Ť?}L˺iֽ:{K(7 gY) V|jP粳:ofq8Z7X*HMtE43o: V>BX1w]#{XQ~p}9t~OO_AOgbs5oQbѷ+,mm1O^GN})|>b8Y`kn5.οCB>w8Vʎ%џݿ?sjut:S7pV+Tҧۭ"1B KVqTf@sn֟gݯLngpm0C?l/(8WN~Ǽ;prr$f/,#ɹ~_Z}cF)|+P_Vb}:_m|D9M8\d9K3,$syC90'bQF<ϱޞ3~<#mΩQ|ɟV U7arvaN;UCg26|> a|bbeus;)5~<Gſb^U *ll.ll[Vrz:ۗ؋DF?K?6Ms)j/9Ź? K=(.NJN7>(~ڲC&X9)K;#S#b@w/!nms`T3x96F_λvDϊgb^ٜ5v/'#f9B.Q>!%r em<y+[?&%vSjC^1~g#|Vǿ?']]w(,@1i>A*Ow,1tWopc8r% F^eՃrߠy ^&%.#OdXc^YeV꿣C9gfu WS@|-b^?K{*ki3.p] =Z*Tٖ >yT, 2ELDJ,k PJiЯck-ulkgpMK`6łK6?; [yR!A#;Jx:~õ0}iA?3oR5sPg.nέι wPeb~rw82r3T _G2\,uR;XW:hhxߴKELj Ln/[e`}JswK[2ޅ)~>oo+!v;dyܳ@_mߞ女Vj_-;?i7@<7lsg՘ܡE[ pwpϴ+QjR̟o~fQP,>_ݳ)^t_5xj8@!'p]FХ- ^e>5ӗ W5/pks)o4N`_ 4Ϭ\s;Sv&g>2Iz]{ݿ޹~]䞙;݂>g ޲yG} _ҟU~Yb_'9V}0}ܺ)bww]` tq"G{;y4|oqЕ+}3~S(ϔM5P9jG}u^RZ{j}71pzv-l.Y \{!]r?CLs/IN)S_YW'U4wϙ93+<֌tώy|ޗ8W9| Ϳ-5?'mϸ4c>y}sA%0UuWVk?!dv\srY(kev6U'h*W[y a//l^ xW8ooU!Jmo_NZa Oh!y Nb;a g_)J,`s/-w9@ [Gwp=zֿQƲ<g~s{::s\]sG[>Ofټ!{+βq0'ɜ׿Nn 㟑!EHc qיGlOZŧ>Lӏ?(Oldx;铭ƋGcbߕտzvllgүu/X1?ؗ~fq/KbMZY!R4ٜ\k!ϔƵs29߬:?tc'9/sF)gC}(-j{C?g}Җ/"C_kQWBde.r/+|/%}0>~c_g8OZiќ?/̛Ǟ!3{uwX=GO ,i'g(~ ԋ[sfMK5ߗ~>s&5S٘Е~mrPsѯw^l-\{4rݵ:gb38zVrEMfgfVSPSܿegeAe|ѯa[ 2gSOԵ[߸vUyE^欽zfn9369/vXԜ3^{{}kǞ![Z\!3; ]3NY*9/2_<.k_4 ߡmG;jvκ fy,eZamb8E<oo35O{4s(C=gsu|s,J3M|yr觎;lBNYu5q[;{ܘg .3?\{漏bsK?JΙ=[T: g]VK~Vωkogb?hܪ R_h68Y^Zc:=gud?rNVϗ[uǐsl1 zjC5D/ e`]2ۗ~͓pf1~LӟMM/+Cevs\LҞל',gE{9W8D/0oH/*W;7sm,|v u)W)Ec!~>"zޜlAFjoR߆9m @Co: wy,e{יi:.֜9!絇͸WsX{ufA3<*|.GXQ\D` g8C+xO{}Vw!K.b52`.[{<0RƂn`3wNu;y=#x桟激}a%l†tNE 8<g[OZ`~b?ۊ9̄J`q'sD>b1SD}{\1jC6ϛerXfl~\ /wvY1~`&%wbNguۗ~_?W[`)t2%v,+63|?fϑ?S;'`ߞ{ -,0S^<y WNЉ=y4׏O'3H",䗘//5~gv(5~, 1׬31G-fUƙ+&/ɴf\&\֧ɯr?so<{x yE^1@?bf%fdO,tfr9_:\#~cذRbVYqgYК߫-[2LNكvos3g46s,{,b'.50jwg oǺ\9_!w}ם)Y kGkZygEx4g >h_/w{n? I ,%F;'(Vygb,ZR_Yjj;7_S?MGL'egh_v6z&ios:Rp=eu(7. `]o ^KP}[>rc]5OrR 5+|ws Y_ ^ws:U:醽:u o?/}(OX]3/*%1nZbW) LՓ:S?_z~L~?F;aVw?h+޹Dyigw Jx hng鞔m\Fow>gRJ)S<ޥNL6#>uVUBiY/U޾nY_y^/hO]TX۲C~J}3-d+uـY?F?gv9w zړvWYA?,ri mP"=w?/g`KuNf^ҵN\Js1GrX,sy_5~"fVZ}8Ʃ2wEӠ?/A}˟ [qݻ[z& yf'wr1us&·OOX7?g8KĩޅIO-f_0?E,V,(ey̥=#䧦Ay3&E|vhv_L8+Ѽf0wl~e4WҗO^[oE ~J_,`V_%2IACz:hes\U.n1Ԝ9=-.Zobry#̥bX |' ".Ø!K?vϩ!l1y'q9'RB%sVR|$WsVsGTh~sTXl:ɜ%U/w E̢ .noRZrp}j_HsX |gG0|ӝn`hQxB~՞?pSKvE/x{ifXr?CVe~ϖg:K h~k\2r_mϿda{F-]t攘!bNn2e i9[<B瑥W*lcy/-Wqh.O3ZuگsVsbf'a3p&{{eyxĎm%ўb<]/U=Z e+ .'eK߲\EV3u:d3߰a,_eۀWR^q~ . G|;ѯ~ w?a?~./qF~'xQ>][{ZC&o] e}O-}L85?{gqCytiֈߏrA"IqfҺ_N~u&qoS3w?'b}??TWkO4ǥ5,5{7Sl۩f3 $7ySe6]RSWeV]]o1d_p8%jH?1;xXЛz%yj'3\V_Q V)r,[I \] \К~ǐgݚgO9f%v}pg}>(.iGy+>*uKLO ;h{Uڃ1j~_m89_GsYVcj,|ԏF|_qcY{e*f//|;xܗ~ -OOد[?Q[.dumݜcO~C+ILǧ-zҡ a?i(.=ڽ9˘;NY'.qLeot  z;ygkX3x؁SKC|bjI} -/9262~vS/Z,BO5d}XofU{uZ``; ~K|ⱾιhaۿAŐK̛{Kg|X_q_d(o,z&d=d2˩!7__/_j\gϫזz dq~K³r~z 3Id9۟f~wń3>ZљebL Я3wW; /~bQ_1B_ugԩ؋_S~!:WbP_9cUe_]f?/h?6Q4iξ7/Zlѻx Kg@ pG4 ſR\Y7'39Yio+~g]\u_9[b/MB3 ,dy!gϜ:'XF䝻x- 9q9g3~4P\,WQٜzV1^k'('u{XFEC/_["ƍ:ø~ .}OZi|j\;|N~2gs3+X3w!ǘ~~tLyIvոWCZgR=iO??·l\%kb~K-g ~)mƿ|m4shO~ru&3}6g09;>던y1ʉCsCO+wL1M2>e9ޡ3?2GYfyuެO2 Ί-Ϳk^52 f`_5Z҇;:7OK,wZJX~6w*R[U<.ܕ{/s3X+~Cl: kf|4Wlg/:WuC5u.Y 6sXm9α?d},Nb9Z\{f}>{-t'dV g9Vog!LO ߗ_P{MQ]h)9g}Ѥ+ δ?7doL_ QX䳴bѯvyYS`O/:+s BU;ſx^䛁=F瓭[~s2;o3ّ]p%}W>Q[p<.K?g9rE_4c!/P;Ԍ!'[fL|-gwS)7gҜ<l#qϜ<4D/Xb3kr_fuN@fgUNaϪ|EH59gsI\CҞs_`N0?30^oC-to KKϜÃ}ej?g/=T!"w ?L]c<'%&9s?iEb 9З~T?j1-w(Kw̻ՇK? 8w߆5꫄|E1}㭖?SS>C-/nBLq}g@[ِ'>_kPCկ?yr]5\iɯ? uYwU6e}Y֕טE1WuƐ~Ÿ_,4J38;m" BeyoF?xǙ&35wŹE!gX|Nufu ]8}'ǿy;֗~ũֹTŵ?Dt:>IA[w?W?g\ ™?{lׁÿVV=gAgS-0?Nsy8]eoϼo|P[6d/U/6nu :Q[?\&gv<{tֹ?8C5#,|  ܗ~Y`u6 ~]_NX@_!kP*wwR}oSSܬ#תgΌk_smg_qy?eQVF\y[4=$m_'ͻY [GjExp>}SbO&sV/NӭǴή;+?m}{Quv>h`tOm\ߗ~]`᧱מh~d?7߿e7؝cY~Wi"g6_S=fN]W+[$P]iܿ橴Nّg,|s31C*זu6*~]QL\hak[|^gu ?s3?绛L=++~3h^3ِܒ`BB~e?c#8c͇ȞA?Yӯ7 fS;A q%v? ?t]S^ozy`#y.?˜U]^qAy=v9 ~3O4݃0н< Vo).Dr}+ex K9O9ZޫkƉ<sgs]<؇g_u^l0?zY~(sX/K3>v/yHwzr9P/loz:O"g>ma.9܂Degyv`tƿ}gi1TuCNBWןyQ@p}?3|sЫМX;WN̈?wMg[ηe/CD?cZ~l.lmסo,#Kϧ;TO_Zl0?73] ~}}?o["6hxUm/qv;T'-uq:̈́n?;uf?s=?|#gř$b8tcs>ܮ;[UfLzf.{{~@˝ѯ3ڧF:b0tҚK.^?7q8x7y?_pAі^k.vgxY^:nؿ',t+1bA~'m@j3t'~/]Dw_r! }ҏE S9[<m]OvV,Y{7wOCӥVuOZ3x5gM*viz?wO;"EClVt}37!Yxgi|w{c?P^<>殃^#"L/ӻjϟuJԓ6߃2RC;н!{Y->b|P67)hNL?ajo9}p)Gg-N{i;Rc+Z?]ҟ4[s_S"ڮ}&sz{K_`~e//l@,_{^D~G7gpEӠ_Ǚ߹gxs6?9OjHۗdARNbZ`]k2X|Yމ>Yg۹.gXBE }b^g\- =jԡ?wOdJ'; 9Ж~9[ЋX$}0>Fg&d'lpow9e/)OXk ~[m ^kHg'2}%O"K5ykC_qhOn*~,?\On™f}:'ldsMS4OuTQsXקwCOs_9v:נq浈b?+ξqrA={fv/Bd W |s ?/{_mx~H///aΩQ~u~Js3M9fşl.|>f\9uN\Я6_{2T&,l}_W1+<8E:99~NWT2廍s8Z{DsW#W=9=9ߦ/?:Q&?#|?XWg3\,<׿آWyLa6 B~3;~(.>?gk÷sgC޿~0-ߘiY? ~ك,W"ME }E} g34sDZwCX={ڽ<4KV&,zf {.^k~ݗ~ >f细v)6(o?柏 ӬN;kG/P߫@>ל= =Z>r3x݆}_YWiFm沙Q\L3\ ɳQF?d_`휼y/|klOaAs۔Fx>Es=#FA3d~>[.vpL~Vop1 %]_hkoU/a'3/:yI{$\1`UNQ}Vg-[&l{#>%r VRCFUO%3YS{;O|*//sF.e2fii%ĽZ_o>{xŮV9l(_r5K줡Pj.bOu"=}iQsɖw?W++K s)~) v _  q*tS2ϘLN5'.s{NsV]'!hx$g?y8ٳ2? /A7Ɵb2OG3oE̖%_[7Ea3S+ƚo*[8#iO%ֲ'-S+%Nr8ᾁE;,7VVWKgQ:[=g8uZ3䘽z֞=w',UX绀%K y@nT/aW\>KJ2e+ƿE.j~mb v)5srOL^R ~s?aK?}]3q/p?1 R_U_[&~כүyK طo/s(3^+}WNN@G\ngC^`vl$;'/s=5]R_Ñp=z~ [.Cb*~;mCw W,PXY/g̑K/Y29_2YO[WÿOw뚷Kw݊7*}_ij-j˭z~V#Eم.jYݛ (lfgf.ys~ O[?aҾt_+{ h(v)5N/l|# w̼3N:t+F\!\[ݾma/Z|ux7mvKg-=i5~/1ܟb(tn5%|JG3qrsnľBxۖ<:ף>׹x\AR,b ſ]u=h]o[YS>g~W;q]J;u?ɸK/g V$ޥDi?Ǣy¢3[=OV?ء\4=ྯvY>m̲Yh_iAwBgdCyk̫˘a o'g7YY?(߬1fXiNXnWC> EtZ.v]R_oMXi\}iLEaȬb\}]j ݅ݗ^|Da1k]p~3c3wl0ϟٜNZ e:+oЦ w8]=?+OϨM}|F;|~os{? 9A{(Cw;»nkc[2אeP\u]s1%bg霻*:Wq?9)YڿD[gJaѯ:֋`o)kۜ@_ќ3;Ⱥ+Eo1=:<ߗ~g:@yL>LO{fk.WLm%4;#rRfs.Rۧ,ETSiyںw˸jƿK?eyf׭gA39m¡w;1G5nŇeCݓ,,O?=Ҝ=9~T[PMk|3} qg/Ze/ߙS{cVa\`3M?UNlR.Ƌ>r!Ysz־ֲ3:K\W p}Waܗ7;?ҏ3g3'-d.wﷺxѯ}{8a}5=q}],/w! e/7{{"x}'~c:eֿ8S3#֮lֻ;R@5^k3hg8ϊ_3; =dҗ~S:gHg89Ţf/m<:g~ʼnاxw}8 ~K댧Օs~{w]}9[?}W:\>ln_z/0:+F֘Xssa3MgE_=u6MhinƱ/ Xjwz.xE=ߗ gRRr|5q7{o}טis\U_9/Pgy=7Geg39'8+Xw89_ f1ˌ96̿ؒ;C\0KjN76]5̬)~"(ϣXsE<:buV)8b. r l7sշ]n|YM~NLD_]kܵCUbp^y ֝]&D CdmB9gO&nn1q?,0 {zUg}uMsJ:i1']O]>k?Vq8=; ZQg~aqByRQ% T_B}`i<ߺ1[,Y`5]s3?\9֜;?eΎCrwt_~}==A~hgK>.'*R27\W+ Pb'Z>b~а} v)+i{ ﹗Ɲ&4Э;#r{i[OL~5=̙Mb#Ӫu/m+PTz"g3-^tpb3;ex슟s4GB<_fA!oƾY8c{8eK`Fb j ݈&k_W=BqK$0A{~y?eN֮Ks}o <+x_ d?B,;{CCk~%bK%|jb|j=?eb,''>9ոI&WbwuVS[~h' П6pY>ei}gx#̽~C;.5fſE;/Z\h[W~k#s JnںԻbӠYyT1oG/@7o]bu+fb?;vwp?,j[KNsSs,rYRSunΙ9}ٻԿi J?5W"gE>S8 6/sbu? ??mC;%1iV?Q@1Gϴmq\[tes;+^_!+磵`Ρ?\:xKn~Ϳ1skxkVG-|h-SYV{,o.g6?zxſ=9;kqZoב(V#ÿwwVgYĎM]-uB<5|>S۪̪{s.XguMĺ4l$?s^w?|Ѿ,'U\-g8.eoF _leQ  Ga]Mݿ@LMKyZ8ӠB|__[`nCCdNnmc8o(uk|;0ֆ/PwZ93s6Em޿?'tf½Bg_)90 >bإҗ~?QI8JWjņO4OQr#z푘}bg)x}Zy}_*u˜%/1 u6wӮC Z?W2hO s;pPCG}fjT/8:3HrnЇQ6>yt?_OKw*5n6nүVIg_7v -b%~殘g̫jC?g8W]_#_A֊omoi[³9lJk*5=3}}K4p l_WYK|B^z/LӟhͽOՆ߃] <*$ˆ393ξ99YU7$8'!n=ָxCsFy na3Oa ?"7&mXy–ņ[8uÇ#_w[>.貹~D,. KX׼4r͚KY/FnJ1ٳw~_χSn_;ev8ӈwC~*uf@_|E|gZ?gh߇~WO\&y5\YH?E??7]vr+~ݡ{;ndfOl* }MůӘW{!t/sSK%}'SVoҹ!tɚsyaCbEW Kq:? k,}kzn^y^欶[c-"7=f3}}o {o~Ϛ{5YO/=d|hAA4YXԏ؁ZW6>?i5݆OK6Lw1(>l+R{?9;,bAHm!Y^B9h֋};.\zVZ`O|"Vt.o/]g,^ L!c9yӺl_Uկ?SZ;˼tW2 +Z/fGsVfdsnWUj.Q}N63}}8W.N5K\{gyܢv=9 8W!Fym晙W;C7wTYU}2| |jE_]qEq>>g:R† ܿ/?#r,šo>'{^)lm9xDsKso{VWl 10YW 3 D_:Os=> 2[}3',[`*:օ>zοK@LJ?ܿbS.$;xM&Gbo=yc~cA|*Sm +V)Iy-hVەگ fgO/8 ٜ~k(_K"^c9g:سzEj}c㻹T¿,p~3^,?fEq0WYaYmFWվzl!%Y5WQ \79?Wj\eR==g"<N\f;E"~;gA[6xtJ1e=ŨdOܳ//1cDl_R 'te>`vs9õ’},女~[-0PK{X߷عx?1iw>~йh_sXoO`Fs#@?10;%[.,e}z'3 Cj2ycY4*2rvXЋoџys5-l:NCb~Λ}qOp>՞隥iR3{arڿW(5N/t "2[q8o_8TC5BqJW_ǔ?}E8:Eۅ }e}hg}<>zxgiޭd|X%OL^Ks[0gZgd?8WoQe7+{k_yyV353dX;}B6\u"Q|SJ8}OK15U16)5_{ `n*Ϡ 5@{}|g͆2g#W:]?XLW[?Ql:o1 ~Z~#?;u*lq_/-_p-s1YOA6l\jK Ҿ<Ӯү8*K'akQ3ذ}K_W"g+{ջ/yhObC B~1w? GKNtYrrx&m%U3;29_:w3rn=ZB~x7iJۡԸ}!/~u~V u¢R'A9Vt~ۊ={,fxjǙN;jN'߭NugvZ ;WSv}{Rk.0~n2rŠu7;w?O~1d/Z?n ­fv=_ %8/MXo{}ʢĀk-?!S{7q۾{O_ht.^t㞿oq/r =96/u,׎?u8iwC5|!x uٶ'r E=)󟙏,gxR;'gxfz1{3>tj?0es:#Wkw՟_A._}B~)׌0 a.1؅Vp/쯄OY`ˈ 9K`7Ը̫+Ӡ/z+j̕#~aA~ʮ3w3wH.3yӦAmݸ'u 罜g4/zʠexY^Z{iQ1^؉z֙t=gv9W^ jBGY? ӷ{XF̾>ӓ6Q뿚?YfAOۋg/w#<y!3WݩôÐ_?z%3oǐoq_>4 ow61} ?Owk1EGf}(]#{/)TfuOɳ0^/_X8i^:1G8oZj;UQ\硬.^ike1k ?I*/ߴZ~3w,F ?w+2Loγ֏4;k;Ki>?5Xn7[6ާ|◒u3Я㬿N % y"#]_=O4_ݜG̵ؿ'yu- 7}9i|ďk>|{2wxD{UI\ hbLE/܃g]#]p?.uVǘ:Y{/esw>?Ҝ!ǐׇ3qso{ͯ>ږ86?< TK].υl~-z'yk3 7W5fg҉%E8 ?wzsAc2s?UoRy6ퟡ|zG}Wۤ8woQL'| vͥ.lSl[̂q_!| |93}9̸+Y1󯒳kЗڿ _l_~oXE0]~续Ŋw< azf'#K^({ y[2п|_j\Yc33|9s܂au lg ܿOgCm.}ߵQ*#߰Ct5 |>3cXr7kIڋua: ,ϔ'3X_m_ӜV{q:kFOtX;mR%fَW;,1kw~,m;/Zxל,{39G~Fߏ([F;MGbw˰毠E.ǕcfpwBru[CXoˠ; 7Z42yP>I2skyb$'C~3}釛3/++]j᫩xf ^YA_gFLW+쿂]qڠZF|&>σ'G;:3{ ؇{蟰nCyħ٭s^휧zsaw+W=PY+~߳dN5c{"?wlʬ։=ՙ}ŧRsI_Ucfg;͙N?WYHG4EЩ_p|>[*㣥?ڿW:3Oc?9}K<rスg"K>?Gw>K GեNCL?z?O:moryfOaϠIˢYA֜Wk6Og.ZW[22o"s-e ŽevO_~\xH?g K;<^K@s6"VY-VQ3*5~ >t_>kV0A-=ڳ\kgR.? |'RР)x^뼃['3tzNzf͙= _m{W{F7wc/??n.gҟ~n48 _6⚾FtxE9C8}{/3|C\NAJ ygs3jY'b )~&cq We)N3t 6ڱVq:xao{`fsI~{&(Zp޵ k߰' gk{]F2#:qwss5U3o\VϹ~ YC?x ~Xd$;ugs?rWsٻ9̈gv UN3/ƿۄE,3nIloJ.ǹ9'~Mk^3n[{zδ,2R^1O ~)ds)_ξj9k<8xVw8_ۚ/q<ֆ@5=Wp/ؿp?dAp+!saK)Wէ{g 8XȾ_؃)nl}=޹> ?h]Xp?eOe+ƔEGk^kVqf.3?z<O|bqE89nBZKLG~ӧ}EφY2i/:'~5-tW_9?ik4!guEA5ş#OW39G<>g~9SssUYc=_*5JbB+*ǭ{ ~]g _5F?}4߅}-׸駟Q3r3>ts揈xsҗ.?Afև4Ou k+l^٢???_o5ow2޷{%COQF N;NϠebZGY k\*7ٯz~">Щyq9?r 9FsnWy]xs){ng}MCOO=׬K aM}ϙ=߶; s8OV0Cا/YU_:z9g#ցoڿ լMX/߂;Ӻ6rG;fd7n]hQow[VbW;}u%#ߜ|^5nΙf2ov_Юݏ29K?}Cqү}Y=ask_gT_vz؞ˬLP%+.G&}4,Zke^4_o5!yI9'3` 楞?U՗Yދ}'v&xkҢ6B~inq84`̼kr=~|',J+Vaj2!I%rH#XgA\-% J>vftNܽ@1~}uMV0O,Rw}kb|9ӿx9ߚٻ`s^" E롼{́,S)~xyK硿ءw\ ƻء ێC}?}Wɼ gA<(PLWҽ}\9zgiXXxo;׏ [ZPb?cTρ~VG3k3/s~"󀊓lBy]| y'>L3,иW,_3W5 /vAzM63yjgsyоkj Luq%u -8~Ĺ~tx[0>:-\`ds ~eslr~sRG{eOZeu'ZHב}Sv!P1s3_@17pǴљm嗟f߆)9ÜsYxu6S՗Z^9M ݯu^'>%&ny&W3"-k(3K:J9ؾW8{UOZ}<-YĒم|nS qev;;2A Y>=Ͼ-tnEN uy?Gә_sKw[/V9ոUTw fM{S֍ߞՕg+-uvEL;xa>cĺ:KN|'p~qKֿž,g^K36퍥K?%Oyb"W}k9rp ۋlpIgW9}&Ysc?Y9.GP$6$Kٍ6iJ}E=Z SY}z&óU,A4h$~<<e>ї0]a5$}5v!j's?3W<49ruO 0ϴٿ毝`c57;"WYA~m_iuֿ.^$ԗY*]!߁5GޅڕE8`G]?".G`K?Xb{`wXoDHWDsu=~?m뼔Gcs[;=e~of3; ބnBgux~+Ʒ%"/a%o?Sgoqڗ~n9˞ ON;Z?UKX; EW@?}knMOVY߷vY_?Îz` ?#wwpk+jBX]R95~SnjՇa?d'yE>Nv{7~zZ}΄t?L*f(]CW%hы 㯽J5yM?^E֒pW~-G,.0; yOD~?e_lpz'qw绎4yZzx')̗k>m1KVOݹ]yfݓC`EG@?w9,ź9gW?aDº+fָޗ~2op.BƍWp}go}Vle^2CءoY<-<cH@N9[W]8ZZ>͙3}5,.^:K;Յ;i*E=8O,&C7:ѯt?}b^lS^y`k}9˻_Ƚ͙@s> /LY{E !:צq:g#}F?mh7[̤7o뜗推< : 9%,)n;O+-_i{ G r99=v3T3quogwIwKOYq_ifLklylΛy7uʢ9[-jJC_J'`CKɁK/A?{<64g9GϚVc)B"FsFΉk/y{nu~t3}g?>`=mq Ldx9S_mΰ,՚g}-va_i}W1<|ie})ogsFCŹkq.A|OּBRWdqfgsl#@ߜk?%da>~!{+78k^N@]؟9M _$5]*f O,iu\|"Ouʻ~>g>՜3w~X'5\!},kD{9/<*~}[aM~,jH_D?~,j -*j[O/e]\t ٨5g;C_peF]炇>g8{}yFчո6ܗ~ˠ2όo8s9,jY{=zy߫3ךR?4~A.ekߋ|_k?YQ.~<_%Y9s#?j+,fniBg X*6鹍;xv~~y9/xBYV,l#;~A +N,ѫGŠFo-9W̑`xu㗶 )ԏ3|_b ;;8C1[Wy<1{wJgp$͋>gϙ7Xyyu90n3sy[>;Th>7 ݳOq=! \iY~̿ K`~cF*ģ["k |xN5gYu[{glջqfjW;fG0˃<̟n2%u~\' VǶK,t [6/#ΰ)wRI).g-g1ƻ_+U~_]h9M¿'~,AC&x߽>MO{I {3xX[sйΝJ`(/11q ݀&}/ql"eP).gYePWv|\ςim vsW8/WF~˃V)aq/lL>8-~K\nrݏ)a{.Ẍ֢39 y\^+wܷ9Yo{ޡҼ4yqۥ?9K:oI ٻPh/:9_|OV6Yc7=3uS͙zZ'U"ϙ͵awpĪEtޮO){V?=J әGjWZgG^l􁧉=8XZXƵw]4fBOr~_o)M?!J._c͢=j+(_?eSŅ^42SV?e.,?eRguG YU[=YwY1I̸E< u~fl9Ў.1H`;+>#^לVǿ@~SUᗷ6|Qr%=+f8Γo͚*;2%~yE gΙx 9o}3Oeބ4 F8:x%v+>"^oa BXvK~<ŭ#ճʾuKKYӚc>[o1{?à_\"?׸ l<>|{'%_I7꺆_Sy/,q<)h˝xR:gWh]dzVk_4'{QsY~?dLy\gsZvM]D|b`c,V]D GmbA~/g"VoϪ-З8~x -zKsBgW c+ęSt]`wO2=Eΐk}'3Y^:OBJb'?jc?aѫ8-m֏K|Fhք͢~yKpY|EVE^-tʔ}T9~z/sj5ְ8yzz0~2Rc r5pIFfH-lKs]wW2XZؓ3`lV"zRoEg3YY;79s˂R%l/:bbWU&ךSR4+3u+O=6gg7XZwqnwՓ\}^ۖ~1AHh v│DN8O72Xq~tQe}8ݬX)E8' |^/V}Bc6aR׿XxMzrJ30F>>Fe׍yR&Y_g//D}KW{!T~;vueA뿚oQdշ\z4gy O}KLeYW}MXcc*fwXWݽԽX#rah^\?7g~y,v`O Jw e{- 9ų:U/pA?w[ék B-zX=Sw!3xa~~-w`sgvMڵvE=lWX㦿 7sG]8\)V)=#`>53/YnZ S6}^Cu[ _u-TKٺ~W',Mgs'9wZgu,z&^*yeOD]OΞ ?6_y^g3Yyi1Cn}h@/Lڼۭ_9nܿU{y,ϸW8_wY6l0d?~zl&Yꞽ~wIh?5!Kg~2^\q'yg2 [ƙvg{h!Ӛ7"ůSKv6ˬޜ3 x=\G,qK ,No/~5N eϜАVg3k,/\!2=U_7w>v⡄a Oifgq'yv5A=ٷV;?|g}qCfgC)횾OڇOIȾګ۬ދ=Yk}ZoOcµ}ժ38\gjouK}a3PG}=ܔү9ysyNp}'x3ɥ{3~yBw"9b UuO ?6{+.~mZN۾*=˟(N 'WO!3UGc~t.X璆bq<ŹUFקvVcLk{*~߳Ev-"iVv3Shgl߆ܶxѐ,6gַjYy9ko]q7-'36}dѯU'[q1 ?e 3kY lgLG?d-!~uk_Acgs6?x9Aիm_.{}m]wc9hA_PJ12_"ם3 1 ]O[}b3xVc =YUϺ}Y(K6{h?L?v09JQF-5>  K-Ls5G=7Y S@?z)5+q ,1CRN{Q=[&+l79}vMFs;-0<8,;2w=g/nօ/ fNg(2.5fC /"PL_c5c)V"e9g*Y)`- t7oؘ~b~s`R`I18}glp̎Qϸ՗/UC )~0D_ L52fKgu~S!/9.%Ŀ)d3؇VYd_Cm4>˺g! J`=p~|R)1RϏ+~l39ao7e_h>XXYs9km{nkZtN5)=^|wYҮ^Rqv1u{ p3 1FySΪA9Oh.!ş r GY8.y>e5oMǜ6e3/m9~}.sIy^18 M뜲b=뜠8Q+0}?UF*'/ Z/e_3<[f} ԗYLOFYNshj0mMAvwO׳//NW64Y)޿=?cuEOqډWb`Q^`_/o;йB?wmsN.ʯ~G歟;[bKrߔ8"Нo ]u h/gUhB7q4'ULX)P~goUZV^gIo@s8 {z} ׭x.u*1OOE~ەrn'/k79o1>,0lw3k@lcו='w`<s>YlC{lz- ХEW4KJ~ŵ."s֋97ݿd5}痕zy_K`g*6ƿ{&7,nΌߨkOدo;o& *N흗؍o?bΊ-~I?h?-E'g ÛK`W<'JW"6?1/S"E|Sj)=w>W!&_=N&1Z"UQ_U5Umgs힔e~r2f:uV#6?_w^"x]׾W|,/ƿMZ𡁿JoXϬl$:Jo]ϚZ yqv7-p'= @/C߾]wF'slsyQ[KV x.gܧbɪoR 3^žs׺M/=Nh͝3m_zA|u*{zM_GKxŐDy ?|}m #JB Ҽ=NAv9yEފ8X_vOم^ij>Ũg~HsKv\ºk_~f%eBOWq1x\kC"X]}fƾmlovmoQѴP1}#kl[5x-c1;mQ%0(g QwKg]1]=בաsO^oGMН%;lj_`?CA>v/͟d{-N#}{Qd_z%_hK> KuRB{Qe{!`^Ck-;WGjGvsXY޽?w@/6ו 鼃L&f<\jV:'v?Ú~]3wϜI,ټП6#Kϛ }[Lو秬g{3}{|/ֈa8 OV) @Fķv.|%j#۵}M ]7S_Q{j+~.f>^0~6g93Tf}V~m o9'=G?uuAqgWX^kstfAr58=KX'1gtqu ,zh.E/Yڄ6E]ޣYo_:os4?k.KGSk.8W:?ujy.g=gu^Ebw&GJ9O 1o\Oճ*黵y*ŅfO/H Ӏ|*N/,0<ΰ:lN0o}^kݚ\ Nd_6,vFodQ1= O}jU֞_{9._گ7E**!]V[޵N~L9æE nu~~,Zr:} Y߲$>.ZNL̢Ej@%ү8b73b~_ZK?><ε٘_hdrݕ~u>MͧdqS&+,p{ows2 @g}\+e l3&rY}撨3't)+O\}Ч3_8횿c~)K-fMOk.zkߔÔ_jO=eck;,.-5re9fPGd]'}}% ϴ~EƿL!ZS7ngW?du?*'tY;dyl?Q8I;qV{r&91},b ??ߜi(g?7Z]w=ksCO'oj~>v3Vʿճk/47y/1C?طM[uϿ%WY`-?g;W_b/5L}碸FCp6E^ZkǪL~3yI~ѳi3.Xԑa헸Фuy5f9XK[>i\Yi&vLXO͐Y=^%~ιm5*;DK9ܩv?G }~.L^:Dח~gE=GYg7[}9 |_l~??]s7Zy=kG猨o7|?ܟ 9}a]}Iܑu=gLYʟZu5WrWO?6/' }">?BNrnY':;i{e/3q>4jMeBwIPbA~1G cn=Zܑץu׏sf3=}=oosn3ߧsZ/n_b. x&[;qa=:_9c-ͳV~|PݜgG;y/]"K,,swyfƘ `} cN܍ ~ouy8e;D hB V׵ɳx؈֟ZAu#GF /QYuX31|w=gj,8k2_Xh\:>!sY..snt)Ú{rXiu\,嫳{ N ,\ 9جb Ɨw> ٥ylB{wg<Įwu {]?zK,lR3/'f5VEC=o.K^\"J?Me,pOg3'-5K61ǹ1~߬i[]?|!Oh,tT75Sf ݑ;|,e9]-5#@;/NU./gs/"sl~x =y4q&e>}lMV$ LMѯI^־ׯ(~G hr/SС˨_30CsfLk+k-Uww?=ǽ^"9Я9tZ+Zg?sZ.3D >OG^R5;iW]l!73:]f!2 o@oZD?r^nY2ч:^6e"7N;hs]^7+wωD_.tӗ,|fss:{؅~2u&aly6(gA9Пb;LWK%X#4|rhJn&&*g?Þq_uNGc.Yw=w>hF_A43 ͰG_qegOWպ(ëph3ܹy>I~F엹9gs贀胸"8C?mE 17F_'-0Ȯй 㦿/p.V>҆d)-U+x__9_쀞i۽~`Qos !}W}8 CK޳]j1K¾Jq·¿fW 8:˚L8]x9ܬ7YӴ^6j,~ϼbn\{VWdC9.A~!}'s6[-qӟ3ZlLo?U/]]asߢO!x)w ?o3fZ/j!#㦟Xg^h qE䗫~e\<#;e)YjZXw3Yߜ?u?3f Va/{!/3o^|8Dؗ~3(⢰v7~c_ϖ6}|.=C,oqc=~rſ}畴oDjw#3!?}9Al!. hx-|C蟾)ɵlOֺ0+7_VjUfg7we\szn=Sw_W&6?CCX= -|~ND{<_g7iWsW])b; Yak=K2tKqcC_Yd}COg0_B:_gه3].~H<!NZ= Y?Uvo{_YhobwY@]mA"csDϹWpVxWkR7u`\s,9+C @/Fًڹ*i0t3/u1gy'6[,',0(wx/B\ k(+.]wɷY-x<瓽WD6g}KC|c}@"֤egu۵K2<؛,z/\)X}rY`v߃yg3L<] 1%p@O)\[_WۢGV) w_9ݘ tbA`&[8^j\,ʯUjgCbny?t1MbsnwN;s{a Lρ~z} so_ %Еpxm<>?砟FU-S=aKu֍ovL}knJwdXNrv ^wzb/ACvp}KJ+/K1Kb_gKS?ϻA/9w~b/ ]V)1~|ld5N8lدt3-2>6%h{,3yI\ sҨ˫/Jx˦j@1 OzYo9OI|-jUW<؜/<3h 9kEԘ>}?v^@~|sۺ_T׭Л,y_sFf8w!ƏUvI%0ҷi(U&U wuYnzfU/[2~TۥoS?xW.'l'3=~}ί8@vЗ 9f_"]9 L$#@?eع+,fg}/9] sZIW/MZ`fyX`]};+%J~9Զ>61@5xD-VkGW߶羸v:gYb ghwս M?xەg{ؙuP_kk?,_wq0|o+?[|%bERcbhO g/|g>lX'l'O{cq, [g*NS v%@kp2>cXQ_qj9O翪9WO :A?MURA(3~Gΐ'x.}o8'3G6_wP,&ڄJ۲.9Ot+~c_uN{h[w?2|UGLVk{*.j΅~P9}Tݗq"{_4OyW:'i%S^—LX_͹<*,mY{zsW=p֙G/.{ߏFÇVx|O-i Mif Ԩ'0jR^OӷSպwbgC?{qp?~p!}C&4Ycv9sFLݾ8u]z4g8WR Q1H5+,Ǭޣߙ噳|r&Aj#S>l:~ Y,~ς]bT"ף9W{yE־w`#rg / 9&^Q V́~[^׃y',AT `.8r;|Nե}韴zZޙ[.p^㼝ܳZAޘq*}Y6|*I~N\;h?{>b+n/1nﴺ߾,ʽȧpBv5K?o-Ϳz/ /%|6/ oԼP_Ѣ~Ƣ N_Zn%ʘ ι)r_3B~K|kJ _-sq/#o/f?%*֑i|T6hLk?Ft/*դ_Ӿa#=1%jQ_ /tL y]贈D[x>I GgrQX=ܺDMKt]kw?qk?twp,v*bX9r9smV?5w\ꝃQ}~ȜXq Wꚣ5XZ#YUv"&M?IE,߀N%jxYI3շQ~ń ^?3/VIO_͞],ya.Nb UoјWlj=nQ*V~}R:$|ͥsLq#`$%:y9Ph]϶,YQYs?KމW\5K,Ϛ~kwge_)~?,7N;VS71ǡ3s`6 OWZMg9f\CE g]:_ttV24owY37:"f̸WSsۅӅ?y*ϊ=g.@s֞7_O3z\k}<3u6 j?dϹ"_M k{'rWqpr6o_[>. ?_Qg\?{?P>nηg6}~;M=}8];,pu{iVues-`uyq_^I:Of9?j=<*QqSWr ^*M?6jCU~UOm>V:>^~W5%Fɔbhɸ/ƞgt}/:?9G0dw.wkj ?%_~q.??>} Yd_bSs3&tޗ>g_'eWU=ל@ƺރ|9K;,C1+ޅ|8S~;guOsfלs9+f<{Ӗ _[\g?/j FC7Jn9<Y{qk߹ Hw xshzψ8:7Yݯ2K^+s/ZW$uFc93fqՔSoV?WӜihPϳ=_ij5.(]kCj͒N3l |^@zt9P86DF_};wguټ~5t Lnv. 2‡ֹqӟY*i?٢D2Ι2}%Ƴ_gK?{X?\L/3cdF+~}_tHt6P8tRKsМ39>K]Ԝ\ѸH18sν*\بsEBy`3Ix:8͞s_pE3'-ds<^(;h&Vg0_ x: +2 2[tmӾG󃘛,?f1,g1@|7z|SҏXg/Ob/?WПf   9|xU dī\q9]5fi)dv9aʳI_Zt|zk~ߍ6< bDu}s=].t~,d_TgC?u筞Rg9Du" e}xG%ǯ¢֮}K}50,suۗ8^=t g_]>',O~bZ;?}C}#JEsI(MCU6O/.\/q\4þ^ߵfi1KHƗ4| ȇn# ,o~ Qk398}[?##|9l:u7i'Ot[]oso h?{+[C?G]g?΁~ Y`?(SB^9 uZzH?8"h[;˺"]8f8}?9l'twC?|]CRy;`Cއ?3Ǟq?|ZaÊsK`$/οRmcŊ8ix&Ax~+Sj >SQȼ{dݻ෸>"4q_!sB/AkKfsּu[8?jۤZgMYzn wRWk+i鯽eV2Y',f/u]9C-?s;pObB-vss^U—ס5Ĩ8q F9?z?^bJr i?"6%/5fG.U?VsSg6@v/'|c]kbmUjv>ڧԾ^q'$s*5+gA?ܿ>I?"Ӝ-vB+K*8πW{-#vKW9rY:F47??zgw{=߃6,Ῡ!^tA_c3ҸXkZ?R!3lS=?݋ 9ia%0iWp'{? Z ۧܟZ|_'ykowJj~q&K-%peu"aT49`\6:3ԏU)ϟ3wŞb߳Q  Οbj{kRb9%|OV^wsKsi:/A_;g8wYm?CAhQCb~hN?kF=P,о/Ds>oبg8ݪ /Z$j77Z@k)KjxY1|]{RYf6\f1ŔU~CC (|x/s_zqչP){~/{52{ZBeA%ȯS>k,8Eпbq/lq֘ʞ~?g^q;F_/:C~ngb C5/"z/w:r@_/aПR:xa_-,uBfs < q2p32>O*~ h&lWR,ٵwe}WDu< 8Z9W#N 1ЅsHfϱZ=gy9k=Q?s[KV]VKޯ:_7_fQX.~ ]9!?/Fk.~|Y+xؐCw~깿.9=`g#Xrd~o5duw=k=NkČ}?1*/X'bdġӽ:/>|_4RV㦿f07δn ݷg[1s&5њ" s\b!cyCПߌ~Sv߿?7{˜nO[UqODJQ?^s'}>ӇgY][l9BӾ8и/Wk2wC_tQCs޾k̮=+\ɣԩU?YrCL<%lbB9kw&՛[<s";}g˙eCQy3O3v.l(/m}ZFw'Ggc3O}8Ĥ<%=3>z<6BgO[?95ߥN¥οR\{,_ζ"_j,^Ie/OZ~?37Yj4:n~}b|q_Z Y6=[=??֗~g aY}rwH.J>3n!ki2>)]u{ʲs65l{ZG!bA5}}_fu%ZS[/kZcGIyNj7=&< Ǭ?yR(0VÔջ0tFO 4+C%c=^j:[du |d{r/*?Eo)x5.gA\Uz~ׅ|Erp J=E=xS؛Υ x< }w77_#9'g1l=C6ҡV{u^Pjhי(5G_/ԙGW:; 1W?|C׋~kKm񝉁ؗ~I[J-~;,,p}.%r'_-1lېI bo8tݻ?Hx %f3}8S%0k(_sdu.뺋1:yk7?ggib IMd5@[<9kLϠo*f~|4R 9xؽ/+B6u?q>J.ҦZ#e _YsAS\h?hJgS\C>qľYЦ!^ѝAĉ: {Z}N.` xû2wpyԯ)s_bӱV9v_?欽z4N 5S~gOX]f߃ahLv,gZWXC|P@Ff߶LLĭf^qt/@n_<)|UA^tdy+Ϳ߁q c׻ XϪ 3Ӷq:C!IכKJ;5 #eu#sDrOs}osfL7@4+~B~{q%{8ͪ\xmpB5DAQADD0*8bDDnffjjdpɽDz9'z~ٻz澇߻ԩuk^Y.Cݯ?ѯQ?, ~~65u.nǘs#fCZ9!Ix]/u~,~0(bYS[Z׹%o` Ww|sg؟@w6׻KS~ 6[9-J1.wE<awݝ_?SvzuFw8_B0K];ʛZe}V`dY'[gk-fƺuoKwΰmqq5ُ[,%^h 1sPYB=i :qNJ.hȽ|hu}^4̢Kg1]$n?W`:RςKJk֢0nN[sDKAT93I535OYmGF8fCA_E}rz8]guY ןh]b!Ǚ'5D_~֜KiچYoxկdG~p;Z9mv~7x9%H)}g]h/`'>`fMV%f 3uOW觽FRBǻ`=g*Kۗ_/yym_sk]u.Z{u؆ށ/6sEݯt?n§7/gaM12wuF?;珳v5oXԾ!6A)벒h?<ξ=W?wz55 ?֙s~%f{˖}NՖZzKƙh}G]+[<@53Z_ KlgvP~1/_rr՜cSja2ҏ3g \jEp 97pR=9X gGAM tE?Oz4gA2k !j|I{y254koQ<#g]Y|-lfba7k8DK̫9Sk=gga!rM~F27^_OʶJcшӒ' gS=u2S?5?sz~o/o٪x.|߷k{Q˪W~iFY(/!gh?+X#:9r]ȳw5VO2n+֎=Խl9!Oq-WZD_=.X{5u`gZ,\k9_pS_74漃C\A65?Fۿ?@ڣx-}44@mWQל;N3j/bWsRܳk۩=muA-?d-6:U}r@;yqpƺC:Lf:5p'Z#V߄y~AGcV?H?yE_Oj)gCg7M@Cs|`į @ORw?ҟiR׆RzfsV!􇕈Ik]όFl!WbR XYhRҬ38Cxբg3x&??C{!goxRX%9K/9+TZ'L?qZ^%jNSn7b̕i-N~|e谉` ?}k9_ž`K?sWZ='N7н_~VU51 ўeQ6K?Q1,lom]wr!kbQvUgOj3F3?xaz'kY@{f^qKS=Ciqȝ͜J‗/='GM@_@/3s5Ze&1Lڿgi$ɛJgi_Q;So T?YC[Ϧy.Ҽ^i1?{eiG-p9+v>3Vcqg]+f'y? Cܖ \bȱ6 ~ү~.цgf"yӿ'gMu.?җ~U_ƈM+{N7݂1|̞gm=;f4GhI^9f} ~8_06qYqiN{ҿ5bZe_lkk_jKF?ּ)gP6OЧÿGY\,wkvHveb7ZgCFu@7X]c?_Zj!O\=7X 5/cgzg6Kw]uWiZkyl:묎M{I_sџ/EZ+:W \iB/Er6twQVڐuqyyV?sy4/='+cg~>3xZ׺YNi S={,r6,~E7ӳqu]پ++N[:AZg_&~k0.)}Xlc_/;fS@Mvz{Ff,0ؿ3!"(yrךUvƫJx|$V:~SP9@΢;ޗ 'ls?mѡW}ΏZ'C1m+E,ZWq< ]ܷ~2?gu+{Ek9W:U%]iôBekWS~? ѿ8vYPO׺"wչH/@?&+jgv2^w揎'gv5cW6kX{4ZO_wyj0Fr6>czq%]vb?W,Ŷg13=0m?[W]u&qƱ7|=_j[}^kɦ'J?XQj]7kW[ \ ƣeV]MW|ռj;]'Xw5t֙?au_[_5u`O4O-< [#1sqAqhgu]/TWowrs\g#'8W:vʮUN#Q՗~@;{?x~_ی?C!WEMA׊L;[5ϔ63y+8<еniqr.Sqvgя ܙ_'cFuYz~f3XC}| =<§+1| =6g~lzrبv2qȶ,/u g_kHHU?9.uO+A~ϳZm8m1qDt ҾgA5?/&/<@ymRϯQ=ſWנy%Yĺ TGXY\:5&'Z߫O/Lfn23נ8R۟] 蟱>,~g8餝4svֻ(vGJgVyjw欞g6Ƶ2I]]g5E_\?lYw}%F1\Ͽނm[zs8@}ʿ #|ҞSNbHҾkl]+Yt.1(7 Z.%f0kYQ_Af"ЏB_㽌o_?f`H,hjFfj1(g?7@]k] 0{Qڷ̿CN1gsC"ø _Yr~:9B~/!v<5,?>w>c+Ț39;:g?ޗZԿ#fG/tؿ7Ϝ0 AmwkoY* ycq.~ƍ Xgƿ5&割Vg:̬\e֯#ҩ[A6[۶D\'< ~Ӽd_NX]VϿ?tL?}߭uA_W̬?}Y/WkN?߽J~3 4 >?=a1oG99o߿+-w5h^#~DY?`+/kMqZ La? B[MjH}_gzsu;+Qi< lp8y8eXwjqtͦ~Кi_΁8w/Cg1Y?/ٜ, =?"ӧN]^~}9zLfvrVwYOZK,r s}g3{Y=3rѯ9vq#_1c{ZKm-\i\Kkё6^v fjhyYGYc?Cz+S9?뜙kT.6?1.j( y6ҿ]sUh5^^׌5k745~^W5 2S[3~, ŕ?s{N~=gXeib9Qu5ڣ7m39y P#bjvκ fq,֥ܙN%؎ n8֜h_ A?wtѿ ZĶf,0ЧM 97eOy} ;lقOu5q[={xT_˙؃{a!oKߗ~ڕ3ek8nrGZC?};9kζ%6귪`m:{piVNYYwXkh2R~.~O^k1DͩrFeѝ(Y8vR29yuL~fg[ /Frߗ~j iVϯ e3}>Gz~8}JU}5cX3a{~\&\ݬ߬AF?OWqf7 2`~_X?Îj'n 3P?MV32b/ؼ^Z{gA3wG(.'3'0 H2]sFV[`|L߷AzGCE섧GqQOXko}Om>uOtϷwlA zaK`)`DN>/o~W~ެ>- 2f#YJ3¢o:A/7|$Kqֈ-ؗ~fc] [f.G^{iOX{c6%>d;\? λTO??~r U]g27X`nwKV\)>ڟgR3-~,п: '!kwY7Þ{,|b8#: C&%0 tsi_p;GEޣq6ܞYfgO#/N5sj9o[6Uw@,NށS <ܗ~ߴwrv񻈓tm<+ΛbR| g_}F HvRW݌eg]DqgNuRo?cΚ:2h  'liZbÊ^&.%MH}U^#hnv͚:]glZmwgwVXX}mxo3m^jC+JKF}JZ`ZilY~&Gwـ?lw3{o_ϖV=M(_dgP>-q5Fm?cʍ_6~ 3yձ8ůVb(.o^ Xn,^Ŝ'nZ.=e8W>=_?5~Ug{y^;,򫟱sCk<:-&xO-6X-)sB;)%Z_߀[f^&qϺ 'vBnvC_b8!'^">=?uYнy!Z'>2>g=iKLcȩ,Rj*~\_8[Nv|KqbF߲9$].u3W_cePN$v\3Lz/:@29諯Xm?grF"gQ;pWJmg"V ;1+F o3i$~r]cO) UBcq^Bn5NE߫-[2OYgt׵?ꛜ?j [@gѿAAcNv1!p\&yz?~Gዧ4窝J/=yԂn:~\)nq&9)9mԳNcLRJ RYx_&f&"M+sͳ#_~X7~-`X̫T[:л_%tVq˿Zg6{-x+~u"L/g.־AnvVdU'y&g>^ X}6-1HZE?GүwShMv8%#9]J\bL@ 8oȇ{/,tM8>IDgnZ|{Ư?c_b+@ac >tş^*]qfd1tչ;uͼfş3&v>}bo(9ϰgiENL{iDžh;ca !63E|͛WyۗU]A~^S^%|~Czoˢ_-zׁۨ5-{/RYoWHY ]u״w3>sKVU~__KV珘Sڰ:Wsh\}3~uY80 gc_l F|M;|e:\n\!kǧkg֋ f1qY/W^yKb!{E~կYa_Q_ <{Vտ~,NŻ~C1ngqīO{Or^{̇KxYCWfuF?koWg~]֧I꼘WY\8<>틿P^^d}uQ\>5S '/ݾ{淬bL}V njt̢hѿ¿y6c;ϦMB| MUWp6 _٬3>;b/3T5¾9:![ү-ZTS#mj5gg(gu2K ? :>K-aɋS{Ʊp3|.\<{d.oY*,կfc/j"R;+G|:B*klG}-VY^&$j:Bax,)ywbA. ~_ߌO3~^{{Xؠ:KuM(N{W 颯^_́ϴmOЬ٫um3s-p({XɿSW27:W+aMV<]3{1K[M,o(KJZ_GLDYlO/r. ]VO~%sгԣ|.-fgV9lY{=֬'!5uA "ۗ~̳ Y'۞Vdk?[3{3~ma;3Zol#]gv8ך ~w Ȁ̰F}駍y]Co}'=K-~\<.Xg Y=к8:V,;]g*t_{]pC_P}W?KZC~ 7/ o5}4~9 心gwXđ[>! eyq:.(^gu/϶/2bүKg,p }:192uCڟ?Vy/x'{Ϸ}Ikle:GS]]sFZKV<]g?- }3_/䅵AqH>G)߻ןX8/)<CN1k,`;G Gԯ{žNޯb.}9><]uVk,۽>%dڳ@Ƨ5= s>b=i|~ B 6R= 8#:X@=A?Q j8 '6\icڿ1< Je/`@V_C/ zdؤ}B, V9Y&?zֈÊ?KW=yBqHC?N8Vc&>@"w~z%&>1vr PUjŏA^ iM 0&ⅥiQ,Pb?c ۾~_Wa͙jp3uWd]No{}ٷ87>߱ o>~?cpx~W{R~x0oϥZ,bvGт&SޢtRj_BϾ&%z ڰY> RUb)P389,>y!G>_Y vŵUm%vVť5 ~rK7EܵA_kؖ@oB~F!`i]srW:f)WPo|'~spN=3.kT [Wg6'zty~&ΜxreMoY3ax,Ďm%(&3{7?ƗlBf?kU~jZ'ϸ1Tbʯk+531MmxD iouF?.lb-H΀>r4z@${y}Dy}y~ngU:WʿO(gWvbf,# s|~b>h]vd9~59'3_q?cʳoijT뇵3g3[׫kuE:'z+{ȱ/7~V,J&sK+f_W5KK` (~j8 :ϭJdbS3?үqO8bV<̌]}rG/jC:"p0 X WF?L[ƿX`](N cO痸:/9㋬)$Z1u5^Zcs4c;.yBw!60ۋ6~JE 񌅿Voz~h?i1ʘΒ O&ڠ;Ͱ{i3.93Kvx.lfĭ0 ,gWo SF'G__ #=|Ɵ#K_Wygj.f<v_eqL_+f~iPs/XtV|X0пĂ&).rxxO}W%G]H?ۊ׹$q(<8S) co_v#Vϯ'F9,*Pvҍ_k& E~fhAk,2~&as d>ik *&JQqxTf5ڨA6\h-0聟\%J:SYb giE.?eVI\'#ARXw]{==V]o Gy/j|Q\tW~VhPj[jCw_ԽUZ1jޯ:zv#kG}\2 _΀D3G8>e(< 1/犱6->˾but됼 ܭ? v7;?_gy?wӏ/? LIO(naC9Yle90oZbkWCA 3}%9&%h5gYBG7'߁5ڐ_eư4Ț,X7.] { eTe:Gty˚!/YR';F:kH5F='@ۇ3mZCRǟ5y^S(`z_X^:k0/eV?''q†_6'xvVA$m> >m7C9B3m"&!EK|YCi,z'3 Yv RJ?3 9 %RS4^ȞcKؿ?w%Yٿ9$_X|~??bF[4.E,IBcWUňP, -j"Mg>O:vlkɿk/S{Cìo/ñdֲf5P}C_moQgݷF?uR fls|XnCRY:^m!'n~$OP+ŕ~ì~2lV={6`~j]C?'qQ /~"j]֐Ygu3u߃ia'~V?7Qǜ۽6O8:`lHvTWsB~-ӌ3eY3fnO,u?`ҟrIgs|kB+,_oy:ɬk-b'X)ܴև/Sh@a?_4E곀VJ>T,:w!R{[Uu=.ղnguO-P_Xݓ~-V_lF4.b_>eu_RCk}ahpeUmư2Suf?]bo׳cm/M'|5}. K5Xڗ:msarѫh#~≮BMey9&-]^opM; k}W,DR`e5~^eu;lۗ~ł>h?!?U_6 wὓɃW7k^ѬSZ_jQ@,}ֲܣ,'{_ ?k1wp? =~)fŊ8m3=| LVWZ䉴^ZYs֗5dq-~)~^{u 5 ` P;FCߒB1 \{N=K y[w+uWߩ/0m7ʽkG~E-sIvif?/O|eoZg)Y@C ~]gk0ԽVr3v2kցBi_.o.|ձiӟřy81zi*6f }󛬮??"W:`ߗ~bW-쮶KzZ(P_._>~D[YWԟU ՁhWי?u;]knB׬q٢_2s7KbA0ry!}Ał;tf_Y`~mC_u?qָ+.dv;zPͿ[i5fq~tW֮ϲmdq~ao V:Wp| Y_Ƣ5;oҚs]g~MV8s տЗ~bUnQG|͟;K?\_9? Y>տ몫E1mr1V{)tɁԿioh^~ƺq}}'<~kCڟ\g+Βo{2ݗex]}6jlлmY:†{dO!?결-_Po p~Ÿ_,4jL~kg]e Cߥ3#Yk^33ִs7BJԱNXuffy ]u8mw|_oYYX;_cnڗvĵ"җ~RiB_q> {MVv?ÿVV]gAkʓ,0?1f0xͷ CoҿVhVo21Sj-Nk/gCy6>\gzY٤;tN19'/t` ?\k'}w}:-pYMeslT,|߿h#yen_ YPv~G+g #՛vNbk-8>3g0[.kũ;eVy~^iU,aYH?:)%f\_w 3k\/kv~şy:|'_\EM";6~/VhY_Y?:elzt C]8'3d(}2S8"/ީ_.\Qd HuV#khg57>bNu/Nӕ4Ϯ3+O3js]? O%耿kˉ\v. _kGϱXyG_WyYĹӄH#Ί#~W|5J3?e?0?Ovuf 6]#}9y`5Ny"z*9ݴ|y<˳}{sgu~7kgZ[G"Bi/gfgNf2SzεNkt!e,xOlm#9 >&sw؜Y}E=_Y'p-l FY83Q:ثJ.;fOwהd-"F>~@EO/1tO k:RϻJK?$Wpj Կ_཰y.5Uݚ_Y{o^`uי>Y\k|g?SB†-}t%,-k3}p:b_2nP[sFԽs9%2ҹ}~?*/d[ q<>mQǙ;f33_Pj9ޘ_`[yb%~ň@f_"+QCݗ;M4c'Z}Q=bb^o5~ŌEWgIzЬY΢j8ڿys]hoԾ0!|R`,^'^=qO{gz }=S8ThO_'9;s_`b)Ay[6\t?'f1D v¾g&>YjuL,Ý˧3ki9xig E{pBB|Fv3xw33~˜~\K_Zk O9 :af .siey`?Fzm! aQwgwmcSOQFRv~_z2 5h/3l7bVIB?s<`#y2;g2v~gD^i"C™SFkB51ώ"Ez rZJ T_q:?D1r3g>KJG8/#q9|Z˝Oysu8'd(de|h/Eʛu:wiJuwť3gp{PU_mfb^`rsCŐ?s6W>r"za'b5lOsx#H}['_}X3E/Y!2G봂Fv~_KHy&j̍3y/l3?;h3LŻ?zˣהcP.u_ş֯f6hfW7}߿g ~V _h-/]ƎS!{wi a+<.kڼܯDu bgQsVUЬ1+s_|u+~_-0[bKǻM0'=}Jğ_2:7dB7>2?/:>|<37)hLLGY@6,w5 9<&_}c ^dY7^xc_3Fߠ À@?3J]F%lg-3gs<^<K94fsߴ?iCh<0?82F "nZ뒍_&=7\nuZGH=~:ϸuv/u%j6;e?'{Z֪j|\m[J}]3kWc1 $kCvE;xCLh>r:O0FR7/װ }cל|I6*i٦Ds/z<|xg,gT8vx]{L,Ġ?R~ _kU2'gZ..Nmgݿo=EY? *~ցk_Rs߰ŵSaͿh>Ծ3Ɵd]5g~ռF?9TEѿܿXx6ąҿ'q攦MO f![ۉwk uW,"]k×X+/O{ KBWĮbH_Ԙ悙N9gxOO25:_ɚ!W/秽(+*ΤkN䖯/iyF:77~"%ڗ5*,0uѯu}Wfşl.z>f\X:q֋N{~'h 0$~lQϚo+ Y: s+ S}z5+N'k[yHe;szh?.kߗ~iQ9+_lkVkgDsF %~P3eH:hb)l~ 1竛2oE-nϫkk j]ʬEo?ӿ]7Xk_L9_]_kukW]ѯƟ_~ƴg<xL[x4y*sq%~7Ul]kޙ=֚[3Q,,}8>Ykg~Ƣ6hz >Э66cb_k bxP.>?S'Ec]X]іcd|2~g.j{^$/yP=gߗ~7[?e5^/:O-bs'Ylk3Ϭ+^o>DP?T/3m\B2|qv2ϛ3,.7Ef=S6K?}GSkZKEj;ƌ'ֿi͹_1>7Mu-bMV,~8j?g~k|qV|~ؓ;`r_"}WgZV't? @}EoѯGѼ0E#TWcz=çZCH5㋟XZϪ/Yv)"`asԞg8F٨uGM:_gѶ^#9K(~qu@'!վi#U'ڧf?F,K^K%0N?~?Q? ^G/:>iþ_gO}F'4ױBVTͿ/>bAgrdX+uiZެD3k*GE?s UqCȾJݗܺ2'@W]?S׾@-KNRls~PnexX3,xU:{t@\;#><;S?i/[/*CuONa~9"&sJ12i'ss<;~CJA,4Vj4KiNVcC?'=Ъ}_F܉uh 7% `O~-.~p l|L[&qO(I"4TGƀU>ZGՏX]#_ Ǝt,䚮![fl{uWVq2OaZ `aGo.|J.3k1:L e)zL @ۂ}-mgXj}E =5q*.J=KءsROb?{}3eC8G?ZhyC[R*Uoy~ #7lh`jv_5ĵ{~[<ҋ,{3>՘3QYY"/pb[^5D{?9 D썗/߫Ժ/_E B1 wÄo9)ǗtFx͹MJIWb=Z;~տqRcV+N| {OWO@?R?}ncsR:Ds`/(ft2a? yۙ ԛxůS,,>:é-}KfPZ.yx՘i='Fzgz^ř's}Q UYk2D_o[,_Zf~x肽KĴEta}l$(8QT9I?;WM@Ok/y^X픓ۖڟ]RcY!kJıxs/]'}WNNw #Vy}?k!$7߷W>6?G~K߫WĞ<'y>1+6ⷯ湃 bќ{< ;xXY;ųWCb5V?KFK_fF| (?>S'Q,;ŏzw,Ģ'~"ר} z>!'"# K̕8(_Ю?B'_nu}-r=ٌOL/.yu~ )~fpC a?߶E^U? ŸΗc7uF' [Y`yJS4_pv[-]gO"} }L睚):3 ,ʥU[C-|ab_Pj["3:ԺXu4?d5-b݃]y9h]o'&2<8K??/ 1-|~~:?{?c!K^aGEȟ*~&x:@s>?IK_ =jy_Q/5:g ّAĮ`GC.~V^Ez38?_x>ƉeE}q'W.5h#O{DA7ŵMYi/[K 3O| يZ6m2}g\Wq4rEg >1Wg<<טke'ӺJŻ8NOs!K]ˡUKޥOʽVufƿ~f-Pﲨٲm>jf /Ne(`F}=ҟY9[3}FQ[O/:MfÙA3t;'C h1{w-ba}9J]ϜX-fat.}g}c8'gz{Q:#JK; 3#Ԣdgł)83joXkYnf8'mhg[L ub~`8G% x64 kmX'<#G| m+TY7QL'#2Jβg$rN@'[_ G/_>MJLv*2:'17:O~Og]bP_k~Ш63kg~1yęSiǽueYOj_R~,QY^8?^nBK5Gv,rW6g]}^+j]_lj/XW]̃w52mW+@_iͳU?µY͏ʿ5:ΞwlJV+=@< {9_]gkB;Mm!cŜANdg~_׺,m{¿".iqꈽA={~lƧ}q9|eZU: K,O H3΄1/X]A9:D]_q!#ﲘ?Ki a?|5O6{39'k4Lw69?MqeOyߗ~pYY>/6uK)G6Էm`FƢAM */i;mKϭ_LܷΊ>u:_Qo̞-kr} wZePB^e_+f,xxϾد'bTg5Vr F/^lwbj<_qy]r[,,N?nk^ެ3"չW˾Ң'5k^Cg/^P|K^l_"ϠkktKsM?UNlRFƋ>rZcmE;Z:wKbvuYxK?/EZu8K75,Ӧ/Ƶ45|>N+ş֜׬uouM=̹/T,i_7pyΤ /|>?EH?suuC?-?o+Ak3~rr_Ufv8eF[?0ʧ_A>j.@qM_OuԺ~ΆKbSЎ-zy64 }_iW,߬sS*~,t/)(]xz\^~8<)v 6L/SO+_.ϲgs/|\/Fbi9'<ߌ YѦnxx#qPeZokuq_}͟3ri_3IŕպF?}Dн?ΒwWVǸ7Gek5络VUNjZkE_ٻ~L<~i/ﱈ }G_ױZz͏_4]88m_#M8"o>kk͗麕{oh֌/k-~N#}HƜ/zA7o9FK^BԦo<(YƂ ,YޗY y=̭'Əjk3⚲//GB_9=yۭ ^?~/(5~&Xuz L T[r|X: ƽd8YAL^fҺ0N޵Vϯl7hKw~sD>U+YvFox)=w[]EMʈn`n|G?׊FL3Y͹^? 9/)+N5~X b:_}=?mu]16~>ww9LW,eb7˿>hn}"-XȞ ~ŏ% E?>L 4hF`3q`-f:-?]gk[^^mL>Y>`w[Fj'5ӿJ*{pPt/ⷳ}>fI٬=J=Z`;=Qފ<#%>:'E휧9AN֟ߕg)!w=&Ύ9$7ȷH ;Bm`iuaDX \wO3;|u_XYYyqg?WwpAwt^́.GIB?蟱zλzXK8?Ol.xN,SLǗOk,fa\fW}]8]9#x%l? zuvyOg׺0e?k۴gPL|PTz"fW-^$8]}O,dbk?X1!K"z`;lW>X/a3UjϬ0_1IϏƯTvUӤ!c?,/Ώ֬wG]\A kN >rN+W>\FY]t׆ +%.{`73nb'K, gJxNGYc-߄zW}d׬`@mrCج37_r\M?Z~gELfk܂o oق< t߮%p?qYK/L7谟K`Zjp?}b G/Xe17tb@g:H߾\k33J9 ]ϱJ!?a~ VR<:ŲԬE,KB>e^f_ҵ昴Tb!C񎀿mxWs hR?}י#|GAA?cߴznԣJ̜xm8ʛ'WZZ gj"nI(߷WY;CgS"֗~։{ќ}߲Sg> dҖ.Y}IOgS]̚KqŻPb3}bth#F<u=3"UNr K?s-bTq9Sę\K?[~kO,zx.!7vآ!*1y엔:@{ aD#-o:&= 1D|Ϲ-pw eλE,1.ޣ@Z ^Ygqf]}YNu[T0)7\Yw]/w1_;KۧCG7?W6DT[(p_?b1։fEj;h̙2vB՞:ZK2 ȜК9c?2j?_hͬ6u['T~amɺAgU7̀b*b=_X"u|"c/[;м$gHn_ksY?W?ҜEVə[}I78{0VD5C!#Ksϓ>y/#!}c.лTϏ*9«sE_gxy8Ù1֜/O\LfhcY"_Ԯ\J iӟg.c̓L~?Vcif7;tn;G#-x<~{ʀ,d1rZ: 3Pg nWXyE/Kίi3Ԯ^lk^Um3,0tt~b+j!C_g8W][#_?}}Eo ZSbN6 ;~sXmу0..!۳~Ysoӯ@R||^a g_B_^ެgO-.tVyϓzi)b0g⯲uO/_/n&0d9z84=s}pէʏj7:Nk]cAYos2Iuzxߤnbn?'$cZxWZm<3$7}C\-]f3_q]]g;B(oVYF9u3%읋-vѯY-1o968_ UmJ='0B{?PFlZ2msul*?{i>+>_Z'?n)ͥx]8]V/\Wy&g8'R  Y=?E?y)i/۽ļI4Ϩ˴/O1_YK}J=@ٯuFƙ:LۀP_q|>3R.Y'RWLj7mUt> xU߀q:65cfsϗxXlŅ닳CujNY+g7g ĦO`HoD\>1I6x)Ls81i莾/6Xs}b~Ƃů2(9_K?[^B.0vs'[/V j/i?:K/b6\<}v~x9:8q^V,L*_Ym%U3΢;29_:;C??"A~~h,N?wkM.Umů#3k# uoU@7ok9|;@j\ms_fiU6 ʌ( FAD$8" CU#4C#3,*$b$f1%\c4^ߜ>ݻU]_9_׏~ήSߚw|!dV/n&ÌOZI̙Yjz۝QwAN9aBcObh.20^R"/G] ZWzcaՅ_G . jJ},I›C Љ:rElR+֒~ߦ篠SFrZG0o Sؾ1SE_e2 X >|QKLʝJĪT\ӣ@_QoqğEh{痺\w‡@?>4|~uK*%v[4| Tu(cxb0k2gNԳ>9~jnPZ?b^kս?=! ?j#ݪe<ϑ"-_ݗ6Nט]'-reu /3\i<@'Asq2#//u]}!9N;sXayA^/uNk2EGf}(]#{yc?3>'ЧK31a9@^ GW|x6:`_?Jƅ`n_~nVB'm/i?yJ h%V_zr# ;>d.&C/W7,#vyL5g<؜[s[9gߒ錉?g9/g{?q^?w_]=3ɜ-rhXK$)رv<>́~2۬o=_13'/Kk<_3k?υO.u'{N(u-@۳}(ϟ) 볳<3v9Oȿ\s^l7g'm2E=KO}u.jFŰȍtm[c%uY&sF?'m-^k%utN!J䀔IY/"v /"{(ɼt"cψQ!ї~"ccV@q=H-u_wkNq'-rgjM{T^Nk-Gxu {L-a/h]J_xws@,0这7^rV奻 v _y~xgt(l'4&A:D;' @AsFy/,vrZ_{˪u%Nj.:umR[;];j\Jޮ>=n}23ϱBoK|3/6g_.g-|9NWۿ__! g[Xť7Xm5a~YvU%j^D,?ۢ\uVKGoQNvu>~ו}Xbp8O9}6oHO,|f% oqNq DW 1,_WXZ쮵L93psfYkK~!N uY8 >3t) y] K0'q\א]`9:=޵#s??y^<|!^p}}mm'zg֏t~v.K|=W,b0+Tߕ8uP>I_d>V\=ߢ>'CF3}黚37g_*?++T3?s4m`r9}rkї~/dy,8ۭKfϋJݧ@|b{s~A"p?'[~3?>~--<*?ds3ӄ̲Rz~K_VtT [R_Y{:3vY璠9͙N?WZ)=՟߱Л,zt.=Kiw=Dҟ~+?c=)ud ^Ǭ·Kυrszw&7lqs:SyZ!}9:9Я;)OW2cυ}/*u\ =[QO=gv9lcﳼ=&M5YWY99oB1RR"ER@q=&:۫[.1;ERۯ\23@?:{6X{Ⱥ9#S}{ S%f́~r}aٶCX#ք8'\j{LygYGGfgge=n9;^;gsN*s)7q@F,,b^D,l~_<{/6퐳en%b=K=W?L?ЗO9=iՔm_sSZ=2o(;@?`oVUw<\4@[վKW}9}.TA76NۗE]jRs~F{69gSYsB_A2uWmXĞl5}2!R4/{)ZC? >yMwz$;99gs [֜ufDgښ:Ƹ/٧97]mu,3nIl,| !.~v:k^3n[{ʽcsf iGfyJlN!OYt~Y ruf/,h/:f{OgKb{Eo߾b.}|N-q-[J¯>;F6gկ{=Aٜf"sy"gW}̞Տ9k*W朵͂=q_9SMwYP}WCϋ(.|,}G_=j?֕T~_jouWs4ßycB}3yھV }}';k+4T/Z`mhg"f?b6~ѯO]T @;OC<إV3p& #Ӿ}S_|/Ϝnw{E߃+Fߴ)\ [k896[y]Ş˭kG- 3nQYxsJ_''k_%*PqFq-8Wx@KtG_1WιAxS?u9|)$i?Vtωu}'~[iuNljuO 8{}*A_Qb܇*N2By.Of}Ι\gxYqӯXg †X`(f;:a }ʷ(}ڊ?,g0KH,:/q'5]; gї~? =niW%_buJ`7X}韴::pq~_fx\/}K?@Us^Mمr'JÞ;o+<76OY7g̬O?;6򟉟>b~J9FSbX3ѿڟoY :IOycqIʒUY>i9G='eWCYL3"K;R{9?}k-v/MH5/%tW\Н'9rqʩLI{^7=guYJ/=sFzωWtaW2_!g\?/q7 %fCfayeW1c Rc1Н}ߡD0)X${c_gW9_L&,rnτ?b5~/gۻ&|W/:ѓ.z&|XLЦ9+Xzv/{39UVZf -UW54k_ ao"T{Oʁ~ =JlUax1,p=ݯ1 Em>;z'~xAq8x3?vp>$p:͓+$롟sU,A4襞߿Li<e>ї0]a5$}5v!j's?3W<+'* L-!bX``}7(&3R~!+9oi/gƟ?~?K$tJ/ԗLDr woߥ8c;>u04;շ^ WEW~[OϿ_?Zj %֒Vڧto:an)뎋=WH_"{ F/_]%?! ۠;2X"\"xKZW_l5Fv/ļC8@O(+?2yO&_㯾O:NЏcݟ56K_tO'l <G-|L߷ s㰿U}]gWvg΂uf֡nzfo͙{3YzfߴQ1K= y`,OA>3+UbkࣾOZ',|9jwZSG>Ըv+%NF._z͌ Y/VCÇo'CCpwͻ@Ks ٺ/,ũ;@T=Y _`X AIngz֑}sV':X7n"iߵ޿Yknse/BFvvg{6%!A| ]qw-.t\_Y C3E|Ï,vCO ]grReUG}韰7ϓ"Y3A\GW_9bsC?B+d{](߫:/Q,2vGߛ΂7~9У=̟0_7a* E,z7 E7_D 8wD.`g~u.;mG֍?5Ц{ z¯́~zB7X a[1wqozԑ><RWG]V?.w)cƂx@!>K,qgjM+-Y_9kq:~),2᪣zo8/m7-߀-Fд ^mqVג@/b/[>!~5x\9st[>qҜ~f;lPY2qˮ/q[@~bKVOWg?O=)cu0 G@?w9egbڜ+͟0}"ԉz&$twO% XOqN!ү\|_1 Ѻ|aΟk㦟s'.:S*U,G`L,sHhE;CLZ̜NH·^nV3ۼ(b<|ZׁhE!?);˜vb~+9rﷸ:tyWN?[6\!N;įB&,j^=?2{yH?Nz;t5o뜗推< : 9%,)n;O:wݷZZo{g֑Z-.sz&.=ͳ\:"bveOZwvFbƑa_ w]Go3&&Wu<2{~,qW`[J_duW;,Zs̱\:sg?7X]Ӽے5!w @_2 NJ,Glٯk/ڳ}M7L2x$ӎO|k5lQfx;3w6g՟zf,gaP=[^dQeb?޿b a ܗ~+wCKɁK/6=_ݕV{Yeu%x֜n .Ys|_%Yn[W y[iBg [jou۸gն]Sst6RY}h~sGfi>s;9f1/+"1M1zn?Sv~)ЊS ws /bt_8Gl8Ҽsvw_ovyp0YsO{&R/(R{6b_:w^o@R1`ޅx^^g1tKpK(`~F*ģ[,ZFD', j= =\6?9pƆwYbHۺ;~'93$+`.\KdCv?ImVǶ-rЬ^ju <}6b?l-{@3m(!cݯpvVT¿ǾY@~j,zsT]r% l/MZ3ּY̯֐a?s;~%FYYp4{fsX(/(.gYs2m~Bk,v|埮y@~'_n\Y̝^9s?ez_yb bX(.ۭS"Zb_`)$qn'r{P JDv2/a֞OgZ*6wlwT_̷o鴞ܿ_MYm4/MANgP\JDXG`|B2K{/hzUFZϊgVkT}yNڄW(_;{-!bU<ߙkWfZ}<*ZXQcK`.v`n;?f^7şߵnl)!?itws]wWQMs=Ό6Z} ?-\fp9 s/@1 ?v]Kךcֽ͙Y1I̸kysx~0П_mL캒+]~Sqڣ/w(h߬6~TvNb_Oیqҍt 1+H3b_Ή, "6ҟЙl_`WC]qAsou9ܿI;OCv?w~W?zώbKaA%_/? [`> ?i]-_eqHgb+!R,r ;;..{ ta%v/@^2]k?fY/nZ]@4Or1QA JWX}Y>d ]qu~&^>zpm];G W DG|6>LW' Xijw d,&> ?U,;] LYjs3QYY~%gzNpEbi?s?wpxB.v] ~񡥶k-ĉܹ< 3K'_<4϶\0柑c%Q|[.+uP㗾=i'ֵ@9̽=kz_שk3,,_ňsf8?kntkyF[:וW˜g,GȟAd~LӦjn9KQ1a.5f/zl ;ڜbXɞJľZo).8oC..Su<>?gUc矬IƽHeztT+AzR˂ k^Zj_9+ů[' 9gud}FOyoj}= ~?Wx>5``>ezv{w|_*rx Dtz*7P;|-xjyŏUY֚+Y;!*~|iFu1+ԓsJ`~}bVM_m֏_WbCwݷ{%4_ [)(sv99|T{p .lKĈ ;\oЌ~Ϳo>◂f*Nfbcg?f5;As~%Z9~ 2F>>F6}RVJf}QY^<Ǻ?1<#n岀_0v9{2[E6KmK@&.6{ߧ//SYU*~>m3a]8ݙ{aXO<Ԝ=AHϸWgsWq-| 7gN6߆ L#'^[-SnnΙ4s؁[ݳ!fY`;Șrgg&>Źs5dzwξU=gҟ>_7$~`F? k>i޿Ά\s\PysvZK>[7 ?wfjGYЙ?LI:>Ώ(f݅uʐ~M)q6jט]d 1OYm/kP ydryOiב_eb֘9k.>?0 ?DWMg~t.X璆<ϔb΁3eMX^MI39.ͿpN\gj.{c&};#oZzio3׏?9׃<DMPNaGm6%]{-?"߃d|+=k(1koj^9pA*{?.զU>qyџsmSMEv,hɹH(?ZY+x=?g}(]6ŋ"~Ssf}}^1Xu77h6}dѯU'[Q߬73b3?{Ĉ' ~j,; MY^2]Z?j:õ1`gs6?x%}F_sX6N? }Sџݿ* ocdݿE*;gbE#t"bg:b)LX~źԳ,%_{WwX,?zY/` g>CJ|q]g,9*-W:Z\?Nbl/,g!|ơ](#eɊ?}Ko4,01LUqs# iÜ!h?f9kY0E.{sv>I4LOY :cp}>X˽jŬ盗Yš>0 G-fsxE,`n򛕑 ?_(zdO?Y=gܔ<XДǗody9.^_~~wKK:`a=~)tבw`#qb r{9A\"v{؇+Ye_җgY*du2ĢgM7je Cy`~rKnBc|ywŌ:/*1ÿYϊ3e1D_Y{~rQ;Ep^%!A/6nyC{3!~/yK,Y/+{& ^wtKy?&ҿNwEb17Zw[hB߆|gd: ~g[&,(?yճ_׷*]-z[Sk+D <_-! 9]QvWn߶P-~)k},3++<^n#6N{O.w\_nlZuf~368ĿW6+粿߭ǪsD ɍ?ҕB;g < r3I(u6WqU~} ,\_Ŧ2_}72yE͙1ձ7֌e\e r̽`|DV/+5*m?Y\3yeH}Or_ ?P3~8sȋ|2g?S;rS&JA|6:Z`o7 9#\_O(~,p*3D9vO2?9GeW\_uZ_:xE9Qx^_ 9?2r[.x^NeR۲~jtΎs{̝Î~^)ÈhRW=OOVsv3Ϲb&W-$1S3u{gl<r |r}V"_w-|ן;}'g->ngܧbɪoR/gu'|U;=gykܵϙVyטWkW<ρu< N,)NC 2,^ZbVϙspIyb2wSoݷ[ġ<~)hM?`5Q ] t䗘Ou0Y긒;a9m'w/t(1LQ+TUe\ !vy,Ю>3c߶~67;g6g7Z6p$-SLcK{BnQ{hGw>z\]/3߅ߨ)#6؈^?o!~ApJqZoⷫ,+ U145a??Ι*~8ϵA9@IgL+2]`bNr(x|oה5᥌, 1O~/~jy,WyܽKXj>|GA(7zgt]]^K8 mJװUr' K)yzrpR6)W[-,e~)c.{ڷ#Co?yO W7'u.<dXs3_p(ö%7Cߞ1`'{FDeC^' U椟P] ڧuI1U>)~n\—U"$y+1 K7)c+M>Sn13ohtsY߶3x:ף ؝^̟| >ALv`cNnȝ_d~ᳰea>؀V℣5fA{)jYc^>_xE ?f5Za'u1O9eS2~gn!{Ъ~__S]  k*|6~6g9STf}V~m o6ՙ_C̿dwͿby۬U5O*5.?_ka:A_qW;~%,Wq:]f,z៴#U_೴ C_m~GvG/\5?k.K)\'3$Uf悉s_v9rWѳ4.ѸRwliΟCدO윇bO+1.sS).4e6 xvi@>Nvo:lN0V> >OY<$vF+?{o/n@pĎ}1-v j-`Sџݿr^W~"dyC O2o+޻9ۏ {W6g<ۙw`C6 p;]z֜Ows笎6_fߣ%) o$_;VM>Չq]sgsp?\sx%NL\s:A.mG}}VW[0n77wOZٙYgtj{yf ,vQ3YU6l~iLVco>M%Y^'؁ ?'FϫWW4gB]?,GϚ<+i?a4fԞy ?=`1sӿʦr"7ŘVZYxƿ3 v)d7_A~E]ܿs< wo?ϊ?!Ggy'*.?{<7^Ui_֤E_ָWzE'+k!w!mW;kΙ̎DMUWhu<1h4~ qLgO{ tWXҦ5%yxU/ d~o&j5Յ+K>sF^eV?jٕ?T,Aߵa}4OzLη?{9جKЗBdg=>o5O,9Å^h=SfYSG47Xq :~h-F68eQ &m*\biInKWV!'r?)MNwz'XyRϬ_ќ[;gY ]9q`4_ %|N1R8 ygrI\D{oZg=W0,Zr:kfusַ96?WkߩY@^X(.үbw0*^tx)C}>1?ۼܦ_hdrݕ>wIͧdqS&+,p{s>O/s|53ӎ;MEC_qҢ\&-=,z(3k\?sg#+#dy-R{\V$IyL.)>+zv8횿Ͼyz{,)q @OKI^770lOؚ1~Knis~gݖKeK@iq/尿? 7n+ﲺYjc;陼vcs<6vQ|T;uѯs }YB_) X1)H3v"lϿruds +Y{浗^{f47+7ϱا>CQŦ~ՍJ~}uYB?sVy) w'Xb~wH g׸~~W䥵vz@7y=+/ ם3 q?/4%ֹ!fbWD?>Є r' V_V\~)g;.<\O:ՏegwYoyw g.~K* =ϙG/?^a/h>oOL!s.>쿺ʆ՟۾Ǭos L3\ #?:z? 㡵q_~u}9Y>5/_%;Z@bB gRcl_wƹY(# }Vﴨr~ߡ_[}k0? xxѯ~WUgvSWY=7Sy=?=虾;}Uf/s6k'{Ц.a+ͬ? g_ҿKWsj1wqMXWk߁v2:åp<Mg m$moo`k;;Ǎ9>v`0ݟ?9} ؁5;Ƚ~]F /5Whh7B?^; 6w;+%? /?bW模_)ۿg)6ew-/EhGc 0鹏ӏڃ+mʢt~F;)On)`c/vpt`˝^|/ݟY)oaf0r~~:'u؏[]>3\3^bgY=g_;+?7? s`/g]\ƹRКR9g/CX?zvbwf%vS{!tž%qw(v.Qbt_Ow!7J7/ҿq6[e_3?UF{0?9Я  ޅms0xz蟝>؍gϽ2ﴢĞ#Ь3A~+,zY68~6V>cQ{y3Q?Q>``ܖA>owΔ8o|sǸ?9>ѧ,Vat&/,Ҧa w`g ޅb!2ýwݣSw.%ulgU}~a̍wP|m@Xky(;gv9'г-אּ+ / :|Bׯ|&8_T9_tͳsU~tf U=ſNjJs\d}@"I+6 v]hs!NحOY# }bYΉpbg 6Hq?;u|9ӈr'r>#~~cddzYq3~y蟰γ9Q:esnbR2?q;`W"OYcu_7l4㼃%,_GVmhWqJo7!^a>h߳D=||n>e#6Xטww'ص9..ucyg) =m1]iU~{_T;8uw>nYRΤbj _<|>.˰glޏ,yHA,창8(o٥tw4RBߗ:_1eBztEq?f#rEy< o:5QHga朙jT|+ t v읹Jh P:.;&y_2 6Ýgg~9ӟD{- 1eHJSKr=Ca]=4oùثo R~a[Vƿ#oYJL}}s,j%o@~g1K|$Uf7Wש]b 7Y9i?ں%e{Ufɮzq,:y0I"gX<]?뿝~ƽWXz9W 8ig7ĪXeu/LsQ?o0r3Яgs=:4n}dCl)zSS6NGo'Ovi)N6u~DeZ_g:}ҢGhߗ7l/6ӗ~|a_% *ПYXb,{wv.+i߈oϣ5# ]x"ӗ~Tp6xѯ|oMY%>bnZ}ek`5_ev6]Y*?לYU.y K?8+Mymo+NߠX!Gſ>&AtT{^KW٧_q{s꿔㻛D3h;yYZ9I^ {uyru` :KP:m|׽v}nxGpB9gk5:o<rd>KK`AGe8o(U&Mu7=ߪj-뤌vk^keEm.^wҟk"^w K_Z9 @LR"q,*X{́~mଣWw_:y`{GqNJ Xv v}N'0V:~T՗I>_4~x툩sjR_b^)1ǖx[Ůa୶}<ŵyL=kg8<Ӭ\֕Q/ln\/=%rXY~`v3,檀}1U_gNL]?j17W~bgb^\$_w}ϢqZ3w "Ȭ*NS v1%C#\2>cXQ_qj9OV=wEl}JyBR?jss9Ol)uKۧ9)?#d@hV%l-wX8Xb\;?P ~ςRc@?m~7ݗq"yfG瓝brCk|xo* ?LX?ſsSyTYk,;[W{n3Z[Q| { ,J]+kvf1bHkrôe3}J?꓀v/`wn=j_ʯs/Eφ~ſb9Bb!rV+1?k,Ýwy|{V~s +>gWs&{bXj.= p*YTkp\yJYVQ⿙噳|r&ٿ>G}4hތ~&tO,t)ĝҟWws &3/n葿~?bIֿ 2l,|+}x?@?[2<:'8og=џ ~OZY3yetq~ܳBkwy |jo2e_8$]9}p4'g=|yu=WWXdY;ϿX.#K~9vW7wL/4F^ssn~&mf%|hkk ڇÜN Y%)-&$dy-J6E-˘/I?{~ǬI}g8ܹp|/f?%jo֑i|T6hLk?ìqI W=q|E߆E}{/o'sG?]ۭqX7Կ`9w!K#^|qKOHCqWldsakag={6/c;ɷs2t9-F9\{ksA76~g9hA~F:#`]:?޵~dR9Fd8N䗱֍"&&/tXAZ,)VFfsI:M:9P5'!x>'/g/!үw~c +Ylw~?<h__(~?,tfg8S!1oy%bCg?njU{<79/d x~bnh\6KG3.OY|N~|qӯr7/ o JUCxss^̿=oj4gT_ǽ}}ivzy"% gb1_9}!w] 'gcxYٽe}\/#1g> 㦿˞8]I:wiVR7',p󂟺K?u {]'ak=nɌ~-|٢6<ކWr" 3З~օ/ 1W+;y" T,e8[.y2 z[s4|G/wAs~rMw!b|q&2Uf`e1wh};|1m?3kGx%[9<_ uG?g9{TJs kn[}yo?fN0p^Yd+ߧ/{l 'ijQC?9Gg;˳݊U dī\yߕt>{29?tZyn'δՙ;߀ @F?[8ce_b&L;=وeUy6S\m># fbNg gzw{?x pQr,s,zt}[+h"f>&- w~]s/{Y1d} '`1OHt,z.Žp(}_})PK?]-&9e-sVc1t(-f a˾o_3l;G+z+1?זycOY̑[,gN}sC]!So2ϲ?to<6s8,w;^SFQG{2=@"ʯ9;[:٩\>;,s ë-l4[,ʘb>O2Ժ2vEsOCw?۬ˣ6 ż88[8o>3[;CNy-|}F?,!'u`=i>ۿl/fstp߿Aw߳k?}_vR?߅[NX-.3g˿ǹ87ÙVY NƼſ##؅͝k{Ɲy3QKRgj=kE#w)N[HT_NgO/gA㧜aҏ:q?u#iuh}?+KX}oy.j f̾K rO+JG΄"+dN'x˜Ҿٜ5ogQ͏3묶M+I E ;-=?r^➣]͟Ɂ,s `vVr׃\ {E,˭`EzWv|jKb!+Sf?ڇ+u.d6O~3g79O3|,π ȇ8ro/3!//|1 _E/,5f[į_AŏT?g29;g}㙿/С]-V+ދbis/dK`Tj_{q3YIO|'ᯝnw-JIٻ/qu9~ƿgɘ:K'_φq}=hò43CͿmUb|T%A ]6 ~}FkmZG*#dsGY$UW+~s,tmj/;< {K2J̷g}V~NQ͇9@(z'/ja8e2M߃8r9WiuOv3_Gd}pT" ׫{;m[rm}\t꜡s dؽ?j,F9.te,E. ϼ̜|R hl:k_L~kl}3:Kg? ܏| Ov~y҃gҟ~_U {=3yȰ=I߅v}VqOhu/m$N?]]w>5bJ`{@Μ^dc@Z?¾ Y9h*L3ё%o:0R{\, љ)է~O} .r:c5zwO,Y_ra~Rȅ9/-m⇭շ<CY{oT\!= Cn//y^{R?b.Ăݢ?`æB>e;永o'n|N!o+Qɇn.t×N]\<--.KMХWqz5VQq}:;τ|b!j.T}ҽy ~٫Y 1G]3o*,g_O=/>Ŀ}93d~D_߿ҿߵ3`N?{a.*5aF.=,kۄI_j7hQ?3sב@gcVǃK} 6:ue)[ 7k@ ZVF9iG1ݟO2ɚ˳Kg;{״z1[f?_䯵V؝wYe>K})Uw'/S}?9btWaT>#tT^/W9 W)dĹR\ #7|?죙hSwl8$*3O:_}oKj?a5xkl/q#b~ gr(wY.~Lyg=yKSYzrnq/ ;E3^/[,sF}򽮷1uh^y 6;g<Ɔb~6T>9#{3l!;/YcX+:}g:s&V%28_<=>}_s*i=A㦿f07Nn ݷg[_7s&5:防ț/92<=V Y| җ~+x}dWڰ}'_k9u~ ?/kJ:?g8ujgOVOz,-zW/Gߖ9ſtLX}-u\ ~3,k/J3&!}__80ηOWIqb|~=f3_OQv gR9gMՓW[sG{ C/2/-ȼŢβ!F ~=gEzm׵Lgֆwq]Eg=ej3d{U_37YA\1E;|:rfO3֙,=gylbٶoF݉?b}E-,yű/wߗ~~WCN:\^7 H-f>2;tZ\ܸ釬1E4btՅ)\0kװaoj<Ҫ^AdIDqTp8ϳ" TC74MLͤݢ8՘A}oc\A7g>>޷G}ήSfy-fWc?3e@s%qQ{S/7Ut/コfG'C%Gc{|7O=y^u^vET=$\V?|{ua᝴="+hH>|AfHko3zן9;sn^Cqُ<-={;>X_)*MQq apdf +c~A,uWܠ毙{>g gM1g.uyYsQΎ z?A5,yU;||F̲mU&<߸w k, ;BCӠ]ߍ*?0Mo[sIkزk:~;j} }ikӛ1OUHf~+u#ߓǓJ= ?'{+G"50p D8y|\ .=?gs.#=Z93ט~wZ+s>S¿t)v`zu|{&ś>e5#!0|FwST4eKir*9fY~:z](.5"?19R7n:Q?{-){ &L5߭#cbs.v3ܯ 㫝Mt ])Z ;~1̥slc\lc|{9DŽ&*/.$φ35h>R^џ<̍ Ge<'EŜt"w:ݛb :u~/l{=T ı+ǰ1X|v|sʯ>*3:yI3x!痊 ܛ6"*l t|ͷM7=8T [P!0UCQGqM'{VpQ?0m5 Kaw}6 {=vI  coV3ROA;oN(gCBs=w'1~9Kxe{:![&lٝKŅ_r^Z&q 3/J2/LPy߳g_pO'l 7K{szsZ7?~ԛ3!o pEx>ȯջzu x {>mVKK>tmR,zOJq2+=+vE"ߏ.JqفrG!0Cc Byid19+,;%_|pgcq\l,S*h/RS>l='|)̖$(zRq0䴹5ɧ)=^,'3E~p䛵wA^'C$J)xپK(1y|rW{_z}y1׆AN!SI$Lw޳ j2=.}.wƏr,Gpد9e?cW^]yVs&hmKٵTK;Tvѩ<ڟFU)wr;[֌.!@/ã[ugBΞ73?{o>_hDe!‘=$eyԝکUR꿋~zT}"a,O󦨾2z(FEB>9B3=Gwa 1#UhT-WRN}Wㄝ?5ܚ|N.>X5GaiN]cO46j՞co5ʽ_ۜwϽ# CT=6ym;t:jcay";</i ~Q$(&Y]^I ܣ_.XC7Eaè;t _Uc~Z9O;'l7 *XE77<;*ΩUO%8W+ޫീ^w] _Xu`xDC+@LԛG^zu^?FoQ;G|4gn}'W /)r yԺ>noLu.G16E?ލ~$!eس!nj_H* n7T?fҏ|r[Qvo4L]c% q<>V\;&.='뗞vKmy/[MPr]`cݽ u%2M. {6{&WqOޞ33?2+޳) N[ճ={Q>>7|[$Ϫ (nd吔mS_^&e]6c}Njwsnߺeݑbrc:T; hcz(z}=ՉzZa;Ǝ`s6*wrLrXߍ.?cn_#u`ǰw磘Fo=gN~MQ3jGc&&&nҲN;лxiU1?uMDW? ~w.罓Ƿλ~s;\T/B7߱L m?G.O'wxg ^e;WoU#z<{Q/_~ iOYܩTyڦ]w6~ ^7~My15^ #U/O?+ua&3~{/Qoi&˽n|" '.sOLyy@ʯz\XW]EyOڒ_f_C~OU;S\;U;#WXjq?0^vyIm]Cݛ;㏭)_9W4'=B$X^U~KGaS?ܣ9؜ 'Xj{2sL=6}l zV e{Sw> &? IJ"۝rR~LV3+zR>t qm)o|\Lp4z_n;ݵ h?F+TωaφchuQ#Fs7'jwEݩ!?)ΆA/c"o \:9r ^G>=˖XqϗưCxH#b^ž>K>\MB7)cUU5?I3߅V<.p/SSN.IR_I/I']Cٛ_=$zmtSO\*q/13؋{}>3g߿ 3{?ːKqg \a#+}WlpO7]G];>_a?Y/;wk?#{'|ׇ/2KfqH%g^HPy=^^Us1gRy5{ݣDk7Îo\5~T ۥ{U:,XL+_Iw\ſ^3>y_vVV,uNV~f!_OFQJ3˼2`MNԳYShz|~m%cs~_o0jg1y&ƅV,sPһC/kBro(ÙQk]ozʆۦͩ?'*_*+ELg.j ?W=tO{nYu"5G";ʝg-Hԛ|h^:XĆF>=~DUZͯ= O|_B)Qe|VjLl.vK"j݃6 yN3tLƿ=oϪ_4j?b&+y-X&#uR\L_e'B9ޞie^ќ{gDA1=(w?=:SMyRwwbާ{?;*f~ihw%~Kۧ? ?=_J9gjw}y>|s{sQb} [yJsI;Rm^_q6徴{?7G;z̅m0%ܯ 4\ >.=~g)کw~)F3}^8E)3ʰ7Qk >?ɶ[FwKV{꾩2|tɫbg{}V=۳׽+툠^8z^&˚/&~).^%u<%_{ٯNϟj;Ǐ+\-&fkak9ZJ]Ȼ>i}}ǗbG&sQcY I('}Y\?C?qʎ'J9^=~Ž:#ҟ3.>':6ceWN.,,jzW]8W|Wͦ^B+0e?|!?2TA>O,9e䙹yΙ1 1ܟS/7}q.{hlLӭ^Uهk}bLY'zrڛGhIt^=Wj/0fي+_7K|} 70.r_v#1> sVr_{>l# (.5nO՞A>#UAu{,m=&QwJ?М3t]CϳfTC?CYW$͚%QgǗO?5m.czW;ggEt}\'O󇽦~չ9M?+`WstK}wkf@iII=qOVUr!esKOsKTl>>sTTG> \ޜ{ ϫ,~jr}Fu_4a1*.?CDk]n뾙S| qq`V/VEŻr+}#^:{+ŵȯߞ?_ƴsO~{NW7g';NQ7Q,Пﯴs~k(/zC cbXuGui_9~|fd.*wΟWj`WOkQ䈁pr|czux~z4 1y5Qg]/~~wﻨK/>_e?<>5:Qj\rў_Uc'{^_1}ElH>8kv^$9/u~Bg}R7l_vP{1NY _WE}$H/ȣW=d彐wՏ}t\+欚_~r?{rcE3蟖?Q1/:ӯPrsωZkS{~zt 8wN+_ܹwBY|f_1"K__ݒOuuQ`7p/|Ycᅲ>׼O!b_+y|s۳:ot?Naqg+ORXP.{Lw]~4El\ kcQ8r\GZj{}_翛f{s=y\Zνba{}*`$KlWa.xʽ31KQ,g5 ao_f%A 9w>Oϗ>{ ?Uŏ>>ЗsF|sI~U(kO93`o3 cG_yolm;?f{Egapy^wSX|[0A- R;!@;\i~ǬvDnJZя|2侩ssJ9`~"`{D3O5|ojC8~ѥ󧯋rv>׋cѯoo~>*HMtb h4'gxGse%,hda#Kź8c:ޛ/OX %*,,q^wNY~>`cv!B;_u:G*uo]cKџ$L>x|/JO)oaeWG{ͩ' 0*撰w,.$q߿T!~!FquEv{i~~~^g8h>1ďE>&OÿY+;%.Q)'͜HSx^~/am j9t# s?ܣ_1|fVjwn)>}M`ll='e[R}R`[=+bo~lϩwL޻Qg}N?X ~Tl.Wɜ~wlMz8cq&{v|>ӣ Q{=M>ď-~?|.iW9UvX[+*[\gH8"No{R1CK9^$Zc韆ݏr<yQ ǟ9/¬2o3A?2:jFo;w+;Tnf!nms罟gs|Hk9n:SY뚳?~'ЬǴE}5ح}jRs)yDvIbb#PCYQ#vE ǿ?O?} t2ḲڿA[G7x+bǣŏwnt0EPnw}zO+N<;ywW{u7󨸷!|=]ar2OsV}_w\sW5^>g{u~ߧ;$OJ3WlQVw`vJ~.Q;Tg[~_ ݣTLG[eKL=4;%ŝ CGw)5w lL&y]C~WpNPm?gL+{g$Qp+?>)o/nxϽG:smsng/UN$G[ _IQѧ2gFouSKשG3I?~}\,.+eQ~MQv(-=O|kN.UQq$< q|_x'=mwf_<2_=:UW¨.t蹨v|,~{//zL^C^^|SѨRدu_mo˴Aec}o^Up\J_߳ye,>'xK}1rVP{}6y}EoE?{$p{$>Q=}ԙGsn^Q&{='7l>#='Ù=y"?T<}=&1Ű~D,ِ/FWt"C̫ܯ\_x/?~d W3;BoSKWϿzω=߫{?xgQ^_LSw#g=1^mz^[PUjs\d/)os^)Kw, CܨT=?2+˨~'v )5#߳[Qgu1shYV}.My3OvT 2ߺg9go|tCigE8:;FoG2Eţ7Ǥ+_ugsq?t{W?~;ΉړwlL}Zn{/ֆvV9EJ.59_ǹ::XsE2~>gSu N4 YSiO?GbXOW}\5zw -_JVϧeF<^g_u6rϴg^?zu,٣OL>g?eˎ},_' "3~Qb@ =~Rn}iw^gF͋^ޜmh.w~^9{熨0g8KG%ᷴ&g:Sv1 9 cq.{_-5=9mG{Q g=G;Oٯ|~oH4*rW|ۣ\ϡ̂~G oS1 Uv/yU o߈YP9U&Mw!˞|T/p}v<~jWSΊ<,kRsRUQ{*g6~gO%nO9+}TTy~݃rϿo9KV.oν\yB_]~N7댨9Qw-W7:NYƏcs^q\/{U bǐ?qawET]~,\Ϲ'=aN:yc#&=?:0OHuXb4&dK5wod}|R dƂ9ef\/bue2tLh^s~-N4fIߙYྙ`1ORq4?&|e1ρnSԧ:~5 }pX-ɣı_us,V_?_DŔ]!~bp8~ g1竣+W,_y}{}=uy=Fᚨ{kVG/{/ЅY}_n>m*s{9'?= 2*TZ}3 hԘ 1Ke"w>oDљ*)_`~cUN*?EЯjE|b oXȲp)o}ek$l:dOq0.k}ֹn{xie{~{l=1I[p~W-Xv[_^^F&۰_3+wc ڣ_-+i˭8bnqrt㟑y\~q)c_=);gVIR%|e"swoj/ir;E+n\$8.mSn# #7%ǿf2j3chWF=pz'=u'{ 8/g..9?߈v|'* W‚6Д&o!GHn={y?\~;g J*G7Zy{{MkTfl ܱ66oKF?=% ;;ߙly_ҼWD9+12 vW.baX= =sqŷ3vOν#a+Ҩsob+(–u5>=ſ>V)ܵ0R@.¿]Zt1ϢyӤ-Øq&K?<Qu+ftFoſEĝ:d)'?c{?gφ?M.G{sU~׾4=J;(ԭ|J>|n`ɇzZ6 ^v#[e!ߚzФ^`6ey)7Jx[ gNUԫk ?cWCc%{Z/wXw3o/4yq1iv_W?> Ǫ>/yoЊkgm/K1zRX,ϓ@/pOjHcwţβ)&|ΫD^ċH{Sp,\ߝN$$ث@IQ;77kT,;c.H_jpO[ Sy[yVǦ\B'1ӒN?_?nLbpԿ"廓 bߋL?[{U)XXz^ogfo|gz-cd?n9=?}aoăpXܿ|e䘸{RV=^eX0O~o=5{qcT}=|u8 _W{Lʪ[yx꟞ܣ_%}||bxX{𧱿뺈gSܾ4@0} ~C5r=u_){ WR(Tj.. 9SxiyF;>&nqx4s~ ?.kΫ#~9w>1jmx_9?Wduܣ{ژ˓_֏TSڸ b W?<0 Hq,旧!wp y1ka{ﮇϽUQg_4׀Xt-_Fw~"5gd}o| "µBf!.꿽y^ ?̗hFmCF# RqRXx g54 )U,}6?G?_^zs=*͟DŔeH$۹8f2MN¨CNђ[]~ſ;= j=95wsXi笿,^g6 Ʌ?m~,B߿h9^=#2'ΨO*}xT|X"t^~W;#OA5#siszr˃W{c};^ſgfGY&n#^ @2c+zϽWy~PKDZ{u !?'fm,>$ݕeJrz?-YjYQQȭW~Q.}!^wzӴ>.(/D+UI^;'1+yWk}A/Cz.YjG\&\t6nkv撠CkcK>=auO"?;ޅgCs?NKT 7w>7j\vU {$ȧWfʙQJŧdNPc3>]Ca?f4sǜY8,y;BL3G2LA7İOw Cy0Y>w眡;1Ōmwy >R1^U&+AOme%80k$ _ƒK:.gg3O2#z՛pb{}c:Xo~Ss <jz^A c&/b2 _r- ^!frvD8w%13=g^]'zq-r &;A~YuTOrea) E89R| )ÿY]7*nO{W97a\w,:~o9% }+?|_"CE^_'1Lm^ *y[(ö2ꞯDđb)>I0'I7yG'>4-OU 2@.M,:.}u|͊Mtn6>?w! (6m)ףK?0i_4@B~ݿD_ _F; O]ngpt ~,9!eqEY85';e΅m ܡ C]*?T|d||-*ˬ[T{_x亇X[~^?g7?5>'=kSO{SLV l?Fݛ~% vHAҿ:fS䵤Qm0~; y_mw*& _vΥV*s~aJN]oI. Ј=u |M_N(SS+&?1*Ϭ֕W1ǩ~Ayz;<'_cW,9>?Xv-)}O 屇՛{xY~ܵϿESU!:Ʒ񣑁_{|@&НJ^6lU>RJ*m:_>5Q}o?IU~r§v/y` {dܘg8NwxM)]JMAIxd)dUnyqyc5V ޹=e(WqVO'fQ:b]A埑C7v[9ًbvU/Oճ׎?${%_! %y厭'^e>~f~4MGn_s?u%\,Ua"_u#g38{?y{O~]tQj툚y,|g|i/5ɓo~+kLa +kC<+ǓK{W{O<5^۳Ѧoc~\uϟϛ\?+` < l|$Y _K4 >K?Ϋj?O:eRFϻONʯ#{|DŅҜ&ҧɨ!!e۷*uؽO>|/:gLc?naJv,yF{986e>l]FO*8S7#G_clu"YIޘוwjxgweCXn3%fxF~9טܗ_zxtLwP6:Uy?3_&Vw8> ~;/r }= ;|6ۗKn)}JascwyElŵQ0z)J}HĆ.~G]uF=$c~ w,lh寠W$J9'njg,~s|V5x&.o s{*=zGK/ BBν^fokMTsjܷtz良IIF`/5y|{<dFgwѯyKbh9[o@;~Y@^$m(~|{'Z)WWMHl<,V ww =rKߣ O{CW[isI|WI%ޜoo7@✝{'>97 Zs{~<{gkϜ7 ҿ!&IQ0t; 'K/nvN_\\> {sCct>Kz/kWEէދxz޲Yο}oqgFr7Fl~.&>g|̀3FX;K!yQg@.i ǿr\Y7Ow՛9sbk~}kƕ!65eH|>'XF΀~m7}rg+]k,#Isy%K=էqc>OpϠ=8^S͌"AV?/~b,y>װ?~](!R?,g,?Uw&oeHQg 9W2HK>J6y2)ϊ'M}V7w~9Tɷ7b,#sm uȟitOu2Fexm|vO я{yu^dYD͝p=S>Rc;Yc8]}a7V9Yǎc^TW?rvw~/<-wF;|Gүؿ*xed^7W Kc;9C̅8#kGGpe{+mzgO}n=y>^F=OrJOYNaUoRXahVW}%v-׾2b^QrY tUQR~\|_?zB<+=7%XWދzSOzu^s/ZD8.RX ѱ4SwF?河yMj33̢~4~ǂ9?Bu;ۋ b>#ۿг-?z?zs%K}cw>q[k7k,%W%<[Oa}&uF+ok+Q3RzTTğ 9eO{lK/oΞGs>g[בǛYS,_~~OY1::i&>˹cy\,ۻa)6YϏZ'~i?{sI^^{ӿ!wU:5f= Pz)~6 1%I3h`wcT2<.fU\0X?ɝ~}Ew⨽ҿ87ܓӞ}b7OW~zoy{)5KwnS!.r'؟2ύZeGĿ_߉d;g`~\R3İ헖JA%-߱ GDT29~u,\Q _)RV,?|L^k+ɉ{ · 9G|g|u yX_C4{+Ƃ-NϟUs,''m<;DyːQ/>Z1;u\=ܛwg5=~O3j1aC//+fYXLB2_yb8 ;,䷝_@U"o9Fov W?70M, Oey..?G{{׹Gǘ/YXWFG&u1;ܲ'mzLT?N/՛S 6-V q'崨s1~|/,y9O~Yk>/wgҳzwE+!}:jkb7"gXޗ۫++?g@PxX?q,ʑ`Q{q\;Z`,*YV7=,Xϙ/ R{l?χՋ[e[p| ?KEܿo-~Yoүݵ1evY/!?;>WMEy,<|[C5U7nDm~߳㽹瞮:C3$=1ɯT9%+z !{ϬMP ~^ļ{~ucq|.Q>㾥Nn}P ԒiŹv=W<c,'N~Vz+!杋~dBX.G2_uKb˼,w[A{QL{ OF <o+wDg/Q{1v. & `o 8{ mL=zᢃ`t5g S' 䀈%(v"?\{R4iO_} ]9>_r3Ov<%Izaۂ ߍ 1+qe]{g_6[+Oxe o7U{]>|9wAIznJ=ݎE_NO?ߥcx&^YocnʻHc2.S;>C @ 5p`HؿG;= IY;#xHaC^ԝ_$&nd!^iw[ ,c/-4{=f׬>C ˮ~燝Kۓ{Eɠglˣzheg==o{|hOnnhCsՋ/N^xO'jU~7'7cD|?3M~UixiRw^ݱ{Q4&g@f_&'>ERwVM^_StkΚW9'썿;g?$VF?|޼[ƄwÆϞ&/{O+cT^'ǣVrOh]]w;FnhayDʬW$r?,g0$E9Es{~W6gי~v>w/d7F)lxLu?%_m|OKذ۔WbwX}fY}_uq.'ًQ=&~32 3v_}N)^ۧ.|q~~K`g. OdEЯ< +yv褿0tvS3r=.{ U궵g]fuylܳs/u\hg'=)jwgrmT|Dt)=A-v>U|SMy@R^N|LO)CG1ĩ/-騾3lr) -]|'ݳKY枸e+ y;_#+|^Z#瀞U]6އ_ۻ /_X&1/vyaAgwI>t/ʍޣ_LЍ)ߏb{HfaNz>s<UCOs^U'z_ p粿_>&zH<㲬&|'vj C>T;gϋkxN;7VN{?O;Nuzӷ~u.wOv &ywMA.:zP>zg.j@ YRϿc{<-?گ>ijnӣ:rϿ{Fn57Q{7oܼoBq+=._@~z_]W\g^|A䛜f<&@vo>_ЩIu~dn9*)so4^Ǫ;=Quh[ Pw|lkrj/ )&QJ`ѫn{sY2|R޳M11yq[QwHYN~yXʂ+e<&eG㌽-y|>&>4AW'wFmRߐ;=^ħ%gh%C uy~@ݣ_=1SN0vvKy;?ОOlz>sP|i.Wn{xνtO{W=_mH3ˆ[/{/B#l9Հybll6"RM^/Z~K?KX?8ˆ5 >mT߶T[{R^Q{^&>)E(o>bw&E~e?>u~);'=󾟔{2]-γʝlWN]>ۥNY(/O5a8mc>;zga@Ьzra_1bGL=?[9se^͔v^$'홿7|rԥ??09N2&=F>{]U؍67ԛS𜘟{F 9qI9;i։>u4/;n a_7!u)Β_1}SnO.ߙyZsFCп>^vS>f2YN9}~)I;ftljo+]^߻^!,׏nRtHTP=OG+9/sNVˣB|U5Qgoǿ/y!σ.Ŏ{|]"/НRfG\_9^"Ul_9&Fo'2YxRebӐ.~ߍyn_/(a"cFr\'~$'g~t wj^ԂeտnUq_ϫcՏ<.ͳ8|е 67LQo}.ѫܼak^zJ?~VuIXsYx-Gz]şE?Gy=1#Aύ8N~`sDlQMi韶? 1j5o:49 ?{O{x+;?3>'S`?YwW-.)QcI8oߛ{ ?!~o}E| z %]>+vYrB;߳x7ۛ vibX뼯Ixң_-(aY|2J] oc%B S~~V W:Τ{V5/ܓď{ۼ?~u; SyX3ϙgFܞ]|qn/<-OWuΎ8:9g=-?ʗ&@ON{u{zzѶ~$]^K|䫣֮o!^|Y;;N䬘n mYWD }cc˽R[%Do~_O̲f=m?s~X$?#Y_-=Onj"dC{_9Ͻg{O#S-X_糳?O݃%E/1E/=x]XgQ}|Gof^:3JF 9;Yljg)jg73s~{zrb2ͫY`h?? {}6gWFOӬ6?x~K vy 8~puWJ3ꕿg3 , sI̬1|-~-'峀]/m K3=2)Zy%39|7f3U~e֊ 8Y#џ)&P JhqϤb+YsFij} WDy^\@8QO{=\,~>#iZ՜U&~II3>6Ϣb W+b2\03Imʧ0ux^kkbm|{chh&=ql C/31;7vp#+'=!/QY_KZÏ2\ҡ)¯{>1y=5?2{?&/aW o"mG8:+=L槄GOHx&sQm;ʪсv{ὸg0,=~gwởCX⛢bi~Q1".ѡb-\}Czүڹxy_|f4@fyUҸM^q4_ vLrVYF>s_}ƽS&V*^+Uxc_C ~(?M> s>s@1ឥ%@3N>W3/Bm ผzGk_ ܳ˗Dk~F$~]ai}Jܭd%*:@`oagA!, Y~K߬= ڦ8kV_~({SdQXFcB; NzcrĔyQ 'O'<}=kDkoV\uy)oγb^S~/^߽{5vy ^5?cs嘽Ȧ[7wм淪!f6ܑԌ*\۝ |ǯs,,}s{ri# ϨF^H4"_a=Ş+cWK9nRF{pGx>rWȂ0KwQc3a?d2}x\U&j0v4jwtr@JR6_|Q'c +b^b'}W|aKO^*)+A> ۅRX8{W0,gvLbׁ>ﻝ0udqh\;4mڴ'7g>KbUK>TI/ذEեWl=L2闛ckYjU,EؤsF_dImS^x}Ү]ƼON~v.x;~ן+bX{wfϷ*u|G!Nw,Gw}܎b =#ѱG7MZmAT9gQPV\ba0vBϢ水{/$>Z屋\9,W2/cK9ەCK2ܥ2~ߓsWsg/wϙx/dW10=ߑ?zs=⨳P/Mz;9~z/Ϭᗢg`ːo6y {_|]SwHYK 㭹sFм1y}離 F<NpOY;"y[}"WN:-Yyx4z} H}SϲW V;7|Lp?磋7'3hg|?ߧ_6U}Xܱ*#zRzgǂ)s1%cE=aٵi~o}]LsԓT/Օ1FV\E67!.(Wȯ*䂈þ"veL{PwMِL9q֚wWBG%i}1J Ȳ` ȉE_ mQ'gM1Y$w?I ?:->(v7q"5Wgߜѿ2*"מRgV.e3wiQ1Pwlqo~'}.i~,;mlνpUQv~Ky=;~,WF9y4xƼW襦UO{O>=O^'~3 Ͻw+y`,5>t x1Gcwf߼?/?{;zfY3|1˂im^Nj\L|l*6›Da}c޿eyo; <++8~cK:aoξ =؞՛/[y'9'RRiKʅQw^Ycɣ(GE^J3 -Ɨ߻qc L׋Ux op>>ۚ遱89]98.ܟ\§b12jneY<#-藿F !jo;o){EN,[K̀~v~w">KCiqS?q>+pmν<{_+?o~ |6AS}/1_*÷'r;șϘyc`>[/trTS>>c/Ow]s<-y]rD/9kb%oA{_L^|B}S#䯰 _9ܱoknRӯ|U'_\w~fLNj~zzNN'2}':gig5 ?;0%qYo?>3IYԲ5'EOO)l _}`G=׏q@ӘV{ 9?9̵cLK}=7 ~e%~w<gSNvy]ԽZyT: z|g[Wå3^Q_ʉIyoTYz{?<\+𾦳b6c9ߘ+ZW*9p~wg7֕͹WO| }y\ /Mz@L91x\neL:UR-'gY?{~,9.d̢;n;_<\~w/H zn/;;V|i=xm_|.♜ՇL{\ϯ9=WER/2}|;~5|#w8K1$_]5Lr\#gԨu7GsqM2?zoc5gW6g=͟<|ip{3z՟/b5|#`KdKߧLԷ_̚,~ΫZŊtQUmI&mm=s-[j.F/ L3G޿p>ggp!Ӭhɲfr,|p潘!L_vp.coғŰ?B^3lo]807'Ԝ/3ª xCRq-)бt4|VTO7wL"S~^័KA~wtR+?||=ͷ/DvS)+sFGz۽~(yc 3[d82iΞf٘Yv8syc>rcyEO{Ffl]*22sʔ}ɻu|SdϮ+uvtm ϽXO|"?,>;fVyR捄叮؆3C̠"Iiv9ǿsaχ>W7޿:KY9wDw9ˢ^ϑc DϢş\ka>{Y=\ˢ~}W<{W. Pː,ɟ}<xl|.z}`_y[atKIDЯ( &xGvsq{=@ o9ZLy_3toׅ Ur-ё/{>0;<ψDJ?+`ϊM1} ȫpЯm5< 1=*#bgsUT\bs|rN쁥9"i2Cc~|+&*$:fND~+8p12K|vꞃSnWd? ~~nc{qw8*c!rRO;;r=-o _=5gW-^bpbxoK=3,֨s#"~WRyE.xēM ,vgr7#?i]FE x :+J=c{j߆7_0qK{f<;N&­#A얺;Ҽg\->}SKnϕ>3ɯ%!]{ F^Sjrh_CG&ȧX?uN eÑz~G}rC9^jI~4UgYQoM?S3_=G^`v7=e]rW4^OD‘Đ; 1]R*V;X-m`1{;v=fTVsF#I˶IIμgbɷCL vkfM Qٮ@ZWw;EwO]z[<&g@rl/9xte繩QsYkk^{r}AT-?;6V&-oZCyɉu_2^Wy:f2lcq:L1134 16ƖʺNْj,YuKJcIURI%cl`nAH$$tHҼ}oo|uo{ {w5sIO< ='?kd?9X1 S翲_Z{QWLXwcQx$92Yg(^k^:!;s\KZ/+SHo!kKWύaւ99= cV>9 Fve|Ea5SwgE[Y=._~o/ &{x}֏EiN;>)X=SwJdOb[g.sN(2gp?v{/ۭGSÿQX-}ggk÷Lghw.6rW(z.= H-yw]ޜ"?>O\_I+ς.bs\,an(GJnvYځzO|/i*~ib?;'%$%j{a+ue#cY_g3k҅o/軋ЙSgK*!;ړ;[d7wr+s;3鹖Zg(~}ﭿ9=upZ^R;3_Ʋ3:/Ҍ_^_:s3,~Xe_ik^#R0s#ss&/fQ^3k|-\t[埙g_;Ի"um_s3>-O<*/έ]= >~YD (/SgwO_dړ7:{]<ߌO_}AOEr}>V_z~)ojYwBY{^_I\81׎q֟Z{WE?ԫ_86SsqN9sY21f?uL$st/~;;׭pɭ3Qc5w,{O@FUnog#^Hb#=g}q 6> gesҍ$gv,tr{Cqg}ˢO; oUSU^AÏ5'ZGF֐/Zo/vgw3Cߓ.ou5elVxd~D^?{&U.\ѩ>4ysyx&{^b??uߘYύ?/Xs5q}X\_y*dQ|@'ޟ[~1'C3m_ޡc"yۥ?DnJohYۀwFڀa_]9^{ $~fȹL4B:O?a-lq3>ZoW<}~>2_}Q\Mb A׊kw_\>_^8yN=7k.^SZ^>ǬD-{/k|{K+N{ ڳ7M=>Rz^agᡳύys5wM{}Y02N/kWm{-~=j;ϸŹ]co{_gd3뼫΄:*,߬$\:xo鮍1"Oyubhu?R|.5>h'ܼ^WsSD/`ko6{/sS#oP,6bjZ9pclQy].?sn//yMN^3okx}Qgh}S+HґQq-]pL\y^4g믚bcbi`=o_ɿY~]e/ ?^N_Ggʽ[wodϟz;"'}t>'\mЇNiuQog}U:gL9-G[]:~aǓ#ceW/]Dysh+^>5^}^=uO7~6ĸ1{$c{ ś:j.)K/͇`v^R}]XmM9A@d\ܺG[~cc"G=gL $[흗3gkK/ףp-gjͽ={ %9GK+V5s~*2Vp'k|cY<_#WEcz.!sίnjv-cOda[Z?t;WE:3/Fbc^ۣ׽$֛jɚs:S26ߓ239}\Fo[]bc” HIՏg}M'}mT晝;C\~ϿA({oZM\7.lfCx}~$װc9Ǐw]HzJ ?ZFZo<ן/?߶AOB 0Z'tRO{}u<%t暺IyjOl%O97x{R/[=_ZzWY}y;rĈr}y"9tD\@f̫ɼj[3zE?X$^GoHoAr%g7<9իc*./:2gb%^{G&UQ}S/*߶ޯ,D}U6wFܻ) ^>1/|Y>~>[{|Ƭ^Y{zp PBg1sp^yeiIErE߶%NK^ީz 2^{/V>, ܿUͅ$Jq@_}4 ȗֿW,@=o/#OW#k]eog.ۻ'm//×M&N21qqYpKlS9\9ԞUѫ59zuz2/Nv9,?$0x~"+"NɯW\0Q]X7e>ٯ-v=-^[tSk-eͿyu)' ?Ͽļy__-j"z-|'ojtU=bpz~sRر}]ŁybVyM{gwY$y!!?3^؈=ݷ_#S酰D_^|0|?XsrA<sZdo%ۢ?qOӊ~ʜv߻3wn#+:/kk;k;v֙D*n[$_g*::u_'=?]z{ǹVh]ClK^}j|u?Hѫ|HBn.Nz84r6^~nk5sOȜăsU:MZtV)eIYZ_r~p=?n̗8cckW#u6¨ɗe_+ei~yi]Kms?$ ɝkZ~;OD)d:gQג^wHH\Wk˳j~"z6=?&_g"/'G!{뙢z颮k8w{k o{}g7+\ ~O<em9'=Z>sey<?<{]Y; _5:x{PzOՏCm_S~NͯVDlǮK}Ux#Eem?1._m~NzxY?b3k^Qt"1gռsDb_{޷~TՁ6׺wk<\ G=OYCKgg/n~+K>kgח/s{3u;cʱO㝕/1FC{g.$߿o);dy=roJ:?+mq-F3PL.r+|e_xsw_:Nu{bϔ{0~񃟋Z3k1ˢ7ܖܔg [?knmω8S"9tN0]޳^8<{s'w?D΋,BwnrY\?u\s9' n'~~ﭿtV#'Ee-y"/̺/_XS\;#[c]ipMrWs~tiexy˷EAg#FNM<[+#YZyݫ?Y~0vHl>Ye˟)Ig?teCy~/WFee;ύlgߡ}^~uoX7ݕ5F~_ُ).Gzʲ$˽}kSzU\'/V[dnk|&>Ӳ7G+?g徾,q,WFK-s.{_z}Y/?K_n͛{[sÇ^'Eb6T12s ~d5ǴMy.αȎ*>rY^Eqf΃e2_]]gM}Ƶ٣y+/mwT7/^kȾ+uo=Zȕ;/ll,<;g]3١|oO_duj[y=]p{OߤkcwwP}~1Ҿgz" eS7p%2|z$񉑵%Msi\l{s懚kk֔ͅpͽ?캇ʞ_9HDe#Pg}"3>Gb:ڪu9OE>Ly1ǡjuo:nVc=ye'?>.k=\Ef;⢷/(6!bf[](t/٠ugD>kUe|OYɯZq_d=9qY~]a-X,օWFCu6xu[$f|S,=wdQϟ}~yV!y.sz_8/klm"s?Tc뭮?{R#ò֊w/es<^E/Ulq>*TnGbgns?_?Y s;,#l|"Y_ɦn;7_SitNs} 9W::7kk6o5}ud~l%rVb@o_/Y8}WϿ/X$J6'? oܓX-c;AW )Zϼ*g}ﭿ|'"ciyIu6e _uE(Zت*z}ebg~|biouoGf#K܏/(YdNYSz"Z~`Q_,Dٳok(e%>,vvOׂg1 _z$_{I9UIP!jlxnі {_ߑ}C|Osf_[T="? our}86ν󻿋>yZ⇿rOg-;Uz3νw|믳9Ԉe'L_ʫ㹼lQ|ބVωKɷQ^^\}G䙗K²bd=}?QəN\_ѕwK\dsxfYk!}o/*G_gB[jl1立=޾12~,gaouwJNaa?By[._H. _YΉ^RV'_zX~њ[\UD䚰cM:~ajGأgul2k͝)@aiėQax}>u={>^yܿ@+z_*u}/X$'ol\ҳ3[ڼ_!b [b /[]?_'ܕlWp`\#ՙD-<ؚ_Z$ve%b}MtU|Z魮Ooz#Ñ6EڤK\1=|.a2f`?>;-.z{u;˽>\W+Хn{8#}'_7>هTd_qĮa8B'>uo;x!zYܣ9כy=oà>૟3ObkYŐY@T_Ho\u=_H }d`?܎U'x[fVy_s͜y6&ڳ =ɾ y?_};kp_1:( Y- .ϛ=9'xEfsئl{%՜5/'.w\rpQOr*"hyrV;,+O`(?SlI.Ķ^=HzyܽwL1_)vV<[̲9o ?u\˵xe~|a?*l/oWGr]4Kv++o+kQ7|;Ĝ{;q =+v_j/? {=IU퉚#N/`ng;?P;b#gg!R_[ߛwI^yv㑛^_1ak5$Q_<`{ʗ\^r_=/#2soy?WQzXFg^O{P-ʵRm֟yisW=k斿o.׿wF/P:ȞRz^B/~}^6տpQ+WEݯ:f s%GY@bו˚{{I{s乌<[~s?yq<6bMip"/+%ٝSΟٗ=9RAQ귖>V׊(r#uW6u^6ax1msy%Gz^"zdrPϹKGpY9G$\^K6:JZQuO#cg}1揕o ^;\3KL{w]OX׿'>9/)퉴#_[]]+}Ͽ'=֟y9 c7]Su9,'}d?W_9vJzޫךkm\8f5f3SϲX<[+*GczΣ(o՛oZ_>XXg?+|b/c̩'xS.qGaXh=_flL 3=F}n~v\EV,GXkGc'?돴ȅx-{O=* rc|E$b.,zec/;/?Ɂ?RuRtUfϨOgc ۏoc>Qܓ$?^B~==*Nc=Kbztm~`^5 *@xz;G%SJz]?"͙oHl:"eeo#vuKF/PaEZom/X=//)ョou8cAXzu??ENOGɺ'ՏWGu~|~~vܳa̅t ^leТ7/g/sլXGM-2'^sks\;sm֝9G.-Q󧩗r_6kb /dNY~*/Isx#oO~sy/̟0N&˒y 8z5)zlu%/GaNֺ7@vTF9Zw朶H-v9 ~'F0YZ=SC>}~"y,rH59C;{YF{?9Ǘe+c3q"~G) ߡ9tnZxl)M=a_/C#ߓ8yrhޟ#sWo1{s2(޵_LE=]iхGx1>Yݗ^__B[`o#.oI~ž_ι>E;Ń+)NAsROynrfΏcK9׌k{u{xi }k΃9g?y5@z@^?1Wgd~:#jezo7Nk"(yl9eV m_zE\:B>Iyv!j'{=ɞ'ʊO.)[\U0o=eOʏ9VlQ< X1-r 9~{43_zew7Y?_Ygs-Eg=G_O=$_8KW?YcseYKQd\=W^ʃG'=a.2> ?cٻ/״o+k#kIy5.#c?V;u.]kL:4i3xR$gX X|'ʏ>^}_xz,jb;eo/qM_:L:8lesRhs皙Jgvly# WaQ^?l~S;C*f_^Os)-'s!<,/gܕgϏ&c]s,2Y5ȻkZ"cf^;&\sHuͽ78VlG>)z嚵S8yö߱s\5/e/X$GyRK_E]g翍-|Rg5eIk}s$[S3F=| ?Z{٤)yЯk'OۋQ!m~unZ}?l:2kܬW':\7n"w ٟ>K"{]|tӑiL?+6NHߪY=1֏ 5~O|ݑ;y+}<zb~ӕN(<$r/s.mu%{c9O5Ul#i/%]Tmˊ=PX)۞;/#Y|;zo3-'ۛErr[J]mQ/垟=u+;kGx g_Eb$t4 ~(?z^''?lɅ{~jGK^sVUd݈.Y;z"gw+_]Ml.p>"v]98Y/,|M%oʧE"dξ}bCvO$u:N|ϵf=EoT5lL$/367zxݑ׼(8YkHvs~WXt:oYp>+3yZK/|Ӣ?5Ί$ɫcîX.ù-/{/^l7ӳz{oJfY?R'EfտuY_E w_Vߖ_^K\5$q?7햨׾PWt}癍gI!~>C}U_pz}b\W̟8piԘ!ΎĺG%]v,_0^"4^??qVdžN+WrZǣsx0򼼻< }'bSjGǢߏ\6׽sE76}Bc,sfm^q2H'hݫΤ [~L-c=}Wh6rŶHssH_Z _~ wi}n([ 9LG Lb}|<ן}^|c3?Wzj^YSݶ_ky7n9=H-ֲۙ>_sw9om+8%9syE7\8Z_qT]騱/AAV|=c32i/]{_:k+++.m*>h>[_9Z:g9m[s"趗)nG!~ݑ9#(9:Eb4{uOO}~t `{${%ǹsl)vN ;9+sO~bxܹkL<ђKuWhFſ$\^y0b~Ϲo'd楏!MաdcH9Sx^l[ #޼+3 v*0ﺀF7s?==@o댃U,=W7O$ϿwΎq˦puQ*OHg;?Sgj5V{Ww΍#ߓv5 ҸFdwkK}ﭿ_IGPy*5BG֟umU ׵c"(q2uaGo臛k[^螞:nY篬<'_?z}EW9Z_gB*V6~溯>$\BC?|۞s?Wbx{~&&wErz9׸cPGzgpq{ș)QsqO'$1Kg'Lns# 5pl1ו=yyߜזsf>-ҧ86ꩱTWGt*spjncȶH.vE.m.&mK2񒘞}}tr/k>[~έ;=uFlLTJk c8_ho슺'{wvGgso>1\5dz硘_3}c;pu9SkN; r-lN%snOK ̩Z2$kx>@El[0J7@xN7bfykCjXdz3_ȥ}chWGoqMlE*]X>8y%RNƽ-}(z0t[ԼWGg&l𽟯k3Gz'Ee-Ҏ]u7]/Zۣ-?sPe\H|OE[~CXO}?is(9|Zd<>XO-׍o 95oy2y{x#7qnIl"|d -ksO*|?{bYs39O=2~fo쵑y3#[9gknG{\gS˼?Q/,+']yG_?%ﱝ `gד?{ikn8Jr\pk+Q'E|ih>ˏ𿜻>Ok3vu^wns>vS{\F_5Lȅ8]Z7{N2Os맫Q3;~q-n_?G?/̇Wcievi;xȶ9]ķQfg/1j:~ 7/Zj~^njy iwF2c̮b9wk,|llqQ|ϧF@#km+Gs#M:<k<Yp{疟6ș3#ۼ [>'z^MGE b훸ӻ=֝/CQsٱ/u_]^Mϝ ̲85gQ"FvgؼbOEkʳLSj=|#Z<'f/ЯF#N=;QGIb&k2N$d/߸QFoxxݟg׋_94Rdy~ho%H &O/#ymC#{a_Hp73i⚰|Py)y&ߜbp=>{ozZYsg Nqe-_dlۣ}ěy~<ҾVb#4ܳ}X?ށ_ƆӺK{P>=uL2e#?=&`.z:3G7R9Qx?Ȉ.zQtGY\ʈw}Yֱ"Ni@>dbLEP~{5c%qgN(ܭvfDv%2osS}yw_L65}R xkڜ!qZDx'=HZ1?ď1ayig ?5g[Yp,5t;_ߧ[:;7KC~X&5"|`| ^kDϹ-3 o_e ܺ=2O3U gF03hi?93>\?/[slj₈ e_ϡs˿u#$rxed-ln{<_kEv:Xb&s˯ղ-#cIl΍[g̚ܭ{weu ΁Gm疟xHWd3ܬsEgnݣd˨QR]ǖob_jd:ƈyklw﷖bnO~.ϩk.?=S%f>N-c/Ls qWYW˃~3.}^#}HG#L^ }z7Hb3b\gYsoU<:g'ac(XF/ϝ59#c!%X:kH5/]ð|~n94gg48&ՂCfOg{[DǤs>!|-dЛ5̟G-?^]z H\Mϑ5'y/-7!mn#1?/" Ӧm׽Yb^ȹ'N<-ֺeNG/V_?Ssa02=]x{ sXS~k-?Pd4r~8)>^bt>ÿ/'`61{.e#꿔8q­}zwK疟z깓eDE'd$?g?5e$^}nȇy˨}Լ$?5bY3emڟK'q?!}Sgz_ es˯5g^sV;>3gy~^#˲ɿxu#9/Ğ5~x|~y|e8e.C!1L{N75"s}w٣:upN9|^<5{ף7r[ ~G=齏5:=D] XuE>ofQ>{{{׮J_css5{*EY2fHqWsUvFsTE>QSs2?\/;ksu5O遨m)mqs}oq<-s˿y&01[wdy?fn3thֿp$ s?(qN\5GcB>{n'ޑ-ϖmv!#^jN2j}MdNeD'r4K;qNkGo- -<,#sԅ%69km3+9˾>0-?>D>k `_{02fc9R:f1E~*lZ΋oѨMC%}Qo]M}~lyOXq`]ȹ#o_9 9VH]Qhkumqrq{"ǘy$~@2L8#jN,_Yl$I]1rs{X'!;:Ugy&'xrㅤ#n0ğq9˨qDqF'~wd/֋5jz3˸eb~&H[i1Ng8""l[جFX"^bn81쎺?pGvldF^?|!Sbɞ)5iD|F\;@~j_GΏ ~^_6Z+kyW.=9sscl]1d7~x=6j{sOɚ;{[$2wF+0Wm7fƜm{wgPdW/4΋sq_NQcD/9p=Y>7g=Q[~}}{Ko5pԱȿ|13x jĞ,>5-?F]9, op-s}s"k…}gg"9߲;J?όwkgp]K0>NYO3,ʁzC#QǮ5+g:ë{[S"gȱyDϋx?;oAolO8eq꾜g6vT'yqß[~@U:625\TYʎ{yŸ"Ŀq_?<~s=9ZGW;NXg_OYrE]Wr]ui9~?`]`|msG?89ZGh95Mu=gƙ7?oq=GdmO.)7疟g.y*%l[y/c_8N[+u?K~ed|ӋZK"kg1.9kXSy~|7F}#Xg%%Q[?^tYwd뿌'9k#dOgĵRb-A(s^[Ecq?<~N'F؟jI`#W+쨹GaZ=$뎶6sY3V-#cc2b.o~ 8d~m̀=#Ҷoig9F[+|B;:λ-?eใg'c߬hb斿&1}Ĩyj^ݽyܮmmGn,#cN_i/c˸hO~FLxNYį:'?b}sfcN^Q=9Sgaz1=amewDKt]邨(yF}ȋ/2\*wW=#sKVڶȨ}\;5C#ﶨm5hOFgMlcdߗe"^D/jO\@ :F" =ukdf%2$gsGI? h=S)Q#̵ߘlKm˾ׇ;*~t~D`=K(ZON>{Ɲ>j9Zۮy7F7uq3{oGϖڮ{q_ :BFwA?~v e7OQG?نXPƢH}<-猱[^ׯɨ9' ~8L.kƈ5ݎE ~ըѬ0=Xy3SsgZg6wV5S[ߨCQ̹]N1U?>G^~?Les28k沴?gG/fOy}Q kjBo|s$/ٹr#7V8'gn2&.?~d_gI{$1#Ozfgq;^; ?rp]Qlr.FWnγSF^r/msO<;, ?"Υr߹m9K猉I+Q]sSz+rHt??ēB_c疟87imW̱ںbszzoԜD?Wx#26sW\bpe8ȾS#S"QK~=7ra}qq3+@,y6.mxQ#$cv0|fW?Q{i56u^u-c-61߈s~ڹ`;Қ1ޘ[~ؿ{9Fw~,cL}f[}ӛ3N?52г /#7'|ʨgjYG/{8$.ONx/>Ϻ-KS2^[~ƙ1O\ȣ8b{" QY|Q3\'m9؏?["ydm/s[iY+e׵UBw#ss[ 9?Y"'s7Dx_:6#zpKYoLϏ)[ݼwF+S8{7g={CWϏŸp /:gWՑ<g|)H3ƍsuƌ> yOGBq|D+1YFw͂O? }soqę/j5j~Z_(EGx=^'.Աν ְ|v7L9U|Pq棱3Qn~_i{fɓ~y~}_"eΙy8נ~lGwSdF˸,1v%'22hߙb^_g}UeZ,6֚s9>5@{g6΍;?a5~W fn9]+&sHarybN[.O:u͗|s˯u2΁E<yXƘ<cfyHWp8#5;:YZc\~wԾknpހ/1HF/)uCۮ8,!`/9:#-/1} GS~m6!ٌ_?:\_(qJƗ;r{ԘsY'bt]˟Er순˘:g=>#{UPՉt`=[~Ɩ77<:agpG#7?wa}/ԋ}-^q?y-斟68-N}1%n=j#L>5o3xgQ}esO0ט9<͇<}ZҖW,?{K]F;HfEe:B~Y/r$yz.h\ ƥg</˵S|9+v,vȨ;1oόӖ \N\v=oȺWύ^FlVbv֡5/OOr~#el9HG7 [ܲer:e-?J#:LIR J,ШuυۢS_^-<~?syoɶ0Jo\(onٺmmr&۰F};Nfg~5NW%?|#97π,k.w[Ԝ֋WDZ#?y'my˜rQͽaNMuGԹٖ'8@F֭E͇Ϝq)G=EL.Ή3b_-CϮG/ۆHpe{bf%^[GC[]iYĒx=8BCd/ ~E޴FI,ZLSǾTFgZk]-%boiyNosrz9™;y~<]s|τ˨yE\=kq5b mkKk,1zœJdތ3!SVX1^[~r*ى=cdns$v%{q>y|yZZ`#O{n]GO)۪Wc?ɑ ۼ uAga?{#yjN>y(3#/hOXwnW}Mx>ln9=VuFsUNݞo y Op=}U-_ʵ1|^%<]3[޾%sBv׹Qo6J~kگ/YQhD͓57ޏȼ?Gy=~| t<ڊ~Waރ-?ɼ?QoϹ`k=m'-sk_,e ھQO ZrsO;PަO&^]gczQd/D+1g6"iFF Z_lW>^}Sh[G?GYhIo/nМGc7ng2ߩ9ZH͞!nۣ}y] v&$x(r/m,,0~۳k|(}<ݱf3-.Glgȫ쳌'·!=q^{V1nYgGSQZs9obTTO{\$p^{#sFݛs_>7ߤ~X ?>X͵^^/knُ<oN+sqy23r/g-IG;qZ[ͅ5+ed;8Os-R"VuyՉ][~=yS8ǾvF<sϽ2 3}+#֕[~w3!w(0eެKKaI\ 疟xB䐧Ř!ƞwrVKdE]\+zH5!Α׳k/)cn9 m~]dt}.5vEư#GO?pc|6㢨q5#GD扉[F#zK$wF 1?=GXFbY_; D/I&.}̓/xw8?bgd rK2،Q#A6|{uG/x7H!Cѫ??짹@Aׄ/0{>_c[VMVk~(yFhc9wfw]H A'Ԝqcƿwg2OL_s!ٓ>+xbiƢ}=?%-mUQɇ: rFԼa]ӛP?c,~6<g溘kB=iK-_cl$~\Zt'B<#g^k-qz';1;r~ʙE=6ǽSdص8MG:1BQ; mN-7D]^PgxR$ay'?k _⿥oZ8zq>hO8kñQe泋s잋mY<-?}1m Kk=^?9+~?ׅE?os' wsvsC1~ǧM}ڥQ=c~xxܧu$9rM1Ckdz"JW@,:ss? YK#:{#\#o-k`tSϓƿ9s5gkEr>V>ﺆsʋ=a}tI>53g}$!wFֺ-`|}d^VQ7{=%/k^0˺s=^yZGoZ#^g3׭ĘaJC>wt?js&89si1y^?}gB.ʿ^<'=H$Fkn1p_A>){%]a?}~< s+F=gsf%G;q^\sy^vNws]?a]ln))mylF?{[܋mjI>n'sz8:SxlyZԼשp 8hJ?_.ďiɟoFΞ-"F6.qn&gx-ںeΫ_D| K/{!kXnLeNos[~]s'E@-s?տYD-^Z䫙[~yD+Qr8O~b_׃\<|Eؖ'>sa<չڶ9q4ɹES #}"v[v8ܹ6kʵ鹟-3̮D'.:c2S6SslggvN?}#O׃8}Qc;-uyv{u@kyl?zuh,qzWE+qys`˟`}nybn80qΎqJwyu_~۫Q\ֿξ6qPǧ7,Έ -E-k}9bXw#jmh΋z^7_$?yhψ`e$_aĹ`Gi?^; H<k-?sψx ˮfJd>/N_wxn枛W]SϛSH[է/]"X#TfxoDgvNE6| r}>YZ$չ{Lwo Dm1ƸC1Um/_o6H'·3`\G?K ?-ڷy癕n˗u@FVbs9QbZd+[Fԯ[{Od~Gk}pg_vu1?wGc36@}^'΄ەy%ަun[qnH[;uUo~>#jL$+gv?9Ί̷e>Y̻q/lrNG7D=dn{㯖ܹs|J^g/0Xϝv(5e$OB\֨qk ;9Hۢ?jn{ 🎋Zܓg)gD\o>rc斟Rcg> q xfgEX[s7RYZSyvyx0F+>qK0f?5GyhK?'TÈ/Ss?g_y>eL"|-czN q5+!znႨr2g\ܗ^#Oq6k{- θq-'\9V'yV[̡}? [?f|CWg]aic碟gsd3~.bTK7s.39斟q~ cW6vw;@9?^?{/߻8gr[Ե |k0)ɚcDl/1(*{N= ܨ)^fc6,}U/Xpň'9'[iylD⠈)[~wYk-yKԜX~ﭑoJ.S\r5>P^̺'g~.W.#׼"<^?kCɞxmQn\FysukoF]W#g2emd=a2ͯg/AQvy(ʖ/}s=9ֿ䗼P.ox&zc a?~Jߵ9?ײ SM4wZ){~#&`-?.k7^7}³# 0';USy#1[L/53{m1NVy{:-i'u3z!?!z^kd9YĭT:ėv}0i}΋S^Å?nqڶ?: K6vbRxqqmu;JUqY1xY|_u V%;Ƕ㌬BoA|;;\{Iyϣg~#Y?1Ih?szU3h꼬 iű=L^}7s_'V߯!N\m ulsqZ.p^}+i:}}&zBϝ1ɰޥy?dy Z l'A9x|G~0&\XښqI>j(_q\=Q޶H6B? y~"~f`#P{0z,ulܷMEm>#]ɷ1Qs!Z#=xy\ފ3zdǯV|޾{3'5xz>a7ى}j\{>fP⹦ԣ|=/k1clӻ?z?>|6ُ6&$W7<2Q{qI7 qc3o8/OEP?Ʊė<5GY5΄Y쒣?Ӄ8!`L|x|װ=;}Y]U_?O$m}%&C9}Ƥ+G7bw%% ړ{\C>5{O +ej%;]/%$?_)J9wpG0~XLz5NIxX.m1N+!{Wp{ri}Gט#ysd^^yƂH|Qʏ"ڐDZn%[o^?:Cܸh{cy q=ّ<79Y|_0my:QSK}>_W11q,28X߶/<ޘDXǙ=4~8r)*G(h5dsCؕrugL:8uGocNd8&^fg'L'Vܥ!z?/1D(|h7d^j=suƔߥg,3?J% {:yqpLbPʞbOFoǔ)hƼHw>?MSa|[qGb8=/?Tr.]"Gj{d]菘~_1IsjDo[;c>}$zDcz'6vLAk1%O^qd#Rv~qoD/bdaϑx#,XqKɡtr_+G2tlsS5[OWǟ%;|.)yd1j=[>\O{5'?:RUTz.Ƅ}Ol9,y*&U=P_7w zy{j\oFq ފ]&hl_piy& Y(=G 1xٙ/0Us}:+c6Y#/.k'_8KlG(?wۘsxLlt5Pq7xOjZ ?_C10G9K3*â3.7\W;1 %i=~9vLv'c`}=ߵ)D5>}N\/JR?s.sm_CW,3> P~H)Ěex3%hCX?R8ĺ'_13Xh_͟W>uuIQHrOy;kOi'M!& _~/wO%z^8(?ߩ{bicL%_'_/I?O =zjG½&|^8x?^ُ@}GØG;}!^0'I__bVO)eKHsgH̓{) _NaCmiU?"~Eyxnfo+ߎ;6qR}9CZ+: Sf*UG*'=i{Ǻd_ bo_2I\Y$ߒ30 _C習+2?㇪~D{H;mRqn?W!8Og?ƼE+VS[j~H}\ccH7VxN/c?+mc)rxO/#b}pZ//돒G ^NjYG'G'3(U⯒B!A0Px<~++Ov9sOG5͡?/^?jgKߦċnuh)6`DC(m=8;ؿ#C?B'_0cH Οµ@m,*g-9-{('b|X{:/տ ^f":h)|ï֍9_PiC+z:#g_"ָ]?P@K£^F%_9{1럪؛S( *NGz 3wͅhm|N/o%7VE½SXL>T/,;DLؕz~9ЧT[֧gӱΕel\ɞ~g|/Z_S?j4 ?Tq<fBnc< xoU* ~ͺuA)ז=߈OEKϵo|b=~v$_U+?zkg?{ig6f?~Gr?3$'c5ן{J}90HBL؀m8:1&=z2w`Qş̧$;OF/?y$΁ck7/dS({מ9^Ms; 㷬t4z4:}@LJdBDPb;`6f̉6%Fe׍18w(o\{#~sUɣ~.WOy&0)Q<;-QO}C1C_SS˛u'=p}4ZÊ+}_Ut{%[Hڷx4'>弲?3g}\37H|F>} '⟨H6#W\r|#gU&߉x 65kօiX?eF sg#s4b1'ʳdYvFw:F!:XcI($O._ĺ c=bsg|VrNʗ:EM~gou^pEY-엤="5ˆ0d }۔ϽoQXr3-xfOZgkY/b,?ZaJ/mC{_2ģgrgLgbV0^?'粣db:N#a*9=}T/ƫ 1?|H]TźS߳xy2,uD+z&RwOV2 C^2Y (_:OF{\bEDkxSsQzK(fD(k*~)/_gP?Wq({'YkĐۺIUT a^SgY%*_r}o1y7P;P|+w#lG'z/Dg_ <6~g^ۊg忔1G^3/xO?_+?%eQ5;~ުuk~Ad"lZX֨d;D^)|6ֱ;z/7KSX1n~!C-wK?'B܈W{;N'VOڙcҗ '*~pS0ߧ~?/JQLuGC;5P=ًU x%'c*#JiQ'1{NqkQKS=ոhq^O==/m-k)`[=Vx]&YUw/Uu%2=uu33mYb_0/|KK<8ωp'qNx)&z[I+Wп2+nϲDu& +=U!}yUH{|'YWLC|[xמ2/0&0_K{'dO O/'gX%OVo}(z\q57 <gpxMbxƥguljp>$^ [:цўV/7 bM)ƺĴoL}dvc;[q~{5@y%cHO}vgՈ_+Sd7>O!>#ևbꫢZ8jEwYGџ;! Xp& ޲鍘hLل?ez9pܟEVU'RO{'{0WgJ_WRUGƴWd~󲨃b:?x y*>3kv_zC's|Z)W1Xa\}'V@8gD/#e1W7!yuwOl!ׇ'jwߌ(eyΧӽǣ5Mkh8!;Jvyp25dmQϧ=9-%5]:)ZkvSVc)E$ZsœA};&>:Ƚ#ׂ9뱴-/+igԳ~#&iͫ<9ēy*V|)x*[e]l[_s6Y{#zg9`=iXS`ZܥƤ'ǷNǣOO/k 1d*$ݓ忒I2ys>^'3%bWg맪 :ϧlvi)m@yMk,&jR>|Ѳ)'wWgm:OgTO9m9GKAA=W~t˾; 1;òw7yTEK)cg*%E^-1@b(>ײs#}:;_2ogC[/~)ޫ{4XOa=KkSO/b,3&g}jMRQRA>3k[)m)7+\vc=뉚}zQZ9-ưfD>9e$߬sڟ݊|,Zeu@3GrP_2_5?ulCGoWT8~\=+k֮+ށ{43DN}''>?ĠuML6`ik$FO?3\2U:~¯%uJr1bۣ>5S-់).SDO*FafC;ZAʟKQ܋W!p3nN|REqMINgvr6P8pHoiW~m]^W½Gҧ_0{NAw^W%ӗ*|!v#^)n4?J~7~FwDV;JV/nU?sAdx zWdZCԣ w$Kc^2gΟq*^s'/u/qcQO+<98cc $Kue :?y[xOܱS1*~ğ)VCΟy Ɠy].Vtğ/gUo6Rg"1[X6j?:/5728x?;_ǒ%o⯾=89sp/?gUd,T1?ŭx:;xu毙Gpޏ֟*{.?SYo`\TG;b ok]~r4? d=tY9揕Ck2G<;(ke{Qī,ҒinMWz5ϼ#?\x~8hzq{^uοb=_U G[icIhCqsWcxr+Mi|^2ps?zL]/K޲>,lk[ߪ_oiyH:W ?< }֚gg׌X$~ف.IE{VH~*b[t{^Ɩϩpf~~l%OEdcힾ1 nx|O%d;f.'{%>zݡLR~\%LNuW|]ǯ$`_Y<1&]n?DŽ}WI{N/:C[cTq_('Η N^롎k̊xWl%U'׿?~Xb8C"؝0$3}9c?f,?G?U:~`X?OOVWĶ .??"3ЇRIŒ,oYh{i?G·=!O=bMMi/e@ߔgc_/s4z4.cZj_GYEf:y;q~.·y}eo罿}/?NFԜ3>2>XeʩXsV,]9}So.HVePh1Q]m~g3fWȦyUG8iԗxIHy{H?~?Y?}-{<.rw"yyw'UdO>MU^ے'OY*_޺ߑeSy^kgbZ?91ƨ(b/ +9dLKy@eeR6tXO>孊oK~L|T?Y}od|<_;az^g߬Pz_?U&>T F? ߱Wܭ9# Oܜ Ο_lCbzg' Cz27?{NU#F-EKyp\N{|]ͣetu:s ^ϕdiOoC_{^[q$Jih{PQ1k~J2'SPK1&>0CV)oYk,$_k<'y_L6CxHo<+wy)z#0DUƧbxOs~)~[=oe'j{ɻ`W;}w4x;??LϕWYkvA ן6~94da%ïJޜ?Vc5'0+ {di_[[z=׳;+yUOdH!ǀxzr<[߹_> IJ~z*L\Sџw?zVֿC} MοGdcNaT?:m)b?RL踺h?bU6t6zPmS8p}e[şW_~'N~{S2?+ݶ&~uZ?ס'Hߪ)v@/A]k?xs`3:Ov? ㇌ ?<?-~B\ŞPGFyOv}TH>S?LWUB[_zeȗxs<_{,\)t֯ X8|g\L:@,NfhcYOBAU%g|1]#q?߰oܫ?꿮_YUlU=qSΟv'E^/`ƫ3癿0O/}O{|XUo%o81T} SG4k{Ci/3qY 1Oў>N2_1{AW߶n߮){x/K\O=Jۊ̎e__=8K+_c>zq&[Wd%qlk? ⷴ\*?WO1c?ˎ7se.ƒ<"7tG{M\coL|iƫe0_#V磲V^87 iwCܗ)5UW%g~dYUϴ!zc׉W7?s_|Yps kI_Xq{9e_\uy;o`Ľ}-z?K̊~ٝrM1\%+==s$_Cɉ%6.ɸXL9_Վ=M:ݣ{gIpⲓsX+'w~qy>s`>Gbzܑs+]yʋ%==a[տ\Ccfߌÿwܛ_?+zi\!&-1sXgLKW1ٌ969q~~jē)=3Dihd\D\y%5~#\~ =D\yaZ>y\]⮾s|kCL˳5*)&ɘO9Eڞ8~H^S ";pf߿<~/K^&c{<5`99u+53闣ȿ"G\6DgE>3cW*u#]kȊxxN>$Yk+=ۗ3퉟0^Xa^(45dxy?u|BgY΁9 a%~U#Cşd8DZ~,/c&ۘzDOL];ϳGwUJ)_jϠx  wzo 12|Q_^ΟOH>k|:&ّ~3H&yeOH\H)~s/9^GJ!Nl0z}&'_g*㺪_r= 14bMm3ŞN'D=Ǩ^0F ד eϫo|ן1?g~L:O!G[16k^Uq8Ώb^}c9`^)XS0\SM^ /3fU|OLFVu ?>hS/g`#׭dSd9?Qf?v_jM''jU?NկD埱׃i7Ӳ6z3 Οzd9uccŬt#f =%SuyRշ=lL}"Cy~kSD0dxl[w0d=?|.EW럭XWVFU?/k`=RN[b1rO'2'v OU bi#lV/cO?$~|bq=a\}aMrHrx$nszr=k{O;:euaE#~@?krHkv џczq>%WGB/培FEֿe= xAe<'Ti+x'%?hO<=_]G_Ia\źGcSZ0m{b~ QC/h*N m5$oHN^ 3%׼~D^K~g>gYf.CAdnks=p~?\>U1a[#ϝ$''Θ8W/ex`UOƙ?R 8.-}g|/.??0V<7jYP>N8Ɛd8{x;^|oq>S꠸~Q~hsKks/Ilػx̿Q&Yo"FʘG\a|HiG*~9ש?_ɿaǫ*9ً 9y~7qGb/NFgG_VG!YfU#'k˜Xxcei7Us!{>H?i{f^? ܎jMK~]<0#ǽx*CoSs[R~~tXkR=Qg).?9@ [8X#bGwI,Z{'wa%T=oDW#*~mW3"#M 7SYe'sFYXj b"W,U<:Q+>7 7rYfux3v;^,??U_OF|}:̣%>ُ5oa3F?79Srg?P13{nxL{MTzg$ϏEOs^}U Uw *c?Ο| jSߝpOz?dG?E- G~a?1CkրhVs<~nЏlKz"ظ۰M~2T ؈Uœ+9BUY_Yc϶ێ C!ý#]ֳk=^܏E/o<~8=bg˜o~d\s?q?<^-TAst|8oGq8>R?2aaʟdNC{;`kZCTx=KuFaw &Ax8c)*gkEO\O/?0OGp?Pk)WC3{#5G?!wɆ+W~%ˑsj)Yu 1m1;cUt8+3}[^<0w0W1q_en)iOzP {=3VTzYo?_}|y%ZGSɬ_sRo{5e,JvL:@C>"ӲN_O3>Gf{!^CֻY!W|ZBw S~2cG5Txڙp}+wuq3g'YsLe+Jk;|q鈋yϺq?3o0#C7R3_QG[8Uu_X|kX{x{^>O9F< 5c3+8OO|W=/ƙ\#$XIF=e/{О'2AH+:oP>m%tdk|dO#YxUf,5>=[ՏYe?t'*]zֵE {P׳/{*>X#Ub_C"}corZ_2!?sv^C<1c}?8Ǘ82<=w}$tZO_>lk,Oy\O_q`[uY $ Um,>_{[ֿK8~囊?3Q/מObީ^Y Xb}e{M;;p=- _^Od+ß js`xןKĺ%x59`̣+ٿ֌Gm]+׎(|ct= gV/?k/ D$?=Ɩ?"'y߉Fa>_&GE!T7s /}_%iMaؗM#~f|1ŪEx2Y_ٴ"?T~<9Hտ앟D7lsjW'Md'Q~Xcq)_ϫꗬ!&B<9Qu~SO.V?CIBN?󿚃~bS”6?ԸȺ#O!+y'鏪3Mկs7ITlGϟM$㟏D{]O6kogz"v싾N۞;>GߞS?Gz>.=wEPg ?3нV}?E{ODoVUξ*37ʀ5X?dц3ctc' c CoW|ir 8ƴ} '#{X*ECOOF8xϜoW%fs;Ǟ>{8&8\IYz3ǯ?Ÿ^C̡c+}Wspp*V;@rmNvO'Ԝg~e|i_hOK3]e݁/cf֏µv||kYI>ϳ|v~V?;WXrL^>Խz_Sg%ϫKC_iF}~a\ϛ;_g.~~I笟 S:^W) cEg\C}WOmr¾$m߈υpGIcH(==Q糲=o3gtb D#1=1XoK&_pSkAx&YCw7>:ί}%]uP&ă)Vd۽翌߲Wmnϒ/2~fmOlǨZ7f\ML^-F>;ƺ}qM=N.cH(;DEN,5hF.WZG_ğc8{w)\%g>ʟ|5zuUHӞ0Qx*&98%]c&Xg9S"3b'9&{ui`>qu+$~&ق9)}s!5&cW:Hwtlc1ū;O^X'.$]: >DpwwD_O2^e~R3Ϛy{3z{}1f0"ח5bx0zyԊ!5NYMϫ;գ׻_М=5?A3=$O7sj/I<㸞CLc?$72S72%c!&r^b% /#;d׌*ǟZSnIg8{BLkճTtm~#}:;W6/B;Ϝ;U[wvI,=Ղgg^٘l5۪s%Ƽ_9Z(??_T|3m}+貧WIRzx,>o?;ҭo⇪KG}Ϋq*mE"?ExܼOPK3cD5ߌGAL69U)g @y)x&\O2r!r9ɌK=,wG%'ǹ/XPW7=G<~ym+ SIhO?8k _QV&WD9c^eo\[@:_W~hO;TMՆU+w[Sdx&mUHfHiW~yU8&Ÿ?:pzwœY?ub^Ո+! ɡƟۼ}m6egc?m$2v!̿(oY،?\3ۊuĽP!sd3Eglq"\霿^FVgaf-M:@Ooe?_NAߞx/kƟG2E_HzA Vճsi+X"Vz'eß7j>?կTX<}dLwccU$0m4׊^C9z+c bKϫ|Bw?dƌwŸ%3gmwFog 'w+p=YoeWQoU!z!1⟌ˢ tD{r yiY$U b7(_P~5߬}K+0Lb/2Ժf>仲ޝ ρ/ċ4?⟴1WeU?emQS|OzV>/!Sf֟+2"+i~_Dz( 3!Gx<8ϟ_Jcoc'k?%[ok^S}w^Vi.?_#~[鿈3SX2G 9^u'){yY֍:x{:@|"ĚZgO|;2^^v8"~C>}DX!_Ƹ^gɏG!cBGo݊s 똳t?e>?;OvUKd\{^3u9/%ãiU*W~mUxw_Xb{O2!ޔ'wc>V*6SmҾn/$U3B:v~r$zz3é4=$\O\/_E|zte]?̚yſb@{n'lOoN~bh$ Sm|p=+{B>Z1auxt= k%ĠP&Gks )dO"q݌y0r>&X?qd磏zmn%_~0,^qeLgܷU0qW6&cT|K?|s)cug|?Ϟ/H*}?t/&+i|?>z|X Oƴ_nrO^u$3#'cHs_?Wš>~.1?1b?M꿬y($N(kIi3 ؉ܞ~O2`/ZE_O;g_U󇥿{Wį/U2c<⟔jК^y’L[Ţk7h0`8DʆY3þZI2!'$9{(qkQ7Og<ͧo+5x4BĆiCD(oC@eO:Ϳ})jꞲ~|Gq3YEUQ9Ų?u 2V)瞌zv9uy9{fO" cO|^(UVk/a5Y5f^ǔ#/'oQs8yA?({#ms E^(=O=ܟ_1CLO_ 2N$j''QO>}ǜNn\t<(|}}uӱwXL==7>X?I?m?CŽs*u>짾psꪕd@Z<׿d;CI)?v{/&{3J̝?W矐ƚ m,`x c uM艘bשIE{zbݷߴKW+S,)Q~~"5_ac,b7)?|v*:}1'UOLRޘ{dO[?޿@%3+t-$D{˸~Gw_}p寳8ܓ{*9}#Q_e)ێIOO"c#}>oESoXt_ b,^G&Ofu}sI5#1Od{)XƙGC@>ף(wMgUJLXq&sMF=*J>QO~kN<]~>֥WV',/_0Ri8L~M{_0½I qes8fNL{UsU׿7V Q߼V=N\&=SObmx%|Oloe@?^CV }?͉?0 "o)1!86)gzs )YeoL9i/{:#㜅R6 YcۛoW#-8[}7u+ގ1q՞^xFss\:Z/*u?4y-:f˶Vx;ymcK#U=DwĿa,.8}WuCL1Cz|{'mC ~qs]QtPO_)rN'*!O{ܫ:_yes#GV\sό7?SΉ>kEeE]:)*[5o9Ʊj+!cAS.C}u4/q~oev;Sq$'q!=Ǣqb5KG_ޞKHslk2P-O[MrM8߰'3?-sRYWc=&;@_L٨)-LaQO֡9xMAOZ3ZS#jƟI=SDEUޫ א6p>$>ފ #ֿbf=ɝ;_*2&??s^nP؉8/[ܟlg9Y /}/GU\adiTkгy>SlKM MQxd|]̿ekw/;ɿAs<̵?c-ޑNoɘ~v2=I+ql֤h+W6L{VUxUΟ|֟ q9w[祍|#yքg3Weǯ+>VX)f^OLxiCo7`8L>WrdoGe]JQGx?Lź?MOtωk(_c̙oqo#$?+!1ݺC;|+/%+V_\όoKǔuJBg,% gn}<#Gsbq30b¸sUG0gwO#w̸dJ'+3F;+*c_Xd| QuF_2X1?kz>MIw]O27RN L0&(MR;C6A+c*^=?K>m9sODz>1o%ηrR#Gg>/{{Krg\0b]*Sȋ:Y_<_&{>|NJj?Ow3?z:j<0Jϵq*_뿷[b݁[_=7׍cks8·ff1f\7׿"^\2t߷25e@y+yQouf俚5jW+"zkw{" 6D~wuk+ 3Yy Zbb{j6Vm//wuL~o)-z_) "冘._K޷c335up#Ӝ__庘ͣ 6cl9]}vKw98bn'g{v7ESQfn G ɿ_~V2uݔmL8DsmooY_U|l=%.o8٠l{="2|~1vj|nv+W9VP/)>?ow69p-f^Ehd?uS~<ݟ4߿69+7ӗ^r8sm{l{s*)CCRm ?nfU=7}&>2s|ck&S}|GݸAb"|S~Qi>n7̦dy{uF͙u*n^<kr-( \20O76gf//"cRIsp3].]sKo#{ Z]W䋴zj{Wo>zQx'ٮO WUݓAbokƨTu8Mxa>z]͟K[k[𞆙uՑ+b}6gumɥa>\¹?ƥs]=J|}]r1׿^g~Pu7(9Q+P__ ?k078y_WXX oUyx_5 Wb^_ 񸫪fQTu oS-w2Eޫ\t&TE,N5M2q3o-oZ1=vyVx-nj==Ҹ" gl&,zsEpUqU8@sj{uW&x ^gxW ~Qqy;>Vv׋|E4ݿTu7@(KG7QV|c X+{{_6F\U< dec)o~(.Wj>&xWb{j"^d\x8e?;s1u5˵\"_+ˬ9o7qFq}k_WPɧx{Wv\KV9e>g[Ϗں7sv3U*|Vu*w^^g/.?OūxUBZ 3W5ۋHA1.xUITWj_0*3>VgV]WV[]ww٧gc'~? ?Y}OV5k_17o';b"7'S^~?Yo}%o>{:~cuݸ7Տ]}v:>[]-7'S^6ԏ9[og V/[T?~zٿ>ڄMx~,唗 cNYjٿ5po[C_]}7G;7F_h1ޢxsw9eCv\}S?[]Y]mu<Ц1w)2ޥ5ޜ]NP?Y?j.}ruuE?xsw9o߳˿~bu}`u}?2oN.[M_YCgV]~|xяe1ޜ]N;McRXeeeeeeeewxs>O|j|vwZ.[[[[[[[[9|}}|5wv%Z{7ǟ<38˿5\En[(ȥ~xxxxx}tu^jݥ#9GWV߾?uw{{ufu??̟ӫxoWߚ~{z}{-R8ߦ'om/Vwm'|>O}x7͵X}Ocu}A r)2;oFV^6'_ɟXekzϭ{͵9oяecNl$PVu獛ksof6ޢx1/?+/ǜxI3αqSly$Տ,71'6Fslj'Iw\O9|O6ޢx1/?+/ǜxI>֙3羹q'OB?n_}V?X]4oяewx֙3\ިvQ/~b7ĒguH; Kaps+OW[gjn㗶Μyo|໓X[[[[[[[[[[[[[[[[[[[[[[[[[ƻ3Eí3~Vׇz?e92II:SniVן_]?ۙKa?.Iέ~Fɟ:=rMߥxxsw$V?v`\~au֙_p;icoN..l~?~_4co߹Տ]4~Y8'^{i2ޥ5'sh?)׏s뵗~,]Ze[E-ߠ[Տs뵗~,]Ze[8'^{i222222222222222222222222222222222׶">Z]2($'v_g#Wtw~殺~xl9lWsm"{kWׁktYyEm#ng]?ro:;-7/M~ɟȗlgبs6F;=6x~,elsm"kVu[gΒQYyE_:k_]]L[co^.ec?o luy+<1eu}b#oяeylcN|M$3es8^ӹ_syE5-aL/>ޢxw$/ǜxHu޻>~~YyEGm=?ul5t~Rew6ޜ]61'>n]w_K>2޼]6˷?\|voooooooooooooooooooooooooooooooooAg䩴SO~j77:ӿոmi 7Wװ~pu8xY >}w){m9!kNY5col)oxw~~]]W]~sZ/V E?ޝ cNYȹog۸#wG>6я:t{FN~;Ǜ˹ǜq}j[y֯w9ixwoomڸwLJxw7's7ԏ9[og l=Vhhy[os$V~1}e]?~hяwxsw9wCv:W[[gUywu6яgoo7[Z׏^9ޜ]P?o}%/]]߿u7y_p 6~qn5uE?ޝ cNY?uۚ#j;lۜZ~uhou8o3zy~|xяwxsw9wQxRXeeeeeeeewxs>O|j}7?oaO^]\]_]_} ȥxxxxxxx}rvvw~t.[=;VKsc~is -----------m7=i2l`;߸6;LCm{B֙ߩZ=vLƛ~?6#`_2ގ8S7mo\"G8[g?[ _ǜ%(sMlƻs6V_ښq>oя 1ޜ~_2ގ8//ffb7yl|Jc-.H6[j->&Ro|GKIo]ueyݽyH6⏹[j->&Ro|GKIo]u¿bmsɷ[}L揥"8U<'v_#sXf1|KͿHͿE5}G>|#Z_P?qs/g~dA\1G|sX\gqM/ 3G>O%ג|iq-G>|#G>yrY@/=o{{ýoog,7яLݗ״1|Q&|t>ȧyNO9o. r^;]P[+;)^[SKw])nscDI[B 9\?z[MR7[Lڥ/|?v||~0'~{trǖ?X8~1{-.s<߿8ajWoqJCG@;Ea_M|#G>6k=J\?^{?~q0$'x_La:xηwf՗l Ϳ;&V|FڳM`8Ϲr|G6aqb :>|k,~lh:|+-Vw7ᳳ&/ZG߱7N |kK{w?-Udխ_=WG=rs8r:s,$W._;w|7{Kޞȿw'xY> ߷?v'o6s_~M`J.wwd?[;A q}']l*ỵT{1_,/:Ϯ9|tv|,jq1߅yjų!Dᯏ:-vt|";1Y| OHa|#G>7^~Kgt"xdy.O6_o~"-Zfxr[lho ѿ sx#{|G:Ͳ(iQ-^Eý)]QswSz? ~|M0YwX|dc[@{!k!wo= ߵߑa.Mb#:KSwAԇ|}ccG[@ Aذ|p߄cO[|opl^baw>D#oWXGnbDWhK?s}bE&:6W0qoc.6&|w;^eqʼn%x7㽈?ckMyUbS韥ˋ[7a~eMʷYG-N s¿{⊱n G-?GJ\|ο&d||^,8c> ˍS9yܺ"&Mܳ;03ݳݵϪ~ g]]wVd|c2>A>/&gSWOX͗ S=uKfqd1 ,(|?W|}8?JҿSý=W)1˽=?ŧ CjlYklҿ½ggߦ)1/|G,&|V͗Sg|{YݫͿSc21 o}3og-v|qLi>曔o)%_|5l=~Y[7iXҝ#-1|->|k/!fZTG~JoL96|K/w?p埼4 |7 _߿_5|c_`M 5K#3-[uWV7ΨLnխ3>+@j¿'/X>;eħx'7)IMzw|O%_{|q}Lv c/ `21_߿_5S4_Ej|4HM|#G>|#G>|#G>|#G>|#G>|#G>|#G>|#O Z^¿ý=go;_މyc?wq+_,/_hZ#=?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%WXlnb~_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~u^lqccEK,.R_}h,NO80O8K__ݿY-x<QTWU::WWzί>~T_}WXȯ>oW&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gy_݁cb?8>!iz[PWj UV1wTcizD_\ݿ]g'UWz,ΡyE J1o"ݾbZ?c_/_3O?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿bb6;Ke+,V[,Xi~?3o//}k,3oݶ'gv٥nH\+-6.> ~?zί>/O/W?q|珺ww¶T:Q Z ߅ WW?B#į>SU?n,8$į>O5VWof}BG}u.ֿ(u~ߪWh/__}WQGݿ/J:Q;ί>޿u~_E}uǿ~[ǿ~[ǿ~[ǿ~[ǿ~[ǿ~[ǿ~[ǿ~[ǿ~[ǿ~[ǿ~[ǿ~Ev%o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?: Z\bqE>m =mOégyZßJwi,=m]xh|KZc-?*4ɏGui??O+osK ]7=P/O+oDZ1yg[c9$?ǿx≱1yg[5ob]7(_'?ǿ ~1yg[KW.]-47G 6>&{w%;=X/47 Y±٢ ~+/7Saep +ղbWVXiw'wg zooƪߏ5,F}W!SW:?rowUUΏw.}|W_=;h¯^uە-ҏWXJ7wnk߶lݳ> x?oJ}2lOEciW?/-{^ Uͣ]oKK. iW?/m"GRo;k} ¿yԿ+wuˢ ¿yԿ+ݻWv ¿yԿ+?[!˿bŁ9zX˿ƿ̟lw}bn:hqŃco=/g~ߕO}{_Mi[ϖ~9~f%go=쎙^m~[O3OOJ&&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o";[-[-[la^Z\^|Y\aqz/M8⌱ z/MϷ ,.*>Y_&Y-xW? !FX_&|ÍY\/į^ gWFc~_mqb9c~_?\WGko)gUo_uK;,~_k:0?U2ސg@w! .{i_̿} ?-mWc~ U?2e˿eʿX?k/rc~ ?~u/_ǿïˏ_.?~]~ ?~u/_Ow}v]⦲mg}Ɵ?ٿn \?U_? ?C[;W'ٿy]T{~j\Sj?dV>'ٿu ?C!n?ٿm+<ߕσ7ͣ] ǿM\Z|~X_}u vY>~?mq'D>ǿW?Yg {a~?mD1U+wםr^c~?mr=rmxD_}O.ϖ[X*Ucc~ſ, _l *ǿ EX\>6VW?gU?Wگ(uesu4?W^-S??WV窨zecc~_E7'ǔ}OoG U֫KܹB_WQ?^76VWU?QO*տyC97I>?Wߕ-?np!t+<ߕΝㅓ˅ciWsK<[13B Q7siW۱ʅciWQKw/s? ¿yԿ+?K^ſm kwXXZ<ߕ;d`pz*Uͣ] 9X_w͏ ~c.oӖogWsǿ?/;2~_ W?/gߕ_mzX{ _/̟lgb ͏ ~cq3O?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&R2lJa[J¿ϟ]WXX'XoC*atzRJ¿ϟcf?mHſ'!U߆T~R ?mHѿ WV,vX,YXoqŹ߄Ye߄dS-ΰ80VW? w܏{ǯ^ K-./},J_&/XcKUo5_\}X_&ݹXx';8`q}!i׫wO8oIσz}97(=a?σzU/ rσz=lXci+yq<캐{&J4ח~&0Ο Yte± J))w`U/7+-.USROIſB7cK˝wso@eRO 2b_SR tE± J)WmTwUSROIտj 4ΟeZaLJ6ΟՎT/\Ŀ}OI?%~EBW??vR?%uT~mW} J)WV,vX,~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~uoqbyuRo~qg,*~ۄ1IBW?&YY[ebMeS!~p?Co~^Wj?d;(TOsuٿ?=?WÏu?Wٿ㿟q7 ~߶7ͣ] eo_SROIſ*[,Zlfbg ?ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/il}X_}|- *~ۄ>Ń޻ o~{,v *~K;ǿ~K;ǿM]oY**|^Wwuwo5VW?ӿ,ֆmm,ǟ rk"럫˿bPUϲ8ұ zs%[\\z^!į^\~ZlQZ*տq_jbPU񮶸^_Z?Wj?*Gί^zz,(U[?U7?W?To?~ŹvU럫OT¯^W UWm+?[ 9WݯXZ<ߕDេ{d1z ¿yԿ+Zf4VV7wy DŽͣ]o3?waO+GRm'* Q7<:ſ- Uͣ]ogׂUͣ]o}Sw^X{C9zX{B΃e`h[?m ?ߏ=ǿ?̟ ~_ WbWx?'Eſw/_O[ߕ̟oJ ~QoJ ~QoJ ~Hſ-YT~ېg+,VY (ToCSRp A߆T[.EkMB6j\Rz?mHɿqVoC*U~?mHſ?߆T\߆kw?mHſ*[,Zlfbg \OZ*ǿ7Ža; c~_uo¿t}wJ_~__߲wOi¯^ ?n/ǿ7wcV/C:bw{ǯ^ m_c _Λ+ǿo;/U/CwDc~ ]ު{a~ ױ *!-?WCX?d~__⎟_oA_?w~[ǿ~[ǿ~[ǿ~[ǿ~[ǿ6>[mbMeS!w}"|¶6~ߕk+?d~cB!_jY?d?dj ٿU??C ?Co~Q;?C ?Co] ~QoJ ~QoJ ~QoJ ~QoJ ~QoJ ~QoJxaC!y_/{,v[|{y_]{xo؆ ?~%n]i׫})Fy_/_);=oV៧/o?ŽVOwb* o)7_+*\3J)wECK**)_*]OI?%ŸŸ:J*Ubb6;K?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ__ݿX-8dPƯ>ǿMam&~?m[u]_ï/Zm|a;*~ۄ})U =?nF4VW?__?m_ ׅ }pg-VZXg*o,ք|*ǿ 9Y\16VWu_mkPU/F_w|T iq)cc~ } X_C W/,1 zs~KJً-.-9~8䱱 zo?~_$疣7?w?Tx¯^~?gG럫Jϖow%GR]Nw枰j?oJ}?yb iW1ܓ9V7w\߳x~q!iW׺/Fwͣ]ou\ ¿yԿ+=s6XZ<ߕU* Q7~y v߇ ¿yԿ+S+!<zXڵ螐o=!bſ̟t5CѸm~[O3OOJ}[2'/]o̟y ~_ Wbu~o=_,ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%ǿ?MW?~[OD7w%oۿ,օmm(u?mHſ+CX$ToC*ukgB6ߪEOoCSRoC*եf?m2?J*wV~ېկR ?mHͿᇿ WV,vX,w o%5oX|L_&;v{ǯ^ Y~?UomW,߄!=± z/]^_;wvJ؞ z/M\ ]{ǯ^ wW3rk;Q?¯^ \OZ/?σmVZ`ԩ XV.Ο[l ty± J)whUW//.uSROIͿ /XklwΟ _*cbypŸ:JU\?UO13KUSROIͿYCT ^RƗ:)_=\8VOI?%V=﵁[?%uT*ׅsPUS J)W}TᏯoqa{aSRCo3J)WV,vX,~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ucmm]{ /nݯo~/޿n?~u~r}/->WB~K;ǿ~ۄyVW?&*F}o ow U Qb/]iXmbŦ_eq zsoUB7Zl gX76VW]Vk-օooq!~_WQݶ6_yu=al¯^\~_mqmBտZUO8!~_OXX_WGmǍU럫UjTSU럻U=Ro_럻UOuR!~~_nRc*տmw%g] Q7c_-F^MZ<ߕ;?wO+GR?^{?c߃Y!iW:]XZ<ߕm?[~o7hiWöw9dY0o{Uͣ]o]¿yԿ+?yoۂ ] O+Gյ́޿¶ǿ?}n?~[O~Cǿ??.?/mOJ}_,_}W-^}o5Vտ'g,>a}\wz'ZhŸ_U5}+GkhS> baŸO̟;/_3]wQ:wIo}_ƯH#}տ*[{-bž4~/Cwc~ }nƿ5\,?_O_W`p ?q[{{Ǐ2?/~]~_5ߪ?? ʿ/^fO$oΗ[\j?d<5o7Icѳƿ?Cj ?Hk~~~_~_w?dj>bkƟ?ߢX~񯯿 ?WÏu?C;?m?ٿU_?U_^!W~nuz}i3ۂ6_wHuw*6߸SB6~׋߆TE꯴~RoܿT!OoC*; raSP?!>?mHſ/J'!߆T~Ro] ~QoJ ~QoJ ~QoJ߶_j-`mKB)Y ս$}',>aŸw_]τw?m_ǭZ=˨oG->n~Ÿe냿,ğwVY}UO ~KǿO ~Ŀn|E}{]0ׄSβm{.>aŸww ?mURJ&>byȿbPU/3+J}VJSRPn[1lqfpŸ:J*6C.ڰ=mLZ\P.ΟWګ?c± J)Z;U1]Y_]ΟOSJ_.Ο/*yyJ)W SaG0VOI?%V˪R |7USROIͿTO0SKUΟگ.yWMBWO*)_*W?%uT?gſbvm;,vߌ_ݿ=׊!7^?x<O~X!7^?]Oǿ?~~~_~n?C z~n~n~n~n~n~]!7ZL?YiG`j/zŝot'-ca{wئŸK??l>jqX|BSRߪ}^?vh/Y|EwVXoU붹TWI_ߦߟan{cX /ourԻ?uW?5ǿMzjtE_jzjI!6oU.s?o~u}} jI`P ?7Wg+-V(TumSȷbzs s[}O_3-?W.h?7TU/."U럫O3,+ zso~FqTzŵaޫ?W+P?;c~_Sy?WWO*տTS zsŸ¯^\kKS7W焱 zso~*5O0VW>Uߣϊm?φmUeVV*-⃅?}`V*}e~߁J Rb?J>>cBJɿn ?R? Jſ==T;SwO+ωWZA/χ+W BJſ=w3|V*?Q[?u{2O+U/!ߕ?=Z.=sǿ?vsǿ?m͏ ~co`@4nNJ_ӦouW27 >Ƈ,?'_<lg7͏ ~c\ǿ?׍m_ϻBi-W #|o߃Jᇿ W}6~M~)~Ro\s~ې:R?!/߆T޿RoUonYPᇿ W}6b?mHſgj'!.VXXA߆TjbuzB6_~ېs ?mHſ'!߆T[;X+~RCoC*U_ W6_~ېoC*}}v{ysPƿbvm;,vϋUSOo&\ ͝Y|4R/M?f~?~a\{x{,k0Ts |?U~3Y_WWo?ϮuxYÿ5ivo?Vտ?ٿ94p)ſj'J(U[?Uտ*[o[]{,T/C濧uοǿb~ x0lǿ/~]~=!oO?d~uj2~7__{a~ ~]ERGy_Y?5Oʿn=Ooc ?Co\Y}O~_~ߛ˅K,?CY}}t!' ~_nk7}}O~_~_~xT~?Cz-6[H?d^`܊!wM\nǿ~[ǿ~;;qPꮟÏu?C;ͫ{_gz;gX?mHտwX%ToC*u[5;P[?ᇿ 6R ?m2?JSRz?mHſ'!))W3߆T;xM?mHſmw%o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+?'o"Gyz&¿yԿ+}}rW,oVX?%o^x~B?m~'ߠŸWOol_i9!\:J}㟤};~wU'ǿwqw9gߢŸ?ߦ}U_jÏs{?VUsSr} _?ukPc\:J}Ŀ}>8>O2ǿw]ȿE/ *,~X_wCWjW?xS*տ.ڰ7oyQ*տxe׌U럫;_S zsouAuT{ޣ zso~ Smtw~_S??W/*޷[oq%BտxNu=ql¯^\յ $̯^\޿?bx{X_wߟ~o[χ7VV*\F*>,=w O+UVpW[YV*uyw琩mWw O+|u}OUO+g$?[?χ?~E,nimm?~uvt] ?V*U_?ߺ{ O+wO+ߕ?7-ŷ,=~[Oyywظm~[O[Ӗ-~ǿ??ww݃vn?/g./g^ߕ_u>v=~[O+__Ow7soCK߆~Ro@ROoCJU^?ᇿ wg*~ېՏ )Wi6??%)_OIſׇ,6YdbR˽bcYSR˹6OoC*]oxQ~ېEq6%a*6_~ېoC*U_?ᇿ wZ?mHſ꿟6_R{I68+-[-[la^\xOG`7i;v1=XXMa.=R'o__9[7[X8O?O6?vÜg0RRձ |Yc歅?v`7iJ wϺIo)^jw'R*?*W;zGb_~!W}o[e0Rʿ*[{-bž4~/Cr,X?d~{U/Cwgxp2?/~]~}![nbm;E럫]WXX'X-αhl¯^\{}vmZCƟ x*p?WTzBW*l?WVFAzZ%į^\[vO,ζpl¯^\JS? zsn ߾?W?TᏯc~_E_=7#į^\~_~_Sտ^oqgo[χ==ѳP*?T߿_m {=>7 O+6Z?*GU?w~u[)f!iߟ,,l[χ,Svcw?o O+<| I?dco%?T{bǪ^XZ7^?\?ۅS! Jſn|]X;kxJ};?IZW!sUoV**>=Jkooq`?A-͏ ~c9x{9zXY~ې{ ??{عϛγ?tU ~;{c[`f'?{?9O}ckwM_Ye,w]9Ͽ 'u[aӭgH?&ߜ_, ]?&o _]?󮻆;!ǿ5wg LK!ǿc>nbO]1vX?&uT>>- _Rcv~:L*U*7M'Iſ;PUq0ێ*1Ǥ__?wObKϭ:L*޶aT{ L17 hqs;:L*U*o[oqQ;?VI?& 厣{x+?&C̘.Ǥsh`Uj׏oiucRIſwjW= L13>znYb} 7XᇿfOٿ/|37տ~kz^?ᇿf=׵R^?ᇿf}eU_U?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7ß¿_Ͼne6?}/?1 z0t iC?*?߯] u9w50_4_ wa #7mşZ|O,l 羏f*?%?jwWBǿ7\w}/e~#!;?k*Yv] ͬ{aK_vZ؏\[ur_d9o{0;!Eoǿ}νo ?ujmnb^;* _-nU_϶w}wo?ُU_]] U*[^<tyʏ tOK-~0VW-U_Toֶ[O~?.Ԃ3}'oݻFY3>/ q3{+|LY^~¿c~WBJſ~~gc7{`GoMwNV_V* 9lÿ~`;s_V* H%oOaӽ6ݜR_V* }7z5^?@*WY3Ϯ=(O¿T*/oMMR!WXYWw}+wv} Roj??l&YηY~??>OéjPY鞽ǩjP̟M =//'ſO]Fӽ,ǿ ~C26)ﮗS??)}~_ߴw𧐊֏Z|/ ~SHſ~SHſ窟?𧐊.^??TЯOO!~5Š~SHſ;{] u=ׅ?)_1?𧐊U?&O!OO!OO!n϶ZlmbP?T ?)}w?𧐚U'𧐊]⏁b?)_ ?)_ ?)p< O!5n?e?LjUR𧐊g,[8cqv_c[N͏WzE85?]MI_ǿ ~C26)ηd ƩjP̟M ~R]Oǿ ~C;?ojP}F{Z;dq{$jį ?ߴw-+w18ο 4;~`W-fX?&:Ͽ= 2 #LοtWֱL߱0a ~o`Xw=y?͝?&o qcǿc{93U ~ ?1f-v: ~;F_n Qn71v~¿ǿc{qH;?V_V1ʍ;, {ow5kkp¿ǿcbq[[e?ǿ)7}߻- Qn1 x~r㿩{oo* ~;Fɟڿ=w8ߢOZZ~k z~n~n~n~n~n~S}vY->+_`B?]x3l_ߴvw߱͵~z~ ~]OYskk_ofow] u Uc~;ֿar{p?-}ywK]U)7~4];UKT)7~ur3+XSn^ #wl_ߵGK=ǔUU/uG?y~aZ vZO_=wZ-nm0VWϿ:?. zZ\bX_=wZ{ z/oWǿ5_Nᄏc~ivX_=wZK-~0VWϿ:?߭Wdqō7c~_ߚnl^CG,O-7f](*Jſ{8lqÿ~ܗXYsw /+>_sV? lXYWs¿Tk灠v?ᏽDYOi_e_C7|¿T J yp9ge__?Wsu~{/+r\(oyy/+?_eS ~C=kŋYǿ̟1XnūoX~?Mݗϯm&S۽w{ڏS?|λw5(_&z5gjPo[wqj~?4yfv?85?]M];eS??}v#[cR勇;t ׽kT_C jJ?T~?)?O ֿ /'ۮ~S2ϟ?&w5ijRoX??)?O?T*2?/&#[Fe?cT ~oJW-#S 2j1¿e*_jώXkgϑʍ1-x)[7%ח- _)`Ĕϒƿ? gm_~y/0bʍ/cmw?*`Ĕ? پ~νnǟ/`Ĕ? /پi`OL{([fzW-tV~_'לmXſ.G%,o߭;fw)O󿅑e_ ̟r_Կji<fWt~OL/_7#~_Uؾx_kwz~Xώ_3η_0Vǿ^4_k;?gBsƏᯙo6c~ uuP`ᯙuM7U/5k~8~vwc;P@ɍ?6>ls$'?5OV~ V~=^޿/(/MU__U_?޿U_U?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7ß¿ܵv}׺S ~SHѿ?)mw ~SHſ?ßB.:+O!?',?T[`_;?𧐊w! _z_?{/jßBjU]?¿Iſ-#S 2j1¿e*_?]M?FO%ǿ ~w52?/&#[Fev {;??a}<*1kUcs9f[_ ~[7?Un[libŮVY(7fqw;?V_V1ʍy&[ Qn[;ce?8x~rŽ7ce?o׬hgOjʍ] 8\ΏUwrce??a* Qn7U * ~;Fɿ}Ϗ1-x)[ǯ_og ˍ?ٿߟ:_]T?v5T1Ïu'YMٿj~QÏuP_fOٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~O_߳[|gt`%!{=/r!Ggm_|3ltA>;zl?{|ŧ3B?_]??74]|5 w߇cU_?]g^V? ~;5PA٦}~wU=~[V:zϷ4k*zg>3A"/G9?_Ey~!O~CGc~iob`¯u~;-ݽ_BWǿ_lq+->UΏwG ? ݵs8VWϿ:?.-mc~iwmc~iX_=wZ~|ŵ zW6n Ʒ _Nj7_?_wővYu>ķU?UU'>~> /+/)3t?V_V*u{?jgU?ᏽSYP_? i_ea<_۟_V*!O7 R9,zf5V_Vj!?λXY?xPYW~?_eS ~Cfś[ ?ܾ^n:+Mw5(ο̟M a>ǿ ~CqelRyy׽`&I^w??Yw5(26)ε/ZdB3sj~?T=/r-1 ?/ŧ~SHſ~SHſ3@%ßB*UßB*  ?)s^~ WR ?)_W;bRoX??-X??T/ OO!J?FO%ǿ ~w52?/&#[Fe?cT ~oJڿCG,OZuǿ?W{zoZ_Z ?G-.z0VWϿ:?ͣy0VWϿ:?-{|!!~>;`qȽe]f± RAÿ{7'Ŀ{߷Z M?V_V*vOB3;lw /+Os_V*Oÿ~{5{ce_W7{PNwp *JſCi_e߃} ?%7o Ro73?/+E*??/+߿3}{ceS ~C=c?x ?^xMW-hgR?^n::;/tN͏W7&֭5k~w5(R3[{~yw5(m?&O!{*8*R~yH(ßBURo^ .'?T?)_ ?)_ ?)_O!??)S ~w52?/&#[Fe?cT ~oJW-#S 27_1-x)[7ſ 0bʍo?t3*`Ĕ?_oo~6v0bʍ|_ÿl_w[li*%WX =֏Uo37]n*wUkZf{Ͽo[`?ʝTKn?f[ʙT߿khn?m_gyz1ȍ?_Ƕg,?x.f&?gcsn?lz89X?wr}%W1ᄊ8r_}Wk Ui}|3}_ɏȱY^~f~Sn?_3'Li rf~} {rf~/rf~w}zY?Sn͵~.z~nnSn1}mž~J(_yի_>˙"~kz?5woPr~k_o_C]V?ᇿf/_}tC~?5W~U_>aʍ?ٿ[쳭qr~k.zhPᇿfOٿ~~~n;_?5_l?ZOٿfޝ֘Ԃ¿ 2ϟ?&?/cRo^3g?)_ ?)_ ?)}'𧐊Z?T^??T{wa ׽sH%ßB* 5ǥ𧐊]>P?Tjk*RoX? OO!OO!/ßB*V~ Pۭ?)]*RzR 7|綫򿣏P ~;ƿo^*'B1k8݃ Lud\?o`{Lοw ?]gs>v *1uǚcA?aٯ7oX?&o ox*1k8.w]t`o;;b LοoR*fm}BW՘nǤs_ _q+ L1W~dLp:L*UQim;?VI?& Yaq?&_˜R+ L1W~_cR{|U{ccR m7ǤeX?&u/'t X\׏UcRIѿ _MwUcRIſj]YBW7T~k{{ťW*/տS:,n 7 TO7m_Z\0T=mw*/տSWY\?T;B/ݿS zKjT'^X_=W~_l1c~_Vjkc~_C7l_4?Two߮9Ξ#9qR{;|J }8e_kfo R9"Z? 5}\;/+Ԃ37¿TM RzWYׯ=n5߬oU')_ f|qR~FӞUVsi_e߰q_D?xby}~K6s`/T~?Ŧ+~cRo~~~R۽ov0Hſ*3&_Dawk/Z_ rLÿ^hf}o Ǥ_EG~|aUjs ~Q?aDÿ5v~]Gv_ſ*KLÿZ{^8&/1"r~8& ~?&O!zr#?𧐊'𧐊OOO!z?)_ ?)_ ?)7k'𧐊'𧐊O!'𧐊'𧐊bqo{?)߭ ~SHſw1BRz¿Iſ~ah?T޿ OO!OO!~SHſ??)߭R c[;bq)3N?T{>;18-O!ܻz`Rt]*RzRZ?)_CO! W¿ 2ϟ?&/ßB*MͿ.] e"¿/vxBY_?>.UeNoRwk¿/vq ~P_V;e_7! * 2osW /+ǿߤT>fbw]Z`L7YƷ:1Ǥ߻-1/8*W.X;?VI?&Oˌ -.Ǥ[cPU_x}7 L1;OfY|{:L*U*Gُ5 L1WQl|]:L*U_?TMw-^ *1Ǥ-9`{pW(**1Ǥ߰_T/4K,.m*1Ǥ_^ VI?&-ccR c[̏U_PW? X_=14~_un/? E͹C_=15]\̏UoG,??kzE,^h|Dn1gF?Gn?azf~Sns~UכnZ8cuv54?ÿ,>lXݿ*zۖ3E?/Ĕ?_k毡͹~b]UY?T_??-n89_3Kͬ}1/hg}ñUc~kǿïˏ_.?~]~ ?~u/_ǿïˏ_.̿gY8`q#ɍ?ǿ] ~n{_=}s?5W~oo?_vV?_{_?fܻC_; ~kϽ{!}V~koj?cT ~oJW-#S 2j1¿e*_?]M?FO%ǿ ~vw~ wh?T{P?T7XBR~8w'(] ׯ=sv?)_ ?)aT_?T~?)I WR!𧐊SKq TeNwq`¿/vr*Ŀ/vabWGY_?4{].Ŀ/vXUeNaK j>UeN ~#P_V;]P_V;]ՃP_Vڿn9 D%*wccR}rϐjUQcv~:L*@~_oL7ZƷ:1Ǥ__?im߳I?&`Tw[xk:Ljj yi_cRoxz^~:L*_w_fccRzSۭ7{~|{:L*U/6Y\ΏUcRIſSv' 2Bzp:L*Uq'-x~ǿïˏ_.?~]~ ?~u/_ǿïˏ_.̿o͏Y8Cm~=O?cqV(ÏgW_?OٿE-_S(7E6Oٿ~k;ٿ~kz?5Wg!~?KŭX_}tq Tw vX_}ke5c~?{쮗nfw ~U[¯>ǿtC#W͹C_}_tq Tw M B_}uyw}v},[l_n;c~ߝ1bo _J-nY"įgUon;v¯R|ծT߳}]hۏ */տS[;w!~<57 */տ oo{a~_] lV3U̿ ;}{{!~_!2c~_֫loWU*aU_SO%]wp/+[FRn7q`¿oJ eTʍ>U-#S)7+W /+[FRnWEBY2?rϹ ¿e*wo_!ĿoJϬ_ԂwoJ#~-Xmu?E,^1)T 01"zȢiqD>ͷ{wΘTrx2Lÿ.1Y|Ǥa̵ ~Ѱ}*=d?1Bjs1"zMTm~y{?/m17/Y1_{G1)7翟 ~Q-o ~Qoj?cT ~oJW-#S 2j1¿e*_?]M?FO%ǿ ~{}vn(*R]X?e?L*79 x?)]'X??TT?)_ ?)_@%ßB*U_?Ro~x~SHѿv?𧐊կ?T{}v־س1-x)[7]P?cubrtqs3?V/տܜ;TK>juk3?V/տaJXTOs/տ WTZ|{gs/տ~_ fol)؞͕T¿YCTOk~{ٳ#DŽ?}lKX3o̿>#7Es텃qLw_?~w,޵x?f&?~οU+-i?1}167>~wCߛal"4e*?oOQKۮ ǥwo_#z7H?1~135=jUz73#)9_q,Ïu?5vkԮvu4OmjWÏ}+?M雼?5W~?խÏuOٿjfvGPᇿfOٿcի_'a?/M?W_'__Cw_'_ٿwgw[lmgu5??Trbh?=BR~j~SHͿ 𧐚U'𧐊j 𧐊?T ?)_ ?)߰T??T~?)=sDŽ?) G?𧐊8ßB*}7H_C?%O!/ßB*UßB1w~B(ßB*U_?T;Q?)aT_?T?)ǭ/֥} Luºb]{cw M> *1su_;Ucߛy*1su>nUcp;cǿ8~xGUcosčB1 ~9/7s ~ {s7wǿ5\?Ǥg۽ܽf{V?&uX?U?aLWYΏUcRIſo̿ Mt7[ڏUcRIſUߵ>Ɨ:1ǤZzݝ_V?&uT^?U/3ۮ *1Ǥ_c;{6οǤ_S{p:L*UZcRT0kُo:7WcRzT῾~| cRzT}?X?&uT2ߏ47,x ,n]ݺvor~kz^?ᇿf鎁b^?w}?5wk}]+ٿ[c}?5wؿU_fw{Y=c;ʍ?5wX??5Wϓ^{  ~koxv?W7_U_?^?ᇿfgFܾS~ܺ6]l lv[s.oX?6ǿ5ޯ5cR:Lwk֏UK1ƿHsw4] "#//Ww-X[ur_]g%A~[rsP/T)7E__Cs^?V!EGo޿al/S?c9ac lŎVkT[lcv-~<ō*ǿy_KϹgv]Bǿy_=ׅ6P?VW?3*y_.~ x@(*7[v */տS]`¯ZUlߺv7*/ݿSR+-U__߭W׏oWU*Iaۋc~_ח~f$O-7?|?¿Ts=G(o߽{h8V_Vj"7ÿ7/+o }y= {ק?ce_[¿T~oJſ~noŮXYW} _e_ s_V*j3ҷ7ݻ?ce_]V_V_lYY׽o۽/Iw~+Y1DŽ?yq۽C8&߫yL ~{g{oovuo^Py*/ˍ*kqL*\/R#}?\01"*UY ~Qɵ~?貶{p} /"jzSV;\?̵~?_;7Ǥ_/w;8&?a{i6ݾ[lk𧐊g6]#BRzRϽ'𧐒5bRn WR𧐊'𧐒O!??)ݢRvv~P?T> ~SHſvn[0ßBURv 7_??)?e?L*U_?¿ 2ϟ?&u?fœOX7E_?tq0C̟r } UoW=A[)7w  gMO9֟s/տi_R>xi_R f_ 0bʍ i_R޿O[-m8aqPl_oX̏cʍ?_w8ac~bX|(P?6)m{nvVnHo?:cu+e-~jV̼M~%*SOW?-eWZ\3~߹E_mf}ouPsOk狆cqܿSؾmq~8ᯙ~Zbn?5?9qos~kz`Pj}1Pᇿfݿ~kz?W7_fOٿ?Ww~kή1?)??)߭ٶPT?)~뇩?)__?wOO!k_?}O!~SHſJ-O!/ßB*U?)_ ?)s;O!k, ~SHſNB(ßB17\3ݪt?)aV??T J?TCO!5sv?)_~SHſ?/c¿Iſgݳ#9aOqr0V ~;ƿjxAۇ Lud\?jf *1k8~x]7I!ǿc;k_8aO4۞ ~[ *1quǚc|Gcǿcp48bqt0V ~[ww{x@?&ο2ޯ{cǿ5_c`7ǿ2߿P~w:1Ǥ_5jWҘYǤ}m5QN5ǤUC L1_O=罽g9>;9LjUV=_+L1W~ױ L1WuPo1Ǥ_w*͓?&5/*57ݫ L1WQwkUYƟlucRIſ3`oa_cv~:L*>DgIrq'-x~ޯϒ?;ۮcߣT?ᇿfӿ[~j^?ᇿfOٿ~kz~~kʍ_'',NZ?}P(_yի_]] =?ؿ S^?5W}~kQ_ᇿf߿޿U_f kinG.)!>{0'm_,N7!o̗Z(7S̿~{F?6ǿoX?h_7]h*U P?]ſ;\=Lngñ lkXvg=)_:L=tqzT?K9l8|ups _v{ \?1n 7z zK7|+־}Vիݛvy7000 C(?-α7VWP{Uu-BW7VWP!0,N87VW{E,plƞV!~2ϵ9]_ޱ^O,87VWP]}SWp*įW}PߟkO87VW Uko6γVW?-3*ڶϣzc~տƥ cq- R13a|¿C⿫_;U=hx?T{pÿ7O+OP?Z*q ?T^?_ZVj S-/m3zrߐ{wY/0)$:µ{)7~g\3%DGv͢c;u|SR7zgM=?%D~O BJ*{nX%!3PßC* S~sHſ 琊!O!)  cp^-Xk174ml>7 I4esmӴ*ÿo8n*C~}n:'/մqwpT??G?T//95 Pۯ74OzoCz1wضlh?T//~ P^?_ lm[,Z;G}ß^XhlvBIjz)-x:eަ<v7Xlោp#-n,v!C,8P7UzgZcq~o_w%u$qgRmO0[OIuQ/I/-_[eqin7_µϮ?I?U_/R??Λҵ}~ZW~Xݿ7s_-nXW`SBfwƟ?_ ?7jbᇿf/_'_ ?~ۿU~ٿ~|]oS(_oAȿBۯj^?ᇿfi/_S-_'_ ?/?_??_ٿW߮ڍe-!_#!^Z??T_(!E*O!5/ßC*x-2W~WR!琊Z?/ߍM[mn)!np>mwwS]'琊wPCU?9~v?9_ >Fs*RosP?T7EUßC* s!琊!O!O!m}&g?ſ>aݓA,USOn+0;}O ~;K-^fִ>VO ~;^?76@o)Tx ~?a9?_+0|sk7VO ~;M],5،*)gϻŪ'CӴԌ|I?%omxŸwٍ^R`S JY۾5BW뜇|N?%uTs]ʿ ItŹn4>ΟN~xn|Ÿ:J* sumauΟ~2SRzT?Řδ8ߍq]:J*U_TOIſqT?7-ucSRo_λkޫ5N?%u/O4 SR е3/v:)9~b=gqq*)Kݨ7R(}{-[<6~.?_H^0Ïu'K}S 4TᇿfOٿ~kz^?ᇿf^^~?mgeS ?_wߞ-ٿ>MXxvsPᇿfOٿ~kRᇿfOٿ _ ?w ?_rV?ᇿvbrZ?ᇿf^wߝɭ*0;l[;-vuaŸ:~ǿ7~f3P,>*~;Cε3˵4*~;}C _S`a7c?G{m=/q>~uK}<_J_79XG,o3\/}_r-/uJ[?aٟ98uV?uBC:JeYm(U_D$-΍Y }U z__;8T8X_=Coܿ(O~}nWP޿_* ߎ影 z߸~*?Gc~տT|5Z!~տ6ũg*}\0Q**[\B;mP<7VWP tk{2nc* r5Xm_?K]3%! ?9]?9bRo~/ßC* ?{wJßC*UY3%!~sHſ*K ~sHſ߮ҵAa4ϋ}{-[<_˛6^}rOJ{Yw ]F(({5*5W~¿6m.|JǿolFRiy!^9'ៅAC4 P:Faο>_5'9?8~R*? n>_˦4T_n?T~U'i}=h?TmmiqBIm=it3>N476[lfbWO?? GYeQ}:~~gqXZW~9}i/σ_?MSϤ۔ǟ򯯝[mnw?G[7_J__[ۯ@i?gY7˕{n_0wؿ_?^>XݿYj2i7n{P?9SOύ?;rKO?_ >W[\Y*Ïu?5_\F> ~kz?5W~?mK4IͿ>~z 3]?]~nᇿf^Q~koS6uBۯj^?ᇿfOٿ~ko0wxPᇿf~M|}](_U_fOٿ~k+\Q\Kş[ßC*̵^-U?琊T??9_ ?9߸~*~sHſq|`?T琊!)W~sHſ~sHſßC* n>?9M[-YJ?TϝZ/!O!O!g*Rz=jßC*mT?9_ ?9__?9!O!s`R׸ڽ +xUj!ǿ7:7.X?%,m^}PZg>X?%ڌ*)y-[*Jy?ʝ?|iϷƯmڞX?%o ϯh^[2JY{ݨwY]`xnŸwW^JO ~;/

:v:)GEc:յ=oX?uK~¼WMo*ߕk 7taB?w%}?.~4~&7[|c4VO?y鯟98>OrÏz}cWh?:J/t-ǿ:J7?0?_?_ߌW]}W ۻ˽k&m]WPU~PZ?_o_kwWP΍jh(-N87VWPۯa 'Z7zZ!~տZF30%*~2^?U8X_=CzK7VWP}Uig*RT.(+!~տE~?k:>U?T^yЛ͋?_ XM7 O+_׸U(/?-Mo*Jſ7~ݛT?}s-BJſ!׉^ Ro "*Jſi//ַŭ?T_(]?{~SB r%O+//?^3|~Ro]jgx\%/ο կ/WO+(kb|{^XZzǯ ? ,x'%qy-DYc\Ir^_`SI:&\)W~?O"2D~F=pJ* %%D}S~mxURIx38)w˻~on$ ˾)7agJ?ܨvnx.WgRI4ۍ}v3#+0)7\ ~sHտj~sr_>JSR)W~_OIſ7vۿY~sHտ*Ro!5/ßC*k(~sHſkz^)wU~g8U?9~^o?琊'琊!{SRzRo~/ßC*U?RkRRzRo9/{,YoQom}ŷF6'/{ֿۛ֍Uo1ޫ;Ridÿ~Mp?)Y7|?)o bd7Z|s7V'o;b矽gS%ݿ~-U__l}*W~_[?/-mo] ~'ܶOXJ* su?琚U'琢s~&?{h?TJ<ßC*U_?T۞_w{ŽBR_;?1fP?Tϐ{ ?9_ ?9_~sHſzwRRV7] ~sHſ;'琊ZRo\?k W}~sHſ~sHſ ^|i JY{{x{[h]B)u WZl-?ſD?~FO ~[ChŸw7MMo޿*ğwy/:xŸw^o;m?s+{0uUO ~;7́_ǿ7 n@iWonϿ*)kX#?1]lq/s:)P?ޘN8ÍUSROIſ5^zcLY\*)_1mqaX?%uTbSrc+,ΟoG}S, h|OI?%?]?Ο xΟjTý_cSR-1i?]57ΟCrD%*vtcSRzT?cSRo9/{,Yo_(]+ǿ{ppZ?ᇿfJ~ko*?=?T?ᇿf~z'_8?57kƟ?_~kz?5W~U_C'_ ?57vnOٿ~ko<X?ᇿf3~siͿa0/t4TᇿfZ?5W}kol[aO?Y_?wt~Mg o >P_)Ư~`oK?tjCϽX/uJ?n\?*?7yCBC=TzpNIſo6\?SI\_ׯatj3%D~]nB;_%%D]ǺvqJ*K)$jXrOu9~}T{܂I}SRo?O$7{ W~?4׾ѯSR[\;?%!܇g_"!ʍ C%ßC* _-z?9_ ?9_~sHſT?琊CTR߶~?U?9w!%OC! ~sHſ5{6 ~sHſ=w7~g7zS%ßC*3s`?T~`JßC*UßCj 󇡆~sHſaXWi~sHſ?T~`JßC*UßCSRoa-w[gbcEն?}JOwuw &~Uiÿ~W H-~tOJO2˹ٷE?2''=]~q1xJ ?W}__?}}/{-U/QRi~Ͽ/-kZc7O bsn8~R*/}޿oRi)nbŽ ~'m ,xyS,+0~'?{coJ$oß?lz!Eg7ő ʮBε}п_/t,퍇ߒz?/_ُߒz{S~z!^_.igZa0C,Oo͝ٿbf/?_ ?5W>?57~g\[?5o'{/3KX70n?xP~ sQ_Wnu(?ٿ>]??_~k'_ǿ~{?W~?խÏu?W~k.琊w-!N ?9_ ?9P;_7\?9_~sHſ 琊C\'Z??T^??TzuNs~sHſv?9߭n琢;vY'!E?|x?9_?9!~sr_>J*U?99~/?%)W}~sHſa[ [GO ~;uώF6Xl*0gV~*)k8zwZݍUS_n 6m JYCK65GoO ~;o?^So3>?;JaG:P[:JҌzB)k.iZ~wS߸nׁ߷ ?Bo)gﭮ][*v_^FKJ))W5*I J))7K(*YgqA7VOI?%E*O~θxƇtcSRZ#Z?U/vm{ΟT7-tcSRZTxŸ:J*UWxŸ:J*/jW; KJ)_XӉUSROIſܯr{BW?˘qmUSRO rɘνX?!uT_34{,Yo{[|jͽX}r/w;~kz>?5W~V?߭X?ᇿf/_'߻ݨnuv.?ٿ5V7zdi!iKn~V7~!i_ bZ ?ѴkOۅv> k돩O+Fÿ0oBJſwYOE koOZ7!J?}Rz'%O+߿ Rof- ~'?ZW-+Wo|.e?%DY,tTM[헖=oP)7sRpL ~'_/\ h xοO7oo+0)$jϔ׎C?CK]uvT?YJ?|;7nԻ(0)$ ;C{ߥ??fx&WvOVYƟ%)-)7?G ϐ~sHſJ?Tsڵp*O!O!?pP?T{])W}~sHſ 琊?Tnj~sHſF ?9a-A)7Fq|!k'琊S{:琊??9_WR|T>?9߸~g'琊'琊׺sKmb^9ozŻ I4esösMwtлpT?_g6s>'9? MYJ_ b1Φ~*Cof߯.b_߿OKկ_ {~O3:wOJs=?۴~g鏡-U__ ۛQU_݌K)O3ͨ*C z_.?ض+h_MǏᯙ,U/5?:>U/5fq9 ?f~rO.?/Zaqvoᯙ?c~ ClN_3P߭ݶ[eq+?u 'M[Ɵ?_ ?57^Z?ᇿfk~JO~kz?57~T] ~koܿ촸~i߿w|X?ᇿf~~k z~n~n~n~n~n~sw6uw~=y琊Wv?琊?!O!)W~sr_>J*]˿琊} O!?7Z*RﭽT?9";/KL?0,? ~2,¿0?#ǿ+";/KL?0,? movvh!ǿ7~kŖnyt ?s;n!ǿ5oմ`p>VO ~;O5m{dǿ:n.~dǿws}',~iϽӟZ?%o go ?c?޴B)q]_x~޻gSp=Pv!ǿ5agS¿Tig>8<,α8O+,*pX* ~;J?=Ywwe*qgUwN^hqn^ϏW}pIn|?ǿ4~:T;7>VVYT?ǿ+Siuߕ4~:T?okƿE/}{-[<6~u:;?5W~U_vݍA ٿ~koQ_'߸Q_'ߐ{Cٿ~k z~n~n~n~n~n~sۍ7Yvߢƿ۶.txU[]>] pϹ= _o\?Kߴ}/OrvO[K?' =oy!IG47Qi\sl*~;} =wY_`=޷|Ÿ:~ǿ5ﻣ('<ծC?o寙 YߛlJ=g?P[: !* PΟRi<\-δ8 zr8n.įu~\-N85&įu~\m=1c~_`q%v_֜u~K[sr}UΏWϿ:?].!G*Wǿ _s,h ;lOw͋?_ _+-~%_VHkZ{|zYbW-~RouXhP_ 5w!i9ğU*Jտj #?T?(v Rof݂?/M{_VJU__ _3?s]*Jſ/qN~P_ ?v״ǿ ?T~=nUs/Kuϑ?4s$?z'k9ƹ?wpnC/O&?_~f)]3ǿ+Wv jӮL_7jqǿ+ǢYſ/Ksgឯ~ǹ?nF x~weXWq)`&n[琊or? !mY0[ykQP?琊!/ßC*}q~렵BRzR w(O!O!/ßC*gxRRone ~gF%W&Ew_?]aYweYe aߕ ~gF%W&Ew_novEk(}{-[<_l[P1ŸJ!5B1h_%_3'_hg³J{~;s P}'gpT?_g˿ִ8~R*/9_7}ο](/U_γ1?TOM{*CoT/U'5W}+U_~ÿ\ڶx|4~q8X_3o ?fs,η7Vǿfƽ ?f,87VǿC,*O8,-N*9~ʇQXrk)~sHſ7vn?~sHſgUۅ?9߸~kq~sHſ5w ~sHſa ?9߸T?琊j~sHſ6?93 琊77?#ǿ+";/KL?0,? ~2,¿0?#ǿ+";/K?76Yl鶻b+/`}ů?ſ3ww߳,>ԍ?TS_[ {ֿ}~?ſ3wYw5Qi->"ğoUO ~;ϟoZzϾ??os|USq]9_K_O ~;Wom ?ſ~{5;n6{S__7˽}M_h_ǿ<US¿Ti>27>VVYTN8ݍUwϵWX\FTYfh?ǿ4 ]//uci?EcXZgQig>8\7>VVYT8ԍUw~wwe*@wwe* gVǏW{?o~1׼>/{,Yo{G{ ?5W~/a-'FZ?aQߐ{b?5Wۯj P;U?5W~ ﮹i/_U?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7ßÿkoYso4_m=O?Ysۮz>CRv\USwj[Y_?5o ?7-~[/uJO5>R(?y 0>ԴvT_yW`#wνմ0V~;g(7uV?_iF}Fc)?%>cI__2?T?/,"-.UΏ%W*Wǿ+,UΏ1'*Wǿ&Ufݪ_֜u~[F{IsM>UΏ˸{/W-ǺvX_=wg[ڹ0@_= ;hbnZǺOO+g=>,;M}M{ y/BZ_!\}I!i_ 5J_ ?ng?U'_KLZ)7T?_ ǯ}߃!i߸ X?/-ZW7Trt?G^XZW1}޿UCszBq^XZW~¿^x/ߒs/K?3ųOw,-LE恓,Nu?}ϏW&uk=h׮p<$k,܍sߕ ~c=o胟_?]?V>d7>͏W&u87?]?_+{ɯƗ_L~sߕ ~cFp<͏W&uyHǹ?5a|GCvx?9_,ֹZ?9P?WO!w~sHſAJ?T^??T^??Tw3a!'琊uO 琊ýп}!7R?9";/KL?0,? ~2,¿0?#ǿ+";/KL?0,? ~ſb>-s/mŧ,>3'S~#ʝÿi=i5?3'9? ?st*Co~{Ew P^?_ GM{??1'_hg r_W~O[q<_/θUu FÿWEg?ҴJ ,o~wOJs^o(?u$/8Xݿ/hO?? GYcq:}>WQ -?u$Y\bqEo_7saQ?SOﯛ87Vow߻ `_kR???B{cu/q/Ri?I?ᇿO`~G9M?7wmŽ[nI!ǿ5w5gSp {:USm"3?tM!ǿwG{-xеJ˿PzCo ?7\޻#ğw7\5\a!ǿ5qRJ *)k8Nʟw5/ʿ t5n|Ÿ:J*߹۶JUO2-ucSR]Wh|OI?%nr﷫vNyÌ7>VOI?%_~jX?%uT>:mBW?P{OI?%\A[ŸUSROIſa_~?cHr J)ߩ܋-.Ο X?%uT޿y-.rcSR UOI?%f[m7-Mi-Xk1?wMֹSn4?5wkkw5Pi]m>P*_CZ?ᇿfEu~kz?5W_?_;_~koX~i=л/?_ ?57~}X<$ٿa[~Aiy^Ս.ğ:~ǿx~p+쾦'Swڹ~ ߰wi{;>B~;'׹ftftVO?Y{k{ݶC -l[nZg?O_?察?)OzR)ƯUUO?ο޿;>*?:JO2\lZ{cIoǿC=u~_kkm?GC(*[`qSo¯nlrkƟʿ YX\ڍϷD_=C.[ʿ eWX\mqŕvծT8E zkbO[&-_ݿ?*~;ޯE˅?TOm[1 zߐ0V?U|{7VWP^?UO8X_=Czq!~տq U*6n¯7s b?y!i߰v]fn~Y/5q?V*]FmgP_ /6g O+vy/-_?UCr.J_iP;vs[/g_V*U?1ޫ_i_߿_?U'寛?}/?T>bZSwNZ7\򬿝[/~;/O+O*O+lkqBI?7ҸYs^ſ>;o?%D'qJ*箂gJ?6c-wEǹvޔTs܎khiO ~'_+*׮YSRou%ϔ ?Z?SI{^ةn|ѺE5PiO ~'QMC?%D~@%~~aBgJ?qJ*U_RI8%gI ~'PjϏW!b/J?TV\?~sHſvk'琊{?Ti/ßC*??T>?9_C!/ßC*U_?Tպb_H%ßC*탭>P?琊}} Fq?琊'琊!O!O!3^ T%ßC*y]S?琊v7F@~W琊?T¿b>-s/w} _4~qǿ_?j*ǿnjiៅ{c~_uៅ{ z/{?C?O_=YgwU4g_^_.[\WQ[_.^>Xݿ*Sÿ\cܨ{auJ_?5_ǿïˏ_.?~]~ ?~u/_ǿïˏ_?_ݍ-vO~k(ۺ?_ ~U_s.b?5W~3*/_'~ 4I?_-+Oٿ_}ޕ'";/KL?0,? ~2,¿0?#ǿ+";/KL?0,? }#j!?l.xP?T`~?*!RzRo~~sHſ:!O!/ßC*}P?T~?9~'琊sK,>aVT}g- O+[\ŸKw M} U8~y!i0o+_);bǻϏ5휴 o!i0o+¿H_3{iŜ);~XZ? ~EIſo,tn_ZcF7>VOI?%o^nLv99SR6BW῰o/Ο7w瀗v~PU8̸qcSR=9`S:H%*W?%uT;l} Yt%n|Ÿ:J*U*ӕX\aqUwVOI?%/*=7>VOI?%CYw޽ڍUSROIſ;_;ߩlLgX*)_E?uW?%uTs}}_ߘ8֍eROIſ*-Xk1?u_ǿïˏ_.?~]~ ?~u/_ǿïˏ_?]\yagxK)_C ?j~.~ko ?57=]߿S_կ~ٿ*Z|N_|¯t_ _[|.!~~; O%~~;3|¯~=~ǿ7\;_ ?ӌ?s ?_3?ٌz`~~;է ZK )nmm3R**7t۹7VWPP**g[\hqYo¯[fTjzc~տSpc-NU?T/*/v%7: ORK柤-_=CzO[&vv#_;,87VWP޿_틣 B󇾆/3,u z_ťWX\ڹ+?T~i_;#,U?T_/}ϟujB #Ri;_Vw_J+nZ;TFzcie4~_H?_?iF}*?0,z/7XZaY*_Dcie4mO^XZaY*Q* #Riae!ie4lF} RoyCN'?q C].߫wrHO ~'tk)7^w,-s/l[n_-"_z/i/vWiៅm[c߻m4~qǿwߌUW?oMWſ5_{oͨVW?~c~_ ,;o ? _67U?^m-O~'o,8?v _m4?lqr_bE'ֻXݿq ?)kM} =~~c?X޶Pt?oz?o֍B ?u$Y\7q=PRbZD%u$'Q2> r8ލU~__9_??_??_??_??_??_nm鶹b.W*_}vn>ss'߸~yPᇿfOٿsԿᇿfOٿ _ ?5W~U_s/K?0,? ~2,¿0?#ǿ+";/KL?0,? ~2,¿0swFop:RX7t@%ßC*}盄?9W~~P?T޿7_^7u~sHſvk7D@%ßC* ?9_~sHſ6?9bRonyoǴcgŗ:. ??m}~o5s /o?i{>q|NZ? ~w ?|η{7* aV|'?|w?qVt}m{ai0o+_)nmjbN+jX?%uT޶.Z/S, X?%uTϗ OR+X?%uT%] _ǹ J)wcwms[TŸUSROIſzfLg[\7USROIſp IߒSROIſCE?ΟߩsLTjT7Ο o)~BWO*)_{,Yo:/_ǿïˏ_.?~]~ ?~u/_ǿï˟öAW*_5s#Y<"ٿAiɿ񚁊~kz/: ?5j~k!߸~'_~k?T_fLa ~k g->}Տ,ߴ? _Wo8a{Տ p!~~; yq{_kWnr&~u~a_}G?Y1x?^_ft*WLnmm3eT**{o!~տa[>3`*?Y$d+,J-WPۿ׵rƟʿ aG[i/*W_=CzO[&}ﲥۦbkm\!~տ[+/*?TE~sg~տϻZT?<{c~տTW||e=U_T*s/Kϗ-wB #Ri~{޻7VVw_J^owo7VVw_JX<O+;/KE O+;/K57/?5yVw_J j>/;[ZaY*M߿UF|ӴXZaY*vXZ?;aD~̈_7p#qJ*ϋ5x?%Dgٮ}ڏdڟbLu=t׮/'%Da"o/"Sx<;s<"*M?T?DT?cs9 6aSGW?_Rx~Kk;ί߿4sW?_e~9/~/wǥ*~_uϞygm ?y^Km[k~Os<lv잹VaL?:mlrT?fs殙k?q$;}}|?~Vas̵z|Oxqz͑}痧Bs_sm}??;f73|VSVl\Wů_Ou??~Ww_Ou??~Ww_Ou??~C~|c6y(߷C6|BǏ{}w|PhOO_'~S?)W?(?rW?)W~ݣxďU?KB}V߼_c߇?_>7/᧿y$k? ~%>_+}cgO'~ď7;/vd;m^?~CDOJgwyQh ?DT3BǏ;<wtďWg"*ڿV?͟7?mRBE߇6>U?muslr/_?*wm}΍οbOv;U?mzԜuuU?msp`OpſQgm~桠A3fs!6G/cBWo5 6k_}Q{*W3Ӂsoz/*`Oڿvݞ\J*wl~7VEvKL{Busz/*Ms;|Dh*ﭡy>Zu_T=wᙏU7VE~Ѡ;j_}QﺏU{ݹ;;V_}Q>;J*`l+U}QE*36gmۜ`s1? ?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_uZǏuc6O;/ϓ囃/G|z ~$gw>\Er3?yr]hn!Jh gG?O6iְ/*Msc?y2{KB}V߼_c߇?_>7/᧿y$k? ~%>_+}oqéJY5PTQ{}?DTvď_"JU?!_"K1P?~CD?D!~CDOJUglڜ9gsb^6m/_-5WzW?_}RuNen^asMh _}?__%n 鵊_}k_.-UqZůsmv9OsWutzW?_ݹ7= Oj\fsUr}_}}}Sۿji}Ǐ湷x?Ao\vqNۼ4=~ǿfM3oG_?:ml Mlи=~6grT_ ,g۷l^<lv\7ˡwf?=z;*? ͹7Vogv߷?smc~p?~}{G;f7og`__9 ???~Ww_Ou??~Ww_Ou??~Ww_?D?dv6d7/_ySy-?!gϞyQo|{gwU?DT;?;_?~CD/ ~CDϴo|;/ؼ(J?!_'~CD߿ÏUJ?DT ?!JJUѾoO;%_4}o?zwRo  ~~K˟w*E߇6]gU?myϽ/> _$}o[K=gC:wmx_;RsBE߇6ݍz__ο%?t͇m>jq :Wf#6Bs}{TE>0lڿvot}QEy8'lڿ?~=jslwIۿIS6w ﵿEzIjsk726<194sW߿|8,CyJh*`s3*~{ENwټ~x^3A_/i~áyKů} ,]ktc46UGm\ﵿSCw2sW߿Ξ_!X~w~{S⏟k욹VkWSO3*~{j*_Tu *~{Z_m~i枤_4kelշZĿh诏}",__I@aKB}VFp8mCc鵊_柗spwK!>_+cw}̵_9 aοqUt,'5epk#8?yz-au_T am}\L?^E?V##_'C뾨c~痾?WKʳp_T{ѝaF?Oe=vAU}x=>?g_+W럾?Oύm u_T?O6ڶu_TC_'ݿ~{hx>⠿Ck?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~!m˿ De]ϾBǏ7 J?RP?~CD(?"*U/QCOJá*_"*M_s;6O ?!xLv;è?!ٝ]?~CD*36gmۜ`s1_/#*4noC!/e6W\Oc_7/oa34Zů/~i+__GW?_Wk/~οK8Vf-9*~_uOs_lSoWsg_r߯p}ǟfsC{}}?p}_{^7ƷFyiZ*۝/f??sE/uͱk__/?>gƶ\w/o }n]gx\Wů_Ou??~Ww_Ou??~Ww_Ou??~C)gy}Ǐ}}6/?6'~SozBǏU???r 8ϵcl??!~S?)WCn/'~SZ$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇J߰?͗~Uh۷U?DT?O?DT?!/JOJ?!wb5?DTG?"*?!ߡk|6߳AkR/>7m[KM _4}o_,-᧿M6?+\ȿh&ks<~{i᧿M=i<_4}o>cg}cOƯVsY*E߇6=CoI&|ſk%^T}}y慠A3fs!6G/7Oۼ6ڿZ3mV^JWڿ{c_}Q O.*D?U/*d9+BWo5 6k_}Qow>k\X~EgϿݵ/t;_ڿ?~D_T7VE>=t~Qo1k_}QS?~~FwUE9tL\V^{JUglڜ9gsb~ǯ맿/~~ǯ맿/~~ǯ맿Y|}/ؼ?~So|5>վٰׅ||6_?~Soz=A}~g'~S?)m_ ?)s_?%?g(}?)WwO*~h# ?o;6^;T}>T_l~js!?-E>R/۝y~H*~~[]_3dAůOK~Rus߿?~;37k?]ϿYB~~[]??mR;ϣ߷!6GgUQPM6lv\ﵿ)?Uk7}5Ov96Uof%ɵ_}^~~Qϵ{>fsBȯF=6fU_hν\ﵿ%Sſds3*~{SWj&U__+c_>o5sX*EC}VU 㱻K@KB}V揿/vV/c265ڰ|߁m5CnnϿ鵊Ѩ7g۷۷S?~B}{o]~w$} p}lonϛ}Qj7F?Oy=v<_gsv}t;^E3Fz ~Wown/ϓ~$= ο Ͼ?Ou痾?Ou_Tr ~$I_g_'7^昃KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o`b;şIW?~CD^GBǏ7|,TQos'~CDϷos?!_'~CD!~CDݾ_ ˯c4 ~CDOJ)?"*;|)h~?!_ ~CD*36gmۜ`s1_/.l6O?gUKۄKߪks`Zů{  W?_24料k/on gB~_uO__uO,W?_ifrOȯ~}|6?~XL7K26_߰?b_J>c=~鵇v{_o߹ݵo}B1_?6GBsn/}|/}o14?;^Af9篺VEPhλw\WC?so1??sϼWsoz_՟_Ok?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ 6/+a|??{d ?)}ď=]|6ʯ?~So?)W _?_r/O߿Ï_+᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V7ϾؾllՠRw"*_IJ?ǡ~EhQ?!x~ OJ(~ď'{*ǏWQ_|6?Z᧿MߴRaOvcw*E߇6]Q\ ~~$Сkk  ~~ۄ/ ]ǿ6?Yjξݵ᧿M3o}  ~~ۄ_ߵ|Ϊ;r?t7⹗:*}}drٿn9V^J_?{}?_ڿJ3m>VE><+BWh6mne'Jӯy|}_*W3]ns[k_}Q'*?ln :޻+_Tךi[hNU}QE͡9鵊/Wg 6k_}Q*J*ʹfGhx{E?UuzoEvTGj?*_6m\㟆ǯ맿/~~ǯ맿/~~ǯ맿/~~OSa_?~S?)W??)7}'~S?)߅}~y]hO/寁?ďM/ ~S?)w?)Wc{__ ?~ǏzQڿ_~ǏzOۿ_?Qolnk_ݯQEoV}Kǿ_so:(= ~Ǐz/uGߵ5~Ǐzi;޿|<~(W?}X̢x~Q?}}th^C!]?*6gs_}ݿV_6ۅٽSſfwh6{BXůvrXGe|P/VkW~Jh*?9(W߿Ou67\ﹿW;MȯU9ٯ|ϽUSş~Ϸ&W߿?fghξn!畠*kKߴ*~{ZK1tym͕W߼_[f{ m o-c>>z߼_[|w+!m$,"s?T&4߳_w^!y=7/}7/3ma5~;D8?o^Sug3^ǯG 75B姿y~]χ~뾨;q^I|*u<}Qп5t'״}?^Ek~vF?O+}[rcC?yyjy U/ϓ=/*Uy/ϓ[;~{Cot_g_'^c?y}fN9?yМ}蠿9?_7//L]e?~CD=N?DT~ďWQo?!By/*U?!_"*Uy޾?DTFQʿJUglڜ9gsb~ǯ맿/~~ǯ맿/~~ǯ맿hPqq'?+?rcxďMQ7/᧿y$k? ~%>_+}o^/ ZOI诏 ~j?DT?_lK6_"*Oۼg۷W?~CD_>?DT??!x|#4g'~CDOJ?Qj߿"*U??DT~~wh_c߇?_>7/᧿y$k? ~%>_+}o^/ Z?t?{1my:_86/!6O _ſL7+U}QEgg6ljs[E?TV^J/*~οE?q_?=sAAu_T`9_df檰Zu_T]O?/*UiͮZu_TwUsoZu_TOoϼ鵊/Wys6l.᧿/~~ǯ맿/~~ǯ맿/~~^lOWl^ ?)mNBǏMwSO A|~U??~ďU???)W~ďU?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ>clh~=Y⿣}?wOUnLvUmv2sW߿>ӾEfs{{}樐_}^~TohuZůU۞3< ﵿꯟfohvNUg{P]ﵿ_+_lljsͦkW_}^VC|F=3*~{SſМ{kwEmVk ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>C78ؼt<xa:H_T;' I}]/*;~{Op}ܔtvNr ~XۣSau_Tr~ ~$=*p?y{ZɎ^Eϭr\:ο|?O~0_3t'7ݡOAU/}l /*ߏ:ϓ؝6w_ߡI诏 ~~KB}V߼_c߇?_>7/᧿y$k}&,J{ITQǏ_?JvKBǏdORgQ?DT>"*MQ+Oܿ?)}~U?)7v_)?rOCk?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~gl>۷S?~CDqm&l?~CD?{v ?!By/J}Hq*?""JGT?~CDO(WRǏwh_c߇?_>7/᧿y$k? ~%>_+}o^/ Z?t?{1my:_8esͩ/*{v<' fms ,_:GxqxFh*tܛ^JHy}_ _jfc{/*}4>)xTU}QEO]L{/*}8~QٿHh*վ}/1ӕ6k_}Qov߿;ss/*MxTo3|xďU?)W~~}*h ~S_}_Ou??~Ww_Ou??~Ww_Ou??~CAli_}3c_}6jin!WGT;C\ﵿͣ69*ۿ>nsRȯLXkOP_if̵_}^/;<)=6h>^wga7}@~#a!w*owW߿rkll^ﵿ{Q?޾lNSB~{j*?U7{ /W߿g.O _(4WmXDŽ_ߩ/f̵_}^;V/ ZOI诏 ~~KB}V߼_c߇?_>7/Wء<)43_;as{\G?Okmw^EC̿fͮм~^'~:?y_мvozcC?y~˜}į +_g_'陷~*?v 㠿*߿ ~$=n_+᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}Vy}wJTQAQo>lh)?DT~ďw}7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇elcp}6kOK26n9V^ ~[͝a嵊৿%JlV^ ~[9NO26?io^>s׽el~ο߼w~o[O26V/$coFa嵊ߵ9ksǏ ~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿o]{olޗ\umN3sW߿}\ulvkw"W߿+W߿ϻV_OUwݾZůu?Z6WliUWߺS~}6_Ow~kvc9mۅWߺ 6m\Z$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?4l zflCց#mc@N54!8?45e|>g_;?= y? _?k.spw(9_26м~~_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~Y6l.\ OO_u?~]?ŏ_O_u?~]?ŏ_O_u?~]??ef-6[mz!??e-6lnV_Sm{?> 䧿ͻlޟ\OOOߝ}v!??e!#讏 /)}K /)9O]_?5{Fk3*~~ο<~9Ns_Ou??~Ww_Ou??~Ww_Ou??~Ww_Ou??~Ww_Ou??~Ww_Oubk?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿yNmkOK26.bs[X>Do^<^ ~[ 6{kOK26V36gmۜ`sqO_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ͻm׾ؼ_ȯu?ͱkwoy_}~[ 6{fUW_οS޿r;rO?y7^3_}~[׿C3*~/)_OlmZůu ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/ifoh~swh5?4GmNCo^Os(m6G7/񧉯_߆Co^OsSrJHgg=_뙱k7/:=4_7p͍@56@Ioӳ~pOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?ߵ9ks?i/~~ǯ맿/~~ǯ맿/~~ǯ맿f-3*~;sjZOOək??e{3*~9e;4[OO͉k??e?_?ugU{ 4sͭB~۷?9s⧿/4??~Ww_Ou??~Ww_Ou??~Ww_Ou??~Ww_Ou??~Ww_Ou??~Ww+V/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~ﴏ){Cs};৿%}  +U?-cw{G1߼} `su৿%ﱹ߼ߝylV/$cg'㧿y47/cselw:~/el{cXy_4}wglڜ9gs:<ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~[}6jin!~#3*~o]]6wۼ'4UWߺ6[mnV_Ok=a^!?wۜV_Oh]3*~/)_O9hNy~[sZůu?fͶk[+᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼ǟPh~_m~;L߼ǟhX~ݱzh? ~io7mog;m߼ǟfu6;lnEy /Z?>|dXy=?4_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KBys6l.᧿/~~ǯ맿/~~ǯ맿/~~⟲Q1B~۷?V_ShzjZOO6̵⟲l`SOOٟk??e?_?u`X>>(䧿?nN⧿쿣}?fU}is̵⟲<_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^?il ){৿%}  +U?-cp] ~[f6W\^ ~[9NO26?io^?|ξw_~9NO26?io^塰Zſhߒ駿y;+UY6l.\\?~c_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_Ok=l+W߿ﳹ̵_}~[|ڼSȯu?lf̵_}~[?U?_Ww'l}ݵ_}~[͵6gUW_~#3*~o]<_uXrW߿ohs̵_}ZKB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^O_3pмvuAG/{Bc7/y[[mn 'Jy k돯U_a~pə7O]_?C?_VOϿ5_?C3P}֞{&g7/+4fMw[(}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_36gmۜ`s1? ?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_ul.*䧿csͭ3*~mg''my̵⟲?=n8g}6_?yǷ{/)994_7V_Sڗ\_?5yO㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ_I诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼?w~<ﲹ' ~[o^aVO261h?ߑ\ ~[7`a嵊৿%} N~U?-_~9NO26wV^ ~[Ƴ0elc'4_~og׽el+cf[Xy_4}wglڜ9gs:<ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~[ͽ6w&*~o]>6'l u3*~o]6lV_O w'W߿ﲹ%4Zůu??Ͻw$*~o]9*~/F=6fUWߺ۷hrW߿_ns֙k[+᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼ǟ&H|-y~M\Co^O74x>g_[|ڽ+߼ǟ;L溠zfl~ο<~39+Co^O{_Xy=?4|/mߜo^y?mgoiCo^Os<4nM7k7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ Zïߵ9ks?i/~~ǯ맿/~~ǯ맿/~~ǯ맿f͵6m6l_Shf̵⟲?v3*~c;>%䧿ο~-м3*~~ο<~ڜ͙KOO~]M67*~mg7F⟲/?㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ_I诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y$k? ~%>_+}o^/ ZOI诏 ~~KB}V߼>mN͝AǿhߒͿ>;mn o7/csmɵ৿%R\e%V/$c~jݵ৿%} nV^ ~[cx8V/$c_b+m6k{?GhX^৿%zgz_4oIOϼ*EdlcpV 6kk?cs9 6?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_Oߺ>is ?+jsz~?WQC5~?wlhV+l6C%G۷{{ݝ!ﰹf5~?w?oI_js͵3yϏ~f料k<~޾5~?w~e6WlV?~jV/ ZOI诏 ~~KB}V߼_c߇?_>7/᧿y 6J}kfOm1t\Y7/ֿ}o`Pko^?~|͜理w ~kΎۄ[Om}wu~k?>Ǟo^S{^.,_oo-? į;kw_v{J姿y?Oo-? ~%>_+}o^/ Z@}2AI$*䜣0f* H$S_Wޙ޻{SRS{ޞٞOO )ߩ1J;_6;5T?5~Wߦ~*J۔ԘR__^+oS^ScKSw|mwjj{׿MyN/UO )ߩ1J;_6;5T?5G#/~ 3z{{{{{{{{{{{{\ys̫4u,^}}b%K;M~G*O;~GԿ?ׯm,2>w??GWq~o?{cy&??GW?OyX^G{{{{{{{{{{{{{{{{{{{{{{{{~K)ߩ1J;_6;5T?5~Wߦ~*J۔ԘR__^+oS^ScKSw|mwjj{׿MyN/UO )ߩ1J;_6;5T?5~Wߦ~*J۔ԘR__^+oS^ScKSw|mwjj{׿MyN/UO )ߩ1J;_6;5T?5~WpV9yf?~~WpXrSw|5W`3￟Xe~G?~wU <5[;lqswjW5G?~wUθ~uYs0k`?~~W=}W~'&θČoϏj/?~[;lOy#${TW!Tmz ٩ 9 lۂCV@bpAࢪA/p! ~ `Tuv`U x.xxx+j.wՀ ՟?'oYeYX??NwFJt*[ϿH_p] ׁᚐ6}r^5r10&ҦO.s9_+WEx.r|%KW(___Dڰ_=r71>Fpj0m!\ ]" sd+߆\˜?s>믿믿믿?{>0/Ǐ/H v93\a ?R}xܛOV8'˃ڀyA_#HMz`W f71#p}#] #:~}T^eYebuyU&sd7ݱV/"""""""""\5} c"|oT!_}D>ZAnM⺗ 99#|J}A__6pcAul>z˺[52Kݐ}a5ϋuL-A?cs_t0&._>וnG___s.a&̛3d̙A8iQ*?< ~'ü ~six'%.3u>ap= q۳`T*($އ]*yJ r0MP.]]___i>)_@W|hng6]wNaϪ{wy.]V}___׿*@ v̋fn.f.jWE3R/[0nZ)8'+f%1y\ 9ٟ؟v\)R<<?\43 <(˲,LVoc_DDDDDDDDD/C&$OW9B UP.p]Jnrry{x9 s>믿믿HNCN)+Kngp?Ln ןυMdϭa."uݐ럚g>κϭ诿믿믿w~üx-?x`O3a~xǀ}RyA?/\zu멶 yxN#Ĺe @ᯀ9<|.< R,˲Q>|ΟlUz;V*}EDDDDDDDDDbz0d9g0&µ+}Z rD> sxõ7wOy/sJ9J}A__6,۞{YC;tϽū!ן.qv>[ʟ<|>+ן?/3w]_"rS?WߕnG___Gcs{xo0sN8r~xbpE3WU \ ޗxƬuC*w(0;޷0sZZUp9sk<51/ĵReY5UJt*[ϿH_\ rp(9շG> c"}%;õ.}쇞6Io c"}wwR____E ܫm^sdj0d!a|dκ Е?^|Vk6]_"0Ky 2>w֕nG___oG63mR@̢y/y9?<_Gyg//̽I P7uY[Tsf&'i1Hj`6=p`n|w[eY(VWWeb>O*=l>""""""""""}5!\aLR| Z>1EOYnǃkIзy="<}>D믿믿H'[Auzt9Y@Wc}!ן QЕ? Y|Ϋ+[¼Dx_+ןZW>gוnG___G! 3CwGSz#jQ7rx`=JU7ߞ}풀R Zl몁9?ܛRpH|nbveYebuyU&sd7ݱV/"""""""""\&kH_y_C$Ø5Hm0&2+sa">_ۿ 믿믿/"m8 9^(Z,\uCa|j{Wr7 c"[U+y.<uWw___o| ~z5X ^l7T?'<| scz;b@n;˜m="g>g1s@]]___i`ȱ :ǃ_ӕ?^7Gn6X?lr 3__+>{$ka>\s>믿믿믿?2ܞO&Op_0CH0ş̥aA8jxhb bn*۳ `%sRǗ/ϫ|x^8O0IWo Jy,˲Q>|ΟlUz;V*}EDDDDDDDDDbz0d)g0&LOC> rD>Zۇ{Zq}K'96믿믿HCNi*@pʟ w^XЕ?3yv|nn[6]3ךgu?믿믿믿?KG^-Ü *VkiR?{eu5_Gp;4pz y&\R9?+ރ V5pR? 0G `YeYX]}^?٪MwUŬ` 3˜DU aD&G[r0?8G aL___D&ԃ!aLL?8tLE\'bun+rw c"{us0/y\3yߠ+껏믿믿믿_+| 0g"/˂e^V~s9?/5$p5@ Yۅ@W\0X0jqp H|0g*p.|py^~,˲,kϫ21'[UJ Z>ܯk? 9 av׮5B*2ܞw>1@/诿믿믿"҆SAuz|a~PЕ`g X3ꆮ "\-Ø`m}=9\ʹ׼?믿믿믿ϒtd[<xab 1B7aK*k{> /p'\<;q=. f\r~+`vO8󂸶"p3,˲Q>|ΟlUz;V*}EDDDDDDDDDbz0IY pC r=po@G rD믿믿HCN)sǂQ \ᚣnʟ\ØȮ`#t|$>!>{\Os>믿믿믿?ϳ4`.P*,x|qb̰?.y2<>p1 pm_{G<g¹,U\jxX 窆Ts~8o?wy)H ^oYeYX]}^?٪MwUr, rpճ`@nR}9[@n>gg {˜J}A__6 9^9p@WV!|)ן}\5<)Gd/>{Ơ+{\DrGlU3ϭ诿믿믿TΊ``^eœ΀x"\ḃe9?g|0&GzT`% p o*۟3}>kW=G.ۇ?#9lswX]]___i9`AuzT9>髁\ޓQ]&Gd_y6]szc)idʪ_+껏믿믿믿oH?^ό<ϩf&}y>ܞZyA?놙U*'' Jyran|yNIyAeYebuyU&sd7ݱV/"""""""""|g0&ҦO.\UЦ@yy(_Ϭ0&ҦO.]]___i)`i :== N]W `;pzp!01Ww3ߗX1'՟ku8Wx?Xhհ`ݐz_ 3G,}p~>A?t3Dz,LVoc_DDDDDDDDD/C!ca|?8_0&r2۟{T$շ="ǂ>1c@]]___is{rc˜IpʟI-U7GzW{^׀\ØȮ?;3}eYꆮs>믿믿믿Ɵy>/0+f3:Z l R@<y?2967r~x9}<=">{1CA_0&Yxr40 o.P 믿믿믿z0 :ep8j03}zE1>! t >v]s>믿믿믿ƟߩW`} |ܘf 6|_S_'y~p>8|p=ߗyQ5pFkkx.V5p7}-6sy Ig^l<x~eY5UJt*[ϿH_ y)#AnR? i5H@nʥ 믿믿/"m8 9^1<  n#V7r: r_Dm@Wy\%<ϭ诿믿믿`` ( , L点Z7̴Yrx p|oTSmbb lb~njNg6k3> ~R9twR____E փ!oaL``PW|C3?ீUuLA?t4{ݐm3n<ޕnG___3eeLU`M{ aj@|_yD]508\Ssc|!I^O/K O_U\uCw1G!z޷I1ˀyJ#} 0403'σeYebuyU&sd7ݱV/"""""""""U!>\۟1G>/c"[?oׄ1@]]___izO=4'S+g<=gBuCW^AVaLd{g syl?y놮s>믿믿믿Ɵ+ W + laf¬ gቪi6`Q5o bLaRo<7Cu߫X5\Q5>[/,>Lpy"ǂ>1A\ r\D~cx aL{J}A__6P rTaB]&>;<OgPW^AaL?/ہ%$O6 u[}____6̑5󍗪9?xjXnwV.ObO*U*G/WsyOx.T=Uj;,uC*=U7Sty8p ؟K?+Ͳ,˲F*9UXe Z>s1Kշ?^T}>kTUxe UaLjз!="\+ۇyG[]]___i`Q :}]?gY}sR示AY ok_>0&r/`@Ww___oHYn`j|-_70f麁͗] 39|!3 txvV5_ீs b2u*K2χL@*/$9 : ˲,LVoc_DDDDDDDDD/O=S4mc" MǾ6?c"}sS ڞ@/诿믿믿"҆#Auy5xj03{:;OrD*x>0>\ku[}____6̟a vY70{]W50'a4ٻj80ea*?{wa.P+{%Y=}k\' ՟x.w1'QqsReY5UJt*[ϿH_\] p>7^]xAn=˜Ss~~d}o#'0&ZзW(___Dpl={DAW|vi!0>}ԓ+-{Dv?m`3Е?r|uU?믿믿믿mߟ# wW ϋY<$ V K z_nHS5| Ǚ~p80C ՟k>V9<[#Jp'Hg63ǹHp` eY5UJt*[ϿH_p(>S0&}\\g0&½皥>c"of1qʥ 믿믿/"m8 yȽN c"ǀ}A+{g 7񑱺U@FaL=|MWsyvݐg\![t[}____616Kqj`?U \ އnxYpຠw}p};:r="p=)r~ [υ*\_}w 1gIZ#51@>`YeYX]}^?٪MwUc⺑>s{sxȫAnρ>۟I{>5?}wwR____E 9^oc"ׁ}AWWϣ+y4@K˜+j`}Е?8oO>+$?믿믿믿mWW]7Z5U73fgn3d93o0fa590o\T^gWŀ4.> 3R= -=4f\pޘs08xx1p8 x~_:| XeY(VWWeb>O*=l>"%>M_V \ۇ|uۇ|8s& 0َ_wmYeM*-V*}WO$ׅ3!'ׂ>169Bp-An&r_ r0ljkB/믿믿믿z0x{DNo\sm|~Uà+-{Dvl^]3?G\uCWw___oϜ~Og x<<?׀#8 %T8p?,ીY=C\x.lR x~}` IMNOaZeY(VWWeb>O*=l>"%`uCܞǪO0w6?53o܏,O*G:3ҹyJۇϾ&-˲Y?*[Ͽ??5*}R}rY;Gdkg0&ҦO.o 9Vo ϚaLdsзWJ~___E 9^o c"@WU! ;Rˬ+{DۓK'ErYu뺡+껏믿믿믿0|VY1=~gv#p Q b6go#죯yԯϬܥg{~1ogOo!ƵR׳?DO*=l>"%Y y.A+Y}#b> /W?}rs6g[-MP>,˲gl>X'R޻:>? c"n\>oc"̦6ۿ ~诿믿믿"҆Auzla n=OxW[^@vaLE`[|wXa.w[}____6\<=fvM*9?\3WX+`ny2\<bL*'} h*z)༽ p>fr3߲,˲F*9UXe) i>J H>u@xa!?˟XN>8bLn~d\Fl{3g A*ifpnceYҟbߟDJ8u}}o# 0&=gV aL(Gdۇ9B\sշWJ~___E 'փ!aL䝀?Cr?=˸)3go+xʟqX? |VI ]V}___׿*pl̨/9~0_?a9 N9^3bT.P?Mcхs)#Hrvp>Y*g_L g<\ ?XeY(VWWeb>O*=l>"%au׽Z7^?3>$R={̖{8w|>wIg ssN`n[eYӳJjUJ~,kU)M;pۇkEopIn˜D$9aLc`"kurlDo~/믿믿HήCaLHp@f|+׆^@?^g "+\ydӜuCWw___o9=/'vFgKK?Z0[ff)8p ՟qs sg٘sis5H<_qp78xvH*(˲,LVoc_$ϬCY^:>X0gq۟1={IVR{\=& f}~j`FwKXeYӳJjUJ~,kU) i Wշ="\{ۇRwX_:+}}w{___Dz0{< 0+fPsJ?d\]"_5< ]3{p/>ؕnG___7|g\~ nwfpppq5T> 0 }[Ƭ 6a1`k|*//]A _s^8?[8r~R9BӍkYeYX]}^?٪MwU+-X7ק?^50ço|}SX>9=yWƆ/ nu՟?eYҟbߟDJ8½r3x_4GdUg0&L 996_,GsۇkB/믿믿믿az0p{9 ^5ԕ_uC?Yp?7 mAaLdK:t56m~D|6{u[}____6? ߙ#7f f M{8s}g?3hp `dGs{^18l!ޤS"s>|\| \~ vT:8?;T?sײ,˲F*9UXe)ɿwȼu0'qf< @xτ?UN>u9?]Aq:>zT/h/t+3Ȳ,˚UW[UcYןHIׄ9'||x BaL9o{DN)Øo{D}c"ٷWJ~___E ԃ!0&r x {u-O\[˜HU7jxtL@?3vkAWׄ<rk~]V}___׿w3| 2 f/y Hgv͍F1kx ~`/ #^xkfӇ\*!<3gՀyMW<3S9BeY5UJt*[ϿHIfCˁSk( , rj} ޯ^:A1<Ōy pMp-==[}w?eY篶XeDz_?> tẔڞ>K1灾}rp3;ַ?kr,Dڜ\P믿믿/"mH^{"8^\0>2g5*\ӕ="!6]s͓ ןKcuU/?믿믿믿m3Gu3A|6~La-08` sf[#()s" |\|p`gd# ckी{Vʲ,˲F*9UXe) 0Wg|SǙ۳8`eAn0WURO?m 8Wy? ^7U5̨xkr3kr0V{VS̲,˚UW[UcYןHIx>}8F?xr 3˜3mQxX\ӷO?z@n˜o~/믿믿HCN)luCa|}ʟ<ہ|jN}VƆrD OЕnG___5|g\> tpdoyf,fEb,p/0Y <6Y4|. <}y.=S`s:|L ;8o[׃ F?=eYebuyU&sd7ݱV/RZ ^: s 罈KbROf˰?3s3gP7jx a7b3k~ra5hc?˲,kzV_mVϏeJ_"%H᚟>5B}3 aLdQз? qKni:gy3gYR____iÁ`ȑ :/ ]s63 c"\µ% s D6fug U+껏믿믿믿O=eੜ߁of&s>'ak*3gM*2 ,:ٴՇ{3ro67/l xoy%X 0_ ,˲,kϫ21'[UJpmBuì`qz}8b, r>wH>sr 8'o}/ۋS}xRI/v0><"Jy' |'u|ΟlUz;V*}EJµ+ ק?Q5,X7I?j>8s{ 1MNwAo!],˲Y?*[Ͽ??5*}{Kq>\µ=}/#3_Y7>c=VxHfaS]^(E__6 9^1]sg 7|@WoDz!a."  #\wg]V}___׿?7|vC3 ??<~$˲,kzV_mVϏeJ_"%>c"ѷ}aOn9ØϽ^ rpO+ҷ="\Cg0&ۿ ~诿믿믿"҆Au0&rx#8tr#PtvDkM@W{kr #s WU s>믿믿믿S;sPp>~ .`!R̟a^ ,v%`%u>炣{N[\0Dy>x x`>`7̥u*9?k믿믿믿Ɵ0?G'&` s~]s!~, \p*f0s``p`&ys8'Xv8<p j9K,1): l̉XeY(VWWeb>O*=l>"%aϲ ק39Ws`n 9e\9T mp/TW s-8 r0voYeM*-V*}WO$#@nc˜ז`ȓ aLd֪olrp 0_AnGØH]5R____i3y)s}p\uC-a|d"6"ہ\Ø`]BЕ_¼Dr/t[}____6̜`n s`R=? üTѳs]ha1-X0ـ?O5Gy`>kQk8\ŬTϫ z 8\wL&`n΀sTׯ GdYeYX]}^?٪MwUdz0S:6_ۿ ~诿믿믿"҆cS@ul|38tj0d!ן9Bs U ]3ggQ0hsЕa^"uݐ'5kϭ诿믿믿>p q$ڡςsc؟93aIӀFkqa&xx`a!? 4 `΋%`?z̟}`! 0#X {?s \ueYebuyU&sd7ݱV/RTO*'9,*?r}ƆMWT <}~ eYҟbߟDJ6'>1KE<MxY|E'Ca|dFзWJ~___E 'Ճ!?G#q+W! wTm.3gk)t$#+?믿믿믿m ߙ#|>GpH H^QT 50=jyra媁?zq/ Cs{^ 8s pϳ p_0{qSهeY5UJt*[ϿHICKO>u|6XrjZ ^:#p $Xn=@6}f0Kgʪ=s5W},˲Y?*[Ͽ??5*};"ωaLз?>\õ%}s.g0&#=M:+ӾP믿믿/"m`> :=, ]s= ױ=]7p teoDAW7yp\,quWw___o,9R@3E3>SV >㩜5,W5<:ְbՐan{y`|Tz܀<3 y`rRCs8YeY(VWWeb>O*=l>"%UuY^:=3hU/rz}MfpLqGu8GbR,!eYҟbߟDJ56}c"m̙g> c"m'jӧͼ= Y0Lw{___Dpt=r2ȽNc"95]^ 0'0>R \C6]o# ɧif uϵ7cuC*aЕnG___3G>c _اA*xgf0 3 XsA*kׂyxN_x|_s z8,KT>`uA9B\S.,˲Q>|ΟlUz;V*}EJYROgҀre+Jz}gAWS=oO>lP7T5<R:ǿr\ eYҟbߟDJ5!\0&.з?۪>\75'}o#W06}&rP믿믿/"m`i :}ky8 g52ݐyf|ꆮw "{\ØȞB| n;p ؍UÌ+껏믿믿믿ia sfKõ%>V̫p }nkjX3gkjeUc V k`PMc \)x 6/[fp}ϋ@vX_c ܻ눸3#(羱:1/,˲Q>|ΟlUz;V*}EJ2_="X <^{|I&W*z}8x>}r?T5pLnT_T />f?eYҟbߟDJ̙@n=ØDjl0 ϵaLFзBa"ܣ*rao߆9\rpԭo~/믿믿Hv{DCAWNJ{so)g8 Ds]BЕ?b>Oa|j?믿믿믿m_3G\ Tp xx%`n^s(810Րs90̍YjHe}3k0 =Ό&ƌ&fYeYӳJjUJ~,kU) ד rp@ yϽ^%p(=J\P믿믿/"m8 y+ȽN c"9 n.0F|SfGvl]37Mnqϲ?G@Ww___oI!s x98}O|߷f R97X0[fIܪ0s~rpM )ja.\j 0(%@7,˲gl>X'RwHܞYg,$0Ӧo&g0&u8}wsiR____i1`[@ul*{Hg]3g{b5F+\DwX_p0e?믿믿믿mg38ہ}A.`-`ߎ5< Y4\8<  `Lok֨njڀW[55ۀ3lƪ[fd3gR:˲,LVoc_$KՃ!k* >_~s7n=~s}r\5<}zl0Mn ]g" aLdIзWT7P믿믿/"m8 9 ^1 {5-̱y?teDH#ʟ둸\a|kn3ꆮs>믿믿믿?#8 /Gg 50W'u*!̤r{!!ذaXpoJ_ 0'՟Tn<R-˲,kϫ21'[UJW˂S+ _@AnuCqҠˀ+Õ{BcuC-˲Y?*[Ͽ??5*}d}8;õ( oO}. c"}/(EA s>k}w{___DpT=,t0&rx38t{52Gݐ]ژ?G@WD6M@Wck!0> pOWw___o,A*''8L Rǹny/09?̍a>LnTOssxܞus;3y9?z_8o\0`}R-˲,kϫ21'[UJUp`czV?ӪkN'񟁿?OW ܏,, u8t=sp;@_,˲gl>X'R]/}nl0zۇn}/( BYϬ>nR____iñ`) :e `pj0Uro # \8]AaLdG|tsH]7s&]S5<ϭ诿믿믿'90<|=^ 3/\jfIu,cSU |TTn& 냝s{/ۆ|=Ry>7 yy~\ż&,˲T]}^?٪MwUCˀuA㳃R`m<_̄I>uBp%(n=Ϫa!Uüu=UA]^5 r3gkr\ _XeYӳJjUJ~,kU)+wAnzֱ0&}_#Qd5yaLdUз?0&r7ۿ ~诿믿믿"҆w0&r8  Yng ri- r_DAW\Eׇ'2u[}____6u8 RǻI\=`> sxRg?sgj` sIl:ۃ\TO*ov?3xw˲,k*UWWeb>O*=l>"%yv=A㋁59 yU_S?~>.gRnf3_;@<׷[eYӳJjUJ~,kU) r r60So=rDTȲ bPJ}8}w{___D|cAuzd9g>,uC-a|g>϶ 'rz.`/Е?y7wٽvI$"$EF1ƀ3&Dq ۀ8?r93"B_ʽ>{ߞS5ٞ٭wO9/ oUu_______?{ u`C8` {ZXXp*&_ "Lbf\ W\Xp \j \yXV{x/&X5x0g`$I$Ez^=۔{:)r!r2sUY0ga;>6l@kJnOvk}5C3Yr~,짊Xǯ/kpMM$IL~WϿ>?}ɲ;}:iXx;Դ6Xp.j? `ss/亿ȿ˿˿˿˿˿;TE݀: ˢ'Q7:Tvka?\[, X?Zxkdޭw=K[t:c9<_p< :yƙq.X +웲3Xǎ՟pV^<19B<>VaqI$IJ*z9)u:R^>BdXUY0g̖X_Ps&`nOyAgp>V_:F`>Oҙ P^kKZFX$IԙU)r}~$} k?5hɭΩnoi~a:{m575x0r~sRyp1xUׄ9<<~ЕXX3)s`osxx9Bz XC@,GH$IR=ymʽ~WϿ9Tmx Ď *fĎRgT`ԩ3|bρ:k+ V_$IL~WϿ>?} :[b+痭͟OO`7A^`@Sr_______Qn# 5f?0dž{}RgnϦ7dzXY{UPqϲTj˿˿˿˿˿˿rY0g<`V G5"`]0N,G(VV px /džuo/_V{c?-0| 0#(VYFs{>q0i x 5_H$IR=ymʽ~WϿ9_m%Ď8uYnA̮Xo3üE)`<RչK$I_u*Gן9{kX/JOnmN:ssjf,=kfĎ/IpX_$IR=ymʽ~WϿ9*,by;?[vb[kW4`gUZ{iU[U2^:f"%IT篺Hy#IWO,{:Y4Vц":W4}5콱a?O ǦB˿˿˿˿˿ !gU9Xӽ~`?~ XdTWw^=Y, ƂTgkI #//////_?_el=s1Zv<80&+p55ni ` P>mf.Zf} PgO~,V>^ |۽\ I$IJ*z9)u:R^>B=-êvFqfXVn?[_|udUN@eI`LMg$IԙU)r}~$} w`|ZgY4pq)k\Ͼb3[k@O?{li ///////>U``Nc9?ۀoT_,6AýRz6V˸9q=]aFS*V5]G______忎;'۳2`nǙ-^Xn0:Y A,dS V'?On v+^ pZ֏[@Qm{1'p#g _Lp$ITϫg{r_#U/DNf6 f b[gk6;:~&XOu2l%kf|>5e%` u29b$IԙU)r}~$} :9yA*ڜ ups<9i?>:ܷ=дTKOu_u!Ds^9w@*oEXWu-T7rX3;h 2X43UTXoUu_______3{ 8X}a(Ͼ^bsc<|ǿ;`տx 0<0Q>bOI$IJ*z9)u:R^>Bdh(c"y>u[yĎ=G8zTkǧ~ \Z}Yb}I$3.R^>HR"'seaPjm'Ens5c kLMҽYpASr_______QVE:e`GHh'Tϳ6_F1 0?wʿUMב?ÌA?|':`QXϩ%/U Vtp # b9!/I$I}QWE<6^NGʫ_ 6 ,bwΒ` ֿ <.OZ5\3g*`f4ip VX#I$I.R^>HR"'s{z2篭9Z}&-i?mN\u؋B UE#: Hhӯ X{)^Z3gS`YV?S'Rܛ@Iߪȿ˿˿˿˿˿˿?Y| ]fa̼e`&<xghF?`?O,{Zr~by>ׂ@ < X.K1g2?o|VC,lp+x, $IyUs~oSt}ɠh3 0o=cC/dչ Ś:σkZCձsoY@ֿ 0S:Mԟ$IT篺Hy#IWO0gv`}SԴT?aJsᩓ7ASfSr_______Q}͡zs H=9egjy6V 5n]<)LʿUMבw30B+P/Vj{p8 0OCSu V4e)x |ns\1OV` `+?p70 7yscb63$I$/*ަHy 9``nO83dߕ: su.ܫ+v|l^J8{ZfqU{iV,&Lqm:#s I$ur?Eʫ_Ir_BëiO:#bMgODдf\ uts{tE+`$gH2=Ìs;$I$I}QWE<6^NGʫ_Wmse@`95e{u]cWk} ck*`eV&f}Xr#I$Q"UϏ$u_?!rb>"4߁o{}bÞ{մf.] uĽҚ꾐"/////B:]m4@*iUU *g}`: Rg>{wv}R:///////u3{  _̫aOR 6>, o0K+p`e?\byAg3s9B 0C9?\ ;X_oUu_______3{_f<~&9, h8~ǎ>V?} ?k8nb}yVMWOp<s"`@$IR=ymʽ~WϿ9Pm3 cC 6nnx\cƭE3 X?*\+kf0'6~o=C`!f%IT篺Hy#IWOfQ`@?kdj:4v{_____iBUf`Nus<R,0e7SV}R_ѽg<_VTrkJM{gP*V5]G______忎wf805h,p?U igy2/(~a9<XaLV#f,!sxFX}5 x )z0i"xb%I$/*ަHy Ҁ0qfԌ:WS1ձO*3UkWWZo|/:\X}I$3.R^>HR"'9a ,,/Kgns2<kYH`gR u2!kek%I$ur?Eʫ_Ir_B{lk h= ֹWi׌{Yp/l?8{X=꾐"/////B:Zmt7sRgò0S=e7%U]AW.̨a&_z2ogv,kȌ 8waBYF_bVvkxy/?]~d0xH$IR_TU3Mׯӑ*"'TE3^;>6>X? <ܫ+v|lĄanu=C{iUX.esYT/I$ur?Eʫ_Ir_B䄽"Y, Qhs#ֹ񰧨i_ʀ{owXs=ܓZ.7(hB˿˿˿˿˿ !ܞ:eω J培=V^.eH培=_V9mx H{y0lj=Wܛ,#//////_rg 0{gG `y%X| 0;`7̊a g3p+fQc9`}1h%=6Y|Fky9՟ L_C2R+J+Zf1E<"I$IJ*z9)u:R^>B=`Łye1pxĎ_U`8Η{i{auB3WkG&~U@$IL~WϿ>?} {9bþ4}5kU' X0}/Mg3Z~7ך꾐"/////B:0$`Nrs<' ʢ {'4W˳| 63gPZ^-3TTj˿˿˿˿˿˿a 0gs"*b.P{{16TX.P0 =\{ct[ uX0Wg2l+=^9 p_`^sb~xYG$IR=ymʽ~WϿ9Y*ڌxYĎ3gUՀeup^`R-p``h3g`̜aUz u ײyK$I_u*Gן9aFkh k<=U:VqkyXp?ASr_______Q㫢O:=ή`OGeц-V|pO1?+7 2R߭NU2Hߪȿ˿˿˿˿˿˿6X0g<v@`'*< 0Oy1a\X[s?}`2`F `?|/C{xPb'>kRJmR+$I$/*ަHy 2`AT(/vbƯk}fqfp}uKyr| q :;be?r$IT篺Hy#IWOpo/Xp.OLh=ups<ܣi5:k$h?{on5?}!E_____uIU^?ts_f"aO3YOo3}>3w[ x2ޤe@$IR=ymʽ~WϿ9dbƇưZ<σ v|lZHU*`.u|J`e㟖<\uAb{H$I_u*Gן9a/4Vm`EմEu#kASr_______QX>: TU73C^UT7s<ng:|U7ޤ'g #//////_?s`̟6`F s~b9BXXZ0(}  zLX}0CI0#ľ f(6a}a}+P Ljz_x.f/a}I$IJ*z9)u:R^>BdhVc`~"ֿ W&< u֟ qa΂gH3V8gseI$I_u*Gן9O񰟤i6/k?[#ϼZ}D=[#+Z}DiB˿˿˿˿˿ !u:: RgϬU-7ÞJ埙<[֙ۃTٟӕ~ԙ ]x^R:///////uo?{f 7^c{>V`2d+PM_j2Y^7V=W[3g%Ŷ>QuYk3e+0.4OQ$IyUs~oSt} Z A`Е㗖gy;+ 0[Z5Dr{aP,_22@ueYF$IRg*W]}+'DNKCuxطӴwZEeþִp/6kf.Giaߔ{/亿ȿ˿˿˿˿˿UEu < RyGn9? ̟o6@J=.f'χB[t:٫s"`~( !;`5 LlgZfy^lf)k2ms =?vx:?X j NkX?VG$IR=ymʽ~WϿ9Y*ڬ  ƀN;&:%UVṫSg>0}8=X0u$I_u*Gן9}Zgw7,?*p/0k{i5p,k i웚u&9@Sr_______Q͉zx#@*Eef~R *g=738?{UM_ϣ?;ϞA,'vwsvǀX^P~,V`2j+0[`O3gbC]V[Xs5Wz`{^/1g0= h`q I$I}QWE<6^NGʫ_0+fE=c Cx\+;>6~3x\  }e20]+$IRg*W]}+'DNZsӴ7[E;nSдykn{x5]FfX|x/亿ȿ˿˿˿˿˿WEuz9 \mدb?U&ۤ򿭫Xxv@*>s=sV,U #//////_WyÜ]AW|G$@?6~x\3TfYg kqg#Ue`@֙XW~!I$3.R^>HR"'aOsOҴ[E:=9)iuVusk{S۰Oõp͹\+kA{v``u5dѬ`i0f;\3P/I$I}QWE<6^NGʫ_po@9sk+ %p5`/:> p2keM;f"U:T X0[ks~!I$3.R^>HR"'Xp/4Vf2`4{WZge7S5a?U!+ ///////UцY@h7sR,Yu=ܗ* &g`U7dzXlRteXIn{qO/A*V5]G______忎wfɀ0?̮`I V'6ξs{,]9+9?ɭƷ|bVMrxgY,kC{bub$IyUs~oSt}ɨh XW$v|l|a00 Nboiԩ|$u|0?^i Y: ~UZZ|//$IԙU)r}~$} aξn=?M*\u_XOϬ7Zg}7dzhf3꾐"/////B:XmN87s8 R,B?+Z݀?vAȬ?t=Wb[t:pߟ=?bs:>8 bY LiFXy8X X09<b5s{V]x,_NA,w(6.I$I}QWE<6^NGʫ_]m#J v|l|^X *x bƯ/T*hV&Q<2cO@ϔV$I:S"UϏ$u_?!rr>a|SԴ 3duL7Y@:9uAgqufws<jB˿˿˿˿˿ !pDUa:e?O)6ënLTjyV[9Al<ݺxTIng`oUu_______?}  s8`.gu :3{#"xBdHUY, Ɓqٴ kK3^noenkU:f.Su@o%IT篺Hy#IWO>:?rs<'OkmEc>"մq+k-дf%Y7(hB˿˿˿˿˿ !huzaH?{BV9Ge3Op<_V9Y@|nsm*ʿUMבgu!8~ ?] s)J0/ 쫙lF|`0`9z`a 8p͹/4pX=`'t1k;`N{ |v<f $I$/*ަHy Uf) vN,Z24Ď_XPg|̀M/5r R^$IT篺Hy#IWOp.X/='M^S'fF7ޞo^aÞwu#@Sr_______Q=́z~ T_(6WL!֟ $;o6V9oR­s`j Hߪȿ˿˿˿˿˿˿ܞ:OLA,Xwՙ 0| Ìlk AWTp(`Ҿk¼sb9?~bĹyA;`W0b%I$/*ަHy i4bƹ7s~倵>Sz\&s{/k}/6 X3 X|Rfy=Tc|RչL$IRg*W]}+'DNk E?{ @`3d , 9o4V:K+94?}!E_____uص*0zxvJ0g {fΟZ`,X&Yx!Hߪȿ˿˿˿˿˿˿ϼ\ 's6 ~.>v `l Xo';):0s`vyyM9`ϙW;9s{xl%1盠+C<I$IJ*z9)u:R^>B䄹:Ky v|l|`ϼ`y`e\ׂA83|!kU`W`>`3+XMoYǙ4cy =2si* I$ur?Eʫ_Ir_B{KZ{HWip-kԩcew=wϞiuws<jB˿˿˿˿˿ !OU9XS||| JYa?nI= 7V*;-?V[?STyTj˿˿˿˿˿˿۹3s _t!18?S {xlFfsÜsxxN!3C=Hkל9?W*#5gP$I$Ez^=۔{:)r!rŒE (ߕq k {u[o< u>\`$g܇s`Ruؗ}ߘԿ H$I_u*Gן9]sZCGiܟk8xثӴkx:9/^3X,xXSr_______Qݪ wϾ`?{rVܫ963?ƽgm`Y|Tsk rs6~V̲f>kTe`XaMWgDRՏK$I_u*Gן9a/CSԴ,uwso,X|p/^óǏ;s%I$I}QWE<6^NGʫ_6+f, b[gֹ L;>6~=8]cޕYu{1[)U}8AX[ߧ U} ue?2I$r?Eʫ_Ir_B';>:'94{ Awqa?ng?дkx:˹9U@Sr_______Q]zΞ`?XV=3I%uK1 GZxc:q[t:wߙ= n̄0[9 t` :YτY1k`5=Vhp&CsĽ՘#gA,9K: >1<[C`_l%0_? ie`*`3, 07x Z\keEHR"'܇{~Yp)!մkx{cFs_-es94jmu{꾐"/////B:|*nPh"hӕ~X7|O*Ph"gng34 Rܭ3`a_3?_v\ qm\ XQOui=Y̨gʞ`, W졺 ~87V>W,ܱNq6{X}vGX}I$IJ*z9)u:R^>BdPUYcf,̞X9`=ņVx n*? ^o H$I_u*Gן9e37kдp.k2iGZ{i\sfYp4ִT\Bah7^{9}Ih>XSe` H{ x`aJ` n-< 60ʿUMבrLL[.,p/pX} ޘ 0{S`08ז9?nu,&~[^|_?:s D?mo{' I$I}QWE<6^NGʫ_,TmH0Ď+_e@w@G:gu|XX&Pges1 Y%%I$ur?Eʫ_Ir_Bmq/k9/^S'g 7ޞȽ$`s94c>Y0;=ZMOu_u!D6Guz|QYR-WK&5<[?kT_ukᙱ X{ZUGoUu_______?}g0C&C;3//r{ǂUn;t b\ws'3vc;=A,hX}f@qmc%I$/*ަHy {B:,Z@5GYXgnJU?`8|fR$IT篺Hy#IWO}p+k3j5C< >z6Vc:{?0>Tj˿˿˿˿˿˿7/j< 77|bB -~Y1AxWu|l A06倿Ďgs~x p|Hߪȿ˿˿˿˿˿˿y\_s~no0K9/:{ݵb/c9< 1[ub9Ogsxx|6`9kN10[G /I$R=ymʽ~WϿ9Y*ڬ ϽQ`2g62{~>֟ , a>sV'zO)`3 02,)I$3.R^>HR"'v߇=:ܳ鏠i:9e@qa_n.MgVuF9ASr_______Q: |TWW{͸{~fw?@l2;<:-V?vtgSl VyAS$I$Ez^=۔{:)r!rY bXe3b= XǹC@VI$3.R^>HR"'XxM^ó.YdkxN:: 4#k5&i ///////zxcR,p(|{`b@Op<_Vj?Sdas>[t:cy>F<n] 6xl  s%x\76;r< b=1>t=b?G3$I$Ez^=۔{:)r!r,c` P~,';>6F>:qf,Z8Ke*`g&=$$IRg*W]}+'DNq ֹ\?޽Nn ~ 4g5:4д_Z}Vۂ/亿ȿ˿˿˿˿˿9X`p0H=?uUsiRl ǻ9M`}?׿ X?{ #//////_?b~fU)E`LUWy Ϸ)`W7`n3_?'p>%`2ד00Yl>ˀ2^&f\ x?ѸJ;>}2H$IR=ymʽ~WϿ9a s`@`e0{r_'o[*0XK5o XU:$IRg*W]}+'DN#q]ioN coO^aW7дZg;7dz3hB˿˿˿˿˿ !*g_7sQYa?g& g{`p|C?{؇c'~b[t:*3Nҕ̟a}1/{K~; t~,G<ܣ/c&ޭ'A73NEX?Wf8H$IR_TU3Mׯӑ*"'Y0e gJ UX`qx,Eԩ?CXXǙ=Sz qf"qT#I$Q"UϏ$u_?!r7дZ'Uk\?[MR˿˿˿˿˿7_9*n5Tc3 X{f Lx7dz XlRg?{_{ R:///////u3oS ~~{},G(\ 0s_+fȯ4/8XO8 _Q߸GAoU炙B<%c? I$I}QWE<6^NGʫ_Pm6KAs)_Xw.q'`q8sXCR:>,uX}f8os :9H$IRg*W]}+'DN{uu8{5:1ۺ9]@^þ:uH^ާ:uMOu_u!D6?$7sp`.P*EXOq=sU7dz#X *ܺxfV8rR:///////uy9i 8w̴@uc<0+yAg/_B+t;`f݀JA,/+g:׍ .X p8\b+I$I}QWE<6^NGʫ_,Sm Ď1{1;>6~`/JCvMZX0k>7X0y;q*`Y 7$IԙU)r}~$} lp%kT ?ֽg`3l{ π{i{ vZg 4?}!E_____u8*0zx~ǂTc3GfomRjyV 7ݺx<{/&j˿˿˿˿˿˿OϞ/jb<@Rw߽ 0eWX>ϡ,m[XgX{YB)c"` ;>6> FՁe ;I p S* 71 99|>_:l*9.I$ur?Eʫ_Ir_B:}4u; +{ VZg}7dz5h?b3Y܋Zkn=WMOu_u!Ds2^:fT׉9B̷_R&gv`Tua?l=sR:///////u3y;ORq~O | bOU+g2prxb{?3gL\ߦ81p xp{O}_f0^^&33<$I$/*ަHy Uf,`8;>6։3CuQc sepm@qfE:*{ ]$IT篺Hy#IWOr`=M_޽>:c&iGu~x~%fXlxMOu_u!D~PmNP7Ü# m`gO*?Z*Zng3>h"mqO1g|4@*V5]G______忎0'.wXO Z sxwMk`]@$IR=ymʽ~WϿ9av*`4XĎ3C(:m7;+ov)o\l` `^)sﳥׄX)CRe=W$I:S"UϏ$u_?!rr>X\xXiluchkxN:ts<ٴkxv:_us琉2AH =2 ! EPѪvZZ;ho' ',j>?]|n>r9OzFz= \T#=O{a /-#=>ˌ >TߞAWﹴ3Bjנfty 4y5hW\T|v~?|#pN%ưܱ\߃{l)\n ;]B~'?O~{Ωp 5TWHn~"}]^ TzQW~>ܭԕ?W!?O~'?O~ϧ]F'̬2rgy̸~w }S}:e"|n0x=g7ȸx yG~>_1~l}dE3 q07}M0~G]G ч 8Cdx/&B!dT]Waj?ftdUٚDcq:>5bfxAǯoh%u|j"|}{^\T_C`#Wy_ZPFFB驦 jVMןBWӟ?&}#NgE ;gxxϟ+a>ưW> T R\'?O~0ח n2r?׆s*^ixQW~L|Uqᜊ3|]?e$7IGj>'?O~'?O~KE3e}}/"Z{39Y)yqRy>ky>ßG=#哚wS{#ͯ?1R>)TBɨ|7Aͪ45:4#u̟d?*{IrԼ4^i{F]KkE{{o}H}_޳z2Bhz_UI|]Ÿz/a?/FeF )4wȟ pN?lרx#S{ M~!?O~'?ֲ5/St":~?;,7Ek}ʈ?_ۃWŕFn9 C3{vfMnʟa'?O~'??H~ц?(c-49y^9=||- _#JFXnu8_^G{:1>YD| [I~D0FW1!z205hjMwPjMrd7vy_gNS\G?S02u3_˝>8__Gʝo>Ae!T߿5ɫ@=\c/ Q"#{Me? QgF/z1\\97_~'?O~Axsٚ`?>Bo2~'>?-"KH]/ ^>B/47=_~Zn~>-"~c]s5l'?O~'?=X{}`o彑Lm|k|-{k|_mK=j=j|ɯEN{O_gS?OuS}|c|5ROG!z205hjMwPjMrX7|&xt#u|j׈nFx; -:~g}O ?x ]OjjjE׻R!5(Y5]?M^M¿+|Kg9Sh Qὀr}6s*o ;Gzk ; (pNōư{/'?O~'?`^W&>ӷs*~x~_{Tf~Om"ՕUq[8m4eԕ{T{}ߧ(#uհ}O~'?O~$]xؙY~oO5c FR:n|xۍ3Y?1YT _/?}Obȷ /ȏk7 GvaC!*L'~Ԭ?@xD#u|j׈N6GIFobRǧ}=?bzE~eh#w׈3r}g7{j_e{J?B驦 jVMןBWӟ?&}\{3^bsv8{ ;G=B>ΩOj#ᜊ_~'?O~AlM=|r?G͆uo)7o>2Օ?ø¸ڨ+?{}vψSF.O~'?O~/¿+5|}x?{}^~A'q*"oǟp F_N.}O&}5NOI/?{Tkt_3}޻k!ГQu}_DSoUhaNI^ľk_(|?4Rǧ}}zZjmg}l_K;חR?/r}`נ:Bi jVMןBWӟ?&=*_2r}|/ưoQb#g[8b\,Fş>Ωpa6FMFK92 M~!?O~'?ֲ5SƍkM~Snoğ-{oz^l8S}cl6{vfMJ(#O~'?O~,I*"L= ?{_Fe$}oϯV[ =b~o7>dw 8|gEU4"S~_+' ÕO}B' S=t5$}xRR{/AS}xRRǧ} @Χ哚5Ee$w>gI#jנfty 4y5hfg\/s*Ϲ5*kl Tvwרx'ᜊArEx\k9ʥ M~!?O~'?pkٚF{R'8_KH]/ ^5ro T<8bԕgg3˾ZDC~'?O~'hs?|oxߞT os`{~|=;'շ痌5Rbx/w3cK''oO|["rAFOnߞ?B=UUO45};Y5]&5e:>58ި \.}Sǧ} ?x_y>g}]r:S!5(Y5]?M^M{#\9_17>;9WR|?R c^D\Ωx1u^h O~'?O~>S>5hԕGEke$7ߧ>~ߖ+ #7q F]+,7?}^0~}]s5l'?O~'?$~Qi1)"+ʈee$}l/?0~/~OV;|?Oxu}ˈګ}O~߳6S? qh|Ï{Fy!kB=UUO45};Y5]&ϩ>0yrὝLuQr-#O3rS3{xgqj.;볇q~BMO5kPPj4ɗ¿+1r}?{/QqsE8ư?F_>T1ׇרyE8Vc'?O~0ޓ9o1n0n6=vyO)͟KSWmEFnᜊg{/q}n~w"{~ʟa'?O~'??H~yRn5op(> ϧ^7՟ Wߓ[ǍTon2Z ȣEQzSFR?+"ޟxo%q;l^_pBɨ|7Aͪ4T{S\yRvR Lcy_\_;:ʘkxϝnu\^ӾBhz_UInb8ư_^J#g{8jc^O\? T1/ Qq=n6 M~!?O~'?ֲ59덺}d;󼧔߇{f|'+sWFn~<<{ Օ?,N+C~'?O~' ~ߐ?_Jmgz ?{иH_[`?0_3|b#5=.~=vu_u^yw̩y_"uLl!ГQu}_DSoUhr{fN0RǧYg|='E[Ƈ VW4|m!m0r}R]>.k2sR}ރW#jנfty 4y5h_u\vkkTA4kTr}:Swư>F/>7s*l ;]B~'?O~ᚲ5+9245 {rίUF|˟M_W3Tml4N3a=f'SG\QW\ ۇ'?O~'?OA>O1f9=X,~W^{#շIs|(G68ί{}1R}|hue|={7Lߞ=kG!*L'~Ԭ?@ 8'u||Oχ~IIqjE@K~M>~u<_Cu\_s5G]BMO5kPPj4]->Cy5*^n\Ω9c?^o\T?co Q&#ᜊ_~'?O~A5FpN UˌhMX,gkeg"#7391f3,#}ne"QW\ ۇ'?O~'?OAƑݟq3'/6|p~1=aϏۺ|H?#=sއPc.~JqϏgTc_(<=e~;~?=շ"w}5翧B' S=t5$xqχJ53r?YD~lxe:>5 ß3޻&|,w~}s})"9ee.#jנfty 4y5h_}2>׆s*n5 M~!?O~'?pSٚ`?ׄs*^n\iĨ+{{ZrZeg-Fn~+uP]u}8~[n~Y}}Yuհ}O~'?O~$z1ό;sqS}{^3 Ky_=0_79YF/ߋ>_4>hsg5{VT}^kG~ͽ_s;,/#s{I5%=~RD !Г]u}_DSoUh7'Sϴ_GcE[Rǧ^63"E>v;6'.H_W_%_I#jנfty 4y5h_{*r}>ex\k97I>ȟq6 Qf#{v~/4'?O~'? µek9/50zߗ| j{OV{Օ߯?=7z὞ʟa'?O~'??H¿+L> c ȧ?40y[׌ws ּH{/.#3u?M-5{~M~7{?oe"?\Bɨ|7Aͪ4owf"!S6L]:#w>G:{eW)"ޟ'{=}- !T߿5ɫ@|;{{^j Q#ᜊa^=\ Tx/a}x_6r}v` ;]B~'?O~%ekWs*1.34lί{>_D~lԕg}{nԕ+ZTxߤ~?#3CF]s5l'?O~'?ɟa325omx =AO1R}~R}{5?5xk>kx?3}J1.~=g"}gg5kgk?WD|{==bzUFB' S=t5$<+ue:oOg~/(#;#볏3);H_h!5(Y5]?M^Mx\?ưoQqse8c}_>'S1QqsS8ư{/'?O~'?`+[9}Q8ZF]OW]DufxAΩxT{ ՕߟOǸxE}M7|㽆/Oo{2?H:l߻l;ȯg|ׅɟ={<_ BOF}{MM_jVMIW E3SC罧yxyϵO;OƽFy_u\ _KH{f_GaYRFR!5(Y5]?M^M>~oư{>s*̿ר gc ;_0r}~-S{ư{/'?O~'?`^Z& S}~^lkՕ[EkA=\swϓ+s=|UϨ+_+7?GƝ0s5l'?O~'?d?Z9y \~@~A;'y7|yԼ{~4f@~o ~> ~}|ͯH_Pj>ȯ_+Bɨ|7Aͪ4I1?7?l#u;3ϙ3{_ԺP5gA-"7s*n3S5'r}>Ω^5*~y[8ⷌaBS_O~'?O~ lMFᜊ_Ɵuߟ'_~S]/^;'s*|Bup~o0/j>'?O~'?O~#?x s:>5=dVޣF3}0S0S13rחߟ;=y^>ὸ0ΝG>ɯ#B驦 jVMןBWӟ?榲5uWs* F]}Oμ2ߟKϲԨ+b=<_Օ[ZTx>?,"uհ}O~'?O~F~5XW&>0'Sޛ罿Ӎ\O߇y~`On\ˈɝ_cYnoA2;_*{+(# !T߿5ɫT5u97=a旑 Wt0^#7Bp-*f_W nCE{ުFhiG!5(Y5]?M^M n2rQύUV]̬2[ CrO٣ԕkf89ӌQWR'7gr5l'?O~'?v RyRR)F]ޟA#F[.ʈɝ_he .އ'wޟᵤ !T߿5ɫTҲ5}n0^cԕEke$7r{+l#7?[}+٭>B"*#uհ}O~'?O~F~58lMϊkHs?]D9POy{T\u0c{mx)vBMO5kPPjL5+[]G}y8&U-F]*Z[Fr+_g~SF^nO9ݸ+wu=9 W5"2N2r4N4r}60j?7w"r}Y`2Bhz_U`yuٚ6#wpNkkWu忯hM0^8|FQᜊgguZ.2?u."O~'?O~22mI^Dg -:>ק.T_#5R}urXD\G!4=AAͪAhj0ռlM&#w{x|]P&Ϸ3ȷוUq\k +?ͯOn/+^_."j>'?O~'?O~#?.[b5N5Rǧ6N2\I'F72rFB{+o;hg>crmޏ(g}|_+BSMԬ?&?S>먩>?7o0pњ`i}T߻RW-yFn~#tqqQW~ ^e;EdF+C~'?O~'0ek+8HϜ:(WIV2_+"3Ha3C >41ܿm5r'gG)BSMԬ?&?SypNm jԕ,,# WZ\Fnf[[<ר+uUFr7_>ȟVW\ ۇ'?O~'?Oa]uekg2|Hzgxo\nj;ʈK'KqFSO1*"!wޟ׶"r`A!4=AAͪAhj0Z&xs*޷gQ}on+bm5|+QiKEUFʟa'?O~'??kptٚ`88H;dYDv/#-"S_,">"^7' 2ۓ8HޛCy߯}{r}{,BhZ_U`Ų5먯 TxQWvoF2hMOLy_*6rΩ縝g\jԕߟ絬N8|)#uհ}O~'?O~F~5xjٚu#u|O]wQDv+#S޷}RK &\߫+e$w{4\Fr}~\DHn9^ǟ}H]s5l'?O~'?v ^&=S0.61J:G,"2RczcI9og;?^Oi?#BMO5kPPjL5P&-ᜊ70^mԕ3ȽEdf+J#7ᜊ-ﹺ+uf8_SD(#uհ}O~'?O~F~58lMϜzH?a%FEdav2S/"H]'g4|{۳ό5V2P#!jנfty 4y5jZ&#w-ᜊ77ugr+Kg+zV]as?Kł2My/V+C~'?O~'01ekrq:>g1^FRǧXD9Sui<ȝ_gޞ\# єgm65r}f더?B驦 jVMןBWӟ?榲5u7s*fxQWHn+Օ9b?lcQWoRr{!_ꔑj>'?O~'?O~#?X&8~;SO5|{a狈IL|O3Uӌ\CM c52r罷ZcY5Zc jנfty 4y5jn+[xߞuԟ Tbcpњ`i_e{Oۓߟvqὀ?Rn+2rwy̨+C~'?O~'059"Sޛن\;eSEFg#3r2oO\9888^Fɝ=<ޛ(gq7BMO5kPPjL57 n5rQu^њ0_xH]}Fn9ی 5TW~)# W*#a'?O~'??kχahcO.76?(" ȗ?7*u|jEdQJ^4>K+ >Gޯiq1M{^Xk jנfty 4y5jn.[xߞuWs*^mՕ5>e$7wl+=G9 |R~ݼoOn~g{[DܿO~'?O~' |HOԼ='O1YTYD9POSD|"G^74r}16~Al/;ddOcBhz_U`?o2rQ Thj]]ޟ'77GEğ VW~yr^+]WWD5r:nj<86V{ޣ{ ^#5@!5(Y5]?M^M7 j䮣[W1Ӣ52p~2ro='u(xU\n8Sq{P] ץb^>sˈ?͟UW\ ۇ'?O~'?Oa]LcH~22dgr}xH{߯kί2N2r}Wg?("?*wYkg_XF/7b,0vKWB~m(#>+" !T߿5ɫT5[uԗs*n06P]Sp~IוUqpNys斑w+ OUW\ ۇ'?O~'?Oa]0FԼ174r?VDNjyH>Bw2D:>GޯdßG53w~q볧vBhz_U`yeٚf#w5{QW~?wp~Ō2ϙ]F=y.4r?3SqP;Ǩ+=Te$7] %wՕ?W!?O~'?O~`{käOo4|f>Owf~2R!ɝ_e9ghxxyr}Ylk ;tpA!4=AAͪAhj0R&x}^kdjԕ'EkTn}Ed2RW~v#7?["9וTx_WeEԕ?W!?O~'?O~`ਲ5?jq:>53#u|j0ϒ?+w>''՗iɘixr}oF,{!jנfty 4y5jn,[x/uk90^nʨ+sHn~3gv W Psp]*|oOn;_6ZeO~'?O~1ރF\?RD~`|:>ק.6DʝO]ϺWO39h u]ޣiUA!4=AAͪAhj0xߞWWs*7^bx_S&WߣԕL#{@uB.?Ωq}ʟa'?O~'??klM,8ßE:>57'S}1#Ey;q1?TD2"_VFBMO5kPPjL5ޓf#w5Z Օޢ52k #"u>?ap]*2p~O/_O~'?O~G in^Ʃ7~#u|j|H9ȝ_jl0g-61Ae$w"x&WFBMO5kPPjL57 n1rQ Tx/덺hMWg8a^FUqc8Ÿ:ͨ+Mj+|ԧ ;TW\ ۇ'?O~'?OaؕBz?Zw??̏=(?s@1|>݁{};~Ww{8&3Kkk}wF|qB~-w~;{_o YxKk?8s*x]vWnm;\xy5y~]~]8^o 9pcxx4X`@wm}?ujOh6/ \.Ṕm5j783p^w. lݺhc`v2+㲾3ZV 0_3| ll !a!]GK'/+ e~~wkwU>$f'F99o`h:py_뚟ށ-p;<=b^`a`$sF感õ:;>+/mu'MoG?w 5zoEcsq_уvuzt%5??/{S{Ȼ<:8 yWqMᵎln?wX<:x{{g=M aڿ(Z׻0@]Oo)%9pq;syߖVqPZx{y~~qՓO#@y>7d='pv#u{?_xpG>NS! G3N~Nߝu^1;'s1~֣tSୁ7~~ sxx_Ÿ̟'pgLJ?q>)2{i}$?/5n|m} 'P1^xoyCs'wƾO8\í>4s ŸX^Tm#g;cK *pOwxn`:o{i?5k;CΌ]R=xn!s~^oukmη׏U|]?~71o> #"tؿ7^G~úI|~S| I^?89\|uG2>&w ̱v2U|n O=7_>|uk߇Cgl `=:;Ex>^owʟ\U]/ց?|&wocM_ 2Xap~suzxGoͻD#{J]{h,4;8CL48G^j[<5.иƅiW~k\qek_Wh_ 4^_xk4D_:/xƗk|x=w{h,4;8CL48G^j[<5.иƅiW~k\qek_Wh_ 4^_xk4D_:/xƗkPpS{uO=պZTjS{uO=պZTjS{uO=պZTjS{uO=պZTjS{uO=պZTjS{uO=պZTjS{uO=պZTjS{uO=պZTjS{uO=պZTjS{uO=պZTjOGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQCTa}պZUjWu_}պZUjWu_}պZUjWu_}պZUjWu_}պZUjWu_}պZUjWu_}պZUjWu_}պZUjWu_}պZUjWu_}պZUjWu_PZB!B!B!B!B!B5tLu\{FiKm]{؝{Xh,55v4v5ލSw{;fg!!!!!{s|fg|fg|fg|fg|fg|%Y%Y%Y%Y%Y򙭾;w{h,4;GS;fަٺe|g|g|g|g|g|g/%䳗|^K>{g/%䳗|g|g|g|g|g|g|VGѻtF=4Km]wp{]_{~y'y'y'y'y'y'//////Y Y Y Y Y Y }ԫinqRc[cGcW轭}t?>Sj|g|g|g|g|g|g|g|g|g|g|g|g_+}峯|ϾW>g_+}峯|S׫&Xh,55v4v5%Ow{g7b,b,b,b,b,uWY"%Y"%Y"%Y"%Y"%Y*,KT>KT>KT>KT>KT>3e|g|g|g|g|g|z,r,r,r,r,r/.3g/峿|_>g >5 s|9@>XY!Y!Y!Y!Y!3+@(s|ρ9P>@(붳R>+R>+R>+R>+R>+J>czVg|Vg|Vg|Vg|Vg|Xǟs|A9H> $s|XϠs|9X>`,s|Vgjjjjjϡ9T>P*Cs|ϡ9T>P&s|a9L>0&s|9\>p.s|9\>pZZZZZZ!#s|9B>G!#s|ϑ9R>GH)#s|ϑ9R>GH::::::%s|Q9J>G(%s|zzzzzz9Z>Gh-s|9Z>Gh#cs|19F>#cs|ϱ9V>X+cs|ϱ9V>Xllllll's|q9N>8's| 9A>' s|N 9A>'(s|Nω9Q>'D(s|NFlFlFlFlFlFl9Y>'d,s|N9Y>'d"Ss|N)9E>"Ss|N&l&l&l&l&l&lϩ9U>T*Ss|Nϩ9U>T&s|Ni9M>4&s|NOO>=ӓOO>=ӓOO>=ӓO_>}ӗO_>}ӗO_>}ӗ9]>t.s|N9]>t)3s|Δϙ9S>gL)3s|ΔY9 %s|ΒY9K>g,%ss|z#ss|Α99G>#s|'s|Γy9O><' s|z ^ s|.@>\ s|'^$s|.EH>"\$s|:0^,s|.X>b\,,Y>Y>Y>Y>E>[3r|g|g|g|g|.%#y|.%D>\"Ks|g|:QnVlVlVlVlϥT>c,/ϥT>R\*Ks|.6lX7m&m&m&m&m.맹]>]>]>]>]>;C>c9wg|vg|vg|vg|v2\&2\&s|.ecN,}wZCw33< }8qǹs>}8K9K9K9K9K9K9K9K9K9K9K9K9sϹs?~9sϹ8pGp5g5g5g5g5g5g5g5g5g5g5g5g g g g g g g g g g g g g-g-g-g-g-g-g-g-g-g-g-g-ggggggggggggg=g=g=g=g=g=g=g=g=g=g=g=ggggggggggggg#g#g#g#g#g#g#g#g#g#g#g#)S8Oq}9sy>}9{9{9{9{9{9{9{9{9{9{9{9{9888888888888999999999999p>|8p>|ssssssssssss!C·9r>|!C·9q>|#G8q>|1cǜ9s>|1cǜ9p>| 'O8p>|ssssssssssssssssssssssssssssssssssss)SΧO9r>|)SΧO9q>|3g8q>|ssssssssssssG9G9G99s9s>|9s9'Ο8'Ο8'Ο8_p| /8_p|ssssssssssssssssssssssssssssssssssss%KΗ/9_r|%KΗ/9'8'8'8'8'8'8'8'8'8'8'8'8'9'9'9'9'9'9'9'9'9'9'9'9888888888888999999999999g8g8g8g8g8g8g8g8g8g8g8g8g9g9g9g9g9g9g9g9g9g9g9g9_q|+W8_q|ssssssssssssssssssssssssssssssssssss5kל9_s|5kל9999999999999.]\lކ6u؟bغߣ7o8p| 7o8p.q.q.q.q.q.q.q.q.q.q.q.q.s.s.s.s.s.s.s.s.s.s.s.spppppppppppprrrrrrrrrrrrqqqqqqqqqqqq뜢6g6&)s9ŜbN1S\3N1Siiiiiiiiiiii)pJ8%N S)pJ8%pN 8'pNqr'qr'qr's<'s<'s<' 9!'䄜rBN 9!'䄜q"Nĉ8'Dq"Niiiiiiiiiiii)rJ9RN)S)rJ92NS)q8e2NS)s9rN9S)s9FFFFFFFFFFFFƜƜƜƜƜƜƜƜƜƜƜƜ&&&&&&&&&&&&ffffffffffffVVVVVVVVVVVV֜֜֜֜֜֜֜֜֜֜֜֜666666666666vvvvvvvvvvvvNNNNNNNNNNNNΜΜΜΜΜΜΜΜΜΜΜΜ............nQa؜FV NSTp*8 NSɩTr*9JN%SɩTr*9U*NSũTq8U*NSͩTs9՜jN5SͩTs95N Sépj85N S˩rj9ZN-S˩rj9999999999999=8=8=8=8=8=8=8=8=8=8=8=8=9=9=9=9=9=9=9=9=9=9=9=9888888888888999999999999}8}8}8}8}8}8}8}8}8}8}8}8}9}9}9}9}9}9}9}9}9}9}9}9888888888888999999999999888888888888999999999999888888888888999999999999C8C8C8C8C8C8C8C8C8C8C8C8C9C9C9C9C9C9C9C9C9C9C9C9888888888888|-η8|-η8|-η8|mη9|mη9|mη9999999999999|w8|w8|w8#8#8#8#8#8#8#8#8#8#8#8#8#9#9#9#9#9#9#9#9#9#9#9#9q\ǹs:u8q\ǹ333333333333s=z9s\Ϲs=z99999999999997pns 87pn333333333333s#F΍97rnȹs#F΍9c9c9c9c9c9c9c9c9c9c9c9c9|]w9|]w9|]w9888888888888|=8|=8|=8qqݧl%6e]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]_qa؜FuĦww(|-|ձu]οa1nXT wm?3k]F_oWiT Ug,|sk׎^vm{_|WSZQ:V*ȵ\TNݟTe_C3 |w-y3_w?s?)|s׺g,-|]*|V.gF᛽3I׮?S[dkegF~̒W:ϹusQolkJᛝY^>?_\?_w_e]ve]ve]vu/U\ou_u[by6̖Fmbfma[v`;NbnV*[mklnn~`'ډGvlة{nwڻvmb?squ[byֽCB5FИӘӘӘӘӘӘӘӘӘӘӘӄӄӄӄӄӄӄӄӄӄӄӄӔӔӔӔӔӔӔӔӔӔӔӔgս+nKl`s6oCٺ6.f;?ssssssssssssZpZpZpZpZpZpZpZpZpZpZpZpZrZrZrZrZrZrZrZrZrZrZrZrZVE l lmh#[V?;ZyOLkNkNkNkNkNkNkNkNkNkNkNkNNNNNNNNNNNNN[N[N[N[N[N[N[N[N[N[N[N[N;wUJl`s6oCٺNvsλs?==========S-:p:p:p:p:p:p:p:p:p:p:r?##########5:q:q:q:q:q:q:q:q:q:q:s?3333333333 =ppppppppppr?++++++++++Fqqqqqqqqqq*8QRTp*8 NSTr?夒SɩTr*9JN%SɩNJSũTq8U*NSͩjN5SͩTs9՜jN5SY-5N Sépj85N-^j9ZN-S˩rj9^^^^^^^^^^^^ޜޜޜޜޜޜޜޜޜޜޜޜ>>>>>>>>>>>>~~~~~~~~~~~~AAAAAAAAAAAA!!!!!!!!!!!!aaaaaaaaaaaaQQQQQQQQQQQQќќќќќќќќќќќќ111111111111qqqqqqqqqqqqsbN̉91'ĜsbNI9)'夜rRNI9)'夜87qnĹs&M87qnĹs3f͜97sn̹s3f͜E πșȩIIϞęęęęęęęęę̙̩ܺɜɜɜɜɜɜɜɜɜ))O™™™™™™™™™ʙʩ켩[8p?}-[8pn¹s έ[9w+Vέ[9rnʹs+6mOs6m8qnƹs;vNgιs;v9snιsSs;8wpɹS9wrɹs'NΝ;9wrũ$Ļ8wqŹs.]8wsݜ9ws͹s7nݜiiOcƙƙƙƙƙƙƙƙƙΙΙΙΙΙΙΙΙΙΙΙΙəəəəəəəəəəəəřřřřřřřřřřřř͙ٜٜٜٜٜٜٜٜٜͩ99ʜÙÙÙÙÙÙÙÙÙ˙˩͹yyOǙǙǙǙǙǙǙǙǙϙϩdO]YYYYYYYYYYȩDх{8pùs={8pùs/^ν{9r˹s/^νEEEEEEEEEEEEŜŜŜŜŜŜŜŜŜŜŜŜ%%%%%%%%%%%%8qǹs>}8qYYYYYYYYYYYYʹs?~9sϹs?~eeeeeeeeeeee8p}9sy>}9{9{9{9{9{9{9{9{9{9{9{9{9888888888888999999999999p>|8p>|ssssssssssss!C·9r>|!C·9q>|#G8q>|1cǜ9s>|1cǜ9p>| 'O8p>|ssssssssssssssssssssssssssssssssssss)SΧO9r>|)SΧO9q>|3g8q>|ssssssssssssssssssssssssssssssssssssssssssssssss%KΗ/9_r|%KΗ/9'8'8'8'8'8'8'8'8'8'8'8'8'9'9'9'9'9'9'9'9'9'9'9'9888888888888999999999999g8g8g8g8g8g8g8g8g8g8g8g8g9g9g9g9g9g9g9g9g9g9g9g9_q|+W8_q|ssssssssssssssssssssssssssssssssssss5kל9_s|5kל9999999999999.\lކ6uџbغM7o8p| 7o8p.q.q.q.q.q.q.q.q.q.q.q.q.s.s.s.s.s.s.s.s.s.s.s.spppppppppppprrrrrrrrrrrrqqqqqqqqqqqq뜢6g6&)s9ŜbN1S)s9ŜN S)pJ8%N S 8'pN 8''qr'qr'qr<'s<'s<'srBN 9!'䄜rBNȉ8'Dq"Nĉ8'DRN)S)rJ9RN)S)q8e2NS)q8erN9S)s9rN9SV\;w+n`Kl`s6oCٺ)[ql[Tp*8 NSTp*8 N%SɩTr*9JN%SɩTq8U*NSũTq8U*N5SͩTs9՜jN5Sͩpj85N Sépj85N-S˩rj9ZN-S˩tttttttttttt uNlj...............................cqQ6%696M.?{-P[Ycם3_䋊FEEWJPJgEEm].z ~f[׫ ~}S΅Һg_79QRTk]^ _sO?g+q_pg\k¯~b9XZp(Zÿ0K _ _3u_]@VϜ+ ߜ*|*̍_w_g7} 9,sN~\fgg~G-Wve]ve]ve*5U%69lC[jlmd&mf_N?$c;NS-V{awٻ4_q/:nH4+ټ mdR[fm#6Mm3ܶ-x vdl')vjo;.{fWv]o7غǧSG6g6mhKm-lc6ls¶lkƶl{vlgvlUZݎ;N?d;N[mv{et;δl;kfٟOvg/_=f]mصv]o7غ~U lmh#Ж2[nƶmj涅mi[ֶmkh;ζj [il'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~ OkqN?9ZN?9ON?9ON?9ON?9<<9c<<9c<<9c<<9c<<9c9OT=>y&{|'{|'{|'{|'{|'{|'{|'{|'{|'{|'{|BOz|BOχz|BO =>'z|BO ^B?ןO'z ^B?ןO'z ^B?ןz^BKy =/%z^BKy =/%z^BKy ^B?ןO'z ^B?ןO'z ^B?ןO'z u$IO'z 'OH?/OH?~"D~*OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"Du|-ټ mdR[fm#6Mm3ܶ-m+ڶmm;vm'v]m7[a+m5vu|vhd'vjo{mvig'vS;γ??B_z K+kڮk:n4/Tx k)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-ZTx~UԪ-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDKgYE- j)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJTxUԢ8d]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve||ks1=pyT{ymh#ԽnKl`s6oCٺA6{лFJ9RN)S)rJ9RN)S)q8e2NS)q9rN9S)s9rN9Oܩ{Kݖlކ6um}+4444444444444444444444444444444444444YDu؜Fͼ뱙5NV>Pu[byֽNVރ՚ӚӚӚӚӚӚӚӚӚӚӚӆӆӆӆӆӆӆӆӆӆӆӆӖӖӖӖӖӖӖӖӖӖӖӖ]ս+nKl`s6oCٺgvλssssssssssss:p:p:p:p:p:p:p:p:p:p:p:p:r:r:r:r:r:r:r:r:r:r:r:r:q:q:q:q:q:q:q:q:q:q:q:q:s:s:s:s:s:s:s:s:s:s:s:spppppppppppprrrrrrrrrrrrqqqqqqqqqqqq*8 NSTp*8 NSɩTr*9JN%SɩTr8U*NSũTq8U*NSͩTs9՜jN5SͩTsj85N Sépj85N S˩rj9ZN-S˩rzpzpzpzpzpzpzpzpzpzpzpzpzrzrzrzrzrzrzrzrzrzrzrzrzqzqzqzqzqzqzqzqzqzqzqzqzszszszszszszszszszszszspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssFpFpFpFpFpFpFpFpFpFpFpFpFrFrFrFrFrFrFrFrFrFrFrFrFqFqFqFqFqFqFqFqFqFqFqFqFsFsFsFsFsFsFsFsFsFsFsFspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqbN̉91'ĜsbN̉91'夜rRNI9)'夜rnĹs&M87qnĹsf͜97sn̹s3f͜97ssssssssssss&p&p?oggggggggg"g"'r&r&r&r&r&r&r&r&r&q&q?[pggggggggg2g2s 's&s&s&s&s&s&s&s&spp?p g g g g g g g g g*g*rrrrrrrrrnwARi~' 9xs2(x%We!#!Ԓs:8 cs9ٵ sΙ%s%O7i%4sV=v۟~DϮ3g8q>|'z~NNNNNNNNN9sgx9s9s>|IDIq8i4N'̉e333333333 'z..........rrrrrrrrrqqΉm;;;;;;;;;''''''''''''777777777777////////////????????????ggggggggggggg g g g g g g g g g g g ggggggggggggg0g0g0g0g0g0g0g0g0g0g0g0ggggggggggggg(g(g(g(g(g(g(g(g(g(g(g(ggggggggggggg8g8g8g8g8g8g8g8g8g8g8g8ggggggggggggg$g$g$g$g$g$g$g$g$g$g$g$ggggggggggggg4g4g4g4g4g4g4g4g4g4g4g4g g g g g g g g g g g g g,g,g,g,g,g,g,g,g,g,g,g,ggggggggggggg2d=Esq3~5'z9_s|5kלo8pD4 7o8p|333=W,,,,,,,,lllNl׳99999999s8s8s8e|-'zo9r|-[η8qD;w8q|333333333333333333333333333333333333Ǹ_c\'zGZ?#999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999ϹȹȹȹȹȹȹȹȹȹȹȹȹĹĹĹĹĹĹĹĹĹĹĹĹ̹̹̹̹̹̹̹̹̹̹̹̹¹¹¹¹¹¹¹¹¹¹¹¹ʹʹʹʹʹʹʹʹʹʹʹʹƹƹƹƹƹƹƹƹƹƹƹƹιιιιιιιιιιιιɹɹɹɹɹɹɹɹɹɹɹɹŹŹŹŹŹŹŹŹŹŹŹŹ͹͹͹͹͹͹͹͹͹͹͹͹ùùùùùùùùùùùù˹˹˹˹˹˹˹˹˹˹˹˹ǹǹǹǹǹǹǹǹǹǹǹǹϹϹϹϹϹϹϹϹϹϹϹyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyS\c).AOԓLzf=YO#Oq葿~qD=IϤg֓=z_@8xN<'ωs9xN<'I$p8 N'I$p8DN"'I$r9DN"'I$q8I$N'I$q8888888888888999999999999ɜdN2'I$s9ɜdN2'IpR8)N 'IpR8Y8Y8Y8Y8Y8Y8Y8Y8Y8Y8Y8Y8Y9Y9Y9Y9Y9Y9Y9Y9Y9Y9Y9Y9888888888888999999999999989898989898989898989898999999999999999999999999888888888888999999999999y8y8y8y8y8y8y8y8y8y8y8y8y9y9y9y9y9y9y9y9y9y9y9y9888888888888999999999999888888888888999999999999888888888888999999999999E8E8E8E8E8E8E8E8E8E8E8E8E9E9E9E9E9E9E9E9E9E9E9E9888888888888999999999999%8%8%8%8%8%8%8%8%8%8%8%8%9%9%9%9%9%9%9%9%9%9%9%988888888888899999999999989'Iz&=葿葿YSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSӀӀӀӀӀӀӀӀӀӀӀӀӐӐӐӐӐӐӐӐӐӐӐӐӈӈӈӈӈӈӈӈӈӈӈӈӘӘӘӘӘӘӘӘӘӘӘӘӄӄӄӄӄӄӄӄӄӄӄӄӔӔӔӔӔӔӔӔӔӔӔӔӌӌӌӌӌӌӌӌӌӌӌӌӜӜӜӜӜӜӜӜӜӜӜӜӂӂӂӂӂӂӂӂӂӂӂӂIrR9TN*'IrR9-9-9-9-9-9-9-9-9-9-9-9-9888888888888999999999999m8m8m8m8m8m8m8m8m8m8m8m8m9m9m9m9m9m9m9m9m9m9m9m9888888888888999999999999888888888888999999999999Gβ&L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„[ z'zRKscXP*AˏlI?fv?Oz`y !f5 'g?NpdAMMg?+WqU*\%DK`eS`񑯚m&L0a„ &L9xfH9f=g}g*}w%%u-wR:3vn֕k;wDr=fͯ>h_/N݉m7]xw{<'__Hlɓ?żǩ?I?]^cd -HhiI-ռǿVgx~~u2et݈-~Wͻѫ}5~S>~|=>mNoI]_n_}W20,嗃Ӻ"FEW_tOim>LUZ?xs|[t?z7ߐ$|"x>:[~"i݂ip?m^^_tMˠ6/ǧ3|?o7#C|=3oͷ`/7cOp~3]1&L?A}иzFnKnqwX)ͻS~ӌz]T"50v[ݒl?]d >:FĶ;3aodC^S]״ ~/mwyg{|G>C1L2(n~moGifs0mAj]ly06Q(퓴<3I^:?S6>l{"I~u}7w9Qƽ?Sd ^[2Jm|Ym/ޙÿliZv/{_.^v2ߨHR׿n_[y~:ߔzK$y{=W#{m~U'Rڼ zh|)GF"#4. *i`|dl5T堪Q/Nk[;|MP *K&W'mF|e>1'w>|/C;Ơvu4Ԛnn=OX-jTb_nǡn%f}c%R;-3ƍ j|\wRl۲x>2&F^51fZ$f |xΐ߂Ac\GOD wArzl=/⨸s<7Sb}!`ٱlPIvG6W描ng|Py | L|ԎxK3ż8M|c?730;?wPX3/+_g7s|~T"^}/{Tr0`Y,61/XBIqx)q?,/xˠN/1+rܽS^z3A *)0NEx4A]~>u:Es#=AݖUHOs:.uzmtߑW'c޻~ ϐ cmնm:>Okf3Cprjpeppercorn-1.12/delay/cc_best_spd_dly.dly000066400000000000000000017455651514752025000213060ustar00rootroot00000000000000x̽wdWuZ_`_k^`maD2& F5PBaFh!V!P$ZYB9S{]g<{WNmxϚg;~gY0~ȳb?NfbB~P11Ą>z;?&4sEBW?W\3~nN`̍i{_}SLv>ce5Gݍyye>(r`!kxݪhs+׎wDŽcg%O6?%)&c\O_WFw݂@3>Ƅx#hWr9c>|.l-}#w{܋n g-w=@sQ_==L:)|t9,+4K3~أ(r>~MQF\r%1aywy G2~=~^91I`|ALx B?ks_N^=Z˾>ZKNSW&VkdCD!& »+|>]6ms?M>^b9%~MʘhZ:WnnE}+__scn»Ȥ{m|.g*=J/xyn>s@}>qpcϭߡ{twL\0߻8ײھ:B/G'3 +o}ŇYwx]ɟB|h% OHza? ¿nsX^bBȡWń?gl^Ge/_U.If=v{ʘvba;Gvnֹy`?[vu[}_g|d޵8OH"oL³nA'?0xFUH< 7<8}dgw|I["'kcB}q1-GsnBC~~ߑ9~{Ù}x[|=vx;-ψpu}FV|`][KnUfؐ6E;~X|߯Zp_xvy.rV^Ŀ7 :vn}цj-y*JbUt}51u71BV<ΡYl/w( }8_?4~y\wγ;TyW'|tDѵWOnl_%>}'q&ׁoH|,_5(>td՝1V 7|ѕ'Uy79.~nW|]}2~.D;n,j-}r`Vú\ = ѩkld:y,b_sG"H#9=x~pᩋnZ{ltŦ'|R:QeH× 0ͮ ¿XI_ y6?F/+wk{DJ0ӏbXQ*,sNxxw[yf~vk9J'x_pLַDo\(!kd&*lMr^ѿ]5~;8?{^R~;\NsxW kxψ1kc\ŶvωfW6%Cv[v[\7誕%辚 -eo?9qOsx^ r8itt.<M+~[Z̓@!aK ?I(,^GZ_unџ ?t"7 ֿu\ϑU pK8?+҂ǝo0LEW뱸ץxuˮn 0t-2'1|Gx Cp2RJ|'0Wj\:N?-E;DFC%cfVSR ] ]݉/vϹW~ky|s}Sr(oTN <.1)Ƚ}ſ}òjy"oٓx͞E[R[ycB7; {}[|[wSL-vv 4C4q:+l\%9%tOz r{bЄhEƄYqZxVv/}gE1 u//yF V$)Qj95>Ϲ|5&?;?8Go`vEߺ_&:?\$__šUxߎD3򽿏o<1u\ݗG IK{G$k'CfP+~+_I+~ɍ1A,vªaѭ\l5o>:Oy=~ab"kx8Z疿;#? bYb#ѯbd%9:7CWL^H<` _Hʟw /< !.to:uYLl5ƾ|._i<]* /W|]~ 3PW'_ݚ*U#w\5wRkI~*<^ƿeoÉ?JӖ+|]\{͌гxmL|C'}|s{a^+/pY% >c_Xl[TJLNo?ë"kov{>L݋ҩ+-6¿g+V=1z7U;*L ~&Qr(,Ŗ-wF9GW_'lSgO/n[q*ŧ-vyQs I%H3L(Y |&M2MzޖnkGV4 {/7ؗO}v˵f/?:BgQ^ũZb'}--T]?'޼)ߗ=y \1bK. _mm?K=_nO;w/r(rjG~_u{~[->mI ՛_n5Y/ ~~{s ?QB,\/5O=%}@tkqe/|xuK_?>vrNrh|JXU׊S }.%xg%L~~I>늗¯y/=ԊGvie|:Mo /TڙD_t/1E^}Sg_KRׄ_rFk;^5 y ygw}񝝢Ȧņw}7S/~w-v:wZ,GVkٱe3+G5\lGQqtUՙ**OYOO6Y}#|o}qBAv|^ŠՇ(VG# Y%&~P= =1/2ݮf^Ѷ[Vj%OZJ=zvSLrI4uZPNǥƜZjcE uԛO^ճ̢͕yvCuQ.rhc˹@3l·>枮ν }I_A%\4[C_(}os#G~{g36+yu/Ew.r^j݂_e>G+}wNA_%Q(} %{,04ſޛ%76C=Cߓ/_niL{}ݪ.\~Bs V3 ǂ7ń_y_< Zcuao%?{xn8n ?GNy%l7ˢtZa>&C~~vl=(7~Qꓤ.ȫxGiq6EcX3Q]_5|-92S}?Xn7t^vt},^>mZk=g:ijMQf?X >΂?UO]K{m(>?{tOj%U=Q|gt _QO.zTt{=>{B#A͕R?00 b޽γ޿ҿw.N<_pqiFw5zW&K}/¿>iI:׿Տy큯[۪4W_@ۧOɟspQ_2^Z͵{X0qO/7 Ʈ|^tgq9sZG{7~uU(%=o̳ptϏF:NQk]Rպ>s5ڑl ȶj'<=t#׳ΧPIp>W:Ze5_U.EhT0s~=rpW$Go%ͬcf?an[p>rGN}܏r_Iޒ>ճ/{=@[oG1ݨ_g=Qf; &?}xdߝ/t^k?^Q?9_+m̼g(gM[uu1|FK/OK~S(hAuV]̼O!ױ۰Х'ί:3(on\2n-? _{S++rs 7f;ψ0_vooK37Yy-$ϫ}aʼn?٪۞п-=.9WjcB[YB/>=Y-(C/3c {g~4vJ^|]{:V<nնv7C[X9t (wݐ6Ͽkl65%t T_o/pt<\]/lDe{t5~Ќr^.}a'Fy܋xR/e,ru(/+rU> Q0ǩ1Y5 Y>W/kCNs >kEz=:/&ʬwٽjݲluպ%yߞ8Vdk~,!|y;T +vݖ2͕Cw%c))3ּF7"ݖ{ЖlGw_[[?9w<x<dv3~vǙmg:O]E}my|/DGoGѿF0>}Q+|~l]V\[jĨ!O-ͳo}.Mɱ`w*ɫBg-<r^ѽﯹOߙt: K1gqӉƜ=k7%m/<0VOϏ=2JŲ:+x_N (Z,x(ŊGYkГI M=3liri/S\΁Z:< gagZl2h}!%ίWtb2z(زjmtu?ywś]?whܓrJG7/9~>][(ȟF d[Hpf_0߹ [+$>;>?+j{ޅ\=~%у3ZE~U׭zySMzD@6ń.?8FOC[bO<!ʽ`5>$#~~5sFẀ~ _2\8͋3uWeWſ޿\ڮRu^[vP[n@[OxW?+^Fli^!n DW>=N}E}Q64Ws{&d7ЄZ ?ҿ̸ |/RY{\ /O]_E:%QAb64Σ揤\6>8xQ8'偯}< _枧Tt_)VI[7}rn8մ}v+L7oߒk(:yχu!ԓz_fQ?~׳^9$Y}sSL-6yt}'EOoczTܲ[q1_㋝1+=( n,5P}=oj}̦g(8UYOzUK/BZؚӒ"'Nѿ{Yl;̞i>q| Ŗ]ϊwO}mH,6'}|=mN)ѵeK^[ز[gMM پ)}ЪU,_ wJbÿz뜏.f7q(T-qe ?wyp\,O.*onE{׎Ϻo~rM*K|Gy55^󬽬;K ~k/!(>^nW[c[ze,Ye?9Zs:CN5qgy6GfGS=5ˆ]jKg<Q^>u>3KԊ?Wu\~³&1||V.`ʓg\j[w,w(ޡP K ~dP*7[vr_\zy^a%/_+z܆)&v05Ğ]}(J^3 e 6o_Fk>W$왅ҳn'?< ֜\i}}uzxc]}nsQ:~E3PjcR_,C/Og_;Gg}v¯s:thE.6Jâm+N[ǟŖ2-:ׯ>)J \3+_^ ;Xÿ .weg[jӗ.fl\j{A{Lt}d_l[voˢ{YgZVտIĻĜ5YzʷY@[՗ſj$=f%avgC+:U"~ydG] տwݮu+OZ9[#sPޅwU9aO) Co_|R/^vC^^7F;F1;ҿn}t3?طZo+^=pmy:? crĩеĨ+E~/c?kb_){Bj-gU0/~sڮI_uG/ɟ!{F_U_굖7> _$>}W|zG0_9 rs;ݥU>;j3w]>4JyclY?)~%n-ˢnE{.~^nYy~SyUѝa$@G_x݌^n[{_kkq.QR\}F,_}vfG-}ڊ'4ZJC ]s;kSN~F:1~ZelWE.bC%ek g k2`(< +Z]4|vx+47[s9-Wڳ֮=|KzѹS+(WEYQK9?bObY,6I(on;DE|=-ײyUkhcSLbV4?I-\˳ߡ?.񅿥r1,gpzϔuLY俆¯٘?2&"~WOV`Ϳ>i} }N}_5O +}6u,6O\XYʞy]i_1+\zi >?JOlņTRsʡJjkQb*䎘R*9; /}_Wלdۺ 3bnk":i3eZ%K ~p_5bۗm%UΪ5G{"p) wпĜyߓkbW?u99c&=*J,7uY =9CWZ~*~تjZic/Ъvy纞${F3гĢ7x)Qf~ 4KS1RZjTXi[,IyF+/;CiUk~~+s#Hga.fu>Ѝ:YݟEP['w^K_%ņ,[q9~Ǜ[u>-ӆRgeG gt41CQ>sm.~3K)ϛ嗝Wr(^^n7.6j뮔E{*y;/U?ٚ?Vϙ1I-J_,,bWU2y7$|c2f6wpg 3crgQ}^Qf?5~|Άb-ӯr&q:%9=ܹ5ѽ(0;:Яr{P׳ʡ5ՀzMŽ~8#([(w;w0z-w{]Y{{+QHgL5}$?L`h]< M(*f8+ |F76E[sldL|F}qſoQSu C WԫzFs^h/(wa|9ʝܗxYWZw4J֏ز6\ÿag[x|iMV7z>Fv澑9SՆg}.Ɩ㷮ݖOŦ<>ī{%ĝrn ]/d"k,⋧G ?87(r"ۆ_ǵ؇lP_3^;[{h \fl7ú{h[s}bISr_|Zou5[*u_hKg"k$޿S RZ>^ݿQdbZ/. ŎCnorנۏ`wZIG~Qjl>g=3iOѽ|(Au^?߂_Q| -^ѽ?(3q_KeU(wÿ/rÊK?S2`VE+u+Ԫ8;Wߟ89) |x/#r( JKנ{|pR~} S/Qf C?>v?Hc7gAG_^]xYPGsP>WYkcaDt}LKrgp:Ob__?gqJ_>79% ]$&B䯊rqyv^+Z]-~%zCG) qrEF7D;zCsto&xVt\Voϟ?_)~xhtgrQY+ܣ(;Еfp@{/SͬQQs#:?ܣ1 >GΊw.c_\{`O7yb\,hJzIzQ| )H yγ-kS}˭qm պt4.yV0G>bG"㑓*t~MZ:GQhQtdϣϓÿC 粉n5rZ/{{ls=׍ŭ]FQDOW(Qu;!yW;/1^%}vPGhף?̔}Mt9%=,jY#TQ:ˎ^m}ښV\U:~FWA뚛#:h{^Éwl룫sG0~- kHtsbDc"oٗbP5#wYϫ;ԄcWŰ$A)^86𳐕w.C6~4(w__ůVF'[>'SG?G=){lKs&{t|Jteo}B|ކ¯ΜtY."ϊC7Ş/ȽbqMf-~>QL뢛Wٳ) -y.OCȇLnۚZY^9{Bg6çŝ֭ɖ{4UL(uߢdS?C&ޡ=<^nM2n{s;ԉ?pYė&`}G( %n/hm?l{n;D!IzV; >gā[,2^U^@rU{ ݳ.?~|^~Utck"C"Ɔl7J 춁=wY1._zR|pMQ`EcOk$e?C7E5<xF//CweKyvˣz]4K[}-ODŽVh  | g.~E?Yk>6q"{G+y(չؠۥ8~wտyWW]Wh`VC2}/㧹{ ]{Vj(W=y#b˚7b>:A>^Ǿ'7DN?|k>'w>O] _q]y=Fмt/xHءuxQb=uV3Wwo n^$WD"CWxJ 'ſ^?5?Qr_]L#t<,vns%ZVdSm]Dgu]8׫g+\?-?wZ-V_Z=q/֣?2 W|7X2fÿCsYC_%k1WC̄#s( {߮ObOxokUk{+Zvݣb}}ld]lhX2ʯc Χ>@1]R_1N9m^xCᗏx@z1ӥOѹ[7v^nOriǏ?E7{bEly4efhEg,| wY/w \,w}N#9_ң(|k̬Uѕ.Kvi$qbwCw:=6)$Woj_Ϯ<[r=f7uB[>-OjխϾZD³|r7uX Hg /xNv2s~#fg?NWyj}ľB֭9,n&O~Y֚mw͟޿{ۡCɻQf0>hbGE7:Kl+N%+|[zyWKzUM*z"Cgژ5){_psdҜGQxd̻%w;;=ؠ `_yj:fa?yYsek8_gF;35;*/;oM3P~{g Qx\63"ӗ]^l[y[G-ߟmmř[|ҿOOg8wH+n:Rg _ gE/5{UWy]R_cTg:a+~՗?zlOvq[veHyGQ"~5~ypMj_wɟ5<UzPtlڜ8}z|M۳Ӳ[_GޏS,5ҷR+ϯ!,~Hx]f?,>WJghO.G?zVu Q|A>1Joz|ȥQf7n`^[[u{^ }y|>qU>} ۥ90/(3T?I=U?8e>қlyg5?}y6\j9|:Z<{Ы"7G齦_Q̕>~xx(NۊQӰ)yJϾճU#lk9%_#٪ սrޗG. =V'ywo"l H<X O!>`ngcϝ|^QJч_O[ϭ{w,:rsM Aj;ޡ{|Lh<{ZTZnO|#3|}P0o V_a_%ym'(I=m7Fwܗ!HXOX_qctop>b"sZQ;H ~.|kRo$З-0un'}??w(n߈2V3?W 3EsD}כyV.p>;DO ~=;,3R"ωEgd: C#e;gUsvf~S2;s\\wU1Qhn{ xf>?|K_)f@Gob(u~}d+rU42?GuveѝEpe82Gq^su0E̗l2;j-  9W=fv(s߿gW3R=\䳀S|ZB>3gSLx|}~ܐgmgNdk+si;c=,_vn8Wh~/H>,GQ N,nQfa Fѭ]:" Mhfh/rbw;_(5}UvorUtk!溶rs:cwYvxԴ@_{͌7:U ֫̐Ŏljg9s5ĵ|;J3h _sLESR3>h@qFa9 ŭ4}. =s5/_ :ɖ)aF֜eϒՌeeJ"W5OD3~ j,|1Q?p!/Jc#gV^'Ԛ|:=og[7Zs+.;kO ~Sqѝ}uJ*N\<>P1_D=yߌ!>8W:/ᆴ⃲GeR+^~:?ѲGvsCy{(>߃Eתv<3?e.E2//2ku}/|{U^\% \.5ˊ;[oRm]i+,j~ë xo5g1;GE?o2RTqۣ3Q̇4fO=_0׭Z}GGw~[S+ٚ=|ѵd~;m1;KjQ6D7%ܧEwd-{99=!5WR ۋ~QM͋Pwf֜@(qg;Jq*-<+{N~溾xW]{,nYj`4:rhbUjGs-~!{>lLKe rso|=^7Ek5S+'<)YtmOp]vGG_&kkűυ}9 /Tkd?=6l,9+9Eÿ#CW_wu[_ |P{UKml ~ _Wr+g'^u5yЄ\%ρBגd0;St|/r zKr/³lM\|?2~zj7FOjZ?](#n*/׊ u J?s&;+XR|O>0{ޔzNV6~W]5{|[zƿg+~(oQB#!ſb=LNMxĿy+4fCENR߲Z'V󈯊r//{j:L}.7Jk\U{uV粞y17 }Fn}>;=g@8|G 1dxZ}vƐ X]Z铟n kn }z[M}dyy&Wy «F|xόs6}}+ϳx1[*їtl5Xǜ=:~%sG=/9 n,c\+:'] <_'i W^|}_zos 'e(a8$>C'ga 3.vP6f)Jni[?ނ_ψGV/grû[KVqdtV~Yç], ӻ'G[->mՐ2׭GiI#U7wW-~ֲ_rP{ʊ,#,~;,׆¯Iշ9uѽu¿GQ_߲L:AպտЪ\[('8~QjUo MݹCoz^o(uK ݣħ<,~U]ϥ(=::YoKrѼ7nťo_Qץ#uyK1| ?~YGGw!B c;1yq~R 49[lѱLoΛο׏)~ֿzkuǖvb=m_Oz\7C~F ?~;=Yo %Q?m_jo/ˇYlOzYq!yV V$ п%g^lW܊ϩ)W7 -TI~K NL=>KpKg?D>՜:xP9Ӣ˿P[oK_{ںsҳ|:f5Z؂ȿ _F{/,ϟyfЏkߜeŏz}N]+Nꖇ_݀xvٽω]k L]d9G%~o3~(׀3.ʗ/խxu~n}C_K_??^~(I??:yѽcՏЪnۭJxqgYo{Jy 5p_g[˄s jlĪ|/<p"H|jѽuQOL57>zR?>A@o1rp53hTN@ qh)ꭠo R~ euTT=T,뺯P\˒t[-U2e6U5Skɉox|ҙS9L;~%?,2C7xn8ؒ~ h\»Ѝ~6 x_|3L>Ou̍zFi3 G^xX36Su^?>J^sW ^ekd}"BHM<~-JEf(*GTugH/諓lEѹL?8x)4}oKw9kdfr_[UԽelͯ#F-xѝ9&v4. >oγB3?2R2<~va/Y!OoO\e^淢BiVb8}hIk(ĿDwΉ]MK {%[s|oos˟mZyޖ[U_{s.[v+jt] #^g=|8|ϟ;7~jVʴ-Ҭ΁5{+Qf6_wtϬIͳEBԳ*/3sxŞh)o\QdOQ::sT&/n3WG.ɟoWkjiNS_ޥߖ^__r1gxY -/^V d~0gI5|CкI_1r܂+sCifYs6؋h %rE߭[gЌ^$^W'_h&ߚ%ܿ,?5 BJ~9sN\~#Cy=0 8U/2jy}<#`.2m%_)&W4E9>?iyuHeÿ<>8q&?W|yWA3-]] ĬxEsoՉ]x_z<2_~,ʽSIrMW^t-}$7ewF^bG}BO#(Qfp3d;-i5y}X6{G\ح~ֺЪT_mMg9ϧEENJ:~9-6ϺA0lH:ŧ Jlؿ>>^/F'3K6KBcz-E[KѝsY{<&[=bgܚ{*y jѽ'N:\Y_]E]E.T3`Gѥs}OtVjϫO]܊JynB󖐕y[\&}vm{JGʌ(~/W>B\A٘j dbt ~v~eOv~hL+B$hSX˲IWg/yUXz`3|tUM+[EВtbTqEfw}?w8̺zx{ݗ9 +qhn3uճXUgsn` )3ANCN"K76vK϶pY yQf 7v~CqOg_>#4"%ݛ}8Go .=GsP.:(3]߽) BG#,qŞG %ul<tهr?1J7GQP}n\gC=ާWD{ ~!pcC#W(r UGӗoWX|Jfy\.|'kQLYOw|K< x)b?n^^E> Y=5=%vD=sym9(ϲ^V #;WsUtNuaX<(w-|%ʝ)^K,[{YGkiɗFS?Gw~·b`{.E3 ׿#OS諿j[&jWR?GNlWEwv=qCcn'\_xVMo+t3ÿ$>wK_ݘ_% gAuo+5ѭuqw(+<&J_ۨ#?!Wo嵽.zR ]CϛQf_[+.cnC{|/)/TϹWh5'wH\[ʷhNub-I/vP=\4}tf_:1b(׬gE/ZzwTMWuw;f WY,T` -lo,]peV_p߼~nízȖ^nW$G{B| cgk36v |vg_< ݘ%-5+Gf(&1ߡ~hF\lÏϵ?nYuK5^k4M{9o~PƖ3n/ݢ܅¯&mת+m̔@يc6C\nmN_ON+[;RwWzxlY<-u^^lo YΟ UUQQf1k(GEeэK,6e͏>Gy\oNGU'~+/7F77*ud8}K 7CW19CWNImt=J_Rv8(Ylb'յ^9}yM_֣(UWG}BϾ,?|Uyvo:<~F7 wVPs{]bwBޗL1QO^'XSݧ?jֻ71o-KP?3 e_(ʹЊ!ӂ_\Ol_w=uDNW\l빑c#zZTϭs+<-$tkes+3\tοlV5(ާuΣğ뾤=ˬ^OIb^+ QSLm | 㲝9V݅H|_b9?d7>&!JmRq+_x}~9sVkYVp:^UJf 3yo?.u5_]lܪ{+<{>VnտIv]9َsL~}s: _6tzg-6:kS} 糰?~tسD]+ ۪zeo}Zֺ?u_O2VuQr^s߅LSmyG=_ _zh<7P=}! a+o{Zs9э#[|~4֭ye?/7kwbSġx郡֜ZrT=v[J9̊Ҽ+:~|T|{?YXO^} M=kVּw[tk~i7}O_>qeUP_<e并eo\:+>2JEQfS=H4E3"n2z?)kޚe}+ۇؚǾ:Եu=ksQ?kg(jґ|4=29CNwGYj+jk;/ʬ >gQ>O^90zϯ_U,}y/M|NcZput3]y  zz@WGwzKaNѯI}P3?V4|x(=ГC'+ &B/U_sx 2;V|}somt\tY bWƖ4?A8>Q>g|~Ǘgmi商[_s.݋v\C1)!D9PÒw_7~9GJ|v?(zg+ }]{D6}_=C_.]&Ŋϳ@n=;;R Qx^Y4Ou ~٥^~^ݙ}937d0|{1Wzg+?x-W[gIiO@e ׇƩBc>H(s4W3?q] 2//S3s^wB1DYQ@ϲ}1>Lk'm/ܫf[zNԞoRCOߞv4/x"SOutsR>p5c>6,dt/JzyuǬ|W?ju_^xZO<ψ)N۰נwh8G^oDܖ?<|ϴwOv/ެEɳ,> >йE,ksu䟡3o]Wҧ2gT_u'%Dq6b7+ю+i+Eq/ŭgr@ 0e7f^Ůų#v۽yC'[wZ-e_]EYJY'E =p~÷!^t-vbnٟ-=+>;A(xϲ->-h_qf V~PQl9? xScuΌ/ n#\Sĩ-}&H\~h>=#)>?{̹OǗlhVh!kٍWQϩy|ϩ!JX @ ^>ޗxG&{,YA\~?. ._> H3i?uBe_9ߚ{Ƕ[Ɓ/_m,>X(v><-WSbwDׯq f*Ϯx%Ql+k\% 7/(o \.[[Z}u-};^wM]54KUWN0uX[ ^>'UW_C87R_=w!<$|s ?֜Eoly2ͯSLQ9+o/r+,Y*_<ާE/wun8}xcK+2=(5G굾џGncns϶Ż3̡l7o1|ʚ}OB_"s]L~=])htq(Yg'{]ۣe+/8d=6C OߗD?6'a*Q_DE OO׿ҵW>QKW8/}l9ѵݗQ} N4K<]|y|>&}=*~OW<<eg<0ΊB_IBcnj,A1ݛ_,&:Kz^3'=?~졓n'_ڜ;:V^k xDm\T(K3=ݚ+ q]LBsyQtEѭ4hʞ -QVFK 3zRrN=hnEyQj8lk<~;o>;}+9q93:}Lsm=QyqVe+Z}f}ubA. hr<QMx]WnƢl;' jWsؘ5(6t]( =-] /piQTtsIGɻ^b!=Jut]?Z2W˅~БV&.W4q*³/wFQdײr@:4_{o.dz\(?{ƻ: 8d><Lt=}<ܿ-هLû&NQb(lߪי{]cU `=u~C?;ƘA'bOs)ѯe/_ZXg<|U3LgGnz}stgKzڛzת;벼{FWǵŏxW/_ˮ?"LIwgK<3^k~]|4gs{C?1sC¯|űw|^V6G}FΧU-Q؈HwaC/ϳ%nkG$ڟ/ #WΈrʵKW܂7GcgF2TG-[^Z2JQ*g j=)JUNWO\{ݚ!VE&¿Ozg ꘎b~ D&=g^TCל| Ƙٓ,~ _/ϐ{.sc?Ǎy^CᗾQ؍rGŖA {?TQ|+ (?.BgbVW珔 -fqR[Z+/׮QbuiuQHЃbw&^A؂)v]{F6GU}S|QJ_W.y\Ei?+πp[(ˣęм8+?Wy~F=1{rs83uts/1uWS5[+ҧ-m[}-ʿ }˿)e:_EW{4~^ۃ 7~0_IķbGDk9_{Iza/b,J1s]kXyn ~bo35ej_N-}N/n-x)l׿P_Y&Ϳ_]qZ!}R+yzN<>ў砜^8=&z*FxW-=QHFoiiTqi^c%J{dP2d%yUK6(~{~{=ގ췗Fq _UՌ)~uA®8qE\l/>>mO]&zd85TC}VA^3#OI<_{{sxa=2<V}.^ar"k7gȢm_>Vݿ`Y`_c߿.J?Z lgw%TH(G^WTrkmzhqQ.I= kuP#S>R¯?b/ OQ|KWyjC +2SHc_*Roi)h/uPG1Ѯv^pb⵬޿Y-C 9ǣWdw~VmB']:+c\nŵZ|5~|y|ˣ}05/ڀB-;uf㡩s+vuP+vY_*%Sz苁։/}Ӧ }~i(|=sջir>3/3C*֥!;}5W0w~V^ca'zy:Ro4֪8g7O'Dޏ Mr8|<%q͹C#%_?;'.|g/I2%(e};l [T5Ѫ o".̽}w~.Q.~tl(I+׿Q_glWhLvэѭZy[iB; i}RLGyς-VdmvGlIqh6rYۊ;/~Ic+5=/f?(K ~Y9*s5@񉹆_3VܸeWuW+uEt:W_;+!4; G{&M P5ˮXlҏbݼb,=*Og^}tnm[ ->E7buѝ HūwϚ _?xR_7T_Ҽte/AgɏE>+;Y|-^\{w]=ҿCDnz<׼ym }fl7C dӝYK Q-.E!TxP]θ.랅sѻKTxaQlTѪi/g-Ky%qEkXl\tx"z o[vxKG-~o?ԏ׬:m{PKX55~3PWD?EGU%?E(~ņkTU1[KWx5]}=os[|=J^.Ifvo_QEYk":^~ <ѹG޿K,W -%s;&JLbCtV1\N?j剶Ƨ[o=)/.5X؉eaG{ ЕxwC ZmTe/5GQ?wru[zY/mmj5:y}{NG75Knr} ?QdV]R<^K3W)?oӧOh[q-ckoj=ϭ,^r{뿣ޖwhU/YZ7GoAg7Ť煚x塿j̿eN,?k̕{a 758Ju.]*~{Ŗ/Dcs|Uy.A"?𡄗h/KK8{FO{(;G;7y Gw6|sO;jE/eOL=Jrz9Q].[^ Gx[+1 ~$ t?lsLs;twh}P뺠QYukBjkz~E="dүM}-=*^!NM2>xw?+΍(|?fyE]U[}ʚ|5;Ϡ5y.Ei}Zۊw%/ՃIט[;H24R1}bUtCѝW 9^]榱7ͣQqUyp1O߭y ſbbY׊<:&PsdK Oόn/5xՓwCYGQbn)_1Oi~yѽ?(3r߿.,ۣf͹:ygweWV<뚢VF>1CϳgEl%yf:ʜU3+6LcRj!Guvâw`WO3<9DSr]|xZ}R-(s0-ί2@3i0"Vύ)''5?kt%K>zoΆxVUO[]0t9;Į47 =)q?Y<7=*>~7W?w_j¿ؙSGO_,1~5S](<(^~͟t)Kˆl|_:z񙱲O^nz99~fnk~ϓt;[ϑ>ݿZ4Z~n+=ma߻2q- g{X Kua^[c33sx; o2Y39=grW埱'ͿB9 6>: XpKAC(ˎQy;2<7$ \#rYvhߛ[\E_>=ZO*Np@^x}^OHIo):=?3g3*w{7-~vcZx(vE;/WҽW k hH:ۀGk;.lWrY-A"ۋ"/ֵ?F4s%1MFc-㇚As)xmz^?է0D/O7?Pk EN`3C 1N/v/gk~ף_V9_7 nP]x?B%ls?Eؒ_ (S}OV.Cy.)u' 8ף̬cg7zFuL*һo=g>$U{U}.KwRؙĞe8ur7r7~x <ǝ[֜ɖ<K6;8gWD#5v@Qt1 !.{pKs 1mli4e_'*=뽯E_̬Ku;Jv_R/)Ϥ+Qm.=JԚbᗛgG1Xyyy3rF&@k)MQR8Iq6WFs^qc!_:,G|U ٽ^=b]qKgqlh]~_=,Yg$}hFxz9'G+<s:s;'Վ^8r={ba߱2|qEYK+3اUt)1XVA¨}_Տ<|3.ߓ^ż`,Xwf9#ar.䭐?,硼4> }r1tiKF$["ǃ }CGrgDY^:ؖOp>w4JN1ώ皗U=QFlg}2ܨEgL@&C8W89[9'oO֙:٭z$CSuXs?zKWO١Gu"T~сQg7]#um L~]}w=i٫9W:DvfKi0ZF0N}yL7?;O[u`pğ˦?YmO%WKr4G{Sѿ;# iI闝 Cc:LNiG-н*'g\x׮/󾷜.*{CpD`]{T7~!4֝~ x_fŚ)<,KY^Y{gz‚^^y_f?˿~ոүBU:s FNӗu&w{Yo?{py{?O?7^h&dY>?2ޫ] JW9!GsW5ϙe;d7w _[O\}.sGC0jwՍʁn6]~c^kmq}v˙Q1A{h~Y`yt02Euudo+ձwNo׼\ScbY|nf5;~o5OjSgy]~f*k3B̚2cϬbb" z@ߩGP8?{b;s os#vihg)pf8z+Nq[y͡R@⩫>~,L3li<]l{/d8uPig FVa:-XߎV,f|KkiΝ#E3/}x^ri?<&GTs} z~>_@o{?0]΍ khN9|lQg}T@_+{lϷڻ~'|:haAKb\G]RW Т3~Ֆ^-,!&Cϫ/9eQg9caI  \Ja8ƎW_Cm/Xq#}9~_aNߕ">1@Kg>_yO/tnzxI<|qeT?1]kvL3l?Qc~ι8ھ_v,V?Ƶv~pyNrFkGqͱ\x-?~>b%*"Wyŀ<v{QK빙)?w:٭319ȶ a(㟸e,{׬ŐͺwėcWtz%WB< wFs.ډѳOݒ}g?_{<~lBT,/Gst(3//n`Le9~yf.p!.Wg hU~;jsV^#kiWg'/~ilڃQq^ cdߌX - C/|e V's[gՉ}}H[?G9kٶE?K~{[ Q1n.y=(3O=jwG͕ K%|**p#)!G#Ŀmǒ[*/?*5cc55!g}uHw8~l1G,{]Qs_gtT9ߝgG[tIϓO |4a0G癄$oo`sRޙeϥ?®`Y\`{/~f?T5϶;V} |WGżO Qu/\^h&qrWFϊ*{n~ve{3Ogs;88N)ϴ3Z￰I ?Y-˻+2@Mo~-5LP_"3BnFz;~\/)A_ [>'z岨u2>%l /cyL ,F[<~|;'%=cfoVY])[XICCsGn;|YĔ rμ-{<zS}vy:~>Le<7N]Ys!gAˬ|_F,ŏ鯊zglʛs=CK?爨8?e<~WO=~O.G+>eϴ(yCq篼~ԛ>Z?TkjzS0:EכTCwvϦoTge}QsX|j.9AXRy"E "YVY+Q3S:sw.YfʻҨHzƨ[3؅6{z7!-zMBuF\Oʏlbe?4gϚ &Ќ1rwdsLN3y`^=}X}.eX;pv~ ߗ2A8o_b~j,/S]{ r7y+w9y^~f_ ߟS_h)73!_}DsS߱y<=˦_>C9 Ϲ_yeӟfxWψX5dO3[/[jgG9$G/KPePߛ?|,;bWyH='^vft%/YȩCfgr}oX'vkb%@| ݞO:/ #,>$h-Z9see:쨯UV>_{Ϫs}1زo~ jmQqudFGvV5؀.9U %Z OFϢ:Ǭֵۣv ~G:Ņrn{/+3ۯ֘?j+b¿Y?=S?Y)zJԻVTWRzlh{^/a~>junצ?eϣxrCs~_Zz?_tmϪL?:Q+3žz}ٿ7Կ:{%El(ժ/w?~y}.{ϣ41KzNߧ_0"9zzO? g//5"3yFa 5OrWG;G >*,fC9 C<ì¬2;2Yhs^^]{OT,e3S,s%W+g^\S΃3e/_/*Ggf xgS3FWGńNC1,ќ "w G+=u}xxy+4 ks`Y0f>BK̎|-Zc-z^_uf:'DE][AS?99 yF{|.I yKo˙\YޑgCjFRzA1s2 FJӋu%gYNPw49~@eLu&zn>6~Z,;3_UGg1JgnwKNOewl0sI>as9߈ p)=FNɲwwt'fϾ#`(<3E;|u:ݱ\~uV\r˞c{af!䷟w|TyswC}c/wE_?fDv0S}**s&g+U~毿Qm0҇B7=`kvB E{OǢb3^UhdP<33l:_S[˻x(%+Q#>YeņS3~_ SaҭvLJ]]kM<ϩt7wd Or[T e;~\3-ρQ^/_dAxWTg/6-Z {/LQЏ>!]񣳊7yh>&^WE>H$L_QJE?Y8sV^|}q2?9yCm5eq1'3qYe_.X^߬_ѿ-[{.YXK{WE\;8[_٨~}POup9IT9=PJ=% vkb{d6~=,+R:2{b9Y5lX1?xThx}Qsz>"8G _=ヒW/~eEx/g>3P rʬcW>9[_"?rzr칸93Lb4;~f΍PwD)wh 5Qa_x ]2Ο]2}\ҐӨ}fПœKGoþK>GJ~ H|CՅ>Cֽ>"@{\&{ggFl 탕.cb:[~}~Nyf)[޷Īz> {}VTuoGri&7 wL9+ ߠ;:ځQ\gW˲޷~t}~s^cR;ɏz=~䲿(;9,/w}V[w Ym6qh bH5OC6Qmz;dlo~nDkׇwGe{yL#Nusm$קtoeaC_R~;N/D _evfOzDo@wQ:f,}Z{O<}QK䟌~):s=M?07?ҟɯcB~5EATqn׏mD^\Z5[~_P=zZv&xoۢޡ/ܨ!EL@r9uy~.{O֋-y⼝GzGFnncbDaFa  z!1]Xo@}GޜLw~b 'D."yh8񣎌z/座C9Q jDžleqbԹWd3̅æ`E˦(k1|?g}Yg>^&:wwu6?rxTGEo;?f'/ShSOQmCdlo>5e穼'?~~zP8[;9{R<5j㗽y?{oC8E+?EuFƄ\ϧcG3'snO]ggvyChV<_2/:S: 9VR~7~9ݝ¼7Q{_r sg|wD+<vpwI+ftCqߟ;zʾ^Zog Gm~ˉaܨ_m;,y .r5Kɳ˚⋣y`ɰEUu_<8WBsvGC7kd~|s2]Kg8 X{| U)ZOܻ?׿4w籪Gn?z_,s m,>m<o6 ^>F~?u^]w7e+?wnOAŰ?|x8.יfs&ټX=^qk*$, |QRX>3?9^{lM`YFׅO.Mt1|e{Cy,h~Vy_ĪrC֖OGI7ƪ~Ht;|GsY^j]K{[G/^dql7̞f/:[{>G; dGO >]ח="=~b_duJCooN?݉6 LWKQf|E`{Go-|[Cw3P? yt?Dե" gyw{>>Nt*ϝ G6l./wS]Q"}w&VXXSӞw<.yL~}F>;EyÎBts$t\)g^_>AV/~@ə(n]rW:,uF5?z]qMe.+oS}+πݒ Ymlw\ ρrЎ,wfyB~r{FkW~?W[vWCD3{k釖/w.S cWg]kk.oǩ/Q?A翯|{/3bc *~O7BlQ9>~/?ɟ7D?YF[.χ-wI /Ȃ\OxnY9xLЏҝQ'6@j֧F;\hX(~Sy9hj>ӽGjC`a%^c}'Esc:Im-y D~3\9g;^|kQdž'EFK\:~&YUG=~TAn x-3E3g:T3r{92hS9`wgA_sL噈ڿ=uFxGlZxw35zEs)XWݶϞ} gsV'xԏڿQsӑ$+~۲_,'Rsx޻w?G~\Yx'woQ[^Kb78Clھn1$6KK ͣOd%K;تos^h'g/nP7f~kwtICYyEa\{ݟyQkCDoOg?ΤW}\"lO9H,*>ںX=G1gP=#Q>s],ZF7{U;ft"D JU/m~W}T_꨹*WV}KQ=XS}fAs5uzF29C!N7ڭgKL}R=Nqw 9q/_(kOu$~_{<ޙFb3C` 9]tﻝxWV/=?/ڞ=wB(=!\cc۬/h}fo̙_-97UZnۻuȆ9Ði,^tQ^H}}FAQg|ݗ</|B~peD['R}jEsUV'Ê<,v]*?W;\g_g+O~|vΖM?h%᳴)ǹ\ڟևңUV?!r}*_M|y_/4FJWx?k?~Sohs>S5~9;C\LKV߱o:/O9~?S)Ϝ}VKvz, kDz~zͤj-3;~?eM@ˤV xp:gܬ~pn/~?/_gBK:͊Kh^3fE4WY~b*,ج c'߸]dUfٿ3O^+;+ZZ/9!(o-gŒ;[QiofIZhb3Sy$1ChgiW9FE}PgDԾV .}ieߡ4sc}fx]էw|PƇ9qyC8Ȭ_1U!뾦gU|j?O ЍvsE3˃nqI-زm~?V!߈{YTnKcV\8;a,Zp_6̱eotK?uz{Eο3kbXH_ǿ&5~0ML n65? xʨhbar$uj^6?7FAdzZ?W*gnLN:[g~QqTVEa|!0uB#_)kG<9a׉}K};_G.H~}w]I~9E9+/2*.~uvЗC79s. >걌 s<tKk=垨>~h>wt^]]:֮[<1Ž} `oН>}wdV | ӵeg!+^eVsR90y6.8Q?!%,ޱˏg;ƚKk.L#'qץF|h,a+LVslϖ}s+x}N^/x,GՑЭ/ S3Bf*\X|g1b Gz]VO -˯eУ“U-L˙ ?Acen @Dsb2zV1!Dkcl^$|!s'/KU?^WE&fTث7~_̣:{Yb1/|\ yF/).P,q(PO76@?4{8"}E~UF~~ю0?JWcw96xoҨQho #7Vati_ o?;z@LNNu <~݋#3teg^GgY7IyGIs!1/S7N??흛g)gV39יߧ:oЏ 73y}ӳz/lަeV }u--+? 7%.ҙ7=/o4Λ9gl}_P?gVv ݏ|w1(D~.j!rzw%bxI'Ko?]Pg?9gGŪwW5<1C'M^R>|?h~)x{=Nmj?+ȶxyUhk (pOFCx["cjya6}=szYq >[}A˦̣\rSm3~ZCe 8qf0")X}T3G6^^6Cvדr!;=g5)_gEş~FRx׷wkω6 J{]sG Ÿ<}Q&}^x9{EgzO^ޏ/^9(N{x Zgk~!X}2cuFg^&OX6YܪҖhJ/*YXv75`d&7kO_gӱ>Z=gx\˯*bS6'Eif`ޗVf}bOScŃ13ϟP]qՕξ8iP_:[40KǼo6g>/j{/?1%$DWc*\~]Ne-NlӢ毞DY-/}L_?:7_,C8u/jlF>7O['^stϩSbPVu~*_QeeWKCk#p,GvHf_>sl68^DzGͯ;!+:ˮ|~jGsΒYͼ,=;/(0 ;>g&~sz`^tfI/s+Q5 X[¨sTK58uk&zg(C=9s _:4!_ o)g*yGG,'$Q1 *kM|וys1OuOGzKxU~FnPs7 y8s_̍0;,z}:Fc9^_,+9[g4k'3"@#bm*Aff4g5s;_cN>e{_~04#~'*uma9>">.L +tTxx!b׽k}3<&?<,'0CuN@5ohڨ7Ešr]e)XLe8WN%1_uu6IfZn=ŞXYCyT xG9_xe7~5P^_V$3Z:V},>w5kWF@>/jIJyΔ}g8]fal²9v ^ѳ4G>(6ߎWʼnE)y^y _9sL}NwE5'S&Ls7W:? B~^?|#(XGŃv7Ywcz_6] Cvd qo~+>1nUEk`;mC1sk)ϊ]{wW1,?u~X+}vȹч=rKvy fvy |ϼH:l:k7ԗ WKJr-NG ;Jbm_nj=;)c'jn_x9<|ny窡r&'5;\/Z[~1y.:Ž/sB{ y" dY>.v~_,|5OtGT(5!XI\v噇ټCVWc5gG%^~__r>:SرXC'|~Ms3Ȯ0LgzW i}iT?YwoʭDM5K_!#ۺ+W<K(9jYܚMڭ'׻K6"I@ 2EbSJo>ϝQm~7*o;V󠲽/3w٨hC#>ߍ9~ gyi9AwRC-ǜo2*a+Q'2+hr}h]fecLf6XXgr3g~r}:!gs= s|,(G5eXLd]8hcEz/jMg3fwTgtH>ۏwxi%j hKdG\c)pi98圕&j.#AB4t7@%yq;$K+b}W;{eB9 W>?K5\ֶhc[^g}cٿX홡ޑ=pGy^TΌ֗uQcȿ*gߺ%5?U_Ra 26o^3U׵K ^;|V'*K<6 }#,|Ѝeil,dw^P^^o_x hPLQ{P_ h{ؼ+>-xˎ{rΧt-Q玽5y?^t~' Js@ϫGo-G /YUN__ϙOԫ!?T6K2g үy]Q4RgG~Qb?Qyg@+9<'7买z_XW߹c*/5G_UQk؃w1ȇ9.ϣK_{6>[oU5!FYrc_A?3dwq"U徚_|NutTu7ՑL#vXl~?ҭ}?=NTrogpYyL%C"uFv\k 9=O۔C7G3߭BkuoWz96P+1X3YT} {gs~WwϗMfg+I/XuVQ>3ЬtjSc{_cJI~"K|4/uIG+ | W{]iggvVr-O6G}o9.|1YyϛV{+[烢֌h_Dag/<|S蟱狢ڷ$ lQeYxP)"~G6~0/.f?x9[/s)[O_gZ^ϼ_6=OLW) |y _}u??GD߮(Se?]} ձgG:[*_y-~cuQs{sRkGk*?C QTt|HԼT'wx ټҽOי8(yyb(*wB/_DaNA=?O9¬jB?{l_<~/{ϓ#_jҼ ̇˜w6k1<`u&>3Wl~!C_C,E^g:u_* _|/rr&̌!+3h/Ϗ+4㝙$x^3i~+bhQc=CF3^hE-v*;sGw>-~f-o9da,F3%fo?]UDc&qN4Nf\dGf-fofc$kgyi=?: -DգiZ#W7*돖s<Э#fi7+a-)?~NTϳ,;0ab?幄X@?us\Uw$Z=d"}m; fd}*?2 C/hpl̛ũqYa2/ StytMg,g8csQmבݞ~F_$ߓYDds'Y<̉A`>*v鿟_'>Kx/_4Z: ̻Wˆ쾐ⰳb-fʑkk5¥kx󨼤=UQ/}zeʨo1ڱ2K"?7O>C.z =v{~Q>Za5u=~rA}nќ9J_g-yex'FCAbIŐ,:[|KaUѧ5wG5~Y}}7^~!L&ZQ'd^hv[gꡋb@;Ɠ_~ޙr_+sH=,E?-_ZA'OYeS>a=Ǿ哳87}~PqZXl?[E 6Bn?.>vw,[cdC~P }&fm6V{{$#?gυ7*N z93ac?=~ŷ_IzBY>c[}q:~q,bz븲ߎzq&z)bB_౼X(_Wc9# ck߳VyŞ{s_aװE?TV?֨Xz{Hsx'mּܮy^D9l Q1i+KM7'>/riTw+faϹ1j,9f-ir}ϊە];|^ϥT9"jlsZ|zzF{=?F=?˫Ϝk|$gRP~U/V3v+j|7 du ^WK78sk\.9Dt(so)g / o+3K|cĽ_(P헟_5f{;4+ {{绢g龇?,_TO{ >RC噾Y l;'ʗB?yQX륿75QU-Fѥߏg9Cvl,s^ɠo{!>gS-{h~D5tc815N_[zmC5S>*婰?w^ /:JH(vלQ4c}"{(+Ր <nBVv=~,WnŹueOwk_<,%z(/rY76+^WFy үݙ^hՋ|;n/=?DQK~=B#K<+/>\,ENT~eE5-n;_t u*uvO]oCPT聳:g j9W5>ki_{g/]1ճ:dVẓOޗsufs{?[ϣkv~**_03R~@ZmeYdGүԓm &x 6}[͖jF9wwүQoG~9[?Q^h_2hP9*>n~8_څ0TgkYwy^~#{c.5uf3;-zX}fc~FR6hO?bg5P=e슲gdۆJ௻[>KjмoyC'~I.~ĻfϙJ gl(w,/>uOk_֭qQ{hԓgF?fw_|_|]g@/VS"Qm^wȂz{)Cjgwע埱'ԣ ou_h{ƔW{=>*ff/K>"mO뿒G>/gL'uhrvג]itk|uk'hk[c,2/1<3|oٔTWKK{bH)Ozޖn8K}zYYoyS\w__?aߑ M*Ϯگb|h r}hԼϜ} znJz]sRl$(s̝\G>ׂ3{=qIǹ;[g/֙sIջN~ՏI>|ʲvl`ǐӾ/ѿ5j}vG6y/c5LyAE'X^( ?EGK~2*_h1g\M)CTo`+<,׼:GըgP]X?_zw }ܿjbJ 7:vN!vEãz=c(~cAzӿ*go^me?v=gXXqd{z4Ckx呟gEch+h5o!}g/[{ッ^wgg[y_<ϣ-;j{6!ҡD|G2zvTHeӏD6ɻn>>wX{//yvQO!8gt9Z=Gwk',仝m\C0WKpZh{NxK<y{.Sg ÖrDk3{,ůFFeF?yL~3=笇L5xk?~>+tlBI=WE\̲'<s?Yy%[6,|- >W cټ0zGdMxA.{үٝSXsF8E~Έ7ďHo6ghC->Yj(Oب߈j{z^ѭ,S!Xe_ycmf_/v悿lk~D Qlc+NE6=nL.?oJN?F˸[nŹٿ3O^?t83XsSK Q֎32:~M_(Wᤨҥ˦~>Muwdw%Ȧ矕"vv=_7>[g};:)G~1M3?׌EQg_Hc_RnwϟRceiOS~DnOݭ3eZ)߳E?4jAFń>m~OV~i?qןA_qN/Ыȯ䖽c+őDq_ٯ4X=~9fb vO@cdx徿{>jZGD~ށ-MßU9gLH2s 1=(0di~?K$DS9~ 1Y?0rEygN3gA]Obcw1Ǐ3p۷?S~S~07 `.g\gNrcwuB03޿o:y/F;>(׼ȬaG9lguyϺk:~.q+#\;f_,H3L0w\+3r,k.Kߧ$^5*gȀ:~f|5~f(׌fRWzf6;S>'(Lko e߿W9ZҏދQM/sU>wy/vυ9֍dT>߸N7\g~8tH!ޛB'L;n̟EpY¿:!;+eP_f)c댪aV-gB8=KW I3egAHQ<"~< v}7@<~v]ۢMg6uQ1DN>0dz1d 빅p=ә1 >s*Sɬ'?>eё,{7?j/;sA>,D{<xaGcquU[vP9ѯSDzV6g*yVI)}G_,1 +g0v'F{t'{;V}7_<~FJT\2h\=ea:gm\6ɁR˳>~Ow2<ՌШ3_WMXq(g'Qc`h0{^#xr6„S:~|TU1W9e$ȫcK/Av7ؿDoʙOB3Sʟc8代*<2pKT>GjX݃G?B=Ϣ_q>i&Q_uF_O=FSxC1VB3!|=} 9(g\42ə=(jV[;I_'R /\ğF+x[DyF7]ބ縬`8w>w;?k}{8„i'a/C  |J\x@~S撴/ϽQteݞ boBџWrCsw^eELJE7 {iγɒUw)'$?iO#'gl^K,ʝE>װ'ޟ/-&dWb5ΔEPs >:j.O3>?:U}# o >wky>Ǒ;ƿ߄}#uF.9aTSBF<&ŇͥQ}E.g×RyQrʽa]O"g v~f1cֹ,{qSʳkn׋P+E;lZTD#ϟ,OΞ/ݺ0e\~7ۮ~Y5jȯj_s<'rhɛSsM}^Df#dW1Y?WQ|DЙ ;~m%_WW f"ĎWG} < 2xWcwg꩜\?YYy-r}#s|owOl/X܎Ycs({:ݭ锯zN3ݞze?M}_5ӻuV?p9>lC? kGWdT|_ #J8 >  ;ԫ{^>jWt0Q(Cz waտ3^;l&^ި:9//,nƙSXz_Qb:;9vy\sfm(Gk.s,.5/˻b<֨8ul{~ST |X#[ ZcmW4jrW*ۋv({ Яx*~98lXF[M9F,%u,h}Ke+>3[B~=QQvVcaHF'gv9wuk933U˾'Wr somyU ?qJ!tIW/t'i )NU*I ,gYF 5h,pd 8g?uWξ瞺{ٷ4w9{-F>3`X=s^ŌsF;~,>sڈ)2RЏ ,2bbIdH]JJL[M[ٲOy_Wk˒$_RvYu]@Dk?>cGţ-9s }~!7Yu=:+Ϋ޸֞PS3_zy-r49~9u?טk^Wu<w̵ۚ7ׯ~ڼ݉Fi^gyft?m=ģ2KϔWų>_&?fXٚϘ4i3_#G|3ט4oZދ+磼|TZ_} ڊ9[3Rvaكj'_1+snrI]q_P˯3X|Źz?Y7^Hl0E@`yQ#?{oPz=; -~QnO{uǣƿzS&:WRK5\nrl" q9|q?~EU7/g]F?;c ;O~we7[:C}:'9.t&e3iT\41\xcŏ_,PcDx.tѯDsQ¿]-Pl{K~<׃r]ƹm]^/y>*Ӭ9;YL~UՒxO*м(^>C‹Qk \j_C{mۅ1cfSzWN+;w=YK^k֙K=o^_n??wj1۱ >'A])ƻs(ٜc~zsqk7xk_Ҭ='kO9?tL{?>~}տ4ǭJa*?s&>uIG7n3g0;E#Q\kLҬE^8Yo?3L*|p>{sE_s#P5 )L8 ?F/ L3CmBv)EC?s'b<r3"#|6Xّ 3.>ﳄm,fVފe_o@kǤ9ܺI?C!#9B|oKgA(ây3uFh?5f%L5p]u\ߋuM𣤓FKrr˹X3hq55eG=&}Bu"aaMF; + L8(sI„,Uȸ-~6bKV ~E3N@CP-Y(N)1V'GhWf,y˙A~vG{2[ڼz52'P^i.4:~ eUԘ3w"fsoAZx̫s9v? ߣ&p5NJyfwHI%9FOQOm͎_~$w!|>':f;ǯ^}k{{O ʙ_ZZ-7Fsͥr=3ovE{|e3wJw 9K_]8>Efd׉9wCVH Wi#q(w_!\ڱggqBjO0)xEɈc8lb KKu|ݥ?B7e:8׽'Uj\E/3P/c)@a;܄3,9A92Ig}f\|w~VX_(%I)sBC{;u:\3,cAShkPc_Zuo2cۏ/s8EW\L/ӈ%ǩZmAFv 0'ݗVNB}ycɿ/{b\CFyCV_.t~#q?<2_9]~o?ۃ>W`[ףMYnacWL2,Dm{Z/]LaDŽj<{D@Y\Ϩ_#=G]gL?RΗ1C,KӖ-SnC}_/^D]yA?i)ӟ){4F׾HFğ|#|P+pW >gG{󟢾k$;o'HYz7k)o6Sqwh˙I?<}CZ| Kr̳Ux/n)gLr~ϦfW=k? ]{-z%c-_:A^qEؿ;Pci/}/j3E辋e5gQǏ_O{sp%ע_Ւz_Y?\ z]kG uWgr:wSNW~6DRy=g.~o3SNV?R+wKN}_}/E9?vN}{oY+}^jo)Xd}~2w8,?,_Z*N}5mHroget֏Օ2`o͎<},rxQϝs-Bvy'Ҿ$P&_d{W]/e>?yB~4yC4Azio)^/]~`?E?_؟gXx5rXbʱba=eY9=,ٯ ˳s|s1ۛzG{B| qxk|'YG_CH75?a֧9kק7k塝MRoG@cGNCl+$wy?=<1Ͻߊ>( r*g7휠fzxh'5?{י.-p?y{䞊 ?g=us&/?|hT;mlf 3B5T~tX^-pЖy`,]:2WA.c+~iduFoϿkI=x.hlY+m_peßi*&Wv~v4%L,}tWoS uM|L4y%y!qՇb<|Us"6ļ5+}yּ&kσ:7ts`Yu|fzKz+W#O3+"m(43Ǡjt/FmϺz\Yʟ3v})v_ǖ,(D}GYۓ ?C_kQقE}ÌsZ=Izע}gQ]TY VakvogO~iv,Usq1j{}cpnWn\D-ܫρmq/??˟L1X;5?;:(f~|13$5##;ru/_kYyC{ `DmU51WFV:g;A԰56FjLcQRSP?g>TNg^z;_ۭg$F|u?O~Or_?;C HSn>܆f1:;H /wfrߌK=^|}-?f~5uɳg碾 r7 rX>~?O>185os\=7mwW\<0|_cOgO{ۼFou;ޝ9Y?ܺǐߌ~9ݗ?EN{W+'9V =bl~ɏ9Q*P,28w3/~s mK| {_8_tkIQ{'9Y|k D]8/s.,{+!_r45;e-?V_weͽ>@y3ωL'٩5moB?yx{VԘuEbZu_9_͛>̏s&82uXTmx>CɎxY,,} _kȕx_rr^̗Wl;χϹ5/x(yՕX[f5v#ӅqPh'(>WKeY`= ?̯9sE sMLY5~f..m-ޟf [\=J%;WCIr:yuvXΚC}> lWu-{Lm(f|{XXG _h?E\~1'}5^y7K@w{M}* O*e73+rΔ[P:x! c_v^ g>#d =u&YSP_O6EՄ$,h^ũ75;Ki=(p Eς|{¿>bnqnV>󕨱8?mcH>ƒ^& Žz*蟢Oy 2\/vK\"gO?z_yK/7yuF?y[3HW*{E)(ByV?>!18q. t R6{syVU/m{>ka?O}>͔,(?tc'*K[F9+}$_ .αE$-z_ÎSAeBڅEAzt;.W_=f}̾Ͽ |Ϸگ/~_gFv?!M-NgrM6`}?=|F_52#4y9m?E֜r'ߐisPϓ/GSFG8,35_H/gQqV.瞲ʪ{ZD=G9͒+w_qDzf0,*X.(W+;Ko;0bRV6r%xlN~??Oe)*Wg8|_k?~> ua(91L>w:/W(#̣&u.,WE3fw]~gTZZ ?G9MBޤ7DK _ X .u)CVq"jEw5穔 oqisr3~Yg}.׮~"؊j f'!z~DnG=.)TcT7v51#󦎥%^ޓ#QWj#?x/Rd_z,,C`Ÿ'KK볯@ۚuv:g|_5Pϕy;" 틲B~Xrq;]z]~l"'Wg%N<~W|fy.gz7Z<{iqGz/y(gNeސI"r'|EQgz5?/> a7 1V͔va8z*נk~ca̠?;C­h+6Ԟv^ҳzS,k #nGxrVm,>kR(a=_v,guO%x=s`/3/M^UՌmk;y 2?3߫\Z 72>mO\ς돮hsUSBg;{۱Ҏg<(>wRNwx.ұ]VHoNe͟n_<O{^Hm-W^5# du~uw~[+"~3yʏPN?ѫ3 ȿv>={ҩiq]K{7o)t_W^'g;,zsxj3\!3WcLۓY\{oSR{}YPV'>g3 <.ˑX ߡR*>C?;Jџ?(R/ϒ?me|sC"j}e}w61Vq:oM^SyV?beCpKU G9x?.+g؋_?+#)uWuɯkx%K]\,\\>TY7c遬wb&'ůP9w/G9(gg5&jV?_;/AޝdB{&甽P3o)k}'׳p$OB?˗8YgيLOR9*ɻΜJ^9oOο_=yEvT|D+M]wgvYQ˯j7/nl=yZ9k\;plJG}Xۗ۾Ev8CsԽ'n,7j}~s7Ïlfe~b,Vg#g7, ~ >W:ޙ;>9}ffg_ޣ5ˇ]k/[)[<zzߎȡ)wpgW>5užvYiG7fYs/<~Gygv[<' OA/r,i^ >0E|~m"o:v:!Y #g}zF:ڐ\ɘϡFqkCEH;fЯh5OJǔ]Տctl_j^G|Tt (iXx=1Cn_g z%b?_g3wlwf̞fO#W3tg|qJ;KrZk3\yBw?eFzXT-Dͽ_a/QK<?fsꋦ\Ճffl-vRfe{_wPEt^p( "p'ܪY̛R=!]_gVHgzr-fDABT3J?ߩG==cK̔H|KQכ4?8FOl~lx֜B/ه¬S=UX=阙mU<4o2=-;%O3fxHl{7Y}=W9~4t^iZ~nx<Ԙ3`N3cυ}:1Gܶ:k>ÓQc5E "r(W3fo}Ugbeq-.]ggᅿq N|?☲17dC}A|;soXMe,Ll!v}B:)OIL~J%4L91Jwl_߸ 5=O+s6"\Xw(oy[E1-Τ׃# ggh;+__eYA9y_C}>__`%\0NP}~}8!bFzT>u+#?O^o>s7_g}>^_ Q3scoү1XC{\/{d/r`k%a;ƭ_W?z~~.}|Y; |~yV;d.8ZL[sp\Jf_@밄Nsb;m~Nkͻ>U>'6u3Cz~8f;8Άr-/E4qEފsбtoʭ,zb w-~a\/4~0}JԳ/enN Kww܂C eO_oqk#lŸ`Iൈ m;~>w. \cY S-g)7"M{m#dx(!fgz}M|%]?bB%e,tRNx k__SvWeMzyBI}lKy_ato_'=Wy{_ggkʯzXLޕHϲ7q\˹''v _[Ξr6g:~w[쾴b◣/ݏ"s]D>~axg%.PcpNPz^sA>.ߩ?)oFȅtdPN$kԩ{|&CoZE:ab^ig-.|7LuRG-e %[2}4꜒wd(̮֙Çv^ٜߣm_:2Gw݈GrKN'O#QRN%sw{8/7!trZ_RPoH?WʞD}4ߩh;Ds;3hv\ 9.}_yKzrX2!}>_I,gp]GC+z//?[߇CInW2PG|J"'uV?qy__~>ς|B~!_HS~^Ξ2L{E&Ut)L)QLg>?(_g ca}#/!r)˴ {/1\zF/墽WB3uOf_ſ!/E@D{@ū~_rqe^V?Y+wY;^C=g߷syoE-E=>Sחl~=k}t;d8Ď/%g'{K+GG(KށЧ^]S&hK7 3\,%+^[ϟ/g%]I /Q oe67ﲜ即7}&ׇk]،oYw(K50s{o/32Z[^~?og+E٧QE̶6wRr粽~oKOқAܝKD٠J?џYPoލCO!Q^k˹syΔS e{˾H?wٱ=VA;pDzB/@2mo\Сw}oPJOrOԟ;g2iNq,h$܏˾|ӡҙU~g7{|^u?S=J³frs+P=~>>ߙb_墕GbErK-!_n}|mGgyzgk ļQ[>h9{_gkiԟUPsUq,Mj7#\Ua|)P?g);+z(oD+lT泡ЮOY,"rtCo>joA_~{FIeIΚSÓυyO{R2տk5ی>ahW >.y:,ʞ1|@ο: Gc,靿ϪsV}J_˻18wV/V/_ӛ4yesz.}CwPZ"=ՄZ̲ x~Y(kp!z{'7gXv˥ٌ~S=x[4Lsc? Xs)m lp6(,gsijY?]HwQ}2k=;g 5,峝axLʋEל침s~>ygVrsሷ|^iϚpz8un,45u"b[ן eeq<~ϥ8@uz~P2IߗG3c'?g)d:Q//{"ǽGt/vN\<)܁:G:&}~GgHwGҟ%7 c'N[̎|b9b_^:էJ?5}毌~_gҜ"ό~WπF˩r碮To7fs]^_x˼!\H?v*/ŨGSc?[c N~g:oE7"N[3R_oA?oAi1^?˖1KY{?gqyC;S:"f\s9oW?B0Us> #6[(fT=^9p-ѯ^k]?^?ߞ? fyLN3]77^lO;}JoN50U\үم3P|y]fWCW]Kt= +|,ի~-? l~8|vיeOoBzU7c䟇3?>%a5x0c)qS~a눟3x1*Sg*~uW'}3|HW/A|,{G۾<ّsmcCϿ93:3Q e.l7$S 9լ9&Ջ||xr_\C`]uXa g99>9g9q6=ܠ78w$D{W$Q1 ňrG.cjV3`ϙiyOL’ V워~4cy.)f,t< lh֬3۾YIW@ }Srv-ilp>9'B{8~~=g_(#p>\5Z͐\R%U]g?u eG6:9[Qy>węfl~hgc K5a].<˓%$۔"p[{Mja\17|x~ԳxW3i}]m+Y~/|~6 iocJ ~Q:ӼYKN=7⾐Gan(۞8SN;E~r;};';gQcQ~/.qRfH9<#]l;?a:|4;=!;~Mۜ$V㊟&~.ynfxV-O,,y=Y{~ [r*8kr,k9N,y }8G3Y=}&5.1~uk3߂]/BE~<}NʱL\Ǣ)D >XD` =4${fweB٥V k }sv>{\dE0#"+;-m' Y9XU~ݏo{u*3^k.Y<>+[cWD}om9yF 7C\f8:~u_.,/"VK?yH9sO~Z_}dlRU=}T?*6u W1q>7iXX?/XvY>jQo:3kkNm+hw\fԘc{,vWJK %> iSۃwY8Ƌٿ=L`E=<I7;Kk"s,mԸX8:,/mk;hs7i(ςWwRlO}c]7vR^@ĺ#1*)(yݣү)yIs Jw4ӗoa`}<+ڮ˳a>~ň S)_r+g9~ŝ65zF8@mwd/o[Rm]g4?+8Ykf=þv<kqZ?e_3CyUFWC=%g{3=O+o.[FU]G]:J#Uꡡ{{۹`o߀7EחY SψP&ۋl_E(鹸>pe坥'IhҦ<u=eV9gԱdW'ns} {.+?gv}^LV&1|Gӎ ~]y~n9&mT|C&QJjOȟkĔɰs抷10c$(4~Վ=Lrg m.m0w=~*aP\(#C|QK+/[1.Hy9+&q%Iz1󕫾+/eϹFMC9K>?Fl(S` Eyן]Q7.s`NGŻ3LK瓏~aܱ9)f/z"mmk05eY=꾋+^r,?Gǟt_BP-5_D}/Pf`/~f)|8_)"||{v&+>Oۿg|řo_3^4gIO u>/35ϙߣ|$5E OR:.zK[E&?Qn&+%i?|(ƿYοkމ= U泐$bG~wNDs? {kz1ux?{&8Wr_}>S}}s܂Og?uS=McEW9~PB9 1me0%t%qf婆y>LZwU xl-ïpZ5!lxC>t,˾?u{*:ʠe>:3{f6篿Uy;=q[=m7s[kƤ%zP6a3%=ay^QHzYe$ap~As=|<ai_p'v52 +3S6{Ls1$p־7X.\˒t_י_iȟ=Y)=qWzf.Bw_5Ϟ2wθ\[Ι2K|7F"&b9,o|\Ź)?{AFGz#PuZoPN+ " [޸Cʳޗ20~a9[9ѼKER8{H%7#0zq9|~ͱtG2[̑~\jO3{Ifx;SWIxČ:b o_\~݆˝|F}f< Ο_3ǣ֙'٥qCMr3fs=OO=&5]ϐ~R:@I\V7pGu)yֲrNu1s 牴ɼ5 WX>3~Y٬y3PDϪ=wD 1ïߟ#Rq~}P#-$Nc9OE2%§veYw | ʵ|#=3G |wd.){xO9w>7e2z]w޾Z辯A8)\9 Sa_iw1_Fv}Β_i}fSsPߥofg{ZӼ ]TK s3:?O^Vh$Ϩ맊ٗYpa\p?(?(%ΧQ{J9"]x?WP8'nWc^ 'Sy3?rĒm/{\~ňW OSI]-_M%sVQ{g}b=}!z,̢K ݌e%|Ôc[3R7&K{ ݊e(9՜^O '>h1,(ㄛ#򸆲1 s [;\Co\CۿQ'_A?50Jsz;k>9S^?W%; :_Iq*pAy\oF͍_=Va݇u^ /ia 㸲\Nœlܖy,,:g>:_,w_8-"0\ueΙ>7soÊůJGw|Q_yKo"C'l(?Ǟ*۾oxK)r_ *u6}ѡ{nY2KYWrVנ N8۲̱ Tu"r{Mjp^<3/;=Kb Uq3<<]s)sx{s|P.m D %UsdLISD?_>+|7-a'Bzφu|C9Ҭ!h !ݪY;B}|1Nռf<{꿒;s0j~vh#|9z_[יr^?\7ʻQ炜?|r|>q}\Fw5R=F~yׁ犹goQ <Q:33~ʲz4;rZN*r ro(χ|gIC;>׏~'EF,_HϗPpJ=♬ȳzWY]87w:qxg_ྈ{St;XX6^%m y}s>=Vs:+r"{u꜡ʿQdG@ʩ|!_E3΢w6_{jI/B}uŻ˾x@ܛBIDY)Xͥz?L_{C}EO._kzs \ 58Wy%;t!|~9:8?wo6{}vhyf_:&+9k7Fv-͛ g|' +璲9_hʏ7Y}nNG󫷎p8umFlvwZA([/BRhn睍?7=X,9]ZN^2zS9i;?Sπ? ?u>)"f󹤵Fb}X;P򌉿=<./9?5]Y}˒畬>.xmm֙ [ρu oCa?@'?̛~>-YwKo8sׇ4 B܎Ƙw;+:ſ]7.Yu:)\c +4&ckW܊{z>|=s?g( J? Zsycϡ;NY?E؞yӿ?Wvs>5^Zf=EVّe=/tj9s>#W˦uNk Jh~30<}}7obe;TSYGS#Q>,yy?d?#8a@3J);~e{M?_g>"+9o[Hű=y”mu,gՏt&U} gZg'>{_9O{C闎93\1P= Q7C~S{jMRYӿw޷|G}-Y߅ڵb_gqjd3~"FT|6q;ki.Izvs}^dzf{Y9yΛ{8)‡p3/#fƤi+뼎yuϯΛ^?g}啲O:{Ϟ女7sQI?rly-#f_Bsm>CΛ~=J_*~LY+>Fӆ=c{A<([Wyӯ3eܬ-Sa>Y([gD㡬~#\o)9yPI'=ks2j_bџ_{9,dHyr8~4jj#g6`?qC>?/ɳלp]_NιZ,=eXθ8fF\0\8 &e"!J9i=rHr@L?gt8b|.Is/ѡ!Mo{5gs_\Οf'dVX^#&+iP~R>>(Ji7YeVϯf"MW"?[@9Ɵ4kvx>grh1YsL ]zWZӔ75;ԧGJ^ΞuΎ ?VQ3?s?7?3g15b6?a0=ujE c,t/:,τ4Ҿq^e^ς(o95Kso(`9~dv"zq<_z}mՕƿY-~ՈykPIv,@yl,g&/ࡓ}$p~cGo@~B_sC+˸K ?h>{w9ގE6Տ2+?q@aJE;E'PSn'ңAm)ǴK[oI; }e{gYp(oƒ}/d׸7ՑPg۪M9Tq-q5Ln.^Л7iw'3,`˚ǹqv2{3ʡKٛ6g7g!Ù;)ǟ^/*u)U~N^ߛs<cAC>/WqSyDޓrB^야F1OTN,ԺK}_CO._V2K_H1pgOۙ#=R.g|+"F=qYʩp.nϞs)B=C>YOVxbVδM:j\[}>T0DvW|gv73GZ&qʿ u/=,Y,W{G>9O(@unF\8ۨ_Pݖt>/1fxwٜ:kCKϨE;l=P v>?Xޅr-Ýz^rG9[Q,L;~~5DkH?#0"e_TQ>tF'd@,p"/E e/3ݒ~ZDԱWYTky-gywΘS=3=^o}7U}~ylt?W}]Hb$\˗V|y*sm\ubV{އk͕徼DwgٯvLG 7<~%ODrM!%nŮ?CZdKzUdqzGqj]_aC?OXW]b\O9Q~Q%+aD?ܗ~G?.ekeF?uv/ϬJ'h'7cKyZVo)1}}x?j֮3v=5gp>j3G_r{,<\tܤ_}_g{Qo1;S{/x~P5 Cp|,~'C`Yfek^J5#R>'ݟrUwPo3pUBKYDt[@3,Sת.Y7>~O,kײQSec_Տ/C܍jE*C/"SYdm\,# -Ӛu&fkon##DMq̟"⭫PҨUgKH9ݾ[_zqv')Gznݔ;ҷ'G>rwbSD3[tm!m.eVr@xs?P}<{G Ӽis>g^[Pz=s?#32ae;evՋ%i?W];fl.8ӟYsXK}D/=| OSHnsFrg%^~ /ϟ+E廵݂a翱\Ac+gE*ODΝލmuFzad)_T.CAfRϬ?L}#a%w=YSVg( ?>#/Dy( <,\ZRP,b>6 ܕv:y. #}]s\&+z/=Ypons2j^Y=3 ߺ_m39u멝}=4_(DHm#^:=fSO2lGM$P\꽢.y:m9w-~PcYxAMgkH^J> ӛ!`_WØ$?A:*=9AeYmFfv6[?>viVSV/LL}Iyt9y}N{<~./[q">:ߒ)gB;?>)YcPϏhC텲˳ 싼.vهdD.b%c]> g ba%n_܏NV&Q9<KԳqr_:嬩3?]Ξ|/#&4~NCmz+QYV/y8~>|RrDmȋJ.|vʥz?hGvByEČP?0 .=X>a˦cmu| ٳo&[z9Z,ϩZGO@щX?oR+?;X@1S ޻lu>?ekOo/mIsrK\UcqnJ4}<8GIt1;3 ZgoVd[vwQ $ߚ7+_3=s+P}X^puyψ{qWg6כϛ}j?ߩ65)6}NJш}5HfNGA]ΛF﹨駜qʓϹ=,WEn/dr:EZ#Ԙ|f}$..c z=:= u>a?E+E s a(yQϱ#߳%גu9yj;ߡu"}ͺ(* PbyPg}|G;_9;S.&_$?s>o.qNZf.5-<x>3'Gcҿy+nيqE^\ +KxWsTZzs%ݩ~^mh岲yhd+R=Wu:ϨjL=O%?Q8 uZ;,~q"M/Υm瞏z<н/rGg~{2 |Mo58Jr&:Cŏ*rWWژ,T! #G?Y*WOAmgYa:_xϰ].̼q X5H;կGho>6a:_Yh;;9;+g"tP5|ar̛~ھ,_8'묯CqWXֳA))?0~or}9c ?EW>cGiۑ#>Hvgۿg~o?gZ2 : ~ڋi?"!'>tgGi`<{4g9Yenn2NHkY4k8{9l\!gO/,G c)?1k$SΈ_,o+{ѳxs \%܍,u9ida(85ΛcwM1Otw78s_ _=@jqG9g#\]/YmzS}y2!6%q⏑; (°&2=&Kχτ^Q(m.(D>_!09K "i-$"ίq{,dYgmB,_zLX(<{a}KN)4K;[:Պnm'D'?D(~VA>c8]=eos\o/O@!^3O/|Ce7=u*S?H>lR﯆~ŇWSGnmnBVN",E/2@XPJI]|@w\/ٸﮂ)"9ՋJW?s'v~Nĝ_Cf\qYv2+{mOQW嵩y3D dE`^Zf 7qAlxu9 JOnD|D? ]w,y^2KY)۲ǒS++8U}~aɟ?M[+gaV?U "o.p>y>I?r% e/ռ>OFOO oD>eF;pƼ#Z64*4ol^;vy=i|B2U+K~Y@j&:2@^C>Q$;w:3o풬v] m{~bkp^׼_QrjDZD?v+ +b"|2n([< /C{똱?q"q;_D`ʮgq~I8Ғsٷu֧ŹY{|"Y忡P[7ND:rIKaꤦyvM<}f1sNC_B'c;XeVWkNJ?QV,y==SǫىX@,{!mƏz#pK!ގ /wuk$DzOߛſ܃Z}6Y:8WyuovD:QxY):9,^#{ʫ/|6O3caJQ*_Ɏ;<)G*M*?5 p6j,ʋy+ŞKtN|,"W ]*"tMk{gn@&݃cY{.=t_g_es C,~QeaԻe10cH_ןcY'<{L"wIP>n2~|/=)Q~ߌ;D>m֕{_iwzG5~~%n)g`N6q55{J{WTP6C$ӤQ_Po"3׌ɡ}$>8gv]?JVy^rs?#i62K&voM2mEyKxiʟxu FQ{Vs?yW}NS[y-`'L'm.6Lh$ ;]C韢?x:Wspj-qgHU?>CÔ/u{ y\g g2ʯ6gW|'Xx{yD!r|s"_ g*=gǞFƌƒV @[uMy-K. ,~7܇0@\k{<O9u]cVq9^Ũ7Z{z~w/?&ag1;L>PSy0;pmk|!ϩiS3wGyJu[6~ ʿQȇXDԌJ~{*Ӳʿ}AههĽPЧxoPI_ 9Ozuv ?Y*uB~aW>#Y3=צ.} j]C_mt_"zKQ=U6_೸<˔i3sx8 epwv䭈B "L8䱘 ?Cʞ4Sވ>바Oܾ6~3\y|LS.('g4~Gyxv{NĿ߰VW>G\C6g+ p^3M,)yy##<|w"(^|mv2ԮTU* HNy{.wn~n{n ;4άwɓs,H˦߀n6+9f~#r8'Yƶ|~<Dk.]gvg4ic/QOD7#Y_`5<\r lI>h,ƭZgk;POv>E[IߜGY/yyL_1v}g\e6䤱Ȭ)3uy9r8~N&?<߂Ӣ9<<99])XOsyԼun6G{Kcٱ{|o˦?Y=3igF[sg#{?~ ×J~o+uxTDQ}}w쎊!lݞ\_ds'gr</kObΎ:7{AL?oCM"#Sݿ3vGglw;K󣍇M&`کC7^xl:>z{9oN]{Tp@eb3)DuF\x_3ScmI{eg >S_ ~.G#ޯ10`)/5j<湠e<kCgLŎah{t#n_ge?Cqi/e)Y>Y_G&Nn?~3 s{en9OOK|>3~Xy/sPO?,o`KguWdbnch}eX%GW0pݯ O2E2~:f3?П$גeerɝ |}?-Qg/S}/{_؋_c 33FV4{Y ut.>k+T/XLzҙSϿ,]YPߺz56~7YN0.^~ͻhc]4ifAǔY5͚޳IifY8?}7*z㯮g+JB0+fF4/ytkh6eO}첞9GCS}~PϢ 旙|S9;3̄sF?Xj_p4C%as,5?';{1iNǯxs2ٗ+jй$:qgW8S[oG#!,?jw|g,?otE9 uZSl?>ur3V}GF[$;?Z,srZ˾]Y>~;f-eU̬}~Y~6oXXCsjT>||me|T2q[\gg:5'q][S+q{O3Y2--,ý{__f9ѵc-z:͢fV¥^&G SN{jGYq>ɱ ??SvmeE=gIM~}g JxI~;>/9y-۬+!wv_%9dW#;,{g짢ʰ߉:=vfv}K>!{{y6wTEsVE<91mh?_(Lϝ5u?9s~Faż^P%ecϔno/ϋsWhNJ>]f?DőhCfɇ<~_q|B"3=uߓ,~Q,>¯{kT\=cȇo}=ZF_̐k{2{ՙ{?ɫ~e|ϥQmᄄ6b W<}w?]dn:3kx_bs~i-:_ّr9cϥ{c^GC|qBƱ]<5jq'~")Yޔ,\U\2!G%y[+K{/WrEc猎:KO뒎3yD|! &9%Z|gxueee^5~q, _6%,_|ϽK^]9/vFts}Qu転&R<ݳ͕l߽r/ɋ`gg͎^uuKK?s s#{Mzq OJ~e|sryϔByZs-;*ǔ( vjWE?-b-'u ._#vGcW<ЫwO=?1I'gˢLY7-xc+:\`ߞhgr\ sNT j?CQ#)=PQ'otύne)4gGY*cX}ޤwqF'4 w ](w{'/7>{KSJH/"/"xgTjlY-Sw Dy_ATM?+.ǽg1{/;^icm{ҥw$+C?Ez:r1ǶI|/w's^)V/)L7!>kQjI:~Ί=&w"ygF?C>q)},QD?:Qkߎ6j޲O 3m'CW$JzsqĜ~|a7|7+Zۢ}>Jw路^v=ج3}]Z>(ʼnwgnBߦΚQhYYg{$~49SͿ g28,r,ըwdsLN3y`^=FҡQgM?cwܨ>~/G٠?,81-}_><9C8<[9^GWՃΉUs:yL#G[Ip©[=;_v9_L޳9LԋuR~Zy| ݞOCg~QwFtcc# y~oN uC|fN?g9kfk.9UJwK23LRokM]k=grA;\C?:cn{xdL5v}.PgJYC~u ';eGEkzQ4cl~ι?tzy>g`,1?cW m}xψzA?9o~p2=wC};o"Nf5SF?u.b~JEvn7+t> vMdՋ?y*MOĨxjլDA< o]}.\sF<jGݻ̿h(%~xqyF><վW_} W^ <F@giyYN4hgѭيw g̃i _wOďJ~^ΫiQgn+QО3;9Rs,&wg3>}f}Zg3l~0gSf{Vu=_3?,]|&#KsI`9j֋ّ3ӹhn<44~uٞ5rѮe{I|Y)?G],-ݨ׾u5 y /ϊ: End_ e3 r,vl^ +[r:ΆvSì8~l{n[ˬǧeL޳}zn>6~Z{xwa?e^-ZmGZ-=h<~\<~%ifM+A˱2{E;ˬ?SoF?c߱ O⼯[ V^A‡y\hlT|[5gs3E;~鈃Q/s.z|-?|.*v @~~3F;ԧ1v}+j*vqh>6ZĨ}YE{6Li[ut,Ga6XL~d6myT,/~Q[=:Q*?VL?Vmעߍ QǢ^8rEHo|B#8"_5 g(?9ӣ[(?,uqb/gwY^:p\,ϙy Ⱦ4f^OY?KgF;侨,g>~~ژ5?UX}"nIߋ>]hNT M=bV|PK󈲇GE'~1r^[C{e[b{egE3?m>>/ka_3kAρ YebCyg"_ SN ;띅]坵&eu$}^Ի˴OߢϮ,g=[\dU1Yrcu~稨5 t[@ `F_!KF Ǖ輧hOsk=~s>}fohY_rW6=Qq7Z%g{O9V'gY>u>Nϒ)KY+~⍉w}ýlYǏWFߊ_࣏DŻ3Ss؃􋯤;X/gQk`?/-)y<"_"Y?G7>17kЙw0)T9ՁdeE)-|^Ҟ}gHNE;d}W<|? >_X]ֺ/C6@Xuү'v9s񋣵?(%W%>%Z=`6~="Y&eitҟн j=#'gE79O|W>D{˯ޯP>JrԐn/ggp[qe局 7vNphWۑU/eGysuqu%-&{dY2. |HǿW[+ Kf`?} =udut1mOu W_Sޕ/!_QA;~~p;͎_L5$rWFIW?7Wcx:Se_m_\Ґ|{+BH.$obw2Yg% lR~']t[ՐUA]x,~OnjY܉tOn*ho" ] .c~_1fsI/cD3ev3!>Ӻ#ޟ1”uF?;Tv,˦#df\Sכ?a,ާ9+? f7įgaʯ?3;^~=rۗȯ^}G?;y,{i\@6, x>aO X|5QʖMq w,!Hɝˣ_9.gyEuᡵs({mu}'5 Zm}YS:qUKs驟{J7t~&^xtm1޽k6䨗y|?'PI0Ay?~|3XmB_fٱh<~ɁG%]9ПG]?GQU֒Wf~<3:[ϣ.ſ~_g]ާO>oUY|lʨ\}v1,\o4zsRgufUw֮7*om?/KMs\S7<_M\T_@}*3k%ӿ!~l3vd`ѷ=*iad?~/<&3_l6r絚MFsK+ߝ1m٨ٕuyܔRfLy":?oج!\X=gKl!EO}?w%|焨 qC >#ZeXQ/X;E f[rl{.>N?g%sʾgg^"Q پb=G[ ~:vOᙺp,> O-gy-|G[p<棲=qc˚R~=n,dlN!Ӭ/@&9gf1]<W:t}{?M_?FO<*>Ψwax^矢>ʎfg|jz^cO#3gd>O%}>gϏ[} m,ilTF> qn6}N< Y?o [5dO8wQ=C߇G-c?~1K.)Oҟo,M!c'w׿\ƱSYiN$=}<uMhz=޳PE_?ɔDZoZf}X~q%uvK_գŏ@7;kCq?qQ&3< _-3w؄{ϳx{ӽ.@e{hS}O+8g8WC,OYt()e玑"sTޯ1VcgcT/G ξ-湾;tLd>%ѭ>EG{wpG۹L纻Se}k=c{6XsyԻ }oaD{\x蟎z繓n<zх. n&>Vl s6E݂GXv\v=+?=P>j\ѭ=ZaB3Ps? ^cg{^.[sʹ>XG0~ѝlapED}'ڸH?s~e}>s=`Szu9|]>IK{atpK[8ѭSᗓ8ި_7F_=w=X_T<_ 5䎻\',­ױ;xB?yhfQ{E'=.ˢ"WE{mW*ҝ/?c$T{QN{xh^vᠢlzwh]lNzl)[ 9K鷢_ agxy<יȊ,6oڰ7E˾o6.bԻ~?=‹r7- ҝϴ.?KRh{o3r,.:zFy֞Oq&{56q Em^zT/l1{?{GJu>~$wo!o>D}.z_W# vP=ӹߝ^eeÈ_.3i__=2WĒc?뒨 ;;9z?})wXI=|cP9xy&>k~Kf}|ngQQr,L9ke]I~"0k1K}qǏ^Wr\Sww*ɲH.:_~xH4v!zWfШ8 O;E}?(tNX,Cܷyl?9@F;џz|ۢ=.^=߁pfO{{MQ}q{tQjH3:PX[s=8Gdho_Xէ\2LYg#;&YzbOoóy'u%/3FFђe.qt)Ϡ\x =p?tg%VX+*ď,{.^o,ֲϞ@qK }^qzspd^{?!"Gʳ|:ZZ}ʾK~\ޥu^?En5>/q4'Esc:9瓝ݯo}^QֲWU9'VyHޫ_كE~s(>Wq:}`?HvRCt􅨶 wURS b-˙hw7z3o 9䣷Fߞ:ޡM.yAՅn|˙?T F_DhkyK7mu[>6e=_!YՉQWu~3~t=7;r/X !>hsHd?*k]~ ?PrW!ĿKc*uQu ݯ&.%ڻQA>œʧ׿>dcC^3\Yg=NwQ ?"!wE,F)6Kg!ڋ>-P f,'E'CBxGNed_ Ql>ߋQ _: ƲߒOO$)SӾߣԼdr ym#W}^?Z[y-L^yxk3R гdr-*3;>OMzCb8~C?|j^VEg|$/җ$ W>/=~Qc 9ΗZN|_EK%$$?c]+NN_y؟EÒ<_5o5wku.,PG_}>)d}Y!slv:߹x-S{<#jN/.l6EWqk1K7Ժ΍ ?7*SL?*l#|_good|Mg4΋/6.lI?W @k Sh}fDz2ZJl"LN=kϛZ7cmuP?1ZeXY?KyS7?{n=Sfr=[_}޳\w,{7cwuE~ϹymeS=,2d}3u֗ ??x>k[=;8%f_c?ݩbyNc?eK^4;'glúoCXycl{oHS_R-&_`p p6ss>oWn5):k_ho':Fzg\}P߹zjOz5 ?hN}aMcnA|~A=#X4Pc&;Kһ5cS#29x(NH4+rf߿L"? E{}A>goh.ygaY VW Qffei==|w=cWfgãSۿq}|S?K4|0>tG)jK%(=Ĭ3԰=oȯ_3/+4*#WF $9fGr;\z[gܝf;o*tiL&]5ދl7Z-r>kQ[D _v?Ob{c_gȎIỴ >؄>[ vr,L~%Ll IwSɁ;kO|џɱ4GQmY|ٕ"_}=ZKSO*+`bS~>oʞ4Y~dE2⸬a/Z5:3ʾ,35Gxs8Flx9:;ߠnl^o}}J'o)N.salo%$הϮ_sYzW䲹y_^>ޑ:.cs7ϣ3}Qaq1*Jo,{J./e{*Ə#K?Ϭ9~ ^L;G20-=|_c˾{j4?"뼯s/^9~檲Ͽ3_9fGYV^4~~⇻wcF_Oݵ׋l=gtI\5+"vpc, п0/ ɭlߛՇ'm3*GBˠFϕſN֙Y:7 đege?GuYG}1jGVAL~r6~|L ;+~ˆEzȯFn~L~nJ4+(YnDS!羔w>x. $ːOpGs%Y^gK|/*~,4ϳSՐrwv[n_Sg]I ^9f=w!~ɰlll{9U.gpe6~|XZ GvWvKY^[AS.1*Fo-⫃6@aQEzeTH9$7=3H~; _`ଥ_NkuCxo*{+WpT:3yOxEz[yz.*=n3dy->c|Osy峯FmcxY\8zZ;,kO<|f2szSr{u{?ODU|3Q>x [HگdY/JQ?GKk;7ڼXQ]- *yQdO/^~ѥiQ{=s\& .:Q^{ŏ_^S^kbn+ghm11L]~ծzҷP-KCnh? Yag ɵ|8>9EΎs)Kl<^Gu3QʨԽ<F1>뿹,{~G3ߗ瑯hsȊ> ݃,=~SoY0=zUT~8<v=jMC`3fmUi&]:wyyf= h%ld^[FcWscEO|g^?]v}s]TU,"E+4k}ѱ$doMQWe}lOZg6@oS3wSႨx:sl|' ]rߏzǂzs'z; sѱ,?1,zqԞ\?/*zG$o,SQLT_H:WrڅKus?b98(o?]|\}?!jY.?7~?hK6cc~ ^D=7vftDMֈ!j Fs =gWϱ]Gsz,~ϳcFc:ιV{_в>3EhIL1-jϤ)33Iv7_uYF6׿c9繭]g9 \& `~Sz)QωF׾__9#S?d7%.nOs" י\g}YkG}~esVsOSӸ ˥;3lF>|~vEZM=6ÿgC1Lu@f7_#tkhGhmٮrA>z*G~kSoc9wDׂK?sGپ$jMu%xyYq}V^uֿqLT ?x_z_G]i 3ݯʞ{G?}ΪyqglӐѧb{#q&aّ݇Eۼij:>qcbCwXǶ=&/KǼU/}ޟWZhF>LOSgrM~D8D_=:ˢν,ee.iv]}{y,4KrjsRىfͯ.Cu#B;1Ns__7||Bz?zSTO**Kw.0 |Þ?^,Zp,hD9Bs^橄 ͼ>5O:Fc9^_,S<[g4k'3":2R/]g2`Vr|QJF4L;O?s]>gMU ͬ 3vNy`/ifQg?4'N{}ݾ=hLf{>]9:қ?z'fϣgg~ׁ 9f^`H{/][c-~{r+N?Wh>lO^>gzh.ood@;2Ǧq͵Oµ|CQeYkKS%*YK׹)#2`[}6ZL?iQs?f ɇj_{\v+tknsd&l׃7g*}ܲ-]q ȏG5ek/Gf<`y _98yd{o|}ݿ+ך9١9ώ徽ͽNr+Eu+'~d"ɋ7lxM4~\K:͒]ps$CvVt9y4cG^{𷏊6#Q|/Gs֚Ϭ@:R1 ғ)Xp08|.~,y!}IMnMQQ|ŕengA97dOU.e{{<'<D;/ώ -Qgǯ,g!{ xJ_0l6O;i-t_|/-efc9x9zKGGœcG#$(B{Q}[eo~p~[6=(/s?#}Y86Q}" WC`HވoO6岻(<R6yn|1?oZ]/yE.H5Y`;J!S<%;x=1Y<7DtW2 %L*v:l3)}\;~kU{M~clW xEnAxE~7!dz-69FJIO`[wEcNQ̯&7uz(_/km9Jw^SC;2xzA.LH?mQhE'jz[BtdXJr:qt1':ϓ8~u mE)/4[o:wYO_)VU|}/e*'G[&%=)Y,H|$⡱#^_ , {2K޿9f<jou~gSʾP@|h^?JT2ہw7x-+ ľ)?CZP,6j<~{6|,WG {nC_>m9[沐]Cs idx;Cxwmޣ,Dkk<&y0?{?GܗXv֨Ϣ3="kϿ̟3[1kuoWzx^eX3G?g#?dKlf=OyV˦?bdK+ԀISO:ȺrP]u ?][KzXH0L3Q<vJ˦>_>#5vY?2rν]J_c8ߵi򞷾NRfD׵C/:.5j33J%<ſy~|u&wC:CgDTϡp$̡+Bز,G!Pc,_.Lύ6SY/ޞ%o/d |þj_q?!b?]NyX]x,LN⼘>~Qkkp)Y(Kg+bD 売ξh{78v˦#\<~=zl^@yӻu#gޗiEaI¢T/3Ыgi5Rc5|dD .[_ Ϳ3 4"g/!o`1]zHlkFL7;m EA.y9{'I3INnU1?)r?c毕cy(-:]%hqNNfQd_%8ǧټ>ɬ/+Y^cƂɱ_u/}^Վw\:J3_\w~j|T%gDŲ1ov9=>*>bcyuv=GʖJ%oG+mWǡWFxahZyb )5Z:|Vg^=.nԿ9;?CXl|zTn}z?M#_.*T|4:'oeK_ggw~~6~|O= zo.BST\e题U{g{rY +Q29_R{ͼfGPX~˯SޫGzVzTِ u,/VurYzU'~E@6X>DX}f o{˒|h!>^>qײO-Ng>pЪFl] |XO^]7y5 ƧX~dx] |{Y>9s~Lgg Swhb _d9)&o=tC7wxh,G3E9?W 䇺!hcy77޿Dpw?`HySYzGE1Ď?fvA\~|iUS\-hlV_(z"w/zF:H0\rXĶpe=}e=;[48$ř\"Ś5Ǣħc%331Œ_nJE]+Z4~΂/9`0/̂&Gz|T,Jџ_ds/ZG2.=)|eBZ%u!m`-IfG\?r|UTk޵9YsKYcbໜfx.']pC~o&ԽO֙`I޷"~+ $y3LgrYg-:.!3?mlK3?LKq6;,!"1ݾl}~CT=tyy'ߦ Ȗ]} =>-N0FQWGšQB'r}(^" _*AM` 6=U'ozh zngwɁSψ--^R\ʲ׉W~/T`,`?+ZO|&K%ENWg[0%)jcyTwi%j,/W9C0pThx_FV~Me Df3/D>":y &Z~ܷsǼ9Fs\ނ35w[l'E[ uڞՇ8&qW=Xg5xwmHL1g#rΞ%rbW5z]i,yǔCQgۗ}]TX=e-L K&]{r,'PϞs#5Q ̞3o*0dx QǹtzJog3 fCl)ڻ eId_W·XFv/3ߋwsR`, |?gWG{/=zQX^薟 yG˒t ϗg6G?9zgħEk}3/l|< ezdI'u2/=Źog27v{}\37vv~vT\!_ϣ}2?k v=>`ïD׹ r?S| ɾJN%7IW{/t?񹞱?xDVڄ_\UCz= ⍏3s Zu.Ԃ,.kAѝ_mQs: i2|zw;}-<]ܭ;guNj{y]K{30o/?##ʣ+GGZF3=?ڜ'wڐhH\[L:^~wGgX*e[wD;'ڨs }MĎ_?=f<&/6"9˯u{-<-Y+}.~Y?Ug~b <[gq.?[]~qO_{xVY` =:/E!6wQߪ9LKK?'ܙB/_Տ}uԺǏC껉O|~)wQ,~3>C-Q:~ g-ȖɎINGVgo,~b~wn+wFo.uvO>YE*x'gy'c."#c;֧=8[gr}nwvk6[̓68TAD;?ϼKKJ%KM@/%g<;^%aQ~v?]b^t֧AQswߎy _%$u(5ۣKcV옽{l<>vj=Ҟ?`{Ǻ)eFǒ\t'lvՅevEQW~{ʻG9s6~|Kr>~f:hل } .殖g>Y;sq3ȯuL_zmd?]Å~~_/=޿ᴯgm?^?ז/Sw'}cy+dh.! meM^::7鮋A 駣J~%G}Kc󨵀Xi5ܹlP|}rLgٗjσ6@C[_9?a:?n~ߐe)Sv@y]8F{//Nr.=e^t{A's<[o~~v<_Cp/c?):fth?g:ɊxJm,hqw3xz=.>mK}Y3avQ>ߛ"ЙH>C?O~}^ ,vkʿ}֞9<6ږ9e1ß!\z9:SkɄ|Nɇ(K>zzSFYI,[<~N?վZBLâK2Mo׸=_z,.GG"DO3C#A%72=<>ׂ3{=qɑǹޭ su?|ds[YM?g#92ރ??Zփe}NԻHΏ޲޿3Gsm=\Q eˣ~ϞA/F{_/D{EـSبоxCuϣg BFLp&XMs}EuO킸_D,_le7%ʻa7;c<" W#IY?\tnM3~ٜ}?l?~lGw҄Cs +Q{;l#j+IE[lKdKbDkgKcdT~d'^cټxTum&zNVeXz)lgs^Gp^z?D[2SlxPꐨ*a`{=_eu%z^حyozL3\eFg6<6F#g.¨^ύa\ݛ~x ?oŜDz'Nlz܊\z5EN7e\ԭk>[gqnwлtnT9>?6 ;viᕳڱt+ +I~{5meC}sץ˦EIlTvY"ߒM?Rz 7ӭ_s^BU`ߩ-5gGOh築c=ñ;{gG˷X#/~]N|!yKJ25Q_C_DO?8ɞ崸{/ {]o7}s˦?Lu.pol~P2/n Nk:k'Vb#ű#g]o݌{=ۑQ!M/pjK(Nv uVW'3BohcQdsyPq%Ť Îk^XxoTL3&11gd?+_^F'E_|t2h.,,fofzex_WumTK gs擴k|Y5Ϡ}ЬB#}< 펫 &FwQ>_ ̋7Ҭ3_vf*R u-/\$g.DÌY0_Ee 5|jH>COKߧtkdxEygngh0㫱ie}Ɯ?}>OE;=`S_p~Ԟ|w#Z`s3ԸW-h/ޥ5%f:}.̱ngutlxL~3u懋7IN=_ոE{g(zSyьY}D79۟cfg.֓ u;<LC 2,xҡb:̗<3}>R߿(LK|>':لϲK?uRjKݷwRxJ;0);[Qѕ]x#?)}13I_%sq~f)f[g'nz3ϋ.ƌh%heExB-Q u_}pp_+<ڥ]42ə="jϑѭϊK{) E-C|f/6Gʱ[~_g{sȷ=',Q~:0П^ &de?YgoZw<~Dt||"pHG<KKU;~l!7~_uWE{gr}s: kUE8'#"'VPFOټR?w{3B=gx]@u_=_Gd@M2 *_Gg5?;kC6X5ߏU?]3/Fš'/_gs'F۳_ by*+ ZrtKTge3x%b|rs#'Ѿ-f Ażw1%g&L u.z>9zweyQCgEWoυyh|j_[Z xʎo^~'z?K_^օq>yerveyn6x63{ 8^ ə]䝸n͜tCcub9_h7Dk_ɪJr-{F~R%%73PϏH:T{Ri?{X/.+NW~ XL|D9ג੻nCKcgz/XՕR^K'o\tzMNh#}YOMdW__;>7l|{?(;74pH ټa/¯򫳺719˖^x/i~9K+I g&:9Mb~̲y?Wb1~+?CVrk !fxlgwl~!åfWvxǬ/n F2sOv,,MHx:aQz˦,x_e=l%8]F~]R;[g)dk=}\?Sww{,מi%_K?B,>FrM=r A'2+9\#=.qXY?s'I̻ҭ%/a~}>3b4r[ÍA?uR+ ڧ?NzkC^|ޯ臮 y\"|SOɬi?K^g}~ǿ&?,rpb:zTٜsw ?pu3j hJ%W:چ; N{K?{F36¿UlЮyhg g7v|pcEK .{>u3Kf${@\`_(CD/෰'B0shoCbJSq]fLMwGe?q~*UojklXb>^#T źNFv Z.qE3?gջΈhzxz@dxA>i7PvD^gFC0/|/[5(KV-X䋿U%;G.?pr]Ie熨;ͽ#-r;_DݷuI_1!W%N},}4j~7ߗ7=D쐟}V[#WϜ{!ͿiQ1VbP`lvs?Xxz'6ƷZdS.inw 9ƽ6IU߉Q)~*vP#c #xw̩;*h^g_ߡrQc/J9Hf28>]]l܏/<"` ?wDeթ {̞5,lldv&x1XmU_&13;~˱QgU)ރ%%+?Pun{2Zusߜny)ꋨ1 :WF5%GcE+Zu ? Qg=vKD\? ]xWq_COjޣKbC}EK%Y<c~53hY':콀D[15|X4|?9d^CϞgqf= F+ WG}/8oGJ-n׬}vg^^C;ul _DADXAzY\Od_յ[T\y;5,s#:^R6? {)9-*;b E[~"-puʮ.j}$Xnc== _F[Uy~q_z[ѻ߲Bk#k#/vy/4gz:}5^:SWGvMϕQkъTr} <ĢK̃|k>dΨET<^|19#&_bfrzɌ_}m:s+\Uւз}q\^ާ譞=/b6}^ 1L/wtG}^S@uM>?3{ yoG>:FbOsEka=G+ Ij{LE}e}%ݽ)3SO3[yf_1ՀÓ,_ٽ]Z߉8Y-õS -R->zk<ԡm=}}!=A0k/ |W74|>~Q~/OobK_ 3󢝫Yv\m̳҉L%O~ #GyU{m7{/ؘל3e^!{hM߬3]=V峗 ]N VCqleVTsk8 WG}Opka??>ZЪ|eKXx[#>\ߙf/99=SS>?9+};2s36*ӣω4o}sGM?BQm5UӟSk&=:}vپLJ~[/竢+GU?aDSH&bv|3;+\&Ǚe(y/bfmkr9_Ϻz^YipQgnwE7m_9W/l;o9kbc?zO4ًw}\{'Q]K5F~yY:Seb'z:O/ῖ9L9l{.O5}ǟ^8y3 J&OQ~c33=$Bvν=pv.g\W~0pEߒ/^]o7g{I^?p.Q:99ɩOGCq{[53q~?>as3w>'6>toGv)~QVbv?g>UO<^segWsO>Gw.313;9귿\~D'?V>;q嚙+n4%G=_zzg'YvG䡑w_wѿ8dߟZDA\!;e#.W\8g`9/>s2/y-q5xIQ{`B@?Wu]0c5skw ь5w򻃱35ba1=/=3(/M/Z?Mr}vr=3?0]]v^-ehlPؿ`ע;g|d{Nv)nY!*?w~%Zش2uXǖ7qN1Cٜ2s6?vǹ@uTA.{r ދA}yXSg<\9~~fۢbH|ϤSb|+?QQ^x~]^^ \x nKWwe+J?E};vX ȆdDz{Z?:;n.aOR?'yeu~켴,x?޸'YˮJ$7ϻE#ou Y5k/ 9|g*9bw UOr0ܳ ["jή31zjԙha8jgP?7ȾwQb/|w~r w-;)Zh}^3P=F!ckcUe _|?GA>{L[D;<'ǺP'Xv> # Ta@-Ncq@Ǣ+w|(fX+[Ů3\Wد'-^ǣO@/٦ycbe?e#b'V|||7:_)8н?'6__9v_ s?Ts ˀ~Ȗ b!,W!YO=sZ,pE</g$EWWǙ/m8e3Q}}k,֮FQ**6>ƱGkq#J s5bDU3+wX3e?%o'*ee F3E{FQu̙Ng(~3"Q(џ_R˓(QkWK^("9rd_q?qG(> cbhr>jE_{n;,{c?#8{=wR-`f0󛱹秌ה|gg4zTVg=ߟjQgv6oP%/m]C' w%K_b_[N(_V[>X~Lt3|r5͜P.-_Y~W =xcTL,] fhCVrOcc(_яxo>dU.;f?L%_?;gG֯+"= P#U@hq&4R{$,G{]s~XW$:ԯ:Ϟ.ʼW8~(oVr?3#5Kk湞w{1Q}~K/%eKPxL%Oo{";*_%|pF}~9ⅧE +%Ek^W: J;vFG?^?rȩ_Da>E(=C_~!Xuv]DYLGf4},C"_t};??56٥U)[)ݼ[}~egQ؇x3;"srw:~( :qg}ɩB(. ŲC^/kAڧy/o*9~%K>?|S+ɗK@{hG+`_Weu}sw8'F'K_Iը3Wz,;Ybi}6}h㊬8:}e+ly6?sLT}`DQS}#쟖 Y7{˻ˏdg^`QFw껔!?t,h~5|\w-%k$GώuZ ʵx^o-ׅ_c&'9ѪwͱqKho>{Dcy=_+\1+<::Ufvևڑl~}"dlc>gGU߭ n?yT{#QY]:_Fq8qj̳4e[^[p]wo7:U<įW_G7L3\d#~{FKBMz;/RVgs^͉2ccT!GJѾhkۍg잀k}nU/]#u^/éC_9Xcoggw>g>rbϡ)v?wJ?5?鮿w^:\gڠ>H}j!Zu>~旉 >;gsw'񗈋ޣ?3g[0w:}?QuQwA&_rW{s~lg3ըfYL9/.7J?d~䟎!+LfG}y;;e🹸U?姟_͙8{ ecVxs/}h޿s9hՆ~JtmVrG2x,Wun j9vN}fV\0]pvӌ^s,>*esٞQvl?oxrMVbvgg{I*}1Nۜ5>W<%(Nz_2#~Dٹϡ8g#[dv$?|_mWF[/:g.Z":بs3ٜ?`gZ6hw~P#99Yz^Yoa ?<,簟n=s ՞p7C9,"6!SgO7b~1O3' =ylKsټ։+/4w S19.FIE|BOyw?i3΢\Q֥heiGf~Obe#s柹s_'~O?MZ|;?g/䉏\fg?'̽ӬidJSsuO(/?{G^U-s\U\5v{+26Js7SNT?,G.jo{hY?hnfy˝eg^39yrԙc|uU*-?S'WWy*Bp_lܿ^l~Uβ>ջFzMsZw8ĞE;gjO_/[/:.v=g<~ nqxmzS?8Gp4Ollxٞ¨݇BJNuOȽNJ !;~?ԅ9g)^/eGn_^gVMfLy>UNMWZD=h|hwc>_,|#;9g^л21o2x.@qy7{L*p<E=:f9oF;8`rsoL?ثݝSϜ΢s.榲~PVN^RQ=GsO*6Y]+'Bp_O#g"G?V@}NslPJ'G} h#<,/3Rwݥ~~?{(n??E2X%c_7:Sv󣅶u)?WsD*E?ӻ֔<4:g~Zr,BI17=ҽBgQmF>pl4ֿ*7O<y~?eȯsT5^Q}t ^_ {YtWs??Op^{^?[B>Y6Ņ1燾13t/_ϵ|1uM u? _t:?Xpr.zo|Q6 Γ Y[YhtgÈG[4=8׽}/o_W6uY cy|YugQv]̒<<.j8wIĺ.^u/ )׹[99r?6~r,/G%Yho}=w/ڱ~4/":x.]UJޥ7{@D N.g緒tҧZsjYv/xrODxY쳩~Y8w|j}3K ߱wE}tPW$nW]~^?6Fc߳&|K8m{0>Wp{VsSiQc+K}ojTW[@\]]tJv*}j5cA<3R$PoD'ݯkZnFt]v׵HO3L߳V6?Ew+z@ Qkw[zr9dVqg^ ݱڨϟyk.3dF}xsFQ溥??5׈%K}wӢsg8->O.4E5˞~a=):S?]py}͝hvFסG8gGws\dEGɌO7rG8zYVzydTG}k>L~y\K4S+ed_.v0jTE?JfMZzu1_U>RR~|iߩ#Z^[Z9ߥn5>w/q'9\-³b]ekK/;k@ֱ7Y.kǶ@pZ=1QuY>7^ՆPe=f O&}ܓz } ue'_]׸өҙ%GѯQO o<ҋ=R {cϣs^xOKv@r2Xϧ5HdU&'f}`A X܁1ף\2?Zj=u01BwR eFHo=_A7O=x8SMl~wƬrE}h P?.KOR__~} sVz}W}.zt}QgTǒh?GwT?>3#vO)^hR\=?;wcgyYQ"yeOSw'3|>: 2,wi1޿>?ސ<\2?Ӎӗz.nO½F/N=FZ,à8;TT3Ʈ9)wYwr~9=ffCV#Ze#|5 ں\eUQQk#jC??c3NHџ2?|qj^O*9̏]y6yGD⺨O_>g\Dw'F힃Qy.s/9rl7]O^m/ulV"/ֿdv`jf~"_Րu>gAʿwޣ\5}ع~m7#XD~h>ˈ~杩o?5/ƠwE޵Lϫ+]{?gy}C;˦(~p]gW)N_9ߦ?svgnwfuLO3GA6hl"jnjO'Zϟ00T] gV2~5~Zu_o~կF|^ߐ<?gv6,~O{:nW<~wM`m7}s kLqQΊ_Yeu*_rL38pu:8:j׈9eϴ #Op?ׂI4n=sx=Xph]Cl*_-c_gy/u󄨻U\m]wb}~^,cZ8~f˦ww8+0SgƓkvp{H`\{=qe :jǁYmm[]K?/kX_y{=Z?Qм;gsYA|BmGG kOA{-bOEN>uEtO"M8Z^X7ψ1l6|frvC?>ہGG5OZ/;*wQo*v^tORx{Ԩ΋LMZ5:0 "r&Ԯƨ;^* TAT=/v<ߋu[sC^l)X4`aI٩;UGlOzg'/Sg3-]dyߴcVq\`H\17|xYFvoOؽ_[v%j_2/?Gf~zmc!@5HG#L,yb?;;syk]^-ŁhqKY4^BvD0I\&{'[n2xQahojAwYHm:Y};{}8;Fo(EbL$RɌ\z[vU>@:r߈w~g9>s"kǺ}Q<,gn%${D> )Ec}7K[q/[g؈lǙGβBzm]G>sUQ{š+dbE?|;m*~؟ *k>ogh*G?fǼBB͐߱wdIγ,'"nޒˀC) gWھu,Kh}:h׵U%C?îv/LQqo#&=")e>x[d؇^/?8GݮcT_౮x{:^cwu,lhtvgoE̪:.όs?Vﲛ_s6CiM[5;HyJA5~v|< :FT;^uf=~~^TEŞKDcrtcwI'~/sgƺ}EDcp9|fG:'5AK89;6mytY]:;{'fK~uE>^Y:~>Xz'{K}Ij{/eQϛcͱX#Z!Y"ߢ$5aO=q|?xSf^hQ^sGE+^K?_2u=vm]g4?O\ҝ縴;̰O8䟼WnWPW3>K{ޟULZ}oׯQײsg=&g49_tdwF9"{ɉt>?g匒p5~ޮ2~zOf/8/סZ4: m嚐Qs`ۣz,:~ eN#U.ڨk SSOX}O@Q1-~) 0v bSVWK9zz_ϱ?Okw}1Ҋ?wJgGK}^h?}u Ԭ+ҏٵ#Ị~?賢ebGy@K(,}S[} s'YdRz||F<{A~l,1xo*-?gyq{c?_qbo}/L[ɇZ>L~Kr}>zC9Z3l^˚J"9Il\W#YԄ$Eԯ߃$Gߵ-\=uשϿuc8ũ>D̠x< ߕ-+8Gv^1?v;Qs^!K'z2 ,z}3mxg%+}Y^rxwԻ e30zF//A\f9#SPh/uFa$!UyMwC~'Q̵H_:K:7>Hݎ9yo>ӿsz\ێp9t~w(ǖϞQgDݽ[T}6f^,b ?'g>/jO49[Iβ|EuUӟgzTqؕGEunKcϛi6C3*˿#ym]]ci޵ D}NWsO_xu-|S;CpŪws=SwT G9x5~fLI}Vo?g{ϑ5VewDO}]5r9צOE͙͹{qsU8Y@cV,+2_/je){zL=%}:XY(3P 7(~O'\{^^v߻7j$vVMsiO{q|gTO"=lDug ΌKYi_]Bi]we5 ?T>>iXK3yz- ~/hΟvݙqbOՙ6kw_ء<숍 wD|\m^bOt?\+}`AR9.Sxgx5SgNyzueTv.a(d9zOԽB:˓vG{z=^c ?gqu63Q~^1S:6c>MXu~XW|_rO^xojLO7'=z1G#iDFsyp7z&E(Kt/E f[YvUr";*62vq9~Ǫ:.x8_o3^Hr$3ET Ĩˌw~;K+[*ۉg]WϤ)vޠ/Mf)GwE?"ZDŚJVDq{̙oFp|(/_&-r 18o{kT쫷Sp6bpw wE'''V=Qm ,t\l/Ǧg9~m79gR퓣άk^KtGG=$#M]Tu/o7o.@z,HKQO߹2OLeQz ooϜV9ٟ?A8c7-ǣOڿ'ܭM"ˌo3G{}392L&{{deQ*ދwwDs4bEs䷤_Ds0ֱP>\\gKⷌ~W93Hnd{Pu8Ud}vMi.3#Uv}~8_(U~~/\hF,<]3)ο"W2}hcBD?oc["pst?kˮkz=}5docS"~dJ,_&ݐ3ZIjϒ!ESOǯo(+{}S^b|Mgo'sMQW`~?/+)Z,k<5,tV K[yS?~z+>'"ɊzJBB8^>">{,{f;~ϧ&/q-34gQ_ɍpd?o?G:+=`;F깡{"^3'_DKu\AɻmfɊ}Qk/!|z]]>?}~G}fbi_{}3"PS[fZesc_(/SS=p[XnWeGtor=u̺O;96ԝyso~žΜ܂{y eEHn8~.[*qNi;Scog?uyGRzT%'$cQ,:7D˿Į U{!h{ySwgtV13WOYmht3<3?P\<~>LNA ~F1vg3|t=x{Tg͍t)ܨ$_ {6ė{hk1b;oG{=zB]Su~,gnzV~ ,qjϺ,q诮AҨERQqu?Y}\ףM?{Ա@ho?`sW^ʻG.3G3;^sOb?Ë;q0Rs/?ߺt,wǟ?,e/^}Y~%AnK= @}'M򒨸WϹdw$7RvsT3Dt b>Z33W_5յЃyMu8r?rX8vF_yeYwsGX7zlOa4~fWe3 ;<|d.FmNpqߍ۾܃3HuQ|N4ۇ'v/ym|0?c>U?xk@O1 NAK>l[>W~XvK\Ta?Yg>o E_}!s\Kha%i=_ǹ+dߩ{ c OOzx\˫?J?=?K4y3 {ǜ[x@}gxWG[[5Ά~tT=+עK|}? ;ssv?wa~|h$Z7Sk2s6Ō?+́8$9sҿ'*Nk^X5G&ϽvR'9syԙ=Om3fp].e}9EԹsb!ğ1χqJu,zsTGhwue9b^m]bK/{}t5r\>7̾w%/zoo҇~;ZdU*#~?g+S?G=elu".b7m&Nս_vrEwgo39Ѕyvyճg{,tJIѢ9~/;kʱc?i'bS>ױjGu'sre~6S.]WZ"S#=|Jpxofrf葝9ǰrڹ_sE;69/?g9S캼j{HXzDN}aQՓI_3f'6>;jO"|y<~<|lԹJv4?S'3w\_TgͦHOoΏ,a%i&wss~d5O(mDS1?w@Wr+35|gYWM63N_;/ 7'91ys6I_?_~u>Ful yevQ\+c~ݗo~s^l5\5߼}Rs/k ॱR]5ԟf>os>Y(;g>u3kr39ⷩ'0uWQJל}z:=^=l4>+ ?X_xMԝεz44hn^\Ӽkc>+g!:~_hwO\={ 5UOG;sK𭞧ӳaG?YQ^{_`َfߋ5<-Q3G|k>]h#Q1D2^}RedoDz:u#A曢≈:F Aw{n]ˮCO Κˌ02z/\4ί_~CxL3]Ǵ;k#>Nf.$Wd]2n?)9'Ru-wfxuju¯M}kK}`Y?c= 'z/w^]3[?;);Þ v?-_}%*\8Βs9~חad}o65p;ڿ&s%Cv)d|SW>W¢[JcNz.@h'?\kʻYLJ/$ڹrEi7Eݟ}{PwsFqۤ8$W|bp!zj9㴸P'Xs^+G~V&Oq?#c0~N??#sH]ܨϢ,z,*^ +GzO_^,[s Y3q| sǯbYy W2+?QQc ">ɽ$+7+޾%Z,n}O1ѧϲ(n[_ ^k5_YQuωuhvC~&]sUjG=,ۣgF=-큨@9F=Ju9}Ke?`˚ȮP+OD̵E{=Cg6uzw^ydfxS'3Ozgmz}^)?cM7h?Q -?Hr$}ܓב?f 8=dz˵+ffGGō;:3y%ufɓtErm52G9 N o`F$%d~&*<[r߉;-39XA5N{G>'%=ݎן<򿋨z~E M}~wt:='/ʅe$7{Dw{qK/G{"0~]IE\r?˲AS-QqtBo; ll&yl؟fPl&w}藭>;h^? | j[<~p1[C]Kӷ]n3ksǔ 쫟3V_!Ȩ|XTdK3KvdSʎz/O˧__=T ],-:\"~hG`LQ%+"g2.6e` >gQcѩ֌-%y-ᅬJ Ю%3^kwa ]ĺ>z?g3=s?̇3fq9 =^yߋu<+j,1_/ReS~'SGvlNWjbMz?\e̯M_yZ'nQc#^R㵵QVҏL8':ۢ}NuE})j;Qu[Qk)/v;̏gNuձV}?S3?~L{_@%ɍbO#;kgqbC\-~5ܶ?<?3Iwc%c}'+vT,g'?>K$L?쏊N|A%Ks&F~ 監YK\9/'"zׯY?wYh'/x}s=07X(n,d@˻|?^ɶʦP&Fw~Nߟ 'Ɂ}~}l}ɲIG`KKWlȨ|Jq-Z/.>+*.|k|ޏg~E(ι3ga=kg3?"=q6o}su?$._}ECJ><,}H?QxD2;{(}K_sɏr"3YXogg.?>oZ?K?ZU'Y@l| s\R^Tcg H(~J+;s.b[[jۯTo@nsh~Q?%QO{ e%K>5|'F ӻ;M?Ef*5fє.z0Cs6ϋ+ӣ>GHW:ܨrht>n,[?{]*w!y@ԹǞx-_ߡ}~~k%u,^ԝ;;&O-ml1݇ߏu/I{+{ _]@/9RKvh>=sF_9];0@KL翜 {]< f(UG$~fSծw|~Ej"fz'wzgڛd@'ouG5P6&Ő8|gF;OoY+}Ͼ%1tM/|^ǐ}" ]ϒlӯ{Yȇy͇}[dxS_~2?F }b>SʿV^X2h_,-oG?_F=ٿKh_;޿COw]l1\_k/hH:23cܨW܉?VhfzP|+B^֢}/|cO$;Ss/`[D/Xmvk/Ιfz?ٝ=GS:C~r1ݞQx.wa^dv~~%Iw5i9 gWxk XA俾s@v|09 zԞ/vg9<_#5=bfKwHi?)Z1A^`v㚨 > Q7Fky{usFvyov_ld\^3 3[R[q:?|#yql_.t:<3.;,.7,<3|tE6ʿFͽEddsY:A]\r*^~Sˣ2(Dhs}~2|F9[+mn0u&FbQ7f_sv+JV+0|~`w[cqcP-O/;_ey,">+{3؜~8~}f?"_@@1~!T6*5AeY}be~6;O?|Tڣb}Fgz\Dk?9^H_btB|ǗI f|~C<~/_6wyS[=,ǧҿo. ϯ GhsF?o3~a~@>4ud:R?asQg73?Xd ]5.?guLOy;b}x@9sLm?KA{/}ϯNEs#wpf9[QwD=gd?-#y[`;D?wD y]w33}/XߙJ˹LJ>s%Q7N^?Y,߿vwu㱾붒Xs,ǓSj?ɩ.vy?}/jWǙym?oD1ϧb`ǎ\;43gNK?uj*O:C챨ύ֎- 62ӭ#HֽOl/RFbY\:*4)x9673 lQ#,JtgI-Pe/`w QVMy3+aӘ?yi3?bg'Hh;/eT1~()GWW!sqWg>;;}GqB?>K_NNfљE1.?]Q5#'X5S%F>k_zQQ:\l| 󻳾mdkќ~-&ۇQ^cBęg >Ì:"69⇩c㼆Hs /q2z.s;֏gwjC?+V{|wg6 #W_53yw!'Xe> rbԾ$TVM(ϕE/w퟊+g=;gWŸy_iJ?u+T\κ_n2 Evݏ9߹ St].0q(*~Qj+;:c7n;/G?#j-~B~OuI}^QeLn3Oe]=/*YېY:װjGy|+{=Ko8y >eېE+5}G׎6԰9;}şUӟ՝~|~'>ѡɾͿ$~8]9WS/]-$~?'d\v_<<3/DYLmloOgg5ۮ)??.Ƹs/zyȟ7"gu-1#?/b;u6fL~%__-2U*GV%wל ;ѿJ?X|tuQcG\UO=LܡFx~:ȳ_9gIQJ̈́\Swgڨ\ g~\X_5?O,)1O}sFO.pw~fs+s;\/5Q+5ܽK" &hQKc\Vkf5;va4Sϲ?2OA1?T\gV^Ty}R^{^'bVlR;xoחkuhYsC2{ag1w=Bb=9rm:?<>Z76feZ9%7[LɍUڷW_9Hf*kwǿ&xU=駢}{N?8>ל.쏊gFhes|tA=tQ,s_7O_h_u|wF\q]v:[jbe)ͪ{s:آvtQsI|j}fqqǂs}x+/g O+g eÊ9_ZEg!x}w]nsCTle7K7ώO^J/]IgesHhm&v9; wkSdw}{Q_SGv #H2Ulms^HfWf7q擺=|dT )qOR2?sЅD);wDJ& O~?n33b~gGz*b/t37evdKwھ^V8C逻#d]7o.D|rOB:s84^qѻߊ$G zxopa/Eſ58͛ب"rau<+3kǀe W|9j-b*Jt\|~Qs-wی=9='55eo>9 sVO\u69p,FkT rHb3Ȏdr/$o/B爵{~~}kyq3=J,_x5Q㠛> 5+tYv{Eغ37G;ez{Ա,#K.z\ʑnz,eeWٞ w赵c0?Fu ,}Bl*Xqs=+ns_`l+/z1~}E_q.֯~u]='mv*>)ozCT}FY\k1B QxٜԹ8gv[B# ^Nw!Gwll難ʼY.Qlﵻ y7Q'_x_T#VdyF}fs*45LIg0:zկ2,NE.?*j kwr^o V Zv_~^x\$=Sӓz,48ߞmH?}kB? ؇㺩?O o4^׿M,F'G[~M%^(xڸn|Jw>׬\qϑu7xZݑDc{m㍇<>eX%~zG:-Y=*;v,JuO+]=^aDzFK^F#@utdO>_ ¨Vy]1_Q wb 9=L_rBYz{YފmȟÒկ|GvG5-[hmgw \j%%7ey/@{$?~-SrꟂ=,Zg/ys1J >WGi5>pw5H/˦Ϝ9>wȏLPvJhkn^??=l/xS3=5*^31F[D0]ĸsh>?} ^K!=S5OS<5ˣVM?:=*r?:VΙfxYOΣ.jWFB]w_D 9\bẼ_1 YDq&Egݮιns2=c~|5O?7f87Qmun7OU1T}w7pUӟ,??9/7QC;13l?~pصtY}D?}7m ̧迬e'jݟL\ds'gz22/gG{4QE&|_D{ ?gLψ ᦿYj'=O5Z5i^v*'g^2gjNΧ^s/6*~o^h߽ %_; ?́_'ZO)/?g#O6,v}<8ϲj~i.Y?guiw?g#SZ|6|}E+rK>s~bNz?E.? ~;)ߝht9?EsGyi#?{TOQ~ud*xPOߑ?/Gfl\OJ9S9y孞n~{]:fw꾒}~&߱{JLdo QU*ZWJޯ|rJTL:cQo8ڹUӿlJz-=\Vיyg??*t8.=Kdg Jo>s?L?p>s??N>:sV‡?8j"׻L}lZ-ιo/6/cgkol@Dg|d;O8]mBuNSr;` /W gcY_itImϲ:c::Fv4h+ׯyzi_{>kG;%k];z`\-7]~Pky_yNv4;8i_GiQ`9~j˾n^_iW8f;wD8ckzQ~T!5iuITLO-zGn @ԝBS*(yHTl_k ;g#$[u9 ǏһC.H5Sk? kvKydW9HiGLI 3߈/Lv$C~|~_aQz1Oen.yo۞o~ǯ nwԘ򢨳W ^RfJc9~f~jKZI#9WYNtNNp)x%s}Nc4ya5#m&6UץԏΎ3Ө3Hes5w,ODU3ax,1t𻮎q`?1]KF7-Z,/!3.=ٮgg yb8v2WzjaGDuŇ/= ܗtl01hmh?_(,ֹ&pfkIQ%}YW_Fmg |kL2Ư>n,i=ɀllxBt9b+nܫ Xv9Kd(Ufuό^}lS/s~+~celr:݃f]R)&>*x)wt/E_+rXczOfO3:wG,yoK)Q{w5sCGeQ޿JMMӞ{ LE3:Nt|79͎-?Q Vco$sx\2h/p[ m6q(?sJNW=z^I,o w#@. ūv,Y rcY#}q\=Z̓.X;FՙLPВgQ??WQ1y*ǠWnYhl*3=ޙzuX-Ά?;)9H+?+(yU^6k3WLGAQ{x&GE|Ίvm)tHJP\, x)9Q,;fQclyeW>w;K8~,|,kyxߗ/?ȬGtu57duᬮ{duPyYTtݓ|!#zcה!Z} F#̒{ur<˞hcϟ싚l(O.!r̲]ClCAc-%̳?/j( ɮبODk~t7ʼo;~韣 ?C+ H~퍹{M?{B/_mu^A++t,j(Sew]7MzWmtBכw_rWψ9is_~+폹 wȕw}OO+eҫ9R]>'ytYʀ)\#ɉ"_)-)AQ|hϹy.\~l.,x?_X>Pjc`ɯ?W\Oϟ:r1Ƕ6~嵲|u&){.r?t,m)}]ѕQkHͿ.~Mu%C37F嵤~ gTm=>cr'=$ϟ3ό>XzNⴿ29ŞKוsD?zOD? __y\})^E7IfÜW0Qmo6WfQmE'׮oX./_gS'~QO) -Qg};?be?4gPLʱ~Qόg1,wfkz8}u3~Y~L1rHg7 ꪛ~_,2r|c/zѾ-Z:^hOƴwӿ\ _6 +\9Q|̕S͟fsb 7ki&c;bsk}yOT[pby_3~rWDC!7~XkϏ)+Ntճ4}$ O3kCM~u/GS_n&ٜ~&wԋuB~rY| ݞOTO?6~?>mfFߧ-Xvs"*{#Sl\V:_euas:uzB导v:wp^/s˦[$%ބuɩW[AI:^gsY_gՕ2[kZ;myЫ\y_!OW|wYg{rltQcyFO}f} S?Y)}=Wʟ_4R? ߝ\):w"dOzm6gO/wJV;ڹle8h\?Ջ?׳}nUWh>"->;OfGs~s10^tk>@b?\kN3?~Y;.WX~?VDӍ媾xͬo^ 9 5K(F|oKm/(53-:~X|7G;ȼ΁\X" "'=tqf!}|k{!uk9M3Khgx}Iܗf8Z`1;~e~bT[\|P$vޘ˳x9틊 g9|(:mrѸ?ZxQ1e{%Oל3.hq"/zS٪wFq*`Pur П}fJ=~&p6|Ng98Y*Ǐpo|~mk?Sw4l{6O̮h5>[y/_Y?#9{.@H$;FmtyNzk>U6XsI^Zhu=31*^g|5ZO~QTuET뢞W ^q9ѕ:,u@~ogvdkѣ_]~u}~>>-i(>|?@~~#΍6O/뱱;ԧ1v};j*v?/{,3=_K_\`q<3o^.'GŊuofQm0/=, }o?n}"Y_ 'ۋJK? ;|\EGaf5ˌYc'͕Zs ,2+A`qwY Ⱦ4f^OY0LceW?н_幼#Z!\l~~ژ5v\o H*Z[q}Գ"D'!Ŀ6& CnvџG?)py8@}L~â]goN6C/}ߗ2%&[&<$uaq2]eOΊKvC1DK:fX=Fx^6Kys0~| bP{b`7yx Ww<%H~|#ZiD_y,即=gG+~,p:^Sv=_wl0&Qٰ?d/3hcwE#I~_T 4ۢ[{`o\-09WFWp]8/q+^`gub/ ~kRArzɥ-jNV7'W8XcG^ŗ.甑w,/ϙ''jLp?+Vqڱ.篼O b]S±{O~<0ۅA),_h#o')J-I:hw>[\iqb]ݞ_ב棲87SoW\fQTϏ6~_IdX\.5GŒK?1S>|qTY"97ɰl[ }s碱c_Iw<ǒ埝~]eZ`}veXP5jC_˗-G GgGkKOQl\3_Uѱy2}G=9u,%B{'Wh,-~i\˯oy/]/ByԐ\Iula++g_|*g mz;7ÓƐޗ#\<ɳˬdeF>\-.VHާOm~6_)g._?QBKr!?X:ZY}E~qn߀/~K$iIҽ/z~6Tg÷Dx],Se_̯{G:r=44/|SsؾfWٜR_={cG*E|k3z]{r]rggn'7@,w.ڿHWy8/2~|>?⊁=Q+A~dC~"w-ٜEV?X)ȓ5tgIG~.*|7Kx#}^dO֋wk1”uF?;Tv,z"MG÷E=[b}guݐS>8ZugfV>ؾE~}~|5S%iYiѿk 20wF?hdKIj6iOjJw>2jՑ _;?j%ߞV~ .#yݨ/kɫA\~3w_gQ}_ޟ5˂WkKQ{} {g"}p۞}ﳥgvy!?%(cFQi&7 糥'9u)w,oebɳ[lq5^\ާK?=#bp^zϞsY9hr'GD{E?ljw;^3,y9ϥo6f#̺l6q5j;ަLN3y~FiK+K$~k^>O˦?Cu%ܣfGcQZQ9̎g5+mtgOF_spx>|lϿ/+:[gr}dQ^4saP쿢Woѿgo%Q{ mywc|ksSy#'?h~~zPzt?We5Yz[y>zp.K>>'gL!c>?zɎ;a^Fv_Ϣ։8c6ĵgD;T Yrw~L cl>*3guo[]ѡQ1 c'CΓq9ٯ!7NֻcEͻ/pZu)VQN29ch@@~EO˯Oʎfg|jz^bO#3gd>O%}>g9O|\<Dz,ilTX3gyz3ϼl_ ,]Te|p?zh;=`Ew,{sYN5ߠ/f6><2NCu")_g1?/~'j/Sc8>Ͻ:ule8WC,OYthfD?-FٕQϯ*X\q_- wE=s>zLd)՘q<+j=CW0//hQόԳuX{͝h$g]U-݅vpoK/o9n;~WԋBE|2X93h]:Æ3`lYT3wnvGc5 whxk}S'??zdoc.3gs\Y׳y[=P㍱=/frQC_YZ񻢞ўyrۡtv5_1Q{$t䗳7trguON Oh0~n/D+~"ɿF{/]/95K\c5iv=Q VC3O,:9Kb.Y${c1mz.ojwGm.c8;Q6@2bY^BouvЯِYu%8'l1!D~yU3D|Σ997};~|BDiWc.:?Ngּ,7}~7F՛:u~ ^cL~39lpjq|^gayϢa)v<u$ŃLo륿uO,?GWG{/>h,_Cnz~w61T ~!};*cOFh%{dGVYqeK{/HDKb !#Q{OQmRɲϐECɔϏdo&w=Y_ֱ嵧[{>',z:Pv[L<{=P?ȯt1#?,j7Co:ruT EplS}xOfu >8*ݩ8L;h_{͹ȁd_w+΢`t%QcgD{ީw_t$ΊU<Fw`O=>?Կ9v?gT}3^o̻LT~5Idsd{ulןG=3TLOF8S֨b:>~$s\J]G\?*}RQ?gX:X>ˣ汄K>G=s[T#fXciu\ Wg/SOqsKU@X8&G~h|q?{tQjH3:PX[sqIKNLW9+pm.BE|=x*'y{&ZKRFG`ړK뢞-9GԳ7%(/͒ɇAxH1X\>ls|,@s?~5.5Z;Kѿv+oI O,M䜙_{aF><$_}9s+Qry|h_c4~?/{+:= {|J=?^>,jyYWE䟉g ]x. gsV'xڿzG /B/z{mu%N_HFWm-S߱6eMV~3~c__1/9|â=_T5쿎aoЩUxRVJ gom/ߏVFڨ:X}O\;vvTY쯋CQEees#c?8DFWW ݯ37t#uR|Ump9Dg]Al6y-ҡ \{Zsnξ@}{d (Y@qeF%jX3L˶3wck5 ,;@m=J|y6A*SEr@ +5=~077LWWs5,9,%gE=%_~_m~),_=7xGr,G@l~Yȫt=Xȩ}fâƇ,yDd1sY!NO/'AQ=n+(sxA}*WYO<}1kE*jI?8e[xJe }Ѣ}=B|y!gXI?z-G~r}sgJ% I_)t+_{֟v#?닢aɲ WGzzvOT 2< ?r:ylN!˚E#yuJ_O9vfd ~ɧth/ȯqaXO){g v~?u~_Y<;\~7_;v9/}G̚/1J=c{_9x-xm&iў)wN?gC2l|0AY-|.u8=Z;O~9ԫ/6Ǣߝ ?j,A6w9O  gpv7\gO2Se!gіch}<=vB}?#A2z;G[ƹ..?gt]$׼v{νgz[sq-)m-)w ^O$\m6Qza` 9{:?ﻝxW`;Y?t%xA:{—cϊ60"QF?) ey̯F{,YmGj'E=uKgS߱Sb>YZ$?~c) GnNDHhY6\T'*E:Х.{^w<>9eϾh@}zs_/d:|u^?8W6[{h}h^>,ZJl#LN,q)=ovBoښ)sh?%eXfxMyX==s~i>;|)39ʞz9^tۜg1+7ׇlvDԳXs$!~c,ޗ;>ѹ l6qErOnx6? Y}w/+~~p,eX}N;p^_S8;wΎ֯FOόvv7c-2yՋuOώ zjScwV;~f}JΏڇbX3{i AΆyG;QO^Zԭʪcy^ԟz53441-\ W' hNc?wg>?豘/g 0~zfR$]79$ǏKϟz=S_Eſ}g3?]L"? eB{>g1YpY^΀~2 Rff1ܓ7-}?,ɱ4,|}Xy?T:6jhP.:L9`]r}DԳjxW8'>[x\S2WAf @}b~;=W}xc~~{w:+Wg#,?d&n%kͻuFPyڳ `=Џ~+Dv5&+^竱?|.~BTY9|hOD#z捅^|lt=`Ǭ=m.{7@?Z3?qZw??Z"%h}#YGpȾu7?`wA(3 {OdazCW|1}11ᷖ|CT^0uNP=y_~EQϐu\& Q|์l1r?\6QC50`fG= V8¼e'WӏoϬg"벾Jſɇ</Ǻgօdg.zva\-~x8ow-~<1[o/ ~_31;ȿt?A*?R~q{ϏBݒ[^aa!G?Ye_voKO'D{Ѭ2xV^_rV'wfrJ~n^sƣ3u ja0]S苷jh": K_y>s&`Iecrmv̔AFv#}f/箽/Zl1GVy/Wrl9- ǹz8Woe5:Q1݇c6},(5dg3:֮[<^gųc8}SϞg_TԳGkc+-w^«|E[Ǿ_{}FP\_jWm,{}ZGYs~ѭ]^Ԝx_}A]t"wE |!/WɰJ==8Z[<4vm֋䗾n^lNs/Kds/=߱{bt/ ^ɂr<(XgY3{_WD{51\?걠_~F?2rK˩7,~9ўK.Xca_Z.>sf1x]z&{T4|{oq/,ܧt3c/ɴxJzUy6-.rLܲo9}r*!/2ZBJ=<Β*yUK,~Jy=7|P?^_Y"?_r:{mަg2KS|O#^N3ԃ+@.G]o^?:o寲wOx.߽0*x #"_I$ĒCKsڏ& K?bG{~uv@Cʖd r,U55<Kc?JK߽_"7D 32OF[ 1oW9~5dtl\_"??>~ȲϳcFcde?vq$ ?稨nM=G>.{e?4Izh:.e\:gvlC^s_k'_3N}`D]m*G ?xAT"+7 mL}˦窗GlP'{O3=pXN=7޹eXˣڄ)韭~4Z\GfEۏN;d7%.nO}@&3_greo:x>_|,4.H6#'ȁrVψz&S?f{-&RϘ 3{\v:\_:['`gF[3qfLDG?}Kt&ܔdr}ASo΍ϖ?hBg#ݾL?*H#ryžc%Z|m6k^ċF=:w?}66~f{/+@2ώ{a훍~Ϗ6///!;דr!;.{&zvzh`OuFu_B7SѿF.Fׅ?P<r ~u>^ޱ}ߡH^'8<|efQ\#{`97qO_If$_Aq 妮y²VJ[+y(3Xv`'39q_9dY<3 |eX}m1)cG(-<ں3S蟱oaglӐѧqh`=q&yޑ۳qՕw_g'~d=?}gzl#b1?wEkKl{o'3ψNi?K?ǔ@C4Y˯)6b5oV'\ׇ>*Zm_|AEӞ7!cmfکfe{ŝszw>'FKNuOfT_QeeWa仐_wñYh\?\${?uԋKQ~q^}5ױl3l~IQ|gN֙]vk[|=T;>Q_A z6YV4#aIi~As0cnAsKϜkLf4sNX<=(|hKWp:3*m>^z,W8}e~WyW/cg^+7\T2hq9*?GCguvՐKP=Ls{h5| 󎟈9OE ^<3tBoW."O֙=2 D^GfO/%jH)z>eӟ/**c;xJ.$Ў~1=73HX0^w⯎?o~kJ12\Ga?J4糨`'H7|fɏGš\/p$Cx8=c^9n_gYdwv$/\o-hN],YsY<D=Avӳ/G2c#>FOIdbNX<̢PxG84;Y﯌~>zv΅Q/-;N{xҏ~,{żY`) ?3fnY3\q #怙y}'w>!a+;{"<&;;[gGڐDK_+z6oFg,0Kv]DHޗ*T d`Jcd?1S^O?sUGm"h^lW/yw_h|]qdŕengCffɞb\~{K~.C~9.Ϣ>_{,j3ԓ/Fń Mӌ5X Qe_c,u_h}Q [F'Rs_JFo'ckw@=g0+D/to;dx}{gD).X#Gr]gZgY])<;Z|!^\W%ʏSLF@:VUvh>[,W>%j|!Y_t7unjzxr,ĿGkʏx^7_QRlK>]W_ee~¯/ZxVs/=mmKl2b;=G6"[3ԩ{|;jw@@1|gNY!t)zJpվ=U=Fd@>2~䀼ڭ1E*W@h=O /KW9C]j,ԏ$η*G"ao+}Oɬߢo+g_*azbc%zmȱziiϜD,{*re-3)KWpTn11vE#u6 _T ul_]`,f=~9./zhc9#ϋf]*tߵ,?{+Cw=0z転=e\/Y}{tԼ3mƶ楳̨M#({{:ĨX)> ?m/n/-~Yy&,A2+Yy_yocREdO֙3ݾϽ̶9_Gz1-ǟg$#/h?:9k_?^_lו65;ߋ9 #?+v$W.ãiYTy_<3GLFqY?3?N1?Ţ)?v̨r'tuC8u2-u nmgY\Lܲ[~z3jr|fsjSX+CCϳ d_g%KX{6xJ׳ yts ׮k}L{'| ^{/a,tOL3~%9YT<3~t֞'[eӟEq1~?ܕkzXvsP$~I룣*s<yoz\oWпx96Kyw,H]FOcal3Eza(e,]_{޼ȫt'l%g1}GEâ}j{Qo0=V/Ar̨:MFG.@OdϿe?]=YG_gr^?3?#j$1~XΈ k>m6ۊ|d{QKmR}fg ? K G3ɡkL噇u&'/Q?bC;< g̖c?:jG!Pc,z=?|53Z\>li#˦Cyi'+{?"}?okTןg:hy{?CYf{"6~~tyԙOdÏ'衜2Տt"V~dY>*_yw_hx_QM?c.ŧGk*?~jwFy&󽌃kl=<΢wYl^̧v W'&/}?8ټAҕrh~AsЌz9#Ș ^^~u9,j%yaaḔL@̺3~wj=׳˽\_/9 :oOE1 &_g#PO_zg}>u6_Wl-QfK{WWjkhN|Fgi]Ƴl~!C_oaI_EW#"L.1/9L%˚0#uYcw/Q閗Y~t掘B;~%jfS p=tz_u:C9[Փ榸2E6ϘkhV~OTgx+9=:Jrpfofc$kWyҟ9tz? /3cfe$_1̈́iL3U;smws;_|Ec|~N l./W91{?lTope5Jmc^Q*7FC[F󻰑#+\aoRdeΏC~˯i.?VHfo+s>[ jIgxf]c(qDIWnI=ſץ%s^;~c饯=Vr<.=t,ŹYG&)=~\b1z?X( ߔkߏGX3EGf W k57%~1كn~ wHqhǬ#v%'l{G Y~g?tQnֲw-rzgI' v bz븲2UwhpHՋ3E51!S<53\_nJ.$ $`Ǻ6+?{~g'G^gL/+4KfTOe;3H!}?aySuT(j2z5fJ#}{a?x-GG\"sGuuT7G=s~1r.˵?|O];2r7GާtL0$OV׏՘*[+7沠|H%&Ey?ml7͒[l0vXtaEݡї7=~ 2]gJOk V?5? ~,2e??r/Yo>DšRL ]/~@SV+%ieA1l&3ϱ O2,ܠv,4{t_/1%+IOI>WZSlf7@'>%*nHdǤV-_{zh}i9!V8suKK @ҡ >w?kwwF{=ߟ{#j4GE-8[zj;_}p.ZĨ>z+=C+xY _&}A={s=?WE_oKY5z]i,Mu ϘG=˅NB{ok[w:ޅ}Jf;֨cHo\?zl5Qyȟg˳<98}kT;+ꓔ_FHkrߎ/Yʋc'K;nQ\ff1bohk>\mԏsWJ?By_VV=nFy=jNDK5p=cF=ZOߍ}|~F~Q{*C?2-W,G=KT}ў.{Y]?|ek U.{S'pBJ~/ d|1Qg%=WA<Կ!<ϗ}^|O|gϢ//AҨG?_{uY\Wx$?K:_,xn#,dn'ݾ"vq\uN mK*7j<9gg@&_?>j!yy7?}d7߈*\T/?gpp0d@{.HgޡPGoeo?XUs߉v.[Q1CM1w6]~}ky^sg0JҳY7̏gu,β;zF{(=gG /ڨG}3WD;/6~^$'+_#K'|TM|gG4l:{ώ^\ %ڞ/{_bKnD|r/ }[<ֻc\ft,OE}ȦgY]cf(#uWg qB&Ϟ5rdq;\^GSOK_xMK?~&h"f$H?=,4Վsz_q}Vڙ^{>W,W%򝩟">'sʲY܏Nz/🉽Qk̗YzFs_fx8n/t)י=ss,/Flqj~1-uzԈD\U~ ,tIQ}";8&^Z_5Grp/^3X>'Dc}D?FkF⾁t_Cvo ұҫז?yh?R_N,j-`5:QskygZ%Xm- WvMFd}1CѧO΅Q.Oh^?q֨qs_gl( u>|䛯֎=4Ӣϊ]~Iyn>+GW3kagOuka2{ų|~iy?sןz||Nf|W{Biy18Suֿݾ[g7/wg?GUjMޙJq~u`ǯ6@֨;Z'6-Vț8ϣc$ᤋ|.u,.uE6 ۥ{rz>w}v`KaQ> {|fjVbdo#فz_ўv7bѱs ٜ`6Ǵ;*)H챿OV~T{.eoӯL9;}л[6c_vBO,qfϿyπr򨟷\c1(h+h5JΘ=[{ッ^W/M<>̋ϕ{]r?YԼe$ ۢ% >I|L|&nO킸X2J\̰5MdSy7=}UD=?)\k;=*7kzVO|x_,{AMq~ :?bx.rΨ=']m]e/-UQ3uYI.eQՒQl'}of_? BeX/ڴ?3Ow&X9tG²%'grm]3u˦g9_ 5_%,lc|UVWZ&ٛEEy|Fu?~j/G(f9}e7̏0pJT\k(X6ĩM[K[ƿ鐼}ukYY?ާ3 ŘĿc?|^)ǥўS+e։z5me}>WKMoTvY"ߒM?Rz 7>[g};|b ??>gD;1”gamZ|m}y?r哇T?["Vuf蒇G[9wW=%jOX nw6~΋g2cl7/LN3yzpԹsufzβwf~o?T"8~leQ1k}yz f:4_s__̘ ?+.u9 8!c!\WW3xMsZI._\5uS/sZsau>g g h:!frNo<> *\\ l e^|}Qkܺ,8?uFlu Bpv9e'X:)@5%ӟ(t;/ߵgQ݇rfJlt#"zQ1>+_gcfg. wk߀_ܗs|?Fg?Vr!}*^]S dAr+^ |5YpF'I?Ͽ3h/ci#?=e-{ڿ2=%ښ|>3eFyJ/JJş>gc>!9 tў?N"wư>츚a:s}W.`rHWb ѹ:}_u3g-'a`r<cĊt,,BK?uRj.4ڵ?Ȯ1KK)Œ`ZI .X4𹜷mg,cɂ_oE=/sNp|+Zfb^d~Ŀ%>ǿEhw\8>.g~rf.Ϣ[GɽQg+x(z&+~r3q[:l%wvCKWD=C̽7{|cy.WvVy毤S3x-FSE{cEa<7p1e^Sh{\ٕo=f{~ /Eks~$ϒW=[0z=߱{i_-Job{M_Q-'AS_YޭQˑafT{-cVngٱߏ+Z*Q\,9zjxs,}wBu_r)Lh5pOl ~#q _mᄄFܤ+%ғ??|&z='jL_%})9V}J~ɣ˵YnglgZK3c~hFo-f~Vtһ7fy=oo W2~/oߔާvhgrW%37F{qJ>X?'> J_]3Gy޿ܓu>RO?l,>xsVWG8ўJEDo>?7X.gN|^fI:A1X?3PYlr 9/+Wbk&gqzfP=?2ۿb.-*'g$˜0~,R˯1|9?E*V{ɹݳ\C;'wnh~/d?nȯJw>+jgol+yϝfj;{tJ#3/<ܚy?b1~+?C+9Ds<Yxi:_p)u?YAxMWF:+Z,,ߌ\_ɎVyorv˦hWrxe/I:;O!XtYT3jO/{-R: @z5_K?ΏGm6䶖͇#bm_}Mfy^nJ׳`\UvU&'}^љ~ǜ7%uv}KfeWCwYJ{}t2u}}m.y^NIzK3^zl>>l=uIdl">!3#nf!0^}beϘewf<6\0}dx{޸o'tNxY^o7[gJ[ϥ0[{=}!r#2,{ҏ9G,ݏ6!Y8$Sҟ}g埱yhY9.t&eNgwkty̹ {RDZ;6˩/#s~arG{fļvk*T^"!s^/~PLN>d3~֨x>Kox\9U#}IԺy~znT,\0WNe%|}M5#O;[3}ӻ5znտf[z|Z}c3?kWc o6GCϐ޷l{͂ϥ'˦d[~,ߐ_1}Fמ5?[{N1О_>, ^?΋6Ej,>H{il/2ka`݉ig͚g:=G# 0y}MIc_6a+/_9#fx#/#l4Ulzջ;xY,Z;EϘxR ׌f7?q~7yV|,Zu&U3>K8a73u ?({ِ?)Q\~jG3S\ߵ|J{v[gк⤨yЋ=Wbog04Y oX(>?sg! FŔt9}%/,nMuwe_oznUa}~਺{$0 ̕9ƲWgY#\[]󄒍[9H wt~|E~/"~xK`sRຈwG`%*WluFPpy*gz]u.Ok6[}G<_W{ ,,v>_u~g՘鿾܋t{$5GxŏLFf &s"?Ğ{_g#?>8*^.Qx^ 6;Q7G5gM1lַ[IyQz52yMggEK^?YޓUߌkqg#,j/:>*k=7{`^Y֜>]2+z:dWr.K3,^B^?o/F!/2zt1#vh2sG^ogk9׭ncMɭd2,n,IoJg2/~;뤿?_|':ܕG~|{_O%]YY ]CϲSeA犨3%-Q0 ?w?/`}[㊨3ǯx̥,K`cy.dX_)4kKG}͒ep4Wcw]N6 el_gqnf}7YN~o$|Us;e[Tb.*ӟѠy[XY ZGߣaDldz&xE3JwovPTZzG2|Le^U yݏd(0̊m%}f{jy'7CyNԳ;a$/ qg|@aWՙfLN}xI;xeo*BG/s:hs$^|8jp 8?8oQ80 ddoW-~}y7b#Z%ז{ŕy.~/:<1vpnv:==xڪi{l58թ΀VHHBB 2$@BHZ[=((;HL2QQp[^?o={핝{Wb: w+(h^z~_胵f9,Be90}ZCKzu]n՟swCu֙)4meHlV@y%sgqzN3>W,,<_fef+qAi+cibhDqպ4!:.|k‹+R/tߧ{X]63#%>^.B_XK~/[Ǿ"U^oc3W ƌ'ows6i/ehL=<;mE |߿>Vҭ/s<"!ΉVZ/1g'~ԴfԽNH߬ ??k?Si#˝EWu]ׁ: =A !d_oi{I?gu_XiuCl,̊Q_isie/I/gps l4c~5gg^YѦ['xugb)CGyO<vqtV~)[^u1eNg ]g< ya Y3gcE 9k>[~B/kׁ\r6)?ەC+?=^ϙ6#}=,.b} סǬV[3-Y/pFbJ!cì%193/_90dX: ;>^3k*? LGZcv]Yy?wE$xUb~_':Η}=@l +>Co�*~-5,9 ɰ?2B=n9~/{I/֟UU/uEFY:S_31?i]  4C^`  }5IZPWk8'B9"B3?_=eН"kϔL/wV(k]e|ts5uzo\h~:Jf}=m$7V>WtG!?[r9?j?ޡ#X223EW翷/ ` N-O,p׽+ 1VZ w`>x֠s^qxYQwoY˜=6ydu?ZZ"?/ǓF`>"W|=>ӔCYυ7+Ώ܇Z4?սf{Z;~"6ҳKz 5>Գ.X1~dl]պ٤ʿh@.+[ٿ&vZ][9onk_t?<6s3ΰG&+5s>_Ϫj^YJ艹3V{9VI h_}dgsiqmwџ6r=^?O/?k)֟[u-,~qykNgVTgq8;p,_ =sLj5G4/Uksa,أ{cߡ^L>gx8?=e{Yh14igg _VӕX/?/|?g93w!~QVƋ jsvfJk?/0IE`Q}~\R7Y T3k,U3>LZ|[\׋xfxTu< v䕖wCXq&~?5NEϢ5GXr'?sMbZ9[{~ܸO0>O2'[#,W=Y?꯵NZ_݇fΩy[ʿ?wօg^wWQ?g'WZW{wk,l!_ -jynF^kVΟb<5v 1k~ck?9fE:̝cgwAN6?_Uyg9yŔ x|f:=v=6v~uEX$϶naG{Fyy se!;-zJ9]ؗžUuī?G_ vԀ%ϰőb*${kj ~~i˴zj, ĝ8ccػ&"-p6+q-t+V>K:o;N L;i+?s0?+ vHE3?~>Ǟ&]+3tqe(~R L^cor6{??{ Aezn.aOR?82yeu~zSw?lF=bprt߃3zx2٬\gNk.@7L!G]ӽB)} ;Ŀ"\WkC$ ]g5~M_;{-2v}9q7?ۃW2a%Ώ*8 ^?wk|_1c_VYRJ~9lV4R?߱F]`nZ>C Y. N UkB9+]`Wf, r9J)cw?;]Z9'LSQ?Zs_~OY.cGļ9$+3؟,l#-ljeoob|W~-.N)sڟf6__Z LE=_mթ]]P^o)f}"__ϡ[O g-jն$M/E}/ac3@O4- r}}B߮_ MN7>-r;a>גoBᷠ'k~=gY#"L-R+16ΰ~~1o'*J/g8U,h?X:r/g-=@Ns~'z~m՞/ky4gvgGg>~ 4}rR5`f2Awk߸w|~wo6%f&^|J__{jm!Nא0Om3(w_֚*lN#Ge,~.VyGW@⏷~ ~"^c :Քb"P":kk-spSpC+evﵑo_@L|I;|k*\͕*Y?#~? C_ĖEe5}u'[ O WT]Ę8H{ U~VuUB"kCmŽćXWH\u~F{C[T =C!3 J ܋{-;uOQ?,R 4f2\ Bh [Ehᄇ:g_tj\7Y䑨e醽-EA,N-gġOOWQ?EO9Z?;?o?eѯn8S5ZYmRV]߬,~fЋ,˭h>5>?@}`~YQOۭk.|JnqiFu~y ?o%C[֜hځf-| b{e @6~ myNzLXwנ!3~ [_;Q'VM>`/%Vsw6Wc?{YigCw!Ck|V>d6+PSFZ$^yݙB~{ +]Z!ۧY1|Nۣ58p [9q0m/FPW_9[ׯ@;q釷Y^Wrcb>r 3Ҿ@\=g֞{)?ewm> zb3-zH{![??_ko[h:ɰ:.hCkEO : XzWw?g 뺧G{I_0R[3|_KUHXG.9߈V+h|zE }%qg>q үo2js'W" Zs0sg}ῃ|[^g?~}F6>K-ȿ(?ht^O[WzYX6ߠY~ FOL܅:0eK|iG"+[W ~k"ў#/2Urvuϟ՞hiy*gx;C-I^4 6j.0]_→/8Aœ)c+9K,0v7C={rIӟѵ'X»{jYե31(?]韍_ָeџhLwџթ}'jls-1@6_3ԞwIw֤WY/2[m@dN8b^X֛=7R!Ϙ45ƾq8uZ?38:gYaQ׳\Y$NBβsy)~_Iӿ_?A?72g -l釯>Bo:o]^`3ˠ:|VX gCmMuϋX6y`.3kVN|'Y#^L |~Y6בe,smg$+gKp?сI1++cfIߕ-IE>㟬9UdGi\ .SWߙj\O Ɩj?e经 Ǥ+[֋v75Z}~{_qxw_V\/cjTD~VVfq{ko^xv\ -aŚ4I{_W{͜k~Ci Ylgѯ* =ylsټp=?]Ϯ3wGE{XF23Xu3Yh28OVOR]t~cul.Z{|zlJ#z?7]fa}U?PsꞠ_E`+12=k>W9\̟flN#Wꊟ ][/=k +q~bla%DK]WlC;;:ǘ Oj.zqx.GkrY}4Jc[s]G]3zPI5Yzez觍XG>?¬8gg-t`8yѹY7ԯ9 +ˣuot_|oBƹZP-}2u6C瞻7X܅oWuN=F*O3.N^`3߬}3idbSpl|1ܕ~YVsO=Eg,qǬ>X歌ˑ/sgX3Ýzhh1sS}Fxxn9xk~Mp i=>,M,}<˕~X3~g-txbOY<τN,oX<RgC?q,pWYwj#,O8y/Y\7 EMȺƵAnNxn:e̸)+k# {ѳ:ל|^3C_<#{SX,m>NsTվ-t~V-<,/3fꬻK:>#~gh@q̬(Xɍ~?>-?C<;-{ųү{A593b!.LF:_Y0d:ܕ,fUUfZ4m9qy[<3]弿Fks~_YG@S| 6ʹ5XciĈK[ 3^u:oU<Ϭ;b' ;пvkxC X)q2AG2a6u-"cPXm3[5N=6g_r]큥s<2ʹ֔4m|udg6?ß!v2zg@Vnx&lxųCx&|>)qXĞY_-8rs0ⅻ,9Zh9ZIu.{-)AWXMw9xN3|>cB݅>pgp8KZ?$|2'lgUw km~//uuG|hp5wՓ9e?/[[h1ϤCLט zY_fQCoao}.WXdsz곈\)y  WXie-z͌?g\c=rgvyjuX?q2J_%V?臌N  ۜ߈/>d2s[3ȼ:[\A֯OycE9@g+pӭ5r 8s{3fks_ -r?2 n >-v.d}o߯ }'?7ȟ HVu>ZaOrӦ+rSWYU.Uvf; ׯt[8[[t*"5dA< 3,A /7}kH"a{ uSk>ę$:{O{Ø>z~2CuaF>??+kgOYϥfI:e8&:m~O u0ltS_b͖,[gLA'r[]mЦB]??Sg)'k9k߂~{}qu9e}dl3;xm-y;NxygGMkd zx~?^KՖv_}&`~Gןv /[ĝ^aȌO 7Z}ל[_]9+j?0=Vxyer?Eo>> R;9_,v™:u~}N?oIgOء *1F)rQs/Gu_k\ziyj?W1c_  ~݄ 6~q4?gϰ_Ю=R[{y%nA~`siA~m$+#E??vPYu/]=;?qEs6 C!O\WJ揸οìwԯkZg,wXY?d.3me 젖Jkut33߮=x8Sul~UwY~ -vyT~ywO3;/}~ E/Z;_:̾ B uA.d6:/֯#J!s ] KB -Eg rGЯ챷T˕Odwgρ%]WY\}l/)o2CC-0(K?=qrp5>YYo1Ȣ/\'Oк*/~`\ڱ֓k9g{zf?YfBYRpϰsm_P[`0A+*9r7UOYC=ʘETlVb^L7f{_^ ErO?FEX|~O:sX:~+'oN؉?"4?"~iݻuVά5-bIOڗY?/Cpeυ.k]KG=뾡aScmG6Ǣ3iw__\Q~Y+kwfOok([B73gz_ڌ8/{hܥ5uJX!r7F9W/skh=:?յF3wavs;O.= bG] } 3wkC,).%N0S}Bc ;ܕ~̶ n=R, /`ĦQ\\'xܕ.wI_upJ}B_뼻߿SrwN*=`y)!#ORR#fX+f- a7W[6s>$9+桞ًk{YԚq,f)CAg/wH 'u^9tp?ې#ߧ{+9kYQ ? } ]k]Zk^*wO>ls W ;.`7Cޟ1(HolqZ'Cg< ݿm ,bX)nCJsf4ξ.-^&%qJzrY^d~ߏ|&|pKՙz?O= F/CǨ-L!2Iz?W3k<{tck[?t#N7am}_?GcG 8Nj9r2R[wo~>2Gb> v@w=q2<Sw OZiVVt=k}@kuH)B:zE^_|.ėd2y2B].'&d{]:'vq>g"8OLY#~lxXg5mǺv+rĴ́yh1Aw;vKNbl: :A$I2{_o.3@V\O[`>Pkbv؟U~5ZEϭ5{y֞O^Eklf|K+[od+emL|//RwX:brg뚶EJ+X+͌~@"ݰ=g0҃v_gAVenrm2G1#x5Oj*FMV: ԳY7-"tEuxcSսP<~K|/0uNCmP=1=k?c,;q hvZ\,I@bR`\?pE Gs^#V-3?`P>b\bnGN=Vw԰wU̚PKqt]sfa}[?kodsVEW[t7ZAvSAv DaGw(p>de-+>ȹI:s3zV<#fսмF{"C- 5e#Y]( ,qF&+?`QZM3fCh!?Օ-*W0wg> .m3bήX z lkxȵ0.nN@^o/_F+qkou5ү*usOZVV9M`b/-8ZlOTg~ yaw&[kWX< ]gbj]_a~;eKc1\[ʐ#!};e%~ZZ'@ցo{?ú~/2_i5 N]f3<:L; {Üj&%Z_TuVk%/y5柳/b}"ֹ"d1y~?#{3/ZTY]ڝ)/A9qpu^2g/y}iC]\`+/g@j5tcENEnWg`fٯ 8_A&8X17[YW{)wuGKY^YPe5~;י3,7Z||;8~h??rN6.Z G }~E= ڡuܢ^x 76q~Ś"ϸ~oA?J kGX#\ EЪ32!vO-rakj :My_c,wg_}kuӲZ$Ρ? gZ`C~hOUqCߛ;{79, {,|A93:u3|Au`ڢ֬5gcy7Яgh_{pŵB?3f (:/vQ+,rNNΉ׬}P[q#[į7?ÿsj\۶p9v꼿38 j3uwų B?Ϯ<~vXߕ~sZb {!'SAyw_lҗY7י_^!rkK?hӵ^]ѿRFƵ!~~Ns{Il|V>뇙>8uY*fs]r#nxvl|R{C ^+kۥ=G>+u}rY!X9㽻!sZ &VZ<:WgY]:ƇzϟEYe犅8iwqF::gOv]X粿yM?V>UЕ~qF,d?dzud+#dYU-A= u9')*AC]]}]_=b6s0'ۿr_גѯs&):s>;{i|:ѹ#+3Ҍ~XUF. +UpƉ~*oܷ \ Kl33#G >}Ӎ /gpH/k.ᚱƛ,v8u+G)Fck5v7&~0\/q^!1Hr? 2]ޟbq^{/Sc =gqu6=ѵyFkN-X5o@/{[|/36?]L9r  ]reFR} xܨ7Z+7K s~¾|_f'V ;Ğ F;_jcN!V"wuANh_e+w UBj<_o3{-}њv>W_tY16{=BZ~!W_N+LWuBm&07[7esN : y֝S̏,7~= ~.)f-B7 uf;rO47[]Ž޿Z+Օ9Ykc>C~ Z%V6+7{>mzצ,F?glWY}̪vĽ-{YV_.r)6[ ߼ϐЎnB1VgC L/5pWr!OhkuŢ? O?l^NvӉg|}g]<-XٓlQ5|{ؠ?fpuf8l'm?{+q7U(U)[mr|kװ?kU2Ѹ+gr ģīq6)2Uf_~мdlE݁,|:S6g;}wZ.. q}n_+`=#`awK+qN~kIs^du,/nGUW>=־ТVC29~aß='lsON@_3 ~bT^Vb,.՘c/[y HuMsXdC+~cl?;g{ ټ%k j75kz#mkVWYǚ4k;n*ү~ý`O럊_?4ߋlbt?}VʹW_Dz/X ;'=˽+?h?5EYıfy+qe~{JE?SbK랩Y(v_e:C/VѬ#O Ԟ 408 ;'C+:߇ V\A }߂ܴj>=iϐZ`=*s*k14L L@e rl,gę}*Nc @_LVRy_hWYzu5$u\G;)m[yLX98Z}Tsd BmΚ3G;>nw+_le;_eчO`=+ cģb~z+t A߮îsFUy"fEHkVWZ'{ȉ?=fPʀS:2?D^YU,:g,0/Gs6E|ճ@.M[99ظ{[<7QwѽBW8=xg ωߜ+YnAs7|yv  :߶2IS]>f1;ߏ5~/ً~^XLݬ/8:s8YKSɋ;gzj3 e?'ܭl!"C> {ӋC/ b+P4;Xh3k-p{ypV_ Z bL6Wsq{ /0 iw5~)(sJYs :VG3X;994[qu?kҳηY{zZUzlky`,]-.W=W̞Y#렏+9`ΐ{c%s>ʏʉ ucN̕3>k/|O!?bQe烒 ' 7Z0N^c,݁N{?[9pT,ծA5|O9_q_+ƍdы-Si_zY=y\<)6s~UVL\h1g+:sC=k s^|??*fUkP=af)t3[qίp%i}sZ1O:m[ B8GLίUی~9Fr/~f63JJ+]*/՚h}u9g_d^[t\V.Ϳ<^=7k^犗zkKtgh?O~M[ Oj}Ç|k2x-&M?AsIfs?s_w,f8W 49,op]c;Njߍ*7 _8+poPw2\~:9goq|u4tNYX^5I Lccj>dL _cĢc/ICANO+sF?R, c{>b$sIqoh;׿ĞW[Hmr/Ľu//Cv Yx*~ wG[`V+f;}_6~)z8+{eZ>LSLgs#ܙZ _ ,!S˔cn{}+w үD|~ c6tڡǴ?_ r{I{Q`ih֜ ?v=wHgÌ.O.ĠuBON݇b-kY k}5N<>8cL:RuZ/9hLZ y!hL3Ǵ;-{eeVc#.:e#@cػ{bwG8 K߱ {i;i%.~dm?pG{z^:GikI߼ `3񋈟@oZW߳Q}YboeP+KsR7՚u,)YKBW,0a;Aᓠw,l*&d;]WIدDT'w5~_%uA? 7)>meyTү;:eJW_ 4?9_uqڤVswcVb1WBEDtLs^+GX㷐fp]ᷠe1 /56ع_t|kX#d]O:+>ke\A@\.'~`FC/F3rANbNj8e## #L`@ ?{qLg9Zۛ-B_D>k1~X}٪_/֚R}eY(,_^2bi.Q皴/ E$+d 2r7~Op/3>|gMb0x~e>ʘ_+i+q0?ӯ9>W?ZPb6*B?4s45_9f#|_g4+.k_?[wY]n3?0~C:U6iܛUvYWg<ˢ˹ocoﵑC??#ބퟲSQowi F5X|/PV|Ÿ!~@|Sgq&4x|3Cì{ k# b#3T+kYx#⟋, gAQBǁAz'`Yg۰wq^NqEE+G}9c`(s]֚s-PKu18z=ybGZ8K@͓=~FW8îMHXkҕ~]K,t.sXe VWk_sÏ=WWg?|w8~ Z`VЊwVy/bR?䞵'́VY4_eKΐYus }[Х0_ͿƘe{os毳ssFwدNbVR{:קퟪC e"?O\]nXuEB9GlY߽Ϣڕx>3uF-|p_ne?%tZö>=m{^@WL[\F絴+WV5/YOW}"G~+GTw3zOʹg:z~Y~ȍ?oe-  ]ps}?;_ -z?i?\e#}7#|+,/t~_G0߭5"\$jUtiYЉS&kv '?_osXE;V P\~N%Y*Si~][u=m&}ǢgSKǬ^lw+:c#_EXgNB_s tX"kU;@i{cAq }rDb|Nbsk^^ _veZo 8(\j焰 OsVruV׬bpAߺχo]G>Qw^`~]z3T)]δj,zE|L?;m#{{jZKzd@7s`Q_qߴAq?{) ֢?su{Sڿ| '9]>8uf#}By3ЁWҚ Zn'[q-$lI֜sqh!Z7-Ov7󿊙g>P_?/ϚN+ p+j/syw :םCkw|e*9/X9 o bdѷc1sA~ OyexA\t/{z`SqP6,km=CӳΎYlǼZ/C,Ȣ#눰wOZԯ{!KS~_`C|һvM~5Ef:m1,Ͻa_gA5h9VEDC[y: =D\[޲6Opg`8׀{]*gX1J>EήXJ6Q׍uN1I^tHw9Yc3g#s\]f.Άk5{U?g*\~xEMw}ԹϓU9_/awt&CsF{js/ٕ~{zQoxCi29 X#1ƴ15Vc8ߧdvE=kuV>,>ׄ'\5hQ{!VSecV_ҳ#>Zc?Ed :Y>M8uE ^0aKR~_k?[|d2%CFaWTOuNߴ=3zkZ< c5l~Fo#y:[?^4MŢԟLsϬ^ϟ6)և_38-s?u'kAfAsF?k[9K1B^3tkZ]kue֍5 [)uN?+翠YD>l_wi;Hy<^g:=%^b*?C %l6_u~~QW/=: .ݹc~@ J=?rq>qJJl͜ydDw]6Aƺ4_]hw!ӎ|گ,v-t? F4Jb*~Sg5Yϯr+%3pè:Ks \\W^meV㊬o=z~ 34s#mq8{;Åd{ ;xWI~xb[ ^/1=yU,}ESu,b#@g3?WEX/:5.=guLO~\u >:?\-?HJYBw??wgBn8ι܋i+k?J?kW;x]l-QX闹ه?/_{;ݰ16^K||3ϝ)%17nb/G]W9Pg#uP::?9cu~Yc ٳo+3cc'fWka?c\o%~>#վh:w3e}ߓ[>hie/UWFL5!:6v.+g8/MֲA]E&3u2^mί.B13 =o>VO:tWv~ωGMȐ3J\E_?Sgiسf?♄/q(Y93k%+HEYs\d0im֝gC?w~3Z?b.qw?y9?¦2ƠOKǜAзz=ig婏3qY3)smYKdW:9 A{Jү31;Z|?5(TsW[zͅ -z*R/wOC=;:d?v¾<1#JRmRg/7{yEv36tm9]`EEl[uoL{yVbvXk-%B?/s~Y* ?{'A;X\Q7gK6W0i[y.|+?zs͚ fqxQYCҙzq2/`G֕%6qqVqҟկZ44Ym%9Uq-3կz5~b+9s3:YBbUi9/¬8gne^;G?BR[`A?kXz觌`3sO&MVw3 \N}we}]i}?I.ߕ~ĜdV7;{3':ν>av1r}f~ϱ\xx܌t_#Gg^ʐq.N+:?뛏,B;sb=7uJό]>zyk˟>,gu-e:硵=#>h'sf8WcWW3:ٓ>]gׁ]GT9CWz"3U;Ws:kAz:gs~~Y>]gvs(f~S-z+ZjW k6.oYܛپCv x?^2+cQ!0?yzOhn sU:?1}tS0hZ>l1+zʃ~]aT]5lQ/[Ӓ56KE>31Y`_,0ݑk櫝mGľvm{`{[`rd0+qDCkŞڥ94=/q:ιi.?Ye7rO앟Dw,t؛oW빠z lAQ+AikAtڱ=6>?E8ke*{~|wcܸBqڱw{-0u+~^ Ӭucg$ƃV>8 }p4ÿA1ފ2).J7we{[!q oҝ5|v' ,_CaWao{6?wjk :NtCvO!7ZƜ[>Lhw;,pdA ?tCV4 ;Xz_]? Qgq]GL=E\~ ~=xzezN_o|{ =N {9 JO=i2f/tӌvr}}b)V,1j;I #&䇾6Ά:hU;i>:kXcNo+gNY`\~/GZ';^0_P35R`g8xt_o<ռw@k._yy)VI|~F :!O2w.t_YM~>lhӇ@wa2(QrAa?k۪~u8g=mFjlOTRtSciwlO_T̫}-rC-.@Y2F/3~? 3eﮰĽxX=M%?ﷰ9\j\:" zWVEiN?b~臝Vb>k(C\t2 s0+/u~xNga;~"WϚhzXgIv,'p~Ї -b?up8B1W>W9'__x7x#WdgWk bʹOO4վ℃fٗDܠa]?dϝy0W/k-jwX,TyӉ57]Z~0}+/{b߂Z[qAW+?կ&cyȄS`hSu\:_e8YUuϋ1;x:ʽB?#/m{?} t}Yڕ؊ߠ ?R̋-z0W;}.d؇%kJ=kou~_t3f+;+gF\lߌ~ݳPVMV֟+}_>AZWVAn|Puf 5+G=i\sz:s?f<_n; +cl-hj,ߋAq9~濸'vV  zÝ~YRwϰ=nQ/x-zF۠+[YW`G? aC=s㳛3ؙGߨEׅa5A;X93t+lgMϮq>1A'k[>yJ>bߣ-KV"Ov[W1 [b+m9Sm,x~C_ZWLm_Y>2\h?"CB[[2p29ip~cs:Am|[;vq5|rW9'?jN{]l3 9Qאe{Kzןr ^=s - ̽Oz4W_k)yS?y|sM,bI-9'}F֠O2F4Q f{ݣYgDY]:XT5NН&\% &svskzm֕~)O=CԕlN3?,L[8Wfm{xܪ9_73ULk5j> >X4?UBΥk_-Y.o&MKU bwCs2=3䖘|ʚϡ6h 4ZC~үq|I:ڧ#/gүs&Z3g5if~Yq??ߺ97]gg7Zi3Y 9kĺcѬ45>[9~`Ws^.SNO~?U9ZW,NZe'伌zуMVL ?>El{쳜ae.@W?|rIӟ)1ˮcSk?kʤnY7^sV;X! {ҿbƸ @AsF~4+?ꋹSY&MgKa쌟֟Έ.u?:_\P +:2i̭kY eZg!YwL܋e ~t]B'Mb[, uWz ,~JVRl#_t xiO-xg&7X1R Zԙ:~)]54[=WևJB36s7j;/>XY7]3Y>AkK-f'sy%lD?O=/օ6Z`zvV;묌%&My*5t6sY^gzszξ? V+LL>b3)Nirtbo FXx&% 1w蘧Ц d?}B1wdvNrM?BS*鎒氵^7_uf;s?B=}+j-ˏ=HWB=N w!-VJu_mįl7 $W!bG<e)?gg}:"Nb9O9M{a`E}B$;a9tuvsVusnlw K dxvzPqoOUOsK;g]֙Y{2'Yנ~ =x~t|ם_ tNUX }h3g3H,<cMVօZ{jws9}3w?c򮵄ڿVYBlCDK! b [k"N ހHǟz=:%Y^w1Wc⡨rvfbaѮxp);gg6_j]4}a)GUg{WZmZO=I9to|]vzf{? JkiOrsQmrq<~F;_kO??UgG4ѽwZxg M,pw;lY6oYߢ9,~ָBgQKMޱ>ngۏ2Nfͺn?Ba;tߏsVU2k쪸4]./X4l @s/Rܑz ?dֵTOJsG[fYE|{x<s/~zѠ;uN^Le)~?FrX \-wh/s&Y g>3A d%+hH(Ple`aD$<B>$Fa`t{z{7{zsY{û) ‰R]H{d=??J}ϳ}?/9DA<$sT:7)a_!;% #[W_wbX3ٹO5|O!~lU^<~s/E{^GaoJKFW_Ibl_=Lп~Ҟk7{{cTXW}x4\wl/V1jKd1ێ%뻷>?VUN_xg`/ssaۙF{ίϢ+&%ZL5]or4b; Y}&W| й%ѯ{tx=ư/8^' bz:8់퟿8~cs+ٜ+bDbcͿͯۛ_tW 5h9?3lqM/&.g^CX``vElhϮ>]yjO++6S+l&:+h/~ \;NYr걹zg;γc vK5T{}ٖh8Wo/ck4̽?-e _Ka#3:2OVͯf?9Whs>Sz|~46B69u)!6V1>SUhj+;^މ(G~$F=C1FޟzѼ7In*wdݓCcp-yҤD`|0 ?._m*U_a-93g%u~xk1EߦfWc|U}wPϵyqIwץߪSRubꇪkdv(V:#ZJ[̻o'ZJWCo}s@jU?<ߩo!ic3~_5\+|{ )94u>~F_>,w\j:S!w,h_K%Z;+*,~yCyׯ}JfXթ*;/o7fWft7TL7Y4X$?hJ/<ǶŊ23[th}_ћv~Tk9NbO<->>nώv%ў5iB7sl]mI|ϛ_}wYl_t?+90ϊ57sKޣ}"缞cY\w>X]WWz}96y=t,mɮ(P,Dc56ޔWм5ϏЯh'pGg?HWǪls*NgEc*U٩5"G_\jЊ3R@hxe՛3nddDD;y3:|ףo˽?5=jk͢?o6;/=Qz)/?;޿P/ߝNw a" +ks߹yoU2 #[4=F1,J߫:@?xy^֚S9;'E=~ /;+;.ؤC_\- @zzc3~~1>Xj'53_spq9 $ xF_: @b5Fl|p93r ao<0ǿNo[ͱ}/_>ױBˌ{J?ts7tY+s_Xݭ5Mc4a &zrt5_io+}+YckX+rAGǦGϊἐq4/ɳj~}L|9;kM?>W:{h']|p TϽU Q?W/s.~U?W}\1B_>ee_kLgP|-8 }:Cs%Uns'x}?UwQ\cWmkog3m}b8+Zך_幢hv>13(W{z h|.=rab!9+T_]DS՝**D{֊J_Om*:>q}e;Ai_Nb7srxezZSgG>?4܏j*Ka;3YS%ui+]Ժ˧o9= M TU?w[a#!ꭞOW1V >'NV7➿V=O z׆JOx>g>ϩ_y,R~VC=~_TBe3g ߋf]>b5Z D}}_ e)]DX6|FH'D+{ώϰ=̟h_YѰ_cϮwSߗQu0*ϭg1??,ÃfmGF{ΈfE*ÜKĞy]x*Po}M`үMX1e(/,R0}ju8ht>YR=?yt4~DҬp)JMtK]~3e4c=s׳?',JG.h; ,}ŌxvygWs}K>|7%׸5&{cŜ+Dho?;0L/B^/ b>M=Sdh;FY>p@:~v"wYjG.2/i=pjs:?Ww^?/hwi:>\7}8.¦NsGF'Ɍ5\a={hp?ڶb>H~ Sj~ 9Cv9-Z3_`KIk`jt{A?eG\|Oh\0> _iqaaG+tz~Z]ug1_rOd'C'/ؖ|Nj=͉yK=5s? ?1#?qMԯY]4N5I {xYR&l ~Xv~6wH_|߮'{Ny0|՞/J;ͮ9y. /~_SN%8"s4^m~U~^g;h&h-l(l=(^sߒ@?:oj*wh>X5t؍~* ^a=|xGϾ hVniH++y|;h /Τ[߉qvt;˭(z{͎K`wdۯ]F͆17kY~4VOq)L gO}Lqm,~ W{1ɿ ?c=үLyڴkgLT~MI`# ZdII۶Xߎbo>t~1Q#'xKutbgOd❯}^K:ԟ<U幕>s3>=wϣ}m(?3u|IlhsbOzjxs"?"C拑|"9֨>NշkSh^Whs.sFUB'TRj>jK痁%;^USkd3yW-bUNUq_t籽1;PF8u?3#,=:K|LmvIBЯ;sQO^ ځw߬yzLJٝ(#,Zȗ+c}a92^km`+Ċ$oYT}NkV~/H:b7)?KCug?/?W;u.k^\)uLhc0C˿Wƅ~W켄A@5\y϶WrXZ?޹>R^pU;{>[A^T7[<{b~.kQ*7:>So{iL;ώseÿBq9/<0:c{6QS=qޡYӠr ;JrlmrPW/\w>$!sffߝ+1\h砯<̃Vq,񫸺:Ϣ<~8GNU|/ךS?h62ޓ@V{?3B~}Ͻ~h,w,N57Ċz= }x4uo{:^Hi8AO䝸k/p?~hSK}nm/O-^ ~ǜ.cq=c.Zgy\,|BwhN/w|_1޿"g Ur^K_o{/{ͨ.WCAhsƒc~|fV{#:=; [wX&#,3z>]|@.~:s.? X~IXUoWwJsKE!̏jU{E kwi^kO_ϏӴ9̌?>sF.oYg s[뚖c_|bݻE]צ7UzWy^;W83o& T~±,FkA KxEbt~T~vyW>kqKJ+?^_ },Y=G_z{y[T Ý t!+u Ԛ{ATynUgQƾ_ջn}"lPa*>7]YgGC6__4,nմΊ!.z_11iQ g_կ\O]yl^z9zwKyqy޼偱zFzf7s!2^,5c{˪*Ε^92s[~H1"CɿW m67ϡ_O6S֟Y? ap(XNϿ"ϽN8y9˼VW#\A5Ep΍aWL+T3c]=Hjgc ״?<կg~cWWYqu?_O2_ͩpךSϋw1=RM3V>Lw <;FSc8"J$}ϷߩsV=j~.~/N=d?.{]NUؙ\~I1e}Q rUR1V8SQU#Os_1Zܧ=o?>W<'_cX nYsUY1f˕FUgR>ņhP9qv<XkW8v-*yveR"^T;p5HV>!P|_Wcsy#?{=O34UlZ*^;XTU~lrQJj5/b~;S>WYb|oy_W.-帾?{_?WW '?N_g7W_nE/՞_U= S*uH7cgޏ?$?#3/~=^TΩ~~xbG|߿uU8WcNUUy0{  ҏ nxhϷq/np?+5ͯoʳ };xў] v_ўm]䙜S =w ў/`4|˶Xpz<7p=_sDi?Bd{_g<9_~O/<Æ `Y4g8eLJ|=Gk;k&3[}Y4z-rX' @mcE^a#K1>=1~ϧ!#ï}N燾=Ғ830Cj<`̢jukf$z痽)A?bEgq <C1_Y G3τ/vIe D{>_%m/. ?{Cl_?@/@5C~/nh #N:/M~(IeSbz>CwUo&y +|'vtkF^Ež@1/3|*v-v[.gb8C8)1Vow?\ܝ}=Ϣ9Ƭ4S} Cc}yo112ޢK`Cz3oH|ye+n>3Z$V ;38hZ-d]cPŞws|Y5/e+GcC'2!,eS>1ǶyWlޑ<ƮO#ӿchnۃv~ϳTg>2q;?{gҼ='ɾ ?shfr?R_I][o8Z]ؗVCAȉ?_:~U|xyěMn9/><6SmdW1i'| %!WM-yL^sOʇ|^u |Mo=䘞n*ޮ'@4qA4|D=6U4%:? ctyO/SP<bg[~bdCyz/\d;CoRGO<8sv~x3^Nf/&KfTG<eM_yvYj3XSx1p\j%^Y*> Y'vlx^u+ d 5Vbg>C| :O:Z*L4 k)c\-JόVN|cybQ%?#GSW;'o\/ {yj?,&rY7̅c?g3 k^+EN8&y.c,>q;~Ij#"~Yώ^Oxg;kʁ|W? ͉C's^?\s?9\ QVU???xfQ?Yk~;fPG=h*5|sb8?{]fGb1~!~UTU9Yp~)^"w 7˛zXLX'&wrE8~cxtasOyz&;{l45<1Z;)S׬ϹѰ^h3kM{g}Μj>ל ys̻$w?ׯzߡϷ/ϳh8Lg^τ5? ?SF|.B*jأE?O_1=:<?VՙZzoGWe?ϊf6u*] ĿJ]f4>FzOa^ qݹ˪u_|~aCk)ɒvJ?ů-Gí8;֋L E_B1 QׯyX\s*'5Uq*UwgS{|gf3Sa~cjn>08U89f7k|wعǛ|fϞzZ8F,c+H> ?t3_.Wc{Va,~ͯ=Ep0ߓЭ ^ͳS;ȾUᷓ9w|a=$}w\rgιCx_~?Ϛ ϕ=k.BE]a6؏;= 3sri3=xw;Pc5WYVgVb+|쏐!k֖X_da窼?|Nҿ/nn8tB?ҤZ⢣W$ªt wETK֔+]iWSFWE_Wul~1ϥ󫩿4~kb9p6>C-rJ5}.{~,Kئ|@wW|Tg^dFu{W(݅~8+|ՎHzhv _wFEߘ<w3eoT2J?%;?+|s-p~<\@qxpE~msoṧ! Ε_}> 𹺚MD<2r|~Y.X):}u~.8⺽n?WFz~H  %5Tq?7e*]A>b;t㻐s o6yga_mX1(ψ>t8یQoc*?HNqd}Bw?1 N5%[# [JL'_+wEÔ%>(937^w핯~OΦ=?xcayl/vM \~$SЬZ-6uI[wA>9/>\+.L˥^qF>|@;agFߏ*!eBqݎWOd,A >h4>zW5'tVzIݹ}~ߐ̨+L収LOYE_, @5t{ze+ 1U[,~+{D=էv4K?Iry kSbLfU 75&(!Nh _ / 3Aմ]e~\]5Ε1rGIc}Uy^jV~;`;ϫzߊ?+G /r\| oy2oi*\)*<픎}&z9Ƀ_:=y dKY‚V&c[̛a0⃛bf/L>ggK+y24_ыYg yn R1ڇ51B^ԏT_;oszfRյzVj~?ԝ}T#ճ|.Wׄ%/ږhX7WFü&yqr/pfE}gYsXSa4~ЄP=Ϟ!S>T揢{o;WόDÐr-bc&/!3T+^+_Fpץ-qKm~~cZiq5 Btmho&&ϽgG/tX5o m`/+עYqݹ<;?7omRR/(Tsydؾ yv~z@TYTGEsUcz翊øt*SӾ>4zKurhJ>q?԰o }>n;{9\y:n~@甹;2cfaOEt}d46Vy݌c=[9#[c,9."Klwyk{\mf=vЩ{bmϪ p-u`%%פȘ(>/іs>_EzC^'t]աi=i*c]0~[XhQQ}w;3+Z[}+ϏIֱmxڟVzZ}m+;NצxC׉e Y/FI.#O{3yOs=_M q%/-ϯ/\\}:r^yۈW5sxп^Kͷ|DWcA5yH F3GS&iSn~=$Fv;O?M__Qm\E3Xr~K]UnyHŪ LVsU祈;=Z@3*>S|Ǧյe/芼_oKʗI~;Q%2tA}*~v^XTH5h~yΛ>lے/6H#:Y8~Z@JjE>ye{-RK=,?Z 17V?vf7DO,}[yyψn5SO O,5Vl!<Zӿ1̤+-:Uך}~Nb[b9~]5Qϛ#{yfg~_q͎/5U^wYwsb4V{|lj\Wv`SMi8k 1}h>"韭e{EߊG5Gt^lo<.;7CkWv`ΆJ,͛oցi-=Q k~}~I=<9kYWǷRS#/DOT'M4?V^M:$8u39_wǕ{G7յԟ5ΞsqQ|jV ~]kW?V{U.y_鰝HjP85'j93ϱy*gO6S*~+t!ўĿ {Lg3rq9K?k1sg1ܞT}>_[TV_K%VFSzdhFOך1?ϫ_9~5YyO'\s^dJoNuKEu?',>"g*Mskᇉ7GyN?P8gGß\߫yǿ#_DR:~Qz1ǷRwKKJ1%VzLYw;bלz9{VocgR']{qt~<^ #{Cc^WWzSuc8;\#B7ns/W#(\]OCXG_7j[<>$=֖j+GxgךU3kYL;'%n0/s?uC幎s5ױWWc׵#ȵ+;;W~힟=nXH͹渎~U|A;2‹gVڔKgb˹{Y}}j_qWN*3_?4*j@{-|'n_y1c~/X?|n)y32;bnxv,3RC^ĊA]qau]mA{'B&= r>1::uYsO /h8GS_'?LG.kOWcb9Ou{Y't]ɏ#+ +vMsK}L޾(&~ i|g=dG<62z?b}~0||m9~c?[oH'C#C [Ďds>W1sXIVgSR,{blOြj gH,{X4@ޕ?sb//|oC7k{'p4S>Hw¶oIY+;{ۧBv؃RM|h(هwe*fu|پRjׄ~-~tO|/)|J_!F}oh_fo!N,SXŸa(`,B$<óىݹlAl-+A=x_>bKez"+_&w'>9͚˿/zhx?Yt9~cޔ?T_bc^m]~N4]WE5:P M\ mBa]_e^s< ᛼5Z%b^U[yo4+=a;^レ_1dʕ|QCKI E4!/h5Ǧ*7!/sd#)5 vSgo,2)YoSgC~fZ-&n!nm1g>'9փb>n?y'~Ȏb/f߱eduy[vI,{XjYcu58.]bef7fG33?sh~5!oz )K }4^ PtCqWOF0u*}mͱUEI?[s_9G[n't=nⳈ-r^F?C֬~;_ Tk6둿RxJ^r/sK4l]3y]Tr^7tQyhtM1TcAyCj~{=96o(>DїwƊN|w9u'ծ9y䣢|um'u~7 ݛ!<~|ndO16u,F_xcӓc|֜ TW}Jqh/'W3cP^TC'6yM|)]9\kI+: ?Rm}hjͤ-v-|cb[7}f飋t\\iu>^?%VNޫ!&bid 8'yR1EW}M/{nsYs?d4X幜}F{fKŚWb'=ou||h8<ӣdž)D WEa]%%۽g wOsog 3Z~ܪOF~Fg=~Lܷb_όĿqX}a>C~vϡ^qitx,fT3ó?:K܂1φ#Oɟq|"lYSbݢW{Iv+;s@ʯe?7Ʀh\k;~W w6q"ҿ+>xY>+55:,¹>Rs}2:ɗ{X~|{>1z*=>-EޫENDόh _]NGxnӣ+{g祉7wgâͭ7Y}mĵu_twNߋ(99 IK ,c1;>k=1٧Zïֆtu TU^e'z̬~Z15&}gÿ^2+[ԌS`89"_ jÜwc+\/_;X:섟{˱/.Ju ǥG5WKd=~"s_FԜɁJM):_5yQ켼Xq?vN7O*~h:5[p]EMvug >'=67ϋO\LU=^?W{_i:㾎՟{?+_ǰF}K5/~g1^}r何^5]`hG2sVR]k&&TofI #{G_. Jq&TL8=s}*ks/Wj~/_9s\>l?o¯S{R>WFkߧ[5ǹ!>;GE/\s?96ס5+һyu1]gVsͮ^ך=[kWWfLԿ\Tbn#[ ?B"?9E_Y;9_k{x.~vż?c?}Ͼ;gso?5 nKϿ^v~}Y=Edg=/6//=#f˟m#gQXlUu~\1ąQUs?WWwEA~%r.յ4(?+"jz%y`_xi곣:.\g}{hwN[+Rݹթk_w7xL4}}1ToazG1{gkn>Y~u7ڜ f".JڅḔ½eGO{07~h ŸG5߬VGNgh!k>psޔ4pqz5ށג?WK1r~A>վ?p]|v-~7N. Cy܂Ǝ˼j_8rsD xI\LE5+F  |Gְ*\41+a-yߟeo..Ѱхp9~c=_dK<#;ZX _cNn~_~> 2cX_KC_wtW:5sba|2@xE1ĩ?׭Sg?a̟B_OξT,{yX4uX׏fCm)^Я$Ni/78Fl~*1(u#c8sc'%F'ChG(:/4*_qb{DA>t' YK9 ӿ̀(v6-Gÿ|Kx}}dD>]%^z"?+=vu}Es(dY^ z<\}pc_sP.C=J3d ;/xW}BOXP+euǠ^?9-CM#ua4{G> r[5tc*< Nbljfc|&m$+Ag]T_{|c1eq<ү0B4 >?I&*s g+ jcxwQߍT](׮&<ZkKޘ?#_q^]}/8~Ѹxf wo}^ )V tVcث? b23.;~8䶎9#[/-A1ɍ*E.ȃ_x^3'zO.x_w` \ռGg)JyS{m:$M kԀ{wx!#___Vֺ^T̒"Ob[WcurdG4_Mc_1>/ Q$n\*66;{:(F]Ksϯ!b}ǶJV]1w۬a)缎+5(+RXZ{yJRJ?Ih] b+tŗ![C—BƶJl=!fFU7;O>/Nd9"v#??->OL\z*NEѵI(yi/9-zs)OWؘYǧJw‰U<7hiy YYQ{mo֛$ֳIqjY:L " t=]}N=1kcqo{ߝ+;='fל׫+<,%5tkњG@ޞ蚼G]-C ?mjW*1Պ>!uZ?gBX;|:K]46IOh: a=uZB0\]zS41b(:9^-F2)c|U(!+-+4']U'YoU-sB k~T 4 k8.>{{msڦ흿;:_WugY>hvX |Lq)(_9sIM%G!+v||0 %> ! 5ftZ_wgK9BGc\]}$}aե +QhxWl?>k^J'tg>;O`gbK}7ݣ͠W{O^Y]ZyEW{>/QZ3?WU__;OcbkzXʹb~=cw%]Ԩh"w':s[e} ~YO?=f3oG- >Vn*sWs+[Za;TBg\/tt߻:1w*wgwgQgPyGH6ܶ-?+#{Y4?IjȌ%4E>uQX? |~~*+ ;|1>rtl"vI>{<3>Y5,4]ϼ|3++Ϣz_=y]U`݋hk;Yhwca[qɯqp<63g57gڿb'g;Ecs"W(LJt}YEXlΣ9E1ܛc؃QM\-Z G?6QYR;%VG BǓզ#?NI+}c:}Xg+^j'䒊ϊdU@\wUt\!)(Y7UX{O\QuI6<#>ڤ)/(~ۅ;JY{wާK=>爼^hl%eg>S*թ>gމKebNTӊGQ#|f~F_{yhy>憎6]`x[\vG6/eS?;2\ .B }6SyONr}s_ .9E}[uZ6D7|rw~V\y[l(ZZ)Eΰ39'^Pon"G׼.TIGIs^ 5'FUZ;gPz' \r2&¿g+N3tױtgliu oM񿾛= hUSw'=gDnTzz#z\}{y; J)߫i#T>ϱhN{-Y{R8빹oQ-v>OfgB~vs6eI/48ZUvàzQLoJޔ曾-]2fP}]~T(v^^#ƤۤR_m?ϮA_W~w X ٕ.Gx9##wٝOѝ+>53dg}=_y/IӢ_}3Ƚx}vI `+ff <).ݵx㽒nhx@~$kư4仾zD~;/ȟ5Am'`[WMy]+nv\W=`[GstCՈ)T"Z#1\fXեIJ7*~²8(S*/QN#?3&4tv?~".V_Ubk}tHD@w_[Y<ϱYjpb?;WW^h9:$\qɶfkO&Sdg/Y(^|>ӾK?w|Ay1]}wա? 5:WWx8h_s/\_d~&Dޝgr?ub4WY+UラsVL"V{=^?QvRccNL{}qvK#Nm/WWėG^S;ೝR,~s]^51I?f_/o~2_REo*+6{s>|^#{s/-s嗫xw!fXzzcx#h uzi~/{h;wLyۗ{py嵶Y^r4t}ޗҶh5 X?ġS=w<'(D=ԼI+y퇒Ns]݅͡?2^tYzcD@c<Ϯ>Q5=K=sU]X~Vi0m=_usͤgߨwO}.Kp]_}WqO'=:13d_BO|{ ~~zvgxfs౐FOL7pFlއm{sޏ{X Soʶ{9=,՟gh;|J%oᜧlkgۣ-Z]K+;qZ} ŕ˱sxwnʆz_WX\'ql&fMJQ _bب\=;W.~^l-T ?\F:16/9_hrڦOťWgՌ:k1Kl1qLދ":IhBO"׿`[}.u.8SuYI{+\8'4ӊ-g_G{v cqݮ/au?otB'X1M~65-VV 0K:h[km+mNAv~J~ޜz{kMTkO.z9-zL_v1w\k{} {|hD7*+>׌'ўw'tg!\u@q4?>3H/}<1V?0C rBb|8mAOÈa?0ܛlK*]k&u7]3bg K_I<^vN}?kfDwfG{y|^ 2Z^9iQgdY pn/>>ɋ_V'þ?G,~t _JWўg!^3c(q5:*<+Jۑ _y*ydj}yCWz:m.3sVgVk}_F-|Z2sF?9<;"wU_P]ݽ`kU||mZgjRwS/]7gկȝTWO\e?+ IB~'EkjSS,'5m5G5RNE}hU!~"=iyx')?~O\eOβ%a1z,gD/"~/Ɇn YTkϥfn$|cѧ൦JԯڅDO>E?XkYߊamGY}΢?q1sH%} %6 'x׉|~ e;}"]uR5?Yۻ&J??r֚.yB~nXCtU߿o wVwta΢şw\60:1?Y_O|js^1ĂP찈TgID܀%~Fw!5W{R 3;,/Yl'`}g<}ҙ:5mZv#;pJ??2ZhuOC-)koawzv|a΅{> ޖBNr|:Q1Ad]vƙ><;y`q-,;>U'G{N}gżvyv-;;.p%ͽea+?"/ Uxg]%;[{C;,h:'*>Y1?Wx;c~h`fO8s^/^!"ƞy 1R*N'\M߃n+^a%WSggKmf,_v}5]VzPױWz8'|Ou+NTZC7EPxw}F3/żc,T aCGwtlC+ V*O?+u_V^8:>{k w h@>i/7V{lU}Qy|1ĂF .KRÄOII?1梱[bNz8QK0y~V\uI;)f`_^j^wCY>8^3ڳYYa/|gOkI;ǯC?4q#=w7|l'<_d>A vr+|hdWwbP݁1u+MarsևϏ+<Nv|`/?{1|NREyTV~9{Yޓݽ0pL}_>|SW!gG{7ЋL+7#NC&Eô/{^<ФAr%omg8<~<IV -<TWŞLegѯv>W d B;CpM@Oe89_؟n=} { }z|qh<ޮ4*\ɕ;>vvWxT{X :|)vF w㲼GC{gu5sb sp^Y1_hua|/r )$L4y{懡{/;W?7yz~WQW c;&9<Ư*&ӡ[ VS_ns9[e}LueE!~, HZyx g<{,]z>1|.؜FUOվRw?ŵ`wp`4K)|G\jWԃ4k?'7U{~>"Z-O>XʪmV#2s] 忊߄}u yGo&䋯kĒ'g:V_?,ڮN{/&Pq4 P-?c3 !H>?ƭpY9%.bS<;V*GE-v:.zq_1=7ƪ?@n!":m{KOlc,욞k]uExm\OKրOҐ~-ώL8ϋ~'蹠?ykwZj%>>=?>+Z.oVCW׭*q:ϙT)wǢw{\jU>!3ԫ^Z󢧪i#=֋ GwtbVbf1̿yo碻bRF :廠_M8cYZ3YD/&ixw҆NnYm,仞A8^{˱b?G\ӛcsZtT}O~:W>UNݹUf UOgG-&EG&W`[󳭱#_H1F1++aO̼K7Co!j)~a*7FsrhFu63~oU]~|+Ϲ3lo͡^;k9Y>;}&9|*}tv?<[U>[Õ?yzww )pz:܍xu#ssƕla]bWYKc3ٕ~.ȟ +b"hAxM܀yKҍB'UkGy%:g?\׬.f*.V,2Z4|ci^sYucX?QEW_S^CWs>?1go{E px|Gaם {.K11'oO^F|~cwl vU/@]baύ!Z_Or~0֚_`g_kz|wP}^l/ ]ך>rH]bX,Tk&qkb|4UU}@?΢)0z-qG7eP3Wsys5g:!Z?՚mE>?=y/>G;\צh}NjO\%VrqtK yƆ_HgpkG۹ZkY*5tW峾_''jp39ugwY\g="ihgeIIvUh5fjkY;\rʣ+IRdWJM1n=ΤYtz_G{^cO^cs 7,0*gC~uQga.ϵ "_ =E? <ˋ_UWw>;}o}|'ӏs󽣞סcviu'[~z+Rٞ~NI *1'OFO8[{~:Y#_׍{vգܟ/ Js/~βgp~ohEfY|eI3OKZىWGG5\Ԛ_?̽Y\G?MzIflIdrD "1Oev1>'I ,XUiGYY#<|Xܣ9ןgtYϯ\;ʗA_V,^*N21L,h߈CK^JųJ acdmgMXe_?p+j>} ן}U|b:Sܷ=ns.eis>ϰzf0zJ~g%5uIrCvsYWo-nn8Z,W_p3޷1w~,kF?%_=~[i^tv[1~&n?EWΩx#Zw(hYs%?ugi|??+fnx\l|FYZ~[+>d_q-.aƟYLL?;?q.rIr[hQΜ$wֿ:|6y_1/W[aObٗN5fG.naF'/Afy}>fZXq~[;ɚ\_/ynO2N~?:E8ؚ]@}zO+#ek݈7CaWֵ>wGMG>$7Zb;Dj]oƈSi~wW5e/!kfsnk=>A~#,q%6SqeEge=Nx7mlі->%zϩzoq~{+>z{]\ktWތ9B1ۡsIt[v9{s/?Gfhn-IVmBvκ$93:A~̒Cl3\__3_ْ&\4ٖ賔u\6͐qȎU*{;gɚbKWC=fZ~yYbnN\~(͢iӏvk9OC8L<ÞhkK"qWy΢ Ogi2Y^g~x1ߣ^_V\e{UšϣQ:fέzdC\&^&t]N}[ Оx/i?ҧʋb^/cQYן=S鿏S-3W݇qΕ0_WEۮ>Oc eZ~bVLj緽L'iX;Y!ǘSX:;oȟZ~UG~jSΠ=c_+}'qcߨ3^ۻ뺶~gu)VerϬ湖=#fKjw]؞zK{f?}fu70WTrgՅtNUSC 2ؗ:C~#4ˤû-fO7G:^>D*c ܌WH\Yϭ攒XIofgO6?As zl #jC^Re2o=KkkvMT= >Xy?ool-sDۉE=^B˗y{X~Rqfh_Ř_l-?ȟa=B\c M?y}#8ݛu׹h?egZ@^.4:Ơ:WW *\pv1ƤO#σfߣT3gy' (N>a{KT۞E˳YWj^njsu'֊g}tl=;xNH39;bfkX?ZՅb~kwceWsʯ'hwl-?)}Y ֜%evkߍοEWg?,AN &5bRQgP'o5gRd:{7?g`c]G~jyj`[/Y؏&l̊+n0hguF*JZ[kca?Ś#YKh;U?Bŗx37Ŝm#Il0b3gn^DQ~<\AM=g8>:._,V~?: (#<7Yk-_GOGx4zިS:e?e||`suϏbN>/kUO>/bViV}9'b_c-9iKٳSߑ`mtzﻜ?MV8KL]ytJ\޽,;Ωg4Э?$3>Ϡ@ϧ>wrW8H̚_Y1N:uw#?Ovޏ>cFr9s(BbW^FbUϫ_YO_yoUY믙[.!.T٫'gD(?s\s3'm%ho=Oi_J xf9G=bl hϬ{:ދ?L_qrfϣ֜1ƨ>H>`sd?MY,#yN]Y{øj ÒC 哥W_\gakfW}jiw#wl-'9Oʾl^w͜ϾK[o;e>ƫ!59&e}"xgO,:\O6u4ߏ?ݱ^k1e}&7^d~>5%}hځ_kȹ}yӘ˻E{"(~r/g͟?j,>gC~m~9qh9O B1u nxL=!9\>ŔM~μx[O$ƙxk:/ca)?qُq&–'~EϜAK-!.yzcma.əW'sKbA[Oßb ekߣ%`&V8r3o:yxs|w'c`ky5r~2*K۶f:Fݿ͕:/X,a$ٶ6>5e}WbgڲNw>9==uݦsN{u/ɇl +睥?>?D6:)nP΀|k3_q|Wx]s:YZ~>_A}⪒5?:l5OGqώP]`F̬s]KT{6=د{],c5ُcfYA$fa)`tpFS\:#$䟁?d,g~cL6.>̳i ;Ck^z$FpM3Ncn}ؘ=G\5##> r{)?wF;amsسdo{{օg=Nc \]{ܫy3O\OLm&bbhCT }=yLy5xdD_g;T/a'm-?kē!sֈX+y+#l_YtSu}s~ P;3 rs!ܰ,G~ߐqVGչX˘"YTE~,yY̬_T_VYyo[g]8yiٿL^c.SMl_/\CTsz/ Ӭ'\Ӭ/\w\`um>q #_EwIeW^sށk?gk>X%6uOv}~bᅴ?3]"\bK:N3>ޣOr]eVݑzBel-g2YyP4뿙TsĿ|=seϫ{y/gq.zwf{?C^LW31ci'Yf< ê v1 #Lg zXQsͻkN)\,ϚH܆1 .oc]R&˨{y ֺG~g]:Wԙa%7kA"eo-zo=a83T yPĚK3Ca͜ɿxˊgySu_*kosܗ緭\лIwwzn-nެQf {/9'Y,ž5?\>Z~{%}0(GX߯5߮57::?~?]MOy,݇˻`ծ{7FI".3s^Y9ϭ=z]gy^_Y9S?c1o㰮7dyΠ@=ׯ4C漛U{{1ɪp^f̘ ye͚<dcqt2OGw3rfIt %U?{zr`c}NF淽#_s~˯a|LwC7cS8^c?#)&Z~]Py`5:gm-?9{7 *,qC'<=}Yd:*~\a=&m-6yM583>ሳ =O[ח1#Li|r$f/M޻c,tS֟iǑs!u7:GI?Bl-5?qy}?/kꞌ'׽¾8to-}:d,'.ιz3ױ1s=q}q,y)uňl-?c f?ؓ%?an6\,ͩ90z=PhK_l.'Q#6C2dɜe~`O{/|.({$z={k3B?Lkq 4,Oq3>Ψlו|g&Iz]X=l䟜D_qrZfM̮?#4>]מ)Ν,?(tFG4w}m#A<,os3?TqD1rۄQGZ3|o֔w*ǽnqsc,Y{y+v#2FwOl-~Vs _YDx]@:͙w^޷L?P^3alIl0RW]3'3$G0K>kWqfo9'XOeYCc?zK6v|?OH;c3ǟٿ\SD"b>9|.t3V>_̪[^mFoe؃1 K¯NAn$mN١{~ /\H׎f3o2X"˗g- |*,8v 4;kK8aޫF Dyb=ɦ/ϣW's KsBb'ތ_?ܐx9{=/|mW:3'</1TMyٿ7.} 1s(5{zY緽8ʮf|D->K,qFѿF/YQosf؟Niys G23~ gT9V<>%jal-?iyϜ0!)sFfϔЦXk*E/uu%8?e5 ;O1|OGߦ+~ߓL;/9ۉ c3i'V>!E1MC5E,7y5ooM}~lo-6[0}t^A[[t1ߓw9/sLk|Irs;sۿW9WnjGN9?6ߪ~g?Hg{sf \wvƨ3Z<+>x1iZ>?al 9'ui7lYP-=]*!t6A~s$?+Fuү1U7䐈*yY<1gYy'^%z/~g.z dByݿ}Kteﱚ9?qq*g$ӟYk}pg;μ?$]/Wk5`"cTJ[ΦfіV}< df~XձKy#Rͫf̹?ue3g9O<%l{{;1|x}Ӵ-yc<^Ggȟ?\PyY1Ex/"2uT G+hfq/) -/gκ߳xng8[>g%a?)0Gvx_Ƙ[ITsTl >wsG%zóPͶ^$gx%xGk=>V>O1 )}" sut}ߏ"άxTȏNW8~p?A~~YxobCa'[Ț;9Nuk~~A2wc9@x>8w}cj:ϝVnR?J.-d}i5?Df7 Kw_b_1?x;}Cݗ?N<_\GXʇϨo{dzȾ.r O8%Rߪ8yzx)w'/s\/%f/w Kw30G?Ϝ*srq pe^kټy2Ž~GΕb`'OS羋+*hߏQkE37orXqXcU|31Bn?=?jf'tmF1g1A)P[gro-?m>|V68_?ˏϪ ?d/V.FѬg圱YKs9s<7L9Uo]n3IYXhqPv"^Z~Mϴn~~4fjng[09<O괥f)g>F%sm-?g0j_8s|i]9kYeyRԞ?1W_Km-5g*~#_9ߗ!\wkYy}~W{TUDO?'OY_{gWGKf(/ @<C?M<^ޓŞwSs_9fg*ƕ-኷&O!nY;0c~qyOӨ'0̊BWk\g1 94Z>?q:/A.m-?gnO>/ _?%GiヽcG%,G?ܜ>}}8Teo-?q3};7>lϪꏺ=djFj &VSr$?/3 jv$D.򿳮y;w>_:b .ʝ0'祳M#3$Ye|޷_FYK.q8A'?g[p}19kZb}Y汫Pz׽M_ycNXPܘr6v{][?%y,GчRN~|c2~8Aig!y?pV53u7Tz]wȆf'v%^CZ) 5U,$>/CA$1݊1xh3ׂ c0'jS}/m9Ύ/ϰ=?Ĉ~ZoEKLMG9:9U3cֲ{1Ĉ0Z~S߫G?hogǪMF9ٳy_3SrS˳I9 %_t>A;x]s I%\%g?ﯲ܋X?>3G:o<[Ou 'd݋Oc! S]2%ǀH[Os=`/X܏=YGGLX?n=^]M͘Q$Xa3O\?ù.Y1Nӳ~s~*6=RySSܫO= 3s8Q/3ciyyZS,{)_r6A >Fbb?$A:0,אQ}r#C>cG1irfr.iju{NgԾ{se(h=_%?'~ra9w]tz ~ǙUW?:.Y%_K'u\۪^{afO؆8k.w-{+~T{P?e]Kr竖''x,#ŎUGh "s8v]6cY^3}Zu5bO1ɌHӣ; G<{{NgWL5fqc O|^@̔⽥ |Ƙ o-?|`ݟ;ޅQS6wcoᮊxpѓ8+6+nk{w#xE(?^eWY3.zˤWt\gr!<~y~)63U.vn!Dn{/cqN8os5lYWa?V.SyII3f?s[/Kw103p~_xG99eĬ>>/wkP9{iXgs췖c[G@3 ~^ɲ)y\zUom8A~@9\A>Uu%k!gFﭖ2Y~ {tV^Mz;+mr~l}o=&ۓuoEo:ƻH2FR=@w~qt;źVk/}}?%ɠD3: Is{f}yKgQϋZ~<9t֗zޗA^{~x'1xYsn-u+eckduխCck Zgb;9??>+s|?zZv/smYh~Dl6/fx;7g.[8UguY]ex{ګ%z,1C~)}D$;Kt^˦ 'Q >άV1po|u&tϲp%z͚3O=#~6%:#xLOV7ќOJW5*QU(' vy1L!l1v5q=f__ >@=ȗcL٪W4=|%zޥ8|g+_el4js16cHW1>q3Bntj+Z~b@_gc{2{xrj22翑=# (GɘG HtӬ?`bR?Dgjyw{7Ͱ>ga~}YN=' mOfv_iR6I+^緋OnػqXLj?̼3^jZ8W_꾰%nk%GSw=d/t΃w1 7Cw O&w5굮vOO Zvu.B?쉛e|~ s=sgмD W}sG܏Qۺ*aory7?)Tzu-ߋo8K4l~ k_zo6s~A4i$i^ؙwTs2?Yex=^ӽf: 8v6e_^ræߚ$go&|>ª8\ƥY"jk3LMvqY+ޣ4CšiϢPk|L~ۙ_ͯxW"!PG_kopNig̟sy85of?qN"S]~~ovgޯ).x SK/<׬OُX(SnY Zw 5iv}o%j7Mf#mQm {?TXGŚ׸XG>]}F&)չfz&P͉k|Kt|?ҭΣGc8s_uF?YzBǹ.qgdwޡ>_ukbg<}aMv֞]z3ףbƚo6m/qňDzǍOgEwm-?gld&YG',i7a_Jg_}/W<=܉>qdggO6w\>(fOMqt/zs|N֟tg_΀ߣρs4Ḟ駈:8ŦOF-Z3+~Kzz>?|~FqF6ϚokF6s'H/%i _V˽ MJ\.Uϻ?/^>qJ ;wg}9~~6A~Z9UO3hzUW~M? sc(Q}=֘-Y X^o{t^~G3|~f>7_9ُ1ί r 7͘@<+qsbexN{p^d R7ھzK/k~8ה߉W $9_ [sl)k3KKs6x9ik%'~"NQ: sqj^g_+0qk[˯M_t.꾰|3_óu=rYg_?E5|?^gFL GWgXq]oT81g{^ݟ|e]oAbrk.|?F1ޣ?,zQ6վD~#|!Ɵ;m-ſpy8ی;JNrQDnj>C~#?yg\\%Z[_]+^qg֚} Oۦ_u.I>ȭLLKt{l}c\;df/{Kt}fs}ۋܕ˾1g/[˯'O,޽|kta]sIJx?k4=Zr-kwOr,\+ obcO]E7>/͙$΢KL/Cg\\~}t|gDk+[KϐKG/[Şnq沍M߻=ګ_ξ_HwnY*?Ĩ.U'_{,_ݹar 8/WYCD͸E1F{g'>I}0?ᙢ癥ȳF^5̟s+XגhOz(~/B}7znq8Ywp/8S痺1Yce9>:BN2"M|Y#;e7Q/tuN_lKtǨQ._vCgα8]/3p|жsϋ16 1|tZ=²##'lgwJw?s..:I3̳3vq->?O{yw m aODOfKg-9Ke]歌x~ ">SJoYwkLCN]ٯ{c? e=?7;i=;#F]"&CwG3K$}֖6<_gI_G53o?-s>CוӺ=Qcj/zrmVh+\_3)#hȽ@0/170~|į1>UZ0_c 4U#{LXӬ(3c]_s7G:=_}e=gC:BU7gF- d_ ?C[8^Ʈh'e__2LN}o+V 7USӳ1NQ_*?5{mg|Eᅢy^܊Ѷ,^Fqhh'YpQ˒?\{ ī{9/?OM̸~z^/`ų\[?^d1yoUCdS9Ա_PUOBg2=uĽ#/OdBv+}7gUk)=q& h}*:oaB%W[2=vYe\,ջY?ʟlUe~^)ז<]3W`d@cN?kue7!7[ږL0w>I c< ?>/*C23_h;'r.?0G{d7߼>96SXb~|~!űѱ YoggWv7û*U:||@8mH_??enϬV ?e#N3 {c'Upz7Yf y7zVxTVt?TLC=yG=톞7;^?Μ?XO_O~fUӆ^-1'epj=cל%ן:FyX4{*U'3"V~ABWpGb?ۏsüO!OO1~f폼nn:&y_K]v،}UIfJ|y^;/Jt́t8h1r[{=~=;cK|a?xv΢<ND[=%F,?73Eg1cV23NhqbЋ?o?9x߹yROdO}?y|cΘ?/;bc{oiݟ/4yTO'CK}W1ڇ;e*}/Ϩ~H["sV{iKvy?0~QczY=ĠWGNv|0e|j+>mO]TO?\+Ճ2 Ƽ﹧Ȧ_gw>1ax wMg8p>ſ׸)Y͝S/wt\\_e}=><];>gIzkW1w<7<t1^}Yt>W&p!s <mVMcRo1& ycQ>{2^rקcg3ߪK'ip 0\9Eq䅒o#c0Lɘ%ω:&?rފ>OeX][?qxchϹW\_޷5_*1z>'.X2X׭졞y*H=S$_gtƜ+碚c)+/>ogϞ/}YʧT?>S8_Gg|`W7D?ÌQ+x)1:`v^#PKƷq=wЇ//¿弲?ϓw+ Rظ0\?=f0f@*J_;v֚Ze1G}v|2^W'ןv1!Ͼ3<b50г9q13Z/};^W)u,7q㘫fx8}EGi~GӮY0^R4F}c%bW:3αγW{ĵ"k%7h}ι C_žU|$įOW/S?_?\CXT ?Zm*}ISŁ!Cֹ?{: ֟9ֳ8W0860K{B7c?_٬?{?v~o,1~V+Ou~_*)/FUGxj]5x*_j}KZc|Wc-S|Qt~KV3YvgS Iڟ,dJL _/_ǚ2xz^x˜(ïpG7U[ş_9B> W?LokyYpݬ ,xDܵS'ii IVO?*W91W59Kt]b יHr=e}:7>4ʿ2'~#oU5勜Ǭ^> /b xV#UGZՌgl皽OuII.?̿Ucς{_3FLPW/,cHWXO1-J/7_2/V8)ΫW]x Le|fG{mz~1F+`3ŵeM15fڳ/iat[I/cKt𹴥?UxگVᇎW{Or)c\?/< B}=7fO=dW]5?OzsZU])o/ V%;H=÷P.z o:G<^>XS@'ks:őW\kaWc!|xiVǿ5sռ\s?3G=^qWz[C֯W>XUV{]עUuXz:oMr3^SN*_<4k:ZC?Nٟ1Z?&j eG~3|-c}NfSi obĀ'~ɞX"Y#y'k"?bq<׌3|FG<#51rx~E(!>HlcW`Hh?eDΘÊ{l.e;~4|f?#YbAȟsy/Mw=6{2`FO䕿R3#Ǔ*߬SF_Be|QW=;|,^s _귪_x*FsNJ[GqgT#ןg;l~Z'8Ps}og}{w{_ޏSWV(s٫ws'g,Z'+9NBsVb3oe="\{YCߤ⻲Px YNݫ~ ϯyM#ƐLO>;Y\գ+>L*,z>?[O稻ez(VkO]YW\C~?(i/U7xk%?u%x%?9\Դ!U`Ƈo:y~<7א=ߖl:FA\ޯ$ߤd󠔓JdrS&i31>m6\zRQa@{Bdt*_GdimgY_~,F*\_mEź WGXYQGu{KX>^ ~"e9|ު~QͫaM'˧/|5^A|X(T[5ʦ zHo;|.m ׳@>ٌw|\߽Fsv=cԷ*_8'&,~U=;1;ǨuoV^dNrr=Y'~]\?;Өϋ>|oby^2b~AY!^Q Տzwe'|$~&_+crxy uewmz&+/:Sdx5k_WChÉpo"ix?Z5`<@|Ť?[Wu޻!=>d8keo{\̣YojUWV7u>gci{%b?T4F!X?uc&a5Kyhܧh'fլ_cʓ+)&TxrŇdx{;?q/(?ucWtD_Ͼ^Iو2~vtsO߯_+N72Yz^GθgԟJEg1?jg"~fVxB?U*?_:fc?s_~}b9yh`YLօ-Ps%7$?,~vsFSFL^ފCdO3fWs寏sOi7#W[ yGg)S3yoUsW/b9_&~'Y?^%*{^ٟ ?R9~EgY'Y?߫~kU=<^wUNZ 㚿@[,^ѷbgsyx%/xNyG3^U]=/?U'f8O}~1jU_ߪJXNz tW^4:C,rIgTuF^X^tOiY3 ?99okcp=}Hcgo!_(û*6C;yVV^Pɟm+1c]/ĝPTwW&?mkc(< LeO*u5O6{ d;0OθΑ^n#ϯ| aiͫ~oU uwy:}xڟʞT| a>y#< U_5Sh3";/Zw\Xer';Cg\\;9kXk7#WTx;9PUu^x&kҚr)'ߟkS_xga=?R*B2cmYOEf??C~%9\U1 o쿠Ktʽ٩? YNͽ~U8ep_smsoȳs_ 1NJxE6cN>(hջp#,|?ׁVՏ2>z}U?b<=18}=sdh?N"[Y? Siŷ 1s7&{y]U[_1^fxY_! D=gI6>z *CIv#_qd/#o9~+c-P3>{Ĩ~湞ގqߜ{}~ccs|69%}yM{?Fs?ߩ=z:ϭsOݾwW2=ϛ;A ^#~h+[Uj[?#rEdV2O?Wy%+[*:W㙥2VO!B?aPֻ\oFǶf2Yp-z 'cKߋeg^K֦?;'BЛ>q_;gS[*y/x ؙW_.ϿźFwLVs^|Nx=Ke?)?ey%r KIAQ{ȏ1/zcmhCp)'dj9svduy֪5 o*Ɵ]^gDZx?zCkꞕor2')GS~Z~od#S? du~!Sz(~W1rt^iVRoZSc=ѺT+ε9Y'b'n3azrR߈3VCVϽ7 eUYoY@߻a23A˯;_KE3Hs|!\Ӭu'yZ q03僲eQ7kgY/1"0cWr*ltgH/17c^3Ec9Gy9~cZ5o{Dk %.8Zw7=cP,yc W1 eO=dz1ګjSd|Ngȫz]v~?Wqx~䌿!?˚}A7hCg\Sen8)ϰ#Ͽ|YӞThU*W1T?M/+a祊oH'c9q*ߞx֓l/1Jqcx\k1%~Ž:K%?'3Sic-)~b¬<;^/f_"%C6u^ 'o\KOy'dg )}5'f=*gyHwseS{T6}9V=sȻйn>_O&OeS\8lIߤC|kXSOXT|QU=Eqi(g~ZS*ҺzcY qbrcV|l?tNonjfR~1pNeo}eewQ7Of% ?ό+*s0}wdg?W O$܋Q܌P2ݿw׳D?_UFG^q6j|=;k u~? {5$wW|$ :#Øoɷ /_SWG p3ϴƓ* Ǫ~DH{ge +{ zx& U]Uw^V FqmGO?,qA_U,bs#r'?t,/xq g_<^L=ȟyf+3uɿ1*~otutߧ]?o}~ֿ.U/b\b [1I%MH[TœxgIcQ<d}t2p=~x}l.muϔǟ%Ǚu>+g]De7V+?=3>87ڟ,q<,~zV/W`=UusߏL^p?xqUKUSmXno_z"YT[~[_\KCCfyz_R/OLSXG{֓g>1B$+{;UêU3i{yA#=l~w~習[}=:6O+E;V}ӟٳ_?e?^=޲foОЮR~M3NC}̵c0P/)\otZxWIA7=uV4}e?Wx 9I9Bg\V5}_Ӥz>?}1pE W K{0g"1¬>gϋ>:1- o$9y޳V|ƌmq#cjY/bd~1Q}sʊOR"{G} gdEx =w>8Y*?zA_1~#ձ=8kzW?:">^ULֿu4j=u~v5I=_Oş_"_yOc'w5xc<ؔpRO$ 㙬Oc!?0!B5s9=?X'q*"Oϣ}ڤytwOyo;JzD68뤻65w+:u)wc<;3{;_PKpߩ?U/诫S^fi_^ݨ7ƟҾkVELoG@z->{=]RW1ŘTY\}uo3#SJ"ʇVx1Iֿ_/?~kc/TyG$5|s/0OC{KU{?WO\yuLR/w/!3_8mV/!> {._Ob2_{1'(Ӿr \C5鈳1m*g~f#_fxTY?CwIΪ㱬exڬKgaoŨWF)|Ɨ#kS.?]n囲z$\^͟{ovUT<@B}mEym%xqEi(T[o{n= f0$$d 1$!IRCk:YZgsu~|;zw׼mKJ'M85>ȝhɭ\mWzZoJ2~c{!D+2nc̍U?M-eLs{S<G9g+s'NɍG[~ɵt7WKe_B!~n#_= r>9{k&yF> iܓlz/5?/wi/Mo7/^?r(s&3;ݿ-^z~u`n;wf:3_35~L IJ31lyQ9'#nӺ.{yR9؞?dfnϛ6W2rEև;YIR˲HR#N,2b3b!49{uqQ r^T֙2V+ 7Y)?+Q?O:Qj0*iz^_0g^_3[ؖ?Scg:9?hTG)XwKJ=Gϧu-{n{Xn?c=X'4߇+@~WGni^n(H~wN{'uc:0xW|2os9+f}>~_Mل\_R,o(Zgi?ld#{)|{?0)ߞʕg_%&;h}7n%IYĹ~̶?*|Mm|T[=yU;m3߹ELbF~L>/w:\?icdMfE?sy<ND~Qzm:,ׅsS:έQiY.Әfa)n=I+\̟Rgd7?_,=o2O%Yy`"Z8LW<)ɯ_ϽLPY7Fy.~eVN܃!tP)oP{~N<[73WT!s$C4Dz}R.ێy+[r#_O.bRGQz,/˾}lKJtJޥ92R++s~]{c7FMrvS1޷~>6Ukv9^+\}Rm)3<)K_zJmb=Xyt Wce>ޜN=RgWse>oJ] nQ~ {MU#KnGO5S(#-J$w^<^O.cΝ)K?_T&tR/q_'o5sqDַ2dU?AK_ʷK/k"ZR.䞄̟yS_2Jy<߱&t[i(7ldf)ߥt 7#sHv}cޤoY13~(=bfuWns .^PwI)Kn,wJɜ}TqIY_zGJigYJ{I5S~rl_/+ۥt./:Vo<7w^i"?xOZ]i=Q6ߏ5o<,-*|?H=p[rE\Wwٜ>9)K[gr_xci'y6K8J@~ӳdΟ'&׿ry<_,퇉cy^r9O)K;Md8{.sݿK syΏLK+9!+nPj/JRo\c{'oO19Q-ftY}k~?PzJ}tr ;x꧓{*~Z=OKoɭ?լ??۞zz\S7z{q&YGX'b>:6]ʝ.? 9MϏX$izXnUZ+'e[s|F?=]Q禼X$G{z?,W/yZoֿ-yQٮ32=c6[?};ly.r@ٟ>"wssP/=hfsM!~^xO='fz]Y̞Uy~*On>AHOsrqJ㽑s5\Ծ?̹t6^>/ٟm=yd S~Uϲ͵k&?^+ߖqҧ\/eߖO4o3*}Bis#BZㅸ8)lilrOz^A~FN}|Q#~4O4%md+r/7rI\M%^ƿ'8ӬS.kr|zn^(ų63r}Mgen3=*y79E_,Әr\(}]?̙R&r~kd]#zYt3w *dYwon?Qrsn"|BnSj3ݯWi\nk~O,=Gu-s[M9~t'̭_>CJrzJn?[3[IsW~tN?|N\GW\di,[ϥz?=*_J{s81~K7Kӵ~o3tL+Mi2wie>8cW) _Ks9ߛ;?omo~YxKJJ/'Uj$=O!ό/c[Z9 ?or4Q3ݏ-_YSd+cXo#۶tFd[&>Οί(n^hI?J R<:C]Rl|د+ퟑ9/ɹ>R/2d?J6eW1z3?)gYquK\af#vsI Kt/E ύmfǏY"53%=x9/5.y_b|x]f~(J3i3+#'2$kQR5w9 _2d}U?|ȭܓ>Ei5?6m4qN>b~3nƺxJYd/72}mI7d[ڧl/"S.26wD?i/{$/yKJڊ쯦W%{^J_9.s47˵1~i/?)z;ոlfLozOyd4#y=+DbWlǸ6W9?޷쑨Vʿ+d=/̟xMΗ:'N̟a/ϔ/+'0=?S_ԣN:(ܴ8WQ{'kfiI?}n[:W,u&j:~r<.gK1YzӻL~$(+ʸCfmV9֖}~fOs~x4~~9O.Lyi9ϏsϻL}M3Ζ6)_4Ԉ[Hǿri+z\K/!Zi81̬JO~.ˍ_~~ֻs8x|Lyt?X^&9?)!뙦y tCn_ϧsױm+JH2JJr1G~qr=r3can?l+|Ul'W)H-X1VW6]h{ B\n?U/fRޖv[žү~{us b/Qnce(eʸ/F?iC΃;_1!q[\$?~~̞m_'>f:Mo,e$ݗ﫜}ftN&КgNYzRo~?KS/Ώ:J}KtNrGMwACE_HjG4c/3g~C:"|˛Kƶ4(s[˭?_[.\rO۲͒-t le>'A2VozN-I~8/樂/&5[OLCd̲.5)?H=%q{%!#ʘqwiQ>p#Cf63?XɘHI~{2rLWǺ;;ĜW~sϳIn?FS=ie>gn?Iz]=ug0JKd;?ش;7)˟gۜ}ydlK!m_iPڏsfvHc~_uTڟ̝JtntQ?iytԩ̓/_:X:i'r"YOWֽyy-q7BW..ٝɽNǿ3Hcl;d]Zz[IQ.^*MWsߛݦtUi^گ^?4vS;oMɦ\in)3(e]Ky~qn0Y~`B:˟.1=eQܔԾ7XK/'dL1fOR'/\ `^O:ߖ} O/MϺsrg_?/ߦomί?Һ:^ ٮrl"d9?tE=ʍṙxí%}ۖ?+ޫtA9,AF~J\挬[֣e=/vWWl?MjY@QGuZn"Ǜ? '~L^6SM|=rk YW˜MϿG\M*Ŀ{EzLƼ77s WU'l~}5r.:xʺNGjGQrg^x6ğ_rW? P:"urԟϭ4ԚtQ揬KKR_)N7_2eaDy]Rb~c53xP{{n|Js"s)?"B9/̴ײ4GKRگ+[e?9m`}ژv4c}9nh97[y9'ے1%3QYJgi~#jj7K~w\1mnCb\~Д%$9e;.K^iV{|~nMK;R?*ʚK̙ QR1=-[})!F;y-9g(Zkfv4>*}Sz W%yyiƘFi;>_R9"K8yt'7&%W%͟ꢴE2K-m^}c[ 8Pyڂ8G,1_ܼh䗺*+vA7#[F\mW<}U.}WҼzi@>ɟY>(_Z)|Qiۆg-\ߌU6scaɟ~[7َU/qĕWROWRK]r-,7ߔ9?uŸcca8K3GVn=+Ci7L2u._l$nFv[jk^3^]֏b]̍rzM+7O<7w׹~#k7uCVƃ|UѠ7>e7{x/^^rl1å`kFQ~$9'>,gɭm[4F؆zE-m^\>8?K㦘_qPiKq^%rl4ʳ_aJzzU:zEtuܸa|{ssi?gG%"4)JʲK2VåqGo*"yai*Qb\U4qyz;^3[Gz+Wo43o4)y]eQ_]Ι}I-}W_ۗ"8̍8%78 ~}s{^PV~|FAIz4K\iQU?ms{?kM-\i=&ߒz}Hssi{K̇>\^)c~`ݜ?~iǤ8Kis,_t^"ͯ47Jc%ry{׹yZ&W/ͣƧX/ }Wd}/scL\3Z41(oo:/J4J%R۲}b lozw/}s皍PwOb)<_.7!+} lʿ6r-g|I[}ilԖcw?􁿦!>o3N[vٲk˶:h+k?􁿦!>o3?MrG9|i[}-[S?􁿦!>o3>[>듶>VM6qkʿ2ZX r:s}G̴Lה;d-V/h-F5Lה;d-V/lOr-7acwB/B[!oxQ[}4?_9h>G1?/߿j_OG|~U4~㙳[@?[U|[ʥwF9߶{[_[-g ;>{|ö[~ۖeߥ Ql~YβɺiɵY?"5he׆~w|?|ݖ?l[}bΎ嗿hõȖL c)ȗ/*-_r}?b>>\k|珍o˟??ӜK{}4_UQ`T]ևk/- lWv _)2?߮}̶ub>>\k|]4 ~S-p_?M@GS%҇  |pO~GmƷ^>)ȗhʿ_ ofڦy׺10p~2}4߶^Mk.0q[{su.H"`M@GS%Ze1J[e˷زK|~˾m}\/ re|~+Xǖc?ϖYK2Cq _ܾv=w{L>+ч!AgNwY_ge???og5o,l/s/<``>)Ooo7XC?ν[ZUrs}sp?7.M}l~z[n ;y6)Oo〭L6~|dtv@m1_Smb1ۿlZ?>q_Smb1{f},>ͿcY(=hQ|},>Ϳc9n<k{v c!o߸5i-V y{8????a=amoo|ۋ'd⇿~o4_Zjʿ_ לۧZMkwڲxϽف||Lw%cCkο|iK/2 sGف||ۻ?Ž mz}/є6xR8g~w 8_顝tϦpOf5iGSd49׺{jΎ Od5iGSi?8F>Kف||}%|}Y}/sK~1Zߢ>1_הۧҩ(????[&<3[.|G4ϰOmwCZ_p|vwby~!oXMxh7Ƴ)/ZϭOn[o <˖Ǎƿ{R[uQ^Lz'lLwȰ~K8F3^اyz}<}ה;m[o t vgIm3ϭOغćG 㯌ở^o-єm̖˻s[B vq÷_.f7sC!oK}4zg;H\| ۭ['Ot-SFN.~|_^/@:5y[)8]%~' ǍKv/yz}>a{Cq{+o-єmnީ5cF?'l]pTh⳿f>Z΄xY_x)vRM_c?ß6M[_W\>_]j m:[^׆O~o?i~meį⇿5=`tqu~jL>6_Sޏvhʿ 3il7>>n95wFL.E)fG;}4_߆tQsM@3{:]:L>6_Sޏvhʿ 3|l77>1~ +n\})o~GSemqre>=`tqƟ~w  M7{?)26W2m>c}<>o~GSe1?Om1us8n<2nexŭ8n9Mߦ l[.<##M?-8_??ͭ˸wsҖcùW̶+^/^+׺w'wg|#0]>c-wڂ1܏'~OC@>~{|4;ϭ^;? ۧ7;og:XƝp@O s}{tw}O_=/Z}/6q&[>Z?@>~{|4;ϭ^;oߏ/m-k|? >ת߿֖߳wVkW>?X<;CaEyx?9k].ME|yxLXw>&ܥg![;2;R->smoco-e}p߫my-?f򃶼1N%w-O3^s盩HZ{;97|_?@ ._]6O͗sĮucmW·{;Cޯ_]6Oꯌ֦{G +ﻈ 1_9tAxAAW˿+Y8;R-w|o,X nOQaݩ"ᯥ@BQ]qȗUm/f/;/\?[dxَ>-=? |QHzNH!?jw[t6O?ϋ8b>֟ECSO"f'yGl3#j|^ی??d>/m?ߌ}m(_g?ٴ?>*Q߆;Q׽;YsmKj-<[^<~\xs;>Ktǐcw|xg_-srYk[;/;3wW< A7F ɶ<#4W>~Jx䎠l 7vno~7{?43=_{(%>p^[m$5^Y vy]<ۖ9olQDP~VEyu(1YVyѿZD?U#odžsmTo q_cmr(o#>-wםu>㑮l ?c?y>٬>.Aq[797sw;z[W|s+wڲۍw;\slh|t}\:]\#mkv|\wƜqs k 9/HϟC7gY. . l?0~$^0>~l̇>ͽ__6}~s7om9<ɿΡv|ю}[ly9- 9kך{gf~/;sX|M6~g;//yWW,%mfo2s|Ɵbk1_w-,[Jܓ;_U}|+.s>5_oy~:_H[ _?UjJȬ|c|/b7Gαn4_.i=Bo#p<qقW-uقWѿ_+eܿl_]3[=/mj[mx?;҅4 4 |cg"_9""1????????|,߰'ly-3>wϿ|Ԗ߷ڿ2M]==g엍7{? {r{~P跛Cu(~:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃_~-OrĘCm9ږ'ÿ~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/v`c}-gr-'kU׮_me>ܪ(v~r~l ?"Ǐgc_~>~ί=kׯv~_~k}T;ί]qUq`vpE_;v1!!V_;vj?gÁ9Rį=ߡ ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃z.|lV\k#Яl-]kב?ס.^_P~=ٖkב?_ eב?כ+o[n4~I~Ř>*_^6xzc Kz㵳l~/},t&_o.{~kgymA ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~]#~P跛Cu(~:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃z;vb bv[םC]l2~-{L;2w^l 8$(E^J?|w{ȖWC]lL1v߹Vį=G}O>Ŗ3m9^\kמ?>onƱ~?e7G_?{ݽ _{~OB\ `-~ۇN[+E~?ݲe&kv~;,_:. qZ_;?;ٖmA'+wXvk׻¯=O߷}N¯= kwX8=i2Kv"~Ώ~wn{-㏎_{q_;??]vckv~;,]G:]C\_kJCwlyfk-#Cݞúٶ\~ :6X ~P66?iZcfsoe跎ecg~7_0Xv 2~wEK2/y.~ ~ƿ} llf?xAaf~P跛Cu(~:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~:?_?fb [s-GrwrdZ _?e{Cõ~GnYOT[r|¯=>/2߇kly-p_{/}|Aî|^а~G?Dz>ݖgyx_{/}rHvރϣk?)L[εd[Z߇bYuئ_{/}L]ŵk?ğG_?~s#䟧UnP'~eO_e34՟ÿ>'FȿQ?_9U֯?\ÿj=F!~c쵎_}~WY:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃v3c跎e~1[G2Gގ#~O w;p_{~]NXu+Ə{ݺv>f&ko~73ܫ_{?NuP\ok?˲g˅<͖sõ~G㌿'~c>,̽_{kկWJwk?޲lgIZ ת_8wC`}_e=ߖgNX8^kZ֡⯅i_{k{M-q{-;iǿfj?75kď/Z q_ ;qЏ¯=WW ׬\:6_jZl oS'~?:?s\_$y'Mfk跎ec瞸q]k跎ec1:6N~d/)1/_lG0Eh/yX1E#C嘗/]:?ߝ{O@wIb]>=l|랻P?:?X~ [lޖ̲o7~ir-7rio7~iN#QK,_,ƿ?˭]j6~__g3 ~ƿllNqƿN_~_mƿ3/?_ P66fƿWƿr _gY? ~:?_?fo௃v3c跎e~1[G2G ~#Cun?}L~v,nWزo6__ ?dZ@mÿ C/%?ɴW~aej2L~ןÿ C/fjejĖ'l9lb̡mˉ7H˺ݖl9–mZ _?j|zp_{/}[m9fu{x¯=>w2߇߱fak?NB3Ї¯=>wٱek?QiORį=_Gr%k -,D¯=~ƿz~_eχb~ *_g sG2uwN/GǏ~_e~gwoVwGǏ~_e~ƿz?gK_~3%>{8~_e~gnƼU?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/I]'G_?_;j?_~?WoLA#/~WY/ÿ՟?_Gz?Gz?eeo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃v3c跎e~1[G2G ~#Cu_oOr?[^k௃zϖmӃR?_?-}x-k௃zі[l5Gc-a$ƿ//>[SƱ~Eu_o{j]ƏYY~{lyݶy :ѯ7ƿo_ƿ} :߽3-s ǚZ⯅<;VЖgr_2%C䏴VT[eG_2%Ӭ'ȿlmɶL;47-ӄ5/7ڨ&zf_GZKdju-'r-l9_2KHk33ɴL~5jĵi/fj?1mȖs?_2KH*ƼKd⮱GЫ۳q-'LX ɴL~?h4pg<zi/jw9³?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_˯]YLG2_+זm{_{~?dvAnE~ۇ}V[;k/_?e7G}ǿqU׮m _W_~ -&>hמ?>n{-Ϲ?_{~?`kk-~ۇ_~_{?N9\iO({m7BRgY/Yk-_~c!)Zϰ͞f˹\_{kկ?OMs,\dATį=w֣O-[ ([Wį=wXKmډ~-__{kկ-~3l9ٖ~UO-qd_{ko4~Hx E ת_~{¯=Wi?g 3χk-_~ןZw^7ulǿVj?Xrg  E_~?X11ћC#CMopcŵy llOi,k跎ecs@o2>Q?:?/Lnʱy lta刉@nEK2eE#Ceh%r\npQ?:?/D 7w&ko_, ;quӈ-~KsﰼLl~_ZԯuMG ~f1kMG ~1%6g~44A2%m3EecgKl??]cen??i~1[G2G ~#Cun?}  :o7>~P跛Cu(~in[7]c[ ~aZcWܿ@e/ô7Wj?//KE.?0K?~ioheFj?M{OMwÿ Ӣ__i.PgEO_iѯGly–&jѶ8A9 Z߇.[(㏎_{/}]{Ŗ#sG* wk{7_wGǯ=~ƿz~[ q_{/}Г}י_WK?wsGǏ~_e~ƿzZ_?_~r~_:Z/ǿs׆\??w0%Z?_~7Ï~~ѯ?Gz?Wo?_eq㟧g sl*w*W{ ?_Y_YϽ>!F?~֟Ï~֟Ï~~ѯ?Gz?~?Cu(~:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃v3c跎e~6OڲK\k௃z͖lϖ[_V?_?=N[6]l?k5Or-+௃zc fe௃zc f]lf㿷_P?_?]LXx_?_?vS^sk௃zc; _kw뽮f M~?'_W-gٱy/vio?X M >-3;ɴL~ݾw_ Vdž> k/v_G:Ֆ3'ZKdZ+?q)ZSl ZfiӯC-_2%Ӧ_-[Ś\_2%Ӧ_Yji/6j?;6w01=wpiѯG rt*_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~~_ˏ~_/?~-E~ۇ&[n.[ny-~ۇKi=gl&Ӷ\m2՛?>6׮_9T_{~1{ߏko߉ca-~Wo~/_W_ۖƏ'ݚ⯅\t[.[.ZǿV9]!=;BReYT[e-(ZBoɶ_{kׯS c2e"~UB{bk?ϲ^hœXbE_~S[G i_{kկ-'~UO-mǿcuP ?/Wcߍyul>~_j?1¯=7kW תee/iӭN&Z5[Ga{ݳn7Wk跎ecwZuy.E#C]]oͶ|֖&y llr._AE#C/:CZ ~P66k9d.nQ?:?ߍyݾ lk-#C][>s=ˊ5[G5 w?>~Pb.V\su7v34`/<mn͛~Ksڸs̽r3o7~iɟ4_;1ӯfD ~1%6g~L/(?_g3 :o7>~P跛Cu(~:?_?fo௃v3c跎e~1-uٸrȿle>f\]/~a%Ө_3~aZbfZw>@e/ô7֟{OM_ioh?/ô]/ôW/ôW?//KEb?0-늇M9Ԗm9qf?`~q_{/} w??:~Gx>dG~G-W߻¯=~ƿz~Ss׏vᄒ~~Gv׍yXX _^ږkok?_?~Gwc޸wYEjOwn ~_e~ ?:~ *`f ?:~ *)ͽ;K~_e~1oG^?7y+!-UgK΍wݹ tw~ *3%/^~ƿz?Ï~W3Ï~~ѯ?Gz?Wo?_~7Ï~~ѯ2-{l=_?~wٲ;y/_?~c?x}T*W\c ?_'~ןÿ>?3 ?ESU֯~WY:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃v3c跎e~1[G2GZ5G>guhglƖk~]ovtifEu_ox?kl-V?_?v-r3^k௃zc f]lr3;?_??a|;^~/iww}ϛt,Eu_o7^k௃zc4-}ܖ= e-O,٦1r-OpdKElm=amZZ=Ɩl9L\k/vio?]5֟ZZ=іSm!L;ɴ՝h?vj-[>/viѯS F߱L;ɴW{o_-%_2->xՓm9}'k-%_2->_Zfioܿ@ey_2%ӢESL;ɴW8=M%Ӣ_-_-MK3ɴW #y-G6 ~W^~ ?z/Gï^~ ?z/Gï^~ ?z/Gï^~ ?z/Gï^~ ?z/Gï^~ ?z/׮;m;Z 9r-7*מ?>Nׇ_#ko|Ɩ?S=gX8^kמ?>:Ǽ &|V .&3;¯=G}#Ə5ko~gq{¯=G}ݘj͟2`-~ۇ97t7(מ?> a j-ly<=!)ZϷϰYg˅Z ת_I-c _{kկS L[α唠sk՟⯅1M,h&hZ+x4_ |ď~]1O-r؏_- Xj?A{vOZǿvjhwLq8e"~]Z?Z_wlE_~jϭ_{kկ8=}2{_{8㯅W?$0`E_~?Xx~㟿k跎ecwsy_b_k跎ec|rpv-w)oq]@((o݇t"y ll}S`˭5[G\r]Wk-#C?fiE#Cݘ׽o!y llqf/]˵W?:???k|.`-#Cwqk^^6?f/iĭ_}n-?2u:mo7~ịs@o7^+n?f/-N?6_3%6_7>h跛4ɟ47Y?/跛Cu(~:?_?fo௃v3c跎e~1[G2G ~e-ǖ} _2L~cb6_io;}T2L~ןÿ C/j2L~5՟ÿ C/j_ejej?EF!/ôW # w}Ok?_v3W¯=>nnwk-~g7E?ϸµ~GS3I2¿ݟ=`e_W:[n0iG2ufY߸¿n[?gbYZ/>;_FʶX ??wZߖlǖly?:~ *3%Ǽ?{4^~ ?z/Gï^~ ?z/Gï^~ ?z/Gï]Pزo*7~O({~WYO_ej?=Fg ?\ÿ*>~U֯+)ÿ>~U֯CG>1?l ~#Cun?}  :o7>~P跛Cu(~:?_?fo௃v3c跎e~1[G2G ~#Cun?}  :o7>~P跛Cu(~Z[7k-u_of_?c|BכӫΟύ&y :ѯ7ߏ)cbIEu_oLCG _7bX?mµy :ѯ7ƿo&[n }/k-u_oqf:"y :ѯ7ƿo Ꮝ?_ۖm^[/٦1grdZ ɴL~]5_ գl9ΖCl9Җ=%_2mZjnz-'OfL;ɴWk6X %Ӧ_3Vϱ[ΰpdKMZO-r{ޛ[ukYUYU9ϙ538Њڢm+*"hsO0Z~j(c8 <$@sA` VYCG TYsVkYrW{>k⬓y|gއT{ƵAZ?/.TWXbΟՏTOv^o2>f N97}P*W?'uT% 7UsRIſ y'ΟUkΟUea?~_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_W} V_}_f;⯄ _7W?.xY]W?__?՝?e{ ? vί~ v=_ֻf ){R7k,n87 =:k_^nbe{?V8z.y/j_{ua z_x ~k3lWXY_;Ic&׆ z_¿X 5* zo ~ov1?U?%^S# z_¿#yϩ6W*{="įWG~n7MZ<WX[(\~]{t?8?j3^w~Ͽ)?8?j[pp¿P?^s^~}\=8?jsofދCs* #C6?s?\~]GRmr~>OGRm|k ¿Pܬ뮟";f{?WwJ/ߟ~bT3'u^Y?%ron[-n~?/OOJ2^e!˟e_)%ˮw1? q?]Ǒ8b.¿Pw1q(?~8??]LEwJ.&"^hťK ~KHſ>1Ry7{/!_r~KHɿcK/-/!/_B*=FRo P?𗐊XumMkJᇿTsC\Z"i 7n屐JᇿT}+O/!k;nqY9al7WXh,¿0V?s=H>?.şn?̟jgw|MkbZ=#?9?{B(^=~~0Vc?j1_kUߴ~A~?\#?9ƿW~oc!5տ1Oz.6ΟߴVW/jZߴgQ_UUW` y/Se_YX|(_?-WǏ2g:xne/2yϦ{*)?eO_nv3~ ~2_ރ={x_SnOο}~D(?e5S~{ qm{X?xPU?eW5z Oٿ~_w?eO៲^?}řg-Wȟ?_??Yω~n~ǿ)׿zs~[?J~{?W7?ep}/-/! y~KHſflV*Ros _ߴgQ_T^?ᇿT^?ᇿT;蝿RzRֿ W~ 4P.¿Pw1q(?~8??]LEwJ.&";%wG/߫XkVk_<@?'o\8ܴ?ƵmxN)-] N.MkfMoqoxN)iWV*9_wcŸw //}Jſ*>__/+}z߿ ~;ׯC;kQ ~;7 ~B93G*o ot+_ǿ]i!Y_"i9m~Y9VI?'ܟqmc/,Tvݍ6+sRZS)*C?6UsRIſ~_DŽsRIѿ?*~O75I{Mß:Nj{8nޗ97/_΍{XqŸ:N*y?xI?'yDR*9nֻ(_yuUM{.xGSΟcKK/-ݙW?'uT7sRIſgv|a/ƟSmHr\.?eO៲Ӛ^YF?OͿgW)wyH(Ïu5s3ۃ?SC ?Sz?Sz)W_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?%{if6O,Ktc}3-U?Vq+¿=0ؖU?Vv *_P8ǖ;F z_¿X4i'H_=czT:~Ʀ=rMUP?nboXU?VOɺ* UWXk}PP*  zt_~=g/2a]ܝRT(1v?Jϩ6 e{ܵ-cy_k'z,y ~ǵ<]ku`/?TP?X%_^({+U7[U畊Ӝ?*Jſ~Zk]=BJſioyW^W}aU畊W/=P?5+svGT%]9鿏BJſ ??T?w.sJß}k}~z4?]Lß*zhAz4?]Lßʯѳ޿3.&OqŭwX?]Lßӧ/~~?/O\ܬvzǿ ~S2o\KK/-/!y.J~KHſ1RRoZ?/!O/!vm M K/-/!O/! W𗐊'𗐊W;O/!n;>{kQƶ  }3?dŸN_,j[o̟jǿw}Ż\۷ߧ?v8ރB_Mߵ00Smw{-8ߥ?m&G[㱏jn=ݿǛכ ׮~u7ۃVՏſ߱x^X=\q~g*co̹bUU~Ň_>7?X? ?gg?ZX?e[-n3ǯ?eGܬ<~u)7uc{eƿ<~u)GSw~/y/SO?s*)ރ-4+ǵO^þZ0?៲ת{?SoyP(?eO៲ӚW~^?ˡf6/២4sv?Oٿ9;w?e=b?Sox~ߋkWȟ?_ 1?m_b~ }T?SZ ?խÏuOǿ~n~[?=b1M܏_Z_B97͹bᇿ/s¿ 2௟?'~{H0_B9)W~KHſᇿT{H~ 4P.¿Pw1q(?~8??]LEwJ.&";%wG/߫XkVk˿Cw^!ǿ]s`r\[M!mF?߫B۬זߵ?Zjx--ğw oU ~; nk,ğwoif!ǿ]7@3?B`.??'_ߧT?.~ lkUsvEKY<_"i_-uj_ΟPTkŅ=sRIſ>1W^eY9VI?'O\>s{Y!sRRO['Nj}i_sm ͱΟ%^GI4OaŸ:N*U_Tc{^\ ΟMT6ޓUsRIſ*i97'N9PzE|߷O៲U?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7_¿^G-7}cM}k{ś,"ğ?.=߃t\zkf w k[]_A_?ȿoWkm!'߱ Xş uRϩ6~uu_fѵ*c9ƟogXanY?7ǿSoUWϩ6[O 7ǿcŵkoYův=VkΟSmo9?X/ujW_X/uj1=p3{$gӳ,ŧ9of{vϵk9w)_>X_=czTӴ`?-=?}ori~?U//\ZZOxx?]Lßӧ_.G\{|bT̟>r[_O?jhA_Oy_q-fe\?xY9-9 7^y\4_B*U_BU~~KHտj~K2௟?'~KHſ~KHſ~KHſ߫V?ᇿT\~ W𗐊/YZ?_n|׬Ɵ??ސI~_ ?SoZ?qm?5^Y9?OտB4As(y?we ~_C៲Ӟ%ej_)W~~~g,Ά8gqB\~n?r/Vȟ?OٿkS*?^~G\[CU'OٿG~??)7?Si~_ ?W)#ǚkh<҂RѐʱJᇿT^?ᇿT{$xr/!3~KHſi<,X?ᇿT^?ᇿT޿ W~ W~ w; ?%33GJᇿT[(q(?~8??]LEwJ.&";%wGǿ ~#C qƹKb?Usv}:-?c:_i9!ǿX}ޯ5t_~ ˯y!ǿ:~~kO:!ǿ]̚5U ~;7/ï ~;7]yz/^X?'2IkW?'ߴ_5!ǿ]kgZ%ğw ?V{V𗖊}<شNǵB9!Y\X"iyo~"s?>Οcυ8oqq¿ż*M;X?'uT^?UdwpT^?U?ڹ~G N9W~ɟ ?'_~GgH*9ߵRUcx8UsRIſ Z sRzk_fk]ߘnvsi¿+WX?'u/' N9ùt\ǝۍmkX4ߍ?s6|kqm^?Mk5^/៲ת'?So_?ezڿ?Sz)wuT_U??S!Oٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~/_׍Ojϝ75-~-ğ?.׎d\]uwg,~N?7ǿ]̚ O[Dx=?%ğ?)d?^O uRϩ6~u-~٭U:s~un?gލ{Y*O4ǿ]o~zǟ߮5|.od~;VƵnX:NoԿzE?ků~(y_pBc=ΟSm98cq.yר'[<=' z߳I}\˿ .cN, PgP.*NͣX_=czT(ڿv?Jϩ6߳n^\vSIߛU?V9RӞwŕb i﬿N_=co]T tTWXc U?TϝUWXwuT~{,XlifU?VO\¯W}P?=N2/xx畊K_?RZߌ|Ro7;jI;^?T޳J ~_e#kVW*5DrE7畊WS~Dž??~#?9ƿ{\4?~u0Sm?߅?ծ]{9~ƿSqE7[_?SmϿOMUX?O~G]{̟jg߸sԪ6\UWMsU!ߧV X¯G,n ?y/SŭwwoWǏ2?a7 ?Y|,w?WǿO.?/~]7*)[1JS?Y\Ѵ*9_¿/[9֬Ο #1>X9̿ _kOY\߬ΟU}{y8w2=?ΟϤU}{ |pO2VI?'O>nP~\?'uT7hVkQ~pk8~ϩ6sp6\U?eO៲'OٿiT?e>?Sz?Sミo ?Sz)7_b-U?eI ?S z~n~n~n~n~n~K5M}{iOqm?fDžs~ſ;VoLj'C=ʵ~Vo5PG+X+,?nx3[㠓?wYoKw_58Kodߴf\?^f~VT_2_ߕj?ʯ2ߣ9`/o^bmѿwU ~5_vi3,Ά >iY*}˿ UM"f~տ{X?U^7X_=cܫO~xbs-6 Ӭ*q1Y{oWX^?UwnX_=SbT^Wy}X_=SbT&ߪsF!~ݿTkWZ?U4 =,į7]bX!.J5s8?sZQ?^i?k_J^.U?x7RzT畊ushruyX?6+*7*Jſ ^(*JſiϲW~ RoZ3UW*U{W^wOR7O{x.畊o\U畊W*-??mNƥbTZnqͮƝ=??-si~?cY|̵ǿ ~S?4?]Lßӧ_._ocK)-:_OY_ P67;v~?7aǿ ~S|}k}QO5]cqd\[sRѦMGX%_B*U_B*MkbR񯯟hoVR pI*RfVCO$c 7'𗐊}͌ǓJᇿT~G?%ߴ~_B*U_B*=mqls_Z_B*?K ~KHſ~  wyi?%_~KHſ1 𗐊'e_?N*A/!O/!/!S;𗐊7լţwn w7Sm9n y)y;\ɩ6C4=7['Yw ~]R`TOŸQm?>9R~gT?/.?~]~ ?~u/_ǿïˏ_.?~]~ ?~usִigxaYi _4Rz¿Iſ1R}P?𗐊ՏT~?%?ϟe_?N*U_T[(q(?~8??]LEwJ.&";%wGǿ ~#C qqnET^. N.9ߜr=λv ;?]Lßӧ_.=}o=?z{ߛ].&O5+peqB?R. W~ )7~KHѿ~KHſC%Z?ᇿTkjRzRzRe_?N*U_T[(q(?~8??]LEwJ.&";%wGǿ ~#C qﶦ fgkQ2n@_h/o#?9?G?/xw-^>Sm뭿;V~_?]sc7bZ[|Uxu#?9O ?^?U'uտk*~SϾ8<̟jwKx=ۛ{ X~~-nߗ`TFnOރ7ra?V9Jaտ*Xßk[-WǏ2-3*)6wwǿOiZ(~4Qi~G~^?U?)7͹b)W_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?%_fy?%ߘ˒_&/!v6ZT?ᇿTV\(_B*U_B*U_T^?ᇿTT%_B*U_B*Mb?%ߴf* WRoi?]Ǒ8b.¿Pw1q(?~8??]LEwJ.&";%_ڿ4uqkŋ-k$ğcη%5,ڵ}ŋ,F?'2߭{F~Y?'+\/ _ ğ75{P{|ŷo ~w{U}77?s}|[;N)7zׯ^ Ne?9W?'ݯFv[;Ne?׸n_ǿ]߅Q[s N__x,lq0VW.' 8GϏSmޫG-N8GϏSm,wmxsm?ǿ]Tu՛,jqōa?ǿ]T=cy?X^6~ƞw:w1cy?s;9;~j?M* ~EN<+pq?,-u\1ŸSm~_{~ߵRS5?eو/Ï_/PmjU?e'Oٿ?e~n~n~n~n~n~nᇿz\^0_e"z+5nٯ _$Ŀ?]Կ _Z~Yx!?kkO߯uk5o.cx콛Kϳ?UǺ~T绵_Qϩ6~g; X?s_ݿ 5uTz^ XGujWFUsXb 7X<9UΏ*~cBWǿ{^^Sa¯u~;,gzK6{TΏ-a$ z/Ώu~;,7{O'c~aOu7Y6UΏߑۓ zޫB/_^$įukzky<'//x,(yŸN_s\/Ͽh'/]-/̟jǿwOϟ3Sm./J׮_p'o4<̟j7͹b~}E:珞~ON_{_VE:?gf^VែZ ?o'~_-7<~u)zy/S'c~ [\`|.Z<ǯ?ecqk_{_?<~u)2=,N~4_?eXǿO_̷fzG,ιp>X?liϞo jBװ)~Sx? ~_ ?Sz)7ϭjim២c,Z?S)W)7waƟ?Oٿ~ߴgIkim_?EO៲U?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7_¿z_Yi }`ᇿw ~KHѿ鱐Jᇿڿ 7bRoWv%r 7=eBRj?%_~KHſ_B94P.¿Pw1q(?~8??]LEwJ.&";%wGx_x-XmRYb];+o Y<ⓒ vQm'}~=bPwO&I;z~j?kkϏI* ~EsO8eq}+o￟J᳆ vQm~8VW.w~k|p, ?]s=nMyH_~^~[?]'J)W~['}២U_U?e/?e¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿf6/b/xN\?7ǿ]뿋뺲k}=X?7ǿ]{EUqm޳~naNa{* F??]G5g*rB]lϴx33Ώ-noqz!~aO>ua¯u~;,c;Bk#hz/Ώ=?nkqZ!~ac{Sr¯u~;,KGkZ_=wX~|S,iHOWϿ:?{`״{ϗ>X_=wX~ۃGc~aOYK ScѿeWZ-^`UBJſ[B޷'!\7~nv RoZ?B%BJſ[X?3->˵^?++=!i-U?î*Jſ?+O}Y^W}a_畊cڬ܋P?u??ڿ\s+?^??TRW^4PT qi~?n;åbTѯYcqŃ=?Z\x̵"w1߇zǿ ~SEvcGzǿ ~S2T-?wtk==?ve'6zbTiϻ~ХKU0-9 !X%_B*U_B*5shRoZ?c?𗐊/!=n ?%_~KHſk*O/!/_B*MkbRzRoi?]Ǒ8b.¿Pw1q(?~8??]LEwJ.&";%_ڿXl [-/ص4ϲLOOSmwh?z\g X)Ci-?^lf^̟jgU?ŧY->O ~ o9d[\o0VW.߯M[ Ǚ vQm{ͫ,Ʊ vQmg,.kK^6~iTw8d++oƟ{'ÏSmg-u޳c/?ǿ]T?4b>i+,TAcy?9;MmvmN.ص?:+.wϩ6~ ?q/k{-J.ƿ7^~nM{Ɵ?Oٿ?e9/q>?OͿ Oٿi'Oٿ~_~??_??_??_??_??_??^Mq6OOxF\?7ǿ]=}ת6xS ng''U߱`p|?ΟSmwg?W?]Ŀ{sU-ϳxŗX|ŗ wYob7 F/Xt7ykWϩ6~\?OujW'd?ΟSm7;KRWϩ6~u=o:VWϩ6~_Fc}'X`0VWϿ:?߯OW6=Ώg-ZM*Wǿ?bqp2VWϿ:??O~[O9/Ώ{H!~_N9wX~KiFj!~a#q¯u~[G{^el tãLK ~kFrϟ w{3{eBR/!5^J?_B97/?_BjyO  W~ )W~ w[Ȼ𗐊/!5/_B*-?8??]LEwJ.&";%wGǿ ~#C q?]Ǒ8կ?Zîeϸ  }?,>i'`TFG&'Yܐ.wϩ6K 6\-?]3V?eOŸQm?>U(?e53e~r_~_~gT?|Mg F,?eƚ-yT?e/߅?Ͽ F+_?ᇿ FoW^bm~Oٿ Oٿ~ߴ~*/?ecWxqY?űDžs~ſ>ח0ѯŸ?.Mkf3z[w~0GB8U[ǿc^o q !nΟSm9=K8n qy!_9?sKNϳ ?zk_)w QTϩ6qW[##wkiϻV[;Jϩ6~z8F[3ztAQYwl c~տT=ƾaU?T s\Dϩ6|Y(-O:?o:VW*]kP)?T/q/Q f{{V;U~~7"\{-uu`9W~f?F_wrGrRJ ~7 KaUgVÿZ?V97oDc? ?Qu?ϫW ~7"^t}.qN*M{'F4qG ~7"zOl_Z_Bi(~KHſ{Z?ᇿTY?ᇿZ?ᇿK/-/!eJᇿT^?ᇿT^?ᇿT]~ W;e_?N*Uo|kؿj¯ +C\e;ĕyUWUy&Tk-N&U(aX_=.̷X_=.{Bu z/? yyg? mMC6\#v$jwk8Qas~7w, ~˫67od߯ѷ~Wm9n A37#: aSm뭿/"~Z^8s),tm/|\^?e~ޕys?e~_|x=9Ɵo/ƻ*n"oSm|~)f=T?O_윯{{TU{gɒ/oڡY%At:\%)@BA+nhVb@hʹʃeWUeթ'^_?=_ǿïˏ_.?~]~ ?~u/_ǿïˏ_?߫nv] s{%Dߡ6\ᇿgyW߳کX?ᇿg/߳7*䟥/U߳{]q~{z޿U߳cLϿ+OٿW%GJw'GJw'GJw'GJw'GJw'GJ_ڿv-akwt?%ߵa~ w~KHſ?_B*U_BsR𗐊ᇿT/?_BjU=RozT?ᇿ>l>R?𗐊K/JCIƧgmQ2?o:H2>,?oڟ YwT A )?,b2!N *ǿ8e?oJr i_yw/G_ڿ|\z>n.T ]qy{_ ̷sRIſ/_Z*\{ǽ>&csRzTs)a|NUsRIſ 'ڳDΟU_t\el/7y]?'uT>_~Ο;n|>G?'OC=9lΟc4 nUȟ˿ z z{ gj}3~sa¯V{ՍjUx>*ɿJ?*xՍs/n~_Ÿ}*ǿu_O8n>fL} U~=P2VWU_T+jyUI vׅߺUTϩ6i_=o<=ߪKJ/UJJoe*6*ƿ?ā-cYTL*FWӞ҂w6*ƿ?* U6}!ַUgm#RmBODŽgm#Rmn=(?o_j?h2>"?o_jߗ Y߽sk^pm]㭒FÍ0Ϙ_]cד Ow^w>ㅻysܧ??]gqnYPW?Iq0_z/Ȅ z/ q8Wǯ "5Tះp#[*ǿÿ?*ǿ__9  wMyؿ 7͹d?߸Z?ᇿT+_?ᇿTZᇿTLC/! WoaE} ~;AxxXV?Ȗ ~; OxgYw/]l8 *ǿ_b<ĉd|\V?u0! *ǿRHBV?u,* 6SI qJVi& t %tcsRm7 _=T?琏N97JW?·saŸ:NjU*U N9WQ3=Q}<*9_¿$oUsRIſ W{%csRo#}\qNjno Οl}*9_C~cg*9_3~mxΟeI+nyW?'uTo+vi" ?~]~ ?~u/_ǿïˏ_.?~]~ ?~usc ۃls.ٿ~{z n-j[^^?ᇿgOٿ~n~[?ᇿgbᇿgOǿ _!m?y qǥd¯ǃ> Y_}}&į?gnQ!.*xG|<1lUp nߨ?cˁ{߃cUʿ }O*ǿu_8yx.įxg}Ǜ|<0VW?3*G<)'X_=[{} zoW=n+E@uArXo~8Y{~D_=7yީ?~c>z൤VWU?Q7 X_=77oz{M_~?얱 ¿mUBn+Ugm#Rmӱ ¿mU{}ܷe?o_j?䖱 ¿mUd̿U6sṉXV6*ƿoJJe ~yT?o88LvoJ7ysRz{ ~hIas?ே%7 w*MsWZcCPϜooXkApNz_cns¿?ÿg`?Ȏܑ;wt._ V߭??'FW%GJw'GJw'GJw'GJw'GJw'GJ_ڿM{K ~KHſv?¿?ϟ ͜Tm76_Z_Bs¿?ϟe~~?%__Bjcx죔/! 5W> {u7_6~}cxQ&-c\s?rB\_|\H*W~¿ ntߪ+O}ߪ'_ =oW~¿gV^?_s!;V^?ٿv=ol&=C}4/dSm;wO~ovԆnSm̿5?[_u㱾$jggC阏S>ƜQm̿^8sXٞbi/Sm9nTan~ԏ_-1ǾwG9gk,~9[zjx~89~g=dOSnoy[K???Tο1|z?\??=u?=J~{oZ?OǿÏuOǿ _ ?=Wn nB?=weBY/ſ~r~{vR^?ᇿgܧJ~{z~_w߳'_ٿ^_Z_B*.7_Z_B*ݮ~*~KHſ~KHſ 𗐊c; ?%_ ?%_~KHſ~KHſ~KHſ~KHſK ~KHſvf&=NᇿT-cǿKbQz}eX?'Tc|<nrNߚ_(]qqX?'*\?-cǿ=?>C+ğwo/ns|.d|N?'o,o9{X?'|Ə:9ߴ~*_ }qǹA?'uT~osX?'uT=ٳ)%csRv?JS7x8o?ȟ:N*UMk*9_*gW/0<9Ɵ}+I~{onoٿ1לf^?ᇿgnW?oT?K^*=ד+Oٿ[f?\??=7];T\?ݵ3J aN0>6\~{o̹jᇿgOٿ~{zwPRG ~{ozٿ1bᇿw*U?~[?ᇿg~~񈏇 no]>&O$UswQoMzY ~۪oB9Ư~X}{V?YG|<*oݿםkTOx>q<+į[gUxj.*oݿS8r0~cߪwXi*Jſ18K g=,?{iOtooJſqb9Oq5IVwK ,zݽVw+OkU*S9_*nW?r߭PU*UqvY_w/79nN*JͿ?f9Ugg[sN{aY_۞v fۃN}>^dC&?Tasid{!',н -94>ݎN߼˟WoyzSc ~a|ɩP_qN*U94k+N?־~OC=qN*Ms^ON?zk94k:8'9?5Ϝk=6~8'e094j58;a{g?%ߘd*9 W~ royW_B*U_B* 7JRoZ??%_ ?%_~KHſOC/!e*O/!e*O/!^un[7_Z_B*Myaqi~KHſ~~K_?NjU_T]rk?%_ ?%_ ?%X;?%_C/! W~ Ey³ /M!dŸN=X(=_V]Q!,>ޖ|Voտ17\9oV7|ߪ5T~¿}kU[vRFVO^> ?}?_{Vco Im ?S lv|pǍ9Ɵoa^asOōw9ƿSL}qǩ0Ω6$u3nU?cߢ6i/៶ji7ݿTᇿCOW(0[G8>Ǟ>^˫6~_{1G;ߕ?? ͻWxͻΩ6~_{o{En&nTȟQm9w9ۡ?ߴ~EmͿi-b?S4~{o ~{oX?~{z?=7[~U߳_ᇿg_??=W~V}1qJ~ٿ;?w{U߳Oٿb~[?ᇿgU߳I M-T[zT{Ս5~P?𗐊coIT:RoםfRzRzRow?%ߴ~JᇿT]\ץ?%_~KHſۭ*/_B*A(_@RR=?%X?wkT?𗐊{?_ ?ߴfƭe~T+?/oqgһ}|ksߘ{yPa&[}<>NߜUs0掟Us'oQ[ͻWﻓ*9oz9Us.~_nUs.zjpcU;sfOx7%Us.b%.{*۷xB9qhm-jf/?][s_yk ~Sӏx> csRUyqQg|ܓo9_c>6UsRIͿw[ohϕ92|kaŸ:N'U}aŸ:NjU_T%=ͻIͿSvsRjTO_Ef]9NU*?'ړ>.8UsRIͿ p N97[nһl,T힜a޵81Ο_qU|\wcM8u ?TοFMg'_ ?=W^?ᇿgOٿ~{z]oV?K^juY?ᇿg0^[_.߳C As]~MsX?ᇿg/߳Ӝ>PᇿgOٿ _ ?=W~U߳կ{;|;n|m]wxז n4q>6|!?ǿoCO ğǿ3>ǷwǿnoQvsN#w7/5go_E̿w*ƍ5ϦUem*=VouV?ߢ6v_|Vf:s :NrU;Ϳrww~ο?ݍY۷XGvB\Uҳ c~8}[Ɵ˿ Iz>N8>!~nH~sW>8VW?3*l?z{oz,T4OoIާ}=U߃ ͵x)}<(į[gUͷxj*n{ r㹣otbY'y6=?T^?_}?Tű]㭒Fxٍ 捗苜Ts lSkN?-/!5S~ 㡆?𗐊c ?%X3U'𗐊/!53]KT?𗐊'𗐊ؿ W~ W~ מiN*3>Ƿ$o ~;c00|^/ğwڽ^VC*X?'o?to>NEϿ5/ϸI7 ?a5w]}N֟s N_km[o ~Zʹ?y!|&!ǿ7|o ~J?+k}M֭R?ǿgI_ǿ7˽vPULx|<*94{C.#K>=:sRoT?ULxǽX?'uT^?U@w}Y߸rT޿ɟ ଏ>3fa]9N*M?M[3N9W~[krTƭRUcT2>5Οדʿ | V/ :9G~_JދX?'uT~M^wuiX;N9>}FY>b` ?NO_b~ǿ~;>f;?߳UnJk~ ?=W}~n/߳ک?=7+^{nƟ?4w8(ٿ~{z^?ᇿgOٿ~{o~ ?=W~U_gOٿ~{o_f[{>wG??y{;|;n|'m w| <󖫻~7w-ğǿm5t#|XCksB~K[?:N4ꮟ69wv/oonUoTϩ6~|ׯ̷qJQ?c9!??]*<;??gvW[_^? N/w_m0Gb۽Ɵ˿ M>0~z[_*{%}qQ_=7ϽvM(*zG|BU7=>M*oտS?nkWM_3ä}hVW5S~9J*oտiPUm0Y]H*oտS߮=u7Uߪx?ɢK RU%'9F%?ÿ]{`Y_ ra7y *5^wvY_[ZCU*U?yvTU*Suǵ+?*5^u:K =ﷅ.?T<}J_ GVW}\Tg__VU*]K;OV?O|Z󼏗X{rRoGJ ~q}pRNz7xqsR{9kN?^_{=G0>C>3%'Fu??OtӞ%nkN?yg9LJ]o3'FiK?1j?rx쟓Uٵv_`y9K3'FVnl7_Z_B*|q7ݶC3'/!3J~KHſ1߶w'l'𗐊w_Z_B*Ӭ_B*U_T~?%[nRGX i 7=IU?%ߴ~^F~ W~ 7s>7y,A wusM~ W9 W~ W~ wHbRzRoZ3B%_B*9 wOR7'𗐊{RRU7>zf{>{}|?oL)/|O}U/߼#>~̍>U{b9?}`?w:=W~¿~wo:wwU{˛mA7xfV{%֮^qcy;Tο|O83Lg+ni9vo_ '+ni7|l;.wV^?w7ӡd`ҿ_E7^8?9s{: ?MWӚYs?? };^c]?۵v]qNmqmwÿyƾ|ozϦݮ?<9ƟoV7*~ٿ1gB\ᇿgnW?ٿ~+/߳c ?=7]W߳ǿs>w*ߩmV=UgƟ?/=Cd?#ٿ(~{z^?ᇿg|MkB̸?ßQm?~[[~!kn ^E𗐊ͿK ~K_?NRᇿ/JR𗐢X?ᇿX?ᇿX?ᇿX?ᇿX?ᇿT{6\}aQ!ǿoQc6z ~7nX >nO?77Ts*>!ǿ=̿q5s N֟hǿos&s Nyޥ=nnF?]UW?'oM ~;7L{?Wg*0~ß:N*^%o|(P2VI?'O<>dŸ:N*ݮ~ʿ ~t,UsRIſi No9_?K[#N9W~Ο:NjU]P?W?'u/O=ӣa}#aŸ:N*U_TIſSߞ|9̽ N971JS߮ 6xqtsRIſ(x]]Ѱ?T,ީ?ٿ~{ 7yI'?_ ?=7ٽJ~{vs?YE^޿U_g~~*?/U_gnvt ߵ}{sr ?_ ?=W~ݗ~{o~?ߴ~BOSᇿ7Oٿ߳'ߴfEm;_ߣ' W1?Y?B~;=#i 3nOi!?]︺k)!o}u'BVksnΟSmosm~MzaVGujWu7U[s_}cgx(o_9Ư`VujO_5Os7z׎wBK?wgUiƿ?&x,Uߪ;rD(*<瓱 z[o|~Y V>->"Uߪ{6ZZ.*tǥx2UߪQo;|| Uy0*=?A}<9>WMbŸUߪ_ qƵg׏UOyamn!~ߴ~ک~oL|!0Ʊ z[zT7^ut¯V~Nu7^+lwYW}f[>n/_q7LV=~crg~>FWV7wP/3+U*MsK g!Y_=oY '*Jſ?/9Z Rj5ߟU*U_?9?~ RoX;,_c??T޿gY_ rusZ RozH,_4zǫ>x1R.-F{B}16{OZ`Iſ*3'Fv_= /J ~Yt}> 3mK<Ϝֹ4v~oǮϜ>c|"s¿?W|\񼏗LT[?Ȯ jG~N*M k94:O=7IſiZZ[sijkס| cmPasR>]1_B#/!9_ _?Ns¿?ϟm?+~K_?NjU=?%_ ?%_˵=o_օ?%_7sRoZ3g~KHſ5޿𗐊&u3}JᇿT޿ WRzRvRRzRkrRzRozήD(X87,q#gr?{ןn ?9?O/oyc/4T4}`J9qE79vN[;U=y؎ -u}MgݸjfJW[_X?_z~j:8?kv"_]Ej[??sgwY?W|s?S7J~sO?;w8u}wͭ0Ω6i8?E:s!s7?MZzwo˴~sYtͰ};Tο'sOÿ{8Ygk>nW}j~ޭN'I|:U_K>~ER?'<=s}"㡆0ѷMǿPYϸs0zyNEοGP[9d>V ~?GNE?&5Ov Ny{b;Qqs7s/?][q)7Us.b=]y~?ǿir4?Ÿol ?G_LxdrT 7 :9=8ޛŸ:N*U?Q*9_ŸUsRIſSM*9}W >5sR Ʊ N9W~g`]9N*-]?7܄u9 s'  ~{z^?ᇿg>W:߳'߽v?=W~U_?!?=7OCٿ~{o?߭`j㟶,9ƿU'_~{z?=7~{oڿĭRA ?=W~5Sy\(߳ᇿg1a|k|_>~ǿ?yo(EWǯѻ}?asﯺ+B_9ƿ.Wi<B?;ۿc> 4#wVn\?7ſ"ğǿSϿ[_~SK?_ysn7;gT, ׫l5gY/okoz7]VovRϨ6i5bR?y?W} Ə u?o\LJ=vY!~_3~瓱 z{bTcÍwYWU*>8=o?&įڿ߉an~.7X_=7}XJ /J?T#ro^0Y[O+u!Y4xÿ~{o}Rz ¿-_CW*OoV{o*OWBJſ/?>*JſiT<yϿ6U*M߫xrc~S*JſvSnc4z+>xacr .'?2ލdӚiۣϜ;w*Mj94:5sOsP.50 }U7>G!WU[?ho8N06{UgN?eBR?sitz<77gN?9 y~~`i4gOڱ]#v;094|7ܸ|#sRJ ~wq!ԗam-ݮ%ۛlUTs6lL%_B*>>?cU'𗐊cܫZ?ᇿT޿ W~W~ K`R wC_B*sϰP?𗐊 7^s^9 )7n~KHſEG2R?𗐊Ӛ/!O/!k e~T/߃R3_BjU]Ro|d{`_kn|c<7,~\vONCoQ./ÿ;n5T,Aÿ׊]h`My; j_K~{zF~U߳ٿic ?=7cqmMϹi/~{oPo5h9}wm?}~>_9ߟl޿ ?=7_ߢ6i/տiT:~ۿ??_~n~ǿ~[.?%u W~ _Iſ?/-/!;P׶/<^Z_B*U?R!𗐊_?%_ ?%4_B*U_Ro/-/!9_ _?NsRo_.-/! °]*Ros WRoRzRi )7&GmC>>!ǿ:p=Ra[7;*9|}|ǧ||}|R?'"#IWvΟ xl?=7`TᇿGO~ ?=7_g?M?W~?=7_ߢ6i/Ϳ~{z?=W~U߳{sM =}rO ~{z^?ᇿg5S~MkfJ~{y<O[jcoP4~{oZ3'R?=W~3L!*̿>>>n4%?(~;Ϳv?F/o])>@K?yw|M3̿wUwǿ+̿4 DŽgǿu?T4oؿs'ǿ5iߚǿ u/Ao;_7q@^7[EB~ߝ[=ΟSm;ͿdNעUwǿoYܵgz>PUƜ_I`]vy!~_3=aX_=W5*W|r}n\QWU*uT?_{6&jǿ |z{b=kX_=WQ?W˿6Lz=a?!įX?U홪g}\6U߃ >6|~x?WuFi1{Kg**5s?r5g?cBJſi'nUgK3"SU*Mg*O;Cn,Y'?"?T8>,o^vg *>^Z/?y:g5C gO9[3Rz R;W*Z//ϫh=Ƶ?'F}q?9n;'Njf3'F"{fn0'53OVw_0>ro/94jZ?m{?hk97ZDm ~kn|fyp-sRo':Zc ~qX`<O# n|vqN*y\[si_;#pw5Ϝ]qm*_rijkn}?'/! {H~KHſi[ ?%߽I݌utPᇿT޿ wԿ wuSRz?%_ ?%bR;/!|4ᇿT(>~KHſk ?%ߴ~* 7黨T?%_O WR!𗐚U/_~KHſ 𗐊/!>(x=O=rKÿ~>=ߪӜǭR9U8˜/o~5~&vjiJ9 'X ?9Ə/_qYuJ8_ھ_ r?&=dVɿJ\s OU/?]sfǿ*_񼏗|}/ǿ7n/**Ox3>.8㴏 Bc/8_e_?y8?g~3a_sU/=9;~sPr=tB(߳c<'Z?ᇿgOٿik㟦c?߭j~{o~{z?=7]?<2. sw?=W_~??_??_??_??_??_??Z>{80,/ߘV)_BsR𗐊?%௟?'9@/!_B*Msx?%X?/!_6*?ݝ6*?ݝ6*?ݝ6*?ݝ6*?ݝ6*i;3ϲ>5Vx ||$| ~; 菇1'*'ÿG>>S>>#ğݏǿO?]{,0ѻM)!ǿqm?'/o9Я^?9NEϿ5/;?w#B9{?&W Ny__W^?ckY?'oq/mcB9UK|\0VUyT09Sp6ϏwO$d?ǿ6W|\񆏗}\q[VQm6^q_XcY?Gjqq ΣǿSmcÍp*Od`SB~;3LXc'(=?¿Lo~xэM0O^Y?ݝ?+o7,ſJ̧e)-9_j^ucwwTlk8l9å?ZmM kø#t9𗐊-.{0yJᇿT]+/! us=?%X?vƭR?%ߴIkJᇿT^?ᇿTkjR]Of5T~ WRzRz?%#FW%ǿ#FW%ǿ#FW%ǿ#FW%ǿ#FW%ǿ#FW%/xH.57?\+ǹe_kstsϩ6׆rƟ?}OO?! ji,;/}|΍s*7͹b9];^nory9vlsK_ o7}g\Q6Uoտ/O߿vcj`ɩ6~֟ះ?#7KXU//}_ ykߪZK[Ujr^ ?g=1BoW7L*}M*Ӟ/*.nE<4kǿǍx<~uyS>b7x7K+ď~]k=יa6?=ԟP;v8l=!^?ᇿg5ЖZZ.߳^kqmU_g=K?'_ ?=W_ ?=W~U??=W_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?%{`3[{WbQ?%!~o]?𗐊cD'𗐊ӜZ*U?ᇿT^?ᇿTؿ?𗐊ᇿT~?%_ ?%_C/ 鱐JᇿT+_?ᇿd[Uywwywwywwywwywwy{bpqm7?9G>D?'<=s}ǡa2>\aͷ 7O}N_? ~;'ui^+&>7B9O83lזcNE̿/vg ?ǿ'C<]yѿ,ğwχ: aOsvTkf7~ǧiǿ7.gs NE̿G:zo~V?'//|j|<2LƏ: ~;j%;Ugw`o6Ugwn|GЫ~y~;o=>qO?ǿSmaίK* ~;j7q)'cY?Gop]ݩ6ޫ y~;Ɵk:Sy~;O'?ݝjO onq_`9 ~ϩ6U~{j[E?=W~?J~{os ?=W}~{oZ3c=&ǿcV~n޿UW?_??_??_??_??_??_ {=;sخCO}|_|nߘpI7=y!?ǿk'kτs7zĻ%ΟSm;Ϳ{Z?gmUwǿ_^?㚕y?i~S[;:N2ָמM??g_aͳϹ\Rn ~ZY7y<:NxlWq=KQ?>U[=ΟSmܿZ˞ BWǿY O_0>|*WǿƵ{}TΏW>ioc~_ߞΏW˟_M0~abWǿa¯u~Z0CDZ zjz֋>6UΏWO kךq$w[i|7nG!Y_oP{-r֍߸¿-_YxaoqU*=Mÿg{7?g' ƍgMY_ oJſqwM cB9i_qg'~m/'w'ΚO־[~kK@$nw3q{c n,@5H@n`6x /9y{yO>yODZܟ'7Q??>dިW}9_7gް/Mۉ7O ~q{]:.|`kkoBsb?N;kw}ſ)3; ~X㏳-yv׹rb?λsi&'S?>ЍaߌRǟ#*J=ss׭BǏ?GT~~?GT{OsD޹;hJKW ~9=3'~9xό2*Ǐ?GT?V[ :w?$ubHo+ł:?V᧿?!uO ~CBX__kcqÿ^/ێw}O*K4ju3i⯵w?w ϗm}kogfv?\TJs?fw=V_?μ_WpI4?9V_Z'_Nοe7[/ytӞsTJsUmTzoZ{~ .ץSǏ7~kM[?N4a]{}.7(͟ﲵ7b[y]֟y'[fBT!ߛ/[y],»}g৿Cˣgm}i>'O?6ƏU৿N7mwBTߵ8gw]}wiGQvO৿kqV^67QO৿C{(7.SO[9D*=V񧂟r-ߟ ~;l^r=µ?u**g;w'4pFm9*TTOF?u**?;?7]A*T73OLe[OE񙥛~S_*TT۝_v:_oTwu[d_߱.SQ_S^/r;?*?o=s;?LS{?{:VOEoTTCS-5Z47}?!TJ9our=s{4BǏzr3K*Oϣz~g!~S?)W}ď?~;_r>&.͟?~So?Oüw!ץSǏU?r/OKa<,?Oݞy8j'~Sa?)73/O_=[gPn?߿}wBӦ?uO7.}g}ygQɟ}SB? aݼj/-'~暈~Uv}}}?#~k}VݟJiϿz~TR_뫿KݟJi~M5׀U{?r{u-/1?Z_?anuiUWtöD*~=agN:n;󯵿¼}W/~ Zů>ZTi띦}!kEߝrKR~/߲I7;΄kkSm*µ7}Tů>Z{ty3]uͮo_k/*]nvDŽ󯵿}WO9+'õ_}W;|}=,󯵿v]_l}֗m=gBy\o3_m~K?oT;s}io6X'>o5mŦJ<'ο*y;;o{_lfg`Q|3;vWJW_Ozioݵިn3wu3;J՟?Ŀ>/Rv3ިWwetQoۊ'qϿ*y_}Gk'wlѴ?C=~Yϳw+K*L۵gRQ ~sTT{87c%?%~rtJ=s3nwP7K?SO3쿏loKrح.m+Ti~w:<~}e~+c`O2D~SWeL?>{Ϗ(}?Qǟ#*ڳf7,ǟ#*UsDþŭ, ~9_?Qoǟ#*U1sDsDsD'~9_y*"_k. ?Q 0ǟ#*g*Ǐ?GTǟ#*?Qo*Ǐ?GT!~9_?Qog*JJ_Ï?GT6sD*;kf3 7l}עk/!l}w¿/Owm}io7/k/!~=[?h9/:>g _;m Ӛ3ݹ~)/ί>?>^j__}1 Zů>?> әnOןwشx%\iZv+KomiS)͟ꯟY[~};ʹ۵c~WeT?o˶nRN4?[?>~Xyw_¾y3u1rn? Gש~οe~g]mu*?e3Mt*?ekW_?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_Oǵ+wpSǏfrsoߣ4?wgץSǏU?r=sItďU?)W۝YץSǏU?r՟?ďU?)7?$ubHo+ł:?V᧿?!uO ~CBX_.1vMsֲSѵ?~9B/ߟR:':sD'~93a\vsBǏ?GTǟ#*U?J|4BǏ?GT?~9x<+ǟ#*_x_gm}~sM/7m}(76gk[_if_uoU?ߴ= :M_M?o᧿m>G/vfӶ>#76s]J?o᧿mxz>me :M0ş3ß{]u uVz֥Zş?Y/:V^_oGmp?u** T??[w?_rWjǏE~S;/o?皶ßy[-W৿C?]_~!ךY*W৿kz~~>{lMxWgUs*~~;߽vϿ]~!5Xů~O|/o?ot޽W৿uo?>:fK<j*fmQ[עkk>f +͟߻N:n'µ_}73Oe*~xT?UkmoU󯵿;>~-ݯ>ZS_k[?}Gg]oϿ?/{E7;_k/*~x6ν_}W?ms>ek9\_kQ4_߱\;lm]ȯ>Z?VE[/zַm}7\ cc4~h%[߷:?VJZqvVi[ش{[i~οw=m߱=[?h. cc4?ۛ߅ku5ۘMu]w!uμ~nאT1Rߟ3rz:?VJ*yCX)og?}VzިHx175|y'o6&ύѴ'i*B7O8T]'{gwdn]6T[T/w' fߝpg/'WϿ3߆~]Y89~οe~ZϿ*O?>;~۴{D8RO{ݏ|4?ދ ^tש7?$ubHo+ł:?V᧿?!uO ~CBX_.1 Z :XS?GTg}(|+V?~9nT?ޱѵZeJ/JOsD'~9߽a< ǟ#*U?JWjǟ#*UiWGk_˶^ wm}KOfϏl,/ί>_?Zů>Ͽ5/ί>/!~iZgTj~^c__}?ΟZ__}|}K5uwwe__}^᪭.GץSǏu[ozlS)͟h~}\YGƝ3̴-7Fשs_ǟ{ [pJiTJt]?un%_?og|~ ?/G ⽴4rx|mgl]{M*9⟲K?k=?K=㿛;opϱ?qg]_?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_Oߵ:V^O?){), ?)W}ď] V?rOn?s.\p:Tw)[y2:ekwpt:Tw_t]/ _{>c_SQ_S nmvZş?-?uUOEsk`V^O?)W}ďU?rO_?] o?Za+ͬ*~~;u~){~ߵ/?㟢__h]χWw;./?f~^ȯ~_fϰ֒k:f[u5VϿtρ3`SW{^s6~<\_kӒ]+*flzpW]4j*쯻󯵿Y4_w-ݯ>ZKϿgߟw}_}3*ϼ6_}W}T~_Ͽ_Tvq9kg󯵿ߩO뾧B/ _kO;6kڅkkonXlϚ6#[?i6os? *yCX)s[jv*yCX)O~cm1Rnߟ cc4E~οCBX)fvU1Rfv~U1RƺsmD?oo+o(ViM42k?vͮs?>i7~}[+^p]SOyyǣp7_6Tf'oSQo?'޶ux}3vg~`p)m'ݙG*%dk3?Cw =­.m'{M7ޛWTzp_5n/~ο9Ο__uO"~z/i~q~_uE.ٺbBt]?5߰l_޶ANiTs-[\?u.kgpN4~lꪽ463rlS)/)#aS)y~}Ͽ~}{ ǵso?s-TfsaϹYA}ď?wLyoN4K?[̴õ]yvv:v{ii{.5{65+诊?u ~ǯ맿/~~ǯ맿/~~ǯ맿S'rq4jO `ߤ4jOüץSǏU?rOߥhT?rOߥo_rW~?{~~U?)7?$ubHo+ł:?V᧿?!uO ~CBX_.1^pMseZeJ۬oغek|ShJ=|C/ ?Qb/_{հ?~9_?QR/*Ǐ?GT=w[\JoK7 [ߴ7m!__O<k.OM0^By?mo5O?fs9`?wH᧿m3oe_rӞc/6^uo5_^޿?_?zEG\uܭV|lݹYNǟ?.٬:z(wPo0;XO:*TT{8[y27>/;*TT_xlZş?*~ͮwy87_(wZ?x= { S_*TTOp۾d*TTWş??OOEݟJ=SCOEݟJ=S3*wmm4[o۵nw:TW{mcm?)/~~ǯ맿/~~ǯ맿/~~ǯ??vq.\O?)W}ď]E?)7?)73O_ ~So?)W}ďU??O'~Smwk_BvZů~O?;\owm5/3ַ¿W9⟪_go?~E!?o9> o?/_~W.pa4j*fzևl݊U󯵿s`uiU6}ʵS']9kLOz㶞 *~CaGUFvotWU?U}'O _k/*덜RUWlp^*~̢x~Q[_}wy~_kOWUAڵ߭z)x9\?*wlm0[o۵nϿkG[d7~] cc4qĿm>Pin/kg_q:?VJz3;.7sw}ByCX)g߾ok] cc4-ioOߴG?oo+̞޿ByCX)=՝U1Ro=o~ܭV?~}F>w_z=NE\.ϲϷ?_,p'獎PTT}1 SQY~g ~}\s>]* ~}Rw9[&KK*Ɂ=gX ~}@_3:s׃bNE*ߥ>N7.m'5`yo8r­.m'~v㻧)yL?>Z+ cc~X[ :w?$ubHo+ł:?V᧿?!ußg*Ǐ?Gz8|LeZܗOsD.wgw2sD?Qsr_?_b_Ï?Gǟ#*U߱Sߴ~swW??޵M;Mϟoٵ_}?__C*~_CwM{m뷶Jϟww7_}~մ޴Nϟ]א^Oϟ_k/!mm4v׾ocu_}>b?ãk+ϟ?~}~1מ שO 7lݲu\?uk??ցpJiT=>ZSc}z> u*u{{1n:oJx̐Ji~Oy^}ds~p*>TgǏ^_ofWeT_6ӥ`=fTJh; ?]7n7;{u*u̒/:?׾wcstJi~οO~㟂ǯ맿/~~ǯ맿/~~ǯ맿/~T{DץSǏ=n? [')?h? 4jO_ ~S^Z^/_?)3UOn^+b=3KKy?7?$ubHo+ł:?V᧿?!uO ~CBX_.1>[zȵ~t ;Jڬٺak|]hJA?Qﵰ_ތΛBǏ?GT헏_{?Q?Qo%?QwJW?ǟ#*}ĭ|KUW}ď?GTۿV4-[/zY?o᧿mѴ~i~o. :y_mf_uoo7m׬< :m}}B9 :Mٟ{<]!_{yߵך5`o~X?o᧿mWf~_=Ci:V^_/>VOElmt+Unglu$\SQtͮ _)|ѵ?u**U?ef{??nwt**O?nѵ?u**U?Uv}*ݟJ/*{+tjVOEoTTUsZş?YgZe*nvb.ٟ?gwQ:b*TT߳\lk;ݟJUwyͶA㟂ǯ맿/~~ǯ맿/~~ǯ맿/~TgwץSǏ/k?;7(͟?~SBǏj={?3W?~SO?O_?)W}ďUWlhpW৿C߰ Qȯ~O}wo o?m=~Uȯ~O}~_οwo;MeWo|#S_^?Ez9⟲_Oٯ_οO Gmu8\dO_LzZů>Zl?9[lKnumtguT󯵿#4Tp۾:U󯵿gmk=4j*wlm0v[o۵ *~r_TO)[z<\?+W=uiUvŵ[Zů>Z۝]NץSW5[m]U󯵿16>A9_k3EKϿ*5_rvWU?U'BpWU?Uk f3;_ks 5>Z?oo+߲M/۸_c1Rgeuϙs%wT1R/]/]_[c^{*yCX)Ϳ9:nU1Rٹku_nfw1R/]_[0r? ?sڭV?~}F3{ cTT}J`'GssGu**f[)p';pJ>.m'3?owߨ*T0SnuiO?>z3_ (m'Ͽw1qWTJ?m,Tw C*nuߝ1?], cc~X[ :w?$ubHo+ł:?V_;w |y*Jg1g3kǟ#*=홇OsDݞy;[iď?GTǟ#*ZeJyh;O?Q{[y2sDuBǏ?GTǟ#*] n^2sD*;޳յߥ- h _C޾w][.tߩ_kܔ_K}_}o Ͻnfg`/!1w{_}?__C;];g+W?Ww[57i/~οwq-~g=[\?5_o׽oV;>kOzڵDO~̻㇃~g?}gp*>]ǟ$_uӵWS)͟o_~~I~y>N4~On?s]aOrU?wt]u?r^]S*{Ccg}"7owXTJsZϿ*?)/~~ǯ맿/~~ǯ맿/~~ǯO׿N/k<jOl=ctץSǏퟗOm?g ~So|fQ?r=S!~So?)WC_?_rs ~CBX_.1?], cc~X[ :w?$ubHo+n ;JY'm=?BhJߋJi?Q?Qw*Ǐ?GTǟ#*?} ~9nk_Rǟ#*.!:Js*߳ךU~;M۶k!_?|woBy?m֏mi^_yisRӞN?o᧿miŦ/ :va}iL !_μ۽76=C׾;Ͼch_y5l?jfg[?oˮiغfRt2V^SQ[6۶uӵ~Ph*]f:`똭k*TT˫w/PpySQۖ3v[ouSQOUSQo=cCNm렭Nǟ?^ U*WgZş?vëb*WOEݟJ ?>.:*SQ9C󋊿;pOEݟJ՟?Twg^{*VOE73ֆUSQ鯊lmԿ?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O 1[v? zܵ!~LhO~'Ox|XpďU??v'~SJvЪ4jOq+??_rwOO*W#[AgUwk^o?ׄw'Ͽc[? _wݟ4&W৿Ccf[ο毡Mo?ʿvfci?^3{ι{-WwػcWw{}uYů~OkGO ]ݟ7]]yUt [kkw逭vo또_}W}T/颭ںU󯵿}04j*]dk.w/LׂbtWg֓}k։pWU?ϸsЧ9hkoۖ3v[ou_}W}TwO4?e__UϿ??_}W}T^]3{ Xů>Z?V?o6ft7~˟Z?oo+^{lt^]>u?s;:|<<797li cc4;mE1R?z׾v_)8ރrLCBX)™w=m}sY_)߽{֭< JOY~}_ J˨7:޷}0\xpg*yWeL?>ߗŵ1} p-߽ ~}~}rST[O<5w^m? pJUTy{SQ;˔6ToT:?V᧿?!uO ~CBX_.1?], cc~X[ :}փݵ>}nϽǟ#*0w?QwOUW}ď?GT!~9;Rǟ#*U?C'~9[N;sD'~9_}5mvw}oziwA6OwoΠoϟ;9W5)öNk/!~}ז3wM{s-W??w`umk/~οyWw?__kqVvYů>Ht gcY7si^~=\R?xOz&4`g]N'l}*̾si{~[u*Sg?>f`몭Ӯ=__|~I{}c= ש˼ϾW\}u:⟺ӫϥS}W}?wk::v J>ݹvy֥ O~㟂ǯ맿/~~ǯ맿/~~ǯ맿/~Topփn4jOfroFsW?rW ?)wy37(wǏ*ŏ_r!~SoGqďU?r/O'~SonXHo+ł:?V᧿?!uO ~CBX_.1?], cc}5m}Ӯ'繃ǟ#*x*Ǐ?GTt4F{>퟊J/J<?>jT;ǟ#*}f=R?~9_ ~9_?QonZ{^Zܯ4Ϫ76/zi;/O;MW~c : _}U~ۆ/ ]?iڟM3 :A :|߮_^usk[uõ-s 3up}SQa _ſLZ.[?u**]v*W21[lu4\SQ~H4Fs]o*T;<$?*TWλ*TWݓk*TTEmTw_N3;SQx7OOEݟJ㳌U̴ǵ#m;\SQ_p=f;?~'wocvBDW{M~S_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_ןn{Kpc?~Sz[??}qy~U???~~U??O_lτuGޟziDȯ~W~?4 o~ۏz>qmJȯ~W}}QEWn&Wo?O/KUuGEW{lڴTuG/5_WW;ۿ___ݯ~I7ߌKn?*f:c[yWo'~gJf=b~[o _$u+U󯵿d_߱Qȯ>Z~~Q2ӲNދB~inv>,W(_T_}W}TֻM{ο󯵿ON:V^_kT?Ukmm B~_wk{^r_}7nTm|~˖Ͽk{OnoM^7Gk_ZpOsǜ\Os?]W]^+BO ??vgF~Xyߵ_>姿Gu?],kr.?g/. w,?],8?b̲tw{~ Os;OUɯO~Ӵ!u~{*~n9 *p7FSQox/-m'6T߇lKgx7~}RWeL?>;5nR ~}?gU7oQSO_s;;RU9t_۽f ~}?ʿ}V**FgWGDTg[*onXHo+ł:?V᧿?!uO ~CBX_.1?], cc>y+V?~9B/ߟjp?QWmď?GTR?GT\~9B/ߟJ+_R?0sDǟ#*USǟ#*U߱^8/<㟆ǯ맿/~~ǯ맿/~~ǯ맿/~T?d?Çm=eqIW?5߶f{+N4q[Lt]?u֒h,yL~]bkgq*S}&졟tO~_6%[mu1\R_S:,%㿟h`U?s~[*ο{.4O|,| \R_Sg^akO]ag?㿛[Wş??ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_uk?]?5_Yauir=SqďU?r/Ogw?{???Oc?!uO ~CBX_.1?], cc~X[ :w?$usq4l=ak?GT>aiBǏ?GTǟ#*̏z&*Ǐ?GTxg*J?_J?v'wJ'~9_ ~9:?V᧿?!uO ~CBX_.1?], cc~X[ :札 κn۶u-VOE_ſLlA['?u**Ze*v9tVOE=[̵ֻvW}Tgd*TTg9S_*TT{.?W\{USQog**m9smk*TT-ӟJ՟?T?`%['\[ǝ?u**KaµUy5tBVOE[Dlm;?4{ m~kc㟂ǯ맿/~~ǯ맿/~~ǯ맿/~T0=ha[?ވcfoR?5_?l="?ވL?)W?Y+_rWO4?_?)wٝgJǟJiToF{⽴4jO*~Ou?՝?~Ww_Ou?՝?~Ww_Ou?՝?~WwUW\g9ѿ`]+_kLf,͟ZQ[g󯵿.rtWU?U̴~-_kOpq-ɟJi~r\a3uA['õ_}7~̣S_kE̵;vSȯ>Zz2S_kO^מO진󯵿KK1y[Cυkkynf_ks ~CBX_.1?], cc~X[ :w?$ubHo+LꃶvAyh ;MTT{Ow}ĵAJo쟩'{{'p ש7?^t_[E7?oY8_ROj={iiO?>wpJs~'Ͽu**U?SOj}f4,SSOnkIWeL?>񿷦{^Wvgw~)uL?>?V[ :w?$ubHo+ł:?V᧿?!uO ~CBX_?w{}Z?΢n^2sD/b Je?Q?QwJ~9_?Qo;k/JUwYٵCN㧿Ǐ?~;㧿Ǐ?~;㧿Ǐ?~;sC3|SK6kTJ>?>#f:ika['lxO,p}Sf:{pJi~OL|#JiRϾ/gh)p㿟:fOV_S}_?_}M8vo~ο߭濧a[\=U_?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O{~.5/?V^O?)73φ=r/>EOxT???sDOy4̿o2sDD@e|*_n?_+?Q_n?_?R?ď?GT?V[ :w?$ubHo+ł:?V᧿?!uO ~CBX_?w]ӜuZe*fmQ[cNǟ?Y_u٭VN:o뀭Zş?g|2%?V^SQߋtŭVg^OEݟJυqEOOEݟJ=OUSQJe*~oZş?vρ^r+Ufs=`]dtSQ{/F*T7~{NſLGm?|OEݟJ=SqT/]+SQEş:SQ_[f=8㟆ǯ맿/~~ǯ맿/~~ǯ맿/~{},L|]?5_?o}E<?~SzT?~So^?r՟?ďU?????ui>?~S믊_}_Ou?՝?~Ww_Ou?՝?~Ww_Ou?՝?~9{~ιץSW?bm=U󯵿?a3F>fSϿr9?ykk%7u|]?5&3dk_k/*p *9?[v~Uȯ>Z S_?uUϿgSo0v[m6[{󯵿OXx|y;\_k՟?T4 ׾w>U󯵿w{ty7;U󯵿ߟy}[쯻󯵿c?!uO ~CBX_.1?], cc~X[ :w?$usͯ߅2𹅍u**"2Tsu**cL8b뤭>w?;I}O.+hcz'?v?vr/2TZϿ*O?>a*xy9l!??e?_n?u;}.ٺ /)3kZOOY[<⧿hx=^_Sg^ο~k9rNs_Ou?՝?~Ww_Ou?՝?~Ww_Ou?՝?~Ww_Ou?՝?~Ww_Ou?՝?~Ww_Oub ~CBX_.1?], cc~X[ :w?$ubHo+ł:?V᧿?!uO ~CBX_.1?], cc~X[ :w?$ubHo+ł:?V᧿?!uO ~CBX_.1?],tM'mݶhVwHJ.ۺj먭Z?o!)zöD*yIiM]lm[.駿4|=bLx7d]Z?o!)OKi~οRu ~DVwHJgދq.m󝵵^[_kc=[[6}L?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_Oq1볶 /'l]uB~m=jZů>u?׿׬Gm-m밭B~/)_O1e[mu)\oAמG*~-͛luPȯ>u?k_/z*}Jȯ>u?̵=_uĵ+B~ѹRtW`r'W1?], cc~X[ :w?$ubHo+ł:?V᧿?8gGOd wg8oa_ ׹wx=N{sb?NE{{?sb?_n?/RW?Ys0_n?/?VJo ǵߟ=\ł5G/L̻O_[;kn3ﯡ3?$ubHo+ł:?V᧿?!uO ~CBX_.1?],{-Unu)88Ҍh1$c(rM6ـ1 F&gm 0 &`Hz麵9szkmu_/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'lw{mۿ_|믿o_7믿oͷo[ۿ_|믿o?u^s]s_faeo=s_f5 8o8Weita\_I=)#We_q=$pd`#2_f}蟯?_C矗7?;>2G|r_|믿o_7믿oͷo[ۿ_|믿o_7믿oͷo[ۿ_|믿o_7믿oͷo[ϱSE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/E2L89pq.E?0uso,)y8oɢzunٿۿݲhyӫ??6ۿ}h.-bSgN8oɢTo,.-govˢ.8oɢz]~l/,pE`~__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|ߴgk8+p\soZÂc'e{s6m:|͌soZ=??oMXo./{s}ޕ[I{s\Ϝn\soZ8q^VF?w7?SE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_fdn>3a z+NNX=)pg?=~>;~<-zo87pn_=$t,C_?#E_SeW7{_?cGaWfg?]o?aϻr[po}>yo}O>_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿ_"t2>~ oooooo׃ X2\l l2onSs.zMqFOp]8lzǹۿ/f>ۿ/ZM\o/28j]?7דN}S2_f uyG嬿ۿ_|믿o_7믿oͷo[ۿ_|믿o_7믿oͷo[ۿ_|믿o_7믿oͷc[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-t29=pN`s\c'pգ 9ldWzi7tx[Ы{8-Ez+ϳe{`\c'_>?6ۿ}h.->ld|7To,ovˢswǹF2w(WLZ_E?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_7iWMHp=:pB3Ͻۿi3N>MSpkw߰gsoZ3y׏sϽۿinLM<{8럻2?w7?o?85_}Mo_ 7#럻Meۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOEEocۿݢ̱~]9vٿe͟={_?#EazO޷_?#EaWguf_?#Eqg?}_Y?B!p-g?E矝g3_?#Eag''oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/wXWvN&Oo믿oͷo[ۿ_|믿o_7믿oͷo[i G 2뉁SN2{O3_fכn8?p\_wns_f??m_V;neۿ/?=bČ_zr&|7}32_fߙnց;foooooooooooo럪SE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/EE?8Q??6ۿ}hldЫ >Y4EOۿݲh'^=%p漇>Y4zwEww9nY4uW8 ~8oɢ_>?6ۿ}hۇ^ߥϽ,pE`i __|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|__|ߴg 8w8럻z\`K`}^ߴL[?o%8$S`^ߴ=_#=_#ߴ'N5\soZy,k`sb^y|soZcG8r8럻cp=)psϽۿi6O;O~?U[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ {ͯ_exl[ןYyD`t؇ov3+3VXcۿݢ١Wtkη}OEwZFano1n_Ыo/<-o{ڿF++bWaESo}kڿFeۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>,pE`kvnooooooK`@9GFHp="!pP`}_]p=4pܻ~2o g8=p^F2s?}蟯9ځ\+p__?_{꟥s_fוcXG:"#WewۿYۿ_|믿o_7믿oͷo[ۿ_|믿o_7믿oͷo[ۿ_|믿o_7믿o?Meۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [drjgOo,W 84-Ezusֿǧٿۿݲhۅ^%Jv movˢ{snY4z¹FOe]N[Ϳl]*[Ϳ]w!cnY4wO:a8oɢB:; \ gߡ/ \1>/ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿi7gN?>'#럻z\`Kǹ^ߴ'SgN^ߴk`4s`soZs[ǹ^ߴ#އ{so6ǠW>M]pݥ ;#럻3_t8&#럻܍;s7N??o]j+#럻Meۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE|fu +v?gn9rk}_zQcۿݢL= gov3;Lk~.O_,2k*r3M9ݿ-h|~ӫ<-GڿFz1}xl[ן=kV:xl[׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOϽ,pE`[wC_|__|__|__|__|__|_ٿ ;ͽnw작2\ 7p``}F.8j]?[g6N?g?[} 2G|19pFF/28bzs_ftaۿ/]믿oͷo[ۿ_|믿o_7믿oͷo[ۿ_|믿o_7믿oͷo[ۿ_|믿9oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݲhIӦWldzPu#nY4wqǹFOWۇaovˢzMxld zt}so,1󿻛;fx[}߄Uoo,\c'Wۿݲhqg >Y4i՝Ǟ'[&ߡ/l=a~X/ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿ럯ۿi'Θ^3 >w?^?o?*81pdc}ؿ@|w *<.wW}lcp=)p*m\ 'pph}lô9nc.ӭc.?s?ztw/{?>qIWkrsSE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2nXyu+̯N^_y2+ɨSۿݢ8æ[o՝kOϨSۿݢov0_<"t#2To?{~e~Vf̯[ovn8sKQEaWf2_rh~]o?ϕϜ.Fw?wX~gr27-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/e޿C_b+}>C__|__|__|__|__|__|_Ok9peߝ?{; n2s?:n 82p\`6?_yٗ׽Nﲼs_8gq1wW?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_W?_T*'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-oؿe?U/eۿݢ}bQTѿ [׿O2*ov[FSE2n_>˨_-'oOE-o,dr|`s?&Cؿe wX?o,^?:ize?Së;f?6o*??'pHFccQrV-C4w^}_R?o,k3v?ccQc˨P7 5[;+;l?w\SyR5Y imǁ5V5fpJYÖYamjprж]3]灶 ڵ?cmC]5N|o1ԟܓ~ˎIԯX<,jX~9Bmy<3Aۼ y2#`m8/Ϸ=ѵ bUlmϷvW5c19fϫ6-옴IWUxNNubd@u~(։Bj RP ~A__>Fۧ/pgD GXTKئs8#=ʟa(SئPk[޶!^u`0d^G___?!3׼ < p>O\yyn?j+g <^#s^/q t<񢧁g̥@mT =kX_5ya}ڞ Kc1& yUs%u6_'<''v=d[PsbὮ b1k9糡F5pϷC}/___Dj% O< {X[o߇񴇀X?9uvV Gfu___׿|y;OO۲3 v;W3myxvx<`[\ \Y|<<^s6m}c1& yUs%u6_j#@:C *?pQP޿,vPu#P ~A__>NۧԼZWׅjx\%֟N^4}Z5.?^ƹIW&p诿믿믿G}暷vp&(6/o|+\3Ϝ8OԪYU_mt'ϿCsx~pVg. 9B|83\[_5*9ZW ?5V58ϑUCѬDž~c1C}^hI]eǤM_DDDDDDDDDd,n]MVy]]du!lS=0?Qb=Oc$Ԩ vmj{T/诿믿믿"y=mj^ P{jN{mjx ʟxZ?=^u0?X=k\Cfu___׿?gpV@ܞ<\RtAж~|!.q p ^m^q{g{ bmy#2crPWem>/ZRo1iVUxO:<o*T: \Qy v^PMئ+`lH믿믿/"}j@l$lS"0a^o`ئ\mnaX^_򟆵j6X65/ZRo1iWUxϯu'co6Y 765<F vޛ|0WCj~b^ 믿믿믿d^ۧ/ Լ<\ E/|ak_^oXq augCs>fSئxc}k(،믿믿믿:~yٖ9χ3j q9`wp=6m}뀶/mv~v ktwL9Ms8gsY׿jְjh]c0C}^hI]eǤM_DDDDDDDDDd,8]!aޯjl&[p 9۟n b9H7csO@:_ ^c@___˪*{l0lSg"0a>֟s~^uʟyqnO?~! V͉ ֟u>Ϭ3诿믿믿}WA|סϷf <YáUGax~i5Y5s3P[mn 8+Gߞ5XWY~Ug T UYlyc1& yUs%u6_U5YŮCܞ?= 65q4k8jེxem˜ۂp}>Ϲ<뱀֟>T \u1\1GƇCj>b@ئ`lH믿믿/"}ܞ>}iئ-E`?sMkl֪yMY`(j byO;PmsbԜ____?}? <\ G9wƬx..Uxf0F5a: ܞ^ 믿믿믿jWmjxmxOvyu^;6^DM c}ca}?믿믿믿63<=|5vۧms^ :֌3?6Us3un xoP kzXTp'@0?/] s^+kĎCfu___׿\w=޶:<9gfs~xlΫ⬁3 g5 :pg&sRe}{9W7ૠm>ҬjhJםnU cLEK-;&mR""""""""""cqj@:3Ae?8mnO:m?6/mym@<ܞu~ҬsubjmY?crPWem>/ZRo1i + v[p0??!ΏDž՜bV2____E^MV0Ӌ65/cS7ms}(^?lSDp80V@a诿믿믿Ἕ9a>M g k՜b p8=诿믿믿ΓL}.g{s籚^>Y1o#1ߠT5<ϊY7<P׎qF?ɺ}'>k/@5crPWem>/ZRo1i 'ĮjfU>bY?}jbq믿믿?Vۧ/ Լ1V {/lSk8׸ V@yV Asئs~vP{___^gy &xǀp/ ] \Ims~8m̯_?mD1[s{x^ 5*<(vK65(Wu~/ ^0P ~A__>\TMVy;mj^ ^uO,M pͩ`(^+a;^O7^a@,lSc ƹ@wi]u#pnZ8_?4A|@m > <}cLEK-;&mR""""""""""c@bxMV3aKCϦU vmj{T/诿믿믿"҇WUba׀w kXuUGޟ}({j7lSxp!x2V ֿm:k诿믿믿:m|x ss{841:<m.O@ۼ ӊ봭a#ж>c~Tǀ8ym A<k,}p^)h[7crPWem>/ZRo1i*uxo/MV=9lS{H;jvb׹׿h;>v06Xf ;+M<Զ>>}\&c1gϫ6-옴IduxmԭoMV8]ҰMͧWQGa}o 5+lS^ 믿믿믿baWz0a΍65Ռ1.aXۇmjx(ʟub=kx80l^G___=ppɀx_ @m?6|y| v ж~s^:I<Ν& ,g1mxWp mXgYj\1Ƙ3UY[vLڤ~EDDDDDDDDDƂnb=n 6}|8lS0wKئ5]|?____E/&9gmj.O/Cz%mj8gf 6y-ޣ@65?s}p_pC%h[sont b9rib7@//AUN<r5lh'p,h[[Wg&>:r1c*k9ђ~ˎIԯX:>s{x W5fUyvئ?ܞ |;j'+mlH믿믿/"}xe5Y] O_y#x.x ʟףqnLa붆_X aG;yM @Aak.4l^G___k8e8^ 8sց>x/ms^ 8 k6S:{cYgY_;9\>kk{} pGA\ ֍d>x_;s~0crPWem>/ZRo1i ĮsWx3gn#z#۟3a~G Չ]SH믿믿/"}xq5Ys{b6554?_;>#4P(mn8kh(/1}c3:믿믿믿\?~wq8լQms{ëYץ7ğo9KocLEK-;&mR")<3EǮWoLouvo\9';뫪aўulSs]Cfu___׿de|`;'3w|_߲c&/^u>8p>so{fٖ5< Ƙc>qŮcDGׂׯXb<Q|ycmcYΤ6_?tOIeauY h}5<:i3?5}bM _6Cy  诿믿믿"҇WTU buaK Pby?zαlC?UgC65OGYkXp(،믿믿믿=O۳OmsxM~m>ϓҴi#s<ׅsi~isix|}|ko#YYj[?Oy;m?6GEm^|c1C}^hI]eǤM_$%<7 |D=gCdsbq0^?g}#ęK<f1f9W_Lڤ~}=O$%=u~t}5WT:^]c,/u>G0#3aa5PR}___EUUyeئ]syN9 M \֪CaئA`(\(،믿믿믿=Osh{>vnP=>ڞo 4<7}mYڞMms{~\+y1`=<@m]c1C}^hI]eǤM_$%>| gn ~>M v|||?6c믿믿믿}:s: !ßGx<%ཽ>x_6Oᬁ^ff U5qm\_8k֭m>ɟ5t/s\1Ƙ3UY[vLڤ~ERrT؇}_$x=xxx2x4̟֜=/y)gzOSz+h[d8c1C}^hI]eǤM_$%|{p -msmi v}Oj?xeŮp*}Cc}{<'*y֖ Z^h1f9W_Lڤ~}=O$%<ĮY/< ۧ-96myǃX^ttknNa Aomjx.ֽPu X^ƙ?xP{___ϙ0T LX5?f m5S}p[k5NJsf8_ח:^<¹=<1W״mS-s~Xg7.9?#:? c19fϫ6-옴IjMt3mϟx-b׸| 8[擀b9-Xv !ovZs1,gRIԯc'u:|#lSsc53lS{{sfx_uxw ~ v{mjxNC]HE__>Vc5un/۟\ byUئ{5u 诿믿믿"҇gUU8'O_<\1Us+lSsܤ֪y8Oئw`(+gUx_?yJ~a(،믿믿믿?s`fU×f 75PV _5p}Γ᱔9G^x^sş{灻΢i[m_/u,&e{O9B/)cж~O!c1& yUs%u6_ZMV8^Qm? v5Wp^qϷ=wy3c߳jbo9YF\3o]۳=1ƘL_}1icL?Qܧ]65c)u~/lS 0?uy]紼ϺĮsMC]HE__>¹=}ҰM͛ Pup|XJ=ΞXOaݞ:>pk%0crPWem>/ZRo1iI  n~mo/-l|=YY;mjίf U Cfu___׿s y=q/kwxἚp{Gs cř6 ]gԴQ5~/Ͽ\pЇ? ؞ xo5t?q}Զ΅`1䘡>|_߲c&/*wiwCE<'Nj|w;g?Y>]/(#^߃>#2x}vDm \Ή οST%ir](ʯʯʯʯʯB&\Wwz<5}*p7ȕἊ7?`4ȕz 9+u8rz{rUA^ʯʯʯʯʯʯ$S_u9m$`/[ ;gub stK8cs(`cpo^C)&`@Sss2`/_$IFryn*}J!Jٕɀ/{xφ`~x'x X{} v"yٙkYp_\Nx}xmeq:!I$J5E*_IJ?B3'\8'>O ^]^p襁>#<Ή|]=qp^Xv\ ~_______ф+N{9$epNdm09xΉ\sp5@^ʯʯʯʯʯʯ$Ց;a*A П}>V 4\c`p|ֺ%`GW;,cpV=H=H=Ng{~nK$IHTU14M_#U/DI+ȵ> r* ȵ%:N$agwzJӻ**uH$I_MʪGϟ%p;{}8¿οw;|>{s"j;3"޺CgpN v\ ~_______фNǁ9>_+ +5Wc"oC9YB\9{żDؿp:+Wm(++++++7}7}, }p{s\;8p^ `y^l38< xm9 {^X #{qy!?0`#gx$I\bhJ_~G*_;=t`oO܋jS0xV%;m:ao}: ^ezJӻkZp I$I_MʪGϟ%a1uG8'6ow&϶i \Ήp߫o>#*gΟw+++++ !}ND>a gW D82/~X ^37?}.As}G______g9`pW79V瑸Oࣀ37PlG| >oT n_$IO~jTV￾?4x~(Wvx}8Sv gD&ϖj;?ׇ^οQ>9~J(+++++ םszC8'|ʿHp2oE9<ȕ D*vyu7?vZU>ʯʯʯʯʯʯʯMC};/| p.%n/Ϸ};}afpӁ3sGt!&^C{< x#| طs(`{~Þ3{~اdxAI$IHTU14M_#U/DIL:>EJTuS%կĜu5/v4YRoXK$I_MʪGϟ%\ׇs,_m_?|F2^v~X^\?&|FJ^M9~J(+++++ 7՝sjDp^śpN3Hm"go~8u2ȕR;̛ ՚ W~Q~W~W~W~W~W~W~o0/X=/˟6Qu &{{ \V)do=z{Vϵx#™φ$v~\>ӊQ8'i9߅R/ʯʯʯʯʯ/hug9X8'= WWdkͿT8'gr?2xEV p*ȕxsjU>ʯʯʯʯʯʯʯMUuzOnup ˟3z p}}9`G p:pN]4;~=ൺ p/K5^ v L[ 4 t`wqp$I\bhJ_~G*_X=kMᜈ______14Uwz<MÀ@\?̫8[? ApNd +"+2x[?\S^ʯʯʯʯʯʯ$?;^ ? X>9a? ~p}AX?^ o ^\ xW;5{q-ucogxGOF0$I$Dz_C?T;RYB1 ɵ38LGU3'_ՉWu6x94 x}V`6;Ub:z~ު+ I$?U)RYHU$_ G> Dyψps~8'B϶skj;߅R/ʯʯʯʯʯ/hypN>W{@W|72D$ϙ7?g@>Z U>ʯʯʯʯʯʯʯM[}>a/=_cX[og#`g zOjkbq㽽CV@zx^ H$IFryn*}J!J2l xk}J*1G֟׉_U&/5sm5xJ,W'/UDe/I$J5E*_IJ?B[vοckgDn|>#w+++++ !pK>z\/"A_86"o~ W\?ss"ZU>ʯʯʯʯʯʯʯM?\uz7~^OCu?~G:O(`lcgmfm7 &{)8s y8s8 7~ x$I$i$*ׯߑʪ$~:Z {~ [=?s xkU3'M<^b]LVw*l^V$IRWS*}'DI85C}'gpNdOvgD8~^7o>#ΉG_____C]u97| ُ7 $yb\O Ds`P狼DxA^ʯʯʯʯʯʯ$?F3s`?̧{l\?Ckg`K4`2ǯ!cӇ>`8\Nxud@``0pZ|Q^$I4}U {pSHeU Q-Nl;dN{HY[뿨:*+^+*N^fJZ' Ub:aK$I_MʪGϟ%p{8Ҥ3!i;</g1Ṝi;?x}s"w ψp9U@s.}Q~W~W~W~W~W~!D;=pNAp ~?8'!`++r6?(9 pd+?Dc?7?gs5`G-`C0X@ c3΀]LS$I$Dz_C?T;RYB=<9ay`{yJ:ZmL _Ȼ&4 xުsg˿$Iԟ*J}$i* Q΍psn8'ҤG|3"K\DI=gD^,5Hr@8'h;߅R/ʯʯʯʯʯ/hNs1+"+ z~cAjcf\s|PuzpZ W~Q~W~W~W~W~W~W~o{uc=?E^Yk]oc/ƁiZB)X=U R%$IRWS*}'DI8WsIp/ςgNοGȾ3%οPgo>nZ?BW~W~W~W~W~B4ᮺ ^Ή|q++} Dd"oȩg\^ 77]rmW~W~W~W~W~W~W&9s8.K` a?Gga^< j,'p/6;dh`iu`x9ǵ&`%I$i$*ׯߑʪ(;-gQUb:*xkgU{N=Q%>^5;cnm ~ׇv $IRWC*}'DI8s9p/13_8'½?-|F:^=9JZx} DG/~J(+++++ ԝpN>pʿHLܫk4"l)`pȕߺn~^ZNU>ʯʯʯʯʯʯʯM^`_zg yXVn, 6^α:g~3X=?g-s+9؏Y ğ?;%I$i$*ׯߑʪ$SN^D`]pRXN<[%e>kw}%$;sI]%Y^*9"I$?U)RYHU$ Gǖׇv] Ο7?+>#ҤyοTp>ˇs"](ʯʯʯʯʯB&Vwz|xS= sfSq`>ȕ9xG,N"c7?{سA^ʯʯʯʯʯʯ$?{us54CЧ@c,& :aHp8b|շ8`?` 6X x=doK$IHTU14M_#U/DIםdp 9{s ?oΐX[ ! Nx9 /^U{~,õFQ%eyJ/Ub:!I$J5E*_IJ?Bp:<ϵ<ׇ?sކ:M|Hy8asΟw+++++ !p_e}NoD7AWxso`~!ȕx DY WŃWd3YԀ{U>ʯʯʯʯʯʯʯM[};\c[zxlk=s`gxX^ ,g~,^O Y떿#d$I4}U {pSHeU QNV `o9eObu*fKPj}`]F+׉RoV Y$IRWS*}'DIGǖׇ?7s)vy}V D8gv3"3ׇ/>#k5~amPE_____M`?Ή< /E+?yͿp8'2_Ls&CRgGAZxsoQ`1+Wm(++++++7Y`:8O+gp8gXJMn]=ֺJ7ΙtKT [/ xvG@``Y0'X85/XTs6</I$I#QWм7~TV%LSf`:9/L^_T \^MϹ7A](ʯʯʯʯʯB&\Pwz }.\+6l}\9+u/gsg 6gޫɕ߫}_______zx xv˜ u,Z%uCS @ {!X{?=<X+=B,q]$IFryn*}J!J2΢X[@SUb:aX[T E*ѩ^vݰǻ~M@. *9UBm(I$J5E*_IJ?BdpCy}s"'i;Nϯ9@9&@ (G{?BW~W~W~W~W~B4ug91_f+2+%_8_hM++kx8'rLױ WEWdcYu{ն+++++++Sϑ$Y>}<ZJM,T%/cKexz~, f =?$I\bhJ_~G*_lVwzLu{SU{rJ uUb`,hy6|RUux}^%ITHeU#IWOpyEpNYv~Ψ>tF?o9(+++++bhxx9O WWI pϯA9xΉ|su7?#gެQ~W~W~W~W~W~W~χ3Ba)2un=3ovKV /U%ޞweF7 l\gϳ11uf=] +, q$I\bhJ_~G*_;='Ԇ?80yLΏ{:޻ߚo/xmp3ž?W%w*&>K /H$IO~jTV￾?4x~( gBv^^?vz<>Os"m&=B Οw+++++ !pqq}ND>ʕ"ko~R'ީ+Չ\ UGL+DV# zJ,Q'rmW~W~W~W~W~W~W&qZ'kFЇ:W k^&>`M4\_l[LzٷխsyVVgf^I$I*=w*}( yثu@JV'sU}_p2b *}V?O._H$IO~jTV￾?4x~(As`8'2ng>/s"j;?"^5Y](ʯʯʯʯʯB&\wz< }s=ȕs,;̛{KMʕ9xΉ 8suȕ}ިʕ߫}_______99 p.[}>S)`'pM ~ d7-GUUU]Jo<֭ޞ `(@gN,\UnZg{?u_$IFryn*}J!J™Xd}?Ug(?>krZs.}Q~W~W~W~W~W~!D;=>w@H:ȕ9xTc@uxJp'W~Q~W~W~W~W~W~W~osXޞp` gOg~Myv<?sA^ ֯[pg X l FoMU}7WG>xgsGz$I$i$*ׯߑʪ$i":go}U{rp:Z)xX}>^o!gSYp-* kUb::z$Iԟ*J}$i* Q}Ñsp8'r(h;?j?Z8's>]@^EϹ5mPE_____Mx 9 "M8jxJp?\g{v\ ^Qp}#W 2U>ʯʯʯʯʯʯʯMùI΢,~.~^a۳`oj`<`o>wU0`ofTtbo}o}3$I\bhJ_~G*_L;=aouw}#7-׷OopF']1KY gUeX pgvSUJp/#YU$I\bhJ_~G*_lSwz x:efϟzJ,\'N?WE5k]>Z`G9uwp_0׀I$I_MʪGϟ%5 x}8<-\gB>y4܇(v~^8v\ ~_______фN9.\/"7Ȇ`N0 x9+5 L'\y}w7?dV/P^ʯʯʯʯʯʯ$s@1aƃD0>S/xɏg{^ ) 83z5_^e(X[˃nb*nHVo Ǘx<|ޡg I$IHTU14M_#U/DI;=`? yyJ,U'}^ ի]_ '?sF: 㼐ׇ=?$IS߿"U$ ^?!Jx}vDv\?τs"ρY3\sfSo6"go~JfS@sȺpNdmMʕ߫}_______Xuz'm]1bo`wp, tOUDJX@y[%~MZl&^ g^ #3`fz^&x˃ Y Î5{$I$i$*ׯߑʪ$;םGv Q +Ub:BXNX[/WD.`]ldY8ó+] XsVax`I$I_MʪGϟ%,@>g25^U9zKoLQs.}Q~W~W~W~W~W~!D;=pN>V/P @{|D8ObHǛ{} Ng-u@ Y^ʯʯʯʯʯʯ$?bÞC0 uG7DU%߭OvV%NGhl5^`ڮ 6V_І[#nb*;tT Y뼶z$I$i$*ׯߑʪ$םǃ)CY[9LUb:^XNX[oVUOyǀ=w36&wa砸Ϛw}pk9"&I$J5E*_IJ?BdߪӃy}D{?y}:h;E6^ mo#j;߅R/ʯʯʯʯʯ/hMu#yop΄* ^7cyϞ8U@?ʯʯʯʯʯʯʯ 3p `+[܏#:^#^shU{-X%8/ľ nx?bU#$I\bhJ_~G*_lYwzEַ*Ēu:ZJ,Q'u?vcp4Yg<$I_MʪGϟ%, y>{s"@99s_@j>fx}8Οw+++++ !pUq>7s" r/xEͿP8'2 8++Ѽ W~k4o~Zȕ߫}_______=99:{~G?JJ&/V"u:޻˟};V@Wgu#doz>V/I$J5E*_IJ?Bdj>s"`pN{Q|Fx}Ɔs"j;_5pn8?}Οw+++++ !p}N D \9b/ WӃW2F8'r98r_:xE6˅s"[ p)W~Q~W~W~W~W~W~W~od?8S@}S`?pxXJM/\%,knb*r7AWE|GnÇs_[l 85X߾`-%(nUV$I4}U {pSHeU QδGxk=Jv8bo\%/Ue˟3<ܛז: ^ /]$IS߿"U$ ^?!J™I,v~u,Jx+|FO^3"j;߅R/ʯʯʯʯʯ/hmu?sʞa++)7>Sm"[m9 WWd#/\jG______I~u>Y}As&8&wzXJMpFnV ɰ vV=k9{{x 1`Az<$I$Dz_C?T;RYBdx=طc]fXN0u6xG=g{yx]_k3€I$I_MʪGϟ%Yuz>LJs"ܷO^Γp襁o>#Ϯ;9x}x͗mPE_____M,>D#@KȖpN{lfC++r!`&8 ʿHp>Ǜ=N rmW~W~W~W~W~W~W&:=.9Ns}>ǂ&z nb*j7hx,`M{8y}$>/џ}>\v% VsU`s7[+I$I#QWм7~TV%aA<+:ZpdGU3'T X[W%īUb:U{:Ӷ`s5`,$IS߿"U$ ^?!J28 x} DNmYlgEοEv}8'2Wܫ38'h;߅R/ʯʯʯʯʯ/h'Nszo8'Ep+x Y&?ˇs"o+ +ҤpNp483x_U>ʯʯʯʯʯʯʯM^uz\s-8 \ ,#dp58П5IFt\{i3Cج,k~$ދ. ދCx/,;8dp/`"Xl,I$I*=w*}( gcu9 X[!@MT%:ZJ,^'^ ?hu^g#y}98,663-I$J5E*_IJ?B个Ӄjy}שi?@w\^9A Yx}ڲ~J(+++++ 2>s"agAܓF;l+0~U"o~\ g\Ӥs;i{ն+++++++V?շÎE]xEý.a?v k.Vpל}AVS}zsym-}g`<&x I$I#QWм7~TV%ٽ8 N^d7*JxJZ'ZxJp?Zy׭oǻ `אׇ?%ITHeU#IWOXuzm3|Fd!+aM'ψp-ϮgxοXgx>s"i;߅R/ʯʯʯʯʯ/huW9}0N++-v`n\O ^ˀ7pN>3?+WeW{y/Ή*\jG______I~u-@7vdp |U{~m>|8S4h0سk_ay S pXl 5D6k-;6$I4}U {pSHeU QNn};\T eX{ssoCw3N3g@Nk8x}Vv4 $ITHeU#IWO|>_^s9zs Zs58'rh;?m8hg~J(+++++ ֝ ϩs<ȕiy,ƃ\O ^\?\:ru7?g+Wm(++++++7|q8v\ x5^ ^_Lxg/z`:8`TkkY6c.`E0gsx@` I$I#QWм7~TV%١8 X};Ζ&YNZ%uzLkU? x{&{u`>9<`?$ITHeU#IWOQuzs~8'Ͻpd h;3"p>{x9p_0_?BW~W~W~W~W~B43Ή pȕ36gRcA'ER^g\ ^^o~5X U>ʯʯʯʯʯʯʯM<섹X=?V{l~f acX=B\|тBgϏcVϏ#}Nv1џ=??v#y{~!o a0@X>$I4}U {pSHeU QN΄ :goqR[Ub:aoX%oVS?f:'/xkhO@$I*J}$i* Q>!Y9i#eJgu>9&?s"|9́7}V?ɕ9xs#4p ȕ&<ʕ߫}_______?ng[vpu/F$ , 6Kp+X>'> 8Ou :کR`> s`WgƂ=F`0ýC~^]F$I4}U {pSHeU QmN#vH`oo\r`+Ub:ao[=<~:>}>X};u~8uI$?U)RYHU$Tg8v~vp/gZ8ci;?s8. ?BW~W~W~W~W~B4ᾺΉ<n\'NpN3Q~R(xEs"9\r_:xEB`,ȕ߫}_______;a8#t#| s7-6ۂe< 0 pDp1|9O翑M\dCi[>$I4}U {pSHeU QNSdp<']gQW[Ub:aoW%֨oW y7Swp>c?8`ׇBV_k$IS߿"U$ ^?!Jru>;v~õ*Ήm? |Fd&p.)v5Nqg{Οw+++++ !pwE}No D>nm"Qa͖ W3W*٪k=W~դgpNIQ~W~W~W~W~W~W~87U_aߎu~^m_'|FdcY/Rpn@m>#½>s"i;߅R/ʯʯʯʯʯ/huW9}8:<r_)xE,Tu#ȍ`ʿ| d-ˇR2mrmW~W~W~W~W~W~W&<o_s){`e8/ : \.5C9|{w6X}Ai`'p5Dxmۀ$I$I#QWм7~TVE9 pϬ#u٘GsU3!/Ueu*=^Mǁ)x}ƃi`0p>ǻyׇ;{4y0I$5D*_IJ?Bs5wT8Y?=c𴝟?p·WmPE_____M2>ws"@V?7?Lo"33"o~\ ۅ W~pv˛R W~Q~W~W~W~W~W~W~os;6w=?woo{ƀ}8#Ğu`C7a )Gl:bk~)ཾ,qH'}ɀ3?`OpwG\ $I$i$*ׯߑʪ$B9 Zg7 {JS\,@Ub:ZXNxGw} 4lp>ʻy`Q0y$I$J5E*_IJ?B3^\=B^Ƈψp듫G g`W&=B^8ÙO!/~J(+++++ wԝu~+*+q$W~\ DbP9s9z W~Q~W~W~W~W~W~W~oa?w}X>\Z=<ޞ!6lc[=<\x@z~x /쀢e{~~vxx28 s.I$I#QWм7~TV%aɀ/xk}pnXN|P%֪;Ub:˟]780x}8c3d]>_vKm$Iԟ*J}$i* QGN7yb.!z:s8k}w+++++ !PM}N~π\ýƼW D87*`P^79ȵXʕs8ܻ͛{MrmW~W~W~W~W~W~W&?Uuzp.Zo/`i#@k}c?z{pЁ` ?[2ZZ_'k=W;NV.I$I#QWм7~TV%l1`WprjU]1U@oV y77!`w€A@k}#I$?U)RYHU$[s">#Bv~v>Ws.}Q~W~W~W~W~W~!D>^wz|xӻ9pq++}eʕxΉЇ뗁\^M7Rf뛃\jG______IU?1yП>{fq`p  >:w˺ x-p`A qaK$IHTU14M_#U/DI;={eosϬDJ,]'ޮܫ:ZJp*(k]摚\pǻ>7~^^y`K$I_MʪGϟ%Mޞs" ?)|FIo ^muks@8'2?BW~W~W~W~W~B4uyg1++yo9A=Ŷ"?9pϵ @K{{ D8}6{ն+++++++߬:=~+ [,?g5]{`Y` 8LV`opl bҿO^Çg>w)Į,p+;xmή'n2$I\bhJ_~G*_Wk}[[=?s {{:[Mǁ`3g:࿝]OmMI$I_MʪGϟ%RѤ!j;3"SgpN3Bm>|Faak~Ήp](ʯʯʯʯʯB&\]wzȝp/ȕCm/h0?Y7!,@3AU;;p)W~Q~W~W~W~W~W~W~o/EK_?}`wgX=BH/?sYY ^^s)cKw禼$I4}U {pSHeU Q]]:Zg gNvGKUb:zXNX[b̫Ub:_뜱 >k 6uYq/Ήpψ>9]\^< xg>Gs"](ʯʯʯʯʯB&\Swz|xӋ9c WWd =Y>{oϙo3?'\o]%8ߕ+Wm(++++++7o| xp9?o߁n > sz~vL GL٧3|aO{\|^;;o3Q$I$Dz_C?T;RYBdbq( p:~ voAsXNX{ߦ^n>L ]gT$IRWS*}'DI1{8'ysy𴝟30σȧA9 x} D8;v\ ~_______фN;92Wd}?_8'2T33TP8'B}r-Yx:*=wmW~W~W~W~W~W~W&o /Bg_u` <: Ku<.Z,k_?fyğ<M=?$I4}U {pSHeU QN籎ٵr^NX<:Բuso=w}=ć h̀.I$J5E*_IJ?BjqpNs,m>_:3*Kp6]@m\IyAs.}Q~W~W~W~W~W~!D.;=npNv@[@YxΉ ȕ{l؉`?pȕc:p~d:n^ʯʯʯʯʯʯ$OMͽOmޞo ^cM73u3z~-E ɘ@QA $I$A$J9g(I(H TF̘ǜӌ茌bͭ_zuԽwk}zwwO֏wAj.'.pnϗu΃< /> 36HO_ZjeYe͎U{VIgխگT6h 8o'3Anh:k;<,vr¶ЧV=N}PyPam,˲&j˪[_?5j>+?c":gD@nG:MgDUnzο1ۇNPo~7o~I}\܎n)uP*W*k.X J#􊎇s, /P4bC}Jϭ7o~7'ѳpqwM9zRs؟RKspa@{Q9B@O~/|83Cǁs>pF%9?pW#?tp.p'XeYXjzjUtVݪK5ۇh:˦dI=>OjOn{urW7A/ [@"9<6˲,k2UcYSڟ?&~>_ D߀~F{o ;lo!< C}΃>t Z_o~7o~Kv4v+~NDwyN(+ޕcu[zE'BnC1 :C? 87o~7osY Զooyδz3|NہsnK!D z.=~mpFӗy7^ik|pч}MϩR-˲,kvRW5=gM:n~-{HROpf!۟FvxCROsn[̙&^AƐgA:sΒ,˲&ɪ[_?5j^>o=6Bn1g 3!p_?sh8&:_B/7o~7%qq;r?c"bwClU$#k8T=CxͿo8&!(vrs=t^vJϭ7o~7'?KZ|\ǿ6^y/6ރki;؟m:BjnE(=-%7_ghx,g_sVۿ̟?A-M.|?G8S؟F˲,˚UMYj?Ϊ[_&x>7qz|j }&||s,/n;||g{~rl֐An~K=8UP*ѡWVT8&:TCOn~>Ϝ}Y}o~7o~s]Rs{x_ίm\8{؟j;7ΖIy<#=Ew\8Cs{8׸}> ?T|T=%>sн?eY5;V﫚Z~&UjRM=';z|j\? rv?SOGyQ׌ƾ}~C#psH8&⽽0_Xn}2C?.r%] C/{7o~ 1\ wC{Zr/8f>X J?N){~qWMqUn?71zp_V5t7o~7MG6porm'Շ=9Go:~y΄!ՇΆ!xpϙl4WII=sxm玦ýd7Vboyp]KeY5;V﫚Z~&UjRM݌Ɩl; {jgyAUәF?#='\?`fy5^/uᜟ4f? ol::p{n$ 8Dz,˚UMYj?Ϊ[_7ᣓ`'ROoߧ@xǧ9gs.Pn]>=Bsΐ }Z|<ۖeYdV_}YuDz^?RM_oFc?>_ D߇sng'qy'!<C?){rj~/b~7o~_R׷1#W]P*?)ܓW ?x˲,˚UMYj?Ϊ[_&98SdH=>#43SyRRO3jx䕐r׹@=N<׷䮿vRW,˲&j˪[_?5j~Bnc"Sl' }Dh8&z nѕۇ9V Z_o~7o~K]hAJ_)􊶁ϽRCn#19 T*sCh]9?Cj.P5t7o~7OcyQ<S<s#k@nP]|9p{gF!gF`=eYeMf՗Uj,kU'f4ƽ@}?{xj[!yᘈ{u3OCnDC(sa8&^Po~7o~I}֎ƞ)==P*?Ͻ+9f}x zEBnC1љ{xq?U|~^ y+To~7o~}fւyaMXփCRIP?tN  Y`"7,v8hsn4]Ṭh:K:8J=>pOp<sROKϷ9 w}JI/T!x˲,k2UcYSڟ?&/pL4 ܘK1;`ܳU^#ok|ޮ>=WC/{7o~=k1KY,q ׹7T~r^`OR >x Yq?7o~7o~m< 3s?szy ꐚ#tO:.{rs ?kl;h:Kδk۟3yj;to;_n:?q=> ϠT`YeYc?UoYu/9?'{QROꟚ!ǧSJ瞢!w3RS8kz[]LiH,˲&j˪[_?5j\b$_~Ft ka Oh:\~F=T}8V: ~7o~ǻ sz]8&Cg&L_xK?*΃c3P; J_ x_n~^ ްTo~7o~}?;qςk<0 ^[yAl4/ ؟ <5PCy%ca~wT ">0>/;`n̢TF|n-˲,kvRW5=gM:n~ GoH=>wT7>ΣsyOr@ӟ{ wv>|-feY5UW_VݪWϟT{, }x~{e3{7*^CZw MEC9>sk8&z_B/7o~7%qg;{r?cRyq8&xu3TBz8&g? To~7o~}kqnOj^5 qgxoܞz5B=?RRn:`+s^Чο1yA\O 5=߲,˲f*}U=VߤV_i7|t. BԜRBURSvr׷۫OÀ{?5o'wɛ!_݁˲,k2UcYSڟ?_71w)`pO ?/r8 h?#?ᘈqQKt Z_o~7o~Kv4gύRzE},8RXzE}΃c|(x_n~^W,kB5t7o~7_ qnkͿ'5(57;WvGHyx,2 ߄T9+ήY:2h/n:˷?6ޭ!M=|D!bbS-˲,kvRW5=gM:n~vG.{HZ NRyc禳JI=>9<+ w}#8r۾z{4qF noGc)< cP*?hy]?w_*1Wt?<CY$ւ<87o~7oh9= R's|bܞ<OO}>n;.Y:?u ^osUxjq{rn_sxؓ|8-g%^i ;cYeYc?UoYu/7pt* gA{_ON=>w(%ϕ<w(,n8gEukۇ3sk,˲j˪[_?5jp|} Ck!Ϲ*:?gp/Mnφc ?# r\Po~7o~I}юƞ)|8(yWrnTBb>Bj.Plm>gkVRsk>7o~7o~ɿP9✟\  5G?w]Ha M gpgԤ~nY7]kZ|^wRsT{z:R3p>3|'>Ms _jl%˲,˚UMYj?Ϊ[_SW@}<.<_&p4Z^ `!wF-=7{@zjnO<ǵXeYYeխگ˚zI5qoc3㹎spLt# 1x;{rp{`~/b~7o~_Rw@pL>P*BhK}#[J?).c"+*  Dn}o~7o~?5χOq~2w:-pnϟKs<?{op_ͣ};ϹC/[ՀV\{q/![f><>W?"iRy=Mo׈zRsk>7o~7o~ɿx9c?䮧<߃gȤ䮧<#y^;/TY<_o:Þ_m:j;>kRy,˲,kvRW5=gM:n~8tΆS>ys9Րz|:}wh]R\g=y=iYeMf՗Uj,kU'f4{j ޻jWѭpLę6Cw,5S:ψ>7o~g|r?cp{r(q S[JLk!7?v oR?%>kum}o~7o~w8gK8xpfQjMym'ÙϜDrmMns\l nk=xMl}8Ksy~lg9hMl^O]xβ,˲f*}U=VߤV_)5gG8ROYP?kRO??=_ϿRyޏJpeY5UW_VݪWϟTg,}^:?ϼr;C>%AA~F!=C/{7o~x} r?c)(R}o}8sJ??nc"9R_zEv/7 ᘈ}x*ʟ[C1o~7o~O~Ι98#@l`38R}RuΟ7efLo5΄qYy1,vxz%uk^{ªǧj:>?xNϲ,˲f*}U=VߤV_s>qI3='wcK^7o~7>iGcCᘈsAUO^CW*?8rsk΀Rj8Q8&x P*n 7o~7o>9o|q.J x|x-p?x!󽦳xh;m:5qQY|Qj]!x^SsfTs>R] z8rAnmXHhh]s9N,˲&j˪[_?5j~ Ko3tKMpLę6C3>{as{8&z_B/7o~7%qw;(~N9G#(|J#>Jk!7F(3ym`n~5+P*n 7o~7o> 3G'p0l '@j l:/Mgæù=h:˷Լ }rz׈>|]xӦ/:) JMtVi;<x'5/8'eYe͎U{VIgխگT?ǧ9sD9S ?3<@j>pu 湔<f箿ὺ8gÛ w%Ч ]eY5UW_VݪWϟT,}սC3r\3_B> ?#zjUB/7o~7%P;~N9Gp+<s眙9ADs*\??(7ᘈ*rVTo~7o~}ڨ}Ova=SαIJ/4ޫ=5χ]_n:sT6 ƍ8xo66?Ms~0+[pvwjOj.PreYe͆U{VIgխگTSjOjO3='\ g^jnB|rSJI[eYYeխگ˚zI5=; ~U}8:5hN9BE3t~ާgۇW:gD>c`~/b~7o~_RmGcOApL1x<>Pۓ"m /-TBs{rźJyO˄c ?7o~7o~<^733s{TTs^&홙y>=tTT5gR<ܞTT\gKә=< SeY5;V﫚Z~&UjRM!|2 z|j}{8J#{Z_o~7o~Kv4gᘈ}'T^O]?o zEۓpL>gP*RWĹ=Dʟ[C1o~7o~OUћa]8YBo6?5MRiNj^Py$Ωf;g|kxlf u3\?57K=-Լ h-˲,kvRW5=gM:n~v G'T4xy3a3xs3g+<:,qOn9 88y!w=5'焧eY5UW_VݪWϟTboۇ~ f42}n D~Fw0t~>W> DPo~7o~I}׎>{1Gx JE_yn~^o?6R 7y=TC˅^k!7h#X/To~7o~}oj^Gkx?6~Zg6yךmMgß;_IOYxO^בR_w}7ӟy8Cy8:YܞR9c]}x(Cae{&ws9(g>s ceYdV_}YuDz^?RM܋kvr<'#]h^sS8&3G(ψ~ }~uOч!K^7o~7>lGcᘈRyH~-TBF͟=ToRzEAn~ To~7o~}ofxk7>[pH=z%{Ṃ7eNj_QY~nsG{.u>ύ|S[9@X 6%צs#[_TnC=}>C}Y??~FOC 0tRj~1o~7/kg~N+(+5VykޛT~^[w=^uS} DC/Rsk>7o~7o~x]罤~4I)U጗7/gܞ˦9{`9(1@7n{ |?s?q dYeYc?UoYu/)'?s $5'Y_8g嶓۟suL朥><<-g9:_7eY5UW_VݪWϟTErnC:hpLY4C> DsV!G1їa~/b~7o~_R7A> :#^ks7fq|RBd8&:3T~GZ r/GhRsk>7o~7o~y/}_B/7o~7%QjϵRy=xEJWCn1qܗU*? |c"ǭB5t7o~7"潤΃DH ΅|o:V{lVi;mߚΊmZpW?:,$HRg;_kx}{x_9'|Nx.,˲,kvRW5=gM:n~Go!ǧֹ|TnWAŀRsrsoҡyAny'fԼu><s&-˲ɬ߿VeMjG}~:hIs_8&0 G(/:?/@ncPo~7o~I}\ӎUᘈs~.۠T~ε期*d yx] ^?_8&z%ʟ[C1o~7o~O>GpLjLFo:5yA9??l:+է?WׅjR|x_G Ry]_6W=1Ά7grs^[eYXjzjUtVݪK5qv p>ϩz|j=5>8o9:J_r0箧Tg箧XeY5UW_VݪWϟTEDny9 f4QsO8& ?ψvr~g"+#?7o~7%MX?cb J}օz69o{oq>J?jUf~me๲>sSrk>7o~7o~v 9<>@}^G9<˵5Uya:㦳LAܡ_7IJ9p0p9|Rsrp6>1|x/|,˲ٱJ}_|ϟժ7鬺Ujs'5o':J:&qt|SWh]y$feY5UW_VݪWϟT.~ :{ I:? = }x~33Cnc/K^7o~7>ю=pͿp8&a (s`8&S+so1+r}y5t7o~7,S 5og388?p6 ?ڜ^KtVl;?o:Ϛgp_ -MyqeyAaN>|y}gp?瞺΋x؟ײRv9C38C=}hYeY{?UoYu/մK8yR`;y?ϓz|:}r<c џ睸Q:<-˲ɬ߿VeMjweus,mFc> D<ռm'/ګ}}r|1}_B/7o~7%?A45*J@nԜ|-(ׂy;/T~zV8&w<7o~7׆# ^ř-.scxPj^Prf ; = m 㦳lE5Dm:[Ӧ\IxyA8shco'F۳N Jx>ϡeYe͎U{VIgխگToC3!Ry<xsKy6]|C Oj4G<9s9ʲ,˚̪/n~}XԫOyi8&z'X=OcC}+񚵡! rp9q4>YeYYeխگ˚zI$I$It= QoDgslyVR}q1?6;V*W}S9iusJϭ7o~7?D~I$I$8s]v@o铚FyuaXro󓻾}``}⬧u>Bnb⌣D,˲&j˪[_?5$I$IVju^zW)n8&l?oGc"bbWĽ7<c~7o~7$I$IRs]B9??ԂZ真 5(ps{uFAnU`wX߲,˚̪/n~}XԫO$I$Iۻ؃{}kn(+r/^oyTqUn~9߭T~z}xo/ZJϭ7o~7?D~I$I$RyRROsSy~I=>w9&[1Ч?=<| ߲,˚̪/n~}XԫO$I$I;{pL9B7ãP*W!Y6R9G9Bý=B?wsRw[Jϭ7o~7?D~I$I$nGc2sɺ0;J Wn=l̜3{xOuP:r^ovXeYYeխگ˚zI$I$It{o;0G1=P*W{W_:qo`S(+r^] p1KZn1,kB5t7o~7/I$I9h 8S뼏׏!?- u r C{r## k~*r#l,˲&j˪[_?5$I$Iv{; G) C!7?m6zEBn1х}YB^:9ᘈ{{x?ՠTo~7o~C$I$IҜVx(Tz3(A>5z|j}!ù:ᜟS {qn䮿>7,˚̪/n~}XԫO$I$IhI=zs8&zRs﷕RzEAn~gι@/zE}ppKϭ7o~7?D~I$I$8 l p& @ny`-օSsÚ0 w{~i`Uia7:=2eY5UW_VݪWϟ$I$I$M!

}sawޤ>pfTn: G-˲ɬ߿VeMj$I$I$iq>ϓ{pLA|T~+c"\Cs?5]T/zEۓpL=?ߵ!ʟ[C1o~7o~$I$I3ߎ.CROTgjxZ_6/ro@4(G`o]_R_eY5UW_VݪWϟ$I$I$MG+}nGT~}rs,C̟yKi9G(u5*yo*7?^ ʟ[C1o~7o~$I$I3؎83R.gfb ΃υ¢Z}6Rr F8rgA(w=5'Ϻp0[eYYeխگ˚zI$I$It{_;4G3= Ck^.ᘈs^\/{8+)7?vWA'72ᘈ8_}o~7o~"$I$I G1PROZ$l?z|js{'5'p* ۓgG:Pq^YqfTzjOn [eYYeխگ˚zI$I$It}rϣ8nx J_9􊶇c \/+z?=qJAmS*?c~7o~7%I$I4g8 'û :;`[H=>}DoR+w}?J·JGC#t$XeYYeխگ˚zI$I$Itx;g=zO8&pP*ơW?Y8&z,C̟6 DWÉ6(+r?/m KzP*n 7o~7o!K$I$ipp;8#J=>~8\ /’Z_8T=<] !p.:w{{8O 5Ȳ,˚̪/n~}XԫO$I$I}hc{pL>wT^!7Jᘈ}^[R*?wvޞw}Y }gYJϭ7o~7?D~I$I$8# !O7Bŀb!^V] ΂>?s.pSn3A`YeMf՗Uj,kU'I$I$Iv4)=X8&4ʿrqOn1R\R/ 7%ᘈRsJ!716 1)c~7o~7%I$I4g8q\ǧOi>E`H=> lxϯBjNp kq8loYeMf՗Uj,kU'I$I$Iv4w{pL!R_zEo/DC,l s>M?5]'۠T^wᘈ5To~7o~C$I$IҜ-h: ǧONJ y)vxS+\B}T_s½FR˲,k2UcYSڟ?I$I$InO@yT A/ m 7?p!nqMn~x?TCh>Bʟ[C1o~7o~$I$I3܎.CJ=>~\/gl ǧ֗}.>ϓg_~ jBnkhH,˲&j˪[_?5$I$Iv{;G?q{P*?ϵ_9S/͡TCrsе{cq_V~8&ZJϭ7o~7?D~I$I$lGcW\ ǧ֏}>\ŀvR]O'ِg.p&y;3}gOYeYYeխگ˚zI$I$It}rϣwP*KCh[9B<Bù=9Gx TBhc}\kÂʟ[C1o~7o~$I$I3Bb8۟ΖI=>ps`#;;'5(5v]=8'Ϧp =p8XeYYeխگ˚zI$I$It=Q DP*W=!W D[Aj.P'^%{S2(8'7R5T@5t7o~7/I$I9ihz8Sr?1l7Z_ rC:r /خyAs ˲,k2UcYSڟ?I$I$Inw'!?G-Xn=<] y3{[aCkZk{reYUW_VݪWϟ$I$I$MRxϯa?+^Vsf%sG?6~^Gجޟ+w}ܞ>; to|s83{8Ȳ,˚̪/n~}XԫO$I$Ih)=zO8&bQ(+r,m&T(Wt5?+ω6(M㽷r/؇^ }o~7o~"$I$I y/{yz|j}J_օyamH=>OqLI }!euۋunW˲,k2UcYSڟ?I$I$In7!<{1]ʿdR_6k=(+rx5+ʿ`II=>۳0rd'@p y=@pgCvUaO,˲&j˪[_?5$I$IvW;GMy zE[Bnc"|!)-Wt?:qpʿtlXJϭ7o~7?D~I$I$nGcr\ǧ9.ڰ(lǧSs~ ?]A|>&w}k<>|eYdV_}YuDz^?$I$I4nlGc@y1уnxJ~r/6P*?pTnc|(ք?P*n 7o~7o!K$I$ipd;I=>ι4CK&0?算; pQ뜉ęQ}83^ eY5UW_VݪWϟ$I$I$M;!<1P*JW Q8&S*?\ O Do"(+^pJϭ7o~7?D~I$I$oGcAO?3BԺp&L@zjOnGgOm dYeMf՗Uj,kU'I$I$Iv4G}g8& Bˆ^_&qR?zEϓM~cP*¡W< DZ Jϭ7o~7?D~I$I$hGcgÜ L?᜙>Wa-H=>\' /]!w⬧ReYdV_}YuDz^?$I$I4ю8'<R "o+7hm`uT~ӊ{]`7 ?OrsW@5t7o~7/I$I9þh:.ScU}8ρ "|&8rw>}~)*pFS:էA$˲,k2UcYSڟ?I$I$InnGc9?*+r?7q׃R 7?q "{+7?poO5t7o~7/I$I9hsu Ygf9rsȚZا!po'Boh]ޞݠO}e XeYYeխگ˚zI$I$It=Q DwpʿlmD6TqTn~gt}xRy4?W8&z `E(?c~7o~7%I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$Is4<o   R 8>~3??7]3{0#X{dƿ-xnj`FKۃ{#ャcRsF Kϕkk`39N>aƿ+YW=IurppdptpX_rlPq33_ϼ?|0SnmFw'/ .\pn\\9Tp6ߐR>Y݃-(x28:818>hW4'x(J.d}Ǡ'?M[@YsD/y. `=>u`^s6w{pKpSpc~9 RSaM<=o񫄬vSMmu37_3so`ߟXxD|7X;C~4X2wo3|5Z\\\3>6K~?X7g_, x3S?wu5 O!;>?/^9A=8d=#*~}=yٻ Cm4}6}ߡ}!1}?Ba߷B 1eQ5M7wcwE₨o(haN^wLo}5m?e;577Ǻ)vdOk}v3_Dzz-}~Hꞽߪj^ϡ7f]Iw[]ivmYXgWj{T^'xv}gs0oZ]dwϞ&̞o=]]7^MK:'zdWPp՜z[כӫhvɾ{`X^u:{5ήJ_fgٯaFҏKU|eMjuiOӵ?w{s;fOW>Qg^g/ssCv<}{]v}[??,]kRv~^ٯg >8F]hTz~Fvz߹g2{Gӝg{t:l\v]]c~.?J̾'Nz7{d+dcvɮSgQQ}ovw:=?1=[f/,vgGө|2XfWʮg_C=@|隊o_\wvjqٵ/{'7dcݲk*'gWeW]qv5ߛmGZ]wg7Ϟ.ͮo~c;sξ^sv˞UQz_t8wVd_fzGWf׷ok'=]߳e${{uKYUvݞ]k_kKvuv}v+jp y->~'ע ȮK<~[Z5hp[vݗ]!9gGv?_O7NY, e$cFBV*X6Me3\-e+Zme;^ve'Yv]e7]VY+dS#'feYIGr""ir!gYr#yr\ Er\"ʟegr\!)W_Ur}6@2Ld#Y!+el,Ȧl.[Ȗl-ȶl/;Ȏ,Ȯ.eu)ϑ}?dc9EDNt9CΔl9GΕ|@.bD.?r BRjYo~϶[.H2dUl"fl![Vl#v ;N"n5V}8qǹs?~9sϹs?~8p}9s>|8p>|C·9r>|!C·9r>|#G8q>|cǜ9s>|1cǜ9s>| 'O8p>| 888888888888SΧO9r>|)SΧO9r>|3g8q>|$$$$$$$$$$$$s9s>|9s9s| /8_p| K42d,Y[ Y;j|%KΗ/9_r|%+W8_q|+W8_qNqNqNqNqNqNqNqNqNqNqNqNq|5kל9_s|5444444444444 AYӠ, e$cRYNS)q8eң8e2N!!!!!!!!!!!!S)s9rN9S)sN 8'pN 8'䄜rBN 9!'䄜r"Nĉ8'Dq"Nĉ8'ĜsbN̉91'ĜsNI8 '$pNI8 STp*8 NSTp*9JN%SɩTr*9JN%SũTq8U*NSũTqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssZpZpZpZpZpZpZpZpZpZpZpZpZrZrZrZrZrZrZrZrZrZrZrZrZqZqZqZqZqZqZqZqZqZqZqZqZsZsZsZsZsZsZsZsZsZsZsZspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssss:p:p:p:p:p:p:p:p:p:p:p:p:r:r:r:r:r:r:r:r:r:r:r:r:q:q:q:q:q:q:q:q:q:q:q:q:s:s:s:s:s:s:s:s:s:s:s:spppppppppppprrrrrrrrrrrrqqqqqqqqqqqqgN,rPF2}RYݱSͩTs9՜jN5SͩTsj85N Sépj85N S˩rj9ZN-S˩r8u:NSǩq8u:N''''''''''''9s8p9s9s8pzqzqzqzqzqzqzqzqzqzqzqzqzszszszszszszszszszszszspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssFpFpFpFpFpFpFpFpFpFpFpFp;p;p;p.络r.络r.络rFrFrFrFrFrFrFrFrFrFrFrFr9s.\ιs9r9s.ggggggggggggg4g4g4g4g4g4g4g4g4g4g4g4{q{q{qg g g g g g g g g g g g |9s9s>ggggggggggggs>s>s>g[ ESd,}e_Y.H2k?<STp*8 NSTr*9JN%SɩTr*9JNSũTq8U*NSũ4vǝG#g d(#D?BB5ЄӄӄӄӄӄӄӄӄӄӄӄӔӔӔӔӔӔӔӔӔӔӔӔӌӌӌӌӌӌӌӌӌӌӌӌܽQ2d,Y%ず{G N N N N N N N N N N N NKNKNKNKNKNKNKNKNKNKNKNKN+N+N+N+N+N+N+N+N+N+N+N+Nkwijݠ, e$cGU)cbpppppppppppprrrrrrrrrrrrqqqqqqqqqqqqڻU@2LdS{$b{9kE8{RtttttttttttjёӑӑӑӑӑӑӑӑӑӉS/F'N'N'N'N'N'N'N'N'N'NgN9999999999]8{stttttttttttѕӕӕӕӕӕӕӕӕӕӍS?H7N7N7N7N7N7N7N7N7N7NwN#9999999999՜=J9՜jN5SͩTs9՜N.'5N Sépj85N-tZN-S˩rj9ZN-SJSǩq8u:NӃSWKNNNNNNNNNNONn/=9=9=9=9=9=9=9=9=9=9888888888888999999999999}8}8}8}8}8}8}8}8}8}8}8}8}9}9}9}9}9}9}9}9}9}9}9}9888888888888999999999999888888888888999999999999888888888888999999999999C8C8C8C8C8C8C8C8C8C8C8C8C9C9C9C9C9C9C9C9C9C9C9C9888888888888999999999999#8#8#8#8#8#8#8#8#8#8#8#8#9#9#9#9#9#9#9#9#9#9#9#9888888888888999999999999c8c8c8c8c8c8c8c8c8c8c8c8c9c9c9c9c9c9c9c9c9c9c9c9888888888888999999999999888888888888)'夜rRNI9)'夜S9ENS9ENS9ENs"E8q.\Ĺs"E8s.\̹s1bŜ9s.\̹33m"g"g"g"g"g"g"g"g"ggtIIIIIIIIIɜɜ&s&s&s&s&s&s&s&s&sppJ™™™™™™™™™ʙ)ݷn*g*g*g*g*g*g*g*g*ggtiiiiiiiiiҽsssssssssfpfpJwߛə)ݿo&g&g&g&g&g&g&g&g&ggtYYYYYYYYYٜٜ=gsfsfsfsfsfsfsfsfsppJw!ÙÙÙÙÙÙÙÙÙ˙)p.g.g.g.g.g.g.g.g.ggt'yyyyyyyyyҽsssssssssppJwc\YYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY)r)g)g)g)g)g)g)g)g)ggteeeeeeeee6sssssssssVpVpJw\YYYYYYYYYY)s%g%g%g%g%g%g%g%g%ggtWUUUUUUUUU՜՜EWsVsVsVsVsVsVsVsVs.\¹s %K8p.\¹s RΥK9r.\ʹs)RΥK9rpppppppppppp.\ƹs2e8q.\ƹsr9s.\ιs9r9srrrrrrrrrrrrqqqqqqqqqqqq\s +8Wp\sJΕ+9Wr\ɹs%JΕ+9Wr\Źs*U8Wq\Źsj՜9Ws\͹s5j՜9Wsssssssssssss\ùs 5k8p\ùs ggggggggggggg#g#g#g#g#g#g#g#g#g#g#g#Zεk9r\˹s-Zεk9r\ǹs:u8q\ǹsz9s\Ϲs=z9s6q6q6q6q6q6q6q6q6q6q6q6qns 87pnsF΍97rnȹs#F΍97rnĹs&M87qnĹsg3g3g3g3g3g3g3g3g3g3g3g3eTP]konH2A* q[8[8[8nllllllllllS66666666vvvN99999999;8;8;8 s -=o¹s -[8pvqvqvqvqvqvqvqvqvqvqvqvqnʹs+Vέ[9rnʹs+g7g7g7g7g7g7g7g7g7g7g7g76m8qnƹs6m8qnιs;v9snιs;;8wps;8wpɹs'NΝ;9wrɹs'.]8wqŹs.]8wq͹s7nݜ9ws͹s7={8pùs={8ppppppppppppp˹s/^ν{9r˹s/A΃9r}9s>|8p>|C·9r>|!C·9r>|#G8q>|cǜ9s>|1cǜ9s>| 'O8p>| 888888888888SΧO9r>|)SΧO9r>|3g8q>|$$$$$$$$$$$$s9s>|9s9s| /8_p| 42d,Y Y$|%KΗ/9_r|%+W8_q|+W8_qNqNqNqNqNqNqNqNqNqNqNqNq|5kל9_s|5444444444444 AYӠ, e$cRYNS)q8e2NS)444444444444s9rN9S)s9rN 8'pN 8'rBN 9!'䄜rBNĉ8'Dq"Nĉ8'ĜsbN̉91'ĜsbNI8 '$pNI8 '444444444444Tp*8 NSTp*8 N%SɩTr*9JN%SɩTq8U*NSũTq8U*N<߽, e$c׽,Y{~9՜jN5SͩTs9՜jN5Sépj85N Sépj9ZN-S˩rj9ZN-Sǩq8u:NSǩ/nG&M(M*nmI*"ðۜq9{Ϝ={fo̊983nDF9k5x~|4`2NS)q8e2NS)s9rN9S)s9圱 NSTp*8 NSTr*9JN%SɩTr*9*NSũTq8U*NSũTs9՜jN5SͩTs9՜N Sépj85N Sérj9ZN-S˩rj9:NSǩq8u:NSǩs9zN=Sϩs9Ni4p8 Ni4r9FN#i4r9&Ni4q8M&Ni4s9͜fN3i4s9͜LaUYa„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ fJ?t, )ܧ09e~nsg5/^Uv)L\*( 6$ S|yt9wǟ#]P˷ė_N쏫*^?ʵ?l9~X᏷罁Zڴy?ux߹>+/}n™}37ܷω5.rW|LZƷW6>lw۟?}fsJ|_"Ϥsmw#^gF|e>?lώ?ğ[gϚW0a„ &L0ãE,dH&dRdZF,]d*){޲TΉZar' y\ Vy\(rS Y\-+U;iE2!2%2e"KdWMv=dOKr+#rY$2)S2-#dg`GjS)s9ŜbN1S)sppppppppppppJ8%N S)pJ8%N wɿ%E2!2%2Wvھ^iqqqqqqqqqqqqsssssssssssszpzpzpzpzpzpzpzpzpzpzpzpzz/Y$2)S2-#lOzj=Ҩ777777777777S)rJ9RN)S)rxY$2)S2-#Uq|}////////////????????????gʿ*,E2!2%2g^9rrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssFpFpFpFpFpFpFpFpFpFpFpFpFrFrFrFrFrFrFrFrFrFrFrFrFqFqFqFqFqFqFqFqFqFqFqFqFsFsFsFsFsFsFsFsFsFsFsFspppppppppppp8e2NS)q8e2NS)s9rN9S)s*8 NSTp*8 NSɩTr*9JN%SɩTr8U*NSũTq8U*NSͩTs9՜jN5SͩTsj85N Sépj85N S˩rj9ZN-S˩r8u:NSǩq8u:NSϩs9zN=Sϩs8 Ni4p8 Ni4r9FN#i4r8M&Ni4q8M&Ni4s9͜fN3i4sqqqqqqqqqqqqssssssssssss&p&p&p&p&p&p&p&p&p&p&p&p&r&r&r&r&r&r&r&r&r&r&r&r&q&q&q&q&q&q&q&q&q&q&q&q&s&s&s&s&s&s&s&s&s&s&s&sZ8-N ipZ8-N g*g*g*g*g*g*g*g*g*g*g*g*g:g:g:g:g:g:g:g:g:g:g:g:g&g&g&g&g&g&g&g&g&g&g&g&gggggggggggg'p2 'p2 'p2 'qr'qr'qrg_ξ}9rٗ/g_ξ}9rfsfsfsfsfsfsfsfsfsfsfsfsp>}s8s8s8s8s8s8s8s8s8s9s9m73333333333888888888r䴽9r9s @΁%ϙϙϙϙϙϙϙϙ9s 9s A8q9ވs9s0`9spp]qgggggggg!g|9sϹs 8p.\s 9r.\ȹs!B΅ 9r.\ȹs"E8q.\Ĺs"E9s.\̹s1bŜ9s.\̹s %K8p.\¹s %K9r.\ʹs)RΥK9r.\KAwv$_ 2%2KAFfe /\ƹ>їq.\ƹs2e8s.\i{9s.\ιs9r+8WpഽW+8Wp\s jjjNۻ]ᴽ_Ε+9WrqJΕ+9Wr\ɹs%*U8m~*U8Wq\Źs5j՜9Ws\͹s5j՜9p\ùs 5k8p\ùs-Zεk9r\˹s-Zεk9q\ǹs:u8q\ǹs=z9s\Ϲs=z97pns 87pns#F΍97rnȹs#F΍9k9k9k9k9k9k9k9k9k9k9k9k97qnĹs&M87qnĹs3f͜97sn̹s3f͜9pn¹s -[8pn¹s+Vέ[9rnʹs+Vέ[9qnƹs6m8qnƹs;v9snιs;v9wps;8wps'NΝ;9wrɹs'NΝ;9wqŹs.]8wqŹs7nݜ9ws͹s7nݜ9pùs={8pùs/^ν{9r˹s/^ν{9qǹs>}8qǹs?~9sϹs?~9p}9sy>}8p>|8p>|!C·9r>|!C·8q>|#G8q>|YYYYYYYYYYYYYYYYYYYYYYYY1cǜ9s>|1cǜO8p>| 'O8p>|)SΧO9r>|)SΧ 8q>|3g8q>|9s9s>|9s/8_p| /8_p|%KΗ/9_r|%KΗMMMMMMMMMMMM8_q|+W8_q|5kל9_s|5kל}tE2!2%27o8p| 7o8p|-[ηo9r|-;w8q|;w8q|={9s|=8?p~8?p6s6s6s6s6s6s6s6s6s6s6s6s NAa'Y$2)S2-#Yw 9BN!S)r 9BN!S)q8E"NS)q'Ip'Ip'Ip$'Ir$'Ir$'IrR'IqR'IqR'IqҜ4'IsҜ4'IsҜ4'Is"Nĉ8'Dq"Nĉ8333333333333S)s9ŜbN1S)sppppppppppppJ8%N S)pJ8%N ++++++++++++;;;;;;;;;;;;''''''''''''777777777777S)rJ9RN)S)rpppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssFN8;"Ii<0#2Fq8e2NS)q8e2N9S)s9rN9S)Tp*8 NSTp*8 N%SɩTr*9JN%SɩTq8U*NSũTq8U*N5SͩTs9՜jN5Sͩpj85N Sépj85N-S˩rj9ZN-S˩q8u:NSǩq8u:N=Sϩs9zN=Sϩ4p8 Ni4p8 N#i4r9FN#i4q8M&Ni4q8M&N3i4s9͜fN3iLLLLLLLLLLLLٍg7n8qvٍg79svٝ;gw9svLLLLLLLLLLLLكg=8{pكg$$$$$$$$$$$$ddddddddddddΞ=9{rٓ'gOΞ=9{rpZ8-N ipZ8-TTTTTTTTTTTT444444444444tttttttttttt LLLLLLLLLLLL^8{qًg/^8{qٛ7goޜ9{sٛ7goN0.[Ya„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L$dB&eJe$)gFfeNG_{\x͋Wx+}^S|ߢ/+}NצxxO]|DA邂Ɨ_N쏫6^Ƿ_͛o{udk͛Թ(^wg'_υ?U_O}AfXWOZƷW6rE`l+sJac_<Ϥsmwy)_vxsW}agM{+L0a„ &L0qf7O(]3˖brW=_]_eYMYˉz -7ɬkyoqm|W۰c6ճ}~[vxƭOE/;gmg֏e_۽['?oZ--NSE)^Wlz|c,?ݺ[ol7_֯7m[G۾r|km~ܦu*<kSC_m׵f]{o}[~ܖ]?j~ae[WUK[NImV~zأZvዏ=cwu^c9uңwOuղch͵:uz.?uߝ.]}m@ǕnmV~zx=? +?ŋ]պ8yvыZ;h:wZG_+'<;|;wu9z=;o_|;vyso;&L=}+LGNz~_쪯͝] FϜQob7g+}R3:>MO[Ǽ8c{gM=7:M/j]rqKwt2uUG:oz;~+CӁ/,/fav~|:wfNxWqǾZi=Ǘ.[o_Xism{7Ÿ_I3mn`N?x; +?񹥣_oZZy.Jr̘ڱMucxGםױMk:mf'>#z_ϗ.Xt w׏sAn~}uocy=h6oxǫ5^ ?yOL,o,jhЁǗ.+?#uFG~'#/}LPǸ]>;]]vxxOpۊ=c„ۺL/;KA/hs]m9 1ؑ[ۂm?8;d)L;y 1m1Z~[zNcPoۺms]~ۏ=?;B'bm%GcXNzx=uOtƛ8o\~缝|kۍG|w<m|[.o"^7x]?|O+'_sN>{^ko~mz0^W)m~Lݹ#^/yw_A19^6_u}A[ﶽskMA۾˿SA۾6ޮ3w-Yvg{o <>oyk옷WEQg'_0^Sgث7Zwk`WJprjpeppercorn-1.12/delay/cc_typ_eco_dly.dly000066400000000000000000020730001514752025000211200ustar00rootroot00000000000000x̽wfUy *XƠQ`i"bDDPzQzU">t朩;3*EDhbyILMϺg><9ϳsw[wjyIs-juNs}nuuGs]\4=u^sm+Ksig}ys\wu͵?uMym|>\O4?6 rJ5j?4*ߚ?ii֫56Wn՛kڸ>\n/6F͵es}>\4uCs\?lz*ٳy5دs%uYsk-sڹ}*>\kݛګ>\h=:!~Sx߼;nzaVj;^zSsmϸc<'9xO7~͵Gs\GB^}~.}53/̓gY3xhz|3 ~l\A1uJuI_6׬xb3\6uw<˙vdx/W7׷;oMf8YKc |}Qso4?4n?6=sŐ_d!žn:Vn{7)[5dO NnoL9.Hwuw]ql\Wb}-9F^6ÝId_^?ٓM[F׎{eαȣk:nloi>?g_ek/ [ ݏ.\ohw5צ~Xw8&\_i)qzGܼT>^\ŖI&x6ݴF<':hK'E:/×xqC5Aی5u]cCrOlੳi S4߯Oo,F{~0[뾜kd搷':k*|cGƧ%!/:! |3^s\6׏r/~)Y{]wb/Gɶ.C |~!lycklC̷>Ƨ@q2wK3 ❠xO\YC~6=dF_owӗ˃6!T|m|;3Z7 t~$>s};tbZ o"'^?>yv,uiȗx[7_a{;kz,xxQ0?sSi\m{4glV-?ctЫb_r3 rw yYsYNazW7t(~ߥ93 y "!=rEw.+0<7eSv>z&T=YwQgu*gipEHt%yn<0=2d@]Gt&Ǝ};dgyGc{1/LubooH󯟿nywءGv :+=r:?hyRܣE?'*xE*qS'B/}^~O<'h\tV񬇘,e d]sZ9x X5&;?acl>t+~)x ~?:BDI~o$oboNur{g]?e{HEw*s嶿ipEuĮtEF^C7`! 8<]Fwޔ'ĝѫ&8հiyx>>X<JkeNtvY9]>?i.Q^;2 Ͽu=>rCUk~ups\5סTΈ)?/MsկŇ~: bЊ_i9kgcK #ߟ}\>4[Be˂I%b/#bo9On<.3F{h }X.qc@A+b\?s ņweQwsM Y@n=~;G:| #/݋ {H9WNvO錣xkqi/+Ǣ7O%X'::* taW #bEb ıQ?ƞ#/d<]rۗVPӑW. %-V /_Z _4󿊝5'{|ў܎+RBe#_xyx':> g\_ tn*W59 zU 9[SbEaK9;QMħrZJ "{IEɯEY#މn clsmϻl\6͵Ws}~]kԮe}]?y졼[ pds" κĞe,;CYsSs'yZ/${Hܳ, <4SKŵ-Ѫi/joKYx/;5Ǟu@&?|`O"[7g@f?f?OT1kjX?wj5d:4O_U{ Hop[3FW/?3%*y^W6c??res}"~~boI{,ۋ* l2g-](4,\vu~ߥs>gFNqFF9Cni?_4/0L@xğYykGDy}6kQȃ|Q蟾/ S Ԝ A,7G%ȤY-oc%5YVεY{,g&6x8/ N g'{Y֗Tb=^JE3ZԹ;M,]S}E6woSv~+usg]K+Tlk_Oz)λɧ=5Y?}ӽ|7 QG.==3:}w:g<ij_{>Y:mN*crFII1UziŨ/x˯x5dk֚\5YTtթ'=l/ě_gajeq!+' .hfc o %۪IlϞ;L }+ggp9"ȣǍ"~ў)?һrվ勯2&ֵI>)9jmԞjߗ~Rqif?? ri{]l12Q :*~^G 9W|'}&oA ѩ؏vXb䌐mr?`үd'uA<4g_C!Roj@Kw*GrsȻߚk>bԋ᫩}FM܋U}<>(%l6K-KMM@;< @9_i{w}gسM7,\'uϜoo#oZuGgʻ:k9>CbԬzb9 O3B~9S qtj&KYپ=Ƴ|i<ݏR#ma^}َLqVU6f7& |/ 8c9LD=<}:ӗCԘ*u3dG/ѹ+mNIcgžp}qix@ck*<>,yE)i;|[{>lcM,dJ+).9%z\6̓>!`o;F/C?3{1ggz?+d3r-t8WmzLsM/dvxv_}TDsZϠ[=ȥW @.ޞWǧ|=esʧMtg/oIӉ呅ԭs]|dzd{qVĞQ7V}+?;/w|b z9/:TzUWH_zkn$:>7i_@=="6zȥ|2=^h|%<Cӡ;, axwB։O0>~ı`͚,_T}Ⱥj:.5C#^J #_Nu]kbm5;?X؇7e4n>t&ɯjI~ԮGҿq_Si`k-+E|V3_mO6 _v}_M^5<]ŇQO?O!}U`'J$s9SRYy.Ѽ+ׄuZY6S x'|lnS"{WѵЏȋΊbߗƻ 8E2qbW?>t gk߳;{wNT0]N{pIE_7QPgoOm@bAc#?>'x=,+}!{@Nqm2 ƯOWwxط?LE? FWip?4 |͜z$^R$yKX'||"`u6|=r|V}0x/207fο^0t[V_~wsl x<-x'O-MrՎݛ}y'[ spP#κ?)L$"U1~Tj;s$=_I<ı'܂y8~;Ͽ.xݩՅ5OFZf_GRLz,?ctȴW: cV)d ?㓽"q}NK+Aāx~,XLW̞Z*r+:2Tfu\&}]S&{ggtk#y: 2˹ {y'9W ?Y7rXVO{a8p?ܙ!J/{^*uΎXࣩ[]+31|Nr#sdӼ?? N=L8Џ791W\#+_\rbLakj_?GԬZ#}*H|<"'9f_]=7g^QXq/~ nO=]űUI*5(ԲvJ >F~ rrFWL+ۃwﶉW|/!iv 6/V*4N\=YMC ߷#rI0OJ?7gǏ&쳃9H`ϵ=!;Tbm礂UZ?Y;U\ +< [+ R1Z_-{$WG5bPFMbh's9r/9@ 'g_'A3?qsȱ&&=gpıB _ygR}zXfk3Gƞ;q}|M*8p)|jP"2BBߗ1Ŷ뜋>]fa{^Q!OX^R.)XϢ+Vm.Sw,qmRuŊC{+Bnx.y/-XWTa{S{T09ë́ќ#Rh.1n%~5kе>_{X*=Z>&0fvgT*8ȩh/qϿ,H&wq]=˲Ԯ+t?'>17O75<:S8ݰ>{$ꦆ yoq(E5w]ߌ`k{5Q_TRiGSrb_Kcayj,τ_}Z5Ƃ?fƒEY=?>ӽ}s8.£zm?o~L5sI`kF1p!y^{ 7[z5V?Y˿<?6#ى_v} 9E~_[R9#kf:g.f^uU)w#G@?qhOZ~5rx^λvTbȾ^Zs 82:,+'!$9yK_ϲxQG4&,}>\QOKk{iJޟ v(*~Yǃ&s0:dW~~ks͎+0Y+ߝTg+ ϊf޽lۗ~ܓ=?jB_k;ٸ0Qg_2d*?{4{õL{~kPjZKy;Zװ܏?9Z%{?ܞJr!Q_i`T{_p\$5 3,|i᷃;Iws-~R_qfz(r!QtvN*׿`~s.y2sTT/1 Zز?JL3)|hj ֵU-MןJd|ebԝ#?zO lF bs;v{T½JCkG%[+y"?/ߨkv\3Y 끻]YjĜ #{;f}KS~u?}u3~DžG^WuM'γn^oFM~kWL|Կ]1GQCŷlTMF_343~= {+y󣨿K|'R!K%Q߇ȧ{sICp=ZQ#O0]zW3W&Nu$!ӽ}wqb_D2?Y>4u.fgg^H_"ؽS}. >gTkq隽}#7_k3Ĭ]jUGI}?λn W-2r16LT]\Q_Kz-ǫcϒQ| qZ^>cD֏Pkq ;kYnsUrnL'x }W9~v4 _~I܇ ^Q? P-ܲkb.r}fĖť_|zv _Va^=9ErKS̚ߎ`U;^c]߱ӱ6B"~wϏ43E¥>1k;ǥ]^9kڜZ\֯4~0z, v֪^jc#(w.} ġ_+w@ (Gx{e ŨmdΒr/_H߼/bL7zH/;;QeMoxS{[`at!napTTCz"-K4r k2ѯalOerG^X_8W^U &GIdG+Q'`WsJ~av]k8kO%0ֵ|ddy^V*B~_q*jy84´nywp_`=뾴ڍbb SU~6ώOfM7s>m{?N=y2n \τGו_a bI*7TjЙbc3}C\Py*tꞯL >A \`_: (ο}看^;>\Q^ɝb"ܽ3aMlȺ1NV! DB }QVȃj'%_Nrz$Qow z x G<_Z?B-TԐgT_k89sbݬIUy㜋oL33,r(̨,ՑI%7 ~/_=GbŶfEGS)&?xtp9vKu˾gWwz{~bJ.9Kv_މYK8~5F?} ]~Rg`Sv3FQ?egkwMmq-F_kwvֵ=N} Y֠\/ga}&gDK?`~.y4߾K'ك ef˘.ݐJ Y͟e_QI& Uo93siNy9A?30xNfyM~K}+_<❐+`~ }c/x_X90l<4axo٩ O~^.{zpV{qg{)~=? |f2{g|5L|Q|- dT)- 㳚<ο5ޝ}}^oPT07䕞|3`ĵ}}#,3 W'n̩?ߝ4Jl,s9#/s}NLs@KR{TQ{  9%_N}q<|VD6ypy?ϴ=[_e{y}ѲTzP-J%΂na"3䒹̂c.:3U.[w !9xJ4/ ʮɟ)nHf7k}彦?eoG/>xkV}Ś4Q3>1LE8#: 4G=?4g^|s~=>.|#fV239ؗ~W3===NЛGY1kc嗄|>,3t\s9]N}~륝sa /׺Fo]JUh~f#\_;;|.s\6ڑR闖CĬɗs-(M\<,<'ؔkz-VxK@~3pƇH,Kxv ^aUfk5'5o{r=gRv_5h~CWN_y?) hygaD ǻY%S~w.*[' ]^_Kt٩y,|y~|~<{`nyBn 8 kTP]~]֜e{|+py=IPSTf"uSq>W`__:s\lz~.\6`s~ dg vN TZ̨_?f3H33LVE ;;r}\(WWh( U2)_a\] wa7l{\0Њ.:u+V֌})+̳$~% Omy~(Y'ľtf}8κ6W6G6yTf㱷#a;`{_K$; \xfƦb>'!J?>BUV)eFA?τw ޹| CX`mWyyw9coz{)B5C)?ëp\юo,;A7s{c>?-M=o'; GttnOkF-Kgr&2tc~yF@~}uRx]+l^v"daXhYy` U?_5JJߩj{yT\3r wB?v3;k&sSF4w92/>nC9_RӞS95K0Kx+s;u,{P}zTyp#ieYr#Sץo&,j#ى86瓧@VM )_;|{&&[nK{lv0~;C7UK wwm_?ʹ!-1qRai.=zGM9SG 6\bWWN~<7{;B0x9&ϒ dCŏ@'A_U!5Зo 7лvmsɽq*˾,|cdSeCKFT'(tY*פ[ZjW}jKSϿCEJu^!ӫ\zsx/|<yM䚜wrŗK?VX9H/ƐWįv̥J.Ýa~$O$3xUgH:o 9y7覗ڳ{T&qN|;3c V \t|ms+N.[pLȶZǥrsFf/ݒTbWiZ5ן穭|~ LZi:wl&{@{~&!x7YOݗ~)g7{cr܎3+{Dnג/';<>/ =4wg tdЩeqY3*M%{/>,/\5(Tٕs$;~{OpHW>?Y*C_{W=KJ}ĩ'[y=wE~_e|~ z?>z&O^9svO7J:/_#5_{}=N$^E\ L.~d-exϹWTpl@ُS/[գ޿;qwKV ]µ39w5?6T,lw;WѧG}wlU4 sa\g_7Y?KiŪ!gmpe's!G3puV5fbw}#\KL8;ww/{,e[}]8jNdI☁It_8Ww*xu]\΍3gݿ(=8Z%^,BJVi4u}_kͧP */Ky`h^/zYuţKz-U__9n':/Wuwqjvfg'Q͒/=Cj_=3+q C#r{yOm|FE+w,~L,|F?6lnC*9.~0u/uMkkիwNz꬐KW 9 _w#{k]_r /{ˌ1luU?qeοř}Ya[K6pu][k/kdvQ*yE=XDϗ9 n*90_>?RުϞˆY.~_䧺5^\_uP?߁8?vn$Ŗ'si~V{ܯ;&׵5>;g&_H׿_Ff*~l8>?`q w_v _tޗl ;Tij\{KG?k<0;r^Q?˵a\znĩ7s[So˚`1+ab t?Һ;稖?} ХxJ^RS⨟ 1L~l0-C2~OCl3i+ǥ駇{Ds MJ3=S5YaMk])ǩ` SwE??s\, b]w~G<"&sQ[}=޿ $yӗ~Ǐ9#^',M88/1w\&xs/C_z*ͦcW ,D?"~`aP ,}Y<0dsj;Ξ?{Z.:8yE }gBI`(]ÏuEJ~]zW ւTN Y= vxI?JhC'z?ǿI*ĝg,:d\d %176b=}l\ud/Stq37NNs.9ã7Tp7K~y/L~aO >] ֙t+!dNzAouD/>r4Ov{TWv_*X 2!!w=gACvՇ'< {rSQ& Ǐu=4/0Y:! ǁkg'y;O?lei%nř4I>G^]oWs9?y5'Կw Wx/¥/)˿n4׏뷹?]7V.'TtO% @Bm| ԲQS_vvY*5Vצ2:8tudO_쮕LMv7 )h9A|Ѓ;pW}AjcAN杩Om"K7\02s.{oaS,zek=yZ*rxn+]񟅣uj꡼j]n^x*t8K9_a]3 |e.$ vCufaŝDΏ4U=+q]-CWgq\eq:1U] zJϿ-gsFѳŠ# {/7Tb3A5=A7wS|Cw9OK8u)R;Wsi˯qu_\;?ULxrJsw. M6=I/cכ!^7_/^-ꃁg렦 AiY9^LҎ3&?\bYY39) R~v TzK ߷Os30Vk9z_RG⛜i|.ѣ? 嗘oxNe/sBU}|8w>+rso&Dž7VPx ?)_%~ 5 YzLlȈfHx΢T߼a5(Vn϶;J.;yuygqnϊu○ǟxC.s%w$;L~knɦ?/ C v ƕ7,;.bXU>ƿw+U_bϊA,R~uS\bNmy=9dW/?!wY R^naj9j*K9J4;κfg׵xz#59, j8=(O|WV#!nE==x{(yxֹ̃ӗ_rwħlp_yvtCޜn>LAc8qY2Cf S`3s;9v^"yO>'>rEK~}~6sۗ~KVz/Y.>fC]^('I\џ7VkseMψN=^]_ ïS1/G?V-v :8ha7$^V˵w>Ffs7yQ=߾{ο~vnj/TώgP.%#a Q~]o9=)Lx5+z^<'%.: `[R3їT/KR~boex\jESG䒯Cg[N)>s]gς?xF>o?~{o- 6/RS<ʼeo`Cfw~Y/at&sv=Cs|Mvj;N⟋w_oe%sbȯK >SL{W,͊!PYXśCv?4kNʡ`*۳HW_iuq4/}E7>3\_f{~%ıf2g}֘l[]o{#i M+/1~3/:;mo?m<. C= 9_?~ϙ2=j Tg^gZ|-s |p.G=!{י;ɯcQʯ' ~v} պL+,#U0Y>(пmЗ~ٴSoʯj:qթ7_wޫv}?%zȯq#k}I~m6~Noka,묕?]?;cO%& O4Kns5R +<;R^X]5IMcH:NMioTz3Y[Yūuu {~TzyT{G?{|~)Y(QOwMޗ!3 sԎԮϟnw 9oWǗ*~ax;[j{z=7UTj}{Z8y3UDj(<U'h*Fa)V39 gXGї~qNǟQ_#2>י\yw*yQW͈*g"SN{Xl&nsx´Bibtnsk5y_{׾VۜκD += ěANt_e샰tToѯj<:JdY6ѿ0xU4~4!?ˇvs ܯs1i^Du4 ?vYZcϬZ,އz{=?sG}_Jg_v(3}R^󻅩pƎ_/vVxﻦW:'?˗^s."# ꓨ"H]t~Fcߐ5M3;'癕<馿/x] ˂5yjqnW&}ck_/49:ӹ?Z_2{_seG7@ܞυ k%:W=}s话[OxGxZFޣvhk_'yWWbj oq*tW_ ,9sjTo39A]=sk>7jw/ߑ.{\g;:kjL]K==^Y-`=z?3n_}W=Um~>VKhcks.N;K|v@#5N9έ9QunkFJ0{?L~Le~; kOZ1ǕBtFi//ytOH 9Oغ̀q,߯Yɮvg\Mnf=xD҃~bo_j7ŗz]Mz¶ƒU>`ܚ7~y@%Ͼѯ8u_=Q 3|<ꓥ֟sKAgT04gܝ|Sztz_xV.=T{WnmF } _J 0V7EV@_ƹ`A*r@b@_!#s>jSprth_2~[g]#|ggWtU/}q*u?ѸO^ =w.YcO;db\s_}0tY?+j;~,(׸4 ,XrV yW.]Ҭp= ;x`-C CVFUBf׋߽=hLl?}Dfw/O~ >_Jԣ֎qYc^ p .]v=@&}]թkvj/\2Æ|Q=?`-qq6-t&-֘k?,J9Պ_\8-/<p(/g} ű~u,z/.ֈw(W,ɀ)ߝ'~ ЎWM?鲿{|KO'(]9ZX:kkOϳuJcJoϫf-:_d;^/xMNm+\fms\\v}NM(3_8:vϿs|3dlKߜsY\ѓ O K?2.&!׫n<yB;CvO[|$}KncI|6LJlǯ4 9eбOR|kjﮯ\ȯ^bjYi~g|[Ⅺ@w>/yu >$sfGEy0*Ftmg ‘՜#9w0Z76^"˃9)ЏK{r*x})䚱~m_SyV34oH#?7SB_4-=toS/U8?m"?\#RE:49O6lQ_:kS<u JK|k럆w'Q/n<.Ms2x_܃σ *xM5y/)=r{N|`O`wnqVCk<ߜJ:,ϻYwxȲo5X'dC1\f K?ny"󧎫X"侔pL?#?[?iJ9I0?"y^gr£U?G ngp\p) $s!. ܗoSxcI^)_X!  !o՗~TnKm޻hFڹ~79y nU-uLt̬!v?vz %Wٿq}7T_UnFly?^*I7]?sI Y<$9ypO݃ߕ?3_Z3 }#)dG_}m\bV.CgC5p<-?"D cUh0)5\sݹ>#FTNAzH%wMn\\N0A7]G=9rG\eǽտ8jİ1KG9@SE{_=}[`5a?J ջR7 ^Ǐz?}5\[G{x,@]8<2N9R1?'ZQGbU;#bۇ~٠=GϏ>p+75q&׵_]:u\_|J7.,pě!bGޗ~xTp]PN 8e3~? SC3Ri?/ |$k9_cIg%Ȼ˯ʇv~-O4Q^iz"rzTOk,y4G?}(o_M!K?h&4,nk8ur8ެHLgU z%աk-=W53%A̙/X:?OY*>o9:4K!{QүSf~;{}Α5̅ww\D_Cv卩Աޘ]D*x8"K\FTf0+<]VO#2_%O_R[Xr"n; vԎG9.%22M|O}&_w$ת}kיVĘyFՁo}di4u}v_*5l^>ۯ,G²;/4ž{k.;QnA,3q*l25rO\JT?*wp{g]əWYC!i^'׎?u,M_~.⯪c_nIi {Lu&.OoM7yħ9Imni Rc9!_MnVAZ, iz8~fq/`PJYTCA_f~o2j_lq.ZIЯR"{.9{=gx>ǥbg#{&jxw5\oXzSyk]#O`/%U=_/ 9v` ?E?4 w}sv3cCeo';,y=/,ٯiLy2}?V6 ׿?/ ZJ=FOA(~ܹit}K%3WzA(gW נz_ᅩKO#}Kٝ;u= fp9Q7"Mϋs_wXSS\z'^_>;sߨWN|}5SCkYVybu^Oz7ͥfxFz 5kyR5 ~c< `(%{y[ax>wgS_g8 j]MO?OJ=%z:qS_T8 Tf+&kqtg&>wpx۸.´VSb^73=S8O/1cKߵ7OmOd;?E5Ӽ7,8'ٳ]pWt|5x,^^_-"|3x߹yOr. ܟY=/~~   ~炇(:5~?܈-Ɔ1R z. ['/涟#>:5>HyCŴx.~G[FRiį&:j_<㝵{?#:gVwip])i/ ~am֐;d!!`O2L,}NkCeW⻹vs\lyrb8>'Hg5~TD?[$':g,( ?Y|~0-my2}Ǩ^`&c ;vs}u.X{\_pՙ\Tάų9Yttǫ|;;ZtOf=#ҝWvkY}Ͽ4GJ"e99?Gw9.~溹#Gf˜x_1>43 /W_ Б+֮V5||flOK ,Jeֵi܏ޟ,h*Vï?3rB~wqu_y^kGu~UwSϏKfUOPM ĪtQS3/6,;q_X}._%ȂfE' P,nK_6d*vo|ݦ@wGܘڽ$1kb5h%'23ܞ(6.CLTr,{X<8jQɰc:ƚ5vRjU; ?W-r@zuNZb_p/2Máu>jno ,G?aWOV-l𻥩|~4z^sga /'_tlS[^ K> jYP-ͩ84+v]jnjUw/vt9ͅq7cs} ܟ~叮~.~)-_|.\rM*qB?5N~|3} l ŒE~AR Gx͛Ϗm_+!'Xc: V<=9lIiTřk#Κ VcWJ78) +j}8bېg57bŜ%߾v.ob3'{^Y_~ >KG ?F8N4Pl<ԍ?{]r>LsHAUcœT_?1?/2 gגuZ򫙺%y`fyY}_Tǡ wg_\>>K=nğ5?;^nˬ.OoNgؗkyAl-xzzvŜwSg`/ߡ?%L|ݮ`=~'_1 L^0/q(F\| rрO=OD`\;K%A#a!/ܾ2 >g? ]f.1i-JnS^IsɕKۅ%Z>q)6C7Oۃ>XMv{}Gslc"v!zs<[y?Mͳ{$uB-4.ǯsZ7eBfYo.3]BaK`{.sߍ,%cB蜻ons_ͥށ: sKDzyjci*K7NYI\EwC )zX.s ]Y8^N8j>?>zc5cy.5vWCʽrT^ 3%dz~-XYU{x}*S_!ǯŏ#П_vʗo ְ(d[l1Tc:YQeiygN), ١ Ú={^~q&6 ^G_+3jR8*ST?onK?7S.RnU|9zO.3=ﳴdueNqM~'aZ]tsO~<<]`%_%!/Iݮ]1ν?_ N!UU|?efևB۵I<6!Y<{9FΌ7JTrG X:+.V,Zh1ok[znzsRg9?ZUӿB.5yOZl;xrN.}cQݿ Sy^TϴZ{=ӧOwk9u{]oY`xn<ȯvձNԿk{/DžkgXl«s X3~Fnf~Fu_Tdk\_?X z3 jg[{\f.o|/yx.Z$T?'^WA[9>'Zu;vRLT۬/1dTפzWjx'/ '~Eyϥ_B {G[sNY~Ͽ^\fz_3нkSmʯ#xMi7㩜G|M0X? hp9!LgAOn9༈Cfol|$wFyAxs?;UQ'S;NN19z=M`CK4ޘ񨚜:jk;gޱk osV:1cљ{ЛiGǞマKM+^z/G^]~(Ω\jnm;8uF.5}@TqI*}y < ?qMr=<ܮ=g\t S_'pj2xr9 չM8K3xf;~k˘̀AnoeϽO:C0ɵjwI;pelߦR~rm9;^٩`CkSٗOz?4ߓ Cnk@wKqTwo\Q}`(ǮX*ɬ0zB?#_һiVf"7TjRsiy=Gr[P͌n535HvHbs =Tb.]YY+՟{S{ ) ;d~_`үسQpG?}9 . W~T_k_;>Nu.;nrv5W9K~w:g_Y籸κۣbvZ۟w_xl[Xjϥ%'AjVɲ3m,cͣ4}pک,VQDeAP@"2 C0IDd!w3@f aLA)˲{^W_կ㷟9y_r`s| =g3 =fxw4agΡַ{XʵV'-^S=\kϣ/beI>>cߖf6's ~tpmW((!',4&5}}s,pqǛ~An}:KXkyy]f?#ĺE/<01y`n$_w0C`_ v.{X˄Яq.X̏?g1{u4 1#:gGLw)MKy ٻ48yL/@vCD>N+Rs` /ܿyBpұϸ4C7 I?;}R9 R``V39&捖?mXs-Gspx) 廏Ue\\~ ?Xus-ε'^>[oZw3"3W]lp_`Egu~Gn݂+ gsyǟ! i)_qvZ{I)w^ um_//BB>7N_ѽ}Q/Rݴ_b}_@pY}Ń%~L0uc/%ּHqtxH,9Μ}]cƚ#ϖ-]]7w7ꇜ'y1u&l11HBbk/_݃Y"._[?|3g}C)sGg]=iУ[xx.bElE}Xޗ8]g3ο+OL2g1c5\wW-g|CswzRji(5U_3dQ?` s`~]r;sOq;T.;¾^`^C%~;,fw~߫,_[oW,ξ# m.<1H1E%^N׭hj/Z<|1"'rږ)/{#rJςXF9ݷY~ѯ #֏W30gb|^_s}-vwewLme;gٛYo2{Gq%';f ,w]^k>EB?u'b`-.8^x7SЯ W?[_JL\j̟eǥ"^cQ>C˃78XNOrW{cb <"7wuO1~NH{@?l1P~uSk,XE]Xq>Q5cBZsjn?#Q{?-wY~/nK?g잱|W,v,+? vа_;:p!.Aw\P-fg~FLAR`nЏ~5EjmԔbиf@u,!Xׅ? N:L1=צSmMPyl¿*iJu fk[rܗ_jE}5G{%MOq8Tl)rTH柩_5DKě)rS3R`z'?s)qE#YeuxOut S3.[ܳky';\WFOkwB].sز9-(]Nww3]d3fܕo&qօ:_>9_!Ck]Rq=̩ZBۻicIKKVD_w^7 ^{Ujl+qwao>Caϟ\Ö˦ZPFq1wEL!mym78ywOA~3NoGr>m=<+Riܩ [Xygļ,v_s9k "3omSv/QفM?[s`oQbz[{fxhw?wajwİHZ68׋-sws9syC^^m^W6PkXd;4HuRņ-dyӺZd[~>?e1EO7'j_w%&?9;۴UZMqXj皟\WRSGb9a<>rnl>.߳a,]?s+Z8k~՚5k7r /ZbŢT˸xYP5,V#ř F;U}oٛ[xu\.ǻ,|;\_qt& <.-s`Esͭ9j}y,kP%=y/PYo?!ACgo;]d[Y̥pk;8|NX"E?|S?WsW =tj5ſr ;[Mz'Y~k3,͖64E v?_;>J%kӥ m?^3u93b]O6ſs!~Y5_{/V筝K=\Z)jy0?ѫۋ~Ψp翰|~]⯎~ŜT[ֳ u?_qK?o\7} A//lk~oϚ]]\ӟ^sBoĺQs[ŞJ*ѯSL,F?{O%s5緳Oam+6D"~V!=>\58b/`!{?;fw[5Ks_]OO\g%2O49lrduքSr[Zq6x)p0guQcX#P==nȄrM0>0A:ȔL' #?oȱy?XeV,8 yGxxQXٿb6XgI/C0js=Yk:'8kP;˵;2AC+e *v0YOW[\}wy fMwϏ4*~>?]qϊOb=sSua0Y³f eF:wX^WƑc@9syۙgbf?rоfo4OFl=Ot3]F^,?x:С}_Yȶh}.sYOL}8/{/!?C`߮o)ѓ`mQfOr>^Y; ߚ,0- 3d}?YybN|r}ۯS]1!Z Ңn:+n1C?ğl/O]]yHO}_3_bbַ0q:O]OO9oЫ8r o';Ba|qKo;,W9Cfٓnj/lWR>zi<4sc*-s.z?Vg 'P\hťݩv3e*? \>{5ys,g4k\CW?ԓu)|S;?}n/Xʊ+Ֆ~3u ,asUOrzNdY.93\nL۝7,tکo~c s)Q'V"`;ψ_J!ЙڗN.fomQ7dSY{_Cdܿ;;Np |4s(E1)mW۫0&&߫ db-C,Ď'8W:A;%ڟ߅-rwRAns{#}Sh/!osG ?/E\fRR"66EGf|W3S͞;2u9.ݍEϿ]w8_꿜裹po‰btlwQt_}gwC]mY_1H|pukZx`PB?b'Ci~b_t^[S<۵eul3x#8oryxo _q֯;:vvq7 }d2˱Dr&ɯ?l9VujzG9bws?|sa.km1F7h?"6Wq] `3v_oA>йg>w;^Y7k/_M;2pbQ'R#~ѿ~fuOcZ?o3kbSRWEsBVm1zPќ{7~n9ƈhjɩ5:&߰'4$-;m;[#.u=3ReNv:yikj Y9ۦ~d*)/U?%2qgygY-9h/9n-EM_316 3ʚWY>=bBsw 8o[vˍY `s>g s`h~kCsk˿<bv>,tF?qf~9; Ƶ~5)M?j\6'0]n9#sLc18:gCT=Pڜ`M)5퇤Fϫ_ʽ ]৵_ug%}:5KF?k#Bj_U'}>cgf]vu7̹^ȝҖ·l/wKL ~oVY3=znb.CYj?_?stcf/p.lgs_ZK39?Lߩ. ^sM~Ox;5{]w[>g6[x[;gQhYxؿþDW;7OYq?}۴]s &&|wz֌sֹ֯'=ϳ83Lʗ,S)ְ]mWRY?g-=HLm].϶+.{ ƛ~Pn{⎅,l/|cZˎvS;ߚ了sU!U?c\|A{~/ɳ6 stߢO,+h6qq]`'aW!*2#͐3ϙQYrFL[[۬i|ʦ9l3ۢ6}q}w K@Ə*?9J[Vٞvg8Cn_AӎQW:ӿ{ -iϚ5{ͯcb3HlbiѾ?,2< JGhߥ*K@?Y|uEXg"xĢFZx:+e>x /zQܳfNvzfcl^mA>g1뮘9m[[)2U-3h7Mx]Qwx3,ߟc\kߞ55ǩKζ86#Г 0qw-131#ܶs/s). gU_DJ\% 3h ƾx6оX f?ŹřA9x9,_"~Q,ҶkE\4#KҶ㝲i\"~Sv͟t4~BANZxoO} 5Z}xs{r̷-|t<߀ƜW/s8c3 f1<b& FO f0{ɶG/w?{MӭXR;{.swZϿ?пb/ 7jY:= -0?f.Ea_7hA?:[)[@v[rT S9kt ,nbH1|Fg~-Dz%5k^#VL"e0w֢>YB/7rY,td7v& -<ۃ^g>uӔbqGR؇)~r¢֮dU`n}Ҿ췝,:g:ye ;RJe̳uM3w'BT~E~_7ܒ?)^#N"tyN?bKDS.~b4n'6},kMYs8.M ]^4|_?%~?2sYGBer>-tY?*QO.=6R`"E얛S/?ďbN{cD{wlj v;m.XүJ=e[N/pNIgG-埇,~3V\V~k~dz攵~wE J =_п)N8mu .Kx41ү /Gmyw_fmb%b3)bEiV2ͨ= Xv@|,la 疾Ǥ' ;ֹ.&NlϢgl2ug皜ŏ;F*9,_O2ϻrmz$M!}OԶϬs^<;_%br%s;yNv9oa+~">K?+1k,o_wޑZ?tdo衇\p?YkNym#tCozbcKSW^eW{V5Uuas<mY,eE"kܿD=oֲe~r\~9g3ƫ0Ew6>/Z}}nךo"֘r ğ hxtMN;=k?>+-Kz7 悘9ΰc;}É)?oG^1~g]9 _=%^)iJ>)E텻`^ߵ4/u}65|i^T܋9`O;Pw5O{EnH )z6p3נ{BwYx9?sE\}Y_xh#\러a琅yYy1>[gIb>Rq98ӏrΜ;el Dqu==3=~g-Ίy՟'QWO>y"b_k'QlF/3 ڛ1ֿV;]&3f;տ 9>}I= _NZG3ӄ>6ͯi T﹜d_|v~-?ޞg9/jS?jy;r-jUkNfwqTkƳb~ 6wſ:\hoɚ.e<]CЗoZ{x[;OY>3Hq՛;KGs?> +Mx[` >\Q]mgQfOqumK= }AMmh)cog x5?yRSF߹"ggΠm½]B:ѥmKMKϺ߶+NԈ󣿱|=1!V5=]ev~S%);{~:sWU ~rB!O )=:kί7g5sYVOEN0;W?Ykֺ?Hq&_Ӿk!# 9)acZ_f.Kv=k~XϽʹ?}2O;kt-e<{1wE~*DW6ϗZ7}SͪsI*u^Xwjyfbg_k3:Yζ{)qZB&ߖ~. #,YmW?"OuѿA}9.>gش>?}t}b \ϋr.u?_? ~C϶}Vڿ-j]?Eޓ3wp6C ȡj'yiV]_j^qf_ϵMܽ`y-I.w:38CZwD75Uy~>tBJsqgދVjgbXG9&~lm:ucW3;⳿d/{Kmo{%Ӆٖ~]yUqǛ~sLw(4qC9P\اz^b\hG~sW*. w .8On&70΁]}yG.V9vKuzbwLGe<0ͱC #'*?h[x뿇&V]gowb C z}]|W{1'ܷό]$K\޿-WGWo4bW7w agwa/ Y|SVܹpSGsi͟x܊VoݝM]!:s~|89e%e_p [8/NC^N,q+?. r\#Ǫ%2L[Ll&Ipq;Ծ~Ugy:y?Ɯwi'b_:m0x{! L張bgdc5e; mȟA[ ;ѐ/:>Mݿs)$_ ݁z#~k'+Biaf)vsN)vbw"l;Bv5~'όSA;]`wV<t'eŁ)x~NzNdNS?|ܶN33SϦa>YashjgY炞2)]juG5;[t:!~*y` #Ar]p=7]~t Q.߃.*`Ĕm"#^Ru>hG[;;sWe?u2q׷wq? qʥ/13_мJ_5 WY`X\&HW <5/gi rKݏBbj_a1닜 f ~b7bR 6kN?"O]wkF~~]/ȥ|e9hb`͹i.z&< }𣵆)Mྩ4y+/(Ai}bX?ay=]iQ,K;?Ŏ~绸3{?j0m/w%`3/8}[5#~8#E}8fG}#rp͖ϒ(.A<9E >Q)o}5 ;XbrĄs1M痭읢}?A}i/]f!ˡ8\\XΜMx8kZdST/Zp|>~~w y?3EwsNqBȉ~6?o2 喹#RԔv/F,J3_wƚ{lr`/|/ ow=ݝV\O#^ʷ{c9\Su^>eNbеĚI)S`Em ?UgŹ2e|@w}x璔{NQoK*O~u5OrGno6Nď[~gYsxǰ7-z7"v]Wl4$S;y? @?kOcsE9oW`̔ɐ]Y{3 0ư_S(Q,1_|ϲ\q-5f%]pp3Þ<ҮOV+1PUгYs.gVZϬ:~ kKhx 7ZN4uQ_i^}M]__8EhgFRa)w8Zq}xSz8TY{\ ſ [~c[Uש̽$_{l&3;֖R~YQ}u@s_1:֏{ž$|^_G໦8GY/!~f)ĆbΡ˳^?;k'ne_'FC\_uYٗ˜W۠Sj؁gxQ&&~j?4F_5i-έHk~iyLRhyﺰmVٗϵ~r#!&Džډ[v۩}Ik9~;kGxfuh۳sCּ1rgYޛ >C'r@?k-}m/7Wā{򾠉F~ oK?p:Έu[e &{Re#űou?Y\YsH ?Pp#zoK??~y;;-XX0<=yº?S3cWS-|k֕ku\kg֮<{1y+~oE׹sFsG̽`z1{ s:W\Jܝ4r< !f /J}Iֺt~AeYa<~[%&f1HSa 3a^<ԑ_ ~ay]u&I5 ~\ 0B/ƕ P̑`d W :b,QOȂkrz\A\{b]S\8?2 \q̲as=y 03ݖ! ,E|㊟\%֟4*σW[;7evՄ9\3üf1'%!x2Zi~^xq ̎)H96&Ov}/:BW w?;]jsuf_C?.UsgYszh>ӶiWbYb.x;o<3w;g>`8ז-73ğT%`Cv7ryU\휿\8*{j+e3V[ԸWi~:)p6?#g;NvX2ZPI#?poO6"03H Rrjߝ5)7KA'kWmk?sn)S<1tZ`.^!B+~qp^~))/w;vzz}zѯu,0ߏu1 &}?՟{HI5 k^{/ЗGn%brt ɓwxz&3 sڵcϹ;xs]~-5ğԼ+h~|w_Hq4_TؙT|ctVKeV#\I-kz\i_^u'sj9s}0"wg+ANu{`-= ___zo _*/tb |eȮw1T~4v^Og8ҌnMatmKStUeexĆ2zϧ9-N'1ojKdSge#Ź<8gG5e8ss=䣿EH+Ɗu^?v\~Q {u"%-,!33y_xJLo}i9){ן=3W-{#_uޫeR֜N/.s_h/߹ (?p}L:HK y0۬8sֽ*gtf#蝋-b&w59|1jN?9og@*}N9{N_I;}\c-i3w;G u2_= s5?# l,w@t}G|Ͼg2gKv--Z'@C=SC=~B#|ѡ#>?trE ~GsUM;pQ>iϤ~r+&j˼?#ڧ~黡ݔ^b %;\4֏wXz-:3wz?ksr]ęg]K/bK-bH<3B-Y/}t)/{qӝÖ˅b˨ g]R"vp'۩N'T?m~ğLLb [Cm~Yg\?YgSqV\b25kkkcӾx]e*ӽjEOe cZ ?y,zZ#L!yL?ĺ:T>יZܺHE5y;SmS{ѽ]2gF?u<:]ϴ_{xX{+Dhk{Cs^kǪܕsĤ\+~{9O[e=4$Xϵ<ؐ5_9оnu7cN9jx fğKD9Z0N\`=]oP ^%IKI\S $ߦzxw5yY3FMkqtm+c>ne3y^6ߖ~ͥ0xֵ)L48F\Yu?_3}=t^LRNƿ?f9,@kvY`B?Ї{f ?:2N זd^n-tfJ1Eۖ~d sR9M4 y'0=V O:혳smW=kƹ񦿔GʝBNz7l1dudū#kFs4R{+g`޶`_4.?mvXkacn.ҿ 9/yS|wuWnK?[\f{5瑺_V)gXZ7&5}'9V9M}/Tqe3xlՅoK?g^|fAjWg[Um%u!=eKv|N튃My͚<g]Qlrw1gI=.Wm׼YYwmgcY$hkMs)_u杴NTօYet r P=ḵtAmy_yIگ ۖ;-FYY>Uޖ~şgYн*K9"G,|lѿ"89:O^LMA< tM5;=gg1,j:/}̱A*艡 #ޣMǬD1~t4ϵ\f뼰dEeN 4bf\br1{̽I9p[9?'F[a=)6Ji7)gFY bgn^XF?$#i1;,J9'3`x¼p0;u?ssxczlLA1=j5\,)3{e^kã)%s{W!\| ~wyuu[u~F }ͫPW%v& )fPt=!{,Bavg,ފW,0B8OV n1ŹBgzL\4c菦:~K~W%Wn9~/0E ̥mBW?1'}y]庇 Ö_a΋rYjJjjmj" a }\dĤyV'?+,zoh ;ƟaϥrnK?w0CK?<*bLݳ>)H1wR^̞oKyou{,F b.w5<ۏ`)l Z?3_BzWI-:xC -qeccS:iW\R~şܴGfOkr]~M~C5NQ`,r*f?Y!;L~y:~{K{>.$}\* yi3&N3wN1+8{^CϱU?y9A4o|?4ObMglpJ . ?gZ!fΈk{x^gIz&CܥB'E16_ _ӟ}Z\-T/rVGyWy8]wޑ#xgAj7}4—^e+d'8σy)vjn{&NA .N]?W v?tkʷ{uГo? <=}ag VgEVBW!OMNWs\g!*wm;)jZb>rOJ-h.E/4Y;,ݮ#?xng}o` x{ԩ#c_tWagKagOL_ Zs/Ay3fS1եV)sH6wGW #D_q摹|w9vM ү"<︼*)u"+ѸU/ugba̵|*zV = ?w.Z50w{,G1~\\ߋ]t^s~B:2h g>qN)\"dqoMV籇,k_Owo; ڲ?\qC.ˈ @Ͽ/j3С9O^I)i͂83SQm kn*k3kIGmkvwiPy3,S?kyƿʆsY sOOC-WY*>tݜgL{=3?KO[fQƿF6)݃e=hW\J.-C<4]+^+8-^O{$ wu xG[ܻBK0p{.GK\J5yųoW?[go٧]fnwp?gS{};${\'-xMߨ8ϺOq&CD0uz y=Ncl# | .Vq3Ga\ksPΚ,_,-kbPβKwhM+ΰ^Eѯ=z ZdOdX{~ſKHC69k @q# M0cyX5Yg%h? sEKΐ"wř֛Jtv}cm^+h_O4?A%~NWJܚby)rokxK5stw%&|rsϚ۞;+³޿?H;7ȭ}m엡]j~- ߅]N<0+6ԝ]6?*~NXwOZ<[ \aa^y~iyΖx:#9__ODž7!ȹ5○ѯ./˼os:XSr g]WWŪC>sTqYz>"=n8?_gCN{s=]);poSp s>uѯ%x}_dgDuwM>k-Sϣbutbҷ,ci %ܮs~1DR!]_}Y޳͞h|-i :vϺۿS?ӟb\3w!Ys">V;?P^༽Pe4o;2ٖE~O{O:2=~-4>rLGBQ_,J,+M{X?>r^mߧ[W/WkcgX襮` 3ߖ~_90˾V5E& g ]?d1_A M4/b]K(3k].ꙶ<䝾0gXIo*Z%kl?Ɉ/?,h,WsZf[?x?y?kE5_T掘ҳMGDY/GmN ? ĘĝkJҊI3oү`.eu_?*D%3Ϭ)9u Z]TGY\׵w{SsH;9)g1O:dQWb VxQ ]JlF"_WU.my_gWYw:Xd:TS1EOޔs:(s[1'>gbVk-@G`,R=}}).L9![ms+6ۿȢ1L.ׅR*F|32<){!CVtC9fy0@89a !&]?gy>M]S̞)~4 \ f0_9)0I)N3,&i** :[ã ־_UϱU)gٗE.S?c[_&cl{0+ )#dw[F9?N>S,f)pſ@ S̚*ˤ5^bGTмzrчބ>sVOt?\X ڸ׸]sy' }y.1sy3^`~C8P˜mڼ뙸;gsZsBjo/1#wX>;K %]>y& fwqm¯#~/\ط/<:G?y{@b(!1NK1;xA L3\=dF?c!W?1ƾt>HLm\&8yk0gwuas})5{s!XW5mX ;J F))]?q95o({S=ş+~)nȧ4.5\ڙjse{5YcP_Y돻Cy?t[!Zɘ9UGpth[*Q:3m-|UaŲL팂~>ѯu"Ҍu8belbw6WtfV8IaNwYxpۓ{xd.rw{Љ%.os&0'1Һs:r|x﬙6ὃ猆g=0dOJ Lj_/yF,\~e`cwrxYk/jrO$f/bQj?A\փ]vYܸk 9lQS?G#>b |g7]]@>r -A=SakMD{k߮{~S`LiFKb\iyngťG ;lŻo 3Y_ߡg>=͓h2w) zW w-Ih̫,%kो-@X5p=M-5V~yF Sp?sR*`_@nS @;ܖ]Gb<Ֆ~mw=n9{߇=.+A]fws2G =<7XG?=+[14Om =b#8i;RbesYj]V?];ntk6Og bA_i^?[_i_7{?7ؓbϪҹ~й0!3 Ź&8xOu?s)̻چ#bÇ/!ޗq~a9O1X,ℰswľJ~_??0g_d ỴrĜFTj>hʹMK--y#~2r zq^ {\b7{ȚG䫘?/&Ϻ,?sށ,@O{/|ù=ci>&`ُqG?ibČ_:{ytBjkw^8':/뜇\qЯ>h),{5E=t\T\S~Z^Pߘ/0>6mQWsߦ8k9ϱ|6YtOhfj-à#S`HCorվ.s]~c|!b˯,r-`E-R_i8Cv7+8MOē:?9B Ĥ>/x 1~ȟ:ZQ /]uX=_t\5u{@y"Zc=4׊3e#Owrc~Ϩv6_ſ^Nғw,HּYB֡X(8?8szVsNd/3ֲM#e~e.6 OKQ[mKRS/#a3sjZ<kG:thu]JNwi;b# oު#Sާ f3kx>_3g3_qQRUX?_rOq"])6,m)֞g?k;;/\?YWYlfd#ďboΏ'AϊlR_qY@1} m]}nkZeEvaS>bn~'NB?r;h},~8~_}j̰uA7ޙEgwc֟9˝υyTcЯZOrϺSɧ3S|3YLוRh {yܕbQR&bl_<3.;Auvyv,OjˆM?v1玲?k.#&8vkP_\-̟|EXJq>5OXÅϝ;}ӾzKh_sd3rޫui1\n+a[!;a{!ӈGC.i[kT&Yp?l&eU"'[f_IB; =^k1Cڜ*cakYsFEqj-l?%i|kkæ>H~ﳰk?2/wtfu &;69k/ #xw=kFg֋~Yk} ;=O΀[^W/<þw&20%uW[91_c_ ]϶u:ws:_Y=ƻiJc2 9C.juZ3eE Bc*ΡYG:}=K,zjɨmfk{3_7YWhލ'g RN-(RN?u/ԟgGӜ\813ԓĘ :xww3 uj"[{?lg@?g~dѧm׀Xlæ_1F?sZ좂=~ E ~P/ַig)SQޙn_MyqI>a!zf):Cݿ6ԟAW:;>u/RvIX;x:'NL{,h:ϬBk-c3ߌZ/䔶vs $?;ҟz}sH?)Δ_g?v#zOƈS#εq.-=3k?}ڜ慴/wQ9 Lzr>ZnԞj]x,+cx87?*5?6?ȿ{8~=gX+g#Ѿ.㯶GsFЇU-+{@.cp]ŏmg:/bb oXĮZ<~eoi?.|?jx8GRq.W9?\..!~~tu`þOz6/kΚ &5~F?gMq+KFaӯ}B'1\C{_bsŹ&5I{_,Γ-fAfyNP֏ P~үP)GΒL4Y[gyϧΕ08q؝a//sW:'RYà96}5-0|ûCOgb>wU z6},n? rآI9ڶүu/~1p13Y#Sp&x8a/سX?3 gO(y0M}|Zp FAϢo6X1krFw}dꜵΉS 1katm7CguHqϳQɩ^ ۭgމ!̳U1;X1t3pG#aXvu,dsk{{]\|/m'޳gR:<{Lsguy[/oH ?[@^?vs=\lPpƭ ]ү~bI<ɼ[Hr GVfb_k9|9 jgu_1=jmk~8^hG,VZ˜N|3e^3J=` `0}\!_r8nmK?ga1ӄٵ]N9N-b+Ca_鼳`C^aevr)|,gS_9XW]=s1}vQ|;t',a!̕,pXsL`ng9{y>hyԚZ5Z]xɷX(SPk-@Oc9-?ϰi;;a30;05iJOؿ7\w)яe{qx^4)`ƭk] 'A[^@7y~3;myVg CEQ^eo 0_dg ~)vAg*~)CYGW.UksC59}3_KLrɺܳ?@_6?[WYrOy}].p~E 6 ~u)t-䘾ᵤ_D3Z?{/&fN3w@1/wr,߳5#os?:No;nrIh{{S}F)3pڑK_<&覞ͻ]:$}2=7zvqr)Wޝrlg8iZ^ !kvk_,Ιj>G|tN5=ƙ6ؙ}ۜ.gJˈt n=5O߱WH{F-ȡ ϧOn]sb9w݈#{qOg*=;+k@Sw``ߛhkCAZ{9ּO~h=vFY#Vo_m1}.KK5arK}3l[]H?[ }{ˀ(O_ zF1Yl% 3?@弣_Kۀq0ݿ֖-TY;Z)*_1O)]1'b.!|8>}99cN\erg"MG]q߹vVu"*󪿭~ڼ?qsq,ѳ}9{E: Mx݀,0{}Vb[~a>֮yGo2A䡃o@w++nրүSǘ!`_]#o܏yGh8_Y;Wag>Ş:9a]s_巗b'3=/eqoM}ۈmjog7U볪k&B/:pβ^W[e6[-Z_5~,mn\#.~`}yf/řZY#_?7gck4ϐax>zN4g`5u_?g/1~_/}d񬚛eMb97g{m߫.X^m]O[_)wb5oםA:W8'6|yæ2NVlX,y#]bQ36+ΜXWWPyi΁^gjua̿s-y=9Y}l؍{уy?zx? _c LR)<0~?'7 v#G],tYl^b-w~&g8l+湖k?ӿyQ: #s!&C8k Oc1̝|5y TSYN1N|:Ҝ'xk3oLluř}-或[ާ?<*B|>.be{``:ğ)ϟ/3B_aQd}ݘwv)8[ǤשKooS`/^b.,ߖKq5?Y]N9~r1)B͓[ lt?9\';R<`# }x?_}.3Ltqf?|!5L~Wx~vS>&؁)O>y0 _K3A4.־8OsPΌGNL9sbgu] [6B,vjv,q=?0ljY`m?. [vwoA ?KPŐUXWZȳeU}-߿`ybaAn!װ)dq!o#} p.Iwz|: P#GS`r*ؗ\awR2fdz@?%v BS-aWq \?>_i{WZNُ>s[3W^KKi)_xgw=/~~ 2<~ƹ t?3@Kk}'&,=pjX1Ԕm]iddEN_agļ__AYtÖ?/Xcy:=}3Oɔ+ߞ+[橚KlC|ʾboT|-^f턱q:_9;]pދ=g+jBQoA.z`ZXO3~/Gpڳ´W;؝]=ZG6zܥMQߠ S\bC>c] UwsMpXoZ{3_,🉁3qaWpWy J* Cͽ/}]/΅Xmʹ|ͯ&01_)0}ӹAO FEإ'9悚bMذ~߰YS]g<sB{AI#iTI^\J|Ju/gaل m\;~)lieСĄ8Nq3_τج/EG/ҫMF 15چ_{E+opQM8UF]w?6{G?#63wbvZs0)|RmNFl1_gjk+yGRZe{6u4>Ĕb zqٿ~e^z6vO~MQOg:fm02>ߔ.*܋wdasY{k {PYΘYkrZ9x(7{S;xO270b#xgW*w^3_9w^;-Džysu 5*fօ)SR12{#7?| _еS=$x~ȿb%;t 5g Wvbwz%xΩ l \ceV]=}߷XO7=~[]i{:\d:OGŹ9eOa{t{i'eNŞvZ%N"q˃fg)l{6{oo//K_>nBZ+L"%?"':%8;J`VPq&'[gAŋ&^aX;[>?5s|8OXX$g[՟gO,s5W/,?H?wmJ{raaiN_g_Q\b/N.ROX>װȺ_m{y˞O0Kv c,= C$hiKσJMyZ -قOWYCw[Ï~Z_4g*]_ϰ&úo6V#HمO^5;;(xMT8d& lbAw_:~,W8ϰO)_bznJ_ bl?s%Oss/N-3c̝tQ)Ea#7ĞB/g\Uv9_ƻJkYQ**MjR.֚\5. yW%~>Zѿjc8 A}z]YpكǙG.eM,Eom;]j~2cb<1KvZ_V͞*k:?/C)3{7wp5Nj,9tm_uSA):Ya?b~Aٛ a-(.cscy2.kּg۳SdU139/`~Ga=pp ?'*GXmsQ |ca?5%?;1y*2k#gZh)K`^~``F<fK0 h<L{6{s$Gs{t'Xw̎[8/1oq <4՚5SacQҶϵ>ksPZ!ebN̟r~_H1'O |R 1mWY4~9vYy6J;6L)mK-^.6f =YZJ}̟i/xC]t[N7XԉhqFr #$h=Ŭ }01Wچs=esҧM\mkTo9kudb?OU'O F[#?;yv <~q~׻y1̔^zxJDkį/>{hc'SS.b]ҽ===<) r?p,'+ԟ,RcCl:fk;ot^?7suؗ?3;^!1rM9<0Lpr ˔_Ŷk^7hww oOz/{VYS)?I?g`~|ϿuסaCҖ3 [sq?2x/a] ID6ץ捃~}֌˸yu)d:i{΃\Vsܝr,rOZ> 3jhj'r!AΉK-pTNuBg{֌?H \kڏʹΘ @YbAFc zl,t)~ПgCX_>Ic.e"qވw /!*%)caýF߁oժ afUw+d?r\hCֽ\V&b;qӜ/}RmCLyRq68}Wv7.u?;P\v*f5cR~5]!-q3o4{Mٳ:g  )Z?'J\MW[`=M~KI; ӿm&$?TOVGnL 4;syį31C ې#\SLK_ ;w>2-8gu[?epqpM Nׅ?RԄߎw/k:?O\#bI1VN6}揸b5֬g?;`]%q~ p!".Ğ9ё~{ސbgb_Q M[M>.@)~ ewٸ`1wD1ƛ;eq.eR`mzv+!֝cԷPyѽ,o_wqQvށAqj @swzܒN^36n1o+.yis-Bqw=2zG Xp?{eW!5]w4Gl1"~80&u+W"nԽZ i^_<̖:Zԑ:)?L Ls}t5R_k-k/T}1q ?5k i̋g-f cj֑\˵<6{<ѳm9+,fĐ p.^gL4ž0^RS&Y[gJȈI J`݄+Hu y`Nz/sЗ[`Ӿ&Ԍۮ7W߉:n~?.QնEQ|e!浾;hĜ˱WXB ek?T_xG }3yCOL#]nR KO_HãRKwKqjGqŜ2c;"ԯsѷ v ):& a3YKh[Ǭ,I9}SssNK[x6Z'>"N:?895ށ*G/\~5@5xYϵZ_G`^h;Z>/j' ;?|5ܿyi.x]P8yIܿShoI*~ժ-=QIabNEx|A'1{VYUZԔ"/{I_w`ˠ7+k2mr~ٟa+Υ՟;%ϋ\룏;ߑC!nP6_Ыgg*M]>\ZO-))R^<.پrUgqw:rXgDיcG{ws^)?smνތ.M|+jZW})ҏ^b]lsS? Rd_Kj,W >g\p+c] Ys݊U>B|)3Q~8A59]Kz8OYgcb&]<|m~\/,zr7%M?b1?HWya?Ϲu?Z65<:çP<9R~1{DA}SM~~X`ѿЉΎ3{U׻ozGWmurLXb~ycz.M;[sٶy]fbXЬ]XܿkWh}_꜎r.#Y%6]~~Gk$t.qM/G7jxWk忁Bfk_}o'kwY[9:ʯk k>$&cdݦv51em?'~sU]ay,wyhCLr /)\ǯՅ5s-7up, MKڏJ\W,s65/gy٢w4.v:'sԟO[`v?iW?+qq~d^ks͎3+κMk-hu h_5gaOo?v]3Nz[]O,0 ~fy 6}s|_kPOiwN8hu> v ϶Fy}F,r+k޿凫-0Pc{ g+gOCU-_]ymOſUg͟Y1Ot k,,v2Ee,7nOko tfS_xnKtY_!L},r5IS-7kZ]zw y|;ȇ}5[>?zO? [F]Џ1޿˜AO׼?ҾJK6\g.ܶO&5K[Lo]~߿go %;D?7Rw(*uOg>1k7sӰ=o{yHhG1W&?8Z'Zҗ-|.X<)c?fO͙ub͟kN?~/~qn;ENEg:Ҹf89_qggְ_Bv$]3յt^o!93y{"?g"bVиR1's,j4K0'v1ܘ|5=MX-Lo\+ȉ)Fk5qUJao#ܔ._ճy=g㾉ez׀gW!fEq}4lk+CBεIA=ِťѹa__.?hG=tm^i~Ns>UuHݿn U_-g[`7@I'Z1cvV8,f 5WOOY}/ưܵ yE"97/-"`ҿ"O9ن]?үsR;Y1F&;wzn%u1_ۇ8Zzڿ"@εg^&wtx/g1O^,ˉY` ~;b/s;<Wq/E|߯X_hxvdcެa_ƭ\?G[倿Zã+W\/1+VXy*, Qq}{bt:<(qu~EBv:u[wXTŜSּ Y!;O_|_~^1Zk8M}@OWib^GwүuĬ{"zb~xOY]ү##]OjzP ІH/5Z\S,YU7a͔4oK?q29>y.+?_^Js/o"ԟ+Z=9iÊGׄ18m܍,~ϱf,f~a#W^+7oK(~ߺ䟶cϴWC;ۺ>a=pI'.k^KQo>Źy͓> k`F!/^,a[^2ƋXfOg'4f/hY `vLt`?#O3<v{as-Z'?@p=Ż:tB}v.@殲]b}cZ7 #P̓g5yſ5ޝxD%~l<"b.} `+ Α]qط0 GM/G=>z2uY:co CtHNH,Ԓ~ܿ_ZccOR 'xgB[{m{'8u~5z#Owr}:Ro| ЗkoO R/T Үџ)jgXfm~'롏Xw)نC?u?t臋5}R~?Y)?E载~zG,4tVg3#h ϺEw.`N36AhA?_5h_Qr"҇]Tc7ةhS{IVcݳbH, uǝFFSR矓R>ϟzwO*R![ǥ5 pjs}~v{ O{<"w3{yggYn~^y[?=fo.̞gMϫ;?muI+'o:bowq!Of\^S^wrOhKҟ ^`)LIqňk~!,gc{}?j:ə)b2}21hbLƿk,unxnE8o)<"7UfOZ{0ݟkE?s >4bGX lT9_qY_?;U{DWA:xe y` ЖKq9̷|?jx,|caʸ`Kvu/]t\q#1?DYg|οBgWwCKNtʯʣ^W|F40Z'wK-o\?Ϸ[_/u,>I3u)H:'Jq+,vٳQ5[ W[WT | FwOn{b2iX>"ws}ƿ~ʟmTث)v_v]9K3-t?q6#a`WwqZ'#mܱ{~iWЁ[Qt'=A1smJmRmuNtw~:;]`k]!gé= ӿ?y_kB?\Vaw}? xg8Qd@'úc\;G,Ü%w+\2s_=9xD@[ _/pz#S?ÿ=\h!{#oh>Jmʗ権[ݞ5Z^Kqk8學B2~hBW{\wR>i|oZ̝E,B>:ƺS_2+sw1䂾 {kf ]ĺ$g9@UQ^S؟ v?zҿgJX`bIi~G<9s2M>:E {|L1إ[PUYV<)"}_֗^7!@8d[(LZU\)ŵ@bF!K|e|}}U y~=1ZY Y{Y¿"*Eo`{{cAt8'Fj2 Y,rϟH{~~>eOuu?dMl=3"ED,~\z=./׽\^."1VX\hjMM]:2 [A13M g8 3_?~wY;<ϣzrWٕ33(Яs/tOksn Кb _`23']1F55 >%ߚzv/ll_a/B(3eq|8_Ԕ]<G3ɘYC7[;9P FTx/7w~2m(} H^Q'޴mޚ<]5=P,v(]1~$.w:@k[:4]JuKԞ~Zb\nau߇aW^E),g9Rދ1FhC+-fo2 9@򋯛n?t,{hK?|NM_\G!>B':0|T:eyy+f+aV0wŞ&תo^\e9k~ 8oP>~>.Ow=e8])[ϬoH>fG-;8Ϩaލ3_@/|Q֎=Y=NGlC|da<] g>4w  ;6޶yܽ,ƽe S H ;8Ivo ?sbΈWz?2fx8NC=k_W5K_Xѧ ;[h?oKѹ6ͷޚhzt̅~-'n.6aGU%+hq=k}5yZb@~[9W26~Q?_whw3c:.3үѹlbWwӄǎu~_ q'[js^nϹ5}-fg1se}mW.<{Vu@?gV Я{f0uCe=]~W~2k3P}V5fX]=JsF=z4su_׆~ 5K[%*K59;;E3 WNW dNq;]O68W܇r^]^aad;7"ϨZyYkꊣy IlV_=W1ͫt_ږ[,3gkD>]Ϸ_qQo TŃc,_ש]A:Y%/S(xKl~~r|F,%łCﯲا2= oeRcM&[?` Uۄz{~Ց\m]k_[>}þ{\r [oY"~'=7Y =_~k/S+uY6KjcxmOmhq]CfݳU\'|"ث_Xg^MLL|Wgo0u>a?,_,3e뻰ڳϵg_|BůY]f6FB>akaKG80gԯn&׵3|v:M8eyNp_X_ggߖ~͋*%q E'ڗZ~>ǺïODM8Gr VǨZL{֝#B3UwߡzM4Dp苆/A F?G?Լt-Y }YR +h}lClt?\j;y1Oqv{ ?Y=_,g9̽|1I)NnK_nK=?ÎQx? Kq0<4\7qQE_W/`7".% `3 w;l<+~N~#/Zu331(}mb33~t ?V嗽xunW[e"c ̙'3hX?2-0,Fy_cjsG.`;>%'B޳|F9V[{g;Gfv0O3aF;ˡE\q/ ͫ,z5z֌֗O?f19ڷ{Snpi؟2D\G)c5{#%OY).w1.簏qf0=?I.'>OtqiCmW\g˹Q/RH/;W"S Xؒ~bey}"7wr4qM;b:XʼnXq\PvW[^sqʯqs[\;)xgO[u,߷5&p[t|g⍁'tt>BgL#GK[9 k@| /{R`I?<\YZSv\_g?5SlW?FĎa϶_VYf:Ow;_tyBXЩS?#R\wbЍX]Ζß*~E9AqnSg4~K71w>2 EL{۹' Lɮ;{Gwy JyFG맺'~?\p|i{"Ԍ ?nFo׭TT~9+06U\Rěm8;Ϳi_kqׁ)r|8?Hiz ݉w@1}tƿs[?3שˮ6\YsNsaM0;O3zg=މ}h'sZO,}e#gi뫐_Ź"n)u*~>@?qtevŠ#bQk=S-ߣKwGfgWϵ|5gGd{8H<1637'#(~}?Ov2;ψ;ҏgc}ϻߧ9h=w,>A؇7~bh?{[Uf4~^3eo㺿L(+[֙ :Lm.w@sd9K^r kycUK;|~ҩ>kr7&:Nwq Y3MkvO{Ow}y4u'Kw^e_c_h})~de`矹,R0J/d_;7<*f.𕹗nR }mgaFbsK|7{ʸ: wOКGZ< 7_uCy W[q̱VouzBqzn<'w]+?=sRqմ\.L}RPb9tx $^Bۗqqڹ zxwD?i1=A`ˈ~8W+;g%⼱)|8gzb٘w r?~6TZwiHcgZ[Uo蹼?b8s1o^Ċ;Fwvo5EAWeWs`\:g[=\-h-௞m8PށlO?p][½)&8U<5O]8)#+lN"sprwٻ{v/@F9svz9.ޛ98~Kq'd1'_G-ǟvyvX4ȭ~\sqόUxǏZ%WD]/,z6\_՚5}"X& ~ŐT<\7#?ot "kŹf̫v~[O8i_E}JgamI k]?Y>ob~3.--]Wߨ&&߀ϙVa4rtjsk5y=S6(zzfۼ\ :guߖ~b<a[OXh3ߺoK@4,zX7mg= w@7Vg){?ܢt|6L_ʹ\%3~П=X1}?+Q/u?ߖ~fz-Z aߖCsܽv݃_Z*뿴59m[A/};Q-D"h x{i>k?q~AN^u! P=Z3m#Y1 .0K3elY@&Uү5S- ?O6ٛ5Я:Ǫ{]KvnIi;P;>;z.mynAgkWg}/kg-q~<^PKvEs9}f r4O:E;`;xw.ε|4|yr|Mz͢, W`3/E$Δb6 \sY3 ԟ֚ԧyӤu~Aqw8/H/\dʹ*̳MKYGqD߽?3.Af/9,bH0Oӌw5׹R`x{ѻk'tq~p]G "!.f8k /RT4T6/D3/:O8g?Z7@5 XiO< _X`o ̗*~;_{ڕ{/쀛y_`Tǯ(ܳZ#y3[\vsr\/̳af =u`3,Ӣw:xg.K=8|SHrǟYˢ# ^}u}{yBe"vYa̸ܟ#cA|YYڼ\=Xd5pEgQWw9`]~,*tT TL$v s_\C?}P(9_k #S5 9ݟ=_K,L}نG5_=~:K-S`⾹{>R`^!NR`-9W\J֨ﰼ #d~w7y'Уe:3=gPՇ bQDtNJ+5vΨV屩/|wn"נy~lU@@ e4n1 S=oIG])Nu1J3-K}و zw (ƹj .b_Y-B?.Mĉ9ПXFx?u:83kp wշ?y`3K󇠙+:o\AŲh/)X;+][6?8ȯ^!/J A#Q7ŏŝyb`|s x3be)b_Z~ŢORw.hđ%S?ɟ])H-X]b_e-)ډ]-{~5qܟ8Ky-Ul.Blak~b`ЭY{PK:ŭ|^fq֏w:._-ׂ}Z"]/?޷(xFw"WY7"P7;PCBh] E 4gxM# =O|IbJ>yߦ .˸w%{v;]|ӆc -j>s:Cz t>wh~O⹸?$wYBs,O9l֌&,ql9+y-]*m=/[읺_G}[߁;OvNp/9sB[ڃ+ >Qd_﵏Eϋ* YWO9aeŎEЭwjw b흗`~+ƾWӑ36?^Wr"t=rP,}ݟm}ri)?k7埗[?Zm1qRnus%:S9Z4}nZUY  1\+y^d;r(p:KoáK_GKi-R=GKGHۅ\x,Z?ay=q,#a~B=5k/33(3苀?~ ش]"|;hf9x'ܫK =is/赂neeOx GG3ҟcLTYe7[Avs-c{E+ƾYY`bc1L>bVx5܇紗Ik*֙Ssj^Ka[>֌[@:/uԖ5?k.bnF UO1;l?66Wgxկߍ_s5\;G{xr,P`S { ?k;_e/hK&>tfх6h=?v9?NWԖ&Y}Mk󿜻z`Z\_zJ繳RWu-8' k)~?-ݩϙ]ПmǽV,&QgS^!*O|~V'TWj:e9;1-6lb{EAEG,sSj{ZΣ=ϻ?|;A岬6zpr(,?WP 6Y>_Åfy^E>\?`rA{F[[3[lѯL= s+' ]jj0>lU=GW2#2z/0xqV3=}X^O<{5^r>¿{teHZ#k :q%lZ}W#v {6@t3{y+keMæy'_ay>Jq)+CQg<3~zWtرϪ3]}s%snKߖ~oOYi3b1kyl_=,O`VӗA*zgakQ-b )z_j&Q_.繵cOy9Gܟ{[ghwXΩvwud?vfoUwW8#*f4l{Ϣ~KKá3_XĐ~o0nm1O .O~٣ ЯeӼڝaJ{|2ަ|2׼4e|uaԐZ(g?6n5?sWuۡn`M0ƈ`c  @(D$c _)#H"D&vwϝ;3uwֻ.|ԡ~ԮO:eLh[C.7>%;(~<?-=MaυK1]VjkԜ|/3G0^gL_li=t8/vl{͛-D(ηo@qB0;NΏsw8! 2 ʹ]-|}38e/#K-~{O}~wTaNtm=J a@1KY s9:`3.mg[@%k_{ȗ_mg.zGY;Wl+9O~?c֖9'o'y _?lr\Ϻw]3UdRx-YjS#>V[>c}uN6uAfMKpٯ_U^!B>Tks5yYjCg?o7u~,[vLcYkXg벋_`%GXpVgQU1κ!뜲:Lc0O4Y@,.WpvKN?-0baHJYPS_ sR`31<H9N?ᴔcrs~ƔjF19',]\#ϦjvηS_\c7[/,< N0ו =\ o. _E߃ˡiYYxկS\S3R,sSC H Nh{ﰯ w2KderqEO3ȯEҼ4grZt旘 %'&%;)7v8"k_Μn1f)εeY?ixAg8G gLI|Ob^Xcs]v-QG^9@ &ůx-x 4u+l^}Я#?yBv?uN+.Āi{M?C{{މr|@~k{DWm\r|Mĺ!sZx# K7X䯆[G9Z>@qanQg֢Ț/-b/?{8mĺw=Ņ~``aA =w]qg=oZp8w@ޓ†S2'7YۯO|ݢ?>?b%0VAB^)|355: LD ur _G)ׇNay/RxxV%iM:FU߱LϵIb=6³ΌPwcyN{Yy!38{3_t.~'~xUrѯ_Θry /ς"~^e28Ou~:9*RR?]et^=rXSyחy+/xk߶bh<ށ|q/t%r`˱kw"]i^a+=SO<<~_=v:g~1wܿbN؁ǘ/2J{FuC,\ųܶ~T?3~kyWe|;xR|q)?Xk1Zn/:|>gK\ Wؓ s ү9b#w >AQxЭG{.UekwҖ&γCO~y9w}bZ;]kJ{ug1x wIO-z8=Qk=`Q`y<Ȼ;g'>'w~[+9|jo]JQ[IzWӑү|8{5;Kѿ<3e)NLA_G+rrW.LO1{vlO{=Z;;#os/ՏR>?'wںʲu|xX^#p/k_Z{}F?bno,l1>:w^훢~tM).]em_mS~k/[rjہ{SR[ޖy '{Q xM53>rt9?~򵾦w?g(=No\"4/w^9Uu_~5nEhGIlСWg].e lϷ&[B&|Y-~E-ύ(e '#3?֦!;DI=u?*e=}r>U; yvF 9;"Õ( ola_ wavz3^bv<k=kJ?dO\wr5ѼcsSl^h,j=HgA5i޺\49\ 76?SC\^z.|K3^2٣AZ痹aLw4fc;)z|r?ί!GL ZG]a1[t{js{C.])޴g>s??z>Q/k,kBg'gPO1wxk di{ZuBu_ = ֞+k mks5OkfSj΄py7f0=?D|4|__o`Ϡ}'ݜ >N3E/sY̲}jFB-sS_kN(g\"{:jm{c(?k6WWω3gG ϩ=Tն ݯX5<5?Օt)~-'ޥ]%Q~1C輏>ԌțOCϧe}=~;|%)Ǔ)[XW:޿NuKRs˅gɿ͹1Fѹ`Np:;ܖFz\mEwQܿY&9.n?ڒ\tHjoh#k6&5XEˠu ۟ѹ) h{-f1rb{!&4E)0'A{Cu~ ~bZ-5wʚ%x=S`\R.Oc^ {{C?}aww|:RNcSy8>~?.A?k{?1 1#{T~is2ǿ?W?u~Z?91~ oo|TMNk}3w'Sȿ?jЏ bf8~c1wQ.sg8>Egu)zfA,_PG~oK\{9i%)bzΘ>>bi2p<)bα_M;R"r.XkM܁) gW]w7-ό Zܟ)Uq1q}GR6/e6DW9EuXRw{a>1HV 6u'Z`ߵ+ʯOz>J+ܳMLۊs?9<ՓwpJ30ѿyxT4͢?sFx=6ZvIHw-gF}~ E6qӈvs|5ZGs"*g3sxSEў]h?+N{~oN_, [VO!uЯvʸ`Wʵ3*Rk{E{l7YPg/5[PKhc7[^^<"5ߖ~'?[-{i=s\>s?gs: e!Ө?3Gې-o+NND[83{8>G9BXg̾l^:=35{'V߽;F>H [KxP&=\5{h4?hTl̲_+KF@VcN&'ts_/S,.G\õ|g Y>oã#<˵Q_\EΟ~FL-N'-=3w^F6Ot?i)wiK[ {L{ Z/mkX;,:=6wqLfWp.{J9W%OcM% }l :hf-) mSP=mt ydڇ[s2&>DOg[sCόi̢o= |%︗lؓՅ֖NW%]qx Hg}܋ErGrW#?W@N5{:\ܤcygJ%Z#~ʦү1bkI?z.g?*@k/XSkYg87`_OWk̿3;Z/ӳZ}Ź 6K8}8cw?ay|NXFBXc[}2wg1:ɝkeqgЯOs^cQ6w()߃vYMZ]?s-IX?u3> k^ -qag'ggYi5Kws,R6kuPHky)M ̓6d0hCrscl!f1 H{;iu]}ӭ{9Wb?^9ku?'w)]js{N.8pϵYcP[70pH 2֒~_i6;)~&gǥ}}G٢Se)0O0Y+0ow2}G*83m ͽS>K.s~7XP?dC<[O%!QbAp[yY ^! Ceܻbk/_݃QrY .x3ܟr?s +~L yPtż🡃0wYxQ,;dz4sfWhr ~_ ckf.IU+Nu!q3?}:`pvs B_m<}f|F5w.L8th¯+Iߖ%>rCS*7f}3sוyv_`΢aW;bV]\ gb@qSS㋳Kt-|GSIXS/.?ӧW3|酝Cri) S{N-kko\^ACĮ羬+1Cn!ܟ9cۺAe?ӄ~/ :M(2]59OKt}5UW~s-OW_ P%'3^ Ԥ!gZQO\IAZ v)+9]Ϡ5Xg8]4 ]80b-θ>E֏SfQȲ?ݭNg(qօG嗵*^ Xs!T$kazA?s*%~Wk cm9K!Bf}*m<}2<3SQĔ=Xd{vwҖ-sFwne7tߠ]rS<)-5__ Z*nyf? O+]nY]9hb> 3_߲|hƾࡦ<z1נs%~8wp:WXSh;'X7zVYĜԞ.ү{@=?_=Ρ[^{&놡ЏŸ3F~d>rrM9ɚNF蟔xtLY{U*fuO>_g^՝5wfŬm>/R]P;wELH<*:w+`V YUyWhyöxt5<\܄¿;EŌSc1ȾVō++\܅qKGr̟?jy>d{|]?Ӡ߇!{R`O.öW?x s9ܓ)-lы=ڗ{wߖ~ڗ]#\@W-I\~ENϣѦ1-˿r2=g}smN6׀wߡ@W,|7ƏZضG[V_1oY8?;=-̽T.߫/1g%/߼h_ÉWԯּVS\r[X|^}|Eնj*ġ^Fe]_@ +Z%mXʳ-fZe6[?sփ{wy V[s4xA3ܳHs[gBN7;xN+5YK?2]O.!;w##z7es~:}5~]&Xĭ*wM/Ζr=k`-oyzRsԭOZrX}5ngIZ]*3ř毘)e S̪jxѵ:o]zf>ݟo?+is*mU϶~uE7q qs&p7/PS/0vtm`4>B>wxc9trduքS97`?cnpi|ka⬽?o5W_ A7.`VV . 0%sx/:ǥ̑̓pv}5 )--8^:007{e@/=0E{zO@0f@?u/|*~o1k ̒` 57b7b7qNy?|e1Y+)0]NN1SY}493[?\}]mnŹ}Ogj6ru_]j{ :eoaųX1C;,G2\_9/hE.2f=C3(/kҿ"V<ˈ;R``6)10șI)c :Tw kו6ZKl+FVm~&z8Sf.K-ޖy"!t םS<y߯|)fOqW=9kT?5b^Ds2Mo,fQa~s䓋\Nor8ǿ?e̠zEt yf 9 ?_vo`ﲬsz?S뿪G,ǒMjztcޑ:{W'(gQm'̶s_C9h}w5[=Ź X'b}%~ǜJTPwžw,eg[n^hi9h iQʱ\;r )4 +[?boq#2 _>'1w~n~Bq&Jm{;WgxA,_mhn8]GNvn3/f3d?q؜>բC섵1-t'~2u6`)?;4 왍}Oܿ95_yiXۺ;`|}үP\,iTWa{)ĝa8]wh]pj皼Κus!/ľOzsi=CE,]_9ֿ.l[[`1k9JY3._#犺gүJ?w#f|ol(OH|+bnmqg(v49~<ڧ ^b)]kˇ&(Ь5_F )6}5EN.Ǹ\pӝg>t[ZlЗb/,U 3;رn?竈S*ݟU Pww~D|nc]+ b^job(~,oMN_;r<Zw?9޵|+>rAqV ak6d4Z|Qqk/?MI>г!PAʢ'XZ?r)E~oG?b8ƿE )˼cm?yaZ?o3kǤ|u/b2ף9n>g/Q7 f{))N3!Y+e3 y:ظ~o5qW,ǂS\svJKahOL:~V"Iפyb|)˱~Cw}?D .'yF܎X9};,s$"f8tG\pqw )E߶|| I- t~6_ÅB ř=T*:Hq%ψ7+n=_m3R77Y`n3nhİmqW˝n=Mf i'Z_YU6'Xkys A*Ub:`E_4~Ѿ뜾OǹtI}i_\-}>ig~~-bwŹ^ȝҖ·l//ru58'8kvX#g<3 voK?{_=߰,c\i߁1J?ܢg C_319+Y3U[Z|g_ԫ['ԸXң}mW 9Y]ϷV 0oӖ~=݊=Mw,d@|oLb bNqxjy5u &=:?8發_}="r0kYWK9osE~?z s]Ŀm}F/2; T-Qo\O3UۣԳf9UG=SVj6kZ-EsOX޳cY.1i*!X~?'Fuk}抳1`[tOk8us9.ƹIk~5nW[3C`ޖ}(xs-DWȳ~o0'?Ͷ#R~#_y-9֎eyGcsîN2Us?_?Ϳo‹~T;Y~k~83êP:[zRjn؁Ys[q'jω'0wۅ֖~z!'7{V\Fּ~vտ`+GOyS-ߟԱ%z{,".X ~)k3[8ߖ~[GʙAB{ -:'RvfOhAo0ųiues_0d s ϙ3-,?(?}-ǜK@\u_ږ[M0e9F)~.&S# w so߱Yݬykۧ8=x5m>c9βqu-K,f-': }0'}',u߶Y<X-ui.i=,tb,pjI:wgMY1[ y6{yVZ#d] rMS?3>͸}?%Ŝ~5ihwwG/w?=lgW̴O G;͘o,&99<@[瀾3nO0'!|m̎`~C~ߘff0 cW`rR`@)Or5%O7]Oq&41Cs?{ܣ)F]\0>CT,hyG[åZkFo9^ -t,._H9οc~s#॓gs<_y]L0eC] o9>5s>! ͿgK Ba3,vw3~ {{ݷS`(?Ϙߜ+m=m5\1/ٴWN3䕘('+F; v;fGqotW1*Qf&wsMksĊ[[Te]>u?Z&߂Y{l\ S`!Bg!ذe\k>w|^alYCS<,CTxϰ,0h3/ﰳӍqӌwpGRݐr,K iws̽goX *~8{'}.Ǽo;RjOۊY%Wƶz|?RڱnKϻ-S<('˪}Y߆Ϧ::uR_f)KmYʼ qԀN;tΎ)Wتc~,=?q?ɺ]sw C_A<|b~?)2}YS\wy-'C_bVm|=~ßE5I[R(粿bVgԿ>#7g}ſRlj7X}fg_qnjҟbɳwQg r,G)s'$llř;+]kI?ye ng eC { #BOLs/=.WCwG Я8WWkyq֜v~݃׭?zw?"A]~N  @L |^m_7N uYWo@l,`Nq;ş6^_ϵO՚'rW?{s9&9EiKۆ?)O8u <5 )pAOw}4''LuV8uwXޕ!6]#a.Hc~pqnNgG)buS䟑?X[qjs[k~:O5{k;ҹůc Y/񋈑].u^;y z磶;+T֏= %~)5_A;7MI^& yb_;@\*~NNㇺ,8k 7Oy4TjKg,d }C{\>ǟ~?rX,8=ಶ<Ϻ#X59m[;F*9/_O2ϋs&E v&'|j~.1͙WgC.:O_}fb+?r{,ɃgrI.pVj}n rү@5wCv^90<_B̾+s^q{Sf/}jr׶3'[s1E>Cg2G/_ة }yTx=7GZ?>6;ݸ/!QPvKO3Otg(G`RAu?ءBL K?GwE>{)7R{__`U)7ǽxP=اf_k=\ZcҞ_BWwn8<\py?58gs;߬rZ\f>\nа"KTyo{f6[ѯWĿekgRZ~˿J?ܽ1ֳu][A314g+뿜=s?՗fO OQ[5OK7N? k=,k"(WO=^ch#\러a瀅&|bpsYct^O |e_{j?W< 6mv: WX̟_< }};q/b>sќ>ck>a%,2˺Sذ贞w-d;Æq/>_Bg9J)q77La#r\b=kGϺGjwL}{r?( !bks~ؖ;,Vݚ'QlF /; ٮ1ݱ1)5Lg~,%Q+ZG3?ӄ>6ͯi TYusu m_a1ƢoI{s{C:uүvYԚSӽcs'X3S+ձ#-fOĶ_|!jwGo׿5?:kX.˃Z7m'-O93g^"]oƿL4Uɩѧ,εzughΰj A~Y[oK?{t}YwkAg|nmWv ү+,r̽uag[H+^eOԧQ;[lZ }mW_/%H_ï]%nW[u֚F~A[H+Q4j}ʹ|‹7pϷX/_qct-+`55^p.l1e-[]?=vB M)FRmA/]'Z]jr]ߚ_MQ*~?z-j%h[ȧ;{!_wOV]ſmWs گŞ.o5&{Bf)7־ʦH:j)?'TkI3-i-W;cu G]_m_n,_qkKM~/}hTy *~٣-{?|y*Ϊ?Y˺rO7Zp3,zF^O8a -|o|2.◶ }"^uŮ_ƹ3dPN̺ACf^.wZ_Hﺿ'7^rY3s}mgKO~ҏwG5c*]үw_zHk_оhg ; v,|Z${m+59{ [T"p@g3FoK{9߅6KF} ؿЖ=#`gkY_s,'*(&on&fރ~B3b0ۢ}6ߖ~`6pІlo,v'B E-H^,k735UNzCD]!W~*e N-LX)CZxMDo-XD_-qukk֬uf.Ֆ ٧IO ;dV!jTϚo׳W9ǴOܿ@7ZUѾ`s~:gE=^k-s(f5m˾ fչ$S:/k}V<3+ε|2M,g۩?5f7$h[qO8_|\6̪?uauѿA)rCy~u?7/i/01|,psCMyľ{㹖'æ⽨eXK%Oϯ~"wAg!gYwUsY#CHƿv@?7 KNZOUZ3zn~i _E׽ ~8?uGh__55~d/7?YWRj? mnѦ^İ:P?s3Z?A 6OckG1[MyɊ},^Ѿ7Տ~n1;߳ -Hx-OB9V ? ;`Gyuu޿϶ŵ'ؐ;'o?e~u_Ԗ~y^-oaF-wӍGs[{XEq-ǛHWM+ƺe9b~Ajǵ6Wkq1<@a?>]X!~͙2ں_ ,l3rc~~n?kZVj8ܜB\֩3PGNWnKN+ג.wۖ[-eupu?u>]yUqG~ &#i[@upmϯby5?ZeyZG{Z;Cp_.]ob/di?bݟ=_G 9N“\&NHCw9@z}_+VNw9>.Ϻ|\@~u/ƾ)Zbw> e%e_pʗS1ž;T?wh3 靖)S_-U ۯnR)sz¾&_>vyYAW=?_ {O}?g}XYֹ8jﰺsw9kE9RMg/~/&Î}VO.2q vV!=kKl&|=aA.;|Sd=> O }[76ߦ> Puy:ϝ=l~=?׏H>u롅}Я2suM35.e+~>)b=|sӫ ;$`ɿwY.YG2xtA{jq+?s-?pӿga ?q7X_紮,߈@]w[̼?Dѓ/.x'!:K^欑_?;3]zh}]|k8E}Owɿ➡7'̞wJ\Ŀsι;tUENuˢ_i7s3]yIꬴ榚gb i;mTm=?\3xEط;xrYSP|8ľ]]r ~29lϼhmY cwUXU 7^1تS>eT,!z#}{SUwH|5e2{Ϥ">g>Iu;,7 h&2>.?w/h[{g8g;~{U5Nu Ԑ[~đ,/Z?b4r&?h1iHE-yc>t(s8?Hc 4͝k5=_pa6xo<ͼ 1}1!jnJkﵖ;<XdmǠ4h<1k{Z^O9'NjĨ @ z_G3' [ ݺN*c \as[La`ov'n$ Zȁ",+,|h1ք/J:h72{'k't#w>]i~ݖr{U٫A v=u%~B] ž:dI1dV[ϴKY`Dﲊߚ'?~˂\:"ndú>_j.b ?`KލmR?wކOs|Sqߡol|7/A gmSO?sLd<s(=\_K#d1,W!n{`Y֣)|83P5tŖv wNcI?SШA]s=s)EK,KFH?|欘Ͷ Vcv= 7^Q?ˢMW}{r-u|֏4tIO&_,|8g^߅Sj^b}qG{9?OsB%s CoL畈I3Y[/i=0}b\9mڧ4~Eo{G|ξOO1H2Y.'7 s-/qbĕ>R5s rWM'S/ѯKcѾҼ؟,oG~H[{?sl<r2=||zhӯWk%~TܓkS4JpFYƸlТ/ +:NlK u)q]ގę$ViLw)0u O 0{Wg~2|Tn FP[ƙ.ﴽU?H?kly^ϥ]20E̯q.q<(%s5+g-v`0HY'ϊ yEC0ߖ~ B96\D.د{G=-.W[I}lKf=Uy]Wcx;G=V5ճm&\eQǽ9,GȾ. /2W}D]__837%~{5H1b~2}8+DϊgsU bnh_EߖZm3kN5'.϶lw"$毘B[G ٝb/$k?|e=-ǧ$i"'-~b45εB~ǚuyS_{T*6E65v@a h>;5^Ի'XϬ)MWMrZsk8ZwϲtU7}G:ߖ~/l}Yvҏw^ j_c~c+MWS3tN eNY;3SC5؞5kmiB ,s ̉$<Wm/7Wā=оF?sZ^?ejk/tG1\}e &{Re#ű?ƿ?~ѳ>~pù6ε1_*pu翵?fSc>PwvkK?19c .~GzHޞ?c?F-5·f] V'5vfȣO)bbuٿіZ (t%k]iK!hӯsɯ̀oGJ:>ks{,sP뜇YbىJİ(s8X0`.3J H0C{^='y?}[9#8{)=e{;ٿBWj;:1KE >}1bVPϡKisCgd\Ykmzk9TRbA>oW__ bƶiwS],n\_3-zߏcx e4q`UO[SNYnΑ!{:IJ<F2:ps9o5qqN3|\P׫p? R [CΖ;SkRHRegkhهX*s.+뙺G;'~)T3b,bCfKgg߸"9tkD5Gl[K PVC-+u&}?cϲ%9KE?_ r æ*9ŏ\T~kؿyW<.+n)1Fq{=LRUl:ň|?3WR5GZ<=zx8◗mKEQ*]_t>G"Ou^9xjmY6s %~mRkyK\cSY}xE<`=9_XC!ӧq FxINНצ .wAO[5^w{;#6,ub=2 Н1Rwl|q۩u}Яqz-pJ_=N?pRG׿4s_p/(r{W>:ؓ?H{n:r!lLjYљ֎w J]MNƤv)ߵԢiZc_/gIWLƿ } ??,EK,,w C?~Ws-=|7,e3cx?oo&q)r@W X.e0?bײ'ϢW GB?A?o||dVq;9+Թ~һso9}Z8(~g3&C.KʦAּq {%K&<;{6oM=Yͻ39;kw;ƥ>(ODIz<%0LO3_ks,z=!Pa O{?a/Z:Y7IS~iy.tO+cu=A~u/4YĽc>h_#3|~G }Yir^g^<ɟQ>j.Ks^wA|ϰu=pڛpKJ =koXsAO_o8y/GWn(|"RT!_6Ж~CgjBgt_ӯOu@.n$x)s3.]opgӀ?{-<+r;:n)vt%M{KR¸:>G>5VRF`\@?|gɵ~ 9;!8ľSP.=g{3)C?͂]~l[Y>gbgj裮g`wyy=B#<,A տ\YwAйu`o:q:Wy8}Я%~,ߴweLRoW> AqMՖsEjvSڿw|A;} ͟[,k/+?_?m{Y~].˲iR/bk,bH-?3Or9ԅϔ)򳉖2wu4vSYӚ\=u~D[,gsE40/rywS SS.S]Y?C_몼3N1z8g1<>'f: "Z5A^?c&ʁ~ߘq7Bbݗ-5uKZ-vk9)+櫉]_xH%Q dſœV1F+tPh_W;-pWXS6Z xg3,v.s^pzsY>,rdOY.'{#~;q_0ߖEXê{g8&ݳW"E)f,BxwG`Q{, Cb>󁘇]hgvPn2 ~ߑg1 0f׼}ܿIO/__wN|=&!B~YU]Gueǻ^_|^6[sŹ~w[λ-G*{Wi'ܯZ<\N MN?,t-#,4B=)?‡S:gOq!ԯyrҶ+6˵ZMs% bfyk\7Sr=zx{=?س|V<ۿK{~!%,7s z >Вc)N($=J5{Zkܚ5NQ?~O~8$d 8/}߇ʅ *}ε\1oA baq˶N3āYqʼn=yjR sSXa П|Ov)OrډmB \^-76A~Z?/[_s9kS*'USbHT(fk^Wj3\:9+ol{`bez!b\`T,qOq}z5bGEwեJ?g"âOa*䖺q։)1s;TPZ8OQ׺6Z[_?Q^h >E}Kn2)#WK#.` S{-V+ƾȋ6wa[;Ҫn[[[FQ[%g H J,(bQRQ"UTTEEs{}xݾZ];ڵO1~SU5?g}>2??9oux ,@8{ F l\{?yB?s#w{w;_CA߶pM9,cq_~zXX<<Lj|4uA}+ݖ;,߿L+؟8{Q>]^lb/ 15vr_8Y1Y )bBaQ]g?:?HKx?_~4Vو[y];k皿YO?Ώ}}ʝkR:?/2*"vxmg;g_EE}6_bWqrJ >ÏSFlڋE Fwsw xsvwü)4{揁~,~٢),b?2ݔ󝜟bw+j757Ey~-i+k3w >_9Pً#O`=k/:hg C@~pܓ _;{Nu9e-5?Z3.)OS퍁)'cbϵWSPOI <GsB?{9|r ?? z~H_MVݳLx_:8"x*q9q:Lk5\ڼpmQ{Y)BcaOn_/4?ikϰkg_n_?7ѯWY 3k:Y,o GkY7l?pFsO?=:[ϠB/ ;##s|ߖ~΋jߕ@F V,hpSo:SC.j8-| ǚX_M燋3GΗSJ3! ЯVо>oS_d5.+y_ub-ʽ C.!9߉Xɵ_H=kn{dz>S?; ~ q-52,v1?ޖ~ט .үy,wwlU\8h}9-qe)׵x:^_ZبYij}EK\ek{ 6ESվi{xNə.w]q_ωN[K\,r_[gŞҳxNOg+HNΆ(kCoKΟric Ov+B;O"Fb~tQgbM߱Z \,N,_?CɵB:%~.s~1Dsqү: z;Пcb,y!^xg)OpTY_q9UG,*_zgW14FZswAþa{՞F?{d`}  A,-R)ˊrEOWy5gG 7'YW/Wkc~R}m+ Ož2ֿ8?~]-# '?k4/b]K(3k].ꙶ<䝾0Os?y['4O OIbW,ؖ%N/~_[?Yȯם.[J_om?Y7/3oz>=+?khF~N͘O}mN ? ԗF^>jI3o>cb~T։JgYSsA1zث祈ҳfk߯?3 ̓ rG[q'. `h8_a_:~tWm/e*g/[w:Xd:TS1EOޔt:gE7;_#װtcה).>pO S]mW\s-z:^|~mBb9~,.^)0t~)Riw;~ѺVv@N?KCY8əNPqv3 +&g]<Nl$wO LI'?1-YHiY霑ifШx|_kxt9k:ڿZ# AfЫÇ9Æw 'R>~H'xp5;k3K!0=,SoM S̚*2αc #F[>wAOz[in%)N718˹F?iJ _I1g Ly^ w m[_Ϧ:@_|Pl uFXy8Lk{S{P[ CEm漎_4g9Io{=Ϙnԉ~ffľ}\c/N)0&(Y#E.yE\|HO`y->ky$@l. \%1~ ^\DxeES{9ttsHRs~]aO~{ŏ:]&EQ;S0ZiyL{XsEo ;k~3oA'?U+}ܿXĀ?# rÊe~OgS-Z'YN0cx3$tg;ǽ2~9>CvJ}kͷ'? =3lo;BbΗ8?q|60O\XU}iݹ@XKwgmsE;FlC>b|1ڰw>X D,ntK(s,|SS[`1A?]d g:ډ }"f7_f"[n}*[cG 8~(~o ?DU*(?;lt<+.僖9֌g~,1?ЅjY><嵤Nٖ-zhBf8GЌ;W՝{BXo"2#BØ\Ùl[/GV[>KtB0sI:w g/S0૷n \^%Ж,|YC-|gwߗ8;<ֽǥ nK?wGWGg|?h>ψ?Y9#'ur*?C_j;vOCkf߁q"e)֫  kT7Z`@P2g}8kOIΡ3 ]?6D 15ND};81O}Y:)rS;ȉޓӯs.]K-LAiZƿZ8&ְź-3WZtxϹ.awvއ/=w k<yYeuHjnzr>e̿O!쿫_TYƞP֜tGR]lgrYMYҷYB ~W dƎuw<@~Y]25kA+ַ_-OCTս׌?l֕|oKU;/VPۚ<νSy;?ן;amuv ?+DcY;bK#^{G<֏ԳЙoW8](ϐU_g~#f+\?d3hk`>"Ϩ>ƿ  ү3=/xg@?@~EtF\ ܻx`P?e i?GtK΅t>rzT ,w@H* 亦;8 }<j` w)ZiյۡCG'iwgXX֌'d?׳<;;ܾ\}X?3e`E `/ţ}]5E>:5]et祶aa_Y?!qY\ u._ϞcxCd Fq/=T {@:5p6~S'!QGC2w^/? W_̟8?-OH}fO{O.:O/Zi?b:CTΨc23> ^D!y Ea{@ VgO΢g~R 2Zd߶kJg,媟<r #pY=D8}<#xF@?hg]t9s;23]qDY OA3ɜ1g=R\|,v(ηɫ1 Ug\~]A|Ý62{5m]1 {wJypy+WP8 5H۽/2cF_t2|4_=dXb38pgYN@-Y?Y>ߦ?,ÿܔ?k3@?m| ,Ѽ ܶH{p{}nb wv5>$hҙZ?[-:K;jrƚܵs(Δ><9,k{_\~CW2%?\~kIccx?2s6>yfy녗335cЏxw vp8=P/wOOq|n?Z?OQSCs?盯܂WKC/Oy-;\*ؗ1ܴ3eZ;Py~ΟF?L4gGZ~W82g?*g>'N*>g < [6?+|fPO=X̢9ݟakWiDhe΍W+@ǒ߉4ZpEWs4kOwa7f#Ϫҹ~й0bqܾTkrM~ϼ[w*ga=1!;h&)vbB')oLg3]Ő_ث]v:rvJ9v{%~{gf<-{J?Ùt0X}@_w޿矸PZ>?By3g|K+ZS?F"5ž6.w|B眧~_mq~џs b[G_SwnY?{'˹x]Fzs R{3_j#4[Y ,1Nw䨦sЬm6mky?ŹoSWO XX>]4o5?%!-@wj/:>)>pm'vŻX?Oخ} S`\r? I;Y{5|ҵ)nYfFpsRjvJŞ <5)~m_C濴}5W9^z5ɚW9K:2A\3}Pkrgq.&*'uóވ{GW b˾P: Жew!WCSX;Ӆc67xd.}KC9]wF >үF?{T~?6>֯Ob)t.s K[~nhϳ֋G,gI׊ gr =?֌\ӟ_t~QM?T͟nB%EvAk&і~:j_1EOdלW3:^@:k~Z[Y=y? `XL{ʙběs;O?s׹F w>⿇Zk2.`İmlr F,?rIZإ*Y&y|Gϵ>Zjm|;`_p9pСw{ߖ~/|"]_ml&}9dD4q !7zЯ,^]4pWk}pϙ2sϢa1麏[,|#EX+ҿ_qߵg{WH{qwsj:lgԼD l>/dS}8y5q^ř\'K˩i@f1?|63Yy?ǯ-ߋsæ_1F?sE{æ66u? Nմa(?7寎]qI>m!zf.:Cݿ6ԟkW>-'k4 S/K%rQq~`ݿ?{E\,ce ~Q녜vS|+?Oϑ{|6ɟz}sH,Δ?g?/v#zzF:u ْa[{y,oD;}) gY`,=agEAʩօG>s\kg¯g(~k{E;,| k=3>}ē~Ԗ~o. {F??Ra׆\HU붐g֏ -> 3ky/Z?_-e*GtKESy8LSY#`~k傗VC"nB Bnyi]|H߁36ڏ,te?w`op>.[PkrZßd<"ot7~Ģ5/GԾa[sE AN?rd?"~b?חi^ֵ_X1؏sz^o1ic]6ܿ;MN3~7#̏cn Ks1,01{6u~@<$C,O[~O[{Ț0y$ MJÙ@?g8Ț_RqG?Hvwq;s`))pn(s ,zp﵈u7r;X_vM9NY+~Ѹ%氁Yf/.7CguHqϳQɩa ۭggXV窘&|m%}AN7,{[qͷSSі~Ŧ3IXWDy)?QKuPE|DbXp h4r5gv>w_ ;!VvC ܶ+~bI.Xb~{O[)&=M?Lb5a˱8f[vVgӣ?ٶS>h }:`( iS]9b/(FDŽ:B{7vgsanٵ]\Nb_*Ca_3g C^ψ=\'sX.2w331C_F*wgoe?: [e67Tk} :P̺~Z2%n<⯦ ,Ylee< [|]ү/3^b  )ȂL05ϳ]=a^+~v .7B7'MY?__/LtInT39#}24z>vc;5PIcX`n=vk=g|Ν!T_Ϭ?vy*s@ ܱo@ 3=5Z )~}M;x9yG/*!Tڟ=p# ?͟ϙeu .e={%K9$_`ݿ0ﴘ>њ?AE|B\P%:1WaK!_i̮38'8I5ЗV.wx&IK\mMkLT^%şo1J%mIw4hy =]:jK(oľB_&)pnxgg{v \pW::@<߅k,CN\nw)Yw*~N3b8AŻ ̉a@赼4| `-gOi#5V,2ljq&fyrV'q]t~aa*E,Ϥȱ}YwRзi}o#A_5HO mKq^bފ^pݹ_Y ;g st;qqпr f;ygݟҖ~/%4NDǻ3߶@?}G-0#4$GϩwزWnaf,VǂMSԀA7c08ݐÜÜKҺ?-wXާ{_fy_%gc(n vhT"|%c?<(N6u&Rkk?>?/y'P՘Wm.o͞3g)K-|d>W5ϛ oA,Þ]]-uso1F|0_uf`I:S'U7Æirayݟa O~׸ߝ]'1-{[/L|y{hNI.H9/wb'3EMc>ImHFdJogUWM:^t |[Wٯ\u2oO)z} 8xbu*x5O3m'g.gy9-vk)vg!f~lޱR5AlgZ숿˟ _`s ry}k^.(/`7~,O@k1M"G<Ϭkr7įF }_I9</,/p;/ڞk}~k9g,\]l^b/\y;we ǵh?O+?+~ϜiE?Ǣsr~u/˞?i.4uaYN}A+ 'G*^%qOŹZ3Or%',u}]>~}Iǻ+WXtYz"?[.g;M_Fl9%OjgX}k'okAΐ7N{2~U0W¹a߿'F}:æt3[ۿ)QGYKM8kO-y,{uS߅D? ү~}r9@Lʵ~W;nW<ZEOwhNVlX,V[Yϼ?3 Sq)`vgs?t~<-suybN;0c3_I+W#fw4ϴ\%3/A 7:? ?`g^-'Oa swq,dkS`OXXdr|Gq Y|Fs&̾%KK,j-@t~MŨK7~Kϓ0GY_ξW0ۆY?w9ș?-sg/?N Jmr7_?'lB@jn>/|/b8gn2g b!'ݟcpcS޿Οj3)ΰylἄyBPρwK>UwotOW5fds]s18S-δ3{^,Kw񷞰l+!?&O2Sw{ߩ~&l!.bvsY`̎Ka_Jk_mx3 <™q.Ǥ q0sG6Bsv)k.K; `1;Ăk_B )R=Ugf5.־,bo]e6@o''&f,#t:Kk|~Y8@\uXϵ86Fy{,[Gr|/\~@:b@Vag9=!%v*o5\Οca p?;G8X[Y+SP+ӷj{ukYyr7&vn'WII,Ŧ}lW@Ii>5;8:CV!X`]]n!j#XGKwkN^ϊIB5x%~UÁןy ~72{{{~,,KuY[dwŪ z; _R=Y)h.{kS,fMۅ|&|`23mB>|bG/=: O,bw!B .A^;:si_jleSDy5USs+Μ]]]5M/'3blouI9yG< #`o3e4cYWRƿ3h]vi?Y9S#Gk]Nq [Syzn/BB'3{)_t.e58qO_v~Yg)a=1@'Mq 1/ubwW[`'x }Of~FG.: ZZK{d3͊zw8@K+3S`"A3:׭̸/uhdXW;?unX1dm<ֳLXН l/i7yş=$es#{A;.cc>w/?_D쥳S9;3)[橚 lC|ʾboT~-^f턱"8~ 畵.VYKCއ5 ek?sU?‡"0@OXם#Bo5fdScG{FYJtN _҂LOM3mbCf /Y>cc.7w\%y {h/W8gQP-R+Ϳb/5>!js/zK_WKsga7Vzr._󫉹@W`F 4낏߾b77XĔg<~ٸ 1@uwN٤~+zsr5muB{AMw?\_o389s<u_IEDWan}&-Yc+.֏ߤ~{hLy_kb}+kO.?k.ZyskŹm0zf*ty~ow[q^!`>o :>!w\)?C6FK+|ҝw/k|NSGO.瘜S'w3kڜ\cQu/*N~е)jA\oO:Ro_qߦ؋wdA;k}WV\LeNujΘYkrZ9#QoB{w>G-x~)VIsY)|֏_I+ , o=kuay)?}>糖%~23~ wZv)t(}sߙW~߯ϊ8ݫ⠔|| OSo׾>O2VAڻ_p5;edE^љ,-O.$2;~?5-&WO!_O7?@Y`N)z @gvJy^?6G0L8iB^CksIg7K/{ i'<Ɯ)b)'39r<+*^4񲎶ڹAք-}bx>WY'g]՟s-j;u1ϕ~WEZk:5~#ͤ;nٞb.Q\b/Vum_L|au3uf\?*>.<>ddst8ZRSV/f\ %}s>[|54>Gi?ү3Qu.C<,^|~5.M>[S/!.qu_W BV)і;K6l3l5Ӭn7kvvP;,5Su2;fSeGm(|3o+W:oڻi{#:lk{(exV/-3HqYK{83Tq)Y_:rk:/p|EpO~5.<|5DngG >a;o⟦ūSⷳ߻goS l*6^ϵx6_xrf,;&/?wY50w#i)8oߙa{Y==OYϵ׼j4EW5ؔm.r-n5\;Н8kό;3k]n'觞W.(~4 \ft:3˷Yƴ]m>瑗-ǘkٰ}(7V+ֈN7Ss^b#ϦN+?gWzҰF-_w+έ1~ }g`1VQMCk85 ʦzu ;w5/f ?,z}p.9ډ/My-v0Gn_y{ZHQj?r/!oεQ>/v+~>ϴ"kFM͢v_vvZe9O}a_gkPoC?﫿gzfo Yq$Qy^J}q+g.94Y?Dzg`+ϳE{3tIh_qoǞ.o5?11%~i/fO٣Dq}?ο%~2yaw__񔴖}>IJ\my^9?Tv%0j?j,ްl1L[sOW['rw1nC]=s2fǷN1s=:ƹso0ev:?B|&_S ::$f1M>< 1k5)g}s$ yh¬~b`}b^Sa~j5jD1B.iԾ_Wrz-c^F`3לal"8ٝ7%e6HJK9%dmjSR\Owb#sьk39C)fMZqt~-[ԉhqF1'8lC0+90Μ+Sorp8 jWj9kudb?z6O&k@6>M,RaW?wt\B3[үgZ۳y"g)ٲyp>:3)fڠ&+;#,eYN?hC?Ĥ<82_1<bQ_޿sn~EF}Yw7A_r~=3ݽyapr ˔_s'fJ Çߠ7>?Vk޽-GEB:}`3AavNrPs`8O?nR? %ssq?2x~vNs$/}RV߳,u<[]~q1G ;ƙ}SƝ6%r;t'CHaoWX@/O`建MHFqb1~n%7]~]ubۓh}ߟX3N鄽 N/?9âF߁oZjUGjasB5{f \Su,Ow )?=I_aw{gq8WiQfE1fuD 7cF=3xQP3R~$ȍ–KySl<{F|S מ[ŦJ=T`;,&y޿W]{E_g!wƓ!?GqA)Ӹ`waߨGFq:?{*su)8xܵ}Mș_bxԌߎw/k:?O\#b1VN6};=hAkqڵ¹g-4;/y!]aN__8{ޙ?af-\bZA?1gWWE,#?S-r دƟן#~@{Ӭ~)v)1ܿf훧U(N]Kj蝻\f; Ms-v^=D2@}=kisg)Y9d/ňJ?K?^.)ǏRЗ;ߍǮh DЯ#_dL >VƏN{{h6yF_[^,+͜F. ;)Nx]s\&0g˟q{-)Ѿ)p;_np>B-ƽ\kmHc^3cj֑\˵<6{<ѳ^l9X7@=B9=v)}hyR`""1j_3kY*w!OUR&~߾"'wBʱ4b{p ]oy.{.u1\?Lw@Lܫpw dzhO91@;Ll~DvZbNmy8wQm~1͠ =a3Xs?3-wEdOx?Z_oJyСȟpU~?;#Yh'k\~xSrlY_ s椟|F :ϣ  XK1OK^Tԡsc䗶0my-]Ys_;|5ށ*GϷ\~5@5xYϵZ_G`^n;'[>/ȳ)>(߬/ -)Gğ <.{HWOG+"9|bAwSͶ>iyYy.M]跾\ZOw;FYG/|d~-]`_Oz~{BsUڻ91ܹuC-Gk4ڿ?mRu/d~\m{Kf 1/19~m9=6yre>+{5ݭ_55\ڜ/{ fh˞+εzPMNuג73Ъ6h|]rEnh'OAឱL6FAо2 -_?gEW,gS(]Ӝ`)="ݠ&zQSoq6?w_Ϋp%U V_OozGWm₩t^5.7Fy hg<{sko \ζk2ks-ǂf}ɫEL]kH /~ ~b5?io5S0`1ǹf޿֒4Oskx8QӠ^/ 7[jK5?Yl/LZ@fþOGk{Ya̻{ݿspeLoLϟ~"pVWCN7e1s,b!=kua\p9;:|KgYdoP/Qk?Q?ͦ  -== \hduv:'sZ^օ]vV`a7Av)O8ڹ?8;ѴuFƋC̼F?k7]DZK‡BkEϵ9Gԟ W9ѣC _3:A~SsK!|9m_s3A-oڧԟ]5\.lVߋZ^fGOx{lyܝ"bV~S\u-s,d/.xc-Lo\+ȉF)εy]kn2߿߃268)а-̙9#~d4mTgX`sNq=1iȟHz{1M橴 yTm[--s-ɹ)]8QԩxGk{m}m"O<%.qW϶ks?{k?5yHz=֒d;GiaKr.icY1Og?+?8뜵?ws 9z] jG5|d.޿"9)j]m+1.`Wc<~D*5.}Eq\gEak;bwf?gkbyY` ~;bϓsiJO]X_ẉ\{l؛5l˸}S::{47GWʯ>{ӹ_bV,U\_Y-'/fϾe| +u~yBvE@+oG YUVߋх}SsX/\~_1y&^pl4i:H#pWCS?eU =:-j%_~Ԗ~*N֯__G_}"RGՃjnw&Y}~vhsqU%G{\9oLE-bCһκůhK?2먏?_c mqW9zs cq,ƹW?^ ?_bZsϬ>laү}>ߢ.-%O8͘E mK?>bl.igkMs[n5Ϩg7L{]q}_,Kfo={b}my/>f~w yu7?ؖmZ}.'[+S4?"nY0u1b2#y;={& o}y-.vހי~5v`o-tSORw^rҖ~?ϿϾ_XzΗ-R^&~?7~;p۹;ؽT d:u/csYO>c-o4=#>[ι*{7ἂwܵ=_O i/ Z5(,bzbuQ>=A]y3%3%i-_oC/h_+lUxtӽ0Ы]g?bⴃֵ~Bi>{t: 蟃RoU7Ϧ R/T Үџ)jXfm~'롸[Że_4cf5YY|+vls?|{:LLR$u>,pK[Wz^7UK+{I>,}U?-fثӯ{?\䮦ޣ\bwRjzr /g(_s.Xhϳ,rSz}_eV{[o{џku/#~;FAaw{ww;7!A,Ӗ~Y_?;uWA?7?|c6,F_ou%?gA!1e@||ir( _^}fG/n' }J Yo32}Eǹ}<wt_9p״F뤸YwKZw-M\o7r!q9#o[9?8Z{ᚒJz'GF a& {wؿi6{汾*{A3Rw9Ӎ'c_<1+E aL=ȭ19ϸ'`(#ˣCN{cfݍ^mrk ߈y,~v=cߏu=.N}?=gx>s/9))vtCVwYe3yg'r/>WDYez\.ME/CK7{9xUڗK>B"/YC|^)tl/ 'G;RV|i:`i-\٨~q1&.b?vԏ[3ӮCwI+\F9l f}g,8wJW仈|"ŞkI'/?!ó-GE,>0v^%9]ftlI)bsyH)k,jL9^TdZM~j[B,J жKg& _|~K1~*1p([,p2;/OQRtϵI{]2p[KӾs^)bo2|Ď)z)y./߅&oKpYNfqd sGaV:ZZ=S@ƩhS\ڙ?9٢)~!c~{q~;|6?3wm±)e_W9ݛFG !{W!k?| *Fu\']-%zZf:wp]na+h\.qYFgɟwktbwwөyr`.x1/S὜|ȡ#nLJ_63OF~M-ߖ[c-U5K,5c g|s?O}M ϸ2P|Æ2Ж~Zb/;B'?~W_8Jh5=\'r`y{vqiE7?.q@ꜚ?u'jy!n:sB/t'}CS'2]t?dyy+f+aV0wŞ&תo^ﴞ:tkJ\f'Х̥P4/NIjK?-)[Ϭor\l鼲o̬2^tv$E|ϦXvKk3?t ۟y{`?l^"~< 㮇,Y_j^/| O+~{mNω9#_=Z˘auqrzTj<3cazokmmg52]xkO_ϡGG52}rR'W8v? ?k8ɬ/It^'oLgѳgə7_ f, wӰ_1[tG\+ɍ79ςqqmW?St.]4:߲ q'Zjs^nϹpL# _koƉ3#K6oKb>v 3+g A7 Ӗe=]~W~2^j3P}V5fX]=l߉Kg4>oK?ygy]߉/Vq_zD?h|Yf4o8!ȜO-vt?لC\;\qxu%{2k%܈ew?7PsO_:p[U5;;W=KڿD[q>~ׯ}mW;w_|b߳Y)w7 7~˱XVǏ~eiďm]R=vfHqVl:m`udS U-3Ͳs~)|³Ģ.EN{BoГϩ;sүe*_tekyf+xVM`(o-E[8ŹsI.O֞sl ?B~g[?Bzu>EyaOTVҞ? =\u'$z..cp#!⣏|m⟙wԯn&׵3|v:M8s_Y}X=,_GwqYc[}E|BX?:?׾,u~u V'jy>#~ϲz?F-.gb\13,g͵n?mל lóGt89-WvĜd*"^_ON:@~-gCWy}dAq.KW sF[uIڮ.Wmǝ4៰'7u|sĚ湆?yeҖ~ŏ=#ڿG,߉av%'2anj0OHM^1_T4XR,♀ñc =S`Myϳ觏^8ak/4L Jb}jfƁ9bށ~/x a}Ӛguy9Lq3U^'\|pzP\M/7KY9l-2[ hwsYc ]̐ QЯwΟ.?7vsHe5Nݳzd1C0GvAcisRqaG:~B6k3](~zo=\ ?-sXj'j>k2rʝ?byԼ~s3>9A}9_rУbϚ>•)fL9 F?u9-/ҹ$-hZ *~5KXZ۰fxj+U?Fy7CRjW~4rϋr*q[\멘l%[q皝՞^=՜q^é=Z{Yny6uex9gME1gKO.^2hK?{Ni|M`"_K3X|?k'#R`)\mwoϥ;rٔ;6ꠃSԸRJr|ϰ6YKR~&6>?.wA'+{{?7f+,+N5_]_5qv~x 1XQ_<ڱm]PxxP?gЧړsESH4rGe)k_i[܁vU ? _N⟳BͶ߳ˌ_Z?C煎AG}'=e}Azݕ)o`^nSsf=+YpٿB㷝_ݿ2U?)~<е@ V-k]qԗ.૯|/e;y 򫻴r3߉H; K:ۧ<E_z;>gҔߵҖ~ſb|Vq_(1ww=;CN+gMF{b_f<g_iW15vVZ<[k =OվrGCR>沼e [aS}s.nN?+>= ;^E?֖~W-]W{gsc6M7"O/q[O]8􁞵>R/wE&}&īnoHC~?76̙$|'XSr陘0k3w~mN~gĢ46O4 ̭~\s;ݕs={EφkX@]*i>FY !8҃|zo7ws#N5~ퟯ=3:⟶<Úfqaר{j{#?2æx3Rv!laގL[ϳ<]e1C33uiϛϲO9.ߕ>W,Sk9!wf"gU?ӗo3wEK ̄O݅%o̽yu%c;Cdz 66ll 61ff $I4K @bJ d;N8:t't'iw꫼QWn*{^kkuUS[oWZpGӞ p-衯ɯqo׾Jދu g<UD%s7\ }O+/\xS5T[,gH{~4p#~y>1o XL-iN#G>^GQ5ub]rhp~źXpg {a[tu['9G,zR$?s!/۬AgZ%ܿx?x-7il?vm4?yNָÊ `Im_)ki?K}~K\%M~_gKi@~klj_D_ᅳzah_ YO^{kXTemck_ #~nYgy=6-_9'^~t_kFI0[?[D.σ_j(֏|ޝ߯ZFߣvMS%=iQ"U[W]Es<o| P~ОC(m{:/Ѣvׅ7jkP:ibbf $(̟EŞ]oa?j+*V~bK/G3@~Ŋ(U䏭ϵKvnkP[1;z,eynAZq;οb/ϓ֬OY*/+)ϐڗE{:bmu̷o;l9*pḒ3~]lY]%?XjJӤ ,fZj篱n}Yf wz?Dǽ8`gs]&]' ]  FGF d&俽>w#> Dϟ?{M.u[u?B`rI!Ω$w+&0/<c@Sb]}dɋur!?0Gר*(ES,ֵG_juNrNE-YS[s>BL?o^z0'+Jpyjst?'v;=8;r%&M&vx6`vW1?9cacKEg%8$]=eU)8_&g,\$/Yp"a5N66xBŁA"S_V^>) _ 'Mpmjqr o>W#9Y?sB{|E_Y{ .)m\`+N9¶~uj 4>?;)7s-|828,>KG5_;~ȯ}M)?;Y܎y?#5ms-*^ ?#3`?T\'3YQ.T`ONMCc/\{⤔RjuZ[wi oy1 #sO_{/ X6~ گٹ8Ph+Ӊ4ϐ1'=7eLL1kAZR~Ϋ,_/s>9k\~Eğ!Η|+1|֙{goc%)XONFaΓSkP %;qeCn>g')u]թՅk~r;<{;5==?,DZ[|VsֶMyܷ9 < rRhΐsUh_RY~wVs ?8(^!{Yk* AW՜3sKjSb~v33j&݈q=zm??ʿyNY^uĥR5۞ϊos/.Hui N㐿9Gۈ̸' Ҝ9l+&r)orkkvA[hV{nUm2kS:9'WY>':3qROa~\{B87o/N{.I>V\Aϕ=E)SŠ8'rNϠzI۵g>X2s@"(> /Š'g]5!'KOWD/^:?KOy_w?]qWbsѺZ ;$5cFr1A\k _<߫# ^ȟG9ai;_cu'`~]Pf3<?|_;*/y[ʋ׹B޷;MCA?!3 b|ȝ%s{.ɵM-Xk^Ǚ]RٿAyuNg»žEsY__@K^kug?r(p\֥;YWdH-}? K9}ug38 gGqf~2;" .,'~W=ose_Kyg__t]' /#?Cgvk_l+BZ?z.fsEs!3{/9Ya RouBmN:sZg)z`[sEu"G#uK^,`oxyt]5Wkؚ&Zr4evy['w^W k)?a}Xoh? _?#.gc? < _+s&g`YX-#kpjX3n)׵/i/T4M㈧Y4'?o+Ú3U_j+?T-fM4G,,#-G)/%be4꬚gwEg)Xzhk,zW_9[FqeG1O2fKE^.󗴔_qIڣ5ǂMc\4~F >=r'Sϱ5d,1XOb_>1_N?j@ ym׾ʹEMuxΐcaɯgz@S/f9޲uOc_#_Mi֎q]c}U~n;|ɂ(>'`_b|eЯs n>=_~EVŬ;;ynX RG1e@3lc +B ?=:k[[仫r#*u/#@,ǰ_ݟ=BM~hV\X3]0@~-+nNw-?|(-ɼ6y_ZfL ݯi{pko7k/y)1o+yh1V}D5v⤘#RdbJOn+"[3gYq .sBM>='}KYΝQ{g{?Vƙm".',;8{w^H?W;f/csE#RgAz.C\>_&֩5ϯ}/⳼*w2oi; q Rʱx?viq6uND3?8p/zSa \0C.N} %rtTB\:mkqr;,xfsV[-?{O}o-8xCNl؟ G;&0G}]Ey}^``{~M=~_cـIK\S$`agUk+>?ߧ,e~Xwξ_^erb98 3OPRce|/S8+U $d?;:{{ =|9"b_U.p5}YjCk?#(^>>)0o ͗5< 8qfs%KZ߳(n CDw]ϳo a~OK9 Dgp!?џZpu{k U//yOs"wњPGƱK;=s^o.vFyꔧ '3 \[(;q,i,]\&Mx5mW% Av/,Ǐ+WcR>F}gBwr~J\㐟{"9|/򿲾/s3)OE+x4o= X=RPr5o㚔o# nX3װ_2ftompF/cbaʢxEOZ>WK9EYrg毝7`oJy, 9uM~zg殲<~WR ?|{L'վr^so E|>sAY׏g96-5uXc?FWW:r9kj9Ĕp E~s/l%s:BC<-w hTɯ_bL9Xqjr~6~'1?{gJ0N&w;Mqh+iE9'?.gSp#˙x&@d??\v_8g^^? wo ~q3r8K035;bqUE֜}5c\3P^r,*֚'ya z <}O?38?'x=3C; [Dw1Ke,>c~Z^sa~(] s%?v)_sϢpug1oiyF.g-p[ rd/k-E.uϴȗv:4Vaژ/׃R߫sN;vag@"#OՌT䇬i^]z_еZQu]Ŀ ێK|T9kYQp]f}gmO; W?31j9EV?K.k3vNHM9Oy?l&ZROnr57)>0?t8G,{-_(S_y3R>:N}bӿ)V ֏''r:KʱkWZq]+)zك[go|s(m?X?sг"_9ҵ~w6? ~-~gt~ҺsRgrѯSyTo6G9﹎@t믑*9(ѿbMI{y٧3Rr SWZBNr.9hYZ\['…Q i]ĹL}}bvrglnsq'C\wc$ν-Ϛer1%)|bΪmE>w6S0X/GcJrUh6l=l=K΋2|j:_Xhk_MAfp>:E135rE=X&ﯜ?||kU^hZV?/N(0畻Zl_E g}{ż/~+Eh ~yHs< ԀU~~'Wl)V9g?k_sSz)ϑfs5?9':rAs\ʜk|89hrs lϏDZ8EzR>BMϦ5G=Ϝ~ YT5̟CgܗޝkuA&?[7)₻,f3o8Y``c`.qY{s)^ )zn9 bn{ne$߮[ eOK@g3<-{4NtO5d,O1q?ۚ-/?31"n".e_1Aw+!g*4S}o4z?t9k%/Vm53/<sv<B;qˬXyi{b8ΎCpRx.> M_cwQ['RkߍYּMq=.\W/2O/omל?;h?s9kġ?0==&9}C2~&ϳo}GYwH1;̞ʩ)2ZGhly*֙53%^>"VA]kB{u ?55ĹܚS|3E]Ol_`t"G)>-~{w!d:LfSS\bB~q^rG4|_q}v?E|zk?k-vxwo:6YK1[Kud#Mq2l"^o5h_ X[ey\닮ῴs!>Rg|Xosn~Nyuw!O!U>oGG_Ed?.E5))eJ,r<&fM~6br_)t b|9!&@_A,p9sV:Hj|XzѹG&"/u,-=q{2Ϸ5BgaC2˞9Vk{9+;)_{P.M1Þ2X߳XS= n"98K8^gы?vM5Տ8bt.y[y_pc:q9EP'~(Lxh^5Sׁ܄^h,j=H9o5ֻk[zm\4#s;"g7=?O9k3 FFأRs";V}e߹crFcfL?:R+Yůs}?aNJUoM~ށ5~j[MEg ~ 24N3D7}oݗѼrMh o{?s˦}+D>y.,tX{\/p5Ok? 址/ ك_Wi\w.}dG!`=ނCPg4 $Z?TnlV;\⮸O=wFu[KcjsޟϪiΙw/]㐟^Lw7YYfpA+R18C[_?]|?t}1ݾC> k`%bt=>;XeFN}bmϪ\<{h:9˂[B _w=O39t#}*ȿh}ROb)?K"G95Ş =} ÞV(E϶œ.{@J5?o9}.Hy_?Wg15]S$do.[TӻZ>ա~?8|\ciwGCwߘg%I}wr4V~ijMeͲ8>ryZS.;__X?";l{q"H}*E9V~p^ ,0b7PdQW)rIk+c̭sZ=UZ_Gm jc1@{C'S; 8#)Y/tS}֤=m姝_6(;{nΨ<ĺ]o8܂s.)#O]^eɩ~koSa_=6Ǐ O>9pWMؓm[rn(Nè8:n5qM,rXkbdkoY\Q~=I^b|rWg˚\ u9?1Ѿz {UfaɿbfJ?cYla4{O q,K,燵w-g9G,zt ?قI]OZ>PhY\t=ϽX3_Oډ-ǟqE2(/"6o+?sϼwuĂQo9?yҮ[{{k [~?^ ]"n%1Zgo?m9 =\- {O2~Ob:ۺ_W9-rN4d?KЕޱN_Rc[{O-_{k[ÿkۈm'Y/ X"ʹi ?gO@}b^Ş+/JۄO5_޽6Z_K}>2EEN u-Iy'>DOk[uCόE4ObւβaOV[[)9WOwYl+?{p.\@}h7o[ޗH^U+M} GXq?t_n1<_uF\. *?;['۵]:wcAwYO^z~4=Rw S+Ӏe?z_9;Z/ӵtZ=źַ%g|Xfwor^GsT6u6'Qb= LD_GٿANPOLD_༔'5.?׾ GQO[u_ZGfn䍬UµYrny_Lr]g eEa[yzr(ӰnʿPV,qrv>WQa9b.հ׻5z+V,?5Rm}.yu~??#~*Xq3KZ`I?^yEqnŌ|eC'W8yvyK#W܊_9#:[C#KNwPٻ4=x?bY)0H\[y?pbJO1ˏgbJI9{{A9a7qדR>gM-ǥ8%V2^#69|':˾#Ȧ\ЊqW.,r~ByCuy/ƟCs\ZޓY'/394;~䝮 đrC_M13oL9~gAK=M~ yhS)λBs.)ǟg|?O| X0B~;CxrPW>-Y!oRȉ}&V_`_>E<9?3R>̦Ek_ݮ)>#Zi;稆߯}]gΚ,r8?,șw ~I)8(acw|< ~^;@~◱ʱ_}]C?F.I)0r&50Yu3: Q9X xQR:_=ohkf/cKC ^s{)?Ɵ,`jK1f{CswRjOͯѻ(?m篭;x=R>sv뉾9{xr19+S ̱ /eQvr_r ~L'[K?lJ.͖h*&yG|//8ss3U?@j`KuM~퍜i3j'_s4Q>\ߊ< >?Tu~>|9Z1J~iADY396_]8Fi8nyMeإ]?>ះ'uF1:C_8@~i![~ט)=u}ץNzluƟ94,pmΉ;Pi.lϹ)8P.̻2mCźv}nGϵ`jv17.aILsuwS; _c+}?{;N#&g3p~!';Gë 4E/vq'}"/Bsg!V>9,ڟ,9o5AVrirΏckS>W&>6_4g^5[bi7Zs_S@!e6߽/+֧OG5^Yjia5HK3/wL "i+us3 ~x9M/r:ΗGy6zw3l<$3u{zʘsx \ؒԷ'Mu}]apRT5 ?\X ,8L+UR->?@cn}٫#Zg(/#ts|֕ʯ81h~R6=^r~)1~>(E|gt!.m ˻ja3#>fw )(_0v|_c1S}9+]Fk{ÚK@`[SN\=kο!VPg|ϙsN)Mn#8æ5"#3O]󿵼V߲?{U?Wr?"aCٟgʱ}.ORi_bDy~~f}K g"!dO^n{p8 0v? L'B?BYۦU1N2՟ˆ3;߷OsΟ3y8+=osR}M|&zkPoɟC> k88ސj jws>tV~'q^[5~~B~=SO #kgޓwa݃"P<)k(wwc|Rs̫}g^ K',Ǽ3kV7?kX~$ 1c.'r[~G]l`UwV士A&OgX+h7W˺&WhbˈER?xuEx],??,uasN e)~1:R_h?ޯ=Yk=N2d_.ke%v /yk,3^xA^{"' ǝ~SiOCcwASbt])p xvhycsO6du5)~ɯ3huV~s泥Y:qEOD}O漾s?a_r浚c寫kqr 1?~r._}fJ.Vvɿ?YtoWm_{❑5#qL4Wmk٭ -?B' X(^|Zϡk|YF2V]+.㹼,2nrՕ.e1RY7f.y>O=c9N_a9Ge Q5E?k?pgۭ~`KgXԁ.迭Cb-K!k3Y1@~x"fSs>Gܔ5"FXjF|_M5=~/7فZܳfk+;gZn'5~Mw6Gɳy.|U/Ƴ;rv?t=i?ܬ9]z5ykd95@BOMoo_U5־8mWtyi+i϶3lkX'^k_7[㋮Ž=kźf?k[g3= ՙ׊+vy]SX5{!nC6>,g5}bPb};oq? b񾛬 W_+`󕖿i97Xeu>ηn-zVGhy`ﭏGB/}{D^#ſ+_ px}[< ҸtW韒rliGGlz/xps{?pBt]_Oe`q*_m7>y9pK%מr6s3KYnN}d';gq%JFzͿV|?G9c6X1*5nXGuW/֚3m sjTzGD>/0xϳ{gWzDS`>׻?-faU,Ws<'8Ϳ?9#d k_?yʢnDg_Yp0?C?Bu~A&?1.Z%iX%pɟyB/2+7y(G-\|kZUk柡'Xh9 >Lﰭs_E n_5öϥi//soܒ[Ȕspvʅ.ɴ>J ɗ5GY_Ov?}OScߧb 埙kDZ,f~}_nL~AYk~A%BkW/J>je,k={xt4Wn~>b8?!?rU.Nr+J\lQYT*=qu +/ wޟo7/܍Wʓ<wͦnҦOlkSuFn޿Ž3A g{, Jg(\`9MbNYԋ/Ϟ 5#b]j1 xuEd?8[:{_rRYSRgNvtޔsO9=%O\M149;iGZ?ǂkLw?[k})?sY5W:,z&[_y2YT|}8'S't`HUY{aA{X{tTék3k׉CdVkyH#iã+wR@mnQf5R{Ls_g)ϕ7*j[3.7шGK*9g 5a.yH}?V~ْ?/pVb;l?4+L;=QTZs\C?PƧQb=VkfOZ"ߢOxֿۊ,O.쐂N _/_h+?dh x)ctNw]?q8e3_:[_QKB,7uNGQ_:{ q_C_J1#} aKYG4fdTRN!6=17As/W7YRDEaKb6U3q裹p7Dnd} 6u{m Vϻ̹r_3G6_ó8P8=H/'񒻎s~?(yp݀A̠G wNBm]ky-6 ^p*ϭi\׋/을̧q+?'xC p#n޺8?H5mLcR?,_&P_aOp%Ϫ*PW5 1?T;{$oKJl1鍳A{u_n+?^'o?\~mRԊv?Ҕ,RĤ!u:זrsGxbkK{,o[ow_!GP\8? G/g1^@O< һ?HU+8jzWںvE*8~γ~&pTUUأ??`"3{{-r_3Tk]XgI~6﫤x0PМDaLQ*zi89k_߹gkc}ݓS~O2SBM~z5OGZxYg%j\qV}1zP)\\9FkuZ<<(OēSk9l&MaE4T>v~,LZ8CcT?1^3~ɏnb Py|*Wy8|ƣ;=?1OI|gfҢv }]R̍g;Wǧ#PB. 59M+߲}Ϋg3CNhΜ"8kI!}ۊE/7'>9;:_?~ =b͸B5ŚbMy*{b.C^q;"k/E/,/m#k{M~>2΁΅ثE.k'?ZϳC0b'b8#sNk?ꚮk:1;##&׵N {ʯ}&:3B? Ne_{k+BXM~>3?ey"z8_Rv"W7ߋX8A|}[Z{6ts\dW(]6+~w2ubOM@sz/Ğwi?\׈i^\oI*3o0 loKyo/c],Yk>2@ G3g#cV~?oQBMoϢN?瞟a?ȝ[E\?j1 ƟX399+Y3U۸ZqOgC/)Ͽ)%L[5fPTςς(Ŭtr˾⟶+/i{ -?f(Pb{ϲ𽈍;cW@.;r)O-Գf\}ĢgUgQsWl, _sΚg^h߃ϙ8%t~e,~$*tRu_F}Dz}5)1krJ-fMkSgNA?~Ö+/oS[7Z[wQ*X_LϘe\y6Wts?[i+ -iϚX7{-vE @{tN˞], ?<Ͱ# ?e,+s~8ȧ-_l2Us???ѿoT?{֬8.o*bF{\ U\Ұ=y|?@]omWbߕ]QYM|^QߣwgZ>?EyZZgzqڒZ}~,]"-v[p!{bbF-O4幸-ѰO4'R갯=]3~ڿ/>oh_7- "f?źZ޺.rmyAiK\]_Ya8,6놿=1rv;ǂWp͙(;m^Ҥwz {=l_]b}_| k=k:oxOy,j ރ q+,_wʏ3ڢ^f\9&WmW;X<VYtT1ţ5[ 6)ǝbk~q#Z鷺^_EO`秹l3ζY0/fAxޓyvKe;?Ё5Ηugo1cU-m9r}C?zM+.XZ`| wg!sg{r7=hJ Gaxkr;rrLMB?q e[x/s I@%|?/+w RwQׄ {w[呮x)֦kZסwIkV|g#`9ɧ\Y"8BbbgDnϤT\p[5~V#_{F Nv[CNCROH9aJ_RQ"_lAp?cpu)} ,0_ N4XYwY+}=W>=j;W/9D9*)8J5m \D@9|F1Qɺj˹Vӻں5kul鿈aӂÅw2`^??r}%<]w\?\gtbʹZsޒOg_/sa\]gT=ܶ?s:+նyʈh? /{Lލ3bgWp,vyg:ߵ*<|$?s/xm} XH8Hϓwr ~fz?Q9CCr[)O{ߴ狜ѼZqnkǺ).?ﴜLWlj=@hCJtծv'~wRo+P܂G !O "e#?p݆/ /'Y7gĠ_Ϛ9[鿳_[p`/LUdᅘ9Sc8zs~ y֟EgRI)pو'v" ƌWMM(~3yYp5?ۖ|~>c1?6D|0>kSߜ]~&)'c<υ^Kyv3+ߟ[~nvp;cS蜚b& 臺A|d:@ mWaH_; GZ؟;#}}0Y<}]b?.鰔QIq￈aPUmra~d$Ss jq5=teMM|X/kQ֜v93bH-~=~qݷr/i˹VXPhϯu%ׂX䴆>)KWSÿW&[YD䱠-9k)bOr.ou)_5C"'3]є+2KK17<)0&!c1d{;)$\ 3 >wu_7ϙTYV e?{{]_vC=W?#HZyĢ0軕?ߚMX`qx5ԫ,#q]8eqMU: ?Qq9㮳1uwt#y4s?G"lPv+?@pgWd)οo:9|.9p셗!⧔KPs8;)Yv|h9ASY'+ΝjY:!ΰ9ua_F 1ʓLٱ3V9#j'qys[5OK<2~{b~GpR%+8yP+WO=Z *ae%9,wMQJ:{JE)g8:DЙ?D,'\3/{ ?'?R>+{Ckx5g5^hb݄ALFqW_2b8C{n_Yȟ=ZWҹ-g]}5[~hke.X0uvW$@5BoXng')ƞ՞Eg<8v='gZ@~QrZ|3N.oC.K[&oeq2 \0W+o'$AL?sܩ?O<^յqts|t~G״w[ye7r]؟_9eS"~ӹcNf>+cQ{Wa5;ۆ˘/D T荤?GnY {[G\#}bhmge,Ή&?sT/YQ_%v-NIW)j<95^;֞FuDY?38M z&$+ɶ'H?[wk+ϊ/?AM~_ig1׉.oܱms ;WYՕ4jgEAF-g \+1`1Gm6X_mW5i|aO:>Zdy33Yx9g]@gwmg_{ȕWg9y\uj+Q\ osƺ_?#rSQZ`P|Q~`Mkq5mFj9,j%7ǰ]т _w߳US%a ܕm+֯ ЅgܢJ\<g>&buyf'f9ˢ5=R^IO{[﷼Py'!Y}Cw?ZO1_H^qpirtQm+?9їls^M4O?{~s<ﵖϿ#ȰeO-cWmG_g{omɯ\ZYZzfS%S;ZOr;{ʏ}zq[YwӶ,?kK_jSmk~u?7/i.01b- PS^-~>#o\I]o,0S>g-Ŀ C]?Q3DXgPWsɓjT5}ݣf_5fSd1ۣKb"?sC;lΈ5%/4%ƄyϘ:klaz/_埉XG5Ġ[Ơnuoyn_93_r^VE~5S9?m_nC糅gvqʯ88Vwş@q(We_/^W>ۖN3l{N>?cӲ~yQo]_sn:WK? 7_~}.7Z }h,|ďto_ ,!'[4~\j>_sϰCZJ+W۶FjIenul+ϼBo/"'wÿh+տ8Z1V`5۳8~S+gG8Z:`V ~Kض37ZwcmYzV{+ןP%2iIYyETg*[SGue?=d yڡĸུ̗ ^spT9s t` Ϭ[_c8`:?sg83t!;s`Qos#<3!ޒbl9˜v fbԟ8ɓC/.q~|s|2\}+gpI5pkI)X,P7iޡ~oڧ1?bvj5ٚA ߰:?q6g[G,'ASwi1;.# ⇝\W;9տ~ ԟ9;}wG}n{Tދ5l$S?gMIyls@z1?em_{,YbE"a1GpV]F<|},s`n5??+θz7^-`/[uy#6SScywyw Wϵ.O֏^bЛ,_g3\)= _Piot1t~~0{PNJ1t>3iO:QWXs{?"N8uz|lw_S?|צcG,?K"9Ȝ/-i?q0>E)<~ú]2\kQjr}uw8^9334Mwy?]\}ҟLI\x2| 'V~!u/a{a[>1\/8sh0>w^m:#ls?o'&f}x{r)ڜKEg;!r(ϕ[ψuOW=S܁瀘2ޫ 3~b^سY6s-3Q} U,[/ֵ/u -Ԩ},ӯpY7G^bR~uZĞSۤ `зS䋔T5>Ev3~z}Rx?p2g5 !GXu{e?S/;{;ȿbC~": K^/g"Ľ]{Oļ≾x:~WsSM3Όr 3~y/P&O6~^l3%FCY&6Kk~~r]ޤ?u)fî*EokOs=/Y^cno>:_ ώI1S׏\~0|YBuDz3Ou;ۿˌ=}Ls6)/r;gRwț?O!{gbR.{ﭟ'3Y}vτ9i^`??e3P [yi-ZӬE-ֵRMO/[w s4 5ϟI|?F?KŽe_"F=w]Y彆"<^\+W3~>屴P{F8 cj-mo¢WZ̛F΄<8_AoﳈYg\^ƞȿ{{sơԏǨ#!~_5G,{g~KǼܽXy?Az|dsNk^]k{.ޝ[R.1(9 OZp3-k8#w>}/3n@aQӀ_sѸZ`33ׄ͢}@w`޿vJ11a)w|pP?;/5xE {sb]OMy9KRNoc߶3ث^-̟_u$п6ۻ;_ψUOL{=sm#_aap5vxb52Ra0-r]3ۃogy_J3G_|={{.q߄s\!g}5Ŷb&/u%®Y'Iv]BCj:t7_NT3]|Z{?,MXt?r) tDm)Cl[,ƤZ{,wGt]-1]W$G#.q}.r{˦KRߟgjR!l}~ ;q9ap/9?Z'U;Z/8>]?hw/O)5>}d>6aX^B*ƕ&vUV]b]kb,γ~5l9e xv[+?mR_W}1Ys;/{Wj;9Žv\bQ~,欘gυgwhVޜgw+ty\k+YF c2π}F⳰K'7D:G,*qv5gXv]~ڟSj^ )☯.8ƿC,f)^x_ϚjקX}~ϲžb~{ʯ}}Y3m񷳦]կ-kc)_=}Bo'[2'}3C5؞5k P, mߋ__ [ +oy_D_cfS-'/vF]אkҹ'A~_Y?Ro'Z=N>4]:zRϯzyg׆Mqm/yy9]V~ Ї }xº?i+?9`eq1/ߞ毱l[߯Չjqr-ޮY&>gX}KyXVZFm2"~3__T':?+>b3lJ,<{ C+W{t]㕭Xz>zK}BM|v9\10#щ'{)5~rmӖ)!啗!)pI,ś]7=73Vw0ʿ l1ra61lbFBU/z" _p&)&Hr\3^ A2`.(-sm]k~}ykkޓW@zKLA)8K|p?N }*~xxjar),qȉ~8g m>Ornn_uS I)0]_#pO} 7nsZb )n]O=9܆S+l%}}/R}b8#סÖ*_bdt]Zkmk9 ޒb?G:.-猓{ַ%/)t)oy?%/Q#/pCk\#g̢?NM^ˌT>PVbyoy8ڇOBO`w Z!c搫\"^$CXNӾ&R^Y&X*d*wk?sn*h0}_cy7"7"㷃So~E߭kk:^%#$8o]$U G:x95xk^Q?|~^+wݾ)9Wn j_Ϙp}an#c.@IK 保?.O1{1 jߚrf sMS.q답b=t]zuMۣ_J;ŚUc/8)8P8W󆦦25G OC?oqo?WxWr. :)V~ȼܛYSzGEāVCPE<# T9 ޝdgNHvdP[pz;'}ʳ#Mr?/"_χ"@l)?r{_we sqT+;2=^|wbPWYŦShm{JjH\gTZOSio? +9`߄vΗӚO{߳ؿԋOY`O}B(_OCW؇ga kwL_yKo>)bcR?v8~rGAStWe7q~١bAW$a< [Н1Rb,0zcOr9(~͊39gݫzFgrw.(bjIrSkE `Ӵr?֟>X=]<5}SL-7 e?9WYaYRw?!ͼcor?G\Vڂ! @Y ?gboFbrc3wJ]WQܿ뜂\??#)Ubac't;@9Ӛ}\<%K&<;{6o5uŬ&XFqj륰y|#'BW xhK[FpE?'Y?=m.k;<)v=|(gyo{9s֪u9L>)yg`u#>k_)v! )A٫J?bc ,m*XS bM{\io-)1Lo=dڬo21}2xx7Cn"Q֖~CgjBgt۝fԩ2{-u ꯤʹ=)~b1g':#Epo9o z?b?ϦJ;}\c-qz]gGmI>cZg S3~?w-\k߯?/g[Qa?eL4ѓN]?Iw3K@NS;oM-wE|PC )ߙXe?e/(% S&Oo?Ϸɟ5{/#>OUsTs޿[Ί\!`bbXi/ V W؆!/ݖ~c&FnSc]+{5"e\9O|W')ø{ֿ@gSh?&+oz(WS Oi7[:wf ws)q/,WI>pVa_kw?o=n~Gq_q3׊WZ`uԚ55Vj_XO)fٹF?1-z3cMLy:O,,ziJtN3u3_ jo\gkq܋k^wj;WSj<^+3>l?O)(.iKr, /YWϾ~su~Y]oŏU+r>omyȚky!ks}O*ֳKGe-,o؛K)x%=A#r҅65w8ݰ-П).JjO癟m9$ߦzxw5yY3FMkqtm/Xgѿ5ac}m\ cmM˜xg_þlSLFmHo/q&)|Wƿ?c9,@kvY`B?Ї{f ?gEd)k|-2φ wS"mKg0؅ܖ~h_[w;q!VߧoX|TA}N/΃' :/q-3њwЖ~_|fAgYM}-S_oY`] 8r:Ys.fk[ΗG,zO8ļ7gbmu-?s`8<ބ̪݅uE<ՅӖGbǾպ?S'k2^ܶOV?!.aгbg(z߼Nﱾ-^%s[~Ƚ.*kGhBHS\hwQ-Bx5ydͨvՕF3soeo2ź0.?m]1C]7+]¢_10{9F?$wY.5瑺_V)'gZ!ğli};%8ݢא*w wϼ xI甇@&7ׅoK?M{x_\gQ["q[3Xoĉ~`ӆiuY׳z|z+2YPk^dGQ,(_ ?9ww= -`,H}ErG1S֟>2pv ͓h cg-.0R&&RBOqRnbWo.-x[ۭ9\l,t #oO n:f ]~ 9$}!ϴmYԿi>A~gKB;`f\Kү,g 1 _Ћ{Oa.uЬQO;tV8|?^W94#uӮ:;?kޣT5}&!MTb?pc#qgsŶ=lr{X \EaU Ϲ5 F7󴺋PK{xۥWO;wC&v! w 5mi{wewc~N"3Mv} `q(oYlyR;%(?İS*׌kRX1$]*uZ hSW{mZԍMgd$sBwZZu[\~q߰ň'>KLģS`W@V+:]m~FORnO:γq1X>t/v9X7mR`i/ s!97r]Wzn'W_3矁Uo9Wo+}"[J߫) v>t)pN!wa\׺7 oUko-E;Oq^-Мf}N߸إ -rB/[S |N—ɺonmWpĞ'~,e3v>bJϑ?:~5bH^0 /wceeθo,Ə1Or08՗Yz8vwENߓ?o_.2g?Œ%r.9F>N1|4nUvUϱ K~gWѳbzggN'S P(!>DO_ RP47\"bչ*z)it]CZUKsWa4`^߿9*$},ewIO/[ο9i$ŢlK?5wR_B ПieR,AtV-F֜g\֏9r)AaΜ:6i`=)5rwA|MR"®zBȀkC־=Ylwp?58>|(GJ緳}LXS3C3\>iOOy _~Xm' ZakF,ˆ_O<.[zI=1ƇBh#%.%ꁚ<ٵh٧] _S~wbl?'3 W7?)kS[wKXc8xb+Τo ' W'}i|?c-_Q?W,\ ~qq>?29>Qw-fڞrL'O*N;<+eē;GӋ{ƳV:wP5;1)Ϊ?\:?Ra7_7pw?`vw;=rh/ݔ{ؑwݿ 4)sqHJ$ G-?g= atwBΔ#S|Zݰ~r^Q12kĿ8M)?b/n)':1j757Ey~|jƷW|[3*-P\d/??y蠝5xnnKa[oϹJ7wmKEkMX_bq֏'v|]$g{Rk_V뿢ϹQt=y&g(>n9Άb惏?TU 2[uϲ/Уei_0[WOX%.>=A)smCW yuKbf{mFu &gXl^מa='Ӗ׹twy%sE;˙0?3Mh}y<"&P\;¼!g8/Z/.d3,r Ϡ2 ՝upm<])~5w"^FuBgjfZw5cM~K\ɯڋ-ř~=s䬳]ZobB{8ﳨ>|?-kӾF??c {R@?uGOZe~.ʽ C.!9߉Xɵ_H=kn{dz>L5ƽ;gpx[A//Y.xğwՆ~ݿ{H~`#ȨĉE~Di+Kų5/͇F=_"|}?yi3; o)üGAppakC&AsRڗezbjsDYMY~.Hf?Jyyqz,K&K^W젱=! ރw=ȬĎ7!c~܈8o;W,K]?bk/X`Rj_},s|9/ȶƿlo[\Z\_nYjOmmk r/E!üh2?ߵ_,P+Asά"ռxz1xK>isM 3p?kiXZ(&w0%bؚ?DZ_ z'x߳_+;so]-l%/䷶- ŋ?̛Aϊ'g6-_X__nQԹkWIx'5Я8]:\-so+!M,v<z^sÿ:'fⲀyڿ>3Q.##ᬵ rm<h8󨭉?Sj|J|k?Y娝Z`-"!0ӼV3nJ?}Ak c˾J8cfN'B/rY.W[Oɽ+FoC/N;^9pΗ8O^ƪK]⽳݄>k3/i߂|5;_]*]]ߜğL _`lf(,|9tN}~C++ \a4~d~\5LLa'޿8 }Zu8oR' ̹9q3u(ךꝳHU~%ŮX7܉txK^Yq)ߺHcEFxw5p&k;̺cζ*π;g^u 9"^x vc;"NMB -駽:cS @Rޠk(nxT_V_?4ΌqU?{O}\ ρ/Mܺ#b?_k^/wAOplh1 0N;\ I _M2Q崔_ƨ?\qt,(HqVL=3ggqA?ٳٯyKjּn1$d1|%BO]]f1O>-şl_mrTq5O!)|ӶS~og2w+8?zo3%ut]R!u| L ;7w7/\>yݿg`noS_Os#8.wP|>/јW?YKKg[` ~fku=ka=M.3ܢ_ "|qzU h 1ąf^-%~,SI(Ў ĠT[R>`P$~ݟXL;OIk>|P?j-;EEgɿۭu'y;)iStrA [ q.s9 ,ˊǮ=ZiT?>SV:KZ`l.M|fyR=}"Ek_/qP6kOѯ/Z-qڹ?! a0? fM7b!j $v_Kgob z9,W[d8& 1 _iC\2Y$CAh_嗱0YK| [Uf~3Cw]k8m5^ȝϒ(9́\bG0+䯈'/nKKJ GR6+qzrg-|g߷ߙbqQKGğdWri y5F I7 t]C]4N!)ũ>,{\̔mR}1$s \y;D'tkoXWY _OpȣRրc>9=\=EӖ~sZd&?ak54ϦqnKI;X۹~9RQy_n?)/G{:grg]!W m֜tGRųڞW)5Yη?K2J^5}mW?Lw(Y=#􇿟#ܻ?y~'anHoBF?oQV??ßX 81Eu%(r0ZhuGK^kg~ӌdooD>vW}f^kH{Bnz8NgoO]W \bQ[ey 쁀][\lGRYG.9\Қ{_k͋:zY?bgǹEs)'_ǞQЯH_1unw 9]fH#<1EO9)YҼ.ӮAf5w!w0a]_+o| [ާW>Eh!ozřs盝'(Zb('=?tbo:ͧ9u )x@6&}'a۟?30½Ŭks10Uƻ tOvY1uDwtĚU.Cg y‡-gğIy_|"v|.nݳw zBhb~v3 mWX;rR;5Ąu5=<{^᭹Ϫҹ~й0!.-5O?g-ށ;\j+zO%gZj]11l+S>gה8<A5wJh_Y`ܫy-IO=fZU;:Ƭ}AGi]I}l']皿M8j9O|6YtOb ߈?7>{#+oE23]aҏwy[.VY̿3ׂY:?輦=+~/a,vمy(>-C+NHC)==G~|y*_>?b)oR,fjD3$K-91 W/g3yĚZ{.X}[d \;v?TUV,"gE ~z>8'SIoK?{8MIΚs~ն)?kKg?nK?bgW[3S>;1isy& sGAo[i3bѿ]ҾZXy/=yy|dͫ%dzf\/3}_皜j=P =Ȼ,`|W(ޯW!f}$L?:ٖ!چk3s$_}|ΩiWTQbUYqB85xRʱ%5.Vˑ)GAl,zT~?6umS{ņ-G?7{Y%cKO+K,z6_鹦?5E?Q%/pm/d{tsy)34j_X/{wLyR8uSWjGsc7ػZy {~E~Osy[VgsYx{ewb~km~.˝υyTcbnSá{߿g݉gřة;F,Ǔ֢7JXo/95wXIwYw78ӏ߅Lnǵ~b;䭱sGA ~暹2])_A{9V}z^}gqoRs-jzf>3쥡̙b,c}m⿿ˢϵ^̑birޫU-L5Ma{!ӈGC.i[kT[e 94?/U_Ҽ·,p=϶!|osg5q9Xok~<:rt3).Xӿ|~LʪEN=텼owwg {smNa0ϵY̿,Lxz-WMK^<^kqM䗽w{& |fv&;69k|N[AC ۻ}֌^,ά\k} ;=O΀e-Uu.5/sB]_mW,Vĉo+4-~gB"/+l/0䘿:}pϙ2ŹgC9@1:Ι)ǘC>{^s[`@?{蟌XF(Tn]gW@qoލ,U>jX<l&Z`Q~!㥜_ƩgGӜ./8\ٗșm_0ߖ~X K"No챦_}f>˔_3pQ2bŜ^2b n LeJ_[vү 3OEyg)EKŹ'y}Yu~?G__w)bv?MG5;C1wRvI?g{C5Go:Ϭ^ka13ߌZ/䔶v5Py*;gsYϸ\=sL9uq} qw-ԽTG>9[2ߖEYosFs 蟲{8w(ƻY,|Ľ+,zү83,ulWWwEP6u?ۢ{q }.Ϟm!ϬAf[}wϠߏX</-ε>QUΏ< BOF&3.oK?g3 x˝o_үsܓ9),Й!-9w:w{ǚ~@X:Rwg;?E.59Oxqh7]z;ōgr礠ُ}c}mg7|I[YF?qn|bC~Y)Bawٚ:gϱb^un \0 ^ŏRD?oK?O:xk\w } sc6sy pkm}%\^tc6'f;h=qĿB~Y)f0ȝCg1+2"^=?!O)NY+~8f1EN3:s8uYl|3k,?sUb>K ?E ;,t sosĘf{A qw=>d?LVgblzCiͽ ;ΐy[ϵOH ־?G|rrS~R_݆~/U,)T\q_gRI>+{tNM:?3Ufb_b9LOj:㯘ɶ5?f^h,\+6,vc}yg(臼N?Wh_h?K(*1s;OX@Q_aۊ ?KNyfAe|a`Yt:*1c}Ժ"V5jxw0񒯱QanYkqCt{R0qXFD eo'X'siǠ[uPwS%b‡}qW/^1u5\wE]/Wl(=gtO.xv V{c(GYP],߫lWȯ3:Y΄O M;%5B5UZ*־_љyr]}V_i& ?ha 2}Qû_t@RoK?*wX>gD )ܕeO݂L̖R`lr,'|1K1u(gA7[r0I{r'kĔNKU_/Ls5mr%~jR';_z_(ϊ8iY^! ۭڹ֯ zb3jS5}>#̘yQOߵE}Ď_Gbſ5!iOҳ违i[{cXft5o7N[ۻ_bUBfv3|hص=pCA?r;\0o&6)2v<>N\z # C-x3QG۩'}a`+11)#5dC<4f '8wK+F%VM|M/P0Eĥ o \?vv?c~jz-j4o @)?K[QkOqYZBsH[gbyN;_)o֥{[9cR;y7ͿW-ه{ӯ_~y|e> 5Le|{`yEΌxZ29kJcg]3|^ZyCX|U/Y_tA& Kk|~F<1&YP}]Atޒ{WkCAZyxYs=2k'ԢZ5kkߤ?<ߟRϕKl} 9迷~N vy}1}'w,rD_Ss]{ut[sc,؟ .eu:v;a=ѬN)3gZVo/W{ڏ8_e)oi.a9v <^? _ط׼ߢyӋ?|ЌxmWRڽS ð voK\`OfD}A;ۥ\Iv}Mu`x6V)q׬ChYp'WzFQH;%4gBևzlqo3_Y̐.X&n=b? go@Μr'ޓoೞuUN5ú uyt@3񻞵a 9_J]1C8>g <#Ź\w$Zg~ k{@GJuSX?si;:EͅK?oѯ _5]օ9g>YWg9N+^>UJC&k>rMSSi'A? Iҿ.@h-sn?,voIw˚bQu3OEN2%~^.g;M_Fl9%jGZ}6d)29C ^-|g-'Ŀ9ҙ}̕054O_5>pPmvW,d[?oѯ3˷wg' g2Z߉֌WYߵ_~ w=9k 0gy.7|;}-#! ߿ĥsvFSxW;_c[^jaksSv@?/s@^Ņ/7_sbxa:kqn oϐ;ͥ<hG콽^~M#[36o{uQsbWs='Au%sW]/5XbzeEؖ,0+KI&wmJ5+)'.fv{8ۢOL.+Βj!yg?9ZߎA_򹵧wmΗ=Y/n?"TC>a?vt8uSډePsF=Yk5a3=CsNAe_%!_gɵϓG/;1G0gNE 2z? s>ʺi=s~xZoR=,Džfͩf7a/KZ3GxcEѸx:kΖ~sSw[K7O M.ꧣ |c_7{хac}3LVs5Y-=z04ig S{k|N:_#ϣ3Y6+x_?cis+gJdAw!v噽hڋgkg\3fwq&=Tj"A?at- Xs~[~kyj~Ņ^V|N:cM?/f >xVMi2g"XjzfY~zfooyL},K8Xvѿі;eDLU~}sW3mghs_{}u bòfqEϽ\9qwqǪ⬽zaORs٫,к0?I+A|{?=[{?f1翅yb']1KA󐟵^7کxſ%!lNN+O.bNk)pY9SRvsƹ%~>#>?珀?O<1I?y)g+܏S>^閟k?O,5%Y0#N/f20{؟:Ma+.T%dr, Ks_Y.(l<ȿ.g**]hryZ@9DZU*ޯ`sHq\0S}\1KrȰ?gə+s/?N J w0we!:9`Ζ+.!Zv8jh-4CХosY3!f0٣R`՜b&kA?{8g1BW|w@<)撠O? .œ9_|N[PcŃ]s1ƿ8kUϴg=RwnGky b[}F./vry ذC];Ǽt5)DRg*)i\}L )%똔 u׬柃X3<Ҋ?@ Y?Xt6.ۜ?˕p﷦ck({B<:3qe]t 'Sl>`u~uiYZjbaqkMGϵ86F7dqwIuA.#KOL L6xF?gYSo[dy_J}FYb(+?l-gakC{ vW| K;'7H|3s].K/tZ_|ә텼K|C b*wQGb*d\ 3-Yq>hE=a}zVL=YL/wa ˰s~aɟӃS`H9~ Ra+?&[ʫQXuIY] ?)'5+s* Y5O)x6SÓBk ^IƋ9Ue2~ &S`}%R*䟵e o3r.x/sFMg<| |x?Z;* C=/}]/΅^[mʹ~ͯ&01_)/}nnYtf{}^~h!aPF8{OW<='%Nו v xX'{G)[k{5 b'ňR\e߶KO'XĎ/[s sЛ÷_ČAIo߆,~S>b/QgUϔ.2':ljHgv\59ſq(7{-5G/̶-};/;|"}_#q5XWx7BğeF ׺0eĔ_̟LY M><q7 g?t|ƾ:s߲;/LQ~XG׌Qg -t緹? E˽*%0qqsLy:v5_m_(7Tk_sAz&W=cr g|U?w8Q fN,ȶb)Fhkra/RR}Cgs4.kw).N O~=#CB?mqB?U}0Kv C,= C$hiKσJMyZK{PZ'U\}~l ?Ji~Мto YYF:H*]/d Y"'G[(.۰Ͱ?Rvf ?\}3՟s-vEk7g11ExK%Ik:}E_xL -j#:QF1ˬ_P;[;gN\Kv[qf.\R 2{w taT:<|EROk]/yd"bs*?_awD?)xOXN~uMyD˦a_<%]ݿCѼ_Ft4伭jk%~~6wȌh.D]k'RGo0~n%UO׾,R߬n-9伆\/ l7QǠ=|?C_~U_8Dx>w·s߶cV?|_|KH[s~T9o\xcz#rw_bw\)b^_GK,~p֟m_뿬e๮tԗkklm mjougqV|T='⬸s9'>C.ǭ-gf^_?|g%֍OpJy".̘F]֗UQ8׾_u~D_jk:TX~SZ̲Yg.xݿ~7)Fxʨ).s&Xq!M_ydf.tgb*Te\\ת3yk\wO _M+qsY~w~|C7b KR?܆Gωgr m %Ŝ ff?}:9b8tvc3_GZ5kKk`,z>?f 7gp0߀ٻENY,! mk_\:g.3dWt3py k3`L_́(ƀTh~bX%sO\ Yq?3N51FnO 9)f0c#!̌l2 xy׷R̿b.HmWY4G0?E~eyS)31'^W[<ŞGXV ]>}~u)qʟ|T#QE>9:Ϻ!10mY=S`mts?/K9ՙ~NKUo9kudb?ÔAW'Kdkx.:;gH1vupl Yu2_'v#{= "κ~>o_uJ1{zr6Á) u)q|ë1+pgh9/k_.A ._.ZWϴ|.C8?)jr}8-ĬŬ#3SpIM89eʯb[3p-{ oO}+sM~ٻĢuHbrB;-j*`ABu._t d3rd y-m`>; ~+ӶL$/N?8e?@(o3FAy==in|P10_߷_r9ᏻ~eGO>MW% [krS4!ŮʼnE y|ȅ)0wϰ;Z`> Ru j=U=*;P% :~vwM1q\y= zrj=e7Uw;m]tzI 3kw<3~)ʘvm9~;bĽL!Y9a$$,';P߆4w/8':(EKKwq ܁ <9*׌UW0jH[f h\guWؚ5`ݿuwoyD1>eW=l,Ϻ9@ĮC_7D{S{V L:gu-ۑ/=75h˚6"VN6}揸f=47[Пii:Ekbl]~!з_BLI.0~S\gu M[ޚ"ßwvH[/{Wg w}E{CM>EIMy,l.:XQܿfF]{~;/;(N; _#\MN %3,?zSq tc}=Uzÿ|,i\nyDP⌁>u(@Hs>U_Lt-1@!W[9+f KpWqZ:)բMQZ9kaEVg-vU*t~e^w۶4<Cɣe.<~ſ H ZU/=5gʵֆ43k\2S#fkylxg=(ejϳ3ob'E=YFΙ ]|ea6w'f!)Q6 X2|ۓJg}<]< RisWYfNuzĠŬkzG/uR$e w}uϾlHZ?Y_pe^k^Ot֏[Kk-s-Z_da ;Qm~1͠ =a3 YsY;<7gմXk ү3/=G,D~51ܹu^o|'"+r?Ysz'Q3tr[Gƾ&^;_Ϲp6ļ,;:sr}'c]e>:{5ݭ_55\ڜ/{ fh,εzPMNuג7ӋάƘe]i^qO Şדg6dTUw_scǚgS(]Ӝ`)="ݠ&zQSo̲ߠ/|ѼuU~`_g*ozGWmw>|':/Xk4Oճ|~p׆ufgjv5a˱YxvC:4c}5kq|r.#/LG^ށ?.WZ橴qM/G7jxWk忁Bfk_}o'kw[Y Ay:Ϩ)|E̻{?2xğjs1Wu/~"pV[!o,XHϵyZ]Xc(=k' Y Rz?-~>|%yFכ{~x"$I!=kݿ j .'*dE\܄_٥?zH׃j\?D;{gfq.1sϚEMT~ m￶l :9]ϴsw[hX_&\}+xe|T՗'5U~'|Fy}!,r+]⟷?2X"o_(ХjgUW>ɵY'zV^YEwyLƿ3J]oJ)kωλu/%gͦ0E ynKtQ寐[&V9$m כ εUj˾~OS]m_JOu'.tA?b/1n3Qwػ{/WO_ÿUFqE{??sR?C jg tuwwUo!Ӯu"%hCp5ǢڜQ#O`ԜΏw23'sbMO?S疸Cp&E92W.o7řTp.z.d6E⿁Awj~u-/]ۥ 7YYg:jx3>]o;¢w`k [18g!اZ1+x!p#f;v%e2 ߂1.VW"'z#Z^ ~uŹi}oy.]?ҿ ϵRF?[?{ڻnK1NJ7]ʯV6rMy2~Q=g)=k@ُ2qC0_mGhc^Lgk#.DO=n#ΌovC5svmgK.sWG=tm^i~NsY8G˱g#Q~)؍SЯ}#K#SOuI?d~ָ4]޿O_7t/Xӯy*퇤BU~A5kAyآmڿʞsO voK?{NqTϾATF?}4= kI]o2O\ʝ棴GzO[3ߥv9M;3uZDs8'ԫmk1<9b2g-G,jG]Eѯ=K9[&vPGcw߃]{M-Ը>sa,9w硿"Xu_,89{vcM?1g˹v0.!iSB,'}E {ƚ2news?G[倿Zkã+W\/1+Y2Ex~)辘=_o1g~~sQY(Ƛ-kq ;^/k}־o1|UCX|Κުs gOA?KKN-#fZjstsG;_}6Pp9nwB\ɩ̅t|='Ry.mWueEF[55C3m).S9zs cq,ƹkWVH?j[KT iK(~5䟶vs>/pLJ\?nK[O#gku?L;[l ry-}F=gw5O/`y_:KkenOL8@6{~dmٚ ֒;,p|)݈XLڳYHDI}= Hs:ΟIz?+ .SOH}vbp;;]Zfѻle>u1b2TЏ=*͝{s`GāOn>A; T~s]G?-Z'ؿϾg,z=G:A?w/`ou gЄo?*{]ؽT~l^Y;29bk't}7jxw4iV*<ط=*_0{).l_AՏ'6y]buYx t=-?%:ҽܿpvb_q/|) FC?I {2۹^b'Q"?qA*X`jB$ЪrN#N#%vlݴi; }k'tK,zjv6VkPܭiB_Wm~B#{6{I2?b9*:L B;z~i=ɺR`;+3 uVZԂ~EN7d*#3V˃|[_nct OU)?kxu(欑,ޙ)ܳG] Zww=6N`>t;|7]C)mdk?xv{ O{<$w3,W~E7s~, Wzly'QEEߟ6 ݿC7qwS'CaQ)vn~WwN!3O\^~G?lNO;+wOt8=Ők}>q~_t wY[⮵o;9%R_OЃcĘg9#Bb[u"Էܔas* Dz YL/-]|?20e3u*H'୶w'<.uh3M?'8wx|-m17y-.12m.d53l?KsӉ=9ω{-/ox`eA˫Ϭ;ۺ=&/.?soB3qW h_~հE^yu}#N8vݡolZ23=үqp5\?r3w> |OwO)?Ido1pe<-fJ op!#\)b lwq#)ߙHQЯ_b\hy/(N/_JzgWWTg6tryy(݉{Ok3*ε*=J;z֞E=)SG9ϳJ9&~]~^#kOc<ȏ 7$g~ pg el>D<{!oqYŽB~u\_?iN=OL@ -YjAqtoE,_h#_̻|/x[u:|]|=i!{Coh>Jmʗ権Zݞ5Z^Kqnh< t5.оt #GR?N}'d6C_es}=.߅?Jq{ uwt:i4\SgZڋ^4|"/VG=пY_Mot m)bSE+95^<̽!~/b< ~~l)b^{/]~/N}[PUY/djV߶1l?l)lu26l Uכԏ`࿱~ud7dJ1aOQfm"ɞ),^^ȹc EOSV6s>p9.o=z(ghE΋vxY.| Լs} Sw_vyB h1 k_xKY}` k+-t x ,lwųm7C,g)t _sRԾ5E?7w7r^»ҺЯs/tOk?(k6.xuuY8?3Vs~u E|qSޑo<aO@S,uK뿜{Ɵ 9_XԛX`-[ZjTvFGg#2I%HFD%MQ$*L[inF$83׻ݻϮSW>w{OUJ{Zl9y=/\e`wן8;2ֲ.Yگ6C+J >.]l!4~5*_=<DilkquMjN~}"/Zc+?Wr?Ơ?π~kcү8]з~ׂq^1qf~LQqVCWq&8~%֗įuϻ]^Qˁ !X 1 ns˚Г|}sF^zfa6C߭S@Z/|"O+~{Op?>#_>IyXWkt_>,gE?۲q-gר_vQMkk84a};%v2b)W;π>qH[4.z|e~be `~u w[.wYwjwB95Xé?gb r!_%%~xVVY`X}N?Xϔ_ec~CIJ;<v) x:{rZC)W)}S\_bҷ,bu>]fL9>,vC,;o4lMݭ]{pR р,: ;On\vه = ~yY).ӊ%ǪW,]b8m`8MU,Нĩn寧QEm.\ =Ą;&4x|WSRd/:~ -?Og~x^Ӻny*4/b8Ȕ/).25ï, O b} נ{5mS~ѿzN"Gb%~ﷆ'gm^ /_ѧIcR`#Za)yv;- vSwEu1,㚣uJsuM?b=m?Xgzdg@}JKٗ<֖~4 }P`?=."e~rކ ?~l[/TYf,ǟ\U}i;yxR>?bZw>zV  ˾y3r(~Wqvm?w?7Szl\/݆﹖*v\O:|~:gKR_4{Kv ^H ^+Ҍ_)ل }x襮ZMŬk,u]7qr2 _vwZe{EvMmyjߴUaL")χ=&VlNv<y_Ź-Ԟw[EL:aEϦ8"WĘ^)p(Ы~鼏}')?Җ~CN}\pn _1hK,4= لĔ4aЯss~֡.I~J9._qNn'^: zaث}I]SGWXП7V<^l<)TY5U~{dz8Mw^W,ĞEޣoF<Ǐ;X3sx9Cž1\jOe`Tk^|~7e gδĥ!EBv5vu׍SEMzL~k?"ߦ|*"k97wE)qݶ>ghpw~#zˈq΅)L3S>L;ծ)K{~k_5N?bϜn lU\6|~kgIq~s+cg%¶u~&EL_YgGw0v8ڈc`1 );K,Yk?uM~=~,>Bg}ٽ-?]Ϗ:-nυ̲~%: R^gz sϰ1#6y[8C-௞?[bO~u #nw) Z.Ng-iЕIS/^a{=ބ?۟[ϾK9Э`$z-ZSr隘0K5~wZ32Ǣ?oC?$LZ5 4 a ;gQkb'b%mHӯS~C?FgY X҃ūyu  w,da]be#Jg9anIfnGv)MAVacRL]_޴>? }]){|[}o؄9c-$g]Cfk.g2GpZS7̢K+Cu/YYXc* F! 837 WG`#=֍%ofkyVUӟZQog[`R0 }qݑiQC__]*y.m_1XS)֍vxc/Y%; ɚ<*r(Εi zz&U?P׵oSʞ}'w?Y߫O㜌k_Lw[o[?F[ލ!2gĘ:cDP[9 2 FNmn &ZkZS׬wXkOBfG}?b:D#m's> ~b̟r{Fvf09Xom/ 2 gjU~u.<3knNcyKlzA5Oh]7xpGz?[֚GI~x[5ΰU.2XS.-'ךUFLG:_+γ){?"t\m/ʺ\%=`ag5fғWYyL}m;X܈zX`xNmG~W~"NYě+?]kduiIu3eXڢ}Z/>+;;^'=N[CoF:pN/}0D-_; NjE[ ĪcX=':zN׃?kMms Eѳ!@/ ]PI{|SgaS`z5 oa%v+A)5?v LmS`|D"$~zWr#x*x!x>?+7@5 ̵ֳ",fA2&?;BŪ 5 }$AcHu?ފ_u&L@.Bߋmth}OLR:L_dbӆX%У#v)zpwW]vu룳\ ~YΏoYb"W)Wt9 \7^S꙯s kߟ˱y_,GdX{<\7TYZJ*G߀aNכx_ M}8aWN?8e ! ~J_|~z ӌ^e#bʠpQq;:w+|`<{lQuo̩nqD k;'Ox(c]&.+.%6~Y?g#ր/gzwg@Gbrp!iڃX{ʛI)v3ykql9Y4OlO[_ [F5 ^Ǹݺ%msꟚ ߁Xo3G{W- ~W[b؟7c\!$=Yev7/8 ]N8-e,8!6}%Wfϸb*_d8N ?߅硘jgU~Kvz@>g'_5\Z^fk'u!&  :Ru>q8`sn9D3ؖqy.շ/R?K18*Ǐ{)guxwZ~/4B7qBb'Ygӏ}X5goqrxZ)ןcWˏ/=Z 1{GIx&:O yM%Ś2T>M:BmlxN]<Aĸ"F:gd-Eıvw8@"jvMLu'X:+M*~Z.8r;_>rm_ՠ>;c]>?R٭O; @O>~4|z885WVN ?~*C&cI@WR; *,?dYϵ{u0e Hct%1ƞ/?rE1jkk5593-?x8s8'g.ft.)7;<àZZի,5s3S/^3^#~Ec}\8ycW|^;~0ŬsOvCяsPK:ŭ|"t.ÖPG͵ϹmWf3M.Zy(6=#dv@|ȟtLG>VFˮ+J9~X?tJ`nx5c &רFşm9ΘA\kQ&;;/lr'?62$|H߶_mQJYþ3^_ Lqмc\ 3p["nB\B/+m\@o>'='EaMbvW(_['<FJ;г:ݜՇTYuc,Qמ#cl?կq$"KZDa?>{x S҈r~l{Kvx,ܳ,/|$U)N/eg_%S'4пs?C2g6!nS {y;~4帚GHbHU-瑻 qK ]?s9֙Ōω55R;ƒ|7jVֵ/]k%[ާÜ=K0Ӗ_2 [q{;Qq)2oKb_mQřHY8 /|yOUk:^qt~F?߱\WIg?I-`qRɵMYs8|lr[ < Lq9?XXֹiWg/5<3R~i/׵Rm GؽXE޸isBD1ՙ݌b_+ퟢHי8\富agv~?+8xi#LP쯜|u)fo6'?dyE?_sQQʘ>r:s} [{A3k/dw>oעRtBmN:ҟf.{ne_cM| QH?Gp7~r?uzϿ d,QtHן`Tϰet$3  z~͢9&fs,zOn1 ^ŏ̈́,zk}?wyWeo.ֵ^ tͳOaMAQZҏZh_h]%6󋭟BwΟ55.{?o9z~-Mx\w׵r~U)`g,ǼҺH[ua.s]⇴š׿l~mgX{`LeQg)w_O',Դ ?r,w| td2j/,ȵ~2oͰ~~?g?Mh%f˖˲葦S7.Wz`"tϳzXpr&W֠4[v։i5K:+ԺsWƌu~ś/ԡ~5G̚=鑦Jl5-k}YG l2lIu,g#Ӣ!kql֞_9[C_&8 'Eqłg UQ; 8xzZX4g>oy{Zs}-%O#u躆KYΝQsf{֌?V_E޼{P'}`Y@^ks=5e2錩*iSx-+]<5딦Y^;6߳F/JN'1>봣p_a?Jv=^7:{sScY 5E{JD&/O} ˄軲VRŲX'׮uZeR܈?:A{/Zڂ|}lN~rYh1_]{GYC_ ?Iy _+|\:SS{op~^S_Zk9? d|D}s}D/ͷ{=Jwe^_ |%)H5T=)f@_8 WG3Y m>Z}ĮmjN.kfM]~{.#R`Gž!u0fx ogYס6[eqn9CN{s@΀D,d*:?3RjYûӸkյ֣꺬_e g,/cXYO//끟Ƴ"lgPrSzp.Þvq01kUXly!g/t""1r|q?t&[O:o_G]p&'R1Ӊsf瘥]mBoZ.%WA y9-)rf?NZ3u=צYâ#lIݨ kuz'u5جg#91D͋)^76#.e]"WНke]Sqmy&Пm vWt~ҼsRgbS WnVGqgMLm`n_s9?*w׈1͝78sB%xsNA߱)\rx4t?οa*dWXi)[#^r9gSC_] [??™{[Я|ERc]C83eSIg[(?( F?k/"9F kN7hF|5_>kq~Bn6)Emg<~Ϛ ,kXz`KuxGdA뺵Vs-w0yl:/k_{Ys:Z.k܎^gN3{ ΉB!E_*W_ hP5:$6XΙ|Ky\[ZB gC4*֌)>_Ϗ(kq~1H1oֳk[z-\41\~h!?*#)j6q]=߳}3ݴw~iҟS޿3c&UC~9EMAN3ڿkyk ӟ#ǍS s:?<Ӎ[+N;ޯy޿\_{y4.kA̜~lrZ?E[o'YYȰ\ֿж\ogtMd!f#}= ]>^CK1 ن-FV_ ;mu9:'zsM9 c,6k(gyϝ?yYߵovom;љZ1_h+)fw"usj 䗿 ݯX5Ϊi̙g/wNO=}à '] ӷIq)﹛x6Xr֟_Z;kQMR'{!FW^]Ky/i eF Nmb-Ϊ\ſw}c/x+$ t*s_`/kgj=y =}Kag.P~|SS ז~/ z~z/=*_ ZObXkǃ,wm1W'GX=ؕYĦ&V„b]Ώy4O`faŜ>8hL:FN+_~=?au !O=fQS9gL#Փs?š*c\Bͣ隲XOis(֌zIOy]dyh`FzcrY`^V yBA =1ws1HӯWgkgT+n2﷠X=X_w[.q{}`֬Q]^_E[-~]?akq bW EzOUe~f_s2||x _wjy"⇊5puCVQںgQ f yT,ew)@VS^J\F?c?oY~Ps,OG=k?7XwK{!˻Y͵cxdvY޿yjYeПmWsaz.οmg5 +'[0مЖ~mҟ%JR'/m)1-|k䱶>\_tϵm,piFzZ`L`WMӨ^GG!yFnZW~<3˙xOY_Ky<2~EEL y},I~ay&DOk[uzֿfF̢oĞo6Y6E܇|Ź*c[{.䂸F(_U.Q碎4;_Ry]On9r;]`&= dYo0~8p]`S6~'- ~.}cgE1C-<$ڻ}#MS+ŨӀe=z^9;/ӵt\źvX3>ϰ],g-VK?u6Oq 8?2v{Yuj$"Y~@?Zl?u[]hg|M|^ s֯T[K|Կw̜бx/{u+z=^:GOww._TϹ읚iaKڿ@R>[J;8D}tSsKm_q_9?Go};~óAÍ\sߣ–*i {Oޑ;OE)0O@z/I#v7TfYw caswr#uy.]_!V]s\ﲼ&O&'+~XC~ߗrSeCb-zapY&~;zvwRK=--_^tq z~чL,y_^R%~r[,+ggI`p7S.)E=܁&ŵ_H,ɖ9}}G!ko\cCE@,T^\“9\qҿy km/V[8{=_d \b>C)'N\7=g9Ş)4l=Fr>:.)_qwЬs |7"̺',O9:?{9?9?Vu0x47̸F5v.eY5b]_5My^qbv_ys s蹆Mr#g;wB/e)(~bkbĂt)|u3J,'?BV?}]ğ,!b7Е R`p_ CoFFlQ>Kwa?jQG!8LL0+玩չ g&w౷ūYGI_Z==ؓ|N>ٗ|wgSS>ГH?8 AqY]Raa`8CNjLiP'B?_/0|ibwYkN;_K1g cfX(~&?<g˔ωGi.Y{B@cշ!>yX5-Gu-.XnGU]B/t1Jsb*&KŢ$v,~+.Uxm'vW2#8>?΢LL\u;?CgEאǗS`z~2Ejc{)?gf1^Zve39WoӭK1/TsTGR{]iԛd/"~xENOya1XFУs=uvY=Ο>MϽ^jOyLKI y8^_< 9sŬ5a;S`ns;829Ŝz/\{bٵMgЯ8 <+6,#Fs+..дP4?=:ڼZܸm_`gb$VyqeV«:߃: )|!` /Re_>4ԖԂ~Ϳ{Wϐ}98s+_5GZIy 9ezwǺ9#qa,_e#ٞTYtzֈao,~ˢ}g<.·w?1ν#3gS<4gRљ[g])UIbr}M!A{\6ſ?OE)0a{wƧ3BM_|mRmxd|:gR: f<)QfϪ>6}`= w3ukzN(~ ++X3go3ve> v)ۖ~֎r~{]wT~u_ ӯ_iOPk^9 0}sA?c*Y3C2z?z;!S!p0bg1O<??A5g՟MyJ_pf"?_qb5%r]SH϶\YD#Э6/[df3>[x ě3rΑSS?Yá_q5/pU W 3_28uZz˚ Ԭj*'~CVr>]erOQ9~ք)ԯbD2+ I1s)j p:_q&u|Ng$t>ON;zg;|JQ,"t.x.8|ׯ;|7{~0gx1n~SoP>n;=} [{}>}~C^Ϸ轞oZ7tsdsຑ?oK:ORzѯ35: z{&C?iq=8x#M?d2 BUN&exw"wOJS5e_ SoM8uem~13VӨֵ|Z1U^o_oalyr5+QF z?=Ķ_wҖ2N}ȋ増}uGģcoj/xJs$qiPK>H`@(Gy#~Mb_;,^Ao3 ==G? Sa?ya(7)J'_t~N;q9+BSڳEo^UчavًXpZc$~o#>2k[sYyll 3We9/h>Kv 4CV׵gnI3 x8cGC'.#Vބ&>k.}Nw?ZU+ R,;}`W0i╵_V7]>d>tkt( g\|>&_!7'֒~y z |Mq~V}e8WO)|?Ϧ>ΓK^^-}q~KI v#řV'/fYmsj򨱗YãI\2'O֚#}g31t}URoNu .'nYT,;P#Gvz8Hq =-|Q ~=NaXsW:CB % x1%Be//gϜ:͢a~g Ysͅ 87lz>O~?Z`o̵|~_Gy8_ {L&|;v2dg%3/ b?Uv͜F|U-}.C7!Y,y1.T_WYckKa<ƯLc}_NqsOw-XzKtZ>S[]gه8\km$W#=Y~g=] k;yC_k nS_ck9b,^DŌ֡O^w=.e@_:6d?i[`|8+xĮM\_NY |Ӎ9!)0tH[A'KB3Y:?b<:?ϕ>r 1+`~quI|Ud*)yvqI_$İO ~Oc+MgJLhΜ $~׋mE-7z1E5ρXAh` =`}ԇ 5 Ś=֯[j5Kg3bЏtT[5C Kh_kctfM;{5u~d>X@ޡ]n>#sLcѻ_ȳ!oO&*k?p_gXW,xGzү}.Z [e? g>̬ w;+Bϗz{a` 7qkvX֚ ]72ZWuM]Okq6_QH?紲ux6ϚF? Z.]oI*3~seqx|Xofk}a\!w vPoK?k_|ߞE~я5[9+y噂o]F<xϬ?)묰߰ų$*dRe_FyDr}UmRϚ=k@Vj6sZ-E؄.c5g-YSЯ?½̎!-^SCfS p\q6lٺ.N;#t_{ -iϚX7{ͯvE@1?TƲ'f l.r/S_(fMx]ʯ >WL3h }qoZuZ9/2zyźc]γ<=Zg#K?ү,0zQ~ٓ~i[[` #~}Em}&{)tk+7-{l7ky5XBE N_.t^b_<~󯻰m̷eRF?{/ Zg?Yc玺8_Ɐa&g/l5%My(Ɲ~ZϤ^REOgix{:øzQ?5DDȻ~B zPI9^cZtkK?}4rs}=o[f43D1ӾuW@)zP^f|ξ$x&͜*S~?=HĀ%zMq==\lJ=⡍Cf9zHBw=%ruM};r,hWNl Rsm]_~rV߱b1[|~yxXC)ps?ψq ˣ-?k垡G/Rn'ݎ~+QUJU[ew|5k^#VrZy?2fB{-jp >B5b [. Abnlu>.б-\WNc_9@ޘa;1G_|Sx8g U-`{נ~Y_/=? ~p(]GRLeM3nkY9׉R`hw7NpOGr=Jg }]+4)SŶΏblVהu[\;Mw9ǚW2 Tw Xռ KTw~/K5<+~&E9ŵga(L3QC]g w{+=iL]a EIMuYQ?hK_o'~Y2~2q w2 )GSX>ѐ_؁Yp&Mt琽{ AOPߘ3AJ1w;/z}ζſbqTӟe${,b'?nekηn_ p3Rkx5?/?[~*|Nrubr{{Lsم]CO<2ڻ<_C` )b;Ϗ[rǿ;b@Wn,0s,~?B/żbWߛt%bMq(GTϿa'8?M,,g,oW} 1`_tMg4_SƴZﱨz#e:)6\8>V.ۻ$c_-s`yg4b¶kvXk)y`9#  E, 2LUΐP\~i/Lι$E 4}g.Npk:,F^lLc_J$.(| 3'L-l4yf9/q>+1+zn'vm,\kԛN t)OO].ӛLǶ納?mmu%.4gd< n^$Q3FR?$v)BCĂrkjK,旁vy]i^idSwK;^8/ǿإ++2^m ̹>8EVg.}yYmq-<`QCX|݊ To^&Yq\k?S}.h??u'8_ Tg8oHqү`P?")f}Z_wAy;Q9'h;Ϗ _PHM#دY)f ԟ_֖,琋,0qyFV:Oq]4cĮ= ~/Uu|my&wmJ-ً|,\YhU[Er'yk+~As1h31W-pҙ/%g_P 0)I??j@ [o96[~oOg0~u;l=ğ &àrgƽjq/ 7C1wIMZX]+>˼?x[D7e]zϺOhK? km+6Ρ^=jr7OxAWv=*ݽw@m~J._GBa/k#4ὫxMk}VzvnYmg'Lrc=x/jNgy)o[,bMt~{m//rY.d 1hlZv^7Vԓ̳okG h{'vm׺z7?Ֆ;'}ioYmWoi?~\o84xoM~ksXd.bkSuĥ}@?4Fzߓ{'\0 iOG!s-K~\kk1\T5Sܳ_z,P5YUt]j]q{h~;3Y7mgm ۟N~??/Mį~g 5E5mk_кh=ϲvv2 gZڵI뚜但xZ//FoK?c/[>Þ.-B^FMG mfQ5=\zM>~.Z;tyq&9mk-_hymaDHk$0~a-ΉzG ZM@9Xw!m_TsIګ;_74ObU\s!אߩœ2Xοw:\k3gR{ 9oK?+1WmY\6KD!o[C5FTW0y=?gL~2gر֗YڇR]k],OuݫkcZ'<0/kA_(vH[ Mb01U(]E^D@! Ch P)RHBrLd&JHΤ@@+3߻~{N>{?眵׾ֵoQ5-U>Qs/nK,4`GCΣ-1N/,E[-7͵!szS;3{IB̚Я#h1$cN厐W!HmP5ƴw}:.'~3pq$nu巓VFo6:`|=y_f8[=0?e(=r5S`3w`?3s-|f?φ9̌8fj|)>h8oEUxZL/Y]X/ sI1yvLźΞRal<`=f;eX{!]\@64G)皷Y\Ӣu/Fa/;]te}~assX3 Kϼ9.斠s;*-Ćpkfvg#-Lژ͠~~2kaϭ[g|kzWu?BSA30U3T4] W}VSڨ\dXX~΀ VCzի7BT =G&q!f4;r3BOk9O]ۭ˘iFv$畹oޟ=eؙἤy_u~N"~w9eKG ) =|3ykSn/|25<^dS$sfush~ ޜuGEw[evٖLoRwOS UߞrLi?,bT|htF~|rG&]yſJ8gnчÓC9ŮOJtt&{Ϥ^y ssvQ;\y^`s .? |?w~wbS/GGOq? _Zߪyn&O=ӃOZ9Wes.[.zRןb/k_f/rR%o?V9.C6O3E^wj>+#)x]RfWo$9,B{a_3m硟}̬缹!_eӹ,,Oҿ%5Yqw$Stoһd?g[X_ߙ6N56f뇇=ŠտtݏedOa{ߔ %^ö{y={b*==/^ۢe^vSMMQMtSa_l7#lӽRJ^]ͳD?TzuN'DWY]}^3{-L/x>?tJ^-7A|/I*,o3Qrp)˙ ]~u)a_]N;г|crJ20XJ-9]j~نfqot LY]U_O<轓Κ_wr!צr"śIiFiKg3z{UȹⶴP}ewLW65rʉQ,/{:į ~#a?!:ҔӇn{-k\[|K8-{#)~>yxz2 {^IRFH?3M]?K;߰=)M:}zJr:_p!Y fs=}Ftל 9H|\69]ł^|+:zlZ߲Uk: hLзHz9ny%g/1Ptܑ)3䏎_}_+Cǧj5:= ]~y@;ySEŇeg (Z-j'Hrx<a=%3yIrش*._ {-{Crz{s<%ơ}۲VoEךzET*_)t/?…\zSg)gt2:B\=3{\wZȨ7l@c· wr]唰vM@WzS#?')<4CSn%+ȏ*_IGA^n~v;ˠ__'\zWuЊwr\#Iyy%ѹ?u {Ȩ>prүn?;έǁK¹hZqVKל?X;~{V&/Eɿ)b}_9[)3A.\*>oNKיH~Ov)~+_$o̳y`u.6(~$y_|N3AY:ð6n?pFb$nD7}!_ĔY+wˠ_˛gDZ?vcخWvz]9|:_9ŢEo9#gXGEaK5-ֱ|-+\X{hΙ꨾`C䏈b?kro=+FeΧgĠyF6/.w.{Q_#Oӆ{oϽ}+2}xׯߛc^vz8?$rtѯ%8#]^WyC?w#@|T]%"z/[ּzN[gwzJKQWuq|- |mL3W&%d<dk^~wؿ|bؓq3k_9i4qi?1 y=5s:h׍?y^΋^$cON@&%~'Vz/YkWk/|«$+zLu<֏||6^y}~dX~G?+rGկP'sp]z`w#:k g=׿9wcv%44ǕcMK/~^~ÎF?EV.sO8q<Q>?e/,}Әxt v}k+^W?&ػbxȳ5zƘ3-{4ğ$W ^,wcsݢ_6q55?5A~.> gW5֭[x;W38 7Z1A:+XOZ8˦z3z,Wطc^i[!0_b'ԏmlKofF%1wEo?Ze[+D-;eo] ?8ў?W^?)Yk~ٴWpocOK?rI75Ĭ~ׁO; zX?#LY}W«g7T~z-\er^/Ւ{0x́na]xHB6a^QNFO+=JB㷨GW/@#N"\R8!LzMKgBz ?mb(VH0t;ӏD??S,Azw'^%^S^+_\(rmT~~ܹ3^Wz/*}Grhޓx]c cI,#nɵ' ֒ay=qrt=W~Bg+Kȁ A+S>Z/$*uZ^Q]ӋJ2}<-\u帲N` KOGoa+#ЈnF3ebo9<8?4{?v񓥏bO:=𴮏_r@?WC[_ﰣ?sK+X ̮&o9r Lq}vL~;]eǟ<9jcAyϝ*z]&߃n!a裋v59JOOcW[ IQøxĬY53Bjv/L!lQz9[w}]a[̰~M,6cvɪp(Jv|]Gxl:fBzm9Vp?>({`_]-b#`_}w-{㮪\[qv &.*bx2t-0+V=F?59q`ݪ\w_^07b/2)¦ƙ*[ǟ\+)E:?vt9Uy|Vߋ% a|.=3yl5 4WC)n~-=$>/CDhNC_MzroaO9WAQQ2,VajW8XqHb<&ϘSR5K2Lngniּ?0 'nPTyIG%_5,:Aؓ ŽE^}898~;Τǜ}3ޓ(K]KN=zyRkuTĤd= iu^WI[_"¢F#SfJuyNu/8~WŝcYЩǟ'bo5_lhh@ʂ(սlXgGwu9w~?@^O7E OwnQ3>w[NxϿ79f'|QW)_?F X.>TCdi%+IxtZx?4"^f.0Ֆe}uG_)_] [i1{֕>3yw=MK8)_&EgE_p' 1L|o=|O;/ >z _}MS>\lS󼰫 ү~L_x/_@ULA]_1IjLwy]fG|lgҤsRVlx.v[0_yoOL(:g"if(wt}gr{t;u5{>%H+Ͽ{̀y߭8sNn]߲[O$&L4lZ4\qu}W>>~C3ry4bWNKOtmgq]T)Ok]ͯxuf)ޮ(:2WpBNk=iݲwU N՚scwx_3 W^˄+>{PʫWXriͳN"=-.~t)0 7eK/a\'IzTQX7|?cOs:%eU燢B2KeLҎ>vplѹ7U ][9{U [WsTgT|ǙA ~# -* 7w!|V]|YןG?g;~zY56gM𺎍[S։<ĠóqrE׋u +?>}{?z_zu5_wZ;+6!#^v1N直ϳ3)$Ӷ#-S_ :ϱuaN:~r=6FǺ w¤D}ؿ/U>y8h>&`1Y#}׵zר̚-=f"![>yBԿLğe۲Zg?g;)eLIק< IU-Y»k\Lh{ˏn+#U7sI?x-볒ߢ_ߌ<ȇ9S^nEˢcѿ ;gr;-[}FaL!GwEoV@mř[z| -ySP jԓyYE_|wA-QI=.k~F/ˏֽ|e;떼YVǍя*οwܙ'Ů.sY쟹#L1Οim,S,Ƣ\c?cdcSd'[I4ZVQ= ~.nFb"7btnj?oU:XxİEny}:P%w -\;|7E=x-y|֭`۰~=C@?U1kwp?q,I1?} /|s_\}߲Տ4߲%{go>~bWoߑ.]hFe?, eRJ1p<[W:};܋8?:i?_6{t昨ܒ59e|.G;t8қ-:nGK#n8NQ~' mi4{㢪_}cO{>+\'E~:1?fH1/xDü5흟!ȾoxBZoU/G.?vd.8` ۢs>UY~_̚ۋ -cVWbj½s>chcs^5;exQ>1}mnY盯5VqI\ĶA܋ׯz?8(x]+Hw6p?ҩGwmy_h>> ~]+A;hG}ȤQ= ?~ay_z^-[=jKT(8gL kC}Q>,}#ϩ߂z W& Wh)K.)|Sy?ry]> A[襢~p8{Bؓ!<36P׭g?CuVF<+z>rd簏;~;!go@~]^Z{oGEځgF yEI;>~x}W{+j>&K9_Rĸl 60g q5vN|W=_殍osU_>(i}zWY|}cK!Z Mw+ ǿ'Jn#u[}~qZ׵Κ(QǓ=~轍Eʝʟ~KH4o~S#}j*)ϯBw,}s\ְ3ʻR=KWJwwww{=n#n+Lyнms?TϜT{%vt/57]F ;GXpL/L}]9 }urW_7-gdޒ|_vY/׷ W-w}q]SyNg whmջz`ݺ^EE?[6~w:}Prg_{Uk<s}ME]a~n\T[v?kz5LWGbp0ؕn}&\/lICXW~FK?(}n癃~{{R~nFWa;95}Z˦L=U]:~ȃЁw++ ÏZ1qukYZu&Ӗ\o/g$|?ωu^k[?ٕ@\gp#dK{  sSGb֬hE轷Ў{lʱğU zϮSGw0M-= ﱥeWX Rd:{?vtsC{"G'^Kcba;Ω yϟr#_9<䶱cHg(~$1넉wj,oѤ7E)v=`ccW_E~)‡ ^KW !W+}_8N!~L_ŖFb39Z"""݀$K]trSߐ 6γfk?o._qO~ o֨Z3{*r;Kȩ檀9)|Cl?܁#?VplS?Iieϋ>/t,*NJLnRtG<(gg ;wdzo٢~dd!m=gŀ4K+{&ҳ:jlbl7.A{lg>&_ρ'&UY<$Sxv9cytc+f8xqҽ>*pvoDa/mC)%YHs>䘹H~_]«^7~8s+춊=Sl='5>6RTq#et],J:cvgև擣fOba_\WXϢ)>q%a^! aMlbm3ճګMڅqß9zNC{U^{?/ZOỹS2pNic ;dcrM?Ϲ[gW|?L_tcW|GĬ~?l\^y!yݺ-ݢ޿v`T{>;I]VLM??Kχ,AǮA$ߕWNqGaF'q)e5~ޙ]}`g|>&<Q/;7Ǟ1^&o+y ])9ڢu_:x^פ;6< q&=W{w5ϕDH*"~0|tUcyoS;?g ?_g 4zHT=og~]aY<6}8q:Sߙ2^XWg)RӣpΏ>ƭuLkk??{k5O9L 3ɗANwF濙)zM) ?y/jE+sPlE^9ѽpWv\9vҪ"Ws|;;g3z azYsSqg'BǓM+i^ ]1{gQ9OŸD \쾯`Whv+`כͼ*v6[4fRwͼyl5X쟠vCGgqv}C>R]K_1|N6te+E?:|$\,_hT']~/u5{vn ['vEJXa+yY>?Hg =ٔx1\1×^g߃-ygo{>Άc泏? ZVF`|>^ס#zP xr.Sg?[:~VǿUsF)>0M yE 17To m˺?Z{IQ!BϟSz]-E.~ݕ0!EXuO?Ǣ@:L?WQGY0k[8+l ǖqL~]_LZ7XN`ux/ZxHg=_V>^YG>3Ey$1k~_!*66cmn87A-T?u[qruk>< Κ5bcoi85N! _8W8kW-oEӻe,\ M,yCO 2߮S=%c?;:V >Ntp>+uy:"_{>wkka$BYGfP͚wF7<>_Эv}߅m!3g}B5v+=,\:pFYXw=op߫<|'o &*﮼*]&,YknO׎:-a:"c_C~&":2U&^SfϐrNϯ)`oEŠgMYt Z+}̢=5Wxp&5ɿ;< ao6Y@5{fmOą{â0D&vG/E~Ѹw2K)ǠW?qܧd~{ȨY6 懶s'l|hŕm˭U!ުNsHU,y{࿉~9s$~^8sL42 WQ>; rBpf1gu=.2>w&YUx8Cݯ떼3p(O'I_\d?_?)L038-_dFvFп_{co E])5c Njn?{ϛ׎'kI-R3! α8N-=⾤D<10 k*mfdd "E}?"*yuG<Yg唸O?S٥Z-3^떾n]߲Z;lɭɯ99g^3< RTy1~G1LLVė Hܖ|~0ƢhW/3fꚋUZ./{P+改O1'n꜐thϱQ[!0=uM1@5XK_L-:=K?yUWɫI;י{}pq́_ ׅa@xsK4ŸA_{$iwx=y@_- zVw;EjN$W'x˻ab<}nqGW89~4 p6 Ma'8У^ 3>} .-az`LYO# ՛ځӣ?q3kW}Oo,x_- tk*⧹%B"Ĭ-T$Gz R|rWcKZ?~֟E,YgpQ{ټ[z9_Ź7^H[&g!^;/L/_żq=;IwZ#k\0X{O[{׭^߃UOtQ01y0ja%5*g9k. 3d!w^qqCa}AdDN]߾n83v(y~u>GBas=N +:6Fn\~)WwU+[uOV0F'OU'^D C?GEIxbz.Gk( -Nҹ|kAWag:tp#*[Yy5ϴo/pW^Kz:~= [J}]X:]ޣ?=clEYc/$msEhǯS/W`o^=;g|wJ9;Agn] g_lcR<9+I Uݖ ^)cd;lZw[5<,8by\H.[bl{Xtz ]SW=WxNQ6|ǿXE=}5}3Yu)["]iϙI9^.#yuux_tSrϣS_a3euZW߲-{N{iqv??}KW휕gh0G?6Rr#ǏN:Z¯kLw{}6}0n=Y &3~.:Ϧ ۹eG?+e}k׷]ݠ䨚Z)3N_QjOwMI&W/j/kLm{ĭ5wׅѯ/W=լ* _M21(ӡGL^Dzs`w`ݚVWh߹n hl kbY*[^ec%g>( BXB>;_{NKI =眙zrREʨZ7ըpoµ(1o.`\Q. {v.N@צ/EէD٪POtq YCo kb=-cqs}Fj6"}ى } wc(M-f/`O+<-廰y4;(Y:?yaW/v^2vWbWԏC,sI/ڪvsu~zQQ=H~1Ű1=Wuhi3s{Lqgue_~Voz,TWei&zngW16tv K|Z˽s`m,-Q3D|~Ѽ@<^r"}^I,)ȰjOk98_c3sο9XgNGҽ~ ǣGcy/7 m_Eae*w oeq>'u{OF֚OzKȩD4%Ov&43Owu&>3/럤,i|mrw/|mQ*mGZGvN; 63۾T>C'K쾰kyMșy_WnZA_/}`-㢏.,;E?B"ϜcUc<`)=]rM=S9ok?rOg.OO^]>X{򫃵]A2[>O:ycy珎yXȽ֚ޗzsݰșy*=-oE]y^?{\?x^WwQsDUou?Op4[3񫰁ݿ+m,o|"e[5^p?w>*sQ8A_Iar9yW _CZq9!\T|fW1]r z)r.X1->pq~F$ +ZW󫺪~]1 sO}$af^-;~rrafz3yg78KUELUgՊ_y_iec;ZSF+k\˦r/_>0a^}('ů8O]kU]سY[`tx>zcmQb)Ix=fTr п]<-, YW2<׹yI ?x"򸤛xrҼSW_Y=8…!#{x|ʬgՔaҿSWWҵr+{#FšI'E;ϊ~ΩrO}{Y_}V;56_u @VFax^O-ȫa8+5=qmhOgϸ&vMz{1}^!?Jꐮr-K9~%o} VOzwY A}ȯ翼#RNLy|FW=H=s{֟n֟/<FF}/1sՐz\Ku<SݥsكeiwgȮ;)+S-.Kzz8GU7unƞd_Q4:NH-z-#-+m`KvƶAr/~weI }~e T {^8_ۖC+>\%qp =d]~]/㏵Gož r}яx쯋)0{_kkɯNο`gttTmėYoo2կxFk.WE.culYlfklMl*KbLkGd]>z7G_͚~fɇ׌7v}͚e$gVʋf\3>U,ʵzCTݳ7}_+55W5oːaw3}V;uU!{g.0ET)v~hf>N{6.״7$~kwn#dxG/~]sy#^dO.q9_/<_{S Uw %?jhxkr5ÅC<$׏yCo]y xo􅿁?|[>S}a~s_q&tǝVDaI~~}zsL3R̓~u\=(=߅eq^c mf˱K^w9ѷ?krcώ9-l;??{]Cu*?/E)ZzV28]Iݣ%5X$/q_?%*>_Q}nswTO#IG!j-s)v=w~繩^JA~_y:şeH{.c+L9DK_򹛽-?'N+lO6~Hj_K7XI҄!7q&#BuGcoCWqgsoy.FfQ,׻|@-NqO]N=/-+cqY}c7 -;?`^3űQ~M1W-T#>S&| 1^hZc#+mf_jLBaw绍 _ue܏5\h|my[Y#dVe^}Y*{Tq`zXO?6vg0uƈ~4K5$:sX!{{?2QD; 3%է>T\B=5^/˙E;[|UTޫ떜'~^7q>\05GYE^5W߸0^EĦ L3|R~V検we<~|;աQU멚%r,է0MF ?vCpxϊ6!t;;4_T/?v } Yo=>`W@"˹}h9«:a4sG3"ܣ+\t'O?vE\ jW_1І~'= 6?O>#'YC?Mx/|~=ou,weC{?,{48, N/vo u}{Noow뜽gZ6'9w5qZ_JT^Q6g)Jy]'wٲSW5OY}sW>/7|}wL YyWrĖa "CIkz]?m(3O³>;~Ϗpq1JyhWus@S~vvٱ'(s^8U8ֺUؘ˵oyY} ܯE?3t]|^Ū4 H3 yNJY%WE߮uG5QB] rIL&I]_ ]a}.);'D_ _t0݀c`, Woܔ)dTܟchNӺe`a7p^ʾxwW+dC]a*v +[$es|^liǨ<=rwILƟzk¡m'OsFam(~ig1[]EEݐf[z/v0L%+:pSm/^B0lbD?"AZRߜ/{o%o_:GQVcr;9Wy'9Wuq+^a7-}澟p swa@UsRZqD|_ {m }n Q>ΤI0n~`.jz[;:_xYD又eɇs+IdO:X1iهB<%A3`<~{.ձ=_#K[yWz?X ?ُ=q [wXۡ{'Ky2\şЅ}k'rߘ^8itcK_ ܨ܅0.=,l'Pa8ǯvM^7Ҋ|oLfVHټ:Œ\vj=N徳Ǯkm=)7TGynTk(|Aaq?1Њ0+LPY~_FI׾ )ߔ~Z׏9K'<;_5X3&^oʂ;~G^ï3y^g{>;yHL7V/vr˽OK]Nqh` cg{Gy©{EWw^WK~g(x\?_\TL8{g'bs_O>_#^2OA-'Dj7D2ZV4s!y( e 'K%\i=-LQJdyV'ݜ:)䬮f.[ &@nEv|_KwqQogCM~KW8Q˜GGȨN^2>nW^nߖ>m 7kR?_:/oݨ.hN+<^Ҝ#͔Ҭ0Ǖ~߮Ys-}-zVQk݊_4_t| Ro> eC6٩:'3~/gW>$)Os)˟7%ګ+5+wrg, zYxV9x> kŸu5|\,r.\T'au4S5+VU+^7y pz!D_WK߻\jyM/>[3k?j]kG5_NzIY^C&7缑='wU :i%ũԋ̏krޤy^7@N~='LwD{BL'Y0ğ=2Ȩo|'J~5 {>}%8|}Ksvq鏊̚i/Ib]ŚE:?oɷDu.OxEgx]*[{gWu ?vgbCkY9~ΏM2<9/=oXry 3>O?9|tUA|ƶv>ގW3ad !˷0u\h.?i+yލ-?gc)gc,dR}Q㛔WZ3U{{z(;˩jd[)Y<8oz[K9"~%l1Wq/Rk]ῴpb(,:50 r?-6¿ژx`gydY c?-'6}^{v]s_ruXlclfS!\$ ?_v@|UuEg$v){XwD9E׮\њsnn ΌۢbӛKRulv=OXK5=NޛbۋѿyW~;Yy[/K>Շ|+vr{>H?rX_-u GZ~Qz/g#;-}x kPοo?ݎO^'߽oƯCv@{/hlXa^sv8}"Yh{$}uW<֢޷b2\WzNˊ?!5[wRD ޔn/[W^ lej+LJB8 Dž>g0:6E̚~_V +gcS?Ls﯋?;`q_{=(ޥ_LJxVŎQѢI}/x#)LۑT_q_!ߪ_}̚%MR08fc3\G/8UY('[չ_XQ :k=sgHG6c73c},Y/op7U.qS$xɦ|?~Tj&~ =PEB%zW35sQ3QE2}~q}Nӗ?ʹOY6kWFx/9_8ɢM-/:%EհΚ~'hGGz뱁Q11׬%ᩊc tr=\5`H_mҧuJ灶QvgpfMl(N"H}R|sPyG2qeӽ_9s{n3Q{Wj~e'("?Vg!6\TQZ?gtxS>j瞛v+ɩݾ?Nd- !աQ~ުs@saYQr-ޡ:&Qgㆉfqթ~%י9@WW@x{Ds0k5D5`xMsFN|F(,~nλ=츚߇OEay_YN[~%V>R?pR hL 9j6,.Vxk8eNAas/SNxף[Dy,ז{oѰgY6)h5ҙ;hnz,TE_G?btUEgF-QW?/`#yb߶ϸ/]U1kVgoD.OJFo&{gǖ^.hHl6E9>jo9FW~ٓ|~b҈ͩ^~fMQCsET3R@ybǼR8zQg gyQq1Oϕ]w~aT!W'>H_MQuS]ɞ\5ʾ`}y~AQ.&dؤq![Q.l9J/q~4?uxBoc[]͚~=xtMy:٧7G_+^>J'y+&{Axp^fM?.?{]bEiF/U~%_kG&=$pU<;uC{Y~gi6Լ$GDan9.W~tOVR,\ h<5?sz=Œ1rPTx MqZjm8|!qufM׼YgK7½4Dh?l{hAy[¼P1^Kyc1Jώ] E;<&󿺧Sf3_T:8*GE^8m瀏Lâr>g AcϞktnzlPl(qfcU3rAk?Ě=3wYPͨE5n7:|4dwpTs_'AP"ǹ'iJl³sU:o;gg!7D.̚UQ1џ}q^|R.cr%Yqˣ_5ϩ~Łq o"5s2LsbT7:eC.㼞nV]YQ}s#{[~Te?>5ф_<g㧣bCnW(:x2}uQ/EQc?+ϳ{D+v~AWїW?zckֳc{z>dklC/sr_z"n}F͜˨Z-^}c?ʻɏW-9Qu'uR_5#?TK~m~]ZΚ~:9yZz+FY MQ>#?h.x5}m\d?[{^33fbϛO.K?fM+تGFWS]̓kƐ_;~\~Kj+rW=}s9x=LjG3k~"*; R]+hTŨPMo{hq{QX?.~lۢ_;x;շ>?z.'m%qgMs7gAu_~͛QTݼׂ^u\붙cz&_ωQ>T=$Y }Ccczz󓽱.яSNC= >'Teˍ!ʝW=_T102Jc?~i${oZÀ{RqaQy*W ECz!ˎ5xzu3kW.b 'DX1!Jz߄_tA#jǾ0.us{{ʷUj#qcLWǠQ[gF2*ܪY 6Y0U ymAQ9RñqI1OyMg.~EǪ?4꓂vIʹ?vp=5F8U >1G3kTJh5f Qqf%\^<3k7ae}+xژg@(AU^zo㯺]OqΟӼM5DN8*j{1^=ev_Q.=d_}ˎsfMǍNfcر=7Gmro̓ց џc/y ~{>Qֳlâ0 <' [[ϛp\8/.1CIyvfwqUg}G$ύ:E*k~p ͓}U1O53W\T>Kρ~Q~g~ <1ãzuM}nyNgu O\4 ?'B\::ƫ_txԾkg:}C?Ǭ<ٮ k?ĽYqO[e۰%JD pX gp5;NG߶3=QO宂txk_UVož<yb[}=+9~=ףg̕h8wx{o>3KRcy5c[?p=3:,r?%sJaU06 '翝D?j+?h3y?VѬGqjF-}s9Qv\4k+qOh4zĪ)2u"_yɶӰڟIX{?ς8ə^+̠5N1&R皿yAE-7jy#="[>;O<{aoo@EgaSߎ>p]Mo?z{Ng习6/+{lǙhsN?}3{G-Lx&Ow6Z]>3!@})-8e6|v xH@W^͟=?&hxd4 -~s2wm_mEN~$9+{=̜m7ږ:3klx&y6'$Zu6NOǟ/{F0O8}Oφ}5xߢ`=6?g64X|[7<=Ԛ~Ϩ~?;(2%Kl^[j7isW⇞eΌ6לZGί6Gh )~gy9&{b翋~F-?9ڐ٩I~ " \r'{ΰj濞/!t->m?RBůws.Y\GR^YbC:tpb] Ʈdߕb-5L9e>o7C~^;bx~,3_ko,u>!N)"wmsm}[~gdsovm>1?{.댹+=Jg!Z+_Dgγo1/||/6 dq(1۶u}?Ep؟6hEqr/&c3Q.F4Ěuq S-s/Oz=B8!6V_aaLy}_×{~~oD0w-Z8Cy7?y}ͯ?m|?sy.)EXuookM}Ԯs/h]WeOVϞVCqy^ԙTp qŝDF-~y,Ɩ=o-jG EϦ/|ΌΌEpF9!++X_Eϫq>Jb:-^q~0mj13/h3C#mμ!=}|Dz࿝p?)O,h{{iaVA{&7<9埢Z_IguEa۟K1i?D$ͥdFץgfܩ_Egvz~Nq, t߱Hy4ޅ!ߑ8ؾk}vw$umZ+W?޾_y"ןTV?g\Kw`cމ j4+Oqyk"~m׿E㟬^3[^s,7 Ds=WzO1^{Vs3[fhlh{'w^|?Z -Z? ޶H[~ .jJ< E?K̄>@~q&wx|_FJ{zt-\ p2/[~Ǚ0KOFVo{/D˳27tOW_cecLf;ᖳO>\/p3|mV9{>|\p]l 7+sJ-c6r3˴ھ_C-h5yWwkpI*nf 3t^@$z E.d {-cEג,k&ob"XU̝P'?PW:t$ד\L;̾}W5sxwEGgKz٣nk9meu.9M._N|yvr#z^{W_Nx0=iKgWs3x亿uϯsb~E W|7.lzL"zf{3sƏq][Y's?Oj϶gt0Թnsl߯П>&9Z"_?#i=k9OяsA EԵj{|sR[:O9Xyx+on&0SNr~uπir"9}+O sh^7~Gdr}?!e =k=-@~0KDөWԕk1czGy(jw3/}zu?g]Ğ磟.q/y>>Sz3h{ɉǯ-s]%O!#ʿuqh|׵K$Z# t=|f|U{6S:j-qc  =pk:q7ϜC4XE~LXoF?w|{J 7<}?::|9\gs-?=y+,k=Lu s|=kzvOp 3;b-?3S6? @˞k_u7Omju&gep^ Rb`eVp3ϖ4}_qQ^!!cL]aΌHٍ+_g~sz^goE2(,˓*?U#|$x35.\ֻwGVb\[| zxo<hOk>sDZ֫7ut&ԕ)&}1pߙgG-gN`h9L ܫe`-|ݧ?'Fm#_ԯՈI<f\\yq{o< /=L~}m{o3sMz ̌QkboGbȜ9KiJ!gnyh36h]t>XZco6^mho=O5bn}[-׹μ==牫} wߙgӹ,+gp '1p@>{o568{SVgut#ϕC ;߻r~k=u&+? QpVğw==\Xz+a[?5m¹hwy?~:k*+꿞磟9㺶υ9rVVOGs5fKZ4{bVW^W*__r{*}uעqK+mG?!g#Kmّܶ?<毚Ac>zsNx /Fw|%z^m<{?pGיiaW32~d%8ΟD?o;WޟR`8=:c9+_R>D 2Ys?ܯ_Iϩsگdzg]?)oq3ñ/!_s=}o}7K]HE./7x훬s뺀{g|vVo1L4P{9E@MR3V_ԏ̅<@-LE?~83V_;0)_DW-hw3>ʍhO3xg!ƄW_x_<#2?h,K woN;99UN-goDt0?.I4g=oМ\;=B\&jWVOf~ ,e@gZ~b/F?ֵ$/I~s=Oו}}G|"+;-L=/>3AORN0l5 twr7y+O_Ws:-6]9uge1Ͻf`D0M}S?\s#-?9'=)bs?9jjyzL|ڱ-,-Vh9d+\b.]\ qʇdM=[sb皓VS?=Q-?dk;\5[~fq7uU0rzEˊ-[3MNfX^lkَ+|ܪO]3OP\WuL\kϬ9GNe/?Ɍz{0:{99gP?e~/6;꼚Uy>g;rpC6uwFS~pĎj\\t+>pY?g0l2fO=ך_ğDq%?kws}O}my;@%?ïYL߸5d3'H?<}khzDÆr]X*fz'eDa=5eOݢ W3ĺ &Hc}ZY( S]Ygɮ?~\74/gb|/ҪVkvVqXS{ͥ??@5ςu,] [~.3J9 5&JY9-v]_~}]v=Ϟ7 ?2לy. M>.5vMC4(qr/ܯv}{FwV̙{^Q:r~Ot*bՔ ߆{ˏ=k9_K9p-XǞ{0|!fj?7OpY5x |؄yn^zշǚq}f=O{_֛Km| ziI^A㷮T%so-=Ƴ=s>ߍ+9f= \z4]˺X9=>-"ws^5o9yF<7ս\x--x$3^JsATҳ0z2O$^NJ1V:ssgzyY-q}YEJVyg  .򳎮`mO%[OZR?1g|6Ο!^q~ݿn[y3{4VտƸϔ9 'f}g}cѯ[fͅY^\p州7OwG"OyTuj8r Wϒ27)w4e=#'tf'-V1OyΏjGlM>_\g-s(ԾZvڞ̇ovkOx'4eXl~O6yi[kjP9-0}w?G0[RlϝR/[{,9۾/=YȳR3ƙHR_:^=[~ n\ĕyh5sg_A{enxF ̹83k-> {pVϙh{l~w>Űy?Ǹ}z&Znۚ?-ƻ&?ԧ?A|OW'n~q?o?eVOB wspFS~ϫ:0sm;k:r=LAunk gϯEoKs{ljXYyDd]<}M';m L+7}1ϐ#ft~W?;\Q} 9b{S-{-0Oy\};3qυӤ.hqrȜ 6{lEg;3>cO= ݼzcV^U[_6M߂%q-_za/5Y_W _gi|\vN0{ 䞈G_W{|_E_ج?˞+B/3"8<ǖz^gH}Fgݧ<_D|ޛ̬\Yv]~UˣL0v"+o0$u:Pu/_>_uW =bVşLWQoa>tp(VOmqϩ{/rm.\b|Y"pي_)^c~t뱶 NYc>dbKW/2o}ar/K&s{Wͯv?BG7O[ 9욽g6H@y^ hgkUO%\>7.#?׋s:?ZyWouc*}t?co=v^Z?5n\qgzdix{s_fr+K@@ G/+ > =3sEVό?f>-?hz,szkMn<7[~̟9ĸu-Fs~z[wsq#wfNk4<"mc<잟ih]~kK4xq:k/rqLg dg}ЇOwvO=K$>-k߾G|'>|`Ic}}OgxΉZYuRg9w;F7hsokol%Ym{v[νkv|TcؤlK= +[{87' g=vrE~|/3Z _ĜgB#ُ;XR.ѽ>ʱ%+f3\qNfb;'̳} ܏Y4FGM>ľl+^~>~@jM>zG'RgX?1r_Fn_ ?܆ԟ3 hS|D hW'S#NK^bnlՊxqz wJ. ym[{N=s<}eMV]OOҖg^T׶ wEpoOH:F_WDٞ۞DK*ߢwt=˷܃˗NZN!yļhz3C93'i<㺓h^sVog߳-/wجz)2$Yw9?#UW5|~3voǞ2"nɟq^O|]Ǹ7޿Ϟklӭ#> {ϝ_IOʙ/y{OZ3٫Hmo6uO}g.gQ?]>!Gɸ~3Ԉ5ciG/d&܊o_wL+msf;W=_~ s$y~O+\?'+ _؇*ohYS`}ҟ`r3߫{:s/߳\z_9z}6ݿO?/ܱ3Y[~ty}Qīx!^?;|Nbk+ɵ+IXCi'GoWKƯZ[ߠW̗㌾}/lReCVFoG r!?F&u'Dk*s\ pgq2`oGI.sȓ>DSW_pEn܅t.?c"N7qtB_'^=ݾ$[~ w9h\W\~^5אּ?o{NH?}bn-?sMY=q8|!(Ī*]đp^[fcj_^383}N/ޢQ㏣r{4}{xnY\`oSF3}87gDK~4UM}Ũs֪{[Yj]<6eS/#M xo|QGLݿ~:kÜbur~'5;-ܿr[g. 0{soջ>}wf9יWļi?m=#D3goE^gb^qpW}׏|88Ey]a?sz^sn$vGN\}@{?,/_hw8+ί3qϚsq~۫ߣ~"58U<}~}}iߊSߜ~=?΋kړףpW ] \\+N|w}U=i}_~T>soFr]0 xoh:x}_=Adw|0ɱBy;W5po.+Z[C>/1/tIh4Om}+Zynݿc)b7Vo~_γ??.ƙ}q >'7Qϑsh@b4~%z}>8ψ>?* 5cS֟yeX3k7̦$ٿ͎:=neL:gkC4鸂HfGIˆ}~r8#D?^j|,5)N[M'Z?|cdgz5ZY ώXsXɑh9KYO8`*N"wn]g0>?5 i,S%r:SGG3`Þ+]}1Z}ϿK}8z;C~3鶖;nm''ϾGuċhv39)1v3+^u y۴OFKafRk|/qW.D,;bW_F;wޣ:A~c)y;[\X=D[sk953}Gʏ8=\Qb*?cl5;n&.0_  gh ~y-۟:/~xcV/'rۢ/|Jjg0z1cs 碿ocusg>5̑s\gĺwACؽǢlgXcz8?K8p̌Nǂ.EYoEof:ʿ1'sj:FQ̼8:oz38&}g=1&iޟYƟD]*f߄\7:G^q.>+vk;ۙ-u9~{s}E:^;p`dL:l;bKΚxqEn^gW~.Za3nD?娽va<ij|=}g;3_r?bn?ݙ'`,~˼LlUs?c}ϣw6uqr秞g>7^;_z"Z1?gO֞zj-L}y5 |8ި~XW:`oߘbo^m]ũs4ӹd`,?οȧ7y|n qO뿱AUދ:wY0/qء#3oVw\zm w^/k<}?ccoQq)?[~!zF/׮g|!>;zߝgV4~\|VWE??>ǟrjHhwu?3bD 똿h>9\϶_?qԯa1r~v:fؖ;Y Λ?;! {N~#FV+ǜ5C&cMv:ǡGXx ??~x/?1]'|9G~SVYhr `~'#<u~!u`O}g[380:`-1+ bf6Ѳ9Ou^-5F'8U$jn)*9vxlnǍ ^pBl'm??:ql_ޟzߝ`w;v\8O?FOx?ۧXfk1y;7oy{z~$+*f<}[p?3 ׳mtDŽw>lc_\1Ib p]r}?ע:jlx\2'پiVv55=W80O{]7v~(>q=#/T}1fowWr/vq{ls3qn<öyyp[ߌ~qL?޾og7h{bM?8^X`3?-ϸgǸ|vp\QN쌳YF]Cgx# .G'g`ǢߊfYl]VLxH;_Cwݑ95$'D㷔gƟtiA?čNs+[0/_9+t>hEb^&xE_/v6=6~>Os̟zxi#a_33buU{CԹ}mokL~l,zTqn8??Ƹg(zW3g?_[b$)ӿT~ވ(&ǜǣǼz5#[珶?;f}Il`"Vvk ssYvlwEpPm86\J66_#r_1slNJ\}+Ol?gQs-G#ƦǺudh[Rd^'Rϳ~gf;q?9;/vZ+Zϛms#uci/d?;~H;kgg??}š}}[bG_03;osz xrùᇬ[ _l?g8wp<꿫;ⷚ"쿌dwvyMv386i3sa삳^9dϸXg`*9&ވgG8/ #;g4`l?X~9 i|Dmgo︫_|'pE_Y[?`οފMK}1gl{O:ᷕ͟?̚>?6;8^tncfy*w{~^s'm=<1ߟ1s.lߕuOxι}gNJ{M{Fs-Aw^ Ю.ab/_7~E"<yb\6~N~sZgvcXumyEnfς0<-3z|z5i,׹GuSɝmG?a]]+ο8ks{/%?#v۫{ⳃߩ%ǺӼ_碟ݰ1x#1+zm^<!Z xϱkeUtS՝Y:^5fn\c}Zپ9~s.?'NlDEx9̵q#{mNcc%x-y:dOu~ܥo=>}_%{>wq{'Zۯ9^+I8s@WƢͳ}: xƦ|~x2cWՊ/eX9~3$!nI#e[.i~^gv oq]ǜwskˎM)aO#彶vw6?{bCl|Fk'/#J|_cߋр!׽'ΛL}=DO;vaYx=eGʟ$Wt1}OΚ1:kSލ4#l?^[6ocD_؏j?;kEM鳲V0ZOpn뺉c{6?܈/% 1X&0tƧLT7/罞31q$Y3_~69A:3hK[皏5_D.N:ϵ=3ubsG(NGX/EZ~84lDZkЮz ~HŊڿ8!~}!Z`_V{Lyrq{Fg؃?wGOul^6s+~Mp۬\P6?\q"SDEkLSײyql[KsF7?V*n|6ǵ ?qt/ET<'q^>+y.m<&WZ^o4=TY=/OŻ|/~x)?} ߰~ q4cŇhz<Lwrx޵Z9H;so\Doq0 :?">{9NY>EGs埛+k]o>#lOS{8%?'#onܶ8m x+AgmOu;nĬ_۪;U_2 Gg_[g?t>u9t=6~ h19<};z ^c]կc:Avx>jEףϝ?>8ư叵KEXG_|_om>^?xN?x1{6*~;ЗDL8 }{<;v<|~z-9'3@j/?߿qxmOl3ݏV_Ebύ'Tg}6!9 >>{!wSuA G|H,'7㿍O+N{Vr+ Xgx)1yaU>cכl]gd^#^u9՞qB??οV5ã\?/E,Y߱Ve]o4xEïilFx!z(םYo)ܶefmctO;~7_!ޗ^G>Y~1O?[ \7'Ssh^8D.fϚCK29Gpm䁘OoεY'[`޻Qp q:yw˱ͨ_8Q4>׀5xvcG?>s#[XzkްooF'ެ~/zͨ|S;?i<1OG8?]u{13>㾡ʶnt~ug?:oip%89$'XNεo:[l巽4tg>I/kl3"ϙ?}?:ą_0~8>sm7~܆Yu{ɛs\ k깗Ak8럵^Ccx,i <D_Otiy|=Yyf8Msn~#mk;vyyT6ɜ"6 ٿо]Wdh5s<.E3W1τqi|Hs'Wbky\yG;ڟl{1ZL}q\`Ͻގ+^1_OtP9b c3O+q?ZE?<(ǥ)v>9E(yyO+zqQxqU}ԵW>?_ym=co>SV{{#~(d#G]}?Ɠ͹nx9| ?^eָa#fh}slF,{}ϫq'p>3gz( h/>um[q=O)yUskuUzhD1?z[[~kțEZ/=ؘD ? sFJ?/F?ۢopM8<g }JsR8G] <4E63y"/z- +y;c΅sn2 F:&7~5_PI9ۺJ_6 [`bF| {ۯ7o_掵\zoϥ}1%?|^fΏy*[?Zo[Y ce.f|<׹>;?rf7FdX?~=B'><Ӿ6tc\3r]x+XqUk^7}5 /*~bO0cc?zY?zB!|ogo`_"KC w{69wWFt SFRY;uK]_tge1|X?ޏ>SR{׿zܿfZ?m__Tn?1cE=<._.GoqkSUg\Z3bS2_Ϗٖܰ揙w?vq|NG|Nz*mckk^Gcp>'5R~ Ϳ5k0kkl8W|}lWs[ǟ=;>U֟;;grq=ƟO0>ޣ71N-)ׇe\7sY=~rLBIaŸ YQ뺞srZ YY?o὎?X\l3+G{nL1ZN~c)#+6'믑{mL$^oNɭ?5t|ʇ&܁&s׵M? ?zo^CǟGQ$!O_VYmݪy^|u~']];=>8__ZfQ{Yr}XOo4xԱD 49ibm3_9'^Xgxw>q@*'t1h6^}i.5 ~Fx6]>~4z~7B𿜯ڿIo[ir1v:r[#\7kNytS8S7Z~㷵q{+? 융S[_̟1(G7+l+f|+wFu+*{p1zvk,/+͚X p\O1ϵB^M<19=1ñs[/\ox7\O˯E;&o QfcGנ?qN=|&Nϯ`]8毎Y؞ߖg *3 b0b'>|!L_ƺm!qy>x834zw/uۜ3?+_k}!V?{[})>;rI 8mS6cD֯Kqz~(_wH~8N7Svf4`ֿlk?_k._ǫ9~3zV=TyA}q]|o{ॎ3gh|y:~v`_weonz~K?Ps_;fև_&ujrsG~1؊??Uu†~u~x;gΝ+a{f{p,*~^Q2磏rW[X{DoFׯ~:{q )]0`mb>/2Ǯ;F^|YOOV5G_r: 0Ez"8e :v:/;zZ3ǟTر]bES=eWwc0Zxƾ}#{ayb?37_}ϯ1Oϙ~A)Ө~Je_ƳA51^o ĵ*/xYǓ?D/cx}ϾScgt^Ã=PE$32ϵ?osk>?|쿋>w Y0gQc}z=}~'hT\> Q/x~19m(מ+|1~94y OF/{=\>_vfL>ig9~v\c-P9?57%c3,]pfu~#[>#ncW4~~kX?G+d[Tv~w9ZBgį^/50XV)z~>߭?7~_14ssږڷٟ Y_jtkx~sm͖݇>~mjFDuoYS[}k??uqݿy!zT8ޏ~\>~ֿ艦N w}/DoK3[gGר8=Q/̩6Xt?.{Oi_T~x^k܎խc~9_O^9#-c;?3l|OG;G¦~}i^L~Z|cqC`̿3qcUoUͩ-V<\И%k T}"&8/?F?5{e^8?yȳS~\U7r9+z 1)R?_-'`hȞTU_-=9q=efײ ՞UȺWa8N_Et>3sĿeYݨ5 E8߯dYh^ _]Ε?_;1c`OS.`z;tP|t1YA(sIsש)]*83l-@Ab5fLq#XwoQ=#o> Y71H+h8ﯔﭺuss 8u.V6cj* Y_[̗}c-cl[bg ]8fC曍[sdG]9f{RYzP2_b99u% eϲ?_oG2c{=bBUԿ]V5Pӵ=_lo!/DV v1XԹ>(kжo{jfhqO[*ձ돬M>{gf/X T-nוos?}Nd48^2z޶z_~ #s\q KX߯=~VL81Qm=^+{{GapL<58^I~Q?~~&>x`T^ʿ"D{g~6\/?}~S1W{bipvEƲui>!O/Fs^F8kYXDӺ;?9_pK>Q#/#7o]Ob2n\x4{[S2,omloW?2~e{73''~v>^9{^^OKs,:mLZ&VMx/~sGuc|q抷F|Z+~h?qϫ}7=d˳/3r79ԯ'5Yh5[^C4̥Qga}|i}p:7*OҼ>cוZ c%VT }yӱ!Jָ=ǴWM~Rd3od'1Z3zOw;|bcf܊;׮1a[?+O{1saWuqm#1> ǸJ4^+q)kn5Y=1GO cn#<>'g_v7bm]1&A~>Rtݭ.-'a߈~GXjwyq>8]km}G#OGW}o٦9~sr"qlccټ?=`N]4c4C ~LtO뛹us>ʿ5\r?#}^'84 wh0/k މ~97XrORc'jԆ?hgnj9W7պ*kMM4y)h{*5?^7NJo=}ghR||:7Ujevm@L2[ܿ3C|͗lgTo9b?Mt1v^fD9箩q6oW4~OrGq^_mw1D!pΉE!s]ǜfo:~`Ma`?ٯod_#F7 *ܿ}'k"}۷σEL`]Nzͭd#K翵VY=tVmTyrغYxyooĸO ߶ş5~ܿ`[9Uފ?/b*/*j."wm3=E8~ψbgWm皑9]^cx 8o5_x&>/V}'9߱/p=k1w'GL>/A/YGfe$Oca7Z7}N ǫ}mqUf׳k\?'i9mk×6>ˈ{k pwslatX)_>[Ǭ۶?;?3ŨgyۣcIlm+8Fol?~ۨ 38cYݝsi{vlcuLuƺ~]Rl(ޠoSsU< =/>ݵ bZGF+Vnد[o>r`{bm+=D%ʼ;繎lO\vc΅g^1Ok{Z_$|%qmC{q6o!_݈^ۛ?_Ouv%yw<3ɥ|f+O?c=OSyV`/^0//Eˋ391sLlՍH-#kP^<׏*G`A9rNw,w㿢=H,Y"{1d7a:ݩ;{<[D!E5;qۼy߽֔r*m<5^cT׆.mksߎz[܃?Gυ~dݍkҏbZF~[n1peE%vvEf^?_~maYkv]?go_prm-_Z[KV_TD>nY>Mu{'1}Eތ658vqVn\ZWﳶ=+ba&nǶ+:?L֍Jsʟ;sD?ן^ ciW\?5{3W>3:2=5rNz=]0yk讱"W[Gyjonkٲx=ce:{ \=_dV{?x39D_J[9k^+ZOGG%z+{<_,mɽv>8_f;u'RikL~ב5Bǝ\1I=eg ӼYl}5z1Ҭ&zP1kjR[}J=h&eh>D9xj=X-s}oSO}\gF;~5['Ik>TPjk?Dsݽ=D;;+i/;&ίw|F?'R}0z;/jwq8ݯq;FT\Q|3뺶k%^+Fv_:qneN9ƮϮY0GOEϿr<ی_~qW||m?ϜySaD_+1XԺ+W?> 3eOūOjs|ѷsF{d>73Ӊo~a{bZ,ٟ֚Yyn~9װ/s 7g7w3h\Wg9Q_3s:&wQ:~~Ucߋ<׋mgTπ=xcv~Oy)z=y+99{ V7k[uvmG7y~Sƨ﷿pgѹy@I?o7.׶%}sZ'{?e;xc? ~go tD~@ִiu5x<']0 ~Q3>U6gv1,7s}^͇t^7ز|cw#Nv6խ^6so6??M!Vj>G=_1ZgYx1CSz;vNm\sc8cmW嫏G[:V'ɽqy8__gX,/Z0\em!9t8W1&y|o՚_߫gp}!ysݹu~xp?>=}4^cЌg< cŵxŸZ5F5i4^d{:3w/+`O>ޛ~5=V>*c'C+o̿7\ڏoyjf!?tk[aƋ'X9wjMcƆ/ΩG3|[k4/d5b?|33pE_cͱoz7>c]պn~~Z~_xصcԿRym!ڙDpn~:~z*\|-_#<XZ+;'+ 牶]Ǭ 5Y'?:qW5uοr#GY/'O8}/G2cz1,p<=b37?:t,m_zuC ST8_&boZ/rh\/a >6p*\qsC?n~<\]0vk}q"qn~K/kYWX+a{Ð;o{~^k~׹z>~o9/0\!mχ`s94b=C5mu7ϵMx)_h:?7|*>/81GƵ_зW?krI<|^ G{#O⚫ zED>&Wp>|s@1S-^ ?GkUq] >vĵXa?k_-޿O=O>ܿMx/S 1VX~bS=dU&WN O1W5H~^;}ź&?9Mv>{xkMK! ~#SkCV;pĹV^ĽZ'k[@۪[]=N3Ɠ^z|s?k}?wu?ָ, QG/`'?ƙhml|{9x_gUGO1Ř^^8TH_ MOm|¿uK;>Zqy@BnU=5[klq1뮊\CM׹zL@* |k ,F~./5b!Cb *z|?:|k4c#`^\=qvl濘8^}U\qA؛8}jG}m^?lSc]#GۧTԳ~gpbWNbk)v4`+hN?濘Cq~uף_jgN؋׾S{]}GMy~WW~{9~i_s0w=A`${#1UB'/߃MC?_aSbw/q7GǞT;~xBclq?qU?bF{bms/.kL{dXĚX|Ї1nՎOs ֫?<Ɩ_R{GՆ:']/}jWqsu|Wx:`N;?nu zkc^khm{|?`|Z bz|\?c]h)ڪ)w-輄 ᜃuE'AK8t/^oz1~xbэ7K ă؛t{ zp>z _aaS9D{6zT'S?~}{',4hq Թ}E?~՗:ǵ++ ?8G`M eI?½W#j8`܅ZuWszNLB~)`0W8gu.{c?$!/Wޡ=%0j:Oߏ7)Ob=Rsֆnt,ϩ[53!1ߍu?_[wƚwR珚-z~׾]^_ SΟX?L/KcXq=Ÿezs&|~M3ߔc^̩퐪7_U|I}ZkDXAcט5yXOƋ8"з\?~Wz`qm=ƂU̥]s1?;7{m^ԉGc sS=>5]/qԟM?R_s;5{90Ƹإ߂}sbd|/;֟qMA//;cBO\}sR|Gcnd*Z~;]')?!̿pù1k?^sS࿃~ոC>?称/TTI9>?Ҵ׻tIH_~k!ֵp?sh_Q^oS[{i]HLu" _]5s}1t[gyvh7ht' /1X|N\8~оW_ߋao輀9?`G~Ͽ}znlʗίuZ?qgt\矺?`΅T-޿P߸Uu3ĉ>WkX' _ОM̕зSw{ pO+b$?C5 ~_Ә+1ԚϩC8WqkGX/  3~{z_Ts8F9=U&ac0Wqù1}_uOO?z6F(1v5K]u~~Կq]TXOC?8_]t wqxc-`~/%\ I)0x%cE6d?Xq}%?c ba _?w)su;?Ά3'16wAߝ^\\=^8\ vL=<ˌCuØG̻hu:ϥٿp{Y]ns&rc&޶깳mw׹Wm9_%'O?vbs뺏H5W_Kx퍮~?=/<#}Iw"Wګߋ_bk11?ɵnZb~A]5/klqzWO Qx늱+?Z˹Yτ!g霤UAdm1~3WԽ􍮾lq{{M{IkS uNh?c={'p B uĞ;ƓG_p~GG縯EzZcLtQ`[1\ 1Mk]5'/Y~:t<1uϥ8c=4V5G>꺤` A{zTW lt!Qq-Ƶ)gdsc}@sͮ^1 X'4Vg<36A5y)pZoeO?y psRb3aNaaN1[j? [~~_o#\}_>o\쀷:?`>qڇuS0Z}cӧ_\Spet-k?,FǘZoW鼇gܿXpo;;rWqPpC}NcqNfa/A_ryS`'O*8߿G7c5bf\kƚ$O^'ľs߼,\/rU|x8" _k{\C|}ǵ. ;C!MG_w7^ ?tu_:W+t}pacq]ƽf7R#8㜬ӵFU=-܅q\д__!WXصU6u^О5]?0\t՞HM̩opKwsov,y+pC4_k>1q4xA\97xэ|:lޯ_oa=hp,XwxО&Ο7 tOAc0~~j]o+?5"→0/?Fqj>UǼ sŧ]UiߴNńD|W@?q _9OOS\㡟༝ҼRϹ-__vԉ8x]|U_Mz=P:5N5E뎺j~t~Aՠ<%ouPx(4.Bhvu5Mq͡Swg s &87?g{ο#Tkk)-`'X|y= \G0: ^߸Vabf|DFW:tu!?=z.]=ZqOa3ib /&rA{ q=*w\~`ŏ +RueU,xNo!7S{xZWց-{A5ƴXckq-է㷦༁0&mS7q| 3܈kK\ M珚H'$?`iĹYMb=cxq]| LZ AZsZ"[akN]'1za1~0ZtF?3`s,q)?ƥi.7?r`Wں69K 㚞1?mW܎qW\Gsu{m .?k?W!h+ipJ9/㼍 #^' b%j.kQ^F_uѸ_ET?+ ju#hTOC_ VM#u=^_ :oqyCO5qU>k`=\W缞x?B\AKᚋqk>kqC?&iB\:Ɲs̿qGG?qբr%߰o6>O\)^A{{4?_]Sq=>( ~Tmy6:@Zgn sqNsX/kߣ97?Btokp_huX&W'S^KSu.#cZ~G].q1yc`. &w7X~ '1~_g_qd\Dscap /yxU16͟q98 S{0~ý< k=]q)Tjpb}|087z|g AXS\1f?^?܋}z0E`ϊ& 5ο%^8 qj?c.Nű/ho^ߤ7 nϛ`~}/zا뗮]]=-E12Ẁ}5ֱ{U]qb\?8'3^|4i~[\7q.vX\~WS\IcJĶ-3Z_cO;\= G辆zڡ.CW׷Uj+h?jx.WX)gS#ނ{MS\oSj{q>ɸVb΍k\k?B5YA x65qDxoZ~G& ߥgcq='"u"?8p܌#EWgSFٍ0G:u5"M+~yZ/ƽm`1DT9] ?Gs\~u ~U<kXm>i~Z?SuPOb!S{Ʊ;0xL (w\}N1?o|u~6)-qƺqW ?wڄεކM3co׊qTmZ\'`*>k\ƯWh~CoQ/u~Cc`=#>q_qjQW??㺈1a1mx sgfW`<·7_{puKh>:M7\=w 5ϘkҾWSŽE 1~{R'9]\Rj? cNy=[ڣGTf:k= I~>1->wa<71<+}FU x|WdcuBj1`nint9-;=㚸09>2/c[9܅=AaxӹgWq w?-UyWSYڍ9{0;fܿ}`-zvﶸjiu޻UskUvף0{kXչ.Wg }nrU<=Ww~xk[\}BFثĘܗk2ڧG{϶Fxs4@!=1~5R?q/R0El^αbއ9 㥸@׋xϋpLA~\qA]Ajo}V5(ֿa v=EqLOG폹Tq.nk%?Vɏ]}mų{ }kY ܋\ ? Wj|T狸PSN?hP9T^}W0|PZXW1V>u څ{#5*Š-Wܸ{}p+Z#^]z.Iд?3q8W#<ǓXlcWw^sUߑwXssb?ݱqY?t{sh~ǐx0~z;!Mq?\ٿKIݗ\~_?P\S ?kqƑc4{]:Yӥ16O5c63c֥pF<1faΏ]/>W?0t]_4'D7b<S̳V3k`vy!>z0VAi\q]~XP-=75>kuC-u8KAQu>B{b郞_-k}l+ SO_}A4n c,kG|6!1>Wa>oMq8coX?]q=M O~U㽞E|m`92H׵#qOO]}Tnc4&^į1 kDN|5#b_ bmj i)ZꪳZGju폽.XBX;:Rz04&^x_b0&ĸ'J~{ w܃>+ŗ\5ߢb6GWa`._\qƽǁ^/jWNYWM%>7?ZoojKc{>1Ks{0C>og?q!?_ƴ?k+]H򕮾7ŸKV8nqZ}MXKj[_W??|l1&mT}Zl`^3v<~񺣯,Fb?uOiiqoƢ_?hށVt8#ւ?l;u異/Z{ZucaU1jzҏk_FϿpMAVi7Q EW+6ata{km6u{$xZooq_~Ti<~g5cM 1Dfᜀ/OgXy.鋀'յsex]0khx/5zX\~s3~]+_=SkjTw?!s WDc,_ȗM|לnW]<6ލ_G~*.<3saܓ>OWa Sa\}u\ `z<57kRSmWՓv+Rώž^Ձ篑?:w?^j:?Oz!~sn'u~}L{+0Vk{FS]|֯륟:OuaĦb_8a'կZٮi|0<  .?~,>?\OM.+)W?pą\> s+?*;ޓsM?Ҡ[>C_yjuC8}:E7tm{.|.~<.OϟuB8]|m)9OE}18}gߡ '#)?C?>.b8jG"}črîCk%>yhH4]sy:W.c\1)m4ソj5םK_}} 5:)?\1h xk^?Nc~\OSq/EsU>Rq`\Wq|klqjY*oLcȗNFSwzG57_KӺ01EN>?ַ>=;iwFkMT[ZnmS@n16MgZ?n׸1M74}`KbB9v.Eρ8ocŧ{LxrqԾ[*o7\7㵠ƱzCKWqڷM1_^}?Cw|Gթ.W,i[~qK }^xІc.iiL9Xk}u {-R9B:~qu?cKSm?x!z~ojh[wR׽)8}齸wNnN ?k_gcXq}}G?6ojj;ic܏y,ů6y!17_ĀLT]=?;JEKȗƧhXojӥ/7:a[ܕZSԺ MUWb)K-Ǧ7_m94}hLMymG\?%s3{oڇEyC|^IT]N\H#j/NwZr_?7N1tHsm;.{Ypyo ΅oOō)C_!GA#Ra0-U35<w{WGSs?k9[}΍m+^7?}<Ɖ_pu 8_%~ԦدG?\ΐKx1֚80^ \gH.Nyu,WtYϕ/tx=J4ݏ?TH5|x<߱[]3?1d ݩ"T.4?Cn΀yzS|Wt_ 6թR>F|o|'9ciޏ9T|ZR\~qsOXSC_y>#pOc=ׅpĿYMiϤ]*ZV(26fkNx'ǽpO>niDcdA_lw̺TA}k/'M߼ߨ=YvJQ>+?![jqk/w%&HQOɸNw!6[ґm7oi/d*lW5W/ʏs[e#'w~KR2C?+GEo:QQͫSd*豗u5q̅dJv)2!cO8$GD:i{P*~e<" w]'1~7z*VX_:;m}Q(y⹱w#?"?V@+(ߕ2N co:q׊A{N128IRYO_/ݛ/((W^ԟ;yyobq|>\/N3Z7i2դ>Kw~_p(2^-͑?w>\+<5#?ϵmҝmG{_x;aȟ9\cGo6Ώ6u/(uТ{?s;z?[KdIA}VohH_'|"pkJIA}VohH_'|v^$/}Qxia.xe8>Kw~_.}*(cW/qV*ch ~+/c?/g@зe'2%O?qK.(7Eٗ6F,؏ ~^OC\wOW-Eu~G}G}G}G}G}G}G}G}G}G}G}G}G}+E=w(eo:ůQ_oMSuQ}]}+{iQ1?9`"p=oߚˏ1{}ZCOmk*.?8`^ 㢢>>>>>>>>>>>>>>>ꣾael =0߄>~0u9[qgwQ_?}mWm  [%E{ַkYx({?cJ?`; חk5tGxMGd\kd|6Ï#?TҙmY9xdkùk*̏6u{7؟8_Syel<רv[SKg~_b>]i.y? 1AxO>oM/.蹶%oštnc5 8Gk*̏6u@3_<#ycM[>8v[SKg~_k}G=ۡW˚ypi㜰jQ,?zby./^g*6g]<^Qxڸ߾.p=M_۱F-큗|qQ|dYUN?K|@B_~2ZPaR_ۑm7oi|wrQNI|6}O~O9OT }]Eɋ8>dtxaS_ۑm7oi/B??7n'l}5EyE?,~u}]sk!E[uNjo-^ߎhQ}[W?Q|8Hִ+CF'lۺCY2)f^B}I}moG~ߨ=!fb@/ϝOQ*ύG?7ߗףx)aS_ۑm7oi|SQ~-UC.k_5D7ʏ6Z@? m:(W[B\GEygZϿ8ʏo-^ߎhQ}N΂k?r;}6}c}x3e.c}xe[< ,\>>>곯˺㫶6}ô/o}m?eߎþCEo:QQQQQQ_wi;$e~|㈾i$poB })o21|ף[V5[sl9?[MG 5w">>>곦o׶,؏rs!_/^|A|}~?ԈK[e2 q7{2C_a|G}G}V-T}kϚ>>>>>>>+ Wg o:ؓZ<{<5u}9V}q;ɿm=Y,\>s_OA}mο^;>,ϝv<}9_(.1~֟'iq1\L~t?(QK_5l\6M]f~ԗmkG~Pe}׎/~+U/mT~v2|2 k_o˚:Nճe({;_U_O_>>>>ꣾRnU}(zt_Y1>+mR}_8UL߫mË p?#[o+/9+y"G-;׮u }ov_o {kSgR_?}ue] 2ΓI5 $^,%2^*2^%okc|ȸD?+%?OL;ϑqG8EO׍_@~9WK|A]S֍_Y;<#Եn(~.^Ugoթ|xgQ)kc}O A~ޗ]oG< O&h}L˼M1m:ed.od/#nznjy2xJQ_Ƌd^ [Y>>>>IO 6PY}8b۠>ПqĶAA}f?Om>C}Շ<# 3yGlgV46#?&^2ΔqV[Ov?b7ad}>WR'dʹ}#W5~Noe/:OYՈS>,߬9\bUӏXt=:gk׈S|5>W˫pt?1~!6ukV/KW,Q8bWݳΏ>>[}GK2ͿO|OE|^u獏LBꨯcpîd/ӷ+d.㐢5?_ˢ=X_W놯;?#?7^Xo_k///V]ؠuםWʣ2xMQy?x ~U8ױ _w~tG~P_)[+e#򗗌?-{\=(X _w~tG~P_)~{Z 򗗎#|}1]Q_7| A}l+ߴJ=4򗗍)?0hΏn+2nG~&7^WmuV_Gw膯;?#?+䟖]?p=ӽṟ$?ckYO~ׅ@ƛJyqOMSQ]Õd+{Fk<=36K}7~=2t,lj'LSQS1]},\_[>}xwO@B' ]M߬__'k_2NVW}M u}'a_G//9Cﮯ[U_ ,\_[>}enպ)W_c|E}dTuSM9Zɂe|O-2/Gu.v׭U_ow}Kp}oƩ, tMH_o|~}sDic#R]G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}G}"q+s2n_cw($ξ^[Po'2w!2sQfȇe|N\yoy(!<𓿓 !PBy'''>BaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBGBaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBGBaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBGBaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBGBaON&O}C 灟L;]g˸Xƕ2q ;'pGx<'~;OƁ2VGO!Mz,sd<.zw&~k:~C2g~\"x1e8q[wX{ط?Zo_ߺ_%c'x?1|斠{+ ~cu;g-A%[O$csrG,+u:{eG1ߺ[o۝ź[o{S5Xuntou_uߺX;ou_w:~cou__4XuZ'~׮_'~'ڟk'~׮_'~'ڟk'~׮_'~'ڟk'~׮_'~'ڟk'~׮_'~'ڟk'~׮_'~'ڟ"'>BaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBGBaON&O}C 灟L?;?7%ğ~;$swQî2VNN2v7+Oﰗex!\!~JC2'(!k7>]3 |:q_/Vq2vq(C 1' (G'Qpt?O4C qߚq\ wKoB/B{!|gWCoB/ğ%tQ2^,ȢzNyPBNk?|-PCoB/a2UTK'QgIk'Q^/(ğ%trGﲧ:q_}G?ӵlF%. u (~z3e<ې+^'Q|}T߇cWEuhğ%t'\Iwϖq+e\!7?~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~;4os+}X7h;;oZoMQ޵ͯ=2dCoC27ߺ?!2^{<ߺ?ww+8EG[o|w/~eK:qW~C?O罻:\ȿ;u!~~_grlu!~_]V['ϔl+=l}nu[O{?}} nakࢪ`u[O Wu8CV[uS2ϭnakc=,~[u5=`K5c[o}O~{*+:~wX?^<`+:;tk~DQ_J"e.~ݯ%I_ Y]I!~m󉹰 YhQaEy/}nBad~m Ŏ/LBďIfw>g '''~-2q{V?;?u5x '''~{\o Ʉ/g%?M38_n4_r 3%(5x/KCɬu_灟L?;?7%ğ~w2!~#oJ?dBGBaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBG?[2qkdPJ?(u&`xnu2e&c!OOq`QOV[?K}?"~+c<~H}Ti3ߺ_xx!<ߺ_׭u>GƑ[?K}; ~'Zd*c!OluI22ߺ_8D ~'~^Z}̃4ߺ_g6˸[Ɔ9g?K+U0K!~=Wu=7~A=2Kß9/3~ⷋ/gK!~.~\83`%yCvcŕi3%~ⷋ%~ⷋ%~ⷋ%~ⷋ%~ⷋ%~ⷋ%~ⷋ%~ⷋ%~ⷋ%~ⷋ%~ⷋ%~ⷋ?So8Mƙ2癿'Nqe!,C'~g\s(Ο4d'yk}$~g鯃{R`w?BaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBGBaON&O}C 灟L?;?7%ğ~򷔧wxeZ_?+^gkW[o ϭ?O_ƯdlqOxnu!od m2NqF1{S2/φV[?;q`Q|nC۟M[CR2q!;:ko䷮`u_ϓq#e<[oϟo :- YoWmbQ>g>~s+?Wbcqw[=.\,VQ~0xnuߦŒǜw[Badk V+oJf ?3/BYsګ~/LBůy^ ?X?y(!ŕ}?ccON&O(\w!?%?]_ O}"%e3?_YÏB_Jf ?_J 3%(5ni𓿓 ? _J 灟L?;?7%ğ~w2!~#oJ?dBGX᯷^zg?r[NK'r5ZCWc +'~___,ΟO!Vk}$~__k'r5ot$~__'rK!ǟ+l˸R2qCA+)2O]d<ʿ;o/52[o/uRî AJß9Od ϭn߾(s_72v!O8(Os+;~'}eBaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBGBaON&O}C 灟L?;?7%ğ~];.cO;En 灟-2Jy8ూ\!<𓿥~?+[C?[f[;o5\!<𓿥r5E=\!<𓿥0%wJE>//灟-ĿBNϭW?o>0__N!r۩2NqxgaV!^ 2_TϭOu)!?( d*cOq;8a}nJO >tdÐ߱(VNNEfJO5fV_+SbJ,RcE3OgJOEZ_OV:{9=9Sb #5|^Q=?%/VX޿?% q,w׮ V:XIa g?kCQ>{V:Xg˸Xƕ2q 'O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?O?oأ(zoAx@C25ߺ?l#(y+lu!~͢kkyg['''z3%yo[Eϭ?O9K6ߺ??漞;֯~[e'cMgNqeqf1{S/qs+?Wlr22d+%3d.c{ n^ƎEV[?K}ߺtIß9O>KΫ/;/;/;'a&[gl 'kp_ w~/_xЕsi3%yCvk 4OBaON&O}C 灟L?;?7%ğ~w2!~#oJ?dBGZ2v^[T+YA2 ϭn\θߡhn\.~?lWTϭW\!P2k5}(O<eNlBadu~נ Q9K^rrs{773t7 =# HyVqza$oVI'job4F˼AxU{S79uv|:~TO+[FRn|c/M-߯oZ[sR?ms=o&&oe5n{+Nϗ}W쑪wsu%{~;-_>?/(ƿu'OqM/O?rwYeӗ/(O~~Qw62?/&"[Fe?]D~˨P ~;oJO~gwJ~cG׷¼֩?J~ǖ2/3/7?b~\)TO!n-6/?J~ƺ]ܱZ 7?ßB*]hAßB*U_?Tj]kRɯ;O!.?R~?Tyyyy}d~j_VW? U{.T<ώ_.G~eJGO~][ͷW¯^ ?n/]oϽj~?׽qO~W=j¯^ 1_n뾯C7X׽_XVW?X^;wVZ1e۪&*1=n *1󷯹p`7~?;~ ~7ֽώ?f~~.n˝e_?o~Wo_x(?l?/l??gᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯn?E~cG602~ǜ~}3ȍ?Vs~]jF?si=?W ~ǜ_~ǜ_~ǜn}Os~e ?ca ͍[?Lm 9S9?JE䷌%' ~Qw62?/&"[Fe?]D~˨P ~;oJO~gw-C 2l."e(_?ME䷌%' ~Qw62?/&"[FeFn]4c/O+'=?/6կvr ~ȭ;Uo O+'BpnO+'SwwͿ-~?VO~ߧ/o_?mNw軭ei/}?T{=|yyyMSWk̯3VOUcRI%~;zS3P nƴy_K/3UǤJ~y¿1`>ȼO=YVI?&s OiG OjcRɯjcz}-cRo?U~Y7ͻ_n޻I?&*Ӂf+,ǤJ~U3s:L* >rJS?mnY?&uT۞?\.8~ǤJ~տ?\sI?&?cRI%*77777o~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~uo~|>¯O~u6w* -~n.7W׭3-* u0?dׯ!~~ۅ_*Wwv~ ~* ;;we~~ۅ;C/o?.7{^7wnW~']{=ȼļ̼ܼΏ?Vכ׶U_j~] _oW0k>H_c*j~ֲ zǔ_SG ̻7d~zKo_gp_RUC:Oe~)+¿yY} ׿+7_ַ_kY_7`vVW?ͳ*|ԓzoWᏝUWUPo.n.K2{gB/5忯s}- "e(﮿vkZ5׀uD~˨Pʍ䮪n/O+[FRn==OZVV䷌N=l~BӊQ}BӊQ7/B|"e(?־O+[FRnu=H5?$?oJs)~=ԂoJϗvwu>lBvvٽ~;]vwS?m|_' ~ۢeS_Rn׽/OJOK~J)/C)7p._>?/(O~~Qw62?/&"[Fe?]D~˨P ~;oJO~gwJ~cKVW:RɯZ_#TO!syyyP?T>~ _I%aZs~SH%a\kֿ W}~SH%G1 > W}~SH%(ßBjU?Rɯ Mjw Y}kA'ww{oTe~_7{gǯ^ غ~-z/]ijjߧ^ ~5-ώ_~__ӯ__9gǯ^ ~U`߱/z/'wws0¯^ jr>X_1?icgO~3;j΅ώ?f߻_5y͏T͹0_-dO~3?/\uX{_O~3?/|SUpX?f~w쎡-}W?;~ Ve_~8?WO~u?WO~u?WO~u?WO~u?WO~u?)[l^b^f^n^Y?9KVW ~ǜ0~Yk?.o?co{T<1ݿc~ǜ_Cs~ݸyz2v?9[/j'9 GjF??JE䷌%' ~Qw62?/&"[Fe?]D~˨P ~;oJO~gw-C 2l."e(_?ME䷌%' ~Qw62?/&"[FeF7{?/6[{~M!i䷑Z5 ~({[M"?/6O_. ~T?IZ_?mD "mwu/O+'ܺ1{ai/}ηhJ{IZ_.ǎ4/5/74u1j+ɲ L1_^bL/7m~=1w߆ {֓ecR̯)oL3?[w#RI-GUBW?̘^e~z:L*U_TwsI%>@uT L1W}An]Ic-:L*U?Uc L1׍G'Z_cRɯ >ƴ^dY?&u:(_߭߬#RI%*77777o~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~zg~M_}v~_6 !~~ۅe[~..K~ѼY_}γ_VW~'Wwv{__W~']]z[VMz`~~ۅ+W1t?]_e]_}v,K#GWWUטi-׿.?ڼҼڼV*/1ܼE旚W=[T72r9 >j-׿/ /tیy杅_j~q~+Jͯ5ZVW8~V7u nU_z~1\o/5 mi[vB/=GJ**S~OX¯^1WiTw|`|#,ןYp槪Q_75P~c}^=oJ "e(~߮밿?oJso͟,*ӊQ{[̷V[*ӊQ "e(ߞs~YZ2?rw}WɽAZ2?růӭ}/niE~˨Pʍ?/CϿunKK~S C5wv~JZ2?/[m}o큟&oe$O~g{_m=?mu=`~j>/OOK~J)/C)7>l|l~ϯ{ϻ<[?l?_wV}/eI%//O*_?ME䷌%' ~Qw62?/&"[Fe?]D~˨P ~;T{=kkT?)Pc|7 TO!.ǎc*j?~SH%VOO!3|Z@*Rɯz?)#릇qcZRo{AßB*]d-qtyy1*Ro8qcz2RO!ßB*u_PWè~SH%c/7__w?/̛͛7M[׷n_V?cuoGW>c~|5^aYV?_﷫fM~*W}/غhl[= ^~nd_|SOL{1U5o'ej4~{v`7_R>~?l_j~U/5nk??Ĕ?/)п\?+k~j_~M?&9/W?&柧s ~;o˶9?_7vm>?:C~˯ ?Cy_?C7.w ߿j~*1O~p{"q~+1|z:L* _b^f^n^)T]%旛w6мk:L*mP?U4 UcRI%gy;3kcRo8Q 1f>,Ǥeiͻ1 L17/s8_euo>aY?&uU̵q`~*1Ǥp쳤  L1_^wX?&uTjU5BW*1Ǥ_*:L*Myh`dhln]_OvL?.4~'C???.4~^)Ts~ jU_U_U?U??cί zᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~S]uuwS+zne!?_wWf9K^?O~Vݯ5__9~n9^?O~]y+[T;3MB~۵?/oU5=תo*?O~K_R_1\os?W?:{ rg-Ŀ-iz2wݽ/ٿW? Ƕo]?ܳ{7*϶Κw95 Wm?y9~ڳoaK!iGw=vyyyyPU_ */53x V _W}/2fS_q8ΕBW?nuֲ zKo{\f^^k*ar ׿e(7ms?*kfU_j~/m^iAu}y/B/5 W5ZVWmwQW_z3zKͯ UWU?U_\O*/5a ˮB/5?*OٺjwOW]g7_7B Ej^5_%!i_W [Wra?T?yP?׫fe7iE~Kwn_?T_1ХV?{ߜJ~OwP5.aI%'*J% J?7Gi߅˅?}eiwԓsx{~j^>ZVV*U_?=S5{.aI% )C ~ۺůӭR?mп]ŭl\Vo7Qm/NO~ga=O~gEӧ%~C>/OOK~J~??M֭~ݮa' ~ |9;I?u~}_g~u~ ~SH%zp͈{5?)_~SH% ~SH%Wmus ?)_wτpߢqJ?T޿ ݿ(ßB*u swP?T>~ w ~SH%'J~cG0?J~/5/74?J~OO!/ijR˯ ?)_~SH%qz2RO!n=~ W}~SH%3_iRB ?)_~SH%5ד{\_ Mj;}9 ~bʍ? .?fy/ilOL?[~Owt ??Y5߾'9~ {l< ?ͳ~,Uo-c9!wQ?^Tl?13bU՜7Z͝?TK|>?Ss *W_w6<Ͽ'_l%?=h|8~v1Z?f~wV,ώ?f~_uC@~WwK샿W5=q/cd8~v1ZMnJ|o7,gמ_nl1?c_Ӿ`n>~{z8s~ǜ_~ǜ_׿1t]=_.?9'9wquKc1׍g9 ?/?םY/?0~97X}=F1~}?䷪m??=~yXᇟꎟO~uO'~{?Ww~;~?խ?95;Wj )]BR˯yb'J~/S?J~?Rɯ ?)D~~ϟ?&1_I%^ᾁW ~SH%ߟRɯ ?)C ~Qw62?/&"[Fe?]D~˨P ~;oJO~gw-C 2S׽,9߽_2y*1O~<:2g̟͛2B1O~z2 ud?sf ]qi3?mS_? ~;o8q*1O~ Kg8^vQ5?:|fP!'] %??Cw B1O~c L1o1O~лw6?Y5= L.}=vX¿1k߼g=YVI?&oCWo~y;]jcRɯ¿1f~旘_wp/O[tal?{cRɯ >ݫ*1Ǥߣ6~}*Wɘ^P73\7 L17תBWwϘdY?&uT~d~J?&uzz-ǤJ~?T:Qw m VI?&9j}*W~<:Lj ?jW*1Ǥ_wu_cyyyy~]\?', B?~3umS~ǜ_~ǜvjԿt?cίz?co{L}?1:裏?9*~['~['~['~['~['~[O_w߄sw߄ksk̟63B~%9 oo̟_Vm?y7ܻ U_]MB۲O~OUsI\~[Z~6 ǔzz^7厙?U5 ?ǔ`?tҿ&70޿m?y?ʹW[οO~K|n V/T)7~{fOf_jSnu$*n1l_PX~']{=̯˭DBW%6%į^Rj|RUw4b~y{N ׿c[7z2 ϙ ~}aY_7,o$W7zyoC_j~>S?׿=~*/*}y-_j~O5/zKͯU_j~U1k߼Wdx_!~xN?}fI¯^Rv_~_EQ[3?I)7g?O-wM,܃[Zw]=b\!TP5L?k?)?T򻾞ԓ{(~m?nq9R[E3\Q'f揘?.?T{~ݿB??J~ >oJ%Eq~ܳoUV*u]{Pnî_VV*]h_~o>߁l VV*-?^woO+?~TJ~/تk˩W~O+J?5{=?mZ5uٽ~;-[&.a&o]{ͷ~;O~gn뎡o7?MB/Wl?/O*_ Pʍ??+~R eKN{s?TjXO!ßB V~~SH%9c  W}RB?T>~ WRίr~OO!*#J~hc>μ|D w_ ' ~SH%n~]J'J~_ުIBRoQ??T޿ w?)_~SH%aPRɯz?)_~SH%'J~/Nsyh`dhl/Omlrߖk7?u} _VC~Oj+'j3ߖ>\Sn~<[g͟2oK*"_{w0~Kÿo^5nl?1ƿ-/s:~}o{.Zګ݅_<?ɯnդu}?^59V/5 cB;#UW?}fq/cw|_= ?U RM2O~3öG?2?`~H?;~ ce_6wUMv]ogO~3?/~ ׽&3 U*Rɯ ?)_~SH%'J~OO!ßB*m ?)=OO!~SH%w-C 2l."e(_?ME䷌%' ~Qw62?/&"[Fe9דIr'}M' ? ~;:?4{?0H?&oY73(LJTckAg}e']g`ͅ??=׿&+B1O~׍h}3ȭx7 ~;ms ~;oWX?&o=\qi*1O~mq|7w']UVw>h] ?#Ee~+1l~yz:L*uu_b>UUBW1jݼjcRo{<ίsPU~P+[CkcRoggjcR~?X:L*U?Uc L17/KZW_T0_^OUcRI%al_iT)vD*1Ǥ߅S\o1Ǥ߅dL/x/ucRI%gi^V7W./*1ǤݙZ_#TߧcRI%w/7__w?/̛͛7ߍ_=yט3?cί?/kW?}g=9Q?U_ ?cί;C?co{{k~ǜg?>~>¯^'~['~['~['~['~[' ׋ks#[7?nDM?O~}dX?u}Ƕozrc&gdaW?TKǔz~]'Տ*n1Ư~v뎡ò lvEqch?pdcCU7?_3n﫚Xٶowpnz`g'F~䷴g0g>_:Losο_>{C5YVߖ[=[d^b^f^n^%Tיү5e~žKV_e=w5nG_׭G'chn|UaB/5a<?U{W>eN_7/s8ίsPU~7U_j~¿[=_b~yo!~лBW+I{zKo?'/B/5*7ͯm-׿Sq=_POz`~0~9DS?׿.4~*_~+W[^=/Ԃ~wV[J~]Ԃ~w~>\MBJ%ze}T?˯r RzoZ~YZҺC]EvPUs2w\Z=~`jw1t O+.4~^+Tos]]!ik괿?ZO+0ԿosV*]hpL-oJ%+P7Giv8~~}miC ~ۺ|.}n&o^w6?Mߖ[T<' ~zD\whk95?Mߖ;fvl~忿eOϗcxl=[;|[w6[aʭ3|lw\~7d85?Mߖzj\Vj> _+}~SH%O"l?e?A ;v^O!ګ W}Rɯ ?)_ zrF W}R:W~SH%K#K[_-TO!s? ~SH%g ?)߭O~SH%'J~OO!.4~?J~?T~~SH%ߟRo?=+OO!^b]j|s5-̛͛73~>h'cu|zr=vn{l]-`)7X~/1}aFQ[7Ĕ?wwT1s'ɯ ?u-*ݿ(_j~ՏfmC:G_Cu2_[Sn6ܿ?_R{_/TUKo':?l_j~]yuoA?nUKͯ z[ם{T/cw|o{_zo?+?ۺ0?e~Gq/ce_~]~ ^M2O~3դ~*1O.]>h~jzbX~Ϸ.m_Ǚl1?^)Ts~Os~+?cί ?co_.5s~Os~s~Os~?s~K8Q?U?]d-6/[n^)Ts~]ݏ4ժjΥ~}+̫?co?W? 1 ?cίz?cί!9'9Eq~ǜ ?cZ?co;Us~wm_;J~]u_W]'TO!y8~ R .W׸_/TO!/ßBcRίR?)_wßB*U?Rɯ ?)_~SH%w-C 2l."e(_?ME䷌%' ~Qw62?/&"[Feu:p#A5K~sίϡ}Xn|;[*1O~_-˭.כm~WZ!'{q_a/͗/3_!wߋZg?W?&..ÿg~odB1O~7?rUnj2K~]/͹7G揘?jL11;^~_5 w v w_<߫Tcvb{lHUBW?̘^e~z:L*]je~yyxԘv7c~y7L1w*|ò L17ժ]OEwZ?"uT?*W?&uT?]CRX:L* R*:L*U?U1oo\; GUcRI-KEygUcR珉czy/ ͻM?:L*U ƴ@dY?&uTvtNivƵjǤJ~ϵ3'ב\2ϋF&FfM5wW93x .?9篯37Xuc5'9 J 93Hi1W1W}~ǜ_~ǜ_~ǜ_u߱ɍ?Vs~Os~U?WO~u?WO~u?WO~u?WO~u?WO~u?Wß"WW5_o~Ol]7|= ǶoEu_ʿ&7wٺ5_oN5B~%^wgXUWWM~%~']{rYȍRժ|2!?K[uڿ UcK~={?ΰ;jC?~']ym 5B~;oU/uSnz2v^a]z`w z`?: |~j!gc=:竅e~;o˳Uf?a-2/6׹R*3_kZ*/5@*{a|zKoǚW_߭au۰¯^ROW0~*_6`w;wG!~<ֲ zKoQ Kͻ12^B/= :nz_ zKϯ_ί^:~ɯw7:¿uyO!~_SZVW _Rk*ݩn8\??a>d O+s]a_i_~J~CZs~BZ=} Rɯ;w}oօeiC ~ۺ|^쁟&o>懪&~>?cί zᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~S׽6\um3J~'}P?T>~ WuR JRB?JRo8q;|Fտ W}~SH%?ßBjU??z~SH-'~SH%w-C 2l."e(_?ME䷌%' ~Qw62?/&"[Feί[rʺIS / ~%+̫Z?5k>ϼ|l7']򻬞>('gX߷WMv ~;3gVMnO7;B1O~u@> 95~7#w w/&ca{~dª yV ~;rsXn۞V ~%+}.X?&8~c狫|w ͝?&os?[3U ~ ?Uט'* ~E3:W_M~')7hw'* ~EogN̚gޙO~gSnaYZO~(734G~')7աɲ vQn')7~Φ]ϻy_K/3E~')7ܕ;O=YVV.ʎ>̻rx]m1_7=w<ΏF&FfM5wWϯZ_SN?_?խ?9 /J17n'_?=1W9'9O~u¯^'~['~['~['~['~['u?n{q:? m]/6|!?_WLo3lv53x[3ȍusm?.u=4ao2V53cw_w䮻>sWW_Y{B3q\!?G~s]}sm߮ylUec z vs 4ힷ}.X:LmfXXl_Κ_~jk͇UO~ כ~z3g9,_;_dM_wX~3[*W'\7˯3`~EW5;ZVW:?saٝ3 s?O~5þwf߻zͼA>aY_wXSN?l>j>|_VVU<oN CZ)Wqpp[*J%38^ÿOhi_~]]UJ~OUJ~??*ӊsVVU:7soj?mc|N]ol{?cβl\fT5}lܵzkw1ww6[l?} ߭}D%5?M/On_柟&ѩl~j}jS?m̺ϱ~EnK~O9nq9ί1 }'u#g~SH% g ~SH%'J~OO!.4~)TO!ßB*U??T>~ W}~SH%'J~~SH%w-C 2l."e(_?ME䷌%' ~Qw62?/&"[Fe_?/̛͛7wgO3n~[OL_TN]?uy]dll?1˯{ u>c>TĔsO\ km]ǛO06*ݿS?7gRԿG;U?U/5QIS|fO&*xg_w{rçĔ4U_ϣ͝ګ~ a_~?,2]5S'A[z0?ώ?f~ nU/cy;'<3q/cos﬚8~v1>n>i~:?w~_e/~{&9~0?.!l?kVԓu~ O,kS>(?WO~u?wEO~u?W~ǜ0vӅ?cί ?cί ?cί ?co{ W?UW?_?խ?_?խ?_?խ?_?խ?_?խ?__{w~z~?)_pߢ-TO!P7cIL zrf ?)y?R??T޿ W}RB?J~OO!/ßB*=q+ WRoj?]D~˨P ~;oJO~gw-C 2l."e(_?ME䷌%' ~Q[c>n羇[O>|-擄c;gX5+ͫ  ~!3X[OzZwY][5u yV ~;o2ǚS ~;g!'c\:zc!k_'cozsE~O/گ?wVez3cc۞ql'TMs ~;S]~B1O~7POz32U ~ ?_mkͯ7,O+o2 2o~yw>x~;r?>ͯ* ~EooN̚g~>-ΦCS vQn|y7}ow6(lʍww6>{h=YVV.ʍߝӼyW}??']r=O ei?ɟ:cuuyyyy~~_[ω擄?c1u3@q1W~ɯ ?co W_VZs~ɯnU_U_m[[Orߖ?/?~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯn?E~ON9|:?om?.u?|,92j[Z ʪ lv3Ҽjl/=կzr &ro*~;' ?ǔz~yۿ:LwM5WU[ n1\=5~TMLo_Kǔz~WUr*!Rurߖui\5vݵ o?-uUKǔ?/ zOֲ z{a|z_i~e~aw6R_,į^u~;,{Ϙ~W:?s/O~w;w'!~aþםmUO~wλMw3)į^u~;,~ e~_1_?c71/ԂOVV7UJ~hd:BJ%'&\&TV*uX.<~7V{O+3h>Ijr?#i0vj ~cTV*U_M!c?羡jzcJ~Lt=@UJ~O Us7 O+CO?}lUJ~Gi}WZ75P0?h~|>=?m=n~jzljUMS?mkkw;l\]zw6[l?} {聟&o뙪{Wl?|ܻwWyw6[nʝCr}0Wl?Eӗݖfn>|<:?)_zMßB*uj?ZJ?T^ßB*]Q?J~O!ŭLٵV?)_wSBR̯[YbR̯ ?)_~SH%?T(2?/&"[Fe?]D~˨P ~;oJO~gw-C 2l."e(___WQn77777o7x'+'~غ4e^d^UKϯ ?Wl^㽶'~>7Q5S'y~WW}JUl?1Z /kyy5ZVSn:2r枏)`)7~ ~7|td;/0^~L9쇗Ĕ4U? =QQxZ/4̿^5S/5*X0ejO~3#OTM2?ώ?fI7?X5S'y;k/cosﭚ8~v1?^5S8Gq/ce_w2?SMz`~ 9.;Vv{]gO~3˫Άl{_O~3w9`*O6Z7Aύ?ƟX~Wc+ͫkg?S5`o?co?Wך'9a\[k/??S1=atR5~7{?9 /o?9q ?cί!9*~['~['~['~['~['~[Op:\5/ԂRɯ{ Rɯ ?)?)7/P3?)OBRɯ{)n<[ßB*=ܷ(.JRoKGRB!J~?T?e?T(2?/&"[Fe?]D~˨P ~;oJO~gw-C 2l."e(_' 'y/3}L.]i2'Ayk_b>ҼԼȼM?&o?U3jE$*1O~wE=COcɬe'έ s ~;zrϣGWMvC|L1?/&m*1O~CX?&o0<xl5XMz`'8]Pm?7ãI~۽ L1|*?Wnכ_YOU䷋r߿n>K}!ٔ~`>7,O+o_gyӶ-Φ nO~gSng?fͼy_[/y=jX?O~=2ͿQ5Sߖwf;9nzu-3|B~K?:L]~C /urWZ5{,R)7ܳ;~%BߪǔsozYOurߖ__gߪ&TKRW:Ls°`EI_wX͇_m|0!~a_e~u>aY_wXw5a"nBW'yTO~ݬ}I?¯^u~;,˭zֲ zy.mٿ; _' __n޻n_Z7s*W'l`>n² zy盟~xG!~[vEj*+J~?U3?h-O+߾XZli_W?boUs1W7iu3gR RoӅ R諸C׊ Ro_NhJ]/?T_]$?T{MZ7(z?ZM+XZZW}~߭O+Jݽ3?&o둪ɭ̏O~grd\r'/ߘs왪z:=?M/O%d끟&o/O?rϯϝ;|[j~;-)ɬ[olBcaW9J~O'׌m>׿^ßB* sP?T ;~SH%'J~K?O!04~ W}Rɯz?)_~SH%O!}NiRoj?]D~˨P ~;oJO~gw-C 2l."e(_?ME䷌%' ~Q[C'ɍF&FfM5}J-`)7X~Wcgp N? r5YVC~O&TժU[Uǐ0~*~?jO~?s'yKͯ}CT?UKͯ!X={#4~oTjοKsTWonf!&If  v{jOݟY$@3Ĺn+ .iO9{GnѵQ[{"oU̵2ON_g5~f`~[gg^55*?ǯ?dض1ߴ<~u! _JJǶ]g.'g*!3.W8_5V:~ &_섓ߞ?o}B!WMr~տ~_ ?C ?C1^r~). ~_~8rU?3~M¯^'~['~['~['~['~['H2J~E?%ߴt?%O(-/!* {K ~KH%~KH%~KH%ᇿ?ᇿT;G 4?ӈ'KO#ۏ/J.M?o?(~44"??ӈ'KO#ۏ/J׵5 Ni{" u?b~ԼpxN!?3PeX?'מּ! N!|8o9O~g=?mgw N!|~o>[?Or~U?WO~u?WO~u?WO~u?WO~u?WO~u?W_"\ܱ a;/մ?Y Ŧ̟7!V?|O*' iswrK_O'KIg+#G7k??7!X7fXw=]y?mU?eo Ormm_75kB}s_9W*Ouj[s8srBw?gBW'ּѼ|zBW'bfa)y¯^u~Xm[UhBW'ͿW:?er/O~\u~[_ɯU7׺nVW:?],_juZ_wٶ?W?hyJ!~{kAv.lsV|g)O*=+V{=kI__cO>0?/5=*J%=>6[R7hWO*/9~ԗ'J~}OmyAχkM xRo:(OkT*U_?>gqO*'}q>?STjM??TßsTT*U_?>~*} RoiE ~S014?]?ջ2^'Ky{e4?]?zyٹYdui~4*?ijy4?]??w=Aae)-Ϳh y?o??{?Lcy6?M{ Os'KqXoρ.MßgYwiTq]ٳ>w~!lW_sRɯSO?J~'b~/ީT/!'PᇿTg=8ރ?%_/!O/!>1J~KH%']( W}~R̯J~K/J?o?(~44"??ӈ'KO#ۏ/J.M?o?(~44"?_ϊͯ0W_59 9?c|w۶6c+xwj'ω𧙽3 _?ۂw`ɩ6~_󮟁z~,PχϽޟk.U?U|1 _Sm̿3//WzT?WOG ON3x~u+nq߱mn~n.M}Z{??!k T8߸Tyy1_aW簽дsmg}4{6s}}<ރgnq㼻_ڙX=*S__ʅ$I~?k~o?B'5߸n˅?? ?S>惮a B{I ~=3)?=s(R!7O~;b|o뇹~?䷽Xr~կ?U?~~߽ory1{}A?CίxtD?3~]?ᇟO'_???4'Pᇟ>J!W}~!'3vaK ~KH%]wϦbᇿ/礒_/!O/!7_4?'T/! wTT?J~'J~T?ᇿk3.(T/!gM:R/!5"?J~y'g?%;nyZ_B*U_B*QwZJᇿT?ᇿT?ᇿT{q^;kx*RɯF|;/!3(O/!O/!wssOVX1NŸw ۉ=|I-B9O~gq}+msN߃ΚXGNB9O~>P>۪_'C 3.!'C8ޕ*9O~g1Yrk_JעUs]?b'̿?fw ?e?'4c@rtD*7ռõoq:9礒>@rTtyyyZß:N* vc[]Z?'uTO~r{Kß:N*U_T{c?'O~?n4o67_gsRɯ['N*>%PU?2_a\+?6/s:9礒_t*9礖߽WO6_.[;N9W}P߯UduZ?'uTBW{~˜N9O͊ͯ0:~?,]r~V?yZ~GY~"?%~_;gM\,tU_qy~_w?/?Z?|Z??Cί?CPtP~?x~x?U?/?1?U?/?rm?w~\i}f-B~;M~},urٴS?O~o a;/TX*~;B}=~T$+=Mw Orߧ\;_ _Ͽ ?m]g?&}>q~YOgޛ?#ğ'Cg]M7&9ƯWo?a3'G>o5mftI%GkUzkEJ~gN?珽~C97/ǜ_?Mw.J~UgN?|fsנ~J~Usq䟵g`8礒O&Am ~Q_?(;ネo}_#7fo/g9W?k3qN*= a;/TXT{ukϛ_4,T/!O/!O/!{6f>~KH%i|.(O/!O/!O/!O/! W W ް̏~KH%q[?%{yP_B*U_BsRG_B*kg~KH%iT<RɯzRo\{?! 7J~ᇿTUotϋ7W?_ǯ_i74O¯^ 4VW?ۛλן? ֦6yO~E~/Z7675:<~u'sWi77ys<~u'{c:~_gͥPW.':U?l[4iSm;j\x' ??[Yݿ4r?c=Aj쟹~|ycۮ?9?~?)lϾoڟT?/C揳MwN.M}2l\o\ʩ6y~??λv&VϯSb|_7ȟ?۷믾X~ט?7]sg̟οo__~ϟ?խ?_?խ?_?խ?_?խ?_?խ?_?խ?o{s!o>3AmP{B!7]wT8~QSi~!W~?Coܖ!9~ߴ*/?Or~ڡbT?CoiE ~G%O~&F_?]~QwiiD~QE ~ߥ ~G%O~&F_;i>u|~KH%ߎ\~KH%'62?c T/! W _I%?_B*U_?RɯJ~OZ/!O/!/_B*-?+|c''KVR~߯TZ /m7%IR~jC* ~V냯N^R~*ysiI?otݘXR~ۊy2N#_:{042q:WjL;̛]zI?'{Rƴڼ޼̼ҼΟJ~W*&5{Ÿ:N*>]o|c~`X?'uT _?ξ7 N9wTT_T{kϛWטv:9礒_C}o4_78sRo\?SqP[{sRI%qp _?wW?'uT{ ]i^yX?'uT}T _s N9W wt׃UsRI%*_5n~M?'ïO~_.?~]~ ?~u/_'ïO~_..^̢3s>\;9~lfmY?MgR!7/i|J?/?/?~_r~'9>?~?Cί9*kk,I?iW7¯O~_Ռ ?Ͻќ??4~~{U3*wh?ioh:oJ¯O~_Ӵ^t_#įO~u/c랥P*;7o1o?#į^T 2J:3/7W?U6_k޼>y¯^[gU߶mow;s.tU58 מ7g?5_#į^7Gyyks_׿U?Qg?m.¯^7=Q  z_v~=*oٶ3h[*k~K/JϖQ-J_j__GzW7}~D~QE6Q]'?o?(ƿ.cIE~QE6~_;O?[Չoi?[+T_j6 O*ۏ/J/ۋGN>j!IE~QE6O*;n>a>w~0^-'_98%'%tCF?:3־ο~E5ϜmM{w98ݎ3vsRɯ#?{sg?s~_%'G~[qݪOu-Ϳ(4"??ӈ'KO#ۏ/J.M?o?(~44"??ӈ/=o{^ G?%_bR{U?%]/_BsR˯?:T/! a WJ~/!9_{uޏ ~KH%*_5n~MW6¯^ 4kkkן?zN¯^ 4kW?VM¯^ 4W5cvWǯ^ 4VW?W~֟?G\%C:<~u'OMڦ5y˯:7s|ǟ?0YN:~\??5xr?߃{I384]n1YN?VXq~ļ|yEZ=*bsU:kU~_Ӽڼμ\ڙ_]Vϯ ᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~KQ'j~ɯn|ҵƟ?9d? ?Co_9~_ ?Cί!9'9?4NCr~}mPU?_~QwiiD~QE ~ߥ ~G%O~&F_?]~QwiiD~QE ~îwө?J~6 ~KH9?%__#I|J_B*!{}F_B*>G+ ?pRɯzRo]|ᇿT{籤O ~KH%_B*U_T[VڙxGN!I?oۂwo MR~;6ûkI?oJ^O*O~[ tVTZ U:ޞXR~뒿_+??m&cI?o4O*O~[] Ն7O*_:>D*}|yk_tsRI%%qIއRZ&ZN9wT|R*iy&׽VI?'y@hvƵ#2ß:N*U*~eu. I%iT\P_oLיopΟj~TՍ{}nksRo+=S0vX?'uTuAJ 6caټuUsRI%sx.0*W_xkgkN97E y7vgZ?'uT78kqH?'uTUot? ~ ?~u/_'ïO~_.?~]~ ?~u/73r|?W'=#Ϙ/~ɯn!ٌYOr~uiOr~r~r~'9~_ ?W3?ԴtI_}Nÿi*wۚη&VW'մm3.!~~; Φ*wϻ6!~~; M] ?Y_?,įO~ῶm~~; MMBwMMMBO?י߇1?j>j>{j_]k~5HƟ &NmB{~}=B*;7oqmnk~=_yygWW ןY8.UO~묿 yo2o7_yX_Cȯ_8&V~[v巷5y¯^!7OCm[\a~Q*{~UUm]}zx}Ӽ޵ ׿U?ׯ zQ mw+_-zȍU'Go3o *?o?(ƿ-?7?Ͳ "Tgo1!IE~QE63VT_jߐ8fw"Tr%l7uy>{Q"T(~QS3N#ۏ/J3֙_=c`~~?o1W?WI׽~[öjN?>O3?sPO`9t?kN?>n7??I%B$??w{kusRɯJ ~'߿夘ߚ痜YsO] ~M[ ~7,'Ϝu-Ϳ(4"??ӈ'KO#ۏ/J.M?o?(~44"??ӈ/G533S?b~ a׾~KH%=RɯzRo_T?%ߴI΁T?%ߣR/!^RoN ~KH%_B*ۺ?ЃC3_1j~ yt1 9Ɵ˯}=a|5oSm/_7O?[m[wo ON_ kk~?<_Ϳ5X;zoM/^5 ̿WͿqs=Uχ?-=ro_bUk~$59m>#T-;3iSm>j?z* +WW3/s=Ϝ\?^~Դ?˩6~zFkUmz~ξhڟT85~s~]a^N?*3<^4k\;K^W;Xtp_?mKK??=6\}umR?9?tᇟy??ګO'~ۮ!*~ɯ;'~_r~M6q?=8Z?gU?Or~c=r~XCr~r~ 9~_Ͽ;'J?m{ẘTsyhᇿTO??J~cT="?ϟZ~sBRq wRRo}~KH%T~~KH% J~$<~;~KH%BJ~O/6q/R~r~O ||!l6\ᇟ<:/V'~{g?Cίz!wTT?9wq]|^?ƵC9>Zr~GOr~C ?CoVY~ܬ?۴|Ggsw|Ŭm}yMZ?O~_%VΟSmm毘tUT$?Xiϝ -~;?/7??M]U~ΟSm˯vq]˫?w~x}v!T[;_os_9vT.q?7'+nU?i}6qgZ_Cohm2o6W_{_x:R.ۓ*k~T 2J:Ϙ4W8_n_}ϯ['z~io7t&Us 305Դ*!~5¿|kg[*k~k7כs¯^W :nN^׿U_Wf^/W_{}gX҂>w$= Roܖ??B=kIDž|tbeYR7G?o<ARd{ ?\: O*_[#RTw=7?} Ro5waO*S/ Ro?;TOsI1O?㨯C/T?sq[?ϺBv4%'Gy~sRw>+N?o98׎ #K礒Q tƟe__a?98랛p̵OTXTkN~KH%_B*Mq ?%_~K_?NjU_O~KH9J~K_?NU:RίRRo|^}wa wO{v ="?ϟb~T/!A ?%_/!PᇿhᇿT?%_~KH1~KH->:+W̯_7f~^_jZ*T.q\(]W7kW?o4iz7zT?_m럚6_ Zj_|?״$Vk~c|iOkk~K_ןԃ'g_~G*O;5} 3oe#b_wRvr|Sg?gm;Mjן53s?8k+ͫ~~}C?8WW ?SϯF\7<~̛͛u>~g~QckUϿ1~µz~Uzי7o0_VLЧ7]? ?9tZx~Uߩ_5_Q,/7?/7G5sme?_u{cO ~_;s~?: ?Co=Ns?Co]OjF?/?Or~cCJ 9?~~8I{aO~u?W??$\':b|q;GO~u~ɯnᇟ~ɯnᇟ~߽=xPK ~KH%ߕJ~L ?3p*R~KH%i|\ 7O>*O/!ve*-/!/_B*MQW?%_ ?%?U??%xsBRogO ~KH-D?%_8 t?%3q~Q_B*? ~KH%~KH%_B*MbᇿT/ᇿT;j~Q?e~Tc ͉}!'~k}kҵj?6 NYW\7]~tU ~; ϗw*9O~#c5/?W?'{_K%ß Niomg7*9O~guy~rW_JŸw".OVXݯ6]v,ğwVW]?_ Z8fY?'$o9O~0;ͻͻ\Z?'uT~U7NmN?'uT#Stn}ΟZ~UTWU+kW;sR˯jT{{{8.?'/*{c?'r:9礒_¿urͿ*9礒OO{VsRɯzT3 k͛9.?'0ͷv*VI?'sGyR*Z׮Cwk*9礒߸\w3_1j~ ~WoGrH??? ~_~o4r~r~㹏j!W~?Cίz!w?7?wA?u|Q?Or~}}_Rϩ6\~{ԵsL,sW >dpx$Amdn|yyz =?W];wo ?+į^P5GykW3(į^wo<.X9Kk~5iT Vͮ=oNga~5_Ϻwv[_vܻ¼|z_nϰƟ nUW_;j~QZW]~-zk`~!TwvʯYmK^׿Mw*Wv]kض\%į^7n> _ZχMwwO*/Z{fw~0I>ڌ~ R̯b>oO*ޛl1=KAMJR?Y *fI?U.m O*_'OZ R˯j>/UT*ߓP_WR7_RMO*?o~[3RɯW߳y.lP?2c~7,'m;au{u[k_c ~Ǒn z{2?胦^YN*U98{??J>?ȹF97sqɵ7^:'?_M/98ZF~ѫzpU~οO3'G_l6_9߳߇?'/! ۊs̓BRɯzRɯzRoE'J~'J~'J~c<3BRɯ!J~G/J~KH%wJ~G/JRorw_?Z~=XᇿPG?%_ ?%_/!p8Q?J~ᇿx?%D~௟?'? W W _1j~ yiSmi? [g^?e}nmc{T?_7}MSm PGJsx/ڃ'/%_W}~o3/Jο*}osr`ɩ6~ 4zѧ]MBa[;_{jyg?9Ɵsoϛ_4sq?5״?˩6\~/ؿ] 柅6?13746u}6P{;~]_i^~__,6NMvQKs ~??4ܴ'ss?$ծ=fc~Kg8әwZ=*ԯ?¿X84 Smwu/r~3?^iOb.مW˟μכ7ov lTFm~|A;s|FO~/J~?ᇟ~?+T'~o-'~ɯnᇟ~ɯn7ٰs~~g\SB!7^?M_w8'9'9~ߴ*~?~ɯnᇟ^Zg?Ww~!3q-bV?%߇ݥk*R˯j"?ϟb~@JRI<.T/!u{ϣBRt?%_/!97_|/!99/~WBRχBRo/"lG_B*=R?J~: 7/BRɯ?%ߋ;i~KH%?%_?\ Sq~RɯgT;*]R~a[+O?E~?Q[7?f^gO~>׾>yoB9O~pt| N!t3p:?7f6]v ~;//J~G3_7^?ޛV ~;M~㵻ǓYcәG? ~;M~6s{cUXWH?',*?u~VX8kŸw>G?%T;i{Ÿ:Nj=io0י78sRoJW՘vc-̷;sRo<9.?U4UμܼΟJ~R_Ts N9Wywkg8.?'_ :ԿͿ5Οb~ W׻K_sRPI|F*5wn|Ÿ:Nj=PUәZFfß:N*U_PVqሯUsRωZfL+̍asRɯ}]C3_1j~ ~K~$?,T'~{i!S?m}{P?Or~GO~_Cr~~?Coj~4{9MSfyWk1{}Q?Or~G B!wTT?9 9~_~ɯn~;>}T'9ؿ=h~ص}q5 4}uMs mkѦ{Ÿ'·̏{ OTX٘G?izhw7k?~sm UǙ'ןZ{L,Ÿ'.ϣ%= ~@?O~0*яu~Tϩ6q֟k;?-wSo'5~~&՞B;~O~W_Rϩ6\~kvwϺsO/w_W_{us˹=o0dnμɼE_}ͯg$-*wtwWZ_}ozTWכ705_#į^7/Srok~cT_T7wo5hm׿U_T}n{6Bk~ ;t-Z_}o~?UqVw`~5wLƟ Nnۓ*k~GOw*WW}|kgb~5~;3~gX҂>7=#*J1|_cG'Z~OHχ O*??f>n>i>b>^O*ީ:WR7n˿@/vUT*Uo3cM7O*Ox~ԑB?λ9} Ro<뺵#B>|T*J%꟟~1XRW߿U'J~㽛}`]{g9?sퟻѵAsRoO+N?2ך׸>=o?k> ~Q|fvJ|b~k> ~Q_xS ?ȟ7gu-?㨯#O}~sRo珕GMxj\ ~Ǒ֧ bkϣsRɯJ ~ѕInk{e)Wu}c}~쥵?'/!F:i wT|B_B*3>71O ~KH%w>H_B*3_'J~ᇿT~?%rm=P 7=N ~KH%~KH%wڃRRou3JᇿT{$X}L_B*3w3@U?%XI|F_B*M ?%8S9 W 7I/!C/!<3'/!3/J~KH%*?J~c~ ;im_5n~M7>ԃ'/߽~|ٶO6]`ɩ6q{ lS?'l[̧'O`ɩ6~Om\ftx/39}(=Qχm`>Z>$?*Ti}鎽{T?/hӮASmo}ͯ}=#wH/vUk~o}t|}Vu_?Uߗ1N?5״?˩6\~{bSnqטי646u6*nqWW6]c_:8~s[;7%_?_nOq'sK_~]asgݫ\;h?WK+Wgyyz~??qпZ~Nϥ;I?ϻ1WnVϯ/߉Fz~rݽ#*n!߿ka=PH??P? 9ګީt?Co'?Coz?Coz?=W:!7.w>!Tr~w>6?_?խ?9]~XU?O ~_sgO ~_xW<9'Tr~&?CίKV?ǵ}0l/9+҂R{b="T/!9F >нpX_B*?iT:Ro??ᇿT?%_/!9)W~KH9J_BU<RyߘS_B*}e؎JᇿTk{̿2; wTPᇿT?ᇿTz_ExT?%ߟީ~?%_?~'V_B*M:^ 7!.?J~'J~'J~s{vgϏWX#cGsN__̏{ k1!'7>1Ǜ6GTsw_?O45?a>^?[{<|[;NYͿ5#M_k ~;/eQD'vX'sj9>;y}U ~;M~ᣮ]NVX*9O~gciFUs5_'7~򡰝BW1}MW\N?'uTm؏Nm=)TVN?'uT{u{?U{Eҿ*9礒>?U1wS8w&ß:N*_{8~_tsRI%mL5UsRI%S?7ΟJ~G? nUI?'_SØ46rksRɯwtvsRɯ N׾ N9W/75WWq]8N*zɬ_1j~ ~Wϯo1~5P?gy"?%x~B>?U_U?/?/;r~tetSB!<9 ;/Tr~OXB!7y?Cίz!x+Tr~cۈS~R!W}~!W}~?Ur~'90ϊɦB~;M~ϟY9MsB~; y}i}V:N_.(CXgl[6O*'}>gx~?돹1O ΟSmv9Ư~|֜㵣3B}=Tϩ6>{>%_??dӽV߾ә7=ΟSm ۉ?GϿ_?46c#y¯^to4f˼|ks¯^yOoVW_{|^*̛]{|yz_u76-z?g='Tͻ\f|kװT_F~5gf?U5or̻|&!~5 y Bk~U69cF׮G׿=z<׬ƶ zQSi~Q¼¼mwJ_}Co1vm/=1.L?Ty΃N g>t!(?Tk{h? >۴=|AR7"?~Q_I_ |jm灪O*Ƶǜ|}VG=[RW_s觛n=ZR1ÿg BJ%χ?yl灪O*b|B/qN?T>ϛRT*uL?+U'J~}9=W?>4bl夒ߓ{Bou}5ծ*U?sq3Ƶ9q 9I%qfPasq䟙ퟟusRɯJ ~Q_bXasq4y?Wg9W??kϽs@D ~ ?I%הx~oi8׎ We?'G~} {exJ~cOnu=`v0l+C#T/!z~RRɯ?%tB؎!J~/!/_B*UT?ᇿT[fUotϋ9Sm~}i_5qo2_m3/`ɩ6qΟK\'7=5?/gts=rQ׏7tӽVk~{lߏ!/f?93[#?/f}|ON3ۿOOο*}o/eo?5xr?{r{ uk̫kW9W5q?WWט4/?SϯW3ПSnqwv{[N?i=7?C_A˧_?e׭?/JT/~-oԯ?¿XGM;״?˩6~֟2:pݹz~_p?y7 3Oborܻ|CZ=3p >~_ ~QB!k&_~_ ?Co:J?>g)Or~/~4/~x.]?T~?Cί!9gR!)i=;9{Ե߁quj~#=߁quLm?ᇟW?v9θ*~QS~߸ϧ?Cί?CE?U?ΜteK ~KH-J ~K_?NjU=RίR"?ϟJ~DR BRɯ?%_e~/礘_C/!ٵ;7BRɯ?O wTPᇿT?ᇿT> )>S_B*3~g/6~+T/!ީ< 7_bT_T?ᇿT~?%_ ?%_xHrg柛_ ~Y?'4:jӤV_մYUs{9y3'>7ߙٴ_ ?&w{kti>?_chl^o|I?'뾻PUӎpjntsRI%GTWUḻܼ:UsRI%?NU4{w N9pr x2Чg]ϟ7or9 N97O~Q N97ϣS?7ΟJ~ Y]UsRI%w T[\{-8*9礒;Oڻ }k*9礒QS3*p ^FsRoO2fUot?z~㹏Fo~PU_?!ok߇seO?3h~iŸ'7>?Vkfs/6 nN_;w@?g6{*ğ'>kf+Ӵ_*'}6_j'J_M{܍9w!srN'Amk?W_۴o|:NϿ1:?T}hgzg7V?Y]y~}JI1S!?o52m*k~yO|vBWƼѼټ|!~=Syk-Y_}ͯ mUBB~VO[̷oW?U5o2o1_m|z_ŸU 5*~ֽʵk\{VW__~5 |kqVW_~]?y$U?kWڟߝk׿uֿ+!INŭ?/s{k]=BJ%ީnJ 0_BJ%EÿWR)W~Rɯ_;<΁%@* Ro?c'Ϧݏ|v}'?T;WR7??8 RɯxRί|}nu_8O*K{}#/_?ɻrRo'#u}JJ~GϟVXHr\у!# uN*⺃K?'G#ξ夒t~Q~ǑާX: 礒_ο*3'G}?(λ~~i)J~w|~`i8^\:'Sgrq]c]BsRɯgrqμ{/T{uЏk?'/!OPᇿT{px<%T/!J?_B*U_B*U_TO*Rɯ?%_ CPᇿT{8^;J~y:yT?%_ϿޛxKV]gqd)璖eVwjתZTm@ $@@f*Sd Ỵ,!Y-$$[6em4Kdyynْ5QKxN}k} {/nrވ%sxfI=X_B*M|hᇿTۿB}O ~KH% %PᇿT?ᇿT?O S?e~T;~KH%JᇿTrޜT?ᇿ/!J|Jm~u:F6ŸNtfs>ou`yej~K|ż_>Q] l?9?Wb|Q'? {=Rߟ?_j~ӹR+];_ |~(UoU[ͯ;E̬gxYOw^y}[JcV~ο*5Ѽ|yP_SFr>>fs\Ŷ)̻w3ooѼsh35iߖ2:3L~~௟ !k򡡭|D/ΟZ~ ƴyywN9t1i>|h/ΟJ~:Q`Lۛw1?g˫;sRq:1g>!N9)WG/c|yA?'u?U_lUI?'/*̿u礒_ŸDŽUsRω3o[*9礒3a|Bs:|XI?'μZ*>Ͼ;w :9礒/^͏1?a~:lskzEB!w_OhU?Yc?Or~JU?.uNi~!{v|zAm>?}}>m?9qkfzAmZ~ꟗ ~_ ?Cίz!W?]n?9}}Kq~!W}~!asۺn0hQ3?%^3b ׼_˵.*~;={f{L:NO}he7-wغu̷Rϩ6~7ͻ̿_/7ꎙ{/ujokEF/U_j?9럻?'w yAu˨;w9N*/u~;CKzvU?u[>^,I_i{f߃;\(TcǛO4[VW?*{7lӼyzoW?|8e~߳ _kwqBo5ٿBm'kW?*kKϿ5׿RTs z[ͯzTOlwW?*̿u_I}sᄀ;{fb~:`]j>¯^[gUGͿu3*!~_;|m`K o{tiE~[m3}Kn!iscT|n~n;zpHZw+9˯g=})?T?7(*?T=;>.}~Dχ3y{*?TzyaٯK_J;J~+҂>7{!!i?b?~?VN3ͣ ?Tg'?T?cZWUJ~aou*IFgG~dqYN*}}-^ M?'D~.lǐ{._gN?V22nn ^4?c:,tLN8%5XasI?sI_YX:'٥O"yy J~X7WX{_j *sIx_rRɯ=}:.+N?Z?sI*0ָ$ju]+g}^_asRɯU~BRɯӅ'J~SU'J~'J~'J~'J~ ?O/!Y~KH%k8 7/~KH%gw`*~KH%gzRᇿT{ 5?%x?%ߥ ?%_ ?%U_B*]RR˯?%_/!RɯݯWW+aGOϋ߷5g'_l?S?'f=rj~ &)OwnWK?,]}.j7^$Tß]߆ُm`ɩ6E}h/?_/vUo5?1ߴ}''ɯ߿xVo5 O3gvqY.uPٷFs7T?៉4y}ѯ?SjW_/'nǣg*!`ɼy;/C̮9C ?k5[V'~]~_u~?|~e~ ~c43~ } ?KͿ-\~ys\Pn!\~_Ɵļ޼Q?~_?$Tr~e+?Co~ߓu$Tr~w;.o?9 9K]S:?Cί˃V!W3?~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇿD~ϊ?'߇^)҂R{ gI V/!. wyPᇿt?%__BU_T?Q_B*}uC/!Ro꟯ J~_y~KH%%E䷍/JO~'E䷍/JO~'E䷍/JO~'E䷍/JO~'E䷍/JO~'E䷍/J_:w͗/6g*9O~gɯ??3$t w7?Usa{^}m滅sΒׅkiQ㴬Ÿw:VXIߚsLX{-jCn}wwe'7U?[̷Ɵ?]Mֿ?G?', ?o7o?S ~;֏ͽe'CyX?'}oe'|~WUj>|`/O+,'{ v3myᅳ ΢~̿'Smώ~u y~|D\>Z_w>流~V_ɯng%_.߯j><*į^u~X;0ogѼzo=^~T_"gǟ>0i?g~Qw O+ӫ|={yZW?~#n9R˯t|}{.!i;_#Z?T?F:?TjMPZwtg^zjV*/ܡR=fi_ |usg7};J~w֤޹NχWG]v)?TB;*J%%?3Q9)4?] N׿J ~ZQpzvW_Beޟ~\.Oߗ3g2́.Oߗ7=v~̿E6~_y ~_{s_ch Sg^eYa~<_kzo~ ׸>t# l?9Ɵڟ4'OΟjg ,iۍK`?_ b yP_j~'O׋|@ܾ?Sm/kp44~LTko5 ̿Cί?¯^ [׳_j٨ ?w7iɼy7!~ wev^U/C?|(!e~ >]gɨǯ?d~?nüW莛}'J~'J~_^/T/!?xPᇿT> WJ~J?_B*U_B*M~KH%%E䷍/JO~'E䷍/JO~'E䷍/JO~'E䷍/JO~'E䷍/JO~'E䷍/J_:c6^73'?>7rAC揘?n@GsΒߋ[*z^?j`sΒ_lb;'͟6Ÿw{Ts|Oϫa;GW*9O~s~ǨsK*֏ܳ6Usow=i_!'5w=?첮?4ꎛiY?',Z4tֿϿ*9O~Wb{^xPmͿ*9O~¯658|\^ӣi?Ei>{#658|rei?EҼ^Ϳ޼6O~3a<O+,{ ֘0yx_{vsowy0}Uwƿ; Tϻe?]j_}vߡί뼸s!k?]j~Q:?Cί zᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~KC jw?b*~;K~SqgHj1ã.m?Y{U_am?ߕw?addh\Vd?6;όHQ/nsBҹWU_wh Rϩ6ICs?d?mswۯk*Uϩ6~׳GXQ?i} /ujWN2K?b2c>.t<|zby=|xBW'?>㴬¯^u~X{1`ռzb o_7 į^u~;ֵϛW _s޲ zb ݹBwy?!~b>|޲ z/Ο:י7/-9c95Y!iss_o*>|Q_i_%B>ϟ O+6t]{ T|S^?5Ub~w=~R̯b>u}9hoYZwJ ̿5O+.?oZ0o~:Q~|}z9*J%4M|}@?%?TqRɯz~Ϗ1!iܨH,<Y?]5}{إ?}=~߄]Bw/O!~"o3ݿHk/Tm>BweYa~<_iݯw/O!aSK ~J{{/Tm뿿q_Y45wyv_ށ_YCCC|D=~w0?%_YHT?%_ ?%߳U'J~w*zJᇿT> 7ϳD'J~o]V?J~ 7?wxPᇿT[QYD~ۨwyYD~ۨwyYD~ۨwyYD~ۨwyYD~ۨwyYD~ۨ~͏1?a~:?/?9cUsϩ6I>{/*]X|?6fe~r?scs%Rχ90? l?9Y(n3*W}~>i};lONO@[#U/vUo5t1j~¿W.u^ |=h<_ϿSm̿_7o5nK? JqrQm^z-wTX?1k߼yo>Zc'~?ǿy7;w ~wMkp[m?? 'niY=׆ /JT/ߏ ѻnVua?gn~zGn]ǘ5rP'̿%{Mk~ ~_[>_{X\>*RBw}磟X?CίXBGk~uk$Tr~SYf 9ivQ?/?.5(?!wE?U_U?cώKc} ֿT{. ~KH%Kϋ?%?_~KH%;16C(O/!.5(O/! ?%_ ?%W~KH%9a>8w_B*/T> 7o1fS_B*&t7S| n?J~sf;?%_ǫc![?%OJ?_B*yM{JᇿT~~KH%Kۄ?%? W ?(^RobRw[WO?eg*9O~gɯ??=1>fK6&.?1=)*9O~G͟u͏ Nߕ^n"t#j$o9O~uޏ~Ÿw鏭y~ب~dH NߕХϔ]{?[V ~;K~1bg^o??^oY?'Jk>f^G ?yJ% `}zJUO0̧ esRɯ?>3yXU5͇ט7tsRωu1k>>tiZVI?'zw>|,Ti'y{.A?'uT3}kR4ƳA?'uT{~W7 _?7ΟJ~/ &_sRɯ ϼUF9 1a|0^VI?'O̻g*9礒_E[P#N9wtP?L>Vɟ:N*ǞGJm~Ư߳ ?Cٱ"{fz~. A{N|̹a<\,Tr~?]?CRB!W?խ?_>9O nw\!Tr~o=S+?Cow?I랾O?9{(Or~7?w/_r~~~?4'9U_]R!t{au}9#OJP<5?>鸬Ÿ~'Ua?Y}.)*~RMcO˞?*~;K~_CP͟u?Sm?ߕ8~u|]s*/u ?]WXc9U9 ?e[s 4/ok5_7 Rϩ6~|QwBUϩ6~o7]VouΟSmk_ұ? ~;i~/lE?W|Z\5!~/=s` _7-į^VXKs[$)pZVWʤ(hͼyygBo5 ?oM8W_?T=Cδ¯^V?U3dݷ]j~tP?{7{>U_?}31o>X_W}~QsWG ݹ¯^V?UWw0j~n4Uj~gǥ{q_Zχߟ_\_0QZk{˪R%Wsxv=_V*}M_"TnWTJ~,q҂>קs}?T{N|4\,T7Ro:χ?qdS!iCχ]=Ï?T{V%_TZχd\UJ~կ?5_.?naI%߷ϛV*U_J׍~viߥJ~\iWZwCn2VBIBos3%9& Uk+N?1kCwдJ~o7鏿O"oў1N ͱC9$:1t/ =rR0ܵ]_O"u[3?(ͻ =m ?VX i?s0^I%-נ?Jޯ9$Jw;G@~_j9$]?w[I? U C_B*=~wF^s{JᇿTfOT白yPᇿTz^/!.?/!/_Bj}uJᇿ?ᇿTʠ= ? 3=}lPᇿT2<݇R 0TBRɯzRɯ?%g}Ȕ'J~'J~bRɯ so?J~ WJ~'J~U6?l~ yUS?3iL_YT|./Wǯ^ ,ߴu}|_u?SW?~_g3h¯^ ?n/{^ .>Ͻ~T|~_gumԝzr4^VW?~^O/W?tȕUO~gխ?tav:~{JzC}$̫;vA?W_۫?$75mǼ_R ?Mm nüWϯ{5?$'O5|BoY=*S[z|Ss~dͿ[ø55?m??[hsMI/e>6teg&?7վ?9-W3i׀}&Vϯ>t?WO~u?WO~u?WO~u?WO~u?WO~u?W_"^|i?Wr~jBE AV!W>B!7As~! ?]^&Tr~??Cί{Cr~K/J?o_o.O?o_o.O?o_o.O?o_o.O?o_o.O?o_ot~0_sS/!^kz[?%_\ݫRRɯzRɯzRo'J~JR[?%_~KH%w^׫mBRɯ/!^-?ᇿT[x|ϛ?g~,LZ?' mN/le/D~W_2ԨƟO+'y|l_VO~;}./]QwSOǟO+'ҵ## ~៟ןGh]?6g? O+'៧T돻|yRSӌe<%t/:9礒_:渎˅1f>|A?'uT{a|1=|\mZVI?'wsPU3̻y{.A?'uT{A\6A*W?'uT{qo}"T4k>|ß:N*U*'SLJ N974wMϾ{sRo:xQ|\R>>X?'uT^S/} N9W}~Q]UI?'nyPUW=̫;w :9礒_5?b~ta_'ïO~_.?~]~ ?~u/_'ïO~_?Ma뭡{ա>\I |TT?9X']rP?CR'9^!W!9~ɯnUoX_}Κ_̟u!~~R_bw?u}d¨ ?^l~A_}Κ_/ _¯_gIfh_1?5??~~4>VW~'h| ؟3L~ z~'!C_}2n?י_EK R*WBo5o|z[ͯzT?|4 e~_fTży_{ ׿¿ !~~_(?IЭkW_WO2̯^V!h?Tɼyy0Uj~rɽe~_*7m^ z[ͯzT?6tN ]Ӳ z[ͯm:;0 .׿__YomkǟO+F=ߋ~keYZ6(,ğO+F=cQ۴?o_je_;/g{*ӊQE6g:}^ "mQߟy=RV䷍/J3w !iE~ۨTUmRmnUmRm:eiM6ٯNE ա<,'^k^9$Ϙ T>~][asIy?tN{sR5?'D~߄Sb ~Sȯ:78?7|!'D}6?~'QR??,'ڿ%}?'Dz~''DsVT2??{@~K/J?o_o.O?o_o.O?o_o.O?o_o.O?o_o.O?o_ot~/]l^^Y0 w}Md*RɯKB:yPᇿT?(*Ro_. n?J~{Ơ9 wpRɯzRonQ_B*]*?RɯzRo~?ᇿTaGOϋ1Q3~_gNd.Wǯ^ ,|mQD~_gӲ z/̿'3֟? F L\_W?~ߌ/GX_~__gO.t/F̿wXWN*m;c?ǟ?O¿yNU{f5+ោZA}U i+L=7~S{ѽ*nIW6__,w[e?Cwsw1Pm~'?|RfcA?*S_Bok쟓_?o WO˿w]Wᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~K"u7/ ?C%̗/?9)o?9~_ ?Cί}}|渎B!{%5P<?Cof!m?Co}~Q:?CRQ?/?_6(?]6(?]6(?]6(?]6(?]6(b|нS/!h)tw@_B*f#=?%'J~bRɯ/7JᇿTuW_T{S^ W!J~/!.uP3_B*&Ow_B*-ͿR+ g* 6o'zg* 6oz6a )ߕʫ??SVO~;y^ៗY}# ~۩}"_K~3%E~W>>y4~QZ?'u_.? ~۩c1i/J~/]l^gd4G*')' N9>>f2V5CG3d><ΟJ~(?U1hN9?7u(OiUͻsRɯ?gKc_Ԡß:N*$6cBWнŸ:N*U_TI%K?B*̿5ΟJ~կߩ_sRɯN]6rPUo N9WߣxY?'uTTT_Ts N9W Q#'O?~]~ ?~u/_'ïO~_.?~]~ ?~usύ_~_7pKUk?Cίz!a|@ ?Cίz!7/+c?9?IWTF?Or~'93 ?Cί Wm]O3_W~'{V¨0(M^.~yUշ,O~}4>v~J_}κMf ո>)įO~g=~fMyhVW~'/kH*wh| X_}Κtȹ1 ?e~3̗H|=r=Ǘ_!į^V!xٕBW?4t:|pBo5;/6 S$)'Uj~ׇ8 _'5ͻW/c_f~~LBWͿ*o5>\_{eBW?5'Uj~c?Us z[obT_Bo5K?T*0c>0a~_w*ǚ7ViY_W}~Qϼ;wW-Ϳ(|m["mQߟϳ9Ҳ "mQ?4G]_lO+Fd2S!iE~ۨTA "mQ?ͻ8b%F̿䷬_YZ6(߿,PV䷍/J?簾[VV䷍/J~3iE~ۨTe[S~76c~kNgGv =vg9wK߷j+N?k݃=vu ~'ox_197}zKU?U7?e wyU ~'Q} iݭ?k>Ot|XxtN*U9$ڿ}xI%3C9${T3{ jN?wϾ{4a|t O5tN*]35Ϝg޽B=66Kcҫ}3'DjokrRoiE ~gmm ~gmm ~gmm ~gmm ~gmm ~gmmί?"%"S?J~z\_B*U_B*9N ?%_ ?%_c} ~KH%?_B*T ?%_ű-BRxNBRɯw/!O/!m~2FTO~ៅ.=/ן? l]b68_z/?kzμ<~u'A_~__uO~gխ?뿺'3֟? Ͼ?1l;iVW?W`|vZ? ;3?S77?TasOЭ !qY=;o2_TX?g>|y~~SXߌIU~_q8ڗT4~_l]k~ͧn=tPb~gt6WO߿W3}o~'{UW9_?խ?_?խ?_?խ?_?խ?_?խ?_nټ|P?߭b|Pziϫ?Cίz!WT*Tr~'99C; ?Cί ;R<?Cί?CZ!4?QE 6?QE 6?QE 6?QE 6?QE 6?QE 6Kݍͷ {U?%_]0?$T/!^z6U?%;Ϸ ~KH%K/J~KH%PᇿT~~KH%^s?phRMw;W_B*+gc|PᇿT볋[9R?J~S=C??%+%a|* 6o'>K.R"gmNN7_us!iS}jD~/'o~y"gmN̿Sw//O{3* 6o )!iSW̿J~o.5o1_a|MЩ It4 aŸ:N*]g[euP tH~͇sRFݦC tD1~X?'uTsC܎Os6{:9礒~LW*?}SI?'n? o 1q N9wswH*T4^8ΟJ~_uP nUI?'wGߩ_sRɯ;~d><ΟJ~կߩywW?'uTT*Ti;wkI?'6?j~?'ïO~_.?~]~ ?~u/_'ïO~_.4?Zo?9ƿ|VB!wS;b!?o2b]?n ~ߥ ?Cί?CίCr~'9U?Or~Uaq_W~'sx=_5?W_}Κ߯ {~ϧ¯O~gO)įO~u,n?~ e??e~'?ݸe~~; 5}S#z~a~~O~uz݆h2>\Uoe~!( CGW]_L[Ϳe_WM߁jPU>8폏W?U+ ~חz[x~R*n¯^V~Pdq'Uj~9[;z[ͯ Ϻ>.'!~%jS?'į^WC7[VW?*ۛw1i^eѼz[oiE g_dq "mQYsgeiE~ۨT`v_bvp(6(!t3xufxiE~ۨT?w}?Q7!iE~ۨTveiE~ۨT?/_Y4,y/-$Wu}g*ӊQE6~sWo\䷔_Ytޟ?+?o_jg37 ~5A?'~kНC^O^o|6*N?'#rN*M}u ~'ApN*ckh9OSb~Paÿ-AĊ:-w ?Mm}M ̿l?? ͧ-; gTX?̿Ob|ӱZ{h=%$w0_g ?~['~['~['~['~['~[/_ۍo/7_~-q2_[?zdԼ|e| j~͡yPO~4\~mК_U?.5(Or~'9E?U_-Ϳ(,"mQ ~<,"mQ ~<,"mQ ~<,"mQ ~<,"mQ ~<,"mQ }~wc~Щ?J~on3tѸ7tJᇿT4> ;{懄?%c4/!/_B*U??%_>%?ᇿTTT:?%{}P?J~ ?/!_)}mw}M!i䷓3<VO~;mڈ_Nwe=3qğO+'_2_Rw? ߉)VO~;2"+[ WOşO+'OTmN̿S*2VUA*'ө5<|ß:N*lku&>F*a1tsRI%;7/5_nV*i0,ΟJ~o .ƴy?Nk2sRI% ӯ3Ӳ N9W}~Q?\ǤϏ\/Tr~SU'9K?A{Y7!?Co~IT??!W!9~_~_ ?Cίz!W;1Q3~~; 7l]uڨ˱ ?uQo o?Y"n?Y~F_}M30_Ư__̯_j:n~C_}Ÿӵ o?_n?__~;̿_=̿?M6Hsصk_7q7j~3#s_7o1.Ṫ4g>|z[Rk>||z[Ua|"[¿yUͻ ׿/*ߙC_kۄʧ;X*o5wcSN*{fO-׿.?=dݼF_W 4kWOAk~QA`~_Ÿ5¯^V?UWw6a̻ ׿__YG].t/J䷍/JglxUmRm;N1*ӊQE6~?gΡm׼Bw6(K~)gmRm۽ܻK+h<3iE~ۨT?W?-O+F<s^C~w}T?ȏzG :G䤘t+N?G }]rRXcw\asI~=}~ȯzKU?'D'/ ݽ@rN*U_rIO>o@~St+N?ZUgN?|ϿiI%[.痜 aN?Z1i~I?5/9$J׋{1tN*<[s ~'>@TTCN?iMߝ~r-Ϳ(,"mQ ~<,"mQ ~<,"mQ ~<,"mQ ~<,"mQ ~<,"mQ hd4?!S?J~s_ ̷ ~KH%Kϫ?%+"T/!O/!.?/!|EN_B**h?RwG}?J~}?o?J~ӹCa{g'J~Y)O/!m~O3;V ן? v1iY_Y=ټz/~]w~,į^ ,9Tgi~>_z/w_1CsY; ן[ , w*'3֟¿י7x{!~_uO~gխ.Ϛ?g~P? 3;oaG75?$~p`3~,6τw>fCUX?ƙ]VG¯OWX?l>r e~:?k_^Kϛ_3ymq~̶4ObO2j~޲z~!?'b}tWOg`XK*ԯ?¿X~f {@=U~_>s'~['~['~['~['~['~wv]y_?Wr~S5?`~wƿW?~A{KО_U?=9??ݶ/?/?.~m;?CoiE ~gmm ~gmm ~gmm ~gmm ~gmm ~gmmCϚ?g~S/!~~QͿod^ W á3O ~KH%;_B*4(O/!g'J~*?RɯC/!_Roc?4PᇿTm|$~KH%WJ`nB 6o'~_52 ~u ~?4?ovsmN ~3ޯ92?ovUiQo O+'ұN\?Ͽ׏|]!i䷓??ៗs"+[ ۟Um-[ͷ2m/_$c:|0^VI?'z5v¿1h>̼Ƽß:N*y[oBW?֘c N9W6{Ww0w9?*/6*ΟJ~*!# gasRo]uP O /UsRI%Ě1Cw-TŸ:N*U_T}{~ؗUsRI%wmScU {DߵCN9W3*-tsRI%鼃0 ƴyͿ;w :9礒_~FݽO? ~ ?~u/_'ïO~_.?~]~ ?~u/C揘?~_fo߷=5?Wr~揚?!Tr~[﬍?C?CίNg3AgxC7|L?c?9oڶwPM:r~'9*޿2W~'~`wG]/CW_>3b d[o?Y|~4Uշ,Y+/CWϯy7}!~~; :v %o?Yu[so?Y7_;I_}tן/Ϳ8뿻|_?]*'O1f>!.*į^VۿQ¿@a5 ׿xPU>哅j~ _'nożz[ͯS_/L_g:I|PU ݺ{!~ߥ*/*i|z[A{~Qϼ;wWU~:~P?wW_W um>|(!~_E?w0j~ֻ] ׿__Y~5;}E;a_o_j;t3=xYZ6(ƿֶ̇9>Bes;&fE~o!{3.*ӊQE6~wlMK?#4#*UJ_?>_'?ǿg?琿+GTa_9|r_a\e4&{W???|HAm_S/涊/){w{-vc/)z75Blּ+m_SPߝWw,Ww/;?__YΟ⿵kqS5[ߏ S?_ Ͽkj߷Z(ߧUu8/ſy?n|o8/ᵷ} p]_xzq}n{qsߏTT/ZYU(hU7??TC>>:up &cs_ֿ}mxb_o1G}zU^?Tֿ=?Þ?]k+~LֻMgWC?nW_Ou?WwOu?WwOu?WwOu?WwOu?WwOu?}fۍwU?aoh 7J?co{8>lxnϟ>R?+'{jOs ?^<{'sϟ?+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_3>a|t3#d56ǿ7E?}Dx5;6ç?}D#*OJ/JC=zBhGT_whf!>~3<9QJ/GT۷9w4~ ;o U7j'yw B;{W=]!yw/?7_ e𧿳 ƗVϣ?/?o/ßt6sB2,rm^m!ywsX7ϝy7!am;+0]ƞjv4vW:]QJ\`\m\g\_wEݿ+* 3}>xUo2vƪu7-QOݧWT:]QJV߬wVO^wEݿ+*/:sRhwEOmn]QCOj׿*]QJsâW6{wW:]QJ*nwU_TVxsVWT~QʜVտ/7V+wE*X5?~8_8/_O_ן⏿?]?u/_soo=?co+\;^믿V<~1W?co{xE?~1??U_^?cX_4dnG_돍?+fW.VWرl|eœ ǿGǿx(?~~Q?~xy???U_??l}vBuǏzÿzn!ǿ?_QoEo_FsaΡw=~TwmU376k B/OmU{w>RP՞?5aG¸̸jiw*>R{:?_gpU_jEXoh2_j/GiߵUWU?wU_j뇊nϿ?UweծU_j_W\MKo}Gqmٱn /Kobf5.CW-_ݟf_n77-? mƟ >R >o.>wru5q*ObW5cx/?#~Tqẋϛc2' 7? /]XscsGoa/>oq]K*9l>G/%zӪW?JÞ?KIx*>ܼ߿_>?KuU{µU;]W)i>m>\*뗮RRW_J}$\+*xEw)a;/%={ ߻/%Z=y8Rm-^?+㿔ΆuoX(_gW)6_+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_}j `7{By?|(2#U<Q?ǿ_?߿+*U?}Dg}Ρo?6{o}Q*>_ cY qq_O_ן⏿?]?u/_O_׿z4>\ Ͽk+Ը3Y SƧ8/jlt+jΟο?K_gf]c5x=pI8/qqn7?'?ǺU9ReGT~>p k?ǿWC#*U?QJ/~SƧ?}DQJO -c7.[s2o\?% e߸Joq2+O?)e?W/ÿ[W7tcIp}t<7>}U7fcqqWT{S93n6vUmwEw_rsZi1&ƕƵW_?awEOuW}לWߗտk _]VԸWT{?!wEݿ+*VZdl5VzXſ+]Qϝ?+4U-Wߗ?U/^t13V+?]?u/_O_ן⏿?]?u7o7i}c?co8wx]ƣB17?T?c_'Usϟ?_U?w)?U *;񧿺;񧿺;񧿺;񧿺;񧿺;{}_K24c3Nmf5$ofא Ϳk*7ی]FjvlK?*4-Aco}K?6}Ο*+*cN_}W8Z-m;D_T;vcKo8j S;?W_}R뗷 _j^c\f\i\+>R~T_j/~N]_Ͽ*?UkUg8B/aߩO댧WϿ+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_ |'t?KIV$ kIŸuE~do_JTwTkoowE~p;G8R^7+*U9voدTݣЩׯ_?~ /%Wַ_['C<vrSI_?KIٰT]Q/q|_Jư+㿔4}S_J{Hs-W_JšYpX+* q_JJ]+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_}z(Zp ǿCPqGz>_{?}D{MhG/B>_'?ǿW?}D:*?}DwJO#*Unj9|?O_ן⏿?]?u/_O_ן⏿WmQ5_*cq}Ǎ pOmlu p]_Mլ7U9¸cItUF!_q~Ϯ/yzU^?Ta7+?ֿ=?o8^IG?Gg;#q@}p\ǟǟǟǟǟǿ67^o Uk?hIh?kx]} Ϳk??U?^w빿:4{ R?g:_ } 1\ O -c7.[s2o\?% e߸Joq2+w}t?}Do߾sSB˘_? 1\ O -c7.[s2o\?% e߸Jo5^g}o^ƁXTO׮N5UO_g\oh\c16 _ݟոo^p=l ^n*Wyφl5*Wy5ox*cN_}+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? Fnf'FWZ'_3C󿥚 ]7qa߰>㧧XЛ;}qf^7_?=ֿ\]w{۟}XYXjcm۟}vVϻ/׿MϨoO?>;kN{䔾⿜SB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.X3cY qq_O_ן⏿?]?u/_O_ן?fFcOcq]Vٿjv涊?sB1o0n0nڵF!úqn_U^^k`Y_O9}{/cxVٟ/?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?+7W?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸JoqIn5n3Wmy?M}۸b0o\p?6U 7%C`jv^ol2o\Ɖ?o)?q߸ ͿYrkx:ֿq?ӟeh>eֿ{o7.Cz{Oo\C{w޸NV7E13O!_O_ן⏿?]?u/_O_ן⏿?]?u/_O_ן⏿?]?u/_O_ן⏿?]?u/_O_ןxqW}pyBWyw7^㠐o^Oo4nf{76ۄOYyOYyOjVIw[_}7]TX_}O_k5n0VBW\2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\g{5f3\ snO?>cG[c/bԝ :ܷ? z6^lY)/kծ75p7.ӬwYYo_?}?^ _?=of{ofo<~z _>R؃@}oiֻC\qֿ<~3O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O ]1q8_8/_O_ן⏿?]?u/_O8Ncnq8ey\ȟ?f#tU/c˸{?zw!Oj ϙo1ַU/cg]y  _ku!]yqǟǟǟǟǟǟǟǟǟǟǟ+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸ یcdh;>k4o7.C?bnԿU 7%C_mzcqָO24zvx5}O24p?1~[?U;*?mGO24jd; /ǟehk>`d2ֱzx8kq㠻O{8UOd|boF&cdlٟ/uY_?u7o0v!Ua!喙mCWO涊?j|]l-N!?u/_O_ן⏿?]?u/_O_ן⏿?]?u/_O_ן⏿?]\O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\SiXV7ߔ {6cq3-ޟehG>8j涊dh>Xgl2V x?Yӟeh[߸ ͟8o\w7.CkޛO24?z{((3cY q~??u/_O_ן⏿?]?u/_O_ן⏿?]?u/_O_ן⏿?]?u/_O_ן⏿?]?u/߼0kV߾S_}7^@}]x*WyO?Q߾M_}7:cXcl06 _ݟo{o^=_UuBWyWUxUOyyWywTVנf!߼v{VW?M5{wqUծU?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸ցpjg}߸jYw,tݷ? f'v_?=zg]]sSgKϕonso^ֿϧ<~z _2﨟33Wo\ǯy<~z o&)O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O ]1q8_8/_O_ן⏿?]?u/_OZzcqX'ONcn_[͎Vqxq8i&OX76v=O_>b%ֿ<~Ӹ˸>Ɲ1U/cx<~U͞?ouU/cQ5fVٟ/?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?_?՝?+7W?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq1Ng}7ߔ ;fcO24#v5cs[OS24k>Xcl42Vo7.CkSkay?M?YӟehwQ߸ ?=Yyü[?;}ƍ6c7-ޟeh~{ЭU 7%C߫o]1q8 ?]?u/_O_ן⏿?]?u/_O_ן⏿?]?u/_O_ן⏿?]?u/_O_ן⏿?]?uo^)qVW?8h5v_ݟsn_ݟXkl463W?Ҹո8^>->u۸b0 _ݟ?R^:^>ucM5[^e2 _ݟ[O5ƶjVW?׼m߼+ʪ}?X_}+[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? ~ ZG/˙kpuso {:1/ֺ;ϭڽ{Cy} ׾J_3Cgg9b^ֿ<~!/?ス!/934o8g_9sxi[O?>~ͻ+/?y[þp7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+E13Oß⏿?]?u/_O_ן⏿?]?11Uu_n4ntU/cmfln_8fy\ȟ?f׿B1fϗmY_q8ifaֿ<~_?ofelvU/cV-?y?ǟǟǟǟǟǟǟǟǟǟǟ_?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_?qP5}7ߔ []cs5oU 7%C}jooJˍj[?}x8Q=y-?o)Xn77[xf;1n*_i:cj\m\Gq3߽=ugo\׼o7.Cx7߽~-?o/?c_i֌̶7? 4<OTG˟SB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2(3cY qq_O_ן⏿?]?u/_O_ןqƸXYw uVc?_o?_q8l5n6OGWW_?_S77Umc+w$u??ſY/5Ul y w$u??߼o7OGW w$񧿺;񧿺;񧿺;񧿺;񧿺;񧿺;񧿺;񧿺;񧿺;񧿺;񧿺;񧿺 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.[s2o\?% e߸Joq2+O?)e?W/ßSB˘_? 1\ O -c7.C?Xᾼ>\_eh}f567 = -c^׿vWm~߸ 245*cj\-W7/*/] ߯֏1EE}?oo_T&v\e2f\nz[v׌7Wz˙_jY?oo_T}ݻjo_ehO S0]qwuȱqZ]ost:;^>i'rGwqaǏ;>:~5mIi˟MZ6M[)G4il|u8絞4m#ÿ.zGȿu|G~8!,*,%ɛ?@_dc{?u o4|c~}{Gg{.8__ xcޞknwk:yy1 gQu9 ݼo?]i;Vk^}mEϛ????)u;9%煎&-~x Eq_ ÿ^_cӴ&--_ϳy򗓖-Ӗ?t&-g&-uwR;/8Bb|yВ{~cM/~_q{ϗ}=1q~}}1q?E};='eyY_ gLW\ e͑lcQ.l^}WhQc5\=ms i˯NZw/v}ܼ~2kQ???׾=~o{]&߷E?5|?t<}~pkqG=~l]l7L[pg_}G{<}_r?u|B!D1z <h=C&9Yqُy}o4=|=΢Xt{}}?9=GE@HtVs__,Ǣr_ߴ(y~a:m{c53Ǽz=}9ud7}Ss~a:.w}qrrx;/<)߷33?y %?%uӖ?}~]5meմO&-~?-#ns}xAǛ8?~?P㍎O!(fQWay-7vHd~1q~~ 3w{w=`F#yLCףuq[LO__ ]zy{6_(rUׅ܅_6?'-E|בug}5o>???593{}x?~!8Kǿv~/u:y;5W}3~+ۿ&o̕GN?_&muy~ ߧBQ̢<Zro쐼}~8a??Cҷwڿy9cIo4|c=tr???@ Z!ּ=m?_tԱ(YǼgge:u^i˼d?piˢ_nmq_G)fw1o>???{}ݷ!E}tsw?s;~_M׾@X;me㴥k_0m;]3mҤſvw ǻ~%?gO:;wu D!(fQWay-7vHnh|mM[>c73 omF/9=?iwַq{)8ˢ??);~{SEk*kg~_EŎg5om}vukS}{cQ???z[7bB5o9^?g)o}~ߵkusqӴ{tu|_/&--]^9; ߃'B竰<;$or}῟*ǼJGh^Ɋ =|=4 ~/yq7̿ѷ??)2]qּ=a?࿷E,ǢLV\߷_7{:iKǢc5uYX8???fn8B8G-s#~u?G9888lF۳r{߷g)k-_>mZ:kAu3??w=O8ﯷisΤ_( w+v,}O3[37T}{.s}2i90m:~ן=gu>Ît8riY,o]ڗ&-uk}'--M&߇獎:GZЏ8N]B!YUXCK7sjLo: ~/ysLC>6;.hkַۭys~ḣoE/R7]q979\ Ǽ]YرM[jӎy>N~%fn82mYL9>?L[~AG-~/sߤ{'-5Ϗ,M~A~yͣq9߭vݴk:m>?a_w}ֵO8~u2_#B竰<;$or}wy4,?hH7]soۿ?2qV˹>78=γg9__ ַ:.owlrX'+.8LUO8~?왶\9g) 38~߇~iߎߟ_n+?ۮn+5oMSJ;s:8~A~nY)B!D1z <h=C&{~1qLoo4r{4_35qd?6G߸ݔr?ˢ??)잮 L78`w9_IƿKm;_o5nkô ӖE}?߿& ='7}SI˖iK?]矝0mI?g&-~h?C;??[?7;~ogy?~!ÿ?M~?s}_~ngBBQ̢<Zro쐼}μ#cշh1q}o={=gw|7RMF{}/}\/??? |cޞ|_uʱ(?;?XX ۦ-~˦-kǼ8}-}OW&--~١ӖMZ6M[3;-]y׾:g|󭎗:;#^9O~/;~P{Vw|w,UٿfAPT0(b%I% "9 Hs9s1zê:t^{uW}难{Ԟ=gͽu83>yM: k[eYXޯjd珶*};l$I$IR\u~Yr qo#:rΉN#Zr|'-]oJo~7o~IM,Wր03|7/]?sp-!7!S4cU{`P7rΉ~?c~7o~7mܞyӃOLII ΫI=둶TNΦ\<@<,|x z[9Y8gp8ׇ}xx>oj^>ZeYXޯjd珶*};l$I$Iԕ!ۇ ]U ϯ9Q>.}ݨ&}r"7@j.P[s>7o~7o~7G9UAp>39y&?x|c.p>+}6gG<~ pv.V⺣Z _[/;m\5!-˲,k,V[W52G[~UJI$I$I%'ۇXGU?#rCFXC8'>Y]ur 7o~X qnOs~E Aoe`8' ]w}=廘slqt΅V}o~7o~o|fj9? 3gU{dP,UAyg0gjOOag༚m u;ppmmp8x9Fx_*N %py9i uN,˲Xm_ȼmUwV*}%I$I$+ zC@n}6tgpN:sDܧ,Ϛh#:L9Y ᜈm@_0o~7/OT!upN2 KSsfv ZntUot;;iV꺏o~7o~Ms>90U{i]TU3$UAUAϻؠ/K:nt\p9pv#.^o?/:x&6ײ,˲b~U#>U7Ye$I$I< 5}J#||!3vޯgq= ߍ3 <۳,xSeY5J_*[$I$I$uOq>\O½3>syk爸.%?KxhVpNdS_/7o~Gr:}O8'ZfEzC<7ᜈ{A["^>ݻ7roΉN? ʟ[]1o~7o~I+:xnAUrP{R}RsIU KX4 ï}Z Rαg7?k\g Gl}g, ~O 88ڪi), ?8>2`η9nv^ 5<؇xk8_o^O*rJ6zO`\ ,˲Xm_ȼmUwV*}%I$I$+nז]|'9y!G9ч父>pP[ iZn8qP[w }#~w,7j0ʟ[]1o~7o~I~ΜWZxRyn&j%ڡz-9q*pOja-z"+HulC3N[q>p)p3pO7Y{ ޯo|/Yx9},˲,k,V[W52G[~UJI$I$IʕP}̹ןtY"qo#ry']dx#ۇxO 7o~ -9g`Xʿ۠7@*q݁ߍj+W4mU8?=7qP[YV?[s`wʟ[]1o~7o~I~`]Cj^Pq p>̚8/(czǀ>g&\Ou4payAG5yA\Xx#?|Լ/!5/h㹾?'eY5J_*[$I$I$ukE7NQ?\7(tNpNtt9&D_7o~7&>\ `Ah+>?5'5^LU-7gtoX~ǭu7o~7{98I8Υ[3T~r-3? فnֈ07|8'o ɹ{I='\גC<AyAYX,˲,k,V[W52G[~UJI$I$IރAۇ눎sDAn9ѻ qKn9;:9!M]oJo~7o~IM| -s8Ao{+qzjwV/Us#Wþp1?c~7o~7W??C8ˁi sOj̬U\{3p+X ?yD?\up YL<}k|U`1๟^O#Łי{?yDeY5J_*[$I$I$uS}}C爦> DtZۇkl~]1,>>k Z,˲,k,V[W52G[~UJI$I$I ⚟>\sr"tgpN4t{Q5۳n8'Zkdnk]oJo~7o~IMpn2:|8'.L5 ] D?om>xrWh>w mmϭ7o~7$>qbۓt2<4|pw`^\ԼS7YI\k9쓚`\H88O>+{2pn|xGޣeYejF}hoV/tQ8 >~) }R8?}sm96]a˲,k|V_MYeDz&J(b]:7o~7o~70}9FA_J8?Lwga6X´>wf ϠRǷ̀}6~'Ll_̟y`QH}0 5XeYXޯjd珶*};lRI\r73!,ss|~ǧsn~ s=u2An~ƙ?G {|#l>koYe*)lXWןTҦok\e:?3pNԤO~/b~7o~_RzCA3h%x/,ms~6Yg\'B[_"Jv8?zU{zP*L8'xu7o~7LοW{j>Ss1pg`aS|Ԃ<|<-Ϥ}>xM9[i+g2)q}༝\|9sMyS9Gs,˲,k,V[W52G[~UJ$y8yH=>u Vv΁g ǧoZ%ge7Arpx<y dn~9؜,˲Y5eߟ˚*J>;An^T]{G}D/B9g9?A_ (zrpEPo~7o~IM| }r_s"Zx\03/VB#\٫Z[X?s"^a[s>7o~7o~7ɟ/@8gpx8~OOOՙ7s>̴i؟'jWHx؟א}YMyS>\47zroYeYczy?ڪגּUK%8ZxRO? x9k(3 }/=~(} Y|㿁!z9K,˲Y5eߟ˚*J⬞ C]zry']_6\hEL8'ZkdQPo~7o~IM| }r_D+-h+?rQDZ[ Ws@憶rGCn9}q V꺏o~7o~Ms\܃V~=5_(՟v—`fX 8g՚8Of6|TkuY;Sldkw܇.^pmRjςU0,+߲,˲b~U#>U7YeJ:7 s3.Rg/9Rۇ9$=xmsSo{wYT˲,k|V_MYeDz&JGۇ߷⚢s]tۧ D=:?gG>+s"ξ:9"qgpNVu~/b~7o~_RTU!uX8'Z惯@[O(7?{ g@[g" SsAmV~zrΉS\V}o~7o~o7st$p ?K^cRRA_<ڤ2SBfAmwga=f~7 x.Y='ş >Tp='a>(˲,UVxg_*7p pz|=pMӐ-?J=>u|5~@nLvhpչVX,˲g~ՔUJ~,kO*LqO>tt~o9#}rp=rp]H^~/b~7o~_R3UCtpNq> mws""VGC]U-7Y:oB[} Yoa8'`h+nu7o~7o&9{q& Cjnfv 5Gh?yߠ6 p>̔)ܞs~RsKm-kkg2>s9g37pp_yx>}> eY5J_*[T<#z|e>7“%^}}H=>u[6p2?֮ת'U rNq~/ắweY5>UcY__RI?GkBn~1t~y,=]zSõ4?7kR_o~7o~KjbΪ7E}ΉV!i艹 VBhp~k~ߠ֫jmub=Ku7o~7c99?LnN!3!yݯ}hP 8s{8k jy29ByAܷk;*3.bՁpПa=\ #N g1qm0?މq.y-˲,k,V[W52G[~UJ$X^Q:2A[W~?z|`h?:rs3wrH}{<5'Z -˲Y5eߟ˚*JZ+ o> D)u 5::'5>ss"u~oB/7o~7%57N?Ή iAo~7dVBhڪp~4kU{xPTs= ]_ʭ7o~7$?/p{~sc ǝ9B<~mA~mA~mA?<ݯq}~>h?{מ6Y 8G8{~yR8Os؇3|xx'@jeYejF}hoV/tS8⚓{eH=>uFx!39W:#L_?8(qp?/) !?o{7lҲ,UWSV*}ү?$^Q}[7t #gge?k$0V[J~1o~7/y2:h8'Z%{ zCAn~~7b|^lU-7[Ajm[ۓ/ᜈ둸V꺏o~7o~Mf~ÿ9W?΄Ɂ^fA\o<ù4]y5~w:M{O'p^U^s qVBzrVkIleYejF}hoV/t}8|;yROa!_~[BF=8(8?sr3[{qyn(`eY5>UcY__RI G?>Du+wpNt tp"/ۇ{cq-M (:r\Ή.{7o~H:ND_Yaah+?5-=UV[_ZnW7MRu8gCn~~g}6i+nu7o~7o&fËK {8cy>}_fצx~]ڋ<ѯM3=կqFe^؊kmX py5 68OiwYLok3jkxiP{_?5,˲Xm_ȼmUwV*} G/m:~7BYp_{I=>u|u }?@nβ\Gu9T^=JAnދ!߲,UWSV*}ү?#~fۇWs ]!״p=L 0^t ~7o~\Uoh)}7-EzCAn~53ϽhMQr?ΏUA]U#-7? 5Kmϭ7o~7$?s$/soPLӽ;9B֯>=ۯq L>=߯q.+lz_\+ / N*pM|~ᆬO s$^8}9?j[eYXޯjd珶*};lRIµ"7Sz|4O@nǩǧYُq?nGŐ,Rw=}.0r~niYe*)lXWןT?}w{C7Cng9ѽuk}r,ΉQt z-:[J~1o~7/٪b:.}% zCBn~'u C[ )Zn$Ukjmg'Bn~~'k[]1o~7o~I~xn~ͯaHጚsOj;kS j/k3jOk]hY4/ko+5'X 2~w۰|gy>?ޣT75A`x_g><^HI,˲Xm_ȼmUwV*}8W{N] \.sp6!˲,k|V_MYeDz&J{r]u ϕ2:\E*zQt ύR_o~7o~Kj Uo:'- /0{s{s"B'C[ZD/LU&jm\An]9љ?\V꺏o~7o~Ms ?X ݙUߵY89{5{[ݯ?.,k%H 8[7\ AE[%XJ_KѧrԞx9iA~3R_k;ɠ@:XeYXޯjd珶*};lRIg^xROEs$FNǧs2? dϽnÃVv!Ap4>,˲g~ՔUJ~,kO*@q}HnsC/N>stp"/ۇ{g/ (:rpϹu~/b~7o~_R9U}~.g {_9Gslݷ.pMLU-7hnxxPTFgCn~}cu7o~7]=g˪Rs~~;okՠvk<3Ok\p68?p5ÙjPbZx8Ç5$޻/}8?SjOk>S jÿ5^5y_d0XeYXޯjd珶*};lRI /A?/۟{sSO_U[π 8#= }~FǵR9<3 |`Ye*)lXWןTڒ>+kED77sv8':0\]ZG\uBphrO{7o~ - s`vX ϵ:Bn=9ץo\3V'Bh{M[8jm(畛k7h+nu7o~7o&f ƿ׆}`E VLl_ ߂-~vΥἚk!.x η_{4p>s~x` ` k5B;3#<ԯq^s>/kA8Ȳ,˲b~U#>U7YeJ;mëz|C 9Wg{-p&LW(?gpN IqT ?rMqs0˲,k|V_MYeDz&J>>}>y']?:rpusDCn9x'}NDBPo~7o~IMS1:|.pn U-7?MU&jm皫!7?x NV}o~7o~o3aEs`~ ټ-ÿU缠<9p? sp;sc_}z<qPJ_ޣyR_3L6ɠvk$p`Pcq_{R<" ,˲Xm_ȼmUwV*} GÝ:9BV kuεN=>us~槭{"h'u ?=YMY'eY5>UcY__RI\59}>Ή>]?j270:?רpLnB :i9 ᜈm^(7o~7&>R)}fEzCWBn~3Ym%fj9Ghƹ@SVs=9Bgc?mϭ7o~7$?|>'y5R|8O&?5gքkQnA ƙ6@#0Ӡ G^+^OT1g ]֯qKwk<\@?8q.н,XeYXޯjd珶*};lRI9Wg7BC9NT˲,k|V_MYeDz&JG> s'{CGBn9ߠ~-?9m_:.qP׿ ~7o~'з u?K| AokWrs(6B[zEsTτiPPʿ]9 jgA[s>7o~7o~7/?>|~_g'IϏ~83gRs΁^89s&5hAf^9j=}ܯ-. دqn{-< 8\t%?7XeYXޯjd珶*};lRIW: 6IU{yPT_:-vΖy;@qAr\gw uA\Gt XeYJj*[??5U'\82`B/N>7o~7o~7Ͻ~y;BqΖ}V3{ 5d R}xnz>o/ 5ދjN}/?u\n= z$ks,˲,k,V[W52G[~UJ$$z|(w‹W5Փz|Z ;BnwrӤI\m^(7o~7&>\9 K@[.cspiVWCrsm UAmV=C|͟õX\V꺏o~7o~M/f~K?=VEǿCj[ Vs`g$ jR9   j<^y0;0{k$Z <4pSp?<yA5ğ˲,UVxg_*s~^{Q: l@k¶!pJn\ۇ{i] G{p Ma,˲g~ՔUJ~,kO*osgpN:qБpNĽfx-3C4uBT@Po~7o~IM,X φsG`Yh+?ׄp}Kn~!0{۴+z_U?I8'8_hVB25p_*ΥIsazl88T?ױY4kε@ jok\3pϻۯs xN8DNԚk!us',l(˲,UVxg_*7|5!Oע:~36Ov'8 v6==>gkAg'": ,˲Y5eߟ˚*J⺎ ׄpJ76>sׅ爸.%}ᜈ{fugpN#t ~7o~ǫ7!u5K(=v%7tZS/^,U-7hȠ6yUk+?Ήngk8ʟ[]1o~7o~IyJ , s{sR<_Opxy/ 2#J8n9xB` ;{usx9KwqRx}~#z:p-pp-Sjn5M5QeYejF}hoV/9s"]:ƐۇCx["Nοmx"gm ]oB/7o~7%51Zr_ss%h+g/יpJ[_Zn~թ_MSʿk5pN7o~7o~7\wBYeYJj*[??5U'4i8Z> ]$#_u8gCn~9B@mϭ7o~7$oc90$ > Sǁsli'`~ N]w$3^y_~3|^׸+s w;_㌝#L88;N? x 9 (՟sx,˲,k,V[W52G[~UJ0R㽪Ƞ/ p&̺:A</ pZ)\:=} \řKeY5>UcY__RI\+~-אpI9f#pN{: 9"cpNt#tEn9u~/b~7o~_RzC߆߀; ] vT`VWChp~4UU{ePp87)7ᜈv?2k+nu7o~7o&9@nܞ3 Y`/gpv\/;t" pܻ|8/~-Mx8'5/h~q38tH}d}3R-˲,k,V[W52G[~UJkp ǧ/gp6S^Qǧ [ρer_ A񇀳Ͻ3 Em'-˲Y5eߟ˚*J>\\בۇ{B5#mm }6DM/ϬU-7chתV~qvc8'JŽʟ[]1o~7o~I~(w&Y`aS<<+Ks*'Ajϓ9?TAj>sS}A~௰7pnL\kyM1`YeYczy?ڪגּUK%MZfj7*ɀL{PeP; >H=>u|7p]_!0\sp 8V݁,˲Y5eߟ˚*JZ> u~rpt-pNttsqUn bϮ{7o~X SZ%.#t>l@[_"Pj8?=1MYʿw5g8':Dh+nu7o~7o&g3G_90#|8yR,?{k/z<׫?=O?~mAϙ?Sj3\|4n{qq˲,kux^U]6!I=>u)l- rsͭR΀[`?8rGCn}GeY5>UcY__RI GgpNԤO!ۇ{HsDAng9уu爸'ϡᜈkR_o~7o~Kjb7 N D_y`ih+pN3;ÙV~5bXոU=rΉx4h+nu7o~7o&Sv,5B>? xj.pb{_ jù=k9B~8o(p<iҟscYejF}hoV/H>7@[2AnukB~[AgԬ [Cnv=~.pOnqbf \s ؇뵜cYe~ՔUJ~,kO*kB$9:Vۇslwn>/sG\gڞ@Po~7o~IM] s{V~Xw?zEU/󣙪ڤYLm!7?p !p%?c~7o~7+jA~mA~scצ؟kT~mA-u|~kւaڕ`7H__fxn^~xnS;z)OjOCy>wpkz|]73! ku ||?[eYXޯjd珶*};lRIg7//@?fxro5_RO`O롭/t\{Oܯ{NugpNtgv% tK9&mpN{u~/b~7o~_RzC+Ah>mpNtp j+?g _ڤUjͿW8':6j+nu7o~7o&&8_y>jkoCjO*a='-\okHRS'q+<49<~k @8x9GȲ,˲b~U#>U7YeJ:xRO>S\O@nag pN㿃]XnΨrs ҕۇ{][!ۇeYᅳVϏeM|~I%] ]}JY2D1o~7/idW97`:XϹ1Cn~-6#\4KUv8?=0MVʿgqnRn9ѥ?G@[s>7o~7o~7Y1ՠƙ0A|8~-ଘ9B<po3j~<6p&/s^gѤ_ 7ù5Zu<e\ w!5뚎}x9/(߲,˲b~U#>U7YeJmz 9? _?~I=>8sPnu1$õ4q&pzBn eYᅳVϏeM|~I%] ]}Vr:9/@ns/R.ۇkƦ_ } r87o~7%_3TAtpNqx,mz 7ᜈI8j+CWTUw󣷀 mh;,7ᜈ/?c~7o~7w{Cq΁y ހTTu`Wks?7a=y;W_ 'Eppyp5 | n;gpA9?k=ϟ ,˲Xm_ȼmUwV*} sBg-~@W!&] ǏGΙBǷj?#9Dz,*)lXWןTҳT8'οfxheZ8'.tsz8':οVxhhr\m^(7o~7&8gy}.ΉVp)ckQ?wh+W4gUs\pנuˬ7o~7$ Kp?n!u<5atP_{nW`yL¦pFM9??-`9ořE'b^[N? 8*N9.xͷa$5^slleY5J_*[Tz8oyH=>x[׆`MR=V=~pRnZ8n?8k(϶p8GeY5>UcY__RI{CAnsǠ?qNn 9ϠDž>\/5?#yZ*t ~7o~g, saZ$Ao,Ϳ[8':׫{PrstUAmV~^!7h$nu7o~7o&oy:x8[u&?qNJ>|8fYi Ꟛ ܞc|8. `JO⿝3y/pnk~6ޣ ?5Ȳ,˲b~U#>U7YeJzzRvRO?`=RO__{yns}㼆\ϓgc88_?eYV_MYeDz&JVng9:sD ,dx`sN8'Lm]oB/7o~7%51ONSs~&m͟}8':6C^,U-7hv ϡWt>2~V꺏o~7o~Msnϋ=8g<7ːꓚ8Op7Rs{ 5K 8.3s{N9s{.=xpL![6^+:Mk~xx/6>/sMg YeYXޯjd珶*};lRI zC/Í= g!o{~'.&lO=~}\;`[8rs/fJžp"XeYJj*[??5U'tg7=rpt;9"u;_s]!pNW:sD\ᜨ\m^(7o~7&8gY}~<Yh+?g\Ή.v+$\5eUk+Ao}rs NV}o~7o~o~o{x]g<Wp p.PE? 0<6psc8&՟k`8g&՟vo`s#4!fcl 5 ۟T˲,UVxg_*Ao U?Nhw=z|8pL[6{u>p<9{8(}߸GۄGfYe]5eߟ˚*J@8'j2G(Y-qM }>=5T ,nqo{7o~ -9"nX0g@n~u lGB[iZnU8# }#8gi#?c~7o~72a8,R.Grxn9<·bԼ p?Bõ=k=N>9k9sՖ*l>!߲,˲b~U#>U7YeJztzEz|q?իj}~R=%}.{ xjOnq C>{i{t.XeYJj*[??5U'tC7tڡuz8'.ts>ܫk{7o~]} } r_s/0C%7ᜈIm oV~kp~4}UzɫZ[yݸ?Wn9p1V꺏o~7o~M_ =mp1p.gp ;t.\/K!5h%|ևo̐6˲,UVxg_*@\oH=~B >\8[& s0pa2xrs]urg-{[eYJj*[??5U':sZ8'ڡ#j2gpN7t~ }~ΉFrR[J~1o~7/W!u>3, muj2fpN$;VgCh}]՞Ԧjm.Nۇs"zRnu7o~7o&9n2qnO/HYֆr [R[gl uAp \w <(}8gC5vYF۳)\ eY5J_*[Tp :~Bo )ǧo&0!}R/K8sbM7ZeYJj*[??5U'-}οrxh9Ù?B5G8' ??> D߀{7o~pZr_K@[VkWrsY?gB[_ YZnUAmV~^&v D q.P[s>7o~7o~7}m #z . < *&\/p9?gmܻj9p.Љp pY]\Y=>™{}%58khsx./[>|6!5Ȳ,˲b~U#>U7YeJzf=>ZO jV'IZnmC0ǧo 9%^8 !=}xm?eYV_MYeDz&J>_S4r8'Zϙ?\ۇ[ ])uS߄{7o~ } r_><$yΆcs.+)iZ[ }S!7tؿu7o~7俶z8s~8s9 5/jxYHZ6wZõ.Ǘkx ޻c=^s5O?.8󗶂݁ &w,˲,k,V[W52G[~UJ$35EU}ROmPqL۟|}$H=cc( I 3 E4d1dL66dMQ  r9(AB !$UW;=9U?]svvӱpKe`Ϗu6Γ{ C:¬u.,:LK?$I[↑"UIr_Bf3Z+3v3<k_ug_eZb7s!n3<:qs<\///////"ezz.x:N*-?7~A*Zʀx7ә?\#Y_:ʿUuבf x,ǏR?&S6l+o X?v<jp=x8 xǎ< n̆80| %ǎg)X I$IQWEw5^vGʫ_,-> v|lm x{AY=c@qk}&wWss/}>ub9BgH$I↑"UIr_BfkZ'W~a? Z"7ә?{lYxvuOE_____UlXXӅ:` H培1'?񰟄ojyo7}ի OWs ,U #//////_F3*>_ ~!S@o_CrS] -{p$`C{!y< ;yyG3اt80\ /I$IQWEw5^vGʫ_)-̐Ď3g2aȹy;̖ogS݀9Y񰧫nr}ȿ˿˿˿˿˿ ku, ?3acaIn-6?X^o@0`op X83c9i8`a`>b/1_kΌy; 0?XKMcDJ$IRwTU9]Mׯݑ*"'20Lc{6XR.s@|p`+`3ÇyM:e(gZ:bn{H$I_U*$u\?!r=>:cP/9wn^]:\zq5kciS}/~!D+-6tn7dz9h^WVG9u`J*Z?M[&Y@W[#OgUuבlѢw |e0gYb@1?)PiNK+893̖b~&}yZ}>/f:rb~Y{1+|0\ 8; r p$ITsr_#U/DNҫ r{b?.@,Z@]s?\\ k}ƼX.`<ux$IԞ}U)rHRǕ"'o5konܟZngOPgxn:9Aa{{!˿˿˿˿˿ !Th^C~R?h`?n$G9W˳@[eP7:짺 oUu_______]s @"0h0χ]l98 -s$;`2k=O:3ljb3v.' 5`Ϭ'H$IRwTU9]Mׯݑ*"'/?c{ZR pϩ v|l3 >{ZdX<bXkkN/I$rUEʫ_?q \:9wAwrX0Bug˵Zn7s3:aVS}/~!D1^+9 H]^ \-|e{-&@*aO?{b>T˿˿˿˿˿˿ܷk"A Τf`"}Pljp8 *όO3z)MW:Ś TA,s,eƬ'Q̟3nwbh$I~Ut}~WSkw}+g2x%v|l|$ GT`&L=EY?[K`x>hq,a=Z$$IS↑"UIr_B}5܋Zg ޲ A{}n1u?}`saPS}/~!DV(-ty7dz`І sF Xxu|jy.Vߺe"0kH}8G{[Uw*c=LhϚيd*| Qb:gPO\ أr9 \ y pk^,fs bf]n\[#qnW_sb~:$I~Ut}~WSkw} @zf-c 0f2`l؟s%? >&{X<k{ V(`ގuB@:b_P$IԞ}U)rHRǕ"'ao{EԱ ϞZ}Au}`ý)TgxS{{!˿˿˿˿˿ !Rh5^9m3g~Rhbu9{Kíg0/밷OcnV9][Uw* ٳ~^3`A BE5S'kɀy5F\wM_b9?c&O"}@>+  y68`Vϓ\y\ Ϛ$I$uG_sՔ{)r!rFX;:!Ep `N8Lb/Ù {=]E`$3 `̟3FI$=*R^>+'DNZaOOw^]:cce H`3 ϙZ"7Þ^"/////B*Q6Zn9BK@*.vs3'ƵbV~;3#I$IRwTU9]Mׯݑ*"'́߃q=-ۉ?(U}0:ܛZ99\s0?pYn$IR{*WU}#IWO{HY{oT:ふn,P< uط*?תsO*9BVR}/~!Du: J1` n'j2`?V&@*gYzʿUuבf\E 3XrSq 6sx3p `>_ Es:ۙӻ| 4@,GsUQXuطLku? n VG$IRݯιjʽ~펔WϿ9y| ,c#C=CQ`;`FͿ |/Z{uqG`>k+Z*چG$IԞ}U)rHRǕ"'X밇=sas9 ?BBTaѲz.x+@*gUgc=Tr<|ϼe=]@*p.S݀NT˿˿˿˿˿˿}ofҀ<3a=,b?ϝ,i?s* n9|Asr`̀}Y}fH\s笀Y'3;`ˀ?p3f+6:\V=$I~Ut}~WSkw}7"T;>6:`O Ďr{xZ:\3y>rby;k Uk%ITHyG:ן9a/ pu9AԙZ})GnX0{{}8WkƚuOE_____UXl Xe&`09Hт.V9KŽ ³y,XbG_ax`4#;ϼ$I$uG_sՔ{)r!rœf[zqf0{k0p8Ď**c@2Ϫ$IԞ}U)rHRǕ"'ϋ}&: 9WUŽu>3XLrs<3<칲xxN{!˿˿˿˿˿ !Rh5^9m`#?{reX'=T+ŵx T/qkyX_x^uUuבZy~ 5g `c4wغ<s ]썹4Y@\Ƶm_} 0?`v zx &;Q0 0+?/Ż G$I$IQWEw5^vGʫ_~{'(0Ď T`\Ď ss`k0e0 \ ge ЃεZ7$IR{*WU}#IWO}:PuZgknZg 3|unrs<쭪\///////Šez2fc)HQ`Ϟ_,w5nnr}ȿ˿˿˿˿˿ CF X`~c?IV̟a_ b.P*ߺZˀ,&Y@*YqPwUuב/fl xxrbg+z֜Y:/\Ek\ ܻmZr~ n-b9B1g֜GNX}I$IJu*:>);R^>B@-_e v|l"Ч 0 J}5?:;>6~\#uYy | 5`<uHs$IS↑"UIr_B{Hq)ke3Tý Uuzp_?>syT{!˿˿˿˿˿ !b;`NWrs<[ T?̟XƤϭg9`, /4 yXHU9A=Xq߱ak%I$rUEʫ_?q {KaaPZ<ׂ7f֙x)Tgx:9f?BBTaHh ^+973y`}^Tw<\ Ts=osyS:///////U~3{VxOn /:\3<>y^ksC, !}ܻs=7:owEOYNl\$IRݯιjʽ~펔WϿ9yL>e v|l 0|G?:\ bǂZ> :wQ 6ο^`?oIU$IR{*WU}#IWOτXx"5Z#SnnP,q_*kn=?z:YPT _______QeF Xӥ/b +F?z0I?8 u<E`2s6b.ӌ`0Z E`qE5 %$I$uG_sՔ{)r!r2|by;c̊aIg>kx8q1C& dXǹYu^̆< 8I$=*R^>+'DNv=kk}:w9A^ki`juOE_____UlX XӹϪ`~&Hs rs);R^>B]=`HQbƙܞqggR;>6?  ZL$M`s๻&wXo$IS↑"UIr_B=kmISZ`þ@Y,[#=Zc7Þ^"/////B*0sf`N-+T5Ҥ(X{/~e  T˿˿˿˿˿˿#~ [f_ !wb9?)b}|f` pOm0&S `{x L?f o-aYù bE`4Xp.{$I$;*Hy XCLWr!8\b<|aZu? >:il(2OkKJ$IS↑"UIr_Bk3v`̟;@5p_*kpvkyX밟 PT _______QezxV}2 SF e}˥I=9_qw@2 v`}ӮJߪȿ˿˿˿˿˿˿Wgou  ׈6f | j+#fѼ ,//w`s 1Xs~_ƬA C\ K$IRwTU9]Mׯݑ*"'#ao|u6ogfP`$X_k{E ruF9 J$IS↑"UIr_B}ձpo?lXp/f 1FZ[#[ZgmuOE_____UlX XyX[bR\TǺZ?ꚱ QRkc##//////f3\Q93|[C@xk}E`|30S~Ų3Kջ_ǎ_o:~v~Xǎ0g.Os@?8`};^$IRݯιjʽ~펔WϿ9g(e `>bƙ!-x 0ZϬfĎy>wuayLε_Y:Al\$IjOWϿ$} 3=uFu_g^`=ugbaknr}ȿ˿˿˿˿˿ 3?t7dzZ4Z\ ss<ýoW[E`2AHV<# R:///////U~3{N'fќb9?*E`r3엯@,'Vf`"M3ɔE?{_oAs|;wXp/33g `X , }G$ITsr_#U/DN>v=e]c@Q/%g4:0o'v_ b?f"Yֹpn >\`gܯk%I$rUEʫ_?q bn{fZ5?{اd>\uݭe`uOE_____UlXXS!Y4ZYZ.s>euz_(znVƾT˿˿˿˿˿˿̖{R9 0x-3P'p*73aj3kf| p߮X^P>skϬ//5`^P YI+k. bSc/$I$;*Hy 7o`0 0'v8O9 uL2\/u10X>3v^Z&$IԞ}U)rHRǕ"'?N:^`uhy<cFX밧g \uOE_____UlXXng]0#آтCYwTǻZe{YOճ oWS%r_0ȿ˿˿˿˿˿˿O;x9 S,g+p(b=`j3P` ykC)hbt೦3vRfsw~X}G8X\0X, A\5 `I I$IQWEw5^vGʫ_0+ ĎrƀFgv1Yʅ v|l8?$v|lϣ`#8y| q>{ gƛ%ITHyG:ן9auan㛍Uqsn :}bB7@,g: i.UA>\7N\Ob?+0A<J$I~Ut}~WSkw}xӫ 0C[e23k} ̬sq>/`,`Ƒu)HUE0Y:g}> {H$I_U*$u\?!r uATI`3?ȭg `ÞskXLqs<[nr}ȿ˿˿˿˿˿ su:0g&H(|ޒT?t);R^>B}ӳ 0o,c̐[>*s! c|6!u9k' S:ֹ0YF$IR{*WU}#IWO~{v:fX`7@pkamu>ýҬu&9Ӻ^"/////B*,]6Zl n'` Hܢ1`y@*Zyˀ?bgE`2?V|vpx*V]G______忊\bM`0 X9B Vl<3`L,/]3;eqy=߉ K>8ο}}_ 0}P[3/I$Rݯιjʽ~펔WϿ9aXb?.UV܉fx>kdgO X0)ԣ '{Y٣=ˬu.$IS↑"UIr_Bd[ k_9UQF׀γn9P0Zg~73Y=uOE_____U\6ZXӁng X)npx=c=f. wnVvs<|BwT˿˿˿˿˿˿G=-׃Xy5?=V_ f~qfpY4aϏ@~Kg&qu:i6@$IRݯιjʽ~펔WϿ9~{0o'v|l},|k}u 3 ĎLؗb2[kWu0pmG8bs3$IR{*WU}#IWOp=.n締n6-k1nY4"_Zg7dz"t3<6:_9@S}/~!D,-6t17dz>Xԑ=_V9Gss-f1Yr~_Le uoʿUuב?;hwmM,?s3'`̀2󁟂X`Zb~b=|<f\s=/9LK^[v뀝׊{ϭ~x<|~vuN@$IRݯιjʽ~펔WϿ9aKl(ǎ3+f2l*c9?ǎ3V` |hqfL}\8זYC:ܣm=FI$=*R^>+'DN/ ]bzX<{futs,u𝲇np$P˿˿˿˿˿˿f<0`Swu/<9<%`1 X̟Yl{xۀsG:\ |g3Rp :}2~` 2nj#f6o!`kw I$IQWEw5^vGʫ_0[>e v|l}&"0}糂 $v|lW`4XĵR#gz<:~HUy<[J$I_U*$u\?!r싰] 3<=*@كĞkŞpups<\///////Šeů:xT>Z }*=ZxVᙥ p@l<#//////_?ߗypA$kJP>pü `"`0~X'` /θk3<G{_> 0gZ37,I$IQWEw5^vGʫ_0_P;>6 /ˀ>W0|;>6>9>3j&Z@\XuϠZYO I$I_U*$u\?!rr 9X7BugVLXxu O&q37֙uOE_____UXlXӅO`Hт[;kܿ>\-eꟽ=E`2lݬgڭ #//////_,'Ob[S|㯂A߃X}>{Xǹ(`p3%ITHyG:ן9aߩRYu}gzPNP]gx:aMuX,xuOE_____UXl X϶`A.H¢ `߫{X߉YIVܻm =f-zV9G#R:///////U~g sbyAwvb/4|Yl[q|0`ϒ/~~.sŌS nX}_*9X?'`?W$IRݯιjʽ~펔WϿ9~{W'v|lY1sTO*@:~,o:>wZ]즱E`2۱Z{`$IS↑"UIr_BdO k`n6->:߸9/A/Zg=7 Py?x:3)BBTabK`Nus<K@*Ԭ݀[TY2XOv6}3Ouy |b3S9`糯x&I$rUEʫ_?q z/!nn7-:9@7p%a~Zg7ÚuOE_____UXlXSmJт!V9n-<- #4wHWgC{mJߪȿ˿˿˿˿˿˿Wo_23_'/|nw^?;u`UyA,`'# \7/&2n6מyοGf1K1<'^smf.I$IRwTU9]Mׯݑ*"'/ӗqEWXYL_`8X'u"У X|5;E=E\83Y:|6$IR{*WU}#IWO:a?֙x>u_٭gM`YYIbV'\///////2efz2f4w7s7;MTr<5G;sHߪȿ˿˿˿˿˿˿W|c}.6Xu'so^|y2`c'j Xl ~v?>`4s{|)<%Tp]wgD<v|GC>b)I$IRwTU9]Mׯݑ*"'[.2ޯ L-Kg3O|~;>6gWk}>+[,`3LF*s Zkl$IԞ}U)rHRǕ"'8Xxu/gxku8+P͝ofZg7dz!3<kngFPT _______QF-:]lb@5nU,(,Tó@+fwoUu_______?f04O<b9BC)>W<b~[eyV̨Y0Gh)XscubyA'n.]>;S0'kp0|n;p}.XM#I$IQWEw5^vGʫ_rx';>6ά1Kk}>G ų v|l?᳔̐8P+E=?T|v7Xc=Uxq$I$rUEʫ_?q @: u}JnL/70Z=Hn \X0gPT _______QF_u, 6}4X}7\:7dz(\ؗ?ޟynQpn[Uw*cy>w2{`x|!`k#>hV̮YlV; sAl_Ksyg*y}0節=f;7;`3Hp"a`7p $ITsr_#U/DN&~e90@gE`@`fK2`w֮|VgMc'33Cjc:,+gz0(M-qͿ]$IjOWϿ$} uZT7ws ϜZg7,}g`>uUG :9yAS}/~!D9>^ 9u`?OX߫Ϟʀ?,?ry{~R:///////Up1̫a20'V?6"0sf9-XNlŎ?9Չ3ggx=7fGf+X8{X?G$IRݯιjʽ~펔WϿ9aȌe"E`2`|Pc89>o m3%-H$I_U*$u\?!rhGasMu}gz`3퟽Ibu}g6` ?BBT'ez.x6H" `>w(YZx~{9A"0KH*W"nŽR:///////UFx|F;E~2 OwsW]lgp)\|y2}|1s{\O> x5N|ώ-υ׀Gs }"~@$IRݯιjʽ~펔WϿ93|X/c|0[T+l;>6 ֿX +OYO2gS}E5bo} {K$IjOWϿ$} ua u~YBnY@u}{ZY'nl `Y?BBTaղbG`Nts<<uhg]Tn Y]A*p}/ss<Y*V]G______忊ofg9x | W` dڶ1`'p 'sq_X}so51+ ]gS\O_։8߫b? =8|k\s։^^$I~Ut}~WSkw}7{N`;:gDiE93ay:|nf8M:f.3MkM-6.I$rUEʫ_?q {fa U>35qG+/1dp#`$I$uG_sՔ{)r!rg>3E{QŎL>)Q֏g5 v|ljqk}f/9udd30*VϣX:ΜqZyX}I$=*R^>+'DNp=>Mn OO`nl u~x'Z4'x)TT _______QfTaV`] HтRY3T*ó$ R;q|gy=R:///////Us`fXbB|lOp6^|pX^/|);qͯ|o:p> 'A,/.>:fLI$IRwTU9]Mׯݑ*"'|-jf>Ox,OB}ˀ>3g ǎǞ?_|nc T\h>gó8Y,{!˿˿˿˿˿ !fh3^?ps<[% kF X_x^PwRg+Ҁp-\R;nULʱoUu_______f0O>m>7>Ac `w6X^F bcyAֹ{L@;q\Ou;sX}ۀuq|t*`&ϑ`87{/J I$IQWEw5^vGʫ_|~{XOi Ďq>3IU?c]6}ЬkXy$IԞ}U)rHRǕ"'>Y:9>Zgn733v3[fr{bܞ_fl\Q+,q81LX~x~ǂks{by>'U VNW>/b.$I$uG_sՔ{)r!r¬>e`L(@"T ĎǞogn53CYu̍t`.ukm^/>W՗$IS↑"UIr_BN:9]gx:̮KwZg7'P1Y, {!˿˿˿˿˿ !*g%7:̢qh,9Ize_7dz uka>?+1ݴT˿˿˿˿˿˿̞v1%`̴g 8 Ֆp`OΦ`  c7wco p8~4b.t%80H$IRݯιjʽ~펔WϿ93s`T8sffA3Z"gO|pXYe:֙\xsh_9$IԞ}U)rHRǕ"'sEn ϜZga737gxv:us<{>3XxuOE_____UXlXӕ6`1Hxh;GOĽSg ٻ,\R@#Y_x;q[Uw*c?5y.Rsc?flE8lG|x >Szp}9ן ~8ןP2> nO{y\$I~Ut}~WSkw}7g2g83)E`2˟?0tq3qP8:eϦxN|.doa~hgJ[$ITHyG:ן9a3u7ufZg^73?X "Z?K^"/////BJ' i,g)Hт[g3K?{V+mYbJ{37?|Ǎ]Jߪȿ˿˿˿˿˿˿W{=|s?n>[ov\A2f2 6/p/0sfop!xprf&O>Ic'7;pa3-Kr\%%I$IJu*:>);R^>B$}@qE,:G>8(v|lpO. UTp\8sSաg3_H$IjOWϿ$} o`KX밧ퟹ1slubk5ΏJnr}ȿ˿˿˿˿˿ Fu:e`n:H培wu?8p?TNej[e c\]ꟙv=!)ccx,Z"g q\ u< Xǹky| ӗEs̝X0$ITHyG:ן9a >P쵨B3<k%k3:93gE`Y?BBTaHh1^h"_4Z43ϽR\ |\ep\R?<uf #//////_?ߝ|?{X\f~|߇3ovb9?ϝY1[a3z< zwsnMbV=2NhKsuby;p~ p15 0(t\ I$IJu*:>);R^>B䄿ggFLep dnjĎX}Z|fm}RFtKgG=jޗ8N@}~tLˤ.OҌ}tl5E?0^Rg G>N|݂Ge=/rWQWyVv\VߘVcuJ2tߞz^*}'֯? Ds.~!"?ybXO?"!֣/ϒw\.Y~S\Vߏkѫ?cZӢz? ?#FBgpӅfF=nBgpk _߅V}q~w~w~w~w~w~cLO!y:!\:?? iǜʯMO3I2Eq6AN=G?ǧ+*l5ߓz^lEL~5g3_'~H#iƂ$C?7{{ygv4#oݷ$a/w_ ; vkAc}xpt%?:_^W?3^/BZ8MUntF ?=|\.{^:oZ}-Z[1DPF.ǟz}=Dwu=@zI_D]Ff_؞Gu}I\!<*~ޚrj믞jmz~\^~J=RGiQt: & ο{{ g_ `E!֣{!4;QZ1=aFZ_pʯs_$KST~l׸4#6~L\cx|jE\]+\ E叭f{{_?WUM3t݇GT-  9|toO+#??ߎ~gA?~돂o;cx~.q>znt. z)!!}+o?ݗI箟 dt3M/yuo(LߝŸ[~r\*Y<֪ҎJt`=>D .yևzj.~ o]|b+v]SszRA=}EǮ~DQIAF(rj믞jmz~\^~c1c1cfBy WI=7zl~=njHA/**3Cͯ<&Ҍ,x\'?9\U~b+*l5ߌc1c1f@}`^O2y[=Xt=oXgrp]>orpQfĮd O3b='פ!Ʈ%c#֣='9\.˵tV_WkZjc1c1c7+n*ľ{Ǩ4c$n9Bh?}`_㦚σBl~=Ϛ`8;;;;;;c1c1ƘWR7ӌO =n$yo'o 4&͈ 8[])]>o]P}t?XB9͈]_dy"sd[zN{'֣~\WǤrj믞jmz~\^~c1c1cfzZBKJA=V$6z#}iNp5fWgJ14(*ۣG|w+*l5ߌc1c1f o.{q&Ed\7Mw㩊[8;;;;;;7#1c1cY2% .&Hay!Fqppw3=N!0(͈]9*z18x)fϢbo^b=:#r-_=jqZ3c1c1Ƙō5!}TݻfCaPT_$n Ќg> ҌydԊr6ZJNyV=o1c1c 1iI]>o]cOzOz)=B8"5ӌ$͈;Ҍ' =7ۣĮb=\.˵tV_WkZjc1c1c7+n6bGӠ]#ԅ? UOݗBlwCӌIBlu\"PT(f{c1c1,f!#ӌ筿do'ҌXIz|Hs=.B!PI3bM2ءX7x,f\d<#Į==G?rj믞jmz~\^~c1c1cf6B4Aa NJ)?3\ۄ9Vb iPp_4Epw E叭f{c1c1,NKL>H2Ƥy]?fz8_ z~ǮBz?a$й& B_yP.Z:կzr-zg1c1c1ݟg+!}Tl.$|U(*W!6u.Fh3E/\BY%whp_Z LV(*l5ߌc1c1f`xZfy0CȻ| aǷ' =TSz^0=WaDf1,͈dL3znu=Jo+s? r\KgWOqZ=?~\EV?1c1c1fql*ľrNM5-:)uS37 TT~=?l!6pӅrBQz?i?q~w~w~w~w~w~w~oF~c1c1daRftGɻ|I4CYFq>W y[L.tϙXBfĮ?d9b=O%4$f s='\.kV)VǏ˵1c1c1,nVIKl&ľ}MнhU(*ͯ>3' EsLAϙe`g: /\$?q~w~w~w~w~w~w~oF~c1c1dIRFy/f]K3J2%zި+ǮpyUfĮy#fj]=[ׅo]3ǴzKfĮy3fyt_&o  PGҟ%o r-_=jqZ3c1c1Ƙ͚iQ_YYD(*R7w@=z\ЍBQBl: Gн멨l;;;;;;;3c1c1Ƙ% Eu 9.&z~d\%\&+]>o•sGfĮd7iƋIStgĮ/^b=,zW.Z:կzr-zg1c1c1JK$ľp  E?+)usp z,JQ\_bQ,^L]BQcw~w~w~w~w~w~wf7c1c1KW\Aѽ.Ǚ,#K{Tн.~{]vbfzQS)Į= =G\.kV)VǏ˵1c1c1,nMK ľ{|M-Ԅ0w ]7 Ec:t$CϧVT?o=V'64GUTj1c1c̒jHa!y뺷*bW&z&y zQQiL!v]YU>KzV_N2iF/4"͈dM3>J2j.Z:կzr-zg1c1c1uR7 ~1\6[._u_=zIBQ8zn1>(*Bl~,@X(*l5ߌc1c1fä4C5IȻ|IQSI!yS0&͈]yy/fK2btֱ{.Z:կzr-zg1c1c1eR7 `+A7z͍Blu>B_T4#6Y_T b1\#oτ+XEӖfĮ?dM3b=z\ bcb {/{\.kV)VǏ˵1c1c1,ntߞQW i{PT~=nGp/=Sӌp=TTUBl~uz|߭l;;;;;;;3c1c1Ƙ% i=VGC.>YXM[b''Aɻ|޺sF!02͈]!fz}z)>ѽbo^b= z m›rj믞jmz~\^~c1c1cfԍ>p5aUAEuRFp Ǯw/=Xz U޾@Ed45{j1c1c̒3SO z,2Ed,Wy.yo~/\'uiFۓ8 =htqg~b= #+\.kV)VǏ˵1c1c1,nGA֌~?'4sxAh?zTlBcҌT[p ;;;;;;;1c1cY铖cu>I2Qy[X& 'ӌXK0OȻ|ok=Ty>fLb8iF$Cz=fp,6_R ǤmBluq;?Op_4XVv@ K3ʯ&-b?\spPTj1c1c̒ǁ& y[(f& ~={]>o]}~~+\-G]$b=$ӌG$Cg{w}\.kV)VǏ˵1c1c1,nfnBSu?3 q;7Oiy]#_b@y7f_wb@u+*l5ߌc1c1fɠZFYd0y['L9|~"!y[pPMaHrіfzt/iKIƀ4$ !v&!WA,.Z:կzr-zg1c1c1UR7 .`Ca+BQ7)us: _ z\PQXSlCz{4d%=*oV=o1c1c >JJz 1iF/aiq+Aɻ|b=R캞kp0$C?xO]}{t?X1urj믞jmz~\^~c1c1cfnZF}U'aBQxk? i4^T~=gRp# =fflQTob\BQcw~w~w~w~w~w~wf7c1c1K׊ K3.y<ӌ'$g ' yo>BOz/=͈ͯyt-(*@Ͻpg E叭f{c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1c1cYԫTZ!@-.޵s]**῏ &vyu}^90v M X#ρt 'V l&>nٯ+]?ӄWnt_pp=x*0?C:p}ಮwn }GJ{Ip]::n®g. \u?u_#' w:8Sncǚ_zw̭1JJc ,X%P{ L(p}no \n`nQ럦wb% "ZZK~8+pY~ׯT:5pnf%.zRnmo׾ށ֏ Y +k!V`^9(pA~bzl`k .~Kԯof}s~7< 802=Tz5|L~J>ox?v ȿS!wZ?#wv< }à7ܠn9_-ߨvQpw 9f?(j0 b0U9As/ ׳r\۵?_ϻ݋ . \8#pVEm>Z'ف?ZϽ}B`@X>a6 O;ߙ6Oyׯ\#|jϻ! t,3?v~4ծWn~ᶪ뙁 _u=w} Jq/ Y? _ <pۇ >|}֗ ,h_]_ax̤k.a&w_O ߏ_ $~c>xݸyz]OQ]9 qm[_zo9}]?=]wͩ۹o] '_oy9O3CI]ϻu^ lVzQ  X7<70mpxyPqs~/<:tV`Rx=TzvxL+wsǿk9-|g`Ray S>AyNE8̓]gu}{1V]/֋ʟǛk끷:_~. t<\_]+Bs \a)c`)>6ÿW}`gwgV[g~+7t>2= JKGO@HoOOOOOOOOϠϤϢϦo~۝ kM_oF}s-[ѷoCߖ}{;wBߕ}w7{пE6}O7}ߣKvͳw+*/?}} >>>>>>>>>>>>>>>>>>>>>>>>>>1?WпFߔufo7oAߒ}k6mѷ@ߑ}g.]w[o;}/w{ӿK߇=w̷5>2= JKGO@HoOOOOOOOOϠϤϢϦoU&7[зoEߚ }[v;wDߙ }WnߤA=Nߋ/?,;-32|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|̷|7a0߄&7a Mo|0߄&7a Mo|0߄&7a Mo|0߄&7a Mo|0߄&7a Mo|0߄&7a Mo|0߄&7a Mo|0߄&7a Mo|0߄&7a Mo|0߄&7a)+2ߔ7忤7e)Mo|S2ߔ7e)Mo|S2ߔ7e)Mo|S2ߔ7e)Mo|S2ߔ7e)Mo|S2ߔ7e)Mo|S2ߔ7e)Mo|S2ߔ7e)Mo|S2ߔ7e)Mo|S2ߔ7e|+̷|+̷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*|e\eU[eU[eU.UeU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU[eU^r>2= JKGO@HoOOOOOOOOϠϤϢϦoOU&7[зoEߚ }[v;wDߙ }WnߤA=Nߋ/?&k̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺Ƭk̺ƬϔGάۙu;ng̺Y3vfάۙu;ng̺Y3vfάۙu;ng̺Y3vfάۙu;ng̺Y3vfάۙu;ng̺Y3vfάۙu;ng̺Y3vfάۙu;ng̺Y3vfάۙu;ng̺Y3vfάۙu;ng̺Y3vfάۙu;ng̺Y3vf^guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guf]guffr\.r\.r\.r\.r\.r\.W>Sz^ewON- =WUzǧ9|/臧O?<O?<O7鏧?x鏧?xg3< 3< 3@tJGC/zJЫ)ll@>҆ O69 S_C)5H<#3H<#3H<#3 (<3 (<3 (<3h<3h<3h<3]:w6SC/zJЫO cd>s6O(c3X5L3dg}x}g_<;g_<Ͼxų/}g?<~xóg?<~xdz?g<xdz?<9xs<9xs @<9ρxs  <9Axs <9Axs0`<9xs0<9!xsC<9!xs(CP<9ϡxs(C0<9 axs0<9 axs8p<9xs8|<x.s \<x.s \B<υx.s! \B<Ex.s\"<Ex.s\b<x.s1\b<%x.s K\<%x.s K\R<ϥx.s)K\R< ex.s\2< ex.s\r<x.s9\r<xs+\ x㙏g>x㙏g>xYgxYgxYgx Mxns܄&<7 Mxns܌f<7xns3܌f<7-xns [܂<-xns [܊V<ϭxns+[܊V< mxns܆6< mxns܎v<xns;܎v<xs;܁<}xs܇><xs?܏~<xs?<<yx<<yσx |<x>|C<χx>!|C<Gx>|#<Gx>|c<x>1|c<'x> O|<'x> O|S<ϧx>)O|S<)z =WUVN O/< O/<:?u^xz鍧7xz鍧7xz鍧7xz郧>x郧>x郧>x))))))))))))I$x< O'I$x< O'œIxR<)O'œ鋧/x鋧/x鋧/x釧~x釧~x釧~x鏧?x鏧?x鏧?xgxgxgxg xg xg xiӆ O62= J8^5z;SL3Tg6g6mKm-ul][ַ lC6-lKʶml[ζlh;ζjoc|׎߳;N;N ;β.bd%'v]ff۟__z~~ebmvawJPJl`s6oCڶԖr[ֵl}6lc¶lkƶl{V؎lخ;_w8=;~N?$;NS4;ΰ3,;α "/Gv]bbڟegvgW__-vfv!C+Bz!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!CN5ِCN9CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=CN9=Pz!?C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^y=C^jbPB=|PB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CH5!CH"=D~*CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dzn-eKl`s6oCڶԖr[ֵl}6lc¶lkƶl{V؎lخ[íߵx};Nd;Nt;δl;.?v]jjٟ_fmckgoحvnw؝"n-nZX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#F&Mh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$(բ5s1ZsZsZsZsZsZsZsZsZsZspj>Y -9rrrrrrrrrrqj>ݣ=Assssssssss:pj>aS% NSTp*8 NGNͧttttttttttt|NJ'N'N'N'N'N'N'N'N'N'NgN'ttttttttttt|VKNNNNNNNNNNWNͧttttttttttttttttttttttttttttttttttTr*9JN%SɩTr*9JN?N?N?N?N?N?N?N?N?N?N?N?NNNNNNNNNNNNNSũTq8U*NSũ ĜsbN̉91'ĜsbNI9)'夜rRNI9)'-縍|888888888xxNǍLL|DDNMLLLLLLLLLL|$$$$$$$$$ddNgMLLLLLLLLLL|TTNMLLLLLLLLLL|444444444ttNgNLLLLLLLL| LLN|,,,,,,,,,llNg)|\\\\\\\\\\\\<<<<<<<<<<<<||||||||||||BBN].,,,,,,,,,,|V"""""""""bbN'l.,,,,,,,,,,|:RRN'{.,,,,,,,,,,|*222222222rrN'.,,,,,,,,ƹs6m8qnƹs69snιs;v9sns;8wps************jjjjjjjjjjjjΝ;9wrɹs'NΝ;9wrŹs.]8wqŹs.::::::::::::zzzzzzzzzzzzݜ9ws͹s7nݜ9wsùs={8pùsFFFFFFFFFFFFν{9r˹s/^ν{9rǹs>}8qǹs>9sϹs?~9sllllllllllllllllllllllllA΃9r}9spppppppppppp>|!C·9r>|!,,,,,,,,,,,,#G8q>|#G8q>|1cǜ9s>|1'O8p>| 'O8p>|)SΧO9r>|)3g8q>|3g8qqqqqqqqqqqqq>|9s9s>|9 /8_p| /8_p|%KΗ/9_r|%+W8_q|+W8_qssssssssssss.p.p.p.p.p.p.p.p.p.p.p.p|5kל9_s|5""""""""""""Eտ_j؜F#kQl[I\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\W;Eŵl lmh#{Tl[s9ŜbN1S)s9ŜbN-N-N-N-N-N-N-N-N-N-N-N-N S)pJ8%N S)pN 8'pN89N89N89N9yN9yN9yN 9!'䄜rBN 9!'Dq"Nĉ8'Dq"NmNmNmNmNmNmNmNmNmNmNmNmN)S)rJ9RN)S)q8e2NS)q8e2N9S)s9rN9S)t(;ײ%69lס8}~*8 NSTp*8 N############333333333333 ++++++++++++ 87pns 87pqqqqqqqqqqqqsssssssssssszpzpzpzpzpzpzpzpzpzpzpzpzrzrzrzrzrzrzrzrzrzrzrzrzqzqzqzqzqzqzqzqzqzqzqzqzszszszszszszszszszszszspppppppppppprrrrrrrrrrrr*9JN%SɩTr*9JN%????????????SũTq8U*NSũTqwy'6e]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]v\^ak؜FmbS_GOg.G)yO=>yO=>yO=>yO=>yO=>yO=>yO=>yO=>yO=>yO=>yOz|BO z|BO =>'z|BO =>ןO'z ^B?ןO'z ^B?ןO'z^BKy =/%z^BKy =/%z^BKy =/ןO'z ^B?ןO'z ^B?ןO'z ^B?NB: uz ^B?~B E'OOE'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"Z\ϭŵl lmh#[ۖ2[nغo؆mlئmn[ؖmmضmo; vm`voo'؉vlةvngؙvmعvo؅v#.?KO23ҳ+oonӰPPy,lXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RUQ&ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-e5.lTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RTKR-ZJj)RVQ]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]ve]v_[㝋y{Z{Ϋ7oC>W][byVwޣ5R)rJ9RN)S)rJ9e2NS)q8e2NS)s9rN9S)s9u|N_6g6~h]Yu............>>>>>>>>>>>>"~Plކ6m] _w5444444444444444444444444444444444444)M؜F]Mw5ffffffffffff>]a[byV?wֶ֒ӒӒӒӒӒӒӒӒӒӒӒӊӊӊӊӊӊӊӊӊӊӊӊӚӚӚӚӚӚӚӚӚӚӚӚӆӆӆӆӆӆӆӆӆӆӆӆӖӖӖӖӖӖӖӖӖӖӖӖӎӎӎӎӎӎӎӎӎӎӎӎӞӞӞӞӞӞӞӞӞӞӞӞӁӁӁӁӁӁӁӁӁӁӁӁSTp*8 NSTp*8999999999999888888888888999999999999]8]8]8]8]8]8]8]8]8]8]8]8]9]9]9]9]9]9]9]9]9]9]9]9888888888888999999999999=8=8=8=8=8=8=8=8=8=8=8=8=9=9=9=9=9=9=9=9=9=9=9=9888888888888999999999999}8}8}8}8}8}8}8}8}8}8}8}8}9}9}9}9}9}9}9}9}9}9}9}9JN%SɩTr*9JN%ӏӏӏӏӏӏӏӏӏӏӏӏӟӟӟӟӟӟӟӟӟӟӟӟSũTq8U*NSũTq8888888888888999999999999888888888888999999999999C8C8C8C8C8C8C8C8C8C8C8C8C9C9C9C9C9C9C9C9C9C9C9C9888888888888999999999999#8#8#8#8#8#8#8#8#8#8#8#8#9#9#9#9#9#9#9#9#9#9#9#98888888888881'ĜsbN̉91'ĜrRNI9)'夜rRNI9999999999999c8c8c8c8c8c8c8c8c8c8c8c8c9c9}c9c9c9c9c9c9c9c9c988573333333333S999999999885-83333333333S999999999885l83333333333Sو999999999S8S8583333333333SS9S9S9S9S9S9S9S9S988583333333333S99999999938385293333333333S9393939393939393939885t93333333333SY999999999s8s85933333333333333333333333333333333333333333333s6m8qnƹs6m8snιs;v9snιs;8wps;8888888888888999999999999k8k8k8k8k8k8k8k8k8k8k8k8wrɹs'NΝ;9wrɹs.]8wqŹs.]8888888888888999999999999ws͹s7nݜ9ws͹s={8pùs={8888888888888999999999999r˹s/^ν{9r˹s>}8qǹs>}8sϹs?~9sϹ8p}9sy> 8p>|8pO?qO?qO?q3Ϝ?s3Ϝ?s3Ϝ?s /p /p /p>|!C·9r>|!,,,,,,,,,,,,#G8q>|#G8q>|1cǜ9s>|1'O8p>| 'O8p>|)SΧO9r>|)3g8q>|3g8qqqqqqqqqqqqq>|9s9s>|9 /8_p| /8_p|%KΗ/9_r|%+W8_q|+W8_qssssssssssss.p.p.p.p.p.p.p.p.p.p.p.p|5kל9_s|5""""""""""""Eտ?_j؜FskQl[\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\W;Eŵl lmh#{Tl[s9ŜbN1S)s9ŜbN-N-N-N-N-N-N-N-N-N-N-N-N S)pJ8%N S)pN 8'pN89N89N89N9yN9yN9yN 9!'䄜rBN 9!'Dq"Nĉ8'Dq"NmNmNmNmNmNmNmNmNmNmNmNmN)S)rJ9RN)S)q8e2NS)q8e2N9S)s9rN9S)444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444t(8u [˖lކ6տr&Tp*8 NSTp*8{8>vz-]׳]7vHAL۴;6SqDԗ(*ڇB)xiPU" rqR@3^;^C'gfw|3ݵJ-N-N-N-N-N-N-N-N-N-N-N-NNNNNNNNNNNNN=N=N=N=N=N=N=N=N=N=N=N=NNNNNNNNNNNNN#N#N#N#N#N#N#N#N#N#N#N#NNNNNNNNNNNNN3N3N3N3N3N3N3N3N3N3N3N3N N N N N N N N N N N N N+N+N+N+N+N+N+N+N+N+N+N+NNNNNNNNNNNNN;N;N;N;N;N;N;N;N;N;N;N;NNNNNNNNNNNNN'N'N'N'N'N'N'N'N'N'N'N'NNNNNNNNNNNNN' q8A N' pB8!N' pB8!N7N7N7N7N7N7N7N7N7N7N7N7N' q8a0N' Dp"8N'Dp"8N'ʼnDq8Q(N'ʼnpb81N 'Épb81NNNNNNNNNNNNN?N?N?N?N?N?N?N?N?N?N?N?N'ljq8q8N'lj 86c86c86c$p8 N'I$p8 N'I$q8I$N'IpR8)N 'IpR8)N'Iq8i4N'Idp28 N'dp28 N'dq8Y,N'pr89N'pr89N'q8y:ϝmgOٟ=vb+Nٷ͞SrkϙgOMްi{ŵNڟ+5/<}쌽ǜvc?iv];-kt`?fVnHؐJ|?[t^\y{[i;L|MFx~~ھ.W+^+;W{jf =o}3==sG6M͙*ee035t2ΰ37㤇*q֥{_(;:nR\j'Yl_Ϙc(1|eRspfƽVJyy,mK`>r맋S7mf>͒'7Ͳh4CN{ң{wU=[IzOv̯wPFCRcԜ߼zlF̌uF}W:G}m|d6vf}rިOxgghgG ^O֑T|]ߡg,;p~~/}yIeg+^ۑ2we(!'#!>7ߛ^&UC&-^x#5ʤF^[W;2U1o̘om7z&GʤZ^Ƨnr_3瓇}q%[={drv*)2߫Zzlyth3+V«NVpW=zQR?zLnZK$kO`Dʜ?&-o|f`}o~|FKR7-BNoiyU_ָ,ej~0M㭯mNC| ԟ~-}U~./[w~,{6q=I="ĊmF,q?zN_ZKshR;d0_ߓ_Xχ}M5-6Y?kgaBƽm-\2KjRW*/.ydr]X+s)9vTD +;c1o^x]ѿQ7o; ߿ݹWx=b^ٽ{C4-<7hTs>\oyl/>\f5Ϛ:lu%uWs͠.GT}ws=$yi4+t5{k5^y* w6l^aS╷5&A~jڡ~\ k_m?KC77{zSs6kWI斅u3'w7'Ez=~x鏢߲T򻲹0ѳ(k$> 2X{؀P>Gusm%}Cs}>)z\!kX)|ϟϐis{s}\ֳ͟ػ+ZCKozFsg,溑gcӐ/ 4k5Wg2O蹜\gmA\Gkm:I\_,߹EߧK~?ޣ t":u{.kz`OJV5W\[Nڰ5~s鹭)?7߁{ϸL}Զ ӵ%G?TBz_lK&v,{: :$Nb=T+6TI}>CC=*f5zohorƯt)Wcp]@?T}h"+>×$HvgCk=$~9'Kk݃ߌ>=, [hLx |y.ޤgadbFkߏ<Rɫ]{4$*yO[~y2s a╣3G9R|h\#z[sJ>Yڧڣw7j?'!7~?LtstgWYC|GgW3]=ǐ[l;$̶k|Jz.1꧹#1OrVv {@`ZϠ+sw8@\ Z=oU`6!aTkoʼnT_Ǿw=)\\_}d/uQׯX[-:Ɉw7|>^=~q欶og#%k7{~>SrL_1Sn<Aɟ,ez}'w6K ?cة%bog|5J?uѩ\+J~J~_14`~o訳%$}hѿ##S?1~z潒ehng_tXx.??bx\dW~Ry>_,A&Ow?Wh\{6~ЂOs[*6ȹ9gl'vUl;%6+_ƾa6z]s=^\H= at+2Dg{]^)r9ǿ˕䪗aҏ=]wW3R=Nr,ضS_ c~׉܎X_OK>ѫDW[wr>ZN"^;OឞDoP+ۦ^/ހ_G9ƿ_[WioTP]=C-b8 f .~ݒj" ]SYQ49?ri!1Og[Nоo3%+ ?wiuTЎwo g>ݍGA-s:^ڣ~9cyǧzA>|h?o=7'{K>Cđ)iOTϏ6W./ѼJu5؋wa泋%}g/Ksw硞qssR4mg~[Y0:58we|~dB.tzu/EĆ59okS|&㛟A2 oگ}nա Z_!SŭΕj$y֞{wWyH<]~}^|xdrk!$aC.@N?K;ClqTƏw?a8@kqV/4~\΅}ڇKskݺb*W~9wnӲLԹWc^6;.{mX_/o5QN,Gs{Q\|tQ7K͵Ss}>\_ֵss@o4ǚs͵Cs}>\>~<׋kx5rq}x@gT5xQo_ =l/vw\csvzeO|<_/`oL76c4Cm.]Y,\nmkdvTl[^J,דu,O~)8&/%->Ϳae갰֐dLۇ~n&7#vTr*3~)Y^_JkqtV@%;6VAm?}Rlכ{ih{k3z|篥?\S9uwju7H㚿iFɮ-ѭ<;<˚K7Da~AߝL_@=Gۆן7&hO<Y~?(Y.r{!K_*'iSǹSɣ1:k̫/:$g834'b5c߾/:ʢTIk':r2'<;tӿ2м.:T86|-AcY&ۧvxL.Yg6u}w5g{C'8s O!t'ȷ~7/ t]ȧ}It=.OFYz7g'roe@?^{PcV~ETln\l{lF{]Wou~v~(>T }*OCGԮa2w~b>+s9}/sSBΓϰuo6U[aC'`?(ڂYSYwWsS;h`ŽΥv?Q?N/=|OѷO= !EFO7f'7׋)|gc|y|wl7ѧؗE?`P;O S?;{XBۡSz#f򊰮\*1Q/<zs58`ÁwD=_{^zPDa]TԎ]cHyy'=G8^kx ^ `o[8b/aԇKt_s:^#V =@Yŋ@[VQ2='W_.YY`Գ8L3h ,KDs2/_CzQ/!#_=}WŸ^8?ŵ[ȾBr'r\011'Coܖ$Y=S(ƌEG{skS:~q)߸Wq]Á7~o~J֡Gcl/f.3_G~[^AW'[\bf  گX5Wjoؑ_ =)%(bD};Lru#dϰpyG)Z# Ǽng- s\cIޗ_{n˳r.3/vg< z9GƉw3߾uhO\%cD{Ijsbn\[uMwxM}@Xk0Iyx?3?Q !^ǎ=癜 6 ?W]C;ub><,ک8gd\|bc,m;s"/YXxKˋGSc8l\sPTc-Y{L϶y|3v ~"w~b΂oy{<0N?ŸpfżG40~/OB{8L[` G/̖ -uu#qMsaCzhkЗ~}/N!#G;/WI1ߋRAg-(z g:"ko]Gʘ=OZt֮e;{H_# BD|Dz0s%a:;J|F/ ~߾:ሿj\,0UG#xgJ^EWF*g'b\|;2@,.6Y[gt?eQ߈j_|ý~cr; m̓G:!Go~#xz_|f#!߈'jyZ=d.b4IC,X?:83gH!~'&v ' ab/t$~XuL],挺/]b#|$t%xc.Vav̓5\^@t>f=px ؗ{@Nޥ{ !79m_ Kx&vW<)ޚݞsOE}y)p9*O ~cTz -jyڹRM]+ޝUa5og:K.{&B? |%v6kD#cFsv>yNRW6%}B'odļkiyu׵ݝmP >1Y)l}rFc~]~E`uM{y.LчףqqMEf(椂aqE/Tՙ ,\ZpV_w_:l.9XsZ/-K#|9&Go_gOq}c~y*<\>Œgc]6Gc;G_ rJs5;Xq~Jm6y>\(Kȍxfdsw/4pR ҵcHZC l/2^)81Џ ژ5Qv+i4;:!8q]d|]'3ݧͥn-q3dm ˭XW?!'iGs OX}/Ʃ?yŵ9GI.gk5ںX}xPvxu"z/iqi??3#dmqď}7N9SXqܻsʩlĵ`*8_W;Litkkο@~_.&sQjUw9S܎5c_ϋXWݿps*X(8J} ig)1¸wԶw돬یx=1ڲ+Ź7?^JѪag/[6gϓl/Ĺ[/zx>4=;|8x-HN79YrȣZ5I;꼩ٚ|`jg9}39["Mgg;Gg\q}wz'HPnRom~wX{qY֓R: [\;?bWh#^tVjGzX?}An:ɧsб|(#O?,cBܒJ/) yBtGLFlwA4cs\:Ǹ&ϣ΅W59|햹\ѓcg?g ۗ~]̺.74"q篑A5/y9W¦~G#1F~*5X5\ns-Yǵ?gg͹.)cgc,ӽ}߭O#6yd4W08N8 ?a.Y=ot5B;9;Q_rlRq??NbM1 cQd(S#Ε\Զݵx6֎uͯ^FS`k'ˇ~05/*ޫ?y-x鯝|rw~k%cU2^Өϵx3=vrKѳdyOeޏ9m>8g+[Xk~uMNkkϏ4qǖ:Ϛ[9` {.0Ec0޵w-{~`\}m}>o .+WLAul\ q/R1/q  }_v 3/11b1/993_",to93d7žSyܵZER?2Z&gK%Uc߾O }?FSx|2uޘ/:-ҽK<~oT7sqn^w*vy<{b^f+TVG/1bއ68ƼS~Ҙ3/b]4?'mo/+5:qkV^\o/Fwu"q-yerVWFFٗ*Ρc߾~Orsq~ď:^4qv/QOƜskWS^-3iuN7;2X~xk~s'kS={GW6&'˗~kꢷ}st7k3 jA{1™tfq0]ЌvuSS7cѫse{Y_Zs\0 zϤ}zxώM=S~<[t/l6CƌG|}f03x2/hxr|?^v!0ܙyL97zssݳf1yROv|8 3UV{os]{Ȼe/gƳrΟnjyPΔ Y!wG90K!ܔ 5wᑚ}A1sMjGbgf#s0SS}z4s&hKȋ|f}=3 8'a¦{G.sv|N9 ̘ۗε1LWc|x;WC/^%y^3f=q0ӝ XC2_{=,>9رڼ{ÿ5wft{[c[ #u3t*yvuoY;;H>3Y9OkD\?gwuTG _3ye6y"qt_KmKEG1r's,K.{̳FnOz) L sWR[鹃W)q˧7̐>Pyg2cy/D;/g3`gcNǂ]{44I{qkSիS}kaEL\"# NHN˱/<ޤ.6x':3ҾYπ}flEyW/־{^=3=!D_!7Q~#N#r{ο5ûhgCC0;Lrۉ~*~xtLsnny.z?J%yEjݬgHя%h q%Ў]}?$ m8^5.x'j尿EsSzN_ <#/B?;>l޹CϏ@fb˳8EzVifBÜ(:nuujqD*4ZQm]ӯ+F,8@V5:׵ϯl.~9XrwR}/׿/˜4Ysm\iw5_$^z`n~Q]xe>oSyH'/vɯ{;9aO}C'smN|R4עCɏ'tʏ:!!_:GGz5sCcI~qGd+1ge Ү=jd*>6awErLٗHK|lv?vp)tz+Y94s6@Q3<9>`yH"{Kng1cKtO]&ϲbzZ?N|_sݩ}٩# mod9ĸv.չ?sS8coJ>4 1ku/֥BQ祿}0~P\yW#co05Y`ml"%e 9CNt}:Wrj\rB'w~\jpSB*u\5O~39v =?ruN.`R3zx6F @=O`ܕ=7F3y3z&\>?'=\r7[Ϯ/rT㹼c_K~ѣ蜏K~y?g37\/-.*/ЌޛꟻmK~~!S?'/"1\ɿK_#~$]Ecw;K~Jfϕ:ǹ(>?7צ/JS/NϡCTj^ۏv/^r!B!FnEl};[;!3`5'.Kmoy*xo=8Ayudvozi߇.MiVoG$kV?]S;F۱~&?џwqF; ~ׇ__9?%{m#iAY>5_ʜ G{a|{x۫%C`Q_Jg{_Ov' b-zyW?_{J/ڗ R3˚Tc]VoHf%|߰ϟ'桭3볟'N{.70+|/o휨/.efc;𻉁/Fb@;ɍ̕b9ݢ??YkЕƖY}W}?Gr\><`à??\a׃:7٘}Lr~>}+n>I[W} H'SCF'\%y 江\jS/ճUׁ<xw.<O?}_E~ΟC܎>WN$8U 5.|+n^v~dk7^X/$xƋ-u}:~/w]F,S8.FߘdEJ1>.~7vO-Ss5<_/ujep嬈-cc}f1o_]'psוߔn~v>f}_ʜ}qG}tslG7'zfk}FZ?|?{ӏ=qq /ecUѵS1֤y. s5c1xg-3h#KFLGvTǿY5{;سg&hNWglM&'1o_#|5Nίo[]a썿WGhsyMmnmrwv|?.;wkguwֵL~UXNvܠgnK'9~]R}*|m*5i.L?KAVW<{̯NA߈l,=S{Qͯƿ ywY u~e׿'vPKOt-U?X׷,~f.q "j];y]j'yol?8uďu;gqk7L?y"OL4{1,;>w~J<=ƹcsN +qE~$ϕ%u <3rBO߾ qȱ'ɮ4n]434S:W5>׸iO,K}4ClнKSk'zR_Lec?3 ǺƑik/~|hjΩ}yzL֟w1'{ L}0OPA}i~;0OD\(:zFopĕ5.D>d*.vDO~< G7e7OGeLr}@U^j W/G'Ʀ3~}z戧;G}#=.L%bF(rE8>s8Zk}F~sؓ1ڽȱj yvX/AlI|^yS;;qs13=K!eKveKۦ=4)ȳs\zv^nnrl ,cqq#Fϟe)GͿ_{>(^֡g?{^8nLseGYGkRQK?Wc*Gy d<b{ecXd u|Y*u*],h YdWvm=s GlwiC}y䙍i-++{'(~8Kуn|>G{ ^۱n=?kT0RbNE2&7sKn%ǖ߈qc_yĕK )BsxJ?soo}}E_LKq>s_}yTpv]d6o(R15Б.:ۊ삏^;ig0vAߎδ\ѡ'sMl.d" }oUj5r7:bhǵ{ssN*39\᏿/CwkӻĎx^EzF+=\݊p닃YE7caܞB6=Z|t*u%lx#]c%tz9<81~5srGo/:sncQ{lԽ,~|~gtRr\|gtwFy\}ď kk s o/]X3T:^w,s:vX7vYOZ2JL8XcFg&^Mީ5,gn.M?q_ѽyf2u2}IO?>zg{k?a_ TcZ#?_g\\{Ե\?Iސ[.~ѹj$~ckﱵ`u@*XvT1ngaȑ1w8i\S*έKrW\G"3?X#(@}[[bia`.XUbl:~eG~B=)T|=^8cEa pɯgD\hv(\@?Y)ļ%s&ឌA/APK?:2|Tj׊f+u$:]4΅1~;9b8 r'礂{o7m -b6eۿ_?eǼtֵGVM~'"΢ a矱o,#?Gcn/>8_4&cF̷{l5OOeV*uJ'd"ڷɯ}%v??5ٳR?;OzKNj:ϧl/jCt 8X$Z.>Fm|c$KS9ӻ; Aw3;ճJr?@2{^ih46l&}8 \@7 $^2mT9u _aM'[vM{&'(p?s$>S3 FD= =]? C瓃dc_s ?}l ~';W.1$OnqX_Og6P"7dڳ/3?wMNkM.Ov7vqMjr5#n3j*>ꅹݿO.˳T_\|@[]~u;y|ir{~ӹv溸DG=8]?O,ܷg}ƅ_A=?yKH~ox'258Z"~Tΰ<:wnIrϑ9Խ㏚G6 ?g2kνO%CgΏ8_"^ x;vXdix=㳴ƎP_>?5TwwύK<-29g_y}./{N.<tO3c͌yD*X)yPo-='囒ޡB>#azdMx=w8g!o4E=Ϲ"~gR7;שb⑅䒑؛9)::=KS>cN~ԺkgLո6fiC# rĻOe yh|dݏ"^a|F<; 6 jx[JUo{F|G\4b$4~rAwgs/e& 6B}Gf]Cڙ#g9Z~ ^w-[q#om VFq/` +tOguq:'=_]K7xW䠱]gMAØgƯ`_X34k#Hx߳L?6bTo.c]kqn+vq&-GnqkTz-ktֵ_/-L%|zo$ӽʹbmMy18Q߽>Wr_f~֞:; ?K2)>?I׋gZ3NXvGu!ľlD?G\}׎/Y۶ޯh<&,1` :vC.+.5_?Y\xݯߘuس-B_3x.קY#nTa#l<QĉE~5&4A1zױ?+yל {g)Fd]A/uI~G73Ƈi^N{9Im;.9] q{F%馿68vMx?buV'/ _s`ꎟj]:B/ЁO1o_:|5j~84u"֙FUL3P;$c>9n}yoNV̺(W?=γJSXMGs1{ҿH{ox9Y{Ϻ<ϬO]p]3G7:iO @@{V*5_o.yic$?u.Xo~?t_nD_?8L:?|0хA]J{q6(W7c`@/kz*~Wv-t<׆vtK PQW9+yp=1ƵQN}ox'+SߝLEM]\4ZksXR4K3ߧ356<Ǵ^A]$w^"`s?ؗ韓6Gpc̠o}g_;QB/j>/0C)=0 u8KR?;;s/oswX(ѣ]J\;p'XcMjϯwYVhjq'Ѽ׹$b_:&{Gϸ~ eg LjqkO mⰎdh#*l-6>B/߰ϯ,}?Xrvӵ4?~7^Wz7T<,1ƹ&>A5u/b<+"qzG?hcucSU:&< ϷMS}% i|? CqB.l^?58gp2jFD %wC υq)O!`u? O^69 *ju޳.^Ty0pg/a36,D~?3B7׾Gap7#WOTG/N}Cs2nKWcIA:a-r_do9 ?ѳ$Q` zj*2#6/~V]r񟿟 voD㯈~XgTk'gA]8I\΅kvVaم ={7񧿧gY='ގq΅|_?w8I}|r):BAqإ/j+N}s4Q6~,;ПGK>'ĵAg6^z_OoTXlߐs _F\(#]??a3}}8w܎1쌇7Mk+̥DXceױ>?C\ǜҰ66tN$㟬{~z[#ocS{F77I{sz{ߛv{E TG㞿_A5-vǥbw#NdY9g]i?GU/ΫS=~Af9 3`l1k=n \oK&U;ƙ)/.ҏ]"N!6JeOA={A;+Ŝ+sU̐oA1gOa p&ɧ?OƳUχgr{.s:q= L5?~fv*?WgĿ9c-'2Ҙ $ku?r GR=Eٸwv^.:{Zx}k~ɢT|PAoQ?,l&$5~.Q_慒_)~^_n΍QvYT4`?I{I*Giugz1wSU\{~6o~yؿcc?w_0}w8v wuֵ0#fo\O=Ʊ{ZJ=/;>Z|d+4c`rb*z)Tgs1 ٍ3a~l0܍8"6R[].&ڻ:ũXTjڽqwvj~"a]Fbތ`>#y/=!wqwoIL߹R=~kSsf(O%?6'_@.-[ #صW'2\ױ~ 9<"g|+>32#SN.uc>xLA쾤qgǑ W׈C4}u[jb0K.t8ۧ6Vĩ]\Q85<[uM~? Rۏc'a/G˗K?{䂟GI??c݄)Ϟi[#ۮ^񟍧ؿoZ~:'WSJ\ugkF5<'ps91cKثA}W,?NƾN;@1d~NmQM~W&z] +dzm*sq\jV!{K?J%;b+՗~cIJlN*fڒ(iwx/ L7qNJ?p"{>q࣌︮pbky0d=>뫴']v3xYfs \p5iO쫚q{yǖOq禒:;z馿ߏA>sw[dS(\.emEam[uwv=ωsiM=3lׅxy~V_咳S#?K%ǧOi?/oQ}yd_lh\3g}gq];?3?gOK ˜g2/ѯ<ſ?Tx˽cȟ3zT|ػ:?GI_>sb;\{s&L(~]>KYr{jq1v@gp~w?#ƤgWΔAȳqzLA?~~vO /t~$oJ.,v+U؜}Eo캿6xM?B*S9y0g32##59okuV3:ߤ֮quM.\3ȁ/ll~3quźGȯWs.8p׌~Z[]`Sc~SNYǞ u?/3;]מoLl8K?zEPy[7g_#2²Hφ&58{zruMss1zu*g@qztֵ>Dc.#~QS>^"~%'gɠ_ڧR!Z'9q&rď\y;)WxD.@ہ녹?1{f*s GLz:ߤ}4{}?]!2%Kt- XNeGƎȽG?m}~ag/ϡf=ԞHl&#W WgaGfGNX%].X;sN`̀ac4OjbbBa%Eud'G?*{O?~?Sk' R~De.E.z`w1Xjx;oңl3%%`3M5`DF>q~jY0(5ˏ }aQ_͠^W\,̮qƿA33= =:}J2j슕ag5z0ğ4G7"ƞوfXX4ǧn;k|zQ?O_͢٭sF4v>)X gH>K'׃?pLj_:eND.5\} $qНB1ɩ` J 6y'>\!yU3κj/OmY3Og|dfp슃GSU<3ɪ1Z?i'g-_>G 녌 ;]Ĕ_m\SbDpWrm\ٓ~_]u{*Ԯsnk߿K D,3"G債zdp-}kLmwF?\}G!5_ v30+xHog6ND*yėm6pi4νotvݝ}@nNm}gKׁ 4r<,t<68d|=0Znճg9`V9Y?e;5OM힗թo"~Nĩs=k2GrNj".D8uq*rM[giɮŹl悕/uLpm@qd8|K1_?r'9!a3vEy,v*Β9oG2UHS_'C]3/V}؀Ɵs|~˯g"`׽A|̔+Ln~1ZΟ- ;օsSc9?c0/}Gq2qݞ7l~g+'ϔ,яqeo{|`xsĜJ gĖ4~TΑ{TjQjXX.5wu*6̽Էe:JO?7Ix32<wW`v*:Ʈc_׏dgE29!b|>..4ax y{AN/@ ?r ;r9)ϱ]?<c"#}?Y_J,<m3:r\ΊxA'\0ng^{tE*{y*B7vwZWR\;Pg=J׵>Q/ǧ׿Neph-6batiũq_諠| twrA=snDZ,s}s< Ȟ/n]?ܩUޙUƯY@1RFuĕ4l6", uA)^LCgG߯NCL`^ˬ2cY#|1ɯB#gAKsAyp/:wujضQ޹3rs\g'9Ur9'M7x(>1~"z˚sd ^}8$+{v*(tއWo3w,{OՓu T`YX?}w kYh,,i}%}y6c^k8!=Iz5εķu1OXϔI 2k:؊눩׵5kS\ں"J^?s:gj?n;h &I#G>!nylu[_v,=oS>+?ȥ%q^\f7- ~|AD*8R@/s ; |}׌ŹlMDC>h\M,W_w=jqx&wuxyrk_u,c왐/׀^ܞK䈛@Ԏ "Mxuؚѿ׭v.pY/;?=g2t*s+wvA-evԸ~wsC;ph_m٤ {qԎ 7_9wS*~K}b:>4u34ޕϡ|qj*Ǘ{h=YQɥ7褾3>[ڳ"&Gn[q<63ɥdUnEv?{nu~^Pk/jv9b ؿi=J =uF>3gGo"Ve_3rl8g䗼{k[>\_Tp߼ϗ軞>k|wol]'#: גc%'BαcNj* _<޲`1Fc徛kӘ&Q j * SEAAQP]5*(o?oX{Vϩc7,n";ovac-u5s}Z 썾-U?5:_>թ+/޳KKc3{]zG}xzlGyry}^pKZR.}O3)us_/]'ׇޖ^ĽH|]s;˙.}L??9*#~lտAw?R?O>[&zA6&){T%x.j|ke?\wOӠ>[}jߜ2{z`O=&Sl s3w/ܺ_u«>nZ'9-Ϡ{?YkCk]_xl%#+<+bW޿,z=xg̈́X"-WFFA~⟗j7SoH~Rs]un~&BN1<1_Uwۢu{G[=kW s ,AxߟŽfpǙKwM"5%>X<*_ɻL:N|g bV-Zjd}.< sPsk?93;YCPuġQ!k;DŽ݅ݠ}/(O/=3ܚ.;b|G?z/>]j}49`PN|7g-V?`?~%_keԸb:m,`bM}P~^^ LY&nW?'_}5y l/':?_ڇ_I?x(7O \zδ~zE)`\Ϻg)5{\[ayq/MYe #Grb/ZC&+\ե,~\]`=v6~_84?~ϴw*ܯRYuwD틹+Q9Vc+5bG֎਺<*{j>/>/rF],W}y\&:QƝIEn?g(g;Q=ϝ+taǂ7-sNAۢjɩ_=Ea,>0~oT f,/Mr.yKo?NYwF~_;3~ǯSzskwW~4O3nL^KXݣ@/е:WF%`;B#vR~_YVj/5/Qsȯb@:xU5|ǰ^u^ٷzyc-&OwӾGl;II?(}so1j_;ve߸!j#y>l%|}p8gbo_kF13쌥F,@7ygY07/A !{{R~ߝZlm<+;/I4Cѝ~knuk>Mbv 7?9/` J?jZO_a$.5kf4YP\kѯ=g1_+Z-#Џ\Gˢ;Cg5P{xV~{nZْk30n!?S&1,A~үZl…VxuT\FY4]$S֘/\;;?s^Kdѝg$ygpyoɵסZ1{ku~V}uotؚܳĠNzH;~C྿5*FjǠs-5Ψ8={5Km}~ [lw?Q`n?ξ>pꃸ_pլ*(a9 JH˚^_J֤y]N;O9F+Nn9Wayb4o]oQΗљQqf8Ɛ_.wJ;Ǥ_4ޟ}KOt\ş{>QYi>n߅i~zk}2gx;~aCk߹"Ɖ _7j ү‡{z--6;Yc}W)}բ=g};^w]ݪ_؞seTdE;~b\Ky藝,PȖm#PWEq?G's1zD-/{(j^(9Wh s*HO>>כG9ONū[NƧf;/#9c//ٛ8߱U_/ "-5;E*sn?8f0gg b#gNߚ\Zvׁ=uhϟmw>Ռ?#?7DK~O5Niȳc,,5*~:OUGcKp~)wU%=gXu+{sbܡtqJGOCߐGsݹK~x;7Hy9*;~~B8F?Uj1>ubӯ |UGI.yz?sՏߛz?ra\] IF)ny4 秨޺\]G˷7?xĮߋ+z.ޡ~ ޝA R'Ɍ ?';O3ޗ߻"YoiBVI@/G_I@oxjn߷&>E:HX@‚');EC4x]l;?݂]6kj!;S_'{E>?T};'\Q^],hgQx;FO[-+Y3\;vNC|/z4zB??y@ݓ?sNקL=JŰ>T,Ϥl?V^CG&.jz?;oI'goPZ02y}_2L0@F NJst>)eWwǨ}zu~{vZQTGrzU W/yF~M5g~3% wS&|tX4V*bD>gG7Oigz?Sva_8?_Gfg?~yisnt;kk/Lfw><6_;}+s?E;*n6o_?_|W~gy)n t.ؓsf2{3?% әӥ?|$46t~ʮp|,]OřSt _Ǭsu]ǟڛ^na׊V8 fMws_}%uN!y&`GN/؍Jǟu_ }|< IYOb]tCOT+=1~>>Sfߓe#FD*c%_c~@~^nDG #_;WT qSk(+'k~EQsDXd'4[{43v)Ʋq>/{(Q9_nC76'K7xԎ5S%1)|AT-3t9~Q1.Ea/ܕYňz~gf2?X 24W2sdWsdgz^=*AŽK/z(? G;l!5UI㿽=_ےŪJ2n?΄_#d9X8g:'K1rt1wn?yf2] ={atݟ֦ J]+V=d ?vE76߉:56L_d/{\6kCɊgb,g$Cd3iKU\ъ}΁ ^~~&߂.,e䕸+RT\h.[?=EjT|K@?3?RqW0|<4[*V>?ca+rL!ݚp|TJ3"Ψq,Ȳ7E[j)fXtݯä'EjVŤu֖(o(uKһ6O+\ {&~yPɻo&}ܛ,)mbIۇeCW_}t^Ujf~agdտCwؘgz^LAy}pFij-ZJ,BxC!rak@&=+H&cc?6O?;aUkv:| S'*S.QZ9W>zo9͛[ck{4qsQlχ3SQ?~_؏.Ulw U%o Q1OFN\fGT\Oûsyl?\‹Q[c}};~'s7ou7Ql_r׳>wytuxET+wǏN},GN[x8-Cl៸ⶍjω}{z = _:[N26*ι#N1jQ ?vP^Lx|1">O_IYz3}9i rF &Ws[x3gq?W>}!_ lѯ&ǏJT藽>#匼/iEŦ_}}ƒusԹ -QSs[#}x1ݣO+׹;N_۾^v,Jwo nnA=܍Js➙Kzg$~qOtc˺u$sz+ұ#%:/6}W?{ѧDsuQ0sQu}kuyTߠV9'΅;v&W}2~PEg~=n|+-C/{ұ;nIJ(MN3m%JW }gݩtWws1mˣ`ҝkj~ŦȯyAW-6:j/vUWѝN*=/@+ՒSY[W^: W?Yo[lr6?'=#P8-s\1/ -wa/y\ÓKvb~ZuWmš^ >}kdsF|F 4u=žw!N`CFT7689^}NT{B cvݺleTlŦ?SriBkQ+ܒӖܪju{3msM/tKT' ?#}F\B178f)=bapN|.FOUW^H_5/t|WouOx9qϳz;3󡖞jp@:rїOOI?P_G}<=:g3d)=mIO ONa]nub">+=󠏄^ O[M_'g!g峀gPY/V4oޔoA/e?B?.<#ǽq9j/v E59K)0mGsQZ|= :K<Qzfa8葥~0z/5rOB/6~J5g(na i))ȷzRqu%W+5Yޜݹ[wRVLH1K{K/S`-_/U]?Ns .^__B泮m_lckx[B5L|O}T=@6}-޾~;?"ZϠuS9;xꕄ]gjfzĿr v#6˹F,I!c?l/{w,OA5wGʅm*V׺oHuΗ~2wD=f{wzg5L$8fCʇꟛܣs-VqڍQgc?,tqyvbե{ϣпKה2tOkwW~ze"'qF>;9yf}co,~(gDcGUl&a;~r{_ {I];ۘվ=,qUU-P8@`珝lf+{,ߗQ53ҽ}~p9 e&LdrW3왗ԚZ7?[߅/²|oiՊYaӝ3 Wˣ_ aphv53ǾnÛb붊LTvntkE ;&J T<^*{Kyп)­)+(8 G^kwG~_W}AwOy_?|ZFR0!':hޜiZ+]z-Kkѿ'dS`K|)#nŁ[_0?630Jl:ӢZW?MSsE?c ¦X2t7/S`}T?q#[x8do?_|>!EQcn,>i6i?ܓߗ~㣸|6a^ߟȉ.~ hyW~IK7vO|2{Uϡu1Ff/nj}C26tyOK܃v͒z?y3DA?" >;N5~|__@QTK~?=y \ RK`8P=>4*&Qbn؛?/K~G7\r] ~:> K|l;Թ~)"_I=vG_~d⼤R^<$ ^ןv<%\qT57mib#W뚨FcɯW9xuk쿰{nnh.jPi7E?^{R}+Oޓ2:e)n>1?g/ Ukf|f_1:Y~rJ=]zkүy n >qѿie}cʱ!Fn{oԿC~@G.՜>لqZ_R*%eߑҵй'bKkǯ[ MW뢨uaGZzG׾Gީb{|@}Q{'M=0~L?oJ7 8.0)/Թ,i#Ϋ_?8!t.KP)_-5NyR\6'Ϗ{S~Sb.PX8:\qx]d6<^dfͣ@QyR# jxO'(?hfw`*-yNǮ;Y_ޔr=܊ko-lnyMȤp3޹,WR{])˳[{;>?j;[6 [3 WJ'.tj.u>f?y k¥5M43E ]s]tQ>jT[k| B򔓹aM=Qq?'D3?bӋ7/ڗ6~akPs!>#9# /ᾰ[}^{V˵ztmb٥^J {ޚ;kPLw/k˭0v{Cw̐>~*c_9㴫]Eߥgm=x-Vo r5,?=ĭQgd_5'? _w 3T%HY׷F7f/bM EzOϔn/bXU/3S,iv\$G/ܖ_±T{ϔQ{CGy{jrSgg-ӷƚ:sE{Ν:qG.K$n,~!`|!XqGze?/DŶbDfG|bʯ6khݜIQ14pATI_K]uvR_6uV#~XWCe1+}&VՒӖm-̫rHY{ {Zc{7Eͻlu~X-6`$y#ޠغ/c诡VLuټ$*.RYlѳg5~%}:Iwϟ[F[vok-;q5|o~uNGG:`(.gSTLxt09!u~C{gt_9ܡ{ gDjK~(8OQ*L7WxKTgy5:޺%׎ߙy\qB_5~5SmVԼpt{Šn38d+~r㾜g^o}[ bv=й*-{{sj΅Ι9\j~Cl6a;b?+?~ڨ|4"WaswbC\W}ѭ积A٨[^5}I@ /<-}^_{׎[LHq~vԸK-H?W|QO=ԘӓJ@;$ԝAϴWsʟ賠W|8饟AouX2gLzS _usѭsvZL0hۡ sFJ_$=%“,N?LMճ@Is>cT ?B +q}HXi~5\'ifB ٤ڗ_ǁ9MkL7_[o_$ ֥?s_!>CS`H0fǧNfϕ#U3O*y|zgG¿:Ծ)%Sѓ`PQ1{V^&w};/.M _\yoU>=O^f~&#n'x-^Ӑ_o\TϲUc '3{p)]tG5j;5jϤNprZ빨Vq {2=^57S(Y_?ޒ.夼/_CF/9w-^[Jr,y^W. i,3Sw0-WπE-I;kE,$r7'=ʤwf^!)ςAű>y~{WڨiZhOK#;yv2 J){)O'c Rnj+x\s3[Hhm=`k??_cɆv4pߛg]OK`qWՅ)CQZZ]d?;w&j᧝2M\+SsT=pBEE};Dikș)? ǯ %u3)Xe`'8!>geDa~ 0c(*܎?xլ/snt=o¤:I*ݤ>~6)g&r^ƧqKen8Wg'p烟3pr n2.N S~g+kS!.[;fj?I->/T|׿9 ?ӝ$ Pe/WG${ Bq6|ܺI?:dS)3 ;皨:k>|#oucڱ%}ݚs:o.u?\Pvg|=t2:7oQ>l.3J?<cT|P..wk]?k|39gn/!3G7O7ٟ'r, a~9E_ɦ8tquO̍1~ _]^c/vn ~P]9KW`l fv/E5t"_K\U V\K6zn=!jI)*O{麤Wq{OM$~^Wyܛ$ygB vRz⦤֨kp_g>tp$JퟒwI9سTa)ğIt\ٕI31 aB?-OZ"W9?<98ཹϚWOI>9}3'f&6eWn;v0WK=c(Yqę=-N2)\ۛշEdt}^nŻTzAo9?اܯw^sT^9}n>4啽ZBq\v y~*T  MGwݢ:s)~ J Mg ;o_g&yɘwfߏ.H{Pطܟ_*1R~N3vxܡy<{KY]wG7,}>jy%-bR3BM 5dߟSCx~O*e>2rO'^*>1/)6wPggqetk=)aο-CSиgRk` |^b[Qs0_OgKJջ _g LAxSPN>lʆ&fݙ##ayߏhn%+;?t33ѻ䌰۰;ӝ45raʯ<ǯZqV\g[KϩV jҝ8_R_/g侟{D=v&Cc1C[~XTRp?9;c!J?m`;6c.&1[e!Zwvh.kUxU?%w'&4kwO9ãSZorᙾrtoo³F=uGOwލ>q>+}^zy|?R3rY诡+pCtJWWyIN{Tx&[@f_R /LyUR}JlPVo: ݃vrzifac>sGЯ~#lvyw{cgYLYpwgo[ [χu\-gu~qYya:7~<C}>6ˣ+bogv'v.j4&5r\G;8;-G}z;KKҭuLC$/)b[r];uli-U?S)S] γ(1s=l:1_Tw1^ONékik͙_a֚Qӥ&/ҝ]N\j(|Ǭ|j_O;?r}ݢ_Wv nn KJv2uyd$tcŻn[~jz6lbۺ>rjA/_3Huѯ|WE罯d}{| X?'#jЊ?\ԹY,ʭ 3meqWҿcP[s~ќFc.70u=OQ_I`ǷUYun3Wĩ<~%{cmn_2|9]pT,wbb'{?~|7x=e3WoQq\8ߕQm#N@]jP}gFw?H_b{Hy!jΈuE;Ւ\$[v^Fgs^XsLWCw:7뎨5c诡{_Rcާ~zưoI~5+Ũ<yGZq-%[9$OZr8j~<g6|GNq#y{5QϹ%H+Y}<;;_P={_b/]n}y*>$ݷw7*;{ӊ޺oݟ>UF:: '9,_rz{t<˟I?}(|6ߣGI=K~T9;ts걽no&%V>Hr.#^GZgj?UQ}~~ yc ߱f2w[o}xE#Nv/ccTQ8U}OmqCW_S6<6y#cҳ5Vp}ʽQ1]ƲVѝ_vRnwn4Gw=[Șz|qBt[>G_8_ 2_g[/T Y>#yѯ8?lgQ?gxFVѱoVK}}AT)_{7֚|Ao=W촨5>c(RHS zFTu\F?w%c +f>cf->F=ҿЗ߽;Wtkt']~S3Z 3#ݱY<.G>{?ƈ_K-u9?t('Ue;NeޯIk^FcS#gw|Uo1޺f^ gUcB^gmT{2,g-~7_^ r>ٚcʯo2۪w|}~WvkůZVG;z[{Wu?tq=YcWkꫝ˟]a.6Ң_=ծ?D<"kbc?^LHigt-* {D^ZuVCZqeQ{<(QK~I1߆ү;~o!7fP=3/s(n赂n2zgV/^S狽ŵJ_wI/юkS8ۡ+n^,]{D^#9~& \{M8Dl?57]ũ{C.cߨ_P[}-yl}WeQ{}=f_[Jb\5v>6~jGͭRuNJr6pd?U͞'~@P$?We?pr[԰zk&Ư4sxRg2V诡o3-/(u&֨yUØ;NN?忏cu3xMof}_]?TslŐO[޺55/صhDYFGC.4p1mp(L7D9L*f0+<mwQbse2/Y0×']g13Es&5v0 Emѝz~4WCg`;ny_5|t?1sJT'/9?k~CЬnfÝ++_/<ؙ.#͚k}E}~/pX[21sg.ey#̪2}t3D9]?>iݞe1k>9NHY5+KIޥ;̓zwҿ<*ֹߔN*>/e A2φ9NZ?{"f|eF a,0@u [B>ُs0wJ?2}~5YO q']S۵UPQZV}ծv;qQ{PY?S]:[]|B'o1_;yS/J^z.?3 _vm5W#篽6y$AA 33Œ2޹8avF_~Sf&spS)S#eEl']2yqĎ7} Q{.kp3}'ʳ"ǚvbngX2qQ4>f"-nѝ.> =V?}ݚ38=pAlt]O`ݺ+cq3osL <},ŮeV1gk3A5~)w5տw;CORg1Kw ϡx Z~ΒL b? ͹ov޳Tse27?N,/s-s}~YNlyRg0g}?ņv;)iE|4f^m4՜nMۢ/C[#kǮV^ڤG3rc&ϋ ߣWdWybt^'s}KSij^Y&̓s~?ˉQ񤤯5+[ 9wZ(7| wϦe;s`f=9"䛛 <2KeeE(u.!Aܝ?>3_X>ubSqu~ܫK~|ÒO4]d4'.n>4Lw6<D9Goeo4׺374w.=Qu; '~Ma?YpD7qa/_M̊y~.l?sʼFXu^c{u|99'9\D<|oC5lUF7,c%ܔ~eQcS?[q<3k7пˣ՟1ٛ{9h/s!?"g-ʽ-sS?z;5v(3CW&1ݡdzl)2g$?9}O+Jt6٥Q_)~~?5jݡC?edg*>>;Iq>s_bC_&.~=E_u&~\Oob˼: y^lR~}9+ g/.⮽4y ~8;e>܍+9q]A㖨bV|>|wZ^%-;\~~x|Cv_Y~nF0G+|5a]ʯDžd"E~"sgbN1,EfW+aqq~T)CW& <φF5EZ+&硘p+Quyʾk ~>??Yl[ϜN_'R[yI+IIY9WٜfJg?_]ۖryxrj-n}0jV.[8QO3v>w36}xןHD]|{w^M) Cf7<^}ȯlJ;zΔד>?*O}sҍ㕘:ըπ+@ۇ~It֮{Dҭ-w#~s.$^IR߱ﭏ\N@B_ϥ{Gfj~{Vܡ.Nzu~_W=#>9xI+=tkGJ?Ј-&ϓ b./><6'y<0><)3~*ԔcڍߟxkNӭэ_9ߟ7aeGt@}-:Y?IcyI2#7Fpf~G5D8sK_#E?{mӒnW}|xF#畉.r7S6ct,z =~jmCWѝ3:G;/&m=~{?-i&HjǙcƠ<+}ɡc]~LW{R;K_*eU1O~/:x>?{ߏeث@wIPGuJ~N"~m A܄ 6w)9ٔ=SQ΋޿mc_6_IgrڏģtwYQOWݟT?̢JL,xɾ))+twC1CJ1y;j{"I/'!ȁ扎9c(й)LvU]1džҏ^m8EQce?*Lynrl>N_KKߓ}n/Sm׳>Duq1OJ?*3ݾ>kì̿qdތFc*zz"ѻGەB;>\\MVy^VMKWDžҿN[#׸_6&۳Fs\~b<S]̮΋Z׺oWuLga䠗}~ErU c(^zk>~EwO+xyco:nѯE/ 1eՎw+Km{t77~0ʨ6}KT J-܌\ߒ+o֛=?G~G~ ۈl3p('J?dEѺ%Hωp?HW{)-5S`ttƴn~׿ixV-[[زvG_{`{޿!j cx?|))箼wѿ~;edC{_o<Ϧ1oCg(-|Ŧ),ώՒ_s(Z+_;콠ֽ<9)۟_0~PA}S?3ݤySʥ WVwϦ߰kFyQ/hLuy\B~^X~?= xu 'v>+jR^Ξ: }p~]ߗp~CSGeuÖ85* 7-5]Pt^1We_'z9F>/x^-1<۲[~xoC8L$-=VW(ХF{*72Vm(,wտcvDŽ/6*. Y{ka%^_[\u-F#㊊U;._z2ˣj_x_؆+iP蟢Wm2~$a{J/=1;K<H.=z.@?bYgUR{H%FsυA^g-+2^ /ۢ> KǤkylJяJOXyx}GAh0jlqeW^73`)X}“&-\;Ў}~t׭٨Xi<|T dY'5/{ה_~{郡r \˒~ĵZ:UQ@]~B %p\O'\-F[H? S?(/aH%D0,ma{\*չ)Iz]e /ӥۧǙ\<]¯T:OHgw/kST|,-}X=2Ǿv?_b[uR~y.O섳Q׽JR>g@O~y_þsg:~z:o[¯wSG,֣TSEp\Qd=}KI\ito|;y )G7Yi/UV aZ=s8[S~/ޚY_м5g3RfW3X `$R0xOw XKEglM1}.\L׿-\ql| ~2/rIo KO~):{%/)Ď}8#x~![{W)>@}+=Ӈ ޓ2-\7^sV{J>c~|X9{Ý Oa-^zeѹO%.6zg'uGǰC|3 |廊0ǟ׬G&V,_KZ|5*pWb1gK/#[w}tlvײCJon{GRĜU+8tz|<=l|2yCGyUGW\m='GDL~}2ר~ncs-W!W؜7n9Nz|.^e 9_#</^n;?gnn2هnt fӿ&yZ}+_>~OG [2&.$@EŀZnt ;vf|.wKME-"6(q\KWʯb K_&e2~B3'+j|ce3& ߈NL.m:3+YH?v&}yv^;EٿP_|Vҏ]^>)_3ºtc ]ϲ}N7Dz%wת&j-kdg{Ь Y??G 趣R~\?WQ뷯~xGQb&r ?=/@,K: 7.^7|Kn?\5wyP{}W3SKW_=J|ɥ;P>&w96ϝ%.3)x\Zbn{:?}| Ƴ4E:ޅ^ܚ?(|U-M~n\Qa:iVT&;Av8~߄й'ϣqNL>_(] 1C韵s:% Bǯy=) }to'h.\7E \ Gw6?r Y|NܟܛG- L1WQ|>]so|>-Z~1ϒ9 sQqt0 [<>G%;Z7j޼Xa{ t\ԑeϯ3pr_~8=a`K;ީrHCoO}O|j+;~#CxRzޓ='ft1a~V63qsglRtK5w&@Ϟ0CW9|,߅P}f(v';!Y85 Rmg Qޖ~k:gsdC䖜{Ķ.Ή{٨j< 25=~|=.߇OO9 1KyeV+<#eC^gtUҏݬ:G_!Į=fs^N'v/YgY}KJlL)`5I񫳓ylߛq ɪpdsKBJǝkNlvE=,]ck^wfeA4}-?.6עN%7Qɹ<=嗘gO>8y uB~~0*j';u\E:ϿYfUIWߓw<S*fz=OU'2=WOT'?}6E'CczWꦨ1ލS cud/[Sƹ+3-gǿ~V!FCσ| O/s{[r^aZ?^uEL1_Tu~s5շ_lH^W.T[9~_uKc5Fw;<}n~->}aBWҫD:?r nz9O[rzq̍uQ>=v5j~[{m-Q$z_C=Sk¯J㏹W_V.n{5j;ϑl{dKޅWtNo-=3C>M~ϏIMu} òsw.~}ҧ~VH}mՅ=>DsTV5cODj_ Y1a.^|;ͺWu\3?h(sQtUM+|[ag#SkȪtXnϺ/-Ok53'.}_@ȩ:oJ׉9{Bնs>׌19~!'?gyを(i_B):%?r)uJC>+[jHa1 ԟC}0P+]L,}/'PzD?;*N;wg>?A_ =ןN?}'[xS]G^< }!wD-xk0x E {R=driR;6/=~ԣ { >2gޢ Xi(QU\L?-WN>bWkoSt+ ;sy.艣ck6ۺEgs<_\l)']W^ly?~aXNEh^vvOy) ^CJż>3{ ғ_oSoWs.넻{H=ƚ1>a[=8n rktñZT-žn}_E|Wwѵ ]+, Q]j- =a>Ŏ.{ao?'rӅ7,~7Y(V5}z?Z**[SSRql zȱ=J?v 3-. ,@?a"ˇ'^g 2e) _67E?o^t|#L~;~*v6?s#Y̚ E[w_3w|L;r]w1Ƚ<nҔa)<ێ~e/ᣀ1=qqʁ`Mɽb;GK7S#\=YϹ$kIG ѭ?^YLкGioQvv>pVbqqC3w"a Q|)q'u+&$8'5yvf<+1s;o[eŦ5?ituxuwsZρ>#59o>u,Qs>ec뻷98G֛w껾=9e#D8 C\6I#u?#<x,%ߴ}9y7_/{)fL-`Kv8B4z&3xC[sjV+lT1ɋMt{~l)gCw}5_a?pKϽ.V5¼vlg.~8|[X^oj 뺔m&O)^%=3垑>u\J%*ѭi)k5kɯ6%ݾv_G'pR3\qh}IJD{%Ss)FF4wy}'k7WIb"!KCoHGvoKY~pWD5{zX)KY hD.nM1zg/~Y_=w^r[Z ,BZsZgWE[Ǚ2:Nfĥ[^֏*\;w.X5ɆYRYɡ_?Bw=.G~f1ܸ#ާ;FWAߘz9TFs4PNw0frHLCcIrwH9=$9]tN>yT^x?+1j]숧%hcLoxk>Kl[e]gmIH5gA#>.\JU ^|ut1|}utmiVJ5CޟwGب>GE.ۏ>P/3)ߒRqc{*_3eW/>j՗ךGK6ohYڤjvqOr`Zˆ?uo8F;/+ult'`SfaO.b6/Ck9G4KRj?sd)Rϊj~]g5%wu+1%_ssݏ>Wm\tW<Þ [^G^d8)E9SR  ?\}^'[z<Z;p XG3fӯ;ϴ)j݉L>O9%A34}|x^GP?/D&]DDnZ5q>gyyjK_"k=yE,FwoOWշS=kjV3p{[/b{ +U*gx_c+9Pjߑ9qN{!dldAu)K~iw,e%xc 3q-PDqGc4e2νNbft&Imp!11`AE Jp"k@5]@~~߷OϫG[U~ts/z~ 1ߛ}?Y)>51˲00C QKξ;iƹglȳ߿?Q1O{]\>/vH{ ~^#~5/@ؗogs}Vq(Ȥtm~ib17|.^}<=6m]l{{3yk6Qg=GQ{D};Ϡ[~q}[8ZY՜mQgF|Of9B{WJ;f-mYqߡ c% r3>~Zu4'byYrl csgjhӰ4?{ߋYx^ҝ#':5Kf9ҏ_p{Һ_s=}yb1'5ԫifޕ#yln޽Q/gD-.:g7~K9)E;wJ>5.k>zn+.n5Կ*1O߅YվqMAnS3FLy]<Q<~Vl+swߛ*罦}h~n_)S??nόTݦz66p֍pC> -6S]K*T<0ϒkd^#y3cSg3u"phϫէѪ`Ǽ߸hJ?Ϯ^=ܼӱc_E:~{P_SƨDKWΟcwml/n[xxwnſ{߿߹\[w>fP?{j_0CW6+<{ۘ|%|fcS,U7;1~??;oW%=Yt\QX?#m2's^1aszҙeƅyfu& I=_3$FCD},~w_!ؘ5e^\{:vpu[󕥋$\R7ϟf4v^axU=Cf M}],Ik;$?A8uEšp+&E9596y=H9+h?>9|?{5vti8;Z33`2]x72\0'Sށs1S?3#?oNGNYꬩ:)r 3=o)DžѰ>[{.ڗ߾saIV2j|vimʀ붔ݓ+G\" Ss:}s~ͥ>ccmib[>;Ye1s\ ?s|_5Dg/sI7sk^u掵y6fq_N7#̟[ 0ǟq+Ͻ=`=&3G%raGFT{ng?ı\ޟ_/9qcyҭY%?04k[=-N}V]2 `ޖ;5F&SNwXq&B^KÇUS]X'ksg%-<ZQo&S9¯Pa&j]K/+~ ؀U΄"?~[/In?5}}+%.kהaDž3 _alw}+CYT:P0>X`n;?_]uY޹c9j-B=+A.~RC<\C~T,u\S뵥oEOIy~5 f^, =>sMgyOߖ{E=_M>'I8|>lҼTŻ*Ss?×fcxX[+YޅUWb'zgt7幏<؉~}f6ܝSFd ;ݔ luK |[|PCYn/?]N$%c!:~P%?߫~ ` 0h>嵏x|S˧=OFCbw}EĿ7R|$SVoM%#_B mneg%7Eݏ³8ϭS~&V^z&&qXUDա-YCX?6ML4y >r(ɬL^*-}O񙇒fՄ?}_`DŽJ^Kk?A+TݎuNA_Jv{Sa'}ϰo~)'7Qu9Q{Cyړ&mE^q1ѣWr]VM.>8͞;5ݖi+mez&mIWWEAڿgd-؅ ]#N;_GxqkkI3=1 ^Мx=WO(~:r|_b$te:jz_Ͱs^3|ox-fKW#cJ{,ã~;;$Iy˯|l0{QUR~K~'f;UN.5JY^(gŏ%ŕkW ?xbc9G"'_ϻzfӗM.ij8ڤO8QOb('.w=I} ŏׇ9J]RR] N1.r|lʁ׎Gs~v m?ӗy^5/=/yw:e@=L_ՀO~~S~H~( z^8}{+wg?Ͻ@ssR?|R'xPIq~&$bǰ?(Ԕߟ@~)_ghsKz/?&}bvwc9{&_+,sʹQgsҭU|+vOxU$Rm4zHv]RKQJƐߋoQ w@W1:}$vIw@5?Ǐ>= zOoKYJ?6K^ȇpg%k<;N#~^UuF=&qxϨ1π߬8||< ϏݼwV= ?A+ hGu=;ޒ5m+Km=t %7~KtPs9. zh;wV?)&)k{wqE~Zt;~yˣ~5>w;FZˢ7Lk^lsg}:ߕwC|uҭ:[åy}oKleg~SoiSC{оŚ~ 8tqݽ {Aǿ'W/m!S|KY)Bs95kwK[X.=4 hyFt?"%3Dv1,i)y{nd{KsutYž7DWO:7O|[o;]}g>/|ot@g@gsXϯMQvoIY&'A^'wL=~5CNs(ի_\?{I>JSFOGH9ޟ2K>;GvH ;~z5O*ݖ}wPw>b> =;r-R.(>gbyϪ#ދOu[swG@>PT{<=wy3{݃3yc=C.WF4xQ|GoM6>cݼwg?6O:_V?u|[r{{n[?#9>%FכwYvyYٝL|()~nŹ];?7;%iO;WGy?>e4j??E~>w=n?ANg80gY=z l9UywF}Ude.gνѼb'I]sEҪw-ﭼbU&'~s-:?wSM{O5sbkL~_${ņ7ѥ;ϝ39R gEf4orjʝ{qusp{ʹU@=?ZO4o/Q>+޻x}Rw{|gR_R? V52_7EajI/J.)wtP}ǔzL huo@~]O-;NG}3|g-VΡqOВ[ _1@=/!O%)ޜB\_)P&1.Zxkێ#_ʯ?)uGe['o"ϳ]s>7C韎[3G`НoBy,`W)_od[A#IW_/%Oi6̼ϙ֒T׽O{T+&>пgԟ1nbO/띟3~_흅pcT~YB/)q#Rxyơ{3傻qP/5nu/<98[a'!y3zE?bm= ڭT=KwQ}J4#3J6l6d߰OO7l.9Od< yOrKh~Ju+Tzto,jgկ.eZY \xK;˗ީwV륽>)!v_ܿz'{1;>Q]K#|M%>Blr{fEyض\;w sNW%cUI>%:G_zuCWVkkbgxf3Z >tfc_~+ Ys_Ϋ9Rʰ4P|_M:\~=ygGM)5#v8|:~nɯrV$OLL02[8z7B:vOy+grYgp&B^p2~~ b(ˢzz{>"ljmҮzU炤]3%Vj)a(?K\jytW3Qky}>|Ϟz*KY~'/ ջ mMj<>a3ѝ;#Eyl>9h# ÚaЌݨ>6{'=U?omV?MwK|QҟӣzڿڊK-2/_$;DJyTk>Eb .ֆȰI7rm)gk_Q|rtTszg䶽V<=rߦK둨Jo$/|"e{CK'go~H yvk8s>Ήj~v|:f}O(<2B+;wsv3a]{k]=;Ϥ =;_Dt<" QW{^z(<KVsIW'/ u¼Rי+}x[lڟ",[c]hk$ޱ=R]i>#ϳo9`|âSʖ[~ld Ov=/FTσ8;Lb{$_roHCWpc𯕗.4J#׎PdWq) yv>'׎$mQޚ]KO%zo޹y^ 9ASy]gW_,)Eu\^hWlb6j/*c=QuѣI3Δ_Y.4n}O7W=ecwOfW!v|Ps+/ {g_WG\.K+ݫ6}k4ΚXɲ]/6}5.WMc?CẈ͓\uBޏ K+q7g寐kl6J,Y~i+zgzgI=LFhF}yfߋ1/,4C_9gNv_xTA/1]QmۣƱ0{~Dw/zJ?+ݱwVysk?fT^Q*O^_u-eڃc|#пh^]zZ޿ᘁMQXѲaS-jY?G`C~aҮj6Ž3}; x?*w/RK]}c˯دyqbY"v>=&[r:*=YonY>+쩵#rJU9%jcᷛz{Fbܚ^ {ghwF_P~OM/+~Q»ZݹƂ\? Syvҏ|;Ή΍Lb_/̱g{^| aIs{ij*?+̫CD5ߚzVɕ5S_t(QI>% b(;ߚGvL9 yFt,y(pI A{=O/4Ķ,IUW)d)omy;YxWogg=w\Wy.U]^;/JQ;R?Wu~wlk( I7>űQg3.gW滸uUU>Ji(&{5jK|T{#s>j_na=^ ~떔_ٳ_ۦtc^FQNq"~)f~b/W;0~!(\gC= ^3> [rhOcgb5D;bR*6v9AF{R Sb*s3=,-k냓AЛ.lǡryoTP4?g爹; L\0k+.±`nүw_/.~P;oen#96$`1'0?8~5|.q,PapǾ|}N1C'ٯg5_ٿg:kxi8uG{tnL޹ Yyy0~uO$|4fv !ǡog3bf\2Ug͙Nu[AlvS1/P_wO.89WGQs b=psy1G2\sF?˻u,VdVIcjBa JKeEuoRm@{jB3|v7wg ss3Ag{ˆ? +qReeѻ sKgU3pt˪%Q}ePRp+f ߜ|/l"<5|3/dl-_>2監?yuB3TGg<[3fyt#'u8TS.WfS_f=^=*~{,u_~;Na(0Sr ^;hN5bϷ] oW;O\;;1Q CG,[Qߏ2-sKOuӂO\W y?#y='kgy^}|J>N}k= `cU h|.˱M//%g}>+jz_R?]1ˑ\--uZ{)=Lp6yYf;hKv7^? I~nՕZKzQ~𷄟/߸_/WIekKݟ){yȪvbOܺ;j3RNW;ɵ_%e~\x{wV/lb?o"|7 [>&#y_0[eQqy8!nVvOqH}bgqG/!@ygY}NJp@y6y=;ܪŏEgoET,+ihO/cb6 {&`\`˄uJ+1 3t(3.x/LʽCryPF_Ē$_ C?qUQ1K<3Qn_2ai)#Q&<gh=%ժK\_eroړNl. H&=yFF"zX(ֱY| }ǾmDzN zVq$Yˣ;'s8:qK[_d)˼&tlҮKwy+wNn؋9aGcv@ʰ~T %`?{K,/gNus~uBv[q=6B|K#_ }J?σM>$|'|˦߿uwǿ/$|>=*^N/})iE\~yf_lj.ry;8. &ƗzeQw w1v|t?2K6Rs 'u=$,L_b8 Z}u_Z*WH=UyG]|뷂 Ir?ўJo(vK.8y)w%dlPOjХt\٨ֿO|?=J }F;߯tqb[{g/9eYX1[Fǡ ^AkFt~Z[cNg2E/:3~>T x'K]Џ{I9f߮rV/ǣܔ*Oo~(W>]?2RO>Jfs[a2ko\ .*iH֯U7ziba풤PpO~; ,}I[x (Ǐz ]7/<7k`W?~u<867gt|Z}V[z@p>ϾC}]`U9Gղ lbSbJ~u#ӿ%ޥG,b=^wz̥<><.Qq3iFq4;Y9Dϑg#G'skA{ [:;pF]'\ߏ?-xE3x5e~k<g~wo 8LT M\2{su&nprJ/pݒ ѝEҹVLJss]#E/UR,{Cbǘ?z2eg8?dwzjy ;S{~S)w+s_LάXx_~~6}:tqYxuꃹ8%ǩSd:+N翻4_ګ.;Tߒ>mp2k'?+^ㅦ)o{~^-bcf;%e)}C$;_UηoxdysNfGb, WKxC1o}sǻ=Bӏ߫} xqߝrŧ^Ͷ깳QP~np<ݻ!jꆨ> zSs!׎95A-YC8^լC]l{I.~:ehEhw+]_ ?n ?)\wbc{-1-^ƴC[89W}לּ׳{㫣{vmsJݱo}5~?twz\~{Fuڌ[I4W1w,yqL8o~R-'6*^}?tHyέz1MjJ׋[Tgέ*;:σ?!m3|nQrWG?~5dUXFO׋\ӭD"6OZ%na\*j=S<‹"ؚ_\0 8? _xݫ/fFy Ņy/ S5~Ct빎G<5ѝY N'3W=Oi|]٩Qo)Syn_(2?Y`9<0ɘHj2sL;Ox,'2ua|mҏySҌ.&O`皿_'Y  dᘜd;5|&'%YrpL-~v%]WG /_;R^ nyt ocd>EcdCJA︞w_ݞxC>o*?|υpp>{ջ1e,gy&ԯ|g0\XW*v)ϢͲJ{ծ[)󝏎従NgǗklcNǦ+[KB!F=٥>ϒWg)qj_77EA>+,&2WW$RxLx3D9;<{jg{S%?7yDԯp}{4r/-WyצL.È0>?%u> B}+ilC% Zio[cu_x0DnoeLj^տ žwGŃ$gޗ_ܲ^kS_^?9A"9?oOc{m&s3 WsuSsV~,?kӋgO1zB>W+O_9,S򙞝gzGIwbGLS.2- AA33җkZ˯byJ*dέ|sk~1@ΏCbx)O|0*]a˴/ t/9G=`yʻLO5[Ռzx^`]VR1=gAP/0eʹ^_ojwb+7 H{ J.6wrqXaC0QGl ;|Ndƨyi|U'J{dW}߼Tay>]w} y.ϻ1VmGϭ;OYͳbsqfT騺kUFU{&~DσŎt<_J?IT$n/ۢ~| Wjqr8o=[JJ|wkb^'Zu8>+>3Kr/uǟ_<ӺM^qgaJQU0?0oK^ y*ɯY>)|W/pe#_yտܲ~|0n]),u:y/5",-nMW.S7U"aYxXrȫ0$^SNR=n][z%.ԧJw9 ߓǕN l襥|$y]9!V]<Ӻr\FVGS{"A\*\lo{lݯ_νq,eC_<{IϪ'%CxRڅw-#wߑ8eJw)SG֢V{=/q-t}TvSOdǞ{vS.,ay,vL_x~;D)+ W(5σ UR׺d|O埐8T<׏<;Ig9|? 3c{;Q[7uِtg3?S䢟>t&}G̬\}J݅G,~j+zVj( bm`/E=\׏|_?Gg^T8=:_皨avu qB{]򠲩_eWQ<ߐy]'=N+<_;?JC%t\ɖ[w{|\ORߢ/}u|`oE޴?ݮ-:4wRʫ_RZl{d}l\o9 kx>WVmLr} j__zz]ByHSDǤb2+pss@-=E( y]9?{o;Zr>,HYO^?Wm~~ofx@wϮs׊&1ܺ~[T (<꫿n.guKɬQ~_zߣ}>3sY{i'wOB:@/0N%n|.`183RN9QMi߿ZDZuoɡ'g{k}8[y*]y-?oJk>བྷ!sWߩO=]!~3On߿KS64{{jy9gGc<_e2|И7*9GżkŹɣjm~?Kg#gN9;~B$\Aן1_ڢ_4 kHQ񣤋^Pj]1wr_yo}|NydZyK_sODW/as[<+9OF7U<;^Ygp]VHs-[5ig }mgןg ٯ1WYH0\ M uѵeدȣj@ݯ/&|O?Y?VSn?.vh׭xY2!XgWY6K3⟛g/7Y<g;3VGD}Mޗz /K {{Zsާ[ƈ_<8/xZqOy&&Z%or~~E?k]1j/yQsXČWÖɟxo?zE ~ I~?<,y21^}eg$yNW˵˯tR_G_Gs_7û,ik~F"vayt&3b [ŝݿΑsIc}}i7Da&ݿE_HY L^c/ bY3ڋ,}3Wy~ Ab.2eY eu8Ǭ^mO61d7ZYKpETlZ xѭ/r|a Tk>O277*p;2_\7f{fvu̎㯶j~;]+)&ޡT&3R_#h7{|utk7븈Cs~,oܾ3_2?s>מ,M>I)  N硿uKw𥰈WF7GgY߯&@y¾B 6f֘WJfIК>ږ'>=cDYԚS/=yRmXUw9szѹ˃}o7̧69伔Njh/LwL&K, ' >zGs36Ҭɥ5s]|By6j/q`G?|rgcޚO\MY@69@?9, Zxc|W ?#Kps-s'/a{ïÃC_O_էsMT̛?MxgDտ-,Rc]ǟT\>lU8`UQg8'߿ϓ`D>R|ÏX>Kݿv_|/vNVl+LݻV788eX{je-&VY4K`w;[*WnO]ѝ7s[>h]?KƧz\CQwnkUKki:*no$G":x=<My-?Y~B3Em;_ѭI3:Gvե?{ǁ!X LY>>eg|9rp>%yEO-zev)sga_|K5;X@SG3 %Iz҆ܢL>.N=/`m>6ڳ2j3iu|geU;)&ɭ:QC9ߘvwpnK_wEt}f?wt('8~W;"z0eEϋ}ۦ<A:v)3 Y?<>߰ .Ү,=/oW[s~Uͳ 7*s)|> /X]!^OF7Gl.˻~KO/-+q{ٙ}'(iDwdw!g|dA=ދ]o)k|'L쳇?wYԺ{.~wہG🅳T<їh~I{}N?WNa_s`K\ʉuuu䭡E=oTCg_տ>Zjm%5A~96$xu?5W8Kz8{(5s=SN1YSmXD}ǼDY&O)j[V{~/F͗y|ZHBu/ߥZKy߿ 3%ʙI/j5U5蟴@:s_ {k򉛣ƃ>?_ݚgTRjgx C>LVƱQ$D#!o8~+lV\?ߍ9?mOA#1©Ql F'_JFV<ߙ&nQni_~YծZrR kҞa=x?-红[q>uBAx_o>ҏ~$> lS.ng;8_{Stg_TĽJ?j}<-s65y4}? E+Oժ+Z﴿[1;Q?:I}5; >y.+ _uoIv>0=9cݿ| bz]>ezלs` {?Wpu>5A~w7빛ϭ+be?ܠ{XG-[+/*ɯzx& o_G6qq/*O#S!1?GM\s껀kZ+W?߿cz04ـ>u RL<_<3>zT;.^蟄ߎ?nrܳ \,ߟҪ▿<3Yw>&~7I)u%{E7G34ʔݩRKo~hݿvDv|??=;+{vM?˗[]\Wk>Z5g\I_4K]T,w,XXs; ~S/&v3؊[{$`햟h[g?D]}gzޞ?!pC~ߢ6 qEƎܿ>#~zާ>՝Jy5sTvqgr߷Zus\~Vsk~q[ ogIOYj~-~/ E9 | )0~t_'{oKW $U\c ~넟Z%V|szk,>)޾TgJsTF}(Ύ83[Mx{uUk,/T_.K91jBxng!Okp&zS+ܲ-{ݚ,~_N:B~Sr'~ 39lےwBT'#sYtcDtnՏUEVd+ժ=co{En|-/G=g3&Qgd'ݿ zZ0]9§J7w{ڒ_7^ yR]xQ+ղ-^jW1Ǧ@oҝ >) [on/W'c9}v' ϕ\B/{?oOr1Q{Z-HZ³]]H>='磿_?~}iڽ3c ~}C73&?;~Ώ%`{=oU? j:5P˯8J gIgי?w,zI? K_8KEUTBcwEǨ Ww1VPHt1ƴ&rV>Y2nz_yV]I]݊gw-Z9~>Ei<;@N+. }N oף_=ªkgݤluKRbQѿ=/N0UFG'?uaYUz#~9?F?#m{g[3Q{[qN~u6fzqm{ӱz߶N;c4u,_ߛ<Юz?zGOV_GFn˭O?M.쎥ȼ9;\_$unѯ}S.6׵)+d_QJ~{py?nLZ};˖p<>ٓYkpuyo? ;ǵw|fa0G l?~O_5#ܗkf-OU}%6/4œW[WE}{5{=b_j7!>?gyϥ$-%ufr*Yz?(1wuf]k8>k~( H cҿ0y4fQ1|{5y*f|g.?+ުmʃ)gvp~F7~qi S&C_w5Ub;c̟_+LoɆׅEc_ kcő~ MLxtUjɪ7\}ܭV[}#Lz̩2>똁;|ؙ(3)Nv?}brGŐO-uj#Z oix ߱"=}9j^hՕƹ~ֿ#âTc~VҎ/BP="7Ϳ _{^tq?#G/6ױ+>yutc ~-I~e\kYέg{~d7c<A~},{ 6F;~+^ې1}Ś㦖$iF~E?w$JI9{\eu(sݫA vqa#snÓ;=j>5:b);sෳe`|s+=#ō^ϯoSfxY}LwC,;ʄGڥ;~j~e|/`;9UwҾd+O'Cf5@}\_} ^.7λa;CgWג \຃};~ѕ(U_k_uo;ٯL`/Ņ߮ݏnwfx?Luw!y?r<}fvE7C%}8yaկvhee=֏ٟ'?.~ J"=b 7B o)z^a(NTE{ryǃ]Pdi_`_vHNyc{8j>SFk#+svͯ1c/`3=%Wa޿LkڅD,FӴsӛi%WvʢW}g:hܿԴ=Pxey<1"澨Z65i$yoͺT-gmumQ2#])J=|Gl ;_릨{oMgs杽O{?Z{H9f:|?IR^i_CS8o=RG+0ÞN6[|}0>5e8EX^8̅[ޗџ?7^u5~=xfLyeQ_癨~]}~&jsCz޹yd-7~RDRe_;cOwRnφCnHA?l ƗJ?Y9 ^[qRv3q8*sxEUbH ?;߅dXҍ 1D=qkW>6Krܡǩ.N~7}*˻8-R|a>ZWEɗϾp:vۚ3j[s5Q?t5@>fh~S87eؕ)%e3~ak6ͩ/O^zZnb߿0WbGb_SIxܒ}ߡgM8;4O.¯-eky9ELΔM#ti]e8VuQ{ϟVl+{Ήkѡ5x _SvfMs e/M~\";vr&ȖϞ3soƿ~V;?=jgܿg;eǒ?O,>cOl)[_GOzV~tbOT]J6i/4)uIlC"BvWr$[dIq.ρEGW-?'Ӌ3ސ!֢olqQIa'c c{|frV79|~RuG?V ~-Cbns+eGߕg |t` AzzЩ)U)O2<^u 4[VsܒߖMɷbΏ`_tFq#>>C?-5sX3>(Ϙgp/yΓG+p,tgRnA=~?:>OqW5`6lmӢy _B'=|2{V?'gzǘwgq_Wޑg!w'|5;%/~޿}5 tj8 &1W x^'$CrVʤ[~h(S$[5=dw)o/s?gd: 9Z?|=:"DMu( 󅻗A{_RVa>2KORk>ɿ:=߇j<#Wesg枡Ma2oN45زl?+SRc1~K.6sd|*<`,AhG䲨~$R: .ͯ6}F>GəvZk>?6jg~1e 2eAuUbF|G`wq )|ŗJQ1u7 ?;#tz]gEO!G]y_s˒.j8q#[yb'>~#;~ke?7{S,&y3>YG*/ Ԩ3<GD#3IxZ9|2Վ,2|?ӏF$7}{(!J95v|> ɽ <+ү)wޗ%6!Ov`2/s. >m᷷ޓ_?%fV%2~^U?P|o.׬0 jYqQB}~5I2j;1"}OPʝ]R~s>#[9s˯ {Y['3C <# 2wYBP'DtDޟ_֢] A3y\8+ǘ?r< 5.O{ߜ:挶R~ Og"|ߙb\fsx?OϳϜ㧎!kfdR_~GwQ*U\nሢ% ?gk;|s Dʼn#`.w7[PeU{woa{_]yοBP5#w?Yr9s~ճ}3%OD+oz6W+cѭG«۷y.;Ư?kЯlTAo-/*u.;/Ƴ_NL>aٮǣΏ8~/`.}ŧFgN]ͯjNƠ?Y!Z~u?|ϓV;.ڻeKJWԞ,!ZoUL F|~ǿļڧB91ߡ=ŏռ;1vq+xyiǑv#~8-yo[#;{3?IW5vw:ßT:6jRvjˌ!sY*|3՛2jQW2̲c/ [y=b}֛mO#u'zNС?gS_}hcȯ:~u~*?\ -4WGQ8cЯB/ɇʁwF?y*7H>dN![r:C;K9BX' ]HtsJS\G?F{?Z1g 7{sWRqȱbPW•lr#b^QgR;NL]v L^LQίVE;?~ȵ[?-?wJŰB,~2|nr#f19<0|F矵,-  ^90yRq|44jy5f/`FAs#=b9S%W#XǏu5kqN}Pz9֜Qkk~vL9? {R8:kg|gZ7%3ϥۚi3̖tz3sֶڡ Z>zְ0[9)$fzMeq9} ;ej+ǂ27A@G2_;Ǭ,s:%42`fRוֹ`_d1'uhʳdgqFxYv)ڧǂ>*j k[r繅UMӄ_;^jM?]J~g^8Eȧ|7+}-;R7&VOQ_" v!af! OM~Rf|\?[_|O 2?,sz,Y?-U72=2yNJ:yoݿJtT<qvabj#]t]ീW􊩊iw_ʰ0 O~ѦXỉ݅ϭ ?#waC^g'>aauFa6jL f7.27Gk~p(|6l2~v{7߉߄禮~%*N߾TPt> ϖ__wD> cF@tkz%xbg;B32:xRLټ# )'R:_=EAz*-[{׬A?gaWLyT}E-6<7A_%)pXKXQq21}2/oꙹwݱit>+aGJp7GxK_y?1ΥyϼbD޸snکOGUp7Ei-If^v Wc˥{]_C?54jߩgi~2K,,?NlI':tY`k_9"VAlpD'}buRc_/lA >q,Q'Eŏ\ǿ=Gz2<5D?yNu?_~t1Ao^n@<؍jK_!Qk  ~uzO"_b}_.էOy#v?1XgG= A6NnǣqcaIs+^O}oσ[89!HO:ş'Jy~G:6yv`n+%N-xY>%_|{zzG_Tկy}?_ ňM΂ٿ 8s`7۩ ;Rβ9-KXr.^ߟEuXv':Z秬uHscڿղo.]Js{:;޲Eү>m\}tȂ}}pȴvMяp ;L Z? _UX9Dxw9y`y~Z}V-{Mϛ?h<+f{RVvλF{u3x]/6>w׾xjYT{SėNiy#K͡xW QƮ3rv7IwKC+,u%+.4F'J/?TymI۹I?zDɞrϪa<*wEdW=^G: [9ؤu?9;QXI?{vgmdWܱyuI}TI̲#9EkN) ;WW]8tR~U>E)|OMܿe'fX|ڙ/H|7Ϗ2E#?TR{%ү9 q%Kwxm_{Zדc|oNK}ɫ|%+撑!$^?Bgj!~s*w,̼/ է[ )Qk/F <8SxĂb=s~.|'WN9PϳwۖW{&FTI뉥]PjOo(꿂߿_ G{E__{ߓqY>YT?J?2JlW}L~'v/[j丑74 VF,2  .gY3G܏pSCV}Y[kQO\vd=5wW~-U;Qǘ;ߐ8 K|fkŦ_igRr}?o(*u_Hܪ*޹ך6_}kc{ 7犉y1޿x>*޿jRO־#Џ~0NX8ȩpts>oh;+7Ww~QO<"\,es\\Jٙ{n|~mѯ<[:Τe}'- ޝj6~VzgjFMa)?+ߋc }cѯ9+_ˢ[j>.1/>SǓt?*]N'/=T~'Ջo+_ƿ@TX}x?<Jfǥe#TW9Jy6H^s1Zj㇫'ecyٝXvG!ľl8Fώ~v|?˶>w~ya1K?(eu1 ^-K~?ncoяp{޿cAjW u׃C :{唓ٚ51gR|~.,;_{^d538lQƤ>#{=ώkӶ|ŦW8ȶSxosGn_$eˣ{Y<>sGu>DZ?~ſS=+Տƨ?ڨ E' s(ޫ0w$=;d=ժ4Z߿?]xYĹ[}gދLЗ5Vt}ޡj 9y_(ɫHa +Dg~@߿Wxrcc=}a+.vJo͟QNo|V؛~n}5)G,cUS5,s_W?~s>t?/'\gz~?wJr'dyjL'[#rt aWϮ?\CJx޾K0 [~4ܡkO+DQs+޻]:.?.fE疜>ߊswckVD-|Zg9Z#\3`3svf١#:p+Ŝ_k4_eQk0_o r2;#?}3A0{~aGI.tDsbk|Tfg^U0<0 cΊedY)#f ֨= I1_&X7~^%3$> e9),< 7r^ˡDۢsO Q{9Dg2'uIүgt ;{ aN\TTX;ߙO`nJܜ؟:5 ۧ_Ŏ.] ̯Yϑ𔙃afg8WEhѿ<:+܆}8Vx蚫:$eȼ漘g^7Fwe~>_^{=.۬ vz㟜>ˆW_SٹYpPХ̑ &`ØUcNϰ_k:~ݓ*~P=>0dTCS8h eqC ߁7}?sӢ*)n3i.@yEyޒ,TL,)//CqWӢҞ;gѓ߿+|4y^.,]\JI36| ϗEwc[^aog{ˆyV5WL#»ٞj'DUpXO/J}k̫SFcΝYKŰۅy\xwvO&u)S%| ߂&_I= ;=_?y~lUs|JŊe_ɕcԟwA}ϭpˎZ/|~:ݸ=yq&vy[326u#N^,DZ)C?;f _7eG 4iυ/w.u</y{OSNыo?Ԙ{_M'l20E?BPէϗE_7eRcKkweN\vɪmNx8yۑݨ+\Gy|?7=p[t 椨F<4y?3¿_Zf}M0\NU_μ-Iz Ό;pZ]Bw+S8q> ;ܫ'd?/}~ƨĚAV |vr oX ;w cn!ܺx\]]wQʯ0>y\O ;;~|xyoWN Evp|dg?#itnN/[G~/Lqy2/캣JD[yO'>qORݖ _=&8?|K>ǧKWG{V8RfuOåS>3\˝Gagd{dz[brJwG0 աΌڃϮll.v)yB|ib.p;s殐[vpə/ߣ.8c% _s⩪NA|뒇]OW2- H/ Z1xO_r-'33{ɟ/+ue8%t˂fr_ }@#:Hlk)mc(6k0N£k[8-5wz>I>1ŊޛegXK]:ǿd]`=?8/'Dx5۟Aw/O#契U3aCq(߉:OPEɠmy$뽥vM]_С_r^Vdyjޡ}(y_]_j[>߁yV,YmQo̦fK;?r^[~z%yJ_gt3Lᅱ~|\tKn[GBާLɁ~{3\>9Ϸ%|w=e .s栿uFAxRԾU.o yA.xgs@7weܚ_hݿzĈӑ93q,PՄ?C|)iF*?t_,C_Ȯ9 ]Z~4~8&g9R#?,l1 R> ~_H9]Qx?A篆;NI4N#Xx\8ȨWbl ?M9,VM@??]?Q_g;9=6 T5/ݸpΕTm}RF/;jw"ڰrю~V*8aK?Rr y9[}V5x,=ןϳczn|;E)S}AN8|z!ϧ |$͇>pvtOR?sRyfO$ I{{栿uGqYڳFK7~ r GszOvekQ}q?GלD9Gۿ]<R ?yy/8~ f_ǡ9V=WέϷ0ϭ/]B請څe1~PwW89΀"=b~lǿ2*i8cUY}e2fi>;oc竢6YqۖEº%\/tʩRRG?{K%%K~1+8gbrй? X~k]uK7^#Ɨ"ꬂM9?8.9Fn@ {9W/}o‡'κ(j"UYGX+G߆ҏќMG#$;_to]cx#\Yɯ09 y}?WhRj(^zO5+-Z5o39Q1c}(xw4G/-ʇ^j;{"2u_1;43&E,Ͻw:-mS>^\ᦔuQGC.gᥡ?WxcSNcBoxVs|?fg([r=~ߓNc#xqs‰mAYߒgaq;RQk +M=7E5I>.4~~\{ֱ|9-nj߇|eԜ׊M  bc\YwGcꖜ ¥l]^kgaQ0rgI|.1FүAFw/eƔF9<ƨϏ۫.i ޿9=G^_lLC~ߒ2J\/ _塵L~2[}LGs~:Cgbt{,}6V6Wucs>4χ~a=]+wQI5_Ճge##-9[}V3:Ƭ<ǁrs {<{ϴ&-ao.Ȫ/Ǽ_'?G x]kb{WTڋ'#O\+{ l'#}:YlꝽ^WՊC{oH?~͢x|1Cws&jnv.5U_=!\vh. }XYˎYzDv230bNJ і2;ž.UH=<ʋ\ƅ?%vǛ>x>Vyl˹߫y__`t/\fg];͔O~F>c]_ק\/3gʭp(,3yOF!ڢmԼ Ȏ{$/1nj23y߽?2, ӚY휟*+Ǧ=˪kB;ga c)o?$iޜ NX(]co+޻Yk?v,E=:t|Z<%=9A~5Ѷ_pt/gP??Z5y:3i~(@s?\3oo/1ȳu?5f|ft*1 g]ܜ..f7/~853E#I;>±ίgB'seBGEDwrF͛;I%,2އj5`?W=o,{-_WO2#39K gIQ&(V&\{R2:g*Soŏ⟩~,ve ;|`tqM?S縲kʞ?JQGn,bMC\虐 `4bO'2gT??_?]g:~\}x﯁Q ځqs~夨~YQqrE<ۉ1o7ت*wp,gm,,F}Y?_/MFf_󥋧>nrkSfu'=v9Su/L}ܫ[#›6><,?z`ޒq"_*Vb>MS Y^˯ȁη=NLNHX?A?=Y*O=kɰ'˒nZq?x+tzczwI8~E±tM17UR=Iyzѱ%WDO/̻2!zw8 34d7~7ωȁ  {/©п*jTvJ83{g| _Z t2~w\pzM@S0ǐ_t)y_XW-~oNq w ~~p>).Q{c q/ݞYVEtlIݓWݏ^{u -Ն?5F5k+`9agg=9y;(E_gy(ˣbhΑ{\?vKrRkE^=2AI,w<B/>8A'G&߅9ЫC?'#j,1X";ۈR~#+VW|tjwc {{I̽cU?jɯc6E_dIuFY נy&jӤ/D͗n =sN>'r')1#:;;i/tJ#Myab|q竕QsW>"~sF~ŧZձrvy)yi޻鯖W|| jI'B!)QNb ЇyQfIy)jޗLp@kg~K077Rck-/CU߼zkOb^G3t.4{|)f{ȎO_<vF֭yVaXxo}px?%\\t))ϞDsywFO {(OL󗗺A5&ɟMcJoݿ >/;߿?Gܳv?!'f!;Hv?{_~νcϠڷ{P߷4} fy/t?SgàTscdk}=J͝3q) y?WE8?gGIRJeSjM~HoOkW⊨u%a"?{I> \~S!I'O,9|6bʡ~rkt}l(y(_/}Ϲےɯu; c1Dy]NZ㝨߲%Co|yY>}'y~K._=3tg?NxE|R0'9DZĻ ? WCWwpJ9A1žJR|r]rIA=1cwCmvnѿzMš}.)3z;v[{ C1GgbBaiڧ"u7XĎԻ|C>PMw%=Z@~fk )+ضK.H M~kR^3i_~vD҉N%ҫ=#կzZXjJ;ۿ{H&ϾcώV?ny{tuf Y*.8zx_AY Z}u&ϙ _ߒ3_1)?%׬rUUKǎCܟ|3f]:})&XF\2O]_̔Cw(ЬEC=R}*]Nϕ~ʲԯunr?qD_7G7.pܛ~xKӖQ\T,t'Ag/ŎLA)>ͻ|,cJC?+_3Se1B۲|'ܭjOKx_ʯ﹓bķJڐ2ow:έW 8/*ζ㊨\OyNt~ԝ`+LW>ɹi~O=儈T[qj_ܹR{8|/ "xm sLbZ|%}<ؙ)=0UM{>5{Gϕbǟ0nKccS&wOMfs7kFNQqtۢsS'?eQq~i~_,s ';AN+u'>vs/8N*x'Qgj0ϣ\5ϣ4|%=mu^-S.s&/n't Ieiutg^RTƽk=kɓ7JY>nn;J#?q>je(lk~c+N:Kwx^g?r/yJY^0~d岨{5^-hgU%)3g(ye>o2jK~ωy57ԚlU1ϯqjFgIRs?]fu;w[!7hnKY{w-WD%}W%ޔ|G_/OrRo@ʳr9t{1jK'|NH]sC)x\yF߿c??jtǿ'ϓ\u%_> !r`OWMrMU;#(r}ԏU}Wݼ35_'Yzz_71C꿝]Fϕ8^ l{Sv' ݮ^b0|jlwROR_Nߝz6Y)xVy4v.r'v7u/,~{:GkQ.y ;R?~ݘ2 ?XLw|~P!)#J ݪݖ?}P7MӚk5Xgշ-{g _01_} ~GO`w?k|FelyK[;n4[/z)҉O@X秔k`?L՟当+is]_*%].b0ߩmG<q_Z?L;@~_)笾]Qb ydﱕqc???v՟ٻ/3(;|gQ-9uVǁQ{XyO&~_T=q}Q{g_T?͂IߟQ,y?Ȯcsj? ~4~ǯSz{ߙ_1gTgܜ?" cC=} ^Fy`ʣvAGzw;gnhpUv\FW9+t9QmE^3Ŧ_9f%>#;1{KQ;{[+zgl㤩 8iC*/1֡;8|tzǠRAwM`qݿzwE=u.r\Ŧܿ+~%uWD[NΫ9]>凫gUy@?>`U3O9}}C_{|qʨ=@@t$s %HOlQ}YcҿakQ{N,ݹ1+ht\(~<{ߩ[~uUϓ{f&d禨X7AdſB0\ ;|ďS?qQVHEfԓv4Fڿ*ͧכe=F=~KN'[GӳB|6x.=dæcP^uUW {ɯ?:p9R_/a)"l3-6ٻv_wFqq^O>އV8}\޹U{wn}Ѽwt)GEEw5O^XJjepS^j{ wÏcd}:fs]z>Jrɳ־{0_=[{,f??ɟ6Xc|=ⲇΘX~!g}LgDZjPA±1bwd맣Xx|Y)ᝠ5 |:f=?w~n 昶i떨9.TrJ>5Ifش#9N9s.2}ڃW2^ 39;9O vށvW3{3/k~voaT{R^\'.휃Ӓgz<*_wg~ i\*{#YeƇ at3zgMa1y1nN&h& ^v;cũ8cyߔo ޹\f:襵^q}̦0?f5Ŝ_|Ĭ=.~&:_p.4=iݴ)1O8R_׬Ϟ{]d!?{#RF~XI7 ȑs/O0KY{/q kKW<]C5"{RSFzktYC΍ўo~ w,09.y-<㺨 bS8z{:`X;lg9*yEϮKݩs6?ۢ9˜u5w y~{{?̯ ?Jsw 9"\&fl-?^z ~i鯔o6A~ yk r۟z˓~t9.>.:*]O;]5jVӱG] /I}GL5S~𘈁5UwO!CMޅL$Sn۱,^g[KeҎܕ n*] 阌n7{W9_KU)/+H9D{1.4p/r_(縟tol' ;~ )F%3?s{%}h~V%|Ub{ON?~_sM~Ǣ>>zN;ow??SWQclk\3U^π,]*F>x)Zw.Ok],eF?R1pߒr|T~/ Ot{]ׇSGg{ZeIiIC)>{ǿY?nve}Vώg-Q}Eao3i wph;|>ᮔ'z9~P=,/F+M\,O6];i+NsR.ȵ`ϝWwsTo{.\grBoȟ"gEˊ]HC??j>|'Y/5νtҎVt:jб =վ)™*{VJ7-r{7Cnٻ ;ג}G ^Q[>r|K#ˎUp$3HG%W/maŻԜ 8XCWuz\_r<+J͡9g$l$7gb8׼ޘҭk}Tj/-xCekY~ŐL,/S~SK?=trg@?r^3L3 ֺ etIs\({xdgEYkm zZ'[CG?.q$f` _.W{y~o~EKC4R;7ew կ]b/~gC߳8ϾG˜ߞ;+ 2K)Ԉ'gZtZ)#7d<3 n?][RNKݝb9?Vܟ:OB7l)5? mQwoݞ7E/H$k-vPvy?U_ ź.#q.׊-Ǡ_=X{ ϭ=>s7MQc< r>ގ>? 95\{ H~s L2z{qu|2w_M7ӥlK~u“|ĸ}]w17**˻&sm9mrk16媮p @t/' h|T;{Q"o_3VbC/m~%v} .r 9v^Lu8~\r¥>w'%ߔ>WH3#de QwI9}: ߿fq3؋Mfvy{|EwnՏ77glj/9wV(*Ws~tՌ| ǚJY];7w3P~jo-ŦqbcQzKNZ־V]s(!mվ),G_;}~쏊ܿf,2~,|K~X[Ŧ{l/bN/&4`%ߝU[w\e g`V:){iw|W mopy_kq[; ׂM#7i_ eoxV]Io| ?YbڳQbUQwym~pX N^s-6Wϓ~ݿfn,k}4:r/(ݹ$kU,uU="{{#ɾWmׅ]Q-9U}s+{[>7{ s(}9үk,ٝY gR{ Q3,6zէ|uV߿~nӡxюɻw1h//~ Lw߈͒ s힔Ό@_'~V%-gժ KJwoދ&R ?~!WnoRw)5JzM7Ef:fPt[T;03-{JEzuT$~}|{Txb~~ɣ*G[v ,?9Ε ^GM;ѝ[aa:fu?{ܟnˢƢߵ}AxGϠYC\;z}T7ǂ\4I:~Qk:ܠ_Tf*}Sc~ =3 ;T4χ~_o{ g&hcN~_ ')3&b_vWٹEcݿj4[ !>㡷q6WJJ a<;*g}+ s#- a}4pIEJwwSfmf.< u|ȗwKTes3QZ3 ~FKgP:jmTLhр'f)iH%|_f烏/s:=& b2;#PyWuѭkur?r|.Rqu%s'.eQkHg)?JaewY_43ӓi&eZs0bȽ@r::T}ю,wW͡yT?v''J^Ҭ?sJX͘m~+OuQL{ ~w_O읯λ3ܟTgSEUtD~6p\KaT̻ޕrzr+[r ^> x)vZ]FH^׌Rцl\O:?=|S;^~1#Y {mLN4WAf\wcި_*<~D2/Li\\g2yU}kㄘOA=D7pqy{qӲ-\ڝ|u}GSПy(|'`ykKF|!9ylk-󴛣tq_`Yb{}I3v ?'>t=BcupҏsI|PfOs袝)`)ow>Qbh_~kR:.p)+z7vѕ|'KqT8-a\<_`|Ծ>T[*G}N,7%bOoI>>۳$M;(o(|tq{.ɻrMBfyBZ(S/K=Ҏ>o%Ow;nݥ^=9ӣjk)vw/]j%y|]AsbvyO{yM'{Pa΋g?!yEEWO(/-e.?+>^}ɯǶZu?D7Gz(߅=B;3ڻT?_w8~/<ʗJ>T_/,Yx mM{Z/+{{Svl -}ԝ7 ݽ?~tg*]L寐]NL>:xF&r^ܷmwo3!4/5XWFK~OψrݙҮ ŃmZzkv3>6 ;x.9Rw<7_;tvKJ^ܩYЏUjO|BbDW/ȯ0(_[8"z! ZpX{c]/lgtcakxe7';33NGwktw`Kԝ`q$1=>o#z$d!>o5Y?_aݐߑÂIg+'L4[&xZlE{n(ׅ{bIW~6*Θ3*~caA;E[f%+w-i'&ԝ`-}ozr.b?4?nK Ԭ;eY Ǧ{o~Eg1Č'>5 ݚ vL]?#a&}mZ3K7FݸC5Dխ}`.gRj~+?Ss=0n~y>֙C.~߳} )0iN'N`}w[8 5W轗~nA<{|/G qϳ.h&@s |n?e&uեFʫӮBl);,3oOXmnp):#9>ͽnOw>?3~>#4t\G[ wlci6Ϲo}zz?Vj3dxQs ؔ~N;. >_]'-ge]*v;w%H r0tL8;~^<ua^"?#_1$GDW~qh[8e[+bȢυa/yh3CW-y\CW"[ڗE:Rc.ǟS;˳;VM::x??Cv Պ[qn+.nX_F{u?zS{scYN|#by9|4 ɻQ2}ƈ}^9:u:2;9N~sw`֕n_e[v.U59> [LGOG6E4%je[K슮/MɁ޿f/vDߌpEE[j;l^gݥcgߙ}cM&?S~w~7{[疽nFͫ}>&>O7)]J?wu}|ha ;~-1f?uQ#rcԹ1agɾ_])<|_Y|f4Q-x]Fз5w1 ?P8^/sakB^?Qъg ޿Qnq:۟z*L7W>/j>kE=~nɵLΎ'8џ‰ڧ?A٤E\vLF%QsQsUc֏>cN*~>+~\*q_Nz-4o{9tJ`9=RtLk"ݘϳ4A/3K5Q ^c䟇McFN2"U[lO=zF8< >}އg-s _U7x˒N$ۣbEsNN<ܚ#nLUx4*t*ŝw:'-د&Oa~xCʄ/9/ޖ0 a6~K>guI21椟?I~L!6YxBЍbvm_[ӧ,fE^EE縤;enMv3I/z_ dagҿ)y~u4R鄝֒|gdk1o}W fTױo8F<{P3;Hl'm;Ύgg"͗ >k֥\ej/콛9 Y*>RG ; [ KSW,SXp.=I+T\_O:SRFg ':G;)Sݭ%u3<#n_nNK_ZzqэnMP3_ї̟*V.s 'My,LjxWSKFז9$`e•>Uj{]+W{yV|>*ms~/]ۙBlũ&vC{ Lub.uRw2k|U1yu~Ig{{&Cl'|#g8+eG]~yĒO?+\o;g.38MOy+݃ v?TGLu_ǽw'"jɱ™l9~r|m͕=_9~hܱL4߿T1u+'U% 's.;!J_nڗ\8+k_~lk||>-%-,:;k<36/0ͥbzmHy涼'OULͽ4χ~ǯ<%I;KWBN] ềt_x@.6F_>|-[ V^K>f;%jIKԘD=V7'k?| K7C,䝗,=v r{'G'!ė%СІ#Z? j ,*fz:xYS9TaH;-串L”-ύڃװY>O2k{=Q#_E\)yǗOOo6 \Wb{?;ǐׯvǑ{JA| w~p)nnYzS-siK[eٞzJ!h_OT~e)߻_~U^T\_R-q Xr(3Eſ^hE ,yU9,rY^Z;POZEŻ;'2CtߛJLsTq) '%7/1~8CGF97`|GXj {Z/_OgjFg?=4uf{\dgio𬞿j[ym/?7[z-{t{Ԙ8yR֚Rw^{oCɉJvuN3%Ǣ>GhJ"=*eR(v8~S@?`VJ.NwdJ;iG4ϔ _B{a;@9QmYݘ7˿/0)򑨻ᙾD8R-<+)thѣsn;>g:inm2/b^?KAf8yy?|uyPUe|k~HO~R.;Kvߒn_%\}A=ce6@ /*;yQҾVO_?85ꬂ稑џz mTF~xT70.o{>GQzV>yR;f0wE[Xi$w#?o+=Ԙx~}ᵩ9~78z(gUz@?+*Sˆү>a:E 3 KPC{rnج&5<č3֔aEF2uQDtURg8qnR'꽢gr:o.߿۾Ls`y3^gi ץ ^;Oԃ}_tυrA><υ>O,oZ^yM*i^<~Pwjv:m>Xu9wGy t4˙&׵+W'VZs8>3Syb8UQr*u%eƘo?^,l8&sJrחGlr`w--A̪RkE RxWOq߿26߃u`:u}ET2?1vҝFF[g:~fd=oae>;e.;ݼN5ILG Xl7GgeS|Uߧqw@ ?e`?1fk~t̾ž;|F >~aΔ݇_u8^(j<{^,>C1v9K~oG_n;3Qf},^ХŏW/x =K~a|Ww8UpWdLs\I`'UYu3WĹ<%cߖJ?Z{~L;'7]Y8ϷΖx_bPQR3=3K~oQs}D x_b$֨^?R]3r]j]K[}-y_.'$G^t҈,p(꽚2{2F8~͆{_ݿcs>zI1g[dp{RוRTg[J#Vjh^Ks;{gc>"ώ{rOFh@_f|YݨeTޫ~t%K~T u|,Y;^Iʁ}"*;wk޹oOVljNMLzB?wq<1q?F?q"~Ϯ||zX5;t.4c{+ߌO?Z aY~{.L)Jۗ gLy?Gү@?̗_?o u[?+;Zm\ߐw-?븾K~)r#Ϛk~p䘼e1>552vy[[aW'J?!UO}wGjf-!=Gi ޿rlD|85ǔ_xe8O35/jj[uV9_U|))Կ76_t>N=+lŦCYZYl%35?u 1k~դ3YΆ߃ۯ>GQ{loj Y)}L'? _:)" Bޘ?C2jOk$[ Qp7zp{<{ok%Ϸ =~`dqL/Jb;J ˢVUJb,ށ" y,{N޿IRy~n(n;>ۑvzPbRmCxIү}2.~P/IڄcvG޿vW_89}.Ę9; jlgOơ=31yϯΥwn/kK>}vݳ{N)ڝK yڝIpzc,nkJ]#Af$`уف_uzD';k2ݥ?1 ŢѵwLxvG]byAY_|+3G>Z7_Tfwch\bGgV&K{nzC|{ ʻ|z6v kW _+3OJ3TF~}¯woAaɩI# Cg$(&LH5|{*b׻UЧ,v`njxQۢ =Oٞ^yw]Y|?)/:u7ސ$&[_IrE侔ov}<]kvLw(uؕԬ ?ij8M Suv]5+υ^^{/~o=gw v##ޅOI_sSʬDZGE;h}Qa"^U[c;]~}Ugz֞}Rw=;??-GXRA] ]W\|2睰?OON#ܩ{MqۢkywlRGV~&,J}1ei?Qhs腆5x^ ]e7[{V oAt ?ESyW$ݑ߻'e?G;8F,s\;&K>wL~7l/'&J램9$g8MEfMJ)/;_Nrs5,K^'#z}ڔGE~hǭ3QwY:yҎ`}F3l;7ٱdit;g ca|6o3KJ[:~Xy~-ǶK~֨A1yN{/ʯJB~3Nnsg?=ù_wdYp?;b<-;)Y -Fcs&s͜\sI2&eĉjFA\DDDEE@DED@nfߡwjhnA֦L?ꩪ_|ob@ =4xY%~nAWzi >?{ʼFXuj8tk8kOW9{%6\F7|KE -3^U27DS>?{.J. 8Rdk]g?z[Y7EbS#_%C kmn/EwٷĻ8"x_E+z uko ZVrW}Ѝ+9q]A㦒rV^r粿J-mێvZI2Eaޅ' '?DΖKϏwIz~jwŋsKw0ؽ^3#ǃwu=dV;UQGqᢇZ󊒹-<~z\{JLϗW?Tr7DGY%sœ=Y gEtW,x+q&oB{-JI-/xeUQ|"}Jc_O`wrC?SK+7|f0us\3Tyő ^Wy|j _z(twԻj|֌eB/y oDpʩ_S3'?y'R[KW=潣tqΉ gxVgnfGv| >nO7E~տ![uEB~5 'dYJ|-%wuI}֯#_=6وB6U>5!=yJKƿ9-Q=ȇ8&dtKܫ+ dy~wbz{g>2K\>o;7RߘSp{_8y/^νs2>"a'|uqɼ֐_ǘݐO.;L+dt9\E!{FO8~ss"CC3 ^{]!طݦw3Y'o]R,<̳4sAf͔x|_#>g_3?a3Z3BA!ϼ|6v_@nqmN_KKwn/=yU|ePE8 t%:ޝ&1>~͎?Q2]s 1.5{&C{%g3G]#&1՟ەB;1\\ԚVuf4??Y}YЧ'pN[#Ķ=lgy:\>S3jII?jnWuL{a`}ErU c(^{g>~)/Y} _wkܢ.{=aa7Oe^^?G7WrR͈(S5;oMbWqAX}JbPof w-?Ͻg{oE^ZsgZrn 8  ~GKbPlzGJn[vK-m=s}ͱpv٘)9g$Ϝf1&a[-=K>{"Vi]j;T_کv &p#EqZ|ZEg՜gψY ա=9>{_bP]n,9 cNg(@T'Ny/^O̜]rzB'󸽄|/ q+K--عp~^K*9C߿cI%<žp~ccGԿۺ.9ód/t~~%wyO?ߢ=}q/D*gR=yT.%Kjhɝ*yh^ ^߿wlɞIϡ;I韡+Gߟ~I·~xUW5)^Wܣ⾱rT+ˮZu>ŸnM.+Aaqn^<3^I6x(™T~~qxG ~ܙ0)We /?˺Ɛ=Cv+2>+Տ|{g?:Z} }=Xf)l(?W'sp ]ʿM"0~=V߽v>? Un]EN}? ^~[|2[~<8vtbP=WKw%J 𭄋͡NJA_2 ` )IOvZ8|1#¯&v3`{2ٺҝ5[kJwc9:^wٱ1H?)Oş]|M;6$&r x|E GafP ؇By`!_u9,ROUV3OMƆ1vx YadYOӂ~䒾D8g3'vR?QW${l7uv}} 0{ g1tW923]~f9S1`=,zb-9[e)o~<π/ oW*fGI7)X;Heb.oCo]|K} q ::0R/Y+1?+ ^_g.0?3޿ϘY2Wݹ8䀘 ]$?zAϚ B& {_7[/y/]th%` gC:~pЕ7{)snOKYu[ɝ/wCĻS~VV1ޏ>~,7Swx9 94?/xxWxY sG|7>~ba Ĝ?N<bւ{s!`wix^;o/yJOqX0Ѓ]\wLLV=x9·Znt ;ԝeܶǿ-q-gFgVtsn?X%g'_pr;kJK 8mg㮵R9k|οP]}v x_p1??Y;\ŹE%ϳJW~*DU!Kx+֮_3iPm]ԐM5-F*? +B Y%O[5}}| ?H?~7/KK/ 41  ߠ.{>k/@3to?,Y>5,_ՍDz%w>꿽d-gɦr5GJǿWſe<5r]#>۷A%K)!,?gxWga>7z3/4߿ Bx wduį=ӹ%w:~bv Tz= ݹڋkB[/9A/犻Ww)f/utO]'tbcW=2B_GL=*UAX|N1vXyś9e s8s2$A}מwhY28ݭ|eFϛ+Jp 'WЂW2 cӄNm rNQ U?; CY0>;9 _W7-[SSYOϾ=zTǂ >Y3՚]&rx(3l(X3}o=+Y{CWԬkƶ3~)KoQJP?%_.][N "wEuK|hSs>4x C|39~3GG> ^?vm> rB3A?J,~'x];^U3U!5g9?#Xfk~sKTS%ݲ]R?0>^>I ? AKxzs.}/Y7._6Skabb;x/tpJWg׮򟎟Э|c)vb>>_0~WTq9Tq Y}QS y&l.q௧-~zVU8䬲y;v~xɧ䦿aIjLڝ{G;Kxo2zd1|+v_9^&?o瀗}S?[{ٻt{7IIl`Gܢ_1|tI ŦMj:S'R/q|n;rKvӫ<vݝg|N_К<"*1\Y)nӖ޹wsc]|tCz&?-i[=/$P}Q5#{E¯Xs<+Mb~_V.nb{My?Y>s %+w~HǟṰ%s[ds}CQs5~zwݽT<י{V}E%s_o~ߍ9߫vq}s qOk_Xo Yu=8sHFc%a ;|5t<=$w 75}xK?JxTk'??[OT&,M38yX>(~nL6܊o,'t1@sPo_ԫȫ6ƿ,$w(s=$2Ő ΀fϓJ?S8\D29+DwvqgCg0?/.~ײܲyVH}mڻajrk%%h~E0owM/t ޿j2ȭbF\Y-AgJ|z'":yf=r9uVAz|έxn{R_g{_>gG]X=_]9Jt<:G>eq|A?{UDKvw,~Ps|͕cTCZj+F^lCrsK-5}/}Yk~]l=ݷd}PIvK`pvy9h?;zw.KX:?y?67PO$z'?k(ǝgv皅+2 ۡ+Zzɔ;#6D+z>]V{@I_[j[y*?53Jm=-G˳~3uqvϋg3{^?yͅ?s:d̤қN/=k:djпd'3O?-]/\W 1,C50R'MžRg51,4=3tdkD86zI=sw0Lvjž fwT af~ЩY}a1# !s ;3$`a18 rU#oi~[xV~:swz’kk A뜹T?#,92xG _{B4=ЈnaW!][:XvT W3~מ<3߈@{_KFp۩ %I~?.| t9 GJ/BQGzYH3; a=;Fd]#> Zr;yP8_=dl30:~#{cY7ϙ.(fl 98.XoOS|*&lx9zdЈͽ.Fqډ&g_~Ky񞰿@]#ճb7="dgvMjtlj1g_slɯJC#vsd}3Lks zHrt}aaQn.dpV?U.{O[vRW!h|s|f5+o,2P RCAvԑE>QRhT=mA0, W&O`V0C+ӏ_', b|q,zaxSziaWK#Ei7q;SVo ށvtgtb;r_wA,/?{.fǹ}"c{p\O~}~C'ǷFlj8OҞ{,57Bsg@@Ռ5~៣ dύAozgwl+q,}^Έ+Bv{ό?-~ы]V\r_[=5A/~<"?+$s}vacc xK?T/ 7Sfǣkᴷ}uOUsv``zm~ݫ>+ǟqgd,v{L _EܭisImgل?3f9k>NNhBupGシcSɧxA9~y ?/zwד LQM'χjq:ry "zKСkrp{X:KB^$~.[[s+m;ow[SVo&㼮tEU?+yuk~އe5c_dXcud _FuJΉٕ35煝XKzF4zS{*NO͇ZOy,)C}CWA&n ~Zߤ^G<*3?NxK ~v^h!!G'^/a6ґȵRr<{OkOYkYK~zgh 챼O =\2g5,{=c^a~frm_ އСCA? ;]%cFِaUkO"vԠ[y 3,ť-9I{㞱cحS ν@v_;w^/u_Zgj_I!㡣< ,eg'sOCҭwU? XpȩrG|{|?^'@?4||;gjbe> /4 !~q(`;;|.{6{޾q$fn-b|l>݃M/C P_k~-_/ŸXB<qctdP{/=O_חs.jኟ/R5~[oyLa0WqtI`I; \G ?S;}C/vs_2 Jt(52ǯ=ҕW_y f>gzVљǕ=͇LĦVK )vݯ?ב>E.1M<њ155c!# 7׽N|''/࿝Zs/?T3l(g@,=|k(,;xCҏ}'hN%{_5/ _'2suxOMYpkp\J03Rjޡ5ؚUoCs rmɞ[?=Ϗ?]?xee2󃎙-}^Oa+3-[IELI:+ڿsc<۽_XߖѬ$%k\:@:3:;g٪^r~S_;}y|e29C=ws޾J%{o4k6fyrJrK6}Q+\ɯ~^J[N}=yCɞg?v׻Y3 ;~5]y\ܸ1M|6)W@Ga~cv ?S3, C\3`x|d}w';8??^U%f.Х[P\?~r[|ח_}5,Gܴw_sow*p:!vW*@ܚyug}#Wks퇞)1f&0~>?T2S{N`~gҡ$W$3iJn8Q(]\>/vH{ ~;n/W,lJ<#%¸]㼺o9~ٽT? K~VNt39jW-Agsy/N~]aC->#9>CJ?K:ḨJw.lܹcs GK=̈,^=K޻2IXri<923~sqsa{_RfJ2&'byYrl sgjhӰ4?{ߋ,/Yxוԝ#Ԏ[ 8'wϚX_ۂ6,-徼w}я{Rs8<8xux%sK,6_GNsWo/|ZuV=_cnXj.&돕ok.r{V I<< y(lj# K6'ɶbkߧxXe!|kއb?<ӱ`~ yKK9npG<~K}`gq\FgF,F*T<,LWz@_2Mt<yE{^ϭ>Vk͏x~]k_s/;I·~?\|Rոgd+CP.lVHyizz-s.mt ]{V ps:\/W Wcp(kJ?@d9ñ<{'? K̾GMe%wٙKYsO&?gseszI^w&O 90fI'BfQtJ&s `.A=͐\qNI+p: yo 3<%?& sanA̼8.p9fj+]j_:gIs/]{to tt>9bR1 s$°crKbEc z-3WG ̵0WYMt:k9kfFk{dR!}Mݿtygu?>9|?{;{I::=+[[G_M 7~<ך __toë?lA;z珜 欩:)r55gOotϼ0n+-!sMֵ]?*"͂1" t3ώ h_7_8>}+JhK'5ELxJ q棄i%,jb2#3S%f|q}]RFo-9wLI, f.[{v-~vA90l9+j/?#ݫkΠ2nw|[)P#t-C :}gLZE0ǍNgyO+vKQChn-fWٹEK'/PLܚx?`i|dqϫkJ؁`FwuWs;_P3:w.gJwߙ꾡ݎ~tlk+G FK`9^K`賽lyϏB>G̿{:[gX;gK`v匒x3t?:_8 SSlKx}yނوGp/i3>2X. 9qvVsg2Ό5mfѢDg5'Ϩ&C^U54;{ddO0d17ς]⇂QYF]`_3R.r{]/gb+p.]Xq&SF^}˧蓍tml䷅g5tBdפ\:Y_oܓ" _07r+|xWG8*VpCfOz_N2rqI|E?ߨ %.ϒcΚ!ڃ0I; v buSݎh?S~ϨOwuݥdsV~~&vXm7Zqn-?ϾO|~U3#j#l ?.'xO_]\j|Ncѭ?_/P_)]篰Пg@\Z@FWܚ^oE^碥G@a5c:1iS8  4p浿zK {C~_ _z.ցǭE)|]IO*}r]Y5{g"O7Ĺ<~uaٟSo?@=.M?aл=PC߲x[J._ ?vֱt(ȯp6Ks']]WobvKM_uY];/J=lAѿm/ܱz6.~3Gjr+}H! E7߉3{mneg{[IRr? ݒ>Ռ̽Lǁ):SR?nXlMIRWo)U{\2T~?ާgȟUf?YzȂZ/cU{&dB|7/Ug/,9'mMq#L8euE?"5@+FA8e%{S+x~3>wܳ˕;v}Zb˃gWr=Q[=6q>8+wC'-{ڊs[vqcU/G[]w7LX~C|F;qW??4s䏡k \4{ԶW5mǕ=+vd\J/]\߭0_U8?f. ۦ PύZ~wo%?W;UqGYrpO~߉W3ܭ׌<\[旿S^0~)ؐyą!Oп!&1ت.l#@)ݽ6e!?􅵋KоLkyP_ Ω _89JpZ55sڵ2V^ċ畿޵o(?:k{gߡ=Y9绞$G'_wl_wɇ?|e}/S7φ(gQ>w\C~e!7K/ ;XΎw!M݊og5{]yIucwL g&ְz^ZOߗ{2OGs{HO3P$xFC'.F= c^o/j֧CUeԳ9_#%>Sν彵hdsҟދ)AJ.=%W/7n$d񟱿WÝQ%dhkΟO<&ݟyuO}~CV}?K:٦V/ nV;\gB%5_,jȇpg%|k<{a?>a0w=1c^FՍyfŹs;9t^Q<kPPjG]iqRTOb,ssMyoz{Vn#`,|3S#}QߡI%I4ף}y[N9"QA➯vRw? ’3S[#?3d3}33g>''ʒc+.|WRy~gƿ{FQMuU{gij̔nLɘW fݑ HE&2=fߡdx/:@ʡܢt=gKj;zEos<,i|=79+<8?LGghB_`z]2#k}PKb- wU⚺ki"a{GVhKs^jn|}Ouqֹ./BFw[qqWYuVpoE?b%:)\GB~&/#7~G׫5??WE7G*hREG9?SJyW96_|xݗ;vtviV}6d[6/~vc+?KcgAw:QӧB|fr7Ƴw {ܯ%c;˗~fܒkg 4wjOV' [F^bׄ, i٥'_~#rW3s@xksGIדCԌn ހo[<'sB M=ŝo YOv~</:">Dh֖g^R!s xw:} }!wbdkW1dX}Δn-I_x4Jbx]Ϩ?Ҷ7Ӌ{]w]K6O\8d ^Rj?KW"tH=c|іॡ_k4OL;}NA9NVQϐݟʟ@n7-WXus;0%[ޅj5,9S=v|מ@aL8*GKvf Ԡ~{~I $rCNozgVľ}Я vU;(j@,Կ.<^v<)z襵{wV^{g|_~;r`?;~oh/Fwb_wT?Ϛ!?!-:o/fKsg_Gڮ3*ⓂiߌДC?'{Kɞ5?N0{ֻB;擂fBO#πYws-UԞ)^G?9ױ-)Ss]M\B5à%}hmzOz̫~Їo=-xϭ~-ov ޹?[#+wekJ:>M|f??#5}_23w 9~$lPXrWy-綼>Õ5ȃώ  Zq֞ w|hVc >玉C :gsPg;WpwW3k (WqjS׎`Uܹ2"ewا>AZG=I7ܿr[|75Ϊ}Lɝzg;}+)&\8boGAםvGOEοnY>޿dչȲi'a9迬\!lbϮ Ez]FyE;Β{W>?g76|w)ýLGz[^[^5ϥG K_7J%q/|/,Y%iRk&@0oK|L|;B/^jڟbvMChd[AN7s߹WK^;3-M/_]Kž Q;ObP}&Sq-dÖn _y apxMcw1v"r@gՎ$|{FyW*KOη;}Zwū4+7B_3(f tt1~_7A+$?W;_y]<+<ŦF, =t"cbed]ډ3[yi妞;bN$v^3n]OrB%k^Š ^jSbv\Z/E%[JK\_Rrb K+;_!h&L%/ꝕ~irْyXΎPnݥۗ۾Y~5dV_妐mׇJ Wg]=wjڳwϕQWy.~7SWnMbPC\!rWN2Jfy$ /5gFs<>ŝ_5[ {bbkJK|(V6[8<}}`I _XF~Ky7,7 t(_3E[{7eq n_ʡ/5W_)LOݝڋM}%gg*%g}wէŸlѕs_y" -T7 /cWs7h~0"?y9.2c,}ءi>?ug|__֜cfүw_ Ko ?/'hV>!b0>sf`FkfG` 3xevJ|}Ng'e/ ,u<+Y_A;7%ϾDZ= lҹ3O-\hS }$排Tff\ گ掌jbLCv_ff!;@ smKc#q]WC4{U}C? d8%?G f7 #dzaKt(3Z^Q_Oa٣PΪ9'~ql=3Xd[C9 x>۫^6a_Wg!ߔ.'-t{unl_,%U|a?g.3]Gs\X.v kyWa/^R7󪎍|gfO];ݕg yڡJFz]@Ƴeͽ}>A3vvWk!o?aw__X2`a0ZNݎsJȮ0籽 fd[ҩCW‰ut󭸵kiUϞi\쌒:k{-{P_Ӂiŧ;8I3&H9{b ǯs~xG'r4߭.w_V|vw{8{v]6:1s䱽Bfr/= ?.A>} $؟`_#gYM.aYÇj7fw΃03[طڹS`TWV5K͔/*l}^8Ms_;\&; K}%lt\t?v5^0L2]rwըgJ/K=ܧ=Kk)Wj*{i }{Ig~v9y`oA?C =ϟJ9C_ CEo]^'w#¡AݬAA? O >>AOχy?]f=+<ۏۿЯŏEgtyjҺ٭ u#_j? _ t*:~>^r嶒>jmowW cGSЌ_Y@SŞan(^9?d:^׾Q7~o-w:%x𓵇Mw?2sKZ? ڽLBP{fўh寈]DϠ{6=W\Vs{|_ێep[Z8YkKW7CU9(KoA.kB.Qy`Bg֮="db{ 2=wkUr'-6Ws"B9&݉7- φ¾'usEN!%Cw(kp2c%x]ܷ_wyIGgvuX;"g??8Y^vG)#< x;nxOK\; ~D >j.Ql6;%(7 {/`$:l/Ցqj.Kㇿ轡NM5H`9|СIƒXv=ǗBEэ_rUIa[ ٠>$1Ozghǟv99ƎSj`W)ku{Nwar±Vܗ־kU~Ǹyޖ_^={gż/(7zVd^^8{@,E/w^p_ĩC =.H/^?#Pљ؈K70[|Ưn{͈)A;+{^[?/X/ы¾;t甚:Hطk'B_뻂v9r]?=9h&;!tvwS!vj7~FşT,bwA?G|uEOt??Kx'ǧ'?F{:A=^C VL?-cjo,!e8}& ¯`qWsK(ٱݷ.~/Kꫤ/Z;c韙^ew_8as;Wϓzdԇ~o]쓸'گ$n3;ΕfS7?9R?lw|kyB??|] ^7.NJȮ:&?y<5n*eK~{f6ylcNΔԳ5]Cp _f}u%gKf'Y_l-ytgtn}9-Sxn{,ŏ]!Y̗~ǏRٵ먚$O޿/ݝƿ,^'kڝ^*Ŧy?{ye!™ R| JOU'N 6[9.? N}0WYn?8ލuW40OsT'1&}6G uT %HG915%q4׏:}(6f_B2;JKUv3k7|/I?8~X.-J\`|ąer iW9ŻYl{O^:N[B‹vV=wdϭ{zWo/iWcθ}\p{W9[EXнLfwYZ^rX3w%v;c'%{,Wկ.#lٷnjLϨs 'Gv띕zv<|tώ~Tl.q4= ;2rS} W0c~ y+YjHw]t}KDzԶ{߿k]^W{L^w}ƿY z~~wV+Aá.ZŊQ.ÄΧǒ$ϔ\um[a'%Cל,W8EwdP[s) ; d?PgA)?{d^=k,<ΞT/΢s^_r>dm;= _4 _wzSܑ֔\!vK'f(w4L“<$0 ?HsA㇟.b G7]*>S;n*XRx;zga>:sKWMX[E56/wh:’zg'3lŠX/wEm(T\ǣsQkPI7g]j?BuMȯ;_m?<:~suĢg_pȂϰ&&%&m YhOOW!}YGzbbOab1 ,fб9?5Hk4٣OsEb̔[D$YSm9a?kU?%}eo Cw`Kws`i5yX= f3T~_{[էԒ_t~lz 63w"x^?|~4x/Y0eϣ ٯ&H33 _H>vxFgR OZ^?WX_ɯ ccLݬOVg*H1phgQsv| ?)=)K7{0L8:hI|⫰*\h;gf[JA>.P2Wp`0K:EQWD9={j3.XCcas<.C`w?r,kw!>?8_p= J{b)|~م} 8$v}. 8FY>ޒxqyqa}%gKOʫ%||N)_1䲐k=1wނ{{jDxh\9~"um=//L=–7ĸz?dٺa9=^QNWQ=z񓅷xcH_ *q'+.Ρ})d岚q=7mOӟr~UmYY;s.5qr8"ݏ93<V/?ώ;לn.Yr\a!’va#裯(=3x磣Z/ _./80*o '{U`<)y*ɯY>)|W/pe᣾]S-;G}2ʒ7t[v #4/;8"9:x{WM}T~򷕴 /՜"o!\Cj枑#k =9 x6{3ϱ1sK򌚋џ{H<˿3(=8yXR:Ieg]F֕Υ,W<*\žS2{:'{^jŏuKGgrҳ>+x~.E~?D=k/wvv3]YĻ=T7] {?mɰvUr;\{_uo]N||zd<cByک_s?3ՏMK0}ex@kUM被joa0/k𴒹~xuv?{;SŹxyջ{Ns⟳Kbe#ҝt>qا.y},i>z9EɶWY7B~kUyEMa嵶쒛_4o7d::j.Ϥ`'|qsK?ȯ#x^uy | l; ?eU’yhŻu*CvGcg>7.챛=ga[F}`oW2<5~T5%6o(x;Bܫ̚qq+k49r'SnߤKwⳑ3h]x \m?G;&Jq|g|??s3z>]0 YuA޿?? %y-oZ׮\n ɚR9;q븺RK~NsDܹ#{uI%?ݞK=v?O\sȯK_SK}Ѻ7aCvoOsCT߀o^Z(s@">{ =_~g=3Az?^ן-G~~$LnEa# ڑ kz/‹eV<:;[ċ~w^AEd>_gwחcX[~={%J}Qm~~ofſG wC_3VXvy~~n?$AW3+!} ]8YG?|g-K㘽?7Ŀ}z*PݩI·~͡ލ1.L,SDN[B{Dw< q}L}g|gFQqZp+O\c{Fi^M}?{qf'Q N/Kb_}?5#p=%[6."NyZw?9tdA9Ŧ^Z7F&c{@y*9ʷļkŹsɣjm~?Kg#gN9{ S6vvs&uogǝY%?a[?[rcy?_ ѯ}eg$yNW˵˯끹t\_G_Gs_>T/skפ|G%ҒRob{ >4 o-/mSfknGI}Q_OkO]\N"~iINhZYU[oN'r^mP qdGgPDN{3Ǝ\MO'lN?̏hGEC?n6h˭%wi.v,&C,3<;O? 3g t3?Yg"1g7h3S(0桰]|X |wp"yvХ%ӃczM Dx4.yԣ){c6x'0C R~}su%WלH_I5oq?3;+k߮dOȲ .g빵;vǓ&_g;6?'~_ xM}1eqGŝ )vf9+aoOZs|k~{V_ԚS/=y\mX}n)̔{f լݱ!إObCb^YXvϛjӯ&Kٹ&~) >yYi26xg&LsNl^PϪ}C<NjCN!W ;1J.]s[O2z>+xGg|7ki#)ŝco'9MatjD FK߿>5-L %13Vϛ0/[x8z&3e (Yddg:K~RQ?rzOtI5Όw8 o%as݂Q~ߙȻ9ek2+>zyML!4gOwtx zkncҝu)gw(g]#ƣY's, wi9{n> p|vww 1?h,Na{_15¼}u9f,TuJñRs -x2~w?WG#|ޚs_U;kǐۈcvY㝀[~cYU%wWe5cF9fM{[WWvB{Bn?]G}soqOFw=_B;^tnbw;/WnO]WX;Jv,IkY2>;z+s[Z_3;?J9bYwX vv3xҐ)cqyTү\V=|فWԮǐbs0z:2Ԣu>IVO#~jbK'_k~??%T>3C^TK;8x5ww@Ƹwa/2ڳ l?댿;+,{I1OnՉZ}ⅾys]t=^ϓ~}*瀐Wl3`~:x [pS=gjnUn 댲]k{4l%|ggEaIc+z󢊉oB_s?0 ~ 31.Gݓl<15qO4;u)\6g߃ ]zrM)aE%"6՗.B ¥!ދ]o)k|'L쳇?9-%֗xMPt0t$cM x\y孼N0^[NßeV3"u5z;ݫf`CWsPN_oʟ+~h<纠6nw '栿u%:Β_>s݉$g"LIדkwVVZsK~;rG;~QJY;~?s{vasUO;ԝ;;8x\j,'n?Oo.aKRs@NxRsA<%)Ƿ.SdkW!5_ϓ?֓ ޑv/3s5UQ_ݿtK~\=&+oN$2/i Ll\~y>w*{?hաك-*6w|$zn~IfE2KG1MǾ#Qj6GGz$rbyҏO}ԝW݅+_=*/z{iE^l_֮ȹ|&WA?Qj >OSL(~noտqzTu<(QH3![vsAG˷?9=j c|EWP}}+zeRε8[Lm݊}8yhjM&T݂P-^5U_ۥZy:ڃRu9/ȳ!s^KS>Hx5޿JuI?82j~tr.r<&.|Yq9w-==G_הV}䙙gy"qr4gSQg -ZyV]%V:W}WW/0R~KOJݿxx(.@Fױ_4{><Ƕ饦_sB́1'kIǼ1+_Sn%/;Mx?t_wW~3]~ӇsE> ɡ=qDgqqWG?~$?G#:s께ZyV{c}~_ۧߺOϯ$~o~_s:pObwk^yݙzT;4kEXx'@8vl8}&=)o+.nc;U߹=ώkN?Iťe'E?>*TإL~h\kH~ѝۭˀ{/yޞ2|F\j=|ᣣg xwn?cCw Y}Ois;5>Y-u}'KWsO%_3=ݲ caY[*&2;I)Uc+.n9!.F??{a6jluF(?+y^X&῵+Fzt[4lL:~rzԾ3Iv$ǡ7>_ܳ ݹoTvq^gro׵>qo+ߥz{?bS쾿?3)s1l^sfb=eޭƟ3ѭ?N w(**s~Ůn/'[VkG?:k~M 9f'ѡWN磿_~$޿z&xnWNm}v~-X &svY##@֩IZ~lhU oL8K:8cg_:5%/ܢ_*j L$GC׎J.&<~K^cڔ|9c+,E7%<4/[Ш=e»d{ oJ~2ZӺt;>}_Td\~][ϭ}(C|תߡ+'h l>?~{Ow&횁Yjecs~Y\ s^n[_YuQzkz}]{;sY=?gyGz_ݒYn?`)=Z̊xqo:k-#^ R{`;f&I< [籤WIϞn?bY?,8|~Pʯު ʃ)gvll?磣WQIcT_>(ޙP=3JWEݡ.PFǣ# ~əV='s ;CqZgo*ec'_??gˍ~ŸGA3_ڋfB?~S{`4K< ߱"=>hrJCVVQϿ<*ݠUSoos)ݷt&J&Ov?){p,ktޓk`vv0 qK&?_Mu?Я:?/iF~YL=9u(&6}-3i:sxG Ó;'j>5|(h~0Avǁ8"?A'vh;ӟ15KSf?>gij@s%QN'h;ػwRwG\Y{|;ETIEO9w:^5<Φ7j/zwOaeش#,} KVE%?ן]8. b{ho'ڿ2퐆~v<cwϿ"^FŽϢ]eI<-w2g ^ϕk3|)#~]M(#Rֵ}cr;~vׯ4PhGxڼo;Z5n8yoͺT-ؾBy;x<5y;;a_vh'wKݏo~'Q\ߑ杽OR?Hi|}=eWWjOw O6xfEepWJ{I؅NBv?#lh|7[S3 wH0{fW~~A;O6Z7Vlgv?wmׯźmͱh$Ϧ4σ=mOWE{z6Gam4i߽(iFzO|Žw/wq2鞚|=7m.]oJY3.(@,wM?W~;y엓إOɾDgv=_k.-/AiOYVKݿp|yfƿ7vw٨}4έ~ 齝sɬ[o|?i.?ɟ{G"bj޵ĶNy:9eoE֞PsKyJk89OH)_| b3_ŏ-aW}I _}>Ewr@]ҟ{G..ʟgc'$[Q|OlZ9]NGn[sFskNUW;t,V=֜/J/CM3,#~ǏfQ=?]f_˻wqwMݡ?55K,u_:|~^#Co_b3>Cߠў(w(+{7Fݿx;LyU|Gw3'ߑOV'峠s<.(<%RqIc[9.dw%YOOxyo:4~]?׏]Y-_$c2_ya-53}.[y',#.&\7Ok僆E}^P=Joߣ])5Ouߘ>._DI~[sK~[6%ȏ`UwFqA}uƷ$}~i{'%t~Z`9?'Z~j֎x??ԚYK?/4nx5E?J/oK];\ϲ3kFݖr]5oH-I+vIzD;7IC{.ˣУ|QwA&ߑctt\mVdrO3c^3<: 'CaDW:_{0_cw/Z<:  |GFͫDssO+Qҭ_󕳂_*]Cw"9~;Lғ_>UȟJ?ߖ'/5)h,ߜV5_gr,+}&esg枡K> Kq|i]~[u9Ė\ϏPg;%*ֳFS倸{joIUo|/󮔍SlOgQE?3yȟnΖgAc/N޿/hg?c|Gͳؑ ycy/5O|']Qj39?Te*IOݔaH=:1NdRn;_zH/+/rStW`e׾%j8q#[y=b'>~>;~tוQr?;_>ӝCfJ퟼Ԝ] C0Y8] y_jG+&~r=ʑ̕Z;O;RswL }:ZkO?XggCR&xFtxFl{ߵf^{_Jǿ~'?w.AޯgR\< ۡ}8뒧'1x쯉=k]ο9un-R~υ8^Y+ '@t%iՎ~a)&_ʨ}ݲ w.9_ܼ w|'?򟱧KFLПGv]*.os^~M3>uGTY1 }RP}笜&}-OR+.]S\9 ơ8ns7P6Hxu}e=;{wp=[<v{n?'v6F~~ƾd?}>oHՓ`w:?> á{K8*~ 9:7)! ꊨ=1 , a_}F- c>qqq+owr?OS연d VE|1y [eNF|4/A.zu=J-5CGywG=M#_9[by^q.;ƈ=sK[x{߀Y (\$Wb[oNڷTaϿ,SF[~6zԛ藏Pt}+^jyfQ1rxVڗ-~mT%Ϧu?w\3ϦuGw\ Ws%-5ߞ|h~h-6OTs),Gw}>~NmCuv~)F9xkceK:d/쫇\|7q(FAɩRc{zɟhlwge?{^,QےΤܲʥzsCSlHyb'n/~B>>3j_"=1y>'ЮJs:U*Rwj+򓱳 ޯ#@v߲ Y1oz_=|QgO%awB&&޿Z~],zIO׃Zy*~+H{HAPܚWjſs?X߷T\ޛ,_JCO3I|+qg,3.^?"پ]L_Y}5u:_L< {mc\C<nڿ?sn]ݺ[Fsl~Ͱ18 zf^{J={Du \ouYD̕0R|q(^3?~vYvV= #33JGo$ S~1 xsEQs؎Z[|oI:c<sx_qRҿ>1jH6WY[(#ei <"jT8-Fc_ͱ1K̀ |Ul5 ڥ=jJ Qk^g_y>W;pw7Os ?x7:f?)߁fU+}%p?v.Ws1'(/gKv |U@ʱ0E/ݹr}o{faQ2@> ;L6s:?xX 3`&Alڅܽ 8;3Kw~h;rC޳fgm}ziC";SϚmyX]Ȟޖ5_~vfn̳n꒨ώ{12߄9,h? G 'zUi_-~%hJS*ƂWgoMe-u=r]&lY5_ofI}H0;]G RNѣMs;x"|c[QYےT~T>-3{V] NgXď^DO,ߛ/6E8c\>5j,Woգȳ-Y=3k{g?ǏNG?Kʍ=tߐ\ '8{<@]ORa?OGw 3bvCz^rˠ}JEQVWu)v7Rr;Rq]QsD~p?R.\*֞>oS;!ؒ_导L8c򖨾"+~y~͢޿N}Tc}|5+b|>kW&/)9բ_zqZnjëk8MO?1g18 c2~q?F_߿Dʫpݎw|)9/gKJ]쳈vuO:a1|;ߘrzVҌ%F֒'ϰ`~}`kFa!ʑs䅔wv's;Q߫9?oK9'?~==Rqџy.jt~..ڧ2š!/R0|1SЎoώL !jޥ ;n&+>GJ?V.-5~J/a+ڿ#yLO;3Y>۷'31t'/. -va! PDt1g|~G֟o[b}zVZ=vIx_ܯ >Qj<؃#v(N-SLL9Oi6eV oג_Kݿ???pޛ+6B~ݽ%ecIϿy˥߄ z}TL8yj7ό]5ǣWH窿UsK{6eLStvf;{]hL."Pu>|'=g>O,xJհǙRw/`gdrȖrH W~?ƞ}V-{Mϛ?x~w\&ꧯw ;W>>Rȉʆ 7c!t*מ٣_ ਖ਼>B+/ ~αeځw!ϋUj뿪Ζڻq" ϻ[nMI}oSj8G6ݶwͭtxۧJ+?/Jφ;k?nj.]'/%OudCi?WAſ׃xFa5{O{t(#_N9UQ+r{ViK%k3'o>ﻐ_R1^?_tvᛥ[?Nc>SnW3~;]}'eMt _83܍osQo{>N-<Jw5ኈOy`ʬn.Fե`gco/}hszg6+~=k;Uqc{Rkj_7RF<|cH:`T|YfEu~3#T?#{U_tl/~SǓt?*]N_mqbx۪Wm#-a]TIͿCF`-7}@9]ǐW] jC)ɇ㇫'e_|^v':Q}F./8r8_ϲ{ξ^6x7]Q.ls(g^x!R`UyU'EE?|qO޿cAjxW uRP3T?Dq(Ss"Gwޫ0}.;O$=;d=ժ4ZsQ/ϯDW:^4k2'&SȲp?]Ns`{rDܿ?E*7Tυܿrܯbygu&}c+#?ޭ8ױ7~k.X=#1S>YszA#STP?EfN}zn#o:&?玏t~Ԟy-^j}{{Cit$|Wi;!yjlV/.zY{M=6}{?g?0Uy>.g Xq|$^\!h;ǿk~PܥR:b8^N~niW=z:{&r lW{u=e4J? ̓0#17B<}3/Lifick{?ԣ&*f6D r2`5{|=09K e48R~OY|"Óؚ?c=Y@K'v&z/..aCWGwc[Qm0ҷMGe?nx/lyg/wO%ߟW8-QБ̐{m+ݙk`pt?5~x^WG8Ir ߏ*O:tw<v䕛c< NA?|-  >wA7-yTޞxf(7^WoKyu[ǵsk0\wb =/J^9=*f kg?ݳnsTkv-!?i,Ǖs?&>)yʣ3?d;?n<[gE%:f>(y+r>]G9γ?9Xkϟ~+}_r_m;'f6>-9r;!!w%_֮8 z;2e|xu">l ),B<%|Rit|;RFX DoW #26Vﮘ}ܹ59翤;5;qN}SKJ7?e(++*ƆfuTOܚ37&)+L8SS?|(Kё؈nj,i>R ۿ#s?+ǎwqZsPE5gY<Ǐb$Ƈ2B7 {a%X3N,tyt7g _N/[Jž}ԝ{MU3- _G7 )r[/JQ$ڽz??Q{jސX~tq/|.l'Wu^ #OVQxMԜP+C?7X_ڋh~%{?%q<WЙR1]$׾|Yy{g͔/{@z}н?.kKh]O+\[}g>ˏCόQ;E%2ҙWO w/?~~Q?oj[ 3W_J͏'Fa&ߕX]/dxR1bU|8(WWCn +G}~GOh_9?me[o oCrn{~ԝώg'B^]| l=^E3;'-G+tߔ'Z銮qOYwFזo^b@?Z],w,Gؿg#zz˳6{o6䟓ʳ]/JW<]uRtg3a_j?&_H0}NU?RO_ߟBM{#SĊnW{-%N^=)ϝ_2 v쩗'\j;;./,~ɲ޿2stRTyt(DtWgRM>=tw'UǏy@}`ynuZCls}ǽ[oa:f[_WWD'xD,7ۢVm+.7?COb>`T[jAڨXMꨳ`ˢe#T}w}%~Ͼ\}"na]_ߍ*c2;~Y4znb^GTo Ot#ן=~z5b|ˍ~?ݺ y\%;Nlr:ڍhx~o!j.Ȼ~Qc0XJߦJ7O;QyIoC闏>g?/_tGyMbx#\Yɯ09 y~:Ѹ&ar+bK'eү]}G#f++)'< QwmLq(^.WG%~[sR}@_Tjƃ]'m.OY D~YI密ү#ѭk.:P=Or=#g>/?pݿ/bFWƽϭo 'Co:g}GwoRQk3p{[NRWj2Iү1>Ql9}(# >v漠]KM ?zj.rl;#1uKN/DžnRή?o(~؅;?F\KLү9'_KDFyЯ0X=9juhpRLC~ߞ2J\/ _塵L~2[}l>j}gp[:|:3G7X^c犚 \9_(ʥQyKcȟ sݹ0r_t s|ǟTmwL/˪ l`j'?˟'ySϭ:gaJËQHLl63/G7~C2"\xcKM'gYQgn49b6O T^}mTLĥqoO4b>sr^i?7E^? {p޹5(@ѥyI|_Р92e~YW?ςYzә ^tK {~KEdSzF}Q[~֘#הyz Lk~ySO˟חڳ$yӹE?J6F+xO`V}E&xs>I?sw ߋg޿s+'׀yl#3G>'%fN*k2TL2`L aO2?W#O(/5j ~?#vǛm's<̢\0qu6 sxgpcۙ5`tRq! ˗u_,l R}v`GY5JgFw_}f?w _,uOtW?Y,Lτ- 辥Ǖ7w>Q{2Zyf <;ϭ yϷEW{+{ {[I>Pb a&O ;ݏ]>1e1?saO>V(Q~!? + u)k |8Ǖ\ W|(WEX9JߓK{p޻8}!杸0[N t)K~Inѿ*htߕ/KsѤ^qks]aAp4'XߎG3 'g:j^D1Q;ySc<Ξ7ت*wx,gm,,ҬU7~5 ?x =߬=G竒߉o6=<#Wj;ȯo*?絥^l0y+'7u\U>9+)md?"i&nfB^ȃ|)=da[}hi{s>?x.Ew~$Z2,x[Z)XW F 1'ʙϟ9d).~ ?vGois[yC_yV :^;=NdAv٥)kA yUԎ_>Լ|矚ŽA<ܨRgFݽ[~eYWuyHy8:_k3wx^S~7"YF1ߕ.Ʋdamҫyَ|硿u_?A.|^wA9~d/{|Cp_:Uf}νcȻ־އyOc(NJ_`B=bb͞uj?XXXG7ĒQzO$;'~4yP&L5>yq)]~}2b/)]S{A>i J5SǠmzx+MW o>ORN9t w_u?0C-kO!פ[9Kw}˯u;K;QeKNVYޑg;'^π|~ԙB~ g|N9SSs&'6xKvǜ~žJUl)]_?$?35;ܣ[0z!BQM;9L@vTϿy]xu>+1v;\kwvF?nNѮ'<{Y { Vz_:[:F[[y6ξ9;g9" [5z_XF; ޜ>UG` x[]C|YF5HKM~ }w½OԚ/&S4ϣ$k]T{Ov<0э _#KyhoKN Ow|v=7F @}=З}l3jeLlgߔ*u&3^s~%+Svj9#/nE=v9kW]֧ }S5k|N1+}Evuw I'|;?e)/wRҝLr~Я!;/QAǗ$ۻtbC#AcQ\Dw7y ż/%w-{~1*M ۢx>s>©QS3#dK~Yqzlʳb-~~el|/Nm[5S78|t4yj ,$&CzE&FGLTy_꟥g@wl=o/u >TۜwO|O|s˞yߥC_r {M;E_q_K&7\5zG9i+{2PZ<\Ks/n't qeiMt}~ ]*wIJ:@e?УN~z4꾠ۢ(7_lίg㓯s.ϧ-+stvmvR{)ywzG{n>c4 PIԜzqߨ= =9=uv S;P}~dR Ֆ^5Kkn5?«c6v_?\>;'j莤;%" ;tgN{/u#Hlyʩͳ2-C2]7yW돮{\q#_zsb6j+MIxb37cl*߿TI7n_߿cw9h=NR1tiC+z!6Xӕ>ե漢;19J?n=>;KO^39zZ1QoR~ sW8#[pE޳r5B#嬮)V wJKńý ˈzZX.)?z7i>?CsZb-͑EkO}V}۲-?LLɦA" sQ:C2^_,7m-c{VF{w֏?IK9~x秔kߔ_A) zRj gޞiTK~a=񗔃%*&qN{)5@vրW9oྨs1;SZ}|le;;qQmc Ϡ?ƝzY-6LL*ρWS'\,<(+3w"+=~'f*Ƃ.%.ջKwwE 儰[Q}I>>l)(uv L^ekbGts>Ǒ?wſȯ}GOhu, j½ܲ«?n̠jɩ?=ʻ Q}|hV'}F[p\J7c v(@_Ś|п)vt'/ wfIZP_b/ ?A{n  &߃z-)ײco8~;?g;NA^$O Ρs~vz?O韅qGgGoSDͮ=ݞ%,&e̊7|-˄~3_1OԻ/5w<H/Iʴ#ݣqUkwnu)Mbuv a7gk(9WOC0 -Wˍ~3"}k#&&wǒw+^['@?G<:0;ߐG[都=g;+ow?wC3 *qrCJ{+l[_8pp$\ s{N߼f}KM-s?K?}Fwb\{w-?gW^OoFͽ"ܩ:~C@ FQܕ:6cQ{>Uۜ{lݿz=u.gs\ܿ+~%u;VWs>UMQ1qvV?=~OzB]ஏ8krѭ,ԗ/^}}Q{ZvHt$s eH?|}[TY'Iҿag6GIOWƹ?y|/kʳ+*{ܲWkzgyAjwM/p?QwVM"2~\+|KŸ[cdCt\}t >>= b>+wcr;v,{"-7<]=\8aao^* 1晖~}I;/~{[o'{C|l+FT>!F_ݿ9i 0gd4k?akKQ4l.{owMok^sy` 0-nN0Ti}3U1|ǐtl4m9=hn?E=e-|g]w[뜓9wK͊+eRNKf.<(u7~&:_p. efOy߂9͐Gz,_fwЗKڙ˔e[f43 +}h{+G_|S?3S' ןwdfjwUt`49! og{[5¿Bg"5ǥ7{-q-C:E`a].Z_ߠ{Q~'o}K)HI.l 2Z.pч޿Yx^}oXȁpȐ?4;e}]Vyo?3/L>Ϯ=.NP|SooJNL:fÞ+F#"~f.sUs˯vsԚt堅?smMl:y>TcKgkyF_r@۽&>b.t~9g,FwѾ"RP/'߯69Rsٮ_k<~a=}[twS4|YRqn-]g_?_<-g[Sߴ3#=q?8dP8TXuYׁ©G Lr_{w7#{-Мs%8Wܘ)t|ڢf5P sss)]V>u@+ߙ^gg:~ڕw<[|L<8ILU n*]͋[_$6ߟݎo(WsKv{޹b)vhC:1[ޚrUJ^=p!2wȐb;;SS<xWއgՋ_϶GySQMrp|7'^# ݔIŇ{ P}]p5o.l&1eYÎ%LKˆ. "y-C}3{)Cgg0eR1ܗ`L^y3=۟N?&eW8.룻7Ay~?nve}Vώg-]YY^]߿?JYC.5|ll}P=,Ct/( MoNo?ߎ\˝>ɓEsVx_4ΟJڅUaJ\*&A%Qc(;.8+K;m; }tԼczl1L^]Yqs+%[XuH9ΎCYۓߗ0[W)u/@sR~KZ%.yZڋwu>1P/ PB+S,mKA*t)-eEЯ9q j{.j {f~PQuD77,z<ea 6eq^5z-0՟ݐNȦ9bȲr(9>xq)ӄU=(dl7mk<~<4Q{_f!.?,^ݿ矅ϊ֕<{rV'wWS| ރSkG#:x?V?3#f1};*ώq>éQss_Zwzew!^ r)uGƔ~y(>(]䣟*>+Y}[=4z-N*ٝ-yJ?-1=Ǐ5kL\zj>_j&l,9?>γ9J+vCT{Qc+'ŷ*xY\rE>LfYg]! ϋnW蟤VJ Xy\٫&_k) a[^D=#}[?uWBI{D>?O(]3m0^Sw˓! ǯņ?SFLRr3UFC\Dvϙ?NZRuRɥ_I_D,w?`ni|[9>W9fo;ͻc>3;{M ?y(^;s?UNnCwLVGrrK5@?z3ߋ,5÷kvqxwG[ϷW?ǜ%. }d7y7f_~7忱stWGVOeHog)~ĸg<:cn:*˻&vpZv5?}_wL3$ML= _mGUoz> AotuU1;fkŴL47W) s,s9_p䴅K9g}}{ ,lGޝhǥQ{CDacT+{]mM`C痷{x^Iϡオ^3$LP}{ƒu{4F[ܡ{[#MY0r8ң/*]F# /ӹE?v{zjF>JI ~R8eo-ΥqbcQzKNZ־V]s(9Q}=/,98>j$@_P`tfYo0 S6]H0/5WbO?]Iѯj e Ϫe[ꝑe g`wC9{*=6iЯsJ=/}ݗέ>l|'ف/y_ eoxV]IQo܇JaE3p^} ^^u.ǏT0)5) {.bȥ{r{%W(5 3 y @Ff:{] =$[ ?hv*˾鯢WE'K;3[S}/'~d돗X;߷}G2'GIs+,*SM=O=MH e@|l s̉3(c_4?g9ͼ<3gN!dfLf/xAn[ ?V5I7x{ dnq~;O9N?Nj~30wͼAe4?V]t"~#ǽq9z<>E鬋:%E;;O<>gdw1{#wu~O T GfI!\S.8?b\>~ޕz=NT_DGx]'?\r ߯)Rquvb'3:שO<:sFIy>:TAt0Ac .fyPWDşU//vL}_}<"M3U.i[s꡹<M?Kf:ׯ~{ :7U[4o~%?­;?,#  髥bܘΓR {?lѯCwvDwDO'mvfSdsF3?H3~8:_:臧wwNVO<7ώy ,Rg+?P™d^9A| K_WCf\wc[Fzgew SUlMW ~cCk1~zTsy"꼽Ϙo Wgv'_]#;.F/b6iw}3=¯۔";p}}vS~>[x6Gş!] RC)K3ܔ߭, szQk(y2zj~t/vKXG{v8owEЯxR5{#P1R:.p)O]ߐFy yϚ^Qs+b^Iw5w|Ύqcxt+?>E=~:/#_2 {񣰿kWIfPoJ>ug|{ S}zb8!R'o/ œC>1W9'(Mvif83)ܚt )˿~?U{Nz^USO?ˁ%B@D~?ߟ鱀|5W#06f_Q|ȟaphwaog}b|뾊щs&}[^*3J *y$R< ~6+)lN8g /L~[ߣ-^]{e>3-‰E'}rLå]GyKkk♹|/.տ*;s}rnva}HZbjvw~"蟎'vQ^?wptS{oS"?D~q&y10pNv}nS5|~W-@nG>nd uɷSt.jN{TՎ}E ޾+eR>fM wڋA3I\YS'? ,5ϡ$32:o7¹bJgrO~9}6O{yS>DZ(?R}Um,5Լ_rXTO~?_׊w<ΛM?|=yn N3{bvL |lvm>=Wj̢\$>r_ݾ1<~d{}ԝȀ2URL ]t, 33*3HHS)J0$@IH @0zsM9$7'}ϳ>9;zsy]} ~OοEr?r=vLDgɆ6{bHGoϿf>28 {ZU<ŠWz%{xTy<ؙT<^=}ާׂ:KhuQhސ{/Y$_0~;{&+z70}.NؾTg!}QߊoOl|}҇xW;><|@G>?Wg6N(!ǯ4m8l {ӎ~v0}Я>+G1jH>6ŋay1O^5"'q4&O*ue.}Qq,UoNh/^[kv:/FaэH>}` G?jn?~%:=p Ƕ7~xj6?]hv > }?TѷFRM5*+fr~A} [y_s/Όf8q!+rpbuXky:'.žQOos8Qw1=H}QXhVS-O܁33еssdǒgcL~+%> ک/?y 8bBo:1yjwy%ɿ)Jf6{j7+6!μbgZW30+QA_TE?K}囒/T!^\K1K|fsko"#k~R'}~y?I?~?VTG ^{3y^ Ǧ{S"Ch$zxv{н`ƨ֋sϊʥ<&ӬЛbσR>I.lծ?t9yOQѯY;+63WSX́~yGIj}.ρ~==7?NBJ/̫ԧ{sDž 9ᾰ{}^{^Zʵ#Z7GܓgFq!b1/WV=kyOqk証Z17]=R/zy-=kͿup{}=\gaiqꃽ||~?3~~r&u /;bOć6Ecѿ=="7VÊKV]c[(lk᜜K!=;Oпgvy^I-c6}E>ALO=ߦj}}=2E܇MIz~Ŀ[1 oad'^:{'_NߔߍxjA?z^Mp~;?c_>~G#W%OKTտY>#Kޙ ={/ԫBhP~ _Aw=&Ͽl\?n,QǯsI"e| qZ>ʆG#?%ze[Zzqэo(*܎|JSK1,z߳I)cCxfs3/z o˓qޜgx=%ϻ:? ]`>ݭy~ЍvavA':L8I?;lj5.;G]}a>[ k;gZs}cCSf8?0Fſl}8q6߄%C>yL`=Nx$+u@?΍ׯcr/__nޜ#G֗9/~F鲨Ds"V ޕ->vpM?6~vɡQuE{-6?Gvu* g&_b*.]0cyO̵t9򂦏^ SFܣNm??0yGw:٨#_̀02Y/iYd^ !>:}fG*QvamE<܋kfwV͹E|bQ5ag! w\Ɏl+]$<ت@޵q}r_,|00Kѿ{ Ra:~%iF¢&4 +lݣ|ÿne{P6{$1~'ol|dߝ3^{__Qׄ'!+%nX?k>bYߵPc.9u¥\GgFխG;G8=܋w=G?~όKT}%:W?z^~o>Utz둽$w 8?#Wm?%V6XRliC\,Ѽ!~92<3 0'4KE{63",1[E!yf3Tk=~,)Ty5S[,>fd(bO%^¥6gTi{Y5%Ԑ t,?U<..6_+Ϗ~^gC0d=;~?3ѹ8О0<h'ίsRÿ0~xD~C hn+[>4ц~'d&z)Kt>h1g}Xx{ܫǯzq^\g{KϩVQq>Tz}^yG`kf_]򬰖| e|/ ߩA\V5}Oi5N8ҿ>KHl8:~,6T-+7>Ƚgf 4߮5K|_GG:rGHmCa^՚9 '=)=wԿ>7k]b|@n̘z|uJYwuc}cVwFş~{;=?v'o٧=m.XfU HEk7SW({c.ae#}uՃyn\>j󗑛w?TNf:Ax|܅k|#Wc7FU36?kɿ˜e䅡9 a^, ƨ:{c8GxA&_Q=ۢSV?|^$[šѽ>l*G<k}jkL+L/%V4'A6fCOxZ5gGىVC\fr>{qBi YB,T?}^';fu,8wb{g'8ZoRn9!\WQ~nA~oH^V lW"3ˇ8{ /yxV9Ǐ:զ_xWOq߿({3^q|vkέQkeTN7tԘTf58%5H/9X Xm/Y{n;K~^{/2]=,O̾ߓkh!Nw{'KN/ʕ:JyyTߢ> 舫r^>P ]yyȟܣ_;2հ܋⊫Ms?Wؓc;k^E{?Oޱ}pz|[a֚QVCgqB&JߔW(,ܳ,]?7 s;Gl7jv.,q(b\=u//26Xz??9~|w:׵Fr4W]5^kˮVJyw~pg2>Kz,EgQn|^Ԁ+/?O;ޜ_^8[ݯ\c; ޹-1<|wfզVfa;<_mǏ{+}ݫeǢ7R9sWzK;,3l*/GuI,Q-9>*.kㇵa_Qn^Iw. G QsF w]=uNgW-S1,gv Fxy^/sÿ-jO?NX~0zw*>͏x_j/} 5'yxh^-yDa?sW_~3q-%:ZK|"r-36S@]zW{k_\Zk~rַRߩ;_PyvKW[0y~L\ukZia]=[}ΦyMFOW{oc6F)TӎF1?հ5wnÜjy걽f+ތM{ķY|=y-^G{ߋ3O{O?hzE`?E_11;6B.ن¤:K;@{h5{]<}b&+:amvqyԟN3+;O{\K߲W5wIͦGr<{sB~"VϊaΦs{zW^ '\sYG%.jTU ֌%JY[y_<ר֤xhϯӯa=qU; e^rs/soa4ߣj^!6z|qBDZTN?bVWli O_8_ g^;~:>=G/пӼbΒ&<&,W0 c_׽>DZu8w֒Ϸ:k^>kvlyŘwiC"W>We13n*=wiUH QXkc.=-yGDVO]k_Us>JG=ҿ0߷pr1t^RZW+>N5W4DaKOߞG~cCtʆPzlO s\/R׼?r>Ʀ&G~)s<Fɿª]J?U/狶_26QG7nUjΗ_֜'zƋ^=fy5-*֋_ֽG呰?P|k~y?%\D'NF}VY|Gbp-Egh~T %_k5?E_ mȿLqrSyhuBokO59__%y?© W5W0Ff٬3K{څ6 8ۣ1 (=$\&H9v~ h5{p0ڙ8|{&3S4;Ye snǏ,fM-&xKd듗5|zϳÙu4g*|ΌnN#Nq#G !D|!ӭh& _4J|\Mav~a;N$'nd3U󲘻k̭yC[~~r919fEΏʇe;6<(j zMuzծUzOTl6>_$u_JG޽tn< U?LyhxT<9*(_3%yfk53<+^> lzl6stUF<|f04^77湇L_tifb~f0Cy/[>b3 >k樚n"_Y/syNՆd[f}/.I8 Avh=|BVnqsf}U{;{s'Ίfߛg}#t fb 1ş_E(~¾8]{s%NPAǝgz +?3㧴胛ox*G^_Þ_}l3=Cmfc;_9m59p]ĝwMeo/~~oa{5Q3_п18'oz}>0r Wc>8'ƫ|-ŬoO.WoWh\߆3z p g4V9bAg  89r_SϢя]tr^6RߝbXGI>fGcUL¼okgF7GW\Faթe/ &U0{˦.l֦z #sY/<$vnCJ02u] b(_FכY^;'c~PM~Œ#H+ yf;fߵ>֏?+{e+m?O?n~ uS Wp9!F/_۰~@6٭bugIcSxIuQ(}ޭ1ĭ:2Okn~g^zGv| :#nxd?vdW\ѫFsmK+yϓ'׎W~J|b*6;W/珈3|v< S_ntyUQtW>3c +ss_xiq{?t}sio-wK}hϦ~^U+/<#^?Cɳ:yuo?`S`!K!DQuz9kZ89wGS/ry^?@} ޯ}8_^Ϡ;XZ=?~T/Um^5Mq#kg3Q1Db,k~ϵ|~NT QyO:~싢ؒcXǿ—.2Z2_|}A_?Z{>gQ$(<xY9w<#Cuz,<(7co!=UvzxV=xu'.?ϝ;ٶяL>pn=a[@؈O̳XFQ5loGܷ7q^eCWEaP~{^j{=]ߋܜ9Zo?{[¯c˦k#r^s< <>/Vձs'y|Z_8E0O'ƮSLkw+ /g=ܳ55շth6^{`G޿iT cHNh8_Ř@~{t -!}8OwdO°s(b=g(SzN~F b54ns׎[ka5ZQJ5UObV/užX Qz|罊r1oқ_1/Ouw/;ÞF<}H/sj޷Q{8?3콄Kqv׽{D\x(F4ZOkxɯY nKOYm=ԧӗ$?/)F)ۡȼfSx+yA+7d 4{K>򱮊ax+|STl׽U'g{sQԼd,kfs/$6ᡙ)' N旍q}Iyysݣ(j/w0л0Vs ߖ+}b+?V~n]NgΑc&wd/ ^ˎVVYO3&ҏyBw*t/_)%`g~,V7^˲w-9w,\Xk}ݻa|+oY{%Hv8{~r~8%-Cw^qj~5WEWDo_OH^^YS?)pvo3_ɯĠ ^/FǔnYB ޅQ1g=`*nFV |V9#Z厐r}B~40{0??O…͏c?? mOg)y~bkv]ɽψ)d9{sEu?<ǽUϳ_ɹ.ic/J_yoL= mXl<ߩ/s:*jaK9읯Wsn4_lɿS?6j1v/.,{=g>؝~j`ׁ +~w} gz]9f^ɷ9`#rYb ;}΂!??:uP_==0Zwt~w/޵wߨy^aλc_{n!l5O[`LO23܆˟䲕V2 }9Jaξ;6r ͳ@]{'@jM|<;Vq[Y ! 3 JŠ˲.޸t yo>o=,i} 'υ8yV33lvQT9=^($ |#jΨȦ=>} 䵯7]|=q~|*D\Oyo>y&|6`>cCl3R,##u,s_aV}i~H4nX5oG}#[r6|G{Dk^64/f_'jvlnrҽŮn%{NP}&1la? #Vv]co^?EArZ!.??CJE–^8)j~7z y^p<cg>|fW@p9WTq9^vxA>? Cbm>Wk/8_M8rT|WUbL/{&Ͳ?^Cf]|Їe W@bWGx/3uWT1V'c W_4#kKdpy~W{kҼzKџbzAVõ^GE'~j6УuZ \m/ʳ\=ejk+76y?wŻ~vs{O_?¿*ѳ_^)Ѻ=1*,>Vr|<`8?{;.ӍQD;v<s[h8boRڽbSw1Jpcx޿_YJTN:@ ew΁GvYe?//œ?gS.ROj@;*桿Dѯ цgR.Aϰ=gaj:a?OdGRMgwg̏;Wzs^=1*ގ1b{׎{|-QD;5 7H6yE΃үCΓ(vn1J)(Dc>UPKs_{g%8^i7 ?M{ޜ7u~]ߙ13Y(|G kVKvS?y*>ee!5WgUln]To} XM/u. 8|.wa}}ۺ7? ߏ79~__b3m?i39?ֆ}Te)>EbG\gz_.Ot-zYQՊ_T!g׽v3[HxSY]GT=N9}lJrԜ8ΌϏP<쟩F[[>3ڒ/FaZ+"<_`ջ y`PO?w G {R=HQJn6xgXϳ^q)؅y>S{! Xi(M8+g~R?=<^_gW=Ώn )Ϫh8v_)mG)}lO^dTsgam gA 귦]8~vι0qD<-م Oz '<&? B6ޯ[,KXٽG= 883zvhƻo꫒< z|<(t~}Vׯ~=*VOyo$ xu; k6.u~)xϲnW@瞓<,q]H=cϿ_ҿqw˜)LLAw=ɿfd:~Bdme'{^_3p^es\ѩǒ^dz!~9y_!C/$XbXndp^=UO/;v{ k%;_Q'Ϛγ@!// GOO8_0vS闟5b%^c;zgߕg_)v)=°0~: xY8/nj ċ^[Q5vqYbk˰={7V@QnST, ]>yb*5ubM8uR*#e?Cw1.t]wEa7p~Ѓ |W~66sw { gsb{viϩx ?9#XlCH<7o?:<%}{k UK-Zz8=~0*kSUh>'B9}jn .`~~.6b)2 O!NԷul9a9.TQz|/IWȚ>γt±㈙!)?sa:oTH8M~c;#oJF62?]O HGx!*p0|~޶ݶfj:T#~Z>mh8~[6Ŀuņ@fiǚl>u,uQ>eco?^JvN<|U[j3G?gdbZRϯWd(o/_y>i7,yvUhC߳`'V`?C;Mf^@#ZPʲ='^O=EZy/${SX׆sʴ3<#n5C=0}ϡ.ȿѽcccyvm?G!aB055BO%>@^1?keH"gOR_|q zszszk5ZCӦ{ 9a#\{xٛu|.uj+|JapʶJ7ry^n[sf,=\[aE/m?»7'/%5uQX3߻ jvzW'-- )|,t旍«~,T5;n.ύ<1u,bnf9e'$_Ӛqz~Ɲyn J?꘤:៪'D5eV 9^Bωv,9dwdy׌=w%oůTaW(ygG_#)I+gb(jsw+:An(< -_˿Wi*^);X]Zo^fz''o T%1/ﶎΌ09‡c ~rK 9# i;?2c?qhRTL3͓ERoUWc)xc<9Wǟfvܪֽ|?vCe|);4PG$o*K?ժ nCb-W z`>/9J?2VS|eۆ+V?Ƿ!pXG,T) 駮caF0Q&=V)mXؿϲ5&,ŸXAQ#a"rEԢ(w]mU=L ?7bJc7݆KO3~\ {=~՞ 'gL|4qjL\ŚJQXu^K1|^_{Ke|N-Ͽ%n.Z7|+|sfp:.8 #dӑP<zrkj8'\ǥt .z~^Ն5Z*廞1Z>ʥw+D/x5kW1GZgG&ZSzHs8,*7.惟3~s lxA}k~EsuݗD/c`*%?A?K^Wqś(.W{Og.yv|6__UksОOc?wSw;ek~bUaN=?&].~c>7qv'Slj|eah  Dn}vr:KyU+rM}~\F*DL@~jT-Ъlޣ .N_ؙݪ&ru_J_Pcڿ~VS'quּg][׿{GߟU ѺQ g8eQ3rZf♪xb2jV{ү绢ZK8/=cӜnx{U1Q3+`J~'3q&`{i)W q9^`({ af1z)qS~p'_Xmȳ7Jyrf׼ϩ+CmQB/ֵF^so x4Qs#?=Q{F?sͻbvֽ9e=-լM1ۣj@{]jTϏŸ=́>J),Y\|S:Gkw~?NbyY| o y4ů>^Q%);RHU+БQC"P/jT n̳"ðev}RW?{ZAOγ'/EEŬ60yǢwWcV/b ry9>μ쓓y?=ȵF^Ҫ)i? |y]X kfd҆vcKw}+'9TCa*Kew\Fj|=:g>3Yk~ sfqe?o_9w= z~9JW;GDچ}/#>~Ͽ{P_ baDKSWwmt/{x{\Xќ b̫F<e?{ Aa CO_8{_shƖ~T=~5^&yރ޳QP,U71?_ 7KG,Z{qxNv\`-mVN?.%}ЗM=:Fқx|eJ]̨ ѯ=y%_qzT/}Z ׅ e.RzSSC!QFk\Ȟcwlb:~6ĨG_?; gұ=0khH8פgY}v0uCgV=?JY Kz rބ9?|;yofavUzO|J =M@ ξu朙re>Cm$dNWyܐKvN(ștCzJ5H |´|ދRw'Gu) KQ>~C>,_ {}6b`0/¬>;yy}7jR,نk7NdߖbGt֟%` ;N_V}_M^hGG~=)j>1|?>oo [θ$8\^k>qr/KIzUѣD^gJj)}V]'GBoc{>;ca&_C8=YMлo7FzNOG:D5pn>$ƒpWs>BZa >v\^pÓg.g?ߘaDžg3+-[49ĮNƎv .Yy\b_هwirڛ1F}QV/:gyg;xO!A^e%fzV+d*Ky>g{S1l%ǵnI[~ps$+|[#u9[R|cF|x>AFk}|Gkz8!|>y&+z}?zYp?k/ j=?l*ry{"@t>ݑϸu,D/Jx?iG~^9q~3 "L{V8^s!:5{ _ϛEۡ~Ո]C""WC(>EZ7\&s.O1JQVqn~0d5'e{p,yjQ3DouvjyQ3"e.ǧ=}s{zz;l{/<~>j+e?fv3,Pa=|cxgg'CI3519 ;{HV>;J ɿ$5<Ǫ+訸w:e_=Ver1Ͽd sYFo Tڙst,Y?οL =#=*J {9#wy ߑH}Z5_ Qp|C~- Yxo2:laL+wjN5 䃩εq& E?{@ g4SBs-ߞt Wv\|C'Y#;a1_v sp.vh腚<~yú)6s;I#]NJ&{O^м EÊ' K]z2;͛pE߾VΣ}ھ.#>?*;/U 1%MTC糁˕ya-p!|˩;D a ;~kyyI+/[_T~BaM]dj~Im8. ߗ s;Bj$_}w6,!6dַ2afMn'~嵅#{{oԵ$uO~z-?g ?lek񅩇@y Sx^˼c*}>_цMV3:G į>j]چFe^\Tݏr׏k[AA`3 W&_ IŎ&,z<;N#>d< !([/?kQ{Tޘ{{WFk.~˽yhz ?^&U>7|n/j8~%y6d/r뇧}FT9jv_J+?ֆsN+FG% 2SjIu;1A~yȶfFVQbދj%nXs|T?_CGV>tg!ۍ]uQ1s׳>s^..yhGr|}K^{#|]hV:7jϵ^*qYl3Ei|>^uΜ#jjxTzQG!>{qO5TP~7ΒbOjyw}n#>uV\QiSy?6.w9Z}Fաiݳ],x?r}rFR7{%KAvb ~46߭z9>W?4]`lq,{c8?qMUͦ۰̞[ϙAݟ9;>3rݣ%=gkS][<./vH'Sg]{_|#QXK>X} ߷U&]׈NF_r{C2g=zcr.nIܛEE{~=WO3ݣj/$V pUoytTbbV?U}%ߪWv[:窟xk8thJSC=QQHqN>j{#ѿ~;3W98 >鷓nοckz$0υy;>7rVE3۬ozC?6ѻ`[_яp=ͭl%dQ/$bE첓{{_FOoʽyhܓ?լuGMnm#+7KoCQ?GaIrrFQZՔȏ䬫 ^PM1[*zW^G,;뢰5ܨ9B_)os `79Vl 6iƔQRRG= \!bKUvxFİ/xVflTw/u^>Į[;/FW؋?ߜ{ZΣusϿs([܅l wư:+/k&H\[袗o5Sb۰ yN]}k Ƚ vFWHZjo]43sqZ~ԿTɽjĿCߘ|}z[yh--Q [bz|xWOV ._5Þ\$ w?znu\PlSPV-c3#{iOvs{e!ţ7>{GeSYs=-7W/^y~ԗgTy$s~c]yߜ<-ҹ%_+.ZFkŽ:Z-? ;F/_qz9CȚ_mZWY~y{T 9{Я~yLlQb$oUcU;nr~Y;]т2pf{<ʱT_uniɉb#'ޜ􋷅=<{s/ ~࡛{Qy]pvɳ#@=<oi#9pZޱkǿY=~fg`bIxQ! 5\EP7=. w+9G۪sjҿ. 㟎'^ZldE=g9U:D﫝Jגf;~OepΑCW.u9鵈ʑn M5SW:D3oU$U\=s_qhΉz ;29ůWl{Sq{)l[s9=O2FB_T'mKm}+Xyμp*Q>hS 17~j8<|/t.v'5~+S?2 ]5~~V~m_5m؛<}a`;5?V@r3u~Tj3O:.]6tOO'^YFL~;v˿+f`V|֗峾g^gGyoȅ8 FťϙO KV}I*L֋@0ow?U kw7?sM75wllxku+O57(c]-~y3.M/Vv/cĿSvw5HblP'(@ak~7s08t}>f»?|(@3jF|[ԜQYlњD=l]aTsE܆.[󣾣CqM<t)~cѫM;@0fMyH5܃X趨^lnsx9޾Qs۽c8~GU0 5-yťzhzcpY{CbWjV|Fdx~V{3/Y {y_Z_uLe%e?qtײDa8QQy;=εj؋uQޯ=Owd$/<ŨxR_kguM)/2Wt/2j# /ɣjoF^"\,qU#Ƴa97ǰ/f*Qz<(LMk~7SZa5J7Z遝,s&|g_*>U[_iu~F9"źo<tGU'迠Za0a*q}džbO8揳>|Os׎JDa<\C\;xA8ugRG=\hS g~fe"A˜_j7,#a9޸uN¨6 bA/j!8i61?S?0V Q`\o,U9Ni{I}:G|HywSG6zƅz:5Kͩ/ϊz5O68# g|69{o0Ny~N q9Tsw;%˖Ӟ^.ZzSYկՋp{T_gEAX6\}Qe#sT|] M{*} UWC{><03u!xX3.J>0ϻ0{ ©BT ٯ`ovai89'p7IF_3=̚=*ϭQ| CuOYP2\l3&.k{a|%ȉq>OJ>5Ͼ߅Ao1;9 _#Tg^M$>~}gFΕ0Z[s5 `~"s#|wloFFr[T Iz {Fˣ~.nacǽU=/(ysjL՜x\,ͣu;rK1,+}ίcѱ?¤^VwW~aU%j~.F?S󛐏?1ߜ{ WqrQ+<)C%5G\=}~뺨<s j6+rRcd}= e;\ZڎNtzvNmNk`Z*B ED*pNs !p'w}^J/R^}w~uf_lj.jS}SS~Ujwj8CQ~{ow5sE?FBgGnqCO{N~ӑA#r1E}.sIx\v"ݗ=1\W7I9y[K .etF_F=hEҐ>doY{ccb!:'H?.LnppY8v=Kk_׵Q󼵸Zy:=oүɼ2pޛ΃Y]B.CTpC? QwG+^^x?jfЏ3_S0<>+SÒ]Dz"\Y YtB3Ϧy=jn -yn4=~4t@+~(hWޯ>Jaorlfw͸w FP,bϣ A?jEOlE!??Kta| ]C_'S#:27wsO~o wyaf ]hjo F~%(1@2 Kx@s]T؁W1]뢞Wq{ҏ\ OЯ%Ln_z8]Ъ _byWlKMesYl,˞1 ^5Ww; k& >9G>P\U\?hqfmnMe?VԲWIf韘RzL+z:w=O9~dԇX* n=;ΕfH7=5R? 2O\ɽW[Oߊ. kP_#ߥ>dhE*X:?hmg-, ֌ 1=?>T.򣞭T0g~߹ e.|Ra_+}}tMצ,ε`ڽLOA3^)Zޓfۗםt]N8SPw}̟vbWsya[’9Jz^s^ȕϡwOWάXx_~7woH>=t٪qYxuꃹ9|]n#9~$qS*s%c{gNӠ_#wO7:߮Wןiկ:Cc}/ŦY?SѯKu8pWUuULqx7M?q)x~Yih5Zxю7[ϝL\ Cؽ|VkM/_۲g=~A2WTLAK/_֕)ߘ~LϢ?yW|!FqoOJ ]<9,:blW/ e15u$}k89W]묺׫[ɐRϣp6Ti[J&Y͌+B~td5 'DOە>p*wҧt]S?=tO{sF+umC< ^,;3EsR+k2gn3Cn'yZ*؞¼".':dԬԜ'xϓLlz}&Nht"vԝ}q3ONO=^yU5̈_fkSoqQXs| 3 anMs  9矙$z(f9WLA <kyo¼Cr5sIq ` S,,;\? :3ogR}f~y0rt.3̓hqJ aG76kSn N&H;[rL?ikz$܄e/}|>ˎ !Le6fӠ`GkGԷ>;M?yޚ_=W0hv1۸W?eg6&?5{ ||G]`~ &֑'|?d'5Hk/1;3}wlTwZ.r_g1?Vo:;O:+5ώTbeowhR'>YCnN =E 'N !+n_qPל^gS߄|>w>r~6H|~xW/ bï|@[[ȿ0ǰ;]|! k,!xQܠi?;bXtitX_&b+֗ޓ2W_Ȉ0KYd+Xa<za mc͓i;nK._C"Oa;6 ;:Y3Tw>"ẗ́>l0vݹg{Uo v}/8FT0|>Hc?X~Fυ皿>QaEc9=f~+scC Μ>>!/?x2~vlޅ 6y#8q0_2dH/cSoYdt=+e˷so {\0^MU8 zY )|*2$~&g~R2X],Gُ_94U&rq^Ȋ0frn|k |3~*7Oѯmq_w/Tvχ.k%~< ~ {~{e`q*#a?JT<Ϫݨ`*WtW'{~( >_dZ647z&{Y!>pq*=L3#ʇRwۮ?>2gd} -K8fAr.Prquq |u#R^P}(5![ >KCVd%=w\ lyTp6aKݟ|ϯbPW PNsS.{R[f%ׇvǥyO%qgaJqG)UЎHZ ulcx93:8'EΕ*}.5pe#_yg7wԎWgwLl%*KNB _'~>/]uUߐo%Ƅfv5TD?2gȈj+8Q/_@}&t;D *뷎}>yay:pYnbB։L”z~ yEKGE36C^@_uOϋ%םxOWW`K{\y/s8Q9{IϪۗRM2djq!+3BOnŹX >z\V{Ż=bvė.1Nh'#|j]/|G/~'o ]&C')MLA|CM8dx+5'{ 4Hna_H?m<-ퟥN;LNMTʮ 򩏄l?[[˗'x[ wK~|gQtUJ+WtXt\vB"ݯXO>C\LS?:{c[8a/}^Bk}gU'g?;uQ<;pGY՟M|WCsb[g>7칛ga}`oJ`j Դi&!j2Q7<'t(~%G\vsF;~G̬L͹B?K̆?]xhx%}dDKs/fߕ1Y!a\31lGs3~.+ sE! $ ?z],b lBoMj/bvtR+Ty{:OLsd\?)50d.|G{a;sf謰/K;ˮBOMA_TvƂhѯ)v,;-74\u精`R8GWߠ#L֟?ԝO^Ȼ|zG97п{:N3v OBn_?&A?6"7_Ex G'a3w cT??}~q!*??{U߮u^GlHOuC>3n>sۦĽ[;y2zx`[lW]mkv~P*P< įz_lϬfky_Ge=Y{ S˺>wTpos>i= U|5s ]-ϝJS~?fb#'?pU7{<~u!a?0/5 >*ςgܻp*;ߜ~NNeisKϬ0bd]AYt*?{mkG;|uۺ>M{g\(wMp?zR;v8} <\ϕ=_x;wsQ_66=~2~N |jr=/\gtXN1_ebc!|_g_f4l4<3>k?8ܘJU˃_)C~_w\`NG ܩ"ץROmk5liN#>?;N_p} ^ֿ#viƃj +lxTz:/]ˣ}`O%?|TR:SXWV?\G߿jg!BWr߯KM[g3>ڞS}4=ϺrLˮ ]*яO_HzރO[>hmObPtyt5{nH>I?ҽSgwض峇_]vTK{3?.~Sf#TPwS?TEޗRے}Ac_o]s]_ŋCeԾ`+߽Rs.~gt23:ۮuUQqk,>ϻPlFr?8/:N#1-9kG<_v,}#{8YzW?Njs8Scpv\;ϵy=Jϛpȿj˞'ާn, }E~g$lK__8]ڋ1m\ן_voIm~TT[X&TށV/]-Ums~-)6cVRx~/@ny8y}aVr103l 3W,]x.2ߘݜ ,^揃nfteHz癗nϼ<İ ;Un|oi<'O&fr;E*}-=_zf~?~?;籅ɺO<YY|$3i0 8' 3,M\#B^'!"E}3Ykd6fGodFY){w̾Oy'`8m7&6䥍ZֹGB鐣2W(LePiLB4W4OK\W}a. oG+4w$~]|>,Ol'?ؕrO28?`#xyj.xcc>9ܠ03 qӠH_]ȷ0uIe.g]*^>w5]lUqs;!]Q1:{__p}BW[ }x>xC]9A)e\Otcf y!Z@XcȊ)p8 t?90򯮧ŒEݟ^p, S}N:\Á~o{%SQ .|9dWrśB ]&>8{J.^8uXw+♈ +WBo{ 9`<ǁ t81\'{B301~ ۃaO6N/SF73VE ՟C,q_  Pkx렎߾9=Y=Z򿼋=syՠ\g_Laϑpb񻊝WS:Skx`V ~]?KsMEU ОYGiE{T7^BQ悳x/ # ЋE(ܗW3U/29#l?kw._:m /[,Ѹ715jg,X%c,,_bJ%NQgcBmKSG3~rI92hD6/V)໰~Չy'/pvYX= _lJgΪ?_vRkDB;~&~vwpba('@ q_pqv=5 qU!KDŽ>kŹ䌷o n E3 ]&~xo!YiWן.xeKf:~pC/^EN Ŗ\{bgCE A<}S3?~ܔj.A#5hi$WY8ڝΔL]OaBSstw!g., ]^zmOYN;{מߛ%>=B% Y]`]8&KQ5O}N_J0_ N]`x}'\=,g;WPsP/# f*|xǵ&?t؞wC G_R*; =qTMOx&x0M:Nv"!ʅf+_1dȔrڮvձGzS*2ϯW`M7NRrWpCɍGµ\WڡQ{Wjz5^l&f<(I]p'kߎLHTIM>>^^ເ}7>m_bozU|4;7sXjXOW#56t=jy> s\w,Lr0KeNPpA!]ui/i 6xWxL;Ceܗޱ<a],\w엛Ww7nUԭ~<7y"hqr4gqX*3:U^oV:l^n4?Mcϧ_2hμӅ[z%Ǽq¯^{y7tzלs` 71Fd}pIO6] 2kuVW]T_\?ٕ>Ws Tt`K_yJ'~~.*Tx>sթ] kSյJvYȫ}N-gȖ^*|zg5}~wg1ەads*7W5;.Yh%,,{~;sTS}Wxbo-/۾S=Y{̦+j&r'wdF9Oer.3P29rةm{/>:\/@?G,|tjbn7FϧxT~A?8ԞA9ug}grR#mA17:$p}2\zx>sa K:ۧT\L*gI=>Z gv՟k~0JwY5'S>H6Ԍ[4N?vr^+s.ׅ0W;@[OgnTp&G~]އ;*L]ݾuͯy/4k].V xt,zl_XmQߡ'RBQG/ՠgw Řğ~_NqMW/= 5]'G|;A~n kyͯiW2wn3mx_=}O6~Vo>ՕmP5 +%O4;YjȣZ5I>;꾩Vٚڿ|rj,ma^_X@~Of??ȖE LR۞x0Wd$t`1}UnMÞ䯅<^Q~U-^c&-v\o3ٿ+uED]&\(}f~}^ԧG^{7`pk4ͳ.OMwNS[~ x$6T/Odڴ?x>̻}ux̘0Gٕ0|xX &Ï߁s'Ui4FRxcYm;WfGsI g8WK.' /qԕ~{x!}?Ql'RG+kWծW#=.Wȼf v?սkM6nKAjJM\-M7< 7U!{uیhwT߭^IjIkx/n?xJ>}z/Ofl$uѯ}>b>+1ˉ%x<=Z G3:t_+t=ogrʍ6_:o}S_w0W/.s[M R& >OIݏ{6mSQMS%Ǿ:k\\O=Q NJ;Džax YF^8+ߗ>:ꚞw_*8mW])| .7"CSw2k5soR{`w1͚ Ö /k_:ڿ|k*#~:p32}=85CRg߯mQfvL~GfY /P$ߣ${'=]qjgowTU>7ޜ]HoK󓩹yѯؓX1<~֕~>A;I}̟:VןCS/q9jJ]ZVTϏKɨs/ȞJ~ߺa`2'RW͞Sqԕ~ecՋpaTzs RxY}uVֹv{`pc;?{@c+WSo-+}=~MHe!>oWNz>PۦAx*;x/0ޑy$G?jN6R{ТgBw-y-q g xCn~``7 DfX`vuw n_5m1=<>gij@Se㎆\<& <{ |/` t8(;it#'~51_o.3]W=ClbG;os9% tvw;BV/gq:Po.k!?W3odq0{ 'tw!y?jkS=~SՓA=o+Ra6h^4/K%7E'ПpD 5|xׄ~\Bܶ,_rs^k-;X& B !Wė bWF{x{k/|4-wv9C(fB<˞0>da*G w[#?y$sٳ={b&6"ޟnoפ/3JH%O.0?1dlk's-$cϩԬ)DVC]|3}1;bBoeC{Vsmj9şCnD.p)_?g8Ȟzx!|BۃaM])w"HW? C6=jWc9 .4Dp. 9v?#׬$;ęsd<5{߉TbI;kcS_^V}!+_ E?:{~:m-|y.{5-jXo0h?1 OeH8?7 㛰77rގW`ʽW;=:g,{귾;5gqYĻ%~vzѹwA~Bmw15е.Tj'QLVW|!Aѽ~?*8Hc_hR=ꖴB>&S.wzdQ^_u }^45'lL!b7Y=Ⱦ#7N 7TZp~r}% ^?K.4ݘ/?O2ϒxlȇW˭K %~V~N0g4S~;3LKQ"'PNI+ׇ '?~/v;xJG[Cv|FDb=~^J} oNksMk6%ǦaiW25&4۫Y5\z1!{^?#ĎG ;?Ǔ. T$\tϻ(*>ޒc}*tЅC?0/!7=_]J?15Ln~U*wkS?VE_l>y0>yQIvG]'f55w\k0xC_?0w (+DV3  qŽ?tܬ+'V. ;_ٸȌ;Afs'R=Cv ycn֨]kD]q)ks5n{, ֳm;tЅ3h|y^[_?- gV%2p`v]v$[粻Ģtpϧs.g3ޕ~ywuES?*z/\_Ԍ'x٦_smo`|?Ts-յjxȬW}2nOo 6ː e]i{. b+55?Rj湒+5L9 5/{wN:挦?z? *f{]*=_e__w}}ҋr]X5 oE Jm4N3xϭݑ?[+ǓD*q^viˎ1g\ڹ6?⻓F=v*W2և^s~9sC1?e_FZ}.<D&5#0w,ո_n{YY ޯ#wZ߲ _Y[wUZ L9ﯜ0R:]b-MTS~Ѓ-M}kȡrGRSA:q;U}=9ֹ6TIC}Tt\|+~~YBWW?xfU쓟k{,8kLICW]OWaq! @XWWhKwc5Ӏ 1y0/Mc\CIXƼT~ "m0;LXd U|=KTTXЧrw9O\RzJMgS>OBwO\&3+C,-|__~5g9𣠟xGud?Y;_a_ dܜ+{B9צ&~0W!SwaFNa8b? ~f+WRgYtq-s~>!\3bVr_ n; WftUOVhw ekBF3'`o>FMWdk8ᘱ:z@}i ݐuU+v=nўbrTvuj?]CWȿpurۣ=Ŀ.r`VeZ@%ry_uŽCqg{y<CWbWOBׇ,;Rs'8U{vO7|6 s'SS-(:Fיk8''aO'[ǧfO4v_w<~Vн6~<(F6y!<'Gʇڿ>ޅz+W}05gټ/OCo=?%Cm^.=:2/ vs`Ɵ ~[ ;/eO }tR'B^ vS$f# vIn.'t ݠz5/]kclgUxǥDZt*uĭsV_*gTWش gO9q]_;ӥ}vzJ=Y;墻@?z@蝰pS}é/M/wg&ikT;y&a޳z\?^Wk/OxUw3麼}sxYޟgݝOsm~|x5;a-]Tz_՗GЕ~i=U+4w_rޥ]}OjQ۟:ɎWz: OT;X=^m6&KY{hхTjXԅ46Jd#t`5W%N϶r!A}D*KA^Փ݉ezT{K Άctxwg7cZ?}{O;lFa`5?R'5Vz:xΊIe^} y8u~Tv]x'B՗.?i|^ 8.䧏+y\x[sj/v+^{aa&#43: qb_„?ڽޓgޱzWcoĻy>5kAׇ9C~FX*9M<{[z3:^_KW>?ώ,iGfڞ_P۾Oo Oɾ[_Iz3q׵j>Zd*E~v Դ}p/}Y}կ< ]OulzA\JLG?\zޔKwG3^ާev³=a-/)=vz{\s`0njMfΒ8I ]z5]01ܝ=+ާ>c_ܕ~tE7OYX珈 954z"ds%=գp :W5}Yk]z󸠋^V_ν[bg]>Yo?+u\feЗPW?tj[.\!;ǿk~P7&.? qh\kznXaBV|7l!S,wG0g`NA8̃1Ƽ61< #3",EFOOq=-^ffGs?W*Dp 4[{w==(_ʜ oσ ϰO.Ÿd&;sl~3PA3`+o_SZЎ\:zkx'W 9` \;ǟt=Ӑ~gfw;CYs-~ߏk;]@/Msq<oyY;s0|._.tx熬B2Ju25w<A kW`oWc{3¼#s0̞2/%@蟟J$ Wewg~Y@0 >: wb9syw ~TxSb_2 /:(7ya?Pc^Cwd9N>z qJnbAk&5K\?~Tnƿ,GSN;M۟n >.;}\m©֮){%⿊w!!K߱ ;? ¯"LW?/>wɿЬu4 [Ye|fMw&8/qՄÄ^`KG~{8{bMRbE5?(ɻ:,ZSTj.?;p[Ml^xK>9H Ϸ[SH7m,[>|]4ij6^Tu0͏{6~YA+=a09r]Jg|!dIi!|XDgak ΂ٕ~'륲f@l]Ў, r { >3Y+M`s=&z$4gamd8?·k/ ~N#33B}0Ϗ9.>7OEXT+ry`# `]?k~Vc O''9 @!'½|"+'g"K1%3qtJ?2/+An^? ϾKLЯ]G5!A?]Ny!+|nT] C {x'Gss 9~{烒S.OxobC_XjkN;4]c禂a'<{0dTrIǏu\霽?y!5^sXjZCbPI}7}ȐpS v7\᳄L3s2Tv Ƕ)NXQwwG;`~n<;3Zr^?`^?R_ʬx? yxSh+Ѓ/z F>ڗo0||\\G㳋S3~o1Ky؝C==,tXk͹߮CkRoWޮ;Phs<$]R}`}Թ69d;oFy.lۨQSr?R_?s^t|?_b++}0 aw +z,sf|,x&t\x\Gנ]](h?ujeΐul{r;82 3k0kCq#aώkCaW:˰07':+;fձ)S6n3\#!Gzg]G,^rnqH^P`sgדu_qo*B=qr.rgOTzKO5!?<6X;09,KsKY6 ÝwvJ3oS:89Я^lOjk{i]{Oޘ ND<m؟/ zygbՓyCHZ'CWS.ׇ`hV ]_u=ײ\=f&tak Tw‡ϴK;0l)sszOޞdu(#ދ,~oupW^>_?ԫ$XrI<PN3g}SjrʖS_\ S=_4.H3g$;94dF~{EX8˹tP U-qݯ+\N#k0ʁ85g?u9k}V뿚nLiCOqfm⿰ KEOB/CF%y!:-ӹٿɷÍ~<\ ^G*)}ufB. }$d7z k&5/+/SL BGȽ<'5'g?7(xGIĦ,3G;:/ #+WׯtՐ%=?}3sb>W;oka:fk_ׇ.'0?~lwΠT&۸"s~Rïw@ܺk;f8.r.p6wMw4ñ6Y}e2fi}u{uYqϵd{"a]k)Vs$WINoTj(|V~rar􇘐&'_JKqGhяngL,<`??{lL,< g}~_x9•  ߧ'UWSJg;nMlQsO [ڗJT4G,0G\W;'6c{G{"ZqrLSgTOU|mޖ 4gsGVVp7gup]DOӅ~?\J}Ow~Օ~?kF"YJb4|f~ߓNcC{dj~v[ÉR^gu[}ƿ6 4?M=ĹF+rsfV}sL_~śLnF -I\ռc65&A;ZQ x^acg ?r4.x}W-ٕS9~#EC+wxOxM)w{! ̝0=_o ZjY)s^Ӎ=<6wy: ļl*}S}0w'32#)qt~uYL0·8 <<Gs=NT/|E)Ӥ_=;&Nתx;{|ckbsc1y.^RgI_t]y:{9D46VR'Y\'lߕ~hZr{" Օ~a|7GgT?9Ұ王ﵱ `Fb ?Org kks ]:;~7]}:0wkB]Ӈ̒+ϼ0, 6Ư}ڎ3ȱt4?L0{iM_}m~g 9\z+F?b%9? 9a~d;Vfi`XX('1\s2/,Zt)&CUWMTfO0>t"7@U'9\Nùs4b f1 $S՞?Lј="SMfL ֧Qw>5̱pKxŭ 2\fy`Y0yH1s:) qez xlNe=۾'w"{\!MZsCO ;swUc{2x>3^ÙkYڏ,<3^d?G9> `z_> OgyUj_cc>}F1jjG_C 'TzLK_4Gvo{+6 yVϺ:VKЃ/WbSW{zk-/lWoJ|p͟=~a21<3p8~3w}샣#/(\"䃾 ѹnr*=/tK9k>o]`X]K3eԚ/ PMb\pm ]3a38yhx*=4%&Q}yQV:+ *bfo gb Q@]Y:} q !gccUCSմ1Os.g\?>TXWKC 9/SMkz/t+A0!A/ zF gis3 CԜ8m*?(xՠU{j땡< '9xFaG-Lˉ!u.LE}VάZZv^|^KOW>Y%32k.!7/ǒ)txX>lIb7;zWkR3{~,y0?9W8)8jWVz-\+]W!/UP1Nb$ha{%[gWs0gġφo?п2m?_.5D*;A_ ]3~+>THbf䌥RQN|_*VR<ۙi47XUY1ϢYX O& թR$/սy&B .gšDE\0']tA_\TL&Ssv?y3le!c ѕ~*>7UؓtM,o=/F5D@4= =~a?=l͞!3gk?g^.;D;E "Mz*+b%9o±twƿOꎰ}?;/VYxC_.,x6yD%sމ0~ƻVB`?MM_zG5>]$0O`_BK =؎z:O|Y wJ,漭~?<8gbP< ur<o )~?r#NVWέp>JmԞ#dP =gM/@x*=-xgC*H=~8Цs^JE0R?J{$tev naaGXyv B~ Qҽק/eO.4q+JT~#h=G,^_>7rWĻE楒^t\O沃g c76|ٹ[S雙L%NQ{RpKL6\#z{0_aϊk-_7JϮ˧X{T?d*~{4?3{̜=dh.M =䊺aanTKv?}ҲʫkS9/ٿb{U/ԩjkԢ/ ~MeTp YNܽa[ Y!n fﻉu z:h݅i{8{??.{j:Us|)GY7TW $U_CG`p3~0;DŽ/ ^Bnߟli?EINͻB.gY[!CKد%!Kة B~5?"D`h> {_x ">x&/6 ~Y+Cut*z~TGw}OJYnC7uÐJ[k}]q|V>\ϏPO.u{XȳuK"A3Ý;"r@HS珏t_[s^{Ĉ_ K(?<ԉA#7X9=Ϛ/CYՁRˡ#t{BTsnEr[ӫ=#PzZXlTooCI1u}]\T?oIM]^'a/AwEfbwa੣{l.z%1,珨~+SgW`?R.+=`Q^}6q0G1<|t%ٿ}}={M-ʶ!]b\~?\_}'='^s@¸V.gP2 ~UfB~'xF>4$ksOvܼ_7uEj{>#^:&5y럕  lOw|Qq?\G/%\Au+W\v?^r!ABc)eܖ3aou6N.pˠ}ܜs'9ŧͥ>ҐalZAtumWl ζ7[C[ P#ZQ|Uro/ eSrT׼Ԝ?<&>?.{YA7r{vFfǵ.ÓOx"3cKwr%>b#_G'<ŽGL~yx}":{nL.3e{%/u!ps<ߐ .=9b^թ.w5{Z^ 6{xeZs=yG8u禢??~1/n(/?4Y3~NQD숿I/q7:Y6zxTG* Cs?:^Koސ[}~yE&x<:QMg^v ?wr 9o*\m>񪺫yݖgo?N=D{q~@0T ATz]jsxC-ސ߯zKEO0-|hlu4t_Og'{O%O{K~] O}>Zм^dCz5?gADE}#+I~_??3b| wL'N֜A>_{׎]k)7Vrv둼7DsBkծ+:w;Gضߞ ~޵Rf1/]{Q9zR9-6mYëztAIdYf,`5t5-|^fiSsYӝuMkozZ?sZ׈3`߮=Ur_|~J/ #q?rn.ܬ˚2?ʼb犪~ ỵ99Ccy|]Z{׎kokj7rM'yMRz.۠>=W)`*>Ud|,_{xcr{cZW|gjO3S ieocvYԜg$y'fpyɵסZ9uy{oGx?J=?hC*//q<=|a*5}^)uK;Tp,>ߙ,ׇS鋼.5qf~s7OVJvSkvΫ>;[k}uWͪ< |#?)yfQcWWsTGn|>g!Q{|.O4O~ծޗʙ/gFgKe&C3!Negqi-t*S$#U'\#߉vAGTj.IFxd=Z1 ǖp >%,K@<8?ޗtŹ_M8W'o<+?5;ד|uzt >>5 A̹a, G~u~$\&ـTU/49#r, j4[wѿ0?A:0ggcQ?Lӏdq=uh,ȣΨKC_\÷&~ܠ3ؕ~^N9lϞSlϏ6~iPsWޕ?=u*Kf~!wsa۟Jvx;z\us#Mu_|ExFxVL~PWK{eWM~؞RלZӪ3yN%_~?V]W2I}؜N}_?wtzMס xzz^_jQ<]y>E{H=/NivfB/ } ?ϥx0\C.1 Ie cͥAK_f=nπ^N|) 1ki׎pZP)6zP.}Cϙy٠`!h^7s[ACwՔ=Zk;梴fiVl^7zTMGC=awv~)_{\' #? }X }l\`4_{>Jһ~0_wŶYAsƽ"GOO^ Ts˜CrsBNtdZkМ>sSV&dzއ(kSOfk5+t&|Wͩ且cSհsS[G&75 czj79xg‹WK*&,J>1C[z;G~ai~qO.v6jd}GmЌ.2ŠW"?;:x{3MO~udSYcet殹9rUXA3$ ˆud1c\0rTdgvsZe}]].IϠ[egkN%xDo>?$xx.|G95(x&t~9g,FgѾ'k\P_`Wx.^䅶Eilh(G wl\M~}Gf~( }ͯO\bsSNuӎ&O^Ksv9b}0M:a3\r掹_sg7>@}SuMNkqi\)_A>תT [.ּ7[$;CO9\KGxJ]w=sUWٱ>kӹ2?sA\~)!+r/r w9v }/?54uPfᣢgR!9B~5k=(O5~R<9O YD#N͞z:4_wJzi|wmjb{?~ϊo:fwj&^k4WW͞2Jg[&!#B?TۀBȮi}hmcёɳf"C bw |D e>4yI+&M{b:ܜ׃g}O3L?Z+߇rSԜt;u:_w^|i^9_;fVD#JݭٕݚA",Oe槐 a{YԜ<4Y ^5^Q0>;5;Oו~D>;`<5^o,:?/ⓒ+'~<qrteӤ_5b|:QK?8}%]yi䇜 :?I7tlCm=fqI RV\pk]_yO]?W{y XX 3RIP]1w{5dE> ~x?W;VgCU4C _/,)_3jÚwA.9ĺSR2K_9dgl~G.\LxO~K>Kѕv W)Л{b`5Cg^Bܴ&3t9~T0^PqmNw-_]0? v,AjY忳i/G}ЍAеO|m*Jt5x>83D+?7S[x?Yk|.^s*5v?x]w^R.\xЪA_ ?O'b"v4G.T+ct&98tÁyY>-x}#Mn3Osm SYkL?Ak'ßvwI\̍;~ 1w Z/#x]~<Yu\D?|x>W+#vsms_ v<?ECqqeak帔BCyʻ{m{~!//=?\1+g j~y4{maןv^Ag=HW*vQᏢWx`{J*~`NF#:ø_Z?#fiX_Nu4臣R$^ ɛ|,77)yXx&Ĕmgs ,+osթ9/7묄}onz4n3>'ە~셰xOモ>?BwX<>W i=ϩ)2}c<ﻙiK%"+lQxwM"%851\PCH3],́J/E!BպKس{')@ˣ;ƇRrywXd>ΜI䴆S˵>,c5YuA}x5[wi#tLu#xRsImsSɡVNſֹK:WiW) ^9v^Lzu8~drZåQ^xmQ;8?'h?95q݅߮ЙG?Xj>˦=37R ?]_>tf}ICwmOkxn7Iez"x*9ݵ#}gң{x 5y] Ѽ_0 p=_WxWT\3٢8{-Ιqb޶cQzKmkWumw\s(|/|qw~ ^e#~.R?vW]闍Q.7T;{l/ĜtI*W`9^:[mF7kzZxT:gToЯ34vE矽~i]'}Jn_8=z䙦BT洶񯄋2da`@l°[j8'Þz-ޔ}wn| ^) +=hq_Aμ<ޟ^Apt^};<bu߹=s t `7B2e\GEU9`] qo\NCӑsQ*=W!_ߕI_rFk?^zן #WguBN;_-`Yl;}*d^ZQ~;dƑz{V*5Ъ2_cᔐk{a.sYE8UJjW{O߽.d̢7j?Eã3A3A?{IA+xv! ܉O4XjPE;3Cq?'ܟON>ZK?.>J8XFockx_BT\>QȦ%SW֗^no>_Ҹ~XޯwL9^ {uhǾiϠXo{~;dاob?1hS |q<|@F=KCu~x4߿x<]; vpB=bx'~z Eo#=xW`pՃ!O۠Y3_0 gRgܛ ~ :<*BϷ/H:|r~,zx> ⾖:Ƒi<ޓYq~*: +o WNmGvTգpU*u2_ M{k.$|rxt< vwwAi~=3NJTf ;zІ?771Nk<߻C&u}~ۮC+b`n;2d[}?@t`GfӠ_= E-\K~p)ЫqK?v/Fر&sV߸OA矓 t-oZӵV|ֺ͹{05y*/3>)ǂy`׀m8(~Q]~yF,h&LB)koߓr:&71 =;~}xks<+5߯3Y_gŠ{tbf3v i<}^~%ASo~χ"6Rs2s^9{_v< 8ms>F.3D<#WsSO|NfA4aoc_it뾊=WkϙmAj֊8'Iٳu:^?BNwMsm)! _ 9e^[s#]ڢ5}V>ђx}9ф/\q 3` ̜UA=V_3`$ -ŏ{{uBAN'AM6x'~^7󮉟-AX\oJUM~+w~|Bq ;60F/61ޮ :gb x>}Q7S[Kw/k%jXȋ52 ?N|nyf \~ t9ܠ , ::?B?~(X8"S3~䟱>Ľ;'~g!)O{> CE~|ssq.%!g>g.WAK~?_Wk|=9jW7}]|U%-,cKis9Bs@.o]+s: 7㗮 ~υ?]4lj. uwgi~ ?|O#猟 r':.bEǽH{b*+;BjG]`kQ>_zF/GFyQ[>oС̢DO:Db#~|%֌s_Jq,/{&LSoO){9!\U;Wz4W6}fV 9V)v^5ggD?#a=v?2~dbag~ov >B`ůSU3/B$Fp @ߘ23S}(7_}C.Z_aP [W|C/xn8~,q.J.Ԍ\ϏjvpbkC_ӣHai{|@}T0Ԉ#U˫0ů#w` ?c憌\; G| :9}St-DnyȯΔ u{Xȯϖp?wg4j¢xa8~>3=󉉟wLl>4?5~)`^$wG|~N͹*G>Bj~ >qrВWt:~ܱwv_ʐ ujp-K|gskuބ=3#pZ<쵹zW/{/cnb.s_̚Qg%ד3B+Lv-, 8>;79&~ {bQMWa9[Rޓ"OE^Y!c{*I5T1ňe4Y zgz}G} \GrWW\\0z߮;~o?T}_9㴫x[3m\k<\RNFu)|~Ad_Ho.;ιRg!9y?~L_oѯ#= rV^BoQ;8WߊϐQzwHqx|k5XWumxFf1}+_?g\oK%/jҿ2da9kwǵeF=oW5A3x"?#_1$WoQkvOJ% ~|v|gh +ױݗF,9^Ey;,6N' {yf~ǪɞrQ&|g.A‘%5jo-έ5K((ֵo?Es]ljɹ;SWwrCɽ+Zޫzyj. 9!krуv7.TzPR9![^ï;zWl,#;^cӚrQN-Ne~s|uLqy*kvy{R*uE3gq[lkJ wrMRݜ4(dϵy5NLN~H*yG`'r~tkZ'?Q͆ݖC S7YBOμ!>ͰQ_aYaoʬGy |C6%Y3ͨA2qjԭ~/ u;,F,8'"9A<tbћ?OeLWޕby]lo::`4u=oW~w[KOy*L7Wx*>$|ֹq75vT_ΨgxbH͞AlZ_QG_TKqif?*b\f*>97ϵg~~ᘓ7 VKr`r:" [|iGUNs^uJ=sa?5Ls٠?^|^Oߕ~_ Sk7TM~$v>~sW=~z~j~Vgx3MX*[^ت}I~p5y~g_{5t>!|A]꜕_ (Dҿ^AhG^7Kh|FuԠCГ- PaoRoi/~sd^䁞zxp.xRBX·:,ƫYyg~N?Sϟϋ ofy{9kY#rN GCxYHN1*rp3ok)U=i4_$,nm+X?ACF?F ߱ږ_?s3F}k57qNsSieWª)$8$'赢w}8v`ЧD+HX 2M% Ss%ǿu6}E>ALO=0/{p) TϏT1 /KNNmg-k}5^sv/M_{E\~lr[>g~lWb)! \zռv+_%ޟK/AQB~@zO 3d6FW-gH~OqGbWz;lՒxOCG3i;3_ǏYAU!p7 eiq}=(]Dq&{y-C'zzDa~ 0 P6U2JN>㩉\Qv_I yj[U}*1>Ԝ: ^xļo y\.mφXx}r@|sI*B&'YX7Mq?_[=~vol|:#m~;v_4bP`Mߓbl 4 o}Lȭ|"0 <6dS)= ;Ѽ.VTrLdmΑ:7bz2CO|~3 [tMσ ' `:d!f)TkJ?捩`櫆Ruh&fD,\;:HM!_]=m]s:Ɵ!$_z?I =)gC9_b삓4O~ǯzQjXz1`h82k8ulvlN´[9w+bkk~r-%Z_ŞNI5 -2Lz'K= f· GbkmY(LC}xk*kFs~t,H.T3-a!:ؐOǕEw„*[,.g,TU}߸ b/6!Pt 88Kh^0~TlTf^8v0/?5C9͊,' 8#e܇?b{Ztm]T3T'R{SG5E ;y.G{_lgxع{勐+Ǡy#a/.Y]abwem49.7qD\?3C~ң ku\6 ?W^9g<|:g^^̓!CɮE5Ҟ?!|s!>g>&~3:LPf:m5H¥Y_3<,{sgߊt|n;]w9=9^ g h}OҎhk>k 0ߌ]o \Bl0uߞK#=ǷA`8cǟ$Ǟ3ڑqr`[+Ыx 5rľ W\r$tq?>p>h,rђ]vz7jv&Kl՟{qUd{/ 0=y&#J3{j|>Ůa7}N*3#(kKMs7_M {N?=ć9GK AW}FYA?<ԓEo Yg)d}|_ّ¦i/~F+_? OMxjUAnuN=a|{I]?ƞ<.M~Qy&Mev7<Ӗ49x_k]óFֽuGk4Z!g5~G\-g_C7Jf9KR/|ue3Ms:WGoWwws"\D_u>S~ t˚&۸U<ǰ% d >+/ϐژ~2J|7ՠ 7do#w\)̫rv+Bf}΄5Mu3M𮘟7'451d>(~aICYg\c/V==t؃_Kwޘ15uן:X*_U R}9+f 9ʹO{ zǽd#:o02ƽ!o~r.ck~>4 kީWZ_?|\X{Tfۜ 5rk~N/շ`ˈo>-s&_3 ٟ>smU?nn)S] ~N*yř_q.rq'Mvּ649( Sf?P :C͵׹ЯO6sp.}E-^ay*EekRVӃ:cz n.,y(!~;*Nׇv.\s>2o>'/ꜛ3v ݣ:Fx*rbǰo#OJjt;#~qgWmvdxTjOen1ϋgsdcrs gcەڜ_ǥ?79볍k=O=<=lf:usר]W0*,:|ge"%O+ێWVU 75gyou,JaJoLW{AQlF$ U ~vCfzүګ{jOVBv1e˺9SP_9>g[dpT?o9}G"Xx^g~PWKy0ЍB S.uk$,hl1}zL/[m`*Ĺ>$mZJtsk]fk*ƽ-5뫉yMFOfz/9Ew9؟e~N<beT r~~?~f'L5zl~7Kyq-#^G噻5{e*+St3 >7>#=-Sܕ~ǦܬG^_| _ &f^σ3` /asML˃?gW6]?3"Ώ>nՀ`vS7_ Z5uܜz0gak\K@|f!~+I` ䷯+>{ϗ_Q^ YV_w1aſ {^l韞JmoW#L+Ps9S#;Қ=Nleya}_9]흚ܯ*vԬvkoW=_\_k杭Z^-T?;{4?\eߞ<-yf*X&:W'+~|>ur#Ql|>g#K9WtCjON֧lZW+>UgFL5,Tfz9Ku}J*녽rp.;.z$9&v{O?]ZT_QJdvJ?K~U/c_`wGg53Xj|O+Pl>76M%SZj&nT`Um];юSկ*Ny05RC%>B_; ¦Fsz{΋{>a?Fzܑb۞7<7Kz߮@dO9?RjT !PkjkyCΪkQ-/='^7u c! \hϞJtrE^?]Gf׊\03s?TzxGUW=sեp?)݇֕~_KwrV4Kb{߮댝g^lr ms" N?{ks 'Gq۝uzz';syYЧsS<ߕ<²?+碟sBv+do{߮;NN?'~ l _{|YקfZ#,iuum~Ym^u9+m[hFstN Vlx^/55O32|,2|{9k4+__}vI<~kNW榒y-vY*e{dA7rџK0c)߽d?Bv翦A[8Nbbmdc~ ue~yp?W>e6 30cvz*ˣnNŗwlϡi(vMuzծޟJ*kkEǟ;B#jfv۹ƞ˼3ͦJfcr֨X ?%>~f.A (xjl^Y) '~<cIWONE,+Wj|u[3wė/+{e)^_ܕ~ﳖsTpTwI;}< ן>9fx6 C~Kb <7E2jM~P$d\;>3h,+G.ϋER5jN&@m/CFſR׵5;[;6Acc&JRR[2b1#*Igs~r/x.:;q:STωWa z h閃Fj%Ҝ;lɡc 3N\d'~^3}Rϙe}%6aCm}B/{nd.烯gX7}q3S2?]4 <&˃~b$6yg5[R oخ"x~/RnN/o-neot~k錇[ڼwMMl{S4zOO%Q9x'+_φg}5rŎφfw#1'msnI6a^5}frk~Yf=3֋wpoJ%w8JKu2?9wn)wwbqJ0 1.P|v7b=hTASu5!_3|%IzQ.sOsy|vE5\F|%6וr?WY#Z'OvzF|?sZ.J%}o @w,i 17g]#A6}B=8 rGA~?wz{RsF<)&h/ =,c3t -20?Z߲O:>: sysmL,z\qq?:/ . )7}?!9/?={5ir;\&5?\Gg6z鼠} a>ջcdk͔U^>;_ yflE~hע3OKŞ)师лC^Ľzᣡg.V|C6{_L~l{z*/%V,zѓ(.??733.3YJvt1qh"| |cCѫƳ9hTnx/l[]rYjOًQµ f^격 ;(5kSN{^xFn!s=ߎW1wb`o͙]f&nMWG/:w9ݼg~,C? 8WΏ6NOOSѡ?(~g;>-w}|(vgk G;Jc-Ώ떧fr^8H1'sS}9x}>׃4[W},xBg衚y|9wY$>YpW:p ??"wAl0>65%ys+0O8rlН՞p?/1^_}`V|g|ۃ rW&a4ptG~ ~~yANъ/r@RjBTÿ"5K쫟Y89z|=)|0uZص[ڭLe4xL 8?zm.|v@};qX<'bKl9CC%;(~sʕcy+dyF{],3(C=eWy&2d3;N -Ckx{l_!,rWo4çB?6qw%Q%Kρ8LWju>Lxz~}_i:dw֓;;:i{=Ƕl|~ٱ ]:զݥ׾wtq/jש$CT.IǏ4yl#ɱ%8E,!\,]'Y/Sm׳xP^g^w+7߅';:-cp,d~9ś$#| {߮o r*GWoW W8rs5jQ_XS9a5om3{YWL?n^*͇a<;F=owT|fM\֙_}¯\gR])>vjxV5xu[kQ8QuM<w m]=pp߮r o!&ڥ ]_Rûv/7>i*>x*;[nFMk ZiG;6K@W+&7^ރ $Ӻw+ ޏ³Ϛ}-ZkLeWR5Tғ=,cwՋ'˧HrM+{'S}wX{ yB?ik"X5y >MQ:sn׎[ka.nݶ0/u!һ:pU*x@6NMel{nj>/gW?ib OwS3R_P󨹄]F\CxEv9 |u 'v24Gƾ>Ya`߼\t%>?H2οT:/MTjk=ߞ-=/_W_{G}/߾1rVJ {.%'RP;Uu׼75c?:ן)4ߕ~ՎB_ Fܲk{w`zwJ?+]su9`*s^7VjTڹOMNk'wI\A׷b=}uM>v_8KTrgҝrWz?" ]^sy;'dLZs~vΏ|=Qku:9i4~~mG9>zG[>ߕ~d=V.y\οÁlJ<7W96eW̚ '=oWZOwC~[v~r곍|_sRߚ][=u|j*+ǵJ=ubjwzIS#<<3W7J<{>}c—K9+ש%T^{]_wXJǕOML-X/SutݳѩOsj=5SzI.Eb' *P+oH͞,T7/L߅zx7z-臡/j^ɃD/=[#p}NJzf,xy!âW4oB_ayWw+wZSE}ӧ>.0djoKQ8/wFGsN΂q/iчMOXX9`Ah`Ǖ>S,a Obpuh\Y(5׵㺻IK3IzoбP-xgc& _s3}t W\d/תԔ_|hg>rX^K8.pWOcNL2 U5ҙ<~<GG CCE/oϙRM.Eާƙki fn0OD'lYjZ >-.KY |{d|}X5gD/ox]Q!nѴ}ғg9pѻu~)c e5(}K(,OSGnJef:{#Ma ٠,ޱpoNȰ8]o_Zg~Qq]ﺹ Gſ>8:xi+/8ExʸU8ũ6~qrEkv1j.xmk3{yA*'5oIO„%lc|8l'{@cui|?1tTvϓ9WE}:Wz}.3<b\Aׂ_2L೮xxX7AWBc?zf)wa,x&^((z{~xP'\IA;" SVNM< )\t%K+~ï<5X*ꥻ6/7b Y ޝjX<׾Z~Hn׵y=rf$9wX| t?O;_w?fI9F9r*5d'2'Q8Rh6$ύ8Ayq=qǿ^=(vh-\+_cr~ li/t{2|)8v^Q E>Lt'=sv(?"^JYIFW< 6F5[g͙f&|I3xA< &TrYVY15s)V\ެLF׵U 'gsY*CRNFu܋{yFRK=!ǧB2lxEªg>#AkYGC?:Rg'f<~'?"6 {_ UR|a.3yc n|gcq/B~_7ݞ/:݂F6|ϏCwbHf7gbCek.@T3m7˧qs#DZɝGvZWRk,yFsaAvt{zX]C`3mq?-Zq1/qvW,/,hdUq0 gv?>Gm%S]wI7j޼kU*,=J.e!< ~Rgi.q%ALmӹBn%WQ.ܓѯ}qy&WĞ;_W2ݏ 8Q7yɟ]=}+=~CC_b2O?? ~9hD~ǹ yLQp9^QrE*χ[lo5[gytήY;3@=ŢGFcSggd]䚜΅wMk'5qN[]c^ɯ߷>w3|R|уC~Z<#܎ezT,G y:GV]4_8'd?>vn*5{f\ts?'=_r/ ]'l.V!;Ow?dU5% :S%^/V\㰱^ 1 =D>2ݒʜ_XrBþ^q͋϶:Jp} jčtW,"[=!z'_|oaݞ:γUȪDZ ?Gk|Z WfnO3w$_Y_g f m\$-urac[Ě?"llW힧RO'<),kzΤ`bOVkQ|]󇗙l/_JT0ȼg!ߦ2#r/O}'/\p4幩`;&)]Ys[#?-9|v5\E?+DwvqgCg0?q큩gپZRHmm98xO-Ы_{hMnAb;?=\`*lGBh_T4U}#El+u̚{rr8Y?˩kr-&Iy~cP07}f S=~q>GD;x^/t_7Rk?=o:W:? g<*^Gkge>{E{ #||4?"ͺ:h𳘙/~E>yY"QwGYulO|϶w?T w(3MR9W{rT_JMُ_SYZ>53^?)-+̺}I35[FlA3:J|iKv?䢩wp,g04|9ZU5_vy k9:=S||Y2_>?>xIQYt0s-ż~kާ ruh_RשE~yFA~5.K=0e:{li*n]rS*3q8\8^kr\Ũz]Ӛ#oK/nRH|< <_y.~~fV=T埅Co<;=oWPgsY K_<=:'1σt-vYT|m嫕C|׵s%G˽|U3Ev⠙A-1zkl~ ;\p8zQ塮0g Mi__z_r:GvU{g|}]_\?J5ޗD!Q!h<݃NC璖_'Y~N9ȫi(.>PRîyWQ=Fr8''USCŃ/LƱ.gM'^u `Ioc2 ϣ'~sP0C R?ޛo?N:.=Vzy~=Fo%|w7r+pfђݫLv##꫒>h jr];yPX{qS8smWLBm5?uF2؋{t/|9XEx,/Ϲ6xy*~LބSwCE~S@;_ĥɝd ]WkB=/KL+Sm!صo?~\ Y&CIw'2NM%b/tϖ!_xZ&N_p!l3_~_ E'-W®; x݂f|z 6 LXdIx\ޟo 1yg'>Mɽr;w=%dSs%vϠ]ςc t/MH2o?6VdoHCu\Zj85y_J.[i0htΣcߑq F$m<79\9 >AgNO%^K1hW,0/>C_ue ]e5:;'22 ڈ84ECڏ2]Ul"Hd !S%$TJȜT%L*Se|8uv}/Q=kּwAw5>y.#/%HޢхO=$,A/bcf0nKރ]+{2>v@ːQ=?ǯl+< q/9G&?nOKg].Euz1?OſSy*;{5w͵׎{}vOԎkG穈wС?'> wR8Jߗy)&}~M/ӛ\rOKyv/+Ҏ#|Nb1˻gk ˻HvΟ/](Sq-y=G,+D5z?~4=Ҏ#Lh'Ϗ}'_viH_π= 1v򟳲-e;>~moߝt4 <+&ߵB8᧧ޛF)%;=U?r M1S6lJ~=Fд9ku?6|G~[|?En݊Ҿ#|8 Noü:v1⎷$͜a"`Oe Me٭̠ݻR7Wt vZ2}` Sn>&jo : [*%9 ‘ŷ>֏-,P{v@/g8~/d }i2Ȳbb.r9QoCޫguWp*zaS~weu%?>&/==^7_~81r:Gڻ gR@s񝡟I@~?|bIy?K9-QꨚM#E[ճ }ܸ0ilsLZcыf_J$5H6}q ;ѡ_jf0ɉs}lvhfץ%s;Y_d@}Y򻟚 Qޕ ~4~чRvW.|V~crAYPOF~^.\J ϊD2З9ߕ?Rgbw稼-y)^ܑ͒mjO.tʵv=>y{~yM$vy0ρO> n+^;}Cקl T{R fξ ?ϒH08h_?_w|iaW[t$`jLZ"<8F;s)KsnM̅.EWj?gBNV9;p( |3?US{Hnz3sz7!}&Qo/HϢwѥoLc R5lV?LvvH / ?\s}MR_?SĪ=s)w̅ڼrKI31_P$7[퉐~&?oFiIw 5/,PyG~ke?okguyɗ wnbG}ܗp#Y3q"ͱLg(pcO{^{,i)i*z3Л/B`5<<2 k|WeۦC pu׿|O|OvAp& V{ĿZ-K[iG"21l.%U 84_|kg:v5=eo+ _qw7={7t:yt1)X".|6{]~^mF玙nO6s.^+zxzUԏب}wt!vc>;b^umc +X5S~٢fp&e]Oεvyo<Ǻ胟3EO5Hދocio޾')iKVtþʹK6}Q+\ɯ/;Su]kklz;~c1UMu甑-_GwcLɢĹ~&}>&z~2)=w5ֆ_5 6 _' qS:_ k{5?xV9GS&jR DцHȾ^ŚPF{O_'r7>=s ^OO!36_~A_Z+(,s핖?_k=;Jwʏن{R$'Eu,ﯼ4i澐_t~݉_ucQGo3]?d::}XԕA~Wy7r~N-3?M>3[SIy.UH|Vp*.kR'c8|N|V{2ͳw"=ϧmtm/:G"/Ʋd?g x?rθWxO ?r9Ϗk&gIaVl+}IY}^Sm>S>O|0?~𓯶W D*{~C<%g|)w\'),e*jqQe~g;j/\g%ȼ-/y_2MHޣyE{^ݯ4Sy%y;}пO~t[w}7~K2}k)2J'hޒ6pjwj\XTHyizz]:v6z z*z;Tö [YQ;_Tq~Vzk W})"W_ƛR~ߐ23sV{N{{M=gA~ /{,.pG_{_ 1^)ސgѵ8Q3x5<g[Ojyo?搘`Bf3Ǟu4ߘ%$< Ʌy=Ex8)j~J}(RY ,t@ǩӼ&jΚxͼsn_ļz_f7l׃ܯeMoL~{įjp/+Wܭ;gsĜp;`v)7<^39_c6~OOCqvt0h~լ:)raT׍bh1٦s&S3=/fuޖ&^20L &X(f_Y-15'y)~>>ρ0q+,_f#iG|N}A,^59~ݏ0e:~aԞSv}C-O<[osb[bA׼x>Sϣ;u/s1>o 2 I9fNzY 3wy3Z%e2aʕv=xR^M_3IoJgt&ua]/?'~By!e6p]^c/;[Xƫ&j_O_{Z/pߙ|a;63s b|̵Ryg賽جsy>#3L]O O]c`u/s`/F*i'‚`Ȼ,6rVk.Y7ϊw@?YeOsvng}~ֱ\~7mΉc)H;qfoe{5)ߞtasOu$|fa1c)}>2_OsKe+p__\E8[͜O6ĉE~g=)+> % x#̙QmlLj/Lo꿽oόЫ:j<9c;`__a?iM!&V븬S^Ss6 +Es_0ޚw\9 o>V޷Zkޤvb-9m$"3>K;,WmoSqlڟnTcG~H̹p9乢.I~y`ޜ#O=&=w6_-?\=+a?eډu=?xl5yw\ٓ5mo1jJhdֈ\31/x{ Hsw|ޘg;`n. idSLߞ;GE3gntEۄw/k~ *nu,J)‘E/(}uvV,ѵ yqcSnW>/,?pz8?V:CmakM^)Kgy䯄Q}u;X_ZC7q!+t39F~'կoj>=MNG>~~ ˘Wľ?,;;v3fOBw"٢vq'\o")nK%GE 6.FYah{s~Q>SdJw*/+q;CtjzƆ|FE.؜ծ|Ql`+LٿM9L>rsp\V%#z t} l:_5a}~!>o'ڡM^KO堿j)r?\ثKY#t![_'ŗAPSAp?4_?a y]Bm~~4S?1 ;uVMߛ|֞;9i|з6Xq1~z]kvzܪ݃ڇ"|qbb=5;tʞNŹSv|ɜylT4㉞VuO{MN&=*Ϛvj_E'H?z>mgEt4R+v n!O{E7)G^f}~[cùEfPA7iVߝ?1*HY|*);w)%yF>b|VcZߋO|<|;sy{'V~cs|@7bwэ䨈῜2A."/I_ ΟpX7G/P4 sR9POr>+ ?V?ݒ?+,,uep]TQ_;~c1O_4< p8n˱-~?_sV<UK+'|~ψ}]gDvK=h7س)X==GG3@^g>I|!a3ޚg _S>?yO פ3*̳~SO@avW~F~AO-k;OD=F=;?+[kiaw`Wݏ[t75%J /1 r*^Dfu_R~ϣ=sż/Y\?ѩD7c sEng}_׈_k]TK'rͽ?뻓'{/K+vYpI7W=Li9"VG{LYCN[sSO?f[;Gip&{==Y𤕿9y/ѨXg)/<;K~/;{eʨ m)Đ{;wǷ@$'lw$}&gGڝBn/3 &'σqOj.OKS?#e;٣ w/V}3kFrڍ;kp~_ϏpG?et}O~n5PTg_K=3π뙴6k~'6m)?Pj%??Hs zU=?~s~HXpDi=yfY\qW9;79zE$V>z~ϒ~||.9u_Fp_&boS˦bb?vi"ڥ{-Έ4%O'zGTcXr.j~Ѿo])~=>:htXgkYzP׎M"aѬnDG|V{h;b76yNYl6I">ІЯ>ካ_T?UkWA~jfOZ/sɤO w~y?r ? -<=ȯ׏>7G^?"`fv#?z{6%}7d@ ooc4[<tm+Ny7,*f?'Lltޅ/w{>f] ~k?Z.OybEdCW[h O%_͵_bubt;g ;kg1ߩGZf"7Ҋȧs3\׊m{٨:|^3e8{ߺy1©]ɃF]OɵrwQys%c=v|iC= ])˪ {swT}_>'ʗS3>h8o4~%嘳~Qx<sy7w~e^s1?WE⌻o)%gۆ/=vK 2H[afC;_#>#8' aɌ==uzݥ֒T0}sZ1g^{ԟu[LM9]st~Z 7E'piGc_J\ݛ&z4j8}rjI5\4¾§Q"sO^O{yԻ7=m)@p5뼚"ǏV/2,1jcX3{= W9GN_ F&s Gz 9KeKwYi[ZCsKyZ>'.}'s}EyӱonUnVy{RV8SUW}E>Yd̷߱q84KWg+tq1{zҊߠ~^ lcy^ozQvĽȰf4#xK s򡽷?1];Y~ upҟGO|5e'<g_\z9_sp P SOͿ|5jWy-}W(v$Bk~g4ss&8MH XXޓ ;]Dɳ>G~v43ܜ_XƮ{O̿qVN}78g1TFv<;\5[崸g;S`ܵ }x=k |oF_1*7L\0֙yt-ջ&zߡӕg[=?w'-ٵf}~#j:l@j]|?z);1098z=m͵ '\sď+tL׹gWbyv":j_"o~ޕf`WÖ|X#O~ct=9?%~c CGvVc| KVsI`U~a>Q3_,1c p{wڟ",#^ɦ?]쒐LU w+T{A|j'v=WK^]3-Y;_F 1#I\|qO3>!g&=>^vܜIYF6yA~W>2^՗c{S#U\Cz?;|v$!o3s~-0轝FS޹vZ3Y;bc{#(WLЯ^}PqJj^~_O_yK9V,ʬ/10t٣{f}³+Wxst#{SyQ0 j~~=Vnk}kx昱ǣ}Y? 4=kt:>P] ')gfV{ sA~W<2<;YKW{o򟕿BG/=kGOZ>Iy1>[=Y8A>üWgnW&_ߖsN$LkwuS/([8VA(Y:p/Z_+=htzkּ&"{!&eY}Ys5Svcs%ߖevsS!YaTu{<p@NSկFűeg%Þz{TYڰUS\>st-k-^0O}jy_ǚ(~iּ8X˾kz_L-xiO$F?Kž?_۫rΨ0oDԜjV F \ԯ?D)sh_Da8G5}?:y燿R |:j/VzjV=A5%q]DNdߎg_!PC155?5?9q󉾧^8Ũ;EᕫZZ^~2eV_妐m_Oy| {Z^ jѵbD`5F{\_?ڑ:73rʂv$bZkל}#u<ۗt{fD泸UU>Ji(&w-*ewM~=|ǯpxTwQsOq%f !+s~uY8v2yѩZOSf0/L _ЖgRKew,*uC/~yw67CPF9,F=LT~Rx4#ȵ1#&x/9f}( f4 vsg\OۢfQD3cqj[?#2"4aOKi񣉋5#L^a62wsQy s0s|$s1g/1v?pftgԎTe~J|}Nklje)6W/ Ju]șrx}WKS8}t= Ya<94s_yEz4Cj 2gͭpƵ0_mTGQc }qNW*Z[t/g{s#}ɯw2[|3:`&t;^0_Z,( tϥڀy ;PNHkN H*nIyw:h/vY2/9^n}tJr:e[ZSr9jWSbהSY}!W^U].o(|>GΕ沅aZwLf)+ڽYR-1yU%3W |gfoC;ݕwk`IwЈC<&'ׯMk+O@.;6fp_zs`}w)̔V;' ?%y1z ,Q8nc1)\))Jώc63XM|~S,'E{D<_)vK)[Oy#W v&ﴔՇzN8~v#2L{i^s=NDaq]; ~-vi?J)6Y '6O$oO{ܣK>|;p45&j6JGb9/>]iwڨk# ?|n׺̌_`[E7_aOƵþ,O_{~IOcT#0?. [?gL&L͈#_N߷!NNAi;I?w_ ?P_ Cu]NR+5-ݬo{ 2C ?N|'74ށ2Xyoa\]-~,wUGa8 {cW+.]!*~Ax35lv-V)FNK;g>M9L>/lﯟ߱cQ3.7Fx :p$zkҎt҆es~_}҅ſma" Y@~Z K@ ɯ(ׯWl:NEՆ%7G˗ǰ;7p c*Ε}{?C3^C\2Oޜ~<_䤵 q֎sﻧ寞'[SN{Ԭv}bxo(B+Lw|i , )7VEOwVm8K+a$) _ca>K76ߗ;NԞnԛڰj?Us|ﳒv|A1.qrȨ#X~?Xq4 > S}Vߪj|=Ah76gQ;c?w~ٖ^ \0Җ?hyM=0e}ZnPQ=Q{uaǹ!zԯ7Q~=5 abkkC+{bcQ6N_4r,qK~5QXd??)11  b<'ǜʧ<-FaM\2{s5\j789bk%ǭ1E`ڽ̙@c-D  YT-9U[#yZl[䕜/\k|;E{9sO聿:tqs~^>b+}5Fp/K51b~w7ص= .N?yI%Oburp4׏:rl̿|KY_>_I^_6V*r.(dy` iV׷ExssԞh+p%6?O[*ӌ[[tX|T?_bw;M?~)vYiW5Zxю7;U멹)a^rS߱)ҧob &MQ>SGk~$J=t_}/hջF~ fծWu+GY>Y ?OJ"esQXt؞~k,cn nUcBGNc% zsbx^b7,w)?(pM]c2ԃ~d`c!]OJΙ䪘7zg[~Ӟo7{^ΨZr=ľ#?ñP᷏2)zj~p XBz?X6965076;easTgI>SO>y Lק,_}P{c+Ѻ(lbb1MUawj;Wwgө) k|zfȟyKT?>kF6벿=oZQL)6އ_3OSv7 ךpwu$dY(wT~*^ߊ]z=gS{U1 LJϪZo}s}bȪ(oҕOSj%9#iWvZ=apV;^F=GnO&x{&kŻ]O Z2j+i|>0׹?E,hǟiݑ=3mt/]-IiemǢϬ+ ԜUnwv{vqlgA)ɩzѯ~-<玮= ZS {կgGWFa"?z/SߞgC~|Ok|<Ώv$?YOfBOfGwgZ2?n;ЁE,FIgnJ8>Us'Wo1 {hf2 Kw9`޳6j.kn$}ȜHD쭋йWs>>'yY+q @Q3<jwԙQ^c<)qU{g% YQYqsk]1ܟ57薍gäҤUUpO㊜<1Y_),)%bԞ5?;<*?8b];2\?6?9g~ss?F@Kk%1:*j2 t)Nq<[ߟżs!S~q :5 sGc#zƽNc<vA7y~98 [Ts56M!-:ϱƹٵ {4>ˬ\21jR?u~gL9cK!unc.lr Qb|lNtϭժu<;e}A3$£t?yP7ޤ_7@fw\f1[Ku}88fc8y}kne6N򫺡{Ϟlf\-=QE?49Nr$[g㵰w,q3)*Q]Vځmؿbn}OckXyrlz=q!z1*B/բU(]9:њGlM?]|Nqm|aMt-Q= ´>#>c3~?KM/kO^K_ΡO4u(]8.jqKkV~bT_zzԯprzZ<Qg]uc{>^M)y"66E}m{+Q=p{τ31iܹ=U>?x^C߁MS_8۷6Y?9OկeʿqNMҕ~<=Zs/Ft:NS ,ث5|]daԼ/E-m(?pn36y~ajaL47Gզ/Y<赘XC ? 䨔W~_OڟJOǨ~ oq_MCׯr kf-#c}k{ɉ Y`{w_u㒮7s97yk 3 Q{/מ;>盛<2^_g.?|^9%[ lY<w6 XC{q.S^gl> >QMlؤ+㶤5um˾\T㘛~[-ig/oMs6yzt~W%ܛrBJ~ qQin9's- ;1sO|g%}.unIZ!g±|ϵdj5;{Rf=yFt9KߑGK}n?}{3m?v\},=G; FNFhߥW^ YF q-|Gu{.=?~SgUW%6}Fg}ڿ oC{U:2*w=i/Ųw%<7'$oH+QxF+mKs~/nvx{9c[#ス<ϭa)}ٯ wz}sӯ^(ьW/ց?y6;{п.u+>e}Qչ:xI3C}NMOY~}#F^7sb=?Oa.J@mأ;7^UgY¤SN/C~h];_Ƕ5׶9jnuQ^]Mjк1J-E}Te].zx~:/FCŊrR~)gtn@Th`gsFs|qQZqhzOn'>'~yD둿s>g>Kȳ\݆3izsP>s$M䄓]47~=!?)#GkMmy뉊UynX>.ٍggI1#w+̇;+גLF\6}Ny^?^W?ksӿ;ֆ@qe527|F+j֐{1-Tpn==at)iAx-in w ęߗ ]g׬WV#!Q2!'/Fkc__s<=wcoZ=1EMܟω1M (Yy8i%}{P*'6Tjyc;+~ 9\,ʓK/6?ܭQu.?)K~9^g^MQkR(pz%xCּ/,#ajw9gWf^WR Wt˛_˻$Q}Kҟ/$ώ];:x.$~~}dqmTL84}PT򋰹|u{=,.<^}MTZ_MGtUQ;_۳5?^x ]9ߥ(%?g#}|Vsc8ګx|]grd_}fꕸ)J]ށ>˓{glنm=g5|rU@5{ϕNAyDl5 vE.C _uI]x!+MQzt)߯xynz. 9&&}6_s/l+QxKIl_C)<ù_{ߙ1)6*9}t[zr_'~9ãlaQp^hQ*#Ir..8?쾐_'Guy?p U}(@kv JUQ;g[5H5s}09jK~oiF~mWmg^pSOsa]>C|Δp6']Oi˺{r8F{_ C5 g|[/ogn}Z}4OoE{ ӈϸ47ߓ4;Eq_ZmϹ}#/eanI_ͩ==f~;|jn?D5s{W\k6]ϞMeQ{8x:1~867~B|Z(l͞poxS_0=vPУL3sFd8oPnf64YV^Y@/kQ{GUZUYhEг!gokJCf$^BߞGNz/?'Fa<ֳ[c͘~Ͱ\|ViQzp1*_k{-ʝ9uQ^|՜1KvUY{u!ȁl) 3Qy,]C$S1Κ/Fd~> ;o1*l%!1??37^?U918]>DC_tnYsHsWoBRlVqнu~N{s\+YDQ1jC;gcK_z|0[\T6az4_SW>?ᇜ~3k΍sӿ7eQD9_}/F5aicO^zx{sO/x*Q/jS!/cșhOh=ngDk^ߧ%` }Ε\mk jVrO;\`~0+\~Q<(;ܮ^3C=07DA>u.wս굳?5ȹ\I(fT y9z{/t ӗܾ׉C͚{~a#<7GcC֜.z̩|gއopUhѠs9A,{Y0SZ})|ZX䬄V4+V~yq<ۣpV)p-.8;YA~{տ|ϯɷF͙Ey~7#KysPhI/jCs-A,E2yM<ջPSs/3hvlLν_҆ʞ7и,8f|g]=mo-Έ2s%dG/E_OՉcs()<<};?>A=Ӫ{O|_C|ԜktJȲcx/ 1ك~:N(\5Ն?ӫ3zhMԼlR͎T꧞5=%l~λJGކح==W?<7XTI UWω…4{~8oy^S_͹c9mseTnenfoܓjB.#>95<7kM;;{lRL+{~GwO1sӯ֨GhCǠ? U>\y!kMo3Qpn;(GЂدDռ=q Csn]{ܤ!+n?*nN_knO/<8CCg^ k #'}2cWpvjT}~:gQ=[|=}*'`\-3'saM{0G}w1ē?&jϸб5?8^s\vk~y?C>iCq~$P;gx;ڰf}SԼ e=s_ùT@[Ь/m=]=z <KQ1”zzb7IpsM)ՋOPn6w717MxG3h[|wkT_f4G/}57%٠z.G#z&hTAݿ< 톤Y=?]/h7{߽7@#qyy=7IJ 셥=SMowC>p]'=O׋IWkGX1\pk޿ǟ i令ShQgУ~9sr;'tC9 R//17GDaUSϥ{oi?6{͐x>w_r,#0~fd̻_zvTg=ž^>*.ݩLO[M?i1uQF8Wa@0шMQy^;۫rT>Ev*-{Oy.OM9mvE)kbW~^UՌ,s [!1WGϳ^=pNuRqeL?7EsQp/ݣ}iǜ{>5Qm> Jt܆nnDs1׹bT_߉,74ctӱc:+ i_cC.xCyOBI'~C7V2us}/3[ꑟ|pT '3ԁ~3\A'ϋvbal@Pk82?˽hD ~5򭞄z}NVղ{xq!DkTPoj]x<.‹~OyRʼnb{[Ȩ޲W\rтL|4܋vyMxw\ck~ZMTܽ.:Qcon}OGbx~O{F+ꁿ ^ǣp,O.QTsӿ>*o1j_Oޯ^5pquW?z/}V>ƵSl37Q!':'@}{:'ekΌ{-eЮ)~W?$j6I1T_rqwR?YT\1r޹m9ߍ痕cT'=mQ)V~j+u# _yd-yC_|H]'`>:Џ R?1<[`Gmh{x~M>k,¡5%dw'|oٻ^>?8t3^-z4{n5wG:ӕϨo:DK{dt1'^@ЬoȪAoLv== c+^ٯZks\gv1_W\ҨB\+9NH{%wW*#;5辐q7Dz?B{1yZY1)={FpDzw|7tU:W8=Ew9TQEqkzΏ8=g層{†> |wڨ}%='5w/&U{oK65.!\V?G$oFonq;. y/cxgq;'R #/?}$?3<)%^XιI|b'6m;x.ο۲z}5~WSaz돚sWrV~cQ֙)|Ex93?#V>>?:˪i%O{QT J=W`E]1̍C S9_њS>Y5yYEjM:(}}WӃй-g*ڰq>W4r{O<me9)}+rMQQxt\cdž/sT>cѯ >w?k>+=ߺVʞ~σ_LM>?9?h Sm?;[=~ B K؆t:==Nq-1]f5?N-egz UŁmKWzO<{L3z,c{ٯuoar/NQu_e;YPTA-y{SZ Uׁ~ʼn1O|Hf8S{!.OМ2bxr=AO K ^ȥ7_;ӊgC}!*nTn?,oMz߬%EΑg!=WmB1Տ}Z+?]>vw SSC/M>7+pA;%߅s~92;kb _?s=,F+tM$nS|g}5uJ|}j08=vC~M:{ʛ#g_QZpML>{s_gW]ѥfm {/>A:?j';.?{\V|.]6s}T>xnBskc=q>ڟ>I']d͏aNߎG+ϴ`KԬQ5Cxx'P՛l!Q;y}^C}%zWq|^ܦ9boFQs8ۜu[l?ϥ} R}|nOK^|,כtF9ڳ  N>Ũ\sc>7CQ~d/_MiX?+},&U>6,ȏ~s K6s.,Ť=|Bsxbaz=yA^L}Ԛ-~FǟN2μ6BօK&Us.F>MU~vy.QtV<,?Z=W|]{"@[%/p_COQ]QAfͅ'3}Ũ :g-Eg7Ex={ބV=K k)klUSA/? Կ#v{6&ꇑnM 9~ܿ?ek<䑳@]r|HøK5SiyVtL.8?v_pYL0, 3\XmV}A=r=?_qY|ޥJRߟކ=Zn{?KIv3=Qxu:u%#~ ҬCK!U+T|܊γ״y5W.FdzM?G93>9913sS_ƖϪkxfO{'b:NZ?,]kc73By{b߫y{;.•սowljsc:YUqW翐q1F hK5?(sVyXCۥ^W@Gzyڻ玧g_^s47׵gYyGؚi=GOk U^hC?5OޖŅpߺao/3g:\fU=/-=7o{;z+~3RޱA"㺹|jd )/C3^{ϧ_Ou5{ z?wGfmI5~.N^{ypm1 pHq{߯n8תGD|:^͸'ktMԬp8׎x++j_b̞79n`8C%:FޕK+|>Guҧ#g?:VR}הkCX3(ގr,=|vI_ún_5'j;Ũ<0 ]c\,v?dn,uE<s9LrW8kG7qwj?q6c_q|TL;;T,-B=OQMQu uW:uܗK?kۉ 峩?5F'8[_8Nl7ׯ{/Dq Bs+> | H=< J1J(_w^?\ n63 ωz%?gU{,y]4_sȩL!Q%=z@ln_=OGO-G.s/>?9wxݱLxes=pyJA<YiczDxoC<$bޣskst~5Qv}ntkTߋcΫF{-CvU_Gp,v#u %vkk}A=o\K1?zFzL:}Tޣ =߱A#.sFfg+\o7V=>C><7˩%\j=8zw}?s/ nkXK VlVu};srx|nS^Rnwas5%WqQzOq E/?9F^ozsm^SDjF۷{0A8ᏝýƞO=#P)Esӿ&e}܁|cY]~fv|nտ٪.|%y ]p_kD:yWNROws9 Uwm6?[|x/r?gwE9>C}DTNgߤ{П Rv4:o$ڰ{nDgd) W6tS'ۧ~A<^rK\yz`n Mt7!NښXyQOv̱(f 3P!<a\A2ka42ܯJU:M>P!sًQq J;׽wn}6SV>Wn{9%7nn7Gܐײݷ>>Q=m_:(LO/cG'۾秧ߋg~:kKflC q>Vי>|/|sT>_͹k_z /㸹XzW&l{㗳rS~wtM?3>mX|k+{zZy5 _PFkS󣺏r_s͞;u2E義~j> xV .GF_:$9(vE3h>ϻ>u^Y3컷7kϩ/ys<dz[y]y]x1s]n|řg|~͕q֪W"T{y)ɯWEal@oKB;.}oڨfZNܧpzOS|Տ {|L=-s/ +|/F\NE_( e$+q~V\E6j~A:wɵ{p.֒lsJUֵQ9]ټ~ݹGls@q-tܦrl17Y#N3Gp:7kGb,㢰\8~;z_uR\s汤0_CWبr/ZEx]F jm~f}T1*O>ʟ󾚹wL^Q{|ϵﵿ@ڍfx\F;u͉oa_z=:xσ_ʕ'uOΖ5}<uQ5tMϤtσup(ٻM?n QhϠׄ_X(ЁfwI='_TWЖ݊!{/ cwhUb6K9יִ;%Lx\yHlϐ MX q?^WAM3)'%wD6\f\E_;űF͐*~ O@?tԆ}&qWuyŀ@1m|N255?_9US}qtMұfLuNqb }6j@ 0^{T䇔}guyֳm ٳQb֛bZl+ch`;[b`scb``[ؿ1[ᣞp-/}wͿNW>CY31/~y^h~fNcOv3=S'bؿYv#vOWy=rXɺ}Ogka1/Qo?9ACBzŨJ;Fm=OY;<v:ybpNg~'T̼< [ݿuVL_M์-Ol>ֿ.[̟'V Gr|/[|$brO l3=N-IemC/| e}[|sgbt_gz.;0ؕ}yzwMoן{ 3?ŸWefz?0[%\11k=ž"fns}@ܧ~6F^Ѕ-#K;Zs=+gدRmU=gcpIo^F{gbpHm.{p~.?~ſgh7au mߑvǹ W}e̽ p'=kuuoyEl-FϟzNXl]nʶg/m gϋVknbA|ҙu9L ,`GS V<:ޑD^ݏȿϷ{0=#糱0c+3-)FO eSSAh |+߭@Sg؂{vG>{9|^?b`%WKcLJo^=ɴOг1tPzn糤ms/-=}=[?>E>3}4ROc˃o} t:~gSq_at%^?ƜWUvvpNu=93.n,a3K[=؂C̽3̺;co}7Fx}%?h#XZAojo Mo=i=^n5]/7d0u˼|!b;Fp knS'|v>3?qC]ĽNsY> m='^YkІ׉6ߝO2?W3ZwXw m"zpЛ︥yȖ7\UmmN~'gy[ZR">f=ko=fj}~ͼKmr?\@lA+ߝ5O2o&{{v*ƽc#F*}I5t }g|,y;WY˂5f-^70OZ(oXʵ.z|=s,,/s法Y-ߏfܗ}6._z&f\=gB`c`p<~a?mS1zz'F½x^7bgch5 ܛ׽socd5'1Lj?uy&{^=y.]wڏc??nc߉Y_}'f³n1WlY#c#p2OCk"m97!F>yiyX-f~wly|/ܧoӷn*}a߳~g?~<> .a=u ۼ~3o1ƚnzc8b^͕mqqt'&P] ݤmFg\3g_3,vﵷf`_b ob`"h#\ߟܞ"m'y߉v. _ew&:g½;N4뷘{] Y.֟>ܚ |-gi4}oKV z?7xmߧi!yNϾ.g>_9BcMgx<9# Wb?/u-鐱tWxi;2{v9V^+a_y~^S1g/RncXtz3S{32?s7njbhgŘI?`B| v 矹ynwÝ羀1}nSqp0;b^8E/wK ;)snEz={Ҧp ^1}Emq~.}< \ϧc$(.ʖKi[NuNs^9Rs9Ru*^w|-U^Q\AoJ_J}v ~U~6ocJ0l \tsWFM[AstWwG1x&l?xiӿc_p_?8-\1(C'<pyMK m^+˳3I|#wu NMk-Ox]ڬGfΘ侰??i{91Ozo95mC>{٬Xq< j&3QSx}ߌzޖs 1g\еyS1f"4Qƹvgk#q:Fω988t!֒u_ce񉾟ghuNg)uow/~(r[.{О^38pO.oat}:fFW17\-4sm*ǘAޢJg`ǜzo1=G(F BDڶ@|`-0|;cw#wZ ֟kwݧ=#B~u8;s'<958)yrڌq^O]M9$/p^`1ە,a ,Zyg74Cݓk.V1ӱ<׹ƛ|:|/ƥ]?``i3O18>P4ʈ[?y$~4pI|ϓz'b{713x/߷Eb6kkzYc;Ŷ|&Q42 :}r[|hS_y.= sx?c̛.]tOo`D?1ȏ)Җ;ObٞkN{ȸ /^^?7KkkVP;0yآŚ]|/Ǯ8zϜ\ۥuG~}e-kX%9B9 gܴߵԳ137矟,h=6zDSOHtkwNqGy/\9#&lcSosO8g;j_C~61߭;ݘA\+܍ '7~H^x1T~=ﰥ~ ?t__b<_UYcg=?uz^yX?qhx9;mUnۯ7vd-C wcqp䙘B=`acO|࿉у}L'器_)5ִ9gzhgoyV= OO[ra1ϳyEs[O|et3z~=l5pu{5p]W2fŸm%Hw{~NW3n|ȏb?}ѹFt4 o_{3M۶=> ֟8Ïb_3o`uΝ{*Ll 9Ϳ8x<?]Yy}˞k<~yry>/ߏu*y8?%^^Ua mzBg׾ߓz(~̛w[gOŨ2ߝU n%}=v3b^o?4v_oO^ue=k3b^1r: ~;שOƝ7sUEq:_3c7}͹~?{GYz:nX<ɝfhWsoϩ5<37' Ex[nl=~|7ynu=<oi|?o!;~A׏i @UW`a,6״C?h]|h ] 2_mlaI?W}E 9ݿΥ^ދq'?i7{g>}O0_b]wc lg}Dy+9纭o~Tޗ{@[1>{t{__ogg}5//Ws}|?5݅޾ˑ6\#WO9W}BOZ:'~~6u[7ӟ秦8a}Skwࣻ)TF?}c}mgt?mzh7s'{~|SPޙ>nnp7.F=hObp2JF%;3} x5ӽmj1+҆_<~|9ȽvO|?M6qhޤ߽ Z\+|ϜSZ{1+b_h4n@8}9)7eÏ`c} |/76ff[;#EGOee#s[~6/^oqxBsQv1'ig7U9}88_G1bK1;ƈw:N\0#˘[ruzx/>گ ?ys_|cnj&>nWi;r\g}pމ!_~s[)3lc-F]6/i[t6f~xo _qFN?\]w^-Njmm?wg7sDY(-6/wܟ=͵=9g7cZKm{ou>e-\e#1~b5Orvؔe?C:S׷c>f_wY 3'}w0bxNyk~ns>C`tcbՑ=}{}rMC|m3:jw:%wa[k3}ϵs?<<ϔm3= F#qv~s?3In: ǺOmĎ#Ɖ9?؛||'=/fcwιScF{=NKg8X_3ͽz+ȱߏy6wN3&C ytsӮ͗S9w^_cln,71׶gÿ `QF@ t^#b~i _l?]zm<';GqML?v|{m5aߨw7Vm2}g ɘB>}Oڜy > _}I1XO?=s55.Vx7/697sѭ 2f~s?^<[ByK2Uc\ {_I]_Tuq|~1b6[>˔'qUs;֔psZD͓miJ{0X]ؚ|85w3tTw6~CK仗OΟ+~ms2j?amNގ+3'ʿ'9D_yڶ3ϯӼ/׃'GF{Aou<I󑾶)ی>W[O+r׹烈YSr$k>cWŜ C*O^6O*_dF9ϲɬ=f Z}t}NyK ?|ؿe@Yu|U+^o+ LXs_c.>ϵQ?k1k( ȯ:^9wW0)O*_=sS̳p 6A'1vK9/AN ?qe__[?[omooߺ7vR{C151b?uӟw:7ϖ{^>9~$Κk=ϋaƓc_?:so0k|_p?:+goŌn#h܀͹;O~ ?n7;1;3WKn@<XƓdow{r~}f9߹w?S>y.q< ߹ ld;XVX_\{\c?Q7 n?fywg5~ tWu+COk9Z%vZڇb<"qyCqy^'e V0xgl3=eۿϋϯylqOY_XÅg?x}F< Z >1׃5_ضm~$`w#d7'{3)s_wdw\珘m<Z#ȑտΥ/Y_m/w~KYw=h;m>>#%?=#m-ynK13\Ysmoߌ=q͵P7`wOϹLo[0CueiWl1aO>9/ vEp}?.{~3:/ߙvOo{ZkR9#fX)I`~^+m?xg?կY¼$o+mvd.k@y׀]L|7onk< Po+OMK#z~ssw1e:9׻ѿߝCy|>ވ9 o~=Z6s?Lst/1[w_gCʵ-_s/SyG@j]msIj5"GˁOg*|߬fn_%Ogր^s?5cҗۜ6\sQ#^OOYxskRװ6ce-?ȱ̳oyN띉ث ?2~o'Kjz[W~~Oky~ԿMm<!Ǿoa?O͗-YϳGnkl?O8OG޶nWYeq*m1Θ36*w6njs?|_2vSO1vI(>жMl]}}詢kdSs|3W'8f;3q9f|]Vr# 8gƟke6y9 krRۜ d%5>{O0^~Y_~Px>^mW]y/nwgӾۿ#9kf^k3 /Y;l=G<a#s2{zIzmk￱Gmy@ҼGZ?~)=gͬcG%U9+zٱuN?]?ڷPf=u^ =s9kqd|c;)h3]mab͹!bO.֖xufgZc;g,c{Wh 6:3Uo<3xÒ^0yFt][L]fަgjWca=M6ϋ})FQ?='^}덥8cowxqo?j Lܹmcޅn{JrzL,fG[\@KxpCYϟ.}qڬ` wy795۾ۿ =eOXU_taxU ?pTK=/~a·14^OzIٟ?clʚ^1mcaz7+c_hy&op#s\0~gm{~Ǽ)|fSc y W';f.g93eWw\dVx }?o3Gl_-m1d=e{<>yb)/1sNͶ9Fk.~9c5xAN]f3uNo]6橚'3ށ}| [6zi䅵'4u4Yq{sUγG=>qOgܚ2],Ә)0ʘk5=߇v+g{>o?Wpsk/~?Vمמ<\Ntasi{&imߵ|xOؿ?hsd>m&1:x~˜i_·}{ǮK\f'`>b~] w?{6kzma~g+f*_ȵݎ_{}ϋGm_"}|뱭Ymd_e?ߏ a׹1Ipa[F8p8OW{/@sCsS_~?ʹY7׵Uw붖{b^ny_ηƼTu-_g3t<ϑ/kWbp{8cd׿獱8O]ҋ$'L;^`u52c}zA_af1|s1ت;{~pȱo,16k}9XŸ\fm jG3z>6_m_5?7~n_m^zPz=ƙs_sA?0oJ|{kL;{aF6kU|Mϸwocr!~g<ϯmږ8pSzMU;S0~kxzWf}9f2_cwY 87 )W'/o]k;W0hL~'4gg] 8>}!Wy/WNt2/Zynr/'8_2bz]ߓI?/5ѵ^V_㯮͟.fkΏ_y}Vc.|~_9|w%D?}~[o>/G:mWiG\ZKq?;^/1\~uic[/gB^_̿1] {ڜ/y^Ib1sP=3tѵjbwUZ&sxud#W+|ޜVygcIgGoq׹zjދ1se=`|oc+1]yힳp/bƯ9aV<<~h5`$?\Ō9~s-Y'^/l>vrup c՟0YUs[.\f3i2!}xyn>y13Ducg'[YU5(W,;^,$Wp=e@?с'6bԤj|~+~HrccUZy/o3yz,P[?8F0˘} =Xo3?Ubysf}9ޖWro%a\7ށV=m*}scwicĀ:i</jmGۺ~g{{~vs~ώ}&Gk3'js>[W{u0_3[0N|9c:ߜC1k:b>ԪpC6x9WaD.ŌW ɽIֆ?IOt{y< wR1iZ3z&Zv?_5"^qѲƹs\ hz+#Sk72:lmkQh1?Z-_cBb$w3uؖG[jfM?,]`uw`ʇsoڳiy&s1_?qucDwUo7?5)cbpys'<Gꊟm~_Η+8f7}]?wPj%mc>/;qb>Ǘb֮7?uc~ߝ(ǰǝzvRp2F}GoLg|'ȩs i3۩Ké-46?^oori`}ٿ1:?z?mo53}~.֟Yr྆sl?״ _KV6υ_D8twY#Oۏ΍w1;Ɠ?υoN/r3߫E>qZk7pSf4~co/8;w;mƥ'ȝ+`i~X:{kNf`~z./k{U?Cr|y_ߝ;VgsA'%l^iY6n |~pK?TĶN\z?D>f<|5.FO͟7=GoOOo~^__zD? 05akiX=,ϫz^9R@=0:쓘{tn_ߍq9yNj w>N\ #?ȡ=zjsz~F9֯qŞ9٩՘ߴ*>#Ʋ\'һN68xVkMO6|w1άu;]/Oxm}x>6/<^yN,_Gk= 7eKXagjlp_}q9Wk w>^Wc]D*{活gmŚZ~u?tke \!@B0c7  T :W4^akl]|`_~Q/cmϩDzzNjM^{9)5xwŃ=T_[/¾ Ws§ffz6Ak|GYxg?󍫘oo<_w8V~u9V/濽C?XZ-cb;k׸3~73ܱ;fZ~煳I>i7ϔgVݒ~H~Ϛ{l{k1Ő2H>L^\lbUgS~^6/?#;1>Yo٧ zeؿJcY/9z׃'m|6ܿpl_K܏vkcKIo?i^slKi _mӫ8Ǝ_y˵-_a?_#+Kno+{`moUǚ<?9Jc# Nsx Fpq^gRr?-5nf'_s;PT3O_=Дz/޲?Ɠ1Oy7r}_.Fv_ccyvS?~xÊ+->TYx$O3yտ2W-/g =7zF[|/'uwc?osçkL=mI731).2_oXO YQXW#m<ߘg|^ƫs79 )jnGsj_xhnX?|N*?y!>3dbk۞>ܺ~>痱=^a/r_4 1qxϟz~88< z\8@o䊎ǹVuuzop6vfs=Sl;/UYtgkOo)Qy +?<u+wO % ?Wۏ?K5 q>5ΡooBcUNUKZ^枸ϭ>_1rM۞s/i ֯^-?Ɍa[ksK6Fe+އcp?tLH?w>?Rֿ6?v4UxVKk LZ ;wj}!w>cg0^s ]#dN-gcw\zns/F`2:p*6F:߽?CyA^O焞q|zMb =om_IJ^J_gbp~߼ wJÜwƩ|G?1^e}Z`{4ͬ9g:Qc׀!z5hoƲ>?w<zO'j_e'7eNJ s܋.Lg"\'z%f&AS%&y:yϪ4 ymj=>_[>wRWSbl]?^sOǵ٫V.ffv^"bsd`?yƫv}_`ϻ9܄}܃gcw7ηyh~=?hcNk"ԏ$u~WXOۿm;>_cS.z~.3į]9 o{s=Yx>I?>/:D/36=zSyG-齸_@|]]2랂+1Ϊ}'p8Yښl+j[//uç10q^7D)F8uu=Kk7}0?kz8q]Rz9Y0_OIck|`WNy+IosSkywEyiuOwY?|Ws{߯/["o?mcA|ƅܗ͟;6=T|w=SSsߴg\bϵWY1?cտoLƅxnz ׏^Cy=eǚC4$måckϝ/U[Nwߙ Tgm1x לgƠ=}!w. A/3G[MgNe\7=KLs.Ώ}7=ʚϓkG۸{H+iisz?ُ|ypTk3'smUU1ns`pLƫ]UϚ~ߖ;\;FKWgU/u1 7P;6GCKUMϛ}#q 3Ș*ٯ5=k\TR w97sq0<#'X:1þ^1֙Jیs{d߭?ͷ4󹫔se-W? ϣc/v1p~76űoCq>3o5T^5q'V/y%8.x=?eoNS׭}~wu$z0Zi`#u& r#8? ??3b; bvq:]+mT)kך~H ^z׭?w|=}ol:wk6aƞ/<+d.2f)37uw=;m+,;63b[-so@2'穫z)쎝{$GsYcc䙕Fi kmϱڜ:'˞PYsR+z~΃3jv6Ϟ{\2kk=7\S= 8+9k.>{s֞P>wڈ˹n![x8vӼ8cq6߷3?olO|c6kogNeg?8цV7y_}:e?6o׷^]kPd?O>qfΞ<}ϻy?Xx_q̞?fj˟]mr^6~rȵ!%qc?q;fn+cvo1ٱ.f3{⽲wlr^?lpIoߙ{1 \FQ\?bwc9Y>p*WzJ3O8euYc >\lb*T%cZ0?۶*$7swok̽Ϝ5>~;7bߤVkqd<?;wG}qGZfC|՘s9sQmr52ycͱþ1?2>"cc`Z/8=tg}ңR+_A=) ]f v6Nov|zV=i?=׃@/u͕r6k=g_UG1|.|̕^/%ڌ3zԐ~97su\ٿZkgbc 9?9Vۼc_?|%ճ1{][/RP3os7ANgowg5`sjh1׎3q~1׶~o\||'[sϿ͌Э`ݽ!ߟBN Y5Ǯakc3:=ߟuM\ת;c/dMbpb I /ߚx_f1yb5m|̹z|!:W; η=Z(g%=Yim>S믮v߿:?ݿE+n1U4=U}~ߏ?CͳYso.̩Ƚ6عc5ϚODZ[Ϯ8/8-Ω94f'mt]|@|~U5>Ϛ;lu#n5/zđ}+?9jz#r$b*3Uهڌ5wrOнyyd/TN.O`~y%gXf=kx^~ wh zc_ #}qu8qB/J3oL CO}`qs?a?ad/!ε?6n|Ƹ .MٷX73 H~׮]?mӬ Wx:?-4׫pxߜb`OX?89!u~k>׳/xg+|Tƫ%p]/5d<k^}1Ug~?_U9ς{CbֿZ|Qq}8?;y_m^|[%6xCB]kkCv1w/t}?:޵/<ݙng?qj C7p: ],jlŸ1#ߟ7~1/cskt8}$Dkih>Ƭho涟K<=?Cz\#Ͽ;n<^slR{7wU* um?]OYZƻlWΗݏvI~[skݙy.z)jwyۏϞZl?öj_^a`9WyvE^rȋ;3CO\9߫㽵׼:#orqE`Uw=oe!k?/_9zZKkeC5ǣ] Wvnq&rƞ8Ucwد=Zc?;k㍞y&F}Rm۞>F5ݚq5c2eq>?%!ڹ90kKװUsGQc_j>TX5Ok=)kïs:'wtb^.r֨mo33eCYT㟞 uԷSW_5:hUs.vv^63??^x3o790IV]GΤ#eۯ6ƟCq黺pqmq|>Fqn# LE_mRխ+W%wy秌e Zy]yw5'?\ssjZgNym/O)1nk8vN旭?o^{~Fm|_ěc;smwk_wYq{xɎ֓dm3". KFA!Cllf BBdeɇ6[%Jdb6odYm W}-u9W}~uԭk'}y~Ckl\ׯ?F6埩h3+=*[#yZbksOp߷tՏVzO4k?i{MM7_ɏ6ka??ͣyXƟS~^گv~8_wφ2X?s_3kܜ[Ϸ}dlN}O3,?gks<;~/6ٮ6wsig-Ze״3[}ׯ?#|'h֞W~1 ytVY~5zK?6l~?~]ǭ6f?cž~Z42=,>1ͨ͡7l)_z1t^ϿqAV8+_.{~6󇷺]iI?s^]GlhvMlߏ׏g[|O˷bHcZ}{e[smm'׻˯;޷6}Fy?~ ?f|-Oug}l~ƍvO^2˺;[hy_~kmGk}6ϭڿOWz?o+9~? 珿Gowϟј]3|7~3=}vJgi]|]OO{տj6>݌Z5?/ԵξZ~@ j_kbM?A}kgv=֟eg3?kjk76lIf6bg,~=g2?۷͏o[Ǚ~dO<~Wu~_QٌP~1Vnyiy?ͯ9wZ^O럵dz}nv9ڎ~1_~=a#l׏&ڿk 6~O?#?s'9[+tVׯ?OXŮir19fRVꗮ͕Ǯogۿog?kk[_l<~}FműǾ_ǟsxg69?p_iѺ0mki25 Z_+~戭m~?f_|sVp}ggZů!?O2?/t{nk1?Oޯ'Lc`o>z1|8ߟ?__Gz96os6~}#|ְs>_~D|ifg4˯C3T~?iLz'k5yif{|xҟkIڵ-'kzx?iדitVK/]aYsemkc/{戵Yi>A[W ؞/u|wƏ!ܯg2OcWV׈i??.mj3[^Kߟi~:ޯ}w/Vw͟~ЯׯR;'}_k[`:~k+;ڴlw~~P{ i|C{zρ{?} &Vֳ3Lk6A~ϟY1+AW4~FQmv 8=+ǾO=z`.j90&ؑF5~ڌ_~q]﫿y[g7N=C_owϿ~w_V;ܛkZfu2Yh{qߟqd}hM=_NJ~Ÿ{X?o8~ g_^oKK[ׁtݿIȇ}vg|7_gcr]@?;m_s}zc-~T{M6Lgxkls5y3칟֦xgWi|9)n߾m_lse~y+Ǵ~4rku=ZmFcjlgW?[f^~?um?¯~ݾ~R{ݿnm{}~]Z[?f}km>ŷ?g@6GeMkF=&?{|JAi|c㖓|]s3ZK~_'^ls^o?`mz]ؘ?۹nocPY+?yz*Fr\פzᆵ{}{^Gɏ:~\dsBv~ׯi?Fߟ׊tgm=5wk?U{6+}a{?[[66'6ӱՏ~j}[hs ~ƯG=V5_;1cmCoW?7ڌ#~O7^g3|DZq_ >ӯ2?NchjZN:/ zmAFli {zULs~m{kQ}#i1燴szy=zOKkx|X=VkckK;g?ʯ=oз?mLҼ,t'*/|>p1YNfe}o{}KJ7=u_^}z(nvoq?^?)sl%| c%?=f{Is˧[Jwwc%X[^tӂ{=~>v]n/_v9]|֧뛛]cw>ь;G[?[8گoW|'J}ڌЌ{)q>S7 q->T}}].hgwGluhƯ;]&%wnmFcMw}tW3Ϻןpڷ>ͿV_ᯡ]cO{OlFc;񕿦|])~Y;n|ӌV󾦿nh~ ZhuLүmW$ܻƓwt}?^gk_ׯ6wѧ]^z1~뗟ﰱ䟷~3ߞ~~r$>o؏fnqҕW4c6F\}y:of]8WD?9.qi<'|&z_տ~w`yF}y[vi{Ou׸'>٘?>gq~6iɏ=[m^C|3|}їW}y߷zڮS噻zk46WV)\mQZZk͏|7?/c1[O ?_~lǿ՟?o9Cн'QMշ>dz}yUb묶g3<1̾Nz[GѾlsۿsdWyv^o7a]o_e^ zM;{]Z#ϷzCͨA[@^S{Sϋ~=ڳ?ew_ʯ5c._Wg5On}{zHz5N8:ߍZ75Z?ߞ#/?[?J] {~[vfr[d9hCzgyq_v=j3u峭æUohמ7ͽ֥&Wvmќ`ym|}Ť߇e}}_~o<Z]7_՟OftQjc{7_ѵCu_u?Lց{hNpV8G}V3NWZkc@f_]G~?&z/3q&__uK;kﯖ~i3Z˟_5>Y=`0f?mFs5#Z6kco޷oߥKxٞZoc}Yo=m70~߹oli}u{Ok-}}} ?'y2}굮V{{}{~u 5诧q~}lm^w_u̞kz{өmI!mn}[e|???ii~ž55 {^hZVߏV]Vjj/:%/?܌ƒ]?8z3Oڭ>=nnjӌ;ZiO{C~j k,A?J7ݵ#wtc>c^Nk&>z޵>w7okݳ?TƷz/w4ٵo?H:ƾ]Mz~=]7ܿ]*4{na[U]_v:o箦^ u ~>|ЄuP~0uy>6gUgĵvqu6}~`}sM9oQy}.~Nu]N^i=Vxo1qo_o755~_zOSěd] A-7)v|yE8'x!i{Z}|Cě;|LI6ށ34V>y}J~5Oy_-zMʿ>_Ǥ[ ݿ!O[L^g_,Z}oR2>&x'D#,$ ^]&Scw`}%,/b>^>&뫏O&]g] MgS9}}o#Mʿ>W/VuMk|;k>^>&뫏NIVCx#G~#G<xm4=&x$ޤK>a~xJ5[o}RCx#޲a*^z3^H։ 2.(Sg.o2zǻHo_-z= >לzמ*/69$Wo?"m-R5|E &{6S&uio^q/es;Suٍ(ѮxPoxo|~դkś*I~ )[Lοmez}LʿV2rzחkԛk!6ڦϗxśxSQ4|׊V>ϲoMy<]m6˿V2'wTi?)Wy͵ E?+>Lοmez}LʿV2ʢw\Y>ϲVǓWf|+ ^39ϗ1)Z+4\Y6^^k~9幉xx&߶2>&_+T+2>?/ůz EwPȿ_}/@=L,?uv^=’YZ?BO; ڏxLWHWb|~kgoXgBxx#G<x#G<x#G<xx4_-iW9 .q:oMʿ[7=3ܕ\Om)?'Qm>f`;jf`{J>s]?Vc σxuśGaǺ<σxuśaǺ<σxuśa~?Fݯuyzm7)o}1[|=g4z~}kϰZ/@xxo(_ǤkǛ&/k'_.~G;g_񞹒9ʿvCěG2>&_;4{RVo|aƻ@v?쌇>79ej}Lʿvi2PS*}%^H[L|[3 >ʗ1)*~o k5?ao댇>79ej}Lʿvi2_ٯn;g_}GkMο|Zo '+y??ٞjs(~xgߴK2-%1>Vl&NkRw m!߽6a=e[{Tt/{{M)-ݲZ}F1MʿRomgG=)Z߸?;lY~nY{϶xa:t%?|3ޤ?)1);p> +, 5Sg\/u]I)37Z}\>bƛ;;>&xCV5Y_S/+lx#E~VV/B1Mʿ˿w?6a]~J~f﯋oGNjGxo|Ǥ[s)cwj.a{e%skݞwśFzx,=e?c>^>bƛ;;>&x@;llC2~Პx_}B/^&NI6|;lkh?x#Gh&??We4? þ*/B\ߔ?r >x#?ޤg}|5i~mN~[xO.C_$|n>[~#G<x#I&)`;ixs!CRLMoOy 3÷l&1I8><I}~5mVs!.}lJI7yLI8ii7N߸&ڔἮ~FaU9Ƈ>6#ޤ<Ǥw l'/Yo rGYtK{swؔxoN#3pFnqM-okޔt]?^>6%ޤI=e~/AoRcRu;`NZy _x} Y^>6%ޤ<Ǥ7W~#G<xվv~[xH5R})峦FSo o_'oWĿM Y-/WG<xQⱿx7x#G<x#^6][{3&3o~S?%xS-[׊I奎;xV]5|ϵߔO7-"۟S?vxx穟^;[~zdO- ^xyoue Eh7? 5˷_/|_MyYǖW/[5鵳[}x#G<o}PA9GL]_?o_|v߯lC}@kU|o_-8ψx;$Yr__-(0 7*bkwM!)|zD_j@X /}vm{סB%|BJv|ٽ3XC^&7ſiNmGo }#(_xb^*/{j,+33J~⧌2e?>'_)/+=9o /拧ϯ5/)kݏ-G7E*_/;Gz^xsP>{\׷?砾x)>@FϖM?zeq;ſ3qU˲{O?y-#8>߳ψ&e_y}{xgRg-r-_}MWF|OǕj;|sNHԐ#G<xo_+Woێx<߀xa|^-[l;⅍y=vC zl툇>6b}/l<Ŷ# ^x>cmGCwS~&3;_lS,71}/>3._Y\0>t <|%o>ooz}LLJ>M,W|֫w_E3㿗1Ή$][MM]P:ָXJfoS>GZ2~Vx}L7>CɏW^fʿ̠%gJP篷ߗ̠t|x59ϻ/A__j{E_}#޴7}/_6+_?\dcr^e}|˄(۽ToZIVKzl(_Ηox ^xg)o5G<7|ϗx;M~~Y{z۽TojIVK-7t-ȴaM_Loj|7m|y,+7x!xvHe_%Mԫ|=u>}*iM[Oo ϗx/7j:j+Me-_u|gW{y|>^#dqAG?_vO=;}P7%b]. xswcҊ77_/3/l6zc-RC#G<x#G<x#G<x#G<x#G<x#G<x#G<x#'9HM<=;M9/&wgȿ3KR~*ϷEwKټYXcg+~&o w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w w ^NJHB=◬r_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?sO?0O/tn;ŏ?R|@?zG珮_şUX{_%߃⇋?-o22G%ƏX?F珞7z?zG珮__?,~=Go1:]F珞7zh^G?zG珮_} )f?zG珮߃!)n!\GᏞJ[e_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?v-~}g5#o6kG ?~=}?_MğhXH?j/Fl~ U~Q?Qnm{=s3PY yw?6H ߭//Cwk_^;Z۪A٨ǨGc_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_t/P|%+qϑ/-Kls''xy}%}Zg3Spy}CR~ߣt~?z_e揞?wkv=^=/2GKR?.3Aԏ=G''A[<$= =GϟEЯ?zG珞?_?iF}t]o>E?zDh OtF_t]6wH?:K=7z=Gϟ^D'~/?:__lb/?:?/?w9~o~mGq~o~mGq~o~mGq~o~mGq~o~mGq~o~?~~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~;~4uz8YS'ć1?:?vQpď g5ѯ7}OY@Vz;Xbiz%e>;lg_3RomiT?F$oG٢׏g5ѯ7_'|5"Vz9R|{]ˎG4u΢]-PGGޞj{$|,/vGG^T}n _oS ׹7}¢k(j_o^EÿfZ_-~~W?FG4)׎z0[~P?G%OK?.MԿ1u&׿6%.~?Ï~?߸?7n?Ï~?߸?7n?Ï~?o~Zm%MN?/~/ĽN6e֯?oLO_fF?k[S?5?/~2?}ki{@?ˬvisO2^kS~Y<õ3e֯gC_fn4V~~~~~~~~~~~~~~~~~~~~~~~~,N?MY?iBg5f;\b%~!)o6ŷ_+Gٞg5f?"?F D~m{GQ V1o6}$t Y Gٴ4O6Y G|k/lRď~ٽ߃__ ֯ƻJ7Jq? wYt>g(qsAzny_Yt>g~rfo>gQ})n_tngG<ϢYjyoL(7 E(S?gpS_݇a_G}E5?տQ,:Eѯ?6ū_տQ,:EѯƋ\DYt>{ ݃ )E(+{ =;Dtߔy(}Ϣ7zN>(NJHB=◬r_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?{>>g<Ǘ7>T^G<#R~V|X=G?!oTg_?z~׻EᏞ?yGYWQwmz{ϾVݪQw=ğ =GU,_?~~Oۭ?z~{^zXr(=G[⏞?ש7\*~;į1Qϑ犟'~/ _t^VZ~w;I~'GoEׯ? ?5eGoEJioX^DaʵiTGoEo3 _?z/~m kį/kk({J5~/ _T3C~uF_[3_FD;;{?0Dˠ߈g~>u~l(g7 _Tj!AQFߍ*}Ĕ}2!~m]?";{3/*CgON,=Gw 巳wt Y .FßMk_3)/ ~f./ }u/,}}SL,(]?/LwCgW[W^(]X84~{3n0~o]];U> w7}Wc73{Z5~_f~_Կq63_2/~_]/c[fR?/?ws ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~khY~R!~ )NFX4^V:?oEӯl7ho?a~>CY/ÿEO߈#,~#ÿIFXF(./#~ ,ylď?>Eyׇ-F_GyYw1;S~ះ&??HG~AK,15g(?)׾;MZ8 Gj]9S^~ះ_k]}o{?E%izĔz?z_/{_>Q?7n_!y'W@~_f~ӮT݇?uͧW}ڵ@~_f~ߵ^:kq~ 2S?%OK?.?/\~_]¿ԿlGq~o~mGq~o~mGq~oU3WM]>~FmV_ ÿm?ÿ}K]2ʔP]_b3P2>j?ˬ_g )^ ?ˬÿm~YF27?/~7 ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kG ~kGٶKcw%~tߋ?7[XZi/lݯ(R=_+GTq(ߋ?7_j?7[WoR~#R?7/o6f{cg[ V1o6_#lԿGh^-?V񷕸7;i(%/?W)/ E3Kx;Yb^>K$Y^UrHƀ_>_|%~/ E(}K!Co(qoKq))E(g¯/Jo>g{c¯5z Yt>߈giߚ,:Eo3 iTF5p>gv^>'<}~oϢZy= iE)=%ߨϢYZ]~WAF}EQ%~{/YG\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?qW=YCA&~L=GO5=G<shy/A)ž&_{?EᏞ?yݑ_N뷫]IqwQk_.zw{5G\GᏞ?yn桟 =G[uV9YfT+~?z_~/\Jků/kk(/?WI~uFFg}SRrߵ/Q}{H{TUͿU^(]X{7K؛q~V]?ڊOb?o?(H Y .Fßnz~տvnvվ/ }1jkpY .Fß>ǧѳ6Y .FßMWյcvvBw u6~7__ğljw16]osnD`0~o][?ڍ 2x_u]{~;ߛXk'73FK?.?/\~_Vuf4h~;/\~_U S?Ï~7~;~;~;~;~;~;~;~;~;~;3_!~%~(ƽN;JFXji)^ ?a{e(7j__VFXFFXZ#,~~7¢]D?#,~ÿEO(NJHB=◬YGŷ.~UGï,z%OK_hԿqGÏ~?߸?7n?Ï~?߸?7n?Ï~?߸?+J̫ůQT_2Vkwj_fjUץx'/~ge֯WJ27z ?ˬ ߸?7n7r?ˮ_?#?/~eFo w w w w w w w w w w w w w w w w w w w w w w w 7a))sj/?ͶO D@~=d{vmj/?v={o|/ blԿGG٨ȏ~Qfɵ^{lr{o Y G}?2ДV1oQ{{Qg5fSj M2/lv׿_ U3WĽI)NG?GbP|.Mq,:E%gIO/g_G}U(g{EQ,:EoO~]y}^g,~,9VJwj(W_ϢY$jLCO1P:>>g,~H>4bG?Yt>vm[ʵ־GYt>_%a7 E(^Do=AϢYj(~;jw_`p ?w7y/4{Q7n~1#⏉P¿\K 2G//]Z2M=G/tR¿{g3NY~2+!~]__G?O^@sS^}̥○57j('?ADSS?o Q,qU3RՒC]¿M^(u(Qk}[\k{R_GoEկ/Xi@o?? վk_^~l(}o:o>ǧQ7(}o2\׿%~LUͿU{icg:!~m]?"?hٙ'+}j2KY .FßMG|o_!~W Y .FßMk]fԿ]?=t^Y .Fßj_Z{o Y .Fß_}?=[ÇL_~k^=fs*Cg5M~oߍ27Qg5b:>/0~oZwhv~, 2~ګozU> w/ϵEבuK~{%OK׿v%OK?.?/\~_Կ1ᯁ3ᯁ3ᯁ3ᯁ3ᯁ3ᯁ3ᯁ3ᯁ3ᯁ3ᯁ3ᯁ{%7ߔ?oEg.BוQ~7¢M)o ÿM:z{cH?aQ{Ey%;?oEo~7¢k!RFXF?#,~K(>&?oEoH(NJHB=◬YO53'(?>wD5t|?z_k>GH8~^Wo~Senk}f>n{XϿ~߸~ះj_j{]O~SenVZ} t~w{k_\|tCM^¿U~v0P__Tz ۠_HvKOE\~_f~Yf5p~ 2YW:~V _ԿqmJ=RG/3?/\~?%OK?]~mGq~o~mGq~o~m^Yb^-~}T_22SqAm}?ˬ+J_%~7j_fe֯Ӿ7x /~/ÿO_f^rO_fF?e֯/QO_fF?}~YͿU?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5l\A ?7w+~w_ ~&kwou&9 blM~A(~= \>V1o63SfSj߻j/?ͶPf?"?ͦcfg}~pY G٬??ͶZ{go ?+gJzoJq? 9\*ߋg,~/53@xu%}ϢY^YbF?.('"~Zg,~:Z|⇋Yt>+J̫S3 w7E(F?AbYϾg,~~FWZt|Fg,~ו JG?RbmߙFQ,:EѯmCOsf>gQ{YA\kw7E(~. =3q&>Q['Eocw_$~KV9/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\}Tb?$H ?w'y; =GVU3Yy[|Y3⫁w~}B&׾⏞?y޽W6/tR¿{Kk`T3G q}?z/~QL{\=(Q[e/9jw1lf_ohٙ'z3g5[5ןEVCgӳSO6 ?hc:fOmhg_ Gb?1y726b?ٸ~7ߘwU~F~7ߛta~;ߛ=NTZDzU:__~_f~]h~{%OK?.?/\~_Կq!ԿGc_?f_?f_?f_?f_?f_?f_?f_?f_?f_?f_F3_!~u78?aQ{̕W__@?aQ}}׊PbGi+Jk܈'o_,~/MחQ~7¢#ÿEh'oEѯ޿|H9(?aQ?#,~}q oEo{0ZFXF?V|Ed⿻ g!~]]y[?/)?K%izk58 G1yO6!AKgٵ^.IG_cg}?G%i{{uL~k'<} ~js#>>z_׳Q?~{k_?z_{V~XMGo 2+!⇕J3)?m&z@~_f~6kɢ_Iyğn:DG/3ݳps 2S?1&71 2S??8eC XGG/3uւFG/3Uj _XԿlGq~o~mGq~o~mGq~o3_!~u7~Y_)~%~m}?ˬ'/~//mo %vm}?ˬ_?mg/~ԸO_fZC~Y*Q@?ˬÿmFe֯[JkySe֯_?q~YͿU?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5a?5lw)E?/~{ Y G>)iψT ?7jf[O4YQg5fjzU-6blԿGG5cM?S_;?Ͷ*~k:3g5f?"?v}7K@~q?"?ͶPfp]_H#g5{%u7Q? Yk-ߋg,~ Q=%~4: E(Е/S$֩⧋(~Rr>gh_H)sVg,~#QwgQ}! 4o}Ϣפxg~}j_^>gqpu1⇤Q=ϢY^Fs(}o>gQ:Ec3PGYt>_hq_kHzO8 E(mQ}F}EQ%~{/YG\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?qy;M_=GRǛ(~;jf[O4Ꮾ[/?z~wO⏞?_߸?]C&/ ïf5p?Z砭=G_|ݏ5Ꮾ__OW\)~7ߔk({S)/ _T7 Q=N?I|GyR}̥○C9QOק!~b:>%_mRi_6&S0#QO ޞQ?7?z/~m|SK|: _T)>4jUVDk(ď?$կGoEկ&D?z/~/Q_F?WkߓS^~l(VnO바 Gߍ*}ooF{Wom(]?Wd}ټǶb?6>VCg=z{;?hu}{ Y .Fß׿yV]?1 ~fg` Y .FßMk/6@]?[߻ϯ*Cgk./ }uWYQg5b'W&w߳ w'~o3Fa?j~mF73O5#? w7_Կq}1/ ~_>P?G%o^wU[cgn?f%u[a! " &ɲF8dY$qg˶-!dIh:Zt794tD*gky}OS:z|stz:[Uk_~O ] ] ] ] ] ] ] ] ] ] ]>\o(~ܟm@0E{_utmPb.Bſ^;)} B.Bſ~/E45iuB.BɿyaM[.BſgN7iZaZ:JᇿP=)~O"T{FЕaè~4mcǴԴtDIKvM2mwGݿgnOwPS6jͦ[M`W~{L `r7n1K;7 ``4w2=\žt>Vo zOAWvuS:6_~1!uнA~?WA~?W߿/} r?T/ٿϷUU|h˦Ϙ>kǿ+vGM>gB3cU<(4/c*z SB?f|1k'I3]X?f~_us]3~~2_a=)4{}fi&-!>V1ԟ&X{~B1k4!>vP>s}ub#O>sC={{?c!ٿ^?sX?U?f.j?f.jU_=>өLV ~_))M+L?cz~ǿ~ǿ?f;t V ~߅?j~n?c?_73=d铋~ޞ]iX*.Bſ9^C0=lPᇿPo~'w*'wF%E;5JᇿPz.BſgaZ.Bſ^;ᇿPz.Bſ~O"T5~Kǿ~Kǿ~Kǿ~Kǿ~Kǿ~Kǿ~Kǿ~Kǿ~Kǿ~Kǿ~Kǿ~Kڿg6n2M3aN!37g-07n6ݚ{*M?9Ur׽{CY{]5Ɣwɴt*=.f{Kd}b{߻~;~ Uo ֟*7w ߦW)ǿv^k9uG~^BM?]~ /դVo_{GݩU~Rfs59n4]So ,}}iBW^i:txTB)T{j)Lk4~= S7 6M^f?TB)Tz|JlcwN S7ծT6}Tb9"~X)2oNΝ)T{r=Eɻ$bM߼W\P~׏iIlPo _4JU7:S_O==KL_^7:SBW^7*M*/*MfXN0h:i Ư_}wݦ?co}m ?c>_|D0?fO;?w1޿(^^?U_Uj1W_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?]4iO>N]5f]ig!>sύozxt¤~zK[ooo?YϿo&;ӵLWW=mǿCsդ[:U_~{knU??>^`Cl6J*4ǿwɵs z{B__7עUuO>}i~͉{k`?ev+^btPo{}4*ZBW&M'^czuA_=Ciwߔ~?L{k~տ9u|xLf:tDWP^?U_n?}YVWP~4ʿ tc1 =~տܟU|H z_Ÿ_?x=~տ]:_]ؿ_U?TWٽ_7JWzT)caZ".A_=C M7뿇~"뀿39[ bt[-~󞟾?uez?mM!~~'TG (w(?m0_q/{ _iCſßvd[ [ |_iCſϷU6T3 oNO*}'T;[ }ߢ6T~|JPo L7})ӧM #LOT~.GaozsL 4JᇿP)>*Ӛ4JᇿPz.Bſ{gV ~O"T~/E7Oq bPᇿPo^?TEwaV?ᇿP!w*UEW~_woziN0h:i }hts7[M`0I=(qi*8_ ?s{x_0[ GP";%LLL`m!>x?~Mտ~_7@Q_?o} jٿy!. ~/w}y{揺뇊?ϿU޿S[?vkx(Q!~*C;^6_~?_!`ӦϘ>'4/cw~h5?_\E~_I;ӦgM3=!4/c[fT5U/cϽs$4/cB?f~_s'I3_7nvǿ?Z ? __~\h7w}j& B4Ǹִ5ݟ#S(?f.7 ?cLׇ?cz1޿8j ٿ~_޻dwwiM14-aQS]ؿZ_?&zrM5ԯ޿S?f>iu ?7Â~)i L?W7?f^??ٿ??f_3?v*OwoOΟ".2/)T6?"T{kxOA_ ?]'wM[?]'w*U_?.BſᇿPo~mPᇿPo / / / / / / / / / / / /k^cdb)GE/-7n2ݜo ,>tCς_eڴtJF!߫CM7n-b*UUBM?ſ>F>rWt2qSgƠQ?_zt}(~~ׯW 7|__K^7*M?J~X%m M?]߃/~nb^ wz%̆j_PMz`g6ctPU6j:t`7:Si\oH(*X{ƴKVo uPoX?¿O:~{7:SA~kGϛv:MSW)BſOs4:ӅBW+c0yMzW[?TkMǛ^{*M*¿$D_{~~X)Bѿ?*nzy!A)Bſ~4vҠM {kwhT¿o~Oc{*MSwso "1|ߓ{M/bR2 M'-ύs_4{c-a}B1M3pP͹x?coQ?fzkܫ/?f.\?T?fzs U_wp{XXW~[]gW_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?]7{~OPF;զkLW4]%Ŀǿ]lClI7 ooi{Z{_L&nJUߞǿCEvKL֧:o?jt&ͦ[:ҿZUfs_mjίߏ˹o&WV/\Vߞ?ſ% P_nkWW5h|tA?Ώw^!w\$?ί߅뇥 9i L _fVMt?T+痘 zgN\,ot5ך^t?TW?UG1b:tTWP^?U_~տ ^*| TR~[B}lO_=CzT_* ACM =~տL_yw *vߡYgtPUU_TC, l9BWPǸtE?*>{{(s$WO*1LQ?ܦ?s'??m_??m0y0yS%ÿʴfiEzOPk?뀿d߱XPz _~ןU A~}{5BӆT?=I/?m=x=~!}_ܜ ?MBPߞ ߮_O>ecǿ~9L_o?ml]=ܿdZnZ9[kWis?TO?q~:S;տ~7!6]ctuO~5k?5LS}}{k*Co}_~?WU__~[fm>?`޿xKOܻտ*_C|egL5}Nh_1ӓ 3WGM&Vǿߏ{*_?f?/4/cgv~eO_ϻOU>~\h__sL_KU_;s?C7g6ny4?c?M͹tKϒ|D(?fMA~>sik-w ~_;9uP{r}.w ~߭)7X7 q?W7?fr?c%1Wg1rנw~S3N7-70?ٿLg74?ٿ=^;J_/)?fOOK?3ĵUB1wZ1W~޿k{kPU'_ߟ1m~4ރ~ޞrgB.BſyOЫE(~CB.Bɿ~zs/O"T[QE(Wy~%*O"T[_ᇿPz.Bſ??]W ] ] ] ] ] ] ] ] ] ] ] ]ws:-!>c "I~;q-<2-70m:tSg07n ]iZUEߺ 7wgs9T~; /;(- _} 7w W~kx>*M?C: So bozj7w{w[k/`uWz )o qs-Y{}TM+Mkxbq1^7:S~鬔i|M:kPo O~HRi|O)BſܟiZaZeZ+mMKw :M*A~oO[2S7OEUo uPi/j?*X2gzY7:SWQ~ysb S7U S7 6^_tB)T{F{k@(*~}C{K:M_ϽB\;T˿ ;Po yM2}lXN0h:i ƯSKo?ٿ~B>asB1W~@_{wA?ٿ?fO]X?U?f~n~n~n~n~n~nᇿ >3#wϿ:jZ!?ſG>?CvMT=y~~;s~~Y L}_oy=әUzRJ{P_UW﹝?!_ƿ=tߏ}Ҵ*g?]oP{I{F5U?-qy=_iGoGvx?ߞ/ߡ?w?jr/X~^Mz`m߶=>s *Zo?j1cC|O_=C,~~tZ_=CNM8?}7_=ҴtDSWP}44Nߔ~gŴgѴsWP{Jӿ;X#C{3ySWPkYX(*I* S¯7OwUЫ*M zyAoP z߼~ߩ04{`~տSUWP[Tk>s0y쓋~' >C7ovßv~|B(ßs*ӆ=繆ub?uSLT  >&?5Bӆ3T??~ *_tz?OᯟssBPA{*ӆv]~ߛ~.V6T[_o_o~diCſzT_?m_:U} O*^?cϛ`R]=2=czqӓ=v?cwOTѻOcI\;Sq/r~=q]=?21L|]=_v?m_f=pw9ǿ~UϏÏ6=ό??]>wJ]'E(W~ߜ{P ?w*U.Bſ^?b.Bſ~zw"T=v~Y("svS3N3-74?w*=>s鬔i|XCs\_ ?]/j~O"T^?ᇿPo~zW ~ z~/EWw*yf{5il;3wgEbcZjZf:t%Nu>8_]{R q/?g!JsT30{{|>ZUvզ5M+0^?Ͻs>wGݿw ?kӜps P^?~}j|揺'l8%͝4տ P=^;Bנ PK~\(ϷU=qr)?ݦ `W_=ϗ;ģM_0}e3vLϚRM3UUo>_"S?f~_uݿnU/c~cǿ.?/~]~_~3U<?'4{}Vm!>G⿋a4 ɿ7wςݓ,)?fޒrc(O~SO(?fOv%Կ빿%O'ٿ'ٿyPgU?ff9tiiiP=#)kإ7~oUeZiZ/ߛV?U_U_U?f浇 ?c3wSm~_~\?UsZ?#X.Bſæ ~z߁?cB.Bſ_}y( _ ?]P V?ᇿPo}Pw*UEWw*O߮_?m_?m_?m_?m_?m_?m_?m_?m_?m_?m_?m_>s[ϑjp.b>hz}G)ǿ&!~9M$wmzSg-aRCB|tj:Y)ǿq!?}_[ߙWN7w T=oU~;o aYU\'!z{k3JӅ~;kzay=|s[ʿû1M+ML~;3Q|t!.ss[Sǰs}Sg3LgVVUtt:Ƒ S7}oZ]/}mM*M*U*XO>8TB)T{fʽU! ݴW\*M*ӿA~/M<&x[:S7s}\k*Wcw0yMB~k {{XMznv4l57:S(WGݣq}W S7etX߹7ߩ<o wSiIlZ)Bſg};B|4}LKML'N4~gWqikςݖ()?fzo9?cN߇N5L ?c.~_ ?c!ٿ?fOw3=#'ٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~¿ȽiM7}*^;Ig 7,%}.3=P`m8tLXTw^_8(0$wߕ4ǿF!P.Icv1][7,#=oz7,}O=Ɵ{_g' 7ߏX)?Vd!mǿC?6*C=0YwuWYդ>= !?]g~7~*¿=i~j}Ϳ*M~K[>PGu~ub9t|Jg?oѦcB|O_=C{j_nZaZ-Ҹ6t?T\CXCW _i!¯s@ݴW\*ǿe_i:1G zoW~?>؏㯽VW{`U q9þ~SUW?-3*GU?tWoU?T?{{H= z|sF{_+]M{g)VWP{}^wß>( O*>s]í;S(zmWU|LPz|}O{qO*14JOMf $?m~c`k{o\?mwaV?7>( ?mwkМ{|=*ӆvwpC1R?U .jU ؿ=pwBӆ^;z%Oyϫ߮_MO4}#=v?xlXT]=ܿT|> kv2/?sR{`_us~xk~.c\E_~_7n=v?xozx[욿kktOE}{PᇿP?\?ᇿP-{P(E7L4}F(E=B%EwkJᇿPݩ\C 5Dߏ:_S_7g6.4m4mJƿiiӉ_WQSŹu8=\eڴY(v?3靦?{*Ck蕂j8ٿ~*~a~{U|Oܯ ?4wm:u.y 4=_;]5vkHu։?տs$ϐ9oC;X |տ*O!4=mӣB?f~?;1W)3!k7L;v :1֯&B?f~IL~-y3?/~]~?k*1Ϲ_=`2u|Vg?kgX=3P_wyn. 7Ciy_dtPq;8?hOsWO'ٿw]V_jB(?f!ٿeCЫ?f^?U_?1W_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?]̺tiKX<~8OڴY(Ew]ʽ?{1O"Tԯ'w*]ؿ~|PeSW%EW.Bſo |PE-Ekyߵg70]dty(/צH~;sW.6]jM4{*M?ſ>\ Uѻw7w=^wxMoT~;\?Jzo?tS2Ǧ?1YߙSo ,کпYҟWѷ*M?]o뇾VkXTM֟!7rߚ>7w _n*^7izO)ǿc8__Uo ,ugtc1 =i~;K%i~;Ki*w(7kOטv6^OY4cmM`::>8;x~.J?:ti_ϏEiC|Oڀ #?m&=_ϏEiX||+3z|5`zIVWϿ:?/ZL6}c__=w~ǚ3_߿>Qװ=~_1_rwWǿco:(so~¯u~;_CCC\r{*Wǿn+D]k~7π]&{.?TM}GO*c>(W(*~+>-!iCſ~ OP6T6aJWLZ _I"?mW~}1'?m70*wVsn}/niCտj~kZzOPZ\~g59OU_y>-?m_Y_V6/H7M;v?zwSǿ.kwx?k~|ǿߧ?Β_3MkC܃rU<?c?MܯIc^f"}PJo?_G-Ïu?Ww~o̿b?c=@Ko?ٿ?v*O]xV?UW?_??_??_??_??_??_`tqwtmX<~_ט?w*]'w*(L4V_1LT?]"T~k  S/ ~?_ ?]O~|PZ?]W ] ] ] ] ] ] ] ] ] ] ] ]w}fmrӕ!#XZ5L+BM?ſkgM?g)OT~;Ww{]> gW)ǿפ1/+8o7$ӏ'M)ǿc8M0N 7w֯J_|*_闪sd.soU~ϥ^矯\*SpU~;W)ǿ?~kI^T~;Xgso+BGXǘ36/ڀztZڀH㺇KL*w(w%Mv3ϏEidž*Lzo( *w(? cǿ4zi@;~.J_&}#V6ǿDiXI*w(ϏEi'=>s?V?͹_4U_ A7?x/qg~-ȿZ1޿(~?c!|.07~_CU?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7߅Y/}M[Lךjk_Je!?]L^ggL?g_{*;ǿC8TΏ>sݿ禱3ylOa?UDP}i'L(ßvZP9!\?;D(sI?_EU .˅?y뷛~Y~X?f~n1s3~X?f~_ϻ4&= ?ezC~>~Nh_^V\ǿ?{=.Aɿk3kx4 ɿ+3+MM׾?cz1y 맏X?U?fwyaTS뇫f17.}c?f]~?c¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿ.ύB;.BɿM'[?]ץ ?T?ᇿPw*͵ӯ6"TʰuEE!=)U(E||sPᇿP%P_C"Tgο!w*?w*^?%v?%v?%v?%v?%v?%v?%v?%v?%v?%v?%v?%w?'J~ǿ4??fOǿqL ?coν;N)/?f ٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~¿ykLכn2j$K3u ?dz鍦{*M~;3_kx57οq6} P_{&\e6Lz^EǓ&4ǿc8_{gS¿w[jAiWM}B_?_7R\?[u~u?4?uG_ݿ9VӍ[ ސ<4ǿcXjUί_~`?iuo1}kWϿ:?/+G5a:2_Ηߏ=6DTΏ˿K z/ΏXs`W~/M<&{`O_=w~M{ȵKz¯u~;_~?b~94}M:˂z| 6|װ=~~M;v :Wook]<ǹ),??ӦL_Bӆ} LS9B?Ù>QPz&{!Bӆ~U|LߝS6T>6bk }XP40y?WP@?o _CUMz`iCſ ߯*ӆᯯ9gw O*0[?={&iCſ|.V6T5~ό8?7|d_gL=v?pB<˜?k{|/~ ~_ٻcwwĿ%sK:/~~?~c{_jO6=kzozp.sUkxṸk~.~!;y߱kMכn )PatPᇿPo~^'w*-;A(EW~߅Z.Bſyϓ,"T^?ᇿPz.Bſ~zs'w*U?]W ] ] ] ] ] ] ] ] ] ] ] ]7uAѴ)ǿiiӉV}wM*MWj̚4?Gς]-~w+Vs -{?*UooC޴I6cj"οewmOXV??O}7*Cr?'V} `_sٿ ߓD[sT0sdW_=ϗ);ӦgM3=!4/c1v0=Scǿߏ|S?_̿iONC< ?~f_zu?{i@_u??WM6֫L6c:6T ,Q^ki~;Ku0Ӂ ?%J׹vIU ,Qqw]I/ǿǿ4~qvQ6v {vQ?ɏEiwto({CM'{*w(ڿ+3B|0y4}LKML'N4~g1wx]&504^?~߮:?fQ?f.?p:?f/?fgYl]X?UW?_??_??_??_??_??_]o`(67 /mIo?Y.ٔ-ט!BM~;T5ǿC?*ïIUzRǿU:\$AV;ď~W=?ſ佋Va?_}P:sXp__E-^-Yο佷K_7%NǿC~~]5kIןCo^?,5~*sN_~o?Mǚ3*_Η_yA8 z|5nzy>TΏ˿iOӎM~tL*z/Ώ˟]w0ǿ*t *Wǿ?8~0Ӂ! zoy[_=M]eYmZktEq.?/ C|D%_sW O*ܯIc^'/??mweK^c3S _ |_iCſ~~?mwm@Ǽvn?&iCſ~c ._*iY5[T*ӆg oMU W߿6!iCſ_gT]iCſ]+O1=kzoz, qO9{r_W]v?0$Ľmc|y'MO#_;xK1>e_{ua?;/~ ~{lsJo_nh55?m_5{{v?=' GJ>sb5-Byo "T{A{pU;P?w*UE_7/ Mi̭B.Bſ޻n}*.BſEw}\M ~_߅?~EzT_o v?ooooooooooo?/ǴԴtDIKDI?&z?VQǙI:vGݿ_rvϞu] P[YEe#0|^755տdA~{7za/?T?}kR? UKD뽰 P~?~?0_uz P/ -U5iMWxTS{CJ~߳C>b17/^C7ϰϜ{kإ7~S3N>fPܟb~_ ?ci)~ q??co9=h^?_]ؿ~ߜ{!S_ͽj~_~߼g{riE?]7wbZ_}~Z1E(_ ?]/Ҹ*.Bſ~_"T^?ᇿPz.BſoypPᇿPoο2LT?]IW.Bſl^rPᇿPo=]sPᇿPyiPᇿPo~^TT?]'w*-R\?.Bſ^;פ1B.Bſj.Bſ Z?]]~s33}M֤Y{n0WZ_tDW7w1ϿI_WBM?ſJ&pY?CjRo ,=;LPnbqBM?C{Lc~;oݳ_tS׬&{\Mki.Uo ֯^z!Y{}4; _4So uP?GF(*{X{5"-)BſMg>dJS~=tH7:SWGGkgnX;*M*U* W*M*U_TJ7Vo uPzTKo rV4JUw X$D]S7 a󯿧M_EiL{kPo %ׯ^ՁA)BſI\ w/UB)T_^,}LKML'N4~gWo?W ~_Yar1W~^??U^ͽwyB1޿\=~s~?cz?cwj?f{ ?c0yB1wٿo?paЫ?fOS1WU_?1W~^?U~u!޻hƴm557,라o: *pӡI 7,bkfӵD'Bip=CzRW.^CKWW _y^VӍ?_;QZZi]Z?+Eo ~;k빿{ރkR~В~έ_K6kLKQg?wo%/f-?\J:X}}ݦM(/ 畊P_ 彸,BJſ뼆=M߃J_ S+X/}'ϙ Ro~jm_y_nk?!w^VW*U_!Oÿw=syo/T畊n NÿT畊=yPo}?Tk 9N ~gџY_Z7n?^~?MD}}n%>_Z%,r6~ .Iſӿ?W[Y]_}O:_ſ*KI?I<.y߿Ik$Iaܿ<ڭ%,8?U~X"ߎCZb\UgI?zW'?^[ϒ}~T;~j, ~g-? Kߓ!k7'X`KRܷrPᇿT{"tӯR_C*Ϳy>G?5!0v;9!/_C*{ ?5_ ?5_ ?5~?5_C!O!>sŝC  sG~kHſ~wX?ᇿTsWЬ_C{)?אw[4_C*{x?Dž?5_א'א󹻻C,H ?5_ )7/R vXlqm_U.LqIMؚbI']|Q?w$WdrPW?%Mb\oױߑ_פ)vߑ_\GuOb\6~;I9ǜu.wߑ_̽*ǿFAq >/?Osj,P)}X_&{aIܾl<~g=~|.tsg_l"zA߿y,χrៅ{?K?K?,>7j}|~g};R??kョoB Bdݝ wܿ`K{L9!0 ~aXg9?K76<_Ϩv|w ~n~n~n~n~n~kn=xpGoiqţ5R{ 7 ks;mC~;ݿOS1W}~_~_ ?cz1W~xPͿV?- ~[ǿ'o.O?]~< wy?- ~[ǿ_ۿy/Xx9~kHſ~4sϧ@%_C*={ŋg?5K~kHſ~kHſ޻K)~kHſ9>kJ_C*^?=JᇿT{7~kHͿ8Rא!_-]JS\!??\y0oŅPWFm, 7^¯.Kqy˄ǿQo^+^+^.??yM 7*+(_k̽YsZ<o.bC/:%\??4 o2+v_s+mC~Z޴BS/I$'Bđ{__:I*==_{Kzk/I$PE+-v*%ܻw~Bvs_:I*{ 7>G_:_:I*U_T7XXl qzK/I${#BWҶtKR/IſSQ{7&/:%_-nV8/_ǿïˏ_.?~]~ ?~u/_ǿï__s}(Fxth }Oxyy\+O'ٿ޻@~;]?xA(?fO ?c=?sV?U_~ۿ~?cz1Wܡ¯?] I5&!~~s ?e?] œs ?]wC _¯+&]\ ~~ '~~ZEPWǿ+z¯ߦcC?/_߷ŵ{-%&~տw}{)ʿ og{¯!_?Ei\֥[T?TϽW{}_ߟmU*q[WP޿_ٷ}t?T}!H5RU}Y\ O UWܿ?*Wh_b\`~6_U?TO76Z _0Zsj!TFh0EPWw?.RDw?jC!TF֋PWw?jV¿?Q[zqI-B #G/ R9Ni,/b_=GӘI?|[mΟ?sK|^ſ~;x6}/6W}{~"?$$=OuO_Ϣ6ֆ+KCx&ZKY4W~?h!PNvgI?E?[*k?]7',օ^I*s _Gl) ~goϢ|O~;WJRϢ3?hom'o.O?]~< wy?- ~[ǿ'o.O?]>sB-嫒!zMב(~kHͿx#i| W}?5_G?5_ ?5߻z?'א ?אᇿT޿ WR4-^;?אU[췸f[-n[7N ~_Wܡ¯ J7M*ǿ$E?w$Wwߞ+T_ œ.w/f#ɿ:^{EO ?un/+_?9w¿..Mg{>h׎x)? _&>gyeg.TJ SXn0~g^o1m+g}~|_~}8jXlbs`较e ~o>U[[_K,.b_V?G?γ!ysiu/k_tO|~5h=u~n~n~n~n~n~nᇿxݵ!zY<.!U>cqZ(_C*},pj BRo_ z!z޽>O?_C*}ڂRt?/! 7#)j_C*=*/_C*U_?RomҾ^ 7KR\; 7)!y0oԍ)iqCǿQ +6f!y0ou_FmMV!y0oԅPWFm* 7B+ދ).?m9~_wޗ8|yOz_:I*wH A*%_!6/:%_n$nmA$uT¿b-7[jq:?~]~ ?~u/_ǿïˏ_.?~]~ ?~uKq}^8kjhX~ /Y"S1?f og,^?ٿ ٿ|Ы?fO'ٿ~_w?f>*O'ٿ*WM*w%{&1ZNG_}K&]\KJoĸKS įW¿wcsi~~k'oK?ߕcI;j?1]%įW¿urPWǿ+|e).Wǿ+Ϟx{/T/}>ABw/=RU}{7X: z- _*{[t?TޟzD0*W'}7T?TbU//jbSz¯fUo bA_=CS5'3yo/VWP^?U^w_W,-6{*UMc_X8G ִ+-. k~տ~W q}#Эʿ om?ܑϧ/1gZ_JY4YϢJ?]~< wy?- ~[ǿ'o.O?]~< wyk-ݵ$'NᇿP2qO~kHſO!y tq?א~k>I*;yQ _??5_C!ᇿT;s?5_C!anG-8_--nV(+'1t_9Gݿ,8dÿ]'o[j1'] P_;/Iqub +m@OU_׶UǿmVom_._ ;S0nǿgzHsPZ?݉yV(? ui~e6_ݪ7 濴,Y\bbŦ_7{Vtl5?U;. =uɆ?K{_m?f~7_l%׷=U?[_[/J۹Ri{Os?%U?sy}Pg??K{r;NkC[<??+W?HϿamǿq`}0L_?ٿ)Nk~~1'_??ٿw޻1W~j~CA~ W~ W~ ЭA(O!!א'אsj~kHſC߆ZR!א='C|vͳBRVWP~!#ߡ?-߿vZly_!΃|Q?,y|7= a$EMɳ~ v~ gx$tũ_א ]}Z(_C*@Ь_C*͹<%!/_CKR~k>IU _/Iտj!UO! χRo}{v1 )ן}kZᇿX?ᇿT{xᇿT~kHſvBRtT?אᇿ5*¿?_ ~kHͿj[췸f[-n[r,"W`Q4~k=e_^տäOquޛrЬ/&1ܷ_â_z?TN/Gح?¿oCo~?S;/םs?T¿ P[\_{ϛ/-m~?TO[{BYf_`>1 sy)giY[66[\dqI>?c 濴,}n q~ߝJTﲿX쳸bGs\?=/6?cslV}*ۿZ\ݞ7/~n<_?K +}UY?T_m͝}N_w_[gס7}/5}!i'-N6?+WG9O ~~1,~_{{ ?cw!Cƿ ~_AG{V(?fzkb?c4O]'ٿ~>4'ٿ?f~~߼~a5޾]!'ߘXkϲ{{vq;=QÏu?c!ٿÏu?Ïu'_ ?c?ܗƭQ?k ~kHſgm ̽!~ ?gبT^?ᇿT0^?oU?5߻C=<9JᇿT[ڂRO~kHſ~ֺBm wQ_C*UאfzO?5ߜ{]5Y !svR}B|vi 7/ؿ ן~(}^?H%_C*U_?R!א'א뇊!U W~ !Ҙ'Zfo,_w%͹?u=6oV/ ~G{'3_w%=rz>n_w%=b l0{_w o;R·wyۤoV/ ~)n^?zP/ ~CDZwzyKUI*%/ ~g?>B߷w;-؟^_djWmq{_:I*?h{ koxW/MUKR/IѿoUߒcнV/I$U/*~ܽ[*%E-*_՟?^o%_C~wY\b{Iz_:I*U*ׅ I%WQwŞ4~~_:I*U_W:1{-*%RcJU_?_oaqWςn~[,nuÿ2~uzﴸ;ߟ'wD(?f?tӷq(hOL;tQW?fδ _ ~E-?f'ٿE~^Cs~?co4^?/\>gKB1Xϯ|B1W~{,wEB7OϿZ1W1W1sܿ5k~_ ?c~ Z_X^?=`y$?it.nIׅKw%=&xx$߲)EW_;8aq&]_ǿ+}6mn_j.׿x }2}O5o7BW*os{¿T?]B?g֞Ug9~~؟?H$_ǿ+=5'Cnt|*KǿZ?pU៵Wc_ Pίܿ^?K_AC!1>SBWoZOU?Txh_ʿ .{_*W~տgO}↴k~տH`U/wXIɯU?TޛS[/_C~ekz\?=qJWk_⼹  U{{ŻB{4VWXV?U*}! oX[/_^?T*o'VWڿ_|\?Y z_¿R!n_>s]i~Um|1䯧BJſ;-}bzkT畚?ۓ{+?$|{q+?t=<.׶UW*U_!N i,^j0%,ښm]O\h~?h{ڎ߿mx^?_8`KY}P*$EC?rj, ~gP_GӘ-ϒm~E]?o F%_?[_JYbkXW/wś>w$Ex]|7/y%,msY~2+B|$<Ϯy?5߃S!]%_C*A~ W~ W~ W~ W~ -ʹN(_C*U??5_~kHſ^;w?ePᇿT;]??5{3qG*R?5o$%)`ᇿT빿⁔“BRoH_%_CjZᇿ/~?5_!U[cZ-[bqŭQ>Mm;}N-/?=IVsW"U';k=n_9JW~O;fޟT__ 3Gq Pg:~oCo=)ee}Ϥ?Tfb=o߿*c}\(/{q:Gݿ/gZb1OZ|Z(? ؐ3A߿/g^ {x_Kmi-. =u ]xៅK<}F,?? ^jk,vY=uN/Tߍ!p<Hh~.}[CV,~¿gq{`uz_x5}n? t=𛓸=3/-?~8Y~ז?c_n ^?l.~{ŕ;Yx_%qx ~_ ?W7ÏcO ~_~_ ?_NY<#G~{0Q?ݿ _xϝ{o?c-NPO_W?f>:Q?fN!5Y?ɿ~_~n~n?խ?fgxr_[_C*?A _? ~kHտG*RZRo_TTk8R~k>IU WRzRKX|?אZ3;x_[_C*l,>ii ՛kC7R?אGRzRz?5@%_C*퟿ܫ/_C*Z?5_ sT\?R#Z8}[oKB%^ߝS/ ~;[ 9̭RL]B%Wo~ۿkkǿc86!ǿcwo~}W~¿H`P)g̿w$1*%W˿'^?]= So0tkV{_w N:?]}\_;|,tk5R_w%?⽷?*7Xﴸb I%sk?y|A(*WX;-]i+_G)*>u!{}kkKR}5SBmCZ$uT_ڡR?=KR)9Tj-vX :%_CR_:I*U_PI%7|!3BW*%ܻͿ =o/V/I$ o}!ckKRg[-6XlJUKR/Iſwg'ߡ?[췸f[-n[?+0?S1?fwZ?qT(?fpX(?f/?f宴 ?cz1~ؿ~?co̽R=ck_?ٿciӂ1W~ۯ1w~O]LU_U?fO~B1W~^?>s!^œ Nb#JKw%}>s`#?M|XIZWӘ ]soQ,_ǿ+B9&⟥cN{*~4vk?Wr=LkcnV?ǿ>1N!?CkUy*ϣPGu~uv?Hߙ*WrPh~rmw%^?[L{?-w^~tUgNy6{(_ʿ / wYܔ^yO_i؛w~տB܋, :KWߟyuק*oTV4E[k~տSQ/*=﹆*/*{#tU?T/*>צ*뇊V_UWP~Nםbk~տSߏWYNkU?Tz|"}τ@k pKL* &bCܮ*mqOkck ^^+w߿XZ0y;zT0/{'{yY^7O)O?bc?d{*Jſ9w4Gb_7ŭ?T{{@C;P?k+'k+NO f?8EuR ?/=J^7}>ߡ???TXn^W1?^,VW*ڂY,~ȆYb|zl5%,;v| ci,$E:n͹g_"ִ tR?KYo{_|YϢg>hPA'I_C*}>s`/O ~kHſ^? {q[?א v'B|BR.~j~kHſ޻<ϹF(_C*U_?Roz_C*?uHU?5__{ρ?5鿅{R(_C*k ?5C{n\>PᇿTxʽ}]L%_C*ڙ;X?ᇿT^?ᇿT~]~ =(9g?5_C!z޽!!s _TVYא'אU?Uאckcn-nmIg)n34ZQÿnaMZ }R1?>?G ɿ/l_'$?*O[ ;7h//{T_ϻC;??Inu[_Ů?ȤGWm;oCo9ÿ~we0_W~¿8ٻ?>Gݿg^xSc,βbCV}"g-^'->`K¿ޖƾKv~#)_~}|fUzmN{˧'  ~n ]z|U>`K~QV._Enms{Ŏ>j2G߼vc\?>>gm==ǿ5ε_ǿɖ?]}G-Yx9`_^_gI}*Wa'__~zųBWr+Ҙ7Y;TKR/IſS?otKR/Iſwy3?~M_~Lw_KRo^?SmP_޻?~wU/I$S`N,O *%_C~w8I*퟿S69Ĥ_:I*U*X[6|kKRoɃ!^?_vXlqme6~(tZ/~_~j15@ׯ<)'ٿ ٿ~_~|@<?cz1]N ?c?s*Mny3B1X s_?ٿ?co~}?_8+'ٿ ٿ^;??fNO޿~?cz?cz?cw2W'l?i/,~,ŏ J{0}(kGZM+/?߱7{'{Vί_nӿZO_-MMTKoC=~_?=},/Pl?__ݿyz󹣟?~R\?_?DŽgǿ7|uHϿ*w~sϟ[K_ݿ9ܯ<N,{*}Γ_wkBW.DK_t?T>='߃5RU:Ӹ_mA_=CwvUﰿ$CZ_=C!G =Z_+q,1ק*}k;A~~װ61O_ sKz[㟵ʟ{޽i+,v~տSmPߏ^¯wz4nk_sk~տ*W'=hO_=Co~*o/b}*|kZbzC_M+z8ߡ?~ſ^*Jſ>\?}B1?'ѻ?#?T>{&wN^7/1?5߿ Rox ZbSBJſf?+56?g畊_ o^*Jſw =U{O+W*JſyP~¿_y}3BJſ~ܷ<=|_?"fdC[`U:mK^f%~fվBm,~mu'ߣ;o>`KY/tO'|ܿZ?KY4X~r, ~gѹma$E5 -6ߜgI?vX{B샯 ۻ߼|/ ~gطBKRo5~~V?S"%ɳ~/a =>uO_א }?אU'א'א}X'א?_CU_C*kD?5\?: 7N Wא CV?אkG^?א~zJRo~k7'אsPֿ W~ 7O~kHſ^;y;{, ~kHſj?5_~kHſ*O/ ~kHſ~kHſ?Z-[bqŭQ6 hs)~~X^Ck?v_ / ^?_ x/?Co~c//b>{WbXoϏ7>W?Tb_ &:O[I|Ou1W??*?_yW}sowU_ſ]V?om}%'->mY,βbCV}w4giYq/b֠WCW?}VgiYbA߿5ԿniY%w^_I-ϧ/X~xh~Os?%~ao^?l~.UZ=aX; aiY[6||Q}U?_[~uosS>Vo~~?K^{}&tϭ:}Giׯr{^Cl~~uD ?c3!0on 5?տ޻x<4'ٿ^;sa)?f5{'ٿSٿ!ٿj~_}"tW?c!>FÏc}-GPO=GB|ճ1k\ B1_???f>'ٿ~b?cOa{x:OU?fzr,w:Um 7}|?5~s ?5o$5aМ W~ 7NB/ ~kHſZW pV(_CJ_CJU e}TJ}-t~߅?5_G?T'א'א'א2~kHſg?5~W?ᇿT~~kHſ3ρT?5_ ?5_~kHſ~mo<7whK,_w%9i-U?|B%Wz}l~l7)~F$1ikS/ ~Z__h~rm$j=OjOO:?]v_qZfy'UK^NyxoWK&ܑ>_w ~۟??]~|f&?#_w%όyPo0ٿ~ Iaǿ+{x[~?]gxn緪_ƾ4V/I$>!~^xQ(*>;- I%X~~ ^k_m'V/I$NO ke-.IUKR/IſwQ} 6;-n؟_<b b?/!ΙZ$uT~_UKR/IſB(ON*%_]~}s*%\;;a ~?^ٷ__}ݿ~ _z_:I*O_ }y[BZ$uT{4tQ?W~[,nuÿ2~uNM-?fbU?fC5?ٿy!zW1w~#?&gYlͿ1^;O96 ~_C'ٿOWҘ?ٿU?f1W~9߾"ko~_ ?cz1{V?ڙﻭX?U?f =YO/&~Yb_/?ߕ~8tO`}ů&r i+/u-I{*_߷qNmiW~S}u={k~տ ov6[l kcz¯W~_Z_=CŸ]i;*sTm_=Co+??N-*w$VWPk穠_:¯W}Pbִ+zr5YK;T?Tb¿dq; z_hwZbc?yG9<ÿY&ݽT番s)~kc Ro_ -w-~/?T^?_W^7=x׶UW*U_?m_y-~{{_oT畊'! #_y_ _}}Lێ=*//{ߙ˿-?T}k_G?Y i[!HJRExݵo2z}Z%,r=~%WE~ ~@CaT=WҘn0%,ʽ{u y,-/%,>6ϒ *~~gP_ogBwgI?\9[7C',~ΛCS\;Ky_Ϣo6|.Iſ*) ~g'Bb^h-% 7H%_C*}>Н{^(_C*}"ޯu ?5!b?5_y "S_C*U_T{(ƿ[BRo!\? WRdӯp~kHſ~f~kHſڽ~$!zV'k˟]?|e y m?+WP?cz1DxǼY//o?&OKR?cϏX|SuBW;?"=޻|,vzЭB1k0φB1}ű ܭ?c4??5~_4}g?ctT_~ܿ|~_~n}>s<ܿ-!8He _?oj~kHſ>VyP~ 7Χz# 7CGj ~kHſ_C**/_C*U_?Rz?5_ϻ}>gB * W3_C*}5z'?F%_C`ᇿTk&!N>3T?5W~kHɿϧ*R!>Gk ~k>I*U_R񯏑k!אڃjᇿT~?57B\{X/`oOqYKĿ~?~GߙDoYI:~:[?x@xP$Jk3!^ ?ϗ}M?]}kGC_Z]?>0hǿcw؛KĿ>wtV/ ~;o>g|9E?]ip7'yߘt= Iߕ?x:tlq0{=kS/ ~zD#_6 I:|'_w%=l9|.tϠRɿ wuZ$uT~r I%W~_|={C|O$uT{$hO~f-!rmLUKR/Iſ>t,hO~{O۽6m__̿ o 6 :%bI%WQm$/*פ1}}[V/I$>?*>eWU/I$K=sPUwװv*%ߣivu$*WϽo _cվz[췸f[-n[?+WCP~=\U;?fz<X?U_E~^?U?fNOC5Y?޿ۯJ~_Lnpϒksv?B1W~{:t3B1_?_ z~ֿ^?;ؿ^?U_oX|L(?f1px/N5&n,~S/?3 _ݿc*yD߁?ïl~>hxa˃B~ߚ[Wm?t^> _ǿ1~J{->`qogǿC~v:?] /??=l6q$]TKw t1X퟿ߡz.s*?.g=4?*-n6mSWP{|RU}WZJ۹⪠ï1W~rMcsl}^ʿ {,֧* UWؿ{K?*W_=CtT˿ ogŖ6*?*-~?n (׾=~ſj!] q׮=~ſjSНms*OgNZ<Gڂ1 'o RK1N_~AߗW*ܟx:cOL=8$?TϽ|E(/}{$z Rz1~~{R+?Tk}=AW^Tʽ߻_x](/?o[?T{^?*_:<}H^_?9*Jſ ڞUW*_'m+zk^? R񯟷k?$B׍|n%>gS|- E~%x ؅!$zϭ񚭟,rfo qR^?߰X/ ~gk_(;NV?%L >ϒhU_h~?f>{mOE{_{x/ ~gю?!c^h~?h]i $EgI?kV??|T}gT{$|A _?s/T?ᇿT?&?#!O!E~ W}~kHſ_C*;P?אZ?5_;P\?Ro~ߡ+/_C*=pߡ?אwyY(_C*Ϳ}rT?ᇿTg)>~kHſy,|Am?5Rא _?ᇿ8R;! ~kHſ~ӡ;*[췸f[-n[6!)\;{k1׃Z<1yX UstshwzP-/px yXU_?rc P~]VUb&q۟/cbsǿz!n[?fnWZt/c?W?f~}%O.wX\X?f~*1׬k}Vǿ7,>j)XqhOɿg >އw)?frY?ׂ^1_{:tύσ>.sZ1?7L!'ٿ ٿsY|*¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿq8u/YVT:5$g,^?אs<=Z*! ~kHſZᇿT?5_Ͻ}N~kHſCא=>Q_C*U??5_ ?5ci<_ϑ;+!_+ wy?- ~[ǿ'o.O?]~b }< 1={*%p-*%/ ~;oKmss}!ǿ u=ꭟciYB%p>}B%?Zaha?$BwzgvX$//MC|OZgQmX6. qy =?m7XC<^i>Tw?"CH* ~;jUw6mkeoo;O;L~NZ/ÿǿT?ɏ۩6~avwjo^?_8[ן6UΏ4me~_!_9wiBZ¾¯u~Wxϡگ¯u~KC}/qyUWϿ:?9ui[_ fϛ zKq 'Bp] )a!S O+ybP_{GѻWZW~¿8}v QGT=[<bT?{s{Rz Ro~*U?¿x=(A!iߜ{vb? RE~¿8[ߢRV*ۻ#G(/독X>xՃBJſ]/)_ķ'}$]vXC+!>T'!oW ]v7}JĿߟf/5?m'oje[yowǿ?O.ze_߷}/~.zU~ ߷ua|KR[K.:?#xJᇿ o? {9?w!zŽ3T?]Hſ w!}=OSB*W߅T3*OB*m/ 2 ?]Hſ<B*U?._~_* ~N_?m'ᯁ ~kǿ?5vo; ~N_?m'ᯁk}#? w~/B6-YeqX&x,CYo/]6`;0տxNϽ?{qÿ8',Ju/?ރGݿ>rqܗ?U/mW_3Pj㟴iZ_CϿ~q?mχ^ΟH`QzkzqGGfw~T__WUW?K{}2/Fq{!_̿^KcbMǿ߽6m=:_MbqڠÏ2\=WCU/C_my~>2 {2b!n[?d z+,[l :!߼fۼ$i~ ke4Pi!ԟu'OYH_?ٿC>>?C}!- %wqoq0Q)?d6^?Cz?Cz!\?U~?Cz!7O~Sٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~¿?u~h!caw!zlӔG-?w!^C=`H߁Jᇿ 5')X<.B*qZ._~ᇿ W.S._ ?]Hſ w!{|H0߅T5R ~kǿ?5vo; ~N_?m'ᯁ ~kǿ?5vo; ]wb^C},q?ſ:xSx?hl@?ſi},U{*%g}!- |hWI-x !ǿ \?'k/ ~;׽?I!=CUK_;.z:ĹsW ?Y3J*~0?sfZ(G?ſ> ߜsn*%gۙ=?Ochq]O.0~m ~;jh&mJ{~Nn{Ϗ۩6~gYnҿҲ ΢}l&~!?ſ?hUKwֹ7p>b ?{j{/?Y>^C~OcOc ,76W0` \?mBsoǿC3ЏOru9oL _oR?އ}*}=~W~~mUzRWJl~ 4ץ&¯u~>{kC3_.-o{C^ƿ_ i+-V z^ş[|7*WǿCο:?r;{`qQZVWϿ:?7ǿJh&UΏ:Ĺ[B|O_=wW/0odaQgvX%?THv9ÿx9gx^(/Qxci߇B_~ushO+zFqݯ_?wνv!i\?O]qo:C?#?T^?_w Jſ]/C_F|_{7XlJ6ƿi\?ן//!m0^7彯okE/~޼>5ϥǿ?M m,>k~NԷ^`ǿ?M뿾s~ |ׯo_%zo/ k~NT~v{Vkzߟ:?Kc}$ߧC}/ ~XxS!GB*IG߁Jᇿ Y?z~B*x hOB*yoO~R-^;᫒B*߿R񯏓'C;?]Hſ^;B*͵?3|U?]Hſ]/~N_?m'ᯁ ~kǿ?5vo; ~N_?m'ᯁߵZ<z/fqŝw[3b?gxb|fW:/Zx&;`QzqBxW6g\Meػ'̹abWuۅ9U_ *}oc _o}s[(Wίj/{wO:H݃Gݿ/\˿bU[5oY8+ោyZaqQl˂1{xm3濴$W MOݿ/5*khm~'_kץWY\f&h>Fោǽ4v^V]=ĩPgP?0yymڞsꭟcG?S/ ~;M)R_wo_jQZ<$_w0?|?<wI߅:<~ˏ ?ſυq ya!ǿCuaǿ =\c|p4{ﳸ}_wR_w>b<⳷w[ Qɿ M6Zܘ*%Zocm:m//_= q>qPU},Y\_:I*s@(*+lUk-.$-_v;_ʿ -!q*%ܻʿ U/I$>¸__TX+-V[\b= I%W~7_=KRbKڎ/o :%_um|Y$uT>/*%m,~bZ/,n{6~u8 fP?hP?۬<'?4zaܻ<+CV?U?!7߃b?Cz~;ο?ٿy'ٿ>!ٿ^+s?}G?C߯Ƌ!Dž]~_ ?C= Ȝ?C0r?C=/9 P+l_齋?Hq~Pj㟴>?Cz?CC ?COmYߢߠ?]a&vXx)Kw8z{w*>?~;mx;gÿOc?]z |}f4>.o${w䞬0&H}4cB~;?Qq!{ѸV/?߅1}0?6~ļ}4Vc>_m~o}QWo_Zgq?G95_L}d箞d~;Pol%? ~x|o}=~05;x{]YnqGZVW_53n%k_(*W,nbqMچ z_ϻ_oAn%DoK*v>y@(*ڴKxY_=}z?v翯U_Ts{C_ݿxw.翯mA¿"{ދøVW_>ηoN*zs}o//翯U?Tf>wum} z|Ϧ;~w/Xc, zC|ø.?W/ZA!i_XCwU8fšQQ!iߟ"kBqw_E/w O+8~烈uޮWï=Rx U/~{CBJſvw oGÇ_~?W=s?T'^uwDŽ'yY0*Jſy,x~`ׂqs}~=_ZW~¿8͞7 O+OUV*ߺ:BI3ğ{6-1kI?6XCڷwE`3$D\=kJRޟup/ ~'?/*Iſ>W;}wp?|zf$Dz)+{]ig8ϒڙۛsR/ ~'!>?[KRo~?s/0%$6ϥKR0_y?({rE~?o'T gi< Fۅ?]Hſ?u~H;P?w!SMB*͵|4AB*m>?A߅T맟y@*._~e~Tv~; z w!Rs{1R?w!ſ#9 B*k^C}{!@] ~'w!/߅T3i|*.ܻ ~'w!ş ~ᇿ w;Rz?]Hſ*[lN-&YŋG@Ο(׽H_Mx5'@(ֹb~_uៅ߽}(z(H\ϟO⼕_fɿ:{;}{x4Uៅ߽惣au_Dboo'ܿm-Zy#_?O¿^Xeq#)/Y8eV/?? {bWUzi]zoV?jo&[,n U~__ z_^|j;B~'ׇqQo>YsR~ƴ,!W~[c2Mݔ=U?_Z~F׆q_Ͻ j¯sǿ~ǿ~ǿ~ǿ~ǿ~ǿ.Y8/~_])- ~_ ?C?$'ٿ~_O=(OW?%wK޿;pokt~_ ?CoK%ᯁ ~kǿ?5vo; ~N_?m'ᯁ ~kǿ?5wC3G,^8iq*~sYxMR0^K!B*_??]Hſ^?_84'w!zs~}\? Y??]Hſ w!y?]Hſ?߅T{4hOB*{,en!i?o/-YǿQ_{=??:j-^LO+ϟB ~ߨq~~b(=?m=??F{Gػ;?'??/7ʽžػ{ǿQ=s4UǿQ+wߧm;-Y8tmZjq{ZV/I$zwY8r+oInڠ_:I*}*yx ߵTƾ1\gq}/I$zwr _beKRΓ!Ba__}k0/ʿ !3 _ M6!{ I%WQ_mcbeiY$uT{xs#/ ~_ ?C~o.zQ0?dz,^?ٿZ?W7?d~*~?W7Ïu?C cwSWǿM8lo4 ?v=EQ,qE!~~;{ݻػ__}Ÿ\nUBݳ&YF=~~8(^'įgo^3¿|+įuS;B~>RU}Y3;,UW- _46Z\tWO[m{*9 4zKxY_=}!!ދB2RUI翯i<"f{U*~*/*W_=}lU?T_mY\aⲴ¯W}PߏmUW/*͞wS׀I_=}61m_VW_뽋N?3|_ʿ _]\UWvͿTa_8e QZ~7,޲8=u?)?o?ԯ-ZmwF* #GY7=UGᏢſ)ysWGï O+ۏ彮3{`z[Z~(q7UGd߾6* #y|ʏùe v%c)!iܷoX*Jſ~ߵ|_{}<~'+bŊYuUy{4rj/ ~'s9 9{_MX?,-goF%7{A' yuׂIWe$D~bkB|$%_O>^;5/%$kg?w!za+{wB*lA9`~ asP ~}~'w!OB*}2,<B*U߅T;Q߅T;~]._-YeqXo&޶xuSo߁_߽=cqrHߵMgů-Zcɿ:oFѿEK*ǿ/D{zϝ_9>8k;W+¿Cɿ:?Ua?o>9ƿw(WC;W>#1=eiYw8?חYqX =inwPiI7WY\ibco~x/Y?'_wnǗmR??KşYf_[giI/ B^P_ϻBr?Cv9 _-[ܘsJ__"?36?{W~ٯm\KB~'o_~ߟ??_??_??_??_??_??wߧm;-Y8/~)>~iK!w~Am~4'ٿ ٿ\?s_?ٿ^;9 iB!Y?sT_U?d_!W~5R ~kǿ?5vo; ~N_?m'ᯁ ~kǿ?5vo; ]u[ ,ZkA?w!H=eNo?]Hſ^;ߴx{iRϓ!)OB*\?B*͵σN7Rz?]Hſyп3@%k9^X߅T{2kb?]Hſ߅TB*tů,X7eW-NZ8n7=|t=7ʽ(z_;?{~~uYEO+\ ai?o_7:2VC=i?owgϧUǿQcn>wv~{GVVF¯ߵu[gqPɿ -6֭mߜUKR/Iſ8Ϧq[ʿ &kk`_:I*_?[ʿ 6֍iJeKRk}1T:m÷2-_  U/I$zwq^_~E~=KRCQ(*W$uT~Nu_Q_KRzT/*%__UKR/Iſ*[lN-a_ǿïˏ_.?~]~ ?~u/_ǿïˏ_gmB|vR=9~_~A~yӟ[t,Y)?d/?dz|!(/?dz֟}r\(?dzޕ'ٿ~_w?d6!ٿhЫ?dMxW/ZWǿw[:u?$įgw_n>?Y{"q_T{ߣBw|=1/ ?߅(~u#0W_ݿGc(¯gosݻF=~~; Տ>|`4>?߅}9~Gߧl-v[C}7gwX|'-翯1vx06RUIchqU/翯ڹbga}`,n :wqMx_ʿ j{ e~տ v_ݿ^?sZ UW_k/4/)bs^X_=}0_܃R_UW7<¯wʿ o⺠ï !]vOe~տ ! ʴ¯k {X9!iܿ[|8=SV?O-~7Z|$?o?׽(-&?o?~LC"ۏh|L ˟sX:҇B #G7o[cqZZ~({7GgGg?_>8}!i2}y>{GGӘ*I6%ثB|~ _ޘ7{$D~5cK >Ǽ{_0%$ʞuosJR c~ߦ0%$1YFT3{}?i\~kBKR]~?(;_W*$DW}jņT}H}%$Nߒ+Iſ^;įB%$mx{e_s1rj/ ~'Q>wkі7.3ϒmH=%?(~7z߮J_?m'ᯁ ~kǿ?5vo; ~N_?m'ᯁ ~kڿO:O[;tJᇿ 3s+Rz._ ?]Hſ~v 9wl3@U?]Hſ;?]HſZ?]Hſ w!J<9sU?]HſB*m߁_ŧZ?? os/F8>$>W,%_ :ǿ(3{k@Ou~_;@u~!_9$usuwgs?חYbʠ_1>0~'^_gqVC|Oݿ'gOYNû濴$f,[lR??K]{=?wҲUz zgiI9siuB?| ?MC{oeukwo/޷0Y?'_s-!^~N_CO?=?ꮟ=6,n UW9_??_??_??_??_??_}kBQ>Rݙy6sPžF_?ٿ^?wY8`qE۬ ٿ~=a?CoK%ᯁ ~kǿ?5vo; ~N_?m'ᯁ ~kǿ?5wl[>S?w!I럳xCO?]Hſ^?OϿeqPᇿ LʷG ~!~J w!wø~ᇿ W~Rk!.~='ڿݻ[|&B*ͽ|]Ro]yO*.߮JXjq%=i?ok'-NY<{YZ~~co 7Db ?:oԉ_o{O$|v~ub~=~~>6׀_VF5GG~ ~]?__kǿQ'Fwm/Xhq,[l[-nO۾)TKR/Iſ;m]-XJ߃JU7X[zWKRs!}G,^ʿ 6ֶҲ I%wW4_4{vKKR]?U-coӲ I%؝Gm[?>OI%4F;|M(*W$uT{sDŽ_UKR/IſT1|U/I$ xNywC_KRC{8.R_:I*U 6֚4o3/_U/fqŝw[3?ǿïˏ_.?~]~ ?~u/_ǿïˏ_.ϟ\G?ٿWB|),N ~_ ?Cz!'t1^xMw?Cz?Cz?Co~s'ٿZ?Cz?Cֿ<[xI!~~;ݻoY:}]_}翯m/S_;q~տ>r↠ïW}A{}7YܜUW>#ʿ UW_>}!~_U?*WoL۽>mǗUW6 zuچoseZVW_5R }bwϕGr:r/F]`Gr.}+ywſ U!r]?o?E ^+v$?o/Mͽ ¿?Q7oWaukk}?c!iܿFt?o?~#7;C ¿?QkkB;c~'e!/&9tC^`|fHŹ _O"\{%5?.z?ȽzM=+[iN/ ~'m6ַ-rI*m!$D}_Jcꮟ%$s>~?(ѷW~?(?/ߟgzP?KIoo;x^m/ ~'3w+Iſ>os_{?)y +KR3$D}_* ~N_?m'ᯁ ~kǿ?5vo; ~N_?m'ᯁkφx0S%߅TCa nR4T?w!%wW0H%߅T^?ᇿ )Wy~sOB*U_ W.௟$?w!_n.;-gŜFq۟߁_YwY\tៅ߷oe\B z/6}*ǿ?yQ z/\~u/; z/-օ8a~_g7lg?w W3殂z/UsPW?~=pk*/C[cO->wKI}k߼x=R۶w->(_Zl{ }s;K$M^ibcw,΄?1-kqŭiYݿ\?/T ^[VШ~'jI~%R??K˟=BR??Kvma_'qj_COQytҿ_/-կnNۻ"Dٿ6I/Z¯sǿ~ǿ~ǿ~ǿ~ǿ~ǿ.^G,^ ?C~[Aciׄ?C[y}j~B>Q ~_ ٿ^?m/~_ ?Cz?C!ٿx~߮J_?m'ᯁ ~kǿ?5vo; ~N_?m'ᯁ ~kڿ:Z|l;KQ?w!ie98*.>U?ᇿ m[tL~.B*_X OB*%P_}~ᇿ 'w!OB*XT?]Hſ'As~B*t 7-NXx]Z~}tb;SVFcۉ͏ǿQ8gbi?oT7CO+WǿQ+(?o~g`n>VVFm'??d:ƿΏNv6VVF¯ߵuXQ?d/?dzaB!wЮ?d_!W!ٿ(O'ٿ*o&ޱ8mq ,o$60(m~ƿ_ݿlZ?^vZ_}z[q¯}S_}yOVWǿ{={yi!~~_~KgosO2ɿ:[K=jq<_ʿ Ywؾ¯Xʷ7=yo[zW~տSF{&v=~տGR͓,ʿ zuچoseZVW_^?UW[e/z\;_NcaPUo׷1<;z߽ !>%Wvs[C|O_=}zT_bU/翯%PEBWz5<-X\i⪠ïW~78wu]SW_޿,Y,XUWvͿTa\"۲ _¿?Q7d* #G דev$}}s?o?/]L]^$j; ˟}[I* #Gׯ}1ۛÿ#m%?O+ۏES/|u`z{9>cR?O{1;~˯-+$Dg^xu^ >0nQ~hm/ ~'?+akOg@~4FZ?O߶??rOV}ϮkaNT}+15ϒy/^zJᇿ }, ?]Hſ^;}øQ?w!z_Jkw~U/fqŝw[3bחw.XRW?~ua? c&? /}7 )>_go_bYW?~sf?m=~_,~_go>iY_=~__go^whW/rbUs?^ ~wrKh:_iI?b}ץ ,V?WVōbM$-ۂ͍\?k_.To~=Lݿvl.G|Q]?sC{Yc2M\ïY{B?CyW~9gR??uw~*?~ǿ~ǿ~ǿ~ǿ~ǿ~¿:oX>y?_?ٿg,>3;ef߅J~O?Cz?CO?9b{=>?CoQ?!W}~_Cտ5R ~kǿ?5vo; ~N_?m'ᯁ ~kǿ?5vo; ]w]oXdq՜Nᇿ bXXW?w!m+-6OB*]6k,.X=ωT?]Hſ~5 ?]Hſ~~*Rz._w߅Ts l+ƿ*B*V4B.߮Jg-Yki3B ~ߨXg[GѿgǿQGѿ* ~ߨY|nŇ[|*??{ߴxk`i?o׽}# ?saVFkGei?o_Ώ "?||??ʿhai?)[M-ZkAɿ -6֭m{*%_->q.𯷱6[\bK/I$ 6ֶҲ I%Y??4hO6괍+,. :%_E@[#I*u/ʿ &kkh*%_oYA%*=KRo->\(*߼_:I*U_T~þ}O$uT{:{{CTɿ F*k- eKR!^{+}.0*Woק{*%3a\?jS0}U/I$3Yeq0/_ǿïˏ_.?~]~ ?~u/_ǿï_?,Y|b\}l~E>S)?d~/R럙_??Cz?CƟn鳵_P^?+]K!7΋,[Xៅ_ܿ_m^S_U?dkx38'įgh{7Bw~oGѿ]?+įgms/,>S!~~P_?3_¯Gѿ~sW篲ݿVWǿ7{^?w*w|um(^GRWǿ~׏ӣg~~; oؽá¯g׎r¯_}ݳ!a!,_ʿ -VӶoN*s ;ǜTWmtW6o9ORk)7Zl =~տ3'Y)*:+,VZ\UW,MA6 ~{me~տ/_ʿ 5iL?oZz_E[;6n=~տG~{ϻ:mcy/翯m/SBWΟ?T_TKUWz2P~ q粮ML*Og*O~Ny+*_*^wք;iwcoJm^oGa7'[C7&o#>v]?:; y}ͷߎK^<&mOZ~(FZ~VV?7vm筶eiS/,4C k/H/,[y1meiN ~o=7}bŊyׂI{v?ׯ/Yӵ3xߵ?;gjI?{Ы{_YOos/_?0%$.#n~s?^bܗן]k, ~'Q9T۬,Vi, ~'Qu$DCk%$sI9|^ȒTR?KIT{a$i7~]/~N_?m'ᯁ ~kǿ?5vo; ~N_?m'ᯁߵ}ݳ!? :. ϝGJ.f砨~ ~Oϥ4~PP߅T{&hRa #~'w!OB*=_T~?]Hſqה?]Hſ*[lN-i+C[B]_? {W ,sݻW/-!~_g^_oqc{_VW?~uW]b¯ L!y?lW_<Yݷo y>K_=~__ ?n/~wsCʿ:7Ә7X\mqmZVWɿ_[aqjuW_?OŸY{bA߿ߖbŚ~m~4oSōz]_Rz!m'ǩyTiI,n >+濴4_SR??KswcPSJTvus6 cnqG}-}zaqB~^$R?KOs1m/k$g=.=_CO?_9{¯sǿ~ǿ~ǿ~ǿ~ǿ~ǿ. q->,_?ٿ{4rP=?>ŧB!kh?C0 ?Co{P?dz!ٿλCկ>?Cz?CܿԿ5R ~kǿ?5vo; ~N_?m'ᯁ ~kǿ?5vo; ]bXXW?w!%~bek-.?w!~-Ε-Y|C(߅T}u.s RoG.ߋ'w!~*?Ro~DCT?w!Resb.~/߅T5B9w-ޱ8mqFZ~ۣ_ O+ܿq_Fqq7UǿQY~ 7}(w O+WǿQ~ O+g:{~7*70/:7_ȏ_ =?gG_ƾ1|+-_φ{^(*v6Xq_:I*mO _uŵ[,J*%__]G𯲱֤/4-_}|aЫ*> !ׅq_:I*=_\(*m!3>xK/I$zbC_b_}A~{6m߼_:I*=RUKUKR/Iſ9~]~WZl I%WQ=~ׯ{*%fxŸ17_eKR ?]wZmq.?~]~ ?~u/_ǿïˏ_.?~]~ ??C]~{E?Co>J~_ ?C;U?M|lŻ^w,>Wu>}u~GݿGqw?u~a1b?K߇ ί7/{E}WW_E}WW޿__}Q9oFWuz})g, _?j%=qί{6wY|\>}F¯sBWZlX>翧=T*&jkҲ zf8ᬍ_3r{2,.N*T?Uo4 zsTz ocua¯!WGHU*^b*kҲ z_C_gk z_ckxY_=CR¿5!c{*;Um]=ׄUWvͿTa7>CYsǿy{׮7 wo;ޯ_7wo;o?TȿKŏ Gr.?m'?v|T:B]*~N/,,nglRv:?m'?_/*mɍB=?oo,?m'{ś,nM۸1-߸DyQBյ~?CpY(ٺ՗幫+B{?}笾7gף gI?pW) ~'q?5ϒ_7W*$D}Ç$Dk7B, ~'Q_6YO|{ %W) ~'Qy/YO5oq\_* ~N_?m'ᯁ ~kǿ?5vo; ~N_?m'ᯁk gs@(tRF?{HT?]Hſ^?=~^(߅T^?ᇿ W.O'w!e W~s 0g*RK._w߅T5?$B*Ub]wZmq.?~]~ ?~u/_ǿïˏ_.?~]~ ?%"skKIiZX,ULUm~'jI-~}׿O^TiP?ƿ^o ѷWZ{Qb]/??{w/Y{B8, q3U˰"Q*,^Q@PDewޫu B*yoWS]Ss|>C{s_}ݲӲmE\W0s&;\~C>rot[~3˭wE19~WK|v{rootM}stFy0s5s8V?(?Ǐ]oǏ]oǏ]oǏ]oǏ]oǏ]51>hr??^mͻ-\k@?g@?!W?+?};SLN~M?!W??\Ļďw鱇Z?F ~Co_H/]=oO?~~7{߼߃ ~7o৿y?=oO?~~7{w+%òF?~]L;ZNhbE}۔()޹,gZ(~zyN?b7'~]LFďw1Qߥ((?b7 ~]Lvk৿y?=oO?~~7{߼߃ ~7o৿y?=ou}Xhxgӱ[ZXG7MtD߼]'(ſڎtcYc9oQ[V^f|4M?d:˲r>i&J)ro|,GoD7M}t4M_7VQM4Qt^˵v]QG7MtDo(~o(?Wڱε/&A-&i7=nro|@ſۻۛ=N?ot%?VoD7MF/[[XNXZ0?~\?ŏ?O맿_/~q?~\?ŏ?"-_|oZߴXzק,|@ϖkkhr?u_+hr?󗈏?Fď~?!7'~CoQ?~w㧿q?~w㧿q?~w㧿q?~w㧿q?~w㧿q?~w7sS1yzKsq??keeoy(뿔[3b>0o[D+ k,Y6q)7g6zee޲>?/FO>۲rzQ}r#F+8_?J}չ"?/?鿯@_o7?Mן~}jo*˿Z(;gYVXPGG_QoB#>~ůkY_G_!7gH]EG_[:t}}fy]Qk_?=oO?~~7{߼߃ ~7o৿y?=oO?~=I]ڷEǏ1g#gb'zYǿPL{ɲ.K3%˗ Mbݭ4Qi_+&*&U7MF9i3t{%(Mbi/ KpMbFyށk7Mn~e4/fbi1Tk3o9উ_L;|y4/f1k7Mg15{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7oﺿ7`נz zǏߛH"?~]LFďߛd=4w1?.&JD i/o(C j(?b"W?DobWxQ-#? ?ŏ?O맿_/~q?~\?ŏ?OoWeF/oZOױrLYEoZ'oǿ&zel,&?߯Яm,ct1b۵uXY[Go_w[k77oS74Eo?x)Fy0Z[pgur;뿘9y sY?<O/ǏɿǾWLim[oןO?~7O?~7O?~7O?~7O?~7O?~]7]Y>jŸirr{7?~C5߼>"oǏM|{MQϏZ3]z3?!z:ˍS?!7 ~C{؏?wgo?FďO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃~oXiwaYǏj7rjǏ߯b{Xw1Q[XZt_6y "Doz??~]LF?.&J??b7ww1Q۵߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y<-[n|QX,,{-Ϣ&i7,Yn|@ſnrr,?/~FzHFzee}y-E_M\SL?{n Q{1wZvGG_kF?0?]J˹3(T/w%br{pq翞ABu\8?/^?q>ho~,?/KX(t--Q7&="g~P1wx_1Y_aeeeS}js}M?}ǭGG_QiE}_O?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃Oמ/fFVY֔׷rέ?Jڧ||?Ōٛ޻Ϲs WNc]~MӞJKݾ1*:XL>foyKiϢsk1T6 ~bXl,&?k(8\1T-b6 ~z?gǿYQ?? >o?/f6LO{WMڧ߫Oo3Kk_?=oO?~~7{߼߃ ~7o৿y?=oO?~-)&%Iǹw1Q_Mݖ>?~]LFďWזH/w1Q{mc_}0'~]LF?ibFďw1Q{q>hb7w1Qſ2o9n9b9aj~_/~q?~\?ŏ?O맿_/~q?~*˚VX)/!뭖ul) Q鸛IoeeSO}}r˅Qr׿Ӿmkf^L~OٿPzuD_C)&৿ӌ7?߼߻߼s]Qm?fWرVo}Oo~駿yͿuE}viƛaoxcmYm9o;Fg_n\ ?a/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ןn[.\nk}o=QN^"?G~닋ɿ,q?__srn1~S}鯟 H뿵ll.t?ןJW.&NN?⏾_j˺zt?ľ<};⏾_ull.&Q?1XϢt?o_cYc9ρp_k৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~vudUdso~?i}ػ/!ۤo~/- NJ_n?Cwe19^Cg~:Z;}vfqz{)??=ߛwyp70%r¿3T^pu{??}^Mt[}\ϯ|?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7oY[--G,',W-Ï~\?ŏ?O맿_/~q?~\?ŏ?Oٿƾ>ײreeuOٿվnib/&?⧿/seSy=QחcK8~weU19MQ=}E}㧿Ǭұ9"⿞/!otO_sY??d?~s?~;Ǐ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ?b=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼?l:brr,৿ӌ7:v&<]~7{w[Ew_[LM_UGwOG-NJɹb(N3OƛQ?Qm?f.߼aoxs;L?otzw?]~7Jf>_errrr2᧿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q_%--EG_~ۯ޾nS^GE/,&^l9l9j9VG_~ۯ}?_n?ow7??rbr{7oY_L{i:u;CO}:]:ܵ ~:r߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~errrr2᧿_/~q?~\?ŏ?O맿_/~q[y؛,8~!Q>~"?7eoQw8{Z.+-(~tލ-oywNb(~*翛}}w˽,}??d6z{1Yυ/!s>⧿~O߸?߸?߸?߸?߸?߸?߸?߸?߸?߸?߸?Go_?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7XG,Z[Z~;x_P^NFfV7o{,{~;xcZc9<~}Oot{r\Gww~7XOƛaoxߡoxW;JK}Oo~駿yͿҎue}y}Qm-#? ?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿-[X.,⏾_fzeWy-mEGɿ,ɿQ?_e_l(t?}}? GG_~ۯ?*9onSG_~ۯ?k`1Q?8MX_=ޜNIGG_~ߝ{Oc H럮ce19=⏾}߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?uK{pVO?~]PE"/!crQ}ߵ ~:ӾE,,߼_GyX~3ڏk?u׎Xdk?ucտ;sH{/!7?z.k?uRw_>Xe|_n?n?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=wVyq UO맿_/~q?~\?ŏ?O맿_C﷯XYXo~}Ťé $˅8>w[hޖqJC:Z:"_n?So[rA+y/!ӱҿ97u??dr:N]⧿O+&]NMQչCɹozE?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\_k৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oOƛe@1YOo ihlF7xݖ=gQm?fWرVYY*~;xs;L?otղwH~7܃E}.viƛl;ߡoxs;L?ot-w}Qviƛ?=[~{wt=Qm-#? ?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿//\frrq}o[,,8O)wZ[q?_m_l]L?㏾t{i1wX1Y+t>}obr:GG_~ۯ:MgYVXVq?O5W?y?㿠t\L΁t?׿{V{t?o_cYc9㏾}߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?uFε+&YYLSO?~-unl*&￞~K%([k?u.c]n[Q~OinOK뿢h~=M{sH_CW/o+g ?_rʟ>X1 s_n?ߙ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{G-#? ?ŏ?O맿_/~q?~\?ŏ?O맿_m_m9Dz㧿R^v&f|O?_^bt=Q -YXYqt㧿~=Mב/1E19⧿E}Oٟ΁Ǧ~s?~;Ǐ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ]oǏ?b=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼?h:d9Rw1YOoj9ϲѲ.y?o}Eonoq|oN3XX(~;xWÇ߼wY֗B7?߼w~77@}Oot(N3{weW1YOot+-Z,Y[--G,',W-Ï~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O[Z[GG_~ۯ}|㏾_&z޲ò| Q?s՞b(O{XX(p?t{aoKyt(OWޝgQ?O>۲rzQ}o_?=oO?~~7{߼߃ ~7o৿y?=oO?~~7뤽W(b@ٿ?O7󖵖 Mwoxs^˶>o;4_,&gviƛ?[w~;xW(N3onzaoxcSL^{uzy]g%Y[--G,',W-Ï~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O﷯XYZCϵ[6YVYZ6GG~띖uot~O/T˝,gGG~zθ;7??__s7GG~߬=0=Y^JiE=~n?׿?ct׿4lgCW߬]no?iWs+~o_?=oO?~~7{߼߃ ~7o৿y?=oO?~~7g?buyt' ^'OlKC:n z]1~Sy-dﺪ od)^vv|w?_$~?7]7_Zu'c~7gO{Ǧ=\؝ytޘMR=2P߼?[zecyӻo_~7gO:_\>৿] K1O?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=o/[[XNXZ0?~\?ŏ?O맿_/~q?~\?ŏ?Ɵc˙Op_k_W:V[ε to,yAك ??}Ӳmn/i\1͙]Sn/!?F_S9rFQC⧿G?9cG{Ct??~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?~\?ŏ?O맿_/~q?O?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃ ~7o৿y?=oO?~~7{߼߃7n;>b3KCƛk]8ǿo?7om+&vml) Q󖭁m.юuFytZNto;wi&ctۡKcg5]?~vXYiE}xJQOFY^WDۡKcg5^bخ@oUvECjuD|7ߥ|,gY@9f!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!BfɥH.Y2I-P7\'}%\#yjɟJ>!Y+i:w~Ǐ?~?b;lc}%%yYHϑ3+$z>3KnFri?K>$2s?*aӾ@?$;$KZm_g:8wqj%?~Ht!= ta8{M70N߿B!B!B*w-D?qJڕO-Q!LIgO8Ւn=z^Ǐ?~O&9OwqcGIf}^>ߒf?֢aI[)v*{$ՙי_^I[eK!|t}Ǐ?~Ǐ@?%")=d~^r乒$QJdTGyzKt?|FG%G$%OΧ%%$45=D|}$0} p$1_zDjڟ$$8[$z7J"}}0 0gVw{O!B!B!]㹅|qtuWPIja=#]GKf@_/Ǐ?~Ǐ2M<2U/yAɬy_*ʿ֢ϫ_Ǩ~}qIt}Ǐ?~Ǐ>&cCKK(a"i/him'HST>3oKm^)d }uIt#Y={1k3$J^+t %]%ߑìk^!k%ti} a&Urr6};} !B!B!|c4u6v*gJ3=e6]ŦyٟetyM]GJ{2U ?z~?~Ǐ?~i!}{TX~%Vmz}__L4+)UomwT;$%iCے.ֿt}Ǐ?~Ǐ9<c_P?%㟐HҴnɏJ2ƺ%M5/Kϵ}>n><ۣIr;%xqKX9 tWoFj$,ܴk%ٷ{ߒ}a&Urr6};} !B!B!-䐤qu;])1[ȳ%mBLJծʗ$m LlQYy]ʓ$]g@_/Ǐ?~Ǐ2M3BҶT]$ydV5['%maQo?<[*~~}_ŒD_ALI}y]wv>~Ǐ?~?r;X $ݷ$?&=j#DDvt?g}\Hs~A,I Ǹ%ŭ|,>t=6%MQݟiݓG?w$4i 0 qf*99{oaB!B!Utן)ֵWFs I.Se}vU>/i{/e1Ȯ3$mv*#6z^Ǐ?~O&-䙒==a%%g\/iL};vɬkl-缷qȍʯﳛfl믏umǏ?~Ǐ?~79HJ'+yDydDkt_ ݗ=_,=d~M} S%QHb}dD:G{k-zkz]%+$ZWM#dGJ.\.~:~.3ӴoϯKtߘKtOi=zK/;UK%oŒuݷT>}~QrZItG{J7$Y1 0Lę߫m^wB!B!BHWEi{op*=]s_I~li>2U]GHG/{oIY=/ Ǐ?~'L㒶=]~H?_~VI[>!I_"i_nrD+_Ò~}ߖ~Ifo;]?~Ǐ?~v_屒}xtJH~H7IBG%O\ }^4{e%!i/W%+%P;3Ht +$ϳ#Դ_P>?'$gHK~gT$Jt?Zߴ_󣯛z䝒WIta&Urr6};} !B!B!|j4çqf2*%i{TkuTIju8]u/=2U%?z~?~Ǐ?~i㹅+iWL/JJ>YbkQ垒~}t[oV~}֧%mhyYN?~Ǐ?~os*\)iڇG^6ۺ%z;ga3W;~C'B!B!3͸NOgwU-i{'e/~~{$+[$R<~Ѻϳ>t|}!^I5Kt1"G|~AM0 0gVw{O!B!B!]+,i{}$]u{Jv*z̮YW&i{}-֥k:C8?`rIY=/ Ǐ?~'L{TI۞~]on'Jf]/iKLKqKfa.QrP2+':I[2Un^rdVqǏ?~Ǐ?i?B $c>M9Cr?/ǿ>ݟ$ϐN3J{>ɫ%M =I*h\gk:uqG:/4>Guy٨[$/QJ>>K $OB{yaa"ά^%'|o =LB!B!Bʝs k{}MkGs yqi(IO@[u]GHiv*'sg@_/Ǐ?~Ǐ2M~`<9$sghn!_q>'dVU8ݒYuK.S3};$򷝮?~Ǐ?~O}uqu} g{%gKt}~5B~źQu_}L9?'Y>?M=[{ ݇G_CudD?gml|yTGVdd,&D\,T_7% }1 0Lę߫m^wB!B!BHWklG_s3B)i{eo4磯?}i%yi}=k$:m\GՙK}TG_g99zc2%_ݴϯ:,?'|^&|8κV? 0RYJNަz~?!B!B!tC㹅L>TׇtB*i{_TuϦqotu>=΋2U,?z~?~Ǐ?~i{%i=QMʿ֢ʽ%mHtK%֢g%mTm%򷝮?~Ǐ?~O}`.>uݓr{4:%i3$?J}-HD"}s|}ldŸ>f{1ǨΆq|iTGz MY7{bDN{]/Uߖd1ga3W;~C'B!B!B(i{}k:\,i{{etץUG_յ]GK$mswL$]g@_/Ǐ?~Ǐ2M~x<Iv* ɓ%s472U>*V2+[*WJu{..[*_>?7Htv>~Ǐ?~?i?ã'|Β4N=K#G_?t|[%?!yOm~R& ίK2?}x k}|qoMNK)}(| K%o49a&Urr6};} !B!B!tyӿe|Hҵ]G풶mMҵvU~U8?cگC8zi~m3z~?~Ǐ?~iB~RҶH3'Fs 2U/}ʯ_OwLrdV{{>"ܽG2+8Ǐ?~Ǐ4~иN!PrS$w|aTgWsd\tɽ$w>|T%H0OgfA䩒ߕNuu:zu Lch/=QgI~]Hyaa"ά^%'|o =LB!B!BFs ^8}sĮE8z٭/먢ci{euT+i{?~Ǐ~Bs ymOOe~Ǐ?~?v\EX&9.ѽe1;I!ʨq2*_ƹBҴKs-y$D_$OIM }X8sƸHrD}>0sqOcA{qTGoO/?)yD[ӽtog7IϑD%/B 0 qf*99{oaB!B!U=[qt !8et]Gi5L}M~gq.T9$?z~?~Ǐ?~i2.TyKfTm^wJ3%V{IN|fWe:dVqǏ?~Ǐ?iΙ1sh\} K:{u1sx\竣:u#jrH/J/}{*YIq&}-eIZ>Vҽ>;b\G_uq}qFuN;}Gu$zߑ>BϏ#^_Ӓߒ~Ǐ?~?_}{z$WH>qv|~Tg׸XW>BGuy乒m!yD<ɕ$!}~A~Qe:_vtuqkFun3Qu>6#ߓ<[R%ϒz]wOIt!a8{M70N߿B!B!B*'%mk]:=}2UKܮ^q4t̮I㜰?;Xls9$0&ؘlr066lr49I rN" o?UOo~Os]gj>fYMr+++++Hk}<Ÿpφp ԕzj{6|sO?5gjXjk`͟s;pP]tW~W~W~W~W~W~W*^8+'s| \w4oq2egw ppFn6a'8v,g]kψR>sQ2zE??㚰>vK`c8.ޗQT*7V]W{}:*o""""""""""Mlqsڇ8 Y< oFYL>\ŵ[Mr+++++H6>ONuٵڸ׹5?+4n^W~~w}k~~YPW~k5G______J~P|E(5/m.]ψR| GpQ=8&՟{cq@xYL/vW^[ _=9GswC@RTXu_y*t4!j27Esk9tpI^563* N04 ʯʯʯʯʯ/"UlUڎtsN7XZm^5`\ M|5`ן2PWg8cܚ N%uV}_______|S[F@#]4Sq?gsG.>qp& g2scs{f==l؇ L^F\# 48[ l ,0h8.9x=?auM{xARTXu_y*t4:ڇC /FPen M?T?'~dM_`^u@_P~W~W~W~W~W~eH>O7ʰԕjsA:qM]g"X+(ԕf?'wok_W~k5G______J~{Oq"~E8^Fް *JRƪtV_S_DDDDDDDDD)_)y۟Mܘ59Ah:?zk9Ytfk9t_ /(+++++T=y?'8VXs5- ks-XFuu/sf^[>ʯʯʯʯʯʯʯUs 3ˈ3df*]4Wp^tef+/]@qlw gl\۳-3%= gSs{R󂞃g87i'dѿs{'5/3ARTXu_y*t8>ڇ M?k~y=8?a׸h ?RT*UgV_UV' 7pPesWyοA3#44kڧ9BV >uu!+++++H*Ua+uY KϻkssaXwf?'z;o(++++++W9|]}R_pde)]4^q=qe%Ᏸ,s5+g\ 7rPHހkyxn.ଡדvq޻}a=L!e8߉י8#HRTXu_y*t5SgN_FǧsnTe4El9u:ι=<~p/0k mJ>\o59Kky9&>p+[>ʯʯʯʯʯʯʯU3qѯUF9ed=8gڇM^F(k`=~'<06}Ω=zT*JՙWUGz~7g&M?_/pM9gOd\tJ_BW~W~W~W~W~*8+`}n p(ԕc2'5G߫~u*fu_!~ +ʯʯʯʯʯʯ_%jOjnOPFOh2ùCXs38n?p?_\ܻHgaϻx<՟sx8gs6!՟}vM?7_RTXu_y*t=yx5$ǧ"gM5dN{u:7 uY(^Z^{zrx}=DqMRT*UgV_UV'ׁ>7s:n:4g+Q}i/h:gϤ_BW~W~W~W~W~*,[mGy?'8_W;\m^`Eߟpu_kwָNz[>ʯʯʯʯʯʯʯU"&.#~?h2zEPMZFϸh2b(5guZ+.Z+̬ cu{3MVFhl`༝S<Nk!X os=ZsN5X\vpMJR:rJrT]?Wڇy k9tt kC9FX E_____E<ßV]dE X/ `M+?}$ WW~k5G______JN>H.qˈvqό6H#⬛`{8x͹z.839,;qq 0/ n ˴%pn8/,~ RT*UoޯJiu:U}Er:ŁSǧ.cS,~r&\ lǹ6׼A_ρ 9_RTά↑R_?*U+O$~!-tYk9?<N5?yKẝ9u.z}Q~W~W~W~W~W~bնX\, {g\b}~?!+?\[h/{d\{c?'{XW~k5G______Jkgr` -WSs8· ~=[s~RsVp_|:x Rs{x!A0ll;lSsϙN#pJRTz*>UTy+g7pЯ8cyfH=>uqnL /d8{pfrp2\ Sk~9f2,ngt8z?W[PT*UgV_UV'ӿI`$`3*^D>\EM_]r+E_____EV`} %`{+ 2Xq\O TWVk>`he+MZ5?p-PW~k5G______J~q ;D^ϧ0} `vlŀsxRs~愍a6|RS8ǘ{qOyvs'~YIܧ>*>nq.. wm<-5?qJRTz*>UTy+ɉLQF\2:9B¯.~H=>uxcJYs>X =?/Kw ;alST*w~U*oQ^"9GC.ZmEc?'x Ͻ6kZQ%ToBz]ʯʯʯʯʯ"Remo>O72#ԕjjk98?3`ϵUԕsȚN0+ʯʯʯʯʯʯ_%?Gÿ9_w8ח?a>LK33z0 , gpNḡ{g^gt8pCߙ:8 "5ZaAXx &jnX8iX;)RT*7V]W{}:*o"9MPiaH=>u}k~5?WԩǧW-G 8['5]]$Xs9Q[34ί:gARTYU[~TWHNNp243gkQ=h:?pݑu\u.z}Q~W~W~W~W~W~bw>OGڰԕ6j{Z ~3ksS- uzM > uV}_______]8sws.~? l kXyg큳 sl6{kds->GrV);[z?_` vvWv^s/cT*JUU=r_N[HNjvHI=>u|l,?|!qᚓ .} EEsWz>>uyJR:rJrT]?G?g&MYچ[h:?qo,kqƽ?_r_E_____Eߖ<ҟV=>Z3K}$\ܯk9 ߭\o6X xy@]tW~W~W~W~W~W~W*/3#,e'=>y9pgޟ V8gX Ƈ0 LKA?Jq?8.B߁.՟א{ +,̰ ڮ 2,5 pJRTz*>UTy+i&y!)!>Hp=:~.p62S39ZNO焩*J*U}Rur?Dr:zA9fX OCe!ẗE/k ky_BW~W~W~W~W~*.[myʙ3{+?CˬݨgOE Xsa"X_u>܋m(ԕZMQ~W~W~W~W~W~W~寒ߋy8skOgѼ;{9Cf8Sր>y/ۚ8/p̤ƁT?p p>q?98 -/_5Kkgm ÚRT*UoޯJiu:U}Er,ʈOǦ\u)??H=gPǏM~s"pN(L$q~F#X| eCX=>3@RTYU[~TWHN\56>L5?ڇs.o^X s'Ed}~,jz]ʯʯʯʯʯ"RŪemO>O9fGX_Zmܧޚv= 0+]LMsMTKs=׸j+++++++g͹#*>oɗaBX R}pF ׫p^PjO7N~qZN~>? p/g9?#>̩RT*UoޯJiu:U}Erˈg*y?ϝ.;!skQ·[ڟv2|*Fh|'~F}Ьǹ'Pp,@RTYU[~TWHN\q8Xpm ׫48X /Q0Xpj:HgN4ׅ\/ʯʯʯʯʯ/"Ulӝ9q uݵk~E%p&LEXs=sHʟsO7+ʯʯʯʯʯʯ_%o`w)8{R?gLTF_sg.&k%ǹFk mT*J]U[~TWHNj9̟`j>9@h:?pO+k>eM_. E_____E5V~`}n `O+*X F59˃538g +5Z˚{q=euV}_______缝d'Ζy5y2g [O]DOh*TDi31pE5<' S p>{Ip$\gC{o$>fUY`X>1+„0;T*J={Z~Nr>d~S@3@j.b`@8C8_:qWWgX(MZF|ʯʯʯʯʯʯʯUf?g}9{X6^{X.zqE}R}~("y؟EG3hNT?\83^g\>?yDRT*UoޯJiu:U}Er[΄YRO8Ws9.H=>u<5秮ed=IIムJPT*UgV_UV'ӟ؟\j}xt~)#k94yGNNMu!+++++H<`5 ԕ59Gh$p +Z5N2p.2PW~zy_zo(++++++Wɿ9̀3|8g||up.@KspߨQ | oBwhB=[DB?\v.Zoڊ5R8""|qaj5 x.JSDOל3T*JUU=r_N[HN 5'9>?L ><Ϡ感 [_Upδed=>! >3&\wz{}>RTά↑R_?*U+O$xXΟpPQNp 4{kiẚsC`?'_BW~W~W~W~W~*)[mǀy?'86A]w/vN&+?l"pmPWZ5Msޗ[>ʯʯʯʯʯʯʯUs[8LN:8QD}~WWxwpv" / Wkn &r2&ra}_Ds8lj"bJRzc~U}~OׯөV/YkST*UgV_UV'`õ%\tV`yџ<M__`AǟpP?(+ka1h:] ^_______DشlSή9hO+îXsp pJ]&g=ŸpİԕN-e?:_ Cj+++++++3'Cjp,l 'A/d'׍9<g¤?pgװOa$bՁ3>>՟9هv&t-|\D>hTEğIq^WE\RT*UoޯJiu:U}Erl|z|D07p`n kQRO?s?ƌ_F\+Xʈ{LaX=GT*JՙWUGz~t88} hq׫pP?`s߮ס}Ǫׅ\/ʯʯʯʯʯ/"UlQ7>PWk~Ky &EPe43?\X ZuV}_______laoRvs 78/s~v"*]iMTq;6R;hK}aT_VwrRyisO_ ̟iARTXu_y*tu t:>}a1gA\S k\W' p:`=z'@RTYU[~TWHN\o5>;4vX AvezYŸ,M_u.z}Q~W~W~W~W~W~b۲v,X uZm53Υ+ZdϵR u_S z o(++++++Wy/"pn*90NJj/2OZFHZ.xag p 87kp] kb>~1 k=4؇?n| *JRƪtV_S_$>e?CS05}p :~.?(XsMed=.#k]4aTe;gY? p;RTά↑R_?*U+O$\`9i:V`s?'8ϵFSg?'`s?'_BW~W~W~W~W~**[mGy?'V=07ET]?Z`??'X, uZ x[>ʯʯʯʯʯʯʯUs&?aU\MNΐ9ցp(gz×1Y4vpи.Zxm.אs~ aa,E`X6 +' -M n~)@RTXu_y*t}8gXRO uz=WÃz|p&)#1.}8kƁuڇxkJR:rJrT]?ygvN0+4v,X so,VoA/?#8}Cz]ʯʯʯʯʯ"Re>OFp0ԕksgA]5x`q[]o"\s!?o(++++++Wɿ98~Ù02k=XD ̙8]ކ3pR?`Y!5gIX^E!5?w1`e<V ^/w~gß*JRƪtV_S_$ Vۼ8 (9>dqp:~ pX w.}8g2ESѣ.:+ጦ`0~d*J↑R_?*U+O$9l`3?'rj;}80h:?gp]?g>ʯʯʯʯʯMe0>O `/+]ns< u_ʚZN:p?E&X 8G(5j+++++++K?23Ny2;n4"=\WD/0Rop# )~jV8R0pstY@hZq]-)=A yM(*JRƪtV_S_$VۊoT`I,9w@7s_G_㯸gE.g=uz*k'nRTά↑R_?*U+O$'}sl:YEȟTcc`=>_Fp*X\ Mu!+++++H/[mǂy?'#\!s߂E.XO a hsappO]tW~W~W~W~W~W~W*9˅Rv8sVj.ʰ'pg\Zx0H|Լ)\5T}`Aj3p.Д06gk=%ᜥ.x8{YA RT*UoޯJiu:U}ErlS'at:SOΨ9 8ڟt&z|X?E87T*3+Ty+Jɉy->ܯjfh:5E49ß MF X z \Np 4ׅ\/ʯʯʯʯʯ/"UlQtuN' {@]`?'x+]jip<5 x_o(++++++Wϙ0° {C p^pq=7P^K9flL"Y 8אk2p\]/W syROyxU*JUU=r_N[HN\5?\:8עlOh8 BcseڟsfQ.}.ǿue=>GMצRTά↑R_?*U+O$'-}\t~9 }^Lh:(3/g?'9`Q\[t^r(+++++Tej; S' {C]vsF<u_믬s-us8J_uV}________ցvU8V}aEE4 8gf$ps. /A?r ՚?KÜk3/p5] p>},p;*JRƪtV_S_$,e4/pN-悕0]#z|5'`?.}Fh2Eg}㜧*X< } T*3+Ty+Ji7p!>sKi:Ven LOQ0Xp41e=®E_____EVi`}n  PWAƽs`uEXs =V?EìooBuV}_______O]aU8韚/W&ܛTo?פ,MuRNڟk(#/]kksw>zax }kT**Ty+JiA7p07Xl U9+ki h:>kp.X \st^r(+++++T~j|t3NN_Zmc3#IژOE2XO քas+?_zk9H \TW~k5G______J~YJX&S3>,o:~lq&ϿF8 8knc[4 S ShLM`zfhJq>3Ä\;ĵUw x8χymT*J={Z~Nr&-[m\25,ǧOZsQjn}z|Y@Y c=/#ke\T.:`(X<\k> T*JՙWUGz~48p`õ+@.Zm;?9t~Au,>{h:g{ϑ`h:] ^_______DXlr}\oY1s񧠮k1ϟ, \#u?_i؟w ڮʯʯʯʯʯʯ_%j/ <Ly2#4p0Ιq\Rs~R|ᜟ!5'D`<9ǩpt.9/(\q۹xpG ||]C*JRƪtV_S_$YV۲0ǧ\S2s .zΖI=>u= g&.#w\ʨJ"E?5_HRTYU[~TWHNwN94c35g[N423+ڇ{qR?#཰џlMu!+++++H, |Vc3'?5w8 ^l_.\ >sZYL?hSDO0> Ha!5wJRzc~U}~OׯөV/te@(a Y 'g:~<'@I;gw&x}8}n@RTYU[~TWHN[NН6?#X}UX]FuD>k;lF)X 4G_____E{lVh^;B]t`?'XPW~X/ 6?.X? >Q~W~W~W~W~W~W~{sx yƅbs`N b9/vH8 {q; p>X ӹ"z 8gp^гk$?O JRTz*>UTy+i6p}zTV8nSρT(/h? p>Xr6kkiJRuf~U*oQ^"9Y^k9t~ΜY}B?#}8h:6kQ~W~W~W~W~WkնXܫk;Xs> ׁX `u_`IZ ⚟yʨ췕N(#PW~k5G______J~~E-+9]z| OEğϜ"⌗L8ki8 8 (8 8o{0 ?}8Ws.^~u|ReN?ECnǹfy8z|ZeTW,#<՟JR:rJrT]?〵4`L5$3=ڇsvs׷Xpv T{Bz]ʯʯʯʯʯ"RgXÙ05?΂+m 6]uYuuWWTYuV}_______UfsQg]3&"EQ3VkQnp28sp]; ;P|/eq &" ^#MR3xM.q✟k} 7.JRzc~U}~OׯөV/Sն pׇo=>1>.8υ-ǹi2yEE} ˈE^k^apJR:rJrT]?kl}Rk{75}@9g X| \ggrٳu.z}Q~W~W~W~W~W~bvXsa#ԕI;R.'k sՀk~s}`<ܛR[>ʯʯʯʯʯʯʯUTsE4>/]ę33qM)Es?=8gG]^T{ Ꟛ  3> gv`={X\Oz0JRwW_UV'/Ekx}K@YmڇXqmO?#}Fsj:gU/qMt5ׅ\/ʯʯʯʯʯ/"Ul\ s~8sf+?T} ڒE6Xsb𕋸{`u\)CuV}_______OWjngug"b\ h"9T]3gR?LPF\4EYtѸe*#>3X Ó06T*꿻rJrT]?ކC}VXοV`~ M{9t~2묪qu!+++++H([mGyʙ?Gԕkq5?ץ|\3=6k9ݖ"yme+ʯʯʯʯʯʯ_%?x| *\("Eu9EхuA'C|ܘ0Y:yA[N<+H #6p  @pT*J={Z~Nr8eq $)Or= J=>uOqMQ]GC2YGPF- 'g`=>ڇ>T*JՙWUGz~}ǖK\tk9.tAgd3ܟg?#཰ẝàu.z}Q~W~W~W~W~W~bͲնX',_Zmʚs~^sq+$Z+5D`YE\UW|ߠŸPW~k5G______J~ΐE( ]9?qM"6`o8ggp>aj> k/#=J5<p>-g\*JRƪtV_S_$Vr03Ǐq?Vk]=?`H=>uxngڟh)#qέES.5h?>\}ߞARTYU[~TWHNO}JtMzڇvs]=`kϑg\e?ʯʯʯʯʯt~m^ F XZmo5N*p?砮\c.Xsmj0,=s?e^`uV}_______hMaE4Rs^-"uEǧ,]t@q 6p8\ / y>*pM> ^\2\y^缠ǀ8o'rϹp | s^p!T*J={Z~Nr*[mLROO 8_:q0R>\gr7p_*ka2L)g.b^OzxRTά↑R_?*U+O$/V`?'F%XlM纝&Np#4k8}34ׅ\/ʯʯʯʯʯ/"UW8<]ߟi?ԕm \á}Vk)9YVYp- [>ʯʯʯʯʯʯʯUs.>.rј"Eo.tg?g'׫p>̱p-!6P:Y1$X_"չSǹףp5M`2EU|"|뢾e4E qh"h T*JՙWUGz~4h>/sܟkkܟM{*܇kɟl Mu!+++++HCUTy+i}fI=>u|6SpgpӐz|m π൲<~edf)\{8#zs\ 2T*JՙWUGz~Aj{ }xPh:?l>.4.3eõ1A?#}k{h:] ^_______DXlzx|+03@u_리sq+?_ 7(++++++hOhzqFL.ܘI\yA3hftE{3. `uDpq= > r ~zq-pˀw48+s<~0JRTz*>UTy+ɩj[8{:p/0-Xt< Bṗ`?^_h28s3s-# 'Z Dz>JRuf~U*oQ^"9q.!i:?}>`õ7tڇE_____EV!`}A]Vۛ`93\s OE&Xs\MM_ x9ߩo(++++++WqQxjχE46}i]M"/"጗alg!p1 g5 <εU0 x^W\3v bq Oov?\JRTz*>UTy+iҲնL@}}Rǭ/q}C\2.Jՙ?wed3E#8z1x}x>#WT*UgV_UV'zk?Tsgσt}v Xp](+++++t̊ 9A2uµ^k9b_`YʟPWWZ:sPW~k5G______JV.tQ "E<>("̙\c"?u .gWpp+κ ՟3y&r#h2}VDx"{Õ.Sz nv+<ýp U*JUU=r_N[HN3`2XR-.z . xq>=93g2!zEwOsx7ڇs~T*J]U[~TWHN?ڇX>F'~^AfQy؟ s`QBz]ʯʯʯʯʯ"R>e,>OgÆW+?gΌkW9O<#Kkl+sk{VE3X ~\[>ʯʯʯʯʯʯʯUs˂.!5}RZX8_ha "ΜIaq|xଛ`b9."W?9Nl q>ϓ01/H8_{ JRzc~U}~OׯөV/SƵ" 4:>=,:!p- Sogz<kˈsyk>0MEEYᢉʨ\E*J*U}Rur?Dr=p]O?N%MOes?'bM>hg7 MZsڇk΂E_____EMVۡ`} u+jR}سEá\7XO jJ=+Z53Kj+++++++"ZE!,p0!, yA\;<YDr(\g\ Wu|qPq=D. yMe<^x 8[i(A*JRƪtV_S_$yVۚ0pnOZcs{S&<kνL$qq6KY|"ޣ1.8[3ڞoڇ+T*JՙWUGz~u>?gMM?g ku\Es`=XB ${1<\[v]VpY5zuU{ܾ}NN3]o1'Λ5P#kx:q:?BBTaLhq~O7t}<3 RhxXx̥y? ZuVO L]o>bϭqp-x>7GI$IJ*:9);R^BdҲbA0`>OX`1*^Zsb/Xf/LeZ'O>>y|b%IT篪Hy#IW9an:큵 g*kZugO$]"/////B*W6ZT{T+-Vw>{ 59i`HK],R:///////U3{V0f ``a1XyV3p7 38Vy25x`"0X,%AXY@/K֟< >7^dz6ԑs Xsէ=[Uw*{̞`Ji`V0Vijfp n:9< b:5 A/ %/ia3o^8b3^f< >GhI$IJ*:9);R^BdbXǧj`Q(/{+ vy <x`2`m0Z"0[|Ozy0'V_$IjO~W>?q 59z*u0sf_kxx.U:Vu9c%BBTa˲X`nx˂mA*̟3 ucyVLs}~#//////_?gs c"`S??X0f-p}3<!aϿs:n<+/t`qqhfqeA_'?36?#{ |fb+k>$IyUts~WSkw}LeҠ bgˀT//ż+c U9sV:s`m Xۙ/4m,>$IS"UϏ$u\BkBk%]LX{/TX)>״=Zy6ٌeZ:Oy)\gem| Rտ$IT篪Hy#IW9Y ukKsтkou΄gxgf}ufn7p-Σg?BBTalhq~OWu}Wy? c> X$ O纩#//////_l_V|y:9B9uι>9+k 3dnπsc.Z2X'}A:ڤ78`m 0k/k~$IR{*WU}+O{zk Zl8XpA?vk\wn XxFn~rȿ˿˿˿˿˿ ̜X>}ExTynZV\5tgR:///////U/3{6kKRg>F꿷f#A*Xx87:ߪȿ˿˿˿˿˿˿W,+?Xϊcu /0V`}%3p U`|Ղ?\/ם ~Wsu3i`/ ,| LRxX30q$ITϫsr_#U/DNdU0/XĮV?XW<>'/[Z713ϧ/֙ޕ`AXۙCo:qM($IԖU)r}~$"'<gxYxn5-:7>s@?pXp sypTS.}!Ds8~O-X R纝OUkK\ϓn,\3̴տpϼE`|/ 8V X}13G0χ3/h"{1A`^PQbĵR$IyUts~WSkw}~6\ ZYkTl3)XL8<{7`meZ0aL\$IT篪Hy#IW9y[\a3pJS|@rc䩒50=@wc'k]ES.}!D6/-9?# X>ukN.σTg,0g&0 5WܞQgxmA*<+3`}WA*V]G______忊XyP`C 5Xnz=s~_gπW1y>>30g). 3f\MbnOx=zދ@b9B$IyUts~WSkw}Iтgr-c0S[)\(xĮ^ZZ9K Aoʀgx:_ec,#I$=*R^HRǕ'DN>FYlxF3Jn 1 n\25xfuˍkus}p}<\UT ~_______QFC{f0,7I=xpJ*}XxV<7m lTyv}<<ۋKʿUuבgs6`>b ss/:Sf04Y~hca3,XX 읽π;C`eX{?"X-Ni[  bEAN]$IR=yj=~펔W9lXp}>>5V Z" ]/e2`mpu>-ӗX#EY*ub統$IԞU)r}~$"'kՀΟ\F[箏iPyp-MoPWyΫkw!˿˿˿˿˿ !Ihts ?V4Z0Fn1s}縭xF Z#3 >[Uw*-s 0Y1f\{ Fu#}7lEfd& fl*=j~\Cu }9 8lX{p8B`XpP0b}zYI$IyUts~WSkw} \iR? 8wĵ(c̬ZT'- kdML eNHUg25B2 I$r?UEʫ_Ir {luxׁfZYs/+ky]Yhyn׿y?;q}<+`?LJYsJʿUuב/-8  p/v`|O5SUl 8· X.}gXU|`0ڧ}7\7:` V_$IR=yj=~펔W9lXܨAX{,Oq]>3yM>?e= ?3k'Ecnó̸go1"vf(}ux^=>$IR{*WU}+O &VGkyV7F#f4֙ykw!˿˿˿˿˿ !59;ti;ۃTGi`wy^OTpcYXOxTs|dOuSܓHߪȿ˿˿˿˿˿˿W\ v< Qۀ3e~,og0yUs0f`"Ps~;Ĝ$p,8'f_?3`\ZA,g(`f3-#$I$IQWE?q aϢ9pmI?l6Z<ux3n#yV:k>?Y+k)\\?BBTgrX]΀3TgY_x^̟ZTnYOxVe K\]j2P˿˿˿˿˿˿|u0`0G^f:S]?Xz5>yN<sN+8 x=σ`38X Z\7cK$IRwTU9]Mǯݑ*"'ӗ\3 XĮ SX3Sp]kc|\ keca:gSEk`m7X< $IR{*WU}+OpvZRuhQ%#,n<\wTW7Fρ8߅\///////2eŶ=]m R瞩'?:=ȟ)XxV>nsܸ= b%#//////_?3a//<׀S8\_𜲫` 3ab=g*`*h3Gxp18pb='/Xs=u_+X;f qMb`m I$IQWE`-0 bC=39܃';%0g'L$7e-B\! $I$;*Hy iF 5`{zk \gu8us]u/kE`2`qE3isn`I*m$IT篪Hy#IW99u.Ϡn=kxhu~u}< (NuYiSki\ϸfn~rȿ˿˿˿˿˿ F]{:g ?4-=Pܧ?G{>`H 7m}mT˿˿˿˿˿˿̞18ϳ?0_\ _9|A >s;47 XaS8|]9qf^ij5 lm4`>ϒ`=`6}vKfI$IRwTU9]Mǯݑ*"'S]kg ϟ1k}u/S v}Oqs#kX'kot'7 X^|?q aZgdz-T5<_7:>A&Agv'kX{uOE_____UXl~OWs}<=HтgKYX XxV3>q=2 KXx!oUu_______WI!ߙ t?p_3pf0g&1?Z{a'580Np\1z\Mi_:xz8ΗV\{Ɯ(f(>$I$;*Hy F a ύ]k }A3aZcF;kZ|kdm `3-`^#c;'-?)=E$IR{*WU}+O{ZINn|XLuA{u^NuOE_____UXlX]^3π=Cp>Tscj s{ʿUuבtó}O ɀy5\X ̜<3kr#!`@QLp+`c6a}α\ xb[s\{t΀c?`q V_$IR=yj=~펔W9l\׍ĮV̨YXX^̔~ Įs|qnQ~no5-^:?>@^he`3?,J:3)@.}!DRg2`T_ˬs}<'ྐྵTy>J2̥ugpz_7?煞L~Į/΃|WπguYc=:@2P~XH$I_U*G:?!rr?9X^]3`k2cgUP9kxz*qbPT ~_______Q1e!=]TڬYnTgscY Xxjf0  ; FѸ.+#//////_?s`x6_'|`9.{GXϒ`K0XI$I_U*G:?!r¬]3`y#3|ux~ٲnLoAS.}!Df_`t}<ᚢ?Tv}<w`P*ӻpԮg%56Gy>A}\ʿUuבy2X;a|0?r|X+sۀX2wkf:X}^Ó q?X pxGXs~x=ۏ;$I$uGz^Ք{)r!rһl:kbڙ'u&Z k}vbڙe` O:=de,qY!c$IԞU)r}~$"'Ӱ9 ?{ Ò89ηg#`9eu۽g:`3?BBTaLhq~OG> =M[]**H7 1 R_+s #//////_?_3ǘ;y|b?1o-7OA,gEXl x3db?ˁX^ 0` OXte``m,uxۙ$s|/sYF$IR{*WU}+Op_y4P^5[fs\eǯϻ>c9Wlf@/8  POy$ITϫsr_#U/DN--\2 Į+ހR/)sapO\p$ITϫsr_#U/DN2 Vc:9Į39pxX3k~?y@}x/88qs 5dñe9%IT篪Hy#IW9>kp=FL u>AyUZtᩒ?BBT3tudz|snϳȹ*9XxV3>6+RGfϜ%ųy_R:///////U3{ge͙-y4X(osxe=p  b9?6ǂi6 x0s a&s0#8e:a爘Ľ{;$I$uGz^Ք{)r!r EZ"u>wbrzk;sԟ , Sŀ`9C X?+ӔkaRb%IT篪Hy#IW9yOR{s{ J^nG0 J@>>U^?BBTah`xN#  \L.f1YsX50+T>s\l_[Uw*?G <x6Iܛ̓w 'Xp=3̜`p$sp?'a>k9;{sb\L'I$IRwTU9]Mǯݑ*"'F \ >־ VUssx]kgV03Sgv sx3s!kZ-|/:{W^$IT篪Hy#IW99pYg0ߚk\O H\;dYfu?5ef`3?BBTaӲ(`x̴9u;O_3=>Ž8 b?$IyUts~WSkw} VxןPE)p3xĮ_x9W33s?\_2Bvf+1ZgszI$=*R^HRǕ'DN{uƃ5̙ɀ쮏g PmkxFZGuq}<߅\///////¶e =x׾ k>){\s\Bn,<k<RߍK`}˪c˿˿˿˿˿˿ Sx6LS޳ pf2=Y3ǟ 0χy;;k'uAgl`GY=E&x2gBa~z }82b&ä>p,hf1gù)I$IJ*:9);R^B@9 v}}V玘,]kzΙXSk;ZX `f83 X\8&_7J$I_U*G:?!rr?ku9\`3aͺ|1Zg}5Qu?5:>@S.}!D6(-Zg>8ϽHR>2Ycϛ #//////_?g2p`E{by>̫ [P+ x|8¹){" ~/?#.& nzC $I$;*Hy p}`]?>C`=`f2:v}Z9f20X9'aYKdeA{an69I$)WU}+O\{:p}:e,b~.|M`,8۵/`\p9߁:g{:#b^.<_4p80;pp9=0/~$I$;*Hy Aeź`C ]k_<Z`q Į?>0[IUsz̆Rܞ*g-<$IR{*WU}+Op4YxxfSw uu}<3s ״Xxvu^óYTVR.}!D*-6x0Rh~%#5E< n,<\7eap]n,<\+e38W:Hߪȿ˿˿˿˿˿˿WyLW*gey2CR'}UyX@9 n'`3p x0χҿGq?sGk_;y>] ͱp8W3%I$;*Hy yFa*+`5'+k}ׇpn$v}s \ùMYsNl^LovƜ7%IT篪Hy#IW9yuؗ{k\npZk\̪?G :#\Rn~rȿ˿˿˿˿˿ ktUdz vP4Z yV8dS͍gu`?)s|n =< EʿUuב"ř'scubOa}Q^Qທ` y[:`^#} 8>/1u/lgp nձ ( J$IRwTU9]Mǯݑ*"'Ky{ހbg|#q-$I$;*Hy sfUss|NX9BZk}õ*96VNv9XxuhCk]n~rȿ˿˿˿˿˿ ۔'58 sϹ{~kƳRz-?pm^h}?MzG\w6}g[Uw*_f2Sk*0|_X'Vs XϺyX׃#sG։?pX,G+ %o^u> k),u&Gb;s 爬DRYK$I_U*G:?!rr?:ޠn{ur}<\Tg?_:\3w!˿˿˿˿˿ !qhq~Os}<'A +'].ςTyϧvzT˿˿˿˿˿˿ܻ=V0sY`s1g\ya;k^̋^-S{ |=I$IRwTU9]Mǯݑ*"'+X `$ۭ9W&3Įsu9[sNps3Ĭi eεU<|rΏK$I_U*G:?!r}LkL^3Y{ Z/goPf :]w!˿˿˿˿˿ !0l8X># ??XqZ*+W%u6s=H.R:///////U3S90O= L80#,0/qx8sx̀ú9õOsf^88qx\ 8w p|*mb&2 /Ĝ, __y pކïfэE%|o$I$IQWE3xĮ3yu)|s=@:g1c@:V*39V$IR{*WU}+O<{Qlu_Ž?xu9e\Sds9Zgw!˿˿˿˿˿ !chq~O7s}<ZRKe}LKz ϶|Q GXxV\gsoT˿˿˿˿˿˿HaV03Ux^6snwzgC>,fX 7{K@zqbp3{ָ_LV̵pkWRp=h?} _K}a<_>#//////_?{by;v0G9){Wf* `;s{jop\ ;XXp΍yMskE k9&I$r?UEʫ_Ir ur}<\Q߻:C\PXxuk[k \HPT ~_______QfT?07??37̀@: wV%)6Μ7T˿˿˿˿˿˿p"л pe93EW3O٣\x^ Gf\b\Jv?\yYXp]k(sdf%I$I_U*G:?!r?X}Eū93;༐j8']om0Z*i:}WX0YٜgO$IjO~W>?q ]9V:\_u5u^3Xxu?Ž$`uPgo^1uOE_____Uبl8Xk> RhPV7>7E?۬ y3x_K{>V׻>%%#//////_? *?sހ&Ž9̷a^͢ey8I0!\{9>suÜހ3S{xg}z0Wl|v0c{-`u,H$IR=yj=~펔W9`>־Xpg,ˇve>`WZiKk;0;U}f g2`m/I$r?UEʫ_Ir6`su_ƽg!`3u?ڽgYxugϪZg w!˿˿˿˿˿ !ihq~Okw5*;Tn3`~1pR*\75Xs*{_,w(+]ˀ,#//////_?PV;218KGf_7?c_z{(o~ƾ)̒Yʀ$I$uGz^Ք{)r!r[bڇ-׷0Zkr3|/|KX;1?yu[a}ul5YYy8hì'fK$I_U*G:?!r5-Ӱankx:>@yNiZ|wP5;Y t\{c^ #//////_?Oy̥i0g3{ʾ+ϬTkv&xpcp3xn׭ Glj\-Ss0;{)eZU>|~|&,\*3}v՗$ITϫsr_#U/DN\ kk;x; vsn!U>9༐9%-[ۙĵI: W&)$IR{*WU}+OI#de{ Z'U2k]O!+aƮn~rȿ˿˿˿˿˿ <}O`2sf'Rh]ϳs_3X/?2ùJΛՑdUu_______Y~e)Ùp?/<{2) ژޮ#`p pG[2y'44wVX{x:^ñeK*<` 1\?$IRwWU9]Mǯݑ*"']pNgxŮ37̚R"yb[Ys:̨9\v΍0k4g;3W\/I$r?UEʫ_Ir ״+kuY=0dz5<k;bPWsu߅\///////¨b`w}<@P4Z p}<̟56b:9sq]*l/+]] x_R:///////U3f,V~.̇!96afe99<gf=\t ;i:zǍ9< =z7s9ϱ<"л \u;z{|"eyxK$IJ*:9);R^B䄙{Uڲ-%{ǽ`l1 8`0`8 6L~3g9'{zf:o{kIkϛ~,zz%QA y9Ez~~.֯+'?OӮEz^JZ~v]?{c֣/$3>qz6'G?;WH\.kzR\z߯kë?c[ῇi=znFsXxL]Zk](Fu#sY%_;;;;;cZ81B2OA}(ӌ^;m߅ǔ]}i_8eXͯ'j3ƴ3g=ZV=-ɟNaJUWt}y}a?zm y w ;_n8:߯ BҾ@>&Q$^:# s@/|$@=u5A,zXTp\.UW9qշ=c~y;{ IOZ&$@?JB-zv]s}zt?j|}UWH^TA?J0>>r6Ϫ_-Uߪq63=\FMYSN9,zVǔQu~=gJ!GbO QBZ1ejZ/w~w~w~w~w~7ƴ5qӝc>?˄j:4ixL[T+JH?i]3ZuougA_iw~w~w~w~w~w~wZ7c1c1SL3 WO'ºoxAu`CFp~IH{8^@ir!۳Rg#tFiPZ@a0L}\.˵yVj)V׏˵U1c1c1llVęfN~2 B<넴o )/#B5?<I  z^PZB}ztDAzm5'z;A_i=_E|'\.kzR\z߯kë?c1c1cg9CH92G zZsgiFI2f\8eB^jq_Zru!,T+ڪ1c1c̦8n.%)z*t=GIZOWv}V& ]O֣{k0Np\.Y[_?.׆Wc1c174[!z/GH99YVL3녴/ )pVV~=Ge6#H",p,|(qxL}?m_c1c1f`8 !IzCf֯FxGhWHҺ[{ i z}냅5H󈾏*9EiUWH104uTA}r\ͳWKqշ=~\ z1c1c1fcGit!稺ωBA8RVL3 i-!i_jsW\< =Z ǢBKzj}V=o1c1c6 ęfv IOZ*@x*y> 네'?(?ۣ{])l#>? \A2WHqT{\!GW(-r\ͳWKqշ=~\ z1c1c1fc"4ssTsXaxZo2ʹd+c5^T8esIUp,ʼ+ͯ,$ͥZV=o1c1c6 Fęf !Iz+gf A?I|<{nTo:S oi} -KgYJ,KeTO\AWp\.Y[_?.׆Wc1c1Yg9OH9a1e^8@8GV~ޖ+61e +赫_RHNxLIrZ Ǣ̧B)nAUiw~w~w~w~w~w~wZ7c1c1W&$/Y_&B iOE<]_x_HWk]Fz K=hoAsҮ~D3.t/ ].˵yVj)V׏˵U1c1c1llts緂srPG=TO ǢLKsc ?ZGYUkU+ڪ1c1c̦OL3^~.,Z`izM.rT;!Ik D<%BQb!g2_gh!zka cr\g篖o{~\^~c1c1cFusԤ}~V~Fϕ61eԣ}"T+XCH_ύyXz=j92넴u%@/SZ{kc1c1lL3! ױL"BH8 IOZTHPҮtoj{ =&= i׿*+T˯׀r\g篖o{~\^~c1c1cf8i?G}N‘B1zM^byZU{ i?zNHV~7II2IZV=o1c1c6 t=?dDHҺ^gJ%@iE<>^7*I  w kq]ݷ'gQq뺟ۓ֓ zXr6Ϫ_-Uߪq63c1c1Ƙ^. )sB8CVL3? iS]Ay_V9X9XHXxLUOcQFI2zu'=ZV=o1c1c6 řf\'o%t%~= QAIҺۣ]_/w+:i i=7#4PX(^FoO i=:qo  .5?R-ڪ1c1c̦!q=WBW 'z zN.t 7>Kiק {i=I2MtvT!za֣VIar\ͳWKqշ=~\ z1c1c1fc{\$u2g  AiFu6]eSW ʯh!m11eABQ] i>Kz ʟjq~w~w~w~w~w~w~E~c1c1i0!4>CX.l-į-<.|"$?iAA?T\av=i^4K9ԙv=igIr\ͳWKqշ=~\ z1c1c1fcs@i\!z/赥N(ӌ61esPzJ!m~=J=/τj$PX$9EP O?D{IÄ \.kzR\z߯kë?c1c1c:4BQ )?_ di{!mc%F^x2!<̡^mPφcQu\!mW9?:ojO[8;;;;;;"1c1c4CoOwZ`?UC--$?i]Zx\$].L{}l.D!G5n$r\g篖o{~\^~c1c1cF@H92 zͩcj84ۤsxLWjEX j(2-97ǔP㟶jq~w~w~w~w~w~w~E~c1c1iwiAF%?i}O0AzQZQvqݓGەt "!zIt%=7Ha!a3Zk~"\.kzR\z߯kë?c1c1c99s_ǔ;A9VV~ !m~|&\.(T+QϾB?a'ZuTO[8;;;;;;"1c1c4gCt'O7{$?i]?QO iLH+"wA2Rg>WZO^%r\ͳWKqշ=~\ z1c1c1fcx,uuxLKs~_GfZ`)?z [wjE='m1eYVkñ(GJK2ύ?m_c1c1f`8JaTH\A?R\g z)=o!IO z+,] ( JBoa;!'l!]>0,֓F _G\.˵yVj)V׏˵U1c1c1ll3͜#U-uP(̧BZREZcQfo!m!1e z>B>&<% BZ{kc1c1ľ3, zH'z#hTap$?iA緬EB¶BZs/B;(WQ(0^. \.kzR\z߯kë?c1c1c99' i?GսkN_yKH_#z_Ix[VXY"ͯqu_z^V_E=*mcyV7 8iw~w~w~w~w~w~wZ7c1c1!RHҺs֯ז*|.$?i]>|TK!_pҮztϜ]ݓG Ni׿* +t& ?DrWKqշ=~\ z1c1c1fc"4ssԟǔ9FGP1i_SU.Aʯҽv8Ak8eZr )󊐴/SZ{kc1c1l>zȣt=%q=>i|֣s /PGAYJ i=c*t#rmUZUrmxg1c1c1L3oOQǔ9L=g_ySH2z jE=&mn1eZlz j.2oO+ j֒?c$W+ڪ1c1c̦8n !I[ ˅j*#^XHcGB^+-z?A_4+v}}TAM{\r\g篖o{~\^~c1c1cf8̉BQw )5tZ2ͬ$>|90x?ʆc-;?ܾ(>$NZ6&VݺN))g'0N u^uwxÁ_?)̨s n(ۓCIo}j^'Il!ǻ9 Tk80*_`Rց907̾x-~00?ܞr(c;&|nדae7K^? <ܮzMƁa6;mϛwn/ g-hz_C]h-fx~6|7pexn-{8?.xoO^؀ܗ{p@֯ *pepLGN80±{8T]_6߁w7`=yw _C~A!aQ-Kw+}7їI_F_N_Aߋ7}JWH?~0C迠~(W5_poGЏu<[7 =K#zL;;;;ӻлһѻ{{{{ӇЇ҇чGGGGӷ/܅+}7їI_F_N_Aߋ7}JWH?~0C迠~(W5_poGЏ7̷ m46,=G1=OoKoGoO@HDLBJFNAIEMCKGO@HDLBJFNAIEM߂sF_J߃'}}9}}/}+O_E?~ jK_M?W鿡A?̲a,OYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYeYe91k9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c9c91ƿe#1߈FI|#1߈F7bo|#1߈F7bo|#1߈F7bo|#1߈F7bo|#1߈F7bo|#1߈F7bo|#1߈F7bo|#1߈F7bo|#1߈F7bo|#3Ɵb3ߘ7c3ߘ7f1o|c3ߘ7f1o|c3ߘ7f1o|c3ߘ7f1o|c3ߘ7f1o|c3ߘ7f1o|c3ߘ7f1o|c3ߘ7f1o|c3ߘ7f1o|cg?ooo{ooooooooooooooooooooooooooooooooooooԪa;jMoCsvN.n^>~A!aQ-KwJߍ;g={җїWM߇/}?UL9/迤J} E?#&sf]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`f]`3垡uYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuY)0uYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYuYY0\.r\.r\.r\.r\.r\.jycުrV7=<-4dLzG76^[~O-Ӗhw/ivxivxi=l=xi=xi=xx:逧x:逧x:No46,=G1=Oo=Ŏ[G~# O'{ ^x³g/<{xwxƳ7go<{>xӸ>x}g<>xVYq7̕xVYg%xVYg%xų/4ų/}g_<Ͼxų4ȹg?<~xó쏧qOg<xdz?³ O㮠³ *<³ *<<<9xs@<iܙ@<9ρxs @<9Oަ9Axs <Yg5QWYg5xVYg5xV9xW=xs0`<9!xӸ7!xsC<9!xs(]s(CP<9ϡxų<|<9xs><x.s \<x~i2mYzczް2zްx.s! \B<υx.s! \"<Ex.s\"<x.s1\b<x.s1\<%x.s K\<ϥx.s)K\R<ϥx.s)K\2< ex.s\2< x.s9\r<x.s9\ <}xs܇><xs?܏~<xs?<<yx<<yσx p gZг=< EzOyx'< }}<x>|<x>!|C<χx>!|C<Gx>|#<Gx>1|c<x>1|c<dzz<dzz<dzz<'x> O|<'x>)O|S<ϧx>)O|S< gx>|3< gx>9|s<x>9|s<_x/| <_x%/|K<_ϗx%/|K<_ Wx|+<_ Wx5|k<_x5|k<4\%6,=G1=Oo2zpo|<7x o|<Ϸx-o|[<Ϸx-|;<wx|;<x=|{<x=}ֆo<}7PKhiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii)Mm "،F[m}oJvvvvvvvvvvvvwDE6lS;&bG9E8Ϥi|EgNgNgNgNgNgNgNgNgNgNNs1pppppppppprѕӕӕӕӕӕӕӕӕӕӍlnnnnnnnnnnƧ{tttttttttt4>' #=9=9=9=9=9=9=9=9=9=9gs9rN9S)s9ƧTp*8 NSTp*8Tr*9JN%SɩTr*9U'Tq8U*NSũTq8՜gTs9՜jN5SͩTs95Ƨpj85N Sépj8999999999999}8}8}8}8}8}8}8}8}8}8}8}8ZN-S˩rj9ZN-ӗӗӗӗӗӗӗӗӗӗӗӗӏӏӏӏӏӏӏӏӏӏӏӏӟӟӟӟӟӟӟӟӟӟӟӟ333333333333333333333333333333333333333333333333Sǩq8u:NSǩq8zN=Sϩs9zN=333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333sbN̉91'ĜsbN̉9 '$pNI8 '$s 87pns 87rnȹs#F΍97rnȹ33?63333333333 MLLLLLLLLLL4>{nggggggggg2g2u999999999S8S8O™™™™™™™™™ʙi|vTTTTTTTTT44Nqqqqqqqqqss73333333333g4>pggggggggg6g69999999999s8s8OBÙÙÙÙÙÙÙÙÙ˙i|\\\\\\\\\<sggggggggg9g9ɞ999999999+8+8O]YYYYYYYYYYi|JJJJJJJJJ************jjjjjjjjjjjjM87qnĹs&M87qn̹s3f͜97sn̹s3fZZZZZZZZZZZZ::::::::::::zzzzzzzzzzzz-[8pn¹s -[8pnʹs+Vέ[9rnʹs+VFFFFFFFFFFFFm8qnƹs6m8qnllllllllllllιs;v9snιs;v;8wps;8wpllllllllllllɹs'NΝ;9wrɹs'N]8wqŹs.]8wq͹s7nݜ9ws͹s7n={8pùs={8p˹s/^ν{9r˹s/^}TSk+ج md9z_Alsq[9[9[9Ͻi|r66666666vvvNwssssssssvpvpvp޻ߝ]]]'Ϲs?sϹs?~9p|8p>|!C·9r>|!C·9q>|#G8q>|ssssssssssss1cǜ9s>|1cǜ9999999999999888888888888p>| 'O8p>|)SΧO9r>|)SΧO9999999999999q>|3g8q>|9s9s>|9s9_p| /8_p|%KΗ/9_r|%KΗ/9_q|+W8_q|5kל9_s|5kל9^{A[dY6~D^ۜm$| 7o8p| 222222222222 ************)(lbl`36kCG6gBN!S)r 9BN!Siiiiiiiiiiii)q8E"NS)q8EpN 8'pNp2 'p2 'p2 'r,'r,'r,' 9!'䄜rBN 9!'䄜q"Nĉ8'Dq"Niiiiiiiiiiii)s9ŜbN1S)s9ŜN S)pJ8%N S)rJ9RN)S)rJ9 |&6c6mz6g~rN9S)s9rN9SΩTp*8 NSTp*8JN%SɩTr*9JN%SɩTq8U*NSũTq8UjN5SͩTs9՜jN5Sͩpj85N Sépj85^^^^^^^^^^^^ޜޜޜޜޜޜޜޜޜޜޜޜ>>>>>>>>>>>>ZN-S˩rj9ZN-S̩q8u:NSǩq8uzN=Sϩs9zN=Sω 坳M/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/J Z䷉-ج mdXذwko<-k₂1 :/?q3G~iϗqӿ`c"O/h_E2.__vm\ ^}u?*du6b6k&g .]vU9>/eS+̿Egܿ<_Y=Y833?ゆ*__N|sk963?s&3?& SgMWz饗^z饗^z5la?հE6lS[lKlmf̶lkƎw+,`l'ڟIvbivagYvcy‚?ve+?6c6mjm-ls–ٖmmN?O$S;NS4;ΰ3,;αs<[;N6>E^:E6lS[lKlmf̶lkƶl{vlgvlwV*[mkl/;c;N?;N ;β;γ.Rs.dW_ڕWjgmvaw]@?6c6mjm-ls–ٖmmضmo;؎lخn{؞VJ[eme 'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~dYOF?.~2'~2'~2'~2x3nj1}x3nj1}x3nj1}x3nj1}x3nj1}x2^-ux}2^'z}Td>Y%z}^'z}^'z}^'z}^'z}^'z}^'z}^'z}^'z}^'z}^'z}BO>'^_>'^z}BO >'^ }>B?ϟO' }>B?ϟO' }>B?%ޗz_BK} /%ޗz_BK} /%ޗ }>B?ϟO' }>B?ϟO' }>B?ϟO'$IP'ϟO''OP?~_H?~"DTH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D' aa[dY6ŶĖfmalKʶml[ζlGv]lWv=lO[n+lն Gvhb'ٟvjvigvkv]hgvv]fa+/J+fckgo`[6;.O|A1b-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKWEmRNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔U&-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDKZE g饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗?>>>>>>>>>>>ZN-S˩rj9ZN-S̩q8u:NSǩq8uzN=Sϩs9zN=Slj91'ĜsbN̉91'ĜpNI8 '$pN¹s 87pns 97rnȹs#F΍97rn_ϙi|DDN'r&r&r&r&r&r&r&r&r&q&q-83333333333\ɜɜɜɜɜɜɜɜɜ))'NLLLLLLLLLL4>q*g*g*g*g*g*g*g*g*gg88888888899gΙΙΙΙΙΙΙΙΙi| LLN3"grfrfrfrfrfrfrfrfrfqfq293333333333ٜٜٜٜٜٜٜٜٜ99']4>+s.g.g.g.g.g.g.g.g.ggi888888888999999999999 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9888888888888999999999999K8K8K8K8K8K8K8K8K8K8K8K8K9K9K9K9K9K9K9K9K9K9K9K9888888888888999999999999+8+8+8+8+8+8+8+8+8+8+8+8+9+9+9+9+9+9+9+9+9+9+9+98888888888889999999999997qnĹs&M87qnĹs3f͜97sn̹s3f͜9k9k9k9k9k9k9k9k9k9k9k9k9888888888888999999999999pn¹s -[8pn¹s+Vέ[9rnʹs+Vέ[9888888888888999999999999qnƹs6m8qnƹs;v9snιs;v9wps;8wps'NΝ;9wrɹs'NΝ;9[8[8[8[8[8[8[8[8[8[8[8[8wqŹs.]8wqŹs7nݜ9ws͹s7nݜ9pùs={8pùs/^ν{9r˹s/^ν{9zs[Oy c6mx}ن'nll4>'z+g+g+g+g+g+g+g+gggI88888888999Ϫi|NNNNwrvrvrvrvrvrvrvrvqvqvqs?~gϹs?~9s}9sy>8p>|8p>|!C·9r>|!#G8q>|#G8qqqqqqqqqqqqq>|1cǜ9s>|1<<<<<<<<<<<<'O8p>| 'O8p>|)SΧO9r>|)""""""""""""3g8q>|3g8q>|9s9s>|9 /8_p| /8_p|%KΗ/9_r|%+W8_q|+W8_q|5kל9_s|5 ~/hbl`36kCن b 7o8p| 7o8p\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\68Ml lfmh#ClS)r 9BN!S)r 9M8M8M8M8M8M8M8M8M8M8M8M8E"NS)q8E"NpN 8'pN 8Nd8Nd8Nd8YNd9YNd9YNd9!'䄜rBN 9!'䄜q"Nĉ8'Dq"Nĉ8M9M9M9M9M9M9M9M9M9M9M9M9ŜbN1S)s9ŜbN1S)pJ8%N S)pJ8RN)S)rJ9RN)ӌӌӌӌӌӌӌӌӌӌӌӌӜӜӜӜӜӜӜӜӜӜӜӜӂӂӂӂӂӂӂӂӂӂӂӂS)q8e2NS)q8-9-9-9-9-9-9-9-9-9-9-9-9888888888888999999999999m8m8m8m8m8m8m8m8m8m8m8m8m9m9m9m9m9m9m9m9m9m9m9m9888888888888999999999999888888888888999999999999888888888888999999999999]8]8]8]8]8]8]8]8]8]8]8]8]9]9]9]9]9]9]9]9]9]9]9]9888888888888999999999999=8=8=8=8=8=8=8=8=8=8=8=8=N6E6lܳ09Fs9rN9S)s9rNSTp*8 NSTr*9JN%SɩTr*9JNSũTq8U*NSũTs9՜jN5SͩTs9՜jN Sépj85N Sérj9ZN-S˩rj9ZN_N_N_N_N_N_N_N_N_N_N_N_N?N?N?N?N?N?N?N?N?N?N?N?NNNNNNNNNNNN@@@@@@@@@@@@ ````````````NSǩq8u:NSǩs9zN=Sϩs9zPPPPPPPPPPPP000000000000η8|-η8|-η8|-η9|mη9|mη9|mppppppppppppw8|w8|w8|HHHHHHHHHHHHw9|]w9|]w9|]((((((((((((8|=8|=8|=hhhhhhhhhhhh9|}9|}9|}8?8?8?XXXXXXXXXXXXu8q\ǹs:u8q\Ϲs=z9s\Ϲs=zN\𔭜Mlz饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^zkMUa-u/05%~P󎭼 ֹ!l]BQ"E@!&F"Q>Ș&ZnK}sO{AAAAAAAAAAAAAAAAAC)A!zCvKo=ۙz{\: "hχ^ʈyoSχ*Jjh.߃M+{яd0EY%ʦzclםDb["r3 Ah"^܇J8$r>LQ%r99( Čƾ1gЬC>10f+bblf!f:+9aLb.a确 Yd~ؙAAA/*}ZZxvgƀq>}Uui;rU]QVunuNz㲪U\JgNmy\z:ծ<{S :vkOojc;Oo׷ME*[>]g.Y8+ҼJ^qkbu<'_'ܧ{[y㮥Η\7vU=Ժ̗_qSyS^Hu8*yϝbtp9Gr\rma&A(ZxPWYsh˃h$mȭyy$RkYotz4ܬCּZI|5@ Vb~mQ'"ˣa|kyb{=Mnhv~5~-fkxk6boۯMbn?DD$vt {S?}l3k V~6!]e5k;wt]0WKFzku躶>+i_߸at}lt}nt}tѵ~t}zt}qt}st}~tkt}vtzDGG׎kѵ:dtm>]]W53]]献FR-"܏5uGgѵzitm2T]{$ͻGu:f_g$kYk~{Y|>]?>#]1akѵ_2Y ܻK?GO>ໟ]&/=8y.egN?٣)y땥+o*ߓ;3$k~r8JK_[{5e냹kNt}rt}ft})Z91͌w03-yF[GשuRҥY\ze9yt!</b,Ǜ,s/$ד_HDys::#{U2H>5c*:XfyN?]> <,L]g>sf/%7F+_)etmϡ oΕq]'c wz+;Hz~uSv_=JZ?`rAtc>w~U>S =rcM-K,頼'ϓ6`gsMbϯ̊goMA6ߣ I9޾tCCRgUƾϋF[;b,{|fu;/*U] ~|-;|moݒ'](ѵ. Qgb,wW=/Msh}NuZ1N]ؗJ=&Ov[i{J6KG~z 󕟿|{ل <@~ѹc,3!݄OQO~wH=m{}:so0jsCGc,7'ޟ&/Su}>=st,+FosEUl1+ǍwFǤ.#.=N޺nŹ˒}>/s>_ޗ?qF1ozg=1}8 Og[klt]?.]W1˒_gEl/"ߓ}=/&ǿnL}T%t=Oa_/>Yn|Nv|Emad CK< <잲OꤣKYڀ_+Jz(n]s&{^!b^EnPjcᇖ"/]]o)]os=>zrޒV<Zrco|Lҧ"3Oclocot8^))|IO}yPۥ\|zw./5uuҿd/I"wn>`=;'mb>r>zzmOyė=P|6<x +D7l}^|_kbl[_G-plnCGzDssS?e%^]T~q}G׭sI@ҝV'mW} '}UObs{~o$ϳOIUgj~prsMt*|"?o]<Rm5=~JId<^ſ/:V/xY =&v)gKy蟍:jQ}?Lڥ_Jڶ',N=[L2OJZz=]M lL~Tފ_y}wfd݃~V]q/6W@TǺ$׉Z떼xt*qo׌7Dȫr G7y:|_^)MV=z\o:/J].ƿo*ђePyN/, hMXrjT{+|P䯈g~]pIvqbK׮ >h\MQm <ՏV|>W2* =xcA ]}hk郫{뗏ߊzuћ'?ۄӑ?Jr~|O|/fix\/Go,46uV\ELڤs_$_me{Rc庞^V^eiԚe\yd7՗~鮩_N_:?n/-ogۨvML!s,vTmuIZ{ӾܒSIFױI+Y)t;4o~!cn(yO&}nlցω[9J Fn?1 NN~K~w.!VN/n}!K {AnTӖΙjЏ/$n;{^WVJr>#P3%Wkzk遵uK~[/Wwhﰹz?cTa3t 3/q,1X'IF)>:#O]ώi=^u[GQ}}_!gnDoG7F#=%YW|E~I+w/yܫ_e;V~)?_9;_Я Uz\?%1x}~bo ɞ(%VxjGΏWrO~Zjet{9noūY/ZRO|0Rt#W-r.2J, ?_J9W\VFi/M&%) =_HWW .PoMC~%-ŧ~v~fl5wI%W /1hb,]6/GQkǧ&.Av맰CW-Qu>dE~og<ȯr$f,4ˍ朱9LN@d){,Ngng%}`_Q틯۟r7k#S .\.?UWM $ ?5*L-}~Yy+wt)QFVٽ=qO~_?aS][GUW-_{VYJf<)*c,v5w?~xLTsӢ?ߢggD\cnuY5 @QWccn}K{n/ͿyQo8!KRv 5y?_zr1?^2~ǜ/YxŏF8~5Mմ('Q[u6}oT~-=ȬjIM7OCwoG!Fd(3F3k˱}ZtNϋh~?^N}oޛ+{ksny?VbsegW&:Yca~oCQLT{L#rg뙆J{ʵ_#mcp)[yV#?b҇KD>%}όb?9J$tS+?w݋biҜfQj5vRԞN)c5̯*OZ[|krvc&ٿO_υsۼ>[Y#u2YyIa _qQtB;z7)I yR12,uR[p|&K5별S[ŕrߚ\'[ߟO=;y)e6>fUx'#QL~#Zv|eF Vf2f~(> br_ekTsAb]8-7SΚ^Y_3%ߏ,-yǦi AhY/؀vT6Ƹ S[ѩ#y("ι 7 ~Mϔ~_]wQ[F/[3yu95UM;JO%\*}_ oO2}gwZG޾]C?O<:GȬ0K9JGϣs7*L3OFf_A?τx>^{l%4{sˎEsMTIh)_<>"vVc $`Pm;c'F|oW}mq^<3LW/_^r}K/]ǔ^М +Kx[+F)ՓK̋LZ}L8NG=1yGxKǔ.PW1$~W:~㷻-~7S7Վ'@l_y'IF/I+5zL*p#{k_%I(go G3rqt6{2?_7k?ܢlONPg ɑ: yJx@}K$?{FG el"nL<'.+vܳt*_gjLK\5FN_Ҏ%,/߄/D ؁]i B崎,^Aѝ'\{.9N.H|.A>WJcEž~'ys@ߠ;6{G/MYHZ6sSɽ,qό8NPZs4#EzY+j5A~Ug|g_&j$/+[侒~@ʲαYsUt'9CjLyFי?o݈.R ;&\>9 sx+չӆү =>=?l(!6ظ@sp\Am9)_U֙s!tѥ>u__X,)[3Dkbғ[>O ߬'9hFjH5J u>kX9)oU9ۣr_K툺;;pW~!ܪz\gqo/{Stc(DRGG ,Q%s"}Q>jm=G|?y6|/W\5!+{s.z^Q=?O}u篍qm3KN\ϬMd^A&ak%/5ݥ32.&Ԏ__{_xkӨkE>jQyZtDduf߯_ ^fse@n,宨ECxLKC_:璨ntWЈ^8Ǚw^o߾Tg天=z߿!+_ zKd=)>>=\ю/JcOiK̫޷'L:vXog{amLPgAz5OԚKjr[yVgnա[{\?|"}a-Y .zKqEyalc{yWO~ǽiWWmK~%믉?qhJx}YPƄ0bCWy/Cz ?~_{IүD5grCtrӠeg;g>1ď譽~>~_"[rX2~2w]~ߩ~ʅ{_f(Xl+TMPwIO?󋕏x8њ畽^\Ǻ|ݧ[s |l__uת_>b(l-31!uw, r('~ε޿H2*zAL=gc[]VrK~ϨG'y #݆$Wr ]}ӗ֎ּ|k{k7βbWGLd73,AcVx^EG?|)oMNc}6&?9Mʮ"ng[q#l5g,xV'oZ?Kn$ q/)P/߷f3Q=UVaRn5\"k.WKNyۓ\}˓V30+h"M^x[>9__+tǿ]~,[V̥S>}ۣ0Mu??Os}Ӫ7(o9)6p1̮q/ק+? gFʇS?4ӆzT7/oY`o_l__*z_ǑQZA=ؖ֜QT\ߐOd<6Avkjrb /o4χ~t^vQ1]._{F+i?'*^.\ÏW=o,ب2-nՕ޿ъs[s CZxE3/F=cW20/ukϵܨ=z|]7[j䯰䛿k|i?T55s/ۣ?S}<-lGʙwDeF49/ey\|Q~gVNcPs~Բ-;l3zk3/nDFs ݯMYغEz oڇ1==s??^ҨgyϢ0EQ=;։ׯqE!SF~ȣ˯ǿҤ>{~]/Kq-[ZWC?/y8.4CWQ4_;_'U~)ro>5x"oO>_짯[Τ՚9Yľ^0밽/_#=gտ7g/YHT=fa1M#;~?ڻQ}腦'y?ղ˪][?z(.ֲ|~\m]e,Gc٘Jz s/_8xh?'j߿[k~)K;˴/-'Fq|jW~*?&?g??I?}.UEk}-~[_3?'/꽚iɩˣrZs5zC$[ҭ{Q1@f}B^鿢33g?7J=_Cp஍B kcfzL7M[--;V5MfLg}g kb&jNI4OvxR=w}Ns~jd-\iq?^q>|f|O}!io _kԌ\?Jf/{9%;)ybP5("O\~f-N{* 34}A+$'ɭ๾^=H?+gwCyiXfQ3(\gN693v.3GtFgsgr/g0,-3mMT<٭٨Wikߣb?,_?8ie|~7/ spu.$wm٥yM>9m:q.HP`ЃU2較sG=dW9IyoO,ck鋖?l)拹<{~pF#ru^722?3tv\SykQ;ٲDgg :;ePWyfyL9!?grW×"N~n}L+gpNETf]~ϭ5OǟG=G}FCgs:ԇr>,v)|`dY)'&ql\?uǰ>GgC~eֺ%-R{}[Y6yit=:_3G"|?l?<l0u:@89VL-X?˯Lt-%ʺ>b>|2l/9:ShGɌ*gܛYZ妨>ύN?vF|SlKюAP> {Cyo,YVY%\} k( r$07t7|G~n(G19<}^g~SM2~s>0t9|-혲6uV(>V>dx(yG?7??9/3%!Y>=suCvl8/Ao6ׇ[񯟥OTQU\m$3IU?WӪCF2Ӟ߀52shC؁Iɋ Z>|))#nh|z~vTͣե/61<nwh;K}~5blgL3rL>2I-rpmSnϟi:s9VFu躺 lj]wg,KnRϏ޽T{{d-7*5wC3śJҨ4Ǐ=@~fO|bD8~n%ԟ/cYۣʡ\HuUѶCc[Wp~h%FT9f_<%g9W;^ҭ!&?NM%)c?ܢ0:-Qs)U;ϑnm<]q䙧 2gZ'QKrG12 VGsdrCU*vy/-OÝ+/;M>w凕ϩ ;wgv_7SzV( 3#7]1i>ULWgtRjL餣~蟋h6꬗jVչ5wGAxm _Z>^?zff,/Cx} ?͟;ֺ?x2 #w8+BNa6S-aצ !urNO|h@ny(ur';;ٹT? 9->39gЯJ4~ӹ ?OY~7nw)Wݖ k[Ꝺ(# & {zw~}RnZ9ǖ<*ԟgFcUUOʭyOzFqV>%-yo_z}QK{WЗ_}G.sUJu%A)P~3}߳pOZC߾'+qKtQ&>]Ҏ|Rc'?=sN?2yп$LVDKARs(ՄwU)OM:~Ӝ"T3j >n^|iՀ??tsnN%تg>ܞzdzk.?ܪޛq9\??/M!`o~^?ׂ#eH2[_Wjx尿8/J^jyoʕ&W̤5$հި==ۖmZcQ?R=U~)qB; ^/S_@4c}/:|ݳ>^=_3iAC17 5'#%/_D֭VK~W_],G._=J9NroJ:Mm(%4|9bm/Ϯ>sCȠ$|O{IWjs岴_Uk_['/*r(v5|:GS;kAˬU*7 MPQrlWE/4$3]Qg _뵡 szk {lZ5Qd+'=ɨyOLaG=W_:_ M/{XR}~lNc[5"Y$/{+9z(NK޽M(R*LNS^z#?F#/ߡ#^Ǖ K M:Ӣǩ:FwsھnZWOٽc^D.zNrW 9'n/E7}( 40Tc,yLL"-,P:Q֜\yI}<^},$'HK\,S BP;F.Dfog9+;vg]+mL$v./蓎Gw-H}x~ץȨf5@~\`.՚l/XD«uo<-ZE;.b1g?u3O[l|WԲ8܊gʮ%ҟo ?REY6 CvoںE_'QO=`ˆELT[ޗY~˪bwXX?~$1ӛ"eqϼve7UQ?ŷecߪ41fGl ?~X=sYlC'/d{a_s+n%.>pIs+; .Z{<;N>>ҳ~l4rK5$f\o^̩!sCw3a*SRne K{C\Q`}9ffq$}\ 3dM{̔?_35W?..ͷֻS2gx;^{_yP2L2<䖹!c_IyeNLp[aWBH_cBNݲ|W˲hz.\ ދp-^OFn53R#[M}Ÿ p(&,) v'13cǯv^}O\˯:f2vXuL4%.u~EJl`yǬs?{=j`aRZC}[T,A=J.o[29'xœ?d߯1ed|&:ySK|^elw/]kp_omc/$?_*>J;n_<3|O _9Qc5hL#ѿIZW?_s(Kk(d>Uv/u[ryό,ǕS/;|D1}BLƉu,YY #pUP?׾en9>%:/<8+ا1qx9/u6GOۇ} sK{or̊d 'DbE&~K.uqeu^́@c{Ǖ>GIQq-~Fuf ZwDy4j-mmKJp+ÏJ~m&gv6NS oP\;ׁnSJ?hG~URt#*r#7K~LwR}#{ V_l ާ>%T=_t0ܹgx<"q b5}wL9,ᐁ|WT:>ކcINg!+} }f@ ?F{<G$?z@| ~ 9-E߉b`!Z<2/q ŋaϟ}WS3l+"6= ~*푰sR1g"yҔcil;b_/)yZd7-ô H+>gu^˯fJ~?+\qXRUc+*֪rxzG8uJ'1*;TY|iwK-;ޒVzxo|~ޞ_oTmZ{uG_ 3$un{וqB~ Vs|%u\DN=3ៃSqWn^%?/(Eg6i]{sg~kn,#rLV _kż|SԿB=uK[g|iӽO)dƿDv? o>*HT"ޖ c='3CcJ?vJ{ϑz:|OlX9z~6{jPRG>zЏoyW5#_\zNvo=cw(]C{s ηЄnD^#zv#{zrRqxXu$ɬǿ}eώ:O[_+RޫDZ~xK/OUG>֎w|7{~}$y?#L>ɇP0㝧o}Yy7F[?'+< `k$ R?ZңJԡ{^묨X!?_V?gAdO.rVIKE>,zܒ +6xKV&ȋ^䗹#6=<ÿswM:R;gph.T >qiяW>I46W+rpg/z׃&ȯSMR3D=$ nm/2D4w=s4~ZuVמ"FQmWО'[CjGO)ϐc>z }&r3{|ޭVNN ׮3Ou^Ҥ/{A6>%rMVXm9;|EϪ]"OM{~}~׽4bZl" &ϵ.i '%}I}%~P޿p-~?ӝJ9Hc^W{34rK/6NYɯxz"3g.򉬂Q@e*}L$]Vnog=~2*|QĻԌa ?~y=缬?M>+W߯X5_hH'?Miϓ-y -;۪?WǤZE{_ӋE4>3ONЯށP4g<[Li s[O#1+<޷pWG4WսUc=b{ qhj?__w2\Ҵ}0gsjT;+ٝE)n[¥t?ߖ!T[sIʽ{썶})?Ms"eg?4~9 x/>g\5[S_:/k2jGg|ݲ׭xy_:7sMS柹WsUҏ/ Vn23{/ch&o"¨XvWqkwYy<똫܋Djk칰{]߲QAql-^rVľbG?ߞ~O+ frub kΗM͘2s. zr2DNλx;s4&xлep-^9W%{7VAKNͿ/RS"ܗfㅟyfarhᇴgړS:^>_D^;p,]|2XU>\Zwz${W-?q=y~ ck%}.npP1+ݫJ? n(Ȭ>C,ǣ_ ϔQ&©^zf _Z3lDsh.e >uE{Ϝv{rY9/ qsBe?5&/?I32||”ݮTjB k5|BTԹDᱹr$X]5O4Wkmy/˦4 ݧFp_r7Xg /zy,R_*0JAv?2տt,hY?Ij Gj,;f>m_>;Y FKW|fxCэJk|7_3~xbe_¿#Vc߲1ch?1zo42g̕3/zax3>)?%)a>uPMD迥Egz.BЌ*XƱq/fώ.N,;vQx$[~uOo?征?rDL|5|id_1巤n|RǗ{S*9e|8͗~I_g{s/$\m^G/4^zrTܓwEgߥxl1g"Fbm^\.ԣyEfYFwQt3{б(un zF/x!²C\BїFN[-Yާuޙo'DFߌz{O?*WZ5 +]s _g/_n4^c3s\~Nu%OOpt򌟿nJ筘kEt?. vd'^Dz_:5ɧ%}SpktsVt^/ߨt}I״?-sg+=w8u-V6Ҩg?1jQsv }a!:wc,~+^{:t]9/Wzut}'$9q^JAoY*c< ,J;rW%)YSy,dVu(޼T@?sM߾OT{te9G)wOSҋQM02^GA Zu"oz|gn󣋟0t~ahտ{脼/-Q1|J|ht7%OI= /<)}H8瞥~ 8J.z(ZCځx_U%3q7o8O, _9+{oTݚ41]1]yXct.f5GΉ(>=٧fD<ųآ':x=ψs̾6^P,5izY3|sC獞7EĔþ>z{RP< a6M}%/`S#,tJ &n<$iH߻6zC{F~߈nB~NZ[r<~ߑTS߬>}3S$<7U7v.\cdCۏ~f֌]݃U9,ǩ+?y1yN?g\戇~]!d_5?~YԹa grM8xχ/ٽ&K>4.ͳ; I]_-^Ŷg%O&)1٪q6:xrf5sIkՍI_ޞ[+~:sǎ3~ ~3Nr~z l ?)S\7,4Cqs|?| +\qby^]Lϟ{_B\x\[8-g[~xA|3w&?IJy{o\K5d[9! ]h˖NµCNk7I[rsYυ:չv>~L)E2L?9[Onѿhv,=^/Xh9QBLGO'i%lzS(yWvU螷Ҋg[~|5?Jz/BDf _La7~?3Q>#jn/(vzWga^y=H8W䞩 y]$j%sЯڣ_xLl~mtg~g-_6 zxFZh[x|dک癉񝩝ɧ~ytϦ|Yţh_4CW~}tzF'{_3#޲s5DGgU<3 uQir&TҌkn`1iK9_6u q]X0cKVyY0F;kcyR߆Ҩgy\T|>ϏU36{qX|'8 E?˪9E=珘{9Θrϙ}殟2 (Fn!h^j!7Zj^/zD}‚q#<}X{ qo `cfes4ԗ_ᭊ'dr>2te](+x)2,[*֪Ώp5H=:tOHe&R>I74:NK_>٥6̜b|K[!l['f{][K|,'@^""l-%_mRVWɥ;+ ?5XN Ee8F {Fkg<~ v\L2~ݶ?l;9)ŔG7_3A>ESؙO(ݹZ~7~t/1: Q3!p=9zIYAVp_Sos$ǔ]x[LƩǼCL8i9t%׭}6弧38~κǺ,=$ )R9 hѫsn?{|VQ9W/fda>'ussŎD k«3_'5֟x|]Qk95e{Kw#q6C~t~4L}T9p.:S~{>(/Dfu.2}Sg١T+.wϵϧzeTd_{u#1l~_~I(W2]o|/9e煹2m1+?<٘篘b{Y/2<L>nRD:,??_j?| r-!9$uv«3z,s^`ǩ~W*'ݗ_y/J}|y y~u9欨}+NjEC#o:^6 akRv%I>z(>uv^DwKTmT {lcS_ Wkr\ӰW?I~Xzv[3ل~P\Q{A}c.{|JA(mےX\ /s˯֞V~'//z׃M#LNnO%+^Ǫ۲VZyZw][9kb~3թyOk\7'l{kCr__u]fpuPrrRd[j[Ɖsy:ML |=tz~b_ϹGrpz)~,9'ݪSN=*^5ynj<+mVť{_-ŭ Wϭi>w:ޘ]g_@~L9sg֓_+>eg`rC?#_@${H싞mk>H_Ĩs#œ%kַ>~7rW86JŰ&&|?v0WEAޫEy5W&q=t/L&ו /*_ܛQ-9U_aV\Տ4l QϿo;SkD՟yŽ:pR7b_KB=_3M0هQU?|/G,yKspOMݏX@K~ᇴW9q̕[br0F_+zARMR 2ƩSOwgo>ݳ `%Es;j:6+Oϟՙx.~޳R͊oqL_}l[CG3\W_foq?W}=mL?7MO^|}_װ:{IrOrP5=6^sTzH}~yO=T{MTjw?%H >3lSS~y6ʩs:_@t5|^;Ozba5k='|VSy$E"sfTSuk~PNjs2#t&/4/7+a}יΥk˼N8_rV@;[fzVٺE}ܧ<#UUV~UԚ{Ҫ*Y[o7_q'ۋ#Kmo(ypO42> __]=ߛK9)U}6%@4~3Wu~~t_a̯jF~4vsܠ($׼ny; ٨5sHo^8Qy-+O?r^r{}ݒߖgEi-s3QBfh)ꜻ)}'yA̲&O;o(!wCaa_5?ۧ1YxM\Q%?BAҫWC~Kw~mJuߧ_0G0ľߏ)_{ lg=>sJ=e?-ψz5)13^ħ[<{'g|;{ܳn+9HXX/G|%y{o3W֭/UuѭDaTԼ 5zN_tuNo=~^U_^f߽3+K-hcPNV5K\1m[{B5*{/"l0C&կx>a޳s9myY ~M+kzyvJ}{NeߟPj]ㄨ^lɯp]VEWߐ>~ͯԼWxo#57LkHK7}䖙KsUN',5([|iZEyLz鉅+>MGvW<#Oy\sR &]UŔܗ=u~z}~ϵJQg yQϺGOϟFw~Dd?mRՇy^uHkRd?ڿ1RgD¨^#v]Zb{G{T?—z_O3Us|H9>)z)%ff_&?>o3?9}D=' 4?__Bf<) ֥}\A _i{r?G_E}Y/K_jI4}yhӪC,竦}qsK*57+ѓc,[$<*mi(Yz'?g|p5ڙˢ+zn5p/qVK|"ۗq yq@;n>#w|4|YXV?y/쿞?&U~Ƹ/o}W䊨=].!]uM9 ?LZ_oڧΐ?ܒǖ=muϋS9櫣ϑ쮍7VI#c#' /r!:4|ԇw>t]/.WԓM/U_ԧޥΔWjQSU9ܡk~ߡzUF\K;~ڙQD=b^_VMs Eo\~ǿʽTjMSx?όoξ\iZ /no7F7"W1C;ѣ;?z+sM>bz|/I’*hҿ,jk]zB_%s[rڊ[VK%xF۪_ȿYflOE=x ?~q̍3r櫦?Cw; k^vFWQ๨Fp~B=5Fz}}?:CH{ߚ;_{M׳Qm]k(>ˉ]y򶟈,/YT>뢛s& &Ux_WL~_xߑXW&!٧{Ds#o;k뙨_g~Z~j\4l;b/@-gS;x~w4ElTLڼ 1Qc0ؑM4z,4>)e0x@ʇi1^Y꽷x_R?s䱈?=wϙL痭H>ptmrWM=O]ST<0-sяAQkӈ%wĭGɖIegꖜz6j͒=4^s%E5 dF]bޫu^74 ElL>>Ǻo/gi~g{?|^_\>3|DP*-);O=T_Lygz8f ?~] yu!ndi/ȯv龴z A*{񭏌jgZjuKN[s#ޏO~Yv_'ѹ䳦^4j9WN] W/B5,yKcg@]uѝTO E_hBUEQvۗ_V8|snuTAǿdIdWv CwHU3oW9eE}[b)-yh]UoRɄ=O4`teb1'y3`|:1s|Egb %|Vs=~ ?Gi{]Q[Z}4ͯ;G1+wZT=|&M卮q\|>, k=WBR=n1gID/xXYx5/ :.sF?TZ^g87Nts %~vs( ˭>g" 95_T=8'{gof#@+k?bo`3y0^ řWޟ9.ϳ61 [xK睏6tI&fΥN7\nŁ}`V @Y{үtHT|iA+ l3辘Ku[Iv/M;:{X{BE=C/؁ϴnXֹ9U[`h:g5./^,Ω],3B"s=AcD}qm+ʘeg0tg dGYu"?fzYt/V>33&ݏg}[zs\+b|h^ |_3Q?C\2b_OSW;_ZKȢBq~4CX=_] z2K2`nWʾ?$]s0gA__C_Xw>O#[i?^߮w%=WgGͽ Wlvu;ygY9olX;W #e_OIR\uJ"vaQc'Xb3rY?Ek߈3uKߵ׸/WXuQǝҟ~ﴨ?1?g`<kּhK9ũ'YC^z/vCZ.}HEV:|ƿͷw>aNJ p]ݏȝ eS5{.ԧUyT]9o_G΁僞s}\w݃/f䯾 Fl q&k߳wޅ͔=*}׺$yz+,m%˯ h{q%vQ/5M?\h!װїs Eq/rĞm¨6=lnvtÜ꿚sy׳\-ζ֔+3b_{%=SEL}W\,!O=b]4qV;m2T?D2b9k^* {dj^4Z)07,9kkg@?Wbg_Xۛm3We{AB4ImA9}ik"o:z }q6㮺?Ay/ +ψ{a/Kߠ]ϹF?7T/q\;9'ȜU1SŹ:V|| 9g;,,8kG+"_o٥3!|y!)K?%_u欴c)~l_y-.lޮQV'R}gyy o^agQx 2d=J"9~b y9.Lŏ>?s suQd]h]coTQQVlgܫߣvAʇz־q=vOs^~gSgq0̐ڤ#/,OflsCv&3[Km9_s&g5?w{'k>*uC{}(}e.|a.r9=7{A>I|6_qtH٦^"3/Ÿt\RO,3|rg~["rtr|TG˙j Z'UHﴖ[@n sK)Iă~ԗ~bֱϳ tdC5/zKmȆ_I72[q5/=:gxљ\auP}N" 3.Cơ;ЅXWY?K?˭(.ʐ'}WQ@>gul?]?5OffŅ꼙NWwuSd>dd/w y@M_S ůxt+대eeu_?l1sxKs2Ĵ{)3sB+˿{8퉖Oܬ奩{39j} ߏ 殆KYj 1%s. ?ӹFF6v`$ws)Β\YeQ{_ o,#9LX0g9m_~GW,_eݾR_wT". VeϸW $'Op<KݳԞמC".bz~8W-5%' h/؂Y2<עKx;!g]E+*bA|m%¿ZbCÀ/˔r<_g%ؚ֞gBM:jl7 u'm=h j=_=t'p |ނuv#lOyJ?{_2'նsk8>ċ;m?>|q{p=?3gCbRKz|?xcЯ{,v_h̢󿈳CʟG2bAr} J`BU1r2+Q16grYW=khL?ugK'7݀--Xo7;Fq \( -;-fYk-Jwc_8|8~Ȣ!ؓ~d UJ`o+JS" Rǟ NjǼhW{(!;RGLji=5+_g Os>eSe3u }~,{ҝJzjYqVs5"xDgˍ^/:#]vaԗ~żC<Ձ!g{ʨag57s75 3Y1&&|y cR?Ҹ~χcЯsE ?x̐L_6]Fcoi|}l%4O֏2Ã9߃S^>uNg¢KT7Y~)痹eoz=\S=Yju/;{_uQ7/[Ll=Jsm}}O |/֧,`Хge{#iÆ6 4JiX̍𾟴 =]_gVe'1ݦ .("şd?l秜bd~cV\|k/f[9z-̬ua TO;2fCS~3B}K#v/ߵOX?kbn .,_ܗmj1Q?㽂_YOfy/}{>EC'_:{d?YW e-_ǚQ?Fc[ݡQ ,8fƊx.9+,m'91o?D>{gn56kl^\&/S]GDn/Z'7X?Fz?g~fuƬNXumƠ6;RvARv3?PKƽccE smҖi|?C~Wڤ,㙘ǽeە!V"]CV9yd\x?!ŦZ}qs I mR''-Y]s.w W]W*?J'ד~/XXiAs'yR3΂S@޿Da f/u1޺i?<# YsAj4/նg'N}qb?J?Ժ/N7P]`Hg 1>Ǚ al~?&,zg=k=WkZQ}y!+v9%̙~UΎ=_`Hs|˯^< =g,rUU1?q.$dVxΘ .l~Au調k=_Mk/l_A~VziE>t ?$_wŏ!'ү~!);/NO瀯9UG7ə6wAsn?s#0xzOZ.O<>?l19H?ӿ,΅^٦Э PwHrG9TY9{rd~r&YUk Z@VĀkn#enh駽C?~9!?3X52%~{j~OϚ_s3a1%^`?\d {5V_Ws釼7 gQ_ -dÖ׏2{4&<egll_Zh,s30}"-0d/U,?wwWp~sa\X;J`9N)_}EZ{t~K1_b89s {WsU*:ׯΊ2flWq{ȺFYN=`_I;?Jq>!A^B ʝt9yhǕ'טLY`.şpU%w.?Sg8X [O$^LWmֿ '?bPG~-qovV{,| %ϬΘwFE%J |у끮//y~~?w?}7c LKb0Byj :yra YP-lYk^i+W;|Y}/]dsSҎ*ʚ/#kxkݩ yZΊч]q]x |d`>~2~+s;DZ>'[#ŵ#&N%_8?Av(*?H}$YfO`RU' wQ.~F?}LEs͔__C [9O1EK+ɋS/˰GKm՗sos/qusnv|0sҏIÿ^jU <\f_ףݸ+Xt#\s gW"Vڀ5JPu0o|omZȥ?9i_[l|%r?:y1_Y'Zb?e51/X _ח1%'=.aŢDrgI<u>lwkb,j-~ Z@4a+!X}WuW ORxإ'̈́4#hWW?2iV+SS>dyT/.g:~XmZu>x{ 磝J۫~nǘ?KΙw 1VZOK?܉U KbǂoX{> /93q`tVx^?VN9,̎Ç 9g'Ck׆$[W>و6a1 ށ릹.V?+gH?{>VHs~wXK0MĿBf7Ucڇ_V ;.ƿ ?jlN0<]]o kX/úl_;Y6杙c!-6kͥ+K!O}Cos^_=|`ϳ/&$:bYȹk8zVg{|ZMyk=\ugH LFQ i55sY]{OƼK7o!]S2X@Fsv~,oׯWC VuwW3̻?/pΎ}䵧-z/n7R_̪[56 ex2(ПE,;|xiſZ$gͱwk~׈]Ч//aޱyך <s˅/\o;)0EM~*ÓWY,ùGټGS_{^>ߓo_*K<Ȅ_٦_i 1@=8W\;-ju~)yr:-mf!_ejN`?k9wq# dsUf{Ӎ9F?q&:F﵈}?ү1}q-}eů]ڇ_ݟ3Yzkɿ{Hn? 7b{U_ 4G#FgKZ>X/RgѾ٦1/d=sͨ<2u"7!./:XgufVߋ,t(j}}>`=`!Q⿙k,b2\Fʵ)h4{!]̼4dI1h~c2Z{܅~/c.V!qR?qD%sV~9gu駭{b× uKni糸8ٲNg=;>ksퟵa}md9B<ӹvs..O2.sgM Sݿ[fy:3՜!7X מa}3&~$1ۨsmk JYgwO_X̛^e?B{ np>-_M?;͢xk4o{s{u\w.}}ן&y"^X{HK?-;+Cy,E {?U޳,/}>3klPۗ~n[2X+yOf2ozMi69ܽl0_nϴڧd*xZoЕ9Ew/I?gjؽͽ I~|Ε 9?ϺBsՓ!ghWwR;Y=Qf,Ϭ#sȭ>+N)8om/ex/gR}._gTgBCO_ZlO6u|>ÿ'مk7yr U#{߆ү89|ރ;C??!TftE>}ѯu:\3.u"֏t~}>㴹75ucf| knP"bҟ տї~kNqY9kbQ ?0;?fz NN6k~Bó,0⟙~'YS\\9kC#ނ}G/# ]|i -jHM?ftg ecOۛDwȳ{~3sYlKҞslG\_d?z&wa ``Gp X= mg-062\ i6)_?߰?'k; ];ϰ';߁y21}mw=̥k7-0u?$f>G+y»N:v6ΟCC~Y&v>u+lSuA3{{lt(tFϠf}+x>u_N[n fg6{B:o]tg!yB3v2S畽J ^W+~ۑ~sU{t17qbOw-&;:v;~蜠j\';σ ǰo.dUbG?28o 5 d/~dS@:/kءG_G+]6{W샡rgS?g-,0 M?w寲id5_kytmС?wMKI٣CwڿDOc; ݯZ <Ͻ*,{Dܛubp W2ؤ=>ZVw ᝬUb k]|؟ |ℳN-vg:+\?ݧ=J}_%ẃ^vʧ3;}j{_pfgǙ+Q_w"s_;(^(gїsbwOOK;?{/'2v|;_,/ۺ{y~Ǡ1s⬳3gA7-Јw]k۪tOkD0'ah{?k 4VVaAs_Ow5.gW_]ϊԙ9ϵU+A^&]yg6@|DE?kuOF%;-eZ.ۗ}w.hڭh~O -.~?p6;7uRПw+~ gnϦ6?/XAqx;{ݏAS"Eܘ6?3/M993-qskzEOK,r8,}#~Unw?{.G=e/Z xwY>?蜟Yč8C|Ԝ9|㜟'A| [R0~d3_wk;w-_gF>cЯL ψà{F9D"rg>Zw2~Ѷ%ƿS_ʠƉ (~R=fyN~ּ~w?#·kw~ׯt9@:ו.=~toC>Ҝ"BfӁF=~ƿ[ q#] ˈ'~<]}B 2nawWڤ,A3?s/ey7ua;YvF(NYC C;?<FG^jumK4չo^ =<2OzH7Eĵ~ww?k:.~=TC\vQKC,n͛|ye5w-s1f?C_ϒgMyYB2 ڑe,*A6(QN? ߉1\/h~bw׭Ο#MX^DΜyT#~H.njO w}lطp [C\Vx>ӗlO,8kNm%b+{^[c'I/BsmRfY~nYg u>g߫9ԽP;ZX&nȝ<-Ng}#A駝/v>nejyCN!P_L;FXZҾCգŔՏ~9SoY/nuv a?n9YaN>+ll2Zr[I?{Ơo5O g~o[?3wsUK%V߈'ř#8K[3!Zݿk@,1KQ39pM˝46X?> _Mm_^}< ܹ OsHxX0y%ŏ꼙<ݼa]WFgZOڵ n~/`kהv=CO a?Z6י pW qZdWE{w֥bh_l8.Z7tG=}o&Y؜Li /Ybnw_tl/Mk җ~<^q_?Iq{3 b<4yx=9gٙ3mUyB홡۵6 ~Q_uα.s?au-"_e+\bd ߞF_rP~wqu/q .ٵvUqtg|w8ͰӘ3g9K,z$ _وB ]f{9D{y.5?@e#ޟ埳S'g89C5ts sz?Y$r;OGؓǗ~5=9)Swjs6I/_2;v(5.%JR{ԟy^y {E]:XE38eİvx'agq`}~A>o~ ]ja^g6Lܢ]x.tڽ|b5øogsN[OVX֏ׁK!9kؽo*u#|uogOX&{b5E ֘~tЄEJ9gkn=2?iB~l7 k;ݔ\ ,G~As_tP!}/čKIp/ו|J 9PU?A{9'Q,Է~[īZ;'dKvagϊo} s/K?s7Z9_m,/)`ltY?w,YϨ3X9мf}h<1|iǀObcB? /m[^an%pb!Z#4_Aeig&3-y2iY^}vUAÙU\{ ogY}6mM5wvroƔ{=_ 3~V&q.3woذ#K} ;=9ȮϷy>^V&}`W/~Y6Z>o(^iY/ 1@pDWc#>YgSZ-3-~n_"'M זY{L_>==8Kܳ#g蠿U]Yz]]HK/3೑X|;,v 'B?|d2몰qKmﲂ8=K'PO.e: G䝗_y^:odЊ*\f3{}^u 5g߯~rۗXzy?Ң~k_=/gr*~{b~tѯ9FZӛm1oęv8:Yg9Cb3['~s_;ߩ?񈾗hKuGl?W_N4ѧ/:ˣr~/kG cù"@U޳ CfQx*=#[:5ߗ~2_S!2u6AY=i75o3݄=[ߦfz/NN&יWvѝ}K-dfCo}=ŊyF?$?gMQV_1c5RORNlknys:Q<'md3g~"/}CWaCa^z_ =_^18'1nZ~o+Y.Zs{9sfsEB_&[~"_B,vsEsѯ9?ƚӗ6rޗ~St|/|6-N,Yq0sduNog؄~7ܙ~mhfO}B s.?_y^Dz\_4/Z}gSru~˙ߛϙ]|B[\+kmEq[T@ӊ}5}J3iT nwu'}3ZkYnS35\VBg/J «|߬ z>ޢF[/T|gٰǾ_mgCĿ}_@C6~ݗEg5.u6YdD} ̻-Ǐ=-g.ş9b=g?jthomGxc_կk9ú/'?pP!?ү~AsYf~kgP)z>Gv֠N hvˆ͏([֒Z= }}ןLn[_Y;Bo3󈘳4m_sM͙٦_N{~*gYe)q5YFgx'VfڿK/ aEܨaQ\ew.޿GKg^8:DJ<^_b~G{uf_^ϙ]>]]]ХĆ}YY̏cq8y_/;n)fGZ=sI1v7X:2 *źQkg&2e\f',>[:?9 c積KB#K,g: ^6rݭ3صpٵ|&S"\8?9k?Y !fd39s}eQ  p2y~bWYa!~l,I'1X``F@60F7.}Nj s3Оgod%;|#ƄfxXąڽ&%Ŭ{\f91Wg! l|~{zjXn!q/ka/GDgj+*+/tdɘBvM.x7v(K`3RϞJ Egp%j ;A\Mn՘}\O~bsX`h-U/2 kgXbJAFu]_=q9g_5[l5vBowVQ~ =K+ l/fO*uB[=YȭOF,מ9V 4NQI^id;O7 ~F~%෗c;}o]rWd̈qbrnʼnMdw]j,q_f. fY?F[.S1'BO;ob XJ,zu)~qup!77w=D"+3k_8ߺ]/۞3̎30!_'ޓn| &+0+/U~a V;]sv`1%K1_ӗ~̓SuVZ?2}jŴvz]e҇K|א/סs`~mnzq >hfR ]c?Yb L,/qo,m{*NwA >` }o֜bD,dW?Ӷ9o1d6=eUԟWX`̳{BM@l򻺿 *+ Nүݤg?Wjp!;{w;{>/?̷srJ2+z_.t;gG vw'~yc?',wO+r`5W|YCr/C^3Ы g_k}By+mA2~bwGӋ?csyWWkA7!#I;Q.ܻU ta߾k\_T~Pƿ;y{_I1~0 ;^AgXiaj,o"v)yOAjC} OzK?qI _֮G |{zƪ# gDygGm'WwՅNhPw¦. V,~Lgsԏ Ӹ}o:].9?xҟE.\},H%zv*S Z;_g_/!أ{;wVZB!gPWby:SƠt'\AҎ;_n?dk@l%'kRYf{h7| /g9~CY7+Lٳ:aus63Zsf*^!­͙=g'ޜٳfwyZ[m뜲4羆Kv~pn˹FֶIkw۽ ]\çFrM -|mcgoI-^teATܪC-!ðix>9 {KT+hc^楇ԗ~Xxd$nRgsw8K}-՗Vńg ;83IN2}gZ|X~^kIz=2z9+g|OKv9+cV,+K54\\Su 5G?;?C6i;V7[?3~;~X,}|u߫>O9H!O_o~ξ'yCo_2K|}Maƾbהb0꾈٦2U kZq0Zs\Y9Gs/i;ΗZ`l?) q ؈BgOżWg΃?}g3?br L;ƸmY/o#\ȠRyz;=3…LX?j87H?slm.W`?b??k_z<.sVN1?ث0}f}g]n/?[sWFSs 0~dlF\!߾+~}\UB_zlѯ? d` WAG}"uM`>K-zfZ-YA܅}gg9S\l_U(T/̝?ju-^,0XzϚ?Լggtu׏ڼ4!l-587|L;usnK9ߗ~b/ ;K?87M0qא!~,g?k2h:ɝ9󷳼_5gU#7wksڏz`VmGmK*. ;~u1q̘_S\⪡^quXW=WX}{)q({~, fV)YU|a5|&%0(1p2/я眣{-A;rʿr&h%R+&N;bX9s  ʣ5~W,p9p7X{'fڧM?/İZ%^vp>?ߛdErY?{}]bQqMWwo(i LJ˴M2gg>y~J:F ϐ(.ogN3++CǬn |'FaIsxc`V&ـCpv  9TU6G657U֗H>-zVݨx^QsK_@cVso=d9J3NG?מΟbV\OA3gh{.9x>hE]j5 ߟ=t'%^Qbr;=!67z觯l8'"ֳCI|rޓ+lJ]7WPoT߻Ggx]g{AnE3Zg^>3՝a^|1'3~ףgP{մ/3zYY?Clջ8_iW -|UKI.)\n[;g @w3ZԼMM~ 7;I]SrCN,{磱b ]" .;gt{Y=]UҾ?c?'-me@?YpF%=@e}},Ĝ'cbʵbl岀Ā,贿>8_|5B+ԏ8uN;J^R7=ld Ơ_}z(~ '%*s;(P[Xzdxw*Y_Is&4ggs^eQ'-j߰?,arbm{RwK :8g70O2߳S#[Y(z90\ Z?_a4F@ P|t3s~b~7&g )qrtYU1 1|U~KvS3ά E31gRwy3Gas+_"?gIsPϞi f7󟧓CX.f](!dxjۧ+CJ=(:[LXs`aU2~N9>H⎩5vG;݃t&qe5nصJU磮:w Ug,G̮%|p~m)bq+~\)bQ\oxs-1L3 ޷[^ӝe_2σg/j]#1 \n ] ;n5=k_2G5˅v>e.-O&*{^2;C&?uf.#k 23;N`r/F?G1koOB7Y6;| .W}vƿ=Pwe OReGϙ\gs=><"o)H:r&72dW=E~֎%v__˞P,/@Ι# ]#֯*u/-ﲈˮo>xܹ/}u5n:N:%nܡaTү3Gqv~ߐWŌ!65GvuRc>,gȌ/oyfb.Z/Ѯ>؜Eӫ wE^ 4+G[ϓ::yZO/N}?ZqG8#gRXoTSoxܛu u{L0X.tb,|& %@;}P1d=p}iNsK=o=#?'C٥jm~w` {/./lNelֈ3M=glεWXkXCG A_d| {ہ]-Sq})}YZ(_)k_,rv?*wl9O T?ɼ@/=?96-?o6 5T)~;A?u~~3]S8쩤e=om;ٵk0ҿ‡φqx:Oa_b_5U;9/[{'}O1X{9<oe41z/x\?K2YsV }vc"~Ye|Z>A7wY :%|hffWѹ qX|z9S4gQs֜!sfЇ_ꝉ|?OY.~?l.s@O+gt*gز~׺HV3o;|j,l~'huҺg{!Ϩw-yz4s=dW=>m/;YԆ~t] 1XC\,|e֯!iӾUKs䍥%~*ƊWiK|93~9/X󭞯3ۭ!N 7:fs^,"t]2`٦b0wcGЪ3m(E' >ggoZUG,wMb#Y/r]c\ljac ߿g1g`AJЩOڟgGsZbȡ뜅qBר=AWZԞtfPr>53a =뗛3{)s:ڛsBvKW~Ldv5տw^➻}N:QwoKZh1eżT?#26t>A#~]'Ǖ,g{b+k+aducyAS"s?;?ZXd x/75M[?b>Ҷ*N23;w>ܜ)O7l~AjށRC? v/8o!w[6W"TEsѴOY`3B7/zR |}9Z,O+EF+;2$A7~Oq.%"8*s&pzi gcya*(/X3~P#κ_.ՙA%y^)w=#?6,Js]Y?WKKЇ_COn7,goz 0:''z`{~Y0X]a s; 31m8_ ߬j/?+5 R^Z+ <։+l5>3sM_llYכq{Ne{$`eAWVgϰ 9_Vs`g{ү>{.֌cmR"OK?yZϾoaε'4ԽRf1p̸`gўm.ïs]19ݷοW2}5ZҾvXsS*ꇫ,E?3ӳ yV26jɯ= ߜ79|\N^GJK/-?u~Vg lRjY1SG+aWb1Β3{O7J9o(<+l k|ucЯ}ъZS[q<9t.Uw=#ܨ!\Θ -n5''lj\ 9`nތsls)a yX#h$8Cfap8l:*}oY0A[_ bGeڡԵEQG=W$K_Bn9?H<-s_]n.6.>j_WAN?}'ۯvΏdWDL:Ś<69wy=b7waV؁NucxxvB yk<|sxȦSϫ^]dQqgWw2{?4gl}_۵q_YnQf quo?&Íܽ? ϐWy; }|{3l9ggƃX]ZY]r/#gz.}Ai{.pEo\?n῱.0_ 2 Թ,qM>O L>X扲87:z'5OB,ޟ}:įЯ}Sw9{5#2F`^tsF?H{^_mU 9_rMe2cw[^?Ywdֿj]o:͙~ج!/V b6gr-`ѯth<{߫+4l,򎜗ό}<Ӫ:] "L<8jADd((d*U4N>O餍jN8欷׻w}wwsvίoûWkՏ2f3o=쁣F[Xs37=?n9E#WU4k{k:y6Um NY V;f4jIﲐYϧu|8oo#gm=ߜw?0_.Co?ѿ|~=g+Zh_g;sz>3mafϐA`i j3K)@͙skK-t89̋ ):4WX` ɘEUG>?]yW|,)9| 𙦟r xMĮm>FL5b|N_9',w[`e kӱcnؗ8D/}?͞~YeB?Υ65b,0gr8U//Qsǚ3c/5F}ūTRl[\⯾3Gż)ep6oϾ m~0s4mWGYa[M;kƬ=՜39e/֪u~;T65l:x2ߗ~枟q)gfΒ@nt^fOGsΪѯc/|3Mۏ^+)-r'^vi}ցh5܁v?7wڳ/1*aWd(՗~neb61l__Z^fW]f~yqќWY\ E.?r>T.t,?#3W6~bA{qVB-KjW0׬{g~Nf_ xMtu_GV$ 1ouSyl_1g9|y/{#gAѝ'Cf[K7󓳸?o]XkuSVd%e6L?@3Uԍgq߹?D=/ctfJs抟E {zx]qew9YOqeڧ8EZbY,Ğ|nSvu{A?f|NXsu%ew_I'~e쭟?fud}Y(+esz;_[ T GСw%⾿'l«]om{/b<1b~ ro9X #wYyڿ }VA4w!]+JJ?^[bN3A?jN?}V9gsZMؗ)RjJ}f7eXټ3Γ9gP1Fw?~"~,~(K܅}9/w`\uf,A?hwJ>D։%3AּȕPG=3A?@w2Lr7tمl:h65M~|c @CQ=[ޫCJU?B~C#f,e]\'UgOkY.>+Ƽl^X yl_kyBYn^'; βo8OA~b \F_Qbs%rA_uf>}~': D }5Vm\"fdϳq4Wd]jKŻN?rQ |0q1؏<ϸ>;;IjQ ނD%1!ŝ3puæ?ٞ3hs 8kNAyW]k}6 _|<~?iu̮6RW. Iy#,bjAݖm:J׿= 8?tiuf2 ^sF;@_>iu·=gbѯsj)DU~?/l'_:ׯT+ 1)en9D|  z9wY^ze ῑq|st~9}d1C_us`!fzY˸LŹ~9mϪ۵UZG/sf~> / eMnhѯKCZg6-,,j.زd&wޗ4g:E4y K?}dbבw~Nb-?W<_|lQ؄,)m-1/:Ιf? A)MW\kM+V6g{tY^F6ggA//6_j9 N{j=N4H385맬sL*!_)}:wſ:G0O/c싼4b_b}ŅS.W7LNYz9gN?&NrWRq}'_W-jqOB[a/gڹFy/erM?DW?tdQϷzߨbyl9{G/F=\_4/?QLb/Bu6_؛;O^ZZT܊3T/Z^,γϥg<7Eu7=7jk.:L_O[?!糍9'4dL_5gBfs$}"tاơ8kxosfOYE3>Ǜ)VZu X3 땉Y]Jg¶OypawN@{-zhnнbf! 8c>ff7vřM|N[?gř"֏/Ọe0炙5Xu'6ψ0ϰ_TNg錰bydbuJϬ=ų: %aN5ͯ-V_{{{b X=0*6q9lj +,ftN=bX(up~W3ly,g_[j}._a."2= =~=M\C>dVq5`-ـ,`> u]JLЏ/ӎ⟮>[͓kW҈i- forgB&{KvޟtlΙ=欳z^fQs*?9Ϭyi5iMK-6S^C'GPGWu_V3lܠ?u Z?]؜B,ckl}φxm=)1%žZN`p/#~/,pD^rMq93Ǻ9WA19`1:h;uSϴ5LտsoYz^0Xe]cF8kbvw<i8(KVyꟗ8;9HtNs ?@{NCV|ԹH{@~a 'l`c7(Ug\-1i/18GE 9 %pfRox . U\Q@3#kL̊,%Ǫ>`჎owŜ) Y|=Bmg;r}:1s @klm.Eүyugï.8-1N+{}J\!ig=/ZYB~+@bGتsJ Y4_T>n'9gô$} ΥV׃?Asc9ޮ#FƳ"a;osUr&~Ϡ@W[_뀌($ g.kD3?KuvŜ?,0&,/b*arݤ}jgIޡo`wρxį['_k^tu߆|Ӣy,U{|+biYey=o}A?k_ ϨG_C{{8cOvq7>;e>e:Pbk?-}qq[\S}i衛ߡNe:{"A\_AG2%p!g1Ovqc.,~S5W:Iڧ{asikVE[Ə['ΙGqR3ڿ>ʻ^gAc } 柙8ܐW+w:w|vY;/t/}~&?1 '_GH7kYy-tgs]LB3Y]oZoswtu! oG~\Xb%r@?+No,ZK?ۺ٫~ŃJŭ6W-V njvž)֩)}ļ#xy%~]m/}]_BN<RLX{)*}V:C%bkwgSk)D_JJqG1/\.Ah\W֞W"_q 9g-rq ӼVE9b?̜}b(!H?{ř%bA[JC̿OF{]y*B?g_g<7K9h53M֍5 &!fWK9K]3sM;_)~?}~ŦV[F>_i59.!cH=Vh^]_d&wM %]7,Up o?y>%΢x?_tnZY[Cҿ={<Ø `þ5+|OwY4y,z:Uԏ"r.M婲sߢTd1z1;c^sxczZsY#= ds\SNqEOs38Y*4lϡsg\^?996%k_/݉EC \psDךοb~r3ːY.6wܣJ#,ac:u>9#g9MwP ] [^n`Ubv?WePxcb{=);}bן|t0gVX;ßTdWfjL~<՟cV?[(l1/()-}~ObO~7Y7zq#5mļ;]_6 2LEkҍsNVˊ/s C:}cԅc0nݘؙe#1x8۶pW_c^ʼn=NQ.1)1{6| ͙nY1u3Z?f) qNnxVn>-vz?yl5f2gG4[Dqq9xg=A}_k[`ա; 3bmY6t{dA_wFsz_s%ctc/YC{t)Tb_xF/]8 ljY)N6棲|u&گí~UNݰyz~RcQ*w=vGg:?Ybaj>Rg7zbc`OR2r> 6s?s13., f ?'8Я:{{WXĿ*m:s-S_JO)[>\PrsjwA>wnyE?[]`q'q1w Xlדq.oW7~z;9k?]).[oU"|w25+d.[л_~֋k{qq6iGSs/Yju̵BBoS K]?ڱ.3m8{q+)Nt_3H~j_E΁>ƘL*&㑳BGk?uO pm*sXOA{-X=)|Ljy}y޲n6JA;sGM/OhF?۟gd2 nRbT.9hYluvJ%i0wb{!sV}i/eLiܪ!]fYKwoO_XfpFSk)wyϺ#1 ϠX;HW(řǓ;qϾyu\o/s:gWIB??l%K/9>i??gϣ K? ]~1-rYh_%ӬOCw~M֜B~ yLj.rȟ@CoBCkͅ=Kn땈G@?Z'+"2 Fλ\u3r\~GYګ֯&_?b +]/p+ \BgFR{-Xļ 4|؁8 NW۷)̜4vjߠͥ/ jYKk.sW>yT oϫ6W;^_C{Nd^9J`Y&Xx2kg/1u(}'נ{N]2{>׫em?g#?uyl]HO;-Xԫ +֩SW {得sK扲 xw?9Seu,ϜաY-r6$Wm=N(o4}_gz9?y9nxpţ㜯eKY$~&}WެovE}caƭjh2œʯ=O&#XR{͜gvvs?Q>?Z1ȏ4g_3#-pGr;PCe/Wy^%nXw?h2sͶ\0=x8^\Ǫ|<9,|l=w̚w4w~J߱סP2-~/{j,վܡ9|G'zb!?WIүrξ黚·9wD9//9b#}?v ~?Osy=cu?:g仠\eQSb}ܺWB45.2],YŠ=?w+~VUϡ[q)}f0yvm$?BR.!k*կ'mmowQ}]o})Yז;r?ٮ>MV㷰x/7_a'k]+Pwu^u/E~!W_4ȃp_[.NVg)Kgο?A/XWC3}KOS^as3ÚO-`kW6wða&GY){k39ޟ+Eg'OL7| 9!>6i̶ܿWZ p^"Ld0!IAK/e]n9g7evO.!h]@t2nhFtYϳ 3.wڷI  ef+ڗ>f1=gp&j5.n´}427Tk[ jI:zlLֿo?jƘl'z#3麢?1{SuTcq \?5Oy~5gnY9;ԳΏP~s͓5_%3}ѾqsoYWgOy n1c2DLY`Wۺӟe}s,tdsFo|gcsO\;x -B?}:_|j &k8h_qfĮ^%w6|;c!ӰY]IY5k5ggi'~>e5XagFkH??<{6RVڰ}&i:gWY 7V,UlPc6nx-cYsj\me)kFո)1D_tc{ZWo_ПWNWw߬9iUyCY('뚳,~wXgt ~$FsV˯*A?|x,Wsܿbh_o(~<   yT+uqM&m])[\y9_#߀31Nb~ !/8tGq),lg;Uc};_ҧi3'(_ZbG;]2GgVerk3OKβgfg޿޳~Y{:':|=Cl~.ss_\yֽ?n*ocpָL1fOQ Ǭ_X <4/sF =p-z8247Y7~~F?JqHf~ƭmߔS< 9p6.=c?g>J~CZ}VĈEW3p3}w\sF?}LpEHgCFL'B9gkNùv/'SGF5sIf|h`,{ ҿ‡K⇜_K E={]ϸԘnހg(\L3 #ך&=Ңf˘{)?ү8<ί6̼k=ӗ yigI*eu6oyTZ}oك7Դ?ب,?\ gҟw:֗~YR{oЌl/ g_pW=|rFvGspu4gx[G\g V/{W}gEVc4gmuCU;̆߾kDe>5sni1kq?\o?}hFIv\bki?A!WZn80om{; ݡso~cqc;/>X&v{,2fb C/a7b1w [8 $ζOuFV;0Or\ 9. P~=g[``; U\?Yܗn' YCOpY ^ 4j؄B6b 3пg~ ]..'ά~ѯ[,g/C{N`^WNw=ycczGI. R\SV. }lv=/|y,fH\#St2wmq۴}\_ۛR&va(ͭ:11l>eV~  ?4 /gPeWل n6L ߨ9Ҟ;ծiЯe.}6 l:sE+tro_cﵺϟZ 8`O=u]n3\w^iG3ϾܱX/-uӏi_п9TjMvsFj,[0U(E9bΓMV3;>.LWh]F{_i{+< ~b7{;|N-z/o{`. އO?%b-z6g9Vd/[.~1?aq.3V ?`Q{]C/OvGquX?J's'RŸ̜w֞sڳS9Y3̕џ|XQ+_CpדJ?s3_#H _wI ~sg}, o4{v_&]TS>EKa\I]- _ o9ȟ6NN+et'g}u}g]xZ®nⲻGˇ;5?i 9]`v[1{Uƿ}=T3/q8c-.~ŝC׃rUAoq q.c +_f+k_:_ev3k+]p%[30i=Y??~'bwE}@?!؟ gvvsvcLN7Y+?|/kߴСklgН;<#ۭD\OcWȇo!{?L9|>ѥn5}c_hMVB,u#5Nag? Ol\K?jg5{-lֿpf+Ct}%J%}4{_vEK,jZ' oE*|XS.ĕ{ǟwuzwu AwO~135ȹT~&b0@KEV_^b40Yb]!GN»@1ejO,Ǥ_Z{읁/vM}~Z*$ar ~Ey׏`p۱ܢn#bA_>җ~Zd~}W= *9~tgu^=Sik|/9N?5Yܮtas^ 9sAlP>I;{9Ga#3ev"Ƴ]'';YLvZ>/Ņ^g/K-* zr3Y'NGA-zgF?a y! ՐoE8 D5cAWwf#'b#ە:gCbe35˞[(3ZY>*L3Zp? ( F{!f<yccRog2:gڬVEKއr/e<,u>L秓].~G@?,8{E|<ֈm\z9.w>cEDc."YcCy6.C_5`֬s>zTo'BUf58ϢiH w: ӕ?/(~;Ӿ虦م9o1v{?ͥV׆L<3umVmY:eά7b/k_+FЯ6+x3M ?9ofsN̞fS4,w{E9GL{s_\L޵ߍ?Q|#Ŝל8Яu5ۗ~I>j;W6,l$,c?kw>rOwNszT99+f)uZ`~]ފ+s=3}a~N=jao>zB?}WOY=?ڿ̽V{p2<ϡwg~" ^rŽ\%0;9z~sef̂?k]lѯ3ԟK3.Ӳ(wYQquf3Xs_hѯ_ŭ[= tG^dY#noDg2No͊sut= K?{rWøAgIfrq^g_l_t|.չ͆jgOnfWef>.{uv;bF~pVJ"՗~<s9^3Okbܢ'F뿊lbt? zX7.>۰$fv,:2dj!~ Pg:Y~M^au|zq_niR.kΚNU>. +@~R~gks-_R}4g]VqPq[x{[:3۹BfE _O=W\5/8 cFȫ(%0L3\h0{W[1jh6w@?`+9xݝn{?#kg ) U~-AW2>!%{_Z[e%{8Zϙ\gg|tP,euy~9bczSl{+>M`WKr ]# Sb8ʛ؟R,>eiya3c[P~o/[cc \&yJiRBK?js ʷЕЍW([*lFO(ᵃDa#4o:eV_]yо2}2:jߗ\t,rZw><; r:m\CŸ>u*MF?˴6a˃w ~\׌k 7b|wYKO-d-g/t-^{޿n њ uO+^61e Ѕ{>0k˚gX=#gr:.+VcOFu,|Oe߷R&??fs ~O,}d~K<zyK䁶_}'O~}k8Ă[|+YZًϡv;5ܝr CKeqƑxk̡h [ ^OК'ꕷ]q}lZRWf}fOCCfw+g>ſ`^s=s>ݿy :z6̝;Y _iWM\X#/c֏5'S+V‡~>[{4Wl:_w?o=K?¾<7s5/ۗ~RK}>b6nWT'[ݿĮ#?죄*n$10s"gAjXrs9@C R'gү8-;WX晦 9{3;cl}}yۿO]j,4!y8]xi3YsSw;-mB/YX^˙Q/Sc!6޿Uj?ʟw?bdř=j.V5gΚ?؜Y|9g19Ӟ?bu>#kRsth_L_uOYz9Vc4k6_ogRCשUnqr2\ ?/Fڗ5(?ۗYA0;~~u~G{vEl6˭_ѯ:ͼ:Yf;1'~![{frOfTfu(^ {\D;xfH/kwc6p_9Y=~Q_NYчO?  YD\1sp U` ߮x?kgczֺ3vo/=n!sү15C]4W;?3Mž mbOjs!Y7~G-~⇳Wb&MCT'hh.Cby*"ף9qz?ΎFqgѯo+GՕZe =: jG!ү83CzP_++~ԗ~-0a3swY-'^%s}9̞1?7tR̘ ~k a}'\8N -Rcb. sG'7&AI1_O9;5sޗ;;R$gR1O]{3 797U0 '|0nf0:n0 ~؃ǭ65i#BfR9rax;?s\_e\!Yw꼿3idN58uC+f> U3񜴛U겧zorŞЫ,)+mB_~blE?w8;x(e{;`<x桟8]/}?痉Cp~+fϒe_iQR+im)x&|!<,vvuR9ds]:.6RP_8=SvRϥ*Z6||6wj؜9ȿj?'ꋫ6=S_.t:IYO39? 6+82?q,Ƭ/0>|O پ_c_*Rv7L~e?W޼^o$I?,ZW|?/ЩY%Ask=y%;՞4 wXߙ0m5p犙a~ߜm鼴1|ebbvo'8QHu埳?ǟ5x 7~߰Сϗ| lJfY.K?/KcP+b?{zh ^Wbv>lW?Y2i?3pcG=\nt>ƕKh2˻G=O'|[6-a\b% ʪ2qUk=5ߥTmNg{d=V?W9E |8HcnDs??u=̫\"vv.Ra\kF$~?D] +@Nחi`3JwA+S..7?{_{ C!o/~ﳝOq= =(7}l?9zk4A@%vqC!&igʲbW'YFoR@/1GwZX>z>46.%O>?Ca29gs//HM\/mn{~UEWI2-eήAk.]/ڄ߬8]%^:fR]k2Ϗ["~5ә4VI}q2f6/K8S?r_~x{`{ eܥ6%?߾C:،?y sZV,5ŵ&Q.˔#f¿:ˉo368݇yɎ. |WM~?a~eۗ8mZfMtiRꝳo/Q:sYH۵51-ܢp_[?WgjO9}>'i?M}E>5R`9k!u.^SrgԞ^bQCځh_Uki#H~8~!xI-zg΅qF6WcIC`WʟsGw3?5$}# LD;<7~4{4̝//o LC_g>PSh-cdꬮy|3~9 =GJ0?#gX;OY BՋ%};O^/74ѯ9~ůCk,cҏϢmlIߑg]Z?ڿK%k_,puPEU_W^Em^X"'}'}G>} #s\OUf\h{9s%Vǭj[pV~ v8O(uww1{{~GV/=e_G&?e3,X?O5lP y!4_5{3n?_e[]-t~2q_iO=XB;g??Ź3?9?ʾOBW3Y5q4b_kY?K?ewK:4fQiDž)8E][v7ZݧozТ `]~qifZ'j?6 Aĩ;!N,Iֽ,S#-gZϣG]ߖ߳_>/ c'ugy~?sk 2}~żmb֏4:gxΰWlڄ38Ywd}:4s׻ȢC՟9b֔+(L߿G]ӹ*2iXO=gu [Ӣg|B| s\:/?䶎s&Yo_ֻѳG-lx[חXľ겿7p}#@1l_\-b!◾. ubͻ4sio2m'Jkֱ>tf7Qx;] ֬z݃sy28ߗyN3{9pf=xlѯ /3$~r_5su ?VoLE~:'xyys՗us=gW1{V1;| t3}\P1W4 ?{/:1y`Ǟ??Zj=wѯq:t̽=fu]Cm;-Q 7%0Z\0e}l>uF*0KY#eRϙ oVq;Ī#Ǝ p%fb);X)Ά,p69bNgz\qOasYqs,?u^+~KG02}v&3J)V)T(~,0o_t!ǔUA0 9^sIU{״/d9]g5SY.\1蜃J=׳[ygY:~ z_q.sĭS&T֞).']P˹.KZ5fQ\l11~7Yyf8E pK>W*yZvg5 7~h~sHBp᧵rʙ~`-} 9rZ1_r~Kw)><y{ulO;KVɧ<K6W1ޖY[B>ȟr6D.܌lwesotIkW[̭ޥ _{G :gٽK=# ] l 392=Ltډ956+# گeXWs*Nя>YHWYҎ6+5f>q^b'2 UA1C4/M% ܸ>Wyb@WxK,cw3dR`EQ]gM6iN#ba?+N{+iYMKOnztחİ{g Yw31 3Bf# 4O:o;hi 7n5#~竜v(7.Y~Nw+%vP܆y9 .ߛV  I+69wMȺq4g1/xZA8iw?,.VM}9vb y;ЗaQ]h^]S۸̾wyہs\Kzog9ß<W7Cf`Oc0KlL}8ͷWY!@kGNj%G) b? ?wVyL}i >B̲Qĩn$F~s\([IԓYmUjS_k翴GH)-*b1;6|?yڍFGsTe 9g3A,W5}&dyu׊3CL\vv~??h+n]?w 2\ +?rX_ј&|_s1g DKgV,c?B 9g;}η:2zf)u>EK,pyՍkOW 5;3w_|G w>;r][w)B~^bJ :B5 ie, ,?î;7r80'7]uv}~?eK8uWS~?v9V~.(پ>雷m]}SkIk?y)?HK.,;DkuJdͷPO\X@?dYG? Z%%v}e.ej\?߷rg> 6C7wr?6o5gbFg4;nowƽGW*{a˹{3q{4x#ƽY?s+=g~~{FO19/{@=e?AB,Sȯ&n.Gb?Ѿf5Nbzqpީg]</tϷ:wΟNb2~ .Nu~yq?:竳oXmu5M}UGyQ`/}twU{JY\"?u̎OVmTY^+;?pF..Kg[‡]@PGpw z=,w JNq{=bu/, <. Z|/O `f ^BܸqQ/ʾ@ |.ogoYO> N}bw2ŌUKZSy,foaeR[yi 䯺YEQdÊ j[g]`; ]۪93܁D+a}~q?K6L?<L۠g5G </`%B{r )[mznkaw}(^ӸBM{T?C>ں\gSgMy O7aY'?F~jE/Co gs8${,WQM~?J ֏4ggiCq/ wc1_{O~)auz) |edKOvmC?yuQCjITjA돪_tϰ%%;ٳq":W&]0ܟҗ~?a'dGЛ?we@; ?w9 _s&t^G~BsIW\%ə|s aKjO/1r&+9u}sz~;,Y}Ez=-?2匒ՙǩjBZ-)73;mۣDP=B?P?mu{?o1ˀwEX?ix<9Cnv U.cN*~F/:m?S:q 4k}ηuF)gѹ<W~g߲KX(++CƂd.z3/v,s }OwŻV۲}S4.ޥD͈4E{aAZ~{>mLkvcg{/ l1 s;ú;Ӹq^12\;yH/gy-+O5?\ֹgVXF[ϙfro#LsY 6<:gwّ7w Y)(aO(l.f2Aٖ~AXhuM\q/ Rv9;^zjЏ޿k|Vv JZi΁S-0Y)>nWbﱮ@?j3ggi3оFEkl,Y"݃e-P{ KcaߤMϳd36l~!ӟ?6|@gYC _Oa΄/GjK㜟C+ڬ͹;X]cqcV| :Ycho+uށ.'f)˜'Tlp\xY$l#a;w#Jj]guZ?oZ5N?x >tx ,u u6E4knV2_S윾gw5go{'_k?yF 9{x39?{rq.`?Z#u֧-~ ڧ6#>u3uvG79Y;bwy>щns~|%g?/OsI`OJDY BβSiXe<3D{ֺѿ iVߵZη^Aw"%Cw^}Ls׹\C?~u>lj=cn~W}ܛiZVAI24< hpV@efhhu{rlcci8E&јmrZ^Իk/zꫯkE?̀7 uѥ|J/vBi`9G-E-Hy+?"^ c_?':?㹋`4{(놽=Wl߾}*#=@Z`pkXO>D~go`8?ov_򟫄^og8sUx_G{߀3G[1??#amq$(s;ԽĜ~>ii3ك7}.ھ,|&-m$}V~IuLE3/NVR^`>~3N=W}a5RU1O¶߳vuAGVϿsq?>&1b.vg*0F_bv 4]t"w~hq3=VAL%~2$ĉ{W߽} fo|` 8æ}/O:k@lЗH8 s4j|jsE^2aYt}3Asz,j8qXȥI~ƿۿDM=8t~u%8O{z,՜o`c[d8<~5zf}9YA~6^or^s'n^c9ƹF?i~^e]V7GAfwG>_=;=™fo]/Kc9I^ ]!/]q..竆sF{߆ۗ~NRW<eGY4z;^y}6w-z֚)w7g՟}E~o8ٓ8}-P? oT(9 ?}dz;\7T;uBǺ?㦟3/}_vh^H 9Wg!Y=wBE#܁3 yes>hh\CP9q_O~UN3)`Zs',0scG-Mƹ[/ l,C_`>;`֏zqT{o5~jOܫ+Akg@?~e˜3'}9:b}< -$~yAYa17!n/rG[ L=ںLNov衹ƢFqْ{-|Q/΅nu^z?aу{3׺h^zH)9Pjdџ/Ͼqӯq.au̐C-+J=fx+יG=$V8sNJL?νvs~_~1HCy&g}Ko{g~/e/j,lkV=gr埧GU:ud|ue/9iit>1o?0ڿ?˭֍¹qӿ'ZsT-Xe5.g :/dD umf#гm9Y[3`J:CJyOCOs<[2RԹF5,R_G}_[?9`mL~3;Nsl˷?EyE+yq_dl^Ի83T[6K!קtgt`#?kޕӬΛ9ê?̜V+ݸ/;#/s~ƿYݿy-k=N?M]h>Jz_fP2yY] 9˟czY5Zb C{(K3Gj+Ύ0cneѯs ghw쳙kk$6~e `g..l+%T$OkGa歈mKFm:uT_/O0?z %N̋Vb{|f.+9~gz~=A:?z~ze X\bP}}gyWwXE;P9gp?[̐3t,lr&Hq>gH0@y3Cw_+{(OYA4̫#q>xЌ/̉G^S6,uOu|5g{߿;]3HYwa~ ",cyM=wѯߥ[S̯}b -.t5ݿ3U'{WYrsSF 2## % By}d'˚VLQ1|G%v r)yVq_bfu%찞hhYٺm*~Za<iZ]s%0t6{n<}4KnZds(-fh!ijϡtYpf wi+iulO3?HW!#!\uAս3_U|rsJ`0)\V /^`ՁY).г.¦ߥW^_lRo-֢ӹo|oYye# @ [Μӑ;a5M *9gkۄ6"oYĹ^ku?bo`3yֆLūdDs ,fsKsc-~;uIRbyu~WIG_Ugfa{^ɘ0=q2oK?R겿?zrtrg(sso/@/u/h=>{>)|8b"uDz~յ- sŬCݜuK{7./^,> ,z?eʜX=+<\oy?׏sYe`O D? u30&-ӽ RQ ˧su;R9*N7-d[Ë0iKq]bu韾u2J:צ9wCwssdX'TL~ݳ,.wTA>\D}dSAmes=yŸ*5~]_',$桑?BL)N,הRzm_=?!"߯{%=w=AL̂?/H+m*Ln_&LgYCybiHA+ƹqtg5]˾U=o76{",v/|ۺ^/ĝѻrwy%O)G!.lʯ)k\M ҶїE?h/b7lҏ_ &7d}J`I^b~:gq#ah+`osςƿ'NF~5~ ]1&=WgGͽ WlvEg,I<߯[K\)gVוurKK."ʚKNR\ʍK"vR`MYп֒83@._"PG7KZ_;},y~ 8䬰å=~*/'oggy ?4ϾVs6uݳV7X?}oXb'x}7 ?<{ QU"Czk^4åK~jv0f͐.c e5N/DOpgA g.s^NӇf6%p&{aRcV3yN ,bȲʩš=Ӫhe\+8܃'~_cUmb-u _W1rY}x/.\< E5R?-T4@g"~a\'e~4b_Y`FX褭3l2_|Z"{,Wl *q<v:g;RO{ ҸUQ**j^v<_ehгct/Fhl{ an/?b/[39wdg%9xq+Jp[< /PߏWe]>2|>>۫ܖ.Ç\_g(3Ab 6u{:E5 k(as:0O. C婲s6oϷYtl0bׇ{}]Za\r~/Ԝx,w~k[9ŏ5r݅_wM?U?D> [W#`C^juξ~şlcoMs^a!_f?ur5ς}5CVN5_umŶ/_^ zV>Գ y:~{_^z긌&,+elsCď}?ԙ+,8S2нLktq]s^ɚGA5,݇7^R56+,v2ٞ!ی~λ|=㦿^[gYko/~(e+ 5nE.rtr|TG˙jۻ-0@NZq_uN}_nQ_5O;:df e6߹٪p˲=)YFo+.楧] /:_?3O[\ E,]y3s~5|I_kڳMﷺOO{i5lY7].y=iVygqE3.(NڲNw[m. Bydԯ޿ p9.2} "pOܬ奩{39}1R'ߑwnү}V*BLH޳u. oMkk_mtUhFr:uH7t\FgfG3]#" LV(JgxYT̗`3 KW|)f0[M|&3`}Q:?=~<f*-1[׷ELα'~yIrxNX}O$CΏ ,f9 1K-++*X9!z,=Y'j5{9\ftؙI"K`k0GηITl2sfsYF&Z" %yQU-vs -;]c?=uJcNÜ 0SܓW\YOڹCXkD<+gڥ^fe VbH,IqFxOYy_NŬ栀?ssE OX'y*+,ftQߝw|L'ŏչB%1o1{TgzG1:f2ɩ;|9ߧ;k=[?߅_Y`ΎCNsY;9rf^q 'fwR,.D/nȥg!N斮9+Nz_jXi&n vWF9,ůcXߑzxrw }]?2{%󶗬 25/_iF_[nB'~Nʯ_3kO}lhyl.8ԝ<_]iu=ZXxJM.䗳{boC y.~LG}>n-m8?ιqVN+l31;_xD\qX+Kz ؟sglp}~E_orew_h̢nX! ˌ(ĕN")%+߱l?3!ˊ9ˆӕbe39묫A4Wuvֺ3j{a9;l^ǝs'úS4"|573s'-j6t9mg7q]y[g268d4{yBc]bXo:Mě9F>f_Tdw,cּ hÿ1&`ml1iAwnwZw*mq?uB ܿ/A!ڋEgswSK "EhV/c*kӏϢyſmss:%YqVY6i:̟}C7jw?+3F98/.pu@1?SF;+ ɳ?3gO;Yٮ;|Joc';ȯA~ ~Wm+[ 2;LCvue .ej>a#ş`y/z`f\Osv+2aQCOWd] 7hwڴ=J>W;_C_3ρ>21ܵ:/6)!۔Di,Uꘋ@}]6޿]fKpԟ}f~߂Qut)\'÷?: [̍hoZ s?ؿ5`ƿ;:>DM~OO[GyiOXms6]ٜf[9zu|ft z)jHk4-X#kŅF5t-KpΨYֲ_(~Z-𩹷C󺬣Tjm363OLϔ~}c\Į,k-uEL/cO~?3[1bOZ3ܲc{ {X`=Z6c3Et野gO^rȇ&=d߽WCqft_}lh"ogzoc w9%̙я?>R gNqk/ѯs^CȩWW9H6gĹȳ5{7N1G[7]&wd=OUzgø '}}gm>+,Cd!j?jB6ğKoj_5/1n);/NOϰ瀯9ͪe\òL9W:e4K?1~!?Aй0k!7Kn=Ow:/>PrG9TY9{rd~r&YUk 5qBQ/cmoߗ~fK6us~χ֟R~iogJ?-؏X-~,} vKN5gͯ9ϙs_D[d'ş /:5#e-dvtO_O>U7lV}Ͻx*^Pſ]t<؄fcܽ;OR_ӓ~9۹B O8q &$u\_WtC®BUv$OYwŵ4, Y$Vǃ-09^ n<w YfƐQ}_/›Y ?NDۋZkC?YHi'?~u}~˚5:fP_G>Lr"W]guO\ ǜviw~+|cyuP?ey(߾~>> wku[g%-gC? Op.uc_UNٯ&~חlN䥪vf(n|{ӾjbB@wY(O,h<0w5߾k_ĆKBh,?a]ڿ%c5n 8‡w%Ҝ~ .Y g"w_+aN4`=įxGg>Sj̙gWRWn}bv (U>͘!%]c,}Tg+4kΐ4žaK7x 2Sx>}k筷K(mVcşQmJps/۹|:غ?fw,cb͘7`~sxW`aI;syOgx3_q^/w_Φ;P1Lة+V\b;+nʬdr9_bOV~IOzЧY̤ڤv!gL.S1Oѯ1{) sI|Ӻ&,L_'|6%f8S+;_by2OvƇρ|Dԝ Y>4/?aSO O}~o+1ܲ|%prv+z! >ȯǪmDޣ:Ȭoy~>s_&P?^n+?s2>?7گ-1;}6׵XMү9ٍyb;̸,-ӣX=pvi_3_}jYPFqV13/tV~*_f7o9I Cu)$hNU[]vυĠWp3t?W6ogWM~ ^jl䉹ɝl:KK+, M[ށvסg/]z_Q4%V.qL y%2eޱU3:E.xq.|n e8-Y?sW3XaeudsGBy*YQŞTYSvbd-ndz\N%=gKurf-Hq~M-K3_޸L_Fg ס˽/-ǝS-B༄˜|vعD yPb|} >ιS_Wؤ~]C|||5~ߠwXgzf_Z */sWG'+JmWbq(@O^l_}]/x^qw3L}f6gnbWFd{y{W1?u"g1;3[kqW2G5H$q 3ڀա{ CǺ,^;smyDGg_=V=/|g[o#}޿ bhE򫺈!F׼DJSGcJ(N `P+ʡ柵'YH|72{M̖͹d,;f}ah`s#6^.6jU.'\KZ,|[Y={I;K!_v"v3~gf Ϛ?n̹U;R|w-;T!ӏYJ_oؙc;[;aJ?'ȟzHqbU3\ʵ埯zh_^+Ng)0C3SYJbA*|Q`=W/6.˧8K_qFZ$'f)h4wݢXS/\b@_oWBx}-۷,tm j$ qEτtǏ-pA7qw;S!?Cwbw,,:Ϝ3v*㙜fܾy(??yv3wW%9`i{HYǽ~_Daw X}9S/氨bq9M%jJ6ر!ϙ[Y-gk]#6q]֮[4~ThROK?YZʯԻ0tKgf>ۭޙ9jW9?XiSG&lw{3?jy՛=@_`Y Wxȯq_h_ܸ9_L~9;x*z^t.x{n;WZ= 65e0~ҿd^gAA}F?oi$/K2n~ ?*~B-Я8*w)lTƿ ?jlN0<]]M!\KIb/,O{_*:Izk!9>0gY??erKόiΪvGxg{UY!g3z9g뜔G145W ͓O5+OYc^_tڟ?2^զgy~uVQEؗ~~9X%EO#s~+Vחp?}.ҹqӯ_ƹg!bYu({&Y<j 6sĮ5h]`ߗ~טW{ ?QπHgSs5uc(OVܪ OR_?gy *eYM}9{plkDIeeߗ~uy Տ~y&kLLp+{ENWCO9_b<⇀/{(>Nzoنҿq¢לsL/3Jg5.ggMcA*!̙u@=g9Co]f7ڟ;or4&vos\C_P̀~<-,Vڣae 5y-zOu_C&Y?dfۋ-qxW[=P^\.B.k(ۗ~}6)3wr?s~ʿf[oҞs,^npvq13c#~~a&h3'Z~G3i^}d7=yum2oSg}{ֿ女gz`&o iφl_2ޕ ]D\qӟٯ~Imyक़{ _aOjngSP{DwUOod}Y,7X3wH]pCo{6P=ې[!?2{qݿ3d *Njg3kke:;9?"=Y=C2}uǸ/gR} Kgq%er܆K?{lu'p Y'm:Nhޟ_µYzn3(A>e{Caq9;O:u>_DHi36(K;,̿/G=nu] 3z esQ]Ru??4 }&{q+ c7x]>?;/ѯ^$reƿr]rYev6?s&+,*ڋH;YY~&sCN?* }g39yIi WZҙ:Ï- )wI+}J͠e]T^RWk?߻ys? ]Ę$_]vZ_ПL̈́E9  ;C,;ﹷuSc<]_tc%g]ah{oZ^0~Ө6Z}Z_<澨mΙ]ޯ+3u:g?2,_3cVky Ns?\_/%7[ѯw}OZ57tݱDkC8ͧ{Й NR YE2~yۡM]N="v1vP֌YvF?g|2x-t(ca4n,o&˭/ P<`lƹ@~gm8WmY6א_瑉%՘gK\I/#I>zP䬘a9ѿ^@| W}Lxg}Y7y+kokXݰO}lgК%YAۺ̾i>vw5/|_5ת&e>?&h'w~ݯ:sԷ/쟇~t e29=U@S''Kgy#И]>k,I|CTnzw |!,9 җ~c6RQ筶~3|77L<h=D]EVqw?W1O~ş|+ug~_Ot YЯ}Ӯw{ͺꏿiAnq~[<=W<ðu !R9^}Ofy߅X= ڮ#}Ї. ϣv~_K+)G̲P_6gX/ٞ-!q>v"|=@`w.C_ jB/`%jG')>?הɸw--Ng}#߁_G>֎3Q73hY! vyO׮1>Ԝ)6,Տ?du 1߉ bw|#&KVشMKݿD[fm|yxOOi '} .%{4zٷ^ _Sgpb w}";S?0A/k^ر\K߳9yGSbV?gs~>j E6:=g]gYoX^y< ܹ OsHZ0y%ŏ꼙<ݼa]WFgTWޗ~nYqMSz/C Y=tEMxO /hod (|BL/Eϊg=VcA<犟Cݺi4τ~eh}:4~Lsqg`9H֕WV9{=/ma(˔c,zȺ煗{njSwi~}7[i(~E yv6`ѯ8c|uf_ss~i2ο1=Q?9ÓO} 5y޾x]sH=u ֮_eHBЯrv|(CܿY?>g?%}Y㦟q.䷵]~og!o̞\WfQs=hS>[_dQ=&[mC?^aYX\_'uNMc;f TQd+YP=gٙ3mU3beOúFIZK__e+fCgW\:_mJ=SќG"GYóbWywcEs}W]GYi1S t ٗ~3.uC}ggq]S̟0ʯT\YZ?:{MfV?!^dat&SߴϨ_d/mgKTq9@?{d[ # Y("g4_j0Dq-dM\\ևXԄ(w/}'g 1:hb,~55;L/st~??)R[}s~Hl*[-sZ%o m3JEC>2&jf3 ].u'{O:-_ؿ_>/ڧsZCg_+NߵvyѯzRl}lMoxVJ]}Vﱩ{i5qP]εq6xߗ~9.\!/pY䲴{ѯ5_{f->mKyBao!GԽ 1U?~fyhzPW8;3v~V\;"?̆~4E-ldĿ}y{nkvۯ9g?DS֍;Xх9ˉs9;,v_:μ8;~սۏ:mĐgg-lm]9U\zчɣ{WG}'9njخO6~)=kIA"@ʿQͿ =yZT,fv{, ~x&N#f0+gl럃_}C{,欷+5Χ31KtѼ'ǫ94ε\o1#N\ g#Ι\/r6gyY),@f1 ?3%\gvg5 x s{~{ =n57,__@{?n|W^\dA<_WҊo!y.v8 y?ӛ'ݿڧUf58{j/zcQ.UKUZ_'b:tFFZֳƤz^=ggC?2@ɜ4: [Yu$,۱VO/ O< ȮGAGg.⺥ELv"šyu[O@Lls,"&T2b>Fo0N/koΙ{ϡ?4̾b)flx:R[k\V+>gwŹ5 l[`IާNϠ{pVqMWRW,0DG% ?y =IH \*ĭu̡%#(k?įK߹ܢHoO@ b?XO!fȮ.ϰG5KطsMˌyB5q4gг9@=OX7x}o\ھJbY`??ujs\ <ľk[n;V>g?>i_f9?3ngпcRc@(bؽ_G~xX'z~/8iCKWj[̘GsV7W1!y038_iNUګE9ONW(,֔V[E'/rdݼ~)y?s]<ԗ~OqWц z]+&_o.b(YпԿ_}V~߄]pgf~D&`+ `_Aܿo5u|_7,3ǰs 쓽J(➹?$L/j{JNL"ͳs%$0 УfSyY /W \CGSgB?x 3/8ݰee|v"&n#^Xd%!w?xw6 >??<|M^!mE~!G+w@o+n`7 =n&%Zjq&j-qENY{9MNg.^o??Q?o#זpWWwvy^h; ~=gQ{8A6 5yW' Ik@[0uc#ͼ2,޳UWVG,p*nU艧g,7!~}sץsL ڗ~6]CC2/ʽYw,QNKK/gc :%E'/io@wA}@~#5fy_\ܿ ן5ƾJ^^ #ÅV5pVw2:gN9^/3׹lxCο_cQssF}A+oЯ7?{~i!gH?t̵)M?8S]y9>/g9C9C|~7=3hJCsPY<_}9sѧb~/GsXC_q3>l- \G [*oˡ]zZjW]g9~/3d93=#w@w?9 !oY·7j7aOi7z۔L:<+uK. 1ٗ~=ոXkgϚ qQYy ryTx89sz['G>՟iqZV׌s8M;K?gs7jed3rP_&e񟭮װf/Y$GXe ia]3^WIŏ%ՇZ.Zs=ڜ9"Gig`T%-Nymh.ks~毞q09)_i}d83g+!~l?7sՅo;{uMXg9&բ/ѧ?Zl_Bu3kkE,v>8mW#/:݊yϲ%fG0YsNq8,=W_Q[+Կv:}`q6ss:继<;n_t\5g#)Ǝ+^GYeXXY{_]n+EGؗlb>(fa~FewyCA?`ҟV>jO~z)b1kĹw̽y|Rό#^ 3gbqOoѾ6.׿Y`ٿ f8y'l~J.~kέw \ewX:'&חWaUH\Vc>kafXggk!~,Yy=~}b@~_~_sڴKص N<0˯=~OX~_zcbm8ՐJ>{=g?6 {3/5niK|bW{xK?ٗtN>>{M }ڟuPdROP{?!=ּ./K',tfn+ɦRa>JX^j1ssWfC<٭]د}Uϙ$}<ÇSl(SVsbbLAYIoVjwx_~[3v3񠛻 Μ-;K~VQiVRjxw4V~iOGrj\wS]W4wL_qϑIpU?u|YlO#n@~LxU&tY(WZJV.U;{ᣗ;Ϟ?$.s+3k_uֆ۞3̎30!_q#dL &b*g}w! ɰNP g >ѹWC?^ӯyr곮 X1 R7bG| f?YP:ďqw,<_w>s|C9~_ÿ峠| z;8X̄}oXgS8{3НY@pN7kJ1GG̫?dݓkMGό3hΜ{Yԟjog@[w`?7?uGUWLa!S7:aQ'Y`ۡg5 E W:*B?ifYg%v{8K[0t&_qN.5f"9i|56'?Ţ3ww+. :^cog86Fs3Sf}+jUƳ19!m4yb×c>|`RekWc@5Wr19lmw_٠^ų~8ڷZ% -I쯜:1`]n|?;ȨjE_i=w-5^y X\6-l0yu]Zb7}rY?Z~/ }Xԯ/eN2w#!Y"W4ƪ~oψ򨸔¡]ua􅡯CV 5 'oN w>e6_ml&<;_d KNXp9K}ݒL=b=/i__iW]gJ~܆y8C~ߨ z>ki`L6/uQ{R=e|9,o8v g 6Ϟ/#?*W&<_,8g9b>cuϘ?o&|y*c= KE^rX=G_)?3@~wv{:뿊~],o7n>-_bW~y^YkK̸>~H}]m1}7bDk2Չ2Gfx,ogtA?bg)tY?bަ.r{ۃ3/迱߭ƾo\DϾ22:Wo9lz~sҽvz6YЏ>iu<>g2ŽkBAw' z}qų,c_l~ )8p9F q|foVWҙ8=gul+?Yb~P1ѯyQͫ8?3Z7䙙?r&VX7?sIGKyy >_;gx敲s3ό]Z/sfGY<3+!!Wղ̜lօi,ğ$FsS~;,W!>}ёѸxO?SG- 5?ޗ~9ʞ:b5Pt2Wܪ,!ðix>9 {qrϫ-fYZ7fүvJcᑅaN'n2gRQ_j vK뜣by3eP-B.2}gZ%nu-IϺGFϚԳj{fx|O|j=s.?S6D/Z`At|ѯ1#{P'Ҝ!r#&s~>[~3xȿ7MN_1ոHg܏uk?n;vB{ۜ')~_~w%߾kϐl6t4Ӿq?OpZ눃!ךY>*Û%-ZҜXs\n=fۇ~S+M_r,fnuPOߙ-Za)u㦟"Z?ͅ *.+sW93vBwՏf?F9?_6ҿbOX^W_pr UsEXiI^mAShQv^|} w$>.y &,/̧!߾Wrձ$YcKJM~yo~깳Fo[8soC/MC,v0_3uEN ڿ|[\=͙ۛ΃ t:i'}}N\!/}g s\-1XzϚ?Ժγ@]?jWozO]~?hu=NYTZbRgC߾/o}CY&np YP ac5\Cg4N_ N{Y^z+֪u]14u%b3k,fH^tss0:C\A⪡s {{~]`)_5sCq]>zQ\b_R\5 _m93_r(̐( hiL<0H΁ίяo=ͺrso)8Y"Ź"m7sA">yIgU~uHQs+R6W4lN?{;1x>%mkEܥX:_bϝ ÜQŌ 1-vgg$aup^js3GVYϴsGw; 6 {~m2uKJ\Nqxg2}U)hlu|B?hWB~3Ι<~,ErEN~ Vi,xM/ҿ&C蓾\nƵŸ dk?E(;0r.įۍ7<+r?ѯXWcQF= r0ޅ=?:N%ǩ c:v'?*~'?q~`Nur]@Vj.Gϔ]gŻSYL39+?krL-: )wY2sO M f^ +;s6?ѯ >ӗ~}}[M/g {'qk;Od<_u4,@_Z7<,wCWX[4gLնtu?'>3#2RcnuJ3NGV>`\}M9 K^֏v@9_B/;1s; [ ]pشD&pǻ"0UFL$/`y,:<,E~vRcq+~\)bQ\oL31>jv;oy bt.^ϬeKnQ֏g֠Oٳ?-dQʢ׊?c\&etB@5ͼtdk/p^Ȇ?]f-_< N6m1 5h~1.Om֨=d½s>طğY^WWc9Ó]lΙ\g: zNV\&G\}hֈ3yC>k`MIοhj,l|_-vEo2G+2śZmK{,Ca3o.>wk-;DYЯ3Gqv*黵{w:w(Y Rc>#3dF腟晉jDHsV=kO_*~Zk<{E^ 43 #><?N6iOiT!ČsBN}?m9e9kS/_b\*u]/[̐hNg1hO~ ,s`uGsY q,='~>.e~W3eEgmg/KLg3G/WȂH.C۵~~;}E Ņ<8;K=xXܾk7k0Wρ|nۨSa/OBh%aۿ9syfO%m.̷Xpa]~3zGR O bkNv Ll8=53Hmg>;g߿,qy湨r#J9Su~J_='ɸ< |csNsw35[B´Щ#w߹L_J٠DoD_G3Z@3뿠;{.Aﳇlg jdPPBo΁=8~3kߏ3?oyZԔإW7s@w 5ʰ& {|O'ig!F㚮臏Xu^s&J*ֺ$w:' {VA#LoC~|{o=%jؗ~Ɔ7Ysڿ(l1\|9䅠;_1}:o;|1L_5U|/gIQӁwp3/V= jkC׍_|`ta%NY/8 g\PnA.;KzCYkո~J2X|z)39kΐ93CίjD+k-|-jOw]?=_CzO̊笞״7>ګJ=m)G#}sW:o@9_b(x sE-^q{;F=3νN_h{9 ޙ͂~<%A69|X}?[.KT7e~*榘ovƺR6W7gO5 ؜!O8ZI=뜣Ώ_珴1 (};*lzW_O_[B0zt~G }Vu]hUw`{|?@9YKʙW>D~%fUa6͜t8{)w5W߽i֜biK+}jq)|~=:k~|T?mUR":,xe=3޽9Snmu1f?S8YC)i{[{8].ҿsѴYaw ls]Rϓ=l?as_㴿b|"_P⻰c+'9[5guAzΑؿ'k1uΏ~w,j n軁?_\xe>~bF9.kYq{66ꮳz]F?s%- a1߅˸z!Z;Ml,i-h2eQicl, \m,^|h,ly|=wt1W|%.~Oү?kK}P_>1!Ok>b}^eal(s3ξGzRSq}:ğ3<7,p>[Լ~w:hm_mU 9_rM_g2c,eu?od9|= %:B+2K?n;_8w&u ~yѮ'ZڧƳ[LBn)y~Y(kq|94g8 *}~a=Ԇ}W(#X/4^g5f~lsV~5g8 R{TMĒ,)fC-  =vV$vzJ܅ r _1e]l\fJ0K?ӎ;aUVӧ~lk1s Jss]-R/kŽocf~#aWx]K8[A?\nC֙E\x-;S tf|X92{yPiO lb*]1E ;x뼾9gx;׳UqV;"+' <^"x l[TJa^PzfINt\0Lү8ZcM?n zĹ[Leף/gX'1'h.؟, :}x;=~ן\yIXt-f8Ip =+ 2=Y ކHŪ8ZYz՟EZaHŠ wZE}C.(s]fUfCf'cĘ9I'^)%qӸCuKY:xFf=q'Ry8#2{/Wg_zy6_w!~Oo~j|D4OԽ< ڽ*#yz"OKٽb&Mc?yKv>LJ`?V'Rw~bp4{,y@tvSŀU9U?q1ƹn4~bk\sڧzK0/'l"bB9:[~3[yGQ_I]CXL[ {h^^=}tF6L(?s *[vi[yWb)WB?h bYs?#*~/w^;^IR&]ޚR,-$ 2;gs g>s-x>'W)뭞Ů CrY|hww}wrRw1K%?ww ܰrjs䲺S Lhb.TQebng3>ga1 t+~⁧³=i՝]DJƛ_Zߣ/P/sݳvLVtϩ7_{zʬ,XN=xu.gbӜY\2 E^a9~ h,^VoA>{Җ Э ;.R;'w 4υ~ʼn=}âU;w+*WY`nu_8XW=Kb oWhJ~п3 ݧ l߷q{{3?9տzճZg ]Sdv w}9^/7c__GFgt⧩oOŸۦ;)uVW =Oݿ"N]KWsY{:/[ݗ~a|N 4# _jj%{Gj03gѬ?BojYl`V'J?zSX`s;VOо_l_bSov{R_WYS,8ƾ_8aàsCN痺ڿp }Т|ԾJpBov[o'~KK]?"gK?B7YrT\9k}ҍMO)SY<{۬~ſwXb=g9OjAF賭:_ٗJvY(?]6kD ֗k^~:)s'+n@gTW; (}KYc'̓~惗ε:W҅?d2ba|[ i$w@?_PGyzI({Ro_Ј r\'UgOkY.>+Ƽl^X yl_EW:uNگsSI8qY?tкaK}gkI5omfߴo+T,]=&P|X\p(x/9|ݴ6پ%rqܩÝ'΃~k-{#~ꝕYqOr2{N+'gg3pu?ٞ3ygs WXSylnh/]K#ݣ2sE-:o3μK4l^&ŸY%Ŀ{ig^S 󀊟qP1;:;!8ٜzfA_cisVxs_ 5r.wz 1֗~k >m?I\k#i:EvwC}iW[9>ٜۜ?jp̉VFZ/YDgQ9uӀ_ia@R R?m14$> W`M#)f!OO-bjAu]D>ZιζmM/O6뤬Cd^!?>ƔYȂ s[L~ƿ?\S:8$ĤWZ/'_gs6?~9zqgRO{Q,!w}'Vcpm/]f^3$C}_#@̆?2ƾK#%f{/}}9Sօlg7@\b,uyƾC_WgQZܽ ~usa|z$b.QjOz~֏(ӧYoTg1B6ὣs_jz?/dt}柹Я~,y_m.-}s[3Ѽ{ƭ6!joʯbi~\zs_TZw3{9k{?h?l 4)ا-fæ}}뮔?/k|Viӟ~b tاf{59Fksȓz&LsV"Z  )l=1s'6S<v(5N,1Y̊0tcs0b/U?AE;xg`.5~b&a2]l79=~'K`a3I΁Zwq+.bi~3_H0 b).%fk?k]Y%By'?s@$%h'gX:<%f0t,T1p&>+ιcs:cg~0dz:J %aN5篘'k\ɾb|CvA86yhW%?p~\_wL9 Fg؍; .xH1j;}qTO//pMQZ/0Gp `IGU~_pu"gsxZռ4<ΰK/,0e3I3e%6f(xX$}=%L;|:6̞︽9LW[(3__ l/UܕϷvk_[o5%Ne`bo]j=SO̰sP4k4fJY ү3`8 Eڪ_{4g,-hZkYl7\/5.q&:py-S13^#9btv-ӳs&׊o?ߤyN!߁!;N~>cG3g?A7FVˣ/OkW̹'8_\c28ī;;y-Ɵ{#BC9J/ jimB,#$O?6,7;{=f9 p{kv/5x{ =PVasGydk1ʣ_V3kWYKuY}=C~: ?kT몊zry}tOب',ּ +8^ʘ%6?~Q3fПAK7Niy|T~//svExWY.mqYnz|V +K/澵~Na]KjũՑ.i95~"_Z|.zw [e CgBaw?k.~>֫xA;'u~wս4ll[RlZ`CGO+.%ǎ/5~&)blTVМs$} UV׃tMs9 ?qw^!8t'sWgf;N.ǔ ?r~9@Vy: #9=˚'K3I[?+.q?*sؗڡK?F 9C"ŏe9?c53$YL>`2_C/zf#׼߆|Ӣy,m{'=,U,-=_z^m7ѳ?v mE/u)jr^߹kY~f5vJ?yq_bsUkqA;}O#fck]/8첄/+}x?П@~a7XBA3=12\D?g8KYE |pYB.Nq3w_T66j_Dٽjؾu;{cf eyXsV:1:Fv?dƝYߑMwn)YUV"ی~ߴϓfW=q΋>Q,bJ' ,''gϝ)LqgV\)_P_Bw>pDǖzGq ퟙ?S~W/oҜ24_QNOXuF_UG=SmΙf/gm{t"N;wt.??W] x{o돚:fJg e<Ϛ dh__ʸK{HOWgԂKC!w:}ia|<΅OXȅ\Agfkgӂm^e^  ϢxV[L*1鼒Ewb`V՜묜qwY3u'=Y0̜a.)?ljЌ؊{ Ym;65]O k9Gxl߁\gy_ٴy@"q[v}.V6oWg,/Q"g!b1i+so몔!7F{:2.Lk6y.8:_#wܢ^ESmU^]Āg+mjkҹ! 9| Δg,tBм !L~9UȽ=I~o&Y5+m6~<3{[?.iF0j=K{aOʐo_ҚDad/X.4caY΢iʮ\AY|/égnnGg/zfm;_<`ΑӾ,~\?<ֽ~Mߴ)i) }OTgYi?ۗ D?寍g)*יLN-9Ӝ5?~z k]F2̚?Hʩكz O6~~iEEHMDN3_Q|1VU,OYeg+֚9OO[f 1D?g霯,b!I;ݿƏ#_&usV̍O ?!^2*,W2}女8wc\b~E?뫟g+Ήڂ[jLim߮J{6GkkZ\,}Չ2B߹țAAj ){sѳ0:s\cFFMHv+YХb_ V,'Csƍ9iӟՏ&_|߾r3Nohb>Z?O,pGtOW NY?eB|b)[,t7g f8jWҜ~cs<9goYAhgkү2sdat^~w d=Zp6+._+׼M'Ѣ~Oo֏Rfy,.C;箸:m.''~j[< :~!kN:͞!}k -|OwYNl~L<=*SǞc[T9op.1c=9bssr${o/w:5uG,f#󦘿+Y`q  :ׯkWŅмtc:_L-f<qp8s'.svx??I?Z= L|LΞ0uD9J́a*_99j5fT*N{d[;آwOS;(.mN:̸̏( {2y9%f B&'v=g\|KѺR B15[\gUbiä؟nþ8w/f7`XON߅}3gYHMbC73 @K=s9# :,!g4K]f1OfߟK3lNA(%RG,z9!`AV -_e'Mq;OZ/RN?|!b'X]zĘ?F0B9~!p8{ ,&W{gsVwk9s?otMsWWVsbmX?=|j*RqII"ô4DBۈ.:_ic9]w$+?shc9o$)K Iσ_/{9:GOӀKʊ?S敶ܲ 0>~jIrKO{7{Wye>++6cgjXU+ټz=iOEnOf-R7?-ܿC. %1o9}/*5rVMל-ggfo~l][t2|b52^<_ @ G)G =85*%&osj&ㇷŞ_{K J,G'M_y'V1oa;)e5&]eyK?on$V޳~K.n7X?7R~^OZqF g}m?;۹(FUm5tc'f <,2bTY܎6VG\96Xnt#fX@w(~N8|ǻ,Pݿb\`yq~߫W0N_T"=Ԙ ]caM!>#[63~Un?ϳ@guչ 0GܙNŢl@na7w[@C_B觭՞gJQ/_X_?nc {[T<6?z/<—7kc=]q8D<ϵU.C>n\WOX"ϯ]*ySm}DrsZgў7U,/=ޜ=ȡ'y6Ӫ?wuPAKxBq>7wYع{m2:wJιkjZ}؁rJ,KDNkQW\Pz+ lo AvG=x{)5~/_i__=wԟ[w|R׏5y2w )N2δLuVǭ{D9 @/_9YűG}q*&fUoO,G=YݿE?)x",jEҟW3va^Z"N{gYgzbE-X _]cNR׏?qphYauvJ}~m_wRj<=V}iϱeLiܪ!%^m珖[KwoO_aE߳K{iŷ_ Iqp9g3l/wiOӽ;q^ 4&ПjoFIm~釾6X2j)a*9>eĿ?w=lC7lB? W,×AC5/R{Tgcݣn{m;Y]3R6ep!+d5=M~b1V]/@?Z'+m˳)~ֿiĘ|N=ZmjU'zZ[Ɠj[[~Z#{'Y1ӷX| @y߫ۗfN{~oҗLjop5ϥvG]I.ٮYW5ϫ͏}ypټƏm޹oR_q&$onיY^g1{t?|f?x]fOsR_e}_Ϲg;w[]?B_:쟄Ϭg? L;l?{SZi#ecz;L]_ƿ=GU6O%eĻY*fyĢngyxy/{(/ 1?Hz'ѯMzbQ^7mr mm]Uz Dr3p?g_qoZ<:*]&ZOg7z 5_οo{XfMn1BRW'_{::velj?9!\9(z"?ڜ~gZ")_I3.Ѿ\y헸Xd`Su>b5>BşEE>zGp#祽ֹ~ŏUyN=gs WYzbCϬ_k|msg!cKydlED i@{+3wVsksvjOi˴,F\mh'I:޻ =kFټCE!D-^Eu\~;{IlWͫ\k FMEvx+[?l&Tկ9MiW!jgX"3m5wov7V'j7>,9jmڳG?zү}AmߚƏCO{Zz5~Xag>Ib/<;\BTNG_M9O˓kҳίw~~bDZxW_mR;y%Z1R6GǝA, /}d1=m38_ua}f-:'WRY5k7/c`O3ֿ8֢nha.M Y=1c1m3?YT*m!XkoWs6噳@=j\4k}iti3y-5r}53&C>mΦПeŻ},䚿{:`[9dz?gocqB,y]g$"ޗ~7XVUXhZmt5YOi⬮,5FY۹'OU\iFkH?{SEj7}z}dm_ǵooj=/w,_=t_(Y`gyi15W}bgVo}??S6!}_D[Kp=m!w]~r6?|Wf9K9?ku4C;b QK?ctLeCӦE߿'rבb-ue6??zrX.,:?6m}SOh@&$ek-!w͟>l^?j3wYi̋\l?g~kbf{H?1/sFC^!O&*iMkק4k-]m^Ǿ+6_K 9ܗ~;ߑ?T3~gVeiɀg$\L3 #ך&;{}ms{Oү8Hzat~uOXϢ3_=ӗ~?ѹz+Ʃmi(]Vn=}̓{LE ߬^{yll8ۗK}駌e59~36O19M~].s ?GhNCϊf?tcǡ[OC7ү/-dx}1P}W>QO\"ۦM?f-δC19X(߇kadO6L5Ⱦ5K~NWl߰19rO w_`g{;/>Pb+j ~Ŧ?H;nGtPbPbhk߭8^nQ9-/cv.l)Ogy?$;~rR_ۜ;ȉ;GؽyiW:O3ߎ}Sܙ7,G Lr'Y}c qo,.g\S/tX.|? ۖ?]gǎmQbo.wGC_sFw;#s[/9N#w^ z2e/pZƏڗg6Ob;ѯ-=ww3?sr([xQ\^r9͔Ʝlư:Gww kgs&~53SO2i_X~,Jt -Fin @ՉeL []Jgߍp^{oݧ΃s.wUMG=At{`}J>xQ-z{Stv񓻳;/c.!{{@+-Mۧ8w˭Gٹjh]ykd}ǝwѰˆioCr['~@?t%{_߁I?{U~왮oϸH}6_ۑSKr3B`X >Į]9+Xw$a|jm/G4BKgN@~A}`XWm(> k˚9OV3k>.Lg]aqh>1Om'Y[;xawYR}C|~,z"gն@GwЎJ/gZ}yFuнSx/X7؆AwB'AٸC.i*ߗ~y^k@;̘]qu6X?P ^>__ݥoWofN;ruG_~NVb se58K^?ct/6Ο! 7r:sX"ѥop}گ'vY ,MVUD u~p."3,rZ׾Bv3_]STb"yˬүkgz9gl tSo첻{˯q7_z v[1{Uƿ}=T3/q8c*C yt=aw^`}?"Wy7 Ͷ.Oq>￳蟗JWx_qTA;^QN@N%B?sO;K?ug5s[ENƶknskᥧ?[;p3PQ\*GgY)jfOfgpk8+-Z1@sڧBV;u:c_O9 j]U/svt303~Y.~3t嵆ϜD'jEO~&g?6s>bN_r ͷϙx$6g̫?_&3ڗ i?kW[Ծ@ ycO+z9;?bꣅFd9|CfOy|)dy6{(爉xcsɻ'1X|٩/sYX~ߗ qS_$uD_گ_,lWXeMfgN8uSŕ&q4,O}=Kb>RV\AgYuԝVr"i,r͐,v7$|_=gncdop?e)7DlwR^ eK9-x'Z׆!/k]RB Q"_F0|'=lXU~ ws=">HϠ>V?Ț39O븗\*~{}Ac^Xhk'Ҍgl8,Cna[]Y)Y?gM.X_}rW$*} N_!2b{}69gW,!r9fG~kjU3$Z`X?v!3u,4is! ڳC?}ʯΠ.🳸qqܵgKyXF{r73lK(_}+f C0nYF)#ąFEq(Cfg'Zuf:9v/$*c!__qgFuNŅF hR|vwb<9fvYqfL~3y_M?sոZυ~͋gΥUK,?۾ ӿڗ~0KӦkw3:2]s tY*wȾ=+QR3O;{b+l¾*JsjF'fp]Bݧ瑥w̮2CV=xdd*t9xĸ\ޜ5> ՟}Bg?G.yFߘ"~.ܣrpU=W[<1?;/1 yE,Ʋ? .+J^'?|tg%˹l? 2/w10U[F_3ބ/…O:'/3W"h ̗W{'4L~sjx7ޅ߫ZhXPE FgO:}g#Nx'vN>h🁟7,j1 t~%Z_3^brkrj5椞?s>%5N?uE ^gVk+5Uvϊ=kopf9|iն=6n!-z.gV>מs٬O#;g?N(<{5!/wN!}||DsK·Qo>sWPj7`ROy~C&Xd*j>'A?bjhߠoEGޗ~RK]|}1[5}ԓ~}vKI*eso3 m5~zp9T9=#$Å6JG=}G?KkaM?AsF)8grwoL"ٴRmܴW íƙƒ/8Uz}qk=3y;sw:S*5.+=NEbZWCSϵ/QZ 3yB<*&gx:ׯv('soAϜ5Lsf-ՙ#9@Uu 1Z_5ϣ}Vm~QO/^O"5Fɞ1_vVvp2xY;i_R5w%~w͞lƴ_w]FϬ㭳z_P_a~I֞3&",wcR+ 9 '644CieX5֗~Sc] /:#9uȈ/4NߔaB3W̜.\,'dȷ,+^;DYn v1$;~B_5՜3sꢅF̅#4m/wmbO+?g2;yOQ ak>sRͅ.gVs?s=.V̩+w?Dyc'2H<ﱺ4)jc}=wkPxkd;,kVZsFiL:4~cYj?үW;7[̴=`3yp)O7cO9Kb4 Sogpگ2K|mG}>aU'\Yϟ:iӟŭW΋e.Yd}왜+Nl/oYY8Ý #"3W'=l0jk߱>n̿Gy ǿv1H<,?B?:#ߗ~`iBt.~p~hgw<%8IR2>BʳC.g}7wӡϫ)+Cw;j,W89 @f9;￳d+soNq tQ9-g"V1^蟥X1vwƟvo5qp^qgؓ';8yv~HFN#VLV?l݅& <;l\/sϨXU:_zBf'Ճi'k3\`^a5*sxG6 Ym3Oc㽀vvYy@ab<9Ǭ/m;[_bf!*Nv໊GXRu0g_?]Nڪ'>X^}1V "&F/0P@OvbQn11 ƥQ,jc,drwrkb}XRgH3'n%^Ɯ!/I?Z[y =[6[6$ da i 8wq<g>qӭO^LE?\%vޥezy RpZؕ|FwIf~u֧_m7Pge!!^٬3l]bK!$|P䡱&_Dh>I\/{SeO g%CNVR?Y68Пc"#NͧZ"ż 1__jUL:ݮ:>iۗ:gbRoCeyֽXˊfYTxE 'oC+J}~ /Cߗ~B[rzU~NyH ח:w.v<]S _18^|2'OͼѢe%~ ] }6wR]k2O{{yLVXX}'=ũ=ژ@/ {tNp6Elk?a a qfw`l_}'ֹ7߬DZRӽfaF`v ٪|~wDe\7bYFOXPvx/| ew Q{3ָG]#<<_9=Z !"D9.$`l.a6# 8Yw@}ɍ,s'^3]}~j>ՆjBkη4%=3g|[sFzV?da`{5_WҹZ<_{n*N_635ү;2؃?c5~_ѻV/+p\Ǭ8VG7~ur@y4s-j%J?N.dw112K˜%v,"'aQgI7tfGs\đܧ*}>b{9pJ#ڻXC.KjKs KROva{{~G_+~drџ?elI'9e-|fr?c KK=J^~ Op٠F5c?j4=/ПC ?u&z{N3⟉\es}/d'+l;!- ߁vy_)_E]f3sS^̜^v4KDG6lb/8b03g9ǡsIYuUe͙gl 2}۝gZ]:/I?s {kN(ӦsΎ}E-Sh b ƵӾiS,l&l.Ky  >̯VAtN?915kkGc.︿`/s>9j?N:.4ue}ӦRa.\;iv]rɩA< uK ǟ[+ln$&]pq\E~7cR1'? MZ5HWjۗ~kQ^9~/]*O_ȳ_bB@x63cG;s63YS]<w1?lng׮载v=2I?G_,_t&}`?ÃQiԸ5ό3jga5F3\J=9ƣcHaU_ﯷgC?1iP_}:8'rOgךu??W4D33\h츘#ͯN 6\3}6xFW ~/Y߅1A'ΰ=DP'9z;6D_G'Ol{\6l_wt1ĴI{fV3NlOXԐs9.Yiӟc|~VmL~:Q߾;ߣg؟YNϷAu<_˝_{`gƐ ~ʯ(C|!.oku#ΥE+i\Z3%MMfoܳɹA? :/9K'r.z$B_{ľh<ϐ}U{U6YC31f[pNpy%s՗us=gW1{V16'6Anjl?µ8И\K{遯ZVY΋c& 3$Ī#_?FLGV>bHdt6\g_t/~{f'5Y5V)3#!f%fry3G;~/hesV)~3:c*~ 0?gҹ$\b}WŮ?YZlb'VcҾOT>~#Xe#GںǡK9#9A)w)1;xP=O01 j~kI*NB6odYe~2Yg54e; +1 k1h EU`h͂?L_59V~1oZo ?Sco{J?sxߴl>274%;1syEPsK86qh:?z_qr'%_jMmٳ,|,f9{uO9\"uknF?olwmsotIk쟼j."e9u~ϊK-=OG?Ld+aO]Vhs^Byg? hKaV}Yw3..\ ?^\bʾ_gFf,CŸ}ƾ:'u iH/u1rO`п9wя9Bsqؘ1_K٥=nsT{8gX7N4ŝA>R1-gr곩/=]kB:g~輂\t>1h)[ϗ{ Fj#`p^s?3c5~9GA@fy_ \AGG2k+d5-bG/m:-)*MR?Ă{s_>-gV_Z}6blY=qA?W{N:+Vl%'RO^eM:NW=fzeOr~T_[;G=O`y<١;O;r!sYn! 6Y`n\co}<םGb'{,0c0YgxCsط$qЙ]rܗ4f\9l{{zaݳX &4_k4W:/gm)z^ig͓n\|2dr\ cwtǻbGΙw?c}Xό!އ-{Foj^?0Oϗ|ֲUΉr?Y6\1vl[.:;c,ft_i;6Xq4; կr .sҭj]L{Q} Y}*=kOy>a5k9ʹ?XOD^؟[ĆޮyGCnu/$~Zj+6B_:Z6dYG? ZU\>σ6B??ww|.%qYt["K=fQ|ΙSR΃,xLjxOus½GW*{5+E̎Y(9/31Ƴ1_c09Ns懟wg3-tYbmV? v_DPsGXӮޟ Y]~SKmYw(a4*WgLg ?nI+Κ 2ZY~7g.us;USywyd;=,z:lf7VmTY^+;?pF:βKg\맬##!دX髟~$ؤwY`6Aqvѯs/=BG*~?asa`6Xد.D7{ ^rz#qy~MytX5G]kևzR{gwӬy!oN ^3tg{V߯D,'z_-ּLW]o(=b(okcNVhYSҐeݟkpݪ~+gN,u՗~퇎c?k!AϺL}k?y.ez2)W tO/bر˜w=ݾ~zy?xXL!v>=h~k\eMں5wMe5K-_%f ?fվw?j v>'9zĶy;sgkW_=kk-Y?"]bG+J'6݂G?:\VׯW?d!ǟq$t TeY/5U_ rA|xwgs9OXC\aK?\%/͌o۸xWj~l~?[?Ҝy.~.}ǽ> *xr{xKLxmD'qVIA@deY#2[EECLR%1mNI:c6WD4~Fc66_=9ֳ}׭_瞺~k|8C[b~=tȡh|:[$;c){I7M ƕK-zfG=@7-f+~ӟZm?[&wF aȮxai/_Yg^,|m٨ϠyB8Cj[5OE&戺Jj;kB_f9v]cXSud*}5WF{=՘S<ϛ|q>g<7YCl,}?/u&>\euQ{-Kyf9ۗ>u`RbSO:/H={CRsY wo(?gY~/c:]yDB˰KR:/-o5:Sa4Fw.}shb.lZ=.>֏ r1)8?'!9{=K1ryV7d?3~>ιceO>{(|:kڂK~i8'j%ÐR~FmKmJҸ)%l΅ ‡VRBKtWCk|u?=ݢ^E__{5MW2ZzARg<;i/eW>\l?D͈4oMיʟ^tσE3:`W^9@oًrZ5ua+_';R־`+AZ+?35~NsϬ2 x|:LOR8!y'*n/k`=}!~}[΢]^ }e,\V~֮K&N\Pwa/={53g~/*1 g>]گ} Zܝ5JY:;|e\~ocl3/O5xQ62&ODg,C^,Ivg-aol~!?@s> 64P{\[zațhڬubuUŬAV^w` [ػqp8#| frV?q?Rkre5N VGO[w{1և놽=f+Ko|ZppkXOC 潭]Gוkؕ-`$Eݥ3WWg,4{_?9f+{Oy~IΏ_ʯwј u$/¾,GڗE9KI4RVyWW{ɴ_4du(?f`y& N.e. ?lgB n3Rc<Շ>~f5_yﲚ]yfg=DmRǹzNػwX ΟC]nDnh/ 2lWeC?0}Ŀ@ȹGFYeXxʭ'} Ȩe,/ئ9W5l1}Pͱ_"q~Aז:|Zĉ~\ߐOGq Eo]jH6/(ȭ|qu/'{`5_Y\Ź5 7_ku̢o33cm.0F>?ϳF<-V_`Lyq]VG:bBx }G[LO7_e.ڗZ%gMw{*8}g犜A@|积ZRcz`36Iu ƌs>m_vL#~uPY,?goѵ4u=cau'{ʿ=AseqVXpHݟg2Y9!O_3˼"Ǟ!O_w<ֵ.E~Φ-?g_=Ά9R~V}?BU[oVϝ}HJי y~}ίQ9Б 7zNegiˏeu&?wEf7 e+.Qr랶b~t|@o=Y?Ɩ={KFY h_h3sOZmn`+铳L ner a)ߛɯgMo6Xߩw[-'i~u}7[X,zi1E0/j]"L~uкh^zHsOɂ36Sasy_2f>y>3t`\P1'7Yi_wEN?(.ȿ-"y|垶KE3~fb ;k櫕cGיf6?dg.{y?˭BgNO_[y\ Eak/)?sn7[dO٭VO[~櫠BPV/oV?RLgoYk5̞f7~겞hc.vY G+QU.Ef(eSu矉ÿSoG}7{+5W7Y7{?Ϸ`UO'ڂ bKy}WԾ,3kȢ_LsE\մ׾ G}]+lJ#k\gq1}m|?ﰗ<~JjJm(oXk hڲ!Igh,.n+*_rae}= 0"-}+πo.YU/ 3D*T.?Xg-z`iUՉ]uVgB ,3y_#%0* w{jl9busV{>Ý9sY@?!?r`I?RS=~i5jw9蜈%x-1;e)c,Fx_r}Y%k./ M?78♐;Se8OxqʼfJU";0Ğ0/MkߒBiį?jJb 2KH` ؤ畘9 OKE/kJC?y%f 3/qU:DN3׹$eY:υ#ŝ@E[z͟_d\[Wy3~2F俦_;rp@; ,3v_秐k% Pk٧}vX<Ό?KU参~psu3lK>oK,mt~ l1gxXJpR_Pf/&ށVCUrZ.fߕg K9nn}ɳ3} J=En'^TapNu&?vwtawBim N=KY|`/ 9.u&?F+2 ;=yGyu&q._3Y̯9:Ev,[yCŹ+7 xhLdL3PCkmC?FYܽ$?KOϘO}gK?0%J@Ouf+R=_s9q>ļ5ܥic[b ]q)BvrYz_feί_b_Y B@nXֹ sQ[`i֊5ufZ_i/t䟑%|62a?~_gf_/6|4}y-_5Za0tv1*:3aS;wԟ"sa-K|ѷ]v&qix?@)*5$9`5-`nWJbM lY3E*1?ťGaS>,Y=;g!Y\wTjum#>Oۅ';9?e{YνyvLh^{Ƣ6JRkICςp'"v>49w+ W_=P.Yb2σ30DW@?/Hm6L>Ϳ3f]rG9N V8BY^:볚+eߪַ%βdK~u/%9ARj.#N?k.qiOES<_UU4Wp_|ѯcwdQ<tg~w)5c߷3o_."$YST՜+4@~ɹc6*Oq/_+ɽJu#۱cJί@~,N4_iy‡'?tVg.A]aƼjOQXjy&}wc~[ "Azնllw΍ƿ̝Ru?ٷ#ñA9{N|2Wk#VMkW?ǙaЉG0?Fg+SV[@wɓ't;>Dlcǣ[ʯ8#~yW;s<_.^kmK?;:+5b<O͓{qպ?m{)nv0XYWޯ|֞<_3S;WlʯsU֎XSsT#kbC>L.DMbjMFAC.:Z_da۞L"HȢ@⦽29W :m]{?g: }so/gig8}ik_&o:ȿ@fgldY7'wŜ7[̴'6=k{>ɿiH۾3v!{;_mu\WlCŘxrfOP Y!3cߓ,,s1XwX+{s4ձ$kHCίzu?-#gG %|ϏޙR_R?@wNcjk^w׽vՏ:އVgB1hozNr /6*>;g_6?Ǯק-j\.eQ.g!VO5_um/_\ sk׵>S]}_:Ԃ=C_g-?ʇI|!KDU?y]sYɚGA57X^?o/kGR7}s]Yb_d8NgU_b$?ko{WnA~\U /sJSG_1_PL.g.3Ypjlkݟ_q =?muC&b[祶fd/dКv3LO`juW,r)O{ʿ"w[n)\h+~}ך-\T:׌>VͶo y3.ܕ?O<-sX#?#_ q/~:D|o ʓyε_yα! 9.ɐ2y ,Fo|~Jfu,/ͻwokΤA 'uV N{ʯ}VBN(/,4-@5ϯ6_bCZ?x6> kw_ϊыN?1zQBo:0IW^#re/Ll|_wTy=Y#[aRcQU}|9O%w3V3aɳ;|'o?=&W80?QKmN.cO=k?0Rwy%^PG(LQЩ6mBo42=Yp.1u~_|~ø"n tؗ$7FCK]-+ z~WC~}(p6i//"O _Ks?Cu|w4ϢŬvPL>%[N~q #JݳԮל(W[bDžgxvgA~^xo/r)Os3A0e+L_w,{9;bk⟇'n/[{u?c1gMk^#Xoo3O PN^_g%מؚÕw\ ϛႳ{w'm=(K}cѼ _}~wnO>ezn n?sO}~q1󉮗*xX??s,/UXO?Y}j;Y</{Y?3ʿW~=H]ou̢_ič gSir|O>Dr*GN?0teX>*|֊uյ?hʴ/(NOga!Ot+WR^2|'/M?#+kЇm]O[l89Ay'09 {2OxLc^Awc9)%lJHz{󡯛.WLK,jH/sIz gQgq0|"U۪ywZGK}?L5תk/i֚'O {~ϧTzq_BOʟ=_lȟKmw枾y "_wZmu|KpCȉ{X_Wfe#ށ6>yrl_jQ}_VwV6GV#~.|w+|R^iS&]h=G[IfLupEW*shӾcCAN?Ϲ~̓m)mu^hʳm,vtE~bE>l. .]6~,Eי`&Nry}zWΌE U /6[ߖ ;Ncuj=t^e|@gZlSkhʿD׃JmXn?D^<]gHk~Yկs`/9w<w\ &wiQji1O 5`ƿ,u%/("9Y܏-=3>i{wcޒm4[oS-*Vqdn5_C o} },m\Tz$9 g?eÙxpJ]fv3~s_qhh7q?^;R"FܶʯuRs%o_q+tW 9?8%f/ƶ:C~3|lɬW\23&':ьE.GſB![V>:C2/wyߵq:Kgۻ!b=B};_ky_%β YG9+шEs/sWRjȿ_5ڧ؅9 6?g&i_gI?LԝKQ¯]CV=zd^x?r˰hW~ƿg^')ߒS?]z=]k~UΌO-mƉ@_GZ3\2nH_iM?O?S]{ -KDU?s1wF|A_Vfv9ӹ`#{Y3__-PsoY3fy?I B_W@A.>c-l֝ny2=1?gk2`i</ڰQ}ȥL1Z'j^!,tu{mV9d#:K|W5kj,~֣K]g+‡|Zrf+~O 1kx]V8Wư-@]+{~v =Q}y3?\|r껽$._Yjgj]!} =gC??É

,ލw57ux_3{7_MZ';C?o=a l*pWC+?{ZWpSGaڂf<#ڿ򒑏Fy-?ڿڿ}G[.ĵ:Y:;]osb7,[yis ѿWeZ!.a]hg\U5gu7pi-`ޜmXfVϬdjG~O  a_kܺW;mCO+4篸`՜g>(9;$^i5,f-+]g\Dw0s1g{Uo51NQ%biF@9g=_KĮWr7~Gp-r 0q}S]nkB 6 F ̵rWyσ=CY| g\9F"K&dwNKBMbJc>B7R9>dW1őCfOl6Kؙ=cAq Z/5b܁ook>œ8}}&ʹ\Xp)Oeƅgx`9SjuS-8dyw }eV%0IxH⩎-E}|g1# sL9-φr)N6W[~vV Y4[g8_rOV3r|lg*,l2l#J_ui~XfsV`.s]Β $p>!%pʻz˯cW{dnQ# ޿т_qwB8ѿCWOqyqOAZyfs=ma%pʹ%xr ?pF?V3Fp%Ȭoy~>~߳r~8E5/sK~OywH O'9%^'_s}o.NkBgiG{RuMW^j1rm9mZg*:^)_˚ fױW6?3ų ]kIQjNOxeaOl95rndb95kA^g?g:}W^ŹYR{~: ~m-{~OQj7'1Ɖ%82~&?}9qk𜐧%^ ˭SuVʣ6ּZ&j \h?L{a_D\:_>?gB._r] n~gE.d3'܀`q*UMYz?Dq7CmXw79G3_-y1%c{9/wE,3˘ ։VZk_bb?]_g܉SGJ䟏/{B+柵'Y?f|w&gf2./ҾDpuP_A`pB'p4笼H^}}WȢrçF,8#_D BxxTf~K~ٱg{EZ=?wwݳ%Ob?a/2}3~ճ4Uvνp#Ei1g/.ENybU3^-/z~h_^=oRCgcrVϕs F͈3*gF0 +,,Z$r y]|!֔^:y}y;gcu/k0sZ|zΈ_` g85LhKq3?ywbV^M|~1N8cayltW4_⡴dWO29#7|ܙej3b`r~9)~x񴮧uIYD|M%.ԏ|sJg cqnX)23MVLukKϻYH~07_Yϲͫg}ߔ3&z7+2n{v)o_\˭9B<?sav3ȣlv)s}z,ֿp2uNbVƬyYE D<8gZz*.#=Jv~4W7Q̗h~Xm8ptᒲ>ƳX=sU~2,zˈ{A A9Kywl㯵5־3@g/e'c.OwWo` ]t˼9oW}E,;g|kD\8dɯ;2g[ԯ^hxy~c+;~L b 2gO"#?B_5kZ펮ygVli2oC(g%K~ {AsZ M~=Ȣ.䧏s1/}gq]S2X@G?Zmz7WgssF. l+sW~~nK³vEO- P~W~ gf吝*a++q.Y棘Cu({Y<ۗj|i 󅟕iISU\}>1$݆WC~:|j,gqq 3?B^_d$5sxQhޗktr<}8/s($X-<P/_u}W^k-jubd[|WWj_bo31 Y*;Ī;- >?q*We<-h^=YC_+2 U}on_}טEkv/nb[_5E:?EmWgWYkow=c32z:+53Gcy_&.~ѐ}׼?k_O[~ƼE?5֫HJ։Ryw^g}љ_o̅bY+v=i_4N.,4{bE;W~k)h^=}C.f^zX=A[]󝿐{.Slqs}i{@~q,S&z_->d& lPTU_p/.3cqq/00o~6xc-z_-뼆LO~fG9ɚ9Z)'ϔߑzW~}6N3w~ʯ1W[״g^^zN[,EJ7~iϪfz:W^k_^ky=VXSq k;pv1ւ`ɾkA_\&?l ?k3gUu\b~Ӫƚ|۬u?H#wrL{{e +IJC7'ESmw3nmp OkKkT׬^۬kunw/'!{)?cL|}ƺC_e5^~!R󐟳ﴚj?| =~7i9{h.ޟn8?!/)?MbVe Q?zy# B_Ϗi no/Y^>gY^:{v̧M}!3\sl}@_g%."W&ƿ@yߍaOjngSPd*YoЕoKGx?]S~bȓC]f,F}R~}x?/42m3'}^lUfgxOX?u;m DyNއZę#+?}OY3ʌ +?m2y M~*L.Om:iޟ_Y?nC_ʯ<9Θ9;C?ʯ }uy_g=fޓ!ob#/?gv6f=n}uR? *N"ϰby+ʏ}5Kɥ3S{~02d8^k?~x3gK u~+?{W"q] W~f:vc!?ʏR-G̥4m\ A46Q}Y`~ړlKܕl >YS٘YG[/;^/7y97J8gwc& >忝K~J ;y!1QY뜬g W_ 0|x'_&~n13H p??\YY/:~31{'w{ӸG-w;:gI Y0` #.ẕ8.3(} [g=W[= fk6{F-NuxX+aff/3ga6';ze{8#יBEVbS~ˈlA,ଅG\8;IK;7N ϊ9[=;3 t~DVjwfs&SӖd/oSYxʯ_8WtG9Tڷq2}]wBws]W̯v_ZޙR.eBO?+m%f P:#n7pTȯ<4l%ƹ*1}:w\'\?c1ƚw[Olx1g38F~=:sN.f}_TZ'R^h!\gݷ)M s&+K?A0{ku $®XZ_>"Oc;~ƺrho?66%N}nye9Mkc>7+GzRR#oy2rV4tߩ8w;ߌyw0/W&ll/pp7=韱.`#l.l:pRAbjf,Ll6l/}9sG>#;N:?~0U9jէUufk_ekޙ۷+3k?ąw?t'|g?:ܕ%RʿޟL~[;3Igqhxy> wσ-čEu61}]f«3@_7yE?4}r/6_71C+OWjn3N?{qj+樉){wc;~n95~%g ƿS_֘4P3,fp7Kgu"u; aqGWHy`7CE9`gQ`4.{B*?w.5f$Ny<"Bn-Ð.u^ ] 8t 4<8y g+~hg5 wbkaYv&(O-oYܡKgLρs{Nm/YoZˬjl=kBL.VV/#\b 9{m߳zA=~2=5l9C|9ˢyίǹ<G3Ø@ׁWI> 8?s _gЈwע9#DwEΊC9kU̹qv7bon.Ç~N¹yh<ԝψ؞@0rEV{둅=ONWWL Ƴ?@cv$_#s'2b|=D;n<˿9_+\{~m?{!7ӻ}!L G\6B,+ub4O9^ȷ-K7@~r^Usȓn;E>9-V~>4G؞gGs#evyCܝEjv \NbXkQEjyO׬1ԬoY1 }oNxg,|_9,W|xB o)bܩ쟄}^_<4GqOg92.}yBRy! 'ujǑsWsο)kF ?3kzgCG'g XwX޽m{h.8Gw;k}\,wq=kx_Xl;i2fWRجΛs x3?v極/q}F?$Kw3G>&`L?{n=mX?quu_hNRtMp]\ٳ:c5t{Sάk}{2G~,&}:4|~KZWR^Y⿨m/mc :9G)vCיY7^x 6{6r?L:%:+?kwYQkl M8S׺Ba:ο1Q瞨Iҧ>On?gx ۗxȺ=>O~jO{)"sȯzo>|_z"'n?9a6Dƹvʿ;=k3f̲fqʓ@>ΌgXԆ}'ޝ8Y=_uʯ cƂKpɯZgTXr?gł=U}T?YgiJy.l*TF .Fkga]CoW~_98@US\rd ߞFf[^/6zq2Giszkxd}Y]f]e ?W nglOه8}W8Qg7X^'U/̽hV9W\b.+BhJ_#&+~a'f^f1KŅ&kYgy'z[7rq(F^gq]g1kַ?ֱpy;N<4\6rHgCͱ` ȟ,0IG}zw%V~)ſ^>8*`2^bSMj_5ESoY~` ;!R=Wq~k{YD]G_7q(ϧ31 .Uאu||C#i)v8p:e.f%ĿBKm)Q#SC3_o mUyLg`Wsu&?{ 7XWX]Vo3P "{}s[w}r~>|Z`'WwsܼW=]S_gSyz*[QΫKJ`G.gW-/%ϴ굾N.Vu(FFZֵrZ{t5E ~&W*-8qq/<9Z\ޣKɩW~ɻg݅ ~h;L "n->%8qF2ϴ3< K`r{ R=(pȂ{2\j#/ٯB,h'XNEe!#}ȼG $Fy-3m}||6B[=a=3S]g7G~γZZ?!:|{pg7`s_?K8c@۵riWEϷz2L C j|1ut.@3wqGW-l0W7r'K J́8A]乛N+_W~5GWMq.Br,*a&P+˳1r_ޝf1Fcͽq9a]kP3Ϳ=j߻p./'SuDlx6ik\X^`/x?L-s&]ܜrA#NP_+dQ< AlY?dӞ6$k7s[p~D>Plpp**_eʯ%#k?ճ, l)/%39 KԒ@~|".{('5Ϝ%B{z/',lk$\f1CT{pw~dYS3u0{VjͷU3}yOo?k5Om:Vـ+o[9~\|뜱,4NAc"@_nkgߌCtfZIUߙ_`usahoW~yzN9i L~K>gAK6m_Y{\j@&)&_o[}yr2ο`>YYYf1H}i,uC}]Vbi^bYiWX?PԳS=%n_'_cL]e# zFhfS؂Zy}T.ܑ=0}<3|X]Yf1WwɟI~D?uTXs-Gw:S֬܉\aW܄sAML{[NW:_s&j _5!O_!|ϯXYG\ۍ P~:_>2m[X晳`?og:«}O{56Ѿ+j6WaSGs-0C_}즯Z,4OCk=8ƳSֺRV?.k>-\_Z[QZPϧ*3ٻijt@n&~ɏ7M{??hB/2ŭ¶ba.WXJ-ge5w>rv_q:<3]!߾5_߄\{>۶_fq3gj^huN[Ox<}k.H׊#uOVOz͢^ɟW~Z\0O݆ʏNU΁e10!_AsZqaӖTv5[Ԅ|~Y_;w3sgH}Y% }וg?P}[f}k)=i˯y'm?Ƴ:zJgkiGֿYe,^{CO^;D3+? ,w!<=Vs(WC?}לh1A?9_)N_ΰpEG+w:ﱝ5տڅ߼݂ ]wz?  t,z쁯@gЏ|%0ĈozE_?#g5˾O[;p JUsq1R!?xк}QXdg ,{ʯ򷐯1gmDyٱ 87^VG%8Ixp|;uud<UƋ֢Wkk&VX}Asʿ-l|py]&1۟g|-/e_]o}Ԛ]wksǹQj8ȿG K̜PvJ{#?u7? /p<{%G<xs;z3JpϙY:;g7.3Mroπ|+y^*5zWa*y[|N3^L߳bfEVXg(grI|?#w?x)lnK>?g硼.}S \tC{u-z da! ld%׆z@uwO ;/X]KOr[~w }}ϏDgXgG {? tہ<'[TRߗ!ǚׅ]< dv6{?.ٳTi{": D_Agbcgg WϐzYUyw}'N ?9cZpv)ogƙG\`uN>%Pkj.Ź9G#N_I.Q^Y_v1KBF:/BoR5baݾu z[]lh'zw(.wqv~Zllg蜅.Tj.U&|M.;"nCtw}Kn/5q_e~s.nwJ|.-lẽeȯ#<W2RpWW rp?gEgkWg8忢\jۮ3̎30#gn:3BCBga(*y8p.gm^}Wu,BNyv IȜ鈹Es g_yAwq_Z13w[-otž' hץVlZ ^wq2qĄA (bxCm{jP,h3qs|Y͚R葅jNU;u6ǐدw˪m W{vq.ck?MBEQj^b_{q3|)~rÅ\z+as3} |Vr,ϕ:c[7ǂܓ{|QyVK ~[ʘ{R߾wZg=Ch};l.83au:SY? 9gCj:_晩ټY*,ΝWS3,ZiΙ>t3ȿg@I]4WM/Ywxy|看.ϴafj*Hywcˇ\\yK.D9ȟOy.9Xg\gh.KfuûK}f+}sB rg>vq8SLkϥ ך+V{X%t*U1k ao,F~)y'_ssׂc+~f< [W~nQ/만*O ב<臗$>zg <:s,YpBޝ]"W"')iקwp>#?x]9Y{dB_]_g1REo!}XF=K*^XY,vQy)yߣ6'º C_'zi4O;OM{Nu:P郿\jfco-.q;ܓtF/Xx9pȿoVf<s~9[jW~i-&6s*n,]opE< ; ? .?qk~6YߡOgC;˘3$Ƚ}h2_?kXqܫ-l7@?,ܣ\-b_ز?Aї}&_ڥw+y6: 5iE83A*h 9@w?W-ffQӘs2w|s8rio\fr"^_X\}J] ֻsˌ[/>Tۤ-FhCQdz:Q3p VgcoB .45R̅>!'ɱ\e}/b U,/޳jX|u~Ϗ6kmX<}W)V!}W 5b|krhhk{]3?}un_j1?JsoNiȂ<?λ+Ϥ%36~ڧa/!lq.բWުC-ğðix>5:KŸ.;0VY`F8i_٫| cᑅs -?y{WY=<_qRgօ( m՗VYgg ;<硐[5Veΰ9A^;ZՏ5}[vʿ.ٻz~<7ذIx7*|ɯ6+ԉXgB] M~fo'-/3MN_1ոpg܏ukSC-;,_1/1Q_w>4~.nW~r ~'z4Yu}Vs0`u_Ĵ2vU9j#^k+3gcl^J߯Z57HcVqjٴW~/k\vк8_@a_:;w:'YNNk渘7m.tPy)u_߬KD+ U?/O]{~&1C?Ϙ&s,T6.XZ9?ygWa(G[{fyg]Ķ야#?kL ?Vż}96m͎3{@7iO~xS-rZ 4ߢk*m֬_ݬ.mܥ1ޫ E\R["}:C}[䟿Z P~g5樯?mQf?d%UGtŹ廴8_bu=Nydkݚ1,nC߾G Η=XotfsUPacjb4NW3!]gvf*AR:^ F ?^{O cKp)eV3WL?Ξ '7YהׅjQ%UcVﴺ/{K Sng/#;Nי{Uj_4{4NL {؄;|9=G:Mo(fPWG+] eZnojwg˿{m6K:;k܇>P?z~tϻr).C W>-QtXy3jEo+c S/kbjWY o=f/kG[蟮nTNy_~oXǂ A&lg?@e'~NkOoƟea%fD[;R(&O/*\gӨ1)oi+m,UnU|;g=e,3~s_<'jCI.*5gK]o!7m-nw?+-ޟguutykz_ka ~g&^נk_A#?^5U(O> "~X ;Gzw?r, _u$pγo9EY\?Rg?05ooo]bVʣe'{oy&9^kEeP>3g{׉]#]c,/w+.zx6χ2>&z朓Kƕ"?ǢHL#p7Y͌RU`RYp&Ȣ8C};# |ap { 29L ĢV?0vJy]/*cLVjU+-Nu9s3t]gK_miû9/\<\vBl~)}ƿ;RصԳtms>I=+}PO5|ΉإߧZ窨ך"va<+)O#ySbvJr^8;~7TW~ra7&5'ș z6hQKB__]T:3kB|U]fdk|]&k qxձmuu6)baaܧc>08c:o|SU>7Zm3oY~]y!T_-L "?Z &Zp1F}VnF`WٷB κSY%|?ɯ< =~~VYl<~|f^wud_a1iJZpii]&f\ܕh?.ճP6O/:{a8z 's{ɼ'T_}>rbhsarC~ ;mtяJWwXbkV4qrr?u?<ݢ7='A y~vX yb Jڿs8/3t,?䴆j?}J+?ݡ?s v.lź/gIW~]ο OЏ-(gl'Ł%bJDKe`:g%kgoK:Dk}\KO^kS23׾hwUp>opjIۙXT +hw5=O5#2L-2i]~^ˍ]Xn /|ԗ\l%A;r?_.nx>q>{W~3-ĿgiS}5f}S}Ydv,|8_S,6 }M~'2jn0>2״Άצ#QTDQ)*bW"C0 ]Ho#ocڛ7QZҬϺu=z'yn;<̺׽W_Z?5~{E@4sIUu>K 1$r1ߠXА_Z6ʺmg;Osh粧MsreԑxSӏxv7=#<d~#iNvc.nmW]mg՜/y_gǒw9ϙҸ^v_Ѿj31A.X/2ձO9['}]bu{.jawq_tbp359/S9,џa|־,<߿D]F?~M{?hBuCQݘBo; 5<_|xs9̞~;Γόu/wm5pQ=Cm,xSnWn#cIg h\jt c]yA#s&/{ȓk]"~eo⢞}X bf9@?4"vJ${_29\buy]J v1 } lR[]r|'eYȠ1su8k=&|3{I6g%ؕsV6s?\09-j0gVIyڼJݗ՗~gG {㾳=+Ŭμ;6wQLr:T8dYw΁#gp] _oc 6zr3JSsI+/h0km7^g\{DOW߻9grJL}9jΚ3d p>gh'xc,d^cPu_^HB9ﶨSo]k̝'Ki(C4eT3 g݀]:-NNnp цN.k\G"}}X2kwλ` VڧwR;~*榘>ѺR6ojΌokkmlnoΐ[\I=뜣ΏfѿP"7(wmQ:ח~9bOXˏ_X=3Y'ˋw'X}Yπ{B<#[Vsk=MI'>]Qagv*=cЛ0?,fJ-zh'%uP霅q⮫3mQ{ҙA]z,э ==͙*Ο2:ZsgW w7/>DRpv/9Ytѯ0Z#2_cM:^/(uؗZgKq S5Yg9=/qոOEH{u~6~Y"S֏jgSʹVљ]c~YόwolΔs6X ,t_}Z_L !CVs6av/9]:M|8~weG hsџ/eSuXA"/*2WbJn4φ TCt~D,x_Z3CX_\B;|21>.ZYXdsYO7gD_jΪ??g,οkp)cȅW<>g+g[gaY[cؗG[*U=LρEV|M}~>̜ڪ61<-s;ς|?K@οkmv݂o:KμW"{k_o")^GG9[3_WՔO5g%ۅ/g v߀C_ }}]|S&WY=/Z^/ю%:( cw=a,0DGZ'ƅe1iToo-c a@i֍W7@K3l?{i+dDZ'Y`[\'3ۛsA =IJ}$-)|o!ml?|C=d\O_I_n!q8Gz{_O?ܭ_꤬=IxL9gN: tso:s7v$b.o:%h_փǧ-ܔʻj39Gя\s.ٸoQϊ ޣ,k?_`uykE J /1t[>CG?_Xɼϊ;kg4O;6 %O9+LGY,+xw@elC55O :9/ѺUi"Gnc\Θ -n5'!m\ ͙sOj_wss,۸r9ůPKX: L~5ZY N>yMǹBbσjK;;_ ̿/Eu/p&99Kz1Z̐c[W'3/Ǟ=ohk n5jsGgtGԇg[=̞gӯ;tO_aUW/ sEފiS:F gS m.s{=E|sbXڍο+y%lq8?g>ůK &լ+T';T>sAO.Sf՟ Ҭ8ŪK-|`=՟EZa{S,J`Cf1KH?፹Nbv+A..җ~XnѸj\Dz[9Ixb`M# ?ۗ~9;X_CdRs>J`a,zݴN[޿Sv̗bW(~>g-\`SrwVU_njٞ #y yAS! ;zv3 ?2$2w羰nӫJ_cVt~N3s8pGNý'z/*Hށ3ZiKX㢞}9uϋ٧:m_ş[Ͼ?Kj;˨{q\1~ី']NyF |cKr*'0.~8~[9~?ÿZn1L[, !VYszWmpm.&7&Sa 5ܺo\?g":/"CÃFos3Ŵ؄gȝ<R4ïbع89vSwQ7b/5}Ki :eA 2IG?K쟇]NSr_mÿ3s,N<_̾e=h=]qcp3x聬Bfb'y!RėP_ʺ#~g'{82K[` w&/9G]/*^EcH=/%χ75~)_=Ի'w~?gl~o~ #76+J矸|}?0|Ckm/hk$).oY)FOŸ\C['[S-z}'əmb(?pas!?_s0l0]J]={UΥ"c.[~opn!2<1/A-v9_u~Le g;ӟn/lq)i4~9nB 2nV,g8]8+~/epE/k+ʬK,Mogٜ1{ss^gsZ/w|OX:W,XnG%}|}ӿÿ])q.*6Ci SMg,K`'0dY%rͺL5d՗!}N;-Vnjzw,?Q7)f2ڮ́ ]p.Rcȳ珓Eww1Ck=He6xj\mýzws_=΢Jvη:9F>,jôx/m(GF7=Y:3? ts'EWVBQ\_Ws_1 X p6%G<ľK^ΰbgK[@?3{N{;GwgzX;PL0roVlOF×:ƿ>NՕ9?z~^AYfq/֏`}i}p ;e ܱҟ+̳N7rXbw3p'%bǖzϋo(r_ϴs;"\0&?)N#U&D {@?ïZ(?hzҍ:_*~5/SY<9nV?,ly;NNs{53-t(kasB/|f}ϬŽ)~\Və;}bO/߭+=KԎ ǎZ:"W{?zO{{>~7Xewj/S_RZsWG,0􉟿G)Z_?cAAQkʲ3{Vϊ1oo%W"v^'[t寖Z= sm9\Ԓ )ߐ cWi^/b-9?w߷ 磮a?@O*6݋ݗ+u}{ sYؿԽ;3)#зƽ٢ w`zIݓ+t01!ŝ3b7|=gq֜c/WYP%}O\_$=<KpK}4XoWjjfuPsZ:*~;f_?xjάg854g_~Y}plW?Yw;=_K?G yH{єFI\k#iB,dU,>'FAUy {nΰ#9}~99U<-wK'YT}]9 Xد &Я3wsN!ooFi(5_ ü<žbVH>¾*.ʯXgu۬N٧C{ZqCy$ 6 z觏pC^i^!?'^g,dVc+|_l1euC0DKY՞}!!&%~'ߵ-Y6gPQs=WdKOm'3B.pIK?g-ꤟg]d_+,t'nssqVf0~^_29ӿ9gq.golu9WΚU{ƒ+g_ߗ Gz?}g-@s` gW%1W>@ZMҖB B5E{Ml 2J.:OΫy K?}db\30:~|GwdW@W]w.aB'gcY|)m-1/:Ιf? !9Ŭ=oCĿS^m#7z^k!z Yno 3u~dsx':< ?a]~)~y!bv4g_wm?~ѯךעM\\Ӧ3T/Z^,oϥg<7Eu7=7KYtZy@>{(Ys _>mo'5{'?m5k} fs10c,76YfO1C<!aBg[ψC\Ay?ʩbL|:V,/I r:cg~]>˳: %asrߙs11~wr˙1Ãy6zB68cKT[B,m-VoYjB:8?s6bx-5⚪>e8jj}wG{+jIm-{?t߆Ti";f@XǂspYt{أM4՚{"ljim]L&&ޥ#6=f(xY$ξ߶̧lms)k3?ޜϳg@kؽZ`9ώnv}П,cR_gwͯ]ou~Wp.fnpϷ)zZ/l0&=uҶ~uɥ@ طsZݹj9QqqIRr(~g3gx|*}fЫwd1ySeAϴ4Lu>TY69c>a+V_T9&OLy bc6)g[̠*~mzd+Čztݳ@:c-B+~Y,F , ֳ)o:a1k KLJ;l9?\j󝷟z7e 9 8{[Ro1z'e6{G $9SOV,&/X5]`UBc6<un.EX]uƿAJ7NiyEWz>9rx ,r= zp@n7)gnU2}_{ 8ߗҾ_QCC؀gPXh,;nyg?/OX/kw V1W0"Kc7rlƏ}O: zցؽYF̋;8ce=C7ue Cv;I^ZGu6^u~w Wc3'(R{u+&}Oů;3˛s~_}֟Dݹz'hPsr?K?xO A1|_\nq=ߙp?|Ru_F t|kƜ˚'!dTq&i[j\_`ê9OBjƹ1@! h r=>b3KĔ{?c53$[vsWA!oEnWG=\"~Qm'9-_%{+Ò_ҳ,&zVo[{e k_+{&{sÞ=y כOy#]ve8Bi>~fN.yGהs/gYПgWX]n;`Ȳ/6 [ [9..be'/?Kg|%6 W/qyE K[ſu?f_Dٽjؾu;{cf ezbCiquh4 >d]Zj'm\Lu{ʾ觝mbބj;G{Ue֗ԌOtk=e篐̪>%&: ~~?ll׉:?Zb_X`ӯ;QyF?W>wZԀV]zF7Vysבk7 b?oRr*;|5jt&lwכOrxq(1|?~?#ڤ2Zg꿴kQwl.>kz G;:~(Amz >qU3w0gB'rE=}]Ok!j;(jVt[m[hˡ]Ĭ~19mLN'A}yiLk :#e~O {^'^&ϟ_aѯ \e9ps^cw(pw_ɽ}y%3sg >S"_weqݙoWy7MfLE3.'yr }wԫm>.k뚳89,#a|I>ԕ;kH:3.כ{:eGY}6ܕ0g*ݽlhu(k=oqYBnBl!=ǚυrSJ]~};>d!js9u CiAQYpK(8guft^Iog`V՜Y9=wYճb{z>se1\/ZRv܃}E_:mM6t^ho˜7Y̡"ޑEy@"Fι~PBwsVa}E9ûD9-WZ1K+N%Ϟ+Npں*puN\PE??-Ybw0 56GZ7~{3{FNއr63[ϐvx!Z6{!/oͿkkdG-g%BYKm8WŮxeZ 3[W5gֳ=|_+ >zↈ3q߫A}ں)2eo}ŞNSU6)_R`SU3{љfu%[Y=s9k_woC~G2̚l_TRƿA]eti4"??|RC?S~1We^;?婲>,L{Z3<Y|*CگIqjȢsCg'F&bVH9g8?B0հ?ggy,Xs6W9_EYcS} ,/hW39[†\ӓj̮EhmM sӦ?Gegu;wA{Wa gCzN~e=G׽??kwY0}"|J{θ1=m$=fgiv>}\ǡ_}sCf.|{<# ~Ϝ!|N|ӬsCϾ/οQax˞,muy=y=L,;c k:mkү/G@?Cď7 d?S!|O'GJ猅vS1(-hΙ̾Ks&ڿk{vM{)1??mABcG3x? ~ŌK=?w=.:_qoC,)Bf+ 2 _@'d?~Ñ &ПK *wsw~;>]U|x'nᴟVƳ;syҼ6-kcu(?{Rp;K1< hϬ>bCi?v?6Z_3XU>3/(}gܑ{٭#~O.RX@-gߔ~R̾G Nƌ{tPhϔ>Ñq{ƻx/}V/qD+5MoŞ_$1d6w!*5U͢{ W]WcR,7 7rF+\?%g7g˭h)˭x}yN%7u~%0N {ijvsb7+_{6?Cvo NqY;E ;b?oxߛ/חSx^S_6gļKn;}9Q=g3?;cc ~qx Zc?wk,9dg\2o76棲|u&گí~*;_~pW`(quy5GKx/$iksvK^ ߏXq?v=Y%l'^jI_$=.@|?N? +1_ CBKGgʯ,M?j{k{V1 byY{嵠'yE_G<s`7Y?w=!!8Wo_w)wOW+>Os,_Z nrk?+u_ ?'_'HB,?7;Yrrۦ=VRk%_d3/QBw"W~}=.^H3m8{qμ3pF uwVڇ-r13677GwV)S fN{1/I㯅rSw,o~c ,s&#J?z+=iЗ uއ1&ro/Q6ܥ|_/'j4u)QNv/Qt֪//Xq)S*fqϳGˬ/=gmׇ,z?`eBI}3C, >.%xw)~WN^~([@e?`?+C -ǟ j۰~ ??~1og^O9OJ~~9|֬sC7ٞ~?h0]~1-rY)Li]!{4PϏQm[݋ = (w%~}~>Î3l?r ٿO?YOg#N#u@g<mw=Zmjޫ_|&p8ϻ=`kY S~Ϸ,Q?9 gEC/|T{!%🙓.W!ڛ5\?si^]{'O_uv:ϫMOԍ`K {:@ĮOwjb}Ÿk[RvlQBk]$}B ; ?X|ygAb/ٻ>%_ uek̕WpU6O%eĻY*fyճb!v~A;?r[S, gӦ/ikozϲƛC?jo:/X}zţ㜯eKY1cU7k^z7}ic _{K=R_ks\M#/^S Afgg;#{7 =+ޟ:Z>-fmiDѾ\/qI٣ :9/Zd!W_uu!QlZ?V9)Wi|\Ys_cǽa5;Kֽo[h>:orSk]>'g=sZҹiY/O~ufx웾9|yAK8G-UBW\o1}=äYCO;ZKH\ (3_cM%~燇W蜦CƿGY\0r<ՉZ+?hZo5û]zѯ,_ھ5ڟҗ:ӗm$yn;;\BTNG_M9W˓k+^h3]i7鿨jg:3?Vw5yl Iޟڧ8~r?wI> s5g)+񟽪ܟC/p&y_Я~ү}Q~!W___/M<7kCxw[O;‡oWZ ]b ?mY=>4drc{RRx*A]ޜ3Տ2;7 bfԭ8k.H?їi?_?svV=Yk5FE69-vxe~l?ɯeۺ0r>L~3 ->KL&r=CםA/ ,="џǖ~ט6y*_ƶ̓-59pysYuu~k8)ϬBb|oY̟kE[_b13&: -Vվ,tdsFo|e~XɢB8^CogC?}:_`vyH?mZsK?٫Z56|;g!ӰY]I_787k++5gS묎qĿFkHÛC_2}A[]//Ϯȷ}k^3xVf+U/9XIϚkRJ[eWY2y)kM=wZ/gYd<n B?~6e GsY_3fI#Gl?/89kh$V/?B 'O;SCOIM뛝Լ:gȟ+g:iC񣆐_!G_ۺRW䴭+e2{[\s7UqZ~<޴ߗNm4W\!} #?Q&1{ZK6|jh;־>=/';]2Gq;DE/}6gK?3swY=!O__&4k/11a?Ήw=e>u ?o]],%͙A7羸X{\ҢoO{;{@L!_&qZ8Cd qƢC\!wX-@9~X/MRb ɩ#sZzq}$~j Юq_̙hσƏ#.~Krz;5ܗ~͟??!3.gVe>b.#dx8p92y2\^kޛ[oV܉;tiui/vaHb;C?_:?^tS>IP<.3OW31{1|yΎfu" 1m?Ӿ!Π36Lҗ~ 杤\9M~].s ?G|U~nѾ8۬fO_nzOb,g;Og,olʬB;Ƭfs%feQs;^'Iv\_mi?ϴztd7bolv80;ōT|s>`cu\n:ҽYv[F'ĿNR;lPb_Vb /ȟ8UiHZ_mݎ}߱Egfl tw`]]_9o&)`8wgO9MlT`"|q  &7w"3h-r y]}Y\g\S/ޕu>O,vxwVMC2;i;{=P_<#WYW;(oC݁~gZ>[_e9~&/*A?zs0gQWg sW6>RT<-U3ӢnQ;= ?'C2ӚU899gw<_gkno.+/毲~gfu@ХtO7x~lZO53?):do=|vY'%;{_7>@y_2 ݿӌ띇9ԟE~ob6T yTYKWo۷CKyKcN6 2П];N׏G_OsAu1}?"iH?hy7]fu]J~B|/@?qqZɞ-r+Bwx]}\W} мw`i3b9~<ߛ[6<s yFOӹٮ?_Y3eOg)R9ҝӾ_hyw=hgQ_0/o+tۻ\lSJg]f9 .A[ƕbtv vG3{:/{ߗ .}?_qΟ;@ qtбot C4#>35X+f-)p3wFA<t-D*m?W{g=&R75f |lC~cXBOqV_h_"{s[wpߋ< 8Z? Ӡ/;Y2'SWJKpݲstq+fAwcZ5~\ WwN+G M|]Y@]6=}Ý]?IG{f,fXܮq }~ac[ 4oXg^q_G7Sg9t7՗`zvϦy,Է2;g3ᎳK~J.ث زg~)k{3jDh_a{-aQ"w;C?% >3rC|gh1A)8m>%rϯp*+~){g.z~D駽] <^K0{>۟~ XI1gr7Ger{fRUNgL}ߎccZO|] ^ WeqX_OA. kqW ?țl}7}yXG1~2΍Oꚅ_ Љ[u`Xu&oG}vDx!Q7uNsd?<߰av,snKLY{)u:gs=fgγ{]d?y7&-.OΒ0{w߇B3O]mUB.b{a.K"v+ԗ~^J`??/ȖO@~_%r%q!E 98=5~9j\\t _w{X9hd6-ѓǻn}Aү;X:WO@zW}~/cI,סo_c0 <;ߧ/U9ke"zft4T|3a߃\ җ~՞1o_b~._]{_j_un2#4~8?sNR'Oe_zxѬݜQ[3m}f*?\,1$ φ1{;W˜m?=̜?1}ӦYAŏ𜏲W⽿͕V׆L<5g ?_&|>_eO,u9)΅6{OzK;ѾFd9|C?<>2< eu^Q/羸:kڿs.~Oci/.zէ+EѸr?ZuVq56U\ZCiq(+K?iN[Y*}t.iΊYw^\n%j1i>U~Y@{{ܣ,tP}_jA4G{b>09[2<ϡA~ե=o# ^!g6?OXY@\"~(wpENq9#YyиxƆ/]0+ߕ՛2ŹYs/XȮ)ԟ;who?sCȯ.sF_'=C/X>~5x+2my_VZ%ѯ6WXXCX>2'sMz0W;I O3|me9/sθ q3u7W[_ToKU~ 9[i8]{鎼Kw8A6ֿў\hL,?\cO4D/j7ďtd3rk-od[<:e\:0YYmcݬ*.Gf3?ٜOK?;%?2g!?3D/Ћ܁Azi_4ǾچoWy'Ƴx-of[oV?7,UlCm:?uEgV |fCEuΈ3R_qZӶ'}<_G-> q>O9Vfʠ3w!27?gyl!}Y].ӎ,rF;6!z9ÏYmJL>{џ>@`0o.ŌEO? 3], |}x>3 )_{io4A ;zms e_}eZ`9~EWZy57,NmLأ> ޥW+bi/yX䚳n`6BVqX|L1)7xf33_oѳzuB/}gρ"x}CSJLգy_>j@!dw8&'&1c*a$`N=eЇ ӇSg^~M;3奔,\؜ g:}}Y_Z,U?Ž|)|#-P6BηVn{EK?V6{TN`[] [߇L?!tг@9Nkz6ƍ]^<⼆|Bn9 \Ktx9g!vKE0iqbKVuCv8ZNYٞ6JH'{]_??v W_]<1AE ,Kf0XmW/-p53r^Zb_qe%:i.nAZ]{Āy>|zܿ ;ۮo`fJߥw,b-gxL+nCX jY?Gq‰*RYsF6vӅNu=+ǭ_oүC^;;ЧO0߃6KqTbгKqge& b)~3\j!;{^^"=u(|iն=wYЊ®nǰ9`đs#\[ݨ;# CK.۳ѓgteYGjK8WF{C]KW; y,om椟s_qU?j ;5@^Q?ƛ}ys,BF?;m[ڗVſ`^sﰼ@}f b':a~fB|/qj3ףSo׺/di(Zo}C }87xЩCK0K?!ZVd |_3dq?8csˡzOٿ3;=Y\gA:e}79ףh}oo;Xiӏ=z#k·W@?yodSϯG'M~Ő~r/I3̨*a~Kmu.I\#ƟaoߺYNzՙ#9}x&{6T~v6m_diUj~|ԓ~x3sVca{՗̝Sgg@CשUnqr2\ ?/FNڗ59?w}G2͘6ue::Ewfl6[>>'-rV:ƹ!_n? C~ozG ;C4ÉşgrSerաO{2WXߙ?ui/1:vu ?ܗ~ԅ`{1z4luoF?sI7}H%{6E3  YF*ˊWsʳ1=kJv;swVǒK-b֮П}טWsv}ֿ~b.]OMҞV}V&+?g2;yߟѵ/PIrb1M?GsY?˅3B]x1'ȼG A_x>6iEh"~gʼnL&g8c+M?X_ v/şC_X #zWI=}/]GǭRoku< gna̢#?wԟ#`ge 1_?_f5l0jk60?u'iY2h[kDqO(YľCgl1ZőV_uO/w-}K?,ՙ[Ԇ{'ЯLsC_e| ӓ~_KrBC埳|T9m5ێa,4mwo_MF*& ̇bvf3y"Z[Qyd*C.k-d&1semw0<ͣO޼_10ۀG{ý~!%HByuѯkRy_A**v(5əTЏy~_Vֽ?1s1;a"_u1X-`O1ð?~Y=a~D1@ҏK1yozXոGe#Bٹ&v/1ϠTIT )ϺHWO#w2 id ]ycϴzwƟ>i;L+[^!#a;KYoZ`|+x_: ѹ`\!J R/dwR=˞f~ 9[wE[<ӿ{,̠B~6#~Ǘ~" gB?g`;CbvV/ŽMlD=!J7K6_{3;-l@I J1j6v׭3J`g>Gŋ>]dW7 "/)?BsV< >B>74lihleohMԗˬ?(u^zF2~GXĹ~.N2 ~RdЗ~|XK3 ~*L_y;?ݷ-j7v_}]KAЏto:φj C2,ףk,?g-@=?X`}7;s+r _XظG[;KjI(|oQHu埳Qk{ş^tsR\?2;\׃o=_`XF >?|hQ89C[*|_8W;1lҊ6\S>33M~%bρ~?Ee3{,g mJ`pyRc.=},kdqյO5ߥlΚ73uycV?_ p>[ƼR-]Fen pמw1~gZ7v{5ftӎK1V-#i'FK_z C &ҟ2so"' y+gx&9uZϰ{8O{?zMW.s?~Fy~Q:Ss3×EO*u,%!`sl.)ˊ]g${WdWg}vK}siY1Y)=# [Lv1{T1%p啢;ek3sߙoYaM9A6a__ߗSfeեYN3VХ# ܽG>evxEЕ>De fAΏFwC̚?T,J}hcK`U?%/לCe7c^BїX?f~եYTC1r5Q?{BswOy%pEu/6n)uʯ։ xl~gtNֿ=kSxa?T A7q?l=|M9tޅ}?;pKD~?;sdEkP?XX}'=ũ=ژ@/ {tNS,z8\ĶzwH![8vtUC?tWAu..b~Cy_qWUj,5Cz__?wj1$xO@f~?Ďu)Ns|?xѾ+ vZfY 臎AŽZ3s/*} :&iwdQoq_[?Wg΢ Cj17s:@a}"!]+L |9eػ]/;C5T(ދ1_LR=5/|_V$-t[#} }a.QXe2:s?{$ozN 8Ϥ̝O?5_jCN m΋-fYyC,?a_ou͗2bm/QmwFaWl]N~r~ `uϸC-cҏۿwf swKJ#O{ ~3 qն wDĿНZU[?x{Rꚯ#W^Хw] IpzyOA{ϫqGs.yv{0kr!?zfwح7|]\,BﱺG~;M?{(O(\k?ggq^eϦ6,F҇Ȣ})!v9>Q_7w]YԌ]/a1?Z4y={Ƕ8Wq gLs6M+S$^.fƴO]g5,bi?#4̂~y$oZ-Mϱ?>?TC-f2<[ss:y<=k~=nԞ]ݜ>h}xOi_='8;ur>ʴs.z ؛>usl[k}Ӧ_ci3as!]r g8?Ye~ugZ9eWnuL=$R_Y+%c.%^l{av)yHΜ|\:ma+-µk%יlΓpXZ*gOP *]k-ro:=ѯsY`Xh`? B*۬{o=Ύ~_ 3_N_Y嗱V[٬#pu'<{7Zwq4ӐoWU(F>Đ]} Ōe~|_%ߧa?ʴp29o3\h𜘽z~ߍϮˈwI_}K0_ a-?kuk.'Oq_bB@x6gġ=":pW7gzf*ؽ؆1sw.!s8Ƣv#2%ЇIl`@~R.g՛'ÃQiԸ5ό3jghnZ=g{0sƣP}mdžoK?i\.gpoPg 0K,fxW=KwY7XW?:x0ƛ6Aĩ;!N,K{OY's;-jMo<>j=Ou~ڐ|P>־i?Ο%_k%Bڇk,okmø#ͯN 6v-/h;?{%9ٜ<6D Rو-z rO xG@?1owO/6ZĹ3g+l՗~ũVu^xdaM֏qd1.'On?gՉe=z {~S-0Z̃չi/}9ElF<"0.w{<wʳ<Św6sio2m'Jk -|nfsI9MfoZ IƐW}_l'8f=xl^#Y뗬˻yHZc+M3u8gxys՗us=gW1E:_)޾Ϙ v9ס~'z9{YM[E: ?:Lq{9Y?`,0wJ`<c&3zdKZt/'fxܤs=}~'3[93=/K_g5~Mb{㑥#S{ḅ_bH1u6\g_g:G=ד{B 3%9bDKLp&b80#ݼof~u${q +NDIiNcrLY''@! :kT \ӾȢ֋;u/8?pھaƏx yL`NrYJ`C.I gY9~yj?} ֏)hì~%fU6'd.j3_Ҫ!f3j,8{;{ VGzyig13 R=Nq59{l&|co^$i|}7Ϳ&9n,@t\~#(u _+SCӋ}FҸcSfe)8w8JwN.ܱS_ջnѯ;sj_nssϑ?i8u3W߃} 1-\TvWI2~9Rއ_}0 YEew|o~h_TX:wEދ[3ůPC =fdG+5 _zR1Ǐ3QnJz|i}_ܕg{B>J,ڔo#'}i{n/=~ټĹn+sǏvO;'M:N {Rk5l5';ǂW"$ws!<<,Qey|6<7=?D,49WP3ECĿK1,<>eU:OKk3@<'*b7"%=%iWǔ1<9glA{[Ӯ3;a79S}KtW>/8k &I\7*6_ -d_c Rwvlz=O~M8L?0蟍:_?pgt=ww։v/u#~akgĕń?@sg { Z)Oyk¶I'~Ns{:bi7G7e+8uWK~?EvW9z]{QZOA;%m\K8>:jR3]5դG6xWX{lmzM?SNi`* >hVGŦ<EYAk?Wl6<ςyAg x<0iWY#SװSZ{ρk<ݽ z<,(_$׮gN3=a@LbM;p\n.|Ԛ/-f33 ТNftLς۫YK)yfC-3sv\,I?~>X!gu{_uV;U\?!|}J wG7#SlgPp/t?$TxatsM^mTVZwFޟ ~r+ď r(A~ Bjgh[{[UK~)~Q_^Wiz眱w|N/{06yQs?Ԛ[ znkΏOo9Cc:.Z SRXǗer[yi[3AϭֿvLm+*Ρ?#3!f6 SyF%$Y;3HQt䬝!S$矕o fs/}:7Qg_ynżq3cԟ &ڃW>pD?T_PS=c[{B=NHGeu%}k/eQ@ZreYqMT?޲:j&6Os@6)~x}W;C?_o- EW~׮ Iz$-uG!h6Y~zKRW'iﱊׯ5Si94Fʹ.]tNrPO p=>DV~DmZjs<9yO- )mV|ۏgܽc߲5ߚZ?_g]g{?K~/&9_1᡿Z{6f/EP>!ed߿0ӣP??k҃\nnTc)S7_<~+WDї$<>&@.w˔hӧqPg:/,~ϓ\y[/ܼ >"'kr)n[=O%̑dUryete|=לj~ݚT\gw|g\߲%b:tRa#f|ei@CM~E?Evݢ竢[t@OlZ;Z%Wʄ&yl _22<ϓ{8`TyҏJ=zH=M;,+W|/K|<lCwQU/הGį'K/,51O~gt$îܞ*W%s8zמC=·!=+iܝ_,S@fћQT˹*,l{g]V}C|4m*cNyo?9>W_Wtbǐefo=:o)nϒLjw:31C|8zRwFrZ>\ɩlVjHJ7o~ݢ s 3`$}sW ߁a˼Խ6G}U{͔󟍊#YοU|,4;.v(;y^ SK5?\׹gvX~_n~S%-9m]'ҵtƭlŎd^\|\r1z{&J^zg=S'~V&t5?ۧ2Ěp,dW=K꥗)?ҝ_ۭnҹO ם }X2PI5w['m#0}C_y[;vݢѭ_OTǗ[O$m,,m%X ne}ު>{׭嶑K|K5|/YacU> '6mJU~rS;\G}c~gYGZ3ꟁ~|MO3?+jK󲎽r&/4Gy ,5ݻtg~Q4{n%9C7Ϯ]{x_2M[og~X-:EQeo_ן/ۚKRLR{-5wsاtfDZy-{?OcV֯'^kW~|^W7Vџ|ZI=5 yDdǿغǦD(u^/C:6E 36+|rl~R޼9>?|DfLLrny Ѯq옯H:rgC0>fٔRuҟ\=RO9VQ/0[+KߡC*#5b?i_M?)vԾ ͽ#N{Rk1?o.rDAcTNyΏI/o Q)',~>ee3[}'H -~_g=tS󾸏~|٘^^2ElCquZu(ן:97{n;2*/6W;_%Y=o|z.QnP e3ןgx߇'97{u q_7Gwb5tQ.ψ[{lL#ܒV_].;߆'vEtIW|,J8zs.&2+OF~:4~NJjB1j%/6/;*gϵCp{ߚ;_F~S]ד^+=UQWHtscPJLŦm| ;S|Mg_r}wy~T9w><깳v.~=Uuo 5^3W0|(_?~oqsV&~ݢWswCOWF^l[~dWg+_o}xT;۷W;Ǝ_䴕˯^Ϗx?UwU6<K&>!q^_uO7^Jϳx3<U_k<3>?G*Qu^d%um}mՏ|ï}nï[r~3= %y9u}UD"YC|.xw9.R_9_[yˣ׾/tCeO[۲|szbL|Z@~4_9œu)ү|]L3-*?Ϛ|`׏oi-{ڪ󶾯uya[Vp^n\-_?E<}Y 2~>*{wp7W?,?x%~/O"U1N}r9uLmCiLtknO'o%3\<90dw?~8fG)ͽ'jMG8c߆˹QkMk~ iXX>ɡ8s Xy+aʷc ٮEwfI¿1)Ϟ=. Y`8ܚ?u]wnT={> ڙ]FTׄEɽhб|O}ޫk:byJ DVv8t'|Bك!Cr&kPol0rюǃsA;)+/D^?)z򆟷)FxeuVIS+' zF s`̌lY;ːG RO4YѬ~=~]]a͞2SDoiB4w,9WZX_ ss8{ '3H:g Y0fyOzE~>t7};fL>I_νݙcݫt:~¾~3j~9_ܽ+~_]dKXv-;~ݚߟkgN풭W=gN ubcgt_iAI"3m3:_5Hl꥿Q13YXxv6)]f[h~& vugG_ ga_sGڣK_pnkCz<}"#˚W;aR1i5s؎{]?gn3~H[rv5;sC@|_=49uףBW;YԕKy=#sx&u~ǟwmp?k{zTn~_XYx Cǹvݢ_g؍%`P`})7/{gxϔ=lѽn{N8WJ|:{yG+s|B1.+շ>*= pwL2+_99w`3a<{gr(^zf{מ=QgKxS]DŽ=|챰0֖Mx|*aM߆3lbAaDŭ( w^/ZG~e9g W8$v _獩sw֔atXqK@k؅UAx]hf_tXֹ0-sC_׻9,_Wދs:?o{;Zy/b?zxw[[y\O%?;u;}P{|S?`IOdwhVshO.<bxزJ{ٽzO/=*Jr-oѵ);]M3WGȰc9N컢SZ{Zw\G3>= g0l1KfJ}RwC韍:&M%/zGrL(]BCwZKV>gs_'aR}s&y֧(f& _Wubcg-8i}|*fy}g 2L~cyA;ǹ-n[}Vsſ[k^slD4%^w}Ly\rUI%q JfK|9ד}O_OsNuʕC?Twnb`x{C^r oK[vPP gN_^lǿʟp,mYxsy뱕αdⷷխSsy6{_+qfCg~"j՘ll|Uش ^J%9 P_<~xq)Y9+aY߾`_Ds­a0(zD oS幟V}~8K_y_yB}^W.\Pdw.ϽzGgIϓ̦cN-ءz_;]3zwGa8F5ď\eߊwQq'ܒ>ywFߡx}tqB\~!ըT./paϋp)BW'_)ю,(?vtW99]9Stpod;@ |c7QV;C?6dRq&{RJ{@]N=Ei]%urh_G\ooe}!w|s1^sv*׌-{d<Яs 5÷EdQzEd{Ew{XsFlT1T7~n*)nԍ[Y>SR쟯,~cVc?qgϓpcrT/-_xmS~=Oq\6]~{x+պώsN:򗯈nJI9 _'}?y  NE>L~{~1zP}u?0>ߦTw{_.~_癛M=(&2 %cs_{z/Q|<~Isޞ;~US_ȫ2L-񟏈:ws {^7K[yukpm^.> kc2jC_w[}&QuX__}bӏI<`_N5(>ގq0;YV~\z<1uE;Y-b:?>};.ɨtgT1O\?]68q|u+^~T{=+fb[x]u__l_<2X_^l3׌-ƅ󹘱!.xiΆӾ]>ƾ끖>g5 crS~G3ث?5&t(C=c /5ɨ_nlu^Ը~/p *gyVL<~N˞:Qgˇ{ž'EOvsCu[c x_8뢛sVN庨ۗp￵WMQ?h.x {,wFE|u笼_>N=r= {wZU'r}} |Pm_F{&9i;g?'~z^:炄g0FgKglg~KYfa_N=/L]۱ZWi ~|7׾ʯ湟뺅K|9/{U:<}*1g\uC{cB{]$d\? wO|T~8A<#~P˞q]*ϣ<ՙIbƊ[-w{Q_l=k~i|,=f7kAh,+%n>ǭ%sӾGZrK~bzp|$bP}NA}&rA?¥Yj_c4ۚoYkOJo;.粳Ӯ[x-u?A3x[tSk1si&{(=Q̎Q^N5UQg ݙ}B|_6K~;ffRv~*k&śǿ}\V%sՅ廦ϓSVylLGѿ1yx_//*^§ka,u]9EWy^Bɯl.6o^hOiŹR+/-݃T:s&, |„JYz0%"}>In_qy~wE`&gs>>hY[uu^_+b05VgdYa0W93̉ћex2~u=/s{t{dfK|OYge_+_7 PG^WnW*.3@34p`0<Żr`uߤ9 ?sΆp~`t|43(1L(o9࣯%* /ڱT"ǏB%֨]cxπctg~%z:Û{=pAT3!,8sfMK#_-SVvI9+u`W{Y_Osn>G+G_*SkV|'·GXiyZҌ-`vjѯ<3H=ì@W&v tgd蟍9H%&-}ַOL y_.n֞'|Im$5Ak5ҝvP;0@?:,N 9 'gRN؂NzWϻ Lor ]|^,r8vY#^,$*s'>w7tRp%SwY<s( Y|s1,˯p,SኻM.+E1rZs&.VKcs>>՟s83{7 aWwNY:vP^V~=,U;J)G%={ G ġץ*6@~9?:4uU^̎_K]Gw7k>&=g/r(; }ZN5:"uĿ}<[Vj. &SJ)_l2-/3 3ۊ,F5 ;CnxϱWG!2/s?]ELl~i9˯߯l?K NFADmE{?.޿7Ouݒwy^c; }SWR56A8Xdq~*c5eDؾ>k~~T\][qʓccw\&_zQ?3QsS~EZty\S~Յ)nj-~>_lvOP%j+}uK~/ȳ^ݻvϡ>=.B^ݯ:"sRqd= OJӢbpu/nS&_y']9}+x)^nTUœ.)0)&zf$ ߵጱi3Qk2}[^+vԺ _Q0ɯWgGv_B>콱q'[x:nϭ^f^sQf\sɱ}>ayJ!گSwRsE=/<gEnDff|Fh{W;| *6\eϺlsSsJtߣ˯.]KŤ߳'c[ߡƨ~s\6ʨ1py6Qst:WY(m؂%1n|@'N0]}V1vo_j}y?*_(AڱJET^߄fqlVB;y*տ>n{LȦyozRÓNbw>7iNkW9Qg;b@TF~D};^ q5uK!k$.\xK?!h嵆Bs|[Tmtۣ;CkU.<_ 5|ԛs/FͱH.9Jݕ{\Xg㱻fhٽ_˜~?[__}"Ϡ, #]\+?; ?&eԍOLzw} 䡉4W5NO7yʃnZy9uJ/7s0Ӏ.C^=l [٨y{f޵ym}&jNAv2@b+_[s4^ >~-N!?Tc⧵4 Y=>&~&Θtܵ<'sL{=A3 U,{dY5>{l ?ҢZolØ3%Hozϗ"w____Os'Dt_k+m\]?s9kDz__4~;LύK~_G^#b?n~OJ_]ǒ_ȝ}f \ѕOOno+mV}^ .{U?:2K&b0 T>WJ~ߛn..rcc5ߧВio&ki3uϯE^Ò46Ɵ0J/깬QsK~-}#σfLgl/,Aܚ>5\.b~ ?g,/Kѵz)cR{_jzCaoȠ4<ɗD's׮%-yl[‹?Aev%湯]{cs\h٘?ՇvAr;~ I3.AWG?9 w{lG^񍱡GM_ ߋ)QeѮw({w?_c3G?z?Ltҭ bJ?gryl;k|1C_ǞGomV.kߚ5R_ǮNÃmԻp[-{:4_-Z C=4o˩=1ߡ;dVxCMݿFLy?IR7dʍ:.bӯ+7W7ب>42>VV?25n;WOvC?·i9+ݗ-V$vȧ:}jQkK#bdQy\t;}l/|:oh`O{hς|9s{dy_uznLWQ-A[8oĿľƈy*\Qg3Lχ_R߽2X^Y`¦kʯ[\_gNßQ{ֻt_R3#_@_gF:֥?; 3sxRV cFG~#0Cٲ}xPBs;”ݯTyU0+ +Yhf'=c3_[& U™o)bP_WJ -PX̵7w+uNDX G=0yB3%E?l:c^/~K~}߱8Z-\Nlk/Uv=!̎ܳ>DGQYlZd?Jg)ך+-=7z\p,Sa *v|8ieR Ǘkf_x_?g|1^oE܋?uVv}Ldm>N07{zfI/ܾLf4:)Z;˯s8}NP3a?;ǿr*_wlgpYÖ[s׫b:~iT~2~`b?AY]6);Yl^£YW>CƘ'h1zĮS _$?p_4OWRj~ҝ+3_~Z5+2i䬅L?.y> {x^&~WdF9wSG4u~~?]ݹH͞˲3ݥTY_:}oɯǺ=}7XX"^l-ZASA},s~s$Ao^Y=L怅>}T'_'̴>$[.%wީ?!Zs gS^|'C*3 ^me^|?SA>,,:T;sdb(yhTEwfGy\t1?$3]GdRcgbaװwkE?{E |뎿L|,2CگGk2je5 8UQ_=^-_lE3&o<`&?a3釗_uk3x;KJDvث }ߔ ^=Wy~ ʷ)|ORɯv_W w.]略;-OC9vɯ/Np߽"R}bɫ+W B83}E8m 'u-}Ǐmۚ:nn>8v]L|l%/!bax[uGnR*b#n[nn%,3QkI|=?_U6p{^ῑ32}~dme}Yzn#G<>i4i|m~)gZ ?7mb7ܶ=AD~oQ1rR.Np_Xj3*ÎEIJrgI:_ g[xw-{-̖U>~{GC>^[RՔJ孄C^ qAyݙ}>>5 qG.tԮ5Tiʮ*/fE?~Yrl^/Q#_Xzũ{OIڟ6s'wOY;C=Agne2,Rs$Nb ԣ2¥|:T~[qn^Ǔ7R0C5<Đ.* ӎ-:*qΞ#w(4uV߱ TD O:ѾCW=_|94_n V)Pjy;v\~VI֩gsXh3Վۏw.ugv1::1 y>#dtZ׿2ޒV=wjO<;`>]j[ߑr@ߌ[~wWMkl>5n!W(1[QG͟K/I?K^jMi͟;QoWxrb#ЌgJwԓn}{0  ?{^kyN?gў/|T*GyCc_) Okn_wx{ͩݝR}68y YRq_s!FG*)"zۢ~N3=5Q}P\ߓ?ANWgw\>z_ۥ~1]#A\[RG}@7eRmQg\.<.j{~r ~>!NH=D Lͥ,\;l#hފ|~5'oˎCγuksϏ8]w>|KVߚ#n={:o qqo~u9mɯf}_f5ﱰ_?w.X|OVDU5n{E)n:i/rw_GJ8Kh yufw ;b:lh u=W]xZǴs25Ŧi /:x)qeZ'W@r:EUOVhVM gcY,.jߌJ]5?~=~T.];ݔCYj Q/c>%K;cٹ]P_b[ʎ_]뿾?mWg\Xx;+jlT+zTwE2?~+31/6c y-_l"{嚩< :כ%׭_oʅ!~&jF4ӓ}C>ϟK~U,5o(gbǨ _Z=}c44z↟Ew緦owB˯kh+s%cE+}mC>3*3O,AhH}Ml%{aK oY{ٿsX~zս[qq~.Я3횋_juW"渖q̾Ų׏@ãd_z˩_h[-q%3TAM~:+'\6I sX=\bg $w ҿ"΁?{]d=yD~}Zrlֿ+Z9Zlg_?\Xw(l=ɵK~DgޙKgѿ߼aV+;K7]=m\yi-~kW<>g@ \'G-I5>ky=>*.CWr{tTGcPэp1}ȳrW'F7u~a^ֿ3?3>ƞf5uVF?tj^J=߫/K3fs(/}Q?7;|!<.Sa yQa\cĿNy+EUL~y9m;oy&9WE}y}8ҎyF>$jߒn_0zQ9C[p8ſ|$9j>k~o7nS%g{n}֯.LB edtge~Jq%r-w/7F7ҟ*?Qw=> G5VOhe/r%ID{17K̑bmLYWV8o';yeFvVY5ޓ3ՏZ5w3}-{L?='Gwu\߁=//L2zѯSQm~:cߡ;q}lZuoŽINõs~Sum]tco8fyK8ϡSQ~3_tz^[cךvu_~ }ˎ^ٻز׭| սܠ˯EgGAϰ{(-a|7%`ir,5[RPX-s{h_{}֜B^{?ޒ_׫3QwK?S\\jc Ksľ`n: tʨ5ŦAߙ"8mZŅv=kZ{XZ+ 9s`ҩca_n0٫7Qwh(x`6M\n~.Zve^H[o_= %olvtÿ?di)X xRw2uп:jϰ ']f/ 98?ɞhcx=]V}Laً~9v=5n{|쮥kwX_,z0,|T} Fwߊ$ik`fkljK|uޙ>?ǞoGwǾ^b²2ٓ3b7vHd|emg{ݢ_Wދ{vhDhĎZ1;NюDdY&C_Sr=MJnRι:k;vNZ8}-Rg,^\&ː@lIkWcqh;4oG_G+-88_C} -9SwDwВióW'$sZѩ!C/iu|@~O{I|<OS-%dWZl/WgGJ}v7=0?+g3>ϳF;'y\LC+'<%u.;dZk<׉/6x}=_O~^Kq{HJSWL|7v9jGȌG~e[o.dpZHog^_\ gb; v6_]EL6|fzC>[H^$R{ySX/[$ͷDחgBfГЋo3mR<'[ɾ#xcWml;~;̕A~%BlPǕtD}K݋$ټ(ٷ)dMuq;[nܵZv֬zit1挼˩Qy_%1'|_g"[~ݼ=fص䔓',<)*vik9$3W:9Ə0y77||7c㈵ؗE )RϿ:~Ϸw]k1|BW%$r,iG]Sn\2#j35Q}Yي7M:=V%<32KN|&1*;>BӺj~vmts_O7[v}WҵtۓyZݼУ_*^ _mb/ݧg<Jw,?-lu-yeƾ=C?;ό_\C3< ?;rl}lLg~Y_|wݕ"ןD![|g'^1ց~|V>t6۫|_=4V^Zrsjo*VV\챶_%+~g}qbGPaݿӯgnAn9+^GgEŽOs1A~5F4)[%{5i-_t,<_Z՚VGyNe{ɱJcR>e{I?*թ~w17x)ueESMQ/xF<ÒGJI)vH>ֆѝ8Wﵿy0~Yk}GŔ^snaBkS=׏T(wy&ۦBگTYVNJCzoeϛ<<~Fҭ K|ON Q} _9K?O}9tsVЏ}k@Z]~E`x;QŽ=<gxdRkҩ{nsR&v{nOz&=bNN+/ݒ__~03xݟ= /Y?L'ySxz,yǥ,c38]+f,tޝQ/lY>Iێs$$@uD2v)xa_?G77è6 ]_2?sI)<`ssᆟ3_i3fGG(n:1zyԫ<mHFΧ_-i'G&;tI`3Vsdy F&7`J;3zK̗~ՇZ{:?C-Mv=u%ȭbڳ=;Lrו:}U\7~%Qks,2I}=%V_xC,VW+p}:*v׏~G>v>Qɥ;K%<>D 薨~it޵u+ߥ7d>S['U<󁼿_*F)4C/GbdkQ/(}?#'|S*??~hFo=OXp:3{Y ~g-|?Jzg%1kϼ>&ȳ"!m7wN*~ϳˤ~D,Y7FEz>_ChDd|&Zz&ЫZrU~t{9Sãε44=u+9~l7k?jUޗ_1T9u?9s'NW+;j/YB{5Q1'Ua$h*.L|/4ے;7]'Z=łK~D}}N|w\&M5,5}WCοCn~e u%H^1<"=>:eɱ }~qu n뙘>/&sEѝTu,ВߋF8xAިK~?09%B׏<~t׿1=q?')~2/zߚGhf/w]'ɶEYFYsr1|_<ǟS䀘%z0rG؇n_bӯ8i~o#7{˞-V޵N>t2xVZ^J?ޑ{>5Jy\p?+9~jľ[{?Vؽc- baO]Ovh<_ikZظ-ٌi?~ǿU;P~y_%2K4y[rY?"GcdlH~whW59L=G׎9,^}gE;γϥz ]}c䯆үؗ: k_/u_1cz >rXMoxJz6'{YC:?GZz53S|?sdVv஘565ywEKAn K~z߳jy򑮊qysEc /*[uAŭkNsl6?z;?~Νޓ,sI |s5D<49pi|֨+W?1޵rukA3A(AIz%wtX>zڄ@9Gu2tͪ2?5{exx ln3ӧ{Jϋ:v6>sT3pu3?%_Y[>K~zXſ>h_uw8sb6jRqc!yR}b`v1cX.~XGuwE{YYϴ|Es^_ мyp g5'غnʤiEZΏILYf/10ܿ<,5gO0fIZ99C=ˣ{/Q\Z_A~A' XsMi>qSg}\q=\uchWRSIc?B?z^O~33>g.:O}/AX߾KxyuPra¿R*vuϱkRv32~ovL<^n=}οO[-T jkq5=3a^)j/~ .[#(|2-m)ǤzU.sbKW,hrY@lܺSFu/N ;<6xA?a&~`Y||}QcHe1Oe[3ӯpvt{,gD9w K7DŽFvBs̚ '3vL=F?'=ǹ5O K`<*_GL^s\ǔ:T /L(*|'Mt۴T>=Qo,;̼+R+ޮ( l0u8cc#,W?!gβ?E'$|t:Էsill:9[:.g:g٘=nOzH}G ߕ$+Q$cZhv?>Jr=sH1^j0س&0_i~|ˤW_iK@Y\s_`o?Z.*3i} %RS~/-pt^'(8GWP 8򝅇}a[X1ɥr}ǿ vQ`Vs~:ܯWFAxO ?1QYn}_l/FŦqbprMcA<9}ѫC33ю/Qc]ǵCA( 9/үQ3qq6A/_:ƤcNb맏,__4sϵ9*Ǡe.5=})?.SZVީ'prʃ]5kϭ=+_ɳI~(݊֏xUd6jk]z9Qs@䜅L/Uf}0;;D|NQ_=#i?iex* ,d_ѻF /AlR6M9)sR3h)ˇo:2~kN8^+4~ڷcyN%3J"fHvI; U _+N/.~rW_C?y[x_6 ~*FsVˆN>?Q"ˮwߢ_FOb-rZw*5܏W-/NDv8ƈ Sl43|܈pb/U -n]o*{kCp[׭6x9_9 YV;j1bM|FȀz9Tx;ZJ-GYrd>jѵkq)UƏK%w;Sf?KI\:ŷKYP d~3;{$x/nŹ*U>tϒ#t%},q[a/v'ok]%mp6#q w|.\i(|M14~ן<7= Gr/룻O»1i/2{p6}CވUϐsZ噪j8ϏH'/ϧ}"WK|u~(n= m/ տ%'}fP<(_e?&M^R]9{WTPh_M??)/P8W}wp{TY ݖ})6"?HzLR,e0r+Cw@Llq:+@6MyQXSYVjݿw|P8dsѓWFGx$~$][=@3uv{σ|9 _3j7DWS {!K^A8$o(נ5bK |HՃR?7ZЎ\f^i<{dpw5\_1ˣw Q/Ŧ='A&9yL_H?tuֱkzM?F) y5f5C!~Ydo~=ntDGwDY>ۅ1[s;[F:dRu^韔EUX=ռ|~SM}ےՖӒŦ_u\w7jJrk>>y4{W]\,KIՏŦ?O:~h2د[y*kdM3 Zoυ'Νk>r&n _W51E!'"лAٖ/7K?|#M'VyVJqso7Z-V] 'yp\Ԫ[vme?pa\l⦅PwF7:Y^ڙr׆@]0|.cU~ 9U|L|ndZ㇣lEy?U5\laQ1_TWhcJ^E7=6 3FE}szi1ߡO]K |2*~b sMOY|E} |h<=>G׭s^6a]laM_o s+Wm ábȧ>[uw~A'_qsaM:~ݳ߮)Qk¯vu_GZ?ˣƆ yp[ߢ%3 _N1c=kq5/KKsuWTx߷f:~;Sy<S<{^=Z>u+^ޘ?OXEwѱ47m1ۇlįfby{} 4̜^|4FQ{}~A{F}zn}@U/y/ B׀zG~S/Yf5P3ܫ^+OX;MG*y<ݒǧaV$fx_.:kD= h}D- -}Jű{n-/,]{L>0 _FA>>skpuZv}]]*-y8ߟKvyvG;'o$I 񛱿m>GXEl$KyFKNlvzsЂ}砿ubߡg9??'Qg=uml>~kRk=_{: ^:ţ ]*.SKWl/3w4U+{:Un5ݡȗoZgSsNY\Vi>/%ܢT\Aj Jx8ǒjq>rUF/w}|Scz3[v\Y{:Wt{7Ap/ѽi6Oy\瓏8o/L<bMK}4*{_ڢ_FTiQFɥDC3 æv[ϙ2}6+( |CI/|rҎ]Z4oNNp> ?7n}'p3ɗܛp'+׬qOj_lj=؞yDGfY9FLT\>,-vg|wٯkQ/{^v>~0e5~?l/C">d^\ʤf։|+y}1yZr}u>~)&2|_;,Xn9Sa6A=)i,i|W{@ b/޹'*?sE瞑u ?S#^xD;ur{H){9"xA6*< Mn][yܹi3Hg? ;*n׏#Gy5w3 9ۧ, _xN4_bs!Eaf*3~>Xp)<ݓft) a.9o?v*#)uvwR1NZNA5;y?0D sQ-Op3n'Ž#91SSL%;F9M}ˏ<Ǿe>=KwPj`irعIR_ph[~Biua?<%(Y fn{CO>&<߇l|/1JŒ*>M9=*>5; ^zTg_mLJWg|eq>ky& yOH%$^|sIf?K3{^2|XK^L#rtp|?z&&ojw|SgWF7Qm_;n9ϯyQْ;<􁨘^&oU {t[1\9#ϱHVB8'ڡ 4 _8ZyD'G9_ 9;R7>?t1cٳ} CϿ߿qqԙa5jW w?<ʲ*υ1x fp\ .2)܆6x`IBRXr2PjVJi)52SRjH)%$lMBVӫj(n V8_9qOX{27{osZgſ)mk){_9ޯ)za׮gMS3~cW9y^9[SY,?ݟ/}"6|Pz'QKdVlXg/q"1bZtxj 9"s,r~1Yzg7.+tb /=9-;J1;?/ Q,d^P㖖ۧ =^bo*s_^tS~Ve񓱱?{橮?~ֽkEO-nܗH%Iٗ~7Drp/]Q')^z-fHed;cQ=`{vzv_1}NJgun댬֯ϳ,FOc[7o_e남9c}3׽{^\oqrk>+'ߓ􏓏98+qV:+Y?y\߾7jn ;7ak:S͡X[q61v~u~^UO^OiVnw$Nh|^$.qo"Xlبo뤻-K~Xws(2/w83 #[?aXɿў{Y74=^˜rv4SQEֿ'Qo-> /#cT]:@~zxo/*;ʭ)g,Mڨ+a>ϒg<Oo͓v[\:e".bn>2~bzm_u^33Q=޼^5׌sge #g̽=rVFc9^ι- YXd9ߜP7h0Yg_ۛ;^S׹iLvKyW>R##bkq*.VY`\Xa.OmkvvGb_i}3W3~d،p>^;v-1!_u6CυOsO^/+yuF]^aH#sz*s"^媲n [c~楍k3c^ι8"-3W%c[YK{?[ww/sZ5#ՄU'7#Y0q{O <}=#v׽xY暵*ّF,]:w(wj5(yھt1vG=K Ǎ)Pܶku1Z,j^j K.^䗏RMӑJrfw!7rG:/9'էpJx~Y疵~Gq}nɯ^^`n ݛtO{7_yܛ7W=D[н=_Q+\<⅞po;+GU.@.c~go޵[$`-s {/#`-:S $b]ۨzII^Y's}7lw,j^ݑoɯ򵊍=F !Z)뫵v0}ԹY}\oZl%ۻ?/!T1 wqp'O̿3!5ErA=EbyӢIξu%=6ۣ*r@i38usS{=c/egx}Id݂״K;E2bwYT=˞b_?9bo_Q7WO-eϋmŢES{N:-}vee_9FEm߼Kva7d$0S&6lmˋ qOdiGg"?΢~Ƈʾ z {X#ɽk(17|W1o@>"}O,2F<9G?ydΣ4q=_Ե{]_?3.Zw)6Z?I_bkusT^[=ݓM͝?$V\{%_9H> ƥ'?{nZWՅ~(ua\jcN/(297 >-%o[v/ڑ'k>Ϥʵg/HɿA>3;9}_Sωߞ{sį5sԴKG}N,?{L/չW~1P {/(Nxf/ ֞"d?<忴>q&1~N謫3gb59\>lgxJrQں73˽sn׬_/^ ccqוLӻ#h?idĆ*F/._QtR X޶hQ\P nS8+^\Ÿ&5uo?\]dt^Z:%~|"gI?RWkyRQb75g/M[s'鵺VG 9gu'fWU'D~yy.9=m=ُL{%tV>@z"%9KH\,g{:OGrd/G>Yyh؍0nyvbɩ\bwuG}US>gW9}/WiLd&gbjd/슥_MuaQ瞥3?K/]el<>oh%"5_xML/_?>s#0gE|^̗j[G u:wR6V{߳^_ |k-{dG}p]q^ ~9!3%%q_a]:+Ϭſ>ڢʗpap($_}Xopd_2'cݵ~]Y,woU_!uTqpS۽'{u/Y1O~ac_^=^ڇ|g0h/5*?OWGM:ɇ)Ll.\%햝v";[O~x ҶG=O }C 7NZN$翿iI^<̲/i{ k~yX/3>YeEGOlyu)II$+8?h +5~@yP=YԘp[Ce]%'?A8?^_ɯ}yO^XG{۽G?R 4y~YF;G,d.oUEW僝wY%Iw_Sw%J 3k=sgT/уQsz=uOOw?\^.k.?-et?'e5?K?_˖*(ӳPL/;wwG׌=-kPd6տ܉dq "1oYif(v/> xuo)?*ϟ?D]Q9(Ɇ'ByeK^UltV} -ﭿϒe{p,d[.1\L^gD]u<⩜bkݼYHs:t_s}31*+ul_rm٥*wV{}-^^Tk?Fe0yJ_7rj첓>+d$FFZ{\X#+>w}x_Ցԓv׿=HGTB?+.u=P75{+Y{> q|Ε='=3w)^klyퟏ4x]g\/r?jd;"߯ccYtZ:w\a /,zEߜUk`^3q-yE>y7}"E?^Ur@UFdNSQ۲Zӹoh*b{kQ̯ܴbբBq{ԼO"c8aɊ-ŋ:."ֳiGG3}+yJ}4stj9kw7^9TiwyEiK[bib ^REe7}q%O]io :m|4jtuYd__Wge|.(gZ;/zg/OƙWzmNJ1+>i_R|lb}s,DcC g.jy[[տ-Fv^6s'8իEg} F~g|N\F\9\γÏ6Z O6״ 3eQ. /LlkT޺+}%Y3μE_'?qMȹ7Yd\{~5 U_^W;w.+/3젱οi]#eGCv>W{$Օwi?}N3h1*?^=CXdz.Ec/9NY|-sV41}k:كQLY8ឆZRC4:ڞWH<#H9eKme_}K=8v_<~ y1b%klhg_U?=u {voc}MYS:i=Sl_dԻpK_.xZ 7 RMyK5ω͋:~si+X'ZF`J=}uaXs9g{wɟsVd=>H.b/5%ic5䱓~ve}]y'?c_wmUe+;Q|@_߷K#/L7#u{\:ʢ _UZv犽|E>~'{#/6|S`ߍ93_S q5f37E}gN?ދ{(o&^XwG`Xd;63纼y>ʞeWςOO~?;'ܲk}?W{D0~_,jv_z%wGWZ+5۲G]:+< o+E<_Yd7ŋ nw&kM8_]$W{^~%Rc ,}q믝ny{kc3nk{xݱg?|~4.Lɹ/'T',_?׏Go|O=%7y\s2c߰kq붻X?}Y+u_Ou="O[XË3?-󞧱3mkKSb }>_W\bByܞ]~Z6͑SʷD;w)^K3^=|Mf6@Ex6y`ԑW߱=J?s1cRI*U|lZqs\#W}|sñw?^^S->K_m9P?I9[k7-ɹk {'iߓyrig.|1(oҹG9*g_7Ձ kf_Շ"k쿛[~tU98Y%Kv>/3˷ۿ }lo,\){EW,kFr {zOsوaߛ +}rmljGαKW_:XtP>SɾG|޾W1tٺ}O;y=sYφs?sgheُ{7W3uνkKwuo6sWxYWz긚zm9P?Q/|[L'{~ZEeX׿'?s>#>x[μTN˳WOy"6D[z7'C·ϳo{NJoy1~Wq5ѽQOx6Vzg$\<5O,1 k+~Vu]",YzcWLqTaN?󿎍6׽>rO4[,z=z=k-QUg3(q49Ĺ#"폺dng´NvG"C9umAyW3ڈzxMqvl]gbֈc^pSe^>\3H2wQci4.qD'E 2rqS]/R x_\'.0==>>UL3^[gkxT_No_׿'?c63:?ouhu%ou}26bf8 S !_Z>[?>ןօs1\+_֏ʷ:7x>w׌i{ySrWe;"g0{X#Fes䈞{{{{t/Y{x[rPRg߈{\s'Y^NΥ+"mx cM#s?_oU] +qsόKFsΫh}u_񒿷?ޯ^Aߗ9[n\#ო{&ӿ9~02"Ȟɫ{Qυc &k/(r /N"N}@?/[9nᑲ/)~ǚbcWϠr̹m~}mVco=k:=y/<AY?cJ{h7~}ּˋ<- ,-w~i2:99"9W.|’]>EOpRsmϡ:tWsݛ܁k;ٖ@dss$?R=v_ E.kE,EosO)}jQ[)ן:Q*{3=IK>yo>K3򜢿e~*3\ Ӟ/T|s={=#~Ds,}Ϣϓ#+wߥ[w?МЫ/Ɂk.)@Ifu໢IWYOVLdNJ3gl^Q~'Ǜ߶E6 >'QE1W2d~{߶,#1p>CLS\WpGr+~V^5~"O^Uʵ9v>iE{^>>C&5-96&c-G.W14v哴Nfy3gE,-cwk!9\/o/)әL~@rOF>7A sR,-?/U9{"9Y7TpƷwOʾ36p~,o\}WdφUqtZ@a 8HK_srfm盋!峧?yS:#x3^5O䛋_MsXOgAmփE}|^}*昽- /_4v>_zFL? -j^creGu$gȟWV!ټbߙo2*Fb/}yWz-zo=5=gz_O~_h/+ke̼gZg<l_y \l$lME!FŘG[N|)Y&_XE=s-z,Y>,yOc {3^^o'yQsfYimD\Wch}=:~+~_۫ο"}1{G˞Ds|0e6[FcK3R:=?!u3'wXdgH-8yޯ]d;9'aIg}-zHϿow_ubE/:bcSAgvO2˚;翈A˶KC^O魱W߳r9 ]tO9eim٘򙷝W2f^-E#Ơ/GP|+9t|^<7d5r-[z<^r{ ׻OF3&3I^ωO.-ﭿ~fyOS+kx^{A:O~sZ}V--9Y[G8^4vQo>s/qksRT;}or?pyӿ1oOQeO~cY>ύ?{"g2'~r K/qK]LS8+~d'ך~ژ~@u$zZs⿈קuSsyAqQs#WuÑx?8ULk]s>+&ЙWy?ʟW_h)~c%/u^h= Xh}c\FP/H{w@n^OH!o޻bS+F>ɑ܁3W?9zn+kgn}3OٿOsR3=]i=ՉDsxXzl5ϮH5Pyx%r.owB~]O~Hşӓln:G:~\*Ɯ)>@~_xWԼ>7w>j_o{\nuΑFJ3_z9;szbo/K/*'t]3"Z疿=ڗJ e_[?ӻU]I{yQ8c|#=e1bw ?Za2߳0[!AVOwJ{.?ĘǭcVOk!-;@^?`ﺧ=I+i9b^=Տ>T>;g'Ν+E9^_W5|{/u3;coO~K"}HL3nK7'KOcR^Z:++xD[}Av~ϾKkC牽uOO]?= s_ȏ+/uy$糹>Ώɿ<+n.ه=^_ 鬰TQؔfʳFYy_pH?KL~<8#7^ ^G&{|;(oE )b-{GOd̟q8;M|񒿷)"9)'rʯkZzǚsYzJkUb~u뿼/^y>5n665wbEǍ 27l (3u;/{oe `܆ß>߱icޜC$o+Vt Hr\R`$/yK2KLpߴj︟bo$fCkKUF6gGٻQsw |H@-x>5y_"ĺ~4jwܗ~\gtM>^5.=mWm񽟫kgXS8Qǥ߹b9b%j#s?ϋmsx:y!9e9*ooo<(=9s"mّsόHdme[1ۂ姯v.gqu{{?k^kskxk{8%r^\CrF椼G_953hnHc=X/k=sZd̡פ߷Erz3@c*|RnLjj7m]kdyFr/sKgV"ufnn:f38r?61gl/.iu(fh8q|fnоq=yNuO{-o]QƩ쿣gôgI3u7Euz/i=pu<ɘqt3s1@~ۢṘ1)Ef: zSc,~m:9{7@~⎈sXٶO,wcy.7ʑ'I,}]#0 _n(G_dH~΃c\9 欣.#߸Ƣνurwi ^{\f[#mח=;upB~ +# ڦY˫gӜjZ[O|(bGO2;w?rSgon;kGhFMb@7*rf%2ϝϧ]b-gYOFsYyݝ=?HmH߈ \2smϋ߹}eo)?g9RE<:g\X֋A֙|WE_"`n}mqS:bڴDo!?>Y.X3iGwӧ-iEV=S"̧}i$Ql nN{qB\v>HodWq-X=58ssɑӒgҶ\cQ[Ʌ2~n{;i]</+y\gck|V#g,#-u52̬ݱ9躰oFNe6pO~mq]@ωV5۽Q.˞wrN.ka^wנ%~tMjj-m Q91u1EmϞ4'b]5j݋zKfr-?C0'Kf<?H.ϐZ2Ƴ3ًgrmԸw9ϙѽ9[함cOկ:)6O󈃚[~[/'S'G|ԙȜO>]eo驑koqso.1ת|6$ϷSY3"1ܜ+7b˧W2NRF]1'}ƹ*䆨yb]qoS񛊜=Nsoٝu=,c,ΈͲW{c,q_#e_TïGaYCh972qňc¹/Ss_F2,kZ=xݵEĖP_oNHfb6&ׁ{z$}4vq߽1?m$v ϟgھ'3uar8ks>{?K.r\kbr\1i," 3wq~AV~77mQ>Q\i< c:HΙ^=wQcoԑ;#6W\#X=QǙ+@ n~E6DQF֖V"ϊf97n-?ϭ'Oڼ"{yM/(4j{G&PX\ǟG2׼3׉k~@YGbkg鷜sڃ;/<uM'{n.B~~_@t2G0[ų`nD>i͹h?G)e~]}j\ށ}xn-"z 8?5|1]ǽ0O|G{}"D#_sW#{zwxs!B7>0CƸ3Q[x΍3_pw㹑6smG?y2w-rc 炤QD l;W#a͈} <.#ySf\Ј_Ƭyce+==3p]_yhD.#_u_szly9)D>G?/%IN6"`qL%s~#W3pmdKZWZsF/֭\ϒgy=_qg08[~sڗ)r\^wZ<5V֮ތk`qh^x0)5չ埪Cx*< h؃YYgҏ#cGΥx?Vh%8X%_}V~dm%Q lOpIX#Fro#fsܸkCxBC?a 6sHL#r?ҕǣΟoyV"HGZ){;ϡs?hٿ~2ܭYuLk E<22 N⽗tD&=#ٽwWE͟@)yv>7l-XJǕs g҉޹bWH{(=䯋G~%nn[q{JHz2b[3MXKb/98anݏ&ϊgr=O+Ϩbo|c[{x=6ΒSXnܯ힓'{V$Oo`_1swg?#죿b\-yrYd^+]|As/[\upz9PwFPm\-s1ɿA1λ·Xϓs\ 3q6uY:dϽQOi({J$?p22b1·b9-Cne^'^.cL<au5Cp8o| 9o}OFo]q3ܹ}Wb1#wsᆨϡ#?,xŸ8/Aẑ3x w?ymə5v#ݗό y[zwW2u:Ks.΋b=in[WӖ10igb,FW"g5ee gCₜuK>@=e~o=_CG0":l~yd\OV"q_;X~ǰL202bLgXgױi[_鼭C[}my靏 ?3J?ϳqukz^mCدqtȗȚHF:YF8=+]]d>Pd浼5{k]YqVSsIe}F۹A-?{ع+d&= _g/f<ŵ^/s83b3u_`[Kψ3ӓl/#폱+GwS|#j}Qc$=^Y57Ϲs_XdGW9'nlhٯ}2E`AmygsG#ku/!e͂9[Ȯ+QGO|ZvFTހk?J{B˱;u:%gx[v<~-W9_{Ϗ?'C 冀~M:kF[ڢg{]=9SQ 8p SܰƙmGW78:;9M'LK36n 6쿰x.7|kŵٿՈY֠w,^Bى`/sFIvx6y7_q:#oPX]+]後!5"<"Y9;1g{W˘Q˲~^wd;g9s=#yQUXqϒȶb?H^Wmp;W_owkκSyӢpM96ed=q#3?B9zE1~0&WhoW˚'>F0?p0;}O~zS'[~~eKnRn,+q~rtFx|DX#dm-@.Ÿ oyi>I^)ԹC/YW%Fum0#֟K,ϝ2G69[\v~o瑶q52-?[$f馨S6Uepߘsp̗2"_}{X|♋= 89͛u>bWKꙑuO~ظ_e8d9mY+vs~c/yEۢCF?5g6N?a E^-=} j5G2-r?͹Λ #۬GHqgԶd,Fs==\d܇XG?9 )#Z_c8ʳFO+܇ ϒz,~V#7?E}qף%3\k~{$k#&̓޺"?OX3ؗ=Jv~Dڹ?b3o?pJ>瓝cu?#!vn}p9ai󧸷(Acב|J$.}͒ؼ.c|qy5OBh]>\{]3H~&V"kRO`kGfN~s˺Y<ό?S}Bd<@9##=vuibtΔ|YwٱZY㻣'>'G ?aw<_=ҳ\imUG,#ol/ĮK?ωmnL.$QV7u?QKrjz}q!>7m|{̽ȑ2-̳C}ydck ̽y?],#m>:`^!v~5w=@ֶXK$GY14y$I8ijE~2n?9=c5jssOc{y2>Hl+k.![~!0F\Hz>:\18oFn%gȸ65#?/JN07ܗGW#6|<X๎_S ~@,z_8j^Q.cڮ/t@^>1Q98\֒܃u(>|$>}4>0>f* Fşm~Wde&g0FN99y_Y]Gon hs#과ȱُGгşI 8ҼF=iE=|>w7/H=8}疟2sDoFXd~og>}>kj/h_)#֟V_/>5O 9,$r3F"0 ?%+G"uߧuyq^7{wL{3[*{ULZsw̳y/p0W6y9ss(pk2b8GēL"V-; e~2ッwa+>}챨g1ސg>}ڿgF棜u}1/}T_F Ѭ-?m=<2~ ;斟/Ox_G[JK y3 b-UY9sDz pn[vP%*[qk*6YzSEdn)Qw'jyq^ϥ1Gj}8"ùs(斟ͱD ZFsc/Zܡmϩ[~8'Snvf?8k ~;݌ߜgooO^#qD ZFy%גDρ`⺧pk[|\W;"7)2FM֏ȟú r?~A[~3E$o-Uϲ<{yѮ-?$~g@Up;bocgb ?#5nKHed<ȍ?`[_9v5q#2ro7"jjdu%G95;{rd{#y0X15(yE<@9‰k35'ZU;#9lSuzrO-s$rGdNEkM1GGB#Jz~5/71][d?R'%GYg^\+$N,e]vv_FF^Td $d>u->1kO({xBٻ"3;|V-wOVKbL5/4XOُεF_rOuM~#Gs>[~b11+g|k kF23#;׻ۣ/܋&^T܈`]ø6Ǩw⹑"?D̿t(2/}l{>/y؋J#G_|gq/?FݝÎ_aLmWq0([Z%kksgz4j쏬\Yhxf{&/rrn2l|j;^ lھUmzg1[~).a9x9a2\)Kd~s E2˺sotXq.jnln`lxH0{?%yG;E] .yI=<!J:Jdd$reY`'G3myDGp{촥[riWF/}voȼ#O);6*~Xcshzq) [6O,_`}%u ?k8_<koyssOZ=:<9ql*G*|Sy.#[wDUC!=Jgkt羌3,#m%Jy:7s,˴|fyd.2GAsj{XS~pP,J|52gA7F?g%? K;k~V7G/m\7u7o2U䐜9L>/wFlΈ%؋zY_5 qQ;.Ck[|s^$?{\``oq ?K̭kϮ1A9>[~kFLzsBe_o=tyM]/K>cd)1[ze,b3ǔ)ؚ+[~Ǻz{cb-qwȖZ_Fe䙋yFsO<ǸăG˖:~Z4?[؞Ebz|~ޜe"@˫?͹x^uQu誨ĉ'?%/bp#sS]/t3~$_ݟ˘5?·|gzqFu?}>^]ǣkܚ;`dՈkk?{^b>^gwLͻ!?9^ׇqkp6+k$bn-}?S[~b~\7qе$/qycggȌQdھȳ e 61fW=w\j_HVQFo9ώeW[FpS2O>Eú҈fmH;o¶xOq=Qs\߯E/m>gC?\s[)dqP1qڞsE[4-Sb?inC5W{E]q^t?3gX23DHs!s&63Ϥ.X0P4!Ο;#y~8ԼZX@\JGf1Qgsayvf_;pJ8%uaٿX1Nɫse-?{E>q]y>KR~U59T<ωb]lٳ4mߍ>KIu^u.^seG=1ݯ:3e.#_xMOZ9H^QGk c{Iw/lO{|OLVzBῶ/9LscdQaYrH^)\ƹБm f'3B^7S{۹ +1soyws{xεs+FOʿyfqs~q$OchB#'+</FfX in73XPH ͻ#fNj$fK>)XN[_۞W_FF's?}xg^["G#g*>cpm_-s3~_\up?GlqgxQlݓ=bN9>/P~ǫkf 0\6ǹQR?=^n#6|un˶{+bƈ87E1&~߹)j^c$N1;F?cM>M_ߑ#sG{^;7ۿbUO=Yz8dn@dșؿػΛQtb{93&s๴#co.f=H̵1n~F~ɭSK_2%<A05Wblƕ2w&e\# k#L5-&@˓I ^9hZѧ⟵zh썺ø(:gr7]uV^Q$6 q^uzA<}|l;OdWk-gg=-2勴O\3›XOo]_/7ۥ䟊.Y=j7g_g~uR疿喱\F'u44s;N̎'}μc/ݴk7lsK,܏F]#0'Z=fnəL}1 5QW=`4^ce9og\;ͣ~1|G\rc=/E]/`{Z;۞k5u˽~`nWvXz͝[|򓏝B7W1!'愼sΟK{/Q7=J^5_-?k~Y~%]xl5OFԍ#UYB4rqLջ̡ɺ=~"Ǚ>ȼ"k֜9CɶD\XYa#g괵E!nn?Y;C$Tyn>Y363bfF,.Ȧu&{Sb-l$9x|.\"<X_ozQO|s(ky*p^H{S:q[lq:/F_Vcg~y&gn=w?5_˚q2rάs MQG_/22m]ƽsqJduvBd+y/c?)9Ca^]Q+}h疟vqtm^iF_8hqJ&1O_/l}sԼrLzUyɜWY?3xcTZd5C_s8-2usPL̆F?9 \OCsʥu=?'\z\'Er\˺yfgOHc#}vd^]ϐ斟6RgYhZgE ʮn)jϸ&mk^Ew~:Fv?9j/;6m~i_$՚u>c^qh?3r y8|Kt?Qub9斟u^?b=ugԼk_R3?~?079<F7zƑ׊wG8kj<g;tYsb8cj~vy7Ԉ= {z yAG'q=:7F2?ip3B~^șvq/ZREZg<sGD-?}(y}E(mx]9_}gK'߬b"7q#LgaYd"^bY':^w_Թr}]Qs[bY"/HȜ>󱫑yB,z?~>-_y3?[_v`]CF=ŵ~mLF+?wlwFi[أzG=09'h%k-+)q~a/j,so;+yBO3斿7?}*N\缸FoF2{Q׼Y0;ZQ3^u˾ިcsKg[uJo}Ka<|ߺ1c/m}D/!{92<?gw sT7]~(m\\5f7׀K.͹g?L h۽̜#'ӈ\~_9ssDcyȚ(-_'_?)O#5bý#?m#z~qŎ!9: nxkq^-9i疟=poٙy9c,O9d~̛?ו#_=~ϓ"q\e_+'7vMp#^O_5^r?v1ޛ[^<)x.~#޵3~MO?02`γnkϋ}-γ%M^&ֿQx:[~)Yc"{_F2Q生\i?ೠk_F=/?87s[G#22֤^,!m|Tm5jskS"Iyu^VHj?C0H-z9[Ś[~72CvNgZ-#3?A}رzyͱ8:A,#S=ak1Zw?|V<˷|^,QK{<֖\#ȿ/1#qFƨpyrMlٿƾT0sE|^m?mYpN\yC -?{b=~rd~疟#J6rWg5tf ѳݳ;ā_ ,Ȥ5~<s|@XXȠ=!7Z Pgl{{?Oco"3X瞪G/E-bĢyL:"szDh9%2H)%,gۭE%7g|BaWsތwk}`dӼs߫F ˹N<;{9r~Ɠ3h130U'8\giDK,(/i G;c3+oq~99?=!8~֝gon=?¨秓ņx[?q=H6w5j !Au8kLYFa|<7j~)l?vj$G5^]cn͇ɽ.S~>qWD 9bǀ#c^u͑m\le?by,! {uo=FV޻r~ {x.Ès '|9/\W`5r 9.斿ũ:vXFOq6 "ό~~#9ψ}"6ajNg\s^ǏG``o}U<6k[m23ڈZ'{ҳuAqyE斟nm#Ŀ"{1:ON":9B#/Sw,Ș#:V##7O\yd@$sg5~Ou疟uR┼:?:Xpps4F)16X#;zocP aJ~2ďfA,4}/"σKgaA}[5N2~hrsg1gbu?#1# 0/J͑<Ƣya뱱Yj(RٷrŔ2wQψ[{=V@͇#{EƧ=[z$wXXk\MXGzoއ0rmHZwˏEk=;zegE9۞lB;i+^e}<+(|w}r?ulKzlܫ~w!O@Bv!!!Mlc0P $$ А4|$[d[~\]zۖ%Ж>R:F[ёI$$iH͹>ǺZu?|Q;y}m-H6m-N,s ig $Q{.yKNY?=8|S_hSf4ǣk$c*.x*zf|G% xe#iyWf#zhO[?G81&uk} &L6G1?mb~=BڍӨK'~2VIۚRnƽx֟oW_6A9GcQn(|}fAs5q}L:tl!Ϩ|*d[>U_j ι ОWs@'muVI'냴SJ,}jǣ'{z)<KؖCUٮ mB>&{M/y?e=~^ɞӗ&0rO9Or$m_WdK3tklAcxN;}5?Y_ii?9rxAbߟa,!A/V/y '~sݍI7%%?lףy*|8|?ċe?/>~`*Kyu8y0Τ\rDKPטG(9G;QO]u?j/~6 e]2cd2qZ1&FD+岟<_#sgL3=ڟT 6czf4*}]xX sLG37ˏ/]y*&8ǫ+L!UNx7rU/YqhUz(bD-_rQ*Nә~= Ɛw ?} 7ߦ/<鿸iOf??x-Q_揌(?y#!7ErLH1WH^Fu{lbha~]ϻʿ(c>cƽ(oDo']{qߘQҿ'~۱*m$&&֟O_y/qH 9j2{ǺsGwef'Y/}j{^·dY_Yyø&/dƐ\uR>3v1G&E}nxWE\胲ZS,wd_Ru_xkyRGaLKiWWۘϫ3~ OIOc#wr dXㄪ~G9ļ~Ĺ7gI ^Ag aMZj3V|-Y?=_ƐhO'S~tb}$zs %))#bSX֟׾=R;ƚ1d+6#nϸR'0kECU?"A kG{MN#g*~+~S?q/z z(X A0gaS'{XW ;gS[ݘl͒/9%X׌43{6r!z[|Ftge~䲊sֹ,a:O[E?-鋩S3c?Kz5qty>Zw|FoK0p{}9U~0sufrάQ~KﻣkDY_GO|͟uU/濔J)3ʦ*_fGyc=>|ž]Do~!a\Ss_·Q7e ^xF+_&;F7yxX[񇽮cgr~qkĔRi6ה5rɘndy?.mbqh'~vFuz}.wkE'גy9pG)d}lS7&:Km/6g>#)}ꉬ/U,Tj?߉'Px&j3sHMg0$I=exjgfKYg5Q5Y~s/z;1_I@ jGVk~:+&վUEk=_7뤔o1ɨrD/'??S G_)?ߘw;.]D7Wأd3N-џ!_ec\G]?2f^@13:A?ZɎ졞YX\Nu?}7}b#fg1ޱ/9B%K] !F7Du+p9QAyz2 Ͻc s~u{v}}7=z6_?&p׬W꫒n|I8/KީIIՇNv'uN6Zb3^nR2[ӧ}"㽪],tl_osrۺ>wzRh?wU8>lEH|:u0yO u:뿴9ל81 PU|keωsok?>3TyOu?} <ܻ$[^]#2,]'W(o:~|*ob:W~X.'9[<^Qȟ)(7t8]%7JL1QDm7\&Zg?P|U+=p=֊s/ʌpv/cQ ,b71N0'}:_9zo>~c.shI?/㷪_sfͅstq`sȞ0$WvGE\kz.?CY?3W^}BaU>kJ{?S=ސW Yq+񳞓/. _9 #b8x#,G10ǧf|ot1Q|/w񜼟8'1%槬j3a>Ř-ËA"v#w֟w Vg\m+/R{=dŬWK@L90_sT9 c}g8/iS,}8'z8GnĽسܟ%N`͍c&?mm?L|۽!zyh{Ⱥ$^=Em8?S;X\~0?=zNsU}Z^)?{kS'I#'a}凲ӶxKUdJvcu^ ?Xq?6?_*gQCz?Zr+oFQXT{;1& <|6ǯ ^gL|NşMy;=ί`^@zz?10 wd׹묟fC/?t(Zg%gP_^W~{VՋ.̪Jes@R5޿)٦O=\=g&/%sy1/%~l+sgS<'̳ޚş7F+2ލd8Bk%>n>G&9,ׇPVN:quSwŌ(\Zף%OF8<ã(ϼk[o_~:z˘sfHmgGj, c=㾳6x[oe?%߆SA&?mU/<$S9Dۛ[ĩQ۟cQ91w _q q^#n:RbGUS̿?3Oٍ~1|h3d2w៴OM0'Uúu?ms=%{3WG2Ďhw%ʹx0 Տz(":.,y"=YYƺVk֗ec,w?ZX%m/{DLo{= |!,~/񖵯 Ǿk\GPwwa=OdW<ӞSqZ9<1wDSs"V@HS_!Ͻc^)ô?\Cƥ̳wCҞ7sU;}:&MhQEg\(mϑJn?ȇk.Eok(xLés7X=סN{cYO^ ȟJ0`۱2^6YD}}{ǹml%YVcONųV0eF6WD?_^8uz/סw`,xp ?Fmƺ9b.皿{}WolF'~7"O9ߔM'N1Lz$xG}г1`Oeyeo9[SNN[' O\x<|·2@}򏚓uW 9˴?fS>,;c?Nf+Z*c ϽQ&̗Ye͂cf]Py$v}=Z64suo3M#}w|c?du dSXW"VI93pScMtGkOU>s勳[gP|6YOy*A~iGZb7͉>$cQ?_s[wCa/-'%֡Z6OG-[ϕlb远G*9*cO٤vlջ+}$Z yC% ^qݟ_9yY? m ~0m5_Wɗ?3j/|ϸHa>E{~a-ċ^᥻c%Hw~:ګLog긴9IXBLr^}E]Dqg9=ُ#d9|lx'>j_?2䯳3Do 3~jA5ee[|G|}jY]dQ>Lsc_+xC+#|/7ol8h(K7en:;qr$ǼyOUImlb<ؑJA`d1ɱm0דKT/cO{C%DWyye/cU ;⛩ĸXhOGEn?PY%F/m/LsblFZRS_d?=7z,+?h}~9~⍔aVyrk=g<@eI=·6?pהCgePߪ?~1&,{PL>yܗ?|,z}cHLExtyJu2b~?.Wu9Eio&T~ǼtŵD~^xۓz,z[9VW&mX9>=sl}\L3άK?hZgƍ¨>S.y';a ОlbʩsG ? SVūk~1d[s?|z?Y8SD]P<n}+%?mʶ_k[Qo%Ϟe߉-~;7=&x2\?u@KŹ0<)Y__'m}AS'}4X뿜9hznǦs>>鏨S 8ͩ|^SUОg#?ob.uw6U<|/zLjj_TO;o2^~T|8r}OtNt)_?;Φ#@906?x}\>VreyY8:ZS@ !>p^qmUVPS4I=T>rK6F_+ʿTο=> R\o糋9qm^I~Q+> SuT_ gʷxsf;~B^luNQ_/Y=X|g?-ϩ/+#|`ɞdt~㥪$9!^f+> ?O%}Fz?GOY* m\RGPw7Y6|WΟ5}֕*_u6hiC*}zW*~ۍx95\gwׯ5T+{[_ՋxŸ9OM>2=c' p}O)Z?zD1-ʍSyMXh_27r[r7͇YRٍq2|V׎z73?ſR GLrYƹ9|Kw+?״9;o3~lHZX̉X~+ .p=w֚q߉f\).f{֘tXz_L<]5|M2Q*'?5;ƴs)ԡa\΍/eO'VN|׼~ue' #S#_8kKy+v7r>Oտ&q\FƷ9?_{E3}:Vo_gpBs=p2:6kr>9/)bC{hcv@*(ߓ|{5&rOiOVg'^7UUyq b%'ƚ:5! u~{X~C'<NDg{Xkg=ߕL{N؍1J_ic% όOx2B)?WDŽgLG~hxW/N'\}̝4UP?sYevΚ'qG6*/cds(?b\EGPo6f=g͸ {p\q'OVGQ8&30:_IB V܃{cg>A&k&sЧy?p26џZƿs#_?oj_INޗp,EM{HGUOz䏑Vyטʕ8Ǟ\Ms(׋Wg\>e~L'dKd<㽖6hnY9Zh]~$OIc`+oegգo+_G1yJug֊pƗ3|/^K/㴇|.ֿ6\ūOJoi)٫ =Qo@fT;?j}P^549|.%sx9R)>W? ~XqGgw[q x\۲^WM:i'71ٍk*W[gO?dC>}"z ޓ(L>>}Jhϩ?Fx{?qğ۞(azs(?OF_=hs?͇q?\;G2qsi+r}=_߈Wwd?1=泷(7#zq>gv~'Yck^Uߒ1FU`I^y=Q2|DX8ϛms/ɸlS ǣ;9QGx?craMMqd;*_V^xA}R~(dok)ɛ)]ލ<\s~OɆQWy͛iV?ƳSs,~_Đ ~7Ɵ?cژZ'埶)f,eO_e_Z1Kf'h~y?7p[7gi8^Cxqׅ/\Sۼz\۬^Ǣ ߖ\}V3N5sIo~zO<'QcV|¬s6]?en>^Ƀdl/ p8& 9<_X[g"XϽֽn{uagΓz}'Ab钑Ǣ>.+}2z_Ls^=}@ ؃X{sf޶O/tnX'3;C2̸:ފWg}(zyp{~'' gVgyE>c8W%Y?5&w{A|gCΟ2\ǵq.k}:zt}XGyOV7J׎3;r;%Q/?s}hQi4bꯐqOpZmz519\kI`uV 8ƿ2I!w>QO|"z~>=Gkœ/{=8>ÏG/Zi@ז sm 8 #d|[cVe]Op_Qpks}h's ^yM|Hg;]5y5c꾏uU]=Regd0OF9_62 qUxZ~i/*xtyc,D{|*Ϳ?_ik [+apf>a挬~j$1⇴Qd𫪟9Q/emكGxZ36*~m>bC}#Qb_e9{˿\Sf}wLr9I?}Ⱦ{B<9\szT ϤZU~JTSa?YʝӠ9]d+1Vaeu1Ta<|iL6G%Szu| ;os |F?d SF(<}z 47ջ_!jOs8^Sy#m C)eXy.cۣKq=`_1Ř*:P]BNCy2Ozoٝ5;xt[r\sq:0+?}G3wxnoMeqN|}Yo̗:;sit Y_[ȹ?gso=60~]ry};p*zrH>OfD_gSyV߽=&s}yև8K}zcN}^S)zF. sdyO={GkY37h1]^2\`?̱G]vcZ/G˿:}#~q85[q^N; )9-#ʼcDYP.yӺJvUnLy,?+qQsOt& gi׃gj+r>FO_I. ;3Z{8_2I<\6~r92:#?e蛼Kc]ߍLqLrw]F_^xL=':q;{>BA7Cy6(_6pbϸ(*^ ȸ^^b{(?2L}gK61F>spnߗG;DqIxOc?W|x sfʏsuˏ} /'įRf&r9ޒgg5ӜIq+N_ {rی s(|<~V揔~gşkOz! /M'տe3eL<FC%1V/[ڷת${I_;@h]YGSw!xFr#ьWdoko)cm<<79x|d9IҕcUXKpiXˤAuNkQ76#Ko)>G,k[aO\#Y0a׿_d?U>uXI?o{S J/|Wb2rO#*<<yTr?Oqz_CߒA_{L.ycn]՛h?/sߠϒz^S^ٴ]Yn*9g9&u{=T}c\ncaL1v>u?Up|?H3tLK>Xǧ_fϭ_5*^G0^gOʿK# P=fטsj^/d{{׽O޵/@7gRwEo#h+*C]"fic?2_6BHZ[&;~ ;g c?*iKخmwy.?k|^UGRh;?{XL*} cu)v?\ֹ8&jߨy^I*_sM(?L^S8s3Ukm Qn0)RO/a|F /X{(8WH_)f[2iY&In61aM?i3z'_*SVR?k2kZ]*VTٟ%~%U>ru9e)ğj Ms>!%[ΟDolU6-Q6W wpϣϫxu/8Uv1\1I=,%>gdaYL|-)~y{lS1Os:keÝQ/9#_*z|}NG*PCy?yi>')sx__zA?Y`C(}:&l&i+>?'O׿ә+Uj_O>2B 'ǀיZm wbFj1_oCL'f|7Wv?놔1P_4&O1ٿΘ~^Pv?OO;)~/W~#i;U8UUrL5뿠F p}]`M; }{-9EHΟ#?X919*^~fL/P/|޹x|ތG鼗%adgte[Qe]-7RйR-qYvƝs6+Fa3|As%?Ymq)Ǥ3bBba2bF#u̿h%[GC9qk@=1;<Oz2cFB[x2?n<~U_G7̟f|ʿ6|gP~YG֯s̶_G|/k1mfc ZfzVş!Eq~{1ٻML5PƟYx̅k$owKŁ*!BZ_{$eiSXn'\5?ާC &n[Ws^xTsT/#{!hx_s.~b/[nSWe-nڊ9.r,?c W/'~:9|[Z~|WKwD1~Yn?!Ž+{N ګ'Ø_ ?˽v1oVU21(/>{U$g5hO/߫*uc/Uc~ϩSW1qbdxe׮/Yhc{MjG߿#SǙs?U59.E7 n5)j ?̝iCx^_j\|ZΟC>cmK:6WQ#Lc;r8b+eE >a_N#ןq+c!ƏF/?'Ihx2Fߕa)adlt͉jI[MʼcZ6fwdS>&gNMya82W1噸4mߘp+3Vou~sɇy?nQX7dǯ-ë1|'xw٧p{L;r6ާ=/C=ך2v5V7nL|0E~c xnLzR?@OH !KSy?q3H&m"W؃2:;/9p׿?~"߿!јO񗄟3XSync1 F_o+_#r+F/SΫ~U/0,~9z[d=`Y_Y?^3k䟨,^_؍A{|v__ dՌA-<_xϿȗeQ%/sjgo|^s58CR_sig>ړ۹_%&L<19י~>z->|7dk_ß@@<%CgMD<}">1٤gl|} m{'iכ=_9?h(U-m/gq5nU=EZk;.gµ)ڜML:yƜѲ7D1~ֽƙmϢ 'HZ*O'In 埜a#Tv ` }a_5>I|t:$GOE/ϔs1W&;}}d' m2m&FBuf=Kz?` vM\%u>&:ЦqcCuG c?*"|>?B{'{@1!'u Lʥ>}|u7~RӶ_&zyʷFSۊML)q'r )'3 %W\wD) x?泉,ҧg"?ޟRf2c t9y& cc?uƼ dyoruLW*(z3tϣ=5.տ71͡NV9 SyI֞~X>(|w\=bm-{_oĶ* ԒϊX*|6r]ؿ#YUxL{sg1_9MKqU'e~Y6V_ǩMK;SyAu\{ń7kP}~-Z؇5P=u~|WPU?9\OJP߲ k(;gsO%4v?-Ǽ)̔qVgC`GqP_Ξ`U?J+~> ~xY@?H{eɛ>{tvֈ]0Wnp_7U<ob2՞F☬eT|~_{Aܘk::9WgyGҾe6 ~pK^CﲩGouV̧O0AR2{~*zffx' O:HK0gd}1s+˜|$oL8dMRU.6\䅲֣,~nRi>1ޠ=GMjY<ʞo8'*<pR&? _}u9mEez}fvc#R!)k}h =v)¢$o)?N<=_?4_ÏD'g8ԘʞTuj Ɵ#b_c='gʚ3cbMjt?Rx׋%?ĥi?z?:{<a>C?:^B5?+zkm0^992^m;ymn[7Jβkr{q<0ޫ?k,</3%QϪ?_Www]ӦZ[UM?ć])?s!kgM [ڥv[7E[/VWtֿ*z?kQ*C[)y狲F_|v(oU_c/Z>;*K6RGcS+̹9Vɏm]?uuֱ&'jJٽ/8?h=W%0:݃Kv=XLcWx=gg}FE/;R=t3>I;^M,v5r]9^o8~ggML=QqSFg]5C$a_=)nQ]c3D/zکMqKרO?T[k߼~O`E?%L[Yo2xşȿ6?i=̗^Ǎs~W,_ x/35܍<[>zi;Q 8P9E1cW/1M|?֏VՏ_o>ǡ2ݫ?yO?(}%IU2mişqDOk.?}/d?bGGrK ;i\O>xC_P~Xa_30VިK[SIrW~*MUL_*[[^35vdL/CVў07'Dnz>k#u昕 K?ɿ9ߪ?TD,*\?:Ο7ֿX=?p_h Gxyŧ˜{V8g6ۮ6?Ŕc(wy;zV3˿}9vRV#(oS~FS3a:h0v%Db|yɿ8|@ÜĥeoTTLߝo,?Ǻ-;CW WfK_߽,X>pqX=z \y89V6O_絏b,G_Go3F"IMqLSZ0܋S/_H}اׯVx˃1 wm2d/Z+kȆM*V/(ƗҾS1G?{wLX rY>kBny_Uq&1NտLKys>&r{(C2ƣg'.!{N}a~~~*x>:wWIQìx_FWׁ9t?iY1c.ЦQSUu:T7`_$d9'&Eȟ6.x'맬gQ_yXMȿ=ۿ}4}7AIVG1Vg,!h_@.tuDs)K̡'J1t`sp#t>֋67bwd+=T]xˌ?}ùU|-53?>r y?\/e5ʌz qSVb/)M?b\Ρ}57ǟ۽-?߉|۱'j޺B.3Vg9r1lꤛNJO͇9>U_ce}a:&I{!O2DnechOOD#g'^OE/Ü_g}e>eUݦѦh=z/k?&36`ؕq~j׿dG6Ϲ6؈r/"}sv~T{؎?om Q?8/ZkG|碎p~#筵.{[=.~[bĹKB?_pe{+}W5\97yFQկӉ'0&udC}\CM`'qƹ>S=:6Dl [m}uȘ3=aCk[iL?/* #ne3ø1nhqS`==ޣUKo~߼q8猿?tA*v#?39'?cƟa?'õײ~n)j5Uek:1z?mol'qN~l=˪NX]d>+Hyf9p"kiO^Lk1f0~#U/2?e=AZ_>0$CRfƏF3?L^@L%oU?lU?נ7\*Y&8m6 }J5AǴr.U̟{k8) fὟB|^uKV0iOe|* B8eۊ_ܺ*'gDz!{kU'pQl"{ߪ=%ve駘/?zcr/9,'NV\k_+~{=oıJiz6rRb;xl{IDg?cY8kd?57*~>DNⱘS,$_;R6;mOyNLA{usdgL.oc6{ǦDn97`lǽ[·wÔs>c%|ܧbVTT|Ŭ_>,ndNTLB=O*k'u*~'?'?wGex6wSNuy7ْE~:YueLOTh?b ϩ,#bݞ*1q^97Q#;!X(ٕ=tiV*xƗ?0$ߒ}%w?z]+:Hؐz~i3;жgeXi3nod'|{u>3bNqrU({* uPG!7yFy1g'|.E7Dv&o0g8{4?z91~)3qi%OE񹸆g'B:HGe6%yV??\=3+F8̽ ߍi3>nO5ʶ~>j.As.ך{ZyIQkmsv߭ff2;Ƽͽrue7*gzSsg{fw)"JPPf-(Ss4}s=Ks6]߸r~Q6VrBO_T~g gb[͟sP?*>?\ie3/י=W ;mΧ S9]גY6jY8nls:%Y a/#)qο_dԝ,}^_ѽ˳uA. dߊsldXlzټȉvF*?B_C~盕܏7⼩/{-_>*N f&sR!g{לߩxo waW1R~<<+<_9L9O=6z.ț\=&K&ΦFz]=y圗w<8s?ׯ^k꧗ ld<9!`ys'}?t IЏWqc5M϶=/b&o:_Wʎ-Q\jƁ~Wg^s+\Q})Z{]Յ)mlX\ϟ8Wj6w/˷ƄWU3%( z W?9Ԯl޷rRz5G13#o$˃>#sML㶔ះ1%xגstysKFYxuUf? _g~ ȱ_gfW+ Gafg{WBdS<̞WeG0_WA.q+Nc7e8x{t]b*[>>_Cfvq {CzW}nvU[lsw~1ߩ_ܯerBXŸ.t~H󼩬47O>g)?|~-bԇ*ޫ~jO{+se}a]U~SCf=ޙ>Ɵ~xxxxxxxx3=M~NWxxs/3~^9-c1hkQ~xxxx^=\7ZkHi~p??c l~&gy~=ޯ o޳σ=Oos_5xǛl51}^μE(ak? oŞnpo/[s?޿?8p`׿ei~~;\_2\_w)Qu3oN;-/Wsg-+1ooHsm1_u-ӏ7ye~ɟH*{/og/lU?b^;-/cNlEjm"=\lVXNjy;ﴼ,׏9I޻7;y~Ξx`~s>2\plU?΁{g銝=Ne;?>#ϯzA%v~э;{g\3ꉏw ţ~xvgcdwfԑ'pgx~=@p k?_r緎=ޜ?!|xKjԯ=O ~NAlg~~IW?`Wן 3?Ga?xsw$hGlg~8ǯq8HQ؏u5ޜ?l?~ʷX;Zi;\8@m.COǡ|{؏u5ޜ?l_6r8o=wƛ';\8@-ߠ~vg~q(^{4ch7'Owq(^{4ooooooooooooooooooooooooooooooooo|+뻆맇f^q6_w@:ޙ{oƛ'yY̿?oދΦk㑿8%tU?I^ǜxK$ţptNk[ow_{oՏuy;1'> |8VGo+\_^>l:޼?b?o^ lo}`-t.{wTm:޼?b?o?k߅_~Nk/K^=x~,֏9uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu3qvh|}i˿_·'F񝽾d1K>Ծw}OfK9+rЧ~<ƛ Xs=##_7#g^5 >RD?w5{ [mxxsww~xK`Gl=}x;lgلyygD?pgﻅx֏o^oN..ԏ9o |8F᫿wΣh.ꕿo~4h=3O~~hՏss9P?o{eξ||3Fb%Ѿ3F}U?B֟Wǘu|[wcKvVb_kwzmKV87Ǜ cN_d[Z۾K@w~#n\)[g|8Wmxxsww~xK ?+e;==ֿ[l\~ΞkU?Bά(::::::::޹6W oY~g~ {p}pq^7\7;O~f3O@~k{9|xg~tg~}~7ǟA~yZ=}G۷;9 뷎gq7 )۹ƭ0 lkƺLs|z8=ƛ~?/o_ )Kl; u|?gd^dz2ޜL?/o_ o?|W뷇?w<8~wu ;~nE}m*xKjY{}ә߹o9뷎=iy^oՏusyk6~<{qQ`W[{=x}[ ұ|G_ U޹-lo;|$;{/2h5ނ❽s3yxx-vQfn%&ovʏ}}sʞw|ښߛ8#!/ϵ><\$#ÿpmy9kU~m.ًvo~Z?{v=Yx>3$}> <i}k6o~usvdU?(χb:9;0ZlVX;gǣ<Fm2ުxxhM[c|-x~u?7Mߦxrye|tޫv"6up]7WN u^N:E v^9& q$? wk璙+>{X!{4%_~6ދg~(ӷ-Qv^i^ׇfo~79ٝ?~~y~5zq- 6ooukg =pVŶ1˕cl[b;>\cj ƑoyW~n~>-:_}n{kzrK8ՏlXx6+3\7x?w^P{拆3g-Qo&/E=~a.cc;9~[[;tfK9_ㅫ~=gkμƝ9//_]E|o_4^v&O;kwήzG2 l~Ýc~x=\_0;Dzr@??׏r{CxKoDz[wv^_27 y;{xKoDzw ׿_7g$//:~qmmTo~,ߪx{?-~i6տj@?bǍce;{gޚwj-׏e[cobOΞ}n2;$//9~~XkKv:>R[6l~~<1\{rpFq~$//=~lg7[}&/=~,rX6U?~6pWNbeЏf[.!oܾ[M^vX6l~~}5\up3mO^^~|סCᎷt~s?Galn= em۞ QW0{=γʛ(ސIv;lf̙3 tz ̜3Y: @C :i !ljk<~JuzsV^gٲ/gsy3Nڟ1-t?{E?oxߏ]tlde/n . K Nk[d_.WiBמo//"\#;M˖%ЗЗ+!<쯻[g|~uϯnխ_%j_:[9b%~/E?XKxٲKK..uKĻ;Ǘu0^}|4ȢO  ךo/kx%RK,%RK~?c?c?c?c?c?c?c?؟c7Ex_hVgcƟ({''E l(~&~FfZ>~>~[_s+&G yoo+?my?6 ,&G yoo+?my?6 ,&G yoo+?my?6 ,&G yoo+?my?6 ,&G yoo+?my?6 ,&G yoo+?my?6 ΊfVX- ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??sVWY]-U__3γȪZfuPǿ:ı?{~ __}۽}9g_j- ? ǿ:yq[:WWW}ί>Uί>=gչe\Z#Ư>3֏|q~ίӶV:Vϊu+&G yoo+?my?6 ,&G yoo+!X=hu?!X/Bz ?!jμ?? O?}?{=9l7/mw뗾CZz =*?mcoz ~+1~7} ֿ7 q_ ݎwGݿSiCX&? yoo+?my?6 ,&G yoo+?my?6 ,&G yoo+?my?6 ,&;[~v[c7X]>~ ??* 6W_ ~5V_c~Jdi_}y3~W_}ί>~˿*Z3~W_}ί>~~3_֏cW?/˶Ye8v)*Qwm`u!VǏ:Q/V u~񓃿՜YA_}u}|$ͣq*__}[_~U_u~E}uߩu~񓃿ί>~yaGWW?_?~WÏ~?nu?_?~WÏ~?nu?_?~WÏ~?nu?oͣ}~gEsM_#4 [~W8NhOz_yg:OhOj kk}gþ/7yݬז9LjGui?Mu(ƿ:멮ݮZmum_ٿ- ?mz..'(Wui?{^ST!4 y;+~v[cw~ïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏï˯eK.۪ n߹e ]2| ݽ4z^"?>3ȷ}ϭ߻"5BW?ֿ9q{~??/_?4~_뗕BW?o3p{PۆQ g:¯>~1Vϼ^_/e=Ϫ_+UJ_/O5YBW~Ym*ZmW:?9*W~WD_*O~. z_~o]=z.w!įu~e;oGG@TΏ_\Nm~?jz"KExO~o_+0 24UYOWűu=oGV?y s} 3; _~~̏W7?z~ֿmy /3ϖߟ|޿o+C8=~.q"e~9`u>#sfz[,sfz߅"s+́~qNJp}5?6 3+Cc>PL|~9ZLֿy4_OW_?޺Ǭ?]ٟ?/G?24~ֿyJIj?"_oju&-V7 o׮GWş"į ZVW?߆L.-ö\_߿:_oNUmk~/m}ܫp/X_ &YZ:??fAVi/cwp̭=??fcqE8>lhp Y2~g_/~]~ֿuY2~ֿ/_Z?qc_?_?~WÏ~?nu?_n]n2|S1麡 ɼj[|Ɵ?_ϡח'_~o}{Pܹԝ?Vu+͟?f~ou:_?R͟?fϟ~ qP߿15_6&;Ÿ:** ?>WğC:Ÿ:**ܹ6VJUk~ͯ5e*>\wo5n?US_TSQW}Tg;LTT]~Q~¿PSQOE_S0SQW}T}../k/,{Ο[uE+U*W?uTTUj.=V{K?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.?.#+Y$TۆbO۟/TW?o6gcǙBW?oGlNJp=fՓB~e;~߶gs_&?9e85Y*~e;~6X]/cWb/cW~}׳Tۆ=buq!~0]j*owMB[ _߯sO,sQ.Z)įfUWƟ!~0_vʟ3V];?[_۬/u/*k#ueX _?W}\ŸZ?Wsc;UeX6nZ_~Q1nx޾|`;TU=QῦmW_T5G.Wֿ*yC904C毯U]gY99g0 24~s~>; 忰vuo/)7iy DƞuOa?m7^3"5gX?6cz6ş ._oճV᳃I_ ~|ݻZ!~/m}spe2Co~e8W?߆Q"\{ҭ*__RN:!~/?߆rr{ƯU??f~!cVZM3"{(Hp ߃E8VN3#q?Ou"?8~?e.?_?e_}_J7ye?_?~WÏ~?nu?_?~w}oVۭvXX?IwZ$_??~\gM?f/ÏaT<~՝?uO_Ï'߮ ,&G yoo+?my?6 ,&G yoo+?my?6 ,&G yoo+?my?mùV˭δZV6!OY=gVX$?mσC=x%.;:fVDž yow/*<7/ ζr-9QH?mσC < ^(B?|=?~ a Q-|F<_Q-~c:!?m7y.sg2?[~yexJ}-?m7{o8cb*_Eexhu^; {Ǟ_~R6GY<l~cE>9TO Oͣ}/9(>*5YWL>ϣk~m=G?zݟkv?S?,? 24~ֿy;? ݮ?3~ 24~ֿy~/}~moͣ}X*v_dLY]N?uTU?U0X]=^wTS{We;**ncxBW_]USQOE q VN0*W8>6~}ՊxŸ:*n :>6OE??dex?R?uTTUŸZΟkcHq_UOE?ޫ^?T?ե*xT qY|;;USQOE_~v[cq///////////////////////\܇3V/įUۆmpܗգB~mpD=nk<wVWw\SW?/_?qlּ/}!~0]g[o1njG9-?m7~~CO~͵+͟?f?hPVjQ?fOO _?fկU?V{?fO]oͣ}jKֿCOEߍ8:𯌏VGה:__h_{OE¿SQOEq m*5׿*CS]]ΟkcHqTOUOE?Unmj~ïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏïˏï˯'zq!~?6guV} oP_߻mXk-Z#į>~6cVOZ=RL*~mj]?/į>~_ֿ~mm{V?)zX_}m5 qZVסW?ou@_}m|Qw]nCfնrxnSZ_;𯰺KVZW6kj]*k^VW.?_Z- ۟m.W/5T}|_w"į1{`UWğSίUr zwW?'nJ^_;sw 忬0S?ן_YzՐ ˶əyV/~B߮ ^o?ߞͣ}eh̓Ex |޿o+C?TL"Giy {Exc?,{*Oͣ}eh{o?[L־Oͣ}ehzϡ}ȎOͣ}eh| !iy z1b>?W7W7k^~B_?w~ݪ:߮?6?;s@E~agge3_Y2~Y3_Oׁ/W3?6 ,&G yoo+?my?6 ,&*66Zmj?w7o{SETz `Pᇿ[~ ?]??կ?QZl]_OEgCF~>QW!wUnmjy?s>KXp_6ՃV߱ioÿ|f;\U[Vߋ߰;?8~/mX{,cwUۆYc}wۆ[V?߶6j_,߿&į>~_ֿ~e;~_ֿ~mwū׿Q_}m/šսEXW?o׼~EXj.Ww?L76Zmfjg9 8̡CO6zΝ73? /]_2.?`hK=~? _?8!.J_!o~Y|oh?mߡ z!!Y-ǏHou0?8~82~6yqVǭNǏbr|{eu8?8~B_UJ3ֿǏ/~]S??Voz{9<1?)߷u$ׂ ?;- ?c{~K9Cq?8 )?9^{ t?9thK ?cs~;'_w?fϟjϬZgu}nPö7~7l8?~W?f?W]"ϟ?f/Ï?~쯿vZ3ׁ.⯿^zmVw@ETC~5#:Q] ?]D4Q>.x?]D_E{?]DݥC"*j4QW}. ?]D߮ ,&G yoo+?my?6 ,&G yw/dZ߶7e]!T6R빿BZoZ*ğ ;zWdY}E?񷍿sCozG9y/V/qǿ!T߶_\7|w_z ;oW?w߯ ?u!T6)]~y0k߻~ ğ ;P:gϡO~~_O~m{UxLuׯc}sd _q[-VۄkZVOE?6o.siեVgYouIß:**v[i|l^jeß:*jۨPlc{|aTSQ;U1 k+uSQOE_SZ9soEpVOE?կ??_5*[]6US_TSQW tՊrr/5*[~S;xw _5OE?կ?ֿ*o9+~/ݑs~245׊1[?xy?6O]X1[?j'_ S?_?1~~]UW?nu?_?~WÏ~?nu?{wX/~&߰׬n-!;vmh_MR`wG?5~1ׯ߿rQΟՏM>_wq*S鎿U߇<ZnDn_Ot/wV\hhK]/ӭ9~߽q#WOw[_]_`M!O5c1:yZS~mo_)V1jܯOw WLֽ+!\׏ ?zMV[Y }9MB`Ֆl rKVZouBu 1&X]kus*_S:޺Ɵ[%į\ ȹ&~ozs~~_^Qou,^%į\U?UWUUS_~W_>/{I*RoTw_WDg/,~ƐԜ?UM^:˾~| !~-[:χ+Exm v'_6*=cO[}cIڨY T|X"OOu_ :O%}]|_*O?;.JU6*O?_iOU6*<׏:BF_χz]BF?j'woc{[UjYy!io}~yjՂ}VZ?6 S{{h,_..±x9o=NjVNJ҉9o=? ΗY2~Y/}ehX=jx~l,__<lk]o=ou*[]o=~ϷZ5k>z_W~^S.⯿_/r[|QW}.ozM?o?ᇿ[ ?]D_?[S ~"*_[_u?wO"*+_[=~6Q׷YojVB.~զmV;?]D_~s ?]D_~'wsCFm.C"*_~.~"*þ| %mwV_Z}%6t?`24~ ?Ÿo?D'Ÿ'c]V_՗# ?χ[_~&%\?jh?~ߗ}Pu Vay19*~?18ϡC?[ٸOgֿ*cWm~Ͽֿս߻2? /]UsW_mV}/cwX.Ǐd_߽E41۟:bHܯ ??f׏ ??f~?w^(±:w>??fjPe.5 kWru.<[=VcVǟ՛~Vo+ǟ??'coS1OJ~o.U?Y1Y"US{}V7şW eƴ2>N+OE?cH*1c *({`UۋcuՅV:Q*O[=oVZ$ğ:*'UOE?5v_Lc:77ZxY|TSQOEߪ[J ȹjCvkß:**"]<=UW?nu?_?~WÏ~?nu?x2t1 jm={6my/Y}A?5~6.~ߓsq[L_Ow ~*2ϊu24~ub|V_?:SRֿ{ [~'g>WMdV?5~߶V>Uxũ׿*o(N>~TOeh֏ :S(ߏ|BuTƿ|p? R?;[{[Y~Q*7Y? zsw{9a,n۞c\_{CY pS8ozs>*_a3 ?Wϟc04COUյS׿Z]hU zs?*޿Smβ?Ϸzپ>5͏SBF5*>k[/o-cA!S?NJ *XS!iouu %?mTU?w?mTU_Wڨ[?돁JV`io5*?T O럿\{]χ߯;*:Zڨ>?.X?mTU?ũ׿*F߮ cYcuՃsfz*_X5?6 s__́~9du-Xzd,__<l1ϡx5?6 3+Cgg/OetY <׿GEůQ{9we?weO"*7P?ᇿ(O"J*ϟET={*~?EU?ᇿ/󧂿ϟ 2~>**^fNϫ~[{۬vğZET!ϟ7 ΟETꍵ9TET_O"*.??]D_~"*ϟET]|Nm?]D_QW3ET>{Ί{ϋqOY?`24i1=}Ykn,&ߏg0~R?_q>jbr[53Toչ |}t~*9*__kTܯTƟwW=W?W=x~wg1YWIehg'û;D\UW??d:du>41~c#i/cuAV_6yٸ'T1׿?+\Z3?_}םU__]f_:~a/cuɛ~Vo+kJƟ??'{oY]B1{s1ԛ?̟b?o*'[jOw?cvQ?zf^CO~W?fOuNi?cW}?cW_kJ'ߵuq[-Vۄ?cZVRs1[͝cZm?_ jPj__V>~1>.~pkϟ?~;QkPᇿ>Qz"CoCEU?ᇿK|. ?]D_~'w/ETU?ᇿR3ET횿o+?my?6 ,&G yoo+?myɾf_zխexM3OY}wT6zb`CY}8'BmϔxS| n=CugO~m{0~0 ?[ ?_'Sp־ZLw ?=V<Z*4t_T1}G_T߶}kսwou/N!T1ֿ ms_=ʏS־j}f6_iLZ/Z?uTT}}Vۅ1]hqSOE? c*!n6?kUYϢOE?jJU2*[Ο*?m;tTSQwERc,{/}Ÿ:*͟*5SExUSQOESߡΟ<('aTSQ{;w_]ֽ~2\ROE?eS[_OE?滭cuVagusd[;TƟ_uU?O/~ ?cW}?cz;o]<??_}Owzx~ zu?_?~WÏ~?nu?_Qz?+gǭ>RLŸ?oW{ ׎PᏬ>,ğ?oo!ϟ?G6Q?EuC!gu\cxG¿OWn}'B;~m?C\jcwmX}@?ΟO>w&WuS!ӭUמ} \;#!\│24~o9(&WΟ?b^w]nCfv6ſ; _f}O[eVW^UWϬ^_NС¿&VY]VW>jPUM^:Ӿ~| !~o~Y-'k8I_[͟>z V+Z^Nֿ*__+uO׿kOvS*?m;t~C~?W/*[]n× ?WOS]+į\U?UO-ϊ??.&`Gov|8r?$?mT]?('sjW6*|]+.k"w*_=OχNc]ڨvWۿWL*Fy |{O~_iϝsguO!TucBF_o7׿*F_o[S!Ogun6*vWVYZ:2~mqV.W]o=q??mlYo?`/~w3? t_ (C? ?NJp ߙIeho;䜹:A's GlCE2? /wh>;o2? o/pm^Tƿ_ms~ݡ?ou US͝Jj~W?WU a[:??f##q_wp b~O&<|p  ֿUY2~wg+a=|,?8~5 V_̿Pei/cwgY2~~1'I?Ǥ^COm1xGykƟ?_~-eC@m1>U_U?_ϟ?f~o}2U?66mZm?_M?o?Xm!eC~1>U~?cԜ?- ?c?U/?fO'k6nz u[͗b.o5*~2~>**nz~QW}.QW!wy"*ϟE-<QW!w+&G yoo+?my?6 ,&G yoo+ߵo」<}|ߵvS2<=C"S?񷍿kV{[Ÿ {`hWa?Y/E8?=V?C?S_TY~|Xޛ?q\gU\@p'( BFfAvJ*ȲUm[mw;DLgm-\$zN2wzވ#TV}TdݪYTS.ju ?c6$ğwQo-h]?%ޯ? ?7?IRS_.=-Xʿ ƴbV[?%uT>{1G?N,XcOI?%O~Ս[1z/Οw?PU?ɸV[|tpUß:J* shTmnuSROIſ!{}]TŸ:J*SyuS=kG J)W~zmŭ\{O r |ό]{KOI?%C׍o+SR/uXmnG7:)wjW|]ͭJ)Ys_hW~4~sϷ?J}uAi^?}Ϸ+,F~_ ?Cz!W~>?C>J~_ ?C{ȕƟ?ٿ~_~??_??_??_??_??_??7oZ|;ߵ~[.iY~]?uo̗uol`OB~;v5 ̿qܵUSw5Gicn<<1TŸ:ǿ_nWo:f4VQ?տCcS`o w~c߿;!y]tcP;[`u鮻n_o4 ?}=6{*ߪT$%ppº $Z~k~Tʿ;~>- _}ׯU?>.-ۻ Vmv}ʿ ~ms~_{WCU GM[nۄ_CT˿ nGBݿSvibz_E&n.kz_O[&J߲?*WGߒ?*/*zF*տawCBW=*m-Bտ>ov؋-?sHZiY ÿn_?iNZ7^~¿~w\*Jſ~>v/D@%/-jMwVV*9lÿ7s;O+K<R?>q&?TgBR7?9_ ?9_ ?9N]~?9G|D?,!5?`qH(ßCjUßC*َb?90>j~sHſ~sHſ~BR#¿?ϟU?ßCUR i,.-0wqwqߕwyxY?]aW~]?JO:Eÿ?]?[ϛ*)_c7?)yvŏ:_'w?d>?C z~n~n~n~n~n~s}w~vq?99/?%܇g]/X\?琊Z?{Rt?9_ ?9߸9/!O!)_O r_>JSRon?֑w6<¿u/_?M?oKg#[Gu?֑w6<¿u/_nZۅw)XZ_uǿővə#?3Zş ?ǿۮjW> VZg?wg?hF=GB)u=^pgU?%"R7y[q_?]sy/nM7B)pv?O ~;o,~jw^OSgOSUS_wݷvTŸ~U?l`nmظei?Gbƶ3Φ7kk ΣYbl&v[=?Mc}QVϏgSikkqk-6l*~kS?ǿ4~aT?ɏgSi1x,؀ǿ4m-~+,O+<*?X Vϟۿ/sH<~-Z\x~O4]msg- ~oW??W~/.j ٿ~(j~?ٿW?ٿÏu?C z~n~n~n~n~n~s={r)v+lgh]?uoxfR}-~d{`C!Y{ \.0bş7ú 18j 0r=Lii⯛Q!]ǿo˭a뮻nB\ǿ7ORgwv=6X;8C:J_1s#!Z_)?wίdJOzN7B)0q[}!?ablzo^M~=BWǿo)įu~/*Xiqzo,}=f/_>wgnxe ~¿{AoUΏu~!_nC]{XWϿ:?y[>x]¯u~/GM[nUBWO}vsϐw-?_x={~O?BJͿk~?T{펁tt Tr鞻v+?T;> bwߜrui;~vsVc!i#T<?T^?_<;~]<{ r߿lV*JſwwwPZW~¿*Jտj~p VV*ߗ?/,^j:/ⅦSn~;?;X\x⽦{&,7?MfW-l:Oǿ ~c{=s]6??M /?//OLXQnlXY_,M,Z?Mfx.:7?M}vq v.-)׽{nSBRzRzRxT?琊g~sHſ~sHſ 琊O)W}?9_ ?9_~sHſ#[Gu?֑w6<¿u/_?M?oKg#[Gu?֑|~\,߅{,o_]~-~RijOko_yvAynw+8R*?1P UϿtuο*Ww CT?ͯUտ*__./[js-^IǏ2[݌|V8~ _j *!o|{ki/CwKoo8~ kkX?dU/C_?;74~q!r5#sgSrϑ?_??_~_?j!7}r^(?d?^??T?dO¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿ=َޛhT8܂RoȽ{n`?T{jh\?琊w_?琊yN~WRoD'琊CU'琊'琊!)7!K?oKg#[Gu?֑w6<¿u/_?M?oKg#[GuQ&|=GRZ-~`USY|-?ǿGoW ;~J?߰UM!ǿ(+0`CY^Ÿw_7;tWnB)/~TS.[jܕ~'ZWO ~;sUO ~/<G?%woF߽Jy{~2 ̿wtWqŸ~UcQXmuw?6,xb#ΦW7[;kqL[o.m_oF*~(>eų;w-of??׿O,ؿOzÏ9 _7λWnB~;O] uǠ巚*~;ÔλnF*7:ǿ?;+%:ΟRi5UkToF= :JOO?k~]s,Z_)Ư>UkQO4~_ţe~~nbV!~~]޷*Wǿlq}j{Ώ=m}Ώu~K;~?]nj _ζ}a[_=_vbz!~~o7]b!~~?j_v^1vqr7O+h8aqJ(/?xٯO+>= Z?_*JſN~¿63f Rzr߬| RoGyF(/?~I|-VV* SWZW}*Jſ^{Mw{aiP?ܫ_λՌο!?Tr8iÿ~wu~un?T>Us%r -^x} w6,m:9;~;?koZӌo/&_!-m{{U&<GzlX??_Ri?u]>'_, Mw ~&|+qTM5 ,xmyO ~sHſ\sBR{9_CjJ?T>¿?ϟύ_R_ζ]ue T?99/?%w9KRo\??99/?%m77_y_~;:ߗ௃&G%ǿ ~#} :ly_~;:ߗ௃?OHܻ@Kwmjq9[v,~Ri7;\iÿѺ =ծ-??/}xZ(U/5X|_vlf_U/./[j Uǿ5-w{-~ xft~3_?lUoǿf4n~_z_w84~q!r߸Y?d~rXҌ*!}_lFVǿ?u[~ ʿG(= ;(BI}vtW?{Z!Ͻj?Cz?CxށRɿ~pD?d޿^?UW?_??_??_??_??_??_sّs ~sHѿ?9R~sHѿE?9xs]r ~sHſn]P?T?O ~sHſajy~sHɿ'Em~sHͿßCSRon?֑w6<¿u/_?M?oKg#[Gu?֑w6<¿u/_nkGpgK}W-Z|+~kB)aH/Y|Ѻ Jy{А?SC8guǿ}K_JWS.{].kM:~ɯ_O ~h~u7ŸwQߒس6+ǿCkŸwͨUO ~RgjJ?%W?%//Ja`ţr* ~;J``NuQVyTz;-xei?Gdqmw, VϏgSi9* ~;J_8kbΦ7~3Q[=?M_Ŏr{ai?Gc1~w/Φc?^wYvTw?F[o7ei?GYmr\ӭI?uyKQ?_`?ߌ<ֿ(ğ:ǿ7C6r4k)~]Z7𻱳{ooX?Mfaw6,w/&q=޽ay6??Mga.&u//O.y_Ο%`ūx|&_Οe ;klXqtu5wϋ\xYϷ?%!E.韱P?T^??T?sTt T?9_ ?9߸QßC*^'琊!^ßC*=׎ '琊`Roܿ\ßC*ߗ:ߗ௃&G%ǿ ~#} :ly_~;:ߗ௃&G%ߣ1v>]_b-?c8oq_WO?S=ϡ>gySs?)Iu5`_Ŧ[PRi\r.-NXm'+8R*? 30r{Ukzd~[f/-nru妻*8R*Ÿ*_F[:O ?) _]^x/Z/?dl, T/CwᗚU/Cbj7 _?k ??r疖~5~_u9wro]k ?C?)ܻw'hGN ?CxT^? Su~_ ?CoEv^?ٿ~v~_ ?Cz?C z~n~n~n~n~n~s=wϏ琊ox`n7?9_琢'琢'琢'|/9/?%))Wq~sHſ#[Gu?֑w6<¿u/_?M?oKg#[Gu?֑|yJ!\[>%ğw__)/g_'rǞ=?]_N*)ܗڿ8bqPŸ~Uc?.;-c?ǿ4;ZſT:6cUwMvVݱt6[=?Mw?ǿ4nz~;J&?Mlq{Ж[ O+<*ǿ4q`qz~;J_競Φ;L=vPpCwπg8Kwq,o>JOp;zbU?tz":7^~?_ w3{s~пcp":R?Co?Cٿߟ;?dTW?UW?_??_??_??_??_??_g3,.Z<Ֆv9fqH3ZWO?y3|gUYZӭ_O?E!\?܌<['ߚUk=S*_ݿ_ΟRi./mC|/O?Y0>(? ~[~ }xw^¯u~/=ﲸbzoΫ-m~Ώ}[fqzoZ_jnWϿ:?ro_aqZVWϿ:?];y6>*Wǿ_?c=F=(-??K?{T4/f޽Ѻ R󯫟rg6E*Jſ~ C%/ŞU'%O+OYZ~3*9O+/O+%54P_q S'BJɿZ_q|i_<.?T~~O+KŦkx|&ŻM7G/&z3;Kǿ ~c9l>c[nYw6 ͨ͏g cg;` w6}͆'_,{MVce4~tޟ7WgrsUlXay8͏gr{keo =ץ?%!Ncp.:*RxhP?T6Ro^.'?ßC*URzRZR~sr_>JJ 77_y_~;:ߗ௃&G%ǿ ~#} :ly_~;:ߗ௃]*]b-voq[?PRi}#w_ne^]h]VOH3f_óת9mZL3ZWٿ7+8R*-?}kF?)Əះ_3:uZ;>U__˸T:\f+7gCV;SWVώm\sSIi-^/S=l -SOYe^Vi\CKOjuJOPPw{ោr#mTi\2w_n/Q/Ri'rI/O~]w&qNJ4~2۶yC{K$U?/CbCT?/Cw cJq)?Rz}\7MR? }E?%yի?dV~޿{jvPJO~_]C u۩OCJS¿?ϟw_$!O!5O!5WßC*_?9_ ?9лwe?a !ƿ"?.?T~&1?9_W;cE~sHſq<-X??T^??T޿7ޣ;'Z ?9_c~pP?T߿˪!O!~sHſ;]=A=|O ~;߼?U`YQǘ뮶}3~?%O~w6[<ܮUSROIſ!{}|UA77z[ZSR _USRO rZݎjG= J)_ΟXnj?^?%E>.~^k]Ÿ:J*Swq,o>J=!7O-P;7J?Cz!w~/?dک<?Co_Νw!J?dOCCٿq<޿{>;}¿,VYSWU*oۭXva~_r[~f!~~;Ϸ*տS?n{vi~P?C5xC¯Z?U߳]>nC_U  zkjTw|XvswX'į!W~;ߺ޷nuBտ*u|]V_=׽{vM߿-l/i_m v.ÿ 5ݳ_uig9rjFUI rxplYZ7ڌY~ Ro\?Oz/*Jſ~_i0_fޱei_ ?oW~¿~˟Uw{UV* [CUmֿ$KM祟[t~JIſnܿ$z{579T>?y[7^ſa{P*O"{{{6UgJ?\ūxlRn Wx Ǡ?]koul_$r={{{wJ*u3(~?ߟ)u0%D=_'l_%%D; 7nU-fw?8%~R۽纴?9P/]xYW~xRoU7W~W~7 ?9_ ?9_~sHſ; ?9_ ?9~ ~sHͿ;- ~sHſnQU?琊'|T?琊!:RzRx; !~sHͿ;E?9_~W-X7_*0~'y3yG}~wX:'oIa~}#2|W_Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?9`[*?dmvo_(?dj5'ٿ~}'ٿ ٿw@(?dOCB!w|P~^?U?dի?dK?oKg#[Gu?֑w6<¿u/_?M?oKg#[GuqI,.:RQ??9_{WCOXßC*yQ(ßC*UßCU_?T>?9_C!/ßCS¿?ϟ!_buNw&BZ_?tǖUuNX=?௃vz0 _s .6X;?௃v}|JZ_?tOwGZ_?-K;௃vTGۿ;~>,:W_oL-XUSROIſn~}1Pɿ Mt?fحOI?%O{~*)~~ _]-ڶ;4qTOI?%}vYyW*1v&J)W~~N?nZSRzz޷eSR yYiB)+ʿ  J)7_kOI?%O~pΟUic[7]/Ÿ:J*Uwq,o~u/_ǿïˏ_.?~]~ ?~u/_O=+ޗpImyr,Y;^?OY?ٿ~_ ?Ca>j~_CCtb!?n8?Co\??Co?dOUhY¯~?¯~῭burY_!??4 ?]Bwx?y6],v}3%¿blc¯ZމR**n[-fؿw,{¯WmG[c!?}6e~]W_vch7f!~ߐ=>jmw_VWUOʯ[fU]b{ zkG?uW_=Wu_?~oݿS?}'T_/%O#}4KW'BZ:ߗJY?#}4֑T?/]_,DO+[GRiX-'?oKݺo%[GRiDq{#}4[}[VV*=b8nqV'?~fK--^*u?9cqBO ~'ѫo4^ig޺*=v5S1(-)$r]#K`{5:z2{On2ߏ-6ݻcp":?%D! )$_x۫7O\?SIR3 WoKO ~'yݻok~`{/a?(:j!O!O~sHſßC*?t?+!/ßC*U?RonEiUuNnٱei~9O+ǿv[x4Z+?௃v /y;}5?௃v¿}>֌-O+ǿvwO+ǿnO ~^-O+ǿ>ぱei=G ϐ_1mѲ J)w_tgHU1j{,huSROIſ!D :6cUSROIſ~3`qc{V?%uTcS1#J)7?/*׶:)xOcbV?%uT?vЏ};@UNCwn~ Ο} J)1? UW]~Ÿ:J*U*} S¿?q =[7`SR W-XC-¿bzko88m6XlXcbzoWBտa6Qwji-l!įZ^?UwX*ǿe_>m7VW?*Q*տS-q*ǿe_?=ڻC_=7}v} _5xuVO~U~*տSftoWߗ_,/:ߗJb&U#}4ȿ ¿u/ƿǶ{oXVV{?oKU#}4~)=,c} ֑T_K?e ~;oK_ S-.X\ju?yuGYu{?%D3ٯ9~̦{M gJ*u?iq:S?%D'w;PVP[jOZQRvN_GElqsϷ/]z}I46;o]6Y|f_'ol_C W/a3-5uZ0T?/-VOKտ jFVտS-/}I_ 9oW~¿*W}ohxY_'aYV\ّBI_]޴x7J4CNX*0~'bj7MRP?7v{ךJ ۭۦT$?)m[c[?߈ߍoWq-mTi)YaY; !aq-j8'[r'?C[zG~pJ3~*S_^{_$U_ߝyS*?EE??ٿ+Fm?.e??DܫOǿvÏ'_wÏu'_ǿ~jc GPU?dV~^?_cPɿa/ʽR!W~~~xPٿ~_v:z`-!mv}?9P??9Gj~sHͿ 琚U'琊!7~sHſ~sHſqT??T>?9>~ۓBRo΄>?9'|1 ?9 OzJ(ßC*U_?T^??/C3BRz?9;!O~sHſßC*EŢ]Ѳ JE¢bQX-Eˏ ?]s~a]?%oɿ(fY?%&eǿ%~i~9?wm[|lO ~o|<܌|JE-~nz>6?-?%ܿlmnΟwQߐ' o)0~NI{nmnuSROIѿS^cZkOcŸ:J*3`Uo7u!:)_*[l\[|h˭OI?%~wlxTSRzTO*)_¿6YlX-ΟտŸUSROIſT[&J*U cZS7][*J)W~j?FaY?%uT^?U]*wTvY\KKwq,o>JOwngp?Cz!W~V~^?rw@(?dyP(?dA(~Em~_~_ S,.X\?ٿ'E?Cx?Cz!7<3qtŎhY?uo-5{ce?_52 eǛn:JOM{,vE*Z_gny{3ZWuV?'nc~x]{7~.o߰_kΟRi꾷W~[kTʿm{DO*~;o_쎎_uǼ'ZVW?-3*k-6Z<`U_=q{mW?-3*n[;->;̿ ?o)Ə%T'~vt/PUw7CѲ zkzTz->tۿ_CT˿ ֺ|lzkjTΏnzz!~]WwvsVe~_z,>czkv6~dQrSoO+lGa?gX?C4/?x׽7 Ro#gs Džÿq/?T>tiP?wOßz R!_V*UqtiлO~+=oVUpUV& RqI-. ~'o[g[`{9'/{̽ Խ %%߫ yBO ~'{~M~ӽ÷qRzRr?9xsD0ßCj}B4ßC* Վ?琊sޝH(ßC*ݎ~B)ßCUwh?T/!E*?_O r_>J*U?¿?ϟ|Twq,o_-USO4Oȝ<xOJOz K#Qc,uZ^?_fM~'?^Ѧ;iF*7{W߸~_ ?^VտC?)?Uտ~rX(/?x׍wUpT_ߟ\ ~_Z޿_Z~oٽos?ecߤUʿn NZ.0~'bŭMRr,:>ߺfqS ߮I~ozM6V_w:]w96;ۺ_^[veq ~sSm3u$o6[m^Vi?\?'>aT?2k=pPiQ1])wܟ?ٿ~%AI~_ ?Coܿ(OU?Co\???Co_??ٿkT?G.~_~nU!W~;^??{[ßC*=-!jW E%ßC*?!?-![~7}B =J?T/ O!~+?T޿W琊'琊7wßC*{oO?琊ߝr?eqF(ßCSRoJ*}>}YSѺ Jy߾_xi ,. ?]H5b3 J!\ØٍO3B){XaXfUS??]mZbtu~}Yeǿqv4pxűh]?%OX8`xŸwQc݃͘ESaꠏCLJSϟwQ_*g?>; J)7~U1`b:ͭJ)7VUwoAʿ gXlxX_=wwt 8PUyU_wcmBݿ{\!?ю| zoWw-m7n~o]_=CGg}¯W~Ҏޛ,nO_=;> gi_~_C{-ֶ}߻\ z_w*nmwX_=_kF=nwwzkvv= n9SBJѿr^gyy׽sL?/M7O+m1?JZW~OUCtύ嫒_7guY9?T^?_r}f[r*JͿ~=h]Z77{ԭH!њll%uZ5ۖ lA3¼H`Hgl /#xm3$!CxOa=gO:UVW{}nsZWՍ>-sy_?UW*U__7og{- ~g-kG>k~lUm5O3~_kq5ϜmJ;']asY>9Aqߜ3ϜGxUgN?9束5rRo:Xs ~g >L7h U9#}ONsRoڿۿ?~gwz{r#o֖T5i-U?𗐊5ױ~~KHſ3%~KHſ 𗐊'𗐊/!z}[Ҩ~KHſSRz?%tm_B*U_B*a]lqi?Z(_Bs¿?ϟe~/_%_eS(_B*Mg<T?ᇿT𗐊/!/_B*U_BsRfG8*1,~;-xţ}v;-n&Usϩ6ujݳѿ/&Uo5;C;FT?/^c{GT?[q?9Ə/տ Ng_o[+X^?_ ݤ\U__}VuW~¿:ƞ7 +]#/7{=#r?;=,[cqP(? ig->gT9Ɵn{mJAm~gdqIG[kqbeU_ސ-T#1~1/ӣ#JTYZ>wyW_r>c\7kgYOnYXz/SmY/_~7_Ͻ ~s&=g-BWmOCs +YΩ6~_[^bqZ?9Ɵ/^umx ?/k&첸FUߺoݿ~*~[z?-W~??xǿ _ǿ{u?}MM~[Ua{rPᇿeNOU߲c_eNOUÏu'ߡ~(ǿ~ǿ߲wk[\Oz/-/!_*/!gvO/!?/?𗐢'𗐚U/!KJᇿT^?ᇿڿ )Wq~KHſZᇿ/;{{-[cqP(_B*,8 /!r/^~ 6{mw/!N/j?_B*y{JᇿT;ݿxW(_B*wE~ 7>J_B*U_T^?ᇿT^?ᇿT^vA ŝ{,v[?]ĿɵA-^iqxNE𞗅ymxmŽws.yW7=b7xX?'2[{~{\[;NeWV^?ܕѻ{s0Us.sPa};*9o2Z_m!ğwz~;qOzmOR?maW?'2{U?{Oq.Z?'"z$Y(*}F.eGxŸ:N* -BW?՘tg:9ߴ~ X?U3 6:7yŸ:N*ڐ{lqd=>=I?'/*u_LsI/w9WQ?'SqPߘ6C===H?'ƹ]!^;_.^:9RbqYw9W}A߷O{NΟeIz\ZsRt-=|,^a=/ƟSm~om~;|%~[?ᇿe^wQ0j~[z^?ᇿeOoٿ~[!~pm[z/_l޳5~VMݼM(߲'_ ?-pS)߲'_~[z~;ɿZrV?ᇿu Q߲cU'_'%~r;+AWXmqOxŸǿ7f3=P-swyu}{o7<_?=И]Z{_MGswenBt~z5tM{a?]Fۡ㘻*/?k8~[/X/ujgs0~*U:ΟSm߿s~I?sz{;7u$I}/ z_OTOwg M5 K~ϑK?V_¿DGYoqzߴQ*isZ~տ }8:W_=czT?&U?VSq1=~VWX~NcGx¯w~|Xfqz_;6 j__}c~տoO#C\79¯saKXbK SWL_ѻ +ED0߽}¿ck,^ kpDŽ畊=~nrU畊/ﻨ?t-ÿW^7O+OW}UݡPW\0o+cɱUB5q7 +/n96U畊Wßq,~X^7^A/Ii,r~lON_ jᄀ|:jݷ_in-4'/%_ؿ#w珌`ɩ6}P_k'O8jǿ/=\}ylj? M߇GT?߿_k?9 2}Sm9e`?{YY<~fNd>-X[as¿-8ﲪ?I}Qm~gD>7*Sÿ^mgYkqřG߻^k_?QΩ6YZY??=g8f%t6?Ǟl}g~݈pi?|ܯ_?s_bqY k~nᇿez~rsPᇿe/߲'!ke~[oqP~G-Ïu?-&%oٿ^*z?-+=/v oٿS-߲'_ ?-W~M3o?+myPᇿe޿U߲'ߋ./-/!^`T-U?𗐊W??%_ ?%ߴ~*~KHſi|`ᇿT𗐊/!9W~KHſ~KHſ_B*^oqŽwU?%_&c>-/!`?\[uPᇿT^?ᇿT^?ᇿT;]?vP?𗐊O wo?Mo W~ wo] T?%_ ?%ߴ~_B*_bqi?Ywgū-^cHxNEsy k˿{1u>&ğwumdԖ8;t,V ~Bk=yWZoxNe5/W?'o sUs.su?'柯?|枽NUs0<[3NE{i]^.V-xuUs.sU9ߚ?]Ŀ/KzeeasRIſ_C$@%*ms,usRIſSMҰ]d];N*M終S1Da۩ΟnI(*ΙWH2N*MX?U_?'uT~g^Q?R:N*x # 9_C 4lwsRIſ/MEdc: N9W~9a9a;ΟU{c:6l3~ߓzsRoO}}G-1j~yx,oٿq ?-7R'U_e^tᇿe/߲oٿ[e?7eL\C6Y?-7]f[,n?ẗ́B^ ~[z맿G~'{ ?-7_n'_~[z?-W~?=?w߲mQ#_i&u*~,X?Y_eyt?.??ݨ<ѿ_ U_lnĿ/ ׂ{_M|B~,\?c7vW~;7zVΟSmuϾ[3XujWow7 uWϩ6~glG/uRϩ6ckW?osT/{\X_=c[tSȽ_u{;k_>X_=c߫&pPU]XCBW?b9[ q gDZxݍB}~R?cS.*K-D_=czO['N3{Z?=h5|V_=czeez!~տq8Jx{_c zߴ~T?Uݷܷ>uzE~`9=Y{|{z_?4.Ew.1j'+ܿ$q\#Wn +wc ׁ]-W~u~}7V^7r;+ڿq-Dž畊crhߎk|RozWß\ ¿c8~Rzj~W +%vz?q 畊ՏW+$joz/HykǯY ?I/XWKt_ {wӱXU9~տ;V?_ Ww97w׍`ɩ6~_ߛj=p{qONK}uU??#rgÿ77*W~_[?ᯧkeq{-?{9Y<~fN'$۠6?kqMLJTοz~q#o=a;۠6?sg[7 r0l j?RVYk2k5Y??ޏU?T?ߧ-*¿^~?vDje^5~60~g?o8sENms|I}"smfj=LmU߲c>_/oտiLCmoͿ޿(U_eᇿeN/j~[gᇿekýc](߲+?w~[?~[a=eOoٿ3ރ6Y?_Coٿ~[z?-W}~[o[~𗐚U'e~/௟?'ƹBBRjRoϔ𗐚?𗐊w~KHſ 𗐊~q~~JᇿTku{ɽk ~KHſiW_B*U_B*U_T{{*O/!z>kqPᇿT{xRtV?ᇿTH%_B*U?RzRof\|m[|?GB9j7[o&>B95߅-_kh5sǿvY|ŷ.ğY|7X|u\?'o{33z!ǿk˓%ՖkyW?'{?]yo ~hŸw7Us.X;o=P[s_'ğ7r NeHq*rvcsRozV_QNgZhqN97޻~r.6iF*9_1`qQYvT;}[ taUsRIſWkWd_|kk?:9__sRzTO߾*9w*׏/UsRIſW}ȏcgs_Οcr]$*W?nf;X*9_0o4ߵsY~`9b^4Ï'_oɿG~sW'X?_B{G'_b~[oZ?ᇿeƹCLhmU_eOoٿiR?-W~U߲cw~[z;sSj~[z*OoٿiL\,~[o;j~[tT_e/߲׮us}?foH?=]?[t!?ma:uRϩ6~on?6!_9Ư>c7uX:N񫏿ݴVΟSmG ۠yWHw㯏;a9*cs_M{o&U?T_߇[ӗ= 7 2\3,w^zW}Y?_j?W?s{\_=WM/ ;DS-W+U*gYl8?|&>VWX{]} gqB y^X_=-WQbqZxI[VWX(O\¯[gU=Y_=c {o?**Uc|8M_=co̽jT>3y¯1W 936  `'do&k(+k7J_ =!y?~QU畊wo_j{-<R}K *Jſ?w&W? RogT)Hſgv]asY<}PIſw~?=}kFZ?sYkv709,z 0~ig~/9,;d[F0s5ϜM ~go"y9v~8'^s{#?Ϣyg1#J ~gQyNgWkW:ܷTT빏`(/!^5tg0T?%ߘkET^?ᇿT޿ w~5U?%X?UᇿT{E?ЫCū~KHſՎTX?ᇿT7/!+,xUinnx=#r?k>t}轨j;Ͽ >?9?U/?C&~VZ|jg~?^}`ɩ6~_V#rwW=~VW~¿ 3G7x`ɩ6~ ?_CWmYnw`ɩ6=Ǟ&*cz X^no_(? #OY'-Uο{6oq^*nY8Db}Um3w7O ~s,β8t3-̿5/?^~w8?Ω6#{? }.|~Hп_K{=je~xWR??'g~8o?[Y=2\??|Nx>{$bmk/kM'__$Ͳ\:߲'_~[!_[=b'oٿ^;??_]⺁qpPᇿe~[o;E~i]kpۢ6\ᇿez WZ?~\@m?ߚ_?-p?J~_?=~[?Oǿ~{?-wWx҂Rg]?K ~KHſiE~ W~ 7?𗐊c,5_Z_B*U_T޿ 7D'𗐊'𗐊crC9?%𗐊X?> )`ᇿ/_/!|?𗐊? /!9We~/_C/!rOw[B9_k#~N}mN醿-+X?'o ޷YG,Ts._q@=?=f_?]t9O8X[ݻC?][sn?]ߚ[u??]+[{R{Ns0\vchǿ-?n!ǿ75_d*Us0X[;NE{M?zGs| ö:/K~bs-.ΟT(l'^'Z N9W~_sR ,o9E-*>ޞ*9RŞw[OJ?'uT{m!޻&~:zmcs¿?Ș6m=ɒH?'N^_׶Z<b9Ɵuaܔۅ?-c?- ?-7_|_^?ᇿeU߲ᇿekׇX?ᇿe/߲'[Iu\k~[oz̓ 6\ᇿe1OތϽaƟ?_{>~[o:X?ᇿeOoٿSm~[zߩOoٿ~[oZ?z~[oz͗b{u?\ a ϿO?o?^?.yW?[m?f#o |*cs]^;o??C-~ X/ujs.߫6~}[73 n.z^s*G:.~!g=X;} X;yeWU7cſ?e?\?gU72r{|?=N_=ɟSmw>c¯[gU>l!~:}yKnYj B\mBJſ׉%ngoW*M筂5?~׻8!yKi~~._{]BJſZ ? E*JͿ7/?}}1J[;Ro!~sP_ z+k'S5o&WqBJſiWߏ+OW^W~_O[3R;+kzcO(?sOYg:T_asYzmO;597~}^*N?>xدt=s{+9,%<뀞;s5Ϝy=?'Ec" ga=~ػSasY97f}O[n X;@ ~g+Ǟ7;:wϢwu/9,k{kIjN_B*H| x JᇿT;]?6P?𗐊=׆(O/!O/!N/>r ~r 8?%_C/!/_B*U?Ro׆E~ ~,X?ᇿT;v\KP%_BJQ\?~KHſ~bR?%_O )W_BjU_T>?%௟?'? 7k ?%_ ?%u齘k5xţY#0#r]oÿ =#rEx[ۿSm/}gq~j_ jM7wXM,U_ֿX;ݿOkՏ_ ?JURj#~K79VWCqv[GT?/_tONkU?5>XUW?, ?3Oǿ[l8>{?e纉og`q?e- o8[2g;_Ue_?y%ďo?gxy_[ϻo}n;!~ YяgŽo^3^?-W~M^~\+Ooٿ^;'^;PmU_e9{?-7_~Mx~[o/_ n]+?&wSdO w[7!yvB5>w.wߡ?/M}?u|B^_1;|?Tֿ~ǻ1 Ro:W^o{-?TsSȽ=?ܿST畊o'rP_ wdK^W;[]Tn4?ݘ?ճ/tu_µ_}y~1iuJ_WO>uJ_W? yuJߍ ~y~X,Gofe)$eYſKU~vwcT~}st?xg>T7Kߍ ~Sw[ͩrJkwkN_B*^r^ /!z"Z0 k5!^;ouT?%_~KHſ 𗐊_:U?8z W~ WO/!O/!/_B*MgRRoiu ~G%7&_Dw_?ݘq]wcEǑu qߍ ~G%7&_Dw_iƵ kG:=xZ<ÿ*YOߥŸNykHIrP_ L{-~GT!^T?_ {anvON>&FT?/D7`ɩ6~_K*co?P__3#rgcugGT?/?X?Mk_[?-,Wǿa1*}kg/ďosݤL9ǿI-B ;~ _[^;gU/-o<t?eg;_UcSd>X?Bׯ|j\yݽV6'_{I<`qPᇿek&(Ooٿi8?-c׫߲M ?-W~U _~??_??_??_??_??_??ڕWY'׃-TybgZ *Ry]*Ro<ٙ& 7 /_B*5IE(_B*WO/!KJᇿT;=V?ᇿT;]?ᇿT~FR;/!_q]wcEǑu qߍ ~G%7&_Dw_?ݘq]wcEǑu q^,8ח?'?]Ŀ5Z춸;0&wwc ݰ6۶x};z~1N.%wwc?y89l+y?]Do - L^QmX =SsGߍ69nL׷q[q .I~1?}{Mw=k}1k?__@?\=/ƟSmtᇿerZ?ᇿeOoٿK\˨6Y/oѿOX?-7V_e/߲Z?-7NU߲k|_¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿ^בk)Oxn._~[?\CRߟ?E{vmxOz-vmq L*~3?T:~Tο^;wmPnU?bnoU:ΟSmG_#Egw'b#w/OR:Nѿ?M7oݿiIs??Y ~K['XGujkqAx/WϿ:?]/R{.WϿ:?]/ݿ$UΏ˿DGYoqzzU0WX_=_ߖΏiycΏEp,}~x¯u~^~{3,N8bzzysc~_ߖΟ_/w~G/-WH7!?CBJſ~a`P_ /XR7CB Av?TuO>wcT5;z_Wx?~1*?vz?EvrMi~1*y >O{^_;^k^ *U󺇼/O)\~r>4?ݘ?߳usya/O!\~Io/;k,vw$?'/! OM(_B*Z ?%?𗐊wIT?𗐊'𗐊'𗐊P;F*RozN~ _5TRo~?9Ɵ_+G~*WK߇> U'&^ju]/',>M?>'_۟&= XUU'-7% r>޺? XC(nտߺ _?<'_p߿R'\ Xj{5x,R(? 3 ?.s}U KAm~gb5~)]V$֘?cq\Q-NIoXCk?? yX\`cU9Q?~5gnYO'=p<84-Xa4 ?*Sÿ^- ?{je#φ>ino:__ag#Sq5#1- q5y/g^8s=` ~6?/^{,Y췸'ls^?ᇿeP?ۤ6#oտ~[tT_eOoٿ~[#B~~[{-5'_'__o~X7?C%oٿxG}?-7Ez,T.߲㱏#c?-W{[]?ᇿezO~[z^?ᇿeMߥEߚoٿ7[i wW?7c! w~~KHſ3P?𗐊v`qS`*RoQ_B*U_T;]?ᇿT{]ҿ(O/!ƹC /!/_B*U?R܏Yo?𗐊_Okm/!%:k, /!9L U?𗐊ՏT;]?1JᇿTQ?R8X?ᇿTOC/!O/!O/!O/!c~X gB9񯯛ﻼ H7؟P?'o /Y|~s0rs.<B9"p/?ma}O{oP ~|=x Ԗ=}B993G/_?'o_sRoW*Ye\özsR->tgwN=v$^?'uT^?Uiga۩Ο~9a6qΟUs N9_׹ZÿN+~C\Dm>Ɵ?kvƟ?_7ܧj~[o_T'ؿU_e~ǿ޿M_.߲wetᇿeOoٿ CB[yo j~[@Ƚb?-b?-@=?-W~_ᇿeOoٿ߲wkw:F/0~-_?E5Pj~~pw|@?k{| ߸wm ~u|7yŸǿ7xC_ѳ ?~ n.߫K;o{gUswgbWHǟ߱?ǹgo:?[ujW_*;;U?_}q܍/ uRϩ6Yk> ,߱?$?K?_?Uϩ6X׺1H_rKW mZ9Zl#]{C?~2 {/WX박T8~[߂IK[N~z_I{Nxϗ U*MIc?VC]1% z_j?{O8l!~տ ܷ* 6Y/tC{ų~8¯_knd?/-W OY,>i+BJſqޛB}fi/wC^~rmv!W~uMBJſ/*-Wn{ůvwG^7.7'Ru/ >VW*ӷAJ ݿOtկ +¿7CDZ7畊㽧n__ ~sY-?T^?_ ݤH7U畊_ +c2oVW*UUW*MuV?"_C׍g~0~-09,:9d[ͩ+97V\?sYtu~sNkhm ~gEd^97:ngN?N?Z?sY[?| P#9-JjN?Z09,Jw=qN*M{+9,kys*9,ce?=oOU}r*R;mV?ᇿT~~KHſ_B*U.#~_Q{Wʧ-~-~7¿t_Sǯ_=Eݫ-~|y_ߏ8{y?D7ÿǯ_=Eq<~uǿ/N7ѻ_VϿ ̟_Wǯ "qnw/m%qُokW珽Y'jyCX*]??>w=Q#Sk+nYO8 -[{s8T'OTο{L_c?? viZ\^˩6~_[k}ˑ?}N>k? Sÿ^s-.a=G_EWÿ^G#JT~n8r5Y?k ~n~n~n~n~n~Kwv}-~[I?(oٿ^?o]^;]?X+oٿiT_eOoٿ^;b?-W~q?ky;{ ?-W}~[M~[oiu ~G%7&_Dw_?ݘq]wcEǑu qߍ ~G%7&_Dw_ixUxM/!zxeȿ_Z L(_B*M?%_ ?%~KHſ_B*U_B*U_Tar: W~KHſӹW_B*-Ϳ,}OXbx!y8Z|S ?!??n#sy8OO_U!y8 ?v}^%y8 _W);/u+G>o??_W)cucg )Cp gH^?~;UJſwkwZoq^'*mq/ UsRIſ}SPU}igYΟoc,8 svb{?VI?' c]~zʿ oMu^?'uT;wN_?Ο cG~iLX\h-CYß:N*U*q]v*9_E,N8xSzsR8X?U{Y?I?'vSjLgCnUsRIſ  N97=}}_ߘ6mB79,ß:N*U.߫~ǿïˏ_.?~]~ ?~u/_ǿïˏ_.ο5>\ᇿelBxRᇿe'.~[oz ?-7=>V?ᇿe?=?W7߲U|-> ?!įHZ|¯h7: [cOY,>i+Bw~'s:?Ex2+}cv?e~ugq??]Wƿ¯__[wOC?~Jk,."ֺwa +;Knch/B^q]?O+;Kk7ñ}!yǑu6~oWq,f ݤK!ytzL5xPIrR"_į>3Ftݱx?'E~_8'N?|K_\5%#I}O빗~gQf.l7Z|ś+nYO8Lgs_c-LJnÛ*,~sw/j{b ?zߚQ_/o ~ ,vX\>~+kmPsWaP}z׏U~__9_??_??_??_??_??_ ߴ.-Xǟ?_>XO(߲obO?K^?ᇿeNOϽR?-wO=?-W~U_eOoٿ~[z[]EǑu qߍ ~G%7&_Dw_?ݘq]wcEǑu qߍ ~G%_ڿ`!V?𗐊^ko @%_B*}aW ~KHſ9L* WRoڿ!*Row?yX?%_6P?𗐊E~ WRtT?RozN~ 4 OYs%y8 YV7 +ŧ_K .c߰xxi!y8 _W)$~?vGaVWzpx !y8]?~~¿K i?>_/%|Ň* qAR*^cn{,:WȘ. N9~WȽ _γjqŹN97 aܽ8xط͎^?'uT7{-ʿ oLZl9l?sRa a;_߷ͥUsRIſ30*W?ݘ/' N9wz0_fsRZŸUsRIſT9['N*vSUsRIſS~6.ʟ:N*޻< \Ÿ:N*U.UcGao.?~]~ ?~u/_ǿïˏ_.?~]~ ?9׌wگsC~[t۠6Y?t@ ?-W~M{ ?-kgz ?-W}~[oZ?'_~[oz~[o?-įwo_??e__[WG~?Z|K?e~ҿ.įO܏wso_ݿ?2c82 +cx>I_}.ǟ +;Kǹg}}-%߻L7qw5#-u?LkFNplrR_,zWUcgYcqz?G}뾦|?*:-vK#tk= ~gQ\/~X?bO 6-{dunA$ I`1$R2l%J`19AYx޼ز=*9e)[>sZg}~|Ud׽w} ~$ԙx殺A~"iϼ/I}}1K./7f[p.*^?/ ~8>EﺯmǿHku{EmpǿH{cؓ=3ǿHskq.*>?IF{mtߡI诏 ~~/᧿I诏 ~~/᧿I诏 ~~/mׇ_|/?DTw[eOJկv/W?~CDqoV~?DT?!ߥϷ ?!ߋK/mJ޾"*~?!OJUq.F\/(_}f]?:/ߧ?~<t~_%?3ۯ?y_}?w濶fcj/~ο9uOs?__kqh{4<?E?5כCs}"4<7?/ߝ~A6{l8Ca~|,Op~7lKh5\/)Oۜq.cϿObk]Ua~?>렿|\Oxmqz\,ϽGmNsZGBsZ/96#oKnp.c3)76lNel~⟲͉9㠿*~?Ǐ?~㧿Ǐ?~㧿Ǐ?~omV{?>7ټ%]hOqoNo?~S?)W~ďU~?vJO^S~?_r{OOߡI诏 ~~/᧿I诏 ~~/᧿I诏 ~~/yQm :Ǐ SY8De>)~ďA ~CDNsBǏWQoٞc?~CD "*^3۳;Qo{vy,_S~?DT3_lb?m>o%!J߇6/響 _i&4 /|u_U+ ~~ۤ=Ư8k:E!J߇6Y93?T/ߒ᧿M3/_ydOtgT+ ~~ۄ/Jl6o={UGtc.\Tzldt;Mh*:hf́EݟJߔ%_ok`.\ToLA{,N3Kݑn.\T~TLkuǝ \ O{Q{=tsQo9_{"sQ1Knwp{=tsQk?wUEK_ko}w\wc;ϝUsQStͦ~EݟJUq.{\ ??ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u+͡6 ?)wzO̓A۽~ kyǏj_5T~~]z~y1?_?rO ~SOO_|6͟ ?ogMܱ_~at6>?o}M?5=_rս৿%?5cp<~_rս৿sߘ?s?zsVt_91_{/_Sw/៊?}K?G26n*s6ټlc7909f@*~{Skl3}W߿1վw9j# ﵿO7?Xů_=6"17Ͽckկ*ccw}б=Ͽllοc U|תWټ.{*OǹW?UݗU_UFMҟWk ?͏lB/6?5#b=5U+keluHP~`s_7_;P?g64=V4kelxyq|_@$kel:~]O@5_+ ZfvߠC93>_+c׍3/w~Ɵ'?E;1̟G_ן}Amy?I|}砿g7kh_sl M(lM=㠿 u4LC::"p|ɩ6wN3Io~ޟ ~dWz| u$f\?sĎx=vyGG\_$?=㠿o^9rx=kg^{|l?E>~ޓ?HEoIKa~vw?E1Ͻ=}p\_$^ϿCk?_>_/ ZO?_>_/ ZO?_>_/ Z?t`{ch~3*Ǐ7~@Q?~CDK?!_'~CDmu?D?!_?w TQ*>Q?!_yn$Gߗu5_+gMq?:/Ϛtg6 OFKߋKM6C69/{Xů%w?:/ 6B^ڳ_} OcW3?̚?GW?_l~`/|g]gQȯ\e{{mc>ǿ?5(B26O瞴y:36ύp~wٗ~N|h^G??/-6>ߚ~o.cxи~?/?ns|}l9S?>W>opxgZ6ҟelk}}ghc~^"?מs?bs"ac926پn^;?0?smc~p?~9=x*?cm>sSs/)U??~Ww_Ou??~Ww_Ou??~Ww_?Dd{[m~/ϟ?~S[;{ͽ6 ?)7^?N;q=6 ?){~y[;?.=]?r^?/O?)Wyr/OߡI诏 ~~/᧿I诏 ~~/᧿I诏 ~~/ewۼAg>f{4O<#J^GΧ;Q;/6OI"*__?"*U?!Ǘ~*=Qr J~*_"*ڿZ͟| 6_O|qYſ᧿MdY?ILͷl7?vOtϿ3_Cs_Ær- ~~$>~nU+ ~~ۤ7O~5?Iȿ᧿M>?Κ3+ ~~ۄ/Jh{6ln{Ag*cf:n6'*\-K~}BWZlcs(sQx|s;?a36k٠EݟJ*~TKW{vSE\H_ۏUsQo{|[{|sUy7>vms ^*\wE?nӡ9^;V.\T~~Qs??o㝏UsQ[=]ڿМ.\T>wvPٿd?ZEݟJկ*t`f3_sQ鯊?t?ϗ\ {??ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u=sǏ/CǏU~?_?r۽?)7,}~~U??_?r/OO_'~SO|;6_ͷE#_5Y*W৿%_scw?]ȯ~OKcϚߴ_c6~lXZů~OK_59⟢_3gT>wϼm#W৿{O9_ο8f6o $c⏿`s_}^^myTh*f怐_}^۽~velEcwDpq!7fyDh*`sͦuϫﵿ%]6_} @м~؜+W߿vn|zӟSk_!X;VwS⏯of>!w*5c/M_ů]C? Ys(W߿7ΚC/_+kelxnJ^dw_]H^m7_;P?>gfOhy*JC}VK29nK 9wޜ7rWc26ߵgu"/Ww/]_]w}5`J3#mv]e/Ϛuukp뾏 ~$=dg8;0τamǿHn 9t]_ 'pǿHb7 z"u$mݏ ~=3o<࠿{/3 ~dohx9\?sl >Ͽ*\_$^ϿK3\_$#;筎? ~$~v{mt-篮I ?Ck?_>_/ ZO?_>_/ ZO?_>_/ Z?td{[gϒ?!߸"*^?? Jկ.~怒J{xďW?!{įƳݡ*_"*v|χl?~CDޙ J"*UǹեXjV?Π5B~_%wݘL㛅W/[w/l~ W?_csW9/u7VOs?_]~槳<|_}?__ugsǏfc'k`͟stώp~~X!~؎!?|o#"[_sS6??~Y#6'el~ο쏯4a~l?w//{_{2W~<'Cds3w/+ǿsm3ҟel|+rU9~Ww_Ou??~Ww_Ou??~Ww_Ou}>iJ_c36I6ߘp/Ϛ3p|YsOįK`J߇6lU\+ ~~ۄ/ ߒ᧿Mbm-_i&ߟ5Lȿy"S6WUGt"Glۜ :\i36ϥyͻj6l6)f*\w3BWۤ|(} >;F.\T{U)7ӺtucgEOJοcEOϦ6ڿ{lms sQx|0Ys_.\TLk{/˟esQE=,p?}#*_T6jϼ]6?u.*}dϨ߃*\C{Q~ntsQ鯊?E6l ~S_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_ןs͇m>j0>nOL^u3^C?f ?uď@>?Ƴ?)W0v~HhOqK?r{BǏ]g^ÏU?)W#߷ o|τM#ߝ5ͷgMUool?ogc迱__~,W৿%9볦?go_?{_~Ԟ{Gi?-񷝍g`?-c_׀U{߿O瞱y.Mc?js"*~{oQPMV6l6!{|uTǯmNN_}^>g8_͆|6mﵿͱ*~{o{|Wм~;~.yNKůU~3ICa_}^=Q~fo_7 ﵿO?ӟ+yBW^Ukկ*93_}^~BpoﵿCk*C=(7Gƿ_s>>ؒk*fOh^۞{*{w_]OgsnBs_/(Ww,7>_+cݚ>_i诏wpz%~_i诏uμm7_;P?uSuR4kel5ߗuοo͇m>dǿH>v=gGύ ~$>fؓCmOE]??>"]ٚk;_?s64}2}J833o{n3TοEC?E=r?E[|~?E9dgҹW ~$rSw{ǿH ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇>mjlC=*Ǐ7}}'J:"*\QS>9 ~CDOJ ?DT=a>Fc|\"*U~?DT}NQosA;J/\lsJh]lnc|{n/HڿSR?OuOc/3ˍwٯ7 OV担K3oB~_uOYXů/:ڔW?_g?O>eO|ǿ?Ϛ׭~926}"#?/⏏o Y@k{{~<)mm^G?3?/?lsth~A;?s|X/~=sn}q~?~ο>М}OsO۽~?}}?sWo 3[WC?sWs㧿Ǐ?~㧿Ǐ?~㧿Ǐ?!tx66 }9wvv?>Otxďϧ},46Oc'~S?)w+_r/O_r ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇~> O|6 :Ǐ({Qo{LW?DTcZ?DT?!_'~CD?!ߏ_?"*?!ߏuTQ?!ߏ_?"*ڿZwm~`uoϚݨW>fMgYW>Ik߯|cFr6B?mY_Z_i&sVߟ?Wȿ᧿M8_gygבRȿ᧿Mcf4}o߸xK߇6_k>e{4ټ3_ſ?.6Xş?^=k|gڿYo9V*\}%te7}EݟJyBWu7~MAǟ?>-~T0_.\TLg/*9 K?u.*U?۳oMٷzEݟJկ*x)4A0?*sQ_UUsQocushû?u.*UP0-8~EݟJ~*=Q_ cm|?u.*Uǹhs͕tǏ ~ǯ맿/~~ǯ맿/~~ǯ맿s?3~y aށ?~S?)W۽~?) O_'~S//?)?v/q/OO/JO_ߦ_W7w";+!_ݯ~Qoh6/!_Kgf_Wf?߳EWW~W~~Q?m/<<~wg͵6Nm_ݯ~Qοot|Wȯ~W>w_~(W?]z~\mLhC`c?*6ٗ~o~7H+fn!{lH_Oﵿ?JOO_{7 ﵿ]?-1!{T<7lcYXůmP|Pş;ﹿO"1ﵿT|Pſ?yPXů]P~㙷}wV]B~{* 34gB~{og}sߡuׅxxٰ!7_el-v}nP[ w~%Z~/W(ݿNy#6[O_n=~1ԁ-龆P=~Gәqoo-?>Ώ~/}t_$gF{(ˬy_]a3qo?MszC,oq.*g{} ~}ԍ; ɿ4~`Ϛ>k~>1^?slJc?ڳ_U??EW[W ~$f_g;3o똯ǿH-lN]>E_?EhCÛwNF\_$k̻/u䘃KB}V~$k?KB}V~$k?KB}V~$k!^t?DT"*^?۟T?~CDOJ/v.W~CD?DT?DTFQ ~CD*8m.\k?~S_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_ןo^^H!sǏfChMq'm>s#"_Kwv6yx|a?EnMfK8sX_C?a)ώp~؜H|0/#"٬ 7Y/_]=y#\~οǿ?~|<;Z|mwc~^iAUuy5xsh#9⟲=Iտ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐg?eIO|Vhl^HA ?!ߏ5~FhvEQo~~<]_?"*U~?DT!~CD˽~9?DT~~WQZ$k?KB}V~$k?KB}V~$k?KB}Vs\yaGUgtvӝUsQ={;C6_ſL{llms sQcBW 6G*\w} uf`&جٲ߱sQ_󋊟8W;N.*U?d?u.*}GoEou6 DݟJ{W~矗EݟJկ*xe?4;\Ty{|Bh*x[ sχ;sQxl?T~m֞f_otsQ鯊?E6B|Հ4?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O}YӼ=a|r=n8ټShOݝy{O-s[?~SoP>?_?r՟?ďU~?_r_ÏU~?_?rUǏ?~㧿Ǐ?~㧿Ǐ?~w}lUglnslXůmwtg _ſf_w;lkмJ{;<+:*~{SſfsgwﵿO?*ﵿcs(4w9&W߿?0?M;ﵿ`&_/ ZO?_>_/ ZO?_>C3qe󞠳 f)4?3Ka}O.*~$d_ƮмA;o}wpǿHvJ㤿*\_$/etAU/ǿH{p};~=Ϟοψ\?sܝ:-4KeC?EwsȿfǿHgr~?EҞyc[#u8 Z$k?KB}V~$k?KB}V~$k?KB}V=PڟÎ?OJ?~Cr?~.*o9Q+^?"J]GQo{?! ~CDOJկ.~*=Q?!_6m.\ kOO_u?~]?ŏ_O_u?~]?ŏ_O_u?~]Ͻ6Gǿ6dA_Hap~cs }>s}o_?ǿn}6lv?|?ey 6wٜN_|\ϿFk]U p.cϿݏ?)?/~}ο{m:EZ=ǂ"*͇|BǏ}kh{"sQ 1"JU~?DQ?D>iGT?~CDO\?!_"*_+᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~{}~+6VkLϼoHv_}^۽~!*]?Uy y }.}W߿.Sw>~М ﵿågG]m_=XůUNſ.6ׅmB~{Z$k?KB}V~$k?KB}V~$k?KB}VߡsǿHϋO??>u'&v73#./';8J~"/u#B|?CNk ~}ڏsQ?6t_$^ϿO3Iмwўм˜W ~W ~{']zsp?_u{I/ǿH3ԑùW\_$^ϿCk?_>_/ ZO?_>_/ ZO?_>_/ Z?ta>lgJTQAr7^?ﵹ?]?"*U~?DT*ǏWOrįQ.kg'~CDU_~/co`n6[lv_~/csKϿhJdlv 㝏U+ ~[9NOel~ο~?Nm_iߒw~/c3tܐn׽_s%+6W?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_OߺWe_}~[m!W߿_56ۼ"}W߿v*~8οOۜ9osY!?-yL1_᧿VB~o]7} ch{>~o)!d8~]g`f6ҟ!W߿Vk?_>_/ ZO?_>_/ ZO?_>_/ ZO?nώ ܝzfWO?nb7[?}"udh?9{K!qg_] .-gKe?}5Swcg~ο ߚ!4a2cHſ{y_o_?tμ3Jeox>-?_>_/ ZO?_>_/ ZO?_>_/ ZO?_>_/ ZO?_>_/ ZO?_>_/ ]]6m.\㟆ǯ맿/~~ǯ맿/~~ǯ맿/~~{촹fK*~ϟ9hs椐⟲?~Q=Gyl~KOOٿf0? _Sg߳9HGOOٿ7̟f⟺uB~~^_0lsLOOٿ{ }⧿?~;Ou??~Ww_Ou??~Ww_Ou??~Ww_Ou??~Ww_Ou??~Ww_Ou??~KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?헱mp+lܖ>V4oI揷a6{mt~ttFot[j u刺26y .g;{?헱9NOelx;bs͙0z_iߒw~/c4_;M?헱tw>NoͿuw[,_ij\ls5??ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u6_}~[XB~o]m6/yͭaXůu?n'}n|MV_O9⧿_kۜ O9Ny~[{{Pȯu?%4޻l\HumN'W_%W߿o͹wz6;Wo_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}oM|}F2c;Q=9QO?nb>~K}O?n}͝6y=3PWȡԑFJHeg-_k_zSH nّCoͱt=gs44}r(W8_=ykh?g-߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_8/\bs5? ?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u{lfa!??e6w؜9ks⟲DVcϷ/)_e6ol 䧿ywR!??e0МU:dJׅ,⧿ߗ}ڻP*~5/>V_SWs?㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇ ~%>_+}o_c߇6鶹Aǿ৿%GlN*6{?헱coۯ'su刺26`-v*?-6`suNOel}^Ü'᧿26{5Xſ৿%=;)?헱ۯ7> Oel}ao{=IoͿo=ޜn=׽_s%+6W?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_Oߺl^nj[ӿ{_}~[׿͙{N um.is64__!W߿oJgf^!l^ks{hVȯu?qsB~o]S3_}~wWߺk+x?qt)!= *~o]6ll)W߿Vk?_>_/ ZO?_>_/ ZO?_>_/ ZO?nnH8/O?nN.;7{skGk⟲?wc?s_sc??eaB~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~ZKB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?헱mpmrkXſ৿%GlN*6{?헱cWۯ'su刺26vlmf.Oel~ο~4_揷y *?-9NOel~ο~o]NqOel~^M6[CZs%+6W?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_Oߺ 6wڼ*~o]a6m9'W߿bs]`N6'W߿ ;_OLB~o]6_.!w\?_Huy#6;%W߿LV*W߿3м._V__I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/᧿7+ϏR~~_ˌ !ؾԑc@ng=r(Wrm~'4c<~/wZ0A?K/uW; /Z}|,u׏ 돯9::B 뿵smW_??KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$k?KB}V~$wuq7u?i/~~ǯ맿/~~ǯ맿/~~ǯ맿h5}~fB~韏K瘐⟲?~Q=6*~6wؼ6w /);_Ss_ߞ6ϯ!??e?_?u7+I@XOO~wǏ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~㧿Ǐ?~[+᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/ct[%}_iߒͿnC6mv9Fon6ٜLm׽6lfͦt[W$c_{_g_~/cI ο~4__zOel6io3.R4oI?#~yOel6ؒxw*~?E6l\]?~c_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_OfnMumNڜ9ds朐_}~[өwu7lefS*~o]||͝9 uxO='WߺSa0Zůu?_ofg~;x?wXh>~_}~[ߞyk{7΄5`0?ސ![+᧿I诏 ~~/᧿I诏 ~~/᧿I诏 ~~/w!4=4Ro~yc+__kK(3P?w+l^Px53P?ve[h?м_k9rYKﯹ`sWF<+5Zflxm_ܦ AtwѼ]l'qNXq..ߟn'OϏ?3.F~s/[Z4&OϏw|\`?.MԚJw:ƿV?ߙw)t:3+RZt;gVߥ1Jwά׿K9ckYrN*;ҿ_Eu+-Y[f&e3#Xa3+_{$⟻'hwά?cX3h.F~;gV֋fcIwάlLwf-(;gšIwάFי[;ҿ_E e1A󷖿wfk~eﭼ_;D?tJa?l֢ALY߯θo[-wά׿K9ckYrN*;_.UOwf];_Jw:ƿV?ߙw)t:3+RZt;gVߥ1Jwά׿K9ckYrN*;_.UOwf];_I}/b@燿W'_w;r?_\OW'_w UM`;X7Q`: 'LW.$6;O~'^m;/>u`'';Ϝ^K??'|8_ q;~'?~\K;~'?yX᮵??6 q?NW'_w;r?_\OW'_w;r?_\OW'_w;r?_\O[׿K9ckYrN*;_.UOwf];_Jw:ƿV?ߙw)t:3+RZt;gVߥ1Jwά׿K9ckYrN*;_.UOwf];_Jw:ƿV?ߙw)t:3+RZt;gVߥ1Jwά׿K9ckYrN*;k[k}`iyR$w:ƿZ5\uVh~'ݿ1}=_m6l3A?_Zj5[z5#&'K;Wy~'ݿ1}դtrNUqK;[kL`ῶY5ki~w6kOI/-t_)~nl=A?_Z*~g\7^*'s/Cј q|p xx`@Mb6&q| ~m}p8 vA_$W[_/M[eY$VϏI7߱V/"""""""""21\SpNKR R8'ҥO)1lJ=ҧO1|pNKR@/诿믿믿"҅>U:O D rAKR# K+(PU8'A_|ϻ5bG}}___׿cwȹрǙüq93 J`̗gxfaq3mn_+Z]px<ހļ | ~ x_Z>ϵ=~nվ""""""""""C!\[RgpNkQk3!P-3ϩ-ả_/vPpNm`h.P 믿믿믿tv4EtΉ0G Y3B(sI?&}9fkΉ<l #~s?Kk>믿믿믿<|?`>33E㼧B!I,&<3f6a.1~prv<~?p(x=A d>-7`>rǿ $},˲,kϫ2;ZUj_Sf4#rGx/aOR^/.Pڇ?CwZ____E }Ή\8#˟?+R\y\}x˟T(ss|ks_ZC____.ry1`.vr=GKs{x)ן3K'Myr@̫iMb6H?`>Ϟcxop x0800`0O@|y+`.1ɲ,˲&*9UXuE)WP)W61}*kWKk>믿믿믿;y\X|ΟkU{;Vݪ}EDDDDDDDDDbv4kNJlΉ f4;\wPڇkl\J\Ή j}A__.ߎy>|X[(Y8?|I,l}zE[?#3}}3.PYsaϽ/믿믿믿wgEp x?'hp)罋YMI&r@_9lk\\O.{q0'op`~~$n?A1G<<.w?SdYeYX}}^?תwU z椴 f4#3gQ_ϟ!.ID믿믿HNjGcJȋ >}ЌƬ&JΏ&m˶s^n!nM9Kk>믿믿믿şY.+$$x}I0oMg$Fm?_{=ٟ\ۓO%\7̀yG_,_[EoYeYX}}^?תwU 9> Dgh41_}>ΉܛlMPgpNϻ %ais"CwZ____E hGc^JS9chmԟ &~$o}m/_8'缶ؗ/¸DVj? Gr/诿믿믿CwE s8<0'?tx1]$Vn\r~r$؟+x#ןy}!xs$n_s3χw,˲I>|ΟkU{;Vݪ}EDDDDDDDDD{wa׫ f4Ks"_C((F8'ԆpAis"CwZ____E 1/pN}ὑR>/ƌe?~'˟=|ԟs{fwq[My+˿믿믿믿]`48!s< Mqɯא^07a>Kg61 v\ Kr|'5][ |I0 %|0;kx+ z˲,˚Vocխ_DDDDDDDDDd(΄{B1f4歠ϛ9wo(ýCpN%d\ohFcVk7# >}Rދ; ˶R>S\I4m/믿믿믿w_y1W0ta3 i̺9p(|_s~r=K w3l8p60+=gslsǹ6<ދ8s{x-ן{0ɲ,˲&*9UXu aOi9!hAiK9+\t (ý$G2P+}]___|\IBЗ?YMsq]$&o9 rsR#˷6 ___fO.Y4gޯ`v4Nyxx6 'o@.3\'as ,`XGMx&~Iw^r9?_̦,˲I>|ΟkU{;Vݪ}EDDDDDDDDDF (41*S+="|ff9=".`h.P 믿믿믿t^]Jy `51|6kC@?3ϑgnnI,&/诿믿믿'Eߙs*  s2 E$W|"` I0g _> "0݀ż &7>kɽ> Z3>-&|8uu,˲I>|ΟkU{;Vݪ}EDDDDDDDDDbv4fKPgpNdW0%h場3^c__9 > D^믿믿HَƼS p<f4ԥ7#WgVl}Y->Vmzc5+U8?J~0G___^]{8; Nom<0O ù>̈"ཀྵdTX1瑀}xr&EO||09H-'w3חB̦,˲I>|ΟkU{;Vݪ}EDDDDDDDDDh=9)f45+9׃F^Jy+>6="/}^Ή0 hh.P 믿믿믿t)hKA<=3y%^y/:Y įmO93G}D?kY6D_5t___sa>pɽ9<5x n̓y`>L.g07f0'g65b^.`ekĬly?$8>\\ǓyJ_?|׀eYeMbyUfs\7߱V/"""""""""2\Wu#}w]h[@i#Ƶ"C1GP?M2ڪ@/诿믿믿"҅綣1Wy>ǀs@_51lYKm+r(gz//ZM!rmwKk>믿믿믿şva^3dۀChx/k\ W7ϼrfx( ޓa4Sq6 VF=3)S8`.S.c+G{_˲,˚Vocխ_DDDDDDDDDd(=J>睠}>y_zr4____Dv4}t>5y 8<bl761ܓ4-l}zE D{8+5(y)"ﺴ믿믿믿]x'\g ԗi G___o3G`{p=ދ}y&e;& a9a>ϕk %ϵ: V?ǖX3-M9q} 0KHW\˲,˚Vocխ_DDDDDDDDDd(֎p>+s"]rN3P9܃{ʗf8'}ʆ?;G믿믿믿9r=!l`fp/n/W/ 5K  e1gi h1#&3f/Ǎ>WO/qMԥ?ǙםK,˲I>|ΟkU{;Vݪ}EDDDDDDDDDf4f6QڧVSEJ<)ys="3Ai___EјKA<=5y1xx!˿_#\.M_|&HP sg? Gx_MϦ_ZC____.k0s` p` s{/t?pwP|4 ||\ۓz,`0nས-A.MBw4Z,bbSr=0_Ȳ,˲&*9UXu61+>I 9yF8'rڟ=_}7&="O}ΉtwZ____E g1/pNgח?s `M/诿믿믿w^`uܞ\.}p3dćE4\ @.ࣀ<筀c~[?oMc}؇g׃Z35b>>ĵO\cuC,˲I>|ΟkU{;Vݪ}EDDDDDDDDDbA;"(*˴lPpNL0_=ӊ^ ZxHq;)9 j}A__.<y1(O D^ }Ќtɟ]8?ni/=B@N.rZ`_p<˟HXp~d6&/诿믿믿\nf {F < r{>^ >r9? }r_oTn+ 1I&nn, >+s{8 >^ ü&3,,˲I>|ΟkU{;Vݪ}EDDDDDDDDDbv4@Jpڟ3> D.C-G仠Ϸ9>="g>gs"瀡@/诿믿믿"҅јyK G\կ+r(I<+=QȲm?%r<^c/ m̝f?].&3o6 y}࿗98ywu},˲,kϫ2;ZUj_z.hs߮ܟkoJp ڟY=|f9ڟY=>\õXCwZ____E '1/pNl?SLQ`f_[U8'/`ǁy/#oׂM_ZC____.~a0_xcw ZC./Y7|= 佀y3B b {^ }\ϟm&1c[I07yD_72 Z,^+?z^/^_˲,˚Vocխ_DDDDDDDDDd($ W9Wu81_?sCwZ____E OnGc.4LЗ/јUD?w C@{"JΏp /诿믿믿pv7oo\ܘoĚmM^m"ן96뵉'6 9<<\N\#t6o_bǍcŽxO ߂;A?)1YՀ9Ή| Pxᠴϱ\ j}A__.ގƼ 9ЗR&l,굘#@.1/[¸D6n|m&z˿믿믿믿] ߙ#;ۛ=mM<ieh̢ g Nas؟3Zp]k_zx-~$^+?,?b㿗{qە2u|,˲,kϫ2;ZUj_5]r{:{Bxȓ@iC9 (pNC`hI9.9NwZ____E hGc^ Jȋ\Зn_R>RAhD_ "GR=9v/[øD|_?3m.e˿믿믿믿]yd6&VqD.M\i`m&J=^ |b  0 5׈=x-\>_f1] k8068O 9oYeYX}}^?תwU pMi9u)C#59}N D 0(Ot (u\CwZ____E OjGc.pN p8C3Z(sm̟s[wxPpNt ˟=wok^mMb6їi G___{:$6lh fŬ&Qü5MMn93\s9+sl>,kC1qbnsy-u_?7^37p s>x=XeY$V_Wev>ϵ=~nվ"5iyΥ}`w Pڇ\G4׎^;cF\;e m˲,k~V_]VϏeͼj?p[@i: _}D}> D>J0GX0_j~___E 1/i%Xp˟1&Jyl6&T,굘@C9@З?gnR?In&۪m/믿믿믿w32 ui>r`^ ẶIMb6qp8p=Ʌ wkN^-s`G|p4` Z|Z|Z|ZpLJ{x?0߉\2] ,˲,kϫ2;ZUj_ s]^_z2̑.a23aJy]x/;ow>̑z`uq}>|{ ߲,˚UWWUcY3O&\gJ0_{K GZ}JZ#է {-:g1Z____s{^J9׀/\>L?d_Mp_M+ܞR}9n З?ǍJ6i6uJKk>믿믿믿sd6&̄3\)38K?#< |\\WXr |pl\\Щy;\ 0{O/|={.GȲ,˲&*9UXuh.`} Ƚ>w`G5!ۂ$ApȽ>w6u,$n]3&u0#J|YeYjUj_~,kU{[;p{rZ8''C#P!`hKyE8'l2nDf3 ~诿믿믿"҅1]ND rЗ?a2a_M+%!qЗ?#p~}$x/믿믿믿w0g6a2m"S?s$`.Ks{r}Jrur=$A)=Kҟ@-˲,kϫ2;ZUj_GVowKΆ=g&ϛs_oQs(=kOPڇv-hYⳄǙt5(qmeYڟbխߟ˚y՞"5^a.ni~ҧ<79 ExYyM8'F0~="]q* ~诿믿믿"҅3ј@<}v8'r98 _\f(g:mgj}zEN DNߗ¸D6n G6mm\֗i G___vx?o+üRI8f\p`n̉Rp4x<;t`/p?5fM3cŽyqz>?p<e>e)b4d\˲,˚Vocխ_&Ek2u,w45DKr|m̙><&!ɽ~Iqcᚖv}xOkor9GTz<}8|&1߲,˚UWoVժ}W'R?>+0="+a`hO|y[8'N0?ǜkJΉpϵP믿믿/"]y(s"oOGmԟ6h|nxaVR9#A_K^Aa|#[Jk>믿믿믿aV}r?5H|xfς=Ip-ހ23r{W= pMyୀc> ,n|~*}y->x- yJg'gϡX@ eYeMbyUfs\7߱V/R `@wɵ%(Mɼy{}{;3K_8}\}x0S$ǿ J^_ 7eY5?篮XuDzf^HMQC?,G䡠Z#>\/,Ϊ<ڿ ~诿믿믿"<93tЗ?GkD?)>֗5hPϵ[{f"=g<`?0k`_5t___|=?8a2>Mk0ۀ?G  ?ڡsx-<ŧs{sx->#ܷ9H\s6`s19?:po2eYeMbyUfs\7߱V/RјM`3{}r`ckxO#aKVjǹf6W[m9|83}罵_˲,k~V_]VϏeͼj??||R_Co##(G8'r_0?&qKis"/Co#eΉ{___DpB;s(džs"炃A_?iFc^H&};AV`_З?gFm|qmR_5t___c{7vr=_|x?s؟˽ r9<9 Gd#ܛ~pv>8&_ה؟9B\ $};G@Pt1@_ cR#\w /诿믿믿>S~5ׁ7/b&3_ |~O`O`/p H+`v }?#t%X]>8VܿcѸ^XZ<5a 7`eYeMbyUfs\7߱V/Rј-3vv环mAi>w}癫5{}~HiUzۆs"C3繠;L3BC{___DpJ;ܞyzz8'r 8\anO?$-tWPpNX0tzR_#wk"믿믿믿]3G1s1'9>g7Ggp=̣@.g4p8 s~|\<7n6sp'3x2[v*ur5fqm3fYeYX}}^?תwUԄ<չ;^;53[Z}J'xϪ?׮Xz&b(ýwu8wPz<}x_9W5]eYڟbխߟ˚y՞"5} f&ܗjh{D}6 D?*GxPڇpffh5{D]30_j~___E OiGc^ JS9/Ƭ&JWm/=BA^p-־/q,&JΏ\_ZC____.̓>f y(f1߆d>~> !8p/C:vv&z ൸ pm_ >؇蕀1k iop4x=<1`_,˲I>|ΟkU{;Vݪ}Ej~;#X0'yY~ɽ>wX}W0W8nVif&rs#(=y}ĵ[eYڟbխߟ˚y՞"5a1ׁyw8'5\u8C#(n8'ڿ ~诿믿믿"҅јyz|8'r>83e]g[&m/Bc@?V=p գA_܇Hܳ/믿믿믿wl2g p4| 0㷴0&'ϵ;8+Gs~&kv,+G@.G荀@}NG^)`?R߲,˲&*9UXu _[뗤Z lJeʗ@K҇2o_e6QzMJ$VnoM`M8DŽJp_߂,˲gnվX̫ sqJ8]xGi Vx3Ais"灡2\5Z____yJp˟<ܯsf~$/ԗ?y Jj?pop˿#m/믿믿믿w:|0cy'g< ;aC^;|5`ћܯ2>|ΟkU{;Vݪ}Ej\{ ,y|y)?cϽ>w _gJ Vhon܏KğS}IJsL~J\~Ĝs˲,k~V_]VϏeͼj?p3rK|8>SCo#(Q8'rO0S{DJpo.q8'9ڿ ~诿믿믿"҅紣1WypN䅀B炾oiFc6n|m6|!՗CɠpN`|A_܏l6Qm8?L`]/믿믿믿wk35WsL_|6Uq7̟4<l \w/ڕE|"kJ˜)BZp6x9`cs81zs0fp7fm )dYeYX}}^?תwUdv4f ^;εہ?s >rgwwUDq#m'l|ICi-s6#fYeϪ+Vݪ}W'Rw>D_=ǿ:`hEu8(s\8'}dž_#GΉZ Z____©hŠt>; }sD_ KӗWPP_8'r< 6\;TS8?5`\s'˿믿믿믿]3G:N ~筸.#Ĝ>?;ýa`\s50Y=_t)z`Vz1u,&:>vMbAJ\,&[.q`?p,˲I>|ΟkU{;Vݪ}Ej5-^Qov|ܿ#r3f6QzY=}f6lxOO8k-&Jp__m²,˚UWWUcY3O&߇#pEk8ӂ>+s"7ױ94AxҠ|U0OOj~___E '1/pNxpf4f6QC8?565D_^A?\/qZM(aKk>믿믿믿ş3_̖ >`>g[U}_ >p sx6a-mv̷<\^^8g9B/Wgӫ;0iOX}kk 0a0(5YeY$V_Wev>ϵ=~nվ"5aׄl%Ms{6ܡ%\0{}gע`.Pimy;]s>w55D?2oՠKAeYڟbխߟ˚y՞"59+|J˄s"˃>\u8C3{/ΉB/믿믿믿tv4"P:Os9B9^/4DW pN0tϵa\"˷Rmy_X_5t___9ys{]??_wsyD溬-ܞG{0Fh{a8ίsV1ɬ\)>׿m vܞsr?SbS#,˲I>|ΟkU{;Vݪ}EjI;+`Ύ %ҟ<\s¼!ɽ>w9?6(=ހ.}rǹJZy-x,˚UWWUcY3O&{QSk~Jܵp4mC3/>Eb3Z____јy:}3õFGO Mb6їBԟ9B=ܤD?J-&$Fm/믿믿믿wfan̳sin\/ܘ\b.)pf``רVil\ vGQ p~mx<,>˵ @q^]\4A_)3Ow˲,k~V_]VϏeͼj?p)TڇkQ˄, Jp=OXܗfCs̗}s"KP믿믿/"]xf;s(yx2`.P_mFc^p~?\Oµ1}?8 Jw D{'sViZKk>믿믿믿şv z\&<6p.x 8|ar<>Sl5*̥_lڱLp8'ggTI};l 5`eYeMbyUfs\7߱V/Rmј^;x`׺I| ^;55-Wh J릘v`c XeYjUj_~,kU{U;p u pܟpPpN@0Z="\SgkgkP믿믿/"]8's"cy/?71R߄#\5EkޮJJDv>nmԟ|qo2:Kk>믿믿믿?s`γ ׇ6oF=^[\o㹜?0'zg?3rC|tbnO./y><\ ϵ=~nվ"5Y rf?ķ f԰@iUDqfڬ&fG=(=μ߂.o_oYeϪ+Vݪ}W'Ruէ{DV״ }'W>mpNd6ǿ ~诿믿믿"҅1yzj8'r8\[\;T7֏rm/^#A!q/¸D8n8sM6їi G____?G.| ;r~^ V; r?]@8sfv\qXN灧^s~\<sS[;s6eY5Usj|Ǫ[HMó#pHXOs?>s:ǹ*skຝruJ |p6˲,k~V_]VϏeͼj?pי,UڇFC?&GPڇ?\#4=J0bh~/믿믿HՎ\J9S%/ ^(S8?~`Ъm/^@3/t˟kxlk6|!_˿믿믿믿]nY@Gs2:j'fnab&qץvab& fܼ0j?}0LC`_p:"^'Q Xx޹0, #_>w-L8sȲ,˲&*9UXuh.` Ƚ>w|C[E)&ɽ>ws{T p}K J$Vkceh 2)߲,˚UWWUcY3O&>\s$ꅣ1׀>7s"?CsAi9?c)(uS\[5_j~___E hGc^J q|З?xZM8Z\OLWpPϵRA_? YM?YMpϨM_ZC____.ϑK@.ɀ?0 w>/g+_&j\[&d6j\`nO- Y <r9<2 5`{=0[6^ b <gӆ`=5,˲I>|ΟkU{;Vݪ}Ejp-J[-Jw`ϧ^;Y@\TzkW1`&-NW_m²,˚UWWUcY3O&>0n8'L ẗs=(&f Z____h+A<=)ai%/>Vׄ#Yژ "R9@З?8uV8?uA?/믿믿믿w/̟y.`n̅$$?G\O.o 4 9L&Vj7/L$ryD7.L,$|p F`Fa e>Yr9|ΟkU{;Vݪ}Ejn;#Xlr; 0[f[PM  &J/>w4 ^#_\$nǙt(=\˲,k~V_]VϏeͼj?<6|t:iڟ=?]fרp?>ᵻ Z____h+@<}z8'>'烾e8?>\ҶzE{s"⚫G'Z,O./믿믿믿w\y*` w눞i5ŘA5'x5 Wua\3jrO?^Mb_p?{f?3\ӵ;0Y@YXIyamYx߲0LĒ,˲I>|ΟkU{;Vݪ}Ejl \R翛ל||^_zkJpJI,&J,k4 w?@qf4~mh XeYjUj_~,kU{;𿣴p56}~w 0FM@i-9+}*s}8's0_j~___E lGc.9?3@_iFcp~d6kzEs"? 0.D?n-&o\ԗi G___3kxsx&8<?s~rgvr<\sœ\.P. M< <  ,I3>w|}(̜`6x:Ƚ>wrmbPz5(5Nd`-|~a\/dYeϪ+Vݪ}W'R@ifqkKJ\Ήpۅ1l JlΉ0Shh;J0GkB/믿믿믿t)h̥tΉ灾ohFcVkOj6=zE\u8K&;ȨM|IpO_5t___?0hp.(Ϝ炣9vÓ;an a6;̱0<\<vg8G0׀9KKҟx]x?eY5Usj|Ǫ[HMQ`7/Ƚ>wLq`?Pڟ@~ (%9;p%(ϵ1 :{P>_>.ZeYڟbխߟ˚y՞"5\>\t(g Gcp}ר UȖώ3纩.pοch~/믿믿HNoGc^J)s.ǃ󎶫(N%:CH)RT@EEDEEA@Ď Dz{/N߸s=νoUu_______O N/0'8$_S:/#3V6mI_h*bbnP0+i-9Xk=X?*z|NR$I4ЕyUs~Sv*}(ɜa4XRS99k_VQ5\3P`Xwq`0"ۏun0XZ$IS"U$^?!J8k}j[VX̟(_______Q]z \㱐X_______Qf|XCg ǪVY\i>0d|?{v}A.EygtWr:///////u/~ˀMr1<93cf`H_֎< {Iտ0 :T!U@ `,XT:Ux-xd`V$I4yUs~Sv*}( fAj~ǰ"̄an{QRSf\ d?0W:n9e:Eޯ"]{2XoN*v:$IS"U$^?!J8kUFyZR&WдZZg}Ҏ4Tu%i>J}ȿ˿˿˿˿˿;V>ɯ ή8U4.b~s_ lkh%ͯ toUu_______Op|`L*uR#n*jg&̵爥r~RSS~=82G9?OgǙ< TnskOK$I@TU7Mۑʪ$VU=gZ1[(WUIO_5gʜ.b0'W} 4y&u}>U?/$I$uJ?E*_IJBd8Y¯ 𬨦nu8Xگ 4eW{`HXޯ 4?BBXc`ON: fƬ55.`)5Y?fr )#//////_h7s`<`z24,63d!f\=TsxX0ٻՓTT0ܞ}MT zR-k$I4yUs~Sv*}(0<`H_rտL̖IO_lk}).b̜TTE^u_:7TK$Iݩ_uʪGz%P&`0CfS J.3jXv4׃ a̭gu?,fs< 3+`볎s - ^lG>78.H>Vb}'BoI$I*9u;RYB=-Z= fu_\Ex& 5:at.b":QEftk :~`Ϗu2$IS"U$^?!Jb3ԯ M? `+&,_cjXgfh?3_____iB 3gv~MH 8 i\>rgq&HV <,#//////_"o 5u[kTE:v0EaVqasBJgГy;>mGS9?|n~>-> <{^&^S R/I$IQWE<7޿nG*_ruK:?|%_}"pHͷ_x{ZfqUmY밗bxVufl\o$IJ?E*_IJBde7pFYxWWs aAg{Xχ=g]Y0W/^og{`ViXSE"UI:ژAdsǘY/I$uJ?E*_IJBd8k,3+b`s_`Pٷa;bófMPE_____u۵:>~MD8xYgb\WXg?"}g\*!ߪȿ˿˿˿˿˿˿?X 0gs{5>3jViGnܞϮ:p`OOr"s0vg}܎\E`揵~*F ]+qwR $I$IQWE<7޿nG*_0eqIOFT{B.Aj~jB_ӻu=0a{{̟@\ >_______Q\z2(58 +I}n<3+5.i&0,Ɓ\{E4\^[t:{۳Xp|^ V: ۓug_

Y@su3UĹ}AU֗$IS"U$^?!J{8MSugؗr)h?j'};MY]Kю|o\ob.quds~ 瓪Ϟۀ$I$ Dz^}TzJ_!J2̵:ay>aϭeU`?, Ӏ@ (fY~\"/I$uJ?E*_IJBd!7pN<~M`nд\?<ϋ=EMϕ_35^:?_______Qi*g U g?ɬ.|ʾV`G`:P}ߗs{Yv[EZ.˿UMבFsv K`U0fKTa`|p-0Op`M>si z 6 b)Hg^0طf"/Ay^i쉪kд\ >_______QC\iz'\2X3gy"kvVb `[~_G]Ab.ߪȿ˿˿˿˿˿˿Ͼ(`Y1,5 , U;r`_n\ \.0> ^1giq09k, Do>bM=pO׀y>s^T.$I$ Dz^}TzJ_!JkuX,%:`$XXVE^7@j~j Ugqϭ̴aV{YXEeZ*B$I_uʪGz%=`o~M"Mgo3Ӵwk&kI~h?":bTs}.|!Dut?&:?|A.b\%_+_ٯ org>s83r:///////u3f%aЊ2Kyp|0`Tύ .`M*/vgu`*=a3fF#9`3GhFݎ<W 0#1׈yA[ !I$I*9u;RYBdy1XlRS(8Z:/Wymm$IS"U$^?!J2=9S:ѴKڭbg&З3:SשѴv#ֹү Wi>J}ȿ˿˿˿˿˿VS>-bϾpO]*ۃ\E'1_<[t:?ƀx*2s8ˁʀ5coڑx*'5o#bM*=?<7}Ag*=I}g|oQ=x*=gq I$IQWE<7޿nG*_ u+8_NjZ*  5?5~xƭu3 Xýa s~/qAM"ǪHEu=+G$I*UJ_$*} Q,aд )kR?]:Y]M׿FgY(G_____/ZN&p r_ʯ r"/kV5%n/i\< #//////_"o`(xFz?k- X Ry׃=<GD^Xa\#^B`>k sx-3>E>p  A=/I$IQWE<7޿nG*_,Z̐YQq_ X\E^Y`qgvO.bJOX"SswI$;U.RYzHRU$K#~M})Mg a{sx&δ~Mg~5sL.kk6?BB`OOk7A.TTW y;qn/k\g~YǙS,` ޫ"u*>!."I$uJ?E*_IJB4akCVdóԱ>yaMQi`X:Vr}.|!Ds?to& S@.Vs?sfw?5dqX3`|.b_dU]$#//////_Xs` 3,8#XL\UvgEx3dρZ^K^aӹ`gZgF&q6 <]Efp83U}AF=G$IoW]*}ޫ'DIVx:~M`-дu ֹׯM#Zg_Y]MQ>`xFXs}.|!Dp?H&:gr(.HaL.qXA./} prU?[t:ٷX|,xvHEu3s឴0AVk} $I$i *HeU Q]ϊ g2ֿ̩_RSkZ[gnafsX@h'sk-3XI$Iݩ_uʪGz%P=ί \3XLx6V.Xo& sj~y\j˿˿˿˿˿˿;`<<`v>{T;ۑ7S`*œOu̓iUGۑ) U*k, ՚`LƁs6sWEf SUf&_yyZ$I$ Dz^}TzJ_!Jž€gEƇpֿ0:^Y֟Eq^/`$ >+fY߫"ײffUd.$IS"U$^?!?zA:/4?ug؟Þ/(0?_ibOMPE_____u`nρ>=֯ ~rX3fi:g8Xo. nů"ŚEr:///////u3sfG rx X3\& R?<Ë/&{=B̨a KU`U0 Z˃sD?u6H܎L[E^mGn;38>s2(׎u$I$i *HeU Q\ƀ/EIOx3|&k3^DǭQ8=:Y5/UA.b\I}I$;U.RYzHRU$)U jSiPG0&04= uд\ >_______QV>=ѯ |rjuXVbM"' `_``~_<_`; #//////_o 36?0ӆǃ}`/ɤr~xTj؋ғO#^)Ւ9<`&3b}fZzmca4`n0'Uk?mG"Sڑ٪$I$ Dz^}TzJ_!JŒ|xTWy;\uՁu|$XXpREr`֙ ]$IN~TV?{(Zg{&>:15f4EGeӴx;~M5?BB`OOk: rju`?gX*³rgρs&q`?DIMOPy"[t:98 0泀0Yp~*w(U7؎üڑw#Y1gmX=Z 5XZZ/yZ̃RETE4ݎp~*g"#&I$IQWE<7޿nG*_01@*SKuAy^;$p;Sf:>`M<\.b_`_*³r:///////u3ew|ri RYȣ{~R9Bu3¦"̙Tpk*^W 6T}0H^ER9BŚRSu$I$i *HeU QiŞe 5?5> F U%pxƯ/Z~ 1N<`YV9\q5ԩþ#"$IRwW]*}ޫ'DICBu>)Դgۭk7@!+= ,uG h~/kMMPE_____u8ص:~M{c?{uufraS.Z?{A.O} "VOA.3x]r:///////uo~9G?#Uۑ{"/#3VۑU$U?5:̥k;f@| <,3X3GYg) I$IQWE<7޿nG*_Z6 5?5>l 9SUCp/`Kj~j|"x;ZvYXSy>:s{IUdYEcþ#[x^$I_uʪGz%ao^Zgr?nuxX&{`_Ɓ{hשѴ\ >_______Qc\Ùz =VXEOVNϺ~M`Ox._fd3"o#sVT'Ȉ*n; `7gs`SnXyD ^2 #[,0$I$i *HeU Qa^q 5?5γV5UYp#x Ư< & ֟Eqe ]aXgd"okV̵@.o} s*r:///////u~?ǀ39?!8 S`q^Ұτ90VE ̥Z0Oׂ={^ fvH_fl ޮxMy`/I$IQWE<7޿nG*_,ZGkȫ| 9BY"K8{FkY?ܓ.bkq6H$Iݩ_uʪGz%9=`Yi'ZvC!+iaxޙ]!+>J}ȿ˿˿˿˿˿GV}z_8 N( Y/Frr pk L1V\GL.˿UMב?)gF@Nj}#@zۓVTx*@ p~Or~+8RTGr~*gi!r\$Ir=yo*ݎTV%Y:Aj~j|y Xԩ?]>{'Zga2-0X'WSY|REr7J$IN~TV?{(ÁkfWi}S{0'T^MhH=c U'G$I$IQWE<7޿nG*_re 5?5X0f#`kYQwo{kgs%u|^?|4α\EZ*ת."I$uJ?E*_IJBxp`>"5&fYMgOi 0 Zga&04?BB(pާ5x.W>0ER?V;sg.b^\$5˿UMב{E ϓ&oAB935ϙZKa}k<Gof}0OZhqf Ɓj`[=nZ'5.I$IQWE<7޿nG*_l5`VEeCPՕ_______Q/VXPpêՁ\D$IN~TV?{( |ؓcþ'մa5ur{k{cWq :NgȌ.bZ*2~O$I*UJ_$*} QuZ~M7i uk<۫iYbi , ukFs}.|!Dvw}X3fZa&gVY][ n/X> ߪȿ˿˿˿˿˿˿9\W7p`wEJ0Sy;c ÓaO ƀ@*w9E;?s~ .aBp`} ۳%`nϞ80 ;t4``$I4yUs~Sv*}(I*WgXXyY o"0'5?5~xC\=92ZgA, ؓ3EoUy\Z*#+I$;U.RYzHRU$g챱a{`iGukٴkV:5As}.|!Dut&p, rP~}9?̟3V{F`y`3`vӼCOW]:^YEu";z"$IRwW]*}ޫ'DIqa_{T?ܿFguY,xXsukٴq5ks PE_____uku8Xӽ`{DCU .b_E"-X>F .bȞ[ #//////_?su)f,s 5=E{X/ ó>LgFXQ_~ ~._g>=g?vp;2|<"O͗$I\ϫoJ_#U/DI0'5?5(X wJ/TOj~jf 0Z=E,` `,sGu{R59.I$uJ?E*_IJB}#gkeOQ۳8y^<;iQ!:썩SJ5k{s˿˿˿˿˿ !갳ku8X]q`'p4?W~}uY l k4rK` ۯ |@.V5]G______忎f󻔿A*Y1;`o*h]`p `s{F 0xV%|L߀T}q8 ro:^} | R9?7s$I$i *HeU Q@juBֹ_R׀g{8u>"wYLTi]:DErL"$IRwW]*}ޫ'DI~0 Z=!9ipfY,F_cjX|ů  ̵fj4?BBᳮx`Owk_ۃ#A.mZO=Ru&YEKm?0grE}8VYboe{oUu_______g 's+<K*6 0!`{KςMsT.W'9oǀ55bsR= vG^obc$I$ Dz^}TzJ_!J¬3^V:IUyk:q<"Kk!`0`.bR.rE$IN~TV?{( |csxFU ukFyϫ9ѯ 0 i[luxiυR///////^zN;@.V3 ~}`y^M_#$u3ó)Mfsfr[_______ٗ~|/rHC|p 6T> `980wX <j}`>{.7_[F?`\ 9yGssS$I4yUs~Sv*}(BaUCOkk}~7,`k 5?5W.87i4Un,`㓪-YEo$IS"U$^?!JXܯ _Y1Xg_`N٣u`Þ/|4bMPE_____uku8X5W@.Wӻ~}3V"/kV+5X/F@EXc˿UMב㟿oz0U&~s~Ws'x3x18NG_b̽as{+ +T<7kbpN?Noo _$I$i *HeU QLˁ 5?5 p~Aj~j^`au|(XX0gi50 0vz3ײ֙REv$IRwW]*}ޫ'DIx9V9i:5j~M` д3kxƖj5;kmkυR///////T`ON@.oU=Hyï,"M埽R T埿כEUS˿UMבY+OTngj3[< R^R7G|K8 L{TXB<+Ug_ o3| +@~*_(U01ޘ t8R8J՗$I\ϫoJ_#U/DIR<̄Ɨfl|0&5?5~].OY"ɱxvX:άoV\D$IN~TV?{( Ϣ5_`oIG:5qiJ}ȿ˿˿˿˿˿{V}a 'V.bϳs\_ѯ l۳-qg{oUu_______g s#`omX:8zN[cxeN\]eg37!p=oRt?HͿoܓ~ sр?y$I\ϫoJ_#U/DIϳ`Ά 5?5,M I}f{'RS.9?>[S= xM9q~7EuR?| uI$;U.RYzHRU$/إaߍ0_(?RɹH|TH$I]WE<7޿nG*_Z+Aj~jY4ϥ X󻎖oqf OsGuu|)!k`})0:άE$IRwW]*}ޫ'DI.Zү 45h&2h?^ u3@ܞq~MNMPE_____u8ĵ:|X V]y>0zWV=V5{~>ri9kӹSU=?[t:?gOj< t`NO6HRSn};MͿ;3oyJ=Oտ ;ToN-࿝9;Ͼ @~j$I$ Dz^}TzJ_!Jku`>_La>RSTϧZgqϭ Ձ{V w8bZר'%IT篺HeU#IWOj`w&ZA끦԰_`RwXlMPE_____u8̵:~M4S@.TK$>"W `Ϝ=sv%0X?38ߪȿ˿˿˿˿˿˿3q's7I^PO*g/p*H؇'` 8?'s#xp>|g5?-tTnσK||p> kD?$I4yUs~Sv*}( @~ ǁmשϜi\i0%5?5s.@zR'5(X XSm0l qf(1Z@L$I_uʪGz%a_{Nunk-i5N~hk~u~Mghi>J}ȿ˿˿˿˿˿ǺV3>=د Q:7Y>0g򿉯`V?{uvGofp{r:///////u]23ȫUdvyfȤ~URE}"GVsˀ0ǀ_s~ X=9so&x0㚿/cx=ݘO9Ss,^? (^1cߝ\\eN@;{r%!\RI$I*9u;RYB9?eyRSX3#1c0U'u;u|S{γϘLa.b\Eck4E#I$Q"U$^?!Jr{8 k~O,_#ak6=E<Z}2:5ȿ˿˿˿˿˿o8ܵ:XӃw!T?4g??ϝg Ugc򿾯<_ï \;A.bV]$#//////_?sx|E^">9?H*/4~Y4"_"gcO'|\ ;20izwdwpF.-xݙļF=afnϳxn$I4yUs~Sv*}(zoρZR㬿=^yџ|xu8&{ (~ߓAH.YRSy;YZ%.X $IS"U$^?!Jž EXMĿF`+`õۃȿFL`sMF``_`Ss}.|!Dsg}z_8N ?|r<\'Zf%Yg!wg]!6Er:///////u?~"<ϋgmyު">*r^"sHU|p8yN<ӊ3\79eM"Vu\,u {r 0o^kw-H1v/I$IQWE<7޿nG*_0#eX7=9Mg~Zgo&p hυR///////\yz2GLp8`.P.<+#//////_?s]tgrxRO"?L"[~;'V i2~ 8"όԜb :Sz(yc<Ơ_b{7]j :SB~'?O~y3)ϩyqT~N3ky4ݚko6Jϩ5Bx]jvk_A'?O~'?O~3/$T%oOn\Ǫ!DϏ>?/0LCx{ڼ=Ly?S~䇆xC~M|o42r|ƿ0O!z2057};]]6)WfL#w|nPF~W/-?g8(_nl1J}׷3fwX{ =4}1BMO_Pj%>ϩɃn| R95ދf5Fͯ>Լtר("Ss1M^h O~'?O~{BgsjP/PS}y_R}y7n5ѫ9Fi~#Rק4x\_j>'?O~'?O~}=+$ܐ!އx!O}zug cno#t#}^73?Ϗ @}>L?^OF? k{ݜ׼!BOF5}{t&>f BOF5}{t&kN22eo4N5L?~{x_{;>7y)(>)M -BjWvvy 4yh_QA#FmFAP|>ϩcc}S㽃~'?O~~9t&xQ9>Sj_e4ߟZ}!o*ӣWUF'2so(-$J2_ _A'?O~'?O~3?$Q%W=$r>x*~%o+&S:/(Kܙ#:|rs<}Jngr>ryB' S={SoUhsqq;~[}/RPH/w\($0J_~{/o|J޳e!Qk BSmԮڮ?&?m{6}(Ӡ__xNt~״d֠(sC~'?O~ ~(ϩEjFS}/uˬ4Ug!Uo*ѫn4h<{.^ZMu864?w }K_TR ڇ'?O~'?O~{o=cU[}?ņ"{Æ?4b^WLGf|63烆PkyC=_߷}n0`c_y}UCUBWi|9}f@!j*LMm_jWmMx[r^ęFS~oxs~יx~׍U:׳#o)/{r:y}Q{h5>B驶 jWmןBW۟?6r|-S{x :5jn2J}n4kQxN{:ko4Src'?O~/ ~(z!y6G])4?TW=Fi~>MILYik@*6)Ԡ}O~'?O~'Z9~/0xs:&G7_[MۆS_zi#4r}v 4gg?s^7~|{}\T '{>cƏ &lyv?}#G!z2057};]]6{8g's~oF:/w!Q8ghOn{/}ݗ}!T߿ɫ@z _R+15W>ω` :_F>3+yF 95/6 m~!?O~'?poLNsxNͯ7b4ߟY}r߳j0Jϩ?.{ 5G- ߊx!^laH4T!?O~'?O~򓿟~;ņFm4_?~;d~A`|xq#}|3>gxﷳ8=~|Ï^7+ |_uV%g k kB{17~l BOF5}{t&'s~T{b}j- ?1Jw+{54J}ޣ)S鼯:(վ_[!T߿ɫ@~IulԠ__rxNUƠ'FV㽃~t~tQs{<c'?O~/ a~Nۍ5 sR%g|=IS{n\fg4+zfAj>'?O~'?O~xO`?s ڣFb hf !Q} 56 1+$,nk Fϯ+/hwo6| V 罉]%Q_PwC{!z2057};]]6{ 'U mz0B;/]]?M^m?RtkbϩqA5v5N5>sj^b :SB~'?O~BgS-ˆyh*JLk`Y%|LS/^5ދ4Y FSs׭4Kg}wVOC~'?O~'??U WrYoxߏ;?s>? =d1m{пp3&{OS{(l|y_eYf5垛*]ïw}B!dTSWajoojMwPjmN6ro˼m{;{og;t)Q}uJsg4OB jWmןBW۟?6_0J}ϩ?ר(!SOR|?4J}tרyQsoP}._7{sUM?#zxߞsj6| MFSK͢(}95'?O~'?ɿ̌f9>}i.?P#g9ƑƯW7exo\?\ߞ_5>bsyg|I~Oo?{y}{{m5=9?0/>B!j*LMm_jWmMW=a[2{}y q?\RG7l5wו+ϔZ  !T߿ɫ@z߿񜚯5>vc>iUxOc_A%񜚗~'?O~~xaLO95sV߮:J"=9j2Jϩq/tTR$$J=C - j>'?O~'?O~s1MƮ?_?6\O?_(w;3~ky=grB!| lzeFx_>c_sYÏw9/(B=Uۛھ~Ԯڮ?@= sSd^T~{75 CU'{/SyF_\'{?ϔ,0gmB!4=~AAhj&|]>j :m5j0J}ϩtixN_54J}ϫAoB[_O~'?O~@?:(8S{μh*{Wg\j^`?/S<h4x]j9~_q*Ϧ5T!?O~'?O~򓿟ǟe6o?/>Nny1}'2|}4xJcv3VB3 ͻ5?3ֳyO$&B9 G!j*LMm_jWmM9{,&w|n~{N=ӌRW\ߞB"w{U SkN4JW>~oxl1ƁFߓ}J}FާGUb@!4=~AAhj&͗RsjР__&xNƠa|?3J}2ScQ񜚟3 m~!?O~'?s3\_2sgs>!TKW}Fi\_uToRoH?gUb~H4T!?O~'?O~򓿟_ц3\om{ <<ß7޻Oė?1^An~1|.w0$6~}|ܼ?u:b^7w?_u*3zܼ?<;ޟږ~!|vvd]7p3 {EgZ%kxg1>b|(6޷g{5<~{+y~}US> !jWvvy 4yhw:'AQ|Rsj5k4J}6SwƠ?_-Fk95o4 m~!?O~'?p]L*szK<+Lϔ|5;$klPisj0|s~3B4'USk*C~'?O~'?3sX{އ-x_ Vox/(z >^+ÔR1f1BSmԮڮ?&?mk`|OR$:5j1J}^ϩy1oR_c__ F95~'?O~~#t&xQ9)SFSY-Ψ4kf>_%v?+z<(]ffMgܶyYC!TR ڇ'?O~'?O~/fy}}Om+G(}#U~<=r>?1{, ͆{5{`ou{_ Οs>+ kޯgs/{A4["B۳ S={SoUhiߓ9ŧ?ןs]`3CƉƠ;,G!4-~AAhj&|c)y$S{9 :5jgϩtרQg_4/Q:{.t~/'?O~'?]3FxN++{/k745 򽫚]o?:Ss5g?ϯĿW _TR ڇ'?O~'?O~g_9 +{x6 Ѽ|O2~h'x} #N!gx|\!|x7a~;3]e3t߮=f<Bɮ|vv!\hl4N5rE?HڜL{synHP:~ѥ>;*J}~'BhZ_UMc)N<~ :5j3J}Լt~_GF?s~5o4J}_2 m~!?O~'?=g^m~NԼ̸xT~}ϧ?T~c24?y3uN:>nZ%~b4T!?O~'?O~򓿟os&ky+g ?0r[%?1^O_0pG64~}6ܖ~A[ f{ax&ι~D}J{U!!м gB' S={SoUh_}jx2}^)F'[?+&w|n wͱFXd6| R{1JR`xr!/]]?M^m](|ϦAQ|>M*ka>G35o5J}~>S1M^h O~'?O~BgW95/6|/ML(_7~yO_gu|a43n?ϯ V O~'?O~ox{A޷{/{ yߛgKFo_0>h^d?>?_Zܞ!kƼoW2Z%ٖB!ГQM}_7AW3>d~~ߠ)~?x!JAƠ}*H~ϰeG!4=~AAhj&N*s}Ǡ_F95S#yR_c/>xOAoB[_O~'?O~@?:(^ϩy T~̟*}lfħĮ!T~{?yFl̝?U^>TR ڇ'?O~'?O~\as[އ{= <Ѩs ޛb+*v|mҟ_53&5}xKU![K~_gg*ὃ[%^ =归~?[W IӉB=Uۛھ~Ԯڮ?@O5-C/J>!/^Dw}!V>5~#aBhz_UM~=(gUF957SQ{50J}~=Sc'?O~MxT/V x~͌<7VS~ϩ9g7x]j_7 ~cC~'?O~'?s}u1N4rSy/7b2|]ϗ:׍xy3V?1JfU:?*uA㽸/2|m *ޏ1kgD!4=~AAhj0:Qz{׼θ^CMDik|q__낚?j7J# _T~/민ϿT ;O~'?O~;;\ׇj{)FUޟsT]C*KH7Fޯ cz,0t~ὡJ}|C ߣͯB驶 jWmןBW۟?y3F}956.13Xՙ*Ġ<;z5,]f ϗu7?ϯ!?O~'?O~`+Bgc ۓ;>7_UׁSn$w|nןx_|J׆ĉF<>96JG>@cOcBhz_U`)t&xQz}^k\kT~_0$J1_3?$>W%fDS^5W 6^>s>^%BH4T!?O~'?O~` ן''w{ߘ}}H?e4>< 3h5Yg !T߿ɫTscL}{JϩyvFS}=B4qTE!T~_uQxN UFSץf(}S j>'?O~'?O~"?l 1?8͗?\%v }Ѷ̗>\gH>^O5/6֥>O34!T߿ɫTsoL>wMVՙ`(͟*$$JkXxNyqTRk{J:_}J j>'?O~'?O~"?:>P>$w|(u> C{U{J)`CR# bx-F776hՙ*}~|kN?jZf<ƺh*_!Q?w3CO~'?O~;DŽ>;>7L7|Gv/Vm/=6J x_qQ}~3 BSmԮڮ?&?S=3[?>FMuD{ėT~_sQ7DL7*4$[%|]J&?8(988p[y_J}4#jWvvy 4yj?[>?_FS?(D<}Ъh*(R7q|cJvr^%ďoU6J1RSgxy&>>?8@!4=>AAhj0:(xNߪ:s} BFی'sjn6n\e4i}ݔL=M/ՠ}O~'?O~D~1bko\hl2P37*{H<\%fD9(_kxߞRh3bZ,z!T߿ɫTЙF}sjlxT*zl~O9''_D؍^LMA.5Di\ߗmIH4T!?O~'?O~`{\i<ø_ӔUb~H﷓;ԧ)t8_>{j5<(i5M!T߿ɫTЙ]F}{95o5/M3kB4wʐh*ѫN4I񜚛 sTuYϯ3$|_!TR ڇ'?O~'?OACg߫\^=wRJgkWe!;>7}f|+'$Jn\d?͸bV[gD~;>?j(_no4=!T߿ɫTcG}A<歆)zޟ3kkN^yQxN͍Ƴk?K)x~*5T!?O~'?O~`{yEsє.ƾu;scєydj#llZsRߣM9B驶 jWmןBW۟?Bg_3Jϻo43(>BZM63JZ; _T~l(>3UbVH4T!?O~'?O~`ЙBׇ\j͟`x\%|WC"w|OSG+ti_~kT:unml?B驶 jWmןBW۟?{QzewwMLOkTUsQeY7MG*D<Ưh*C~'?O~' HLp=R.6rǗλ*u8{WĜ-kUbnH?8(?8(yqqqqQ:l,1g!T߿ɫTЙWsfuFS_u&?$J3_4$rmko4J+?KUx~PM/ՠ}O~'?O~D~18!t&>8#_!T߿ɫTsGLF}sjjm7qO2J;r㿪xJ_G>K>m0_2+l>~mgB/]]?M^m{BgSzj*p 9_kHr}r ϩ@TR}{J._[H5T!?O~'?O~`Йׇ'w_c<Ӹ(Jyr}ϢfJ7އt{L#hOht~яOϏ4!T߿ɫTT95?ok <:T M񽱮0|C!*A'?O~'?`:tb#w|neqEF?sd}9~Kjecoia'ktxR} y_ BSmԮڮ?&?S͋BgwQ_ϩqۍ7M~ՙ`(x~|J uQ=TM4^!Qx~|J j>'?O~'?O~"?:cl2|-Jܼ9h UUH?\%z!єnb3.Zt{(m0J}q!/]]?M^m[Bg_0Jϩ%&5FSXu&#$J?ϯ;$|] TWFi~_wh*-$J{%gČh*C~'?O~' ؚq73.0rs|ɅF?5$rs}{T%|I)k~J2oOJx{<><~ >ï_+BSԮڮ?&?S}3ۍ7sjsWMNՙ`(͟BgDۍ~jMf.5{Di5FcUj*C~'?O~' Q3YƉ%Fܼ>?0.5J}*$|ߨ!;>7H'_o15JO62J}|]?uDK ,_g>BMO_PjL5o4JbT~?4$J9_0$^% krh*R37$J:_}J j>'?O~'?O~"?x__-}`ǪOB"w_Mino0N1J}jdkDy5)Yll6| F!T߿ɫTЙF};95o2g<`4{UgU!Qx~>!h𽨚j({]=uY>T~8_믾X%|O~'?O~;ck&9.2r57!ݐ}|2 O1OO/S/5*_dl2J}||6 Bhz_}U`ynL}{J^ϩy=m^g4ڏgfAHo*3W͵Fic95ek*uJ"_>[%|USK5h'?O~'?v r}c24roYFS!;Dm%$_gy׳g &kyV?k9!T߿ɫT}{^mG507/PSLOkv M}oOi~B]l4xߞT!*1M/ՠ}O~'?O~D~1u '>$w|nEFSW _g*vrR%fDS'g>9QcWÏ)M5?@!4=~AAhj0:(ssDi/kk>?j*GJ"_}~|?5_TR ڇ'?O~'?OAl(,#w|&L*sH|JtB"wOR#ӌgM1|mF|0nbςBhz_U`#t&x(ze<~ZFS^u&X\M?!z\ej<<)T~krJ$_Jj>'?O~'?O~"?g:"ߏ(ݩә8 FfunecoSF3h>X#|#A'f{cz5?6_vs真/1#o<9)rz_yU䵑"ϊ83ެXȿǿ|ScK#G^yq"#k"EZ'?-yϻ#4rz{/L<ȧ"?9sygk;qNg"s{őG"ȕ3{ww+^:d(5?Em| rf|㟿Y[adi)ܱ#2kk-#ߛ?'ȏ"sb=GO.?yf| Y~S|Elڭ|>s5"vu#=cWbDϽǯx_Uo.v|.yZb}1!f<'gϽdzx ?f#GvN񵎊kuEV䔟q?7Dm_n[s]45PF.Y30gDZ{kuow}v#ƿ0rQ=OD6Nb>c!yM"o9)ra9?#{y}|G>w߷g߽<=>7_~n<5~F?$ "onK?+fEF#'F.)roȍ+#_gukf:rrχƿ }{xs`"o__'_55yQsF~3;E>ݭu>=U_Vdȫ>sy/}kϸuߎE#MDdY%/Gy|gKn6۹<ލ|CuG+2sߡ/|e}8oߍ_4Wſ=rR{S׽}=Uk#Oֳc*⟯|i6?^w+߿9%'c{nw["?̌Y7?Gw֋|"oc oo??L\wLvu;?ǟU+:#wKswA7kA:@39ݑGm]!wog164ijiU 35Ҹhqw4׸@j\q=5.Ѹƥָek\q_i\q5xSOS4ki\q}5qU׸ZOO}5Lgi<[9x5^BiX%/x5^JWiZ5i^ oxƛ5ޢVi]s5ޡN[;/V8^8êj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Zêj=Z*zDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTzDQGTXUyAGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUGUQzTUc-Tc?!B!B!B!B!B!BoeظsA`=>6C{wUwONEc1h84ޮzNkW=!^ΐ ̐ ̐ ̐ ̐ ֧̔7gg|fg|fg|fg|fg|fg3K>3K>3K>3K>3K>)c.+AƮƞƱwl٦l̖l̖l̖l̖l̖l̖̑̑̑̑̑̑\̕\̕\̕\̕\̕\̕H4ظJc8q lzkw=4O>3O>3O>3O>3O>3O>3_>3_>3_>3_>3_>3_>@> @> @> @> @> @> 䳇z5=464iji{u=COJ-B,B,B,B,B,B,",",",",",",b,b,b,b,b,b쩮W[;Ec1h8z~tO=Y9["Qg|g|g|g|g|*{g/%䳗|^K>{g/,,KT>KT>KT>KT>KT>{gk峷|[>{go-峷|1g#}䳏|>G>g,.3L>L>L>L>L>峵Or,r,r,r,r, ltB>+B>+B>+B>+B>+䳯|W>g_+}峯|ϾW>g?l|~O>g?'䳟|Jl׳R>+R>+R>+R>+R>+J>[;*****/=_>g/峿|Y-]Vg|Vg|Vg|Vg|Vg|g|g|g|g|g|g|g|g|g|g|g|g|g|g|g|g|g|g|ρ9P>@(s|ρ9P> $s|A9H> $s|9X>`,s|9X>g|g|g|g|g|g|"Cs|!9D>"Cs|ϡ9T>P*Cs|ϡ9T>0&s|a9L>0&s|6g|6g|6g|6g|6g|6g|9\>p.s|9\>!#s|9B>G!#s|6g|6g|6g|6g|6g|6g|ϑ9R>GH)#s|ϑ9R>Gg|6g|6g|6g|6g|6g|6g|6g|6g|6g|6g|6g|6g|g|g|g|g|g|#cs|19F>#cs|ϱ9V>X+cs|ϱ9V>x/s|9^>x/wAVv硻zeY]A$<^Bm0 !d\dERwYȮ `@EŠ*"ӯΝL[|3-v^s9IrC98888888888889999999999991'ĜsbN̉91'ĜpNI8 '$pNI8wqŹs.]8wqŹs7nݜ9ws͹s7nݜ9#8# y#8#8#8#8#8#8#8#8#8#9#9uE83333333333S988888888899u83333333333Sc8c8c8c8c8c8c8c8c8c9c9u83333333333S88888888899u93333333333S988888888899uD93333333333SY88888888899u93333333333SyS8S8S8S8S8S8S8S8S8S9S9u93333333333S88888888899u :3333333333S3838383838383838383939uL:3333333333S٦88888888899u:3333333333Ss8s8s8s8s8s8s8s8s8s9s9u:3333333333S88888888899u;33333333SI 8 8 8 8 8 8 8 8 8 9 9uBS 888888888pùs={8pùs/^ν{9r˹s/^ν{9qǹs>}8qǹs?~9sϹs?~9999999999999p}9sy>}cccccccccccc8p>|8p>|999999999999999999999999!C·9r>|!C·8q>|#G8q>|1cǜ9s>|1cǜ?qO?qO?qOO8p>| 'O8p>|)SΧO9r>|)SΧ?s3Ϝ?s3Ϝ?s3Ϝ8q>|3g8q>|9999999999999999999999999999999999999999999999999s9s>|9sssssssssssss/8_p| /8_p|ȹȹȹȹȹȹȹȹȹȹȹ%KΗ/9_r|%KΗ8_q|+W8_q|ŹĹĹĹĹĹĹĹĹĹĹĹ5kל9_s|5kלo8p| 7o8p|% "،FwlQssssssssssssssssssssssss-[ηo9r|-[ηo9W9W9W9W9W9W9W9W9W9W9W9W9888888888888999999999999NAa=[dY?*9[r 9BN!S){S)q8E"NS)q8E"N 8'pN 8'd8Nd8Nd8Nd9YNd9YNd9YN儜rBN 9!'䄜rBNĉ8'Dq"Nĉ8's9ŜbN1S)s9ŜbN S)pJ8%N S)rJ9RN)S)rJ9RNNNNNNNNNNNNNCNCNCNCNCNCNCNCNCNCNCNCN#N#N#N#N#N#N#N#N#N#N#N#NcNcNcNcNcNcNcNcNcNcNcNcNNNNNNNNNNNNNSNSNSNSNSNSNSNSNSNSNSNSN3N3N3N3N3N3N3N3N3N3N3N3NsNsNsNsNsNsNsNsNsNsNsNsN N N N N N N N N N N N NKNKNKNKNKNKNKNKNKNKNKNKN+N+N+N+N+N+N+N+N+N+N+N+NkNkNkNkNkNkNkNkNkNkNkNkNNNNNNNNNNNNN[N[N[N[N[N[N[N[N[N[N[N[N;N;N;N;N;N;N;N;N;N;N;N;N{N{N{N{N{N{N{N{N{N{N{N{NNNNNNNNNNNNNGNGNGNGNGNGNGNGNGNGNGNGN'N'N'N'N'N'N'N'N'N'N'N'NgNgNgNgNgNgNgNgNgNgNgNgN l lfmh#[v)me2NS)q8e2NS)s9rN9S)s9 NSTp*8 NSɩTr*9JN%SɩTr*9U*NSũTq8U*NSͩTs9՜jN5SͩTs9]9]9]9]9]9]9]9]9]9]9]9]9888888888888999999999999=8=8=8=8=8=8=8=8=8=8=8=8=9=9=9=9=9=9=9=9=9=9=9=9888888888888999999999999}8}8}8}8}8}8}8}8}8}8}8}85N Sépj85N ӗӗӗӗӗӗӗӗӗӗӗӗӏӏӏӏӏӏӏӏӏӏӏӏӟӟӟӟӟӟӟӟӟӟӟӟ333333333333333333333333333333333333s 87pns 87rnȹs#F΍97rnȹs&M87qnĹs&M87sn̹s3f͜97sn̹s -[8pn¹s -[8rnʹs+Vέ[9rnʹ333333333333=8|=8|=8|s6m8qnƹs6m8|}9|}9|}9C8C8C8C8C8C8C8C8C8C8C8C8snιs;v9snι333333333333s;8wps;8888888888888?8?8?8999999999999wrɹs'NΝ;9wrɹ~V&6K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/K/+/,hz6c6aa6g^ _w~&gVe ֆkTP%oPw_g_cQG_z_K_kC_K ٝᚼ8cϜݒf]g̕?׍ ?HksϏs]̢7_%3?Z8<.;v;'תܔ3q7%lcRof_33Lǣ_uf+K/K/K?_o_QUE6l}[lKlm`Fmbfmcv`;NblVۮvD聆GvebG۟1vg vd')vf9\gv;]`n_E?矟‚j>n vd7-v_zE6l}[lKlm`Fmbfmcv`;NblVۮvّvmjرvo'؉vlةvnؿs۟y|v]ha_oov`7Mvbk{(C_j(ج mdb[bKm6m6mֶmvm[fmUv#Ȏ?OhS;Ǝx;Nd;Nt;kγ` B gڿfemckn[CW@? !C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C@=z!C!2~-2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z!2z?%dCVY&z!z!z!z!z!z!z!z!z!z!z!z!z!z!z!z!z!z!z!z!B=PB=zPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPB=z!CPCH"=DzTH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz!CH"=Dz! k{aa=[dYַŶĖmd&mf6mgd;.̖ [iljk{aHc;Ď?cX;ΎD;NST;Nsٹ<vG./?WoW7qn&nu=4–k#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bmڈk#FX6bm?_hߜ6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#6ri#Mh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$Hh#FD6m$?whVOK/K/K/K/K/K/K/K/K/K/K/W\έ e=l}+S¯"،F}`㧾v/s9ŜbN1S)s9ŜN S)pJ8%N S)rJ9RN)S)rJ9>q[dY־CB5АӐӐӐӐӐӐӐӐӐӐӐӈӈӈӈӈӈӈӈӈӈӈӈӘӘӘӘӘӘӘӘӘӘӘӘgվ+vl`36kC6.&;?rrrrrrrrrrrrqqqqqqqqqqqqssssssssssssZl lfmh#[?;ZxOLKNKNKNKNKNKNKNKNKNKNKNKN+N+N+N+N+N+N+N+N+N+N+N+NkNkNkNkNkNkNkNkNkNkNkNkNwUm l`36kCN6sƻr>----------S-qqqqqqqqqqs>==========5:p:p:p:p:p:p:p:p:p:p:r>##########=:q:q:q:q:q:q:q:q:q:q:s>3333333333 Fpppppppppp8uQR)q8e2NS)s>夜S)s9rN9SΩ}NJSTp*8 NSɩJN%SɩTr*9JN%SY-U*NSũTq8U*N5^9՜jN5SͩTs9՜nnnnnnnnnnnn^^^^^^^^^^^^ޜޜޜޜޜޜޜޜޜޜޜޜ>>>>>>>>>>>>N Sépj85N SĹs 87pns 97sn̹s3f͜97sn̹s+Vέ[9rnʹs+Vέ8qnƹs6m8qnΉ91'ĜsbN̉91'ĜpNI8 '$pN¹s.]8wqŹs.]9ws͹s7nݜ9wsQqɩ QQϏͩќќќќќќќќќ11ϭ˩仱qqϩ șȩIIęęęęęęęęę̙̩ɜɜɜɜɜɜɜɜɜ))1™™™™™™™™™ʙʩ$ĩiiRƙƙƙƙƙƙƙƙƙΙΩ4YYYYYYYYYYYYٜٜٜٜٜٜٜٜٜٜٜٜ99ϻÙÙÙÙÙÙÙÙÙ˙˩̹yyO؜ǙǙǙǙǙǙǙǙǙϙϩtO\YYYYYYYYYYȩTЅEEO]YYYYYYYYĹs={8pùs={9r˹s/^ν{9r˹s>}8qǹs>}9sϹs?~9sYYYYYYYYYYYYy8p9wgggggggg#g#g#w7r6r6r6r6r6r6r6r6q6q6q>wgggggggg3g3g37s6s6s6s6s6s6s6sppp>Ax g g g g g g g g+g+g+3rrrrrrrr}9sy>}cccccccccccc8p>|8p>|999999999999999999999999!C·9r>|!C·8q>|#G8q>|1cǜ9s>|1cǜ8q>|3g8q>|9999999999999999999999999999999999999999999999999s9s>|9sssssssssssss/8_p| /8_p|ȹȹȹȹȹȹȹȹȹȹȹ%KΗ/9_r|%KΗ8_q|+W8_q|ŹĹĹĹĹĹĹĹĹĹĹĹ5kל9_s|5kלo8p| 7o8p| "،F#l&qsssssssssssssssssssssss-[ηo9r|-[ηo9W9W9W9W9W9W9W9W9W9W9W9W9888888888888999999999999NAa=[dY?*9[r 9BN!S)r 9BN=N=N=N=N=N=N=N=N=N=N=N=NS)q8E"NS)pN 8'pNd8Nd8Nd8Nd9YNd9YNd9YN 9!'䄜rBN 9!'Dq"Nĉ8'Dq"N}N}N}N}N}N}N}N}N}N}N}N}N1S)s9ŜbN1S)pJ8%N S)pJ8%N)S)rJ9RN)S)t)ֳE6lץ09[q8e2NS)q8e2N9S)s9rN9S)Tp*8 NSTp*8 N%SɩTr*9JN%SɩTq8U*NSũTq8U*N5SͩTs9՜jN5Sͩttttttttttttttttttttttttttttttttttttpj85N Sépj85N_N_N_N_N_N_N_N_N_N_N_N_N?N?N?N?N?N?N?N?N?N?N?N?NNNNNNNNNNNNN\X.Mlz饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗?W_X(l lfmh#ڍm&o/MϬ ,g}CW}ogƄ1#oߺWqEm]~Z:YP@_uQPP"oL¿?>f_gNno6ѵ ?^B_9ov;ͧ?3;ͧzgU9k;\{_5okgYwެ¿~^z饗^z饗^z܁-_=_[dYַŶĖmd&mf‚ّvmjرvo'؉vlةvn+,d7-v_zE6l}[lKlm`FmbfGvebG۟1vg vd')vf_d7-))ج mdb[bKm6m6m Ҷmֶmvm[fmUv#}Ȏ?OhS;Ǝx;Nd;Nt;δl;kγ` B gfemckn[O/*ج mdb[bKm6m6m Ҷmֶmvm[fmUv 'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~ 'O@?~2{-'_'~2'~2'~2'~2nj1yx3nj1yx3nj1yx3nj1yx3nj1yx3-qx2'x|z|'d=>YOd=>YOd=>YOd=>YOd=>YOd=>YOd=>YOd=>YOd=>YOd=>YOd=>YOz|BO z|BO =>'z|BO =>ןO'z ^B?ןO'z ^B?ןO'z^BKy =/%z^BKy =/%z^BKy =/ןO'z ^B?ןO'z ^B?ןO'z ^B?NB: uz ^B?~B ?E'OOE'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"D'OH?~"ֳE6l}[lKlm`Fmbfma[Vmcv`;NblVۮȎ?OhS;Ǝx;Nd;Nt;δl;kγ` B gfemckn[O|A1b-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKb-Zk)RXKWE-RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔RNK9-崔U<-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDK-%ZJh)RDKZE Jz饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^z饗^zqo-w.f.j9ݬ md\w}n lfmh#[>V{{H1S)s9ŜbN1S)pJ8%N S)pJ8%N)S)rJ9RN)S)4;~"،F we5~FFFFFFFFFFFFƜƜƜƜƜƜƜƜƜƜƜƜ&>]@[dY־ww=6~&iԔӔӔӔӔӔӔӔӔӔӔӔӌӌӌӌӌӌӌӌӌӌӌӌӜӜӜӜӜӜӜӜӜӜӜӜ§4վvl`36kCw~{ZrZrZrZrZrZrZrZrZrZrZrZrZqZqZqZqZqZqZqZqZqZqZqZqZsZsZsZsZsZsZsZsZsZsZsZswn lfmh#[6Y{"x7[[N[N[N[N[N[N[N[N[N[N[N[N;N;N;N;N;N;N;N;N;N;N;N;N{N{N{N{N{N{N{N{N{N{N{N{NNNNNNNNNNNNNGNGNGNGNGNGNGNGNGNGNGNGN'N'N'N'N'N'N'N'N'N'N'N'NgNgNgNgNgNgNgNgNgNgNgNgNNNNNNNNNNNNNS)q8e2NS)s9rN9S)s9rNSTp*8 NSTr*9JN%SɩTr*9JNSũTq8U*NSũTs9՜jN5SͩTs9՜jN7N7N7N7N7N7N7N7N7N7N7N7NwNwNwNwNwNwNwNwNwNwNwNwNNNNNNNNNNNNNONONONONONONONONONONONON/N/N/N/N/N/N/N/N/N/N/N/NoNoNoNoNoNoNoNoNoNoNoNoNNNNNNNNNNNNN Sépj85N Sé ۻ,Ow}[ӒӒӒӒI$r9DN"'I$r9999999999999I$N'I$q8I$N'I$s9ɜdN2'I$s9)N 'IpR8)N 'IrR9TN*'IrR9i4N'Iq8i4N'Is9tN:'Is9 N'dp28 N'әәәәәәәәәәәәӅӅӅӅӅӅӅӅӅӅӅӅӕӕӕӕӕӕӕӕӕӕӕӕӍӍӍӍӍӍӍӍӍӍӍӍӝ=uttttttttD׃ӃӃӃӃӃӃӃӃӓӓ?`ONONONONONONONONO˜9{ y2e˜9/s^ʼnޗ77'zgޜޜޜޜޜޜޜޜޜ>>ppppppppprrwWy 'zW8p^y +W888;}9sy>}8p>|8p>|!C·9r>|!CG8q>|#G8q>,,,,,,,,,,,,|1cǜ9s>|1c'O8p>| 'O8p>,,,,,,,,,,,,|)SΧO9r>|)S JJJJJJJJJJJJ************jjjjjjjjjjjjZZZZZZZZZZZZg8q>|3g8q>|9s9s>|9s::::::::::::zzzzzzzzzzzz/8_p| /8_pllllllllllll|%KΗ/9_r|%KW8_q|+W8_qllllllllllll|5kל9_s|5k&&&&&&&&&&&&7o8p| 7o8pllllllllllllllllllllllll|-[ηo9r|-[VVVVVVVVVVVVw8q|;w8q)&koSLgȽqqqqqqqqqqqqssssssssssssvpvpvpvpvpvpvpvpvpvpvpvpvrvrvrvrvrvrvrvrvrvrvrvrvqvqvqvqvqvqvqvqvqvqvqvqvsvsvsvsvsvsvsvsvsvsvsvspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssNpNpNpNpNpNpNpNpNpNpNpNpNrNrNrNrNrNrNrNrNrNrNrNrNqNqNqNqNqNqNqNqNqNqNqNqNsNsNsNsNsNsNsNsNsNsNsNspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssss.p.p.p.p.p.p.p.p.p.p.p.p.r.r.r.r.r.r.r.r.r.r.r.r|={9s|=222222222222 ************::::::::::::&&&&&&&&&&&&6666666666661sL66666^|۟c:k_F............>>>>>>>>>>>>!!!!!!!!!!!!'&6isiskhj lY6rb9XN,'ˉrb9XN'ljq8q8N'ljs9xN<'ωs9xN'I$p8 N'ITTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT"p m66666^|/b;k_F7::::::::::::&&&&&&&&&&&&666666666666............>>>>>>>>>>>>!!!!!!!!!!!!1111111111119s8qqyīԌND~LLzPbY?F^#wnTouu$s-XmXZxp03 .`U~b~֠9Xs܃'|&XgX0s::m.?NJE`<l E0`:eǫb#?5 „ &L0a„ 'N(Nƍ0:9Q?Re+_Iɑ%WR&[p9fd)|ʖ͑\HZGG_it)u+Y_MyV~^{z_E^Ghɍ-Y`DߟSS-2C\h/Ydvj\\t|z_zRJ_h?iԹW~5gmwp<?#߯ Ϋ'=W~Gh5Y{Ym]A:/f~t?:og~8Ng?LER2ǼC2{Ϧ*Ǝx}TArз|k3y5t}")Wgڐ]2Ǿŧl_cߍ~[fI*?GXcOmW{ ~3IOո.O {u`fͧyz);xs`fg9Ӽ4Hd94洋{9;ol7`0aLfUfLd-O{)YVB_?K0W=rE~Tdȥoꕵ,o.wHC{eti߭3Gi 70sd{jKZc?;zO5t 9C؟. n߭}{O; 2{w9//K;kW0 ev >ϳٿ?Sxe 3I 'w{rM$sdLLl.^{]"|Z:s1>3`t葙i/g;iz9ۉ{&F39G^Z_14q$ݛF}0%ASP%ˁ89&y_5ۏ/=?9׎~P5IAǣifZ 6޽ gwc^lW0ؾR/)/Cl[,A h})T1>>R{1Oyo|"oJ"cvfesPPka?e7cǡTlosgGR2 &~Ps jPH0TS^?+Es c/s1c~ }yx01ѿޟ?hP݇/gm#x9)KuCn]Z>y]+[]kvmЮǵkn;۵L_~]N_][kMoR6l׎CuOnoWEjgV;kv=]h׶ڿ]{mdծv]ǵvܮ߶v]B_-׍گ{ov=خ{۟m֮kIj)|)4ߑ8ܔӾF ;i:^uah]~.۟mtٮܦ{v=A?{$迮Z3 wxg]EЮv}X|_oI}ji\]]tkvL;gN.O+^~z>ݮ#v}]?iv]y[z_vٮ-ڵϓ^Ԯm:9{h^{Nk$#+lוL%yح]ߔ:yI;jr|[Kk~q5΢iUG~XCv=!wYvmvoo׻)uBouvWnlM' RMCk_׮vЮoc3>sü~ۡ:]j):'Y·uwVhiyT.͝^ZϷMhVڽ]YzMшޘ5/O=$`^ A.zhvӮϵDʝ>Xv}]']Wܽ{Q.z2tl͒m!ž|̗rg ~;=]._'̝YtG<]nD~];dS_KYz/ Bwmj7vW>yboy!sџ}x}Q^ҮwNn_ݟns~]t#:}MgӒΜcӮv]?oןuy3k8D76v];gMv _1ڮ:^yd[va9=e𥾏~~m5~3vX̹|t -D#Vj׆Mo [Av]nש- G3u~8Cc@ztx~4}f1ﶽ}-aВrXl{I7^Ю׵C:,f3B.&D_ξߣcא%zcv]{f,y/N_^!>i$#裍^#g+簎mo__9ǵMoo䉽={wckO칹qsgS!_ҙ]?nć$=atםگl:{xgU=v3nhvkӏ϶@Tx[3w>%EvחAeGKᕽ$JwG{GZ o<1=uUяnh;[skbaS D;B>ݺi8^獼ޢnIxD3:'=/h<ϝOUz$~7;߿; oݐu|Z}Ptc$=I?[|QE=r'%1[sw/ N|6w_x?Zkk.x=<Ŀ_jIM]l ~k_Jgv{KnK hs7ăЎewSD})^C^/Hl*Xvw`gG_% 7Hjz." g~g('K%0mv/AOr3D^+IϬ!(.ׯڏI69ޣG~ ;v]G=:>eĿ||.7; t:{8stWbiY]tq7·>Nd׿@gx\|itu?2.o{&t>#ku}3&Acwn wbޙ;]\rC5_9Y_w_{-'A%x<#|??:T<gb7jo.G]m.!x}F9S~5;swv"w113>6H~Θ<"׌"3$k]mבr/<~N ?}OcFNy^/zYnݚz$Gf}[ȭ7sFKz}==>zԌkr?3ub~رFoH.|8g>w,]4t+:fv.zsѳ.̻no^5KֈIIggiMkrʙ8'jvwT &wv5YEb+ܱ/9yĺl7?.Y?H@}~7]Pyԕ:s2[P?\/:\5wt<7xbEjmJXȧAAW=G͝yF3~i ݨwnY = E/2BX?cy'7Egr]r1ﰺf|_W{ngAz(5'/Z[kJNqOl$_?Ls߮] ed"Ǐ%F~;NYvlr=l#/web/ttw.5]-%w5w&~#Yp+z] N9./Jv݂_4 / %>Gz/ߐ |@ wI_Q:z 6I&Зoxo~$hfxgDp|E?.xkuHٮgPlzW>g}]gvY"t\ܹ'T蓅1xwxij4>sqPGkJsG^Cd coL@wzivbFy 56ue[?_l׷%nחv:v}]_N,Y@>ڮ϶+zo>);ѽs-c|42ϰc>9$Gt8UWZ پ>{w)H!g|0_6KrяMŷyU?/i?dA>?'`O&d_r|t>(?D'Tbꯥw\ 69_F;E$3erQ86cǶG x7/}'^]?\,]U{tP߆ָXv3s7],3l/[z䒸6K{=c?٦wܱmo__=">h?]̃?.xyKۼW.y%}Cw?<<Aض;;Og䫸 g#A[?~_p_풍X/7'꿫e, E }͞n_*aӒc$Wz{Rw;=pvlSJ]5Ll_1J?i>?N1PcT"~q8w(wr|2;ؗ=?o'?-F'rn+CE^}.):VїI l>.Mc8wv<_PC7OgUd~ɱ,22` _*hb/5%Rc٘>ݞ]v޺G#?4q b%C9 _'}T>/w._lTp-ĹIq$i6~4/e۷&c8#plϸ'q4~cݵ7;>_\]Gg׎${GOfd(}_uY{"fm>_Ïnf>:%u0v+bVQ#}rĿ{䂩(&^ ?$`M5c=]q=%InwG7~l_sR__;ϔ5ljWZH-o thgg}K^vD:0KѤ~/+orסGz u;;ɂu^MJ-}krZ|M >׌] v3@/u>#:= }zVH1y Oς9WnNG=ww-Eѹè9Uc>ӿ@oy+z43]4ݧ}ҟp$n}kR9D _M~H~wAz =%{ulME/a<|k#BO- L|9`^M~"fFr2hu>w^nZ^ϩ3%=y?֌WgIQ*qn̹NW4?=`#=ƹNr|e3Βof%l>_Q_J}{oum۲}=tn~"{Zßul/E۽%2=gJsʘRO/EGcqjһh }Vg^zPLnKX^˯p(Unsw޾owCK";Wl-1}$E={x^Z|E?y?بFv <] MUѿ %hLS tҿ|VR=tG.v`/}{j?Lroˊ}AVѩGF~[τA_?6?Rzz2E3矲YS' 'B`_{{zה#zWa|9xO^F'CqO}_P*X RjY~q{c&gK\#~;;?OM|W0$2@z~wү~,3rYӝ+A~Σq'h]ChLJ_c\yzS#v=x$?_nو+_*Ώx/aiƸz>l'Σ~r16?^8+ ay5 % =o](ƚ+k“O1HǙeqC>{0sސGqagGQ|AAļ}o |/KozPWjazQk F>g9N7NfzO]j;s^'^J?s=}X/9E/.hɟs]cJa蟛?b^9$hyDtDp2zlSpN~ϐFfc;7L88ĭ=834jD/*_=]O G?7}p!y!:Gm|/{I{ytq03̘u,~~Y#[䒛K0[kFpx v;\0=!e 2: .c!^ueǏN% [??&_/ܜ=\yo(WVtzhn6٬wxFt& <9>A&=kNuaEa=gstd߶{;&5=VmɩEtr_Vӿ ۊύ)}].|𙱫}ɻXNlP9Yϑrm?ܞ -`@\<_F๖N[E;xj ҉e?]`~?PcfoE#:]Z";usOE]!j[c[?uj:HFQ? >q lY39iOpxYFg^u-С7KIvY~~8X'\^op 9A~M3`*s\?9|{e\{߈ -s0xZL,lk(gQ7 M\ЋtJ:sΟ:QN⯥#9<]QOJyck'~qfFp4X+ϻOF) Z\Q?ykS_?Ͼ] h?rUs;9Ǵrvڹd;3#r7~Rw9 u@o>_F{+E?$c~ ]/cmʣD>d%Ξ:%]iF=qQsO`_>fK{RÁ5gǜs?c}7s oY# b7, Tߨ.":l#aoWF{t=Xs5ИsM<皦q fl%6پq8'%f3NZD8_|OkuCj3q@wn ?˽.z8JQ=vx{6_b[[Kso*uXk u玹 s̥Ƿ]L.o,FN{x*3XMϵ_M:/̽v>Tɣw1P#)_7ɝϝ*:_S8 q(>S,37K~l*?IefQ?4lg6.x1q>E7qaܧ\p>b_g꒨p h:ca?15q_?џ;SKI6Ɖ޿ii?Z%OMxg5 цJ\}c|>:wi /90Ѿ֗ԿwO}3$aG_Xr/ϝ>| ?~aoG{R/d ׇEɛD?;q(κXwr7GN+ɩlq쟺xj~:ә}/`\agY\>ϼ69Ҽby؆xo2.+CϿF?wI eݩv#F\>N><'γ4;1&7qFWz^{HbAגc}= }fIŠvn"[u%rUJŸ7S2_C؊_o;K!i4vH">ھv".>Ω#0>Wrh{l3v{q䯆9_K'V&+wKo|uz3_XS~Rd\,N5&rm1Z]Ê6?%Om/Ld-ϏT'kCgR{G]{sR/v}CW3Sq' ?|Itْ {9,i ݃hUk22ckO/ yZVWiI1E]"1Y_#ǘ9,UybIPo g^Y-=韟Ja Cߑ=3SZy:K2V?i=6Zyxe=5y8"ދ{mz{7i.{$zqv_Ͻu i^c-n=i<C7~t:$?#Ƴjߧk}s1Y黠hn9KJ|Ƴ5{]Û}@up͑ːň'ýQA!}P$B rwyz.LPIe==< w1o('ڑqkG2'4 OT񍞽:?V/Y?NcDWC_&yNzw &6 ٸTՙj_;"ՏaÌJ1~N_е~/w<^Tvc(ױv@}Ec\?ijʍAkB"5V`rg/=ߔR4<Jiࣝs]Nܫ_c 4~xc*GPoK~w*gni{1<'k]VFNsԳqs2Ǔsj?w(WlΟ=4S~ϼǘJ<?׾E+>~U\<3>DJCܚ_]ÉéTd~N{1bj(+,ΑKJKR$OGP=lސF}C~VFG.}Ooˊr1B>}N?L,;1grMˌ|#y?xL;X?Sy6ˎѳcA?M ?ښK{Cy8eV ˃3?ΩsWnMeLf0{fғL.ͽ ȓJ>WIVg*J\ǜ?:Kڪr~F^c,>gW<:GϹs[T-e]5fdܳkhFgfDr>Jӈ>gW ]|4\ VM73d3jg1/НQzr{Bw9Iw24O]Ct3 SUTMl;'Eo(y}?Bg鰟J @ķȣ4kFoY|sx=٥f1y'V}]FNqnw>/gK{8U| kcvQoc?68S't޾rľYb\t<:k{>4>c؉}6ft#k/EM`Ζ,xy?\d >P]g9M;'zPǔO)lEy2-n6M_^Xeτd&CĿؗ9$`͹)fmܔ׫7s=%'^ts#͋C?\ٶ8f\c%G? w8aƿsże㼿L'KGn]S|\.:{GcmYO̲]@۵s3<;9lCk8qFѾj#N<ó?SA2 ]`Est9~ z9}dy%v,/jW.v]ffY}#_.3al"_W>M =2KL f_JEwѺb!'$~VeV.g%'zFn%]H6_IBm-rݡV(_߉flllxv(nytY5=ZЏ_&_-o,b`fо]ojY9r@?n\ KYݙ ދgK>)К\l--~#='.s]!'^{pXaim"-O&oE-ӷ#9:^p^싳o WvUJ{ABċ U9ƢWܷĻExd=G?@~ Նu}j9uZSjoǣvipIaN=,=KAirY zo,_I7NKRgWKb<1lcz~/?,;wkO/N0,.s+ h\L_ܫ R͝K$Niz,bbş<+|R8hsב ]Cz&Ǩھ0{'pOǏ]7Wt'\?Zgn_#._O/zw>'YJ ;C6$ SwEĈ+ɕ!zon'A?15L)d>B;4ϻ"r9虈߯|)򉓠f [Rq8=c [gn$ ;lEm{-{p-pk~䴖ת{Ntxрę`|H_1$C,|@?b9S9W#mgd8-eVf8ĿW ViU|';w<˿#Q_![ݾ6ޔ:{kqVq%睺5я<zu覣\Mv=S3um*w688C$^?.=|\ ԷW8ua_+}^O,Fx˲ZǨ?}xR9G\PcO.10>YO.| ~r tn+hJ!9C._T/Mk6W*GrJ>)NrYا-Ek^ DgIhw{w{Uw;ƽ);Ag6ر=]2Cwp )=Kߟ)~w.1'oixO>#zyl;TsyZ^&5Z*Οr}dh#}4g??S9M[-څqѿf.wak.8?4\Jo!12πj#?gCH]}A cֽ32˿Tj8G;'?OUWK!%G=74{ݢ7q1H=uI✿OdAы-.L51a.vv; qoGQg;it`ъ85<&@7DbR"bC%/5|%y<Zc.Fn{c/J.֝;lٿ#/DjCm.9g,?n=ƳƙF1mˊv9qc"q3آO9M^:!;J>F^.iƨ0~Qh !oz4??c4۶Me}υݍ 2}\j8Q#UĘK1Z=d-έȾa_ӟYqoDd䯈y],I~'¯яu5qOr1'%M?to'_hAWm9qȯVFͣ}q~8b|CbW|djRmqsq 3;Tk{,=A81L_l_+wi/?O%Ms8Cwњ!DF\Sh(- >\_3xOm/D]6ɩ`Xv^c?Ǥ30Ŀt{HF[b\f }EIo ?~~O{IPCg@_4;AbI>P=g3C#8{'>" ';ܟu~yd$滠۟?^#G>:gd3~5h欼g ?~X7J^<>cFS7E̗ T:7 _J>_\out;9eY˞dfkjD5\=sl? O=z{/2fn<ɡb~.Ycs? ϱ@zsϐ3RgW^Z]#kf5#OW.]"]BhC{.W׋#ЋF=<7]?=F:VT{Kuv3+S_ iԍ#N S7o\5g#.S堟6 G96nMi.:N]póm=cQK/sh&A?qʽLpGcxz M~sSpPssN3s1ku`1;zZ?BŽgǙfOӘ{Qul}7/"޹XR5jKGE#X`q6}_ }kN~/S6o/Œsa Osy&xs"7%}|o_G0^[X\ߐz rOj&KsL~ %υnAӷun { z/N>E.h)M_7Ng=vyFc[r{^g(08L/{NZƊOlE|Ө'mg3W&T-s^߮}9Gץpu*؏@*ƏEG٩Ŀ5xhfǛv}J﫟csSWCu2<zqѭ#93εcac!>AvzibF,z,Xo?o 8c{5Q3|a:g`\aBǟ&GW:K8Ïft~P-XeIƹZ׈8|c?R|GQ~#P|xh(秒k6uoGg)S(`Y\El0+\3éYV^I^W޹XWk/OsA|2_qbї]Ĺ.م"轢 >6׽i<bāl ogksjӏI]ibD|Ho›/"MNfIg;?ۅAo&4'CYiϛǚa\E,Mh]7Ǻ;10(,lMWy.3>{s6%`:zPgn%q"_wyt.Lk9sgJ`>ehĖ<_!I$61V9Qύ[)sSIσ,sVƳSwfI#Isc+.c}r秤$Hz̔w謉"' k [{>>32tg~Brf , P礂797^;>1{bDB?jE1z3'AYr1$E,I>~2:[_sˬ;{r_d\e%C'{?ӹ~smy"x[_+w~C)ycJS1 Mt"FkЅsRGDp?Q+`_+5; nлI yϿnL.G5%fte+8v=?.q1Oa=#j?EZZÓN!~znS:'?EUc{@<+GPdM^I6w9^0s?tu5CO<+^x?ؑ8 {;uČĻDx绳tk'A_(4l{~b~DrٿSߣSBm^ȳ%\x_3h(HgsMqSkn7Y?SgPaqr[ <1N{a?>Kx ]Tz ݓD.T 9}7k9G{8}$K7OE-}lc㻏?bD\9u KO5u&7Ju?k-6ɣg*?@d3;6鈡:qZ{Zo۞J犵_6n?'=&k1Pc!_p]42}dy-C]|A.~Jlزcߥ3Ro$㴿g8uǤK|c|Ds7?źeȻk !*yKO۟+F@ޱ𶽽ekǚ>QzZc|n˝q d!c8sa]N-9[c wJ6gI?\v.Q[h/׸_v?iT8?%^#f:cr}cǸ?zYc8Y|Q.LAp|WIMϥFbP9O*s5肙csǐ[ #^e?|/ M~cQu}>6?ײqbZJ2fYUs乧wԒZgC|_u)}ȥPc%=7gm/x6q~hMW>Pr=ɵ}< ]+?"A^c~P!S-`(-g/i]~'?>'1ρ#G!8s0 ;^$ڜ?\W~Mz˕2j殾~KFƪAo߸ t9C]ݑsNPyi? $e),5/ӌl5kF?g>[uW z>wS ӻL}`(~Nf7\p9ҏ,]K|?q韢%#b|qߦcsD9.sRbmu 1Gk\ɋSvg ss%cB9gz~9 F/}#h9ϲMKEЙ _"\ݛ_PG|b>MDm*%}xo~11tqQVb68``HZ~ RoO'Qnyz5~)?蠅/aSzenw܍w99Nyo^ ב[$ڱ-3F=zUe_k3r(q~ 9}aƔ]dlna!/o _ ^-Aэh筠jϵ:Z\9ݎ{cw.Lܑ {˝0z9'Γ>΍d.|g ANko(bFK]@L?luya.1=o z$W"3R)*ߚ[D$LL.[1fL_}$蟛 5uό}$sXcf%1^6M4{pPDh%sTzY9l~'6Dw!}S>#'p/N!btGDxO6v>O hxŵ']_ s?Wذs!~Sj-[JD} ss>}'l2osG~>5Ƶ_t QED\;p-W N,Gh6널+cbG;n,x3QY̽c1M헭G̍1bOcX7V;>39&N!WE!ӛ$2~Sß)_󨦛ytbV7^_(<و=񟍥 o\#p-~ǚ1yw[oo>[ZC~Y3й%Z{CG$sN%o iY#bK.8g؈kxY_ߔ8Z }Cl럡+P*9rO;753>Fn^lY s7P?#v@|LHvjM+'L / ?)DCקrudHg90[ {xW|=h zQ\eIx?Zf6 ȸ47q$Ut—}y{Ν:hO.^8sv>V'H=sn禒b|Q~cvH=o01bX|3snWg'a38Kt/4K̅s.L?_d.{Ϳ@錅xg[VN쵲 ~?5/ҙCqo*1Zy~X;;0d=^Ƚ< _:'wHE׿y.q ? q-KwjQSf1{eݟ2C3m =Pãcĺ\QWrJr{XSwE _:NZgyo$yc'ϲT맲svL~)|^`KuAGXMݙy3WR? G=:c_J}ѕѵ'oizHnyt ⣳Ad!6?\f#ߑ"# _]>W hG_ !3"nt\L8gܘ ١o-G! /8-\`~]wxaFO~?'_G! ğ璘Թ0+E_i.+ΑD8Ql/{ ;mq_<2>MbF(}쿩>o#~CszE~}pC7ƪR_@>sΖ qT?y)d;tO8{mKLn(#ާ|拹o~ܖ no#=Z5zg.w(EgwS纾n;Ltq*e#َ舿q Oy#9986QڧPWkqxFo\.s ϣ5Ɵ L}8{<B}:]{cΘڟا\bMzϸ\xt5\ rĈ8<5Y}և4~o5xK'v_o7;/28g$bYCR>wpÞ\3D<(wc9.~ 4 Ywʣ{~3/YkSo0ߢϑAK~Rv1.D3>zg]D!/it91c͡{" OS\cc4%[.tcY=ptRbƚ߽#_?փCϔ+pCB{^o:[7NF{%_K2KJ=﯑G٩gqo:@vlL*s~/{O{[[mC+A#u{N̩i04F8S2͗Os\1w2o>ԢG'nObroqӎMzsKO~QrTȾqt7ϣ{sm{rzc$uud=S ">gg;K;3E_еghv}{׿hkBx|FAu7ž??G-]5k ,ic]oSGY>&oǿ5\ˊa\ex&<ވz#:g=s ?XRWВڦ5:j8xvЩIlyv1|cJ AK]}"dnFGk3 /zyybk[KG+@-w堷}u`@D -e[F?">g^3r%]Š'I / H+~A?3譚9$43O2sw*ug6QЃ눿qQ]h_yOЇM/Sʹ< $w^GƍY>{Q㾆k7\Jx~xz~+>-~ N`7]WgkPxJpޮOI~i:_}*3PcB3>5;b x<-/a1ܬ)i߅q_[sW /F_y^rhgsø}[ s$I;/qʵ|GO|t_zlXhv_t:M$۳)X/йLq pŬ溇?1\hK w[s\:㏹N`A'.} wQJ53ޤ~9Fx_{wo\0~~׮_w\.'gd}ujՉQ1mFlWwI?qdƵON;FX Bݷ,#9@l{WzifD;~̝']u-⾈e7^,"9-'𫿩# x~~]y1X|!T"Kq/G^d b?b)Od6k Vx@)= M% o9\hA'#:7n y+>,#!>,}p*Y4uh7B2?saߨϚNeǜs"t>ױ;e?anNٸso8''kxY/kuYM)xre}O>}^w~;sS`Owh.H 33s?#?{?k`~qM/fgͳ/X@;ΩlU-O?yq?Ų;==KnX3k[݄Y`Cgn*>Ʈ~8DmՔ2 nGGkrrn_TW~')X1}Xk#pOsi}V/+p;'~:+1uҟw^#-Y ! "j/85wE"W+0wą^FD-XL R@[}B32~~>wnlx)2{0j: g9Sѧ}W#d!Boz {hX^coyc׸QulQĻ4=.}nӎƽ/'&'{z*>oSn%ë w(D%Exj%gI[_6[ay/M,<1/yiǏA7gPϕ}>cq=+>g-`o!^:3\fq^sޛsDCLgǻH'4(f`\W:\3T3:'Գ/|@tgفٳ+Υ;ПZ1c8} /:S=u'̏I] i3EJ= λ7;D~YWU'|l'W z[<~|cG1Iy?x=Yq1e83WmJk~yI)}Or蝘"#=0)*`˰\$Lo9s?2/?<9>*|fn˟뻛voLj˖eV_EĂ~$>3:SzǺ(l5؂K;o]Kĺ}*0b[tΟ<>~sC]xF>sr\g|3]S\rt(W(G?*y=Ux_IF:FɆ񕷚Kb sqw= 1_wo¹7Ξ,o?fs =hNEgY5ڿÙ:tJձrt/ Sޙz+7b Œ)(<Ldj ;u|6 cRZGL3r^8ѹXi=?wuB~41xd)NS;x{:$ɽ 2>*\gK8z}Ok_ro/Ar3[џSڹ)]p/ $l/]ƚ7@jX~=s>]"W~}]q80|}%7ܵ@0sDT?e[Ć]N^qX>fiw>jp3\?/fos{O:-vUm\}><_ҟ<rX"ïjF5ٝPm^~BwMo^Gȯ׉{L8E;C?kЌ߯+$~/ƣv-2ych^ ӗȖjso8scmΨfgϾgA#䬈O'!⾱[0}U瞵'e 3 ˛Q noӿ&xE8\~gg٪^D\] 9ɗ]߷LɠUB;<>>,k.E-⏪/~wqRWӉ^b5['sMvnk|;d=O~ h^GN Bk{k[~̻<;h~]*!_l.b`G 'oHM<4q}v 96fsw| QBxiζs~ǩPj||}7`Qix6 ;]}x."|ESѯUxLW6t<'{@>4pynt ]sجB/_U!ȼNďW;'5k_AiT#}To`,9}Ox/Rm~fg=W/<~m{oHB"E%d@ 9&'_ڌJGkۚQ{ʆ?KM_Tܜߦr{wF#ԭKgB\8'xD<I{gų}T/9.Хďgd򜚡r=~{Oʽ~ѝT:?r{.X/yoL=֦RGq*Y7sAf\k}VO%l05@){'C9/ ^'!z0ws;-‡!|5xӛYͨMOB|5J\<r$S bIWnxk|AW~4LUK)]_>ZSYۂg}9q~vA=nK2Mٴ*տ9g=kW6b4j5{]4PH*ދxlU|c2sjluQm1:;}ESkd-`;}'/q]{-Uϟ*ǣSF>Id\Kp&l"O]8_cn?/wrF'|r՗SoQ~>F?G_uGy#W}`t1yǶƿQ-.Ջ^ڽ(|U-}>oFv[W8d{&^>3Gmnw517%Nܞzc/#dE؋R3bb)?lriGS&dA0d1l/qz?Gܾ\=?yuZU_Qlr*ʿ}6MVNT{!:ׂx7,_'ؐx&H^B/|/?A/2g,|rrK]^+=eI,e?] 9|~{T'?{uM9흭[}uu|:v"'toE?,8oW2s~M*RCѿ8? Oہ ?|;=Vw+9*!,kd)!G;YYZtηߔ5wׇ@ w9\jfn~W.}AקFoΉ&C#+C)dr[Ku]!UAƱ]ګk~UΪ뜥3}~=-O`o]S{ߗ~O>"Y33wOX*{3Ϧ˃蟾&c]n cЯdV}7v}0!guo4ɝv:l9V5svl?v>=yD.winwxO.~mGSx?促^M3QSszI(w;c_J tb*baMnv-z :gMȤptv<@G=G{v = ^yha'ӗ~4-vA~m;g :]{8:s{r${ZG;c? _w;;O2W __;͉4}s{fH&Я9#[\tﻶ]ޝJznWK~O~*G5y5Wqz '>yĻ!>nG 5_;~ON9B>|{b_޳۸ww?wcas%'=1e{ȱi~v!?ܩ]%Ԟ/hB{"g.+|2{ugntRC 3~!Ŀ/%FP=m?)Ny'͒Ǐv>ϱk^@7+uU!|_#/~}Lބs"г43!GcKK5$߫>cOOM#[z.R{vsv~g\վK&9_+ q~GXsR'skvϕ&~wunϒ4B,\p5M~壐_6d.n6ώoZ]VG~oh#x2Q⽨\☗M'/}[.kgLf¾v9rU*=C{~7;=TRݖ7~en'|˗6|asmBmN64/۝:g95)Iv{kp8)~I/0ìX2wOsӕ>s^10(C/>>.~'sS/eJ=$iwvݛnxj'3 c>VRLڠ_ 0\0<0 91{cn6ү:<"g{Z$Yڔ=Gk` s듛S YDХs}},{;ߟRy{v}g~woC{Yo-m7l-#ڙa`wx9ĻX¬s^< ζ0=_omF_`Otc.Մ?8kLKųG3SMP]^R"> & :]tAЋLG>?{qmt;.Kd*kRӖM!sgj]_)/ߘc͸{fUR 9}ߓT&Rګ=kyk*xLqs5[߯_wkW͚sYBg9/~̚roʿ==EF6\zow|z7=Z>컰ߛ?r(p;kʠf {}Og`SxcweJ?Vd)>_#;;փd^tbg?&ȝz]u[NXFR{.}?$US8s~~S\x'$~1i?&+=k#;^_>8μv=q xZÚ ~۱K<^6bk5O\l<VÙ~ZswCO&V|UvcK8j}ǂ 17tO,s6͛B/ooIv""ǧ%s xQ.{dg/I/vyK?+d\| |ipY_i97hdMڿ)[S{Ͼ'vu8N_ 78X'{}Vː׉T3#={ݳP3+hVnϰskYQI.63Wƻ@ߓ'v7 _2J'zq{!g K coAk.-dȡ`w[.tUʧ'~>ރI{24ܑQv4@Oik)п*Uy=Oȍ%qnOށ}F𘰻b ZHSNm:tk=F/)vZ텟kQss TfoQg fX+F~7h'z|WړK=<'ٌ0d?]A9K"? #גC7zx&wQzL~19}.\| wE4dB 4/kSOv'}[n_B|e/C v%{.vso@GwEo*lLOɧY)zڊ'{|Y.=5{/ԏؽs_# +ɽ=6AXbcU^aQ;`?Msah ]~{ޝG>(1/y+\|/ޑߑKzqAү>sE)9roLݻK O%h?[kßudHda.Fj@y^Oώq?/~_8 \!_ bw ǝ'xIbGxlr&3q Ŀї~r3;>K3qK.~7lJ}_;7,hOw.>k{mdW/ t_4 k3B.mYb3afij0TODѓsɵAO9J?+g]ڿs_0{I>vKSa^yoD<[Zz~@~U!`Ȳux_=8Ot'j,#oqt~߿GK?/=xxWē0c\A9=_)u~}_J!Y;~I~ĝ*̦wu /Gyqu~ qgvՑkyZo05Yj7b\=WM?CdzI yB ?0±SV e`˝zp_lu*#xmxY;lչԍ>ReG{pۗ~lڐ<+ z|JЎk9?<ƶIwp^"_Ϗ@ Y74v_Q퀦b%=X֌iq&OO9#wXfks }ߺsf w:0 F7r{rٽCNw$@m}}3?|W=A !/vr{}ugH19pu,??o޳c;~&,wY>qܿ}O.sHȯb]s)Kd^׮MQWb7zngU[ ܯ?y>-]X:wyC>ߘmUk8uSsٖqv=}~Y%me~ǿq"ጏ~+m.Э[vLWpH1|RʞjX{R>vYxW qb*8 p61\~ ￸;[zJa<=0;_5W Ke-~BC7_yCr3SgH#F'Sn%ȩu'e =߷rR*C;5 ԧo-H6w0#gM (HG(P Ϸ}X9 7ea|ٹ{fO޹p@/ ?}q/Cg?: v7D53;W^UIӋWߐ|\~4cG?ڻT|*(-etm55]K M><p\m,W_tSl>w2Tv3 }`up43<>{|| ܹ\;{-xcS5M ^u{%O񞖆D^ag&K<=ro_K丌]8w4g^gHo5+sGڍ^JW/~yn}3+zs5 wbW?S_7 !S_$7B;䚞~e!^'r',q{Hu9Vs5Ej~gmͩyGG悗xW|w/|/x}WGsΜm4ڿ*#\:M?(s-^9{*tF97wwx~?& Q?Kvm+99 /tqC;gfn_ZcCſ>³}C3 9Ts~O4'L#y{\0;O1C| b~x5G/pc۬ OGfE|~\5ܔ > :S|x7\s >78NeKAdwa&iMnU}SNwбMl Z rv&F;Jaw]\c"`1OT0O$l3Ir᎛uq}GO 7W;֟7wo9F$(/~)<Ƨf6 l2LcЧ7kqfu*3W>z[4?Sἡr\zy!ef_;/n豐]kw$}$tL 0,cl/7#ln?8yq1iށ?&ol_0f x vо$v#_ @QE ǿ흏6GY:|}炟 9UDq߱{& B3y˰kشV9&̇]K{S;{*'/*xΛ@0u^ \Oօhr{G6?9ǂx}$Uܾ<>)x } f>5={BGK:xa`Wm 6#F x7ʟ8|8 ٕF3m56 ;% S?Jq}7S;g]uΎy~낇_MRRAO7D_|k~ "Ҵqy/$|թD+FrWCvTw/ ~!v/kқWuW/v?3ҮǿY+>~r=· NmFq yM~!S;Rnu? f σ gQώ%<"1/S 9o7V_ּfϵ}d^𲴷Ϯ?O~A/`ya84s[Б؂˃o)yRՑa{_s>ҫ's;?a_g~}S9{w~)ʠyMKЗsr{g]~8WP/Ej(Xp<b^8N )Փ~v4]sg''R{?rKF"Ǐ/)o帲.iĐ}9+]x/bgPy_;¦0տ3\JiSG{9CgT] =D8"}S߾/z-I%+_p{e).6S\KM U,[S?e2dzE3>ʜ*u^.6횿=UݓR߫sT_RߧإG>]r)w {In]r:䜑]t;uRe볛]jczfSvjѿ:oJezq;~Y?\;"oN͚LӦpkCv6s8 xkT^bu#2ub_2;8|rß/2[ߙAҜs gOJm(?pksʑo9;=]t/do/ g]F{~s5jvas{ճ ^n7 ! vk;fzѡi_4gsb?/g{{f!j5\6?HNM~?s5wnۡwҿ>eAϊRjC>/~aC_w}. gNyϒ4~c_ՓgnϙOnwM|f.jc. =7G3v~Ź5\w Mg+^J_%BGk;~br{{ _^K6Yi4<wKaYik;9%y,"o> ]B?K:tq/m\;ᴟ!ώ5ͥngv,eeM-㬺t_0LPۗթy43;He.r" ?TN G|s.a}[!9)eCCF?;qk~o.\ZW%5 S8cғafvg>nӗ~ fU'SkL_\ ?B̾ER~ g(d4}޵qk\Ԟtqѭ ^7??mB/ ؗTsߐ L_>vV[#3D-vgMyV]Ў62! ?+9jι{߽t\w\諿1^,t}:m! C/T_oO,ȻfkekkwsMtK^S ҨGL\܁jUqjqྔF`k_sU|fنÚK?w"\e`;c S_#uh/w_-aˠODm!'^r\w⬘^wgM9{O\r~᷸MwyM?N%[Ïe0tzϙ `;G?yqG< }WҞqG591; !0Ÿd6J<gJs;Op7;STtK`763H`oe 2K W9aV p]a;tI+DSߣ-Kao*nikxYξ&^Wާ;"̍KBpg1BC(xfftf|/A? ;{5-;:96P1d1#524⿵/Yxpw,q|}?!%y$q03;Tk / >>dY.]̐Va 2s|6;f4eN?`.Zu27trss^RoQ;|ksܿ0X^C =p<6;e{9}$&cߌw>s̯a_׌dn.!/k@)a|>F?K9Ngx-L\hgvwC~NS Tz5]kgffHx9kh^> sHذwvo6UJw:e&?o2(IrSI%KB0/ }M>0Ï^9ڟթ;FX97y<]팞?H7 isօ5,d~rn:)gRz s1 E_ ^?M o _!OCo,F3E*yW}AWRЯl| |;Cw !^)3p}nދu3 CE]Hr`ȇ)ƦF}PT?9¬;$zٕ*34cjs56_Or~\=#~ze0ؼO؇ߎ _NyXӦoӴE>zh;ǟvo_^ׂVd`up;&?MtչFa.QxGA_[ڸkL7+#?kߒJ֐x]ȃ0+\v-(t ڴ>8d,?Ol? ~ م-gŝ/OsS=;س9䷶'R; {7S*v[=&|GN? L?j V*x'L}x뒎"Y ~(6 Gytͪ\/>;J߷GxC:V'$0 {G#҃If5פ\ǿʹc.k)tx~oK;<3w!OtK|-x" ;W-~Zy {~}}#Vw/?kb =v1ď ;З+m`{݃ <]xI.{B7/e#C!o SГ&}l䯴xteS{4{,Bg!}ڝ,N{[QI;VViι&q+z6I~lߟ>w!_s"/S8dࣻ\[|.8Yؗ~e <!dY%aP;1}4ʫ`þJ[Q} S'>xl/(}xrB1 9t?EK)_J6${׸}_Y5o^mz?wO^W\q!kh=>C;3;ǧ?'o>A&urT˃_~aw}??Yx? ~5C]1ͥB/ʼ}Q_3<AxOo&usmx&tͭ!zG@TG0y%Wo X>$xɳHv»kO =#HeJ5=78ng /L.UnA"𞓻C,ӹ埩!䂼_dw KS7|ː]S|;Β}@  儿ߧc ?)п*t&zjyϿ.F͝#ǽ~+f @@~1>T}}׏~< J^pJ _0w⟻]־qk}r>?{}ҟџs{7/? gПC <$^ׂo캐M|;v;Q'M{#?ڿ쪗>Buܦߘ_s{w9v'Ǡ^UCUN \!=79ЌO?0S?{vWΟ/۹]S7i}_6~ 7_/K9]0?:)s4Liy}Z*ؿ,pm\a WGlY8WKܚ?׾z\_sOY|SnTzwO.L+ IC@zSstW*siỒ!_tdweCYpu4 yv칩JQd[,cB~\9{N[} ?!/w{h^J}eʷk{hw-Dr[fWC)מs]X"{y)v,;G+y6IK{-ÚKfO[_ing}G47o~axɩ仔j|rOٹ̱{S fTwP/O|G*3~ǯ>>&PDM_:Oѻmy.:'p<Urԋ;g_S۶:~v;Ip]^9߱\r,+}3~8r;# ͙FQ@fգ8dQRzFyOg uؓh͟Hmބ\M5Z;/LmO x1o zϨA/#n1:F6i(Y{j*;Ux]]xM\۟R~-4ʍ[铼?31Fy|_rxq |d}ȖۯM>Ƕb۴KY3/f8x/ιo5k GIz~Uud7?VsƾvgzwGCt!?Kao_ʮߏ#{&=>=9!?<{Snu +/Ys(vΎ [+gp㹩^=_ͱ}1d۸}~//- UF3~?|ḂȲj3~ǁ_uy~?H.ϞC~ɧo^;w7w6n~ӱ;!ҟC{{_ `#| 7-gտTrOj/W>5KLCmk? fbsG<.{]k}}a/M~ɋR&ܬ\߇q2~|={d*kp}w=>|lf PސJFJ_swε~-O/}]w1S_8fEwp7˨/1Bq5գwon%9.L֐%! |;S;Tα|~ΙaS }&GPZU-Uڼ\;?tK8>'="*rL_ /pcP?}1Ko ]8c}r iI04#9o^ٍy•{d?8}k.L-zk*}}w}l Svc_}ν1+$9i{cXK#'se/JY}\nycԞw{RD*_CΏ1'#rC;nw/i/ʱ'=G}w|{.Cԏ79_s*+ǟ̓_uf*ضr??G!W_g_K Cm6?V(4\/].ȅgwѐcz1J?3:w*g\=h9x.cmƟLb"]OD\_-v>u|v?{65rLĦcvR=j_ ~P~?#|` xE sp :U hw_of7 L~_f]zۻ]T/h6oy/wtsnB&dzrß@zw˥Gfp@hwv<2v y.Bqb?⠕}M}l'vC5;L;?yc|(glkrZѠYB}fЍWyOϥ'e$ )w*!;d;Uޗ^ KFcvyi݅#.,x=A:[Cv!a{O9R;G؛G_?L]ߌ#Ďv^̋gc;G 9fW,9͸ݾ?}k]H = ɟqj{${uε/ ~}vxUϭfʹ{*⚷]B"Yr.0tiw({ Β%!Z=s\_}vg ^þA'^|<]wOvkF ٽwvvwkF? ,{8?ݛr߇=$綝e? v f7 ;U0kf ;ֱr"Kj&ʣk3`/ky!g{T_Ƴތvfi; >MksͦAsd N4T9 J{H}~T+R5 n9^I?:#| xG.t*;wgO|)3sx؂kӏowsdwDr}5v<39a{_7Nquw%n]Gwk?~Zoϱc{2𚰿S&?R7䪙+&b1|Jw.b!=ڋ6e4vY;Mm* s^>F\޽?f}KkXEϩ_`w2>|Qb_o^ͦ/H_ڏ??Y.b-vo~h<拚5_69sß@%iHq6u{_}b%.uv ~=~]<;%o YرWї~ϟ gyprD/|낏 gxw_Rl0wyOCwAžQ0y/O6ϛ璛:Zv"Iq<[7r\Vb.FןȦ"4)GN@lm%;ɯ<,\x\{v/Ŀ;.5/Oe>3yKMX{|Y.:k(}9KK~Lc;=BK&q|}bjrwU>éݯwd*G]z^\krZ>zg\ޯ ְP3ݛvX_&'9L̲E6e'>KvSeTTfK_~nE>5Ϣ8K^?lk߀r@5MT|t'sU12:tnz:K 9๔Dž~b_E3ľ6G8ȅj>?%O 3]Gr-#ׄou2kj-@r5/h=8_ԮC^f?+|P챆k~8\䀺+gQ9)]Rv]=#?Elv`ȯU]"h^\|CjnsF<_im7o}G˶AܰWzP+y_h}K58WA^ޚGY3񟱵,"vLJ<64ߡ&ЯgU;NwIqF?6xby%Fٰsi7F6ƕvbqn}?}zf߫կtt#9?|Tdy!}FG+}YOy係^Ar~ %g~1_ mS4$Sx3`Jmf >5BVs{Z҆?L~Eg;<)_}I '_c)zxv\x%PrxFr'R뿎vYwW7Lܭ/ߢ}Wbs!bON#' /A/|>J C?_mb.5+lfAA/vwSПĚ2S?}?ȣ=|C<-v{{9}wS]6>+RޙwM@QKGsg)x]Oթ;8ǖY};Z?׾{aGT.O~!:wY;+U;ߐG:~'/JM\XO/v- [ܗRWMw`Q_ ^tLv'P&?;78*xO'='lԏ ^򝡞D~O#~z{+Sy&YM]3 ~4N}^ݩ?5O\f}Ȭ˩ ݣ~gW@ 2t>ߑ ~Hᝳι{{QNzϿ}n\<l5ݑir@x.lz{_ )߻M r*}QuX}ĿLշMw?mﻆ ZSH/>ioo ۃǮN%{}1zR>q$kLnU_%.P3?|cChNzx\^=z]D\H"l2z|ցu넻펿Y;yC70,9{me:4q|^ H_ys#<4LW#.3Cxr3;Gvpl.'{q*ǟ;;N_! p,JsmYMk>ri»}>%'c?3={6J_{/Y}? \4c.efT'_4t7d}fiR\,mz_<ڼf6ߡsVkWӥ3U={pC*;W‘}q.J"6yb톤džwp _S=#DvT8ȣrȧ.ޞx;}u/R\t_λ;&|B?-/t4;x_&*щNN<^{={?k_xuȤYAէ0(]WNʹ6__9|<^O9f0D}Ns}1axy~{>~ySW%6`~_9%{_4$4IHm;vZqoG}ڙ擶k4S=RΜ}/2 97=9;wNޠ馿ȯriW߳蟿g#>?.!:n?W[y;o9Mnʹ8>(rn. 'ғ_Kxƿͥ4OR\S"~KZ2u1br]%ՏLJ-PÉՏ6oÅ濛wV @<άm :c׾ z←];|E-ʹ;7λ jJyV,vqjl]W wun]G<&ž/?z>3,;Z']Z=o^KM%Xk2%y1}}&=xf72߇ڟҗ~ljECO]'O\3T;Ok3CNW V'܅k? gӨƱ;/zf~ sK ׯWlm*3U3~U)iy_kG0XǧQL3R^J}V?=vJ>.ߘsut>t_nBä/QL }g{>'t+ To%/\0@Oe9f]s;ij0>~~/fz.ۦ>s~Wr}r.khm 3 !+#u>;+Px _Ռp@WթLz= DŽYmu-S`iR?|y旙eU3w U}1^a}~V}#CL1ì&sFOУї{ 󪘳bSR_}nȌ;paA`K4m+a)0{>{`hb{Gƹr,#@c?kޫ~h.Wkxm*:T;-5װg crUfٰ%vY/),L#3e0/&ޝ끿+ ȮxKcM}Qq^wWرBϠ?!4} ?\g o(l/5#z?JTd⩿w>s`ct¸eTxu/_4ow,*`_$T6:TuwXz'öb?;F9慅7vG*;R;W?Z7t}-8~1Hm! E bf9[l,7*-̡ۋ^uPgW.}%~ :n 4;~BxLn/թ`bR }:4 ޛ ~y7Gt&`[3\_*9ooL/1'GM薭CO+޴w<'<f{xYԓmwy6濮w}V8su?ok 6 9(m|7|f0NE;s39ar=š<k_y_k4뗂o\S N~`|`τ_j{˦@> lj}8flؠpNoFq|y {Kyr{n?!Ljpօ|ۅOxJ AlL, 1<8_SpbM +'sxa.8جHOj2^Ƽ\rY~Y\ -_v3*}vrUQ=e7)cK?C#|gĻKХ""e߰_%+<~pi :A;vmy3w~njj#J6MO^+cwMك)?w1U;RJj~ҷ'ow ;=|?_2, R|}q'E." ߶$}SF`9oJnҵR rΝC7zgUܵFp|ლ{r{ ϯ'e+K%۹FdŹ=3CsgY"N< iJ ߠC+rO25OTr@}Q|*P9&~9 /$D~A39g0߾~ßt5=<x?,M>#ewMwapg?mǖS|#^, {kqg\˼_6\O5>5gGĿ G^O#[ݟr ׈.+ݜKA+4:΃}3u_/3q02L 1f=HJgbRN<ć}`/oL%;s2+^8tTSՎER[i6va. 9§gSkRG5>~{~EL'yo-ц >!dKoԇ 7. Z/GozZݳ~4}˦@T'R yD/2,}b u l0q{6Y:aؔԓ4K8..IM5߀.yq?k\Gvu`8*;DF֜~H/nɩic7#agk35 ^]KNߠ*we>9}yq)=\?1>x5=sJG^\S\=8?ܛvC+!:QNtӗ~y{ޗ8:3(+wVtӿ,|rל Yv'Mۆ\ϩ zkS}َxDnN/ 9>6n7iq>2;my<8N!1|Pk8Wo6m%/CO=u,cυ-ɬ/'.KͩWjSW3nk~;`y\0y K%_|{]ϺTrX>6ث95So-sQO7q9B3t&Яw{R>}?W.(C߾kGʾs/~Y<\;~]{+jڛA.KuI<=1}3~ss"CZK.~ٗ~s깔qž @ՕU?ݍk~okGƵ/JgK.5$~x_Dܵe.yn;Sr͋sTz~bٗ~שO^vw\/GSŅ ϛhzݼo#qHY罇DSsIyX/]+|Rp™Ff ]]J3~$|Z8DN{NOe([u$p|O K 5}ߟ~vao5u9rM8E5)Y_K>xs5dgg}=W{ ̅c7$=]l`r8nӽg;g/9G(=ϐsiXY4/31Н/%}/f2?P_$2:RgʗwY']>+7ܦ4&kylן?:Y,|6DU_wKRψgY)2k8o|2T3%C__<"| SB p) uM*Eҗ2l2w8>Cf՘Y#_;p$8a ;c)@l57sG`ނ<2/=jr0$3';͛BbtT꼎!"Hw&hg\MSsϊy_mF"/Ww<ﳐ ##TҐA?p|vϞk3~8 xaO=#Lރ㧁,!sGBsF掘)s:+kXde/jﳜ\ =脧%Ϝ'lA=?:dh~/צ]6aܻtR.±`v=Lε(|. ћ`ay"m~>+ś?KMmn릍03~8 !c=ֆ=Ѝ_Y#[{~#?j{,,y3kN$^%w#/y x'#{aB>b {wIpkȄxꐦ?sw_a1/!3shV_hQ<¾}I]afwi7n;;ςlJn}o"d?=7s־~s lED5  )}|ƻ@>?b`GN9tkoۻ;dX:>'xçN~&^cIDz&6料ff=AX@3`+`QÖs|q |gse_~3!3xc۠yvǕL?^ce=j++gW5fk߯՛K:jK_b^`k5舰`ᾼ)>t_ʮɂև }ύ~A?~ݹą?m#gxwݳ)Я<OF!| D_-+A]$y?:iNxg`Y|dgsj89)NH=WxTfMyTr@yEpr?t»Щ;`Y_d[?-L_p9/l@lM*yZ=%q g B,zrfs _ʞDѬN%wErS zM]FjF)u rI^Gc!.`q2+|C2WO >5φ32o8b{-|"e'Ni>"5J)S>S.]J,}^~'~m~_Ľneg_|?<]D̝wfUyP2 HA:H`InrcIb%^1 WM1"F1(H̡|ͻc>g9yO/"ޑ * |8 =P#p}wbzjuʟ7ewMXjk?Ω;/%Gv+w76 !ZԔ3Gŏ}/zv}ҥb_a9>:ۥZzw =AMqpw59/.6I7hʅFZ}}[q8x&Km=%߾?pۯ;ߴ?#! A?R;O;#KrVM\i :ySReˠ}ki\+al-ӃL6>Ϸ=0;?T,-)t>'C bW;n=Oޡ_ _D/;Ν{ϛ#ڕ"ﱳĹo<_c̿[SrXdži~9>UޟOѿ<~Ӯ&t>6KuU|!a#l/]9qߎ3 29Oj\K[={}Og!V38`Fau*xRj+Ar<Ǜ Oc\Cm.v=f|!)a8y?藏Mn&R-^!? WRLw./ Nu^4v /]>+SU&oHg_G}^1*vcd?pe6Z#r"ѕk\^ߓJ&ܤl_kW"2r^JGyS퀟m OH~d~8k'LŹ~9Wӹ T_&s>r[g]*x\p;džKzfӫFNLސ;|}^9_,o:Y_SLFNJ*K y}#:+=>[w-=Gѫi_[S~O;zlggcܿO6ezAw\!}8椾TpbtBȭ͞??Såo#9n߹rfGuxF8i{gD( bT jGj;~ߤ5/Co^;2{}I/>\5 ~yO?ok6~VEn<,QO_sHЦC7_3L%6~ߪP ?o4m!SgŹoMR YR$Տu\w=n9Q{Ea*w(ӗq+)y@ӗ~($<"zl!c{|7R[idՑBOyWi? 9sN%йGާAmqKtuij@[|&eѯr_Be~a=ڝW|k'Rف6{U&{¬SYr|hw)T?x[*!?knxɘ:S{ϔMhO<^3K+T Is?}>KoH/>, Tf~ͭ'%^T0WM9,?7z׿6rɕ.}q3}}釧6??/B?,{dXטmߜʬhy\zn_k?#Qz~rUԓ+\ǚ>%n)̏w>`$? q׆ܟҗ&OIT~_}采U[Z`_g@lxT%73>~:_ƧR}ϠjCwvε{}>&\)տԗ~E9~f8m\_C_\lǴL?r9hgwx;n7; SqS;g+}:,4B71?g7&̇}?z`.Y:hDsi*Uzrovk_?Fs sg;;+$ w_r5? aގyNfL'8Fo¾9Xx"3׿_!2L3 …Ӝ8<ۓ5\\  /w.~3rW,;{!ם]!j7—7g_k}"kGGm;fKэ̎ Nxu/>ִs®ҟq&oNo{kjndϳ.N GnbqP>sI\W>Xg?c̢"`avwܦW/>7㾵ق_30؇o#DX[4+b.^xӼI~b\dW^0b'oe2;GlAf Cq1r.Ƭ"Z!'P:=d մ1LC샩KXx.5<jWT;\63zcŹ(BO#,JPl11%{+c%Ww^מh'Z+s{;>=\4!–==|}tO8\XsC~!`:~ǭڳo螿z(NĚc֞s͞*kvo ak;$/yC-k~o>r!KjNv{ijtqű qy;л&xT'7;6g._xnv#Ӡ䂛z_=zSd.z 7{uS0|7.sx䵼^sɯS9^UWvv=8{|Ֆ>?tFq/]P1vy}[=<;zJH&`?<9anT{h\lk/|&G;wvto "G!sCo]rMN;N&??_A7d;=)nCKȝ/ݳB~=_~T| k{}SfevZpo/yAƿ*xЛ`s^=m29~)}|_{לoR͎Վ?/a2Ǖ킯+zp3GjQ=|󙯉{v/5Ē _wν[, BCu_svc]^"g:~ >ŲmC8Obj1'Nwq{^,q$1 _x0ȣW;ًy{]:39oTU>sV }Z?c4:+^ Ԯz-|޵N^8l+#NsۦOD<֗~^KN".ϥ:2zZo \N%M \}wgW*9&oy|_&; ev&ذ]/ǻ~D.AhfwJkg 4㪾iI98l.㠇.|[jdz}9zb5\ӟ/M%WԌa\w_[/ 9@q BviNSp.PǏ˂%2x^#ŔȩvmJ^ziv*1$9OL7=ύ,|v<!aϼy~ϲ^틚v./=ZJT~MQ}йWP}I޷7m8բ}3w.H"+K+C蜷_|d^F9CҸ_8K/1N/_)^*|Rd@xG|Nx%O.HxD C ֗~Svl1峐#T#BFOrQSjZ#gyCo? \_o<PWRC"EnͥT1,K" NjVgӠ2t CzT)''r&lMS/RaeSvR֜烔O&zz+e_ _mϴ:Ky˸C:glΞȞ _߰ޜK //yF#XЯۄϹm*ѵKe3ܭ~且߀we?yg}q9&y4 / = [!tdsճJLs];\*D8ӠTf5;;_VbvZ*oS|/$G%ȈkTCzǭҿ?Jody]l;K{vs}:w!/̽{N*=s\w@\ֻ_O)Az?5E/_#[SOsqwiJMɃRO=vJGn_ǚvWo9? {Tfƚ\zf(i\Y l`ХKC8ZG:-˹"zMξiCE]}/>vbFCm \=ssX=dhY_9s\bgOe~}qV9#4; E{ƏF.)oUS'C=<w߀wԃeP3Mw^sv}P^ה})œ87Yߩ#6$5׀óRxA(N~|o{8.˻._@/P|sY<<E.{]N'_kLefi鄭Mf9xE]9Υ/m*|iݿ~ohK2x+s9'>_$!zDXbּᱡ~AmsD*{wYSϵ|TwrL\?u~P-{GĽc>2@C.6zo+C'}7އ7/t{#ʝ?qNӟG6X5'7e~󰰿AT}_ImןKg5f}ށ@9cЯGnL,G?wξ?,]3 b]jEoz_܌rWľĎ Շ~agO8^!3}L1ڝjȵz'2~>?9<'P>%x}/^zP#y%r+k*r'%sBl+s~rKv9ؿokʽ^|fqx_@k~ۻ ž!}.ui54A7srBvr3ՇMS攏h߅ewgA%?b}~;FyA3vxVw9Bd8%3<Ξ1 ^c@_ϤU#fyr0y"~vI*s2ǂ@9 yfo ;gn:#=p_sų,-G)^w 3l?;\f~>Nq_}}gw9RϿArΊ?oe; |N 7%%Eҏ=REX?zMq[ΐ]X_75 Ӎ{ѝ$~ٹᷡɝO@1کVK@+=uv+|{0K) -t~s/K9t'=ͅOn&B>*~4@K=dGb |?TW}nEOEšKԎWWD-w߉ ^W)L  GsU3J5d QwQWwͳkn.|Qoo}?_|OO?||xҔ?4㈝ tl$'ў:*O= ~4x\yyΙ{Q sK=W t,yTݗ~/!_9s޷3_\`3[6%|F;o%;ng~{~(gzTz[dM/ޕC~Ky{ܸ:Ê X. [z^z/?1j|uQ\<#c!#>bB_kS|_3} @bxѾSR{ _{ ?vyUsi>ssY)(/rL[],L_>Smקw_sv\}VOv'³ƒH?}F_ [;q!'iQŶY3 {v΋r\|u4񞖙|;.0B+l1;?}raжI<4.U{Ԝz6<R~euzBȠl)>|O_l.UdxwZG6 /a-Xp3Mf)wlUY*\篰o9v㹝s_vM.;~O噅%ϣ=Uǂr05\pe{g.OfmpЯ!}W}n43l%4~mBNU}M*1gSY!fǝD5;ޭv%b`}rK_sm3}}5qބI,O_8''QnK~Ͽ-k%0DMvc!c/TH>_2PZ;3>Ux\e>f=0_9]rCy_%{os`,[]ٸwz„y[sB_c7ߗ~xz\>%g"4d/w^!~DFv, 7xZ.qpV7z)wyj8=֌毙fuhޚ\˞[S{.:|7&dE.,?k_IzP;0~E<KSMciT0_M]ުs>}/NT`ӸOj;f_l> _\Vr&n|E̻+xg_Kx-9 L!sa?0˼5- [25]!ߝ~̺L3&lsj3 :ióC^`~JEXs澿:3!~wpQf&]5̟NL"_\|'=N;7 qj:Cv,s+W6@#~ ?kY9j?p)/oIjAc?tkY+]ȱf{C>]H;EHj5+RUbƿfpWE{)v'f ڡ{}0PةR\He/☃9hfVVc׆ @b96?)aǽ7hЩ_9S<ǥ؋Nq^iw)lzq5Xr >!`yu e*>d*OS៯Ճju3~Vp*sIeoh~,O~`piy"0; Yu ~>ԃ~+.Kܧz.{~)4G/LïeIS*!'[ު I XQksf_Wo~~ɯM腇(?O`s|%N GĹq`>7%!]lϗwΝ;b_m7qr=XzQg 5+RWhjB}ޤ+eq~[U.#꿝yʑoK̆.rGagb%^C<~?h'RңvYq=>ExFMO\YĐĺ< E w;{] l%*8~=] ž^s_8i͑a{Bs.;Rc8n=/}}ޱj{jp ׌7=~gqYܞsk+ŏ#>ȋSoR+t?/$}qϊA]\0}%zL3m`|P)p@4d[ e ϐBÐ{4-dTǟtp)SKH_Oxt&10<߮e0q%}_GJM}i_פ߽ӄf;⣩&y~.;%ƅV4t_}q6+\`dO>ܴxqŝ?)ЛA1h_/mf'9w#>xwKv} Qڔ=E.wr:J5}ku.G/q^vxww`CF?8yOWo a|UW5IrzJ|I@x _;o}bxӦoi;E'COefq^I|h|oG'9gt5}C> ;&,ٷM~foK{X.]GB>fϹ9Nvw&!;Ց/mTnT㞧Z?Gs{Z?p%kb>sf4/AIQ*0y!(2⃢__x#ӫ[5ewuɾ*4ދte{Ur{ |/%U_vz/0ުRQ0ر3|+w\quydxt&u C4>7_lWY?e +ӗzhxzvعF}jSf=8>+Ǚt/|$>,>ڹ& ~}(ޛgl})k,l?w7\s !_0$r9ǥW9}eYXQ5Y!k]s7y=վW›cu+r>y}0gxᰟai6_s!=wH^^؍ߝJ~.;}Kom;Si$CR.nC}.eaev(g9>/}Y':gy} |  b~/ꓤ[ZC̟T|}{.!3>~EX (/=-Ԑӓ%T{RN 6 jiKw+k܍07<3;P}v5WxV8~<:Wϰ?jw;=3 {o/~~ѯDž'2z:Bܔ/rlSoVIf}Jwqg{_9?l^ywC ?$hV}q/'uaGk/lqхc}C{KB<_mic++/x2{8,awX8SvͶ~1s}c*9QZGm^FO?v<<ɃsϻBۗ~Xq]䑞z, =#䂄5:g4N ?A^?=ucdǡ2z&kWY;-l?3gzyљ{L/RsQI~Uwqn UjP_'{.ؗ5d*{gf7=ؗ~nGΐSi]cҞs\2y[]?4~~v,gjz@3V߫}r,{ųl:Pc; }=x/VTs_ܛ;l ?,yvy}wlkȮ8oY>ѝs~t?Gs{~Fg{{u"Ǐ?_?/vɅ;Gv>p؞>!P*K){b%Tv _fr^/+v1jmGuλ、sVtңqp_w& ?ӗ~MN %37a_8KrC$|#L+EwefO\njY3&{vΎgw9kg_w<΢%dWxhfٯ,$`//\уk̿0OB/dYSe3;/kF8Fi;1~oYnsgabpfo`gNA 3SO{: 9 혂/;oՑf`e9Ha0K*p9M|@nF3#s]ؔ/|wjk;Lȹ{1ˠ0!P`)byB/bfLJSa:;˵&͆ٸ% ɥgc\T/V 2{5%/-q%3 9p=33xv3ѻ&Zث-M;S(L5gNϪ?o3sydޗK̽;~Rʹ;PY}OW3d;>!lZ0tV? xE/nF8?tеGL/IٰmNF!o#G~x9)L}q63SD2)Lh4w]{C~F=קvna\00>3;y(h霽gIg5}koinǹ3²&3מ~o +27*_S0fvIs߱χ9ybwG~ {ܞ_gQz,<>3+WfPu{7_KHaS` 8O>_r0G #ւowZ%ױӸw;,\ѣaÙ)vsի0ܿFNX{c_쯰9ޕʾFo۸_':sؿs|?s',Gvήt;~'>NC3O;?xZ_ڌ8Ð6k,tTve ?|%v|Cnc.uq&̇C_u{z_υ]I^n)?o5-cOˣF>)wnU^Lr %~gПF 8l|}9۔59LN;v :_z;[JQEi3a\;88OSp_gaᏂC~cݿ穴']z_}hzH9J Ɛd9?L2Kb{wo},Ŀ`sn'/S06kJ^w /^ S}L~.uݣs?'SɃ{ޛg?tD<O|%lKB!,X:*f=17{~ӯZ.LmYC ٮr{O$`R;bB<.t Nڟ/0s{ѡn-"_*?|.>:k_|CܔؠOVQ ¶P ;\0_Ż nWq͒3Iꂐ_婠^7I#ݳo-U>;'=s&|/h߿5ikNV(Fsj?|!@|2)5x2w| ~'c`Т_:;U<׼%ٽB ZM t>P;oG #lg'/u8Rk_ЙE$9|OW/\e EV7vZ==Ӌ:ܐxTrX"9)v04z`2 wT8]zSyix_宰Q'/SՏ}꟡MLm L׎ yk0)_:)yEqϪCOw ŶKGNE|b s5W#gO/MJ>KTx&t6{O{JmvmA]xC~|\mn:۴*3}_O;v}'x^S^ k(z__Z~~'ݽoUwE3zF-eu~v!?F߳Ajc;fvҵ3FogT.#&ם~/o5#H*{0Ч^saސ_pmUE7!%+>)y>׾e'L&&XRA֒.<dXv}!ڝLeF1|Upȅjx?̉=]r']Z;/go.I7zGix&>sf̀oѬqp5/+fF_žUc'7Bx\xe&׏jO?c+S[VN )πBOr$j]WK;x.<{qgל&2{A*=(kV_G3 Q3|tOw*WAy{g? +e}#?KJp5;Uܵytz"VW>(? ?3 6!|߼rQ*30qkȓ7iowt$JlKg w첩S0?@zo\jE xźDJ|MW]iߦ>}w 'P?I/h6]ԍ.SxFt,2޹"z}ޗzʞ1?'0U;LN~<%Zܴs,/,g<+V< ³{1c$h? ?²w;agigu-`>\p ^r!ck2F~wَ% ~ׄZ=r3M !-g5K, 9ެjVf>=sAύ.9;6>KN{'S٫>? QmgWk2_usۿRNTꔳ}`G.OL6tsC~h7LTN]~_q#tz'{7x?:lwW.߇W5Y~WdTǹ :{N{O?KRfkr5{>yt7\CϨ_u]_viY.ilt'ޚ4u>eno˧,xsMa~TbO6ވk\ߣg3WvI_wN.?&υ0OEٻB?_s ׅ-kCo~ݿz7]raEq% @ۋrjkXvw|ywt,p ?Rzx_~[笸cιz,ꎰ|xv\!LEt4; i^KM{{re=}]*;fG{޿%UO<㶲+s_ocֹ]ſOߨߖtΎ>c.]_5"mKn@s!~!7W~!7>u=m_ 6MCqy|G*#m>ޑ_0Yy\n۹'JK !t>=?CA[ 5ϓ&Z?aYQnKxMCď}\j>=Pu"~wߨr[^rv]s.<= jI8{g~_@3~_>ꟾW*n ~>q€۾9 |8߅wM*%"~W?z_z^m}V?zryBʩ<'xTbÆ_V\iRsщ}i5t:SGSgN./;_ˌ[%`zUm_pDGns.=;gdvu~>akik)#*qfk{?ӌljTɴeAnb4?,Ϛ O8P|fż_;BUz慎UOLv'2MO˸~ޕU_VN??>_OI#>?{?Q?=0wYOD޹Q$~%b?,{v'B޿/I6!_tc}~{פ9P*{#|ΔQZFi?^hO`NJfgDVDofcNAǯ^˟ODf#=ܚЁa 4?Kr< ̓ 81{lp+lbac` 38~:7]mfxF<‡fY|"€櫰/}I#4dwUS!U% ;R<'vBuO4x&%ȆFk o"4 8;/2{a.s3gEN\). };O!R殅_~~/:_8`hv3~ܟ4#IO^jI߻#g53?w6Unhɝs0? TTz د|>Ke>?x/s4evПycS߮ѯԱNyYߏπ3#? ^+{USVϠY_͡>#?r K!!?cgsq/P &a?3 Mp^,؎? f8UC3}f'5ӻ$ |"0g vڟW)ץ6f(OmXu-ֿ=n/><+5^=" Sߑ;:;x| MϋkG_عlFwվe:ۇNnt_|yK=OpM*c^9?msCns} Ή|W5wgOz߬ǿ` z.Q;aj}:QSY??']Yqpw~_x*r1'n cCsˍ=۝՜}.@tzD1#10υAm>?`NW/kN_"Ȁǿy 渲1~W¯XG;{~Ԗ_K%G~|O=dqĿxy|d3 jM*;GvtZőg_{/WME(M}S{Ro/#Ί͔{_A_[t(`jk[ij>މ=v0eg?P!/!\8ogOR`i/޿p63bE??A;=Maa})ɧh^݌gQS߻9:7A;vq\v0 3n-OUsͯV ;ORyFrv"2qȭc{ 6m{.tx?M >}"7sפ{;Q pZn3eZ,{Q-ᷴ)޿jF |iaÏ^G9trUe/~yد" Jd[/JBKV<"`=KwnT:>>fwUjӺ\~76ZeǿQV?;L0{#zTQWL@f里_y>`߿A̙3BÆT蟗Km μOR9uъװ]ړ#x,?0BF?4|㫾/FޝnUC={ԏ?|([|_'rwߥٛ[iD#|7ߟrݧ`wa]ȯo}3_s辽{|ck{ewq`W#yN學{d~W_tixtː_twFyKNiEwȂ>l k>m~vA*9wk{|r;ȳ~W|4u8.}ng# 5]׻= 3]+CSؽ|_5eܿd8`1c7$7?97jsSïSOo֑_*{NzV~sR=}7iȸra?OT_É`8 4_g>?X_)ݺP5ۃ~Ӻ.!qqM.6ױ=@1lT@]~ǦsgL~?RVUS;gCsmj3em s{/ՐSɢqM2DA!;ZXu=gO&Ϯrmxox\ "^{n옺NpW}s{Go3/Lֹ?BsSܿZ%OyX`r6 ?&N2 /)0\Kօ=?g/8m-6QPOӯ9l=x2߱r.Xcw:N ˪4ȩr59^-]i/ZU(tY߄9i 9+'Խ 0J.bi޸C;yn9C{_}\zvg{|WACM~?,9^sM~k~Fg+B3$mZ>\ɹ>\zHpN,pd1_u-COsߟܑkGk_۳[,L?ξ/c^ݸXu#rپss`o8XLO=K=_WC} Rm,pR~O\dUSuGyn%om6Xû]?~_o1>I"S4OE0uE? wb6w?M_%!%cB2Ȝ;";Κ W3?}ovquwx!_;"WTJf7<Fvsr-YF_F5`l4}*'׿?;ZmY~(z#{A}pTpLl/9x\6g_ظ}5&RkfkvmN/t]WCV?+oWSe+$r~;5|ve8G`fݚJL_5\\rB}kA3ݡ>;6>gj2S{Ea40\_iC3MT>ʌ©Oub|7W#˧vFOv?g?Okt?V89nMn/ kk/< ,mc7,pYŻm 5/89S]s{Y֟Y~UǼ.;}R|E=^Տj}y\0ȼ'ıŖǿ#,ULROKC;G5#msJxS*C}#?^ nߓ-9aOU? {J_<'kW-xY}#_jnGDry?~♾;ʟh~A34~V=?5 d3 Vݠp?u7o=`_{i6?sSl=G@$}O4g8j}[*Vk~rmpEA'7%Ary*;WS{i\. g{fG{]e7(5:7,ϟ?c+{ߺGbSW_1K /G bb-ϳ7빽)8 ;=ϪiqмaȬf5/\fޘG/h^;H^G{M<[a/ y0ӵm 2~\5<½F;9nj=5vӌɱ@N Qs[vPG!6JM=CIeγַ;e{x\k޵w{. so\=Zʣ$_0~auy_j~>߳sTKc`ޙ';.}gyݚGr,8/|;7e ;}׼օ=իwUnW 9F ~*N~kcG*[M~^. Z߈岧 =9Q^4uI 虦){ w >62+}CGNׄA͚ ׳[6%v&S^\?k~H _JAGGCv ݩ5dO;S6=^7"lCcsbӦy:8Ϛ3Gs٧kr gy =B!ЙTU^wG|!0^?t*wǰe:\]7Ȉ,4F_UG|80t'>OBb^&*(mzW rۆnksDX:],޵fxַ?E_3~Õxh!.c ;Y}v{dWxpFԌzйFOOqw><ϩ=<9I},xD;-Wڗ_mY~Ԏޛׅ=_gxgӯ◲W9;G-)F}Yfpҫ@3ӵ**uyݵɵx;g|wd v^K6kߞJ0O#!师Я<Ǚ.Xqi<A? T {\.]^, I"7g=`\{'p*8)A;6d_>?x KW9 eį`//zT|k!fh*3Wk:ؘqsIkzKвۚyg+9)?=xW.dYvv뛲̬zw߈Qgn D볇P~v\c]D>OQ.i^Mks%Յ5̳`g_*?‡?BxðY!5#( = 5'C!#|v{.hFb;} q(>6t*쭋K3>_ñw盃WNZ\~2v?:L(=OmV- ;W(f{ wuZӦY:G yC{s.gae-Yȭ?#@PNͥ7N7G;(OcC/ǝk_=:ܦtTb~?+ž2{OSzoCpfň5/J%W{qj簺xjG C(A {+M~Ax5%חRhp-xo.3r&xk]s?kN塗T_RR sVtsΉKel29mkت COҟ-ۋlw2OerZ&VMkw\{T05;D~59 MN /[LYД;jV`< tnE#o!{ݻՔ>.C'g=z 4GT.5w.qesx;_۴s+z4TL]J {<{) ~B 7W]`U\R?;CWͼUG$5/~Z=o?kw53[1_ڋW5>bra\O>C7\&@~S2_m4[#V xpqSr)|^=3@ε>5 bۈ'(+|].>GtO".Uy,ٗ~3ž{U,*:~?_wGMfx/>Y?Ǔ^Fs 1ϫgC9_I;3j[Û|bAO[F#3t~*d秒׌a]%–LA$b"ӣ1񻜟9ſ3hG }dv1^e?5yӗ~|NKrDn[eu*u,3Rl{-X?fz?grC_=JK#|u*=Kfy8?jWyHPp?Y_诓 ~>0nF1x-@5~s/걂ox^⫃nba`~oya>\l ?YBR ~SR;{d{unD5\ZY9ӏY) \g_U!礮J{0K6+!}>>Lf?|&y%U=4ϕ֗DZݳ18d[3)Fύ p #zG*11iWrF SCS뇬#xNsp;?X{.̹?ǜVxͺ\3+μp|!ہ0qǼ/f39記ua&1~3},WÆ& _Ί0Lϩ! g QCMX}ȯT\R bYӃbYܞuLD879ăGt>kGBW\.? ==z?"9S?s{_KGx|!pnF8pm Gk7PW4`vGKn4;{^|^ x b;Y{L=V%Y!/qb?r #ߏ3s戀 s;a \35/x85hO$kgܠǿ\#UI/_h~Q^xIݩ)^X֎i.XoO%_;~k~o}g?D v C.RJw]ng?8[ ;]t"_a'6 y8CS[mV֪_vJ_ ^zlrc|e@6ܐ ݖl<ƓO*fD;D*o&_Ͽ?]w8sӗyl*xn]N㗇 MfoK*3 27z}\0cXeEG1im M<h3 L}ҡ>t_E!7ǻ8$*6 z,*_5UO;^Դ%ku';~8-䩔;Ð]aq䏧L<w9++y8~-..k?wyPD*}ΎOAM39lc/[bBʐU)X47c>;p~ո{t{cK?,~ /%%~:iKa R/@s}k<6_Zx?Ϲ52R_O~ ^sґܱLg㱰 ;}T9i<ǿE/>a!w°sZ7\5a{[y7A_sF:׏ kQpfav %=òK2 ?{4K~}1=}_܄eӴ@#_o*fAU^ ~cW2zK.G㐃#OE's|&=&eqV.jұOTr؇sɩf8W]#CvџAڴ5|w|l-CiIƯڞҨ_i?hw>/eEkiߞ!+>-{Eꈰɿߴ_?ķW9:سX:粳O؈ n ,/|cl'{/SKkB&Կ5e(rZ/OU3m{_oL%+s{qGb0WPpW.Xuʑoȏ,SgZyclCϾN9idU: r?k]?.GM4x5v 0r{7{*/~ f/ ~Nd*SsL0< ~(\~'CK+7}کu4_`߮Icg]ϩx.ӟs~.߉e.1Y?|S{F]>K>Â]Kۦޔss[GʐA}eV8ҷ6tM^ZVMk_[.;ȥg 3wkХ5_oL%~L%7W ;;'͗+UM{ב!W͂~Ǐ_nQJN %n.+d)W7V길^KKT*=SZzM9~hl,3~\ѓElJ^M{QL^~ߧ 1ap35鋻!ɱkqk O{MS|(':_hnˏRI$EK?pǂ&)P<_<ƴ{J}O,wxq!o+﷋_/3)Q\jzpuؚSSKTSfOFgƜ/,t ݅׫F2>ﹾ{S3̸!_|=$%q|{ 6MKC~H_]y=u?; ^S=9Zv}QsP.sڽ(}wNv5!5MzfCvT_;qիO>\_}WGse]2_+߸ot75L9נ @{ǐ[}\S?:%ΎWgWkriyuLߧџJ~פRٍ!g&#q~ī㙈gz7&!?/aZ3iݾkijPKW~{gC)u-4=ok <K%̿/篼r:Jo7].݂BޖZ9'~f"vQ)wz^K1Ϭ/W| = 56T~$(WNvj{?NY=s}}'4ߗ~||NC 9Dh6ߕ=qheGn KG "-sG{9k_}}M!s;kG~CL< 2 `hY~fHsf5mF;kj3? \оCj0^;>uM̯_1EM{N#f L5mF?n ~5y 3 `i2+ Wn0W"=<4fK? L rq_f[xhOAs q!|Bؙ`s^=u)=st;&OH9wwU ܳkD^lϬ| r~I ro]q>a`n{SOwY.0wsa5:rSwjF3̑Z3g;D+_?k/2\C(fЭޅ̜϶4+ܭwi ?P2.8'^:uΌ8q9EHcYRp۷^ߗRήsUqu*;Kw@O{8x_tfAgbq\<)Wl?omF}6KyrQw/+0ˆھiϟ `0;oT0_ʥyASW:9faz1FA/rʌ s!нfA_w„)udl|qY yrv|:f KW%38?ztܞV*\Өŵ<S~΀d@׷b_79>#xq؇WR]`7yl`p)/ޑ=< mx'}JuW?{/ݱde}a<3W#wS|M*}Yxt+צ35kW?rme| -Q 3}vq™q{_6 Obwɦ?mXݮ|8臧Ӯk;;{ M⬼v0Y v> vCScG_89?}Mxt'Wqp eWskdF`r>!o<5shwoh*8k<suXQ患O9_9_?4ew3Mο$Heϕ:r~qow'~k z61o ]LХ !:q)bL+U|g ث_ѣ ǿGjeWq?J~ |95ȯp]x5|x^U sdaЧ];>9<ө9ڹ6P\t'gt~a*:T?6&0|g+$)r0>#7'kfao?s-<*O%[2 / ;S}+r/{%NLij_tK.6oʮCfA?r~|7ߕ_?q/yC ;>v }*g.L%'局#U?f_Ͻ_u뼵B'\ruU*X9y/bɓ+sǿr:|(ܾ,_4l8ׇ6ޛ\j4O|Β ?shN875{0}ߐG>a"/?H~dM2w1p_SM,/?3~s'mr;6ew+X^Ma;T*;T? ?_akxt5ytu? G_WReAnG8~%s~l>}YoAc;}cϿ<].x%EN>TR $ G(s,l VxiݿE IΤe߿#0¿&o?u´s/?\f|ns bMFkJ]{K߼iOR;Bqex_z.s'k#s8 g?o̐τ xESTr)}޶ϻQx# &?ӡwޓ}a *ݸi<z7OC/Y{,+F[|,lvGxFcڿϏ~*d2E7m_j/+rkOI=%៿GI;n%%߲){ y:}x}~pݵ;V ߔ5͖<–A/ T.&BֽC b]/{K\ zS`ôȦ]k}2/y{FK_5=b^(`͒cAGOgiOk*=:G]ѓcC>#z3]vj/9 ncR3B'#ߍ?$|Ep|ՃE?uw5# fy=g}6V 7?^?Ҟ#[?!~9>tuLC'SIp+7"GG^EW/~2y⹎jum?m;}43>Cz_x=#w?}3 >_;<+9~l/t4<3zEgvܱ}\s՝=_q{~Z_c[粇 _R<8;f&p †%TYޑe {B*!%TEvϺ?{ϵG7 ^{}Jwm.q"y*:wgiz^Qt$o3 ; pܮsy]Ll/1 :~u. ׅ5Sy cd[/[ W*~ϫs/@^COJJTsؙƒi XfrG,(<++Zv@sCLWPgKk*-54ㆤϵwIߩ&E.Dy޿w'B A!kv=8W{~eV=:u%hoOFj:NjȿQT5oFknϵ MqڟBQ{;&GqܿԔ^ <zs~B-eZ]~WiTuuAL~? n^ohnTpj~Y&wvd?>-={߷Zߔcfk}YM K!ˎ]:ދn񗖇,,]Fc<_<͡{S! CďCvW\ӏ %eK6y |lⷛ_JCf42:sMnmpv\a1sG7٘y車T_/KŏY⌌ '9bYT?pfKo9 tInח ~wHo?z?DŽ c+^a2,s#Z4;`!ߛ}??fC>Ѵw^Fz${BNc *G3#\0Lu\z&YHa:Z_&= MZ~704O#9,p]36~;`~,J-lkg7k#ݽ*+~"hdNK>An7lئ3gG탅 nqnu<׹!ȁsMNkVj;uvC+I*zfQ/s_C23ˬ :Г! s? C׿|N;?55CerkX<ߪ`aOަs~/(zk㏍Gfώ?bS3w+ŽG5:_ Vqʭ‹R_7q)tYx`< gנn &M L:~\iƬ^kh; ުck~zV.X ?Ӽ/"3 =x>O-yU3cenM/w~.OvAu\0*?`_>5Ra!#:\*w<0ifzm_sxWLʯ\: nQ,Npϙ? \ <fO,`~6>K;+sPJEܯ_G7NyIr|$=9{sE5‘51r96WX8&PgTz7ϥ]31F;#S>Eaۆiѫ}COߜ~G3v0Nw|~-882^)ײc\O")ޛ0+pUp9.+<#0?zx2ߨB?;Cg=]S1_="1|[9—;0Ln=rapo7:&7Fj5,s/KqPv)+U'컁' g6h"~/p/ˣqg~_w璓r6teܷ㿁J=Y[LC|!a jr*;@VX?rxw{h!c7s~[o ϳksٟ̄){{n]?xhߦ^ޔ_sSkrRAh0Kg^NrD9E.lߺ,Y?tl?Th}{4@jժgmE Bɹ__ی__e scA 7S [syї/ y *hރ|݊KQݗ#`~Rs]hG|z|rٟ]SgduҞqMM *z&x 6)ho?1L~!&wz!t #y-/~F!}_RIzdЈΡƥ?~-}2,rC<(|O_L?{]jѲ#a7H%U볪kxѵÝk~>t3}~/vvMǢ?SCB;P>)?'mq6gvT~Z~Yq4#'~~_!ןՇO>%Q <|&?w3# W~^??9?G>ρ/oQg^#2%N'vAܱkjJ7m_6>2D r[u3Z*@jXyZYmrrw^ ,dW=@/ޗ=AϚQ˷s~V s(l?%BVivzȄb'{Ӭ~ۆ{פ.-a̟K:ƖWk dd;^%(ܹ|GR]5[ ?wGσn%֡iNՔ5w"5Lz/ks ~Kj]/]}4z'#<ʛ7j g=s K͝>Д}ѯ}Rn7S@s}tc 4g4%CSk2ܗ~;u`U;j?"~-P @n .!3-C/ȅj][Eaz} R&SSf6w5}OR.;vNA&C+d} [{S|O{xGBN 8a?FZp"ŝ$Ez8^Ԕ=k Iu䍡;?xNz^gL_"[>]OvO v5yLlLSQ~ؑ+ɯ_Ej͂40__™\z߱?'b]&h6g٭g|W,}9?J+ǩĕH|!/4j.?3r[C<˦.o5_ ^9 '{-~>շ)CdgURN=̎y*c<ڽdO>r%߮okgvS73*_/Q%kF.g(z)h/%y C_Ns#%gwhݴgfٹF|4w>z>_{Ώ?WO:q=:xǏ)xF_gk&Sn?U:^ߍyS|upO9@YE~/6HS0:ZhDC=\jw1>"\^tOYRm~fg=W53?_G}|]IHYq3q_<8 ܓ~rmܞ߆WNF~ =g.ڦiՎ#ҿ >< {edYkorrAč9>ޕb=Gޗʌ<󛊗U|:~'Bzh34ߙzݒJ19dsiv}#\Xʣ'#zmgr$bϨF|糧5>)y#'G+z_9裛2KZZzЋL5L[?\>%͈mޑ߾? d< oIe}_*B>/s[5[=py>_=ԗؗ˃gƻϢ:~ǹ(dXx.q9U'wsc<I%ſ6b4j5{]4PD*ދxׄ=)\g%ܞ8|'yb.c`p{ό:kI?)N+͟jN^ny.M}/™䳉T?G98t?\شƳ'S ¥5|,!8A 5S / DV6˥.ʦԎ)t!]]l'_vkZ\\jjȶ/7L>3KK~'r]fMkp]|3Pt(#2;ε>֠F?3;/R3}Šiˌd/A'3x?OU-;/\C^$< 뿪Quܦ|ҨU*NKQW˥RWT|'[,9x;&;l2OG}w(#+:ܰ[nQj"˷óQY/jt__䘜 #ZԧD^裹wS`{yt/1<ӗ~`C&C7{ 3 ByMrr6 /bW{ʴTPv5]HgQf )fr^/w.lQ~F!COKsX: !! 9:l?C;Lq|_ss+Hoe7={FȲvAv#W}E!ڼs+LΞ]sܞCNYfNGt.9z_ziz\dv7$3폆 C>7xR}en0+=䔽*8v6W{U#~ϵ?{~wTΪo9KgK\)woT? r\0ɲ#{Co>'#.⩫S t?ү>DeK&t+gb_{ɰ?n2%͊\rOv/8<ȿ^ܿbaKjO|RW_᭛>Ss}WNJV,̿9vyjׂwY8?ɛΎ5⿡mY=+s}}lA:,e/%B.+?L:-%O[v}okqcZ&׵Szh7~uu.Kgݗ~?>hTF_|?y=\Uw]3NVrϸ"聓hhzY1fs.Kx|GCNǤ6 kw|hQ=e;2W<^y,/>'vin I3oTK=4wmM*AԺ=_-}w73]?c=~޿=79yq*~\?<* ?wlՓKxƭ ;saE{׿]_5s~GCn7fYF2~~4?;krܩ]%Ԟp|w2З~߳}}ݾWw{|.ϱȴyH׏sз isM!w;o<~yO~\Zhr?O8ҚK6ߗ~'|Dnu^Fvb<#I̲I. CZGc㿩{~)idkUV]PU}O|q{?LkuϿ/h<+omʞ'.5kKJ5g ݑJ>N=C_8տA~ck GuFz_ zAjsM-*!|vp-s~Յku-ҹtu<s O6'Xc8vyw2G(ۅN}q.Xy4&83fel5sI$/+ݿw[?>yf~)g&IײCk70ޘN$vY#~X}+Rco?OMqiY;>ypw,s3,c./uۚaf^-ɬpvnʞ?u41cm?y"\6nh#K!^:5gׇ~vo1佗U/kO?*27Ȭ_0P\ .7#ҟ՗~x٧]8 )>k k]*f?Wmʹ;@;]挾r͠W;Uf#gRd-^{%vޜJl>g\߿ :) h{eR{OũM2W{.+<&~׸9Ի 眻w~(:š w/!?3xw{@cy?_yⷃ%ϥve@G_3)3_<| tma34G~`z9}gapC s]"M"xʜuZԔ3gkd hW g1s?&ȝz]u[NXFOC<J}l.t*F@7R׿G~k~"xE8E>WfK7ykvYѹFzxߎ(Lz|aN#狹`_]^ }ѩ53"QvFLx3|~|+xV>~)8){+!~?kFx¹?ݩ`*Ewks}*-oN31c g>> eБ9|NfɅ {.=ޟצC㩽@>W XpuwAuks}.$ڝ#x?e=&n%Xm71aY;?}lɯ>}O !f>Y/@{Pߎ~,~5xP=yΤ)ꜵGfιZsY~x <[8^a|)KĽ.O3__5i -V'];_ʖ>ğ=^iي͂.@/dȃUyޒ zߟ V),_>g ^6 ",GJ ]{!Gol_ :>xI'{}Vː׉T3#={ݳP3+hAnϰ5ǩ_t sL\|CΓ $7gۅF 9'5#WO6t[W }l2b•%N _є|J_/T&ޫcy)dޅ_?x7|$g|dFf*|]gA|Ź?W|U a /OqO0e;,ѤjHSOm:lz,^R x ?92 ^6^7͡bIC _b絷Ati3_oofGjH\t!'nt,t且Tgax,) SƶOxBȡ@fUSBn 殸wyQ pyKo]sI<4W߿big"|Q]}㸎M5Ms?j6#D?_]$ yG SsOPN}_}ȹ?ދ.|G|9gy~anߔGy{[]G~IvԮ- فOȥ֨] 0k ]5{8#_gv}@w?M!gW=~!|^@]Gn~vI.ݻ;Ώr3tx?w|*v ůC//  |w_oN2'):~&~#_ ZEW0dVe1`X{ (q?g3*L-Gs`CQOaQP{|h3Ģ\rmPֹ=Gg嬺k~rYdfҨ3I;}S1:4/qc_O"'mIwC~y`@h@?NyS8Ы-vK;9 ;y~nw ~li!jgsg sC#O ,T/FL>HU?zT[?(r /ECh##>o\SG5ևEp?lO >Ţs-W;?w}.c3By_w [_֗~ GoßhZlFu'WQSjĉOK?6떐KC~9|i9r!>ta-.ρ=-> l1oSj͂~3Sgony,h6 +Ciq&ߝsF>p)Wn|I,@Nu$a㈟g* Vu䂹ʿS^ ]6}Ig\k߼o?}sQ*ߓ\;_8+Ԟ߫sM?D# Hmhey]ݟ}~Uu_'_BOl,\߿ЧA!!~N_=;˄_C%s;ιоt]_ }M;wq;tU}~iOWrg\^3Es}5OäGgd;~ȵ]gR~b`ĻQ]' f'3mwE'cݿ0wn:q]Ov_0vm6B:x/kRٻA. 7N~v@Zd?ү+l(dg14y}V/C9'k5:f/v.T/7a4,Fc_'yA?)+Ԍ8s_}<+|q3scƄ~]~h/aw\ a2gA1CgW0ӛO~WXEqȼn19̡:~k_r^T2?f{>;Gxa\3?>_MQ.~Kݡg5 !|M:f&fKb|?SRn)"kT]~\ %s?sg3/Or_O}YJqZygY<1h~M `0)s'՗T%j6]at1 _SӞ_{~Ŀ/&C]ГS>+~vicߘqB@Q`l3 >qBc;0W.KCfKRWO6d[q0A/u½F6f_)T*u,ޞG蝿urA<^_'4 pK# }A.]MrFSͨՎ-;q޹(#< K`.a_np[G?9qNOe<-rO,_fὡ߯G)>犰dž]YM*=(פR;;?xk?䂝ũc^]#¯ؼiط)Hk/q15kngNCK)'|ʔYX` ?I<TE5WTo\ ]Cfxv|l?ٴsv_Ih@y,z_a _8o*&>i&/ %d&O}+= ^bXR&_bÚR5kŎq)r `Ɛ#{$lyQxpYܿYMs.Ľg!g[Ěx/xx :ѸTh2\G~N.ر裇R5;X~Va\߿roG`crr`r+B?o:HذUCLXa~P롋gq1OЩud"? 0y65T0d7-?aJt0N(]N\?w"5KqEpr"fq-S_r!mߋ:>>3P?N-T1ϕ ]aͣO%H.w3_~!|IߗK?f~\jQPقC/qV!Д×PY/XjK+*_{ T^+1!=VAM#2婐nY¶.;7#?>UQ*3ת[D}!AYab{3MSs S5k!Rj) :&qjY4s?? EnN}:`?s //;0w]NMEؙ7#<{`ЂFſ\v?ϣ96X('Mqx9s&FN\.OE<ҧJO3ES䱆3YS?wNj>g'g3<w~jT=N6O2e_;.uU%&oxxAЏRn_?tvo;AЕW_U䲄-+L{"G~USW?e2dzE3>ʜ*u\l5ٲGy{Rj{{λJE+ty`..?jo ?!7ݫK~Iא߾Or?{ڗjGr'(;=Q}i_Д: UT>_?G/gCy@:{ٻ)/;)ث>s3HϹWy _N|Ǖ.,ݺ=FqoKgˢا)/땓;}沽uN˼-qq3xxv. C5?tKֹm=W߀n"Q]LyQ玠Kؗfxrg~/2[ߙAҜs 9Qr~?pksʑo9i'tOһ^ITQuKBb~/RM~`&9r_ =۽C7Oj{#C_!qv5cKr*9ffXG~k}71rilKȈ q~|S?_yk|o^!|%w>ë {BfE.Tws ׿9sx/{/bJrzއ?Kzw ;Nl mGy_ %Tz 7uO?V^ca k猎OJf3]'qY;~zj{=3KEK៥z'w܎~]< \6?2o{zjca9f\skv&_f^wF˷xs}QCw_;ϻ^ v^KfKǿguc*3lv5Bߘ~#6~݉!¸g4>v|:;.<+|ɊY)mTՏ2/pJ\_>&)yŇ"UT]z]xݿy;ɥ'}<,~&vRy'_ig: yv+DŽonq.u#? g?|ľYȯwBK4:Ɂ/е&tc).v@~rHN _uc !Oޝ85VuM_ }A l?;?']Y<4ߗ~tZ rUz`ٰؗ~a_- Y9T^FǿAϡ sv\<_ Y>-|iߟw-o\eh T2:?q^_5d쳙 axw7$a_~{7< 7;(\F5ʝ nuYft|l|hlw{* ?+ݴs9,?~_۟q|Na"2ٗ;S_G}XKm=lρeПܿ!o_}ZWnNWn+r446S%}b`|t{Ujvy\sF99hsMlA}Gj䯦߾ 6 sb 4=Gۗ~hl߱!71Cqwȉ׭W흰8+fupp»r{w7{ks m'\ϋmqz漘dn_s"3\0G

5Ǽ|[1plO)Q{ٵsJ: -/./Ip wf4M|e߉_<[̥_y 8}1CŸod+<s2\fGQ1shݗ&o7]0t4;rmnfx4¾ww>Bο@4w\J̝hgs҈4&$Oh~Y;t `U"fQx&C {r{Bю{^͋#>EㅝyL5`#T<9s{s(8kaȖoQ;|ksܿ0X^;8h~~i&]o

 .9+[ezǂ>Y,lo7W3U\ A!~xy`͹*j3[34M~C~KS Tz5<wKqS345m֗Gb~C3oLeW.3A]CpCE gZ=K~GG[!G[ˠg){LjVn3n]\۟-8iώ&s}&ə*Ld?U] Kro|NGώyq26>m~pgmڻ =}{̨YBE*9ǯ ǿwUT`VuI/P.,MaφLUE7"W}9߉TF\aA+z}m= zy=d nRFbwR_!<+ބDaC<q,zZޟڽmƒ}* Zqː#QK~5?|8c6J~);wwsJ?0rLK,񋰋|-}ӗTr=SF;|{?2Ix0?|xM;~KWLSPp/~~7/0gY9)ľoɡY}V7Cjb~ ;,Fȍ/_LɎ_x\[@<,r޷)}# >y b{w |g.y ?j8>>?:c.C/mIw 9G}G~5kA-IRRKÅwB;;(x]{=V8nY;g͏|TzH|xO<>}S#nt7Ļb[&LtjG>ӢGCy}-, ߗ%a='C *?Ie]Ӯ_s %V(G9tr|^)q' E<՗nb2wA902   h$KM;Ah.k_"r konz_Lއgvҟ_O\T<m_gx̐Yrx}qWOoشW7*TzP|ohz U/?KB+_5 exa3ꙥX' k\z\k98:{rc5Cne^uaTs Sh~}v+|_sP.1`!_tdweCYpu4 yvMw}Yv ߦsvL!?K_.=-9}nn>o!g=L}ez65i;@c? r{.`W6YFuvyЭsMOӔǟvٱ9jd?ǓNϵ\p#L_[/tT0gCCC!Ӈw{oOR<k,ö!GvTf~S_g is+N[}J>Uóߎ~<qxo*~?|* Oi_4NO26;kV ~碻WQ?+Gsy.?{{<k[.*(ާO}s}}wl*⸲=17 ?/GʪgU"5(gdgl|!{rө]ۛPZWk٩=^ Y尉aFst\;{}qW䂇4w/(y&}w7gT=j mſZ|T^smwGEP4=1 aNrѯ;~@WL̢b4 ܗ~9#|G'& ?K}OIe 㻹=޹ ){_kSj?_?<-r_ܿ6C?g^{$7?k8Ϟ?p?FϔE;g\5Fuo*smd׮dOޓ }=-~V9,NϮ#;Yuf,X9'4qV?\r]-ClF}܎ __#S }/C g垎M]?#?XkϠrXu\G5ܔεxT|c?G՛>ͳߞw-ѐ/^tgߋ*L!_Lqc_s>n?k JVo=vſ۾sbwH8䂹`0r ?yѿrգ3 q O2933A3Si5}TX62agj}ĿU|o 9}eu }cӫ:} @HB!@Ta:i%vrO&9Ill-nnlnp`ljClLQGѻp뷷%|fCY3zO/O/gb.b_s:Gk諒#Sigs{"~?'or#ܩs$387|/QwP GfN{U~u// gXXe(zz[iȆ "˪I4%{ǁ_uy~?H.ϞC~ɧo0'&wolcwx9NAb(/S_|n+ջ{frDR,\F(R]X.|^[pH%$h*K~S3ݿdOMm{]\861++I}Pe>7 oTfPw2~)U?Kw1ޗ~ד?>צم/6TפҷQRǿ3D-zVs_K[vξϮ۽OU^䂮 ?Yѝ%G?qM?w*_>sJTB_LѸ:gU_6.!O]^@*= =Fv8ߙүڅWЏnK0K/]c}r`;+ k('ͳyHr|F|_fkϼ_J~-tߌ!Ks(?}W |0e?Bm!^ i{rnQP''se/3܎{ksp95O_R{6ᅥ;/.KW4d_sZ#ѹ=3d_=Y<{(wQ)!G9{n YOysZNIV0Zw"w0ߗ~w/ {م!CS*iy_U'ų;vhH1j%>/0J^wFq{7˥'eg\=h9x.cmG9o3|rCස~a|eܳGf[ |ݱyqpoS˿w[Sc<3`a.`'d_N8,h]e bP3ڛv@kdzhvm۞wrB?/pvl3lA; |p_գc.=2ċhϝv~!x =fΞ {e覽?B y63;C?yXJ59umYhЬzξ?w')KR;svdOw_?+d#]* ݗٹO| {WMIٛr{ϰ]Gb {߱8d}v_~)m_A#;رǤ]wؔ;_ϻ}ש`GRwK)C|:\?{9?qfov:V]~\fRkw`˙yd/\Bܐx.v ܔ6e;. ~_j5an6Ad*gٿ'ǽ{\3(!?O>R-ϯL% {1|7(O㬝eľޜ-C~%b+BN/?9FDm;v =}r حY>7k@狴eE=eG?ٙ>6=GSξb^??|7Ovr`oU3W&v}6x}#e.8i/:X`a՝.kGC%~a._Kwesw߾k0޿kS(Wv\t1?qߍ]|A73gmw6]}2W=7rK̵2Z: {<~nv>3h}˚?_gŚ?)^Z8_rP*|Xe+q/ v[<-BeW"zTN p|G{_8ȃb͠aЋ?޲&xfvgzj< }3pwN=}{jT-fBS>\?oKnϊk+~v"u*B/HeF9=Ͽ?[_?^fTm/4)kv}t7Zks:.n , Z3PxeqпSB+΅ǫsSxK=O+㮡@y,l/32+)o4z^=#~-|o rx_E}|އS_Q3Tbc:?t).sͯiqw޾$ހKSu0wD{_&pZ=SmQ>DŽ^Ew"*>?UЩe9(ɟ(zOxyЋơsS7+>8t>W/o@9W~e*gދWQ/3,=؄~A&7]ԔݹݓQ=ipc7V͇=o͟7QC.CHeG~~A;:~:w+0} ^#A/u(^rtkqϥ_J+<Wn {odL>Oo,C3xD{9_:z_!wn &li9AVw>=爐>_~{ߒ~teE#WwÐcS9:>,|??k=W3.d5!b-pٰ b`*Ć">2qftck~BQ&)N ,A.b)++ɹQ#kХCg^vwd!Óٗ@|E}+}zatW _.;ݯsSiH%v|:wȾ ?{ ;w+YE]=)7zt&2K͗ |$?zra/|U*5 աgUuq:+l >aSПs|S*bBf,'|'Qr?;珑߅komS秴g ^ޑKzμ| b4:bc~ϔBIb䰐csu*{ιgϵϫG;!>g}u*]=5h!_RCUY!ox/|%8lj/u/w;#{SBf]NQ"Б<ϋ%:tu۽OTrcQ|)~;s]9~{Gl'Ϩ-[{Gw_;APS P|wR Dž K6p^:"Uk?~ڼKCS}NذLio?vy*5 ⮱OЊod|ܜFf5^B'3h㇯~?펻51|Ñ&G>еԓ#cPNu8=>ߙ7|sI+RSy_֌ 3ѕԕ%=ت4ʳOwy_'-nHe>k~4;4~pt.}{t*ǟ;;N_! p,JsmYMk>{RXGP[K\/1t?Pg+WҐߗq3 \4c=,/sOiw@B/(ݾ'™DC>p?E+O׬yaޖ~|svoTX:wMM!7^\|D*!_~ݳ=fWLu_Tp8>jV9k;oP*6LQW0S) 9>Z[?== /k;cwׇ~ǩv7?$LYI[uε}g)k)_\"9)ozp*+S;W_w\r< _{A׻>;VO7n ʏV+˪ϣƝ7휵ys;C?MTgS'p w\֫M= ^.~4"|fl5Xvޙ NtM~kܾy-_5`HCyA.^OaqO_;j/sr}:D/ؚi0fCEK\3T;;J?#rNOW V'RfN\ß[F4x,焉DE+l_\zHmsOL?mn-g>3],:()/>+Ӂ{W>.ߘsut>t_x/̵i6 , K? ?GWhГʧ47[3n3d/3|DnДTrS]!ԉd?|ׅuӵ:QO5{ ?ɽ??'h{/ūB4:K-u\z!O9p3r.3sr8lYrnX=~޴rF敫367~6N;vM+Cxy4p^ncK\Y)f[G9?ǜ1E/ = 6p)n fgq,*kʮyyU.3`)h~yfEa>R?„c;0Dٌ#bJOa=\_=bz]挠E89u2gthSnw9͏3 gt2UOΤ˩皔6؎ #~?kUt7z!|~4Y{7[@ BNan৯p6kLq Zm~'GlNn˯_s>3hd>ΐ8a_oJWt 6˥GMF+s, 5m{stt(:{Q2}.y%{OAJdTmƹC1G|Q;+q;3̒'swYt&C]ߛo+M\J?ϥz_qrWxy'}w=9* fk,,UnJ;g]g;691ەwkg}=WjwE!|6#2*L)5_Entarվ_aye_{eԼ YGY<_8/'h{_*=ȝg/8~[B~漴g 3q˹!Mn7>OOK- x9A;؟Y{O*tW[\)&^ %(m[J/} Ocn.,?pw뜡EK~n&re MD~42+L_ƿ w}"v!6~Х"ї~,EvEt_k<%6Gy?h'ҦKs g ~w?F)m7{v )?_]ݗݿc ;׎?Ř)mܯokg7 =?%Y3YaaB5]5oI|"'<~'?.to{=>JCr{_#TĻzin&/b,?ׂb}]~s'pwg _<㹄\hv j!Xx䖰ڿ]8x᩹䯈]<@xR$9\Ezl;˦=خcRv@^W.ܹ,k \2xX$C Wȱ:D*RR5X|R;GsM~k嵼繱wFxRRN ]}n,Vp%\&vO#wt,rM,#,:_:gܞ2v.o##K<4%oP=??ink; e}. ta.wƻX2Y_~~ٹ?9)<= O6 |dv\gvV]AՑK#Ϛ=Qh} 㧋3v%9=@ `5ɡ:;?|GoAT׆,>T9B_Sdo)&Y;[&°;t _Tڽ|;.)9f}(Lj`7hw_HیIOrݺ6y~՛Uk%g-{_~-Ba"򧷈׎ l~MiO8d*=bdՋe#_Fy/} wZ_=k0{[y+y߷s?p<2%ub.ڃGI i(O=8:]J/G|!y5x=vX?#pYT[zX)п*_yv>1BНNS/%W$ C_>ڗ5/u O%Ϡޟ[rWIY?#[zGGCPCfkYv+ F>O}fUϿ笕WVJ㥩zd7r+r{ "or[]&o]/ 9Gޙ ,euȀ|g*:^; +|OǗٗ~Ͽ}/~%'g>m^aOo+y_JTO\\3[=2'STjlyo-MPQ,[~kz~eNR Vs@uOrJ_ G~ V5y,<&?V'LRy_z_uq)OJ'Mwt;Ysc{?>#3*/1F弮}MF|LdAq:zR=lFsRP_厹4?4<<:.%+'?r3z59u_ϵSyo;wi?_lckN,';rL?Jn{ank99AsM/4=߫ҿI.yZx-By^qsy|T.;U;ހ?|Fu.T*/ĝ?Աtݿ/lIf}}kTޘ ~v ʱtzkߺsQ/Q>/%xkJ}gy|m-sjk?4m|Yn9q9Iawmg~?83S %<+"_O#3.mG9HՓ:. (WiAvWK5KܿlėO ޘ2}O_#ey^{.XϦ-eV?hrzFG?e [Z<[U,{CΪ)?n\{ks-\=;2}Q:{Bⱹ86mvt_R!ynʙFCiL}n"{ʺвڝUJk_={qgkqI:rW;|<ٗ~ͮoS_A8Ϲp<]XuWĚij/VaQsӞ{~:8}=_J >;ܝ#&ks?4>;uЎ%ܵW3% }or}ηsa||?'h]9.iG]\G=MǪ1'>-.\Xf6 9uN^l6N;w޿<gwZ?}z}wc ?/džќ /ܮ1=J_{C}ȤDI%U+_ZEgFvݿ6gm\cjܿtUĹ>g=at/޿=60Ef@}O@п*ߔ^;0Sү7OJux\v/o;3 .O$,S{_I_s,~O\cAjn]'\ vMKW3ϣ}OGl]:n_-_^HOgO^ݎ;jVMZdyr˿2..}6 f#ߋ߷2w񅠟; ˣYcND <`p8CbtT꼎!"Hw3T`r(쮝6ΧyZu<YHk2_hP=B\?霛<G5?r_<ϟJ917?e~,7<7s/Y0w0̆1{ o1W?Ȭ|5YNfGwv|Üˬmhe9~I/f!o_)п2\թ_cka 0Lx &6}ic>XX9 3ޜ ݼ>bfGXԴt- _#[{~_W=gayyj)_ҫ{;~a9c3\6`t~g C^b됉ߐ ֹ׹- ާIC!sj7Y39}U3=IHE tu<G.8<~>t2O[q-nWC.tv:լ&vE#wqt~f}vS,ګQnM $WW+;gW5fkճx% _Bvwaq|2v8ޅ0Qlq%x7Ēď/sXNTxH7Tu,ƹҞ4KCRU;I@rDrmgw9s+')Я9M?RC}DkPWx@(#ǃ6?ͿO/!1_sj89)NsKq<|庈/L/g\FFt>/\lGo_iO|.?YzM ȝOI;xt'_+^!΅|Ov 92(HoO'Qx[QbM_b/'>v7 & L_?]kx y9r]),!ztE]sp''uyׇR{lU6|"ޏ;Dz?onf٬Mkz\Om7FGe_nq8),TjH^'R\t7riӐNacwyB`FSySΔIEO? g'ˋm 6xRE9|$xg|^|%\"E )CNϛĻ8"Dj">'S|=]"Xk{N3~_7{~47/+ZN'ms_!E ˗"/=,'=|F;ЗM.} r;tbwG W+^r)郂g?Z;H5A惡yfN싹rUs#\! rفA->69W.Kqpw5ӣpӾ_K$'!}D.I{:v}r;u׳B_ ~}~{ǥv~}n"ڧ)?l S}]wɯw%xc倾۵! wL̮)?e7?v-/+V+s_-{.xHW9_vi'h禽p]|y?d*sA{HI ^sN>?F_wᱹU@2Yt|NyP_-GMyI\hTȯ_ \}9.a_K?u'yŽ^.8'K8t~`ƲvᰦONHeP{<V8ݜ vMlG{]i]JMi/q+>^Ӹ.W­Z^{L6>=0v5C _,n|~FnǿQݗw}z' na؆eO}'Oxw=>o.?Mo/ NuGR%K_ow 7O3'ߑavJ~5\YM|T\|S OTz}/!;ƤL_ÎvTfoGq\SN 1Ź~9Wӹ SS]N=}6ϳr[g]CyN/{Nf:;yfuGhG X^"G~Eڧ ;ř?2T?֞ |>ڑYk8p%U_JciL_[}R=y/gy. 篇?KT;.֐[ssRP*8{:)fHkÿp)[~FO;WifxIG^Es}}y!ff?#5}v[{Z݀R[>2{}I/s*,jknz~կ$Q`2/%'(8ߗ~}.u24jiX޾;~pm\\[N7!3ܷAY!^5<kg^I=h/?.>ܖJ 69\ʳIv@~{*i!<:R7\_vrCޕ壼G>gvn9ss-/MDžNoK>48zgXS~zм:~gRf3Lss}琟]~a=ڝ8t@n~*=a),9݂|^>绔>%ޑJmϚ^4<3;;L܄oQ;Rx':ߗ~ W,jH99?T0!'C8B~5wͭ{O> id}R{}뼵 uVj_8Cܣ#C:6ʣ\eϝcV'/=>r3RUϟoE32yFJ.[J=I&5[}:gS.ߑ?"җ~4'8p!V.ygv_t}采.>pgG},)~]9AՆ3o9>y3#Z-)nC/}׎PD)7q4W~폓g޿OԿ*jDžr99ގMp5I2Y:gsM~Fݓʾ[}q{o1K8R°xG|ſGO?..? }&͚ :v:*8pr\&%WGsgq9yة͟:C XuP͕9/f $̂a -zSs0#`_aO\TtzCʿ?-s ̠ '4|¡6+_ygS> =L>>bS연,Ok'NIg|Oǽ3KTݝ<S<;+qљ 3c 07ysjnN ur.3/Kjan״1WvʥN A%sR.}2T<#9F~2%vfWhe6 ܌f+ܾ)8|m ~27_I=}v\&sQ2+m&J3^gp?.z?k Fz]u"չ*Ev*}NA=;wΎ7gi\:;\_JŐ)90͠jfg>Xs5~G瀩pX̯_5}`lY۳9.|%IϜMI?sy*'G~lv=ϰ$FF_{/pRǿҌcc7|sM'pm#&eS{L#z͚?n&ềұ8g:\~kxV}/>uE<*W]y'd{)\ǥܦ/l>#l9~ѯ> Ϳ;,j Ƶpd󼐉Û=΅#s pmt|cЅ8>,|~<}xxG{gLJxܪ= `&_=Q礑o*XcfOkx5x~_>Cg} SGnF:_ScP^/ys-rUV_aC7lr&<j8&H;V/_q1q=g{2;%U{%w^8}ϋpЛm )Ol1uϜAsx䵼^sɯS9^UWO윕ޫr޻sVjg^_eNK+ _ru#ӗ~G&~~,lYE'. 5?sl]đп:5'®Y)k+}EnK~Aqsc撋ؗ?6mfF{Pʓߒ >c̠ ȼ~e_"қy'e\. ȁ>^R~ nv}d6t+:t\lk/|&g,w9~dޒO#7 |_Kɟǣ#ѕpָg  {q@ze]<5\v_`3V.mq4K]V~]=W\ϩhB.5`1#/E=<8☾"(u._Չ4|ilkrɰ)Otv,|/;o?k堙?zu&;G_T:q=w]('ڝkv/{Rv_b\M 8p9 ?ߑ5s_7޴0;]O_Wgg?sN;EW؅cwg|'5'R!Ct}!x\%~|ȮrrNsR!y*gZι?DO*@.Yag%? xVSvbl k86kU*8S5gs6nJOLߔ~?j/LjS-ҞA3tGϾX_w9.3~39~F ['Yc\|m>U,ߡ7|OG[G߫޽sU>Esۗ~S[|)w~}V!' M7B^H5"p}vu~Ck_Jpn䝉_?;b7ğF'BE :䖽})?yc= ꟤m{_ z??~r˚h)}>HSgYLD>휷;9sv;K?۳:w5;> _#l3 6;U C> s^?!ONxEn}? WR_+xyN ?Ạ/ZdwpKI)w=/s.Ox/OJ"e>R|}E^qB~}M{|TrWO6~Cg4sRӄ'uA?4nh!a2}L'ws~:@uYv axs)<0;$71.}$ 忞sK~'S ͊}_GtyEx/7 uНԏ ]7|A>tq*{ȸ!k5}N9Ogik?M.2ّA*Ömv'65mp=uЏNU! Ϸx] x,xE31Ъ>Mu>&vqrqձ+`gX'5힇gRWlw>{=6cyߩG>sɛ]K)n8g(=;R|tl3ΙisM&|e?]pkoɱk|zG6N+/vuZ`6ߠcYqIC{={#_>sĎkJҵ5Wj7\HhԿN" ɯ+EgxՔ?b䇃o|~G>ir8'9b\b]jEoH Շ~ʏ/*߀7vϚo~39:L\%|l!oc>-sxۻŹ~~KPa)A7~qMK)}*;ݯBOY=p;cg/;mUյf Iiҏw*7A}.U#"UٝϱW qg'V2^/s,! ~/6䩝Aq/霵i.m>G|y<˼8k]KN#%\g3' 5!]"}sW_\;;NUڱiiMץ/<|CxVsRzs<xxQ9t?)#zf胦S=Z. #(Aߵiײ5 M%<7XTf'8d\rΙ:gdku6y?|s:?OJB\q=9w̐KЫ>ܞށH#/79+"aM_BNS}w%}:)(|7x6fE;='=m ߒJQ{=߄OYS;YUGƵSgϋS Azj2~Rp)B'9/r\R8Ics \"xT95x/a_{ѥ+h9lq͒/V2?!W<|"얻TZ9N0!8=#{W<ܱB;4nIs"KLQ |,h{|N?w7 *?Ym>MA3;ع@O7F}RY'WhOcܾя{!׾ޯs^T\?{<;<]wzU7V]r;.!_ y!_?19ի_s_d4ŀ:=֟?)3t&ԇU-=yӸ:9}Rb8?}wa}= p]~8'kDǔi\fwk2@| h驽WϯH]^wa.>79s}~\f~=ъSK%?}A7 t}']D/:i}+R%:.L\'Dx{O>/-}w^yyW;gvF|Ul{Pn5o 8ϵՃTSqY&ȋ{]U`Cou︈_a<9Rَ;?/{S?ќ_W5ԺjH%eI!?{~CVqe1)faL L|~ToysE΄sMz^sV43 S92}AҏMEnKbv7}ݖy.|>WR}Zw˓G[=W/u7dE3uΏ7un#3^׃wd{O_}*UiskB:ޭVϕ`64׻c.'/n}7ޟ}R*9g娐7ſ} zYVN?k詝zkcպt@+v%CO}?B{1~<:ϝs^'"&\!oހgGշ[;d=wa;ߓ;|}JWw ι֯uHwM.;~OGV(~gaj7<\Ol,Lg sV.8'5,_iSs:n關a+OL#}׆<~0Tפ.6Pbpܹ;OTzIO.;i1ҟz7^\t_o*y)&\zʆ_q&}/ ҫGh&/[6* K6DMv!c?TH>_0PZ`\jcx\"|8WY+ǹg.xu7醙Yf= s_Oғ?>m"z@ڕF]/_FfOoȷ>1cqʉ-˥=s^K?L39c͟Qy.sժkFC=kSMkNs.'Ew/RgK?FP=Lr{ٗ~in MpwŻlWI;,5<:}Y]ٸwz„+}s{M~v*R'μХL8={L"ٗ~ȑ]DAd͋$-n}V&w=l>8Wڷ:nKy}εC9 e]5SuXyS/SsT]i`Tkg '=ϣ0aN#zea0/ӗ~ߟ*Z53yf||Eر ئ3f[/^u:_ȣf> <3 T3c)q-%F֬.fĵt9 f[4{/5 Ԍ=7C 4j=xY s gv^K>zél&Ad̯M8~y4| r$|AUX{bY\0{R_ѵ ] /C6.[^BiqQv O.~;8ʞ˞nv wl3,9*f)oww2S$ǟ|9{v\K#f!~9t?s^%~?5ff {}*|wMo^:sU}F}Pb?3A+)vGCa㑐;R\ܒ<~w. "ݹm {s->+qasÜ88PuvgΊ?i\wxc3TU]~cg/LL%=?}Z=VW>gŻg/R\M*qWXzvJ`q B:l:9g:~?i+a oiG9梇 ?+%yӚ?lWmwΝ;b_m z*;FKS'GcY'w/I7'W  O\vs_vFq;,n;!?X? z K}KٹFUsf#/2o㎉%я&E;ſi5?/hԵ*8~=? >'ݯzrG/O_A;R_|T]yM5\;^3~ٟ5gs_v_*ԝUrɋ~"m(qcmWE_=h[|sɽѧJ~G%]}w/tf8 {鯌S\w ?wHs'QxD_j!bq@_2uC*~?A]!2{7d7Y3˯B#ڍ [{L\sGwΒv9?<!<qQj/g.$N+"䥱oi73|$[1|Qpe ֗~R;oQ%nQw؇]//3 p]4_}7~tn P^KwB+~rz)}4լKmIOcv ׎S u%|2 la!j}duyyp*3^M5gtv6@i%og<:SM~*,֋ ?Y{Ԍa {KTrz?Op4NւI^Nrqᥝ&]{s} Cf8ﻅ0K%螕6Z3Kv=;7g;k[]>$%8|!|?_mʞߥE$.{ʾoSe]~}!k֮?/ A-@#d|Pqvnǿo#Po.h pI/(q.a ҏnW;8拞D+F?>`EaSfȲ~ީ);tuwXw@.#/_w"hƾlOcNYBf_^NWKRƿa~;9ſ4Wm~p".W=C{G΄`jy@Űe5\SλK }*G3q.p}:FwǻXvaӰgVv K?|[\r%^#>\|{연W^R ڝi<ؑMo);Ew6\ޜK.mvt6/2LKq` )eaˠo+r١{|/rlcG}:2zݐ]ѥ.rFM<|y |<>qr>ggg]>>wU螧4k'ŏ>)3 :+Ǚt/|4>,>ڹ& s~v<v; !~X8+sy%zPs𝔟VIܿIϹ9.{.2'-s1?XJm,hǿ$'"3%X?sy~.v,nzKT!)Ew8s­?`+56]_;>?k>}ls}s7ݱ$ȯv.h/ϭi/OSxnAj 1ڗ~lF>3W]QG{Q^z{!'}kȩ3lξ..߯/cp7OkC S^鹍'zCyW=ךXXpОB/ivv7?׌ym\M5& qM9yX"Ǧ{u*:*=lU"{|5z;G;s{jU>s-}>/"g"lin5}Dw.Xve5\+ s}*33~ky.z +9`lR?7#k5y{eRQs~yO!{/:.v2<-s}CNL|3~~*\͏7tX`g'R*O6՛So?1͟J]H}ju q,;{|b>c.{oC> O|/|~q#Z?ӗGCeKMW=B3~<ܿ ?C\4_u#Sn=FvmYM?gfeᬰQ("#L/ˆR_ߙHFĿD.W_6D/ * Y?rTz7>h2}fjט'>.{:s^j?q3NO8dA3V qC{Q9B.v(ܱA3H|gk?žsn1ߟs<}l7dWXڷr,ٝs~n?ˣE?3Ƚu=~:E ]8X???@}w|L)zfn?ӗ~SbETv _fr^/+vuΪ=s+~ej\]^-Kbu,W`U/'؝:c?}׼>!]S̿hw?_v\ @Q-yk9ߟ|e;JS]u@6GQI㾝D?kY;|Qq TvЮJx3X:͂ Ճ☁N\6+_0e.6i *va6qbfȘz^f|L> ;wꙐs%;_,fCf >ayB/bpNTvSa:;˵&:Np4: ɥg&9?^ms5ޓϯIoSK _̩s}<2-f_^`5OPnk2Rr8󂚝,t23Ȝx->A$f?Mvji|O#A-}sJ?4 \OJ!9yb&S<M}C]=(Ͱ򿂗`\n?gas0_bSpj9T(-A~Yap%ό=`~ګ='g5}koyny 8r{y Gܯ0YLUʙ;E2Ӷ(dI𢘹fvC_ء2t t i w= oz~2^6^9¾2,3w ̋@C}0,$WG:?_88OEuܽ Fb{/;|0DMLwhbTE7zinr8~x{ ?s',wή\ph VA|? e{\lݯ砙gˈ8 ;8W[{^4„ZfIT=/Źn.?{ϵ8WTpR.gyN1{A_{P 0RÅQ_)|&Y1/n9l{;v:_z;[J?Fc vC߳q|,PۚY ^gSO>)pus.o' KWMcYROS73l6W\פ}s^*OӼ˯8~s-y?{N[묽 ܽ~ 1z ?8į7B;6xx7!󂿉 Ydx~3޾inj4?G*}-u.3 F8Rشdz_{?zrKߒʞtnr2{@S 5xdW/^J ~^SHe r)Z<E.}x'AW#X~x<'9gL}NTMy\\WQ>~gc-lںH;w%lxVHy@g)bHxewt98Ͼ;g)gp0OGv=3wפ?yuFSN?Fw?>4AvvG3y"bv|zc*󨓩M7'2;ljHsH',!,\,>xC+v`nkٯsv|3?~vp%|u GZ3wir{tHmܜ{՚q6oCELT3}`G]~~8eO?Ϛ'GS=U̻w\+ŵUQ{=呸c/ڍ4.US_ǏU3i}ΦB. 9mWqin+jCq,?+PNK8c4?_ݴZgω/e{d C"H@FEFVmmpZmkjN:Z-PZڪUDPy40#C Hn}~]y9G>g=$^C>Jۊ^6_uӯ#ɣ7= @U{^:tJEϬ!ϵW\kEw|ywt,p ?Rzx_~r`,|p\_=wuoˇR{`(z:S5!LEt4;})iy\jCOgojӷCmy|W=!]sw|kr-F?[9;NzA]_5rO?U4W.l!]4xE͒\v<>_?]o-}_1V} 3}wȥv<>sL궸sz 0߇cBl T5%׋j޿w,d\ "Vu"oT-CytS8{gD/ȟ'(]6{3uBfsd߽t7_@׆Mz^Lmu7+і϶g ;csCf9cj_5+\>m"h~} a/N}C}_ؑWŝo $5Y&\w@g=s9kQ3ws$_L[]{p]˧ U>Ollc+?&XMoNqsh"g .wqYcKBޗnz_L2wk՗Ui6eι5?4VI򟛟8i8-OPs1C?{#-q>Wqcd߽a<\d*yP'zfO9)^w==B|TֿQ5cjy9 ̍3,9y,X ̉h~eM /lK 58wh~5ax&ݯgVf/IϿp+lw93|ckyClHSn"zump`fY*8_L!Hs䭉gY7OnLm1I^a]<X̶~y)pr߈{_&wkxE!o«& \>of8~-X@gAU\7aX;_s._=hF8(1 tw%a?/}V.keAfuvZHO {秂AOh񞹝㠛:0?먙&fx:_yvyBdi٘+\/ ܻ_ {S+~6KS̰ wZϵwT)O?2W ?hx'g,L! 2?D60 /_~~/‰H;fKgvAg,rc&gƿ^ޝs^Kσ˄I:w"i #y4`/[°n.3ȂN1k5gȩc zu +K!Ȫ%9Svo/{+.x ?缸,XX(svu n:hI@G5)}Q7¥a '1/M)COjwEZ0s oT6f(6?TC4]Y6X~z?eSp ys3H_8cg^ }Bܿ~,uǃA~v|:ՅI o]—sޛȯNAQ0>3R$ٞ~hw޵?+ŏO +Md|Wx'+cyϬ{:0uƠ]vJRX$wYv7D*\QE=kr{ؔ{΍w;|#ǟkk;~}Ћˤ^vzAnwm >"3- _6Avwi*^^|O-~͙A?pq \9Dn}/5k&RJ1Kvt>xco_sa8XXF'A{+df=] &_0qrʟLu>ZS嫗Y4'ꭒ%%z{?[LshoCM }ѿsnv|5'uF5%7\[(WEއ|-:WDŽO l?vsKCkC+2$ꐏ+n~Crѣ+yT.۶>> cE96rN঍S=&ek+; j2?s_G"dWU^ι])M}LGSޘJÚTB~aGD+Eo@T]~_=|][&߾3V蟯qVl;ʕMIxѿ1ϵwݩ0m \?C#?G~5q0T^'"䃞mkfpYZg|MŊ_~CN|7cq$w<sr3UGѾٝԹxylc o XڹWDŽ`KvWxR.9hߟ~o. h1Ӡ{|YXi:`W4:'.A ]zHC}41d;:]EKg1Yܹg:j?}W3;m_ڹ"EFl5V?uG f~gCJ?* OTNwb_#/vqn׏{8F8noDU_O;>IXl>lwn0ާV_JT;BF׊8~Ј"/ _KiOE}JS?xhϸ?nO%nߕ;y}? O.4<'o^Zc:~/Xv?N?JTv ?{?;!jHezU>4'A;ܿt?w-Y@WvV.;0v]#!,b`7ߴg':)掺:O,VWr?ϵ}ފn6yQwGs{G;ܿ5=i9~Ӆ%k 3!GR6;8:l,Qz\j1$Y3R]R=}!wj|FI9]~ް}CvgϐKq8 \O/Ug7g3=u!{k;(=nIk_d/=퉹``|\Tk|~t1~Tvϵ뜽ϵe \g}?Fq jH~Ov{/޿r_a=I^Rnﮌߙm`L~1 !;ZXϺx%C?\p'Dhw{l{n옺N7O.]O6Vk>?dC=YCbVnj&c<]co2u ?&a6^R`ܹ6ԭ {~?_Yqˎrs!h<6Ÿq5`/~寐S ֐cw:N̎,63#T{UcowqxNNxj~¸ӕsS?<<Li/݉Tr}Nk/!}[?/rZx“b`ڇ:b!K,9ؾ5ſkԾ ͐xNYT;01J|ݝs{l߿?8K>qZE.j_-0{K\ɓE="Ż,l?MjǼngqTG"x}kZ"fj0?WLO=KW _+TS`~O\duSuGyn%ؑ5?3JM{!_g6L2W2;{\%Q [{r>Q-\뫔d4E]zgy-65?ºw;uy53T|&/|҃{g{9kBS ?'%ij^ϕ|^?ҿِe՞<~A?5(w[4s߭!oク^p\ۂ_ٗ~il0J_3 />OW8COՂ>ڹeߗu%}ٚ>]h:;o8{]1?/?%9K\:G> xV8+~0t{>s~3{^KrȳyKW][wR.~S.s %ql_ =Bw߁hoxU1c3|A/]{_kkZFm^K\db1U':1G/MROK9.>:"?}G~%w|lݐ_+Z8᪩ܒ nOo.T#Q[?c  g|.? u^bw]8ˇK* 4C3wEHe^ߗ~?^ԓtx'QJVτGryf|quqnͯ|vz*~ŭs;2dO_}.ܙJnHKC/u 86cց/?wuy@ܐw,".ȥDn/A}~In VnHc_fnNo=LWT=t'Q}]O17 @R;&j'Hfݩ<[-ɵ©f:xEoHTjWs ෳ< vp6ٕKu}I൳FcpTgc+ɷhEeS`߂ jV<۫;\OOͼ[f5~Fc;v^!}m 2U|_|{%ߛˮ0+-vj4hvS2f;劸Gm;-L254W_Nk/ec#:\{]ާt]w b/:/]qU؁O{ϊ  weM*^ާ>wg}&{ 9cvHvjAdt$ޏx оw-cӼd;γ挸gǨ<#_+Da7o v"oi*&?j GK$L_B6Wv_v.tIOg~4lܞ\}IНAo3kANv9&tsެ ?mҮRݦ2]/?w^k-at/k9թx\zq `CkyvoKwZi/{v0l1=w\ۧ8{|ۧWSS;-Âױo E?ܖ)GkGޛRl'n5v* `KvV{iC'\_uvd`2|[&|< OϾ)tW_zuQ<?$]/bة_gEyw7PC_hFq ;ߵ?hw_I@ܑr\D___^WbE]|`b.?e/󒉽{s=h81> n >_}<]޻7eY_g=Mp\ ŔJ< `X\b N ;D{Sjk'!.׮,])Tzg47n[;pu$Sݹ$weIв}5狭T;ho7gʮ\ߊ VNxL~Ws~ongMEyށȓOD^K|Go<~FO@.iz/yd/?'sٟ/lk]̲lJ~訰3_3ʑn yPQO N̳sٓH>^^t ?aQgxeU ^K5nƿXAvWgVqɰ_oƝ/eGl׸=vy7ygӦYwXgMjhQB^8+,= 蟇wݿKl4eo4ꗃ~7oަ_ ;ߔ5~3'WqN OncȽwcn7En3[N%XvĦ~ GT_|_|3o(><*b޴kت+COҟ- w%;~N.5Q+~ՉjrZkfG<ˆSEם 33T?t^ʿ C6vt+З~_z^ V*>4_rUL< 1xznSNد7(T|.싹B9q9L;џ|bc 왺9{ ^|+s |y[gu/#W"n];r'y6dϵznsMʇ.uRX}ew=+ЙGs\qdž/ڗkSrWC{6)׉?}мOSzjF=>:bۈ ;gJτ|*R\CxA~r8]kZ/6 ?Gq;4Kx.?aOIE' ݴO"9dwi4I\|Rl;`|)q#!Kiwbs~:ߙ l_o;r\?,09:N=e5]7ƻsD{R=s?IwYپѼ8带?T+vsnPgv^!?WL練38%ߛ0nG:r8u'SBkWuε>gٝUVnϥ/l?-|lnis⎟>057GF#j7#ߙ8J_ߐ(K~1O=85<&k̸ ޿gt, l ~LP8h\T􋟼^_>$eү͏U>řX桁ШZ~ΊxFU6Ma{<+IÊm/q`sY:w \8dw}A}f ?)~rС/ ٦Ьs~jsJOWuSMD22=)c-WΙ4yWkg,j8>G/^*sp}w]ׇ{CƏ}闍% [VӇүݢw`E.C:V_Dݽ. T0,?v^=3i3>O U.zվ9>+@P˞ ykwܞZJlCүqhwC*O_[տzG|y}]L=Fy/ר~s/걂ozŠzoCLa߾a EoI7h:=NL;+YO٭>Z^#+ov_69zY<% _rTj?{CxU9:T ‡.xI|xC̳kO?F>d< ϡڼpV|F:ԯ={Ϫ+R!q>y ~y-;GF0D9^Lop>3b03,61ݗ~Em{F\7oտ ?O߼p՘r\&L$HdKqQx~wSh =3C<Ṙ6 0aB3 ՗~X~Z.=K;/5ˬ&3 ̕>iO ?F́ݔy,0] t[oK%f9&M~J܂ L>j/xn*s!kv9ts;t1' ez&  _7>ag22¬e7k$m+g$3Z*W_Y*8IZ|5>c) W|.>Н5];>-~yMSfOSǯyFϼ: f*[rS.0\~Sa- rC˛2wxS3<>@KK^-ydwe~>ME])l'IS&MFgv6/|kx?L^{, t)v2|LSp45/X'}S*8¶sv|%en)'ogpؤLmHƲv+)|kj(jܹt3Α73%ұjk}D_.xwTj7Av^{CxęBdž=BCS[mV^\9 r#u9u=)[AwQi9%'>H*o"_x/_yߟfw4Q}"V$񣄟2ﱽ&.5oJ}S*sêwgoo Y ~hrl]?W~, ̇;z?}]~vtEAyA#6{A3,Cئ`X5qŸ>0~V`{ >,ǖ-hD>?+ p~5 `/:~%56zi}~N*GӯS5w8/MWN]O[_ߍS?L^1Fj\}+_9~ R+dӈ|]_/o\~cj=GO>^qɈ5q~i_O~LeQ<(yUnLv~M;G>>4_ǢB0;pa9l-=}m]]`,|hrԈTSV xg45M{e T0 8kK] gFxW9ݛx wkRW{SkD_c`Bwjo;Y^'_6/gqTp,Kʐ%qV.jұلUFb1ǹ>/M AswW\ͦ=hڇӖvg?4z`ijhlCmh&M.G_0ݝȸ{寐]r/}WiΊk^uxs..zY[tvݗ۸<>3"_Lecv\j޹\0(דOD/3hW; { _ _aF3g?~ć~oCvxSvMSg16wk7rtr~v3{srZ_I/Ļ'4|M-qc ?}/^bdZ<8agПDŽyLQdFߡ? T9wCm ?_eeߴg>ܙA>VNLA Tfg;~'VձS/qo\bM}x[S{Əm=zFxBv/_6pS{nwkz>-x[_S#}sjH~kv'f/K%vvsR/EBrcxkv @,CBߘʟ+~L%꿢AV}/A3*y g3WWƻм_ݿ8hGw^KZ?Ӑw*lkUM!'4e}_Jͩ *)\D՛sȟA~O.uꦣ'( /,|Ů?JeS&0CГ3'Ǯŭ5Sω_K8L< }sI'5_e3wo2{nDoceD?=c#p~gzh$vPaM om.3:sЫgw~wj:y>օKO.J{gf/}h ;1zF9_}C؀!gi}A?f1upWƃ=9UoNeP3INIeϵy^-ZY=:gG6{?vx_l_G~~b=r/s=.1\_~S >*c׌ rxnOߞʬy.N <,jd9ǝ9w9kztFIR\֝Kؓ~>w{B;K6~~HM_Q\Om\r-O5;85Y6I_9t͞z{vT{1㎝ڝx4L26Jl_=yq}CK?2=Ӝ964C*{l,u:{ݔʣyF;eߦzg<\}4~v̱B9{ {E.x2G(aپo;M1J^ɤ;.rgjfԧ;$~&\kqh'밙Vch(O/ ¹8}_?sŹ휅-uP|_q59x4L/C FoIe\_?ߞJtgs~x/gU׋3;Ng8'S:gdQKH 8:s._ԓ~ϫx]f].? }r#/!3=2/'7v_zNlw+t@XY~!<{B;{?ϖj;~x/_R<3)i8FD+QWR#]M_Q_Gȷ/P/j(;݋tr*~O8u==?揠P?; nP3 /J#9Ͳn;q4?N<&ty\_x|pxUk+Ľcȭ>Ggǫ竵n4uHП/!W1ٍ!g:?O.ֱhv wmQ*ž?mSrkŹ} 5{]c9M8/?׷ sv_Wl_ߕCN'R-H?_8Wsqnv.nI~gM~S@/)~G3C(;=gV+uBmB+i+'jj)Gs<̉3 rzԙc~0E9'̋[~O?]J[P^Z1;<([f4W3T;DF?`yIoS5ug|}t瞹|A?t3?_1\3 0Ol=<>gL΀~dA50r>긋~0fނY5\0sW_8\ TUxǯ# LMn=G;طsny.ގ>swzX=3=~H~3wA~"~ YxM3ّ̎M*K.\~}ۿ8'ܔ=>sԌ0m\_wT} Evˌff6X¾N*gܻit.qGyX3s0?%@ k̲]<#LC:3J4CT}c"_.}jx},:߫7Ie|Ìowp7| ,hwJZ㣃~wu|> q>ۦ)X3=s)?Ϻ_X/T\0k;NșyasC\t2*O~~{/0_H_{Kgp~4ܞ־Q֧Qky0MnYX:8S`Z3~3XAr![w/ )lsF 8kU{:~)efe ɰ/hc Yo w"pVO? !. q碝g&vkc_פtSЭۄ,8?X,~ "4`*n_]6\kvs._Y?jϡ^h{*/ ~~'1*+N8KW4aÎn4:ctN;#{3;;{g@e!K㬼Tވzr|xv7>0'w_.x<;twP?uj&cޙ&W"S5qkrώ!p\;p%vq]Ghcaba܎ k^ȗj9{g#=cTp7y\g\l4#˃m\'%Ǚў .{;B `{ j)v2ځ򸏥{J εyZV;9; S!*;s x_O#| y|69(}.9O!ۗ~Sp!x|Qۄh>\0e{O? u\5?{ vʩ# B \0jOMܻoSb#' /}O烏݄]A6݉_!y'#s kS]~= U[+axBXn.,O3y r8_z{$) 9vq5\:]tm7-8>2'W .I7l}|Gbwn77sE*=WP"@a)1>6w"}/sBǿUs| ?<3z\0LW._^aүjV(^x]iM*;T? ?_aB>zGWGǺsM}:p|%]Ƌr{>⇩(qyS= PǏ>ss|}jKෛ;[sNšO#ߟ{_/T?BGbjJg;<| r±~\0xy%vw,| y9)_5Ab߃g?H\&G7ʦb' >_}ՂjJzysKsn4hV/zY>?1̻R/9=kw+)>v=XKM~ {zg* tMЭaܶ_3KMt)~(vjQOQp_/v/ѕC5yQF?qbūft/q? ,..#Yw(H<17}}X/F🥧<~W{U5=WLLyA3*Yl2vBCs$==V} =$\R=CӨvbgKeRRNs1|E?N ^:+~G;)K  g\9 wʥG}6V 7g|LGF[?٦ԯ_?L'AAо!< W}dv_S~8_vF?3}ߙ=z[寠S{ɡ'EN;vv_`Fg+~8u'y%ϙnw~F(Gg'uy]{fF8+׌O ;nٓE}|3xx^qݿwXM KTYّe TfCBKjc^Yg?{?ק/ n]s}2,A,? ? kN*3`$rݿ٤?W V]i^l&Tf?k;y-_MvG֥vؚ~u̷, 98>}lt'V QcS$>37y~L|.BTjPSߡf-Dz"7\m8~ok[_?kR<?oM :q$/zwR!eվ#Mȶ[}C?n@o#&Q;P+y}w7V9qhZ'\[_K cAP!}_5a~\<BWK?͎o?:Pg6KQGWõslXˎ8<5Y|my~cM,,nT?Kpb $nb@/?2@*3krμ/7xV.wc9S?LԎY:M?+_k<zv ݊`{kJsCďʗL~;?{mY./S{vmt)uL9L'izii>\=v|9dkrZÅ>Mw4=3ڥ\Gks{lt藍~3_Kr2deH\ѿוqVuݿv|7Jnq"tQSBLz.q)oŭu%hoOzj:Nw2}H}}Wo > \Dw7ҨǏSD\ՓASvq*iz}ŷW<5\rmj_Yڄxgm$Lپ{_!z{;IU;ߘkÙ~zTbr_,7&9_$'Rn}ls'ޓ\cCvώ_v R>}|y4͜s‚`Fgft<fd>yfᙡ=a>sKS}>W;5u;hef5ێ"#Cs TrnHeTe%ȸpr|q<00x![ q4Yn%T\O_,{=KL?3=>od 9+JX5&s[R-^^? ͚bΑ9)v=>gye7g _ǩ: ׋N*}G59[ Rw4; :}u'ѣk¼sr|Ƽ)x-=L>Cs M3sZkcF\f!g5_&l 4lTm:7]q?W@D|]2lݣ!8(l3#]`?_?/rAg߹gŢSکpwM$;)X{ M?q4 xjcVcs59vpx!&5~l\Q87?41u^Ggc΍}S6Ge3ς#L+d@t4W͠:`1!'Iwf@mE{9Ӹ3`#Ybך]T4nwt)?L_ wP-Qrk3q ti6(\}YóҎvA/4M>ʅ3xZL많QA}+fvj#- >Bz%Ip_GzK.X ~Q_zЯw5?qS*{vrl9+x sWC6dӠq \:Ľc燃v<0Щ*ЌI" =삽snhwj(8W.Zq7{qSp4;G]U9xD"Hߜ< k#<DŽ>[W5/;Dߓ F3bq!*ua3>rAGqa/VO?5/J'1}yӏwٴ#g6dD7gM*=d?ﳱf;G9rW97sW ? O6Zc_, %Wo|ߔ\sEU+".8מG[xqY~v< 1O~S}GTLaǗ س{wUȮ;O֫Sѧ]Wg o1׹\(`QUHycWzQ;ޝُϞ6~n]{-kC~ ҼoyK[}\KLՎΦi_sp??"tX?_Ҫâ>ߟ>AyVY{ x_;ӃN$^|!bCr;}g0 9ܮs| \KjI7G=@nRɥoYYs /LHwh7t^K\5ˡۿG10؟lj<ѧ7O+ɵ[dž㻀k;~]W~!{܃rgN4~Gh˂0eoکH C;W6%|LޒJdKgR^B_]esd]ò?n8~N5yhvG]ǹ6Ҧ@h'Ϯa[o1:e~ _U.. zK]Faw ]:ҥ[7]hG|G3"_7+_q3:i⸦}eYʑ.  A'CN߷>+zH8YՄ\/x.kq=HzVw7'R@US?(}T _L?{]jю!GpǖI'R}jy^t5?BWCOA*JoפUʣ`A35U'}(^7K;g?7T~Z~Yq4m@]?S\,>WQ_IͱEa%`9}|W95ߟ<_jJ%TW%ݫxϟ望k$^>.4C(XytvM;zSÑ_/#N"^g=c^K>ڻ .O/Hv$ކ=&9οbǣ[zm·/߫s~vȥ;hϑSC𥵿] Bk3 zM iOEa=ks{1c%F>;ӕFS D|&Yv?NW{|6J='vV'髏qi?MšGRyFˤ]*bEKGZ<>W6?/?JeV\3S[+e?'{ՉeKs )3_jOp ?oHLX(,q7<yFf3y#xF5C"sjF_?9|ܱ d%cܝK)M;-=nTƞsPmZe;USB(ǗP/" އr6PU;|rw~g">ɭo}I.]GwY2GS^zws~EޚJߊx3rS@_|O7@sFMSr(7eMذץ;S_DgD=?>2%>͔f6?+g@?r!_ok(oɥ?,}9W#٥hO }OnIwȯ";=&nV2voM|,WfW3V?`Ẃ!>q#_0tM>)}/Xy$+ժ} Ώ^>b1sDת.v14uNOkKdԮiι&9]I?>SC/߻0G׷95ߦ?uFŐ.'|ҿ6xE8B$6=_ϥ^t}./xXr{曯&_M~lODs ^B|,D >?=xs!gbkSޟKJ:3qrTUUɥEoԈe{s)?;d=O~SlSЉC(W{YwvmOwM~k?_;γ/ƾ_ 0Ϩ'_WQ? oWpCO{'wfT`M{fvk;w:GkNFH F㵃/'"|MSѯ}|&O@:ʽ*x6dۋQz4R=>h'3!/ ?צiu*3;|~"0:|:K_4yQxix>נ{$~:E=kR,zx6ݠtS/liA?K\=|7WlB? y,[3SlۣM{USzZ!sOɵ>5 +"9}n>&z5?KikyM{~??=L3}4i ɫ7 3v(?ϣ;)Mu:'y=z*5μԃ}O=w^ysZ]g|~s z@W]yvO|dy>&6a]jGoBw+껵<79?N#G(Mߒ޿OY䙱r/{_),)_Hc~;LC2E9\bgcx]<=)/q^BG6x,w`gC?;{.mXb2K||+Xq43\+;Wo6e{wt"y (R|g]K L%Rڔ{u1̀Ru_c2t\ߔ;D/*;O܎Txh\4τ?f@3[=-6~ǹ$;s;Ԧԩ=^J.~ȷ=^y0՚T9֧Q߯Z&gGS^gV'űD<;?RȀgt[1>uC>C{ƽgu$YY?%)|7Y Dƅ ߝ™䳉vTp+Yx//}%GOZr) D3z%; jA<?>C\cGS|/jwѸV?ŵz8ϯv/l?~ԎqD (@ 汤zs/:'x TXR+kߜʬ榸WpuggzJ=4(:̧B7fͨwkCqMO{لE_ >uD/-gRqn|ާ/3"UC+jvU'BW:ijoTRY^e_nk-ՉxwnS i*Ԏ pץ?ݘi9'Q{'"!d^6?g|L^OG/](zt go cU[xk.x>=?qo΀~TLx'ɼ-?_ N>D\Nu8{nWΐ~`C&C7̏{ | X@XԿ)Ύ$:ޚx| *] )NR_C w!ljUo&Ϸkn9흭}uEWWץ?~ WȐ͜_ PO8ϻԅ56֙/|j~w\l" J`t'd!i;ٱΐ_(|'C܋ճC|G*y=g>/k}wrNzo_:ky_zW> ݮֺ:smB<2X @ '9e 2^s@8ϞmK:gL(vi8{[ygb6Ǖ_0_:F v\0tϊ \,\lhsٗ~! /K^x͠r7l^2lϾL;>?-]CM~krEjU ;g3<>>=yDnצ=NқI^q;x>߃^٦|4_;wmߑϵw,n>fRs}WNNV,vܿsZjׂw}8?oɛΎȦǶ-Υo}#e.i.`e..Kw }7L߾w)Âv[_vwκqt-uLK?v~4 >SӪyq B7!_q| 2{s*\TfW_\S^r,#]7 @'R;#3.ȸl6z4+Z^9+F޾se~Tp:}']_>&b^gү<5~=s~Mt v9lj4};6Ґi}\lﻶ]:W jݞ7ԮvN?g_k>g얣Ce}0\߱@7ac6)$Y]?9v߾~rMkw]_~A9cs5; Kcflq;k+EW?>6jHW}ǞFV\aՅ U]w>w>SZϊ|ۿbo|`_|5Kp~4gm/{C~WwͳbT.~gZ> U^m!|vp}v|?µ:?Qi7BÃ`8v2 QKvew |dѯ.!=C̈́~npEVC=p+]o|'}?)ksLKw9A۪ZswЫh֋M氙a^z'hƇM̍g3#/76;]ǏOY;f_ʬzW7CYVLk ;bX>VnSЏoy{qͽϱ8~g3gf f0*103to>ɋf@D0߆gѫO A̻ؒgϦ9:I]wPSN31߾5ugAvewYb?:jîC O!,3kx˅Cj2߳0G^9~l_egwO*a͟2?- 4OY+wߙWmʹ;@8:˨^{>3k9|2swH0Eiڸ}Le~pm*}ڲ)uwܞr}pq'"C0|Tq^{#ݑ ָ9[а]|ιsqTܦ+Ȯ0Ùr+9)Żl;̥~ye-|;3ϟ_ y&ͯi&}f3ao 9g5Tj'&OS~h]|Ѽ`U>7e:Ӥgkds&r@.+sN㏹u׍Grl ;amJren~I} ֥Csھ}fŐ_GlXaS>_|8,t/n'MR,NA?4Wٽ߉=*W bd<cSp,}BѹF_95'L|~d]"7d']f>){_nsR8gJe7 Hdz9}tK9~6|ga}݄s%c;SU} ?UskS qyK]^/ )?-xIP.3IȰvw g^Ms~/>mxH}qAkWۋוyMZ\_ SC*yJbO;!+ ?%;k8x.vg֗~c;~v/H~{VOW E7^Jf̀5Mj8>g9sV\,m@ʎ_~0x޵ni #rV`EnƒفM Яw[?_{=]>PO|aJKJ?y S&{,&\٦iEծ]?U>/jdȮz?|Y |)_\v|_u*=p?W|U<8xXwMܹ>#gxl]0ف٤jHSMm:lz,^R x ?  0>zͅ)ſuʣr9r5?OHMMK֫xeSj _ 럃}/_r\JaaV4eb_}g ۃel9TR^%@g?/a89 rDŽԗB_#ݮ9?A_vΑ5l;/|YP9o]]|rŕ)Ta~2+E/WR;浕S< }XRR|k.u_t)6KuRk{تMwT I~_=x>W߿ytU,Ÿ|a\/ߟٝr;X,dy#x/_G>X| ab/>S}1}s=X1lkMV4|)lg{T;ӑ]L~& ?ux|=4^MF '3߱.Mk(?E+h%&g3ݡȮ# xaQjsd9ğ:\snQ?;γ-uޛHG J@kFML51FƒĶQ@BQ1PbL&HPTP: ,7o {c^sv=<ozsfg?OgE=bP_ŹN+VXKLB_yCwLq?ÇH7矜 q_t`ŏE.ȍ]^&G}ܑ[r%5cMYsL{C!+bbu~<]gf=_۴>suɣSwڜй~魅I|:H0*L>T~Dqx_B_׷.N w=u^uoo'Rx>5\a|:u񢽖ǚ}=1vNKx*Aɏ|r\c { ķ{.wzU}M.Y}>u;iސ[GNx*_ɞk<;Q5S\4_㯬ɯ:ǐy%^ c';z:23O'S/ 7HDzϿ0 wn6Ikn'L\"&q~;.>ߛ ^ݸ2&G(88wy$s҃z Smt}:_zz,\wbbϋ]7hs#S 湻VzZ#ʛճ?־jߧ}So%WT*3xy,}ڪARg,tg\zlY?^}#p;oyW{]*ckk[֎0]4 4~` &z,#})sb US<`\77ץ[~9R|\T-t wΣv@wOU_kgZ~n}͞kޏ;s=.'rݨ܌p~f_Fq܁awr󺽵(-ɥʐaiz JۚYW).C~TүHj9cX<3<"gl >OgO]kV ^{UEuF]o6eyy^:ay}H}֔Q*fkjMʓ\@RUK\^󛵺Ph̜v?R{_[~Xh,ǒLW y:t}NyI~ 0МLn S^=8gNQ:.}k/S#n?kW>s΅CJXvQ9?T~6"zĶsAkl`w1# 1y[{5ץ­>B{|z ƓZZxIo}Rjknwt'7xE]GF8?C9Yǹ;?j. ;D0~_#Qhr~V?_ _sOkuk^ B_+w`|_1?>1ǹk`u)| `8,^ &[a?nJ]@ȵni6jO~W+fy1?K`@0K>>1_x!/myr.gB3< :a~yx7sC>sߩw6=nϵqt*}쾮ɓ럎糙S{vR7Å ^y$fexv3% e>*t*1(g8?>}ʼBUbN秄mӝ_C_qM=C|AΡ.(Tƹ84>޿ }g V$|^Y){1C+ ~e._`|lSܹv#s; v Ml;3k/3یų`7ۻ@|T8(E5xj j\?mI_ ;Ko <Ӓ\^,I^2{ sy2@~ncyY5l:$s&?EB_R}g3gNY1",5#N1sKSjY;d>8? sUY??'TI.-vRx :*|2 0`}G"Fv:1ςo7-Gߓr߼)L5aK! yS8fK/evM_8wjڱ|=zao=)#W.$~;L\xt3*~?)5φʿ<~..iG-P_u![4?~a.Άfw18O{>cwa9]WGu7\`|o>Y*rqGwxSg8z9ȯs1c5?7sR9Ź " hNՁ&Wׁ+l ?%[#{%\,9pUo%׎k<Kx<{2;~+: .];O~#w@s. s2O}%o ]]r+|ӔywMo ΦO<qsSs;s!fimjĔ䂳'cf>5u7f~<>i|=qN{ s"nry̼',51~3 ->b]s]xgݿv_{}S~}?fP_m8__PLB bk~w6t'uNb[q~ Cٓ!+z-Iyf< |]_uB!^K7/9qqe.qTSwnJ&sE M~XkAzԱcbSRS|Z<Jnd ֎u~j€~5K6# A[_P+~:DKŵj]m;TIVsƇ U6]6a?(yyR3ǟ*?g8_ oǾSE_ Nz,Lj Mב췿'f8B9njw@K. @l??\Ꮽ]^? IM#reS-_ur:*y{ͨ՟k|d~?[k#NB<}%!!_\ ]&6=;Δ8 jJ 4"*?_޻-ms>Ϲ!F:t8W`ˑ[8QL>Y}QSʞr [-p rcog}uIbiaQltyGִ}Ҵga_9~LJ>#YѽsڑNcs¿;'?q i|NKO/wu™'_wpc~{gְ>sR:;{[!ޕۺy?K\pݩ), G.^^gF=T8S4?IoMk85}8T|9?;x0K]z7[~#]~}PğKcϿKsYyz+7NMoQyQ+r;%✓j[vW55"AKV[^J=WE"wRzRD*٦rL"/6rSSŷv\5{ϓR߫sTRAW߇]Rfjun=Pg}&&>7R^\BjEPS_qR}^'gIw?sO<}O.|!NԃC7v } ?10/J%_/N.z\jvU]j?H5O5E=d|_ߙ:op9gH=.Y tXB3E[<37rfO^g+fZcթVZ#=~}Nw$dK7:U6tj?5f0s t.>1P; g7rC5rj g rodϱ]uM煟zr& ~a[[~T0صɯrNЩ4/3{aˆB=Fm.|]!U_khvp^*c~mӉϥ,I1:y^uɥ6ęW21/4խsiZo*8Δ^?&:5A./ۘs;`ž?;&tVxYkpkxW=sοsۄnz|5=_;""''n[;:8^3y)+)ja'W ;yckW?XXLO'Iqu/Vo|֎_ĹV}+^iLɡ+䜨~ܝK…&?6i\` WO5}x~7+f&inu.h׵ÎKy|3SK;޵q-ꗑZWRzj$T' |Pt/ip.H{wZn.IW9O=X}bj{DR^=:X5J/OWcw>{N S; qיM/h8?a:.|PٓE!q̅gwPv*^__=[_gic긿Vk嬜%aݭQjHI[s>ps!q\,ޝ۹kCVs v6fLs.G?&Lfʯ;bj=?XpG{빝]f?,p}8 7n3<±F Us5z:kqݞJ_s;r;/rDnuv }gǻa~xG*G:άPuvw>BϿ%;Kwͯgǥd9Tf ;e&IϜυqNO}S`{ \f݅iyG1%L6o|!~qsoBu޿0r}}v 3⩸gs\o;T~&@rE3?Fp].Xz+4m@.sT~V./-n{]\few.lvdA 0(y/X_8`pH5|_Sw!~d14~UaASs.Y})f^JߙfKNյy}$}I+u*Z%ޛe{o*`0Ol|.μ;.d^;w5W};\7̮m31n/-reߌsN. !> ?lgr}]_;~HnfòAai> 5{/&n \Tꇎ/LrA̕|("l8`nT%~;є83 ~OS&k2͙!?4MDzг[ƓR}vN>Ox|NA>y\o˭ {D{? V}ㅼG:T;=`%D\~5`܊?Q.j[ uο XW~sS}Ky"|YSggbqEf&3O 'Tɯܝ}I* E{wY]%l0%ȏ;FA Z"U@3 L~ŇBVd0}WmO5W~^\׊Y SYf-;߃o'~18/aS]IF,JimGz|s_5MC9#QS qx|ٽr{L|xy_bO,"v@o"g%wc辐}ϐ8dq>R!:fb7^w[YMgr3eө'ʁ/}Ns~4Ksq*xNk8u5^s4?uta*<78wŽ:M>ç-u#tDw}! < $rr/d~2@z~,O ?0Tjc=nnk}VL~_SQ5|}fsToLNclŤZ.YR;F爽v.EB(;0raLޚ ;]\s&qZzΦWl~lO'19 v?m á 00)̅=@;Wo|yw7T~e]:οN[.SCA1=`/S!zG`AswVWKe{oß~{q*}|.\ ` DAwJ3ܴ+gjpާ;/ᅣmH x?bpykzWߚX*9(柾8u F}ȪDlZtoסc%jC*>P}}Aݡjn_;5 GyΥ24T~W%iVJ샽J(w|2_XȫzۑᇉOp<>;Ĺ=`k>Bs㰓<^ - 3_=@m\+۾V-Z#_j*=$΃sr}roXXO_],w,˫Е*fdy~Y/Sm 5Ptr/#Nrnܔ;Ijw~!s_s wa94ξ8[ro. 1W',wB+G;>3\ <qH: u^6ꋇJ\/\;9 //Bׅwoo:ʬ3ve?Գ:2gO?OR)lp롧FRG&nȥ̙y-?.xؗ[C{ |d]INuHj wK ת/b-ng%=?Vy0$|/Qι`{x󧈷ޱdW\Ϡ>E!7ir=SsB ,s`Z1tdj#hRyTcgys5\ Mklblkz|~sjw\|/lb)?6m\z -7.gg 6FOH<9' ]G' ˩;ߟ}sm~K9tH3֓g859PL5*oC$Ms1/W,:5:3+u*^Y oo?k[Ce.܃/3C)z8Z+N#9X0W!rw/ݸTP;?kw_~ǘs_M}cnOz/3fNfUҺϊy޺vۏ{keGyθz?|Pq }&L1\?e[g>wO⧉hs&U??K]%wV G=>۪{0şW.s;saH-M-g_=zO ]%tx:9ϱ_GG{8vBS#lc\ML_e<~G?ݡ5[Z[7޶z빡oZU1\b-#ɯ9XkK)(]q[C;u&Nm &ۿἄGyCޯkþoIc=N,v.4ww"l?g<=raaQ1By_k|-y W.Nb/->jeko5GnI ͞Mt>=+ rb6?_^9 '~KGTn\Ϗ2g\aߝJI{l*x/f'CΆ1)~A,gzRg2Yض›^fP5>F?$~Z.5Te;ǘ*I5U鍩mtK]_}V}ƽu_KK{kOUy 5By}s̊,$9ߜ'q7:4?XϿo;=z7.߱Ϝ>{MIPZU~UڼZr})$;ǞH'>V6T~]~g1ݎ3T~@?W^Rwqdž/\YNA?q'°{դy6??Z>;ѤY< vЋIcؠG]3T~去n_S);P阫O ^1繜9A7ǿQX'Gse#_xO*gqjp9&5ϝl$rwƄ.MO1']\ =f\AsyC/4?kԿoKG9{m ]O`C|kWz} jTa;K?w3vs޳ω︿?zf*ͱ~S?F|LnӳKc⏩W!UWz>|q.=){l Aw|}xӾ!6܄Οc\ӱ;p6CY&tx&^68p3_ =>~X ?vv w9{&rUxUc3 ekELG _}M? "4[ N4X|܏k<>ϏzϩNuok8~og>[P#q݋Bܯ_p13s<ާ5w|xr&qf.ͅL11#_7AK3ȯa3>¤U-o^7o6MmM9>7?9+9;υKTN b3.Wrx'eqt?8T7;vsjjw(`//sbׁ%v^r suf:unD7q^g~9P~οW?=w~#~_r.[/nJ|k Mˁ=T~oV 旯#WYؙ琯y?c{] h{_8s  Bnq'µF-W,Mk*v}>0|t#ty}k*UҐRw([=r~\.)_;&k+}E3vnI<}K^~+鹍OϦ8?DO+c T:n>?+qfe.AC9+6͇0 \xZ ϱWֳrIyQ._{,q7g!5'/0U;u:Pxԯ'|О{Ox'pKs97YzyO~E`"ө|]Z\];Wg[sp\yS=ˈfnݪ)cnҔZ߬aRd}RbS?Qޅ Ȋ!bjdW_|%7|d߀j@5/'~4ZrEnsG)1uCƝߔ<K:~~su^x_?}[n뜜c]P% 3$m)*q^<,8LIݸW.=qvЫs0~CIv;מk/ʓ^Kw}0P_W\r>爼C/t?s/g<W#Z?'3qհ=_qnWy0M#ucia\|]Tb9[ B~=ܞ~ a'3_*T99Crsrk]%+Ǯ^KKqF>}s\)6wn8Y5N%Tם۱߉gPĕ ]!6%i3_5=)#ΤޜK wr/~r2+rPowGGSo}h?kt_{$ju%{ כr[%;..@gƻ@?gguxW.>O1Pot*w\M!JvF?#~9ӰZC{xmP;Jןusěw;l9/%b$qW]1#6ݹ >KYwb?48M13BC ncO?IwkuZ\z ~W{6/=_/W̵\!|9$۸K~{y?Ir-'7T~ccR; 0^&jߏ,g\ĘG O|c M{9y#% u_# W1n͇di!l 5§5no^r_ s_iN?F\rx}ǻb'5mnCK ^ W>^mdۂ8N-v]GZ?ۓzktuka;=f*qƹ8/Ŀ<\襔 .}J:M^=~X :@w *7Pp='yGl /vG}yz*~6|:[ s6w|q;.crg&9ğNjܽeߩٲW>矘b'b`^13_o:J8=y6?wGsJ덝WQ8ws<Ԣ̭'ϵI+>~p774pR|?3o撖2Tc/l^V =zā^O6'NS.wp1WF^Yxsc󧯌»Nr8co:VO ӝg'o8k_V~;xzO .{s2&xtE*x M~o>'ե M~qS韼?t|ߐ}?S^7jڎ߂Ϊ1;twX7"e=%T=g~B_Scw>{?kF_xuYALYaP ͕ums΍Z}Iu}.s{4+j#T1+#ݩgxy*|a _ś.?,Mv#q?#V~Q8S|ƽuL3u ?POk97s_KS;W_ʽ#?t}tWS߼Tf=Kugq6~9nI%o:n' *V+>?iVo}]5WrLzR9v^=[\bKXWCWmO;΢*?P*!?C嗍\/ Ry1U[]v쿦Ա 5l$\hjtMhOM{w^޹_{/mWs]? ieOq/Ozl,utkYa,Ir/"fWeG]=Dv;sfW<!ϵ_М^Vυt;~jw2J_Bqb}NqQ$u֚4L*YG' 8)uk_5=Vk|1gSK²RZ9.Wr;T~C\iɯ%lu˅&̯f7:Sgk|FKJgt`?+6 w׵xџк?sjQX8{ʏgRZ C>n렯䌺 y O]M5GRrޢ^rO$?rFOjqr׬5|'u{5Gqcy5=P✓coxƞg<W+pKO99_l]{ M0tK5 x/|.vΈg@f? 6p)2wj8!n0e7Tҟq^ t'n'Ae?W`턳FDg|~buM} ISTs{;_֜3gׄl!9#9l sFȫbiM%xp@ùUTp&]O֤>8|1!{5~MճzWuB ,>wri*x~ǥ{r;;#\1IL=\JfS&f;pY6l擘w[V?˺>^a׏KOa!)e~;{1{,ci}imSOs $`l>7Ό;p _˪a+QMJX ^3=@aՃ|Q(wqsykWc{|]ϑ.6^ {w<E_x7/ǻ>wqλL»Spp5bCv|-6's-͏nr2ܛy&t98gk5c7gaxeoך}߲)Elڙٗ5-45ԇ ׎8GyA׈xa߰f67g8,, ?]M,?3p?T귵{~'ڼnMԭo3ְ;{88[s'sO3,*:5q5~}^Nxx=ie‹s3˗Rqa"?dž.2_SLǭCT`Q ~N'bl5bEag` sd8}ݓgߕ oMKCg9Wҏg+Pþ:NX )1vMw旟m۴s e{xYTWz<ލY׳wum~kbN%JGeܭWxcO3}.>vp,<\;*_8^.׳z_ }vZh  a+efQ ޗݱ?Vl{6v8K;;(98pGW]9WkyR~FBT\救Tg~8C¡=s +.BrH=w$68k8Kq ;pSs EXjp/4oJnS/fS}ω}A>W^ /,?aK+Lw{ey*}Ǯv ,]ץ.Q\ku-ynl~3wv*_+[rpBbzt˄ {_I){las̠fΥ~F^qj]jRqĨO?S}$Z}RHZX}7d&WqOκrAyduM~x qVT?"F< EM?Z><)wYrfjgkaUyH3~oܚ ~aS N!r`!e: }xhR*|ñ,T#D悁NLz.91\lm=wys_ t*=7KKNcߝC4]ybjjB?5-\ERzݵrw g:sДbԴpy*=^;_;/DE5ZjzZ=`2/ASqOqVg?՗H gF 6.%Lhtٹ\s*?Xq? azL|fcz.&NM[hӡkR;J?$^ \^5] 9~릭A4ŗN.C e},:Kr|%TSA$zٚ5@ʯ<_A_߽xh\|͏I/6=&lY Q+2us<##'=K~;15y qu/Im=4qӵq*?6G48,NJK 9;CvdR/)q~/";7A~a2콰B/g~r;.aɹ}|s:S?irs8+8Ź,-#|umS"9VןS[ b\blԋxs*'knY ?[>;'S 7yإC!y/giNptW@xg;x:P5#|'OMBJgщ戗p;8g|1/9l+ !=~$LMGyĹW,}Wڹ[#rJ_?5YG!:Ol:g ^7Ѽ/ۓGWg~l;Zwk[ֵ;@=6?iu^?_vg5/z*~_广H^I}1JߠoP}i6~iN}y^ǃu\Jf珈s59%G{jw+ێx+j{`8_ ˣQC d+|TzMW 鼟Ay玡ηRw,w HO]?Smo~NmN{8}]v}s]pDwͥotkzcj{ d֌XYKǒ_s\ĺ&?\pH.u-OK–d\w.KmWXW3i}-M{zaME8^?#|Z{{t\|QZIOe;)l¶:?T~a,4(FSG^؋C'?Oc*u_ݿ~_jacǺ>:OYZ>X)3O 5y,IVԽgQs`.?WҖqϡkv zRǰB_ +ȅ+ֽ0Ƹ*z63*1\ijpt* 8s&u|v?G,L_?bo=um"4S^uM.||S.1Ϟ/45\|+l}nө̅a40{F=b⏥G  1>"}-Yoŭzk;m[{G^g/zCw ,?k̇|.uv@,^0a,ZN\zSNH3%c _=n0uɅ{y9aw9?`M]KR/9ùwZ3{ֵϫgyQwn`v.:Ocoz]Z><9e~ fk`AQg& lgfgf85/=*: dm{C]+?J?ԬEMٷ)ƒ]9UqNRs s[^0x^'2jNsiǑ9Bte^s^L1:]D_ioa< 4SvۦX3ƗN~͏hTzg9Tᑁ+;#[ 61ŌPRKg95uHnm87̙j.acsyKbRz?*,4j=Go3,dujIxF1wΦű1O$ڳȯßsaMzS-pa3/.y G!3/mZ{*\/=+8vSx㇩/O%e^@o}ƿ+޺_W=kaymLhNϜJ-|:;?G¯6zş 6TLy_*p Ű iwS_̜ ;cMI]zܝ_{qƷ `rltguޱ??s[Rs_? !v vj\K"Fs{yQB:{tSzsS`HyʺAo]"ϩySw~<_r>g5툛.o9v eMn mr'? |+d5u90 BS/8cV\'Fyj59y/}aiM;P=~-rrf]07{*Efa- p3;;6EyC')W=2? sUkZ\J>乡cKMTN\sxkߎ *L8uÖW(ߟr/K Y!xIxy\-BpOs$Σ}Cs}BQM֧bgtq;{Ź;9wE;^Msw 4>%9C@yLDx.&N|+Rq)YW:u.W#ϩ8k89^Sxu ^8xr鏣=.>@=SDZB ,+/l@d9Yο撼~\K~N|OX穡ִy6*?u㳎U_ٗ+\ϝB7;:='$;|}a+3_|]7}sR.ډr`!.7ot"q,,VQ8п#[U9QjǸ8k~v}fq.k9-}5^?8ӡySE4zLM:u90]*wH~On.snyoĠ{c.9bU2ɼEk 5aqcr~J܏`8^[cogVKwώ_7tUL sι~Vqv7t@Ή0tgųm_ߴUS`׌w]EM|~*>')S=)z.I%v~m.5|Ŷۼ>lOR po.:𤈋mb ,1\D='3^6uKށwO 8{CNէe ]xs3|XG{jSW`v!'rcc΅|??1s_?p?T-8?'RK&=C`/G;c bhuˎ7J[7ah]o;~IFb8xos~9j+KY~K9uXr;T>^Nj8*jo/EU(~ޥ)wЃst l25Í? ּo {eblq4u7}79?Jc;~opp_acc1VS0߼^!LlxV*>u:lտ9Yفңjq$kq5=ŞoΈT®n 絹KcC?S=wr3ϹZIG{ UۧwS3 {4~:07s鬸8_ݻ B~#ݽVpOrcKs_-}" ouuqnIw~ݼWE83Z\3;p\SZ+U| ]/OTfcx'G\tu*q븟7P}rF s;(yΊvwwO&4T?K(YfݿPVÙw"u/νꗆrrDֳ{*ȭCgG s􈇄^i㈉ũ 9xǭirթ[nZ9=`%g|+s`}l ?/ Q {/Ǟ?W_w0_Պ\7x?C'g$v^sAysş_].]lM ,2nMaQR9T bcUb|`=1/1U/;;A#r#!>TpqMG.}^fT| gt}=Gu W}]ps^3cZbS*Tzlr; M~[w\SX9B^;3~%,qO8W\gSw~}>N6Ekz=_>Q^ ox+쥝s1KS^Sόpz׷לapO*tyƔcs3?po#ȿ,g8SOK`n筝z:ukM(kl#?*W*S{}O|}BVjB DU\h;Ϡkb 㘓1td͞=? Så*G5xʤyg䂑LP}`ʊw?΋1O&3˥G=Qk8³ tޢIvǛϑtXReq~Z}[^/.}8.d` -_K]J9*gz;wɅ?x,^1{/ms>8lY/s;{w>JON3 Jծ>[ÓT?–uUoܣ^G7a9׉@ O_Oyͩ` M~"9kRy6ao?2T1<{{~_OVGy}\[sh]ߚ /n=׽OY o†2gR;yɭ Onaο܃ɿ<ΪNlT*h-tOu3Kϝ[+z':m ZsK&'#{Ǿ71ڼ 4ǿS稧c 9T~ WO;$>*ߟىKO%R=sߜ[Sr;,9=o\Ṙџ f\ߙacvMK?] :}ϒc?sxǵss\fmSyek"=2+:W3ɬ:0swJ׻Xv+bI3uM;R_nV_rn/pDb>|0_մ3l +C4e\93䳁*7%5<si?k4->a_ -#'2Ca=M]1\ModL/恥Nab}]* X@1,-.fʮg30rS/zӰ9)>qˆ;}/Œe_sȮ߽B=4eyuMsǯPO;v./o>/&f/0O^to.׿4Y^u*Mչ"Tl&44Vv˫*XK c?Cv}ldr@3|o3{?z+؏3r']-#<رw _~o;9u* gp?n6/ PU< ܇~`Gtbku͟*k~}E">s3O!5-X ];_A߷nB+5T[ލwxJoR{;,N>:jM~'<jG_JT!|,_G%~g_D½z0uG_YM#7f>> 9|kP!XqY 3)`#"O`R+M*skoܝI{kի6}FO^J,-쾍rF)*|? C?8cG_3'ȡ_\-쐻`/ مbd'! 6T~Ǐ3,ν~=)Iο8R~LD᳼#7uMk|Vݻ}E^nYXɳK-yC`8n=(\JoLTfPLst*5^B ?]\֓?]Vzuȃݥ~ס`9q+^&+SWD~j.>5=N7q~ϲg;~tX0ߝgK5M\uB ş\K B~%=7PtgO¯C~Z[C.Wv/J]q@zr~\l3 p@?t6C4w^^g^z{xO?NqtyZ< {5,O0??ln.y8O9֚. L90q4.$Kc/ dԜ}RgAwHvJFV| ˿2/#M^f:~p(Ǫ'Ͽyο|}c?h ~P/ KSY3#3bg:~#!v.I:NO<st?Ysn g \o1d9ga ~%at\ҟ‡?u \˪s;e;TkS{Js ~j'޿ѿ=;{2q?i|3UQ]5p>UkS"lxHsה;%<\3|8ǎ+xB.‹1j {M _q)}3 :Vˋ^:7=oTu}Po{ka5=֟Ï׷Sؾ\[apQ!\m wNS%1熱:/Pu".9ş%uO$ֽ :!NV'^ s gDrxSm:r޿MYr~z<>Fs{Y bM2SQ#5gs_MyEO~Lj]4R{ȥI cex}E,tHo,k[5.NnkُmsE+eb zzl.ԥ?vQsoݔ ԈŜſ{b2:}{9#ܼi{C='kgp.>N߉^Hؔ~R}z_=D_~lj]:` GѽRHK_x>QAׯxIq5jx's~[o{1Ys=8PRѹp0[8[7rBMpꝱ_g9.h? uOBA?J1k(G79,$?f&XԔ^g1L}M;4T~Iq~T;x;Vu.B|[7ϩ;{-!w7$ﹹݝ<^gV6a 8}_6/E$y<`^/wp4D &as]hJ*ob{hNK#+=;"u9;sl–-/tXo;έa3c!#s-^c7W^eCR^Sj_;o5|Qܗܧ{9|F3|_-lZa1KS G1] 6HSΡk5V=bOk޳)T?Ir7v^{7j~ _2gYw0=.T<:>=$ѡ_*TwKm\y=Iy9{+E +?=_e%K[cyS0/z 8/gyKk~36)~Y̝wfUyC0 M(Ji"jg=hcbW-ƊX)M1QHTzG`04EzY޼s]g{8Ys=3^~Ҫޚ,GA;?.3rn{z\ӟ><a* Sg: ?E?-c}$𽴪N[1~EnT^'%G{⛑#!]&ٻC <G_Y*oEW 5F# >?ޱsx VMioڔ—лYʜ+s)6ewrL 7zg띉翴wq~smNR#Kէ㒧OJ.Sk;G {/J3KéO|+ۂ<x8ЋLK]~矄ް_Cvp !𻈏W5.x-7ʯ EJ7G#5Zdq|Fq*r'9u s_$s~aٽ3ؗLsO~- ȭEFwѥw{ѯĸ>_a{ ]uPKgT}<xٽ/x[QM&duDSf/̀_>goYM7AHGڔ!o ?{?^&9jQϿa TjD6{tlG|q<q9^~t_|$vߊw?P}w4\/e\5? S+ׄw"{N%գ!;5Z9ޔʗq _Awzox+O,މ7U^7tцiŧKh,/GĺHeV?_}@uyE._;7wF_{g~'u?Qw:߫7IPK}Y0?*\J^3I{vx#4(,L.5.7|~ƿj̀~_4gſ|N]>~b/&[8ywf@A/r"=NF V>>3|"*U:کV *wTΎy<~Rp)Koϋ;>w?Awl. / ^z(qlnsܻzS;w^O~{|6v ZyEWJy';j3 #f`^<cy*}Ow^$x׿L4>7S $?^'oϥM;Qųx>s l}BO>l fvsnיYKS٫iߘoSΓ{ u={ sK=W&/2|31!ﲙm~]|fwv(9an ڛ襹F䵏B~ml{B}/2zrjzv1NLe7oAv}`\C~^+*?êŝ;?=u\p[ }Cwa}'DMqs~dd9=Nܟ>L#=G KFOLݽ*|KxBc]g%~}~\f~xwRS yggKԓ>{(n^J.qivODڝc 0cg尥?+78lijw47v=kfay\d?>_ c;5 4{-l_4i9 (_a<1{սS؟88-jL%eq!?{~GBVqe1)fawG6x/靑A$8\ӟڨ' <69ØC]6} *|ꯧ3M.OvWo\rg띩%Q7zYH*}38nצ}ޑsưC>R{C_MO|`v\Fϙ%'˃_kܞwT|R9+G%Carl*Tf#}D\=؟˖ ?3/a-ų{1f~<:m{/mM=4G__&79މrckӰO[OH%+Ck}λxV\?sS`Էn:> SYdxtҿ^.6k}y*s~xBsvE?;.l/9V/M>C&T?K%]B֡4+4ܟ'Yn=w'/gߡ:jWnCsm}CwLǜ!uqc/_\bG&ǥs~zKnߕR`l/S1:uTL>_k:$O߯ 93>&\j{6_9]sCy_%򋞚7 ߌwKe3e5M+gWX~++<^zƟַ^r bhĖg;/e}̌Rۿ%jF^gQoϘ_ws>/{i5:n1'IP=Lrc9~iŽ MpgŻjץI7 G;?wF|!0ajjt/ q>|i*ѥ˞P- OJ?4 qn?h6\Xá<3x/03b٦_Wjl^$u+(긲s#ιֿE{gL?6g9z]y2o.s1 ǎNskGG+=LRE<3H>>GfpxS0wY%Jg;~t-xC]MܛϿ{ZL49̦juf@?Nxn|/}3'?gISiwб3T0.HL!|[M'UE3/NԌ/mv|ǿ:/B}F(煹V\usUZ7:wxgywLo/x:a|ޝ[AɎ-sgY5. _2ܚK 70|`&74T|Bߖ:o/ :FxZv?ay? ̲Sw'fpȋO|ri|ϲaܵ0'/SEN}/cY]m5\;QK)}ys=OCf͋ힻ?eN??i?-ډl:N>l.s9wse*̞K%qc {>&`ӰDgxy.8w\NݚܬG,ed}ܳ BVnߍ?ڰ_0w<(z>:N3@K!E`])zvT|ĿRA?+}VP*Hq!w6§s+U?EWzgѯsx>ti*>qA;^K}KعF?g^Do}ϗ˯#@@AΉ&l~f`i'_#v_zJ/O_A;R?8n=/}}ޱj{jp ׎?so{3ꓜs>Ӄs%,Ļ׎9 l¹~ntwd _P[|s=ӧHA#~4ޫf'|ɀ^k*u5N1w/,zl yZbF_~PbI^gնF,:\l<?mC{|gg}Ϡ. k72l fas-Ňv;K읥iOx(,gu^*S3hv[<N;#IF[IȆDzѻ t-:V6c(mY܇}_[Y`DŽ%l㲺߮)D)'Psz^j? 1 AMܶ)q=)S^tGCwլI]I?HB DŽu%|2~H.MΐM`X&Mم}duyy{*3^R5gtv6@IcsόAg_g?\nvWg?nZr6CJ%TYgoPM\vߝK{Uھ楇s^)6H<9/#F.3*KډcS۟XJ1h6Zko]t_3ޜ ?%8`gwM@*XA?rzSsku.G/q^vynm3t ϊN>:B]?M#!#[ʼޛ=FJ?qo9^Ѕ{gspT.-at?K 0Q3̱@yϻ8==0z[En lg@a RǿaV V OlȽK?&l/kp|ɡO_m 5Z f9S,yoy@Űe5\Oǝ}doSߩPb/{7s)uYG΅u с$rɕ,j:FdQ;hJ|I 2!:~CR{?I|+{lӏ87L .JfͥvEQd];R\O?wS,2FFOO%?y5y4?L>5w3 Wr޹V/C{gfNN̈y zRp9_WʡG@F$+\}dC=L |+<ߛʮ/6e.oC%6^ϟ{j&/ \xL\)3 >+Ǚt/|,>,>ڹ& ~Js ?>t95꧂8+syՠ7bUa;)?չӺu\z?6]ud.ęc~б5!דgXЎ%I0=@X{y~.8~^Kbw c'571^hrܯ}C\HϯvN-F_Qg]oms7 rY1R.nC}.eag)v(쑻g;>/ɽO;FO2f! Cw?voګ5P,`5b=}gKSg1gw\rz|wjO{F쟇E~5Z?w# ?+}d\*~0OSʿmz7qOzxV7xɎW'jYޗwņyg KLA}Y{ s~5q;8_{ {~r/wLpܵˇ}X:c++/x%qOO띷NOk  XtɧxR.c;C_//>~qZǰC~߅=s.MF߹SxΒg7}6 S^gGεx߯mߢ)*_y,U1{q&7 9"ws~MƯK6p5GK/MeנIϞo&bgYλクwVңq:28W=x3Cw>YqjJ\̿h/?k^Ւ`,| 9> VqBЬI[ڭwv_?;5߱oיִ}q>87ӼT*X_'1#gnkf'bΟЙ9aFlq ;Ԃ;'Aq@[Nj42|}0<#s Mp\&Wy}|vg7 Wt7Angcqv\Vc^ghlSB|WkOmbA7rve 323}u 1۬ u<5^ȩ0Cm 'wG7]gwYsMsP[ş75nuU>[ O,Yo'a(dfƜ7#\r_S߻&>+eYw,3攙Ta1O=j_JT.PwX3_R8\=K_٣.fr dBujb;.s_C0 ;I'wԘZ+f fajq嗧2GT_Jo\0vgF׾~澵78we}\p-fxÛvN{PSi +fpW,;w_=Y.Qaa\¦`jR; M쯰9ޙʾFo_':wxr~&zg~4ɿyeK6U.s?1)${Zz9_tM٣̦`'3.Nӿ<]Y}8~5Ȭc.q_~!#Q+r^?s!?’{×2U<%'+|Jr .|Yk7dJ"UFE'5Ц;?TYR?:~w-)x\'\{$?Gf `p>qN~.uݣw=O/}k.S;ASȮfo}C9+巩BKލ8wr:> d3@Ԍ y@c3BGnJϜ!r}|^qC;wzKcaag!{]]~3ݽo|sB=oߚ]v]gɩ].m_~P^/~7w3gPC_+mr". tK9" [qu*10: ܭByd4%U?/r&埙W SK=!oh̩l?g!>$A|)qM_2Pȅjx#Չ=?xS4v9.]\\_5 ˗w3{_VO:!kĤԃ}ߣ4/&5ɩ蝙q3?R;k'eQe驧i<=r%;936 Ic! Aj1 UtY{T#0ηDcneO?/KCOLec*}b\+ŵUQ{=4cĖ7 ѯyy_ǏU{~ NAS?z7rWWlC~%U_[Ϥz1kpYnaԗtpGB+C}l~QNf'=ʩ=~սי(yWЌޚƙz'r}i*Ú#|bg?6NJ%T5VU`L {g/sw_"Lj_v,y ~>灘Ks ץOav]!Yz6eMϵp=#:.?3{츔/;ޗ;쏟kGij]sTl)/y[/A?C_\jԊ|ufG޿%lʾ ϹAώYv ߿Q-gCnOe.~F*.܀1#ˍAo2=CT];4_bqR?o+uBO~}_Lgq.} c쓳 /0?C(T*Tܿ=\h(@Ns~_?&scj{?N?UnPcj~a׎Pou\uqc/n7!trݷ˪Չ4S\|?1x?>?G+ }n]~9k.uUI"f>3ӡXR1=$b~8ƿn/g>4Jmw4V ^>S`s3zP-U뿪o@j͟IeZꝹǜL/0L< 1 5 RS]:ЕZ7>O^vF<vN-/3Hna<2@{<ӝM<П<;n|L62"{^`D<<ŒjZxWǽf;ԑ_&k\J!o«& \O>Sf'8~-X@gϠvUjYn[#DgfHwZ֌# a.x_be~K=rwtk傻59;񟝯e~<^IY JeB5De/gޑ_f0N_ : 9=skZM;')\Cfpjw|Eal-pV#5hc t F`2M;= ԭn z4{[)X+_߿0~d-O5]Y~/7v&uy]/|_x x l (l K?<~TͅK˜=ss\O&;xJ"'f5&=s@F6\IuRH9`p6;]1~j|1ɼ7f!t2cNC|Du>wޕW”b.L8??(^|6Ă}7-t=z<д>vYץ.f(M]Xu-#`_0jXw?{|ϲSKrů"c_ l4/mGR[{Ύ_[qwkw ـ~B KD\إOo~$|/x4sޛeYdᷣ?ߐ ~; w6XO5]\Goz{M*c;{\ kg;w;9)yW;_g_J7 }G>35T<$?;,~TA)oK> ѭv|?!]f+0 N|;QG=%KXK=!x'0?o:~/ ;/HH}υ_#^_4@F_:ǟ nϵ_ NŠT/"PLyT \܂w8=+Fbݓ%uMʯ4 YYԿDDiDO^^κs7"ɔ bv?h"gGN/gr.*9 ֿ\|Rso"wys:;咛Gs9!x~U§ğeAOd|~J7A;;gƟ  Μ_#k6n4s;u璠MO'SM?C}D=+ JC/p#t2yv?S^޹])S;ŧPj*>a=:_!)v 75_RsOzpapOGz|/=sϿmx^|O*w8+6-vnͦ`E rqSvn?CWlx1vin߅!LerB$Coo_ ϣX fpHtqn=m'R?^ڴ(7T\k.˥V*kxK6)OUsͯV ;;=sA+ kf}>%[ #شBcO^l6xUݣWg;/ Gnak/2mds[п8lټxMG?eC2#_T{xzl]\hSfp }(us#w3U>H 6 6Ӄ)75m߶rX߮vauAV_Ɛ}j[=yשE!ح3RUib_4"}t'vZ $۫ [Sz"xWU?csA,gsh/2@\|CqZ>Yj>πKѿ'_5:.nC41ׯiGg~/g Xwҝ~_~4K\o-(uKO7Z}ǿQV?;L0{#zTQWLT7;z `p<<3!dJs!{a t?+/'}Ýy$r~qר*\7}2ῌνOe|5NVq;c{A~zCdBnxGOk+77e_J/TR~$πS>b2_Gj%>ɯh9t?ɻ|ck{eq3S!vs+{Sďԍ39╟mzq ? ş=}Č';0i(zrχNC}…xw\jH԰C_qFO.ː LwMr[>~Z&导DR_ ۚ6~{%M`quKOY~}s~k/#F{|"? v4ңyK9rBǤu{#9}Y8U[x=t_g~F}mra?OT!~oL$|O\Oc(U3vǁǗR1WG=:Rsw\oNl^B.ve&cz ?t7MgM~?SVU>L5wGa]B}/՘ɢqM7ʥVzosE#Ć^`Ǒ_uOK|;94~wqlӏMcRٙX< Y,?~ ?7~v} n{cxGRao ؆#ܿ)NpWrwGoKo0 >EMskU<Ϗ?}_ܺ }s*qujiǛnrL:uaY:+Nqpx[S0dy:;^C6x 5׵x9dw;f YVmfGN+ɩ|lq,Mm\[kSj}V5?|ŽsS?0v.Vnn.biߣ_;5~6x\x A32s>'#tF,9K~Ϙ>W^/\8ﳾYHeK"KoV_?s,YbO~kyޝ3:}3}&w%woiNPE>2lt6@. [b:t !$Eo_Џ/,vU=…C2 j$,y^UF\러/|~9ۘcRq޿v`==Ǐ年zW}_{#~N2W2Lݞ+k22'ckx9OϵJOfNJm/:N:wwd0{6ɟ2DN]x|xXaq71ϡ_34?1OJvg+湽~!˪=5yr~vgߧgmKsFGco7enc |yuwK)L1W+3+~Jyz/ b YZЗS7Xϻ=4C﮳ yv^8ѥקq __í6lr`ŘCh՘|GX'/M[Rw@?{ﱟk{ώ+Eysi[sٞwپBW/̩s,Dxy5tsϗ2tU*sycҿ:3r^+#ȯѤ9n?S'r6u}6t|*{B}N??o{zZmY~0zgyHr&=YJjF? r\F߿2]nxks~o5Fai* #u{=^魯B)k+ڿSyr28 Ww`Jfe_`.%9JŧϞ:޸sa?}(3ȯSnc̿̑y-\E_ϫ¿ڿr s~Oa!YS}C闎מ>r$;U"#mIFڹ^A:N_}4v?H w14K^OLo(T)jxߨɒٝ{gtvAjCO%\g4oߩTy kk/<\j9J炼bho; .ep4'׊eoq|_v1˵NߑkkZFm^y%W. 2 qTB<4^8C)vo2 _;"ΥJZ;1kc{*u#ץwq7i{}^Wޯ䱆?YjZ<7zv{&cgA3g(xG/hfu/pO*{K?sNKr*} qljsU:%~&<:k3cO+ sk~u'S?_oݫ;?~=27\Kc/a\/8cy>fIOدk?آjQ! YD~]ƑKՉ:^#e'} O,Z,K`L{\0l9KCg]FEpAjKSߛJk 5gſ5?6W8݌FA'7ɏsF7bg/KCe.{ ן}F/ߝ)}w |@ʯw7w5T:[_۽)`˞ߧ5z{.5=3utڟo3_p`yMD{|Pt꫇g `}'`賟S ּmtNWoAGMeM;wyaܣm[driˍ5WN--gisM=RY.͸4~:^v/l]$Qxv]4Mc17_>ݴ/r:z^;5kz*{ы }IP;[vhg5?ZUXGL~ݹZGx{]H^فm@nr >Kc'Q! Nՠq=O5ޗ{\~= ;Q؍ϵ+Qwae;B#禒kӞRwV?ɏ5Y@١N9a+bi.E }Clxw>zFН'Y;t'49)_Afovy߾63ŹmC^|zks*,>^]3sx{Y*2=G~ѣS\/9~Mwbw!qwNB]}{H|9IuڹsIkzsвQ'W*N^{@gbG+'|Ptv_Oo#; ]<Cn x ܾi }ݿմ_/.ͫC٩`xsD%CJ;Yy=',tIOY'^9i:ЯMH?r=Dϳ _|tw< 3yĻ1KdV'dougK%fv;4}c w7Tfť?JTFﱳ4ç9?gw~Xܹv@`k64kt,O]A_ebݿel9>ybWe4qjךz5〯JN|Q.n Z _Ԧg:(tf@DH~k>)ޝOwt?ܙAl3|'?wh_Gz . 'uwV5g蝵c-;K]@_ ڷݾ6y /a6vxR)fü{qkq~T%>9庨߽3@/rn2w}!_|wR ~%ӷ#9:ڟwι&5\ FC]g q_rjYc gd`xIX4>s\ncşƳ+K?^ρ="/DǑ̟.S;er\\t9h?Tr% ;Rk"&qZ*pL*@Vn2DBGkZ[OJ7K\vgx3r ߣ+ѫ@ ꚡ?' :< 5w +NTu}9yr|||Պ]7=G_o y&w\ Ns?N'ϳޗ̀~t0PnM%גݗ:1^$x?KcM}Chۦ[V]z|Y*ٲ|-7v U:/(?D59j^wأ3BO/~`b`jMjHn y *VC&ЫMxX=gOYU꾊/}+~8x&p~c 4ls?jJҞZsS\1oz\rr\B_bv:C?hZsЛOkژOgp7gTj?OGL` >_G/ ?;D<_ w"~Z=wh?kwϊT_{+=Υf-v@95_xi~ȭ w$x(QvgZn 9%(ש<7Cfɹ3@+>3/m=I7~R^n{bŢՐՑM?zY|-)>'kž4ET,xxߒC~O̗b_S o#TVM~kxRLnD3Ѐ^E_gy_cvP5c`]EMC`cOz7CS;c=.3<= Y#c6Y:;,;SWL;{?>wgN-lYعپY念_$\R}Mc S9>y\<:WqOێy=L6Zu\,dr<[kGk{ sv Ji@u {U?Lޗ>ݸR@m}͞ENO5Y1qu)E2@{?O? @el߿h$OqM}vWe@O/6MWCxvһ*17K&L鞜:Nݱ帐Z\s>? Z>}W^1sP}N|zg]30?OJOJǿn4{˽/KoLuy%SwϠh9e %/,gҿ'~RKl^깔'/v@5^[A\Fs1/"U+R?7W9c7p&+>&u,nDžYwSrjUg쟥|gw.gC=c_fBۑW,ދH=_pMӣYkG>f6篑 bܭ\nwl_yvv<+ǘ}I|~ÚCZ\H*zQ;'w^[b] i<.7vsĩЃS6Щl~~U?7䭼FoT#ӓ>brȾY;K-Z}9yH3~%}E*WCw^*x~ݒƉүݢi٢\׬1zm/u^Qſn~j*_HuYcſkbz8#gwR.z ա-rKL<5\~Ӈv͜;[<=Y36uWCdoϵ}d^|q_>!@'Gaڍ?үmL@?@'V 6;w+h f(!q]*~S7{d{inD5\ZY9oӏqN|.OcCyBS{!pHܿ8kvѯ>ydqr5iwXLևlr9TWYϐRk=+]/kUZ1ߒY<~ѥa>K9 )d#M͡B'?u?ʽ+wk]Z\h?[ ۊR?ٴs[˚vnS5I.=Q xפ.`gu~ 31|~S/1yS ̎3 xO {_6 q-.5?_-̇~YTz\)9N.v E£tENf3倇66tzq+/9Wyn' =igax`E})320=N2qbw ؠ@ #3Oݺa OR{y&xs^؛;ăO}Pϣ}1\W^]'gO2'kbCs~  ~) ۼf|8*t ?\Q_G@.'3~Y.8.`<ȟ%̀~%}NJ{x|b&u,n0-Vkwyt3 %|.~5/;5hO$ B~4?fg|5-z'nAk.g{FM)7uJ8O%_M:>zg~ID/Q~؅WK䂫YMxܷUѿA\畎UW/D8ĽخO'g|EM \5BX x"\;[~O] |he9Sܔw}FOnSK}M9rCϸ^lw|d>;tϛR `x(IǢoY*d&O_Ͽyߟwzsw+g ^ofoѿ" ށX _\|G~|> éLyzYm FhbrBeg;~|;VlGCF ]z@+gp?}`^#ŸNl/`]IOؒ4/?wN 4p(dv]\n灰S-E83驭]~9Z\<]Ys~S>ٲTU㷃sةglx5UW>1.R|d?D!W.~ 2,Rlv\hA,xCzZ1]T.ƈks &?}#ޅ?+\yFxFZBsw@->"zO.9[dנW~Q~C*sL0s e؇rbkgB/Nv_͋wJ ۹{o|*VtrN]o>tEO㯩A_ߨwg \J_>#|0;)%KWܜq{wpJ#}mH~kvcKJ YVB>ES LmXwB}iߧRGx 꿢A78c.?Wȫu~_{̀~_/+y_|֏H~wX6 \w_amCwT}כst|[zsI|7j:5rY ]MeS&0Ck鋻2ɱkqk O{` WR;uʯo6':_hN/R݂^^3ϨO\4ŧfA{O|}Kga!Sω_aس \jKB"V/|D|ʁs3 gyK oPz/ v!# <zG #Tf\~ .$7F7놼jOQ{;M\0dif9M.{y?+kܘLYZQgSp35w xE=+qd(>'p}*x9> Fxh5_+w%4ciΨ#O]<إCBW%C$ 8.yB?y^znoȩvIOe/5|'+&>1g()='wK~oJy`!Jv~"w.ˎ= N}rFs~~w{?^6yxmT}J~˰'c?0~ xc̏P|+9f~5?j]<ނYljϚ>1utM1k~mgyjR{ܴo:NŊ3Ko\lT*}޳}C~fNc8:G}RK:ttcȌzGqnw\{B, ?P=A'6?a3;6iP{_@sqh;^}ߜkqM~(\ޛzS(xKs>9پ{//.sCwԉ] ^/8u'nOLTa?jOJf32& sM QbHU.?3 u?/;;(d4{:!_4Ÿ 4ғpb{E}_˸RXx{W=(tܳz米Ы+ww55VS3iwcչ ʭ6d?K<r]9_Qvii*~O8==?揠P?"t՝=Cf{fS+Տ4:Ft(|'^yV}i._fP7mW]xM;5*=j_XoLק1; vN?}~qU ա_:DG+nW7 緎glF?KsuyȯvjX}z\Cݶ1_/\kw-έSZ?izxyЍdLj|;x,ء;~cV,K%笹FG^P*3MzUߟS@'|f"Q)wz^KWS⃸NYõyZS7%rK]~V>cts @7`=?I$qF? ka_j&dg/%{qމ6hwE ftnSW?mϵ{U8V:5ãg箩hޚAvMMW2B?`w_cƄRGx?3O_ zCx_P^3`ny)Ϳ̋cBs̛2q RolnOs~fݖ3pV! _[ f?GLg`v/s1yrBb1gOy]L>긋 3́1rsOᒠ/qfPas^׈{*ft J[vꝛ<}#}c9V'pnyԊoh?̼2{zJĝ*Ƙ幝;:掐ۗ+ҿ<%5sf|">M>f {=\W}{kHطPf[F.z͖qGyX3sS`v K+^ Κ|}^'KS0 NNm#h(90aJ#/[{rnu6W8d.?p0?,!s5TD~gb _|^XVGZF-.7gP;ڹ;:3 &]OofߘwǞ]=*Y|5t(6}ȁ0g?ϛ_2;YwA/   aϿ(8u3߱LE4;u@߉<~'>28v=bXzY5χ2̌-K']xπ`^uvE|Xȴ\iz[<! L# . `V)v;:e`wh⦹pj]ֳ=~ԞSO%ws)`/aSOw~3 wEq>zZ̳BI*:8~#Yn17;~.mڽwn}+(Jl\k -EwrvOxsRr^[O|hoyjy;]/|=B߿os 9O5'Iݤ[w:HϲMX3w<ۃnl8l0~4E!5~v8t[ 9Y;Rߗ_?9ϓZYA?8{>wL. za?G{[:ys I}r"1CWWχ/$ e^x 9.=1_{p6+`n2z@Sjܵǿ1^S5s9.0x_znaO7CǿɵZ07\9ꛑ3\?n >n[;}qSvq.LR7$f*?O% /HxkQ 79ͳ>mkN C7Z};C`gEO{D<~>5>!B*ٟϼ}Bsop*#b]gډmԻ_ӱM OEȸc寴!Ykꃸ;Eι3UZ{amE)FP{`t5ch,TD,b *4X@PP{yϝuw>l:k̳~zR_?vIeayЭ=̦w-o#ο,x{Gs7q  V_?!CW`v)TGǞ 8Su4^Kdlg~N*֒uxϷ?Ef7 K>KOϱs>~L2/y' <*!Ȫfѵ8%=|уw?]wwɦbecCa;εGgzqj]iy?SZ0BzV/9D ^Q;><kBb#uyI8WЯ)ڷENkǢvt䩮~1+ݿz}_빣ei<aǿ!ygdY`þ6`eH];jѿ^syǫ={<',[Fx[;A,?IWT$ݾg\S=7|anlE慟iLl/1 :~u.  j5?rKȊ臹9Z9s}3X|椔)!laЯ->RBnǚzڳA9/JpLϧ 7vOkfro\|$dax7R<3~;y*y-~/rNs}m(eh_R_#ܿVp< q9raros (xޙSy| &φoys^scGw^p8{޿ۼo|y.XJwA~?R)<1zh\r<cú]vhomBksț{whw#G%1_5dL/عR햎? k} yP#ܼ'[gc?gr'9֞I8u4XH_KXX={ϋL~Vdy ykClwjr@s}ʗ̔~;gshFcN??צ6 ?e(WPs1A`ZtXO񥚫|?z;%[. #/b0K/OL=?+!)=τ~@oș/F?Nk/k.3g\rܟƑߡur7[Jn3PC֎Iz!ugS?{[[^u%hoO99u =)&.HUãIss}CWo > < oy׎ ѣrU>[RAV v#J/ 抏 Y?9d!iHJ{V?3<×=o3o?7;婹`lS9:η?DŽiv{bCKc/x7_?z_=ǠgR,(sH{uoSG<);|tzoſ)s.wB1/ @/sf,Ǐ]+dd K'ϐ~\5??9dyC1𫱡ĹT>c;ӾУGs-_^~OoGFw]:vMe\P)+ƟObKjCECWc\0*^ &Cva < SaY}5>$COUi}lS'ɣ&׼k.N[Jޙ>' 3$ 2 s`@8v̅sA=^`\,$_S0tj5>e!>wNg.Y*5ϣcfz0 繄=7n sO^c'}{8-Le|~Va>5e.~ao.`_J߅he_0 v |lqQ] 3 a&9lf9 VΥ`ԝe&ȸ9bYT?pfK;_~P/_ KuCȐd.fxk4,=/,h○ѯPX<:̺0fa*L,e֔:`:PUߐ n;woGC2s'\\}* V/rMY<&skB΅*+~&A'<,MwZxO >8`:Nkqns$ٽwimJm~^/zN{\Jp??`?5VWO/_Ք 삁_9&p\֨wqn1 9ϯ9zm 7z5oNTD3`W0݂mew Lf;1Ώj/#^޴?\/=k^ ,d>&FX/{G M?q4 PbVcs5>'3#]6U]5N}1,w!AaU+?}uxyY(GI{Ba{~\J} gt&:Fޓ&OΚZww|s.=>2L;;ed_ V |?#Z_` 'G? ~{F8W.F|G5yGy3 '=#e+⃂G.?9=F+csM).cCoN |yu ytq_Z{"7WkWz,z=SY :{߇X|Y蘧bghJLKS_:Cjz|p ߍ gضq_/'3;xX3:o(''kxYZ_V'_=YuRξTt-s\0_ >~!ĿRY%_iY 8M;YkOCwG9;sw?<z ~ئ{\Hec}+Ƃ~'îÊ2 E({G9'6gy76ꐑ sl'?ߣ] rO.~9ڱ)+᧽i&qԕnVnTrQx.ըySR_]+٩wzLߡwva?#Q0f*5 4.Meڤ 寴 ~S< |9|-.v}ڟBa&lχgi%LZyWg+̞a9.'"/!~q;6~AsVqF.鴸{#ieXfsƻzsOxʯ:Τ =+>9rL?9aOS)o Q϶Cݹ!L={gn]?kr.=F/o nz𓄃\vb+)_  0akO~e7wY:._/yi#| x{?nF,]̷nO_!Fn)A7*|ft'ơc9F e~ _B.. 'x8CcJ-Sfq6Z̪Y'/]#+c'_lp{v+B{fzKW%o"ю*6^y}' rW$Ys{~x.0ywy?+ޑ۾+ \< o7#?V T<'Sӯ_׏4+af o {S{N<ɏ&z YgxT0ѡ<7z{6xl,uat)xx|{g9?i/<'3UܱkjJ{9zdAWg=cjud7%w_fO:}fxgߕYo|+% lyCq(  ]ڽ??ˮ>ɮzTSFr%_N C;G4%_ak{Tp&e?QG^ ~W36E^ʞ8׍GϬ}M?m.rlCtr3\lqʑԔ/p$'{x/F)fAgw3ukߵ:QmN_{wyQ.;<^ǯXHg}ivb_; O6@r '[P}jn#όR6x)|3ߧ6%Q{/tR[ߠ\e\=5Mɡlޔ0J͏Bgw}sn<D?j+w;Ҵ*[{,=\z}~ ]/A\og\Mف~TCsk5x{nՇb.q. ߵw~]zg||g`?Pub-kq? lv _~ݓ"+;t&X_Z5>';4% ijf?W_Ъ؆W<ت3[.g"gH |9tS?9i?^] S+Ru.tr{t?y~+%.7V NIkKdԭɦ;6gT3ggusf*35S$w+t(=I?e9ž]Ům׋Y<|g(W+ងŇ<(W"&Y[,w݋W/&o˂G9&3d|9. ϓ6<{Z#6c(=NX_݈ɑQ_Ei݊Mdge{S7wzJn/}A'(\ 2<۵=5~̻_<h'Ϩ&ONT_}¿ r~'עЛoR?i;;35NݩsQaϖB6 mϨ]/l5y`ߧ~r{ZyQne&~Y7Af7%ˋ]0Abxz gk_STIoͭL?Q}ȯωW =\jw<{ g! ӽ9 =pAoΥ~tW )z`5_Jm.976k;M7^sTnj'G+ѳ_46/Ne"eo^H?zI e5wόכVW!k5CY*Y?g_KH ;NF/rq^BG -`\#z~v10oU\{|ix O\E~?;w_xZŏC.Лu߹P ag^I <zfI ~Ta6SY`慽Ԏ>9 e>vs;|lg׉τ:#gd@3N9q_h(ܐ} 8WceB?y{|y_%~r?!gzTWSp\ZFm~fk}`^Z Ϥ({R4{tor_"ͱiD3B5ph^OP]}?3Za?՜{$|/KS9vRN`=&.@wջpR<5|ަC& C,G'L-@V.NzU9t.Ÿ޴)#}`tN㳡cHW}FZœ?OJ^y&ױ>5}XyӨ^DA"> ЗB-?m-Hu>ޝ?/tj{X?OHPwzq*C)7u{e۩?;D- [@8ȑ7CMpQ?\pVөY].x>=??6~|5vb~Gx >J]dˠ {Ŝ##fCO!B71wcyWt2@Yr7 /bW{ʴTPv5]H7G՛~u~L΋rwgqv_]y碣qX Vc#I.Kq'Tf/H%/73B<:>DO %t0Was+[nv%0G{?Րe4X9$W}E=܋V,$#=?_[9j,^#ΞV^_GqCyu(1M={#{CXI+B _}Rq9\ӯdV}7v??,]M~krzgժΎ g>=G AMpY*q\߿ߟēw| 1w{~fp)B#O<{_ KٟE3+T\lR w^kr;9,uk~;^wyοwo*z:;.MgÝ2+e .׉пr>A;9{xiүU,O%,zW YnkoƻB'߉mUQ_֘k.y\թs~(΢b~~<?sje]#/;ԍa%ǟɬ/2.88{EkW}ΊkvwO*u8h95>&,үz-P\8dCsCSX'-rX}d לt:Nv/ssMv{*AԺ=_-p7[?c=~޿?OfZUÛo{} 7a O| {pȝN%}c='/;~/>?:dF9}f/ w73]Sx y(_gS 5֪?0=\q3~ՉjoT ҫ*(Ӝ)3r<c _{YVeu5sF}An!悫ILsE*5B~zG'{]v?\r=;kuZA7znThKS߉H{JvmFYhղ<<\|%\dѹC9˗d5>ڜ`miΓw;G(?,s??ϙ3bvN?37Ȝ;̾3ʦ̾<4 >CKPO=3I=ݾes:ډĬ1밷xiǷ.nbV'/ ~3̌hx`I1\-8c0 1GI]X,E;ۚѾsrdEx8[5e~M_캝w☁`1O5ugA6eweg?<:jtͽw M }0ky#ۚ~ޑc)k7sxC闎} ޅ5 ;~B3?|.j8?eeў1OM9ww2y$s9?lv@f#3st%ҿ,+S3ͯM3/S/9}I=`)0'9}ߓ?-Me&kD7~T&om~UhX#>߿]u*4/ =㏱? cr!c^7-z\-< ۅ?οr,O}|T'9 ψg8=bakԾ-lwoȅ?7!zC}*;_3^ ?yHvf!:C#7﯑v4NE\<,0}˸n:TX?_ol`mcM + ܐ b\dlϊw6?E~2w/C/9oKm?urMSm t{5/J%"{TOu,\C[{DA'`W`stIq_v!E0B8(g.~;gf"{nӾ {~3gAuX?Gɯ>}O ,=kK.~ۯN]< Sl#Vfpu_y3{~=b~V\,]@ʎ?3Tf%Íe yp7a |6G|⽐"! i ¾FyײEDG]_`|7L׹`q!\sׯg+-[Y?a7=x?w"z>&M.yĚJѦKcCU*uF7t9LدG~ΓfA Nyv_ OqI; K Տ;ůV%7[s^~3l?{/Jeޅܟޠ}=U'+=S\ڙ/Y)zᾗ9723Rѧ)!u,bKuȻ;䁄GyGCMɝ˪G']/#s:T W]r D횂?0ݟ9 WBƿס?w)UEJ|j_g`>o>su{}>AݻYSv_ Sg y+pK=&S~0d>Y;Zv5y&$GgR#%tٍ%Y5G?5"7ЮquȪgj]k }=*ȇ>/<>G6o|| swYqjߏg5yy&dxyȯz C8ȭ?BR-x Gbzz$}~\:dOhjЬwϩ<{Ƽ@!ظ5?S'D<1]N ov 9%K^h/ p T#"jq烓RuM Nh#>o\SG5ևEp?iOJBk! {e_, WąYvta&C1{ϲȮvQc!pQ)Z%za_gO^E{~=_[NS_[_'q{pJY Mk!9_ǙpÁomNa\ϤYܝHg-~Rف wYluPy? wy_|淩vryxn\6!W[~8;~{ WG_N]he=>vNʯ[_C~?rCB~Sn`?g(^'ϵ`8o<orΪUd]_ }]sɻc8ޝ HVQS'<%VOύ(vFϿ&?Wme~ϙJ]A,ws>{C29w=sF=c?ZSkOS. 7JDzat8ε߯?W%-sT9' /Q }N3^~[!z~F?K}f{\=߷rp*<8wQo;dYq󦽳zVu_\:}X7'&Y \VI~iЭ= _s;DMħLϵB ]丈^keɯU2^Ïgo;;f?.?%wy[*{4 4~` FzͷmKݏs9Bo`1sw|}/MT\{?6SQ,~{\RTj!~v3wߩwƝ_|#?wr<㮹diӼ _ws[ vݫ9\]'t:TpQx75'8V;c^yHqKeڞG^w%;'8k5Q?)Ljk5^}}sM2]6A,,#?<&զR醠})=;kǣsvO?ek[k+ojV`߫|^F |Mжq9Oϟܚ /?>zs/׈f:ʝ /rMʓ\eLf7kyxъ92 e??%[0?=q:M \{73?Ne 91dwxC\pm.m<9{ާ9س+.g9v~ q-'<ͺ0?s%?o//KeN}󿎗(Ut0ܘdnV/ٲ7l5Owf|~y@.g%S_-^k;fp^0O ȌԑM;[\Kmtg:i1ݿ6wɥs{ vo0r~e~9ԵC`@nyJ*Ќ=F(9<{GVkWC-'`@͐ Rm~k*hWjnj5 )+w<~m˩>-?7lp|Kfwj O y.3Ym{Bo^~d1zf._gCppx.|L0e6,'oZhç,G^7Q9fE|&D|?9wq)!.K'a@;:H7ӴXW~ԴxЧqZf~e}ߌkwr/8KlCJݝ/!{ь|q\xn>nd v[Ύy~ ;es 3?q%A,^BqO|7dž\Ztq?Nhh>W._ x^:\pL_m ~ןgATzcN%o-~' ng2@!n'4ml\۬wp&6=i3u,Ϲ'u[%.yha߿󒦛V㚒G˔BNߛ}~a[W>7#?>e KxY[#rC`sml]3lqm~Jx޻)~-s7?(Cl?>t ėvh_ٳ6+.xD/m}Mnyb9[#/z8W3]bE}iS_GM}x늦! ?Ack},9YOqIjs[Ss[ 4d<97;4UWpeSoa*ؽ?I-Q^]ʾ]e.䗢Ceѭ䱈?|#lqz~JtA_'L;a?Os׮4t.ejJ{?-Ϛk=>$Ь3ёyTv;їԏ 0t6aM{ׯfql+祒CQ_. ȓ:~^[ ?Wt}*> Ր<|z*=@*;S4?IoMk8C|PNIX`*# "烷, .Vd_x{b on(ğ}*c,1/_)Ŀ_: =k!sP|y ա ÿY9dzMǧ:e_T_.^r*–uD*٢)XMݐ)B \dA1}̩b[W]tGy{Rj{{λXTzЕSM|  Slw\I!dMƙ+Y+৮Bh(R߫Cn>]ߏɥߌn3}aS,SGgР! gֲVX'liw*=)_? }0dC=X;H=矽#tʒKYu`sk?5JggZ#f y -L򎄟d#q|kn!r #ޏD|{r)$s7wRRC/l>.֔Z5^'ҩm-9%;|^gn :9qq3Cs'st<~G_!]cn(>9w[#пB$ vk;~*[ƛeOsF>w/,l0br/1Dm~Q 5?_x7ӋOݞ %p~{-{s qWRMr W-e 2KL{^I'5=]1_a8N暏[zXȩ䘙IjS=𜶟kM.}͹k8{{[ղǘJjOgu\'h%zZ~x<5}o^1|%w>ëRJ|Ye 80]k\{'Կ9swП{w*aq~vb Pl~arJ-OYvݓG 1uM?V^ca k=?)ϘOkvv枸Uzg;~\Z<d~k&\ݿ©\0_?g޿z#W;n|7gi6ydg18<)Ʒs-έ嚼Um:G6: 9B^(ߡs~D>rwz+ƙ ןC=>>f;~dH_w`ȸ0Y@v;>N•UdY2,UdV}1/p}\_:甼㝛J#C_3;V]7u^sI_3wq9~N~h:O<;cvk8}7} G1~᤭XGߡ{b0K&6(/kw#!vW}(vw'9|Յkr]jwwB_P?XJޛJW?ԂoҏNKSꅠTzU8;}jz9<{,eœg}(!W+vM*!}p,Qce~w5/ SݘuEҎ˿0< S>!nNs |,fL6JoGBy/]8fRsT2w ;?\T0h~;BCn65]nM<]It"9]#1\?=fcN鐩病,e`>  s]>g ckѴ`}CڕywOϹ$wi*}.΅ndLnr gv戹a&ٱi߄[$k .Go BN߹RjLGaB?q,؃c U~ݿsv/H~WW`̠=G_t߾YSpt~i1ܿ״Xv_JI<ӑZsٵ lsa,;ؐ]bL}e|'sR9'|''@8X St,V=sM~k{RjϚ;u~?]N5C*Oe iG41ypt!_!/œO$o>uI/->g! t7Ů]wW\j{v2D}7!c!T]䛘=f Yx6TA`h~9^pO0P)8X9s _GR>иN] 7n?l JIg%\?el 'IL])wS!ĿW ? cܮ+E!=&'7_滵g/ώ=$~Gy}K9A?\u+;i'΂~ﳺ,fڐMz`74㛭g'A裟7>Q vYgdl.9S?pjx5KeOg-ͽ3Y/o4xyWx!&w'ۦ6P= B_8\d_t[r;ng Yv s\Q)GEa'.4ft\SbSgA?=y]*5Q>-Ch-ЙK1Ѱot299vIOy˜1'dQs#VwTkҎ埕kڱwtr:)Eѩ=Gץ2'uyT&7J,=prVRA&yΐ P=O.Z:8?xN/p?NucYV]6^#b Fw(~_Ɲpfό koK gAOe}gqǾ bjczK?<ާ/Ht}_9wz&5{]R9sP?J/$>BtMqȩ6b'k ~'wr~ׂawrEê^6 0~?(\8? LVk~BЉ1g|rC›Gf}P/i7z]{~_ܱ)p!8 xRgݢ=v}_߽6z*{+!t~ ۱)ݹ~Ij+W]tnM5\hxG{?Kw239+ۺwV.Y#'J A;'Pij^ z!)x YVF\} NE;ѿ&P}~q)7M\Ƞ_&IV1? E6ɼ>u#r>΁bK_rЊl??tw_X|;|׏xQEտ{BPi$c+?w}.+?-sώgzV]a߿-c7N_1>}ѫkk6a 䦩m關Wrc<#?޿;>NdW|Ȯa Yܔw]iݿ3a._4?tЌr/;7` q rm7$M# w,oP}yU .zMXٚM>/tЫ_iCϙG/3 GTc,pmp\a WGlqJO?'wWO&Ɵ}N!qz=2wɽKN3{}ϑn~^yߝ V#Ǔ؅ ԝ/6_å:5{IE{ƿ)X u͡+S81үrCyF=?? u?&g?k+رnAǓg%xv:xI}GL5\hrYɕ;/WxAs}Cw9cr{yH?r)<sk^FTMx_)cEJvW6WGsڿ'ac[f{~>%z7SҗKzgiA窕-p+Jp-~W?m(Nݖ\0'==#Џv~*W 47ώeQ#;13wWx隟<$v^ 5cgҿ[9.0?~lY|< zrfi8?o$'?^ЍC~yK3U FY8kZJcV MY ongۭS'/A%OSCs}3~+)r+?Z+_3k?vip]Id)qo{{헻קSt_>#? ~~|u 'gh[ۣ(O|ϩ'0y[ }n[(L!zʸߥw:NxջSw)_j|rO; s=Ydg_ ]A_1/ ֬1 F|_A/C~<& g@fv}ܑmkS\t?utjq<Ur>g~Rwӓ" ;;6`kF;6ߕcq\Yo)!c䟇/~z6Y(^^_֫SzFy/g u؃h͟O]ބ\M5Z;OL]OZy>B~7{eTp)xJ~\џ>§~<\J=j mſG~?~xny[*Fk{jgVN Ϊ_i `S7 ݂~y.F5GG?~ *<.r{.}~O~-rO }?:~W9,N#;Y3Kzgj~v<@?g`yR]/T驕q>!ϥvAlHlF}˾RyI\!BjNgx8ozIRX{Ҭz`tų7V?r$h1Gs[- j\P8"L1P;ǞsvjP}NSb\0M7ͥw~s߻J]gRAVêQεw6락N#7 M8Ks;saĿ ySiJ293YO.>)gl1Fr*,Ptc\ M|hU|o9yWu }2c#o9PސJFJ_sε~-O;?{To{4&'fK b1+.Ï 1BI5գKοTr;ο[$?5Sw6c8>9+kvaq(9 wɳh$BBsŗԿ#^KOPQioϷ̥c>}ΞBV{<9ZU-_}_HVz2_W4vzPgפ|fJ?M|7G//+ Ogјcsy|H5:w'_-w}T?칟k{~ۃ{֍Ž67; iIaoKϔoI.kvJ&׵eA(}7+8:Qm.'EC|/)ݡlA)?cmyp_g!Usw {SʹB {uĎDw b+Cҿ,lq ^ZqDB7g\ΦrC;iZ[:~8LSإN ޅdXlw~ȕCb{YtfkayC}Ij{ϵ_?9.C(7$\J-<>{ڞA~Ϗy# HyR[y.}?L}w.#wkس\C=>*mn>x7؍a3>=LjgA+s 9B a茶8~zI*q 3zg.Џ<~e>{zv|`|١ִ{2o{CtP pB}#] ]\.fvi/ݿvխ.kGC%~\ne/wߡkLs-~97?tVG[[r??[m#vwd,6>?䄸w_w~_b.l%_-X=x=oJEq.vačSqq0;wanZZ7:rؕM}?UZ}<5Ļ ޒL7Ewr?D,37sgˬw߫7.;ժ08CI;+c ?p~gRs.焎q%s%yFcuv],., [@,,ݪ\{U4?'Q>Ơ݂8.qcB^țz/)_;?9s~FZ?9Зŝq=MO8 Ovw.~g~B3_vsIktb}Wȯϊ=?R^ ^RKy7țJ3x ?Y9L%ROѡkk ;U~sVA糚1ogo9aeM[77N/z}G|mCޔwrX'yΈqKY1bbs١Na]-r;_}~U zw{n*5hog|Fq' [|\Ek4y rJbt({%/ظTjs&vW̅/B >>CvoT^4dqſ ^'VQЎ/ T'w _ߚ6ܒi_KH6[>>'A)|L|^߱z|$|:/x?zF]\3G!'A9J<<\}}i*>?>>*~vI)0!3{CFT߁o;)AY|dgqʗ8xc+O|%w7mw(Wq@٠vDC~sߏs+_Դ|7g!G_ lYЯܿp4'N?πb< :} !.: =ȩw*gjyqp[<*wԋ!ouWεG''ϫ-&.;U?r%B]&#.lσǐgl!WbG@:V~A6<|zCS}NLo/ ~-K^l05v~h|{A:~2 mJj,>_f2~t}>hN_[ ?Ľʙ5\4z MVsC}:n8foh̼K:09{mwe5wq ۤo!ݹ?J$+Spsc&τ[{y[ocO${7w?1XU?)Lw| wXǿB$X>}~k='?A.Jekjs}3ۇ\7cϹܗJ=!KF!3H{= MgU7lӊΎS{Y"t,6}oD\(y%Y\uCwcs>5d1#P;~MCh&={OdG3<:.|jBkQ3T~iY{CkҝIk ƲͩԱn6:&͟UL17+Oe"7a^%#=so{<׌@I.M t=_-;]*\M~uz;ζOl\߿ӜCMGa{ꗦ[>~y& ;vA`/C<C%.ϾHxxo?cvǡ):{ϵ}g)k?gYzT9ޘo3 _^J߹Rs^ޗInhv#?tY1{GsM_ǭ:0M'(?Z/k6J|U*5:O׿o =B.k,+B' ^TMi #ؐYWһ#lG|r._|r_j{ kRG'pbkI㎑Kf'r'ss}ME;Λ{~yAwi3/ Yfvy)ju}4y.u&ž/?z>3,;ZN'&zм|^Kv{B bܝSŹ~4RٟF ^v;~lj㢨'n55cK쫩cg>i:}pku"a-k8v'_MwYy_\PnK^UA4>CPe<_#<~duצ6)/>+Ӂ;$=,ߘsu>t_cwtZ*I5[>?{Ro^_Jn=||Tz5У[ S[מ~'wД]yߒJnrIH6/x]Y?]^k<_l('>WH?V`y%}y _Cſ])swg 7#2㋮qF!?7,,?Ieo;ܵwg* N0,y˃9_|<$G~3 (hs`0S2杚97]` ͊]?SC&hֈA|3x b9fraN.c okkvgyw.Lǃ^^+3faOC=?9_}_;L&UާǦdF@DPFqJ@͟h`F@sp4ILbl ~" ݎ3(So{sst}]V_r}7D[x(0P"_؋&~j b/Kqx-[+}堮1OdӰ[v{1)= șYcoa-*<gv0㩓ů?u0.`nS }-}SH~k??tY)X}Fn-1O``h\k{Crk֯[ !qW_=ƎouXa8_wVǺk0M dIwG_igd/g|ۅ;Ś:?$YO2&_vf?[W 盭(I$9-?×@^ž-4'H_qC:ϳWŮtvN3hZŵ?GSqc|Jqzl;<>ށ@_]%bVĺd_$Þ./E{zaSǾpSb3c1_uįS2Ϝ3/3Ο_b>7{$/a+_">%>5Qg{^aIz`&C->OwĬ\wqp/deۛ8+wPbZ?뻲)=;_u_,*5Zj_=+^%f5Gp :_Ưz·pT*t;$akb B^@{_̜a zz-l#qC{|['~=0{"6֜u%lկEpA!|Y_iKyێNx,̶o:v>]LsUkں/ދ/52'~f$U?{YQ+ݔZKC+5/zB9ốgNcoH<2#>Mr/@Q֏^Ϩ^;'˛rNp %?`E H1r!C[ e!gx7ǿ&4ξyx1OkKgcL/iM}I﫾\nmq枛g6Wz_]뽮=qEi<9O֟{^θU_wrQ[vs?S[yʫܻ-=GG`SO;ߧNIQ}uǵqjw\nSsk 5 uqp-Aˣskv'_~ Njjً8=3y%!z46߹U'm=vv}Mܔ6q?V'9?|} %We|D}C'nԎkG/SwÇ9_u\7??:$>>(<'ݞ:-I// ]=)|w/n zʹt]cõ#^"%!Yz_ryswG5b?ڱmFpm37&>/|kw=-E;ǩEL߯y~gζ;5X1{Xg޽{?~N:Cv/07r`kjOQ}UWտY?=}I}2,bwk믺+Ǣw7u}v_*Mq|;;}.h~ձsn[õ<+K@$?ĖUB<ZO ="οr@.XWa?zӳzz9//S N(gk w;5mOtv4OBo{H𓽷u2=Qyf]ι=%>ŝZO{.:sݣC,[s#񱏻WyZ6_s~*WۅzGǞw;ʓ׿6?-K|6#?*r_[zp9wC xJXİUE\r(6XGS煖 Vfaݼ~gkqxy,BR;%'wHsw)~ Xa_[zQ_D<ɗrD<ܫǵC?W^絊;pww^ {y >?xz ^;ܯ#'\yfȽ)?ז8CCnh͠rkG{R9_5{_ݖwnlzw~)uah)βg,o/,57:tt,k~qֽӾ=d3<˨fߪRMï=NY4YǟLضp<:ܻc)yY3iʋD'uOM9+_Z?˞uj3omF7ܦT딸~Q?{56KgKl_=)>=r6[93l8E,kϹN lL.ַWտR:꽼O?`onFuR"9Ã;X1sԝz0{ی_y`}k;Ah>^O}1úTjפ^ k8iPCn}m9(gyS+&kXcN}ePjXKO-R;(9|gvSCҗMmI,p[ss0FFA<4=֓>uRA}Ԋ5wP=q0lͨe <+ y)!"*)SE=\'WZ0(w|:g >]$á^ )Mi/Pr@ t\Z#{xЎg5Y]sGU/u{3gx&͡a;8">^j¨!~n-Vm^QJs{-|ccΪD3:%1꣨ߡOܓ|ofcݗ<no!+c+ރ^RCujz0 y 5K?_rh[MXyV~lG@[2pCȐ>8${,CaOUkq$Uÿ)/X#?z55Xًz_Ws?MfաNJ!gGL<R~>`n6SOmu_\d[]gm)a#PϞ wS; t~ SX_=gjImgc2g{o7o+u}ׄ<~%z r,/A"ƃBo0<c^9a!cd9bώ{~r~d'|?>ֱlfg .}뼜sRÞtF[ V|ŧ"~zOHGžE;a_Ǻs.[Ugxc\lw˚\5;ֽݡ-9~68b|oeS{`]8Ϲ^Ё_,m9[W¯xrDo}@;#s8gFqʗG/m[l0pގo!9}/b{VEj $̾ILns=n~<ǃC97Cng0z/r o~n??I=oF:ܡ\ GB~_5!+~> O2𰽏;Yןu%x'7g?޿L}" k#/?T=/A|kY5rx؏}|U,)bYi;/cou@mş*z΃) ƥk}ymX\S:Sz^:5:Ћ+=}⟲r3fR s_ݖՇg># AxT؃Ϻ|db_"@3Bm|ib?39;ut%X#/.;RbWtϻ;w?#>9!KE w~/c_Bx3;6ŦhJL:Y?kޝqj?_9HͰ3hM_ Ś-b/j-? ο%:]#nyr[>{+_ Xm4IG+gbsta۔CZ= ?M\Y=d/7Vu^I9Η:Kc{xP70Ʊ^0zA|6>s_}W=PlK=x7į8+LwH\{N{Q|V6.M9S#ĵ{")ͰVo]x.W/}V9fgY3v ?UY=>O~CbHw؂W?iF$h??@dy% ]x zrθvqӨ84H9{W9y[80߹ok9K/·Y_|tWu=?dHVJ=/E{ gCJ;_Ӕ;!_ ǭfa%hJ5;[k^= &?}]ܔL4_%G{Qa?dC9Sq#<YQ1Mٺ枃zH~ag3AmV2>bXO'̿|1G0hbo_<Ǽ߆CP21]o@==7u5H΃|45}=+{a?#G9BzqCȜ:۹XَƩ7\}=QQ?=]#|3M_E- 0_i8We?l>by ;Gn~Fv\iǵ|yMz_u=:5is0tq_[e%V}`qtD[ַ{K:k7\?܌sYsMO=^xI[8vmݫ?3qEm94߹|:))gF<u|r6KŏRSp&n u^C ;癔?Rp?YX,/鬰rXk`rݮ-q6bžt{:ӋwHɋ5sK>Bb_{dKBǟ>'uϠxqb͓{+8sNoh O,N uٳj|85^JVgdǃv|(OQyH3<'kwQ߷9̿|K؃N;*<̺ܖ%͋I[4fH:,Meqvamq|%Ko 6(C{,y&މ?S?>{CCV8g_K]ٔ^֟hvIw7ûA׷x=L\g^(=>Y?Aտ.c{$G&qcT\ψ?p^3{TR^ri.ol_[k-lmI0_ٔ<qy~ZW/]qZ{>~rA?tVAmk܏>,ß3 8n \[MW|k?,oJu=?#=q),=ނ|hw) 9>w3TO~|\Ϙ7Ğq`[twĮ߹yE/g5:L[ xu8zΓ<,bߕqu{zRwSojFz[pOo;?<8[ zg;A{ bAyns"/ڳuY =ugs{Zg;S?sV=~2w~3:yV33Sx{)MOBt渦5[y;mJH-rx!)cks޿c yOuɕ6%wf=g_[mc_̣lQ~sk3zA/sgk?q3_O{_RߧƬY_+Bw9OΧOį{DaY;qX?}i/ğ0);σD&s'r9QvnW3s29a=qw1x]S {-K^#ߴz^f'9J-\pԾ.zlqhON]uԭN rT{C`%_5%kg,w53/`ȣy׎ZՙR,5{>gǵmC_pnP +9 >L^>Φꕨ+'`kϵ'}/=~}S-~5 B}G_τ7N +"ٖN!{ccȌnD=-Ϡj"s[2?ڨ+j`%NK'?=hXcceDY<كZKbm_'&_f#0rQcǃa ?츶n_:BMx:jU#xxS{3R W_ Gs{x^ }}JSPN=|#5={Ÿ73:gu/>{qyz>wyB !W>P~pov^z@[»hz}~mc!_c3dfĩW^{?^}}kjx(]~_Mڅתuΐ`UWA!7VyW p&%".z YgR ^YywOk:5;|#>t~ؿ~>m߰ۅZ?z[~[C9X[z?8[+_GӟjGRJ\ï^8!ׁhW߀en9S)|=#;&OcP2t9aaOwM|7iTc/t<'P2+!#^8'62C\7tt.pլj?~?83M/Ցp9\9>36L @}/cߔ'|/:Z}~;/ƶ/{WsO&QbyK^4yEϬe=߀xÑW? y^w{ekq*s~}S|3?Ost2C>gq:[gB=?ж=o5zkWYwos9z!GGsK5m=P0x7yK#_*Ty&?X5OCoy7~׶W9]cdcy6v!86jn \[> K} {zr|=8~?n ?IC[H'>1gNݰ>po=6Ȑ3a sxO{:z/BkGCř\ӷ W7껠0aPz̺ggIJԿzÉV;/2H0wP0q8:_\µ_vUZӎޭ|l[cVzG6$ޑb/e}߾][xr!?r'vT:&[D`Üۆnzsq_zR|O\98m8ع2?+c<%?_n?)}s/h$}ͷǚ}59gf0[3!H#tN=D]ڎ+4C{]g۶'Ka]'|SmJ B]E}mq‰/G>#v'`cz vR>ݟ)1PnƏ9~X?̹yeكtX)@5ZOWG=T/Ƚ3+c?ρ>߳WQ|tǞ?- yM9>g&a!Zg:  6{ɍmFj<[d'=xbq>+f9\sJ?iFm9<#t[l. ~1L+1վN,oJY%xnG7 ?yy:|k";$NW'98B|lz̝ʗw;/~_?ugW_G;+b9hL(&>=c!& ~tK k\;u|sS9uvǞ5Úٯuo7%}?=w! w+|e$Ƃ)㍵Ju_^rmr^]r{"损Hsy^b`Գؿ?wɏ":b?m*Ysc_!~#֟x{~a8O߲3W$B9'Yp{y|8I9*l.q88ϓzyƞ<}ܗ o; 1gť0n.s6{y|;ڋY']4)_5Ʒ-|O0IجM<7(2܅xs.}%Itsex|8NT0=!';VA1ls![߉ oiG{Ae|PgW|#vb,|S%Qzk>woYujW-F6;v4JwDI*Aqʞ;"xrCo{Sok=CegM6({gPz:޿)æ)gⳌ󫑫3>%F.&~aĞLڦĴvm 7?PU&O <xGw9beﶅc?'(d9/7y';w~l~C6Ų~_Hʿ"|J[a_x(wGz^|R1]SoecS)X+/cһmkAɿ=zPĦۃrȹ9ỽy0z:a s|ؕ]=3䛸gt=̙3z>8;`CIzWmu%ռxn>{',g.l-_31g,r98>zͅ_(3#^ڛU >C=9b,yuG>kSSf/|PǾD|cў(Nh>1l0l.q+P~ [نŞIDwTۣVm9{~" =o^"X%憼'r%/emYrgK{7@ߏNm~MnmFy]':M> ^}kKǯ[CnTOOEʰ޳/o>tssD9^)z>jފ];)輅>ϹJ5/m2(|GF? ︶ v|GrOiA$>$d/9Ws_c-k|>2믳/9=gR9uw=cՋYG>}).O1;z_w ]Sq-Uǚzb F 鳀=\kh a/[]wmGuBVTxGFcl1Ctac>&\=UsmO:*vK }4gb7?yJڼe0M]ګ->6?ᇶ=MJħ &7އ];M\Z q3^ՔZĻÊA[ =kf&LզIJ|K;q-rt/z\wY =]]'^Eq֖ܱӷC_tB/xHz ;FS`mŷԶQ?!?5UkG?C'xӰW5߁;bqogP[yP d~xyN >?͇)]?bϼfށ>>-w G?9Vn2={_t76/9?BU~}xo;_GEw\ϻo bw㣡ļyY =%|OξEدY ;}`ȇVDݳӖ<%agG_%.@|q0́&Gk/-ȾxzJ~'9s?;0, 7vtu轀߶z%e+*z'A?|^y q=oG0ܗLs1*/yMNSb74yY$vfUνGsa_7uf^fix^_qؖgvz]>-_mKlj9(<{n;(ЗYx_;ӌXK~Sձy_qq^Gbt^і_5Y{ޏ,'?ʹ]r렿Kt~i>N{L,y]f]o@,zc|2MX=dU7m)~Z;k^;|r ?-9(|=O H5۫R 5w Op\+z~`{?)ޭc~Tڲ0xI*;_Ylb+Iš+u+kKW>,gq}vH#/!79&y{^}37;_[dA3|L&{Śۼ.d>Dƿk{B&b ן9sޱpŇ7OwCOyy0όߨM4q%Yi=ytWϋ*v\gZٔ~Rx)=C{#{xf46)eG0>{ z;sN׿EoKxYoFŶjKc/eťpk3z^٦-9.'n6<0[k"?]| O]1gzsnש$fgڔ*/l}c\7L}{u#ޭm8m +r8rQ}j6pv^66t_?#{g ٛGY?\μ/ ]E7ԋkCg]+?}Iuu=}~ѳṞ^ g47U^ 8g~&mɯrgǞC\CcĻ!{{ˌ׿68x]t."οDŽ^'o.9IsY׿?Uwb|KQ6}USѾo |J->cTҖǞ:-Sg_YsW^{ekþ39q7}_c;x>GɎʭǷu>$t =xOۛ7saŏ9-V?j'Oo/)!?:)cE3=cu9:tlX}ڡ=YYye7ǝ^ĜBO_e9)=wݱQʑ>kGAWrceK!?\}_|ì&v/ƺj L\T~,t{`lS{$eawi sǚ0lh_߭~oiJW/̙q|򵎌zR{hgtUvu>gʧY`&dc_['n`rO g~w?{_ s(v^u=f;ǡ=r]~O3zWr~=Q*wI=O, ^`6 m۶}u= t'rs[OC_wjKNsYe%/^pasYa9#z}[[\_RKa9_v͡cS澵ǯf_ӎ߯1=O0.//KάYkGGKG%y`[ ϫiK ??6nrB9m/ܔxy LyK_KYxN3O =~SghiK.c;/cp=oa^9x#)~]m\&c[\XO~_Zե.k^cE K]_ ]G~m=\CGgA:oߏG:SOԔOn3a0{{b :Nj3T1zk;F_V6oKC~L Ws?6ts.36նCc9'uo l_7 ]fml y:߻bG7v=,{X\ ۷d}%|m3?~Qyi>~5eԋP@]̦/H.zmᩚ0>OYєJTq rɛk_=3(Z%uwjK݂ǸĩC\,e1jwVxVI9b$SpU̕B#5X?x۲U+8? i{9,<=R Pۗ}U;gf.:7&3YwkKıe]x|sS>GqA>z!;ک{tRDm-5ԚS FMޯ6qiT8oYR^=Y7AΉrE I_f%%sMU *H>a$t}C|g2z{r/gǚX5b}E{ u?c0P{AU/(\~u绯Cb_:Mݚ[SS):z ⴃ`u'>_}_ YD_Dz_ŃD LJF vhJ!5=1wnK^+X{_mi$Hpp;g~e=z/Nqj5^;bԎk/hFs(femo?~|bģ`N .niտ xOwY?. }܇mD/UB⼶D6$?SW5 ͑s.,'7b~XGn/|-?du^iw=&]C xjo>yMqSx|}~)>ʦܔ~ڽ3u=ѻ &{wד!nmb/zap}V/ t=WBxjKo?E~6fοs-283rĿQ 9-}~8}-uųl$N_Ǽ*0>OfϦVz`Ů^k} x㰭+zAd8>&} =qmWdb@g˰ȹ9d9_/}^O(>/rAS_g_堡ߤ zMc}?K*; U3{!h3 tA@e8[̆kiك8cYtfz_PORk! \_r6~r=ol gsp~$@dGG8 ه3 魿Om?g) _|O!#3tFj!'| +G {vjs&ZyY7=d N+1oZ|>|>@~0tT8?0>xO[Vt{dd{GVám=c2d%ֆb_2KғڐBwrAŽl(?w yN;ÿљk~?L}5?qw4.wNmW6n)~?+A_[8bW (}t>:u0!y{zî 7vn g=\;Kc;0kLC}@gyIB_ݔI5LaΎ%wN} U7|8_lsry=vA}.w^Ș7Ju;ȹ8o Y"&û% o?3GbƏ&ggu[W=1[;B|[pIpٽj0?utqI?|pXCpOdPOnon3%^(QwD罶-M]}@oA38fS#ǵzHj]Ǧ]g|. )gSC3?:3r!W2Ѧmj4MA++Οm>~?mGJ;/θҾa>)=.=x`r*~V|_#4}gW&>{㞡ޞ_ݟ㗆][Ҏh'ylxQHwk&w~`M}gqQ+I)K~^^aOާQ˪Ż|Ʌ@_yVs|=c|ds/v8gI/1zagkal7Κ}goW;;_IBNk*Nsrf>ԝ7bXJ9a{im]bğYrTx!]w)]3hv4 λ{͸{1*qeg' {Z;OQkw7EDz}O[|s)(OYhFs}qSsoFMkdf{G<y–#~[󿩮Xtyʼn^7hqGG_|f̛s/g`~﬇?V7qtX`g'PSՌ\iSOmjF{!ZgT"ҶԾ<~Qmsޭ-<? #5,5=y<uY/yo@~sw4'u^gD.|;btY ?=uCk|Vtӱr&kWVχ OOw7L 䈨m)~mcVwt.k ,LkBY󴿳pMzMeK>#5%wg7wLxt;k@u:u<.柚yp;Zڊ ?3vosko;Pqg4֗=PcϺbo0t3-k:d.~N0S|g==t?S~S9nw3S?=N|96~\<<ۆێk3wp/m}"οsS;a4נZqo&e+_Laݵ=wb뎫+cH(g,h?Ssד-lM ??X&Nm3džuϳ8mGŜ_āy?'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qĉ'N8qC|[=Wvϻ{~=7us%ml=KۂMgYfx{ٻuwٺ{vM p^71sy߸tļ랍 usy371:ze">.3?7Y{nki~xc{כpM7 ^?Mdxǐm;ko7Fv̎kZ]یBw /WŻ%^a2Ɏ(vp2sߴ-c헷wڟ!嶦wvl/+hߩ->юGk?ަ#嚐gKb)tA?'pUNf >_g)s7&׍Yq_O>lЮfCvmz#w3st}L{{{^eoҳnjӄ/͆͝yY8e-g_4^ٴ~buv]ͿɿpͿ]?5='e _^.0Ƶ=zZe{cÃu9%5M]kzC\ o྄}<&06c}'j>M92_k<7/<=j=.lvr^Ѿwc0)쾱ϿW ]n-m+f){׏ssVi,٤&?.ώe/9|;]g>b 񳏟#mc[%f>.^C˰GEe5uk?nl_b %d_ۣltN2jG5ysqܤ_õY\ϯ>,- є}1NX6]'\ZTBSgj!qqj^Cj~c޹&?~;tp?ZpYZ3'^=a5{C v4~ 7de.lx-lg.bgmnٮc3n7V=1M"}Wlj\|[k~Hm}Uo4~OrwO7p-^ϻ&~A1~x7mf3_.g1r,kv.v>75)z>q]}k*_?529lڂZjGqm>g0|{oʦlGܯ^?_4 uv\kZ}C GI?s i?õZ|C\|Zˠ$y)w6ek{sy|ls,}L`O?ܽ]?M5Zp]Ͽڍ{۶ou&_lПZȸ:kfm_?K[/6oKt\Gmc?9 ~w?..KoO|5_qo[[SKfkqcgS8^[y//$aH~%K7lӎfGgpv}ژښb|Y̧^˻a-^tzokf5>Zb {SGgZcOw٫s̷h,ofΧ/П8xNq}3M{==7 _Yz1O<1Oy?Г'ڬ^=;.iw_/)ƛgq'iC=֎x9^/Usz{^k<~FCwF4Ov{#/vn'y~k{t5yY=o||]+F>>!{w`M&6mT|~xݡ'o랳asrjl~5=㼰ɏ=v~ލSv/A?npYowƛ$ۮ铯&_o$ng_s*#y6>&߽{~Dqx9^3Y]%/$7oIޱzГ穋kܦY7eVkxwnI*y^?&_o$ׅ}c~>Gvxk#Cq}Xx?wϏӃ!`DY !?-sN\:/#r/r/r/r/r/r/?=>Dܿ{G6'?Ïv-/=$[Zo-t7X84wԯ!5Gc և_ME֮~P`==螇c և_ME֮~P`K?]={GQ}vŸ}xxoi3>˩CWZ^~oo--vcICWZ^~oorUvc[J-у?t~֯&"kW?f(w3*X+k׏_ME֮~x9^x9^x9^x9^x9^x9^x9^x9^x;ޟEmm\l|̿:vZh\m\\ƻ xwnIW?4x`ȷ!O Y]=/#Ǜ,KL?4x|/t#z/kOxx9d[Zej$ {tu{>?*y{'þ}x9d[Zej$v{sldX}y~>s|R?r1IM#Xvu kJge<=,/#Ǜ,KL?4H;gN}}Q߾iQ9%?7֎x9^x9^x9&7F~SwdvR}1dM> kim?2?SN!2v淡7IFt XoxIsi l7>6"c9koɰ֌XۃƬasoco8yI [y4ݳQ_{ ^=w$qS!ou0FQ}P?{=tv'9/r2ޤZxxY_x9^x9^x9^78{e08m{c'ֽq>ڸfUFƛ*?{>ݻwgO]x~Sv7m|9]yUCěXFڛ+1^|k|0xߝ#{xu!}zmqw740ݘքRp=HW칫gfojoo.;O -߿~ӱ!~F?|߽r1w~FK[1^yN)7:;"~Fݴt!~c}.x7?g͟7NCe{|͏]Mo/'q ߏfiL۴o|\reI+]MxB"xxxxץ6ԏAL#77`Ov|Glo0`:/?gͿ`?߆Ǔt'xxoq{ދxKQ%c~{nww~[oϿ[n7;?=c/ {n2$9̿{j3/6nzCh76o}nfg.wՌ7J@~;}k3u?1^4fa>_6g,?=&H/O+c041_1m>Oxc~ֺͷn?yz:Gl_H'̃t?p=4^Ɋ'O|<_>͔c<G?Z "~u}>Nc/m|<}/xMK}cU{{|37o7|0^߳9;=]||<ʵ7͟ ⽛7o|G>/WӚo%1?L,7o|G>/+Cqu1{iw&}W/.Fh|93cwS3*; }5%cc41`}6G}?5civ]csiAٯzxοFh|jh~|_N>~t㝘x7*͔xp1Σm;濟~;Ls?Uy/͟1mx72͔x߽8}ˏw?6NLuM# ׏79_/㽹d _{]rb}FGo}&sx}Ʃ)_թ)_F҆rLԔNMW]Vw㍍ߝ/'F>;xBuQO>xsx}|Tv Kƛxn)@71_/M|#R7|Q#xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx?7ߚS0{f?;wlߋ?}iֿ{!~/+[[;q?Ms57<O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ_=b>b~||~O~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~I<>Xz~;w7ml__==;:WWzycjmۅ:WWϯoDzw<$4:z~Gu~ίjYP:z~Gu~ί___= B__=>gTK=__=cUUW˕O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9foԜyUE!q7b^4_5_*1/?!Q^k n &]!וݘ?7_| \-!QO";<8hMύ\ߍC~/hqr nU^R_rukfo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9wZ[GOOo??j>q|Xh]̛:!}W?./;~#~:!}W?q>a~C~̯>;C7C~/&W̯// u~"nϷ?WWW?-΅bv u~߁.DEmu~_E}qr>z~C(/__}WQG=WW?U~>z~˥BQG=! ߮0ׄ:__?WO~u?WO~u?WO~u?WO~u?WO~u?WO~u?WO~u?WO~u?WO~u?WO~u?WO~u?WïO~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρḞρ7:?fc0iޔUh+oUwX{Sv uq?j1mc6Z#ۅ*=aOO~M?U*Q\O~b?'Uxe}!^G_FmJzmׅ?_F{i[[:VU+:V>{Ӹ2[h+oU>(W'Q>O#nu~%uq??{:V埛{|bv uq?JTWߪ= ~[3=&4*?o7qCKh+oU= ~[VgsVyuB_\ߍN!I)?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~__=Ҙ>d_W?Iw=z9 n1`*~; Cȷ: CH_}O~'ߛ{0mPW?I;sz~3z~3z~rwS`wX_}O~'=Ui{*~; O_}O~\}:ï^u~~m{]!^SW:?]^=cCn?ן? i~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~'8Η]ᇿǟ3_0_6_q]ᇿU_?ᇿ-As>\? q,B'9K?j?}ʯ׽\CckB>緺~~YC̍Ma.?>W}>緺~*^>mO~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρFHc415+O~Hn^g`D~ϜFynww7mm!gO~VX+C5ߜ/(_oT]k^ϟFm s[* n(Κ=BW_3'Q= 7w}X\ ~E "?^׷u{^Ÿ9}) t]{:I%s +t;f>>T_'z} -O5{vaĠ_'u:\?χ~@*W]a٩-ANuRɯOqx>؏Uᯓ:T[:Sߏ7*uR篓J~/j ouR篓J~?T[?Un_'u:W}T^]*IN*]zP 7~뤒ssy0}8xbRᯓ:T~Y;뤒_-#'ͧ~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ww G^$*~; :ycjmۃN79mcmgZ_}O~'_a? q{|sï>'~; i;]?n1 N¿- ^X_}O~uw@ ׋ևx*r߻QkB̮gZ_}O~'j1Uyן{|||ټ㯫 i{'zU¿~>8 zyQ*G6IcLRWW[]?s+Bᷟxݫ1~w4y6yPUat頹~Y;z߲wyRׄ8 {`g9¯^wivA?f˯^WGB||,*z~Uﱟq}\*K~ՎT0U>ZC5/n׿mtA׾dFx$_Ov_ے.P~{%%- 򗟗:/mIOq>{+ۍUw_ۮ.oζߖt}<,?$"ݨ?Q|}!~' "ݨ?Qe1 {/mI_ByXן? 洝!B z/C}!v&~_'w!wm BUO~ោ-:'sWI\>ׯy,&¯^ ?n/}_M,qsBg~5ߌJ'߷u۟/V'emi[Vz6u?2e_=feO_=]?O~S'~['~['~['~['~[o#OcL,: ?*(X'EL9>z~?kb?}0| 8Zȏ/맿'9^~ߥZᇟꮟͿ\o3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9ߨm6v洭-7?7q7okyC\Bܶ 7u)/7ʷ6w!N\ ~e3mok= 7~E~gr+O~~~_oTqżŸ9?_Fq~E=)3EKQ lwk_'u:ixvmIN*}"͡WE*l{͇G 뤒 iLkA*~;sp &_'u:䷺~zOWNuRo~_u _'u:WuT͙NuR̯~{` զ:I1 ={a_'u:_OUo_'u:W3*>@ᯓ:T~N߷{>@C<_Vᯓ:T¿|.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ï˯!~δ-vEwmyyUW?Io1C̭ٷ¯>'_M\+wP/4u׷׷5>xyS¯>';7ߖU*~; odz}V~?׀};?W;~=c9k>0/n=7?`~0׿}س{_a~w5gs΋_߷||yyWW=ѥ0ar㯫 _?`oï^\?g.譟*;mUY0~9E?V_~w5 qywml :j~ӟ~¯^]w*{ w*j~O~Hbq:j~~>@TͿ\vc+ۍ۹=c[Bd[M~oK{?OK?F߾*?o7/.y"E+l߻\"ݨ?QeߖC}5%1E~Q>bqE~Q{oww`5$'FᏪs}ߩ+ۍ ~Iym0?~L_wΕxo3UU߶ؿ{p䷙!nkM}W_O_.'?U?k̾M_Zu_z^n_ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9f{9 :6_9y|U߆T~RoY{_C/ ~ېJ~,:Pᇿ |_ _Roٿ !q ] F߆TtT;6OoC*U_ W!I)gſ9Zo`x|Ư^ $}+v¯^ $a/ן? ߗobS7O~ោ>_6ym]bVW?~n =, :'OwC~{Ru~W_ߦ z/uO~v!=??ۼT5'xڷ  ^+?V'ϛ}d| ?mY*4/}e˿* _}s*>2Q'|W _J'?_?խ?_?խ?_?խ?_?խ?_?խ?s'Eg ~_+>\?5s|Uϥr[?ᇿU??}ouT_]~~ɯnᇟ~ɯnᇿU~?}o%ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?`cm4o61n^{sWw&X))O~B-iׅ'Q/_5_2%!q7o/7)~~E "?h3_)bJ 7jSo}d'QeyA\ ~=oe'Q+'1O2/:@*X15:uR篓Z~ >@N_'u:-e7W:I5j ocyy}͕NuRy{̅\q&SWNuR4|7/_ӏ2 w*uReTۻ||0m]v:wOyB*C}}߻)mkkᯓ:T~NyI%s>譟*뿻 뤒_~~*uR篓J~aݜ׃U_'o11?d>i>e~x?'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/w|yyyyuW?ImW9ϼyA_}O~'^+v1B~; KW̗2Pߩ//Nhw°vVW?__?՝?i5`~57_2ϛC~uWe~>A_]yW }ļۼ/ߩ׿}s|.=rZ?U]4ï^W}Ta? q߻9mc[WW[Ov.8PU}wo>tgA*u zߥ?JWc>b9tbUa) _~!U׿CSӏ2 w*j~  *r~5/}[[z߶KO;޼1\YlqE~Q|[7TF*ށϯeqE~Q^6Z{%ۍ-{`qE~Q,t};Ͻ=e "ݨ?Q~1}}~9N\nb_ۖ.߯b6^.n(uom~"ݨ?~gZty䷙\ؿf2ǗV'߷U^/V': Ͻ)g_,p_̮s^>;2f=\^~ ?W߿Qo0/?O~Y'~['~['~['~['~[o#1O1_Ws~cΚϙ5ȍz} }R{~ߥ&Ts~J ~_~_~y)?><x!~|U_>T{~_~߶Kß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~۽V\,'Q/_6_4- B n(%\~I\ ~b +O~b_SSwF¯O~K/ +O~W'Ia~ϝFE<~.{_;?*{/:7{ݯؾdm=y޼`tA1qANuR{, _?|gSᯓ:T[OTjPU}C)s IN*-OO~s[u ANuRoٻ*7O:I% pм|WSᯓ:Tuɠ~{{$m@`ᯓ:T[=x)譟*!{כ7IN*ǗkwN 뤒r,+%T*uR篓J~կߩ߻뤒ߥO߲\_'o11?d>i>e~x?'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/׷{۹bY0/ $/&^1_2B¯>'{v_5_4;!~?ؾdN_! {ׄwm/ŰVW?__?w~B~; oj9y^_}O~'e8kŰVW?I߿dF*~[\n$KA{"ݨ?Q~"?n+fS%ۍg;K?]{K?) Y~rvGqR/K?R_U,?F~ ~cx?Wto3Ue.8~L_JkU+r/|?2eO_._?k/ O~ ~Q;?䷙?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρsOϚ/͋A߆T?gPB63!\6/ ~ېJ~畠~"篓J~Ùw~ېJ~ϦOW_ w?zM߆T]yQ߆T~~ېJ~'!>4?mH%*[GOO?+/_4!=:Wl_3/3oOJ1޾o} z/?kx.q=a~ ߡr1ן? (s~C~{Ru~_B1<¯^ $Eܞ}VW?W?'W/ z/=O.5a~_̿~ޜƾͼ|{'s ~ߥ?j>TrcB>_| U_`yd ?[CV*>!q7o`q7o/7bs w* n߳9͗ A*m{'Ҷ1 :uR篓j~8PUﲱ&!NNuR4Ι c_'u:䷺~*_sڎ{ךכ7:I% ﱠ_'u:WQ͓N*-OELc ݟT_'/*w7뤒! -z_'u: 'Ck5*uR篓J~~kIN*U??J3뤒_-#'ͧ~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~hxo%į>'?l~ B~; |%qyϛO /N|#La_Ư_uϙ/+z~_(=׋a¯>'sISEUwo<.Tw_>#į>3s +Eg _^{GzOWe]Uﴟw;~w53Kuȍ*>4^¯^淬Wm~wyycڞ zϤυ_W} ľxWW[g_>~X_]o(XQߜ.]?C>;3o0o :'y_ zoW͕_]ϯ?oN*e{( {_gRW?ͳ*wm׀oj~_.?]o`~[\n?V~[\n(gḘy!qE~Q[}?g~VW?+Eج\"ݨ?QJAK~/~3}ׄF*{}py?2qE~QX\n_C*=Y.nrjAK~/{_5^*vwy|o6WX_?m&jfxfm~L_-6 p7y/|?2e /eKfo\t䷙*_~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9f8; >W߆T[T Ry{̅kRoC*-g!DkkPᇿ W6s!0.RoC*]z᪳߆T{s|j|?L!I)gEė_6!i?axq"NU_? jﺟQoo*~?&Τ}̏Qϯ;?_OsU͕cB3i||G='RUj~k(#{{y3WkCUj~կ?'mO\-kֿO3W9C/ohd3d~'mb,|Yh_?_ 3|fXg[敉ZO~3pb1U/}_,|~{+Bg~{  _O_.y|c^h__0}]ZgH2_7O]~֙76=;s㯫?98啃x}B>-̷Hkhnu>緺~)~kAcbsH?>W}>W}>wv~_~x~?zw~_~r@q>W}>W;_'ᇿό}s#9ۂ6߷߶w塚*630? ToC*s '!Vϣ{ ~ېJ~;*@*6܃ ?mH%~]{3|sS]N~FNIvyyn ||Q?t¼~˰g/bv+b~U?$oݖP3gbSO ~{g?$vz6U߲>V\* ~;oK]_'$]Ux=8(%_H~NN>x}gEU?C=S>R a ~ۇiuouNG11^5_215L9t_'>REov2oNߩIN*]~Ι_| exyOᯓ:T[]? BWߘj^c^kt_'  pᯓ:~1ı= {a:I%啠wPbY3뤘_*nJc6^t_'WU_'zϤ_ }|?#IN*=s>ׅ_IN*U??J3뤒{׷io11?d>i>e~x?k`~PᇿU_?ᇿU_?ᇿU_?ᇿ]j~[Du>W>k~~~~_~_~?խ?_?խ?_?խ?_?խ?_?խ?_?խ?=}4gӶgϚ/0?)_7'wmy:6QcBu~ۇg\O wuί_󳶉?1)RWϯ| W_ZY?1tUNja٥ey YE?#~4{n25`?$+1 ϊqs\ N__;~wk ョ:k~$Q!?ߏ&>Qľ#揚?&ǟ3_0_1/:cȏ*k?}g>tǜMϛ3ϧ 7e?M;C z_/$m`Ρï^k&=R[?U}<==i*j~_mT~>a/ms|4׿-s~5yw*j~r{, {A_]oy|W_׿j?*C쁗*j~bUoj~<v_ߏ=~ܼ|gUWW~o7}kzߵu9Ã-g_DžǕJ~767ߞ֨B6>d Ro~n{(J 犸v?%?xl~VW*}__^ ~CB6O7UǕJ~OgsX_;qYHiy_q_~65_ ymW{aqڻ_S<l{o=|{o?"?T~ٝ.{wQ+//O[J\mWUE/_?m&jhjd3π6WYR>p䷙[BY&o2>e}eO_. {`=p䷙*2\g_?m&{]ϰ}q䷙:x{`_c;N{?mH%o;̻'~ېJ~OoC*sy 7:~ېJ~Kl6_~ېJ~w/߆T~Rɯ}{?mH%[OoC*U??mH% !ǜIϛ3_qSoC*=sjC?(T-~*?~{*?U_s~E!?~ϒR~P '. W޿?{oN</ gl-ur?gzKU_?_WUW?m旄?m+0*>޹"w_.bU/}"m'q_>_)b,/  3K_ǧe_~e~^,~?e9~V'km.4{ͷm gww㯛?߇.+ooIug> Ts~}w(? x~WsymB>W>wUe U_]ڿiޣTោ_< bּ| (7[1ʵsPᇿ-_Gs~ោ_#Z'ꮟzpᇿU_?ᇿU_?ᇿU??Wu]{X?mH%.kM߆~Rok-zPᇿ W}6y| ?mH%6KO_ ~ېJ~OoC*C~ېJ~??mH%*~Ro%ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6O~ ~s'?9_t{3|YGwż&mӉO7)!:O~':~w4ɰI-bvݟw56n>5!?,_'4[_ZO~'ou=NJRN߾eL RA\CR_dXWN>aHBNߕ7?qU?G=ͮ_+]\z[,= '{̳-=~PU}Ҹ{{뤒ߧss*Wߔf^k^T_'*;m][:I% m!w7WWm:I%Z=n_'u:4x-@*>3ݘ_'u:\;OW_Tcc|`]ANuREmT_cc q\BU_'xe?INjP/u$?]^Vᯓ:Td 5X s*W3k~y{<*uR篓j~k*WU_'nmJ~63O!I)៌_=ko{?9S} }=;s㯫?95_򳛇?}T{c'9ڹRw~_._?}9G= ?}ouT<>緺~WZ?ᇿUW?_?խ?_?խ?_?խ?_?խ?_?խ?_]O(plgg͟HNr؟&>g~"Bܿ~;I~sR~,qbQ?w~~6Q̿o :']^ME<)!ݿ~;*?a?A&ϵ7?,?']L1wTZ~s_|_?2V[u7ӏ?Y/u.7\͙_RW_4q+̫i}7 ׿hU7qי7;~w5cѵBW^!{c~dWW[]?+*~w5KO?U*u z_Ei{*j~AQQï^W}T͙_]o~>4=}A_]oy]uT뽛kkC zrbwP z_w*{n mUWW럽ޔs||߶ y^3/0RW*ώPh#m g`"~[\zfۂ6{U??T[*@*6m"Ο_7ǕJ~}{y~ERɯ *J%7_??=??^9+V=Tls{W*U?l{k{p^VW*o5o =+Tg,}o+V lB\ws{ߎ UǕJ~_.U6`~ò6Wyf<1}q䷙*U5eya䷙*_]J̀6WU_(?+ߨ2~L_/~]عzfW~'J667?mH1彋 ?m2ϟNuRo^Rʯ ?mH)S߆/D~?_'*~!>cyǯ?!hrzέBV]So;v~y^R_J?!zR]?oC*-_?c~[wM矋t RoC*]ڿ*RoyP!V)/ʿkJ6_~[wMnռm0w)Z||Y6揘?o&~_3zC*7?߷MA>~/Uo6"i?߇N8&Tg4_>kOv`t);jWُ?R ʙ-m[EOgQ?V>U_|ߜ_s(۔Y:MOؿOO3W¯^my%Bg"nϷl"4/}/b^/.*> q[kyE'.7{|x^h___-?+!ľ<}Uh_O__5sw?}v?}mkӺy (7?B>wiv~_괎?9S9{gnPᇿ},=UJȏsOϊ~yQz}l||0=?mH%^wO~ېJ~OoCW߆~Roٿb'!*߆~R̯ ?mH) !*߆T5~`?mH%m/?~Lß?m&ρ6O~ ~s'?9fo3䷙?~Lß?m&ρ6v~o46ek~[?10CBuN+wdZ_3ze'"̻2o&Vs5!:O~ݟa}E/_ ~;J[_:O~pʏ '5ȹdo$'WU?Űb ~;I~o@QBuo]_'$]cݼnm>aE'3s+A*li뤒_YTyPUX̻vw:I% Qx:I%Sy̗ BW_kc7o2 q:I%ՠ~_'u:ڿ(*K__'u:ן{:¿go3_'u:WQ^wyyy_'u:_uP_To_'u:W}T^y;뤒߳9C*T~?w=+ϲ 뤒_; ZWNuRvێAQio11콉eU޻q[-IU(Jee@B"H# $Hhx6% II`j,IOMTzsgU4k5s{}!#៍_=;#7b<~_ ?Cίϓo~k?Cͯz!7S~?CίNn?v]{?Cί!9~_V~_6~5; qɽPU{oxX_}oj?U'7¯^wm@k]?X_}oq߯}. _kUW_*wUW_~N}/M_}wxTz?^snϿ*k~뇊SkUW_{a /-wM O*GbRRigRßϷ~T*g'=o߷WVT*oCoo0*1]ST*m?)-ß=cBR?ok0*1s6YXR䷽~{B RɯN_Cxw//ߏ<O*g<*K ͿWR?__WR7߿S/#OYBJ%%o6~;p,O~u]bK?m}a~ M%kO~.?/m!~.g0?NVw+pi~;-w kYtr^}4?NVw}eh0 /!}Rᇿ7ᇿT~g߿Rɯݩq_ ?J~T{L }͂~KH%?= W_B*k6 x*J~?fÿWͽx. ϿH{pW_/B?3O~2 g ;Cht/Cg_~]KMk|>V'ռ9xC3 ?̿?3r˟_(ww۞leY?C?]imWh>m~PmS~v<9@g?CmB!{xr~r~=Tq~!ww׋Or~޿S?7*?}̶yWC}]!5%xzgK?Zr~ qj?98~?Cί;r~/j?Or~r~o>0|h~?%_Aa ~KH%;oJbRoa ׯjf )Wy~Rɯ_X/!O/!滅?%_ ?%_w_B*m߿S_B*-Ϳ, w: w: w: w: w: w: w: w: w: w: w: m|Qgmm?7 o$'w=SϠWͿf@7|PKY'7ߘ_K9*]ΒߝCWo46/3'w5]PylϿ[B]YgMG 'soNZ?s^5h*]s1mw%7%w ~;7WU?s j%,}̶ytםҾo5t%m?2_0_ry@ kT ߩSIK]Rɯ!saCU¿wyżü;wIK*l . _?Ͽw+ϿwIK*>?_ z?*•_.wI%j*y=^?wIK*g¿yyyW:T{jU}ֽ=Ġ%u.W}~Q> :]RJ~ߩLyspU%jT}=`.wI%+߶7L^ 4?`~~gWo[pUr~w)Or~wnK(~6>v ?Cί?Co{h3=?/?߿!7Nw^{8-Tr~'9*~['~['~['~['~['~[/e|>߰]̿a!~;K~'ݯ=/7Va_5:~'wa|_&WSvs~U,g_^1?%{34=_~;gU)-[+vf|A!'V)4eߡuO~5zu~Y[3zGͽ^mi?-.uO~ܞyM[u~z|N=?ϻLU ~o_o#׿f謹 }7i|OWYyL}||"C_}GmxPU}oO8m%׿`Ugni^ :J~ծTq;ŷ~=y~Q*cc@ z_ETϽ'i׿U]?ToϿ+A__k_}o ¯^W}A?ϻ>ox~5ګ Ϻ{Ҿ8=`~5Gg}^bHaRo[+棭@/??ĿsBJ%CgqO*'b2?.?TU?psWR{QR__ ?(? 2I_Ϳ_T*ݖfiv@* Ro;G㵇kT*U_?1yp Rɯ!Ps*J%yD¿V~8?[R4?m.5qϙ/N'o !lJ }Wy=3!×O~߷yxUޟr_f<3r̿?k{V}oK?mm ׹|f_?ӥtr^0/Z>=`S};l~m?RɯkٟO|PᇿT{P jƟ;&BRɯ/c{o6U_B*~Ɵ;6 &oFޑf7 ~KH%g*T/!눾p^ ?߾xPᇿTsa|N ?%_ ?%GK|!~KH%Κ;Pᇿx9E W c!0@_B*>ׂ^RɯzR˯+WC\P?J~?gZ/!?%?/!O/!ܪ.?e|^|R6˃(]/&g{p׷y)}F3-T4G?cJ}Q/9Ǐz~} ^?!3Ǐz~sE/ך?+=8~?_/6k?Ub_J??QP_/~{pW}x=?/wU{~U'@:n>2?}ʯ|Wr5* B?G A?d~gb}_9*!ﲟW>ͼ=_so>$t_̿vg_KV'l'Om77:~+^'OG!7'f!wmμY?>t'9^w_{th"Tr~m/~ߵnPU_?!W; ?~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇿD~_m^6b^vw_Z_B*m^L6 7OvnyU_B*韁~.W~KH%y]=BRo_B*]{N~KH%_B*m߿S_B*U_B*-Ϳ, w: w: w: w: w: w: w: w: w: w: w: miȶμ?7TO w ~;K~O?m`m4o?lg~?% >`S/%4'8>I !.O~5M9DŽ?;DO61,%<Ͽ/֜נ}~_ׯT?%:/w ~;ׯw6~y,%<Ͽ3] '{߻{&}VXWK_P?^wN|U޿6I?E{^=ON~{O~Sms)÷T^M]=w:}C qVTYTp|||Nτ |*f{~;jg&?NwN !* ~;j3[HL* ~;j_Mϼ t~_qB׊y|^7Ϙ4?`~~gS~ ~ɯnᇟ^?O~n%T'~;?խ?ߦyQO~uᇟ^¯^'~['~['~['~['~['׼j~-&181DO w?Y?k>gޝ[av_ΒW3}Ϡ6mC?,uO~gɯ?7? Ϸ~Ka~;K~_N SϽm^?w?Y3+_+Hg~U<Ͽ/?R~sU{Ns?s&=!k'ӞaO !'?+5zBW[ffί_s_U,UW]Ӿo5tO~Y k%tO~C̬LbPW:?].Ax7~ b~kW:?].wIgVW:?]~~ |:`~_!_.߯'z?d?503¯^u~\~SDbRW:?].jz_?ww~/ub?TpnROI_ bU'J~_q; ƟJ_ w߹wKR7|RKBJ%y~``1k1I_>綟ŭ??_ {1I_ bߛZ;O*n\1y}_3>Rÿ߿nONRW}~o=-Ϳ,[˾{ /6qtVwJ?myVww7߭~ ~Ͻ!>w,xr/.?/̿?{vyc{Z]!?Kƫ?~u9Ɂr/ן[|5y 7?{_G_B*͵?4'J~'J~/!O?%_ ?%߃G=;ϙ/ bvk~oQϯ?r_W¿W]~8.z2m0zp?V/wUk~})ot?U_gr~sbiQϯ z_.0KB?B׶3O~2l 1s ?;=!sy%_i{*!} A?d~_u\+0/Z?kuϻڙ?k3rסUm\zFn(~6~͛?CϯoBVv'9τqU?f6?Co]|!B~;jO~u'9?9*~['~['~['~['~['~[/Wms]j΋TZT=?%_Pv O/!z ׯ3{?%_ ?%O~O~O~O~O~O~O~O~O~O~O~_:6χfn(~O3?5 [+{j6N!.O~galW*6~K*]#ϧ?1_'o?dwo݌ׯy'ok9Ͼw^ߚ痼vx?%w[*ysWKYׯϺ>7*]Q^{Mr 'oR_쮰h '|~6k|m ~;j?ju"7I?E||2){~;jkɼӼ;ORO~gQm8{{g3 ΢%f>h>b>N~{O~Smy2NO~Smy{=`I?EyׯaTo9a<O*,w O/Gusy`>c~!#៍_=+Igm?9koA?~2??Co}j Xh>bޓ/_.0 z/O~\u~\̻ݼӼtO~˟Ͻwï^u~\C!ν'B<0:W'!]HL*W'̿C:W~?^3v#u&~3SRkI/?37YR'͟2_z{,nI?n~P_ :=_/?T_Q/?T}gøwn?>}.VT*U_g-!z穴!Ͽ*J%kg Tbn?s}/XR7'f1ٽwUT*m-B1]x~۳ RɯS3P\ Roie ~"F&/\/;_̛͛[/VBM~ ~ý+/C̾#ę4?N/yr_gմ?zv{GiK ' ~y!kWy=̿?ums)nn2s/!^ 3sv?%ͅ`PᇿTz ~KH%R׊ J~/! qgR/!gkR^ xᇿT/!_B*-Ϳ, w: w: w: w: w: w: w: w: w: w: w: m6n(~6~^(ohC~9NŻ6S~Wb;&kz_?{2u;G9 ok-ӧ*//׭7np׳To12UN.O~2B<9r⶛m=BӶͧϚ7vgPW]?3j_o!7gf! As~!W}~!g-#~ߵs(~ӷ{)g]B!7/?ŷU_U_?!W_O~u?WO~u?WO~u?WO~u?WO~u?WO~u?%mmӼ:i ~KH%" n*~KH%~KH);_ g?J~t[_B*y|.ĺ{?%_x BRow: ww~KH-_B*ͽS_B*-Ϳ, w: w: w: w: w: w: w: w: w: w: w: gOw8k7&U?%m1?ghmϡ5w:B]Β_͵Qaь3-w ~;K~ٿB]ΒB痭3k{䇅?YuݦQj_k&w w ~;Z?۳ 'Ck̿J~U!g$'K_.O~gɯN_CfK_ی۞U?ww ~}w?'6iw$S[ot)' ΢W3wwT콾7 otXϽGBVTYTUI= ΢O+ęXRO~gQmwx^ma|XRO~gQm콎ẋot?=~OT?0K7?;P |CG?z~!7>y??tU?PE?WO~u?CϯoJ<l5r!wZ!W}~!'9*~['~['~['~['~['~[/6v̇G]-uO~g9yOwo]52u7~;K~?c\ h7hUοϯ]5_7?B9O~'ͯ{1okS7'?w=o}=7OajZV ~o{+U/u~~Ws _o'߃מ'z?'kh<_DUʰow?Y{!z_~;K~U6/0?tO~~|gzӉA_wۻo 1˷~SW:?err{Gb9e%_.s3iyVW:?].jz}ï^u~\~?}!; zrχ{_JW/k_?/(RYJ?m~Ͻ_7je4?NV{u+?a9J~6gǶѼ__B*_ ~KH%ubRofRɯ?%v̵?(T/!/_B*U_B*U_T?ᇿT?ᇿT[YtttttttttttK{ɼնn5??[A__i-w_=3lm3?K)_f/C~9WR,U| TzvE/6??}&ÿο5!?3_K~ub}][+?/7cyWK~_1O?__W_/?GM%?d~V7ƠO~2&ysspΰ ?}_;;?7Ͼ:/Cg_~]~_uο_~]~_uw{Ҿ3p_6dmb9=߁nwG?Co!׷S~__^P| 9~̽sPU_?!W9~<%Tr~U?WO~u?WO~u?WO~u?WO~u?WO~u?W_%?VZ_B*-҂R9珕J~}߿P?b~K2||NW3wwT̿C'ө6#!^/50U'w;L~;jߓ߼ݼ3ęXRO~gQm&?N נ`I?ELo}OT?_:φ;`>c~!#៍_=_xI?-E??>5fh ?Cίz!7N~;K=?tm?Co~آ?1?S~v3?~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇿD~_I;6wk&ϙߖEB]wdۼ^|_*]wzsj7cY&E/ug 5N_g]|=wMΒ_Pakn~g+*]w{_u~/yueΏ/0^B:O~g~4cn*:Zοw~N_~{o~n={zrG'̇zrOf>bUO~˿~ޓͼݼ+_.~>3 zo= ?U?/W>wyż3_rwW'oϼ曂zr}yu<_.]M \&n(~s^bw;_'?Tx_ {T*mͣw8Ubr*J%?3x޼Ѷ2T?3.-O*O?~^*J%[T*J%7}B=O*OKH%ob|_h^T'Z~?ÿ5yn0A!I_ߟ1]BRW}~1ߙlEO*_`5\^j"Ki~;-Ѽ)}' ~k n&?K_woʰz7_ !29&4?NV{̿?k3r˿'a<*) /6{t|?y-kUޟr_{*jϿy|ּӶ[5 _B*}1gFԞ?%WT'R~5. 7/{7 ~KH%>^=ɟJᇿyQ?J~yk ~KH%?_B*U?%_~KH%kZᇿT[YtttttttttttKן.:<l^tCG/'Ǐz~_ 38i<b`mk:~={x=Ckg?ϳ(RYg׍_5\n5as=3ПWeP}8{oX=*?Kî~'~9 !^CYg*ߟA 7]w8>ܗ'/7TX~gWϯS!o(Tr~sh!jV!DsL$Tr~O~_><Ƴ#r~Zr~mo?9??Co{Ag}HzcWB|9}4>=6 oAƿ?CoZ!?j~_~_~GSU'uE?խ?9yAu~!>o͏T҂R3ͳ5RW?%ߧB9M_B*\ϭBRɯ.C?;}PᇿTv~Q_B*]?ᇿTgC\{P_B*w*޿Ro^?T_B*U/!~¶Si LKKYR6qoL>e>F!.O~yV-ܲ '8>>*cDž?__g{8fw ~;d_=!.O~|G˷%.%,ͽ%Wթ䛅?%4g{潳e.O~\rv!.O~go^;޿{'̿w ~;K~m3?^gq_{3[{JR:T1Z~~Ajޠ%u.7Oݫ!-BW[d:?U{ ܻ).wI-_Zo]RJ~/gC[*W?du|ܼ||8wIK*U_TJ~Ox_\ Ͼ>|;{:8{}*]RJ~XМ_T^oc_:?Uvu"ĵ,_:t%z|%O~u4wIK*n:|CG?z~k_?9OC ecJ~v,h0^{,]r~}{_son?9.m>~?Cow?/?{!9y_?}"Ŀ}=Tq~!緽W!7ǧ;r~'9E?ޙ??U?Cίz!%ZNjT*]w{|\M}D9B]w^w6޹;m_OuO~p=D7M>&:z~UM=ZVK_=w~&oW~~?%y玊g ?>ڲ _Gu~s?kϷ~k̿iKa<sO _k~y9ϾןU~ί_]+f|h*]wW濙b{im]W~>c5/~5 q-5ﵟo22ItOXW_uh*;]!{7~5~T*ךkW_>~||8׿U_TYX_}V~u)~5%?UW_}ͯ"<#ï^淽~?U}* ï^W3Z>kv?w^boI>N R !n>^lÿĠ O*>=4ÿ-iYRׯ{z"?_ %T*=f?_ gO*C}v𷯙?T%~kiWR0/7*J%O_V/wUT*}6mk_ /O>!?Tk߼hU'J~bcx=*?Tmds;_| .6q]Ro^k _yB؆6^Uӡ%_6/ZJ~w1 G{Y]]=ȯJK(gKW\%y~GC~#fQg.䷽~3ÿc;z|.ϼQ[?Q3pv ~ף|3p~#KÿZU:z3j=`0^w6玭o]R9b~PᇿTܱi{ {g1n4?J~_QT?%_~KH%k'J~'J~/!zlO/!O/!w>(O/!W濙?`^KR/!z1KR gW?%_ ?%_ׄ?%_=<"Z/!^m~RɯJ~'J~K9 3_B*U?%_~32?<Q¯^ ,7cI76W z/jٲ z/ide~_g?D5N>C~RuGZVW?}{[VW?'#>!:{e~_goϼw7B|Ŷ96z/5qߗOW~mO3o7G~~}[ޭ߰o 0ΰz~ 6 ?my5cyż#0+?ϳ^Vgjo-~{=ĹZ=yyO_oWּ?Co;X^!UYP_?G[Ҿ=>?ş׫6~7/]ך ?խ?_?խ?_?խ?_?խ?_?խ?_?խ?ȯQ/?C65?gPW}$p|^?Or~XМ_/ ?Cί!9 9~_ ?Co'9vH ^I9[YtttttttttttK~mvwt?%ϛ7ƟJᇿTknV;?%OPᇿT[m]BRͯJ~ϋAs~KH%ϦsP\?RɯJ~Hq~KH%~KH%??%ҁojYR~7jg;ZVTFm 7*ϻ̿+ߨ}{ O*O~|c* ~ߨ]VTFg-O*O~W'Qye_F1¯_:67j>gt2)1q%u.{5ړbat%^ BW?`u|ؼ/y:T{!GB쟯 _}hlt%?R<יT%O~BW~T%k{|4e8*]RJ~/C~ߏ;xV:THz0PUwIK*Ÿ]o~ _ŸC!c*]RJ~U^ϻε)}wIK*U|CG? ~ ?~u/_'ïO~_.?~]~ ?~u/w I FQ}]!TO6 ~v|`!7?U_U_9/'_'?~?Cί f앖UՏ,9!wkse?Y77W ?۶ ?e=~'lѲ ?e=~'Ԍe~~;׽e~~; w"z~3練UՏ̯QWC}]W?m?b>c>TW_Hzc/_;cy%M_}oWg?7HCگ z_¿)}y77o :k~ hzYyx >IWO{HW[?T4 1yVW_>ߑyC`_= }̿%Uw+UW?*y=^?׿>WYwy[u>~5%˿*G-'GaIE~QeGyB~oi;o?ToN1҂:?o?-iYR~e={Y"?Q[ղ "?Q7~(?TmlznżsS_.6qgͯ]e{z3?_y?+?]U0mֿKÿs|i,]R3ζ۔>%_'ӟ}"? Q]S~ӯUX.zS!Чkj]ȟWg`g3pTv{ %_8 <9sqT۞_j]B39~=r}~GߜagC*3߿v ~ףο%ᯁN'ᯁN'ᯁN'ᯁN'ᯁN'ᯁN'ᯁN'ᯁN'ᯁN'ᯁN'ᯁN'ᯁt~7j>gt?%D~9~௟K*?^w|޹?%_ ?%?%GKW?~.c!~~ JA~KH%yPu~KH%yᱠ?%ǃ?%k>>?J~Uo01?h~\*'¿^i?o!:;*'¿UO~ៅG36%C:;mן? VW?W~֟__g\*'¿{e~w_)i M?!D&g}̛+?Z?ww77y?W]WBdϱz~s|*տy?W}5j2_3o}uvϿ>~0~2u?lտy?WOg3z~׮zO(g>Ϳ*/߯}sov}WeP}ZUKWeP}%vzW^sz~U~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇿD~ض'|9CO~OE?CoK1O~s?Co{~] /M?Or~O~?Cor~PƟ{F?-Ϳ, w: w: w: w: w: w: w: w: w: w: w: yT߻μy^Z_B_[?%_g¸wn?J~Hw7 ~_:y?%? ~ĿoV ䷽x?%_C/!ל_B*-?/hx* ~ߨS7~>%??-O*O~H|{* ~ߨ+Ϳ'''Q;??b_FI!I?oJZVTFmMy7j* ~ߨ-ز '̟4_Nos3iO:]RJ~ض\JH*>.wI%V {4X:T'cg3U {]=AK]Ro] Sw8L%u.䷽٠n{k)wIK*?W?3P:T~h1< \Bܷ ;]s_kj 7E :]RJ~>ߩg^?wIK*U*y7.wI1*>w77xXK]Rɯ 32?<a_'ïO~_.?~]~ ?~u/_'ïO~_+͋mQ}]!{ɼb0?X ?C!~~ Mk:?]~˼G?Or~'9y?w?Or~}~i?9*¯~O~g?D7M>&į~O~g?D܌>%į~O~g῭|kmBw~nvh?W?~'\??YO7ѷ4O ?y?:ԌW?~'il~~; f}-?Yۙ۲ ?e=~3hO//9˨>i?e|6A_}c̗C}]W?N~=C _r2C_}_]=A_}ϯO~{1{G3 z_Ÿ]n> |4~*w ¯^!WgA_}1~}k*k~?gkj謹 k*k~U}DkWnϲ z_NjϿ+A_}oie leGI>j>|DR~Z?T?ϓ-O*ۏuC׷?o?ԍ-(?o?ԕ{"?Q[>Բ "?Qy7}D~Q"?,"?Q̿u׷yym˼g^ZÿmwGyylvwWX.zw9(C.XT^2v;ֿͫKÿyV}$oA~_L;]ϻק}A~Z?Q{ͿmK=}3n wO2t ~ף>Ez_.zϽxU_?Q_G~}2t ~ףο*Kÿu-Ϳ, w: w: w: w: w: w: w: w: w: w: w: ?m?2/GyskT?%? 3P?J~~'K1U?J~sk@_BjURx'J~O W~KH%ޝ*R̯?J~/!~Զl(ZV謹z~s=^NP_ &H?]?{eno1ߜ|Ǐz~/?T~ P_ wο*}r_7O_^?V~Qϯ?7Jo}ͯzU_gGzpW¿vfOkk~?^36?sͼ!D>zݟ4?6k:~=ק304 T5׿u ơj5'͇~~uYk_}1Wy5WeP}ij5?_=X=j?25?_5x ߼~g'ywcy¯_'/5Pm]~?Co?U?. ~ߏ+J~g^~;!_| Q9 COr~?C6p>6??ø5?Cίz!!0Cr~sr~׮/?~_w?7_!7߻j??~ԶK=^ /-/!TWg?% 3S_B*>] wZᇿT?%bЛ_T> W W}~KH%g?ᇿT~?%O>mJ~m2?mސjE_B*S ?ᇿTukk?%;V/z}y::f }X/!OV WJ~H~KH%~KH%T~07/-w ~;祻1ղ 'o}-w ~;Yk󵳟s*]3^mHQ!.O~go]JyXfcB]kON9-w ~;?r;*]kݡí w ~;o?ǚ+Ͽ*]o%<֟?j_5w ~;.nuN[|:j>ao>`>t%{=μA*{NvAK]Ro_¿wyżü;wIK*]v׽=|W:TT_.wI%kUO?|"wIK*GT5%u.W ?J~0{gR#!^3 Wu>vKݭnki-m! y1" aE$@!;! C $!˄mBI0clmْdY4pЕn_cUt^Os-GkaPſ=V5mpC ڿ0e tP5IhhhhhWݿ׺_/zHtHt('E'mh'?so{<ɿ~`0?gjbB~_߻|^q('}[??gjFS}?ɟ}bB~_ٿ2nH('m;{w'?s~9W@햋FO~_I~_I~_:wsv?gtX4 _O[_4h ɟ?6!?so{D9~k/J=i!?ۋ05E/..]t1!?/H8.oSWVO= ^[_~ڿ1 ;Oտ|{il?&?o)Jm ̿/,~p:O0~ZX=( ':?QQ:Ώ__;}'mI~w.}eh-J0?tſ7ϣ2rD.18? F-IѴcBG{1E.48o}D? 98!шh?P}d?&wylzS{2 &oF3kpTjusS%ǁ?FxGS޿f{o38ou}jc~7տ(ngQT:A0e5OcV*B6P{˽2ꚟ;=@Nw?ӕE@s}Qw(POU zS6Pk?D??.6P[{@'/ ;{@䯇t^mm{E6P{(6l\k?I3#r-->QwH8 ?; }Z`캟Ctu]H}rE oPĔ& zֵO&ߔg(ON,D+(ON"7O(ON PB{`]7p)š@Lnc ?''eYo' 򓿓X鎣caSC_ 򓿓8ǔ9!Pп<ȟS;dPlj#P{˽~~POj|}-1ſyO?FA'y?}Pm(ks7hO_#P^?O_E1ſ~珈1ſtN=,:?Fп<ȟ>(?*z('@ ?#P{˽~qC~4/'@~? ?F}hE ?cO7?FWC/]-J_f-.J={p~EUT>3:>] 8^?w/ῴLtIE(M/zB~9OFo!(M/z$(Mo{GVTکO;~?7uWo춃rH+=PONCabcdݢ}ob@?''Zzј;ݿ-햴lM?t𯖿N߿[CwY$Z`C n)ѴhWkc:O~/\pVg'ɟ[^?S_:''{:_߿3vj<[E~){Ŧgg':itR$?5X~Z}jg_'nn13~t)%hϦ?ɟ'ɟ}/?ɟ0vwpB9?'=.('k q{r 5PO{>>O~_I~_C?g߿#?so~2xٿ-Ʈ}୿M~_f9[AO~ӿewO?ɟ}o3廗OٿI~ӿ?g9~9~ٿqO~ߛg;8b?;Ob#P-SWPO~V?'@PI~?ߠ(m~ ?F߻W ?c}`O?F#P޿1ſOdݢ]w{h?F~HۺD4?F ~1ſ~s)ݺ('@=jB~kl @߻@('?cO_?A ?cſC?F qE'@~ѝR9=K̊PCA~~nc,ZN=[QCA~j߁?SE~]uݢTguN^{ۇ~gU{\_;,;~F~^OϤUPCA~j}~A!pz(O>Jo/y)n ?1COvzJa= ӿ9%]_]{cB{ EE]`pC oSୟ?66&E3?@-|(z믿^hpC D"\; tP/hGLuۧ/18@ E:(P^?Q tPO?~u׉&c_PͿ' ^w}֔s(@QuE[ˬ; (C[]| _ouy)?(FVt!!JVvNѮ?s}p8 ?gVnPt('E'm_'ɟ5ZCo0~?9~9/~/'E?$?s/!ɟ}~9~9wlO_T ٿum5E#@'?s/z$?s>.D@'?so{D?ɟ?gO?gV9w5T?7H~_I~_߿O?gO?g)>m Ha?tſ{D)C~nQWտӳC^ndۅ gU:O߻guOu<9NEqz.!?ۋcl pcYXG+B?uܧ:[\"?%?ۏoKu[N_+kP%t~t/G(M{AC=U4 ?zo6n=RR_IE4%莁WٝGWCG@Pth;6Ïc[sIz]+`CGS{`Qj$ѕ~_{_3ψfݱPO~{/]&:ߔ0 ?z4?.M1~7տ~_7ohR?O6EGS^?Q|AxhM3(a)ˬ; ?zs/? ){ac ?zkeD׋rCc=m(~?ᯮ9V2 _Izu~kQ ~C}n?('(9!=1su-PnſZ;5Aa>z="nſ О:m~?m.t}?m:=W?_E6P>Cmwl}fl7(j$}fdD9=}no행(ONBO&k9 Z`CA~wnєhTk__;o.# ?'' vFS / ?;~ PDS_wr I1V8h/)$jϫkuxaMy 򓿓h} / ?; u~F(Pҿ$rS ?; ƌd{lsw͂ ?FW?w^eZ@'?(>e'Wmlq@'?c?ʿO'@o{[?ʿO9O_C?ʿO ^$?c''}c{qL NO_fѷAO~O?FO1տN(U0`O_(m?D'@/z$?c'#P^?O_?FWc[#_+E[E;DE;EZ䯋 Dsـ) 4䯇z9:_~uR'<kw6iQ?䯇!~BêӀ_;=?7տ> }~tVA䯯=pEoOz=ﳜU~c2S޿_=(?M-䯇_{]VP_um]3hR4J?a{Dc W]^#Z羃C Z{h;coj\'D ?8!?;?\pOOE|/48^R?'':v^/0ؙ?'?_=W;On)Ѵ}0Q?dxi/S 濛o_#;~/Uyyh1Q??3zWtZ`t>{2Z0򓿧spgO~_I~ӿe'OٿX ŭ'>ɟ'O1'?{q?'_y@y%A9w߁߻?ɟ}k~9Z?O?gO?gO?gOG'?_I~ӿ'?_/nO{lmmEǍ]_(*4'@񯯟?b;!QO~D?#_?O?hE ?co6;r(mh?FmC~41ſ ZO_?FWmtu t=O_k8M(_~R4?FWk5tl֍PO~/'@o~|('?c?Ft@'?c'#PP@_OjG'@/!#P{lsh-]`vo}gEDIBPCA~ϟt/H0E?U (OpI'u P{7uP7{xqTCA~_M~M?{ܫ t} Z ӿW?wO%E < PſƾC}~9o59o?{6_Pſ:_bPQ/}]*\tBE?@^{. R5#mMPSmnqJ;(_ZV4$Pſe!`I2(C\Q' cdlaPſn6e tP}V?(ڹ((QC E?0(?@]j;sY(@1wqC ^/qIhhhhhWݿ>q'ɟ}ra9ZSЇDDGO~!bB~__?;@'mh ɟ}߁O?g/'?kmC~_}K{gGCC'?s>>~ ٿB'O5R$?s/zB~_I~__?k0'ɟ'ɟ?g߿#?s/z$?s/z$?sn>7rLLz@o/C.es/H~z?:' C~bl美!5gӿW?kϽI~\a5X@o?GD'Lzw?ƿ}^?_䮷 ;V?tW{̤ۿT?S@{5 '#n[M?]w]QC~\4iϟ\sY(g~aN? omLѲM?w%ӿ>~V`j뾮])Dt2ÏW[ܲϐ,? =#mM~7տZ?w0wZ9T//]쎽MtGS~qmq{1wLo(oiOt=M]k(j?ǝv< ?z_]탷8m58oK' =`:?z_zNB_y/0|4 ?z6?aލb~7տvw~?¿ٔ=ۿ_翩E(cnkDEâQÏzэ>/Az(>m:co>( > m `_U2 AoKD&z藝~@ ڿ2x U_nſך>侃#@'('T_m~{('= E/T/<_ W ōm׏}>?ï}?(anſA'{OT ŏ]탫sY(c?;ONB03ſّƮjCA~wSƮ>Дk$PwyxӺZ?S$ _?/C6~e 򓿓hzH8 ?;?''Qy76( ?;!c{`c6Pcf{ܱV5(3''z5x8(E ?;6P ?F;͝q@'?cvny}%'@λvD O~yI~)1ſh("O?Ffc먮PO~uA(#P[I~=OaZ@(O-y-;t1ſ]{Q\ %'@񯯟,'@񯯟O JO_I~E@Y*P@?#P>H~Vŀ #Pk1ſw/(E'@_[?ۡ ?com>pƿRUC]SEEы~$:$:":+r_DKN܀ݿ𿴰ua/Z?he;7p~o}^_Jj\.k_ͻ}n8P_/k/9{7տ~ڿ窗Q_}A׿gSo'y7gV'U3 S\uOfD6X0_u|]dh}:w=j__;u͓D!?;7ǜx-@g!?;?{hFQ4k?wsVO~} v궺єR?'':n^/pc1EiaqR??֔=){`tߥZ?VOVDO~w3~q~u{xI}_N[:ONMIє=0u{];S>{I?t=ܿ>ٯ@'?_O~_Er@'?s_;ZB~6!?sV{}&,5POs˿}NC'?sou O9/?gEk~&5POGtV('K}:ﯟ[?g>'ZO^?O^?O~^u=@'?sn~ck ٿ~)>KO~_w'E?$?s/z$?so{D?$?sM3S>/A~go4{8d5QO~~^}K=K ״X+Z/48@' d_W,Lt? (>}JQwh)(@v+mʱ?E:(P[/ZI2(C_\~/(gCw?6_GPQC/ (C_Cd_.m/??(d_SqS^QC y~7f7P]}(5^wGD8(@}~mmj;PG 7J??g;HO~_ͻPaا?g/'N39!?so{D_O!?sou'E?$?s]~"~ٿ{e}20POyme9~9.`$?s/z$?s_2?ɟ;@9}~9!?souɟ?gC9VݶV!5ӿW??-9D?_\?_/t~bNӿ׿U@1/ߑC { ~跁C\^g':?gˋ- N_PV7GoS_^>~IE(z_oտ AG/J /t~t߿M~_\VB{Re D.28o61*o]Y翩}@cs܈35PQ*?MCtɢ~7տd~sPQO ?z_ D?lk ?z_]7Ak1~1tw 翩E(G/zDL翩%_{]j^QTW׊֋& ?z__?u}ݛ_C?5u-e=Mo{D_PG~׈)hGS{GD'䯇_ kP j޿#ޯ +E_s[m`@_;A% PWLpk_OF(ONBׯ~& 򓿓hjR?CA~wM)P{sV6(3''Qy] tA}0$tac%wcA~wyUmӯ;`CA~w:W>xiIu 򓿓hjGt2%`O>_}vs!PO(>\''~ϒg?ƿO%'W߳5'?YL~w?nb1CCw?ʿOYL~w?0v A}D=1ſAS>ώ( ('?c','@_t ŀ(m_~1ſ~/ ?FgS^?0'@/zB~1ſOOuP1ſ(!FJVvNѮբW8gSOz_#^U2 S^?_V|콌t1u?.k+kQ_Iz_]+^ՀiE䯇Wi;^tcWUŸ?䯇_}U-{/ ? ȟ_:ff?OME'(M{S,PON c9 4`B4-:7uzф;jQt^_kJcqɖ:ONu[qeVw+O ?'ǹ`C:O_^_O~/){%2>I^WM?OO︱uRu74J~w_yDӢ߇ecƮJ4`CS)SPͻ0S@'?sZ95T[Ӳ=$PO^?On8w4I~_(ۭ'E_O ɟ߿C'E?$?so3'mt탦|wPOlG`?ٿ.Fj9~w0i'?s򯯟ŀ'?sn~cA9Z??'E'E_O#u@O~_I~j!?snmc-v1տ?F~1ſ} 1'@/z$?c}D?#Pss#@'?c?F ׯ0 ?F׏PO~?1Ϳ~(]*^̈fO~VߪM#(.rSs.PO_I~GeQ%H('@/!#PݪzI~GV=R$?cM[c 1ſ !#P^?OߣâGDs=`鵢W;?{I=ZX_ ># PwM=W~wCA~)]u?OD*3 P͡"(Ou-J( ӿWk1qvݢˋ( ?ۋvN%W~^J P{?ZцVϏ_`Z75vbUe ZI}\QCA~\\J?{f!~=6E[ (CewπwؠkhJZ4.ZopC +¯?#PC jcŀ5^'DPC 3e E| ŲKD_(?(Oml5| E? g}chPſ(?@/zDoX: tPZ?P7՞Wnu (@v# 7jϫ~?@ouPk{? }8Yw Pſ_k5iUW(@un4B>WUC]SE~Ə_ͽ{?ɟOW?O~_I~_N?߯?ɟ5S~>;'޿C'=]D_O^?OZ;PO[?Ϗ O?g~ٿe#ƾ&cٿ~0u9~9eٿٿ 9WQcߡ>X?O^?O ɟ;I~jeh('E_O۔o:AaW;?tſw Z9{?tί}G/J39D^OzBGo~>.7eN_z+e^S/~ C_C~7o{7Ώ_}W9>Soӯ>̿tg3J~?(~Wo ݿ(omkQ;Y?o~>H@&/@YE?? :{B4-Z-78fǢ58oojўDuk2ѐhGS^?Q}{){_e@GS=w? ZÏ~P;SGS۾~kPG1翩ռtEGEGS>)w<=FGS^?Qu9 =M/(#{k nſGdEjZϋ03ſ3''m3غ٘;֪Wk1~ Iz ãſ $f>u 6e]sk(ONBOWN /J 򓿓оWt[mx:(E ?;PD.CL- ?;妼ii{A~wN5iSD ?''= SEſ(3''}p(PG>UރO- ?c3('?cmpVYCQO~gg8QO~VBI~VE #P ?'@/z$?cw?F׏tP#P~zΏPO~O?FW߻|8oW(upPO_ ?ckg럄(E'@ouAJO_?A?#PQ11ſ\'@/ ?c'#P[0`O~ojvvv_ 7 8[Hߟ;䯇-ry͢i߆Z߷:ٝG(Mowrw#z;рݿ]5ME9Fo]gHb?Eo}Z?_^k#OS54J2S>HzիopK_97տb$=՞ NolgOoTSO~w¿\ 8}El?''5Qј;uz)&YOhF׿3/LgvD?zS\p~u{xԔsXMo?_{M)c{&(/˯{:^a;~N~_GMo?wҔ=0/g!?{Gou1]{l[Sd7?7j\^6ٿObgO^?O[_'H ɟ}'պko3\?gکsf9W?sZCVٿv꼃M{-@'?sNa6;Z}@'?sf}eSٿ}>a('??gs?hǿ*5PO~F'ZB~ӿ?ɟ?gO?g'?s/z$?_9ׯ?cc#Pls}'?c߾(E'@ouo?FO{w#@'?c?F!?cOֿ1ſC11ſ #PPE-V1ſ ?Ӳ@?#5T?#P>!?c'#P;-:('@VFW;?FWse!(E ?ce]O~V'bO_?Fׯ;R}ovR78?~w_ַ!K_o/]pN@ ?ۯu kL0o* ӿׯymSˢ3ρCA~7W}{`QCA~믟CL3g"o_W{`?{пEQu@ ?ۯgv~џ( ?ۋWe ?o?*_Pſ{e}>CF? VwEq6Pſ{9gH;\Q¿V^4鎷F?(S?X?Q5wcQPͿnEDC7Pſ~{/]d5(@N?/ϟjT眫/ (CM?@/zDo=F:(PxQ};a' tPW4v[?((N;5cpC E_;G_F:(P;?*:f?/~e*!.)"?{GoPOa#-~+vO^?O޿O?gO?gO?g~[w'?s/z$?sMٿ~=<ϐ9I~_[3o\#Z?gjNVvkEO~_[~9WcPO^?O^?O>H~_I~_I~j'ɟS?ɟϐ9w)H[*Z`\X):O__^<={E. oPxk/C?tW9;umNoE~g1„gu̬`} o~/t&wqo>?ݏ}!Z9+_z?zN?޿k{ Nֿum}G}"Vwm=oG_/OfDkDkE ?z4ﯹclm18o5:w?"}(h翩AI2?zs/oE_~7տ3 jc{! ÏO EGS>ol߻ΔU= o=G_P(p,~7ݿ~{ڻ~7տe#9} =(5kw(`0䯇_:5@տ~w(ԍ5POzDvAcGE}Tz@/z$=(5ow(=>߁Nw7ï; vou-2nſ~)s (䯇}mջ j5TA'~Wu n?mOouz~w(E__{ )Z$(}i?Iqt@}fdlΰsԔ_`CA~w+ql] T>mvwpyբ ?''X]p(PR?CA~wMƮQ8mkD(ON"wu3''? 򓿓8ǔrnܟ46:!$ʡ' 򓿓2SS]&(ONٿ2(mO~$r 򓿓hjl}fleN- ?c5]Gq|JO=~1ſ(E'@/z$?c}`!`$?c'#PI~O?F}piˮ?Fw^ (ռ?h춃T('?c2eDz:#P>`$?cGc?F}C~ſ~A= JO_C?F :A?#ZC?'@/#Pr1ſ'@/!#P[?D?$?c'#Pۡ޿#?ccW)ӿs ?~wnA~O-O߹ɟ?; ?S' ܂O[)ӿs ?~wnA~O-Ocwi\>m!zDosz;(OGdʢǕֈ%>"> ӿnJ0qzoawo/=fl ۭN~^'za( ?ۋvuOR(o?&tCA~7۝No~k̿sXF~]E&Z?7@ ?ۯ믮*,J ?sf7oCA~7ƻ_>>FǠMfΰ ӿDjnkDCx~wnkk:z"5Ac+Z,O-Rmm6e/"5岯ac_}o߹Ej'?;HQ ӿDj/3#l>$29!h/~]ehhhhWݿeY0}l('E'E'y}~ ('ک?+O~jna/'O߿ O?gV_??gO?g9~9='??OqO~ӿ'?_/nO~7'??O߻dE(l-lꃢ:?tſ{d3e-vjC|XQ+^F?s_?/ȏLY?%\??(?s;۝'S_m_ m#nu^n?Jr}gZ:O}n{]. _}(:O=e_u}9eNGӿsF먎}{lRz;L_LY;$weΊQC_?EG/ ?zgcB4)28GXֈ~ӿ_zjc;npO/"cL7~ӿ˿E*ɳ_~+y/_~q}h\E=g~ҴQO/^=ƠhhM=0 ?z~o6אhE/O@uh_ջ.Jjk!NyDr4_v(P_DW\^".#1~_?~F6P^??/ _ͽC#OqsE6P>HsWWw?m/YIz?Qch}Cw( j$=zg_aQS?xQY}(mw=P}(䯇v㪢? m76|_ eEc3$3Ctu S>y_=֐)[u5SƮSO-OjXYNuJ/[g] '5!?.?_?_?ױ=j{_?_;f;[wkB{ls)QK]s?FfhhleD?#P{n["1ſZ;,np(/E !?c7!?c}ϟr/?#P[?D'@P_??F!?c?FW'rB~柯 ?S' ܂O[)ӿs ?~wnA~O-O߹ɟ?; ?S' ܂O[)[tCogG_)*!.)"]WV_} 8[}~~(䯇3γ_p'En_]WnY?_Kۮ(M ^^ e9WD"ba|utj5t~Vzӧp~/䯯U~8}:S?@Il#ME?$=_rrŻ_lj|`$=:VcUchw)D?$(M/zB~9}i7տ('/DâŢ%%Zzw /sW3/#or"x(/s_fx){`~9SW~9W{^?=bp_?!OfL9 %yߏc%yKY/ml:OOȿdePO3:фh('}zHLٿ\\j\9!?si9~9Z?;C?gO?g.'SiDG~_~/nO~7'??OqO~ӿ'?_/nO~7'??m/j$oc#Py@הρ (m}('?c5ZC]KO~O?FW{L90?F}(E_O__?{@'@';?F~1ſ~a)߅4!?ccW)ӿs ?~wnA~O-O߹ɟ?; ?S' ܂O[)ӿs ?~wnA~O-Oc?3]M?>.'ǜ?{rnD4`?+ O>- (O_̗>^4)I0UO:} ?{CCeݐhEgїE_]%j P7%o?â?o_ÿ/J~XGCA~ܡæ]I0:nk[?s[G> ӿci2r@ŽQCA~꼡kn{w :gUQCA~gw9jlY`C/ (OxDclm9S6O˾֋&Wҿ_(Ht)ӿ/}DKDeo߹Ej[1o߹Ejkd_D8zq"5Fǡy)"5~Eo߹Ej~nӿs ߜ߹Ejm<l>"0o~3i[E;DE;EZ'o}X9vj9G f$?s= O?g/'/~5@'?s/z$?s/!ɟ'O?ɟ?gqO~ӿ'?_/nO~7'??OqO~ӿ'?_1<$:(Z& sةI C~p?$Z. s$o?+|Ż?{nmv9]էC~]%\?C|I;~U~_2'/ӿW| c η~. ?te>SGt~tVS^%x/>Q?cO=`C~7*S_˃&]?9}l#&_ ů&chG?:?;U^⎱UtG?:?;_w(G\^/cCG?:?;流.zJѓ ?z_9M=0 ?zG}D ?z?k.uYZ_~=ӌG?:?; ?zC}T9!:ѺVcFtž7_}@#qcƁOzwo(J~@Pnh-P_7 [5@m`U~('}U~({_ͽG]W%䯇Nݯ: j\X?_W W{TuP mڿ ??7enſ =߯8}@/zBz\QuW^w(OIzu{\4 _Izՙߔ 柯 ?B5j#>;~K}fshboy_:a kɟ3O.uE[_?s}wC~~;kkcO-OjTVcy){M8Hҿϙ[q;{:!sV~z癲hc>~bn@'@nw?#PZ?O_![?O_߿8h `$?c'#P^?O߃!aѐc@'?cq(+O~('?cܡ0d} JO' ܂O[)ӿs ?~wnA~O-O߹ɟ?; ?S' ܂O[)ӿs ?=>wĔ~ߟhhhhhWu F5kE5Ao?W~Kջ74A/z$=7VzTOߛE߮?6W{^=o&ztO7[{/_߀ݿ7տ~X?sϷQ_CoTVD䯇4 S^?_14 S^?_[7տSM6=E4뾗 77龃EOrOjR͈֊։6fwQ''3?'կ*߿k澇K*545C~w¿M@thh ݿ[IqϭEyhWk.3wyj?'4yO~}wlm??%w:I~eO?!?s'Zg[/N/?{M ܿ{s]dTt;EOH0ݿ-тVL!ܿZ?[/_?ٿZ?u~-b$?{/zB~i~9!?{0x$?sw;ٿ_ߑ9~9lo\㾇C'?srٿ;V}C'?s]>'-  ӿ=wҿ',zB^sw? ӿ9\YުQA~.;M%(=믽~]S^UE~?{O/Yy?) PwbM?{#qevk8%(˾.]*:_tB tP;P?!vkEDS?@񯯟'CoPP¯fuwhh:(Py?ǯ~((c8!ш ?@];X]@? .7؞?yT#?(}9t;à??(E@kP tP~Wk2?(E(e_S(@s ~6nt<?@ou~_PſeC>Gq1J;Zv;EZ'o}@?ςs`@'?s!#Ʈm('yaU~WGMٻ?ɟ'ɟ܃_O~Z?=VO~mO~~9}ٿ [$ZҲn5SٿZ3;b1vO^?OTWCc*vOs'ɟv̊O~ecCiE~{O0Sٿ'/~"9}ٿ{e}]/2ˢӿAc;`yko :O_v_;  a (AP;%d-M-e3}9v{lK$rQ;%Z-s{o2すQsQT)[{/2#jRɯ[| sa2-!4Ɵϻ~ʳ!_ot5Ro޿wu~k=_[*U_?{w(䟷T?kh>~{/ -o?f=S_T{_;{w5ۋK֏ ?Yjg;@P(J~߷;j}D/~Ԃ֑GU8R?KyVc?ӯcwͳnͿTR!^ȯٛ_tzݾwGZC~ͿTRCo>[R?Kf_{{_K;mnK㟥~S>zȯbR?K u^?*^?K,_;{9KZ/ٷ _*g 3kGT?y@hQ*1w2({O(;2((Lx(O&4(Rͯ?T~?>J%GW~}J~'MxT[7Yk' ?>J%ys{X/?>J%~G{z?>J%sww2(T{EmďRoHkmcBǏRɯC(?TZ?T?i}k [$yߑ_oZ_,O~o=[`3?w$W{^ߜ1>O~՝?ſa4_C~G2uk7<~Ho_%㚿_+W&|˓aK~2u7Qů>#N7~8oMF }}oWZ>m}_?~>vY~zA?>w?\>c}??l_I?/iZ 1ZCW׭p~gYZY?~}=*_ne{0wgZCp;_z7^{㿙1ɠ_S}ߚ/^~^ ξVϯ^k]?o^~?V3'QoW9~Ww_O~u?՝?~Ww_O~u?՝?~Ww_O~uWw:(?Z?"4ǜO?s~}~. ?1!?17`Tڿ??ďm_9vNao,?1W}ďm_Z ~cίgs~oU_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭw~sk#׬l.(JsW׭?~}J~}߁_hYGW}ďRN?>J%usBǏRo{*~G7~?>J%Tٟ?~}J~ՏGw߾Uc߭? ?h뿳 -X՜ΊL3⟷O~c}? ?{<ϻ_~%U7[15&䟷O~cNso~-X_O~cyns5Y?ojgL*y 07_ğo}E[_^>c}6/J~on}!#KBW>n`}z)K/J~7M<[9tǂTR;kUgۭ :RK 54_ UTRInO}Fe*ϋ!}TRJ%맊ntϽ'OYRɯEſnkA>vRo^?CZ?@*WϿ:?K/J~߿S{v<|8K/J~݂_R]MG _﷽zSJ_*.[?i}k ~_u?~]?ŏ_O~_u?~]?ŏ_O~_u?~]?ŏ__ʯ>xף鿳6i97sG?~cί{_ZC]?s~ۯZ>!4ǜO?8?1W~cίCǜ__O~u;/ZS_nv`e뿝<IȯO~7ϽIB~~W.f$>w#믡/ ?Fki?W'oL_==HB~~zv5t.Ͽ}/q~~!#M}UWYtj~i}w{>6i*~eSrxsboY>,4izZm>x5Sg]?UChWP~d(kU߿WϯwYh?TﶯYޑMů>淽~*?nLU߿t|z1݇_}CͯEǭVɠWP{WZ;mDž{aVۿUs߳;Bycc?~s!E~1~f'1o -;&1?~[?oa}S?oa,n~W?oa,?n寗}?[wao~M~o_sZ9Bycc{97gW䷯¿~m~"Ø?X^؟h_}7s7}~k>kMn_%>>f ?YH25P: ȯ;x ?Yj)Vv4'*㟥C^f~ׯ;voqu߅,5R?K5^?̿TRCW)~P*g㟥vx@q~C`T^?R?Ky| L.J~UR?K={Co]k }O~~5o?V' ?[_v+kn ~ۭO~~5o?V;6 ֋~TQ*þwG5T_?>J%vV?~}J~M??aG䷽9,Rɯ'~GW!~}J~5L0~c*ǏRɯ?>J%(^Q{?>J%*M֗YU]->;=ݟZwC?w$WWֿ~;xߑ_}gK~<u;zLbU'7_Ϯ}ןwߜ~Q5Vϟh~=>pX_}g͏'~_?~w{Z?h_?_{d}5j?? ~Y/h|ϳ.&~!X=~9G+_?o^EgZ cw+v*_JֿQqk;L_/=~ſf_=i}z5WeT_oW{!/~g^a{ďfaaV/eW9~Ww_O~u?՝?~Ww_O~u?՝?~Ww_O~u7Mև4KǏևxM?N;_?~W}ď~ۿǿx~}엄{Sq^?/9s~5ǿx~oQ:~۷ ?[_v+kn ~ۭO~~5o?V' ?[_v+kn {ԾqOY??Tj"{h}%T__;5ܪ'~^hQ*]lHk|RhQ*g{T޿\jT_<#Ro^;wz"T_Q*m_?~}J~kF!~}J~;Gof?Z+_JBy 077imY*y 079Z -X'?W'~}A?oy MbUaosnaoZZ?oݜ[_ ~+ןskgv?yS? ?۬[>"s+֫kA_*uT{};x>#BWZJzz1K/J~'MKAJ:sqdPK_(_, _ﷹzv~TRJ%}=^b맊UJ_*ݖ0BWI_*uT޿Sܿg/P*j4K_RɯCi/P*ڻW_*uT+_(*W_*uTLƝk֯5O~_u?~]?ŏ_O~_u?~]?ŏ_O~_u?~])~=5Ϟosz{k'맟u6DOǜ__;/9vˣs~RwP?W}ďU_?s~OǜO9v{w9*]|_'?~ߍ_OoNbn=_?~ߍ_n-o[9fB~~>a|~_nd/qdͯ/t`B~~97g+B~~9XůO~>~יw>և/ח=g}>?n߻5j?j_>inX~!#J񟶯׭X^^ :~5hu}C>Tj~/*~u{{kTܿoU iAkφZUj~ok/*wG_}CͯC>س??/yTڿ~HXů>W~qZN/>%t=L2~4}oֿ۩&䟷0?gדxw&1*ycScɺ$(,;O{[oUYw+}5t#䟷0?V._w\V)d|⟷0?V{o -;h!E~1ؕX*ycc9>Y??㟥m K&j'W+㟥vk?os1y_?kp:>5k*S*g)-^_7_;O,~ͿTR=du Cg㟥5to{RY*g0B+åRɯ_oq|D/~ԙ0_*潋c6}_*gs{x-Rwyw9UK,_?Y*g~; Z<οTR^qo a۷ ?[_v+kn ~ۭO~~5o?V' ?[_v+kn ߷}g}H?/~}J~nPT~GW}ďRBǏRɯ[iL2(Ro{T?~}J~M??_pk߀T?~}J~v.?>J%Tk?i}k [w#Xھ$޿_}F~_~~?$Xů>#Bܑ+?O~oguub-"~__Mk淭f;1_y~wW/5/~/?o|g/'?}z}3[PKgOX/?ky4W6,vfRUY?[h__nys? kz??v>#ɤFcr{T_oLk֧׃~~߿\~Ϻֿ ~p^?yď_>b~lǏYS+!z~U?Ǐ?~;ɯ'Ǐ?~;ɯ'Ǐ?~;ɯ#<;k{}v;x=G{OZC5\N?s~~>AKǏU_?s~Oǜc~?1;DOǜ_s~߿ÏU?~ۿU ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5oϛy#~ׅ'7}~}J~OV׬~BǏR&s|d}UhQ*ss~IhQ*=Z? G}dJ%w{xϤ5T3Q*ۿY oZ֯[!䟷O~c};ߝܺBy 07V~>fX?o7lz[By 07Ͽ7_j~+?7& -X+ԓd? ?z<: !~_WX+}m4c֏ }\ſnuZJ_*f}&^lIh*#v[KZ/X/R={pZC _nTϻORiz#{Dh*)r4X_*uT^?u_hYh*W^ /ZtRJ%ywyTh*~]=Ͽ/T*ۭw};<%46wnURJ%맊UJ_*߿jߩ}{C!}_ q/T*no޿SUJ_*/URJ%Z???mzt?*RK_&5'/~~ǯ'/~~ǯ'/~~s~6gY_?~cί^?Z[?s~Oǜ_. ?1W}ď3_7Pq~?_s~Oǜ_?1W7g?~ߍ;d?FoObfH ?F?O&\W'~cCȯgi~-W'u?F[ ?/Ͽw׏C,)W'<>~_uvwYy؋GOX?e}W{M4{Z?&4qj Wů>W}Th_dJny!?h_Tw%v?Pgφatj~d ~5wKWt/rU_}OקB̯gy9Tj~Տ[H#W@۷ ~mwk[w>C|๽+Y?oaC|PmT7ן{="Ø?XRs-;>f/Ha|>K~{*o1{DǻByccynnknr-;zLYV[ww]g}3=My߅,nko ֟{ufKAks+㟥/x!^OT*0*_?K,5Y*ggvr/~:?R]q#6kxh߼vxg[_pʯ^^>J1ǏRMu|7k?>_T* ^="4(*Q*U?~_ ~}J~/Q*U_?/K߻^GWſWI׬_k*=Zߖ6/LqWYt'7o{[_}F#|jWSϟ߈-t_ :~_|56U'7nVϟp>W){X#o,=^}aY2?>f;a}i?PKg>f}bjk _z?)!seY5g~~ϷO|ο0iÜ~Jϛϲ>{_7We¿cX aXW8yw=}IS֫A?j3ݻa/=~WO[]݃!47ڿxp~1+ Wet??՝?~Ww_O~u?՝?~Ww_O~u?՝?~Ww_G~c}#ǚ?n=h&KrJh9yf{_?~ci =xRh9yr_m_|Y?~cί{S!~cί~?χOǜ߿S[?s~oU_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭw~.X_JG7}~}J~Z~^Ɖ&BǏRɯ/Zj!?>J%~_wv 4(iXLhQ*U߿GW}__;)g/4(߿S\?T~G|(Q*ۿY]Y۩#䟷O~cGoY9y? ?ϻ9oNV['޶~? -Xy{7ao,-_j~/~E?{}ϛ_KP?ozn5_~_/o|s3L~'fda~/~E˾w֋֏XYs֫k֧TRvi~>IZ^^L/T*'۬>k_6wC|NVJ_*^~ku ^]!TRW}duj{`tRJ%맊Xt?A_*uTka]?UyϽسURJ%맊oR䷽~>,~B{dRɯZ?j맊H{ZN&Rw*YkJ_*>Z?/*=t_o*RK_&~6FYk ~_u?~]?ŏ_O~_u?~]?ŏ_O~_u?~]?ŏ__ooe}ztS4ǜ_?wdG6i9'~covq?1ϽVZ?s~߿߮Y?~co{g.4ǜ_?1FOǜ_s~/9'~cίv?wg}!?h~=?L!?݈??5>_c_Xjj3!?݈ߟk?~8~察sv9~,~;?~ߍ}8Ow^?/_W/_c/1KǾw6%GgmU+OX`}1?>d}EKZ/X/__;ﳾ_tT񟴯OYZ/?tj~utZC _o_gzG_S|~WP΃M_OǬVO[ :~5ڹvl=?< :~57Z?B<췿+SU߿WWPQ{vWP~1!WP~~?ߪ¿mg-uH?oaN} *ycc~0}~%={ׇB<*g%=~);w#E~1=)x%=~큻B{/o[yLߞ ?ߍ{/߭C>a됩?Yן=i kK|nƮ&^d6R?K~ ߕt~4=l/~Tάw]LR&^{l1ǬOU8R?K5ϤT*m_kܿ ?YT*}03Ǜ1_*go~U8R?K u.}J,5j/~^^>uDBvT{K,H}pmoOո~ ?Y*w}۷ ?[_v+kn ~ۭO~~5o?V' ?[_v+kn {}>T_^MsBǏRɯZo^\?T[|ďRo{TܿGW}߿Ro{{T߻muT__;Yhu? 4(cy HGw_ڻl/ ?>J%*i_ek֯5ocWCh{ !/XO~oĿϾ *~_/7oO~oğ^}/ ÿ?~O~՝?ſnzQ~[U/=~߼wpk ?򟶯Ϥ\ q_ ?u9_>kg7;{}{C5z~UO?VgX=Yw*~ϟO~u?՝?~Ww_O~u?՝?~Ww_O~u?՝?~WwߣG[_I}4KǏ=e[^~&^ӷ6i99'*~?/WOǜ_?~c#i =[?s~}T>~~?1W}{<+4ǜ_?ߪ?V' ?[_v+kn ~ۭO~~5o?V' ?[_~¾IO[Gl6}~}J~\W?hY?T~GW GZd?[WG䷽~~b(Q*3?T\?T~?>J%S;()?O?~}J~Q*ۿYϬ߱[?['~nK_Obn:yV['U춎X/Y>`tRJ%v~LtT:rA_*uTzU~Z?``?RɯE:=0ߺRɯ_| =m~/*?w1K/J~X?/4i/T*]Kk癴v>(4i/T*U߿VJ_*lBWQa~TRhP\iaT/URJ%ZwxAlTmWۭwQJ_*w=ߋƏ ~ǯ'/~~ǯ'/~~ǯ'K}}O>i/?1}a ?1N?ϻH]KǏm~ݢ?s~/9~^LM'~cί-~1G?n ?c~O[g޿/9϶P ~cίCǜ_.~aKZm3!?݈דx~Lb)W'o&>*~~] 3AǯO~7d_?BȯO~7tk!?݈󚟃ww#~huow#{?[B~~?< c%}[ȯO~7=c_Zn9$/Y/_ſn_>kbjtj~ځ5k(/_Ⱦ>bdBszMtT[>i}*a߳si}/_ſ;݃;}?yU~[/X_}Ci(LP4rrxU?~ݵt'B?BkTڿtdh~oQZ?UUj~o~*_TUj~{w/Xh?T R}?WP^?߿SH>C?ߪ¿~Ϳ?}7aEaW[whmɑ/o?gdy$Dn=!wA~oO_~P])*yccyn&Sn1,E~1~7{`E~1x¿)}&䷧¿~}*yccr~vsd?w?K5_?a{aJ%~"?wR3=wcοTRK?pjg֏KD~TR!^ȯᛯ]>TR7:qg['TRCkϏV8R?K u~ ?Yj ߚ߿+~T]<޼㟥3Z.J~UR?K^LkN }O~~5o?V' ?[_v+kn ~ۭO~~5o?V;{+kMmO(m4Ώ?>J%' / ?>J%~|kGF_?~}J~y?TڿGW}ďR޿SZ?T~N3Q*=ڿkJ_Ne'/k [o͑O6/B#YéW?ſR;\{B*~_Oy2ݶߏ_}F{!naP?/U7=ϾVϟ߈1vR~k|/_?~~۬~ ׯ5J=|;_z??%S﫭5f _z??^j}|+,ztoǟ 5??ܚ_V8񿗿a8_S}ǿa{am_j^?g?)?Dmݾ>k}.}Z?q'~c*?~W5irP'{}ǠgW9~Ww_O~u?՝?~Ww_O~u?՝?~Ww_O~u=e[^~?/?1}olk?~c b'~cZZCϤٿjaV[BǏU_?s~Տ?S!~co޻n ?1W}޿(?ďU_?s~oU_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭw~Z ~s[&~Rg BǏRɯG!?[Tl5O?iR?~}J~O^C_Gϗ{P\?T~G䷽~iw2(*~G7;|UtďRɯ/Q*ۿYϬ߱[?[';a}21A_*uTf;m}5kBWg}0ݏ瞠/T*s~"4RͣևX/Rɯgx.CBWۭJ/T*]I{=;P?Ow9K/J~o~~Ph*C!fѾ>`tRJ%ǜURJ%k3?TZ?Ut`URJ%yz__zW_*uTgEſ7Lc*RK*I_*uT{_)K/J~U;#5O~_u?~]?ŏ_O~_u?~]?ŏ_O~_u?~],yU7KǏ=f?RZ?s~Oǜy߾?~cͯݯ]t5{?1F?1FG^??_s~۟Q\?s~UOǜ_o'ߵ#W?m۬C:~ǿ__w8P?nC{ZW?=dQ?_~Ǐz~}3Wè~Ǐz~/uG=o]?~'B~ǿ__wc?;B~ǿ_oɯTuG=y@ܿ?ꏟR~W9/6k/=~T~'O8ftW_f~lT{ X:~5&é~sdYJWP~z[WPP|&4+!>/'_}Coc맊X_}CίiW?s*^_}CJ*_TߓwUj~?{(ݾ_(oy3CoV{]C|+=~G\brpX([' IG>> ֧Cg>RͿ~[\;t[' =#[OYVe~ۭc' s~Z?)߭nyٟ~y ߭n?O~zW{(}~;#G~¶}&W8R?Kpk?r+_k'Ը~ ?YA)J~Ϥٟk^A/~Tg{O 7ڿlO.gUR?KgTRݼR~gG*㟥Yk>6Ϛ ?YoJ%vW~ ?Y}r>bR?K+ *g㟥kהJ%}O~~5o?V' ?[_v+kn ~ۭO~~5o?V;M<į!B`?/~}b~_l0R?~}b~O(ϿV\?T~GFg,~}R~߯Q?~}J~W/Q*]i_>k^?~}J~ot ?>J%7:~~G}?U*(wZ/[?i}95O~_u?~]?ŏ_O~_u?~]?ŏ_O~_u?~])W{OX?e1?tS4gﳯ[H3߯x~|/?gįY? _z?tǭX/&z~/5/~Z?y]>P5 _z?վ>m}M==G?n ?UO$n~ko+A?*~}[?_ }{8$~?z*=z~o ? ?]^??՝?~Ww_O~u?՝?~Ww_O~u?՝?~Ww_G~Z/X>sJj˾zBǏmgY_?~co{\kjϲ?h/9{{:twP4ǜ_ ~cU_?s~Տ??ď-~?ߪ?V' ?[_v+kn ~ۭO~~5o?V' ?[_^Jj[b?wGE֯Z!4(yIGfg\hQ*Rɯ/Y|NlďRɯC(O ~}J~/Q*k_/G OT?>J%}O~~5o?V' ?[_v+kn ~ۭO~~5o?V;{X(s%WYtRJ%{{Y~*WZJp2K/J~ϳxMOmX>a}2K/J~On}!>H/wKQ*RKg[TRF/*~UJ_*j֏ _ş~t*RK_SşOVJ_*?T/m-o}(=TR֋'}?K/J~oQZ?U׵{[TRWſz&^^J'/~~ǯ'/~~ǯ'/~~_?tz6KǏ=a;ib_?~cί~4W?$4ǜ:6,?~cj}~?1緽~CǜOǜ/j?{yMh9꟟U?~;ɯ'Ǐ?~;ɯ'Ǐ?~;ɯ'ǏS>fzvmUWYtC~~SoX#s4?**S+֫Aǯ>1fzgmY?5 ֋ֻo*~!맊b{+v}wjuPe'B| ?y"_K_wZHW|A?5?**t>{KAǯ>!Wyݵt~,d U\?U|~(ݯ_}Co*kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5ί_dz^&~s6x݄=!OR*=b/~wyK@~UR?KW} 3YY*g)~_j]~gZ+㟥=o-gZJR?K>3\*\|,~T{w?R~|߼wCf ?Yox_ TR|S?J%)?>J1~"~ BǏR̯_ ~}R~ç5@Uk/QU\?/J'~}R~G)Wy_&>VĿZ8?~]?ŏ_O~_u?~]?ŏ_O~_u?~]?ŏ_O~{վD'?/?Y a#{Z }"Nܯ?W8?Y'S֫Ǭ'z~5kj?.]J4緽~g? )g/Y_ ޿G~c 5_n?alUY?u7s~g7Wn~~GN߿qeǏ?g__qn}6Sϯ__O~u?՝?~Ww_O~u?՝?~Ww_O~u?՝?~}}aǭ/?Xsj?;8/?1W}ď=Z?Z$4ǜ_?hZ;?~cBwΫBǏU߿?Lë5w?9'~co{?1oV~5o?V' ?[_v+kn ~ۭO~~5o?V' ?}?3d)?Tts֟?>J%~i Xk U?~}J~2(SiQUz_?QJ?~}R~/QUڿG)WiďRί߾[U' ?[_v+kn ~ۭO~~5o?V' ?[_v+k gY_/X_ :RK#[_IT]>,GRɯ{8k}Uyw٠/T*]Lk#i9!E]{B7Ro޻k[T/URJ%>w_CS,_R&C=zk U?y6W׬ORo>kh>pUh*=C>vR~S_:/T*맊o/X_*uTQ? 8JJ_*ٷ+BWl/T*U^nY??ŏ_O~_u?~]?ŏ_O~_u?~]?ŏ_O~_u[usk>F?|pfzU_?s~/9'~cw/=?9?T[?s~IkfzY??՝?~Ww_O~u?՝?~Ww_O~u?՝?~Ww_G~wv[^>c}_Ydx)맃_}Cͯ{UI5ǒAů>=O[>/4y%3g?.6OPX/Y⿩?j3!~"L*~5}WC||J}_k ]^~\h*~wWP/T~zWUj~Oe*~57Z?v=S>Xů>7;n{_}Co*kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5oscǚǞϟ]R~Kv<Mn_%>{v_*gs!^7p:9 k<[K,k'y~|vny޾ ?Yʯ_._*ic}~Pq ?Yʯ=*g㟥~XTR7z䷽~^lߠq,~~R{R?K^~}O~~5o?V' ?[_v+kn ~ۭO~~5o?V;kjnx?/~}J~/?!RG=׬X?~}J~5O(EiďRT[?T~?>J%*TQ*m_GWR*_T߿S ~}J~U;LӮY??ŏ_O~_u?~]?ŏ_O~_u?~]?ŏ_O~_u~Kv>tkY'WTy^N??f_~炎/sy֧t/'U^>{`??fSabD'gxg/Z~<~'?~Ww_O~u?՝?~Ww_O~u?՝?~Ww_O~u?՝?~Ww_O~u?՝?~Ww_O~u?՝?~Ww_ǯ߭*kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5oZ_jMn6njZ>c} v.{<v춎k?S[F6?qow~ۭjSϒoͿ`O~Um~nU]JL~'ݪ6?qo LB w;l}?q/~~ǯ'/~~ǯ'/~~ǯ'/~~ǯ'/~~ǯ'/~~ǯ'/~~ǯ'/~~ǯ'/~~ǯ'[پ~_~)'[`__~yAǯ>u?Zs!>z~&'[?n_^MAǯ>u?e;]>ef}&'[cWWXR_O~ֿ`_/g} S_O~֟9?Owk'C<{|,z%'[k}gl}wkɱzo{`[߭*kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o]Bu'<~Kv/Z~<~~׳{"I/~R&<~KZz=7y%<~ko߯y.hn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o?V' ?[__=ilek֯5O~_u?~]?ŏ_O~_u?~]?ŏ_O~_u?~]??fQc և??f}}&)뵠'?>s'~%g~>/1v}w1T ֗U~*O=/~_ן_?7v#?5y?'Ǐ?~;ɯ'Ǐ?~;ɯ'Ǐ?~;ɯ'Ǐ?~;ɯ'Ǐ?~;ɯ'Ǐ?~nU_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~~5o?V' ?[_v+kn ~ۭO~Um'~7~򻑪nkz=DzI;x?V/m] yoy;x?VϹGM?o'}0>A~'ݪ6?qo͟9s0-w#U8[qowt`;&?V}ϻ@~'ݪ60}^Lޯ^~5'/~~ǯ'/~~ǯ'/~~{hIz}4*Ut$Qq30f`3&PA1\*s9g9sfsnQN=k=kuz3UWo׿\_/W__ro׿\_/W__ro׿\_/W__r8*pHarKa׆;2&ǨҷwXGwǿsl 4*ǿ_΁]BK_gyo_uwYaǿkǿRKa}uxըҷYaw&hRKߡ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢx~=^{|=gIo_g߰ֆ km_-tx=:ܷM3G 0{hoZן}ѿ_?ѿFqXG"}w]X?o߇j~~/f_4_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?vq3___ro׿\_/W__roe=¿  oe¿ 7_`,)p(wè,}\FoeFnKϲ;cXoe_N 8z4X)WYh;?\C;h{t)WYopGw6rrrrrrrrrrrrrrrrrrrrrrߡ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӒցso4uXkm`}`y`e`oZro;oZr9v?VoIn}߃wiͿs,ߴ;;7-;7-7MKnZ5MwYXsGΊ:M gno׿\_/W__ro׿\_/W__ro׿\_/W__ro׿\_/W__ro׿\_/H _/&{]`}`E`U`Q9o߷n 8`Tۿt;Tۿt;9_/g^Fq_x~)on{w`Q9oocops ҷwXkGW[oǿww eamv_/Esi_oZ?Esi_oZ?Esi_oZ?ga7/ַ~~ǟnᒮߴϲ3oގg_a'8ѿEٽ^g7G"ߗywoG"c{P5쯟?#u>ogx_gٿ!2_gCϏEGDsi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?ەu+BgW__ro׿\_/W_78(o`Q9WYwu| =q)WY=8ph`hϲ¿o85pbc_ge?BoG6p-Goeo߀KϲC7.?;a;}\}c_/W__ro׿\_/W__ro׿\_/W__ro׿\ߡ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӒaM66so4uXkm`}`y`e`wߴhƅu c7{wZpX6pwiiMXkh~wE`Yiv~o?\oInΦMKnΦMKn xk4wg%7~4X)m߮X8.p?W__ro׿\_/W__ro׿\_/W__ro׿\_/W__ro׿\_/W__r>>o_/ӂòK/}o=<ۿt;?yVv_/} k=*ǿ_o?*ǿ_P*럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-,[X{p)oQ.ſ_ӂVm_/Esi_oZ?Esi_oZ?Esi_oZ?gƯºkIv_???v4?{+GcoӢ̸{毽v<;pEmfoӢ̲sY ;_?? _]_?y3s~~/¿x?ؿѿ,wfx| kWY}^9og=\dz}oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_KoW l l8s _/W__ro׿\_/WY n!,^Xnr.{|׌ϲ~ 3,Grߕ׎C_{/<]o쿰ޣJϲ~~/z^g,7cXޮXp(?_;_o_o_o_o_o_o_o_o_o_o_o_o_o_o_o_o_o_o_o_o_o_o_KP_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi߰~ _oInZ;vm o4z߹k{%7Z;vYxG6iKo4\6isy{n7-o~4yVJo4Ϳ7ǢMKnʑ%M;-x4޿vq3___ro׿\_/W__ro׿\_/W__ro׿\_/W__ro׿\_/W__ro1p@`>}G%muw >W`>o} 3~ͭ _?Wo4~a _<{e`M`ׅYQceǿƿI !mض~KGm*_;jv[AoK/co~_nC_c]A~P_oZ?Esi_oZ?Esi_oZ?Esiѿ[] [_ϰX?7u# oӢkDߡoZh~vx.ܸoӢc9ߡoZw77߭Qw\YPiѿ[),RٷKoӢ-?÷h>>^swAGo P7-ӥh7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ7-럃MoӢ9ߴ+V66 φ_ro׿\_/W__ro׿\4;%M`v#l|K_[`E`Zt4+ÿW,Ƹ o:v4w>%?oe}KcWY,?!^`>_gyt4\v-_K__ro׿\_/W__ro׿\_/W__ro׿\_/WCEsi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?Esi_oZ?%7Z g}7ϏMKn,<}`'7ϏMKnkZFVV/ݿmZFZY~oZrk4(?/_cwfqQ<W)}t*[k]mc7Uk!Ck!Kw)??8LcӒ}ﮕi[ (C?P9[ rpx < /\E<<lQGo׿]GVp< >]E>~  |\| pc1 q)=CoY 8[V:DŽ4.myqxNo:lkܤ}4l𼬧P____Ed*pjS^0/8tI5ȗA[4|\ x TWk5ܴKx~æ:*+^5֟3@Wm:믿믿믿??\ >>i^5<Lz ^x x9g^x%j#w> v| Lz&\yA"?|_>x #O`:|oc1%﫲4so1f_DDDDDDDDD/^-s<ڮ96TgUs ]ہ^]9 }>F49 KP____EdyhS^9B+Vs| nxNWgD7¶h8=9G@qFSW ]֟#{___Ɵ3_ 8g晀mxl0\sx`< >#0i~U^C~xԽVs{ VYvw_ ]E^8À۟s{~&?ic1t}U{~nz:f 5ExHuxҍAwOڮsfxN@ڮ?ުo;h3hmsrww믿믿4]-dж.|>]z+ޟ?*}? j '[4xjБ?q/i&x6"ʿm^G___\Wz <^c;/\  \p_qЋo[pn }pnź?pࡀ/H j ^v Ï}c1%﫲4so1f_DDDDDDDDD/-sBڮܲ[tv5ڮ[M3G-hfsRn.0___3E.m{ʙ3!+wUs\}OZsS'AW;mp;9 G?U>pj:yЕ믿믿믿O67<p̥`9& < &<<pE;Ysc8/R3B<^1緪#\ gSpҷkߗ/Wy~!!΅cL,2ṵ ޻~j?xRLJk9h-sN},F4}x^MDŽhfp*ۿ ___DznA۞r+<\ux];˰-m q l4烯ۦu___yׂux/,x#4h𼗿+·9ޟ8 pIVבl9?w GtMp}~ >8/Dž^ xCs?8Gx<c)1]}_[~6C""""""""""}K=v^Otз9"m̙AG/@uзk4]nC}A__ii=@۞$8tϹ?my\u^}̟r ǃ i8́@۟j?|t6}믿믿믿$7\ 6Is~86O真yU䗀d879<<3!\b NmSG x=l3ikۂY5U߷AvIs&_^.x\s& m~0i}c1t}U{~nz:f my>ǁy^:8gsZPGڮ-HO h0XзW 믿믿믿LíEx=屠'}9+7WspnO[I1= |tm ;{pSW 6}xNNt6}믿믿믿07<,8Dž&V9K\c)1]}_[~6C""""""""""}OvmWZ-r&hCs`xv{#зY5nڮ𜆻P____Edy8χx<ۇsxRN<.m0G2cJLWWei疡߬c￈H_:Aux?qҷNm9%<$з?W]ùC<\a08W (*99?|}8 h*ngqz2x+x& 1Sb*K=? f3l~EDDDDDDDDD޲]^Q}^v4Ax_v-ok4ڮshxN4c[P____EdQ- ж7 iy/r?z^-@WƊs{?IKWm:믿믿믿??; 8gA_ p}Ιy0p缚πsGq upkc>nyMusn &y]nOb9H y><3/4cJLWWei疡߬c￈H_:_|<<yxU:sV^ڮQxAuv iX C}A__i8[٠mOOix ]sA[W47AW;mp{9 pSW ۢײ ^ o____iN#s[@Ww<:y2#<^@=ppn;=g˜ ^ בU5uR6֑?W}uLV:u#"ΏoOsvx!yS"k2cJLWWei疡߬c￈H_|[w:CY^:cscзy5xRuY={ p;yx| yJ<`1Ɣ|-CoY L5jwsx9+f hy3 HmyJxNMEx:4C}A__iy=A۞n ix8'ʟpfe9 k+^gw:h^/%8 tkxX[^/kx=v6}믿믿믿>37ܢp.iuJU:un]GTEN#"<1VUϜ 8uv&scyΫ9yWE8DznRG^EZ]GUEn\G8KyMnu*#=<p9 8;cL,2ṵ GvO4Y=AuvײA/4s{8Gok4 ڮl|A]]`/诿믿믿"2 s<9 S2ЕKE~_?E@[sx5; tk=~wy5g ܞ/T:*|p/Vg5]G>=pn ys8g龀_81ƘUYe7a3/"""""""""?ίڮ#o5ڮstxNAoghy)m96f5]CA]]`/诿믿믿"2 s<?G'yoײ^<֕Ek?N],li/\E[G[E8#'Uc1Ɣ|-CoY y:i=_^ahs8So 籴]zux@uͷ}ww믿믿4Z-,жdž4<l][נsxt^yЕW#<$Y:+6ö or3Е믿믿믿O90'Ț:*9<k:@ٵ|#˪]Jpo<-{ZZ炟_x+ x!2kF? s8g}@0iـs8'c)1]}_[~6C"Cܰ^]~~۳{sY_Gڮ}WG׃I??qx91׀psyݵHuxȤ9>mșm׹ p1f5-f 1&=COdH. ֩:O ixO[-gv߇4p; ۨ:G4<QAu~7зW믿믿4X-¹=m{zfxNe`8t~-<σEm@[4>my?z:kWWm:믿믿믿?>sPG&GȲ:gwUȪ*y>}`wp0iФ9/~圷3i.A?=LZ?,5n 9H<߉?0v;< LZcL,2ṵ9 18\ڮs8LIsv\OWwmי*{_"mF_ڮs13״a3ǘ ?!qޓ:sRx+u˹Er-kKi9 Y[pvӨ~诿믿믿"2 <'bж#t8pPW<֟sx/ʟؚf9 ma[4~my ^B]M诿믿믿4f:ߨ|p^w#֟NoTEWq3p.4U7ǻ~x]'s˳{"x(|s<p}\ v}c1t}U{~nz:f gp0'=*QE#m1@~"x+1c@9 }sU?HuYE#s:9H#]_ڮ W1Ƙ߿ ??Ƥg ?{]\^a3]j5 ڮs |/ڮExN4c[0___D"m{zKiЕ?c9Ι9vWS|gVl8g YEx`y Zk`:b1f63i1fϏ1"Cvx2<[osEvj'з?<;<Ǧ!FU@uxnno~/ E__iد[䑠mOy+i:O i}x^PW<383g:ҕ?gYx`[sx܅ʿm^G___^gn1T^*m4dFu?:*9Bo"U3d[3\xx]3]z)!vGO/ğ}9Gׯ},cp ''>c)1]}_[~6C"C™H&^T8_"Q|>x?p2 ̙ՑXGڮ||v#fk}y\ky 103״a3ǘ ?!q svI9$}}˹E ڮ_ׅmscڮs\xNoom]0ۿ C~___EdyhCskAW/.hx֓ukn_-ⱑp.p6zT0iLz]ާKŀCq7Rq/ <7`=S{8} t4x |_8k1Ɣ|-CoY !MnXSGLI_QEYUDz 8eOzs ڮ]mA|p7p}Kmo_{|LIهA9f:oWHu&^Tޟ#vW6pyGf1f߿ ??Ƥg '=ۮ9 6;]g,6y 5x 8}6<pfitW`1Ɣ|-CoY !y Iy&9 zc@_ExנXǤ}u:q #<6kXs>OAux܌903״a3ǘ ?]Qeo?@ݸ;ww]  #0{= ``!力}ط=Ϫuz'w휸xH?gB/ZmAj9t5 >܇k%h:#O@j9E^ʯʯʯʯʯ"RelHn PW~ߵqו- 5?Fo{:+?Nm$纠%[]S>ʯʯʯʯʯʯʯUg~s8x''ϜX aC0930;}a~fbƅ5쿲3@pg nL_w:1,m;sg`IpU*JUts~OׯөV/Ӵem!qcs3O!sù:_wfҤyߙ9J37uVǯڇřE?T*Jՙ*U}RurDr88RptV1N04>32X?U&gu}/~Q~W~W~W~W~W~3aN(^G@]wmoCjs9kl \5>psxI?'}ftW~W~W~W~W~W~W*3㖆48_ÿoۗXdEaaKp>. p0l9?ȞÃGsC~=w[vL "-,;|ۀJRTz^yiu:U}ErLK3!p-P}p-Pj;{7b߲Q_ &8&qϯ>ݷ483}i8zޅ>)JRuf~JrT]ܟ?{1LO?'QMZC!ϔ>k00MXܯ*Ϟ`wh:!q)L^ʯʯʯʯʯ"Rϳ`~=e9 uߋ skz5+Vi&͠ ~~[>gsqz!eVWj+++++++;ap=ŸO7' 9BϹ@\3C[՝083l#.? x|0  2_>&-AlJRTz^yiu:U}Er\UJ3<{}άP~Ҥ\b!ǎs3R)MqA4}tkx( sH=~ p=OjhxoWT*UgV篪Ty+ϏJɉ/> twVۋ%N44dւ>sSj:oAjW9+tr}(+++++Tv-~N7:kS3^/@j9v0>lu_,MjA|.tW~W~W~W~W~W~W*gހpp~{aa>^C{8{u-'ژY#ݙX 3_h6h?]X N_g=f5cyJ20 [?k[Y'/JRzc**t4Aj[ች>v|RS†pN2>v$pNS4y*,P sKH=>pPj o>T*3+WUGzt}88R NsṼN4Fg~XA_(27=N4\/ʯʯʯʯʯ/"UlZN>R_A]w6uIϵ:?+?Xg+M]9gڟJÿY֕?ʯʯʯʯʯʯ_%Iwf '期qOs^}Z0S0+;30K;Sp0 ݁ %.j8&G օ`s `}&G T*JUts~OׯөV/tem ?T3?Cj3c932/ڟv,Mqk|>\õC8=(H=4\/ʯʯʯʯʯ/"UUڎDX s!ſ_wjuUAjI9?\SW~e떚s>j5G______J{̿8390xNm$=Wl,D[ٜYϥup ^>ˀ6Y\& ^穀}Հ6ޗ%ARTXu=J<}:*o"9MS6b 8gfດý qX_ W猚EKz[gaJ3|Mq^>T*3+WUGz䴪8 Rl 8S =`4MLj)9t}Hs?'_BW~W~W~W~W~*8Hrб:41jߑLqPg&"R89Gh( uO(++++++W91?&p/աn«4#40pm̨pgYЙlܙ, ?~k[Å?X9o_i.g5}VY+ ;^yDRT*UoW{{Z~Nr8g+C#?SƐڟ|E{}xl9H=,Y?8Di3˔g@qޣ/@JRud~JrT]ܟ?v\gmN%4v+Ο\M>VBj i:#FNН^ʯʯʯʯʯ"R:R?#t24=j Rs'\s] 5?\UW~=Rs0W~W~W~W~W~W~W_oC;sp>-X;`|X\ Ο \s50fg^) g¼Uy09 Fa>gY?h; 3y omX0qatf\&qV?0 TB_PT*7V]ϫ==r_N[HN6q RypKlO?_s~Ns`s8kqOssi>EZ̀󅶅EP: PWj+++++++;ߙy9po\_@[Õ-p&K ̳ԙ 93|pL Ly; Ĺ=k!B`n30;AarpwܞQՙ Ea?GRTXu=J<}:*o"9-RڸΤK^,R u~SH_feH==+Mjm_8{3z;Hý&,̓ΌJRuf~JrT]ܟ?$^]Mh= }w@(XRpMt,MqV^ʯʯʯʯʯ"R S5H+$93߾q=O]" RO (HϿ%އV}_______\9<@؇/79\Of"gbsx,xp]z0|}lU X 8k>z |=># 339< yM33G9gzgT*JUts~OׯөV/xem 6c9Of=F(<!s)Lg 0giR K3˙K3I=>*m)ܯMRTYR_??*U+O$Js?''7E{z*}RQ5?}\t~.֟T铪\/ʯʯʯʯʯ/"UlYΆ)g˜kPW~e?Rsp}PWҟl u8_Cj~ :+j5G______J]=?M bs~[L ۙ֙7 ù7yA|=#a7ߎn ?f^g 6g\`XPZfg *JRƪyU9UTy+iն , 8Cf H3u;/Bgcp59$P>:3{i^vf8W'8Y~^}naT*3+WUGzu#;AjEQM翽h}@'(R, Fwk }A^ʯʯʯʯʯ"R.ebH .:kso>s} 5_N/pPW~OsVinu +j5G______J5$Gp, dVΥY 엫c`bs| 7Hϙa6ଞ`X`N`J=Œg{x~t{9g/ >ΨT*JUV_S_$Vۦ0?ǎO < vI8's)+X4pfҤԙJ33̐zy:>\u_XPT*UgV篪Ty+ϏJɉI#ZTj;R\ Ns1#J?'z#8Rpytr}(+++++T]j;R?xXsgBNp]kPWi*5 6q`+-Z_Bj9W]S>ʯʯʯʯʯʯʯUg΅sî:րSa +?u/gp?p^ LM[:Y~kyMfpYxm9w-C 33/')8Œ̛O <RT*UoW{{Z~Nr?n0ǎsO?Ϲ^cǹE<8p&R`EHõR *3!8g4qRj;4aiT*Jՙ*U}RurDrZE! `~h:Eퟐڇ#:>oh:= Hh:] _______Dآl59Ѱ _ZmCj39+?L)a3+<NuVWP+j5G______Jl?>XN/q^0s/nQp#[/s~ 8<,3 ^?|a7|>|Xɜ'y0raqp5ﻅaJRzc**tY(\u#&{?~ǎ<w@j`ҤޙJڇku8s;g(0C`,yg?*JU*oQ^?"9ҟM̟*s{8ot{\3N=ܞsl:] _______Dؼlӭ9pMёPW~Rs/{9^OEҟάSs!5 N>@+j5G______JAs*1U] _______Dتlq>Ot Np$C]w 59{l/C]3?'ƅ ğ 6ԕ?ʯʯʯʯʯʯ_%w0/p> Vc\#] s! Wp_g!\B9:ϳp>?> / pG{ JRTz^yiu:U}Er⚐^;xuL8s^;ROT^ckҤքY48ÙNsH5B7>ORTά_UV',}8;hYh:? }Dh:?>#9h:?gpO>\řNM{!+++++Hۖ!s9Bgז uɵھ7s#\נ3k;5Zu_[H?؟K=+j5G______J~9 8d\ׯ Clsunπscށα믆ރXl%p.{}ἣp>|=T*yU9UTy+G;|?ן^;> .gn->v3:ܟk%H=3&g,[8{ř>I=yM@j 8T*3+WUGzpOju9A>9g?''U& 'WAjϩ'U] _______Dطl] M9! uȵ~~O>Ws3 k$5ԕmqPj~qk+j5G______Jؼ0Ya%هcbv΍>| c}by;TpV3=#R۹^ 6 7.`;T*JUts~OׯөV/le@& O!<'{}8pxR K&WpOjP_:`is{H=k?}`RT_UV'ZRp(j:v4 \2 RLu014L58R< E_____E~em~Ng>pԕbj{R_ >;+DZ\jNp g=Օj-afN0ViʟZMQ~W~W~W~W~W~W~寒ն3?{6 3-`[@[_3{o= -sý0wfta:30:3, _f>gx߹}8p=\< \O GvLx.J=*MqAƙK}8s>pfp>>-_JR:r?U[~~TWϟHN߁*scx.4v>@<}Aj_HuVM{!+++++HK!s?'`PWS\EH?':ӁW?uK3+پo:?ߟ&ԕ?ʯʯʯʯʯʯ_%ll o̸>W3')°ϡ xs~^98[&6'?8'6q^Ŝ0 9s^зa 08_*pFpKp pOM<*JRƪyU9UTy+iն#L @svPןppnO?Ajκ\LJ83Oi[{q3 `>_u|RTά_UV'NR| T,}6k@\}Cyց>sMu}/~Q~W~W~W~W~W~e Hn Ne +#ٟ yʿVN p.PxM/Mj{W^V}_______ḧ¬LlҬLlnL,Ҭa΄` @69?m/ +\p._Ua:3fgbFfg5@l;t*JRƪyU9UTy+iն%p5J{}8ןl \ziR_p<<ǎ_ \grsҤlKڇ{iV7:1|$Js| T*3+WUGz5\ڇrHW}6kB.>swj:=~g+N94\/ʯʯʯʯʯ/"Up9ӟ\PW~:Ng3kpnOj~4=7uK?'ʯʯʯʯʯʯ3sflax|tar7真 B'q8!l^?tp]μ^k :Aa~M73\ӵ37¹=op> ?VW*JRƪyU9UTy+iҲ{}R̓p2<\r<iKz3/Mj4\c3sip]H=~- >P>JRuf~JrT]ܟ?+Zm\mN5'M MK yZh:=lM{!+++++H+Ct1N7XZm\ӒNPWBj}tfԕ7xR jtW~W~W~W~W~W~W*97fg=V坉¬~ZgU\;`W8 708χhvApЙ' r3s gkbgҙ /f|g=GvVoI=3:?83RàT*3+WUGz48:>Ssi:EmOHs?' Ͻ>u5M>h>sB^ʯʯʯʯʯ"RneH .3ԕnjwh8k9gi_ejk2Rsϸ9}VWj+++++++0;qaq&v|Vpf\;lIg>)rpߨSkQ8f;8bw{{mgy;S;õ=u\SĹ@fFg+O ̿ Õ9KW:s.T*JUts~OׯөV/Te?L *)' Epȹ ^;~!94*MqY4}83Oi>uoi;9^+?DST*UgV篪Ty+ϏJiljRbJh:?pMj4g?'xG\rE_____E M9,kb}C4~^u_`'H??'~rfԕ67 R FeqﳺV}_______hgܞ 3C 3# 3@S33gvN-ws`G8b6x&t&6pF#0w<$fbs{!>y>Bl.JRTz^yiu:U}Er:K35l ǎsϦ`2|'9\@p<_Kz3g*Mj[f,pg.U|9{^`JRuf~JrT]ܟ?F wAY ׇgop>si:^=q0NNM{!+++++Hs ~N"pԕ>$5N}+ Z;Cj>S~iQ]}_VM{N'tW~W~W~W~W~W~W*oԒ|^z0 9qaqfxa؇ﻒ3fg8d8s8?i/yAgp$< ?T/f|g*7=:>Rak?G5? +}8=xT*JUts~OׯөV/יl% ǎs)Aj΁y OBp6<6iҤI3sg, 㜭#8)(JRuf~JrT]ܟ?ަ_MIuD\rژ[\ŵR}x.E^ʯʯʯʯʯ"RŮe|H .vԕ.j R? Ɔq=O]kR/ PW~pOY'PWj+++++++6y0s99<8?#40K9s;9B;Ia؇s]f8v3`_Eu9?p .sx* <23}a10q5N' p =P!GRTXu=J<}:*o"9M[ڶaS>v|j:_p!ǎ_ \SW1RiRAjqY>gҤ絝4Us՛LVJRuf~JrT]ܟ?8kR\t{[@j94jqLj4~Np4\/ʯʯʯʯʯ/"Up> 9]ß!PW~yR $_uwZ[Bj9&3߭Kcw V}_______἗yy08Na:~argr&6RqϮp6l\?|s |e7׉ k9<`p,>Ɵۀ9IRTXu=J<}:*o"9Qv`g>v|v!@gއA0b>S<>>SkR^iKf3IgWq4}pg&,JR:r?U[~~TWϟHN O^pKw>=šϵ1ڇRp?u}/~Q~W~W~W~W~W~{lӍ9á\oʟ|׮ԕF- 5`;6E0Rs0ކV}_______RqLLl.Г؜ PY٫0ºppo/8sfw86 6wh+88o'  qg ⼠=8oA_pR? JRzc**t4mj 8og{yR_ ׁpG{ \_GX4G8diRqǿp_p{J3eiؿUJR:r?U[~~TWϟHNu&}?+t~R Vs,Iý̮ɿGẩTBW~W~W~W~W~*!s?'8 փ㡮Vܟ K]+?RO 8Ӊ{`mu$jN!\ ߭tW~W~W~W~W~W~W*9fFgg.g8eygתΌ( svZpnlpp aSC|8s{LWu0w- x8(u5yxM^g"&T*JUV_S_$V۶oTSÖo pω>vRx|R+&Y4Y483iir\ qzRT*UgV篪Ty+ϏJ!Q\t~ŵ@}VCH}V#Rl u}/~Q~W~W~W~W~W~3a΄)qPW\m8ẠlH??' `s+ -zN׸sʟZMQ~W~W~W~W~W~W~寒Vvf<fQg>-rμX09var¬/ Ep,9·zu,43fZg.L˙1ޯ 在 s;<C\xx938~v|^]!`g>b$8YRs>jK3\kzgҤyՙ\ QT*U篪Ty+ϏJ鍢yҟpϯsnڐgN42@HõOWB}j[h:] _______DXlqnOt}NpPW\}H?\G_W~ Rs Yqz+?;R_ 5?ʯʯʯʯʯʯʯok g) -pϯYἠEy0#9Ù-;Oa՞p.#:b}bsbN;eњ^y0#Y:8Y=kYFp6Qppp0;nJRzc**ttjp!}9 ^;(|o@Ҥz=-Mja-ҙeJ3Ӕ&0Cj49RTά_UV''EmEt~Μ Rl CN&`04}._BW~W~W~W~W~*!sϟpzpԕ*j]/Cbx?s~?7k|9J uO(++++++Wzjϙ#63?||\᜜\aMκ=\gpߴ>\/=Ś`/H?'klRps0HԸZ^ʯʯʯʯʯ"R*ehHn Nԕj{R̰PW~Y )aVW~w#4 ؟XMQ~W~W~W~W~W~W~寒ˢն3l9g)Zpﰕ0+;~a8GhTap¬  v|Of\`Vg8h:gxrsfrfvL )̌ gpU"\<ΙKMSWYT*JUV_S_$V6SO \ߒg3\sק^>#aҤJڇs(͇-ΌWw93R< 8̷RTά_UV'ӧEZ N0ο`H?'0Bj)VMkR M{!+++++HA9?'+Jk{&(|u[+s뻶qWj~,#ʟZMQ~W~W~W~W~W~W~寒dj[ݙ>)|Uv Bf=g8_o0}b;L  kbX`y0ùC8sma8a~p\D<>׭uVoJRTz^yiu:U}Erl 3v{},;@j:=>vzk`4z|f RL¬}8/hҤ̟J gx{g8HRTYR_??*U+O$g/tSV!Np4vqmOjw9j:?:R\ NE_____E u$N9QuO 5UbB]gWH??'8?7k|/u?ʯʯʯʯʯʯʯoߙ¬̸ pў00<*y<C3d=?pv18\5?bμS083pҷY/VYuGLnv> !zgV)MjY43EiR &K}&.͛pmJR:r?U[~~TWϟHN\3Rpt}`OH/Np4dR< Oܤ9qtr}(+++++T=΃\Xr6I?'PW~z'L[@]"ڤ\7=+j5G______Ji~{_ΓYי 33o Gfg[\G`e ?\sL̚caq g &qׯYavpn[3y8+í PT*7V]ϫ==r_N[HN a.|cǧanR̋p | ǎs;p+pJI=D˖&Z4\CyAO89<vU>:ӧ4*JU*oQ^?"9 -Zm@jK=ŚοMj?s};Rp1i:~=Js?'mM{!+++++H[6I .+uݟpme0?문⌦" cq.S]S>ʯʯʯʯʯʯʯUs`A8a"`η 2 oSp| WÇp"< 3 sfy gl c >\,4'l\EŒ'3I01RT*UoW{{Z~Nr&.[majPǎO?ߙsބc/׀sކ?I=>3zљUJYFєz(Mjg\6SiT*Jՙ*U}RurDr(ןLLڇkM皥!p#>scu}/~Q~W~W~W~W~W~{~]SF,+?Rs1?@]f_H>{Ô~~[&q(+j5G______Jp̸1S®0 =0϶u#Ñ"W󂸆'Lx|]%0K;pZ]љ 3&W`0| wg=7> ߗ{JRTz^yiu:U}ErZlC~>s= @w|9fҤJڇkiV, s^θҤS } I=H3CO \}RE_____E=Vە9Z`ԕ.j㺝s/p?EGHͿ?'`qa#+?_)Mjg9VWj+++++++ ߙx?s0?;f|?WP>jb/9^yFfIgfMa8°uלQ5q|P%5ęXƽ8IT*J۫UV_S_$Vǎ :3κ>v:>_BsfGH= }`Q 8PiRsg=JRuf~JrT]ܟ?V?Aj9BtAE4Hs?'8Ɓ>?׷41@Hs?'E_____Eߕ!s?swV[?\G-\CkT<39l u_`ҤܟW| uO(++++++W?9V{{ w{;oa^aNKu>U{!+++++HcH'Zp ԕNjR_ ԕ-}!53ys͏zN)K]S>ʯʯʯʯʯʯʯUOgv|#4- 3za^kb.7s^> _kbq>W?ւYas ؟}Œyo 9BO>{r|*JRƪyU9UTy+ɉ@m ۳^;>  R_[p; c/ׁs8'?z|BXRLg \{3ciR̴IJӗ]g.JR:r?U[~~TWϟHNZ>si:)EhH\)ʟMiU/ sR] _______Dآl ӭ9'\uɵھ7s u_`oH??'5_"2NUWj+++++++s p>a&|p`'pp = ^WEs) [kuXl;5}g7Vf&z0Ιw yAFa؇# 33*JRƪyU9UTy+ɉCm ^;>l|Rg8W*Lccs{.ΖI?Ai8W' '3zgf>;3KiT*Jՙ*U}RurDr>pHj]9ד4ޢ5<}^6h:\?g!N5EM~[Aj{5\/ʯʯʯʯʯ/"UpV̕9iPW\aR 3+BZ@j99okfvs>OҤן|NuO(++++++Wɿ98Ca98րSa588g5*JRƪyU9UTy+i {Aן,*?י|wׇ^;~?pa$4kAq}3S&8g4T>;3ci>t{T*3+WUGz}$:`]h:E0Hs?'8{]џp?Z]}u}/~Q~W~W~W~W~W~bDzv~N$RV7rN\[koN0 u纩*4F@]S>ʯʯʯʯʯʯʯUgՁs{b皟3`%8bbs)0 8&a4p]p^v9J;>v> n*6iҤʥ? LZ*'+MU*Jՙ*U}RurDrZ>}·{u5s.>ܟbh:O=I3?'ZMWZjڭE_____E R?6pԕsqs1E_@]"+_ƟAQ\=xV}________ ΂4Xs_Ca>3w{:QEip݅aؼ9.k?Xyfa), y`W0S;30]amDafrL -MJRTz^yiu:U}Erlia+>v3X6kRp ǎ_U/K. xS:o?D4ǹjҤ,YKÙKFRTYR_??*U+O$\j:?gT?A(2\'t~ڧ>su}/~Q~W~W~W~W~W~bv9~Nvs~փVא:N0 .w kRs L ;B]"Swo3+j5G______J o6jL΅mJXG 33/frgxdg< 8La&vpŒօ? p]_ü'pR_Z33M8`8T*JUts~OׯөV/Lem{cǧ?I3 s-ǎ_\3> I==V-MjQ,_}FiwRs&I35g.JR:r?U[~~TWϟHN+/$pEוZNp4+ALjD4A~aΣ\gJ4IAy!ͳyԜR|̄$B!DȐd)BiB黭}o-{:wퟳٯu^}kP;Η1a}}/~1o~7/ic^I.9&+uh?6>"9WeHط6JZ_"ܡ_$N+m =o~7o~/v9gw|`40ogy8>?_2 bR©@۳~2p|u p|߲&/pա{Dz,˲fwVLg_ji0"x6J?jzn)_'\G}f}jY|ܞCVw]XjG[lѐYeY3ZնZ_?5jZ1?Ivgv 4 gq$KQCxLr V/7o~7%a4rI.9yn4i?$BsW5H^ 97$`#߉"'dO ٗk7o~7oqgNSw_`}ryiCk oRߞRNd)]V;T >HP~Anp6r(veO!R bng/&n_6}~؏},˲,kv~jz~jtVj} Iªp8/m_8h5?ew(_ǿjg熬v;8R_㏀~eO YwٓB6O/lYeY3ZնZ_?5jZ*? w KIq8o 0t~KWm1ɜ!fqnL_c%Am~γ:6+?M/翶7o~7oqNLA<E;tuR{'ջ춉l.Du~?-eOd'Vi=9Tpo[h8_l8|WX–9Ksο}QJ㔶[eYX}^Οժ鬶K--Fu(_,ZpԎY8v/mv`ngoglqz|j˸8otǷ,˲ff5.m,k'Ĺ@8/$٫jk 9(5N1 Q8c;aB7o~q@Mbߞݰ\}<x|Y+Ƭ _6 Kw+?یs9ϊk}8587o~7o~?skx3VgMp2gٯ΄]l.DN φ& ]~Dkt`s`$>#\GM;7/^)|o5{=ỳx9T `YeYc{U;VoV/`M)_d`R?/2~ K? Ԏ?oȶ088 2).[2d}.(˲,kfV_VDz^?RKBgxLµh P;η1ɗ`H,IVs\0tZ}7o~4-hP9<7B_?؍&jsOi~+\$Am~),OPϬ;587o~7o~󏓟}c6{I8>/c4}{Ldl.{"Y=Od2΁Y?£}uZ̲Z$\-˲,kv~jz~jtVj};e_X^K=`y8j<ہsKٓV Lw!~gq'pZ!Vnzmsv;d_GeYخֿeeMZNvq^IV٫P; %KC8ca7s 㜇OdC{o~7o~I4&j?c3a3x5]h/6yg~ }眖ݠ6?p]0 j_Ix?\߭587o~7o~󏓿χ}ina3F)a_3உl.ȞeOdtY=MU87kY7>|?8r'l ';cXgK99g_ :,˲,kv~jz~jtVj}I p(/m_ j= Ӧi;p)jjv;l_=6ߺln]gL|cϸ ɡ><><J5qUa?`_ 2zeY5;V_W5=gj}f:mRKO IS}`J/gj:SKFJs/[vanz^㰗nv'dBV;=>>d^ReYֿ̬eeMZ8sxj\4t['F InsVP;10t9k$Ldt^hb~7o~_8FSEFX^ }忸M[x;|8ߩ6?MqC]q59?7o~7o~?z\>??%gs^ܿ4>u"[8j>1mei| g>He?צg/a?_;>{.?9kv{F?s,˲,kv~jz~jtVj}FJ/}j= Ἕ_Ci+v OMCVy.$dܟk#v;{gT85oȸCfYejk\Vj}}XԫOjpµj]5t[&F:CV48Ϧ-ng{`}}/~1o~7/i*r+kK A7j_I~x.UxL=k5x+|xF`)^{{ up|^W!pp~a`YeYc{U;VoV/VM: @i5Xv{@n=p)pIUl3!߾~ȾeՎs-p;{w!,˲ff5.m,k'tp8ZQ,Ch P;0tU9J8v-1v0t~jǙ'fM5 V/7o~7%Ya4P9,ցB_ݍ&q~Nmck7A_ٷggϹ4; "d}hSTC릕27o~7oq_gNy#/x~x8k/ T`a'6sa!#*o 'ϵ_^ NÁ׎cn &^B}6oYeYc{U;VoV/HM ޾p~ȯa+g׭Pc6@_9ws:ky< GT<&Wz7o~7?s`ϖ{<.dV.x0_ȸ3Brbp$렕g{'v`o'}_ep=|<'ݟD[u*.oYeYc{U;VoV/{5'p/m_J=_Ci/Ts|ҩRvq?R85-{ -Se|^J!,˲ff5.m,k'pµj9#?G|=djǹ/C;NX8oõοt|d慡7o~7q̅P9\wp&Khkm<&8o60GS_"|`K587o~7o~?s`_ B>es7Rv罰oQ!/T5-8ط~D_wgĞQľ=kH;'>?\gWz7o~7E9?2e˺qދ sX7jK!2Pp8̳&x~:/ Wח^1w$ <'+{+ sοx`x sіeY5;V_W5=gj}f:mRK\g `Uڿ}M8VqlSڿ=y[j'lW Ԏ{q[^,%CV;/lD,˲ff5.m,k'pr.ԎsR<&y }Y8$g;9j8pͬ//Ԏ3G<& B7o~ƱGMj?cnpSh:p9-Bm~yS 0 8|ϻ7o~7oqRεكoP/빦9_ﲃ` Rg2-p('_/7_~?S^V~{ _Û`5acYe=߫Z>3նZ_hIuNπa]8jvB.{J_eWàv{R8kQ ;!nčvy^,˲ff5.m,k'yq8[hҭP;0t9Jvq$(u8~:_ _o~7o~Kxz'~N$?u6ez^oW's?Om'ctz*p>Ϭ|?w+m =o~7o~h9;dw!8s.Y?e|~}{NٷqNՁsJ?8?p'|s=vx_4>}0\οה?%Uo,˲ٱ?U7YmZb))_?jǿJ| W.P}A jǙv'{nCV;Y2˲,kfV_VDz^?RK\;kEՎsF<&9 _'q$s'\z_s\mA$B7o~9$AtxLrloM#d:[3MA_9w_8\ok7+WH86?םg!>{+m =o~7o~"Ϝo' OU2..v!c9C>O/;{UYeYX}^Οժ鬶K-'BiS;7LSڿq}v;p>O8>d`2Z3dyk名3!=4,˲ff5.m,k'9q_ɜP;βd^:5cvܛs>a8c%a}}/~1o~7/iѤAtxLRs6hCPy+9~+x.Vv>ӷ\$CmcC_1o~7o~|i鐱!Qquf/\qmw*!cBC¾yJû`Sx5<^{E5|g__>G>3h_4d|nk_ eW|xloMe>h?6{//t(d!./_#jY=,C?)F9*I hHq։$+^hb~7o~_8P9>vF>WmRςqUm~>+?|^X<&yh7o~7?N~Y8d2>_ss2>V؛eˆ]Jn2b7pC}~+\%p,yB.{J<osps]Đ *5A.fKz'\^b!,˲,kv~jz~jtVj}O^iPڿv{_>s))_+]6qnz^C8wtk{\vPbqؿhǷ,˲ff5.m,k'9qơ?3F4gagH.Xqjqv1 b:_ _o~7o~K!a4CP9=6\[[|z<&>g5ю|$xS_"yxLySUg_[Cc~7o~789gw>.[&dtJ^q oua;x!~A J ؟.OCx!e왳@n2 b^kJx<|/^\&++s{@_eYe͎UMYZj[{ \Pڿ}=81؇!Kۿ }٫sn=vv`ǹauCVs{v憍,˚׸Wϟ+ fԎsN<&QCg?`k:? p=aHqsi:_ _o~7o~K~ ~Nw$!u!n4ϵo'~'\$Am~y>\yϵ?Ik7o~7oq\e.c_v}}i M]R~e.cKu6K9NC{P}xKg}؟= \!1>KCه|/~/,^ ux.Uڧ_[Cc~7o~78gNx]ek']fx}cJV{pM=v8pK;Jq+xr2^7Ξ9'' olِ~̿᜻YeY3ZնZ_?5jZzI8V"Ckb4^es lIw5@8cE`}}/~1o~7/i{ѤAtxLrs{6?58?61ɾ8ϧ|PxL>K|׷587o~7o~󏓟ggԷ}c|M{¬2ft/ {#eHgZ.p! Gp5] ]ƾ=8.3\yC{,O/oy+opR?s-o4weYe͎UMYZj[!r2/mg?nN?e\yD߁BV;DvOݠv/nBV=V Y85Gv!,˲ff5.m,k'5M8$<jy|<& )P;;οf|dug`}}/~1o~7/iArN@}gAmOc!z|&\7hgG"yj&J}_[Cc~7o~783'9秖{9xaߘ/u(bLQ)]ƞ3;'vw6p.l\7mwx /4g'.{Jx3|5>~D<2,99_ǹ /ʲ,˲fwVLg_ji?|r*pPڿYp:S;>#d2 *_{5 YsR}{g\.[?dٷ]eY53qYmcYS֟?%>9!pL:z5C8c'__#9jao_#jᵳo~7o~IӃs?> #1 R_W~>W.pg8g8΂p Pϔqß587o~7o~󏓿g]̐]eQ^+]n~e{,2>rJ|ޫfپ5^N;yxO.yr2OSb_B.{Zx<{,2J><[8lj !{!XeYX}^Οժ鬶K-Ou0/m_^pԎMq}+.(_P;!j?8L lngqƹ؇.4˲,kfV_VDz^?RKS:?IsNԎxLµW[B8Ϗ$^hb~7o~_88|nI΁-W+Ѥ{6G1 רۡsInx.q}|K_kkqo~7o~'r!Nw8|4>{p7n;{#e?\;P}7]s{v'xސ)m] d<>Qܟ뾱\`8v=6`R˲,˚߫Z>3նZ_1! a8jǿxJ?޿zjb[v;˶ A#Xjeu٪!,˲ff5.m,k'uqo30t~Y jY=, C?9FxLr 86$^hb~7o~_8N I~佰9 5Tm~y.B_7YWCm~>w<,sj_W_kkqo~7o~'\}G7/_ <3d Z=|?9_1Ά _OW6[3M{7y_B+>.]Ԑe|/xk.2.KeY5;V_W5=gj}f:mRKs*, @i}Cv|}? I^hb~7o~_8^F>ӣ1 3e W~sI9o|}_#FPxLq qYm~q>eCz7o~7^7?.!d|f.8]恃e] x%bvxp^sWG!JqJsBy?e|ϔ]\7*.P|̲,˲fwVLg_ji?pr"l \vkz Ԏ.{~󅬴iWU;>}ԎxxppgGPvm^)d6{VƷ,˲ff5.m,k'u> p>ƗaHq֊$j93οA|d#gxL% V/7o~7%k|j?Gc+sH }Bm~>?|^+r5wϵNBT7o~7?N~mȸF9{5eww)+wuWp=,~<wv4ػso~\5; x?{#ϥk$bYeYc{U;VoV/Z8ypPڿ}8؃kR7g}Kg[gv|mj/B8KP=9רv;l㰷z!}-oYejk\Vj}}XԫOjrqxLr5 P;Βda:5B8#9QC_-FL>B^hb~7o~_8P97NOB_zpYsՋ6 x8587o~7o~󏓟=X9d| ,|>mC]Kȸ9?sIw.^߃}? Y5B.8d|![ط9![xW^ޟqM?^k>CT_Uss/d|?/2˲,˚߫Z>3նZ_E αPڿjǿן*_ `/e⽋9wkn罔qƙ vXf;sjܖ9{eYֿ̬eeMZ`.q?+F ԎI<&Yۡv/6:n5v]18{o~7o~IsgG|gzm~g +?j?jstWss9ϊk~q^+m =o~7o~'Ϝ?o}ixd[.c썳mn2S"`w8/k4U'/9Cgxy٫]FJ㳇F!u\3d<'1W<'\~Χ^(v?E>@i/5!c_?.5^S;Ns˲,kfV_VDz^?RKcIqm/_#Y jyf<&YyGT;ο~|=j&lC{o~7o~IZ]r΅_Ӎ&qNm~>OW~~ _;6W~ j8sa}寭1o~7o~]UJ}{J?8BV.2dwe_^ AiӁ^ \n YNנ0d|!+ú!3ky_vpE@i|Vbf^eYe͎UMYZj[2䅰p.Pi%k|>\4J_ t n_ qVk\Ӎ}؏v;VqM.(˲,kfV_VDz^?RK#"p~ŷa2ly- sK8gca Iv7o~7qFsp<&K|.s_|.S_9TxL>B\$+?ܛ_$|n}寭1o~7o~3'|S d\G{!]m2K:wte'z ^ \Ýko}Nsx q .{nIqg|2BVc]^F7\!c_n>3d{2ΡzoYeYc{U;VoV/B8:P+Ô/mO_Ej8sa|&587o~7o~󏓿..d2y˸4~it!.c3s^jvy%p4ϹRl|^ώ|4ngq6 e2ao%7:~ηtPxNx4-˲,kV~jz~jtVj}6'\jm`wq2 'Bȼ?{K7x?j<V}^jYF< ~3wzŐՎ\.{z,˲Yj[˚zI-9/B8\^?_KA8c`\_,닽οi|=j)l C{o~7o~IxQM j??{EW~ηYmR5y5Zx.>Wz7o~7h^uwpC`y"Kaߡ%~oBi;޺?x=|D3e\ǜϔq`W=熌%ps ?2^AˆI!.2^Bvg-2˲,˚߫Z>3նZ_a8J/v+_]ڿcW׎*URg_.[%dygq鲕C5V eY53qYmcYS֟?%9ԎÞ?7w<ja `H> IC?&Fr(Ԏ_<&B7o~ƱMM:j?||H_֍&K|s~unW~wܛ$|6Rt}寭1o~7o~p{ |Ɗ}|Ϋ4=貝B.cu aϙ8>,2>W~JDy`煌>{2s|>~Pu}-2cuy8>-2^S>fYeYc{U;VoV/)GCOiߜjǹxOQԎ6[vp ԎG*{Yv;Cn!,˚׸Wϟuk׎xL͇οI|dmgxL1 q.S8\_0tk/I7o~7qٮB( F8ߦ6Oʿ\<qPs`>GSTk{)+m =o~7o~g_jA}<9Sa}!agΫaϙsW57^>?4;4?  #\?voC-2>ϵ`χ~^-d@eY5;V_W5=gj}f:mRKó (_L8أL]o)Hio \ًxoݾpqxyJ^n!^q؋4!,˲ff5.m,k'tu8Ԏsy<&2 jP;Ίd%:55%0tmk$;B8ύ$^hb~7o~_8+P9&_:+?Yg|yS9υy:>WosWT[Cc~7o~789*ZKXeYX}^Οժ鬶K-0 Sڿ}g:__qԎ.cv﷔/m}f_ /a<0gUBVWY8w!+oYejk\Vj}}XԫOjInqI~ yZj.< {vwgC+R;:_ _o~7o~K-1acx%n44&o3P}sp\o6isM<ߠ6?~ }寭1o~7o~]y}ifto2}؏h_`]ux-p^xL^kxхgӘ}il^=:>6 NȸN׵]e-q=.i~D|[eYX}^Οժ鬶K-G``y}kZ{&a@v;is8leFe˅v^#}Χ̲,˚׸WϟR_}{I#Tk {ՎÞ?_#(ԎxLµWߞ=18}j7o~7q𙬷A.q.r+h罔[yʿH< yy;\G_E5j$p K7o~7oq5Ϝ>&d~s ˶ K=y/B<.9_8d~Zvŵj"UCV]L8ط[eY3ZնZ_?5jZx8ZK`HVqZe\v1 :k$^Lo~7o~K|nI@}D7gj_I8ysBm~۾ptΧ+HVWm+1 b_ۡ587o~7o~󏓟gx.v9qm?Ξ0BϿ Ҽngfo7,`?狀/y p=7)!ƿko2A~J PK[!=Bƞÿ|!ceB.["d?2[Ig -˲,kv~jz~jtVj}֏'/yJn_q.>ewTڿv[Վ4yjY/nj~ԎP2nYejk\Vj}}XԫOjkQqNE8µο|d[dO:?/}jǹ>ǩi5v7c^hb~7o~_8yP9}^<&y=٢7A_/F6VmcuZ_>˫ϵ|ٓ}Q\61 }?B_kkqo~7o~'?.s=|F2˶ Y_0_!{}; WwR[|]/z- <WH;a;3h}J { w='d7v5a׻;_P-2>JeY5;V_W5=gj}f:mRKSX^ ks@8?+`J?]ȸ{,׎{Cvs}q3xog7}5CVsVY8ZاzYeY3ZնZ_?5jZwA8\}>B I#T_pk`j9%GV_ _o~7o~Ka4*Y7~n+iNm~:og59js>>< }_Tx|µ|587o~7o~_$I$I ѤSaU8J '{pQ2luiu{_8v||~9nzjT;k/{KΞ<^;ΊV5,˲ff5.m,k'I$I$IӍy Q9|^}\7??IF#+?$\^Am~^=^C}寭1o~7o~$I$Izl &8X(_y> jv2yJ2p^T;ΒBx&_]kTI|bq -,˚׸Wϟ$I$I$Mh>.0t/tISxLr gx.610tH$wo~7o~$I$I?˅$oiy,iP;g~oOivcO`_ Υ׀C8O`M8>/O8\#l,˲ZնZ_?5j$I$I}Mbߞ-q67@_?܍& j_Ip x.ͿH<&9C_?Er*A_kkqo~7o~"$I$I#y6)_ھ* 1yn)_~-<}`쟳' 1>{nܞUB6|OZeY3ZնZ_?5j$I$IMMzGewN}忬MX<&a+?:jq/W+H$#y]_[Cc~7o~7%I$IذNM:n/_ھ G?Yi{Cv9 jNdXP;Ӏs,˚׸Wϟ$I$I$M7 jnIGh7x hi<& ?C_W"9jsy2/s61@B_kkqo~7o~"$I$IIo=Pڿ| U;]`CVڿ]Ƶ8dՎۙHg8#`T_]ajag?,˲Yj[˚zI$I$It#&jIk0}忪M g{Ksp~NmҼ'x.65o17o~7o!K$I$a0t ^ڿ}=8%P;7lΐe Sڿ]qьSξ=\vSyj|Àػk{ng?gv{sVeY53qYmcYS֟?I$I$In~c<&:_;W~evʿl< ͿP<&9Ws<K}~>wA_kkqo~7o~"$I$IIGÚp"/m<Y>י JkP;!;j?Z8OC`^\knCV;?vJ!,˲ff5.m,k'I$I$I0tG=)| 82+iOm1Bv]qO_9PxLr&F}zg\76* A_q+?GKVW~ο3d9ϊ_[Cc~7o~7%I$Iذ{M:AileK.[(dK2M-Wvp<Ԏ:p]0zpMAv牰Ʒ,˲ff5.m,k'I$I$Im0~g<&y7hߠ6?ǹJ}x.ηϹFG@/P_?ExLX Wz7o~7/I$Idžho)E@Bƹ"ˆi]62Z2d? pw=#de넬ek̲,˚׸Wϟ$I$I$M}h>*\ \_-WtI@m~.[sp=t pu_"g n7o~7?D~I$I$=6F؟SN"p^J2zۿe\veH>p>O8ñP.8de|ՎJ]]z,˲Yj[˚zI$I$It{QM jI v'g/W cLͿD<&9_x.'6?3t"<}寭1o~7o~$I$IzlxnMzPڿ}82G]y&Ӆi;pBV;9QvҺ`ápwNt:!.cvz!,˲ff5.m,k'I$I$I0tG3\s>+hP}~+s $G}>y;r7o~7?D~I$I$=6F8χ_΃'¥?3a8i}_T}]8 jؗ9in_qاhgX˲,kfV_VDz^?$I$I4 I_clp~Q_Ѝ&-Lwj$! IHB "<"2*E;׌3㌨ذ`m޻ٿdg?go vwv/7`d~ g.?WrE{d8ĢR|ZddI-S|ZۣտW_տW_FB!B! z ,r?XjqER~!XgZA|YJz>7I=d1>/>iEI)ha?~JRvj럿UV[_Rm{B!B!B,R-lHc2\da[ܘ,yLc?Ek~>O=瓯3_ y|'b[|ZۣտW_տW_FB!B! Ղn?9~ϩHRd=ȒgjE KR?I[JiqE -vHz~NAvVYYT*JcV[ڶzj۫B!B! µI~ϯ-XlW K2PdϷIYտܕS-yL3,3WϘK K_5)򸟥(ȒVk{ԿW_տW__!B!B2T gZlu\g|Yn`?gdɗ>ogE69KI=l}RD׫-Y'EElRTEնT^m'B!B!?7kT WX${y1b,~|o6%o[Q G[$~oUuy"dI {]aEOZQ_տW_[!B!B`Ej?-fYk/8bs,gdyb?%s]s5Ȓ/}I_H' \קYHfb6JR?m/Gj?!B!B!#qEҿG=Z?c_,^WMHڿ9ҢB|lO }\|ZۣտW_տW_FB!B!◁}^zGY빞/~X?u\ﷰ= ؿׇZlH`n>'r"bO\~JR?m/Gj?!B!B!/H-=* Y̶߯*__Z"iwd|`aGd"jIUdg"_'տW_տWѿB!B!e{jd\,N9")?Ki>?du\ןY KRO-^Xnc?/ *EIϭdIga7~{T*JcV[ڶzj۫B!B! _-= n,~-yL,.x"_1_ m%>GȞi<|o ,y|o[տW_տW5B!B! vR- XkXg1~~KRC~L[,YwY3jߗ*,HgqEg =IgϞJ`1ž JRvj럿UV[_Rm{B!B!BEҿGo,l"iכdb}.MYi>1XtXe6_ [$f {x]gajmW_տW_ !B!B_˂T a1d\u}<lS, ,A',Y1,EA9^?}&L>sn?K KRZ$~PR V[tnoa="gJRvj럿UV[_Rm{B!B!B, R-\dQ0pů,"_h;c2|oq{Zd8"i޷~=|QI<>V+->WI=_տW_k/B!B!~Yka'c/~}X|ai/ ﹖z7I=/xbXYYzb _AJR?m/Gj?!B!B! yIuyL,ζWT X$ Y5|_cZ$yL,-X"}>Oo3& {?iGտW_տoB!B!/A ,\u}a;[iocϗQ\u~1- ,I~e?;YIq,[tc񺟥W%O,YOI=YY T*jǬk{Qm?*նW[ !B!B!Ͳ …I54`>7~理_hU ,^Ws`MKyL3-տI<&Vk{ԿW_տW__!B!B2P,u\GYbW-Yx wY,YtY$nsEROs;Ӣb;͵H)bl JR?m/Gj?!B!B!Uj,=4 -~gS-dxb;꿳Zd8"ivϫWWEO,<&[OZQ_տW_[!B!B R-50\u~)g~E$Ȓ/_-^j"! -쳕vHzG?.A~9{F;YT*JcV[ڶzj۫B!B!faj:<&}ielERT;f_ۋmQO!B!B!~nR-"ߣa1,|?+IyL,.x"_w0_ s,_laEl|Zdx"i?Z\dEOZQ_տW_[!B!B`tjan[Y.Y>1 Ȓ?jYo`zRgdIz3? KR}S.}VJRvj럿UV[_Rm{B!B!BR-EҿGfYea_W>HgmZdXnr 9?-Z"IuB?iGտW_տoB!B!/aA-ZY+,Xb[|ehu3I,9jRa1µ`~{zYYT*JcV[ڶzj۫B!B!fVjHc2j?[~O-_1K?_7ɰeYOZd?dx'տW_տWѿB!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!BKTmCATjawLC;vp-s1{4_ϰW-hra֐&#O /4~= WdU{5_gn11mTs?_:纞==g\Jsl-{14l&s%z-=s _?)݆'?'~edlR^l\.7ixaq 3 o} 冮M 4_!gEë 2 06ְGz;y3|`!ծi5o}׾Vuyˆ 2*ן27GD|_=fxo {.3}s2s{}6fF}z[ 6mÞ9b9_21?1fnϠ .5\d|hx6|_~z}b|M0_n4߯J~=fzm46n؆W6ns՘ih4u=\_w lV7imn70۹чߚl>gX1s}-R2CvxO|_]n8[?7߾| g0gn)=;kdj>㙕aÉI?6 Ñ|]O?7a=0(wѾg' )0?|͆F>6G3 ̌|St_4kЭ"?33jnhnğXbzki'CXsk/5csi>cfnkw@}{ w>bW{Ű|6s{xwEET%.bsk ǿ[L1 21ҟp=s':cKf(iy׮sUG^|o zfGmMs|Gu]3>iR~0;;3[s{jifp$5wϷۆc 'f6 W68/6_I4s|CkOF1o͜1|ecFϚ]W.^ذO'{Ȱgm_kKwqas3W~_j 5,J5սun'slz"?go׾}{/*vB!]#}2 ۓEd1YBv K2HVdى&kZ3YG֓ d#مJv#=Ȟd/7هK#eAj_r9ܟEM!r!\L.! r%<\MDL!!ג7lB!]#}2 ۓEd1YBv K2HVdى&kZ3YG֓ d#مJv#=Ȟd/7هK#ܗAG$'g&gsȹ\H."Kȥ2r9\I"$WkCȵ:0r=y8%g3Yr.9O. r)<\N WAr-y(<\ONn ,mu?9au|0_:au|0_:au|0_:au|0_:au|0_:au|0_:au|0_:au|0_:au|0_:au|,v|]e.u|]2_e.u|]2_e.u|]2_e.u|]2_e.u|]2_e.u|]2_e.u|]2_e.u|]2_e.u|]2_e.oӿe=1_z|=1_zc|=1_zc|=1_zc|=1_zc|=1_zc|=1_zc|=1_zc|=1_zc|=1_zc|=3ߦ|3_}3_g>|}3_g>|}3_g>|}3_g>|}3_g>|}3_g>|}3_g>|}3_g>|}3_g>|}0ߦ0߀7` o|0߀7` o|0߀7` o|0߀7` o|0߀7` o|0߀7` o|0߀7` o|0߀7` o|0߀7` o|0߀7`ݫ =߽ ڑCGd@'b@ed9ّ +*YM֐dg'F ٕFv'{=^doٗGNw/9܏IO"M&sy|r\D.&Kerr\EH&"&אkCuazpry4 3au62Y:d!uȬCf2Y:d!uȬCf2Y:d!uȬCf2Y:d!uȬCf2Y:d!uȬCf2Y:d!uȬCf2Y:d!uȬCf2Y:d!uȬCf2Y:d!uȬCf2Y:d!uȬCfmLɈYG:buĬ#f1YG:buĬ#f1YG:buĬ#f1YG:buĬ#f1YG:buĬ#f1YG:buĬ#f1YG:buĬ#f1YG:buĬ#f1YG:buĬ#f1YG:buĬ#f1k3\e2f1u̬cf3Y:f1u̬cf3Y:f1u̬cf3Y:f1u̬cf3Y:f1u̬cf3Y:f1u̬cf3Y:f1u̬cf3Y:f1u̬cf3Y:f1u̬cf3Y:f1u̬cf3Ŷ)W_RRT*JRT*JRT*JRT*JRT*JRT*j{JY9`_ӞNH .B!]#}2 ӯk Ok/)SO"x}g<>x3Tx㙏g>xY$xYgxYgxY,˅xYg!xYg!xY4ExYgExYgExY|<9xs>|<drQYH:KzOd׋R!s7وg#x6وg#x6وg#x.s1\b<x.s1\<%x.s K\<%x.s)K\R<ϥx.s)K\gMx6لgMx6لgMx6ل2< ex.s\2< ex.s9\r<x.s9\ <}xs܇><}xs?܏~<xs?܏<yx<<yx }<x>|<x>|C<χx>!|C<Gx>|#<Gx>|c<x>1|c<'x> O|<'x> O|S<ϧx>)O|S< gx>|3< gx>|s<x>9|s<x/| <_x/|K<_ϗx%/|K<_ Wx|+<_ Wx|k<_x5|k<_7x o|<7x T;tHH =~o|[<Ϸx-o|[<wx|;<wx|{<x=|{<x~{񨐌ȴO<x )S3<x ivxivxivx)SO!Bx|<>O' x<O'i=xi=xi=x)SO"4Y֭y}C0NTjqOhSda_sUډp]}:_0'2V}~k+uߴywcǣ>h];ӕZdPT*JRT*W/4,$%='=YD%d,#ɎdYIV:l .dWٝA${>d_9n R3ș,lr9G' Ebr \F"$WkCȵ:0r=y8< 3?&/$BH^L^B^Jn"/#/o|ٞ,"YJdG$dYO6d+ٍN {d/ُf_r9ܟEM!r!\L.!Uj `r y<\GF''7G!|. H3y!EFbRryއBy ItIɀlOd ف,%r#YAVUdg'F ٕFv'{=^doٗGN/9܏IO"M&sy|r\D.&Ke*@r5yy0<\KJ##ד#ߐ`j$D W"r#y1y y)L>4Mnp}p.........................................S>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>x>4>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>M ؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}ث {# ItIɀlOd ف,%r#YAVUdg'F ٕFv'{=^doٗGa}~Lrrkr69K# ȅ"r1\J.#WɃȃ5!ZPry<@AS#'_ȿɋKKMed>TثdnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFnFn솙[dnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnDFnD솙[Qe2f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv#f7bv̎,(CDRT*JRT*JRT*JRT*JRT*JRv[΂Wnyf=#}2 sLY,$%='2:=hϳ)SO"'s99jiiiiiiiiii)S)p 8NSiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii)r 9BN!S)r 9"NS)q8E"NS)s9ŜbN1S)s9ŜN S)pJ8%N S)rJ9RN)S)rJ9^^^^^^^^^^^^8'Ήs8'Ήs8'Ήs$'Ir$'Ir$'Irޜޜޜޜޜޜޜޜޜޜޜޜ>>>>>>>>>>>>iǭ/////////p88888888899)@@N}rrrrrrrrrqq|73333333333S~!! ߿o(g(g(g(g(g(g(g(g(gg888888888e2N=8e2NS)q899w!)HHNGrFrFrFrFrFrFrFrFrFqFq83333333333S~7ќќќќќќќќќ111111111111qqqqqqqqqqqq ]NLLLLLLLLLL+s"g"g"g"g"g"g"g"g"gg88888888899w̙̙̙̙̙̙̙̙̙™)TTN]Arrrrrrrrrqq(:33333333333333333333333333333333333333333333!C8q}9syԿn )#2Kf˨ 8p>|8p>llllllllllll|!C·9r>|!CNNNNNNNNNNNN............G8q>|#G8q>|1cǜ9s>|1c~~~~~~~~~~~~'O8p>| 'O8p>|)SΧO9r>|)SQQQQQQQQQQQQ111111111111qqqqqqqqqqqq W8_q|+W8_q\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\!-!-Cfʈ̒2*c2!-.2I\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\थ )#2Kf˨}V\&dIs9tN:'Is9 N'dp28 N'dr29LN&'dr29'‰p"'‰p"'‰p",N'dq8Y,N'ds9ٜlN6'ds9ٜ('ʉr('ʉr('ʉr'Ɖqb'Ɖqb'Ɖqb JJJJJJJJJJJJʜʜʜʜʜʜʜʜʜʜʜʜfyYz̔%eTd_k w~r89N'pr89N'rr9\N.'r8y'sssssssssssss 8NS)p 8N%%%%%%%%%%%%555555555555 ------------============S)r 9BN!S)r8E"NS)q8E"NS)s9ŜbN1S)s:p:p:p:p:p:p:p:p:p:p:p:pJ8%N S)pJ8%N 'zwB&e8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N8N87SiՂ̐2"dʘ|0=qIesMׂU ?|^)-@մii3woc*'N ocW#-lvA3iiguƍ7n,)/'X#NejFҮ^qcH|*+-Xp̨c%?p>(x}1%+փ11*1ۂ?8fby;Gp̝O(8w||ׂo |cnoN=\XgFGMS2]N8N8οy33V*3eDfl1YAVdeYEVduYC֔dm7ji?/dK9@J`9Dd.Gȑr-1x~i$Y\.Wȕr͝LY2[FeLVe%YYVUe5Y]֐5e-Y[~._r(r*29\#(9ZOr\)Si2oN,-2&+Ȋ,Ȫ.kȚ-ud]YO)l$&l&sd̓,-d_粟/)_Ɂr,ȡr,9R9VWr$+'(ȿSi?ɿY;?,EN>%rBD'rU,-2&+Ȋ,Ȫ.kȚ-ud]YO)l$&l&sd̓,-d?OD"џD'?OD"џD'?OD"џD'?OD"џD'?OD"џD'?OD"џD'?OD"џD'KʯY?Yޗ?Y?Y?Y?Y?Y?Y?Y?Yc's9|N>'444444444444p 8NS)p 8NKNKNKNKNKNKNKNKNKNKNKNKN+N+N+N+N+N+N+N+N+N+N+N+NkNkNkNkNkNkNkNkNkNkNkNkNNNNNNNNNNNNN[N[N[N[N[N[N[N[N[N[N[N[N;N;N;N;N;N;N;N;N;N;N;N;N{N{N{N{N{N{N{N{N{N{N{N{N!S)r 9BN!S)q8E"NS)q8E"N1S)s9ŜbN1S)ttttttttttttpJ8%N S)pJ8%NGNGNGNGNGNGNGNGNGNGNGNGN'N'N'N'N'N'N'N'N'N'N'N'NgNgNgNgNgNgNgNgNgNgNgNgNNNNNNNNNNNNNWNWNWNWNWNWNWNWNWNWNWNWN7N7N7N7N7N7N7N7N7N7N7N7N)S)rJ9RN)S)tttttttttttt9qN9qN9qN$9IN$9IN$9INM>}}9}9}9}9}9}9}9}9}988)?`NNNNNNNNNppppppppprrK83333333333S~gAAAAAAAAA{# ]qggggggggg(g(C9C9C9C9C9C9C9C9C988wx)qY)q8e2NS)pppppppppN}*GpFpFpFpFpFpFpFpFpFrFrt93333333333S~QQQQQQQQQќќmLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLL}9s>->-Cfʈ̒2*c2U>-.2uo8p>|8p>|!C·9r>|!C·]]]]]]]]]]]]8q>|#G8q>|1cǜ9s>|1cǜO8p>| 'O8p>|999999999999999999999999999999999999)SΧO9r>|)SΧ8q>|3g8q>|9s9s>|9s/8_p| /8_p|%KΗ/9_r|%KΗ############cccccccccccc8_q|+W8_q|999999999999999999999999999999999999999999999999999999999999999999999999999999999999ϹȹȹȹȹȹȹȹȹȹȹȹȹĹĹĹĹĹĹĹĹĹĹĹCZCZ̔%eTdsCZ\&d_̹̹̹̹̹̹̹̹̹̹̹̹¹¹¹¹¹¹¹¹¹¹¹¹ʹʹʹʹʹʹʹʹʹʹʹʹƹƹƹƹƹƹƹƹƹƹƹƹιιιιιιιιιιιιIKO9i2SFd̖QLȔIs9tN:'Is9 N'dp28 N'dr29LN&'dr29ND8ND8ND8Y,N'dq8Y,N'ds9ٜlN6'ds9QND9QND9QND91N81N81N8888888888888999999999999888888888888999999999999U8U8U8U8U8U8U8U8U8U8U8U8U9U9U9U9U9U9U9U9U9U9U9U9888888888888999999999999585858585858585858585858595959595959595959595959888888888888999999999999wps;8wpSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSs'NΝ;9wrɹs'NΝ;9999999999999 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9888888888888999999999999M8M8M8M8M8M8M8M8M8M8M8M8M9M9M9M9M9M9M9M9M9M9M9M9j2SFd̖Q Yz\&dߍpr89N'pr89\N.'rr9\N.'q8y's9|N>'iiiiiiiiiiii)p 8NS)p 8VVVVVVVVVVVV֜֜֜֜֜֜֜֜֜֜֜֜666666666666vvvvvvvvvvvvBN!S)r 9BN!S)q8E"NS)q8EbN1S)s9ŜbN1S)pJ8%N S)pJ8%NNNNNNNNNNNNΜΜΜΜΜΜΜΜΜΜΜΜ8wqŹs.]8wq 'p~ 'p~ 'p~¹s7nݜ9ws͹s7nݜnnnnnnnnnnnnr~)秜r~)秜r~)秜RN)S)rJ9RN)Sʹs={8pùs={9r˹s/^ν{9rs>}8qǹs>}9sϹs?~9sy8pf~~O{W+MX烷HoLK{!Wopƍ9~<kuzi|"XY|k48/?>(#xc&]qPpL3,x,s7/_-=s7zyS~_ޟ|}>v7n7 ߏo6;sϬT̈́IeS~7SǔH+59᷿1uo'5淓nU7c~}3;+5GM1e%˦G2_޽-L9~uoWj~?6~g_ _8w? ?xwYzܾ7ϬT -KQSG*'y_Ŀ3ƻMW&nz;+57or^1nkm{_2Xþ~|~EeYZ^q}; ~=G[ؿ䏼wng\kiJJUU oWXim*YC&/_I/;z+7X-* 9iW >`UV`VzTLoaOoK`u V`5 Vo8V X-ug+wb9N+3guǾݿ[cGqY@-zS >??XMwxH}y?S>|~MZ{g|S/37ߵԏ=|ݷwb.Zͷ~_kgn䏼[||=Kejܿ7?PnS3X~`KKo| >wΤƻߖߦKs)XcO܇X~sO{Tƾ`o[篟ߞc_+!X7?V}_/;UEE-+prjpeppercorn-1.12/delay/cc_worst_lpr_dly.dly000066400000000000000000023443661514752025000215310ustar00rootroot00000000000000x̽weE}j *#&TQP a!g$g9!s$*($Ak^:y9>]}g+Ztײy-yr^ p^kk^W^'u}^5.Z?=:% yU=;){~ļi봼njq^c!kvO漎뾼RU?y#׼>yW y͛yݜ׎y]k{JyuW^wF^&6z4k7k~mӼkc^?kO=P7렼u_^V^3gzg^Dޢy=o_?Z>0K51䵲~[u~礼nk~Gϰ@^5{^Kjm>y׹yݓy=3G}=Xߛ5?V翩m/s>#%(}0}:'#B<-&yvy*yM'=w^gug^d^'3Ky-זy?5?:59O~ymE.kuy'uucC8cвU^uH^uO^u^.h>o!U- p^u2rygu?#" z ? /&jFR8Z1 !Wuk^"yזy"_J_?y͑2ymѯyeOK6 '_kQ=G ?/y})c*{4F$Ue:_ߝk)7򁜯j[t>=f^+4 <uҿ/^Pնzyх%Z/.j[^K_Zn,>r|D/}_sj;|cԻ{ysV{tysۤO {t&h9KzJ/X^ϫݎH^kI/Y뱼>دm7׉Z.F_~:o&nkV"+6LE~ wLòymUm>%gt?~d%E>+~^k{ S@"ϳ q_Ozwk$ǻ˫{?y)UC\w&ud|=]fz&ەğص㼶k\Ug'6k?%2_+zB^ZLI?q^? ٲ-j{ƞG]m|_5;S{3YgdEw߿Z^gkμ<#ݽqN| yg$F.|}vU'Bt9+jihμkm9D~ r\<>Go}OjEFwŭAqaon;ocϰ ި߅GS+9Gz9պ~v,d?R_뺪cLN#3HuN뮼(@L7}*V{l=K6aw&}C\W6#`{?i?kVm1y1Rmqڗs G=gZ2L̈_UUTxC%Ǿo|F~D_Tϸ\cJxjя]QρvUcJr}@lU=p+m^NEN/:a~r_PdwC9Tmw6H!T7c*~ly0O[Wx$&?6,dt~W/C >[v.ϟnþ~b.b3r?9!f$:}gD3~~UUE_[yB>~'?HP8 z?>Çݪ=קޑ}36$ü_ĔsW d_Xb'_:υE_ُ۬]$ɇH^.z3^͍i5ѱΕXwGR_X\?sg8B/KNb}=/EV 䱮h6ƾ-^F_#`;R- 6 Tڹ"g{N+-#9%O/q]#yQyv딼nμ^=u+zOČsl >\r_tCsa ٫럣g$Nxg}~!a6׾sqyqs1~^Rym.GkrΫ^3<}߲0K ?K&P2r*߮J_bU:1gEN/Qt(P^|]|>q}#ht D.X j[rx6^Bu`kbTȜk9!39h9r#|7;B~Jyw7ƼΫ?]w3ћA$<^cڥ_:9 vkB#Uuw.BweĹ<(9%68}|?j漿 Wҿ}_'OyiռX8Kٓb?n{N| T8/ ]_-9"]&~vZj?ڹe/Tc#m x$yT/*|q~\%=#Iđ3OV+_z;/2,y U6D?I冪\fn߈[˘Qvy驠†}>.ЩqG媾_*z|W>0%z~bzO_ߑpU ľ9^xQ:Y$ֻIR)_, Z)ھOόrg?9o̵}|ӫܫ1zdp~ש}}>s=Erܝ>Mgyw1IΙ MA^!3=G?F][g݉T%_/|rɟ_/3C2qmn<^<G;y oK"WAlP~>\wߩ8Tz6H?>YeנlJx>Oݏ=pq7͉dw^id;><I~}CAƷg9y{3c^oP̩?Ӡ_F{h襼!HΓ ._nL={ _WܷPuM^7{]W/N4xF,Oܸx81hsZS 7#T^LuW O LU܅C`_ }ÝIz_v=rت% }~@;8 IONle-]AΒ&E\c'}ingA6?WM|/+}O^o!c_U]*Gρҟu: #H~9?0{:'56zAk!V7]|>v9Bm>mU[ PA2LLO^w/c%IɿaV yq$ӒeCa߸OIx óّ$ _Kː&t}s:~S/^wU_A%}cyh.4ߘ׃yוyݓ/U^/uqy]yEyݪ>=֫e# љط}>]=<93}n]ry [};uoS]@vJ?|QDwGSOF!KR+x]-[+ F?zrJgxy~m@Y~y]/YFF߿.0%uu^\}澼NrsG1ƾp{RmurVRA^D>(zxa9JcoO[HOnXf5}nWV]Oo<_Sgx]Gn2k7eko 6 ':G2{T^gH嶼S[ ]Rܻ6ƞ =g{!|2~1wpT'p]&qw@*y*1v_@֒ !s/7$\ 5-\5fH{d祿.μn {dCyy=v&1.q@*q~Ms(;:;(J'Hu)sUW껤i}]鷟w~NN:$b-?]gr+J~og= _G usf|:g4n_+;|$(}I,D-g+{Ngҿ5pZϙcH޻$||#[;>~Cwxp%G^!{jk6%ۯFMM{ՍLؿxbL*wwǡ' Yq5uwߵp+cB37Iw/1/)i+O[m&.-8*keWT{>slS]&zW.+wq{dX^g'ߋ+: /#S9dC]O\vyGKmTjQ9[.&ym9DzK 7Frtj|r`"my i؇օ74;xaWM#K[{GMݓ(yٽ% 9=hݜ3QD{3rG7ݠߝFSgvM˔y7 1@Tǹ{:<l_!W͌@ X(9OAW/'nf }uMI|Eϲ(?>S<Ӛx<^*9 浮]n?uӶ{(ݫ_ߑj\I싏.1yqSC8GSHuҏm,ba J:ğWsZSdgQ\=07N\֤^+:W]mutƔ{3wZGTgN{ ?ue>W/8h 8D55ǡٌ}C ?{u/@8P2rdzaH4&fYE4qkmo}#(#}[`eҫW(?ދﭒ骺;"b` N~sߕ~w^R},kOskGgڝW4NWď ]@ B >D$GċH?'>LJ'޽6my~Y1yP@N+sO0TNWՓS?׿鳦c?[ރ:>w{r+G3؃u掇ừ\/gTOO=;[GGT/O/'=}U`۹~[hFp7{e ק'3Ѓǝ=:bTU}D?}`:\58 |n??~+J6b-"+3k Q~*x'3r.|_'ϯ>Mz;Z_c'~l^K7/h 3G݄o륂E4N}ō}=b, ]j^_%S}D\vjqAN#\>#*=2+zߝR}X4CUN0QUA`B+"N_9}ǻ ?\Au?~w|`(wĝ"z԰`Uzһ妪ţO`_{f 2*<Θ5zy@S^#)k ߸NaKb^[uXsƥZN妩#.%-G:6ܶoE';nL"ۋ]~ty;5?%YE_LGp,}^ƨWѳ_l}p+_l]'r싾#^3NAyXY Όel˒Ӥ~A~~rˌF9snD?tn ,>Ю?tz>x I3>J6Sqc_bU [/6v>z=w '/K~~t+|]/α*Fi1.mi?Ut |Tt wHZgb-QA08-@//9r[;8dU8.%ǧk s7Y"FӐ[|K0Α<8XGHлlLb4' ww|6do4 *2g,>$Ӽ^qA/FWQ]W{.~+rcڱk|h2F%U5^/|hdvU1V!#Çzӈ?iغt=>B5%q׵6߆?i|6]h"n/;&$08 }Y;#Iqm.Z6]ҫ" d6yȓnu6eNz%nld v320d87VOɲi7$9×n2>?f|tǧaji\ o17 ><8EN7p^5l8׌\HWyyG};m삸bRqn":_"G2z&ޥ[L 9Jz}\|x\R7J@_ υ ~$+f!=>z_ǦYZm/ 3#o/#*s#= M;4"lڎI%Gvq0qX>]ݵhU|=n,? J{-<^Э|CrJ\JjbuX6<`&5e l09Lz[ 9pUU8'źm_pɁT65k=RԌېG7F)nteS} Dw5mxtmvٽ6֢/ы<8K3Z+ {8䘉_l#]J.?9#QzvN^wQkxg1ϾcAˁSn ySEdd6=ssOv8}i6~}/\P68ϭw=zkG?)Ƽ\Ws3(?{~ى gr :nq]OkxG*~kxusĞ͍?K~gAO`F[nm۷!S&mȇ!|gj7ioaslU6+Y8R }_iK~ %NyЯq(o,t7,bqV NaqKgFLMT}Wҳ9WuD*u_oIƳu_g+:U" -UePW-Ze;>O_x9,rOWu.%[ V< A>z~HݞY96_}sq yFyLjSX?TeTo`k߈|35㷖L;S#.*o\HgoI q~};'̝c491C>3g@OY<D\Jc~i*_R~)?5~$sV|1qUq#sKh Ϯ3! bZb"~︠_ΐ|Yg^9l8젼.׸k- v0~:o_/yzc%{6؏O 'uoK^_4Lo60|Nϩ#|jFZ*Eu>GI^}!sb@?N̿ĵF2uĹ>5ߣv yi]ޕ~ߓ~W\ B2 ˡ7Iac< C[4~6q3vn!" gzxtMEAj mGm1=+-/v?_6J'NN߲~Lsz~{W#~sΕn)eQH3Ә?V*FQprY3q~nw^qu ݒS#\A;}ScoenʽkKb= v#RkѩJw=~zaRAr]0WWsJ*gF/:RMb":iM9FKҧ{?acF=,F:v)L׫=Yfw ^tm.C[]t`FkyM|gHu q?c8CDMly>7Ͽ+ȯqܣɹQg}&ܹ+MsYR8g7vզzVbLD/:hQHrCq~vC\C@8W{#~7of?+}Im܏o}s3斱HS;~T3sa䟟GO;L8C.8 KcJ131O!voMTS\agn>жe]e;u~O[ι^;;靯F֟^rl|"cbaһPѕ~|obGl+ߓ,;JuH #~Jjԝ 6swj!ouo&krWZqw0kĽm}ċ69m3~?I9#{&hxbT?م~iJ/."yſ^T3oϜ.ZϏl8(ߵcsg3u;}*ه{1sgo~xH._c&mm]׿oY|_k{bۆ ]w;w{ܒf}"]VF/77oߟ/H7C~ŭ8aJ}>^!=l'{ڴmWwaǰ=b_ψoW򟩙|ø? ̆}}ĘR؇ahWM%Wq"i}9,=n%zOs>gX47C/Xo0Քk3~ iϓ7gnzjVe!xS H/h`RJoymkߕ~+ƭ#F5Vrxsh8{αω"36cpTj[{.0r"NE ?ǚ%/F֧&m`+yА_" w|XGD^gw?ΙԔQ} >5$m?]7F~wE3J_u5KЎ}q={Z1e}W~͏3{yv8/J9|n\x@%eŒ_as{poWNj/H%BMJfÐ߮g+Fw2 빜_M-5…S:Vd Z##v`c6w}ң3#ݿ#独o0ù[? sG7 wX]wW='l3眩m;~v3VHeдy4ԋ/x`.@ n"E/5@?.'GoWy&~!/lJmSĎFGDn)$H=4BWf+7g8>b#߿R?cs!g.0~=+s8ΌXTe >gkϗ~f8-*5ڽ_ J?? xl)}T^sY( Tl6f 1׆١W٘ 6ğ;8 Dv}g+skLz <ɳl9f1 ~9үhacckǧ?0ˤrVRqs;7O^wL/ܿPCL񵙑u͌K뿪z.{{UɺQr~~=l{ԕ~|Wkۜ-$aFRvI*>/~+\393 <Y(HUϭoWճ8k%5F=sڕ~_c˰7~p'7fF1s̜b!`ŧ2M̪E^_ƬkZ~=>:)O21)wg~.ꞯU*q~+?P{~#g}/bn![霙,Ses][ƙ{MO-RS*؜Ԑ}*m_8}*sӤsydwĵSA?3Snc'(a^A}]rMl2 >:oc{ q{`lsh|D2~Swwm0U5gl^T,zz}oqh(6H\m/Z\g q~:1 ~ϥ^ IowϬ3{/Iߣ'/ϩv̯av.dnne~k}m/sfs7mg\0z|g91/Ն)̿cv˘Jq͉q7Ӿ~Nms}%/D\ c+0>3x?Fv =۽A9ѻ{vk=7w'w~8g|btMUGOLǹ?$V;$?xkeq~9%@M>DmGxyl*]مs5Ɔ9o|1o?΃A36ޣnj{۝鼃ϥ;{ĿĶy,2=ll/s~wJ4S^Ϝ2c}N$[ckb+/V/Gk.gJǴϣ;JbpHw߉лg^|l/z/3|)N}?{~=#6kۆ7˙ohs0?Tn`{?)Ob1|@YU&Iszwy*q!M+ީcCrSoWϊ5 ϛ;3I7uފؗy~?O^p&$~!>!??2t:ba|?]"b;S7/ߏ1@ܾx: ~>W!vf%?B'"ÞTl*nD66n?Yo;߿圛%7ޥ߃O%ߩ}=^IOx|;d|yH9<g9p2g&8L)}פ- |L|ߋWߙ^=W7!^10t&? Y>E/HG;[G^;$FwLxNJ#$''UmW=gsN2<wa;Mv㩞龴֦TcmE?!?륛S]U߶߶}W_ߕZ6Js>/ؓ>{#+S|O؅~v;'k$+ϑ"~qY~}bs=J ONsn4-[Pzg`n\U}G<-wE=Ozړc_#t*8s2=W9k#x<*! Vra/#E,#L?=J 0Q2yg 2 * gbS\Ch >Os827VURjV3"ߋFhx2,_7 %_IK=ҋj7>':_gLQ_0_R|8b~wYS4m,مoN~9~}]qoQI/ϟ3Np8mqe%}%W.1:;z7ܭS{r_8i/zxY٧~48gx Wj WI~=Y+/p_?X_L/@~X%h]/|~Tf]Ďز!8Η^nq&ϩfuTzG>lo[qhYbeUûdߥV;{;?Tz?5V{WS8tQԑ=$9~ V$Y!׹gҏlX1V{R?C\WsS`GWN :|Ǥ! Lx+@uR~OTEWh=w^.^u_&=3l16Ic19s<ܮxYmsT0} t#z~76_z=#=_xX]3Ŗ'Ǘ3>73'G׺8uWA?yޖk7r%۰#>#C8m}R*)Gk/xq?;&/C8H)ωB/w[H4 wyb*3װm2Ceҏ@ 1|- Ws?_sM  n]ػ?8Nvry{ES{ll3ؔWk!΢@8}O2MF?zg~F gSg iMgJ_6YeS),cQ> IWp rt6#A?xw(9KϷ?ǥZzmtߦVJ]띹S~kHþ~~X|E,^uT`˸o;RQ |dwWZy^8ums鹽2 \&=W]|?i4&hwǧ2ПRoE}w^zi]"t릂 .>|aO\L] ^x|N&Fs/y-7JcZdzrSSS~Bl'9q&m.X԰' hzr"E}-uy|ֽͩwy=E+O/9w?m8mR1+7{~u'r^'zWbc dq s1܆֯tmc߬yC¹/f'&K%=Hǀ3;e]3GGsqi1 Jy4:_?91w%'J?5$ߟ=䰷JT8$흒ec@/{k~Eڳ]S6< p\ط寈_p-b673 շ!oWcN~ 6؃c-;Jqs>W/*yW]G~}buc4_I1E8,~?SN{۾/-%G0O c{u 1_\9ix]釿'=aռܡ'ٕ~1~aj!oWJ~=:O6~Ji8Zw&5|1ǥy47geտd*Xw@OFla>8'36!Qq飽Ruԙ.9 /=${z-yݗkAw3$σ}sF}b*xU"N8Y+K*[{.^kG!.tml2Y)kb^+|F1<IŽ߬$z AT IUX+ɶt֫Sk=XGE}$9Ow~ݷO?O~4޳ t5' t\*W8m7MLWѳ>ۉ1{4X>.ѫ^*y^8/|=^K/9X/'B_Ѓ4_c^ܯq8qߝ%t>>^\t?>$c'+Mq9܇J yzwGw|hLde{# J>X(KN9cg\M$|h=Wπ1OtQ fcwbzn>|MgL=r<|B/XЋk| [QM0kH~ΐ$_c=4 b.}(}##FVSXCqOò{gg/߳ܦ@/} _OK$K#^OYn,[E'N*p`s̢ww~N?X^}`=LC6gDG طk,,)~oS{Yv ~0|\Oߗ1rx*mrrGL?7;?X='=T_aMWyoC>}`~*A ~ګ:;xIo ]M|ù@g]}leܿO.w̖N7όxGc&9iIx~LedΠg!LU⛑璃u{>%ꄼͼt駶63rǸu1%z  g;]KrJ)=st}N_oȯq^J0J?fɂ6nsBcZJz4!ÞG}Vя{^ Lok^,Wj߳#"v|D=~#y9ޙs1n|bL>ga!_X>5}0q*khlm%7ۦ"јf'ZmǏ1V@so޸wcJ.}FOqK/HfH+_|2t̊q{gsa^k _ot99~ڍ ]my.-8[WOM_ sk2.օR^~/D;."u*KWSu|m"HW.}=9*`}Hֱ/XjKb>:,YO:. f/Jo >/zRC |vN겸Wg|/#=.\skz{~y~2H HS@ن~c\U ecB'pt̫D~Uv%?g~=O|Ds ľKWWD\(׶_ [-9\mg% IwsFtyFrۓĶcޜ^4? ʸ~2Q9,|_rXl1Dч-OFlg"|q4oE8r]cVx~Oܛ7oяmkJo*^q:WfqWS7`EC̾Sg )b}t]a=(_4l7N%h5$e8x*%Y;IYSsiGg?OZ~=C8ٱH"q~89ooѕ~08 c~4|p We01_E7Oi-%I|Q;'if`ɋs'y ] Wu9m?5|ƽ|sMLL?!/>=.S(ş$ 9PUp/yEm'x#}uMΟOZss|MU| l,c9<ӼOskfG/j_VSv{:M2j d]3 ;2~H+ɹKO#~,q"6Q#k/8WJkF˹*Y݊y֋S|l8ot>Z[ццvcsY3A'ΕE.>8yg|j #s)sHn-Uedk.`׸?OѹʌSk}D\3Ӯ,}wG+x#K;F0K]'ZUrṗ;ǿG~PrKۖ5?‡.y8lP5J8s]ߐ_OΣޑ;#<8'/}9Ni/0r1nE )90&AvWK 6xȘu76l3:ֿsz~J]dI/ җH"~"V$9U|O_#&]Ƈfqǝu!^ou-95)q=V;d׳7c^su}=SAɩ̑ VW8Eo㯢E|N4RCAFmgѷq :x=[ĸJ?g;Ix ۀ _N9/G=㙒u*8WzюHIT|g3g{ǑPmu%olkqmD-+'ܕR_ ELe^:%N]z撾yӔJ?܏|G>'iHחAL"5zVo3:.9\a{ѹ⫏Voη$: 46 zoUg\SN%6NiWoXQKۓGïsJ_l5%RACӺ֩`L?;Tq\KD\qdj[ݹG_R{9r%N7'ҷq;7_+EW.< 2p,r}W컩_v?θKx/Yqς_x>b#;[1lCc~'#5uW~ yeo+-43("F7X2 YC'z5 [rJžd~$yGqv4eћy.O*:d!NѵmoϜ,9vM6Lzȯk #AoϽz1OeA1oܽ+͏c_q%ou/ *) yCcٜ ٌcܯ2O :s_ Xذ#6#5NT0klF ] zFkߜFr 1z_ز⇇p]}Fzu]1k71F쾁-6ǥ7yG<uT1Feo|ԓkk)D6`=Wk~Tj{Yq'':~bB,xn/ZO G?'T걦w?bʬ{^~KWc~w9~rSSr?fH{rUqΠg"=_|WKW8}{eHG%!^IH3k JDe$1+jb*JEj1}v>`zi'*z@g+XΏqb='ŸXq^ݹ: cV̱ Ԅǽk|ĖO: Qv;i}f~BطosR[cvTfÏ6]KpT* uYgeQ?1 N^2`ў+镹Hs)Tldl[Us]GZl۩H?G.dxw?)D {ԕUSw>(WM no9??;eSt>C?棢=Wyc3.c cw帢oh4;R}y/Ov: soglʛSο+koNsޭ}Uwxno{c?Έa]ǿw}*H~fs9}1pԌ58P廻a寚=GMvd:[b2e=G?b5](KN}1<ͩmHӅ~ 5 ճ F?ߒؐ{<39q-ǐ|s9q1u˧yc?glgc4fGԱAom|;՘&k-r(=/ Zϳn+qϠpvm9^}.  }VUS=;l뼼&uK^ϩ4Fڷ?>7ZJe^-~=0JXѣOo}:ҧF#gp<=_kټQϳC*5; */kwQw5)֮F>׾SĀ|OTEէ۷qMo 07UX(&Oo9=27 wfC{clLhEo-QѭFј(6mmubsfŞuҿ'̗P"']t; }˳^SpݼUg ~ݡUL<^szSѡ+wK8 4=?H0( m5؏cCۻ3>zTۦRC}x6#Y|m0ޑ1Kc]%ΝgGQ'[Sߧ7L'99XP_Ik8%Zc!.wqajKܐSW9)qN^ 2 6}+ J|yYnL _]~qѺcWSD^d}b]~?Uսi;JK5q+ ıoJ_W>s5av`~#8=OtΤawɘ`-{cJ$`|zDW[rKvx}n5̉XF罁 jvYwv΢ޅ~ALj"~W?_վ?>~ U|E?[г$Чp|D/_34}vgs A3ȘW7Uɜ:xgO#L+z_xT4gZT2W9Vxq}vT?p )Y]TrpG?3>%stU5so__Pm|9xp;Q2CF.K3lc4z*:>6ڶzCch!7=>-jŚFjmo=?myofTWRUfvl!^@ǃ 6NHkQHd#+nwмsyߝ~rhxW'k׾g4g"NξU 6EGg4O 2ur/0cWs?^v |Zļo;Ո7e\Mȯce_?u#[%}zrl\X@EɧuZׯ>cckTV"K{do\l5ÙboYSxׁ1ҝu_ 6uUks]Luˢ=;Xyy_|L~/2 "8.YjɈ8koX+WmI*]Ƅ;]|F: 1̅m%[-;ȷ(;Awv~qqr=Szz\$I/kUp#~Q?UrM"@ȣT%R񟍟ÿɳ/P'`-RGqCܷ1:vﰏjV;/S3w_iiJ삿_gr<8T%O٢_0c3sW}-166N#vojp_|; Tlf㧝3,&9r,c^K%yR ņz/ntc~'|% \N+kT=xE v ~~rKS݅=L%fsq*m!?;+bumS5JmgTLx?7 3h{}uΜ%vl~o7>)<~E$ۼ׳Cg;Cw}FϳT*Krٳ_>_plN;c,XgJks/DL ; 2)f|icX>%$҄`k> 4TЏ"sdf+;ޙz)?"籠Řľ=u9D<Ƶ| f/pT|1Ye} =nTp)=Õg̔wqm}.4a/홼r ◈YVΑ_b/bY[]&yQVxLjosqGqYfߐ9]wy/[|6ts >5[$I{`U09A^鿥8_}3Cj/9޽[r_V7_soH/y> w0 Y-Est 1s֮j{HUq)oy_TO=E&D %B6KnEъ^$mtޒIв#XmqOtPuTriy+u.? nwK~cp(9{b%ߔGns/J>Z=ϑoReqz~ ^U4dx:vT8Lj_rrH}EiQN?!/d̥= {\'~_@N=;`ӗS^XgʖG_7`J|ٟG8B\l5/4b29~`UvmUf"Y/M$fPwJN׳ ?rG>8{% -76wsмA*1wp_,wGvzɯV /$9ΚJ??F':? *TA0{k;Ȭ0ѽw`\/>S/~T뫂NM>2';>Z\s6q*fa"F}0O {LKlIs5`6S?p*3AϦ:LsO`.%̡DD9!ے>)E^ ̟$[Hdm;Z*cc\ω-`s][[߸gg,r_/Or~{_B|]rgU o>N~w߱:qfo\_ Yv{`9z#:ʽ4 A^ƽ{/n>#/ E.>;"^$9p<ϮjTr1Cީ̔zw=}?Q[F.⃒F.?8TPx.3@mN~ωr+mm.}[źµ?S|vPCI{D{wmIis_UqN*{Bw@~7E\GFi8 uVgkփ#7wm sϨmBwֹAF,_:Ov*Z2Û|sHŗF>;J?5 =}aJkaLo܏?lJ'H~9Η|~r)!WLKG;% {m漢s ;AGȹ.w=6*j/!WǥwC C{c6cV,gqTpl/m;`Gg{3SOWu[fҲw U9F>>cpGu!s}~Z?^<~@-w7Q~O0L㾍񟿮gF;GWhu6"ß!^yn'JN?J)ɯ1`뽒7\?v33]_nrܻV)ܣϊNΜ:w.=7kx${˭C83`mojпvyYS]ͦjCwߺrnoJ%A]B?7Q4d707' ~Wm #~gL !v=Wfثe6?e/z-VʸomxwW4σ/:=!@^a+Hfaa1wwR`s]0WW]o*qz;R~5ϲ⫣RHs&YFf#N{S~yd:e3?-{_.}O! ȉ *bjHO\t9WsJ6kdЮGsG;y%v?)*}9L,Ӛ_ǙсΡ%Ow3 1umxnk>{O1~^/V}gx'uc# 6M"l?y~y5U?K8._[3 ލ_=o?E9=l{oS__-9p^M==<_R/=^lq>#qHWBkoS߈%pPoJKڌqݭwVz9AIƾMoN1 D߮繃>9=V^`UP/]2O_.!{sGY}?!\/>߰_=!&3;;B f _g |=V=+=3O<)J0WwS|\Q_&["c3hJj7j3Ǥ_C| #KϬ8SrM=Școp6".nt~-W3?!\"Q~2 nx'W EP+4~lX^t&V`ǙaVLڹ)m:7b_޿Ǣ{)cW9.60|ldG uH}O Fw0~UݸwՁ4K{y_kg6v N ǁ"c0eqe#N ﹢ږ~{qE?#+Vk}+ϑ#4W0m0w_y$ϿibBҟ$yˋψ̎w-[Xagc?Hld!_ֳXԜn56=ub2)7Ss vٍ/ɽ't?[3?;Ô)KoO?}Ztg? $G eNsa1E?_pd"S?rt).c~$O#b15һ."->kIFFH6Ƥ*~Q ~>lsyJ cԁ^X^mxlΔ)l2,2LϘkGi|<|x|Q\g1{;(ѸYNU.q/2"`OH~{Ox%SRO?w^=C_{m'q/P swI9_`{IVGKż .W%b K~@N׺xx۔Gz79®+[SԹG?o#~_ b(B!h5V;y*/KOKh5VX Q_2. 9SƜrkSoS;VU;Gy>.7#217E".)-3LLxɻ7^ 5cěawʕ_OJK>)R.$E|_*>qsF ߓLl=hK?|BߎOc#/"_e|4ʫgU=@2`~cUc7|ļPX6͈ӎ:z0'xNW/𵓞z) p>H\=XRqeYv6fNZ)cr<ə2TʼN-?{+^ǥ'M ~rw ^ q6P^Zrr)~vE~DN |4&W? 3|:#) :s_%K}?@~\'"0}_#+J&~[#N;Iqj =P$Rp"W7Gm(˧gLy_ >+MG7ڹ 'vbW^ʏq7} 90ԴH%^3CHˋ?D|dy{K| 6qy'O*~g?Q ߞ~]Oz8xĖ_R+9Bva9O}wgEMnKCX|~w}-$Eaa?bG"|>0oQ_m_D<\9pO(|y~e/@"%&w[yGw{G+1<gy~dTŧsx#;`x>6I<;\ۍXg?^֘w )M|Oo_k /mC>"O w?vm3~;N0s bnNչ$CMMRT{|Ci=>~L|j 6NÄJ=?Ⱒ>=(${J6Q-ɡ߮g S_ᓕ޿_A. ԪkWx:>@:~}Tc{ݘ"WC?uhޮIU5;rߖn*?qT{n_M!O-&π1ּm/qM(kM:oSykgOF>ѩIdxv;񣷔]~MAĽYwB|wߙ_G.cEuOz8w|s39gzV_yO$9,| `}^ؿ?qtqߖuoJ ֖ut؏o<*e\&/Lc🝷Z_?C2M"m̽#رo %?E3~(5y s`b_ϯӏ^~M `_-NO>;rޯ`wvT>|]F2y{2iT*oFuvߌ8N=۱l_7];33CR)G+Otnďs/OtV =1".n#/./{Sgb,6y9 yľΧ;Qq . ' sy)rw]+șax֯@? :)c_x6?;u :Qڹi!sS34;bqFأ8 $6F͂B||C2&T|88lG{z_ewsҞ j Wj'>įw(>ƅ%Ƣ'z.brrEɟ^eqO" &ם%+9_׿@RgZY5:r@·׉}Y!3aYZ:)_d-sdI\L zU%n'fg&|cy"155.32]\fbi~!si6Tr}L+9~Ht9=ή;ĦQsց%?;Ky_:ez(wW v"8+SΒ?9GC`N[k~sZ=+1ygƯ8K#O l"׏AgIWR?H~-&ee~뢝V_%6s]ļV+tO(r ?/{\?uȔƸk=u߸J-|ivm|=qxvL˝GI3Àx :Ggq.x;G/}In ]/{~lg=qڐϏu^_zȽ>'Noʣzg!}$uS~ӡ=|5yeSqEλ],N$)\?)ƴAѼ[T?G]IK<sE?={E~~ׁ'l}C,rE-|?xޜ`gφ~v=g9ućgjk}3z=}ĽAcw}p.>ܬߘf\'VWG=o(=ů n$%l2z"۰Xk{ gx&R?wC.?lZgGerG#s$ >sw(@Nߝ<|-t5o;zMMxӛ%tpn?qJ*go3Vq$3c$rMg_5~%zTGt'X̕гGZr$&r"uuV!E2LޙAoO|yh_lF Qq>q?v첷S>Dr{bܿ1|Yl[RxC\]Q$~\M-L?מ!߅sxQYV?Rz"^Lts г)}q`j-kվw/pmF_0kGĥv~7y0'S7]aV^?R:cғud=[Ri?T#Hsa "0Oѹ_??|C`UƹS?5Nq.=߶CpƯ9U#7""'~"1C͚bg>>Yzcx= ˯5%ӤSɯ|C|ȧs!S;7Չ:~[}J,qzFǸne5N4wM2kDlo.?wJ?0j*^/qs |t룳yG}g 0=oQxy ~'lj,qn[76)RSv||uI^&IfOԄ{h2j#^3PF-7ύ_u~ l-rms/~DKoWik=e\k3P㵿+"oןR2&~glQ;>x^)wg{2|N}~v?> tD9_ƦD.\n*9WVx@^Í~c#?pm;@{iχ$6v17yuۍ=ޣ4r!lܦ 3=(|d+=ԫT]sq;g|=U{1yc HOq\j?l~:-(>}ĻEGN0_C9 'u䨗exRisy76~j+Ɋ{{BEf$MS90XS66s)Ϯ)9G#I>h7I!,2]!AcЕ+6ӏo4)J_;ޅṟ-;./8IW{d^u/$ŹM5?.ɸK&ζ4w[ήE(GRY}mn?cC!ƾ%uwM}{ CUSXNL#ӻu@͊mX'O|d׃b:_7積7ɝsqKc==m{ ku|#z/?G 7>c [䀼s+oK)ۭE;s#RۖM$;K~?c_)XgѿYW|h<= --^M?UQWƼӻWjr:0wH9w)8OM灯~)_(bkG{R4(Y=Pcl.bgyG:G,P4>;K[Gs0ڌ9$cƥ'>F?p%ltuc]9D`=oq1=b:/oCj(_kWk3qxOV9s ̿E3(iak{2 3t?cNꗸ`i>Vw<=,zg2~,^_of\Q(0lqgkc4\9^ ̯EgxvJg:p_~fJ"uh 3'^=_G׉wAD}ݢfOb6=)>a?4/U?^xָwxڌ_7>e=c#glz~-pG<:ޥ3US?~!F<9m<J썟?O^2u41 zo+?$ /n fQљ[J.?)ȯ#?{)UA 9؞ܳq9"l8ŖzƖmi~ly~ʽj:o~Co &Ma)ä&J<Ϭ)8H3Ŝ842Q%|jMM{Oq_F8 N:EuE+o tS!v)ύ]D+%zEf0f&UYfv.^!{ưhK_ Q=GkMh[ECҝ)E!g ᳏j<2>4Oswqݏ|Zsl]'uXcLﮝW/}ذCƘٟ_XUdoK>9gFvOJA>GbғefUҿp"Q+7I-l(9t'zGʹ9~DKOH8MsM{ʎ gl)>^ 瓱ƟA/=XSev,YcȂ3'8wzk㷃s4%U[Ny-/)ﴡ^5鮢Xj_,d;~Yd,~1M пjozDƧ`g!C'Sf G4\!v{]mS-)wLU cߎ7b|_e]ml/8`6b *~}Ĕw]#Yp*I[\gx{jCu2~ࡩ7돯 %r˟KeEX0@?(2~"{sJowcي|׃~r/ ӡ|&ƹ*;~1(6 W'{U51.RC>YE<.]^|38vwrPKC~ Zrq8F-yruI)ES^@&]>Cwdힽ;m}7*g?lp/w1/sPNrpn D<~Fm4//2ޒC_yZICNsr[(N4S#`'yߞ~5N |vEۺx'}O"z0}ܚwLD~7a {~eO( -@/{mE7~sCW_A+. ~xfT;j}0+`M-1w;(2O˽g@bnx{G_?U禽M~[dI_5'^^>e|E+/vY~'?@ωNٗ_q½=OS%m}%1e\ug<z"~$# *^ËH?گzyC{yǏ="~_ `Z_4ϥh"CܨXz@ظmGVvoo"0?#E_q .ҝUOCO{?/?l010XqO>j =\hS޸m^$B5TP?^ϗro~Q2UG}{/]7;|~UY<"owi΢lzG |iK.ls4qw/?c͔{t6JyGďSXBG&]υ_s {!_NlI^ lg\ǮvSc;-&n'pd="O滒i/GK,Sv/}Acogkh~,>39WxWv!浚&&Y瞧~ )a6/wnHG}yi(ue@:zĿxar`&F>H(~!隥ῡ%#cxyuG\GύSΧxOy r@׈߾wή;x9>o׷z+vrwŝ %_@ȳ^Sd ?ûZvDZ#ĺg["` 7}˻@Mqk0#gۖ;k >^|8ƙkc٤|g:Mғ/"FpM X/lā)WZ}.w ~{?$}ݿսm'β9O`qy\KP?v{XDdQ E;@nȟL'Δk̯5'y+w {ꗻ+u;_ՏsR>БwbԿ;_.fG v_g>ұuXDGn3⿾*=ԖRpkT+y;|-?7ɻ? t6w)??_Jz/kar/I'ISg-≈^d.c#fp>} U睒cPХԗgvy[+R.WҿrʻNoΔ{k{3M=RM@q穐}lwϜ>DOxVJ?Ooir>iiη4xz|kƈN9)Myf[WGIKy'S79m_)Zq٪z6N෷.K~ qj9Gt@?2'Y0؍ud;3sz/E338E^qq< &n±'cٹdi#nĊ2rq~df㞔 9qtvqfc/&Ins/psk> ƉG:_0Oό>o:>w8&-F/Dbƒ9΃=]_r$cuw_זQIjW1~.GlĔ.ǾF4}n{7ωxfof:o{U\+{"󣽌AN/cA_MgZ;{>y;3t7p*c'r75.wп~{[yvbR_ ᒒ.dyX cɅѿ ߋS߲sW?)xleOϿԫem81Uώa~O;sy"~`zz}Oe+CU&Clé)fQ"ymio}3jGWJ=#3{c'>/8cܟ䩲 Ƃ66N{U\x}Mqq3~ڙwo=0l;kψ'Oz$|楔gI"~&SE4c{ln7=gxj~Hhv1帘41sXK߱#n%\uu%}QG림[pFMl]zM'ϹWʵl7_C*οom>?}]\xt5¾-nM) g9v:LNG3Uf.79nܹ|S/IO~BK~-S{r@S= nkA;cETﵝ8_?/1|[gv?!vQ?jKbC/ hmwyIdnw~Psxki,GȚ һ)-^_9彦LVۯ=8U 'i.xB9is1w^Ӿ/=Q˼EOf(粯ϙ c^_4Gq͌TdlkC[JyWEt f8埭9tq6dLt&.(2f;l|ϛw)>|)58`SҙsM N !} _/_;1JE9Ȼy(2~duV08YK6 s`Ef؇B&y9ƋV-|SOn"GOw>1>5҇u_Xv`"Rws|#sm }"9Cֽ? ]>ó$YYG״e0ۄ{~wM:Xݏ :xe/9qcа_eқ';إtoI6>/Ro }[ZȘq6lvw֖6|l-_-{؀_3;zL+?>)^J: {$]tH>@s[7XR4~qe#~&7K'/_{Gy]ⷳC;Б1MacEK; <3쩺d!?U9?|j`#]`w}sy?+yc*b WYN?7&:@w5NU\&ɯ6Gjg\Y;;~Z\ϒ{F~-ݱ$Ηt7NބmH>'{ [}DKyFgߔ/hvhO 89σ'l/9o3KDTl7&!JcőOpyP%-{ pvrλ >ٱ ܣM{wۥqƸcSc]\d\wqѹyhʾ1ɟ'R璝@  @ Ux|8xt?c+@)ؖ?ǎP 89溢X12:WkK>tq3;ۂ?j") @.;O)/4?_5~f]=A^?ZS5 "wq+cw<"xkqrE/WJ>XWZL}o瞧mﭝi?v6s_tB?~zp*? ۡEV.+O|t&:T)L-f>\IwSK-c~{-2!)#>C ;n#D_|78<qe?y5^%yt|ʯ#ehg_9{%?1]]qHE7^<} 1;W;cF#e>O`JM6MuO׹Rb4 ږ~JXspf-$ߧȻ W'"sG$ȸwn5Yh3w/v;/D]:z"sċkaЭISk+^Ϟ?suA?k90~kE30ؙe%5Etx]&W}F*'8|cR5mǘӋgpu٦p*R{VO\)?[&Y p}kw{䆈!LRv ߛ\[%N*m_IwЛدRva> b¹ᙅ[?DW3,r{#\'[]ak"<\&38l9:3_av-RX^t;Mz?h%!ohEAxi^Z| "Y@7^܄6աW9|oOr#R]k;"fwI4ccwNƋ_2Aq?y*VyW߇y,.!<4斯 v=);wxm膟;SITm_sc)e  ~l14_9:?,UFI']T:EM0;>eUA54sr7Oއ1Ny:ڹI~Bӻ ?lbB{WHy cSݥ» UkKZ<<#Yznq ޶o3]7V ~z>կR1:kA?/:&y@ƅq-3EܖDaZ?Fy2_l< %1[{lu*3|Cƿm_4/.9ݨȽ@2 ވx7wN^9xI/ 2WiN5 _Lsۼx^;e|x^'xna)1'\'Ӝ0vq??.R,g٩iLbMě{+go^uްii7gc>_;78ޟI^4uwpmwi5]_wry=psdࠔssCџgxYƿ"7߄g$M8MisϏ\"~r_PmJ|~N:s 89e\z?U'{ת_g8gċf|`3"ܫ1@O׵#RnG;-M񟱷^tz-1"rqƉ3~lm>9W++kf$"^Fe>7ugas`s{v>j-%Ct?5ocSݟLĔgj޿{NOU.ݢ.p}VKܯ5~C2JFU?hk7qcRӈ&uA΃_~Ft=[A C<}UyRЧff?ǎ(DZ%=#RYk*~)v{ߏW}bUF:}L>݊/eޱn/_*8wrINp#A<7e6,#N98R\-~:&Cr⛑?c f9o.csS'a]Ru̦:G<ɫzy6^kƿ^ZO?wo{M&C|؛KTbRW=S1`p~6Z\)cr&[oK1I~韉;^F)8_LZJ2w7c >\̦^-_&\J䜜ƒz_S,|>ߔgnK7M3^=S9{?ˉ?޳:{ E$Ŀǧ\p>2),!-;qƘ6`pn9m8+ϟʧ*}!CMq))TRsp{?qd{DJ~d.Gm_-R9:;>Rua迪wFsOr+T7+{9ՄTm|S_s/HO'bsɸB3=E>f?YUwClq032q7SK.wc?Af,˟G c 2V)}\sxRރwtALӘ|~c=8-y|W;@GEbN4;B?X jQ/{ó_O|x~3z?? ~ܚ{Moܭ)e_v;0䙑M5<0-#:Q1sfI463S SeD?ό?#RuJ 3_o/"=ó7m0?3ZdXظ1 `O2#>~sS*[Z2~ZTk.ٰ@=Pf7-2FW>zJ_ ҙ-`П;uo'G)u?ރpG,2=uKܴ?gFƆ`TQ$tNz7\"~ϸ-\y[G.gn`gv .GK=(0 ~.y9y(}O#F?މ:O|',lJG`g,7.%W]68`|_b^=70>şҍ?txE}uAFىqrr -q3m&',%48~rx=C|)z3"/́[W"χVz~F6z/؄93}z'Ě 4#GU?#^{-aخ_k"o:L:Z00XGwzoj]#D?؎mH!=+e~45WAg/~cXq));OI8lTnµ7c3{}gE5:5? yBWbè*y8Iۖ~!ĕG2oߞ#U#i&9'D-h=v|@/pٌI35b/f(Wq`bkE믥gOo]yk\cýgG9/M6#NIe]~G:?w`_迬߫}qm_օr?? "7`'c}9nKJ߱x.?;`._xj=q;3? ¯|AcSD':j?;,YCq3ǟo`7C>TrJ$9"ԧ靼){엘H~9cX[9S ߁>+gpD+^WSfwk{?or_u!?Rr`_qٻnz o:&c_3&C{yg'ko7..hKܫ2v6ݓu&C7#"c]:5z&5w}Aſm_H,r?e/{p_G҇ج}Խs䪢m>ZNK\;^Gޙz*} ~5E/8iƀ_d^{ǚ$>Xż'I_ȡw~7^mf3G V`'Y[3 /2vX:+u[<)z)szDr}8?8}>g6 öFqhAA~س7c'K+}9/rzl ^~f:gcA;g9v b^H7T_лؾ#iC̿Kz%sIÍ-#I Xϙx6%ߗW}IM~r?4tn?s^7%a"x?wpm::xP7K?;cyw,y~UO{]g6qpn? EIXכ.{Y+XE<%si#nI]>__q$Myn+k8CbSGMwI^_VN/hW9m"eC8Gc w~HK _hbbh{81}KK?u:>.Ow/coӿ#y&r|ǥmGku^)o2v.Ð~9CR!+gJ_h81c_̦t45ӮJUq?7u׮sg)) I?*<˨?2823ntvÍ8G#V2r;KУoOt*}7rVqjfd9WiԴ;MN7mjimڹiϠtR<^5I sb/17ueA>׿&ߖ~]50w?ٖUR3 9xSAÍX8iJ9R~/l:W杧r^~՛O@||a>״7n7ݝP;K2KF@˸N?1e.t\ݕ:?rO=ߣ12u?Ж~ǤrzGJ?mv9/Y?+U\8Yǿf Wovo|P 2ѵ3矽jjvyNJ?DfY[l5yh5uW+tpTr\En[挨ypqrM3v=iܬ=߫晱wK-ow<7l:[/ _?>q_̑rtTs]q3FnҏNz< %;0WpfM[]S?K[q.f6I&U'_l}HƑyס~ܔv s{g_2}71{~g\MywđyaHsJ9ooK?0'ҡo|_d^;f٩M|kbu@J7O6Չ]\\k3v9\G<@|]byiqtpm8'g=!wt üw#a]nYX0e(QezyV!_|mRH>{dkB6)t=vF_F^vfyͅ_~=jRԖG;\4gf9b58i[FE+}n{k!96Oc 1GTLc'ciAEj[ zvk/]دc|*gG,{1e0: ㆚ܹNddޏO:go{ N KI`#go胴}!Ooɶ%Sѻϙ s t,Ud}vsH ]frw5c~dH]|{kwg%:#'֞ x1v1WXe`Vx8imt͹; Mrڴ錾A6㬢ȌvV{"c=Q_{SE~q%QaFf cap>^z{uYbWwk>2X|Ad"kC?_mK?z~#Uܿ޷_j\;>/;`w(=XV)/qC?Jct;oHcT/$m_Gxז q;S=q=Łk/))=8U=S|Xo;6HL<99ݭS<<5/9z ?hv_/![,]xgcnֻ`wyC{/.-^Njv=4JHÞnXz/BW}cx^_g |S_yF;l虄'F,#ECݡ3'M#Oss%?~c$eGWcZ(+^+\u.gmMu&=@O;_aM|]=9`K8_v[WҦY>[z7?%9zwNzu/Z_MV|zX*گE@'76:X-O?|`T?WQXYghw^Z5 K/U>'Owxn[ S]?_Z#tӢ)FE) >r^чą΅,,/3:'wc#/mϮZ;[^;/U\>0U)`NRˢ+E:w_CL|t&>MS 9ї3p[$'3auш?Fݢ3ɉ+bu?;PYDvk~=~#>#X~[v97_Krg类D׉]y|"Kn+я2WIyb_m)!=#~!9-g',1?A!^r.?x@ű>qb]RE@63GHVmgɫVkӺZdyԾ'7}_νWᙐI)_в߹w%{;w/#@_~'`E>;_)k|Ֆ~]rIG Ӻ||oҳA|_G |h!пOwo`a9woc]c}<j\Ny۔/CWwީ89J-ݹ B_G|nAʬҧ<5lrˤoS9Љ#x={qDŽ̑#>5ǹ5{vvڹ(sJ<}V36M{w>r^h?Ckf[esxH֊m \vƭ혮GmĔSľ,?vm70*N{B/9Nݵls6lZ;7ƞ1| rcR_7B?l7-cAo2őS /pw#OާU\g*~8yEZ>ux|hgo 9ا&Y_cG9}j8?߄󑵳q?GV $?rˤnF#c1%GWTyF 1^zמgB~#3BܿW"aWk{BP^7=/GLxc9dz_;opƥΏG|xF^"~[H-Ǝ:/e4? -/+Wȿӡ?)OCJM\c/6= 6ɯ{-;lg9S?EQkKX<دs_T".G-&zݵSMx& G>\z^tT3^9 #bwNUT'j:7MxOO48X3>AQ &# =o:}3%T Muģk8蓷t蕿}}$ u^q)`^Lӗ9}m?Ao!%OӋg[7@}Mjd˜XhKs cSCz}/ *vFXWzS?޾6ok[=+7O`lfZu{\sX:eoE>udY9E}0x ^b դ"G＀vj3ݼJ4Cm4"X-C%Ȁqo,x]yD^Bz}kуIZ;eumxO=ቿ~ț&~ Ok&¶LGz<18Ofێп?D<9yR3wc<`@77=wbmwy}A_.*LC9_c#Yϐ󳟊"^e_4m^)z vJN3u%EkqwxtgfETH1/gLۊgݸZl l_Xd YtD>p7:%e3SA?U8߽yg [Nؽ`(-7EX#k{#S5w+'ϛ2{&رڙ]`&g׿aw)K8|j/IyO]%l(KP;u<;1 )8r_UE7;(EΫw Yt⧶o"~7~2v:z?a確"c<*z#?`:kվ}_ A<{>JH67ѿx ?>}X~#MW߈e ]lᲇ7/%˹Ĺ?$)wX#at?93klAn] P_:"NU_$tө?oC4GH8?q__ѳ8/Jtqo[]*d`J=nfw8]U尿_#o{"Mw 'RT# ~032WsfONUbV *\٩z63s,)wD1 |uS۶MNS~(Ky.i[mKߟ '^}nWL?sG{@?~ƄRv ODvڽ"95lĻFlDx&dz}k&oKjrs?wwcoN[]-U⿡zGs1ϟ_%.8=e^76&w~Ϥx\ʺn= 2;~o~N~q,]BfI~{O;'GK{쭔@o_?uFzpm}Vg2~)X%cf~c`Џ+Cn8{'?Su۽qdL:U\wKmoKʹx|Noڹ^r>'3̇Wm*!wG3=Q-w]|8?1~_6-AIE~); -3/N?'WKiHwϼk8;=P;jr>Iw?5c_H_ %?4w}U):{uti^G:Ά̱)}OyO蝲ՕT xޱų1<Ω:vnwO{>ǞUi/j :L=S{>7oRGcP gjqg g_!ݗ {މvMƏE۔:ESwF{bhܓS,ISkg}ψ[W}J<noK1J'R's1˥o߶{NWޑ8 b Ŭ?y7ϸNdz]s?ןw;zSS>y+ s}s%=3JS䙣2KgH{-{ږ}==/1[=ʜ z?_rYB[ד4trjb'_0ko^r\guI5K)\ٵsSڸ _o}_M< :fbʵ<oeƧW#gy"N,:A'x,|gSl̥xn¹>MsI~|c8YwOj_`(0H8M o1V%ƯcN>u5薟c.< 큢M^\]Ag3%$/ 0L߾(g.)y?Y /0m%sk_;`*,,J yE!^#'gh~};4 cjBQArT2oSufPP]?x==<÷4.eĹGE|53/ו< ?WcW;6x?k$SԿG⼡ ^ Μ i?q@Q+,_3-wUzgI["%1ao|\-2ϜܚgymĞ]@?qRDߝ[IK#<Y3]fۿYScK3|Y"NgL޹~GCg%qS%'w9W2r2ѭO<79?"U{.3EzOɾ _~>wA0حڢ)϶D{rFhω`d>19v0v~d4^ϓ?yyC*J\#pWSAIffѕ$03ك(TDc5~H | {s>;I`9LQ^~5㹉~wEo_ G~`X+Z,<f5Y薺X`7*by<2,;؀ Z ^kn 7NUJ-ʯxg4#\׽\.xv(&wx7A[ɍ}.;0:1Zk7#1>ęyWI~7-:{q>u1v W}G6x <% |C%Yu ĺ*bv?wv_{Ň`5|ʱ cѝ{K߻x'/EE7x eaߢG`<c`o,\1ЅuE9]Ifr˥Gj&\Jmkgωg0".0~ 1kzy1/V u>18dU)]noGOFPc RwTw{u?YjW6 o:% 8bϝ7w.;l-%~'oA/h_Z:.}}nGlUBE,V^x-U@ƀFkM,2.~{_G!bEI@G[`ʻ7L9f{{aMJx|j8kލ0vFN}"z?ϱO`W ƱC!{йw cyA]O-ND}@Tɳ)"NxӘr]":7UMsgX(|Xs?w(cpE13)zUˤ" nw}5[}dV=Lo3FΓ֏#~1vz'fl?VǺݼ,V~ocqn.rUm G~tx$eY/<]NuQ=kr|tzE/!]o[?0Rj_t/s1*%BOLCl ~lq}/;jƌSw> $o#[bʺi+9=<)w(>ߔעߋcz郣SWc}w/σ_wW"1T:&o^-^xn#<m_SY-c?z'+&*r? |lkωO!o;pwmG^MU+x ;ʢ(} |PU}'u O#m`_¢?<%IJmѿ;6Exxx=SO$ډAT"w [~*̈`&|j׻y|kSߦsSs3?E8L~ ډc1 ۝̫ 2 =7"H2S1^sX-ĎJuL|j6CxRQ|W~5 ӝ =??b{|,ɨ ?!_?=aM%7zsKKN7ɩ`w.r_+D4mn_s@1g:i밯67z+r拞UXSߟ*]~??; :]F~c+٤/9s7U?${֖~cUĜqKN\ݩȽY'٥RH~#;x凞6cqxN=A#>Vrqqљq7z? <#V剃& ɻEG]0WD,N/珘ٟN?٩x~R<>x=qVRi+oNe˔k[΂g0I3k+swYݿD|Ͽ+_Fadϝ&C=/n)7Vyg'dӘ9tJ N %3Şv{<;2;C{l))3_q>{i{ɿmg`}~?X\Wz<?uX j`?y*o}?!U9M8N_" ^w'b Rٟc>!K|mkgw >#iCdNOzjlw-\=E^^㹉Sr=}<ۦ^y/ ylU=CL bA#wϱ?-7ly#>GO%Ӟu0aP;7Rgzoxsb<3˔s#Сّ'x;6p-Y_\0/q0qvsVsҿ=?/#gN==臿={`E29~d?]?O/7_.EV(xr_g( 0ݟeoŵZt[<75Wϛ7c*c2e}P]yW[7o!. M͋ڣz6#ΟS `.A/wm_?:fR*}l6˹äN}B:O{ mO^c+%|fpl=v6M?b==ML #|^oϝ`+[̉w8%6ܖ%u}SgIb4( '$kKbjArgo`c_s&LdwcH#!gMviooOLzui<9evg?Z,e 9}mgjvS%`߳u oS;E31Sq$o\ cSsgc`S;vF"?S&щƗ]Hg4^hϞe[ݚ%a`vnٗnJj]Q&ɓ'X:e+l稽7[V1zw3S(z#Fz.OMfzn#xu-eJz?X@kk4o[i-2 03`Z57vXF?Ե#Nq=,˟<#r՜*uŇ}m-rΩ:qqM+êzQGWgeڹά}'Gёl AdaMv)ӻz>wKwcW\R9$-;oc5bfzV+Wq=98?mऍ(-~&a?Ĕ:["jW1g%0a39䶳|Pϰ'ڰ$!F+撞ֳܢ?Y*0cφyY3?$|n^TcG%41[fQL\͜Qds~+;*.=oߣww1lù5~)`@m[=nf8߸Bp3w^n-yI;C g;uĢG.YlXzvؐy6>~6樣NtV͎]#_eveNe a7K~y4GnܫҖo%n)%r`y `썿G`~O1k<<@MMOyBcǽBػ%~r7ɒ_0 ߊ/:@l0A΢u-;23qF:S#,?,Y5C3i<6xEǝ GGX%@nK >%g79l*y8%5Sh ͨ>ߴ>'!)i%Tx1h:Pv c' /yϬg9U.{F8žL>ݢ$ǟ}'~ns=CBp+[{SeT_}!徟5cKƾgc];Gxnڟb^xxT8۟C|ΦzFh,|ݻU|DT]L |YN}ޮ[?`ҿ~6&u*ǘ;/|F;š.Iz"db_o 2~o%ۦ깉21e@^}#i*96&t4weГߑϳwqFhG8iŧ^E3:㺥?:zRuwl_Ny:wa;jgxF<p6vY)c矕2. x|EE/qxzE[y0Z>+]9ɟt2ǐ(ҿk;A1? E/u]ۉ˜"wS S-={_kYp= ?/]j]߶/7duIv5?Jw8},2&Jk돞qpKyhd\Sא=N(%O,xO-K~e.~rNɟM/j/u%|d9lo"3fj_/O\3~٩~gcF|]NW xWzg 6T, ia9%|K= eEnj87@q{=% VsH y޸g6l=BM8̻)m_E^XS?u!_ <1 StCCC$K'?ſfgg[qx^cJ G9& E,3ʵi?OqŻseҗ 'U{Sr}z8s}>oyxM߂y?Ds?|[g&99v0~c`_  ŋ>#5ٶٿ1ݓek)A~jjk^?m{⧫$ 1.sJod\w8M!.XG6nEE~=MmT*&>gwN?Tkɕc_~JM좟##׋HrC844<{EgD 1 11>}4~ZMhnnνJ9k{#ݍ9t~T팟t|~vFqܹ.I|N~}s ֣?W 2Y4r}Lrԁiy /;]iK{7q]ψ>+xıeV\$)g Uއ~Pj7 ~g^Mi&ʖ+= qI~)%P?@{''NsR3͈GFvyb_P7#4#[$e m=)#RuOJܟ\:>h:@s䞈Oa?Sׇk3Ň3jgi$GC{F'əx~[<$e}yɨsS xXB ՘Wć?NwDD?=8??Č|[׳|-t]XzաN]`γ!"Iy_{}~>z3;cG=uh_!O8^1 :=D}?ޅ+sW,û?-r}9|rJAK5c~/4s3oϟ^3Ƚmx}vƳcjlʮ/S#F$Q~#^PrޥN_~[NjGƋЛyqnn{}|N!t7^aBy6j+e;L?g|~)Hn2oD/zK@?>%bH|LYM.[F _r]@{#2<&U5o#'c$VrmľjVXψG~->b= r54rp9?8:E)q#4]2M2j|cE{#tǕRٗ=ӿ_b_\"v!y]| WYOfQH5 x+ﶡ|/KSL6Dy \߹N!=ԊЋ7V;K7?aFvBN Y:1]pK9q-ӭ|T_E`b|=rMl}vnGqs(ѶU.ϔs'b0o݇ Pv({r*a%윍mW{=K7Ԕ"f>5ꧥzg KZW;-me lrexF*2u.=;C×w\ 9;_!~_Oh??[ [1?ǼkwٝKtΫ܃g 2&A5~顺C|#~\qx1:}v&$znkg5yRˢpע)c/ "^ ҏ^zfЭϊ߾)lOU,&>LY{9UG Vl{&[]w.,y_&g%|+@4|/bgk.'~N~\|%a|}>g}=?MRˇމ(rEMlSd\#Y 3o)&o_ζtDpty7u7}+ZM_r\TV3y+U{|9|D|~O_=O;yNBK~W]' #S)޾J=C1EC7/|{֔|甗uA'uKHr;v0}=]RTD5!'%M\O F9#`_=1SEm `{{~aC$︞kts|׊q"Kֺ97qND|rsSkY~vFgo`ھ{Ip` 7♃tv/?{ }ߒ\@׎| ~1qQĘĭk_MCוQ[ѩ.vN^jy50|mD^''Pt^}d2l9Lw wPcul;jgr}:1g;D@ݽL)^$cWѽsęߔE~oy}?>g/2N_j= m˨ D??P>oRuOoC@×e?# oKW#]ǞD+b1VZ;w8XgDyw<Д#}ƴ)řaz'G꺔{#gή_;E{A ŝ1Z2~m_bdďEgYȇRm{*2~e6OvqFcس$596rƀX@2{Fn${~K濘\znTw{ vHJN}V䑧赫SY@;yNgrK\Gۖ~,TwjL&r {;^wg[@|qQ7kH^9/eNߴȿS%W_\{_ܾrv^5hïu&u|q|b^:HD1}3o޿1._+'%~'e\ǝ#GZ}uf7]%ʞ!ſwkyfǮTƵz<;sŒgjJ=B6>ml9}xg3%nğ&.y^ЏpϝM;{]։[8UR4_s\ԩOiz_"E{kvWOm}w$ osv/˵3ն8NG5c|ssGiϭ١^ʯi>.e;v,?~ 󻩜{"{E1BZ?b {"wl~|^Ŀ7IvW]Oxb`>syj'׎q Lj+3rME*k`Ա"z>ϸ{3;^9}mG}}wk/{Bo+k\!)u6wHߖ\I~!wr}WpS^W7v/OJe~g禾&,T;C79M`q?n?QTyO>AhL9}mluܳJʸ{!mGrq=eq.Z1?|񁈿6;#k)v%L=^';e sekR똯^d-l_Bǣ]~T˯lwx-/?>_Ky1g"T?CC1ۦJ?ゑY|=9MQ/K6!?lyw]/{l¹B3jgi;dz^}wߐ>S?4W=ҽ_ݜM~1u{^њ_|!=߶Gl [{K]gg'=j^";>1љOVnjg+97_My8_2.oR͟ʸkKA 5l^tŽQ9k?ؿ7/-J.O}ows'_L17q[X`Z\*}̩e%f}3 ~fb; #?b͌}uhfFl,׈ff^>`"bMWe{SM>i.؝ܚdd8vKܽ}_Ӻ^k3we?Bw xF4g!ٶ~n¥LbB _f`U}(%pҏn#~A{žKt?cN 0 na _1L:sR+2&ַkoyq[?6dmgx _9[Io'bΈ:Ek=\3v4 +tf=7̆)=*눳 HƿNq-c%ʖibDN /|om~j&o$gpFئڧr*:Oyxʳ$? X+n VڒdxyJ~{H`O=]to?u8iflс%cY;=LE;d?xz*sURuߐ`#fqp'y d ;S2YNtx^0`y\ڳ=;yL)?:UanQOF2_A] gh, [n+c#-~]}L&vl{޿#Oĸ}A KW^T_xG_w?Su/I=[:/葸ec};v!g_t{|S=>Q;7}sH/·2:36x빱qQ(+>5q%xft`s"?;X|z;Gv-9Scm2L vyoww\SE|yhĵ\\1zlN{roS|1t):"㞀d{t'2L=N} ߋRNb̂n1&co]3~/'Ys_O~gsq't>C[ōPYѵ])e =R[U[s^3'jλ~` 6s{޹VG7X`a]?{ArA`Ļ7jC)nwŹfy|i0!s{K>׊*,}L,:5?7o|:sƿW/ e#wQE _ҟ/DY!$usaݔ1durCc{ط]1}WEbW ~Ē[6\u8rg{pl|ޅxsyfWkg'>{gOrw=Lt?<C2?(/!6>H`-yZt) <6 `ؓqzƭ1vc bE_( @7XL*&[]>i>UMcǐy׈vOs+ /`Wtܛ>vƢ؀<99mc<).qdQiGqO%b-plX/v٭c)G9qewȯ3N Xlt|;.T+y<E&e yd@;xO@=: >3πg૸y&'7%&,w!/a<߃6G+z&|C '"p];@gϼS5ώ~䘚6XZB7cvS?/ľkUIx {go5@Sj|vn}b/XC:)_ڼo:+|ψe6#OG9cҿr3+y7~gW`kɩrq/_Ը빖MmgeyscN=_`5XF}=)wx5eKS??9ĸ [H~.;ӇeS~*:m{sK2~~[Mr{ |C6{@o+ eO<{$N_!Obg";?Q=~OH_%'." ~@NNU;/>ϩk.wN{ '}onMj˾Qrk1;#vvXyvm_jX^_p9y0=?vrsS?&^;7!em^?2U/GEW\Sbwr䯌/l7NL#Q.}#mw]w$@1MwhAx#2Oy E :u#"=+r>|,fDA_[6ȵkro zS b|lC;?Nf_J_vIF\St?ة+_5g|_,}:?ny^34$0zD>5N<翽vƶ7'-x)RRg~GϕD,r%;>7ľ) ;zI!As)zХ* Cmqֹ)ox ] _7 r}l 3{d{zovMشO@b{kS>9]bgA>=*~ypƽ$sC.Ly2k0חzn>$$r>g\`N˲wIHN_%yvߛ/I6L܄+ /rgrz?7XM-fA)?>7U ٽ=St<-rπv`s#R5~Q/. .M'%;)wK֍~~/1B<{ &XN) }ag#XĿ'U<.-QY=?6~&%?:j/[Tr]!)vvynܢcO_v*;=ƪ|W>8}{4ߔv-w\gD޻rM~}/{EɟPW۲HK#E\aCz@g'=R_hG/Zם/]z?DظYԲ6D\Sψ3fNHdL82kϧ/`.=s73N 4Y?Џ5u#A~#sl}4%w&o@̋ ٶZw#oo?"o_m}};(YWr3cv~ |i?{Da碟p9g"NlO{~YrlSo?|s_G# .6vOz|v/6r1jߟ1~q̳)MNYb,9-@w-e_օ~&0e\V/sפj5C4iWįtr?jrcbzG9^lCs&|{zvl:Uޱo˿ü1V{bF?aoKq.ψOxjK֟[ Bc c!)f&fT.Q^Ne9f~gF\-?cxtӠy1|6cj{*ffa9>E/gկ-u8.?oS1zra1g fѶEbނlc2TB2E<2kL2|~so{&~mr*ƒ¯#>ï /񭢜Scf آ"a3;hmf55=+ Sqה煱kn>l#w )Gtyͼt4@~k3mș {9898e@q~k˻Q.L^ (|O{`&9YяޢC7 7`\ܝ5aD(9U߼okEg~Z=sc!88|Kgu/wRRݸd!{dZɯ{̂G ɑ D.3|q⟍D/J&_q?!iR殷d*m绐kc=k=qeE~oSڙöOvsl_މk Cϳm1sx/!ola1d&}~3/[/oClx4nJⳝe ?o]dCbeWسo?gIvŽ|jɀ1Oq."& s^ȵ}?MϷ~0)7Ę ׸CcWK@qt.6"\dȘX\~4Oe1ү"5SϜgY9NO]ƚ=,Uv[$qE<7y?)9RE}IGrMT$9{lf_e/n׾R̝?Vyeߏ5{"O.9x2l%39t|0ޖ4&;ה.joE?6,Izw.ӻd1 "}A?6v'e1dx^颶 ?GI&OZ*!)O+欦"YمNСOpƺ29J?#ht <^)ےS׺~dMYwij{7W;l¼v5%!!`/k?yNYo\H?qf)שћ;yebu˂FZoy :.+Ef_2l:5|Q֏7 !ڿ^u\Llg!x&j`3|amt{OIokJ~wFo/u3/|"{A&c yih]#c)RsІszswο}_K3z"vܥ:)<,_dq'l,Pe~?Ǹ*-fۀ8qx{H.of~6~u/ux߻֛ 9iDؗB$v7HD}Ã1yҚݜk$93[?c{M.Żg}#=힑}Sj`~*ݽS4}xYyI&(9l^y}߿m'YCoL)h ??%?WrxKZ}_:v_.&,r01輭%A_~QTw.Bϳ,o%#szH_7? #;kDEb+6%c ?"7ux>Oa@/`˹l|}b/>^r.yS\ֿx01k2Ȕ!MpۼVS]߫ܽofǻџ?&+KG$u1oX#eY:v?_ҿ[JVKNxQ"f5C~\E*}Y 1~%|}_kt6`rwgny}{'fO)_]P5p]M3397Q.GdÈ xc$SwT?jgjԛ< ߌwBNOLo4ⓝt}'s_ K:w/!D)ŊϟJs䠷g6)|j/3^q|嗊#aYtYOo[}Aϸ?!)urYU/7gE&_Q;:S^x3%F)׺kubtlTKћ8}.z1g*Y6F>HF+[ǑUo;\FwZ;7;lm1-~ZȔ{A{ؖFiCĎ{o?{Gvwq0ҿ*RuޠGc<+f}/lAfAp&KfdW:USSy;jgx1r<#o9>r3H{I"78er~lSNc^og;[ARäϰB4cSs^ˮkksjɯL:|I7vǺj<7Ź%Oy!#;'gYp?E5)e\##y?oo?< }>CR\^/wk'A6E_nm?oqSp^eN=)t{UNsb[Ηw>i_xYwBf⹩kܒj&4#66|NН?B)0zi"#[H~'ϸps +{y r{Ycݿ˳asQ\YspNƿXɿPkܫ6^e'bR|dLzKf#e*O}rD"My8q%wN܄<\g'~'Ɣ^jોg_`z_D鷏pdvRm#dɱeG3v8ESt{Rz?~뽂Ou@?& SgvO윛?-Kf+.qGcpIWC1"6 `X Yzm{0Ήr7icy4J׺]Sk~8k+MMu(`nGR?&~&x1wRG\9}GQ~+s _z?mm~'=F39^mS?؂/̳"%+^+> rYwr(,]M}tƔQ;SbG#[|~My |L;zgVO4GJolƀ[%nkoN9 tQSo8Tr0M2m =g/?Fg=3114{y1n~-=-yr>6 >~<76}~l?^^Nٿ{AK?xjZ?9S%f+e^%cE!cs=?L9h S'حGX2"O Gq#R{g;{4~^|ޟo_3$ct3LǤ؆-e,򯦪<~>9#JD˷B,U5p r̜י}acfƙa戙(E&7Iy~'ҿF=??+U{BQb/1 x-~+9g*c=km)=#~7R)K^y0olܭ%N-|4H_}Aq.8nYA~wጁ5\_FtKy/)uQ޷K44埛rS]B.:?a~zټ/5r~AƩFlS5%1`wis;S֯b |ʌ+ɳq)L40dI .}k=s;cybʳ_cb疝RK slQuGFo|S))~\2idž.ilpQG>0 7^/&[! Kf&] >WK|Mğ?ln{x!ư/0~]lMMG?Tܭ Yd ?lgQ[ww9Ƽ8>FzkKi]nd&wy]RS~݀?lfwb ^"#ugegSJyNX[#Z}"D6ǘKK>Ozzà?bdac%&"K6׶c~Gz^}|#-J M%|DxǥCGoK?-&v 91;'/+ch/L=E@Gzk7c&m%=ѩ?ɥD`9EŢQ6SƿHк]T=㷓ql}ǿԱت jh[KOy|rSUS\zYJ~u>/_/`5\gyf?}Gg|!u pu9G;q|9F?C~sЛyezw=PTމD\Jc~z.W"ǿbȻQ?G_'LuGK̎B^To/;9W{0v\|[tFwZ7_iKoo~jK[W 㗡cFOy 3{T'j߈B/GTXr*zNA.:[p,+^SR<#]lRE6 9 ?Z-b#C?^Ѿzg~bqb%oˉwN{w\@}KqwVw<-e_?,%_-";Ζ>{/ɹulKmpO/F1ODq7ؼظ "?KK}`_/{-QSI~ ;c*. ~/yEKoUGX=Kxs >Y߸i_Cwqb=K~mᅫ3hgtKyG}oO6rͿ'{^)9j e ޠGiN:O?Uqe/f#H<9wbjX<s7{F')~Te.SS]o@gԅj{\.YŮ1?N2`?ٞOx-Ă=B|'Ԉq)#U_=O/7/3ԗu뻵3> }S: |Sc*e͸ ~tC#'vx~c3'OJggq[L`)?CԺ_`K!}xw`l˽꾆W7SƳַM:N OﺿpF{7;&uZD?6ֶ!'JL6'}wuEMy9/T?c,]2~b`_N}MqnMs|͹Md)u ;wGs:K^Ѧ.1sF:tcяLC]m?Lc\ g.8oT!=Űg2 <3=`iJ]S=3Ùz@?˻䗿~BAv>s#,k?.|ϸg8FzcQWO9_C_ߤXG|^u%!Քnkqp_yS{1RĹD|9.(#}oF5#NE_9wSSu{Et;wOAz8ƥ~zӕw4ׄstnu땘@w14yBA?{722E{"~Mkg[+e\sQK]B;aܫbs.K/ E&/u#rOMqc~WŋB<7ehngT;wʽxg=?X#Owo)~׸ ѼC9ΒvqNF_zņ}4evƥ2U:3KG䰾,e׿g^˚߿tn_c=P;GJazBc#1.HGuh[+ y3'7ݿx69+b}tknW});׈a=W2;ܹ~^x?U{)]?z4zy'wӄ_7N{S7ytos<'9ơ;W97?= :ˌ)E-ދL*(6?.W[8Hԍ(گeo+Ǻ7J~-ӿ߯7yp6i`əywb΢ER3>rɔ{s-tҗݛ_s]/]<[uoYvIO~d=qQ{cg/庰]Ԃ/"ݯE*ڻx3b٢Gjן)DR;yLgj>u~ǞpȟSsHe/=S"FMޟzF>{~䯽|S꼡w|e/%5SI<ܛ1%9flK|B9x)edX#})s@4 we`g!vIN"#@qƜ~rN_e:빿U6?$;>.Sm8G|xw<[09$pWwg`FҏyQ?W,is<_Ggoat)cmLH2T{~ ǻL=˱t`\a׈gЛk爉M9 /_MN~'A[ 9AG.tmz+qLyG!K<+qg<{d;}!1sїo:r#&܄w0vMw%1fs/W .?I@]8yxn#.YDV)}7v@1s'3S<׌)q퓊[qng-:sYzfnɯôp3΍Rߎ⧮);FH?AяOp K}r~@s?]DߙEgLʸ? 3]7C^%lת5^u^~4ٛ^RWNM/ 3C/+9lz3b v%mGCLFĩr'o oKg3Yz{E<gCNĵE/Õ{>·䦹¦or>gxa{r6V&>| ggucGQPN;ޭkρ_I!NP|,#v}a}ޯ> ~kzys4àY}Kw|{gO ٟ=`Yx{Qve;:kp<;e~9׉%`{Ǧh\x>/.wǝw ]YFLy08^co";O/wp<@3> ymkwklMtZ]?9<⴦ 2W?LwιZ6.ir?u*]HF~eA3|?Eks~=ֶZEmL}.XKt+=_\(d=,=a6巍󋥼#/uָ"!Y(w/eUa ^'yOwyE^VNIr|)ŖG^{$~W }c A"+rd,ΏS;+نoؗ~vGt5>J=EY/ϸH}h9TtaC?/\ՁE{,ۅĞ8vMy+㰻좂Osͮ_~J/'cX9C +yE% vx칢܋/ww>_nKSINzL{ky K5sCEl"_d_"j?;lW|bD?v5<䫩m,M;MtYc]l06w`#}x#r|xvع]ҝS9997yp>[հΟxd6~Bz&~?axRn=B*QkWqubNNo>ύ G&7ze(=_ӛ?8'؅u^MW2" ˮ!ľDAܛW?I.߯O1C{su̕oNc' []|w7SxzT2mP++n6r}'w;'kd#>/;u}]y7(|_&^d,~|p=':Ě;-%_?lןO~UKܡb_|Sy7?|V<φM35KmϻO'Jv.ʝwꃌr*r_.q%m Uߏ1؟gQK zoŧc)102?D2%R[9-b R1\bF[k&&n?ßn_ιYp&ܨckџd{?.h:$(>fmoJ,A!3eL|YzxS,_򷿑=WȻ[;oB|b`p &_\Al5@ Koe}ČWc٩oMK<@_^^3>)5HkHM+6b@#2NĞ$_evQ,m3%˜^¯b&m_ysE_~:Enb(Mߦs6W] ?n\˧k3!ѝHv.r 2ʻ?6y|ga_?_9ݩ1:6U1x/ٌYSϻ?_SϠ\xы ~(Eҕ\sғ*@^g_6lkďmއπYH2U5}==E7|s;1mEǘE7~ws;à9Cx81/EKygML n+[tͣzemqϥ5T3Oϰ"n:w䛿Ft̚\/@~D;xkpܻr>;r;g1&8ΗP;G9&}Y=Kyvf.=ﭠ q3#I ?t"чcQ{BkK f!oӿ@ʳ`+':7O_k?I wh~F_䬐/32ז~hVspݒ|zwﰿkKFɝ+ F}$}{kzc+y1]SyY}Rǻ' C'/rxgs }|ٵh e,&<F,7se5ύS`tA5s'Rҟ]i;LD LYTf?^>+zcS}e.ؽ'vmXv G*T,䯈߮-=N?!so,)^SSu2EDs({#6+JߔjgNQ7G qøl\;?/џS"#Hڳ~]xSIF_ ;i\Yf$fh;5壃slS*X5 W}Ym_Wt\~uߌ~|=sk?z і~2]į9gW#ǸƯzʘK2~cNWj&nKCp k\cSl33} K]޺7ڳ4g[S|!=)e /Zƶ@4Q?3>~cco e>OXƋf^;Ά vn?9=噑x&r=T{ /2>bL۳H1s@nA~c!2FumL}\Oғe6`jeA#>nӫb_~W6y7Vi 7ſ`CuOkc9Y2f?ϩ?:eo[L9&x ۖR'HfH-ݏx΂:5ugZտ/Pn". 1BԞ&.#D<>ryz:v=Jz(]c៽+ [H]nxNߑRO2QBؿdg!+ 8M?g=\Hs߸?dYsA?Uq< OnvSzaRqr?{R_*>;ĻZH@Co֯2M}lu+>mzJ.޾.w&#N$/q}ƏX2ٙF1?P&nf=9]:Y]!Dgr놆>4x])|pJziv/14U3]G"t_J,%{mɟ?cq8~E,zNcsĂnu9SZo{1_%ŶG//֘럿6̖'{~}k&n;n3W*2a}Oh~٩gOe/NnbT֒vҏ_<8˦< oK1Os ?XϼyAl#~qQu"ǭ:ѳ58?UƀSW6cι ˽i^ڹ?z}7G?0lQ{~x {h,.Whrh|_gsU٥v]43rжhG~>E%F zw*cAvɲ1/}wVڻS&< pP;7寈38oKc0pr̬)Gt??NB( ?lhqUI."mK?3U٩!˱n=):zPlc1/?֘pڛMsIM/9rπqXYA\?'M_6e\S{& Z9*/mߋݑ'=cdL{k9߁o@ RƼUvVս+FS=/Rƺ&s,->1& >Yo%-o~sѾRdwjfy5f1W?MG{~ r()*91gԸ0E>2F2.xŢĵd+ӻ0&)Uc0Wu͢ef|!5,(`ivqsJ3򷡟GNߏ+[żg˿AE1s#1& &3fans`w=tw8NIg࢔1.H~|Є{ =wkSiy#}Xk1gN~,zwѮͥ?̡Мȭz+R ϼ/03>%k[7ݞ{~<:yT'OB)O_!<2 =->gދ9YE6#X3ҥدy54٘Cjz@?{\'%RC6₞2W ׂ̱OFv`g:7Z:@o3O% vvjjD;|䥒[K`<; BeW}x1_=_?5И\s; a]w\3 wӔ{cutԺ"8}4<cs;Cp$9/HlOcMйH~.'nܩaı'/K~K;`_=bvp8wmf#L8o2nGΏҢ]$H#S~^߈_E?>)~λQhQv%+%A'&;Y@!:+#cǂy5?5?O1]Nz`}?ǸE?̖\w^cf~Ѽ|j氍aURuvz`WGhL3ϓԆsϣP?7=j3޺呔g+}ZO%]E&ys)2oc=(?_GK3L,V=~>o|9 ?$ SSށD?:zb7o"/DlvlM:;5w?\yj/}̣|RrM9pZotؔ?݇oqz&܌&zSA>߫ߗOk31"&m;wRc$"ss0Lw]VM;́52>w\#~8{ҵ#` *Qs"<6lMc@{9y]1t {9!Uh\:Z5+pΟD{+{;?2BF]djN}һ>X[ cܺ}V>(eL;rŬTŜή~xg>E*X+ϛ?.#Eo{Qb#_9${;]'JQgK_\qߌcR?A׎7b\/YA䱼W{\żh x&5ω}3So(sXt) ~_{!/}r!/Z޿l'gNyK vhO#C_*Cʛx_[NVyDu%S}=eԹ :T~g o$߯zܫ_n E?x>!w}D]"q|=1Nϭ\-O_ _'*󿐎F>\[ݧ͊8d?|`?Ի&渗w˳+AbؒXt~nN2 牘O_C'3k0y$ƋMu摜sShz;#f8u6|yڔ._K9FSl1no<> ~]=r$g Fy+6T$όcoL+~g~]7<dT={ڙ)ٌ禿cS2X⾯Os3#}j'\y n ڑ{ o9=Om#hʻ#NJ{eg4N,l?;uz=ZwsS_{g-cz~_G\M}5]෴?{g}yRWbH[?_{'hFn[7<6ǥ<_t2sO{GL)3o_gU^x>9U1} sĭ? _3 F"㝜3E:c'ПmK;E=toiKؔ8'Kw ?o~ Lyx}mCO{rUqϠw"ث/s+??d9楱q}禺p2xc/':" :^>vh'm/9iʸ]ƿm!%u/"g[=gtAi& nwqL{뽌\'{Re;^#;Vd6cV<[9ROO?O }}ǞDkIo!~c}u ~?q}yY6{W)@!i?M 6M^ƘI/EA:uoO`])_dgr_e08bN]ӳ)5=?5ms gkÏ"0V{F٩+Stⱑ?棢=yﳽj|1_mc&qsԧ4?hf=N?>I =~h"C.csc览52؏8kDݻ_{GuvdN[b2e3GM8?BO_>J9F!?㔱*߹O.S$䥗pƑ~u[pq;6gA"kTťyަo_cdOEߴOEkTڭRz\t3~}0Ș}/3CxzͯQԣa4s{jw~'S^C&='+s@"WK^k~虿03Ovf.sH gv 3[3lSSy2] ѩKU䀸zHy0F l.z':_y欘bVd0w ~໵R-53 ͖\lR藳h8@a-$>\h6&Ƙ} ܱ{A1G\$4?d]+3w)[WOϙZy9ל r%[7Ch~-i~3G0:~{W׽8 4bE 3TGW_,<3Nbݚ__ٵF,M>95b'](g;;Ƶ㹘|>t!s`Sdl\f~r_ ǪJfn|Y9 yEYp(37,/7u_߸ߞ~hv)t"1("~1Z2<4;~c>K{.Dz(-awX{*:Or"3 ['EMJ툟CQ3V|O.2"ϕ;xڠO=,!}ua|inwd=cjV;[WTMsISud`~='ؽȭg{GQ_|Oϼ*}?dwtNŇJ;~{ONo:=?/;?ui+;ʹt"XO2||m)COn+)qA3q%;$,J?>E9W\qK&^ _<''=_H:p~s1 HVBw2M2 ?aw/_BߋybcLHydB3`m;Լ kzϪ.7YZSo]SEЋKKlr*1{\$W@bEB LoNmYd_sf;'׉߫ d!"sB?x36b^zY#'gįƦ;xj(5^,J%KҿZʱr?:='gcU;gڙw/SlylDk?q./헩ww{Sr܂/L/(yEŎS^6y?4 Yiq?z53?&]]Qş1~AC?ky-l?#ޙF]k`ȑwN[lb-$H~ R΁]qwxGa?:y;읷{ڄ"ސUd&K7S$"N7%սyS5On0e97yt_ʽ^ӜQ9t9&cBQ3>s_8bXرS&i<5}|3<ڥ>{-._cl왪#FvLo9;]K}^o6~wA" Xg<T8We -yEw\[(E?(0w|{TL E;F/yϷՠ;1V Cywۜ&:3Rvy+bmS55qmkgT͟2v#=qICr@G;w]/&m>{{#O Y01)+=w/>\roĿŧ~-.{?3A?]yo1,NO޽G48|D/a'Ɇ%O>yK"瀜}0~Af=k}ZX`t"⽠Ct~ >7{ؽ@ b_;Q3MVLygqwF\xwCs.4aVK |ޙJt[\w'<ޮ?'3)1%EMîܯ֏C? ~3[}&!`gU?*=vu%>sEӆA)cps^YkSR?K b_7j_O!o}lXĥoK?_ßL.E@;0(,"_R>TTkサCthބ](mmD+zsxKv-۞@&]|W|l=y?ΙJqϡ7xmTunq. #| |/z|ɒkcr=SrOy]}@J9x~1ybXd{z"ۡz }k4[n/Ҟ7M )?7=슠~'׽þb[oNo 8=a?~ 'rq;<`ӈ>'[T7_,GÑA*Noѻ4?Z_y24'wsӼeڙtrLcN#~iu{&O3ɥ"F<ç+KD=Ȭk?^N{ˀ^&@n}ޔ{5RI8U|]=78 \l7ٶQ;b̓J=RKc=Ty.lgB~!!]Xwғu]cl/N vR紁uL?<@?|a 8+ߣm y~_w@6. % yeMEFswWѥg/{R!'EŸy(?\z8;b?^T3W~t'bę=ϱ흨9}zEg爧o_gI悙eN^Cb_P<;vvnI<)d}~po}=E@.[.tܖKTrVF7.ZywI ;'=C )ǟ+[3+l>k[rILd3žῠg7뿃3o\ 2xny>)DKGO^ 7ϳ`NM^&wO9_|%;8ov~_ɸJoA(y,>x LU/3s\#2qӼ4~TlA?QBgbVJyv-;݊.Щ;=:+Ym|ZO꾹{ b=R7 uY/gk־ޣߵ}W.sMyжMyn~pdʒ.mǮzM~,wӳ4;CcC?Jğ w8c,x8qV<7i8{v0 g|/Al shxTWS[(6RLͻ:zۈyxK G3;ୣfBMӛD~~Lwƺ#kMLN^\~'Y0-dsF\_z^q=ļᴔ1L{8?ύq/ z_Rdޗ9*0z<3q xfe ;Srp?{yxnbs9.~sK珘4n=|3Kf. r:HU{ٔ :8 yb6 =%:_bo' /L׹g|xoC]<ցQFccw#R|c1r kAcNIU,? 5v} }lפc߃?1'Xsm;~8;^fr0L*s̑O?6V! vs'Lo|2vϖψy&ڹ)m:7b_޿Ǣߣ_Ie<篩?i%f'Kf5|910`ot}m$Y֕ ~;m? M|Rc0 d췝'tg>< 蟣t_q. |q."̒<b"s F?KX>'[V@" DψץV ~[coL'N!Uew^j?7Ճ|Ξ:%UgG%=|8O|0E(/qь"xZwtZCg,dߞ~׸НqȮ)D6-2)<\zNd"S?rNKv!R{xߵ8T&5=|/ϑzm_C##kI6MU?:{S7r/qJyQtϚ8s1ƽ%Ȼ#6үo|W|Vlql\xFg,z"ǹƱa A6AN.ag|WIVaܿkqu~1'yfI2eOpb0wג캗%-|Bn O- _x1ԏєg{GmcʹQoEkV-J ?KCpr0Z3FƩ9 qO}q={i?ԏ]?4d`N8}} @=wr]E[Fz bVGLIqw{.S!Om3gyqU;؁C*=jcksb=þ6eۻkb6٦sS|?_'.6DA>3G{u`YKsSEPs;?z|9 o|}dѝs@COz42pO~[iqOPOO, ׉?@s08ع{0]wTj1b^TϳQóݥm{F̮R$Su}[kXsb']B>>j؜,ȭ{ϩXN[Dǻ"KErd`~ޟNoO?zF7&~}vE;|\q';+2{{2|\]Py#j|҇8\L܋݃䢉 Ŏ-׽7K ³ jݹ矤Rz~]^׊;/b.S{^[佉+3)׊ ~ipgݻ~=`_n}<2sӾ8OWBXr'~@D7x>ɢ{~TIwޠ7.ro/K|x/䗜?eݻ7#CЏOd~%Ih8F/E{5E~t;F=>&q=cԑ%'ӇAĩ3x=A0V: rto^2 _{Yps@ɽyJ Iy\Žr1H~b]}G5x?eWgǿY_gpLP4`,ʻkgh0v3 ɜw]93Rg\W=׊=/矕LPs'2V3yNw33U{ ov?]䩈OЫx AW`ak| l(?~96%9RhFn32A?#K^l.+KH/Otzi ;oG5}eɝo,%mNqNMo!7'ÇNZlcyvL޿`ʱk<٘::32}]\M4X l4&*ƪ#uE>_9szOů!6&nG.+SG~A|nՔS!ѓ!>w3+S?l;׼cs!m{/2Js Ŀ ̋vdǐS#1}y=[[?s#9e[bXu%Ekb^+[Wrdo яXB,Kk @w#R?hYgn7٦o:'z:rZTgk{7=s:ǑN-;E x}~3mϏ>76O]{#jw X,M{}bcWj,#ۯ/ OLYN5SƐ9=Sw$?ċľ3NI+qѓȬ,viu}ЖGa?!eK\ EޓO<^jLsz ~<1o3{;]DCv63w8#><~w}jzl͞w{w:w}Cr&韹_:3:9##oY w;}vW:_d58oE3I.~f-x]L}~0t3=}͗R?'of[Jѵ0dܴȫE&?J~{7Β?@Nߝ>3t5o;zMMxC:ux87x~^1N)^$멜[Sr8'xf~9!^ߴ-лR=25e#Z?_ZdۺѽBg{3S)x옋#-}H > ~]utq8?Uzq\W˞ܧfIF'~J>-{aпT{8]QwƢڋ{={)~;,Rqd.֏AyZO|R|?{? ]ͯ@-u~9Oܖs>jC\gs3Ϸ.jK`uIx&Cϊ\3#䪎+2AW`gbad^)rMfaпh?A߈c܃e\-c.^> Yv_sotwo*QX֟stg(\_T?r8XIe-}M\CFЕd rKV|eeޥ>>45@1J?Nv,-j~M1}䁜*e(và~'=NjmeտHM^twӫ[2 /#}?+r_h[wa<8K=_kogB)ɯ築^(r:5Ol->jjڝA2a)א/B}vn5uC++E[㺕G_= z-^!FވN)|U96o[Q0Ə?~MU_~'<==݃ۖe=lk{@#9vCE99A{}3;W1RjK?>:6^qa"_|ek`kS#rn1?;ŗs99+ N}k=e\k3P㵿+"_f)}=ų{6cH1|]o0{n=1%mm:vG= sL^јkȇ~sfl1 :i5ߌ~c~]2 )FZh?lsܗJ6V0E4m{2/q}G~xϯ`G:;~ګ^$d|qbK7J}\7M -y#Mƣjgχ{VDG܀E1'eyخ. Eq#}>[χǯ[#德Rz++ޓRuB+RWZ7u?-"NqDx7׿?%y}W˗myO_"5Z;{qJ9g{Ƃ ?#c%iGዽ$qaed韓=| R=?bLKW~wv<ƹ{ߔl}fwGT=7sNtg+exBSa.ro￉?twNFNV?A{Qw{_*m.uhknl=_9hgg+} u]4g&n:rA)ƚirK _M4 cRz}>+뾆hQHg'w_zA:z{cK]~.ĹOO~D{g)ENI)ti mq Nkz pȜzvz/h-4N2S r5eҏ^AffHnDRWYd\G!Ī)|A%Sll:ݒ#&"<&s.~6nQsdzmo}x}>+\;;bpܕqVk[A2~(?\M`33ƶzP39֟꽜2&^Ǎ>.?&k{I_rYEx6>QsghKeM w<{}iד$]OGcB{/QFoIx O9[,6#OBN{wG4J1waze ER#"0H@%B҂") M]] 4 uwU^}sb\ל1W̼9w/{=z{n}OA~mq.;8N+{f5+1c}ǝ^S;N/ǖMǧ6yj{O}e]޿α s$clGl%%ץSޫ>w-yr:ѷl?^<[*:&7[;7}? zYa_mcZm$@IsMOH7ҿGv˵){)沫7.!#~c0Mgߵ5Sk3;X 2浜ޥXkב݇縛Gq#w\;yxnb? |dMBqƐ=fHqò)禽- )ɁVcG -2.J)ɍ4r.~MJսM?U7ɸܡ-Ny^3(ڨ{PR9)i=/v2񵌟hLLlܓwVW=xK}<]3g~;/ ?W4Oϋ5RC1{?cGN;UcB,Gawl5Zy~GOn*_#$=X G>4\mĿQ,60o¬< ؛g՝"-9M_7k6xI_̻dߡy]yi_{~aָwxڌ_7%e.n Z<=}{팾æKyg&*~cVPs-͈0jV" ×79SgE*~{[=#vڏS9'.pf'{?|7fv;,Jywg[2g/'J; zM6nTOwYrq k?a"##qϔx|o` =A{et=os*ѻ9e,nd힣uR]Z撩џ'RƸe~pFfcѧO6ݭfܹWMM{Yf&~=d)WĽZy-f>z&%2թ)a](mE^DrqY7?Zx5Џ|g3?~AN"CyGfPy4 %gwMOArqݏ|vslÊ.q`:~1 瞧Wxx⳻\w/%YNE"}|E/kh ,p/~8bA7ѿ z_ycN*3yL:]ύ hAXsgbxϼE,=M>k:7ٍ\CX#`OL#t&Wl5]S53݋_+HO{>Uݕo}"cb7ڿ_ZqLNK%g~t)=X34ߴ,gl)>orqe׋}20K޹G9kcs˜os[7/=s|3rY_7|ﴡ^i?O-W#0FE|#2'k3:{/r_ 4%`@aOb1߈|,./:!S!#{*[ϱ oe/I3{_Ác[S*p_{2rt_<1okvj|_Ҕqy~߽@<&U2)GR.dQƂ{E s7׉g'ҟ/,:Wg/;~Nܓl2AquΎWe?"xm!l'X_!c^L+ˆ$_)Cz?ȯ,<q7KN՟,Jg? E=<, ?, b#g?lp/w}1/sPS;7&;܄?{5xY雉Wg3^*gX _?+pJðd mؑB|Iſ{K~-1<"Uk?ɥ뽧+%0#w[[Ł yVjtW//\zv{~](&ɡ }=m%yyȻ=wHUg柽󢑸8w;8x #N?]'K 51nGɋ2WSzGomn}o}AZ;7i ׸+F|U;һz-+jڽ(s +v -g>N f>o+e\ ugԅ_} &@s? ?i~7| Za̳8~w+l-CW?߫gA}].mzg3-ʞm|7d{.r):PE3><>B_jK`b`=K{>tܟ=ÆIlrx?[!^v[vFnk{]뷠R#y-{G Z2L7߭EAz'P|D緤H`㫒Zlȝl2޹kHKsGQ$.2&{"#@%_Ɂ7u׽쐪Q|frVѯthk5M8Mx>Y;?W{|rjye,*=nsSW:ZP؀SOϓ ~2u]=_!w㚥ῡ؟hxȖy>q 9UE_qҏrO篽^^1>&I#\w[|lw~bʭ@Kwؗdp"{K{}1]<կ~K~;cĉr 'XSߣ)nl~G{{RT`> .z@?k~$bœu ge-t?bGܿqMxWR{N.OA{^9gE[voK'SA1c{\(}e|PcYK~Hz{Lk1HNO]u=#C߼s`'k*7<;wUyƿ'A]ka_/x:!g^+=wWzdO5M}bϕ]xoo xo7ӿ[]`c}K:{~&>zJ&ܿAdvoOG*NZ.%?lB;_q߶/%rʹw-=w0g?MLAl@n6%ǿ6|E;_J^V:q؟W^VT_Eg? K̟ufY~́{%~qy40$•Sg-≈90d.c#f LLM:Uktf {@<0mIUuRM^.Wҏ4sK3x똎wߛ?{nrmI; O7?s=իY}]rd> fKf$vPDߦ9ߦ;iU<]AqO.~ӹ& zcD1z;y./핺i{xݿqy/\5u?r힁)(;g9]c[2 .Lbwf^ehf~Wbt'=0V|pn&ˈ29{@Ocӣܻo=Cܓ2M??pvqo{o"nZN?{@=AvqqSg{3o?&6ny ?p <2Sϟ߉m 6S2^t_ytMO?ur]x$hICny.x/poj:ozU\o262M>~ +#Fp<{>E?^P;Ow~t8Zwrmzfs^VEM&~_ճ]2R o9Btuɗ{sY풿2NݳsW?!o>>^/kG=qM<;w Q;+Dw/ĺtp#l>>4r rY_H56oTMվw.qMF\O[.VulMkqnx[-^v;͐vY7Xz2gJ?!;oK?4n'so?B-1h+WR u]_ڔwpN ?|e/S!_ȳ.L7^wsZwJПKWgR[.`}mr{z8;f߅mK?1-qRg-RwQnK?W~U?wށ{//䬞= 6C2~SƻmSu`*}Sk `]s~S=Q*M89Msϩ'3øJ}5ZcF|%9tÅSf>RGLG=?Is&̈1 ގx T?vٺk/>Ms^xǍ8R~N2S҂so"p=;V@8׾3dmy"~ zy5C6.s_#R]@N".ݸo;3S WȾE\_͠?/\ O>B/FKCC1T=b.oww6c@? @W 2<>uS9 $X7|+A߀'p/g=@S޻ -~F[g~#l/7I_l|y{ⷳC;Q9G36V )cg0׹|N&7 1#E(=m/}m#seQ⤁x4|\q|ԟ&v I~񥑙4&_O~?ɀZw2f fK濉'́ߊf䗝<`Ai޿Dzsx)ΉOx=؟~x|c.(c3l?/[82-_Km!y޷&5^♙7Ę F1~n|MuQVjMp_m jē޹[~[n?Ϣ#'>L݃t^t(6.k]/6y&.^\6iDNNyF7ᑸ?xwa_亞)2â\?c4M3c%B<'{?\&59=8 C닉w |oD!ށS~78;`\wqѹyjʾqň/;9L|)sJ<߄g1ܔæ{ua4o]A|:sSuq_&1Ɂ#"! l'Kmwz\~;89v?5K#W+@˦pTq/O@.Xg C]H59Rvs[7{!>qfz݄x׾pozf~+qɝOg>'U; ?R`jDI]??{GMr~{_ڟRu.o%}p]ԑCN<1#~8q: Ac-D]X5噻R!>r݁#N—O~69xQ\?qc`EC9g/r `: |F'#~/::1תC}]Zv>(=Jϫer%gd"8xR{wtƿMsz7t~I3 =,JjsvGgOʳwH\?Z(?"㖢;?9w~SgRpdҿWsNϦ?<yOuF$N!Ŏ}ț|X<3n;_&;~& 1L?];vg,zl,w篰kqc0bדOK\C6/ˏ C'C \d{9yc=K8I.oڹ )mC=s؟G 6Oر{{TڧȽ2Ioq{/|)dy ͔6+5ϗ{:?W&sˮocݳA!i ?-='W?E<׋vg{VĿvb_hؗ=@?65k !_gc1W8^-cR|vz*C`A54IsrU}y_;7o[\hzWk]?ց??MMAg`c5zv6!s_$kHEA:G~]㶓/Bv%lK=t*IyU2:ܠB/)~k 6q[Ǧ\?:8eq?_|G/ͺF\G{E];,{w@?98`fy+&ދ,3Yt~W7lo{٘3j84I?FtC?ޫ;ߖ_wə}%#X<"\)wYW1Ǟxno\ǹe]1sU|O>4uOdgӽ*^7Y5os~b9'WJKT23)ҿ }] Ck-ԋgx{|uR7s[)X?qV*맱K"JNe\:~_7ƿx&M<)^ط6?#R^|թ:ũKfɝJyp[w32v,s? =9"\Q|SrX=eLF{^z/Wj8cso\^8^mi(_^Y3#Y'qeeat\s\Ǚx[;7=_q\_'5u?ik8SݗL)zຈ?q2~vm_?+%s*o|dԸXSf7f,5xn_NGK~mÖI/w?菽pƱ#7JΖzQq۶'.ߏW}ĪƍtR,|y//_r'^^5i.t=&ۆsމ8W|6eߎ\һ&yψovm7N?*95ntw?Y_8 [^0o~Nv8I^Ȱ/^3^#dm:7՛'|؛KTbRW=S1(9Urj[ǧҞ`gc'97rR/-Ǻ^ci|ٲq/a2I<7Ź_HyOa<7g#ww}r=7/ˉƆoKgOJy(}\?2~i&gWbc[4w&Lʺ;^=ȩsW/2V;S)?߿&<:o{y[*z_}"9wwWk>;=ujK3F}[t7@cl#$b?'9mo)k?(ulR.1|9/e]$G\sxRŻ0噼kg wq|~cѓ9sR!ԧ_^iN/E='s",y)?g&7Ή\y0pYO|x~W~9vn*qZ6՜3<0{L?wi~gp1"c@33nk'lqG*[tG_o0BXwYx'on9eLn/_aF[andn0_=pZFKOsT'|}ߌvsѺZމ"^nƔ48.M6Jy/坹ň5V4P}õ?pMɻxOQ&*9>BǘCe6%<fҿx}Ůw5O=Gx.,q~yqf]7L5gSRˮ~rCpx|r^}"3c,A7 -00m?i4K}?VʢQs*Ά珘4hh~9 v%j{AƮ.ŞsU D9e"5Mh:7l46Ɲ˺k=lϏ~Vt1 1w@E.EV{udz9~Z6lb:? 3SG-p٧8s 5xc=-;"->?K2W, v?8`1>x{%0,4M;21#.w[߈;u7֓w zk+pIOJWȼҙ-_S'//ݖ~b]S7Sީ ~ '#ނ|2o:KRbeo,v`pDވ:G?$slv8}qKyk;[v5ذ~2<8̿>şҍ?xh>m:.>?FS986Uqu=fz/66~z ݵ48~1{9x)<ؔ1N0 DFy/[K.2Ч>B|84#E??ZZ{ȕ*&?ʢl2fe~)y]@v{Eٷ_?M+*K'w,X2bFɥ=%ˈ3lJ~J!13`o» '!^9>S{1Mrڴ' 3{1wч$ALHyvgD?Sgm_\0;oӗ#+_rDw iKXصZKsR_8\\[vrYWcY7".q[ȳ=1Wi_D vQ!~$@ t(y˦a#a+`e)kaŔw'?lPїH_E=?#mfcw];^8z"휙q(زSuK[ ް'IfήOJ,䮜u؁LU|Qrޒ b_(5gIOK&#NmI?XW'eәzO%犁/I~7*r<->gg!J3&vi; ~xņa#ust9sO\XoQW{39iD%>8Г@?4+%&O3 >96t<~2q W, ݏϼx0w^/V만SW1}𺱗zgn­j¿j% :8xilC0$z&F& R_Ck/A|wjKVzSr޾+=k3L/|Q|追^drLUJпxhx`V*mD~]~@3ČDGrLw^l2N\y$m)K Ŀf_oWQ,*<6ui{qZ͍sĽl1l?,Mx[kgzk?== wG_#?ck+I,MƆyE#̞_dg9 rmw'#+q$9BoٿWp&F^݄S%@V-_p--䟽C:ow;-2yu׊&ߗ>5,q{Q_K?M/+?";lߐ}Eu7اgяĨ<}pc.'&7f?Y_E `KѱOK_}ؚQc%SN]_6$얱';4^u O릱eCN~w=,/!_n!qI?yg׻2׀WtOy~s.ors9 _txFu߽?Xp)K&t]HG/Ľk>G "ʥ?B;/J ccgk`b--+8gS"*p$:E;u:BG!`@?q#vNk2ճ玽^籐ݸg<97JL9)_͸qGL}A3 wif'3J4mʳ<&Yxn›=H@Ox#q~')C9FwwMh׈Yv]m}}wOr\y KG{"TkJs-9L^S{yxnG d_i(3q8tc)3~ј gY&3}mZmI)+Y__3lMX/Idlzۈ׻)[kl$>@Ǚbc8Wl,y.jg9x=A?/~ƿr_ٯJGӆ9&YwI%4_v_u1?ۖ~(}k\2}J?oO uW2.L{{?zk^sc;?ϮcS;u#SӲ|L<8>u?Ӗg5ݗ Ǽqȕ{=:_sBnϗSgY?ߏ8#ղ2sQ.^B+ުG,LNNs8;NӿY)G>}ʼm\B2Gk-WmFʽRo"wO\sb1⏿lS)#X↛~c=SӸN~ɯWqY,{]Vwα-/Hx'73;@g,2qó\rٸq]cq2U+~f[xXQ㇣YŹrxiӨi vj+{QASj=9v~RQO:_d`sN*B_碇OцwJO<1=Ϩyw/wߖXFW 6F|٥~]I.^wyzsVF?t\&OQwwjN/[R3ߙ}_zA~<ٶ?rOi{M@[ar^7{IۅmKqΚ#u'1!_]˵+ulƽ|fw{\We`.cO=׫ig&^X$Lw?g[l598j1w=X#,%/r|1Hiy5Sw5*Uҧq\g.%>ߔgnl@{!"BO^,;"ՖkbʳۥƧn?J<>M$z?+K47yǩ:{ bdXuVS~G>_=W6^ٛ%ȼP|OnKGڹ =c яqEESY/n߶{~둔g\~A~H{yRS%~{[~j|}S: W1/Ζl[Wͬ7eNz^˘q:nGP2K 6}m8'g”wtlqC_Ӗ8KwE'ǧnϛYh{sMf<7埛ζkg9k\I|?~~-wv_?禌i}ۿٖ~c/Fߩ]?mK1I4zߵb+S^uů&z}xT;7+lc*ۮv]2ι\giI?| a9j m{׳+9t] ]߶:Cb~&|cwHo>~7%L7+lzKmxv mz̝-ٽ٘s߈ْd#p[ݳ{*cF ']Ows.6N/ɟw_Nս?tw&Em|s}MsM}V7#fx_c$O)i{R~c7ASr i{˔Gk\1m)GJO5qS=Wc;fsMsCMpus?~{GQpOm{$tQMD?9m_ݒzݿd S T/߸G^ g\@$WA{֐,Ou&J{!BzQ.o;x+9vQnK"w)~faO=[Joh|P63T=737ՉV;?՗{%~tu9p ;cuӖS7H?oWL?;}y;Lj_ o禸ȶwߪ[wBǼSgL/ q|Լ΃u\cyes"ϼ3+t?zm#_mw~qVNeҖ)AпmC|"NM\'2\_o-b kΩ V1wo,^9|/+c\Ӟ߸/5Nxn_ _]qbb~7K n8{ .(hv}$S?CxAa{a~=QXՆ~\ yK;*O9W .=X;<F˜g7{F8;=^8;-ٝ^0vF_SCbu42._6.M1fg E?\v1ks7`7-EWḳsc)1D?2o,ڑo#'4ZfLte$,wv^pS|xab`͸~[NY .jƏ1>މ=iY}M߱v"3~{S >A@*EA;Iy0{1{H~We'=T`*G,׍g?S{Gؕ]v.?1#3ٿg?}/f~-⫸1)d^E `ߣ7MZU{jC=1Ad_QЖ$ح86= Ky8/{v OCwaN쉻YM;Fx_)ߣRUc>%w{ԛ e/?ϧwZoٳǥ߭tَ;qN#7A^^1ҫq翊qyd{؇e=n?Ӝ+?Un*TgEiy-{ε徯sN:;UU~TaC9]|uy;^>eZ_c5=zcL#guD~/I?kK JF>f_W+υL{?;h7³+?vO ۋgZ2ј{jZgwT?G sxi/9z3//E+ }Kzn;di a-sUR\Ö5csv/m<S_>wL챯ezE!M\3(ccl2z9(cH(;Kѱ?>*MN}n@?۸#/齸 oH׿Ez]bOq_q11#;ٛuߛ跿2WC{g@cyOQ)[~qI {"}c J3=n{+cF/f.~[O/}f=ħOBV?,[vHYvo{qcyglmsSk洔9gG\o,r|>"/zVE(Oe\|{t(JVkR4Ky'4cE}l("gnʾ`jkgYϱL-Y #)M4/Y+tWYwᾚ%26ȵ#bo??KtM9u;556mϐ#Kv\*&xnvv2Vr2ϥ;<2A|/zdu٢;]3ϛ/0S09)7{ mut?+3kȉ~w5 ׌!пtq ?EhXG}- : S-$:ysrP ;cc髩^C/_ܒޢ1EO;!o%[W+9$@GVkӺNdթ}On<=ooνW|LC$fw-ytA)5,9%P!X"~|#}P6I=sǯ}X+A./:/t %G>Z<.{$y~cy&/}2N{d~NϹ]e2,u'f9ݿIҝ\7a#k}nWK"N9ZAM2 ={qt1 9u{NgM9#~>6pӏdHG^wbҕJ^b|_rB}J.w& ]nݒ7?Qzag$[w[pG ~v;n!w#e+S"s};-ChQD: }˰agj]?I_,ĿmK/πEwrO\@)? y|*m:{9OI~T=|s\سJd"l2j-' %7ݕ][rn:HfᭈхmKlSdt!m?} ХR7_buŽ`x+֏xClMus_݄~9~|8;'\3m{5Sw?:&е)U9˦{3C{ .&ѽs9O/&c |MyŔww|Q]'ez;u/7#kk5ŹMGK[cݛiw$#._|.?_s^Gw?]ԏG+lLOotUGt@7z9tI/zW_ו>}?sSyxtr}s9zޙ~:~Ww{- c vjKx=7u ;D_p4]?ҿu;!2.и j[#~5sis{]Ebgo>{M{{m}r&|bDO/1?B~$并2IߖYW䢽{]_zAǺ~G.m8qN !F^O^iQ쟴'7ŹۆϏߦw){~H9y^ؽϱ];oո% b\FA'9󱒍5R}4_c7?7Rvѿkk,q:>~ocI/rn2kh<;ri3R]qv?+yf,}z?ʞmRu/),3x'k^E9z\c.J<;oW[ݞ^Ӄ6]_sgFw 1wzg6C ?zS"~TįC8|'՚Tw͌=0n,Pff@SqvcR3f*75.82K>3ۥ_bti<:)gUSb#"ԡSÜ߇vnuo‹n=YW;{O < 3k&(VOѻ1/8WHUO߀sE}x0ʘ 46?Zm0)ï<"Ͽo!ļK7󅳤g^.Kfmf.Mk{Rs7oRwZ}?Bf_肋<KǸ``YJ,w;@}-c_E}6vgɫE06|3kklb?_ysIz|Nzzna>/eG3hL9Pl|:L]=9 !}c_xy60eOջ1*母 KX?xձCn^M%NȦ?d¸4߿x1 DoiIOw1.30o_"$ϙ3G^g'EЖ~c-~-OMm#Nlpf$cq1]y|wrlɋw,ec9}_:9e,&~ ݵs~ta[·sqE=$g#Dy 3pGKſƟc>MC0ޏ>I }Iꂔwg3|Kwyg [N<==z_Ζٻkg³kgo'zwF=h<qM[ eУਵϴ{<ITYAK? _qxw\_ 1pOqI=$~c?>uGs 7{dK!leK9 ۧ ~]+y##WC"Ľ+-8 /tғ?y='ؙb7mS[;,Uq"~]_^9)i~`))cs9NgIO蝔!z}CLU̓?-NfJ\wfy ?y|?FSu6Ӏx@6_aO~AMA~y& ϊxv`烂:_zX%F{t1߯6cSn>2UŸ}GS]ίLKڹ ĵxnױs::UqmwOj}t h:xk-98;?(,g{zu&&0sнEާgզ&olW 9&ߋ.Xdl;|FQM7͉ r~?b#E߼4/)yC>}Y^xQ|{ ؂1 ƗX/yeL|ĮZN\.L,^gɛTM禺R{Mux8^=L#Ogʙ7E#ו,, w̳[ ⟶bS$ϫrI? !oOA]1=|"9|TEɃ~ږ<=yλ'"}gQ֏F=҇㌏˻Kv,/?>/kKʒ3!pMyC']l]V\'߁%h]f%L[ NwnXx7F;6u/2y]߫W瞧~gz9+g0@;}Mc gFǻKc+ w{Hv&o=zbs5!)Ek7).:+Į{8䆮\e@?2' -J_ YC3Sr%"Bx@?4c<,~}BFk3˝^Ydl߈?O;{ ^A|ޫy~5^v8gH1yȩ}{jG x~V=u|cr ϹLˇwhB;.^&ҝ*%/|'??&[F~)жǚZ)i]wwM闉SdɗsfI<$Y#ݏb;ɱE~3!Џ`Qt5c,PC+r|> ?&/>?Ƿ^>10رg~''?{GQ3$F 7*&o?/vyichr}3Y3)c\QMP5廢'_oI@0—w TQƍ^F5wq/{2|QbMBwԸ?D'B-&&OڿكavOes,r h=ӍHۧE/EP!v`9Aq~3Wgts^r_cRށ?9Ot*X1w͞2|7+~7὚aWqYxށl~v\<{oflsjg_\;ǚ{잤q~$9mR_pop-8yB|-]9%%NGgSJwN>E{g&/v'> w@?W~e@fz+zLxgո:/3?Gޙz6y3s,)w8~.U Y:pS~9`~' ]̟9+SFq.c>7Ee?hr3gLoʎ>)in\SFoI~6(2q#x/ZܤI>CjS3UZoKY$Ȯϻ?,?8>o༔{&D?rI|m=ϳ)c**Gj`7㞅?&߷?'8M!$Skgg֝x~ e챟.6t1^?YA+y6z%G$]|kSλfʳ`'N$~9R}:#e.oF{S^r>;GyzI_T;7Ʊvn ѫO_g'uu1;G9RJѹᦿ-xo2,NByWω~uwrڻ.wyFrG~d#6ݳ~)7FiO|XoKiu 3g~F)y}^4'|\lKg}#Ǿgv@Gz`uGze}YEO&]JX)/6}LH!$+}*x >H?orkюM1~l)Ou]˕zwZbhܳR<љsjg,-$OwpW?oYy\ٺs^Jy'<~ wd}J7+fɻ.g{rU/uezUsOlzzSS>ygkXϣK~+{f>Iv߳ RMN⯶??)g}K-ѹI?Jwݡ][ǧ[?' 7\y%rMխoA.^r\MyffMjF_Y;3>ZPrx${G?gOIӢ ۖ3Wz/6p[~>TrRq.oeԿoL.!=e=kYƺkell Y kgt TbOpMe <ĽClхmKqy36晌F NJ8eU[,OĉSσ<;=㜠$!̹l.3 ?$y=sX}vn¹>MsIGJΌsxig#WLEOg+QUgf{f<s``^ylp+}}͏s:Z:[ʟ䇈טÔY݋<ϼş5sa,D0W!2z'r)q\GwZ|] \)Eu|P?gF)b2Kh H?YF}T}CzMʳkNaLܩf~$cT`G3Kq<ϋMq}ݫ呻ŷ$< Brd,p_7Šg?<]ڹ5ΏyC<;߬g*Z߉5wQbc$e.4ɅG'l/3Mܸߞut/{8-U#~k.#3-q#2d +炜kE>C6&hNJ1Cu<D?'R/rߎOݝ-y@'0lyM˖1^$@Ue{͋Ƕ?_7 $bkah֨Czߎwv@3{QUpu<[n(㮙xnxq_ ^o>0g"a-Ow"k ^1EEט˗=rDowՔwe~>Sb7-.(tbװm/"_n~1Q>tdyq)c$yv&tm qs9N~3\m&7R7'(2f6eG o|ԸTݓcgX#?اvn¥/}l6v9@4.)Ϻ}^ɻ9{ilzF*r|ow+W1ējK9uSSrTwCܟecɯoJYxgRo! & mu"\~|Ob-`X%3J}AtQx_7uq'0JϰThb_1gNrW<}~NzEk?`o-Mp>Oc{7/0HWD]nN{K6/?=jgFژ{j\LsD{ݴ7izgc#=R;wٸR5ɔ{bߏ~?uW3Er}Es [k9Fa꼭矏!#ѱ֛`Ggωt~E?{^|#ί䫞߯ЏϿ:N]9Ir@|!]!FN!C]w 8h)t @?6w?} )8_ [H$/tJ+q˓Ey ɥ#3U9ۇ=Ɔ†Ew 9>;95-jt<72~/=%zw4Og͸ >+zqL]e7tOt&?',J[?Gwu_s/{73@39?,ٟ{9bo#K.z`*e 0ln, |uӫ,W( PB/&%z1B Ez@Mz tYtEџmW]~>9!\揹d>Ϲ{VDWRB6 o!7t8RvS=x<`_4;7(rBb)ALCl OHcd}I p9#^nW'S>ߔעߋcz郣Wc}Soqg-|Cv _g=EKk~Ϝw2;~9^1}{'+w#Gd8@7ہg{ʗ'9p<+o_w=D}}=1GF]=BN'|RJ+OvMK~h\Rg.!Mׯ0D욊{-QCH֒;^|3XR?9֏ =9ׁMs_}m8b㮷y9)gY5@b뿦; S?W};I>xwqKܓ{'|t䘺|gb߸X ~swT?!=7|(-k0ҏϳ~s,9?Uv85~!>ϻ\W5וg'P32ݏ)Sv'VӟË;.z5։^ccS3S;y~0b]֩_K*~:>Us o7CgqG;#qv]Kg0I3km;wysSǮ-^ڤ%`u'oKLL=/K~Nʉ3Ɠ|\i̜ :%w`b =s{auuv/ό ǹ%.<+;Kπ"OC~X+,w5s}RկliduJ YfV wIw"Nm9ɵ?S?|BBdNOzZ) ^u.ȋ:B$M{9.ZIѳmy/ 9]NScC=CL bA#wϱ?-7`[&}n?ֹxVz'p˽޿3S5sAm_l4Ž`\E<+! \<1|vڹ =?=uvNZg&'&)$x,a{p-Y%޺'`xXrԎyhq)&~_ EF\وnWSĵqbө4cFEDM1UA[Ok~&)}PkJiˏxٹ't1s4og\Y;7;;F|@Xp$9M>Q6=a=^.Y}t 6bGb?<F+} uz˯!H?zq~G]-_wMu#*.֭gk丿}`ǟ|My-Reg|ws3ln?Jbɔ{ޙ'2r맼?C93n#ljugE8\dzO_Wيmm/ g_TV{l?V ؿ tJOMOy.9r_;v{K<>>v^h ߔcXfW7N_mj*}l6 ˹ aj'>{ާང|vV|~dl"-㹩sOl}?z$@?<ŏIyLb~ BŜ}SR^Q,BMyĔ!FOX_c_'|F79oMdwcH#As]ndcjɓxΈg?#}o=/~oʽܡ{ۈzߵ:Eh}~;!HqOI u{vTD7IFA3u֩b!Ԑɽ[}p3 >gcT;ǞxLI7=Sl$>'2V,9=[m'J2BQ[߽S$E?5;'=JJg%+<'-]x%y)bDKᦩ?91ex6ݵ3Avvڙgd*:u6v5:CV.YEO5y/>p6E9i<ߛ>֫E%J6f]E&ɓXgZW+-Q0Q;YCRZ3/1g&>}li4H#6t}{7-pzv_`Ǝ<x?y')t۱+5~Eĉl8P3 f4W3._֌c f'}Mf,S_d&ǹ;:e( QG٘uMw|Su(:}4!, l}$`n-9f囒C5 swQbxSGx=WGϏLYldwϔҢ퀢]<RdcLMd8=/B?}y5u[< o߾h];I߀v3g>o-w<*>l ?sKyN8p11>f3gl-g79rqr Jya)8~H<%c >sy= 3όUaɫ;[_dwC>2S \aq+^BߛvKy/u2v 6xK(G\zĭ[}?yWÊ݌=(g{My5פu's3O`.fH 4#`˸sc'3ϝN/&Wb"'?3*6i 4N1;7XT}%ﺧqzzسf:b#q"!wۘ:ћXpL 矬? OboXf?" fO ߉uߖg^(?(2̢E?cco0 Ǐ/^pjn}+1Oa05!_+J] !7ɞ=*5KlS|(1XQkInAHz5>=?4e?NKc얷# ]k 4/gs!5~Bz CG r;| rtM4}i}ORJU챯/7xFbNJ|ll}oQſ_+1ϳxYoިW>@7S .Ga9ӁElS?|-'Ɩ_|}?%J׬-t3v;QpD3%+trp&dI' mD׾YEBc(S;GpxIսf9kϲ%HA'nrscxp6vY)c矕2.TūgF|#坳q]E2o?\A-u!7J/'ċ'#>-JtYr1 Nڈ̻) /uMۉ˜"wbҒY [`uuM_Nҍa?ؔuG_ Ys{^d9Gt׎jYr) _Y;_GvG!o{ʠ˘ fk*ϐ7~{{Q;76_pnH8v_vD?+:#biѷ+%~ex?3:~UBeb$'^{6<9=t ?P[ K t`Oɮ-$gyސYs֝?\'GJWBu7*{rAI!|ȷ;4&c)>vc&Cni^nԑǁ3F!0q|#_M>&HN^'qO)ׄ=I^!˄Ǻao.Y3"Y<7M?}͗:<}pHݢ)/oKsyĹ{ (sXKҽ#ayurzO9'Jpm؂*K] [h6IIl7Scm$='\'{1? >K3Q'#c]ν]{їKȧ]B@_bxľ'b\0OK{ȇ~A>IJVs%$s1γ1]'B. [jP$?.xnW>vJO<6e e "}m"9L0Ϸ(/^}W{?/^cJ ߦȱY&-r^,We<?xNدؗN=)%M/"qҟ rK  ~R;0F}(Oމ{G| &OT7a&A}4@DƚZwJU{M-ܺsQ?\smsjg|*jO/g}cN?yHS..yu}?R%gEX|>_kH5=O}'7U@?,e3Z1h4)Xb'ʵsr_Li 8b3-kg`P?I8._l)yЏ3Ѹ ߾=\7P+"nx-ŕ"obwz8 ]tq %YQŋ>#5^!Ocһ'~3SE}Ԉ `vO9"t%ggCKE7ѿ 9?sܕ7{wvB|iu\!:syz=Ro|R|9F\M3qqK"~t-ݼ WC6O煩?6)>vOy=~7.,6?RӜ)9'\$>)IݿU~_?Q[[Y{'c3-.WEJ:Zqg1bCw<d>ʱ_%_TAS{no3w3yz1~GOL'"Kq9XL/Ċ^Gg?ѕ?.._TƝSw^bzPO~!e_9?>X~5ς gyvr/g];cOНijwv|v>us)b}D߃g|wҧ^z '?$V_O ;Gj]GzAbL߰|x{u OEDD>pzL/q~;ǚA;kt}ıO{tl=I/ pذnuW 3Cj1.oMR{'eo5'r<3Yz'<Ƣ~/4s3W?%f<q{;Yt㵳337>_;GgWv}y?~+\9W ]{}(wqߗ}H?%]>;C~>W}|9 _r0l Γ\$HnT̸lK@?;\Zʳ$|Y^ܫ ({h(AzhEX1֏=%[/_S~w=AOt/l%= /ӑ7~vSyeQ? ݱ?s~Y(}kgPA2K_ Δ%D?1zK?7{ͰmEw篢 Kn;g~rVĖ5[]6{'%}as遼7nG%{v˾D~׳RAn^{X?b~pCvEŹHlqlgy'oI8N"GԆmKᇘ7=бd\1=8W˔#%Ǟ.l^`oϒ]M oMuj ҿӤT?{=_R${]N<LRA"k}Zvy9٬q}vK^ȔŻ\,5Ǥkxd `a_?x/AIaE< eudu#+x.^c✘׊q"lk{~ț8'–wKsSkYڙL_^8xPǍO#~y~EW7B6\8)(\$"x"?Y%7 dsw^>=Ό3m$R#%.uߧó ߁}_~}"b/' jq_@{0cyro2޽k>ؽiz3o83e?訔I7,5kgZkǤ?'P G]3[oįO.r,IaKӤGoA27"1 푢#~/͆' _D7jO6"?>:ǵ=R?vYң԰ԧkѡ姤U<{E<GCϲo"~]/u&|CCyWK\ן;z>3qw I`N7In˙*9ēw3?]K7~>92ioZ<: cUg)6_= .l3o\jozs%EYqM֩ EF_<;a‹:y738;'nJ3<3uxnn?KyDc]YIv~{$wGi@)OT26ٷ6/z[2syăM?rAH {b?:]ޫe/ҍSd߻UuRrw+RHm?I{Ypm xhqKܹmb6Wcd 9 cI<7?29g{Qwn޿?ßebLt״?NoI~~%Y~B.y~P3z&=!x.MI%׺u &~i#!=:垠 húo}г@a=hKXrք~:=wJNgHt{~ ?M6p^^x>C}3ѿ<} %`\ٌ̒p_^wϹ\;5&ŃmĿϝ^?ޝ/I]aW3oבbs6'M{嬜Al-ue˵*g_ߨ]c] ~3yOqb\;1ce{=@M3qW?ֆ#³kKb^t}syZv}u?6)GYV[@ǮTƵ/<;ﳵŒ9sӿԿZ_nęeslOkrދų1v.Xljg]~g'';'|!C~cS'}<).Mng؃cNԘ̈N'z 7jg97_MLyd_^,$_INeX%[_njx3{yޚ/W qbKG݃A+k龷ֻq)evxE`&ƾ޽_.Eϔ5͑%_|OoNJd'=$/Gb.C5> xY-4+лh/"fxxUŒ)'=n{u#0.v}B̐tb{ ]j)WIy-#^GQ6ȡW;M,J5ٖ/+gnGfdj?=̐Z?3՝#S's#x_ҏn ~Az:~g 0 _\WE2εlާ9^_0e@dmL܈Nl'9xyL#p@56Ip@_+E7>p{C ZV%-yՔ#'uŊ6V 1!w.^T>x.-nY$EG}(q7.os<}A s=||XX ¹?1j+LȔR׋v, 6| }9K0{l;15~?򜩱\}A޻;₍{-Јk*~'>&OvWEjlbżV=[nl^>p fߒmw7v2/B|ǘrN'z!e^bSh?뿊c *nd-t,oƿkgE׺w18Jy62X팮¼9>ПWCH<|wxNb6ߟ?یM&B^?cb{~7;xGw,22ws{K:&G.>x&MM/A GwZN A>/ ou_8^Ȇ15VW6LCWGKO_b>.OO> llj)ڬ?ǻ%v$Ʌxıtbxë3\tB>39S/ƿ#~\'gv/(Qd5)y@W?+ƞwg&rݛ>oX]08%lgtΫEdk+bwJs讑a{@I BQ枍{hIR1~$=<~h'A~ةm$j?>t}q{~bcy(E`w$0}gW[J _"б7Ju11ҿ |wϣ (閸h"#op?y|R12)zceѺ 181crԴOPƗx?qYsu˻kg/~4{ȿy/vֺInQOfyCtW#ȩqO17bϪtZs$g:X\WG\x]JƆ')u$GW ;O!{wt{{l%zm[~߬`U9y?^xdLU;ڻz.rҮ}w zvCjЉ)yWw6N;\en_?"O=%y4|GN_&#+NjuFbsc;=wm޿<π3߉#hO;{<,{Kz-`c/r楔:p =>70=g.{+;I5>#=S't_)Nnڹx?2g+^W {@N@d'q} 'l)Tt)1$jy?J1Ҧyg*{ё=?WZR]:d|Oy 9PdUQqVEjc/2V/{>U 9ES|i?~ waAm@? L|-zz=S9W'w;9KO?Dn?ɻQc ]aWwq&x8Y8ףAM<.M@wN ?J >M0 }f`J3R7⋐[%ľ+=bgnvud&j#3G셔 ۥv7Wd<:}"vJ\hX7IƏK'\;Ncwsr?duuy?KFpЌ  {"b_Ȕx16?l~5 )i{h7ɲw3A/csS065: v2A/~Lyaf{/l/:y&ylڧynV[|3KnSwI5 C~c?џ/h?ɅKG A=#uxxnX e+ZϗeOoΐ M嗿?77-OK6%Sݟrdݘ3|o86G/[.cotk\#6ӣHs&?lkmJꔱϱzʹݡF.??F-:/oBeUqڣm7~t>o5g {;@r{^_u_Au ~cZѻwC)VLf{}u\no~GexZj짺F{.|s_G- .6A?Sl|˵xv\}WϏe1gəj++l?1ʞ6zb?X>9Jφ]]7qpKkIﮝo)q SOF=fߋrؽ5Cœ)sk`%vfU/=s; a!Jg?FsY8a gN=`XF|@yz8_~߿!xlľD?sR;jF;y|z7Zd?jxn4[DL]/M[i#4w̭M,J zZ\&avxj>%>ZHoyr&a)|)e|k7>:P =<꾌xvx}|H}8k86o/!dvbo,'8b@f8/1ޙ{7b;2Ɵ{޽SbJcg5bH?_C+3ROyyK =L`A;$ߣtnj?˧'<2庞o|Y53H]!E3 (j1&.x `z3Aj⟦ε@ΉOKUo%A̤{0_^<|w ~>x`cN9?NPn(9V< D/&^9Q`o׺ﭝ;v IoL IjJB10w"cn2 ⛗SRYwwԾs??~ㅌMyO,`qH).Ot?XW̕{طlԵ4綣H礰M?2/FƳ*1x(S=w)5і;d=1wOٮ8.3yQphdfxF|bE[c>>)^S@~k3}9e9CtoFQ)cprw<{#sulL9s2v 8~C$]leS?#^ٺcĂ`(7KWΑl^aw #?D}αg-f͹_EӁ_17U^O3.#7dlOWO/{"fczwE)s߃wf߾3zϊCatmӸ:ΆǙ#|N,>_2!C{I{߮1_Bwynĝثfן>;HvMn?|<Ƨz7z<~ǔo?wWd t89Hnm]9{?xߑ?)麢Z>\SS5~7B)O$Mq{o7gA7 gǤ*~]>[zْxO"ǽ矓߽{vMCe<r/Ňs^c9:EKLҩλ]E_3" ~0)7Ę tN=U8epWK8:j"C3$0`a/?J~<ϊqdǘcƚ{ ]Gvn븇"eqV?b߽SE~ 2:A!:]Uك?΍}ewiwl.w[?r yAXNqнW9rnƤ$ p颦GD4ǟ,I?'dz&Ee.Ne䫈}[ťdg3ݿc/l롯'^Gw_s{A-@7|6L;ue\s7֕"~G|zy}ҿ° +5_h)ﰉgBo;곱[$| 'J? }P|j/ͱ=wNq#9#RS;~ǽ4n1O5=ObeA%EޙhUl)Uwޅy۶wbEDjH G+.=$}0䶈)+BlۊODZObM7XjSq9x_}bka3Oq8/ 뤜}_xv٥~txùzswο>J9w)$=qQ؀}/gJGZfOl="{{`w% eCS?z'Ǹj-ψ3OOY0#<2ا#wDE{>ͻ6}n8ԛ?cжă$ذs^E)O9ޘǿ9xnmsؽԱ)1OtG.Lj޷ ;/NS ?D,Xk{r)bCTkHbt%Qclz/՝ _UOgϹt_|Nj_菘|:s}!˾Uvz?ĎEb_x23ϓ` 1 1/`l|~k]Z=ßW?(;[>wL>^\o;)??=Ϲ_%yԡMH8G~JsO2LH*jbN'=;1oyM|%e [ANZRef&c9>3`T2YA8?x\ʻؿMOPSςg\Ÿ49?yYՁ)>nc~mno"q-O{/M-S5htZ㨗o+AOw/wubɲ1_Gb7E\:Fwvnwν>P2Ό[ϙ\Y =m7J ~a}t6P?Y>(";ۂxz:oϊYߋdkgFg:yv+%w2n+*@Sީ)Oel[jgx1r<#o9>r?\g}Kaȹ&\YD-T}ڔ^W1tUAs6S㗒+"> Cch {S:<>wF?O v~&~n9}qM<ǝGw~$>6ΎI=rp>;]K^׾Q {99|njoGXJO@_cl?Jn'Cc+%ݛSg}6;!>ruj B7s ?Fy6l8mdn_^*럷_ޖg୵xxtvGOzO"k}{ ahߵi5 'RYl7F/~X'Q2ݦHSh~2矟ˌE{>3C6qf߶#ꎭx;"ٱsĊ!F!`T8R/Y?m7V)}&0)y7-|e㜸τh~je3߽ϓ% [=<گ~} 7&V<xv9qzI?A}iP'~ &>H}I)T~\?"oJʳmM~R㡷ϻC#ΒqIes[=)mzӝ>и!xw']2/>1/*}2[L98DD͌cp,kvOpMI_+}L_Kn-s"\ rYwr(,]M}yb1o<7vvNًekzȃ_ߡ~Tߖlύ~F8~ X4f딳M{/#lK9nyiBo瀖?ƭOe>g$QbGُ#ԫSA~Ο㙔?>m⇿.a'KV/>>"\Cul?L;;;!NG GX2"Okל*'?&T?'w㙌[kgJV;7婚w^yohlSϯE:uy|y0 seNq?(gaO3ki_~*Vg}u/~\231Z0oL`<~iܧ9 $Y ۮs33yƠy߾Ce]N3as0O,ƫaV{G3|?7) WLy>ݍO} X\{gEg&>3R0a[v/}},9(ȣgH}gBo݄Q)cz,xn|9#JD|J1KB&)%3rm[X Wc"ϿnL`nYU0AL1yn5غ^8K8oc#SE?-@R};牭Y">*~,|Ywy0t3ޡ257KȰ+D;=E_k!6^2lY`:w_Ќ?[OAf9gZ{+tR?e9] zn jb%?J? Mɰ?b}[ʽ?%A{&`laͭO?\_WÙ)83Ub37Jrjs؇9 ogv748;w+ƇD-=UM9b288,%9xȾq#y_m7MǥuܗA~}țOG㋒SErA\@N/9\_ȸ_r³][NџOZTXw;o]3[b?or)3FcOoG 3u˦G,8=T;75eb>Z;scRu콠 1d?R9݊gfsj6U6{,^{sK|}SU3i/ה,2ϊj"cNXzEI/wuz=eS_זE޿BL``ak~!Y?o[ \C*gr S7/U\Ae(}M?BV Ãos ީ/N&tnC1zMv);o.M_PKB?{:HAtMoICNϓ"OI$ ~\Cq7yXG%OrƒY#ylqK6*,䁾w Ow.F _=sJƶ$0vg֘|(rh z.x9?#ٝ'qM"c_+|ݲ~1G/YtQmsl|TM>86/--Z?r߉$\vjBb|jbbr@TbnNߡwdU=sό{ٟ4xldbGK%qw?إQJy? "қQ@O 1/sYTgcs~L1@ !{{I=oN]DS 99NIĽW o%v7KS(QsS #c+I{Sic~h:י\ʷv J SxhU","d;̨ea)E;Yv{D}KÖkG׹Q!]䜖M;3qwkŽ޽ƏS޽ߝ?"ƊKK@䨼׏2%EWwq~&lkE C| ޿ll^ll܅佴E7c>cwK{dYJkoܙWWbc+}O?g^g$:ls瞧_ WcS/Wf"7w}z`*`.JڵqҭO`!N%Wo`&yr?AXv>c\ݪ\?D^s^c8uGnN#XBϥg#}+ #~)G=/j>Jq_ٯ'Zyו3!O-};<$NWv>khf#ٵs߉|>ǿ.1)+ :)մ127]v?6|NRub+>==w}z1lb^q?:Ҹa=~q3vxtN*].}I M{2QSs7j>0Ez_z'}DN4I! ~{/sudbS=!@!S?˧m6ge:.-={s~1ŬT=vWcx>X<SΛ=#E<:T;u{Oچ}'oL~t]o Ky}Amد^>>4^On_ώ(y>uS1|J`S#~{ĥxVQ~\]˿aB.sᔔg"~Sɒ[߫}~ BE'C5㜾ex)bFvgzQ1R,W6{b\ ؀sZFŪJ~|T=/Tw^ZMy즹&<Ǽ!c3$y)Ͻy;.{C!?^r[&o{+Y'w_1{ŷS GNƏ8uy6.cOMWw2]_UӹI)1bcg.R?D҈4?7ݓ,(CK~G{U\R?_:]6s̻HO_rV^?Db^BK{dw sNxOw=vN ߯?Qnsjg_זF7A~[qhb;ynTMO 2'|/3H^dD3mد^wlT Q~_+Ǻ3%_Igoy&&9m#+93;މբGg'Nsy~?E/yHBcСĖ?гcϲcj~+:NiW{j =GqoN亰]Ԃ/""{W9爽7d ן)cb׏!Hgj>'u~\=]3d*b^;Kw?Fk\{o47Vq?el'Z?iLjOtiF՝.^pv9'1?\zҿw}#OFs {A~竤:o'~ۈ/{|XFFw -wѩc8}cJ*nyx vx܄c i_<ė?;gl{~ $k~:6Ocldj}{ x_:^9_okk_ vN9b.z'kuGMv 1fm:7޽z39/t (ܞ-SQ r<<6YDDg=6W9~YHy:fL6׈kWzUs8oUqڈ{|=~<K%/ȯJm>G9Sm]=6r"NuTckoz69&m&.KOGhZ|bsXxfcg6ֿгSg9`/[Y?C&V+v`O`(G7S͏W3Ǻ@p{W{~7;>7.O;GƸm^7F5)U3kֆJ?  ~)c 5ɑ8를pw6I^|dв'OwsĎgc0\[;:gң5w!݀s}~i\)abۚX~\JwYB: ~?"g_q.u 6 hu0"6xSh-&&?iNj'&3wʽMƋֻx榹. /{"f, ؃yg(}]!w;ΈE}Ȼ➂K gسΦuC0@RS$3" /bRr n`]Gb?г}o zv.xA>@LozQ/}'+>Wրhb/1xǞ)=Afwrwcntq5ѝU o)m¥U99O_ %I!i/?K.rzcv0xw۟v)9(]^`_^_5]\mI/+Eka']@|d=Y,h/{_>)4"@=u>km&^QUۨ(5`k vKC%Ǽ(cQ +<-$~r?:yjLo6aWS>ahY[{iWv둽 Gt@ރtX=wZ)>?'U.LJ";^=o'l_;]=/Lny;$UsŽ /xL(ʽGذ$JÌ=ާޝVw5G?Ccsfa_^*~.;_^vh8xoS~џoK~+o"y~<ן%Nv++dÆ }w1~A"ݒ;{Nl.]'..J?%؃HSÞZk#>.Yyߔw^%=ǃ<sS<~ӹ)_ݴ?;3~6EN?C-s`;բܓ5FټG ;Ur,3[ow]({m?sgsݡw\0 ~UwƟd_ok;]|[=C!;ʭhf{N+s~:6e}wǼb9 eӐ}\\w"}!{W-GwnE+_{=~w9f~ӲcZ[~:)u8a|z*?NQ^^rABg <s]~a_Ǚgٰgs,'|=UQ$py7/Cz~Vv"笾w$UcF??}բ#wC;~~߽g/t29͑gd N٦z"}qzg;M89Mrݔ>JΎn_ιYp&{K<օ)7|(qoѫ9ɫc?']@|YN 燼#vbdʘ.)My.ry\cC̒KdypL<7ѿd؈kw/`-z'~?ll5]yefޑ \+#M&&XFkHM+6rb@hjEYda{}l po+OYk &m_ysE_~:MmDvՔWQ~M&myST֟~7CހR5o~"xswЭ䵞 w$C.fFCT7V7Ώq΍YS]|Nm$.'EµlگqW >qQGwmE/==eac/W(ʽ؇9$7"n_}\z63'φ'P+E\'Gu ]53OeS8&S8ΗT;n$QS!wK?V{RY9M2NA  z rؙzWJߖ=7X2LU[=+Ϊr"^s?!G x#q=EsY!OЌ v)םwL*Er=>~$1ch]n|t-Ϩcecޞ)s0exk"{-^b|Wf7\]G8ocv𷱘F<F,7se5S`t^jf?H~7b,?CAsM/{b>WsB{YQ+.*KK_{7_r%۰ws='~Z~}%'}&ux#}8\?_X(Nwث(/".Խ !ѮaC\fG];#5cyԡ԰n2WSE~ox[n;i\Yv$fh;5cslS*XuZ}^U>16nn_ރu>b~NkbJs=mq)a93f/1n^}dƼ2,{䘿畚IҼo ؠl;yKSyqP2vyܿw=KBK3׹Ky7Իemߵ;|q_1Zƶ`OC{Yl> ˱o:~Gz~NxqAONLyf$= N/wRʽ}zs##26 Kz)bmRooI)?{* ؑq7{TqbuJɷ%o >Mu{4N4v=EƘmIs^_?ϵxzJ~߳'wg 9ul7~2g qrjtPn".1砯KճM\];G|xvn9/ttI Sx A PxD5_j%ӎ}GReSo?t#g9ˇA?{?_s^M?ש|A|r޷[jgχE@>Yx8}h}΂czh>3l7NݧWy6~tZW%DS#8Ơ:6?b[ukLubff?>͵s\7{TbeTъ0sW=ܾ9`=D˳mzm1?ugj~qթ֋vS6cι ˽i^ڹ? Л#>rTin+N?ۆ~1)ڏfwT~qj^ǾogKᚒ^o/$gxtϰԛYtrTǸ2Òec@_,N!;kvOc[4q<1eJ%=1v>wK/ûK/ƇI3X?~gC?ӸܗWL^[c-P̘WThﻚy E1g^Lqnzy22}":R3j#"Ky~=|c ļg&_?;=33n̮/jv9)>3T[}h#R4eL))ׯqpo"&g=N<&Λ#S_9s#Ȭg `kUA^}'_W3W/`퉢cFlw%_šὴS:Wȳ軸WEq8CnC}& #>Oe):GklRg*̐lrQcX9b 3ԲϮ+~Ϙ>dZy߻_⟃_>d|"f|(]ml#ffBr{3l=[g%[,3ll#ccN"ޢ~)@6t}vTOv*F7 g+9O;1g~p?|@˘cn1zSw>_4E9؈ 84<ck?Æ+ڹIs*:Īޘ{^;jIs^_U:̮ 1m mSaHԇJnM_E-?1UzK%?R{M3 QwulqFKLL<(}Uv V0G"rI[HUHg_hCtʹo5}(W|'y)d? #[GGxnc xKἽI꿡_c#WwIAҡw|OFOϐ@/|žFԈ?e=}R.e_CƄNat̫Dm׽}e&v9Y4w"cw~_Fc/"TmG]+^mg%kX4Qv#G/ nr[şķ6as}Rdt=}Ŀ'Svnǰ v6oάysCzN/2~EvOƊ_=[@Lsx ,#arW|H~X(EDߜcl'.٢E)W gMQŅF;K7?` {j]3_gqWF/Q?=Tl<;E :_roEؽ7Ȗa/fG7&g[ 5'E;Gl' yAwuQnsAot)F;_]az&܌&zSA>߫NU'ꁵE=r2%U/PWco 15cd8cŧ<_|?'%|] -CtS~l'#?'V#109r׎d}{bHc@{޹gF^]/ 6H(2Vck\GOmאtDi_U;_u$/r*#?OKLwI_)`a`E57pJ\V DlB9_iI- wvv >d̛{kgz6SN޴qE=zZ4;zhG+(s v;O%/ؗ<#p?R?A*^ou/9':"3,{C %֝mtޟ+B/_2~;1ܡ|9EYSuw~c:rq/:-9w-$c{ ɬwW5y_.ݼn;>pLRPC5yڹOI}7.g^KC~۠jXQ9y5 ;t5ǥ%wr~~ا=gIALM"02Êwy87^2ѯS#s+rߔ\*~mka6kecK=;ojtk藸(|Wrg!ࡡ2ɔsІn|Hʘ{g/5# 渵õ33b XܟL鹎kLW/_SEv7Z¼w+%P=3_s>_L(G>N6Ն-R7iKYhCSDžO?3*,IO.ϢK=ǹu@?O W ^_ wOL.r |݌]Ǽ;Eޡt'wfuf=j`zG}[j:n/ YqljNAF}.qqτDwKmca܅t~S5e0~sxT8Up!%r]͆'?$Y=XrOO ~]lîG*^yc*i=vp/wt+g~oxd;yO\"ٌ禿cwR2Ov'SOs>nc(Z;Gה>IOk=SFށ|+yz!m.Hʻ#NIdg4N,l? ƿ]?1x;q⹩/=Zu3<)!zf{7ubH[czx~ =Jz^iKp\]Urn^=[(J;]re~^_wy4$">sƓƩE~M$j~K?y7\$Y%&]~o[㜑g3t--LNQ"zҖ~N/ϩ??]p؏?!va#\>p3H/u˜Ϗ,Ǽq)>sS]i_scRgr'ߖ)ρD-%ѫ-#?۽ğbkNz~"Nr~ӌ=)Ų $;was݊g];OL'uoOyBqqM/oM}VMMv9{AzmHU^tzCgnn[_]?L{OTU4g[-痈2ǯ FO1M;~T仜+e9_7qkԧ4?hMe }Ks/vO }{pm&x8Qu7麗5ӛ/$ ϶cs*t9aϽ?uC'ǿw:#{EvkF11_oj TyK9F!?{^Ȅ Ƿjȯl}k`^wr ҷ@zoK)-IK//#Ջc!fHy1qL05%nķ0MM$N5H睻YXυ^)cs+[=^ޮJy_-3' CG\)j?5yel-C ؔ{ _NyWL@?!ҽ3{ƾ`aۢgghn!Wd4'=|zN JNTETqO*X(&1n97l0>">Z\|qh6&]%:|^Pr@7'n>ґ)׿i~^o=ܙn:~}!"~BWY(L)s~P f٘^^o9`-kޏIU:V30+=ӌs1fuI8<p<L9m~wf!dܢ,mOtyw[x|T96p9\7y{qo3\~}@1^wN{g V*Jlc!Yל#X?*߻ESƯw ҝH0\|O-24~,1υ~YA0,U4xجg t15精y$g}agzl {p]M^Vߗuo?wI;fw>a3e7]+J &b-8G-{qroΦG|JN<[yN߶sFw;`f[uĒI/~&d/eXq i~ױr?r=s,xrCOfx+Sf+{ xѝ{ls`ΒBv*=Ԗ~NG;:'}D;xl» = 1/O>Hwb~s6UY>+egE,6Myf;_sl6BTw[eD$دeWg/_鶧|bHbRCnrsI?{$ՒhqST0d`)y̹]}`Җ~ ;yܿ/g1NĝSd<2QW1~]EY?iK?1NMUL# V<]r?l{y~ o4ʹSRGE:ֱ[=FRtc=(ΟlK]qwn?߿o%W,2?X/w;j 3| r\ĕHZt{ɒᢙn zQ!B7m=\d_{3aWu3wAv95;>%Z_y<';kyC3oc*4'.{?c 1(IG)EcVrqmGf]Y?wq+ Spjό OKv8}{frD2ư5J6z GIz{ ){h|֏{gf'¹?Gx\yW)2.πC?y ^ץ^ ^Dr $~N!Ǒgl- `Sɶ~3_*(s$ 2Ǘ8MS⹰ū,N/:tgCgݧȨsQЙ3j;eϼ/׾)ygGo}Gz"7  >wc_D%>VvTcRPT_/^Kes׿U"ogc#l{Ga[sgf"W ^s,Co݌43\0 GS/(;\;7~S$wx&.q]t rwr뉷 OnKS1N\-qɽ4>s=/daK :?'?<*)ǟ+=3+l>iGrILd3žɳ`s +|z}3وX'G?O<-n%SνYj/P{2{Ý9} M4xm/d4mp=3gY7%'OkK~Ǿg/?3ɿ)`{O"K򙟬O~uۺ<䪐ic hZ1jCuZU}s'99E==":RC ?-Sޛj[?7}LzmГS1B)lo߿ǽc?} .} lKrms!3h1~J:6c,oK[੓3ko^^MY]ϴhi{NJY"ΟLHv ErIJ/uהW7"e_csۺ3jgk;O]_~fe#u/|e=#ޟkts E-#~<->1D=gXZWr_a#쿈@= ˖үw4̒ygצFK8K9U~Ϟv~Utr}<D\*'? J_꿋F<{?F_o.|ίKC7o_Su/=OK=Isu˟ӗ0gtOW@1rxI]FvJY}P~1raEwy߷ej[M=u;[kgd3f{Aw Ŏݩwfڪߖ~Ĕ,zW -_g?qV3U~ǂm/^9X|ݏz@ 5 22qcOG^;3sx8mҥHq~d-?#!3boK?9CEQ9W.sf7CҏD/ScHf;{mK?vXin7"e"䔸ft{]KXs#+02z*$1i8iXzOOa2噿0 #sFd"G28 8Fh 0ZY2-@s"QwYNcP9Dc?P;7cmۉ?:l\cRߣG?íwG ϛW>%̒*^|haFX̄һ潘YfnuG7"gA9Ydxf]R\EƵuQ/<+1o8>e73sW!f/ߋޒuaj<^+9ai~'MAtFNr珘4nfZzD++t҆Э_fOsݗʘ{S3MӜ`Ӿ&DK?!US34>YZ_'>W EғG薼uKx )t( T?_a=;CMy/r:pCyZ1ű Eno0V_e-[w\1W}=wz3D#8\( c_ocrf8ߛ<_*7<g v/3iظ"ECwלt͓?i8[7M̅t>5dvhϤW;7ųM&\,kW#Xwc8#K|"ux3/qaߘ&W60NW ҝ}V um}m&Yg6 6?D ?Ŋ4v9ʂl K@mb_ew<gk7cW1.5oяsl.߀ɫ//=Lr \xV-g>!{YU3:q-b?nz7w!J̯Y¿^j?7Ճ|Ξ:-Ug6Oh?5]@QW H'k332~z'Kx{C'OiK?5.t-33e#+mصȸTs[C~,JܢqE=񈱖.2·I>;hK#?^?j}OގI9_wp$Ǽ .8qJxn@N[>C;{l9ߦrgPJ.9!:yDOMbf 2zb{]_◭Dhw %]~XA'+n{4_`_BN;)cNE?A{?%eٶ9bqٿF4pO}Vix[i)Jh}/O߮{FN_?%_EС)MFϘYЅȝp .Fa>r'<ƻ~G-9|RXs_]xH%CS=|O8m%1/dLewfiGN|IS(rMÇƯF."9h{+wS&~[#N䯈auud{{9qg%um-GmE^2{],92V~|)ssNlՉؿz)"3u=ٔg] uk{:l&}Iv|3>9D~CuR$~AvѧQ0[:Iː_jEvm,zBv/,ryޯ[t67?< [LcT2Jqk^jn~R~)uz_}|yxFetqo_qASTk[byC@" a0{W?G mV\wsS A!\1fp'pm7c .s 7M1>t~%ft{8<+J%lk"{X7\8XL1 {tυ;$x]wrxyZR g9KkC_l@v܏M}Ca;Ko9Ι./?9VƼ3Ėһ-ro?y6p_9{]ŽT|yS;~SJv?8]7ʝgۡ7oW>aw=7..S_֔wj_5奛qn;%_.4.Uq,.bS5ߺEĔOrx "%R϶{GKgZjS~zG͆)9cS.$G䗺fE/ >h66?qkk:IrG{Ե?Ao鹨+=eq9$Ȁw Mս`ߐޡ:*6lmhw\LTb[g@W9@|Aw¾:Kbg9_5}h_7 t3?fc!{c臌~5qk$u#ts{꾳&;tn6Ց'sAl|l>q n#un86CXDdߟ$.qcS3x:yM$<~yzIO޵ҩNHo>*;s@ɽy)ry\Žr1H=|kŠr ؗgώkmd=ck禹cQS;7?C#XgGYL= Ľ[Qj&yWcثSt?> 6:J sXwwS'%c|Õϊ<8:(O "q/jQ<[eΟMohFgp=+&=Hs]/YitzC_ ZN߹@8'Km{}d~1b_b||<3Q&K ]?牰4.ױ)瘑1@ wscseM4X l&*0jb'c*_gC1]׎ |9y+qwymG~M~;=Ӄ~ }ew{~G>=]\ rLu~FNwۡ3x?SCg~jB7^BW1~7F 󟎿迍sʱJוϕƸ&\窐k|u%{E?ci[ʘ:co(u~'6~=qxv\ȱ:orrfʵhR>_下+}_=*>.,X:_3bG壺eّ MSkC>?y&zƽ>Bg!]$W՝<Ky7<EOT. D/2K,yiQ~M_WwlZqM/#?~Ȼ~=yFQ{5q=5gGCXN#w63w8#><~wAo##5Md;"5+k|~4w/9l~{_<7!FA"k'8[H~c.\!*܃w{&~O&qe0dٯ?lwb)V`O f珦?cճ#2i#TL'b;K _9%~wy$q^8i6c4Un9¹ d9?|fC*\vῑ?({U?-ΌSvO7{SuVg^q/%Gl|u{8=;H_Cz'|~r?[ ~rߐtq#仐]r;C~m}"[Ui_>Ç^@4׾]|Xm7Y ~;%.{-OXV@ʸ_Y]]?"zI,җex\!yg%] NaԖ ɃbO}"إ?IC]OԀ=N/пMgv<:EM_m{Őm$̉nD,< ɵjc}WKF:5Ź?rOCoݵ:U<7]i)ijRU3/%UE_氿.Y_t(9ϋP't" "g_d+0wӿN=k"\/~iFaS`Rsˊ3`j_ϝ {Ax :Q;'OuuBOc)8O(BWJ=k ~>]5YJޱ_ɶ%AD5b؁\j;)o$kwY$N4ȑ)א<|WT'jwb}mtV˧o/H^(}8HȟxN俋]<"\!glp[G?*_ s*z?g/\ׇ3lk#^-gAb\$q_6yuԪ{~^\ĈЏ@ }oTŸ0~/5NM\*/>{ω^)2,8uJusgb{ψ{BJ܋Ŀ}Z_d L#&s.~6n1sdzmo}xd5$Ի`ǝ~wbh¼F?"GֽD?n1|M\J~~G>)[Q_;o~'s'5i0>@e5c&彄Fߖ~LSЗb\SŹyM= O!kGoZҜW*c⯵ȟu[voyɷێUvܱ-q<7X;S̠k)1c})F!Fq.unOԔ,9"]O8Yrts%O=5Sz{6fI9ƥNtm'q3\NSsjM$7GM` PE󰗈OgXS|Mdž 7A_z?Y-{{;ЋT\{W߶ |odq95¬+>4DkKmOiKvNZN_ɵGq#wQѿZx(}D7?//x2==@̔q2^koiHЏD/{kTU>V3tg8^+ʹ?>i?|iު-7=c_'Ϊ;E\~YsfCc?i;)}\G5/Vw/ݼZ1?Sݒk3~Ĕqr~y7=c;ks;z.gTMUx:se&`= 3y2<I``Hs$̀EXdbur[=#}mwc{9i7I J-+^p0?j)]tҵˇ~fjID/oeܯװ`w_]qtٯW""~ e ɵ{_#R<'U񯼧@]<`&?\d[~`UdܿI~q #3{{ }2]cN;-M~>)_<2KTՁ 8G>;9RaEEɸ{s?3kg;kgM+9+(cGݝ2v?Lzgbm12|U06閸he8bA7O|9twaRc75vy?w])FLG鹑C$MNy╱j%>ov|߶ȭwbq KS|Uc b-wYnVֻ/]VzrT]w,s$W8t[4w甾e8&{'3q_?ʹ9D䢎34ߴ;/eg=,e\uq7Q/+>/^1|F]gCn'пB3lqgyӆz咒Sx _y.U1hiDs@)qY~l.'E&WH?W7='쩱<'ݳ?橐bslqw,|be{nSx8J>=;9eEy0c\;;rk|L_z{~W|4ݿ{8>U%Ra:xvwT(2hVx7x `},:W/O7EW'{U\رo ;~A^My6q<*_Cq*G#xBݼ{/}Nk~{my㼤 c7 w}=<$5vF;1b,g*33k&d'6c&/sӘ?ɁW-X}lçL{x;LĢlK{ M)!!H_BE+-2^)k'NO=gCÀ8p ŸKxOBޅ1F;M%K'Q8HT=wNN/}|)WĉޕhW}ggC@rJ"ۗCYL ä#V~ SR;&eٳ>8U禽~sdH_5S}69qOOUwSn'Ewl,8pFgKڇSmOp!㈔qEAW)^M,齹q ٻΖг8~t?9U/_$϶Yw_/ޡ\yz 1%zԹ@?x Yƞya~2N*ǡ'qcS[tٓ='v^gLycm̅6楛~ߩKU' 2;XT`uv+]޻Y.(}O 6rќ6bu̳C΢l~Kt)|i瀢]q"u[)ߛw7G g'71؆"x9,V޿}6w~Tw#pKQ#&>ϤwޔLx;>}ffTrm@ 0Հ]y& g o;jgJ'$ZNM9@̂w|6bR/qJ|?Rz|_S%7>\bݼwmBm__B ,|hp?r='v9?L!bzPw65mQu$YlXԟm'bwŝ %7$%OH$3{A#sSފuq3UXt~SvI+:8G?3Rߣ)nl~[{[g] }&`_/+vEwyg":/wse 3bHfL}b?bܿq>*_Ne;Dz'?7cEuZ,սm76?sΓxL 3Fw{tzOLNKhGEl2;R=\ۤՄUٹ7_y5 7wumkb2q>W{XG&iӞ&^7y!goP&_B*u2L[S='+r?Ԗ~|%F?W/b"ǚ)rq=Dbo[&= zm?rL {lLjˮ <+EvoK)I?|x+;'Ŀƛƿ M=?wݾύ?8<½Axafaj'Gx"hs~Ӽ~l <6 |D,-ȅ'ܫ ཮[~gC)&@ߓo~,e촋k87?s=թYM\?',}r>iiηѝU޵]˟Kèmcpԛ&zc*{'79m߽KRWk^෷\v_93Ϝ.s-XH&;3W/u2^433e_Jll6 2='зR}qo=sBܓ2I?ai:;8o{D6][Fs;nܹ|C'IO~BK~Uҳ:r@S= nkA;cETŦCLy}Vԕ.{oKs3RΟЧ돎}ElqruupbIbAIn\qɶJ?&L-έZoˮ{#k&K?S jȸ(C$ӞӃoK/W\;2~,9^G )JKwJٟҖ~mW_ƥWvr?rJ }r_2)ߖ~|ggǬ{aoKS瓘e{7H_^+ ݻ׋㭝\kzZ,\lbwd\WwۤlCy<ǝxQ8Y1)N_b$J{8;꿞slwk oS>/s%fŒ6˃=n?[c85$[\OL.Lη5oxΞͿvn kwy%y?=0?>~+5@=3lӋl_lqgoK+&jѾ+$3gi^>y95r #0F?+wK/-̏o9sNJfG?s]̱u߿, SS'Em~aE+ l3Շ.1̬3z>6elT4&6gOb64Oj8;g_<6a݅{R"~#gG_b?^Xۭİ8X?c.͖x6sI̬1}ٽa-FqT?v,#V֣^-2&"Mbˌ|іJn< }1η8W`)<8og-d?+̔5k>AN._<+ډ5J|cBN.=6-:.hKqi;{ <:XR.2`R~qeK\0Cz>~Wd&| <PNtp=~~Ǹ^Ɗ>6>>c:7$cp廉w}wh{މqϔDQbH1oމ%kݓc(GcIȯ';~nNؘ.{`WiE\n,;wN vo4ѿ^2h{~9(*] &5޹hw%'9}| } r_Ssw7r\Wy_"{ƚgjn|Y ~_q ^tr`$1MHz&d9+zY3[_όCA5埉k^"'wļ |C<; 9"c{7 7V?Su(/&v٘3kgcnQ;G礔z{Hx.dB?5+)rR֮X%ɰq+5uE3-N)ΣEOxOF<~qq%i_F\N?B|N¦螣sK]ֹw&ߏ6 @v9sy[i>rGf{ =mOxg"`1.sn/7^%<9/,+boH~bTŋn}q{<} 1GS;=Cn"/eLSo+RzEe1z'ɮ{ ;5X- n;?SoB9N5^IjD|Ĕ䛟2ݛC@?4OÚKSyJB"+|OrϖBg,>$Hln窾O@SuN1炉~+I.rNa\&ݪg}O~Qϫer%gt9 OHyOqƥj$MxxM_w|NH<}x{n\ouJ}/<ӵ.ȯ;|{E9ї%@oKzGj&S&GN싟FKHܧ:#yX;-8MsdyٳjGo6$3N8ay.w\~;1{yg}.ܩ~D I::W_fd'Z~kȓ&>^S|Nd|Ըd'ݠEo`ߦ:91TUu0QGÌHEMnrΩAФ&4&7AcMA Jdw>>{Uy []{E|Lʸ˵RO]hHQUkq:C/asMe2Zr_-أ 69*VN Ɩk0f;-x àK4Oʵy38ؽ!528X<}2n\/ Ҟ؛ bF>/r?bn{ 2>W#9JQ%nweKO 1MlX0f-n-.4\:Xn{Gb^w %yȝ%gTThϣ^78e|Rҿh=0UGO;+/g10=w"Iż#0󉛟25l#ەŧe|tIe8R뙖_3fvpb=r = /ٌ}x]= Wh:z}j)c)ǵg+M.1&XOR};2Y5 }]tA)/usM|ʳ3~~uqm1!2sбynYY\>u@{;}F Kk=˃3(E_x>ǵ=&M/W#cׅswN[A_4ߖ~8%UlW Ì=({6C[$HUiKϪ,gٶęD^7g/^z+{htoԏFŵ1bWӌΏ5rO6F\y{hKH1Y]icL\7o/7c_.Ώ1sU,{^ƧW< Te+bMxVMۄܤ=y~pXG-g}aT6RS==u]C-OOY=vВ-t,,4՟O0~,{^Ƶٮ~ƿ5~fovŸuk3;'\lrJZ~1)oKzfTƎ%}~dsGkUźESdm&|u4VTG~t˳1d++sf3Ĺ"9˼nk艵yں08ÜkcE-Ok*~DqmNKex=]mh[(,%A^^~Y/q F+.5.V}mjpFnoƌ%MӉCҿ_{0)kVP`<pxRW(]Ư"͇8vl/ebow/=y_d&vV[1?_ո(V2Xxz{9ħM 2o{g=p~чL,u]&MԮSf ?<=63xk=?Ƙ8 koJY#Md?#=k}$/ydԗ{eG^|~d6Msq̥^*1镵pqT?8t/1 s0/`8s6ϗrk+=8Ϛz!b/]g_vB)Ǿ^-&\J_c{x/S7řMvl`?Z8=S/t-9Ŀ b%=ߖ1Fь1IվF1z?쐝=J}rV~pl9m~023VͿ?M}tpK0I\7+<0GTʇRs {^ƆoK^MU\c?[gRB[}]VϺzb?5qk<\?~)e<2<;=K-JO7ي- >:S5}aN)ܣi'';vu~RkIMRǎv'l}xL;0sOrD&kG⺉\c~px~JOC a|B 4a)J3|H]uzH40{)6).M /lGuSV 9s`G336RƃopZv9A;Ed+<QĝJ޳_\ _ yͷ_"߅@3v_%kl gxtX&eڂwqb*Ɵ=[8 Bze37V5_5q|~3߂rvv_#rEK#~{c0s)e.m /9?k3t7F ~oWOzJЏZO{L66vv Ic-%oB\{˹eKׇA?63: ~$R&~/ !a/xmɚJQ k{kcĹl1lό~^zwɡM~%{".bSϕs۟JL<$K=smR1p}\"c% ږ~p^"d#g#f? =@طo+5@,?h^Wo[?7ךCUt=6gEJF^:'F,k<`9o Uu4[ 8uq#E5hFH ,ĿĠcFG>b[:\THռpܖgy~Y-n@/!^ߎO s O\%Hh' _*8 #΂tܔ0mwn}'`~C J\)?+'F^lASMt*S{N<0q~_? g!3g"  ۷\*WdžAd>ub1r&3盧ri,5dK ƹ 7HqX_"۰^qYW@r&xR?T?uԍ̛r<=r Nл"/"Seml;9{ŞFb簭ѿ7slC'Ezr_ <@a/эR䙕I1j"W&Va6#[l{wvlY*L&oPѿ= >Cvm~ΟNx|S3<%e/j¦j!E3Oډ]c g?c^|6?XﮇhK:Oz٘>'o;Q< ۊ{R| ߷E+g$ ;A?~%̉#b9_Mgq,x3:휫%GL|f8Q/CgqI/6ӏ|#+S,ܪz;,z앲{ z͔{ ovWj9?|URq9tc4Hן,c⺉~pFl'Z9k,+;_?{93ɛħqν:?{=IgDuZmm1:o~.]X7}8'elK}CI_Zc)ol/c?{kcAOɵg[[51MŐ eϿ /5aoZMR}Io:L-αp׸d+ 2.aN u2.cұOz{^Ruez'wIZw51fiYNO𜠓Sទ[3msf .J,=HiOkK?zɹ8?s푙tI!aD{[c/Qx=pDGl狥we, L?k?'ŧ?bWyIMvr=Կߴn?w]:#XSOu, 7ׂ)ut_ږt)EΡn3)LSox1u)Ovb^oAůc?FؓagV5IrV\ٰƆW[OJ'o;1O^6XOs[7N>62w~}]ג~~:aOi[6ug?xﳳGy z?%:~;|8gB~g][qˉ)G"?yʼo8Y9>bXwm鏸jǤ\+9&&ǫ3hx=UWc ndkhs|~FOwٖ8 t*+kѿ :mU/]mKSkrUѫ N}LgF/*6G7řlZ[~' _a;"1Ϧt15N]?~#@7nK?~)?W'֥C7~2慽wv1oG}O7+tzKqv؇9c{\ﯵkwkcg?L̿nK?kl/U-K.9w}׼)Ϙm㐺{XUE!_CͿO>I?!'EnxcyM}MuV4#fx_c縔qM$u 0㤔c?]o,R cwݖ~MM?WB۩q6 6 ?cSlix3>Ħ&{p]fzy,eyጸd]o?:W~ϐ0]ϭ6^7o zZ*{|bsĵmo;=Z.<Ğb*SE\鲋_qy?X@\owu|m)Ǿ:ܡWzj%~.@Ft{"F\w˾_!G,5{{\3p읬?G."g?rMG@RN{25W꺩)Oב_}WO{;ɆzO?b>sB-\2N)Z?4w{uckKc t6Ec\.4k_B9_%>}WR/Fθn}%wwd+PKSho=w*g?2^O.쑺g^{OE-u ϯ'fչAmϨ^gr[ ߝ;?Ɲbx(<{9\_JcW7ţm=_7>g/Z'#~ogOxw-Ӻ ՖR~w_/jF!R<1v~9Od쫗wqIܿgnS5兛2{zÔ߯\Cګm:n]:/SSݺkK?|s063?nAb;!޾2|$u#?j36 2x3"YΡz:?yqguk8}QR3˚K{ 9̭a٘\ㄛg1OsK0ƙ-ۢWՖ~ q^MιGSzp}}lX??I83}5:CQxbrf> aЏl$֖d9(a3YRGi?_.ʙ kBa3;? $f<WM#``E=mTΏ`Eu~E9z=7?\0w b`~͖{kg69!'a_%6yA0ľ;"<{\7i5Qm{E5N;2Yb_p.$=R s V->sm"0H43-9_{snfx6tydqN"ϐ 3o9V5mGίs>}Α1-H.e~7צE9̘b~(Z)DC]"A/g=0 WOy{SLR{dgiMz8 wL]ĜfK1?t6#SzuwTkj7 ip">N9-٭R<MRˈKc'_-f1GCE9iUdUEuy5sҿg@7TAGHx/3,~G24d3.bJJOj=5lL|a$eW?ru=G#q Vl/C'ĀElo}{pޒ33_ÝO7"F|T=s:^r3ݿ\|wNdس=vp].6&2myE۳`L#7Mី5:bƸYuS>;ثe&eoejz:0w:/otMFj@1 ۄvJ]\CA{{Agy·C/cÎ/Ļ]Xa{wIʸ%c~)^!g"siK~;0Q{l{ٹeqi*I/!Yy!vB,x"3n`ƬeQqW׳Dmȹu7}ͻ78ߘǟqCmھ96g֖o{I?RW8ռE/YB|R|\Q|qUqO.JgM1oܷ3uf?G"WtN/E;ɻ"9&>WeOGS~vs) ς{ zm\%w ρo[ϒߐ!~|5MC:c+ebu>V6>q,cEJ'&3ߠw~/T%8ǥ.:?g3d6Ӧp&z)OkUy3oA}dO 5j, i~O_^{4]{O̷'߲-EkX'c\ ,2 ^d{s1_sn[ ׾TP?R٫B[v-&VxN".;O.J[ﻂl=הuzxp9 =3o >%r1Fl#lώGp_t}Hg筷o#r;3Ƞk:fM|r嵔{JʳErtǟeb ,;|F207F!}mGu;";yгЧKw뽐Ɵ!U vx5bFYW#kӺ\gvũ}Nn+>kx&!bXHt]3dF*7/J ^E (9r"BV^64M[l/#w]X&_3r=2Z$?OecbV:y_3nO\GirEPі~|1:71fSI]11r~&#ѷ''?ea:;26) S5;(o~} 39:g OJlk:R:aoI){wG$8CI-]|ǗGa~(cwmx.\HyH_BOܿkػŏ'^~pI{x}m"MGk^[cRm96ɣds>tFz#jލ~t)"~B)cC?~: ĥWȔ؞]:ݷK%:Jil8tזR~E3ScyfΊ./\QcI&nXr=pY>b3È%.s~x[}J; \Y<%m[Ϳ%6xϗLybW?]=z<'j\ǥR e8};<&5{}^aR}{\ǚX?k'n/oAڸpߗ{ijхmK?g8oN>[^مؖk,I0G_"Px+揦K!.Myu]݄x㇮zƿy⍈ 1aD6 a?8ůJʵ7#M~)YMLT\7=5S4_ qj)5B]:0k=ex-tF;S_&6<%vmW{l_ӦG~&;];m\?}GR8MS~/_-b&ۖM6.q %2 )z'7qh?5v#CbWĽ_4uB*5tfa&u]M,)Y؟Ls'Cّw xؕkn׳O]π2>s6LX_Q I^z#~}kKPsM}Lآ({[rE'h7YԃF%Uk5:+gOYN?|?z9M5`a6QA1h4G-Om#l!١qhTgU#oU?/$3hMj%=}u|cGbK犵}TʼnاORz tNIy 63k﫭_ǟ =Ǖ:l3:%rdq~c݇̅e }K&M~l-coWNoCxfsmț&.hv At1Eo,ca;Gʶ?O>r`R7Soml'>sQܘ;ܫ0菘3}c@ﱒ9( ۦy8iC0E`#׾v)_Lt9\]g=~ǗDN2=pkkw֮9_O:4r`AѸWC`{Xq;y! 2s?OŢ&uK7{&oRNf^o)=iLMh~nK<)`,Ϧ2VDLMƎ~=cфοOaȸ0W'nop: ]#.>fWGGlv0XG(ڱos`z\GvC,ͳUX׿Ó+}Rv9'㷃m JrM}u0qT?/#y/uT_>Pq*ރȉ ݰtq"^T-+r)ו_91>3"V4 03-2 bdvrJJFh | >(:=>;V ;Ià{ y _/}&gَ?%]```P؇ g7g~9;8CiڞS_TRÛN*~51elntv{:Bi9`#Ro2nT}7}~vY_txӢjnEQwpp }qc_+ߝձ$ `?vM_t/xSm w%kߞ5ltE祃/ru&6}bͧFg!l?^&<8UӺ)^U7l YUǩ\cγCl%RN13xߑ؞Ư..2iЖS^le~Us'E~迣Ӷ,2Eu.9mx8|߶'h콝R3M_ĞW^ nw5=bmaпv>(2 sdxh݀wu177j@cĶuk֖~x?w<'Ug\A||:+<;m;ekg]jK?6OKZn>׾ǜ1ohtϢGG~gC3 [36( 8^`[cOϰY;5|:ʧΨgxxضZ1§MG ޸j2r Lw!f>UY"~+ i#b0~,ؾ=l|ENtp[c=Ri]G\7}aO8_«3<O{%%{8{c76]boK988o5Tg;1,lgrG.z};Ύqr~{=ȵ99 y1k,Gzkyj\~{ DeeT4VT7>Emh*^)8+j6bΔqthe&gb3;>.C]o$|a5yaˡr_k~͞:Cgu,X<{M xo>;0bo%^߁]L\.wFmm)1^_&)F R_pmHןc-8yL [K􌯷/!in\ħƙxwm,Qx*cG\ǹqm[ںI{8j/#mwT3D.:&_&ƆbΠg#OSI6޴ibL:?]4Q^f'#cW_#:gdWҹ)x6gormm[ڲ>{R{-ez_dNY`묠cRo1^CgSſϤ*-<;bL$~>GR}:>e.omFG{S^|SdG~GnzVmY[7Ʊ;nʿ 8< !瞞.w;]oTҹM_{86̿O\*1FFs{ z]&~%v~g{CSxƏ"~vexuug=Og֮Y;6΅~)uG dxoı㯸]691G_ҳ/Hg?Σt]q~z=7iһ?噄^?'՗߉ioKM~k룴tj<6eYi1\ǴT·1/9ߖ89 ̜QG'1fu5 lB>}:# ExCA}N?睘ʸ\\z\*iu{ϼ5y.UO"ժ)/VHw;u.5V 1e_'ywmı2o϶AG偷#se.ߦ8WS^ix~Q9ֹ~dɯ{e RG44~>@cIΝ_mK>SϷ{?ؖ~ uϥ<ϳ~yrO)cZtq&ʕSM~rB*2g!6=YX :{]7)s^s>{=^'JcWKŵINɵ{)N)`S=7v%:*4}˧3G-Q&9If/d4 ?9e Cӳ3Tn~D[c/OĉFg ~;c`K*+Lc>'K'{j&IីnKG|f0#Xī\(9}~ƭSW?ƥCq陥w.zܓM&$mtG}u߯~YNTкN{a?~ww{A<Ӗ%fA4_Gq:`πMMo$ciF0甞 kO|poO)ϹwLUl#^(gh|%#EgIzz~?d|!M{z ߱s/`cM柔W6Zy Mx8MxwMg֜ >4^gSzW~r/!ӿTb3~LlU؁{z[,UMə'u8iKSf5PT$Ci?3`0{ b=CtIarCnF${8GŻ 3?~Onu-=y&]yD1R.+򯱋<¸ۄg}<%jg=s+y4Z^6DӏE_·{۰/Y>:ф1I61:v0z5^\=_ @^d/Կ2~@wS=;8v ||hLʾ z?N x _UWc\A,T sTgKkuz` _k㣤W?3'j|`OZ_ŒmKU9/ /gBl.b껒ư36NC~Ʒx[b~) IUJL'xf4ÿ\"<M⬙nq~`D}Ĺ+QOO徟#Eŏ'ïd+:" 6oƿEv.򬬽RGž}"-04 ~˫em/ vbEI΃m8hΔg rzT%CW/v 78ǵce\&㳴^Sh)-_8 t2'l-+1P0gf^Mf'ͱgDv~ I*cowc6FH?eV?!$꺉~bc s3cѿ..Z?9$[8tžçeESgmCcCâ^5ño:2~/5%\J9o[`<r3k8=-ۿn`.׌+HA641ƶ!~#m)9Y/'9?8lygy36Xa?[*v?RӴOCj߱?^2}^?xKqc{XRg{~Az%?=EK_~g0"%BON 67\䆍xuI~]gum)&,4RؔcSq4O^SsNu־:~S5w9=;lm}]YEnlhr`$;~{:Gtҿ>"ឪ<3"<ŶeEB1ng{/V\Kc7.Ϳ$пs<$'G|O~_D--(_- ~E.zB"oRC:;u'Wyo|o$3XO3Wy0d6'u@?ƪ;rbϠ$o3^+:衤΃gf^ff}np?ve R;^d)zayG u~ȖC؜+,ڍa:w1I%.hfKg8TGpx^ωez {;.1kkS_xB\[K9{CNO;aZ*R7mw)O_Ng0]෷fy&/Rʙ5Mor.̮Gtico^*x/ԫO{D,5Rwױ>-j滎In>yBr[=؋ wjLo;T{^`ǥEM;6N q*f,ƺѶNK8uٿ+/ UijwjQv#_i:kǰp)]ybmm9\kYL򜃓S#5cR7Sp.=;3R K>4s?!eD?~#= ,/9o_4e F߈+_WSĵqbUqu:Ƶ5Nsvm=. KB~pX1C0J&6o>Js-ey!m=FƴZn酱 =菵݁ 'w@y}ktS cYO(vƸ̭syZm43W>熟} jmq4 iwO\oذWbh_{]?}-| x۟׳(Lc/c)c؍6W+3-66ke݅0gJkS\BS;k86_*枍^ĵy\7o`Ngp} h1f26^WH&kR7mgOΑ Bv8)unKg ﯴGq(g q׿zԝ'eXڿ/|Z7б/9oNfewcHˮ!MzioCo#7=Ԟ2v6H[7Թ8!~{t~ - ݹ/w=?|s.]٫n =uWł!kyq3s85mqM~s93OR6ڿB3L}|\vE[##.wu.#?-0.h߽uK'e{v9/9N$oX LUɉ)c5ǵ1節ql;^Ke\gwz)cW#/;gʺ*buJ>X=xǶ:`pR%ԥ^d EЃD_-=l5>"=`ٹmn8j:е3AuGEƖ⢯Xj]W1꺉/7 1:\xDc?A}XзC;"~E?h,ԇ8'F<~y}v |8g^AcER*Qs OXwpm18^Z06U".)cs@o32vu@mu$z{"~24;bTFLc~<*bû;gwDOУ~0~Kypؒ8]Gf"s?ɗMqI,5^xȟLфb͆wgLoהoD[DWLxͼxdiCSpo#3R#NkAwvz&D;$LJ}7c^Y __W: ,_/}yB$}pmQȘcƿzN ~N[g|RKz]݂0F:[ƴC)^лہ>jXgus\kElw1uYpֶt3#^Gp' _=KI<~pX7ѿBuB=g*'?{2^ؒ*nm~q_yA}tb$UU fͶuĢ.ܸgf->koc:kDn:O>#:ดq*2q8Wng)߻vD;v-+Ԗ~;>knu8a|,幢};Ŀd$վ z=s>u0MN}O-E";`QTq~E}$@|tpďu:kLr@g=oxAMcw\746'ʇ1)73n Q ({9`bˁE9Wh`p!˯Ӎ XmqtϨ:S}#_ >@-]@_*]c]x x.t<נ-?A>_/`?MC~ℶ;9K3k;W9;")8i$ HZĝ,k!7nx8!9 CƯ>rϊۉ:&AwGmJi~1{99dQ#˹V˹G!?|t< 8WbK[!~u8V>O32ԫ\ѳ ڍ> 49WK_~x= hFl&yX'k$K^16&s: lS7G;/\w cmD&׶x!QB}ȧh/ՖEs=<X=Tkƞÿ)p/ۧS46 ["EpoK:_h' Lpׁ3T kۿ9~E"`~Xj[8+1K7^^2xQrİ1nƒmj}^![5e?5?smp?Xv1 ÓE&1n)4U`{~x"wv?t!K|ZO8LܱR~Əxg[:i_|ikFT]7?O3Z~ XO)J? I_z>rѮƦ&.wP:''=I CǼ^S"^51Ǹn/=\Ke:Rp\)/bqՔ1y֩ 2|>ccs l8{"c&?ʜ]lrLN/?18c &U\59?ַ{.*-X~Ξw>o3x5g6J|a>} ~lY{Y_gx ϸ [O :ހ _'Ƞ?9=߁ҿ5% bgs tZ#Ԅ37v\τ]ږ~eD55ٶ뙙1]es:3/X5Uga/uWcչA<+F;~vhKz'c$Sz6y|8uKCs.lt]>hK?oxs;ǦBn#ϑ!E*>GNB =?5~NrkL9g~΋!Ckw\y6< =sk۹orG) #qS\t$zx?Qn |TmtmӏjkhK47䃎ksfʱ.IlYa3Wt09-JH6Ybx. L[W1Uw~FYZd_eOEd.]eà͓r[O?c'K{Uk$3̵4b~zrR[Od7u]??]ѿ. ̩YE;so®w6?oO~&e[9h?:v5ς&gX[W>R[r-g\C9ώ&@Z\).,J yG\yzH3AB}]@ƺ~2b#&]γ ѵi*N^sGsM" ?~gl|/l?Z8?3cA͢vMg/~enq%߽8qD?~"mu~QgQ$⇮ߙ?H,tZ9?oMvk]=A#Tc_|)JlS0ܢw!> Ԗ~"N'u*5]y*c[`wڿQ0s{v~9 G7s MS'sZMzğ]u8?Y~*,r!-ޯ,ޓwz~c9ώ9=;3`ZO3dPԿu ֪VxE;z &HmVz>M}2]{מٱYmyIxtbBT='s )7>wPO4e9WZ<+ b`_%n}dk=W< j4;_>'5|AMv5q9 =E쁺s?OxzGе?7컠"/"}0_@!#;`3J9qNȳU]T݋<̮9)f<~k;Ydcӵ5m7>W[׶+)\0\_8&eSEy6*]xsSb$GG``,785oE3#˵oYSqV|]\4 _c%̙r/knI/W+cL(ɺis3mK{ <<*U5pv9'(S~H|un!H %eMOמMoiDL{z;q^z爵M|״FܩW^uwuĚK;Y:8ޞ_gpck;szܮ(XY_̵QkoMjD?: ܜ7Z ӏ݃#苳A)2My!_Z_O.?>\K'#/pb?*%©$ހ}9~*?SH@ 籗'# }T1~噊ո41/<kj~GU93>F SQqm?z?ѶIm.̟2:zf8s0= C;ȹusy9^h<) rs䇦?-9SyМIeC,#%跧q#"sܷ#Ka-*>W% -/>~1ڇsAj:'ɫ;\;Ϟ%fpN~|(ผ撼~>moR|)c_ښWjkǯwh?~S[k^ǥ*E=/r+N~5?wa{DQ擈_!ލ󣑕hP?EGGcSK~|u>JyRu~tͰnEo a陳_b/8.@Px0Z8;o*r#[\D(%_At.0q 14_c:+B;6Aqgy'3:6gܰu)!ƍ:惸M] cVSӻ}#׃kTkqS=w7/~7|5󐜡ٴ+%?c*Wp ~Y[{:,U?;ޮL8:cd Ҥ*]Aj  BIh zB'(iJQPѱ=_u{-:>,'Yw/}{ʽ?K} C㟡ˍ1j=/ͣϋ.+&.+U{rb)E/N}&}ƈVH!8`^OduGC{n]TZ#PsMrs!o:vuj8ײTL }LWu?Q/Xqz @~]l1ڟ?>1 Ϲ~~P\AF>7+Ubf ;C"e Wї)-{}߱wtyUwytГAV=;"7< coLJU<c\r1[oOKGdLʽ vEl;ڙ3??:džNqΗS6ݩ3seۢlÍwdfܚG}wJ9#̙v=]dyޝ& &v ~핪K{U}]#ON;ʜof/&{<WX%eY`E{? /JǓ{pO~1}YCn0|{OjgNxwqfj =>A7,k_~\;?"A ŝq~]񞚝$_/_wlyb$Gz?gw;%𡏕 pGI'Lj?O0qU^DR1 >-_{ 7~:lloR?n*'=I[ Gijwψ}S^W#c وW ؿo+l{!С!._햸O~)wܫqg&#A; v=FxiLy{Z^F+9G/ҝ\6W%'z5=JJyp?Fz]ID/-嬜^Zf˖k _U+P;c _]ceL,suޝϧG}S#׾3l=@&8+kc/,?[y^?\*?Rsm#;];WgqT{k_+6=q-9x&ώQ7?K4svLI)D4c=sM㓡OiX7)$۴NO[~ղ:9|g_񙙲>gb=_;csS!)3w߃o'R8/q/ }mM )۱؋^K{"ۢAL9?9eIq&-S/ 5%.~p'GyR10@|G'׎v8FL|{v"50{nLܫ;+S3;j{Ckg-;a  ?/vWIܫaU\n_͕ 5[xyf*1:<ɱI4M I 9W&[\ZC}?:gaq{ԆJ?~)ϡVwNnݴrÆ?|~D*v%L=^:e. sekouW{/ |~v6#]~zU"Ylgx +]lϗRη/Yҏy7I~:>=xѿ}b'R ó{sCMQK6og'p ﭝ9ۚW;?${߿{ Myy#R/YoߡK7I^OݜyR:sItl#+2,)cFĦ8>e¹).q =R/\} ̈nք]3Ƿ97_MLyQ%>NZ20j눷?\?"xe˩}|GQz^I<{fdze6W辷ѳ9S?BwC [XލH|%Ĝ_2gՒ[/ܓ$*J ef8R B 1sf2]f܍U]\YsJ=L$E}Uf{x|"j^3O?qzn, [N;GXl3BOC^l[\?7RK#ֈc\:r+gsyųS'E9gIY%1c3{><mey{x}C:?3G p6_1LsQ6)َXqNX帯$wq/K>qtq\$# BgR.d!ox$|g8^?=*눳 /NqG}<NOYK^;_F5>e,zwk&o$gur8[S)gvxqu>߄-J\Y6p8͕̆|>݌{m|'vWGc>s_W;ݨSQz86~p=> BЙ`wFQb!0 5qѯ=/X!~=>ρ?el"~c_2Ɉn%f{ +|83کwKCx gc1;8gk,\p2rSeX칢Zy¶C[#!zBC㟸ǻ"c!-zow/|07+مUwsϜg| ^3~E5.(-_(݌mw@ʻDžs+뾽Ҹǥ3~nhSjzxw7ԁGlg ^"ne0>Row#Gt嘢³[]v"|Mw{-'R$hG}(9Qos|?_OǛ7ՃOos=L<>e, U|ݿkwSSz1?,J\~J|%sGyRJyXdPiĿ zyhĵ32{G|yA b\ʸM:ÊE=>.Z?%6~od> y1]`W+=`wtǘ;~>ϦiEϿG{XŪ?[ōP:Ợk݃J{<i|vFWynaAM{-DA#ZA?ß@D) <5=3xpt"u:f3ы/OZܙX;]jn9 Zi?z>~l?ϓlh Mq_9n2Ci%蘘OdH2@|ell0:й6Rvo.y8[gޡv01 䨍I '];@gϼ8N}3VЏf M1|w@;Ƃ>pҌo;$N{]٭OƋ@ɱYpMOV棵s܄_'|5; ./e CR^Y̳.y"lc෹lYG1Mg߭;8W$Խ!![{݉E;"?,g_a3إ _J|Emgec:7깃OލX>qʥ{?$/_wݲ+ܹw'2?| E޳=7Ozܿvj߻DBz=b{_^PcCo)M#~JIkIKcO/ս`&F^UA?61vsO,5roʫ{_ݧK_F p߭_;7ra<7E{~߻uxαdX=;Sa#XGIV Hz/n.$}@</!wGxn؇^G?yho=0~2~wG`k.dxISkQݿwi-&?Y~y@+cő7.EG%߁;v=0׸ꩢ!vTW{'#\W;7Soڹi)ssIпg twqeOM9쁣8wǢEW䵼W@نKO؄"fH̻ziu<31st$?zhp7?A,@=(>)20ޣB1o\^sgCHE Oa7"^ .y/7yrObȩҏC G~A>taA`c_V+r[8Vdj9/D/v˽SS^tq&x8Y8! W&"v]9GtSR)w@SKG`g[L_w uy>uF|rr{Ω+ȩ18|˥a7Ggsٔ &Gv7^v2 y5}.MSlj7<_33/l =޾ک7c>ϣŧSS>*ߒ(|`1[/{:GrxYc_~'OԷ<+ex6s,>.xv.XE/]'BߒB{w m @3q ȣcm^x'B;<6Lyp_x>l=%-/}L{O?Nɺ1oпE'K޷Lù ??q>{%oyN8FV6ӣ⡾Hs&?U2jҏp1>)(c]usÍ~|7sϾQr=ۿ,v{Udc Ənڇ͵s~Sܩs {;8O8rNu_Au{?bG=t?5@j[Ƿ@oLRgRĒ/!1e?T͋,vo5'6_xJ0(M9:jF3 kgbt'fGKrd8262ƎG)y7%smG]Eg 菘?ď_$ǷH?6 s?r,4 wu]ʻ[JϘ.>42lv0ڟGĶyh0ۍM;y8-ٵGkg?[;sOtqOL{J?Y>>6z?"Wތr~?> {=oܥ7])}DOɹÐ~焞Lss +1LkS֡CMw}&N@W]?嘘^pQ)x9|}OoSʼ=F\#K"b85+SƩÿO}*ƃhW9{WWOJ_2"چk@?y|O!L|f~Lwî8W{vvs%w@?nq~6ldJ{}(1V0wǼ83`ӁʜdzݸiHgdX犳1~t}#4@CgV0 pS_=c8.?~{9{O1x/J>R<`%+k< h2ef-g;wbl fso{~mƒ"~noA^E3X́L!3`sGha*m3<t4臭 !CCu|sxXuʿ,L獝!qϱo<wϐ!fSg(ί䔱3SQol dF<5;U?O$%L8MpRfBywS#v5FP/7G9)ᙟuK<&00vIzuneا::UsD.n%$`.pj暻g&G&i/f@ΉJUza=9{"+20敘6&4x|i/]'8Cx80 K=% <۵ʽv }s[S_͓R^/J=enb-p6?w̞q{Uh6`Pҩ,8F0z[n`2.=n)/3NA63'`G!fP֜gh#_x^"$T3 ɪW3S9曤_/( -,?hA?5|Tl-eyaڗӡ #2щEۏX`|@Z%0&}rv 5 )g?Y|~dXò~)xdzw|v.id翌9o>,6KQ6 ݉ϳZ3r4CgYو1݁w #?D}α}[-p+/WQzwEӁ_17a_8ˉg:s>w{~92ܔ_ⲫky#E/ݪ@wN9='B>3Ω׉ _kȢq%x ^OGs;J/6i%ݧrkc=( ĭ]gV精;廓gP;9vva)Ϝ}z;ۧfKl5lٮ_sdn.m?g>qWN6ﵴ<ȸW ^'fCcsp*Wyu>1_Zynll|l&^d@^ɖcB8xpnF-ewA/<7{8P:E<[$#z+IhrhK9/+gjjg(#~]SI~\6٘;\Ϛ.5{?~V֐t&r9(d;3/Qg0,!޼[M0`871P94_8s聧C#SXd _3`]Sb-"?;u ?#77&R6`pP ۇ7@iH~~<cjZ|\c{ ]Gvn븇"ez!GWk?r~EI#q_"EAM+loЗl7Pwm>R6ըa?FRzN ֳ5UaCÃeK#E?u\}inH!8;C*_% rMޮ{%P=>'%ɯ_K~TE ?_{wЗR]3>8JN9+#sE#=t(Da6L9OJ?#ht <^)ے[?WWjdG&CwxUď%~R|݃oN#]^zwc@W0On^`3O,,/: ,;|70C+.,suTT?jg7N7y ߌwBN%f4N ]mO~t+$٦~ekt拒9e&7My/V>FzdTG 'K<苾q| ƻ>F @}+Ϲ[E뽒aYn՟Nn>l6y!ԩmaa:1nݽq zAmt/ _}q+,2Otf1LQĜdfa0* q}>G<;vn}jgouߧz=+y ?>ӸT݉<oW3[O{XH3}&袵|^nkOο%^^-~? 1{d}摘uW#}s>Gڹx{}-:}p4=m?a?c_P)᧍HY7l 7OۑݝlS+뎧\&^N2{ΛDP`_ 2D'sudv^'FЩ4坚T&vW#31z>7q?)^^Fm _PSяM7%U\1iS~{dB9;,0y9Uuޭᅱtq Pm?Cٛ);w:`gov'1'cK<4ws8;'EN87K\v/]?T2~?9W{З+ksEɕoum|q_m~IyS[4W:Uيm9_TR˲9M\\[;7/sG%zF/_hl~E9D{s;W>¡oSR2}H~v]iԕ?Unbޑ6gv'D,w+5U^yȓ2dzeyRL &>H}I)T~\?j?M#ߏ=?:CST>ܓFR >ީlwכ/xbN=- rnjڟ1s:nE/9үvM\AtA)c{D*{m^v ]я+U1R8'Z83huB׺Yܩ5n?*MMu(`nG;S?&~#)x _W Q~+s ؀-O3%3W??%ޔ,F}/y%/FY?P\H}ftr(,]M}tƔvME2Gv&q5o 7[h3dz+ަe=mcd[3\zB97)UMMWSJ~Ο~ḿo|XZwv~GIVA~qę$vvs ȟGX> r5DQ#R`؇)dZ;{VrNܔjwpߘ{l@cz~S|%R͌׀Gj6>y0\d1g8Kל5Ghhn<{Eq @ݹauI= -h&$捘eW;sO;_.\ s/3_ ]Ggfds}濾;IԘ[HsQ2:]` ft6\s`1u~7'10sWϏټ1'lgf%kE-e.{]`Spv3Uc^^Hy7/-uS݄S"?+UX<=sG,n}<,1\{3\L9'43coJƏ*k$=#؎MoN{p?GǢ/Z;`x^fUce=ڏ*\K7yEo&{aرbVE9cQn9BI>sHrʸ"ixTł{ c0b_<'ȬK3{yΎf:kyEv_ߋYga>e+S/<{٩O67oW\-9Ru/NJe&L%.˥OogfIfs0>" =SzlʘJ_l]9Eߝ,'_qdb\Q\sɩg={?WH{e^߬?^L&?Yα.'HW>ǜ¢;[o%l4g3K̂n^l<#@Б;R߸Z{N{]/q!z _gs8)ۂ&',AĈyf0}),bnL C]H)Z[b$ybn3wkl׌\ESއeskpkij=D'\ri >qQ˱3kώҥL~egyOH~ >[t3TݥeCkG=cW .{C~?[d(k @6#NEYwiaA:)}_Ќ<վ/S;1{Jw.*̔%Cll\-SWpxc+yEΥƂJ Ҋ;2W)ǿ z5q[f{ o>p꯯ҹ3SuqfqO%y;xy-$]=1  K,;w 3qaVMw`+Kh`Tks_1ׇ2pwwew'Ⱦ;xWH9sOe}GN+v#_A~X]!|#=&K7~+}~'!Xe>ww-O-H`;pK߸'ź[ ro6L pFgf殫%?!WB,~c~B%9@#K'Wgc|7vd _7~6;$lkAk_vaQskw꽈+hꝻ;G*~{x-]{ ީ0Fu75KFnm:7!&aWȔ7&`nWxkݿx\9+jw` Y8Q%Bskx[]I?f@ O=^SeߞY96ߓtѶ9'&#n875穚M}VMqq/em_-'Zsu 1|wEo]G_ziJ?/ ."q1qZ7;~I2n^pߍHg;εQןU7..{z\܋Je5vz*ɯ!qgb_>G^ Nܹ}O?g^物8/1L+3>O6[HwouŒglo|Y+p/=qݨ ,(7{qs ~%ŧ#ŗ}k[__~\Xܷwy8VK9b?Z<;>(1vz>ETr_B}ѷs~A% }h|׹ψԂJONGjN:O?TqeƋfƁY=vC<7ؿcOsRU?P {Djg~v ]玘3OOSƳ6a`hwL|pjGGz|HƳrع-"띒˗;U<:]zI MbqAM O|)bd-CX'fҮ!~{5=Eρ2n_?w27ژ?fv21c{]0sS]Q) 9`lerz3)/YR|OopTALsHy}Amr6mEo)98f_chw sE=RF<({NƏw5_f$㹩/)}3> }߯t"Ϋݜue͸?oiK&lŢg:;㞎6wOe΄,zj-V~b:{l' v`_T5D)mo|s=s'c4޽@G@ _=W)_=#ŗ3߾. MP4tU'55\5@(n9Fϣ3a[+2 D{Ңb=I}3=l#RG;VBkz9ێѳ@~^8m^*L)F䞚pe.3O\xnݤ˾?w,ȃ5-7n17n߸qe۔q<9G>F9Β#%їN?(:Lno\R;S yD{".{}>.侬 M&56wk爟F'4/?qG@ DW}|7Lɂc1xTuno\FϺbau{.fK&{͹ gx rn&V;gש_Iܟ}B6w Gko?#'lvֽ #c7Iax/%;0Ҟ+jwB\?z1^zj/Gf'dnio5;vvum<񽾭1e!;繩S97?1|B{/mد^{Ut~i"8G|@_vg'G{?{? L.yo~6l4iRw< yfz'ɟsz.؛C}oASwlY6z q w!+G<> Ʇcoi-Ž7xN ;E-|* >~-Ww% ٳE7srưr)8$%~~?O|-ܿ}NJ=]3Π ŋm?{>p!>Or?41};~^Nu;璚)Iܟy͘[ffX_ghoHA @w6G0E6H?vm~8Θ;۪_z<#{/-g_;\J'Fqqَ7Csq9/e"hfa oJ?4Q?*Yiqr=c~jW_b?KkT(N:~ ǻoL=˱t`\a׈gЛj爉M9 /Ϲu;K~ۜ~iK#y=JVpsWǀgN$u6{ߵ 9_1`k_vN9b.R?}>֑ci<7&c̄Qm5?l!O.^7F5?P mV<7o,9sp{[Hy F<߿Vcjsٸ\rM4$M`!t;E*}ƦCbmz?<<K^鏘fu:mJ_u9>v$hYjc9,t2ݓl~J69֕K#Xs?"EoC~/?fmo{½)ǎϥry7bO<1'G[&6NSickyϷK- YGkx:GXT=ٽ7ΞNh1|L\)ƽHC}sg5^鷟lx:|%˦=Jx/Ǯ[l򞡡-fsA<@g#6x_:TK$5m>rbo4Wǩ)!JLxK9/*{3?z㳧ڇ2v =+ +}<ڡuxn(g N]'sQ}Ϯ? MMdςKڟ}#tgrx5Ov,${}C{xϊ;/ܺ>@\T Qa# y{$wb.H'MVJG{O98l$Ԅz_Qj\7[샀/].}a;|`kzS;rjq:ý)>}YMjg{hgyar#E{欔w9>π}AgY(wv)b+2ʖԭG?CIvݝ26'~Ky|!#}#bc/O_Av85gckyfS_"vR;aiHvz?#[=R+A^;?Vnt8׌qQx]ـ'$閲ˮ7$a#;٥y{z0>#8S¯×5sS<~ӹ)_ݴ?;3~rgN?CS޿?3;̞$ŖCG7}^W<'`/󯊼cvσws#>w8wz1?N"Ȟ7kg_ʭhf{N+Y帿84".?Pҡ7em?Yv ߘ=HSyo6rG|nyF]y ]UOoc֡E?SHǽO{O+坒Y♰=⫸ 2ćp_ɩ zQ)g'\+vv0WM=??΃Э()F/s}Ek'']g=vWУE {MO^8Ng=\ӷtΡ|_OU<=]܋gE~Dٵ^HddažW(Cuq(z8nsv?/VeM~k'c\΋zOΒ_93A;<-X].kN>`-'>PLNUXױsg]BkqzAMuCS{HyZ{l8{T- gcm?}gKΑG5ĿsIΕb/_W pޕ)c\WFE~nh]t?+D5K|dR`k`vyV-#߰S_.m"￱wN2 Ui??>}hxxy ý;F#=N©z7K"ۋd?O>xSuuC9+o?kۄ7˝h{-<q}ڻC/Hb<ɘ"Yg(J_]wJ_b ߼&]ed:;O'yTtwùQ|'^ 5b̗Yt>uU~a|83ˉgK Oe {ӳ@Δd7+~ni}E,Ƹc9`G:"R'ON.;BcywFa?a]*eu;:X;u^156⧩3M89Mrݔ>Tßn_ιJe܋o[&;TtuM:tt&?o{}[RWQ9?wNIӅ:eb`˕n'%R{~]߉ы q5xn=S'Ɗ7z#n~T/"_2nbޒĽ%C3}HWP|5&cGlG{ OWbkkN{t S<|%|3qtTڤ Rc$9UcIeWQ~M&mKSXٸey{ͽd\Ƿ]Q֎FKfͮ=%Js$&2_-wwnٯ0zMSwLs@8i5̓v$V]*>>]N"x}1IG^_uCC\9WJd^_]keN}dðQIuGd3ٌqrXPS?dSWIOkY}.lr]4E=3A7,zݿ'o!,YEg%@,ٰ2f98AM7OIɀ7JOy\P7W[Xy9ޡz w2N>?Vr}r;;bl6 nuMA?wm:'ULy߆wEk~:NC zҟj-}& Э.">P4֋o|z[8+:0Tz!U1NL<;_z}s<;B^3l_c [[i߁g}Ŋ2ZUpTɀ7KyFejĔ.y.{v{׽ +':7OEU۹L4!wHҏd=†-,߁31}A?1 yk_ND#3cԘA7s{jҟ?C; # $RNT!d}ߌ ?H{q0 8uW^Zzܻ#oò IzSO3ג??w~9y`$T׺w"E_c}B<-mi޿w}C蟏]d/z.j*qm]+:z6er)=GxWj3Iof"NMv ܄7۔6=CLyؔ$~XC+u\~uGk cρ+ӟ;_s϶👿5{q3_r'#31gٗd9c~OWj&nK:]>v?x։G~B|ggߊ:{)uF1}#nF5ƟCNE\G<+%Nw]i&JMq绎oOHN?"~%Y|M Ew)~Xo\ׇ.j#`r>nu|CMXMowHcZ2m)kC_66_1ן6̖yf?> s\7{TbeoڣabDXDF_6g9"lH|s^A_v{C kvOc[4?)galVЯ˽ʹ}^ k~y4r?p{.L輔W}8M73Owv>1|&lj{Bk}(e ћĺW3</ww~$aY$f.J-%Ś)a{n9G6@w{9.UA0\q8CZ\h'}#cs̿]ÜK ~|cz痍D{,A|"6fgfVwj(|ЏEw2 rOl?q1swI_RwL] 0Xu0 Ƽ:]Gf dqL?RY/e\bh7-e{jb.+ GV rXCndzk/s7OU|{SM~2q1ݜ3?hvc"c(=3y(jѣ󓿃?@Q~|!N܌!qA=/#-m<Μe\,sM?BH s_׹?= |8p9[;ItۭZ\iޏ˘;DzS4],yx1{A*zl޷IB/\*Ɓwl )z߯1jg>-uR#O} qDɿ l)~{<ҭG;ϕ.^l2E~[b6g"6 ^#G^s=E|`1#o!^|],cLsn"-٣D42>;8p7nI$Od%/?5ݿwGDq|sUo׵ 9o{1n.L5~q tES3m S2ǿ8Z4/7>6V@lxcJ_S񗜓2~zfQێE{ֳ /~3ƿ׳azn;;˥:s^rfߍiav@y'̬9o.UzAҿ&0]cd2nA,{&Y$WO|NN%᭓KwNUWc9JW:NsYG{wZ$xNK'y)d? #Mss!ϱɽ4gqlo}+1Gb7#LJ;ɆM3 ~L]/Xi[4_5vK~8/8w"/!ecB\%tt̫D~SvX^aw17YW^T:7߅X),O@.خW<A?:[}v8>S߃;zGrwca ~,.#O8(#]o!^>l)6 ]3Vqh_ѓSΩ^;7cxټyG~D=׾/{3#'z1\{_Oq?r"/3,<7E%gE~D7\Lc7o7;'.yZcG(wc"d; G\hd#6 @,? ;ć6~BEi^!IW z-c9ҩY}j3=wڏ w~tﰉp??HӾ ,?I.sTƎ7U{M=_Nَ#A9sS^fq R{QJz`g{|"0K@M8_{l399⾈ťZeӶNJ#r=4"cݭ#mG,i{K?2Vk<)|jc-yG_~MX/ISށD?5RJrKK?ָ.9:K~!bcoyt3X#jJ{?%F9pݾ]}c!s-kG}&܌&zSA>_sߟO6~=3(wPHNZ[ݟrI>++p:/|Eƙ7)~Ts K'/9gr*缋ݼq+qa[+Ą؄]SY9”9AvMyAfvv >d̺jgz6cNe;eyR޷C-{g_yOdxsYz&]~z^zd׻x&`=ǚR?An'^ou/9䱼û]jb{ mm ޏ b-}%o?%G]b<'|G{潨?w;I}{b,xn>su}e*n9ueĝwLď]Gr86Ѵ}g3+Թ :T~m sSd\o4H}UO=b +Io%^'V^7 gy-l4(~( aݿQw=r<}O_vvu:K="ǿ÷_+,!􅔱Nxvr>zwQz=,!z"]Ϗ0[ N=9 Aʺt?_E\Ջ,~5aqQ?5KˁIaR9hh~Zs?幐3$%⸒W4;:)nmj:[7_;3#/v?}_tͷ3W3?F|qn ]]q p<==weaN2 牘G 3>(9e^ɿbdy$oMsShb;=艹#f8OVo+Y8KO^CKOH9F)o)9IV7&tvz{s|tk׽S>=;}hNm7:G*{7sz._o!Y|x6杵x={jc)Wistd~w㲡HsqMdd9楑>sS]iscσ UԸǓgN|y=Z^'9;ڊ{[F)=g^NywMaaz3:/U4\0eI-]dou2;8ޓb\,ٸi {3|S g{N>m( =ps=d?O &=|E~ :caHw@պ_=egNWA(}>蹠5ў>t^Խ?J66Y5?7ؿapŶ8U'ݽJOMg}P9t3UgvGrKLɌ[^ ۥl Ru82 >1-Qў^ȼN5L瘯1gZܒgrT;7i4cԬ?sGRgxv/9%vW7aJwqԵSb=$ܟ:A߁ޒR?um'ǿ:euĽ3}5ӫ=Gl *JG@z轃T!;$B( b-&w J"H9xlX囟g8{k3̕'3o&k?{rxn똘75G|j`p8U<#)c\1co6?>"H_^Ƕ%ϰiHw/[r${>kw_';Guvd>[b2Xqrnz:cbFsLgbcb!j^ȯlIվ`}'ጾ)zs!{$&/7T/;2f)}>8O42eg3D9[MyڹiMkTc27GsQ[0vkkwGe4$;3ijfٖEY3;`f\=R^S&='˧3JT13 ۫[:hLf1z^ gb񾯍6̰MpgARUw9_Px@yv>͘0W,a[΄C fw#Ry/rq?Uk+l-tzQBa6wfaXa-(>$rh6&]Ĉuν䀘#oN\䴔wZ;76눯ܙnwq'_co3XYfFInejْG$?\0LeTX<%^ӌbc]3,3Mͮ]-c@DE??Š~C\cww(ݪzGyvpdgZ^3T'39or%H!⏈*׏J0 Cĵ;y74X̭&s}c=F/kTnN _]y]ъ~3 qK_fUr>`9x[]OvGqzm"-Z<΃1g7Ay;COۭ똾KAWSƿށ9Jۅg#>N\2 7ȶ,Jy>|vK[NQşoCw Q;_}ѝqΑB !0xn!)Sp8>Y¸+3eI=ΩCʻݽ Zd3Ș=U" :(J_y/?s 1{t¿`gOf?H&ߢD?|B|RuaJ?~.7J{'K3л/.|T)޿tZ9t2kπZȿM/H{p&rua_:eOE]_.'P:|}%w^a{Q^g֝x ̊M%~ҿXWNjXk3+d4'e GdKICKL٭<H<ijdbOixx\D3.~W Ԙ| ~ױr?<~>jEik?9HO,t|trl˻֢p/2slkZXy1XK8[9ϛ lkt/w?W?".pnS}'ȝ\+yƧA㳁3- ? $;*E;kЅ~#^=K?}ӟ.2fuUg|?n/95βuKxgʪxǽpC*㖃Ex$J?|l~-qߔtt[ yo:P+8^[َ/ST"Nekrq/rGmTSK6~'ς@hSG挚qC<71sx#g~A{{=_r%iҝߖ JCC|:yjK*16J}ӑ??c+ƛoNρ2b57?Aϝcs_U_E'3#99dTz>|%~'>=yEv G;:l3s"~}r1??9%8{'JA~#~7O^Љ,2w⯈?)Oմ =kӈ%@w <;+)Eޟϐ[!N'A< @O}mO?8ĐRCnrsI?{qkSg>—k6ʼn[p?:_gf?wEHoX(&Or<,zyݜCߺ֖'7(=L W/\+rkb1A={DEb0j)k)CIWXت<z ?d_mٔwVyзlޙ.yvn…?g{{}_H\:VK'Flܿ.q]AA1r~F{C 3+~ĆgC\bE @H̺[c(NM㱮|Q| [://~V2euNٯ c| u?4A6A3y*r.uIk2#A?ßZ{%ratQkѢZs}Pfuhބ](ґ)[VRZ$?pv>&xXm̼tPTop./9y?ٷM?`K~;:.w]g%_V>\-O=?R)O/ƞ''ֱ>cu7ߣsoOr 3=[7W7M<j<qi>"^'':d?߂3_pY8 J>Ct߱/0o䯠%o 䤑ѫ!Z!ȹ`gءBco0v9uo9)\w!cMsyvn72w{м{1;vJʳ >KE̦~F6:̎ҙuTqxᇺ9LMrӺGf]Y?wo!@{sbˤ[/2N;>%>25mFrD/JhAͫ-RBLFEk"Ke3y/}sK}V^zmvbte쟉gyt]R;F:]ZrKBnu/zu<)j%:J&šyN?{nqK=x{ù>?Tomv~TQH>X_O2saQv{ĭTדxzt?&N'G]s`Ll3KEG3 $#>~~_:9_H|M A ȏ&3R[?'m$q_%;I;̞>?EuLG< #.G>FL2/s?t*8q!ųcj7Orgg8e"-bߩ%,ľʡ?oKA/8^EGX^]u@O]s}C9yDǟ+kgV|fi|@rILd3ž?g77A֙7V.x>,xλ,><&:/ Eo .<86û \?L|r5ѿ[9\[fR;m}\|J2ߪ]9UAB\31Խ}qڙӏ9Q靌+k{4o81??;tM#R,×tg?y ֔lL~ⷦ[R{INn8oxD;Ŕ{ѭˊ=Yv1^"gOt2No?K9]2ۄ0+;C7so#~~_<2>߯d:ߖ~^(!Kz&w'+٩gA1[}IطGƺOϰ۽_Sũ3ƍC2ӧg_s^٩OLYOƳc;R5wбK]6-ąuv}|ÙgE7L.=]W{0??<93䣮duLqaw猚)4}iq\ 3bznp➩Xkgo-Ԫ='[?Ɵ~H[0UGL5S= L#_B~ՎL~r֥!WLKG;"' kU=ΝrԼz]7 }2?/X:P[G7 ?8O/ҏ%f|\rA*{q/&z^W{֎O6m^蟸w,GOς S xpv]-Ξ9F9Yei5rXoo)YoK[+o^^M{ |PrkI.c(w=d=RN|幁^KWJ~Ů뾭<Ճqŝ~\{~]k xn[WڙgΣ)c1vjBr/z9#q~_98g9GF8je$s9F"ƺq,1(1Q6cp6.ㄔgkz~ԷwAwqG5O#74sd~E4B7Gy5;趍~NUvSdp .3U{yy;f`7◞#}J2wps;vOw⓾"cȂ EAv,f/SEngtDǓ3GvT?bNиuct͈?)3)RzhnCZS3`DݮoY\3R3`Ƚ>&ܛ9}MxDK?>U%Rm:tn+$ݾxn [u^ :HvљѼ&X4 m' /g|xoC/c h1ŏ*K_X+6 ?˽y8vEb3daĬݕEAEz07ȹqp{6wى+~M=Q~x(`m0 lnuV.V* s''M{0V>vfA>=IQ;7ųM&\,kW#X8X8#s3{ceɯ/лQ|gV9wPo/ lҽa~n{y_xz؞sicD;>_ i"+oSH#3~e!ƺ IvԻc ,?Կ;'5矛AMsMg nNG/}5Z,~dǷ/:IKLxӋWCzχuO]沑>6tGvp5WsqT+d{EH&9=%Secws/X[4A_Q+ݼ{;4WȈq["~Qg&Ꙧ=G`P v,c[q%[)[3yjX75?cz6vrb?<>i0GaFuLrL>oO0Cx1XpJ^"LI' \|?j5jv{fqK `ļHr@qJxn_Oo} E<:GQb!L!vrwœW^Ѕ_hAw2c}ΧĶ??b{]_◍?cNNȏ'Xۀ߀] #b7W=/G`vOs*GIg烌~B~齵mݵsS?h.ÈChSAУA;ŎvcPMf9Ơ3gLHy,C~х䯖ǺRA@/z&pZ^ ز?r+=NJ2VG.Wнs+Enαe_t2汼xW̗A?9㤯2| Eꕃތ8ӊ)}}uOgb ٯnuJ<9r;<3P=#?smBGcʸYwa2󭵳1{w=ytg[+b|Eƭ#]5b‡e |dHgGUb߸?tn?AߠFY&F]9G?S?BNGnGLERCw<ma\6?ٱNI\3خUZ$KNZ@1/tK;m8GVECtٹcp'pm7c .s ßW2○h&މ}81~?R+bü=ZrMk/E. l@x!qx''>qA_BECX?5ᝢ/6XW.x?tط?wI9.E3Cz{R.]̭XnxYEzA?}NvbnNչIB"{:<~W_sIvgWCkF[/e( _![twylSS)/tsSB*%5.bSwӃ)jIWĊ*ąH>%א+5l)?mL^:'с7k~ ,]T,C FJ~Fcsz Kl.F=>xgٲkӂ\x|zm/qcwPx.1~/?=r. 3g]bv'jI1MMyfY{~Gş :dz+`|\6`iϡstWݻI'_R4WTĜgxߖ.ò_xgth%ƍ1CF8C[Dk޶[6MuU;?dݬyenEN=]뿰}Yeb-bދc_/+; 9 @ҿ1"~[5ǸGNgN{xq[H;9gzVkj{t6?/=2%䅨> L;Owk鮱xd98/RcF9om=+ǟIxG(ΧyԿ_f{ g 1ݟ?λvK]cMj 3.3v ]?w}}?"4B? ~ 8|Q29b|#)olPmGb!ѩM `_l(='qfWx;?$ >b( i^" EpˎSd_,'σή\w''];6CS3{O/,]ļVyAo%ޟ^כ܃B.{Lb)׊rKgpۅgp/}=`_}<2sӾ8OWBXrƧFض@ =ӄ E+/>?W)!!g⧞-y@Xl.2Lab7MMp,w yE ?uM5Îux$/ȱF{}s0;5~)c]/Le*U+9_Dדp?6;w,xW侦s@ɽy6)r9/W.,mn"q?7/Ǿ,ӳw#[_cgpLh4j1)oG,n߱<` p.o&M=OR#˷^ 5qlLMrr sc\bj&yl_x,܄?n~XuS~@Sw%/z<'/oI.z\һWn;s+߬(wO =v _$hė[#ґ;$kϛ8#/EyUO&9ij.~4vlvżi~xݙOW*r>gd751 ?,sWmrg{cvL9'|;ƵR?hY3M{l z燥/+)rxݡAx_T'II|3{bߺeݲ/i~~޳q{m:wwC7vؽ>/|j,w#㓲C~S~gAj)c3XU*9/w݇B_H69e~ 𛩽3|XK#ΰ%w?ҿ]os?g-r/.l#x?N1/W~]<9Ξ-v=g9ul_`u~Z sHΛ$&@ qwtضv8o~N?EN<7-'k _GGÇSṣn!%^BVNy7my2ncWݓN_*;q5d[C_el,o%U'f:ώ\lG#]Ykbtؽoߍ%mR?CWyḣԏфW9YBƅsl)})7㓒m/B/1 93NߚMw뫻釯𗱯q,cjql9x8Iz~c䬜O9He~~7KJ.DM`?.~v}>-KƼno46ݻ՘3ayN RTO<0w7+QTz \_&KjfZ3>5rdۺѽB1o8C|:-~(@|\-E7rKO⃃D;z?OﳡE;wz!Yd'ukOz.bA?9g?Z8]7E{gﯬO^=_k|3ѵ?(}q3 jw:߾pmF_0k{ĥvP Mkg}Eٷ'?SWyRlۃzK2|!2BM=4m_<!I|S=߶r79;:1)F*3rK+^N,VYЩԏ)_{&rAŐ$Fk4J/'Wү4PӫDNGqܬ{;ܯ^fG2޺kulxnGŻgc=T;[Ζop}_d6?I<_`N\cޖKҿdT/1?rOQ"p.W -A?ɽST_ZJ:YGz]4V:&6ʌO?߹σ.g{xk F=ctЏjk0^/r0b1-rw[ t9ujƦįvmxލ+D1ɰ{F{ٗJ9t_N=@{YG$6v17yMۍ=ޣ4r{I^ٸMΛ sL^XkK c~cbKe,=v͵F^4Y>r^q?~x&r \W#5.6wy^m𳈓bx7+w7v?/y)}Kۏd|va{=8vlwxĈI?L>(NN9o??zo"8Wpe+ = >+RSF~WsO+q#F%7lǾ?ƹWu߇{ò˗I6r#oS&9v| e~OQ76-gߋN&i#٢bN9ud:Mw'9#jȯw3 2F_HI|:knl胒7:W(} }OJ;7u{dI5֔M;H:WPпUXgqW9 33gD/{I}1.ؗ;-!}F~#|S |\~d"Ot|0)[v_ZoKwӜ"]}@^c!+KB#;H}^m7&V}N gxzb[d3։.6yjMr\t~ sdzmo}zx16$5AzPMJEƏ[~/=tks?7=g?{9=eL{$3:y7hlgdKý{Ӕ-l| s34Qs& t[=kGޓ-!_ _={g bѿh$~LJ&v*ukK 5'?ݩ~SƼ{jr:0wH9w)8OMǾ~)_(kxd%Q⥩z܋<ǚ7o[#(9Pgu'{~ C5^ЫRo?r.~??.gcSuPӏ7vNNս^8]zyDG-w`QzOm'9x׊Jy [^N7_NG/`3 V#|jc\yw:^CyJJ$7~A]Sޟun{q~! ZXx.pn\o4H@Ny翶NCII55{;5yw fS3Gw-s<%6Hco*9:qV.fNy- aY/f30 3kмݼ{៘-n qȩn9nby\C>c;ksn;jg6ݻ:3UcS?!oH)c`SdFׇYՊ1~s>,Y*0ޯ=ͣȶNrJu?i#Y{W= gqa)ݼdÔꞍ{c ׸ H.FٶM[힣u)8`*c-3։|EE(eU%;ƿ:Oҵ03 4`Bscjr87ѿ Yf$;_ϯa_]ORAޫu{-f_ kc~_o_\ҲLJgB2_;Ho2~j7㯢O+A@?2Cxdcbgfh!ԝZr`(xX@,b>4OqqW8=9[SaEEɸ{s?ց˫ߛW~1>c;@tC)ާok#_K)Y#ИX@#pĂn:ӻ]0×E~MGo뵥os _J"ϙ,>sE9/ _!.,Tt"=cg>Jp&ywuң^2){|LQz޿D)y뎺E=(K} ғWff얽%~8w;DJ}}R{'>sbjƙlwίx읲)W7Uc`>Jyē>&9ePp-b=mwT_7|.$9wu3]-_aiL?|:{O?3I~d8?K,^o猏m坰nC'Ÿ"yJ| JדU[/T~ tx`4,Y&l&샂3w_m'~!fAGBDb_uĎ#dΩ"r] G~,$ GiAOTjiUSWeIzfnŻ/;8pܧq<#7<>!e 3~?7 W?j&{=&!=EK.՟qn3Kϟ ^7ϒF߇.~5(䟗mO0>(1)ڟ;.Y/l_r^ĺf~wEA2)pG_:@q2zw=jY[t-WJh[]n2, 3]%ЊzGsxԆ7N;t8.{>8UM6BmMg&:S~8Ϫz&&=Ue/mɈ䱰GOw$6bub|uHU: {MG̪>E»x/1?7L6|wl@{oS+'^6@_a_CP^W2@HIy3+9x5y.~VYzC;؇30??˃MTddba^Y#»I AOŔwŝ %7\Tzwы/`3y6p{y>yCE7nVqb%O˧l2Vup~,~}9[Y;G^p{/=wT|hLO _jKɅNȕw.J]_x:<;8|y_؈CR^GVQT-r {SoKvΓx3a"yE.'t g|JToK}}\-RwO)6kny5LB싿6|kJ});8B} _!CbyV=mSo7aҋ&3$u|}]q.?Cy>KC2%V[z0deɹ-J!8iJE;둉mw4= wbҏ̮!|zDEzT䳨_WKD^yVzt*yޗ%A21)׿F꼒ɿ}AE5_t/&+LEd;gctJz/jNƓ4N3 w2Nq'"g{xnooGs}Y^?N Iy~(y'ū D~]3<ѳ*e'I04]2;S'"566}Y:HwcR/yh;ЙOe\ ̧s/7&ђcw%^5fǜgsMM<opn&ˈrD8;?>{w_\/c@{RɳMg%[ۻu8ZE^*ْ=G:_0/1}8u|vɷqh-Mp[s_>~϶;2{=<ȔNΫ?Wם%٥vV*ccA?1ÌRO:\蟭szif:og;U\:"w;睌M>~ >T?Jվ^\D gh|]?fg4 mg.IGe-+<"zǭ;ׂodXt;ϳd3w0?wq6N?)R-έZoˮ{#k&KS'#:1F(6&M/mG>BrzsĐm&)kϹ:g"mK㶫Ss3gzENBN1gu]i7ލSލMo?mg Gg|qF2w =9OmK{gGK? qeW qG'/^= :??EymhB_=xua6YZfQ;dуoc[]11U/MyJrVL\GxD̉G`fYGi9[::l,ҿJgZJwg!!<\w2ܐ^l):X4Dvn;׏\+ #g'%.uǛdn6AпWǒ#wܷ8o1[6ڸ8^W} /_g';*~;;Sq?L1J; <:31L9oαr|s>1bk?V#ủ o}/%=3Gdqz4OG~?>ylnCU_݌q'fɍ!|1/s[ɞo4osum{W(2H?37A0Ou3f\|ewSΓ9?|?;@z/ELe+tq׋K,T63\W'>hK7{v>M 'DX4_|^!N~&;㎐}~랾mD!r:7{SpkZO+k;⺣sl} (r=kjpo=q)qaȺu"@My0dmd߅kXzйu^ƐGo!oed,6EkQKUSdX[E;xGݩF?v>o:hQSgEKVʧw}JkD7R(gⓈ= K:輪[.`'QOl|k׏e5lRwu_ ~61K9ldGAƻ1}gb1<=/CN3s5̸O!֕Tߛ`kgj爵ީv8sϸw\m5? 8}Kwң/p<_)[v-pEǸQl%A7Ε'ࡠλo8]N=h4F1ټ}}(s, NvQ֍OnE܈~N OjG/}z쳕|j,>3q&3Glo_]S[WUŷvoٔq%VO8t]=ǘTŋn}qW<} 1[S;cvLρީ:ǿq_{$~ZCM#?Xji"xEF\;$mGy?Lľ}47*v̱$="\Ͻ)&0 Cb'm̾)VY'[;7o[\hzW5Gw}O*&-tcOURjtO 4WE$B}(};vn.=/Lww-ݴ+}zJ)) R:>'Ed_78e|B;K o _Cs7(RG>{r=s`guc >kK?FM]^W:V~8bzfA{H/ͫwNN9xi' 2=^ל3h{+4~3Mmۈg,_;o<{3c;T3EX#ZNPO9cN/F:;sF Kgə}_uJ9}icX;7oӼp_Xs\+ŷ/"}+^;o]SS?~:ؓ +#2,<:}+. ݬ,!98`fy)&k,3otYu~S7lo{٘'Mq+i3nӱzĺ \{ukTF_y1>{f⹉~|vu+q\ 1fKC_tHFߖߟTEn ϪI~p GsϏ7k_2~:߃oK)4sשSSagw` zfTƎeOD<ƾ:C=sI'T݋˴T~lm> 9+)kf3$"ŝ=|nk艵e|\4?|G#T欌J,l ^Ow}&R=(!p^ĿmW'Or$+O]/wչ)_?WwHT>ɨqS3rbF;nXO<7o웭 ?tNٳA"ο9RrOUE8vgMهj޿I˚/0?k{@?q#~O>=/eޱn'_t*8wtrINp#A<7e6,#N ؀D/t/[u74σBCě CtvQHf,2P1|bmؓۧ3褔窜kƐxrggϙ?r*k3E, `1{d{D+2F`Î0}_;}MH=K񕙵9t+2VVEou˻3P9fk/\ G./>bw=]G s#?k~^OF<^:[b5?Ob^b.h]~-] 7.{fMo߷F{-Fs3dyWNл/e.3%fad9p@͝-h#O[]NkBX?ȸ-f̋3¼ѳ;sjpSˮ~p]ҝsG=X`yi"!瀥lx uw\Us|搾v߿lb^c~/ճuc?|lxc+f#?yknur~=pN,`#t`&8Wҕ^V:,p>#Gt-[8Hoə{w2=uKܴ?gFҺCR?ҿu^oR帾l)KI2 ٹ 5_[9 \-\.M_qdP20·~D2?3#7(}9Ѵuo'?Yk|p8{mL/pO7b7%~]_;g~=AwqVsP0/Cπod,A}=o]Nox=x6| |m nkg=_<1Cx=B)9~!LWӋ*Q<խa⥸ג>rH%#yc!` J~gJǀ 9əߣ[?MSD?|?Pdvqܤ %vw ~ׁܲHMO!q{~^rS ?/lXqm:6SS5[uai7=E>];ʢT$e||?J=/^9 |=wsd={dJVl3X_cHq;)㟞tdɯ'ڑ_bIrGJ߀9t}: 9`=uD2aH&6n-r_p;vb>% Zg ; ifk52^M|!=e]H>|YO1d{SaDn[\-!z?U?{_zԌ[Մ'J ?37ֿ9k3m*;*Y.{H^ Ľ3􎼃ǿmKF}OC&lA6 }\3~#E_ͩxnO>~4ثً eo lͫ$`y;?S#r{='Er wb3oqt۷/M*_O!],^ )FXWB]O83Ei8~%Nuz{".b{hϦ7$&I X??\^%[JFS%ǿ WtwrAmw' crϦRoQ8"5+sg@Cɏr5|EA?va y8??\/7iE_A?2LlszWIn~iG9/M?m}Y8u'?E5h󢺧_rݱO#;C kSu&?\71Dۡs pϫGo>3UڧFwПrqܑ%$DAIo\w$ 3[ɛR!3wดwxiSG?yS }xjj?;qQ/AЏhFvCogo;|fT_QWJז}d7ȗnKt> cT&3ⴓ"B~xJO"PVj##qogtӇ xCWһ Ŷ'ڷг?x.%D#q/"廋 ]{g%>ēb_b]v-\+˝|2F(55:9_;^]'/9c}syX>'2~lף|s(9B{k;Ƀ'_J7xנ:MEgn=(ыFYʻ   #5cS_Ⱦq㹮?)<~g* *Jzt-w81э=n~6s#πGi䢗SNH>a{"{}7.WƱxVK_Fؓa }V5InVeށޤGk[# )JHL[1 ={qIz/WaHU}qCM鞯ikc]?ɯWqY/{];P;Rۯuļqv#óO&VZs?;w 7=>%C?2 w=J4v b@j!t1;`I ٩֏_;7βck*[ڿ9䖱S;7<[.3φ ?hSm d[cRϒ"ܖXFWxgeMrQvʼNcթ֏zS66A_x5 lmtw'̖?o{ _z[]`AZߖ~|yR{ν-q?\r/JGW_ ы՝\_d37/zx0w9N5H;@n3cC%=:#Ro}ΞM\{gVΓ\!yZ?G67-<^5*Uҧqbg.#>ߔgnlB|8}SCB6_;E-s7ǤsÐ~18j_1E&l^{S&;;]oMNu7,MMuZƌݡv3k7SY@foK89Jw-/ _г 0?gŸz޴lF'*DWIt^i皐xn?7ms')k:NIf {̝w]U\Z/6ڮU&E{%tCI[(H{Q (W~zǒylzx$5=>Û/qfj/[O#ߣtϣ)G "/X?@`x529g=Ĵ%~NW_&9}3&z}#ZҼR{WZ{.`'tלCYWmA!?9n#d$?$wMf^{ѿ\1y%WIf/^wQ獺 R\!}vhkm̕ZZ\q6&$s?/⟙SSwj26Bi _=شtτT"s 72z:;\M`Nj}}>Τ8["r{wTgBa1iQq#~/yv!Pu~c7A7|.~WRKCy/Nqb_ y`ЅqeWoc;f}?\t.֙^1x<_ݶZK6H~{QѿRj b~Ƣ'/9 7Dޙ:;%I&~{ {q!W*r"V}䬜 k#G֫F릜s=S_ #~F/:b g-o)[Eg_ɺzO sc6?sj#jqJ]BLL\jqdL`o;px=Tz[K#Ԧqk4uΗKN4:~#߈ץ|@B2w?'b~gs <7K80Kb!->#gP|™z9& C$e5^k{E5N;2žWf,Vճ晭л_̦_9)̞ک3בfs2# Ҽd?G̦Ԯ׍g=G=l&f.V5瑙w?K:كTfG3in=?yu}'W5}Uפ'F?6e6 sk>)_vt'03ӻ]{+S@)׀.ggLYDsW q;0_9qW=1g] wgKO {g 5dl/s^u:\o+޶"\LU=~ھUmWy̴;WJٙy~EF$^KYʸ\Ѕ]G<<`Tr-Js{'&ץyЅ-ݨNK|)=8uĖW,-,v7ֻ ƌcF CW3}.\yzgDf_Rfͪ#z&A3suUIČ?[NN~Gǣsk#s&^S<n nNgןrlU\Hܬg^)c̣wWxwf3??_<[&FyNs-حgܭ3_R'1Vo5&wWuaOy|a1f)/9=w2ҥ31kҶv}5D/1qԈLYT[㼶.q_096Ǧf9w=wa4#Hj9XR<ĬnW?aΖ>E6$o%^c.6~sFoF ^CAl0{%f'w-EJޕz→zvU,$Ye+6װ]w'?k9.wٻNGAR\L>M^˹1g^|7|nمg}Xmqmk]r3k )_9gKyq? r&ba}[{]< 9y]O}lq)KK|o3Dgʸj 1΅o#<)FwY9Bk3iO)=ѿBr ]߁kVupr1qs=.Cj޵{W3{nyN~xg;Ғb\AI;_UE;kw;A*Q[ۇkn𳉋ڊco)_Azvr粝/K~oɞ΅Kzwzxw2~o)?Oʵ.c`ӎ'ZUm9G"B?1Ż!osvh51}:/9΀9'zV}_7]k KE71|E{W01AS 6mPsrX{1zuxT;gMd|;SEvor_VUOݭ^=odjľr:'"Ft\ںd*kʨ?~Ϟ):3MLhai!e]9 G]gޕ K?7℻ mpv#+d?^3Y#sۻ]m{ר):Olg&|.{=&' CrY9_yﺰw߻~?c_mr_B?|UrK: t=>O|=R =ƹ/*/q gOrrɆ1KΒWF85NdyoO.O+LAN|2<3`3JߣO&Uut*d˿H6o_!]zx':Jϱ@CZ_F7' gTݎu>)хb"n}sVﺹB-rh<|%#̈҅@b/WLި=^>A3?ٻ]!w,;t/\};7{9Yz_ &b>1O769؟l@ sԅ+#/Jg"]/j0cyED ߾1Ci=K_6(~'\?] -z]!y8wWL$kq>^E|76ǡ5{3縶4#A~{lźiK鿼E}:c ᚺiǜ |_lgLw#u4@{]<2eFb i6ݷK๝0؄{|O2s_~G5?# }t~=/~;Rƴ| l<<5b]vl L>iG\6.m8,d)d3K[MZO Ȱ >{3.橉[ߦ?v({}Haݾ[kscS5~y`E#cQ@^5(^Oğ>zcЯ@yrx} pMG!SG;yޠFP1eO>:#^}\rc\^X w]'w+ y6\kGas)IA?}If/CR>O5N EtK@ᓠ? `e.8u4d8{;y%5(Ṹ^^VD֛ {kVcN)?[ee10}DʵqS{?'wcSWq9a5~ƗqvDLY c? O2F`GX<Ž`}~d\x~tt;oW\:'*K~u }/1xk]{ocY[@um],^'%-ڛM?t02(ѿa ΘJ&] j~o~ϯ<,> (⮓rnL}~o'cXX>yiY)UsKK[cq]G:~䗘zVlVݘ/;?#.:g] Ώ6B| ;~֋ okͫwrN>SNsrw:>W\yR9uk[sʇS)ghv;ƊW)3O!+zדçD_KGKncC`?S2 ðKWܳkbU앲7_ꗝf7n}inm3kK[+HgcP_)c~=e 詽?$y8D/}@r^hZ?,NsSa/ %u~M7;l_X?i{=)'w$)r%Wik0*2 *ߢ){{>j2=^^zDX䟉ߜokF6I9aL̩]>yasq\mj͘꺇?3Zk\:uR]v=+z}u=[zU>C}U`x).>0R97z~>1S-Y g#ό5R3=_Du/Bo# ꙆxE 0zۈV} ?yZ{t :zק +sl! o.F^?M Oy1.;nG9u5v wKPA,gGT?{;$|FCϚ6f+z7A'gsZGHJ/<=1,qKk]u/EkV7m=BFcΉ|8M|_|U-4 % H1 To =H`(oK/}6{`/JCDvwⱯ4U56$ro?KcgI5./{K&?=v[*%d=G:hK3[m?1 u-Kۍlއ I.\Zӿng!Wu"NgkC\DϽxꄔ}[i69kZ?g;3#3c7r &F_V+$ b{ϩj zJ"wvwr02"X-+Vz^gD.2=,[%{l3][^{%ڽX"|h[_)Uzku9٭cr/r?<2l37|. ϋ9G`&]|t&xsZ[czn}Rη->uBذRsyn,K9ЅmZc+z~'}w`NEįLt*,c@ @~0^\ DD`W02=Kɦ ca_Ȭ{⿈WkG/ V>s>̈*-bMB>k+{̌I?[Nyw}8ĠySGyc_?N:^ZkZ[fon Zy!ZǙQ-w׻XJx0'eŪlkx75tHqxW?d#q]]',/9{3 ypUcWD\c@{ vgnٵYջjgǂXɻst(5 `׌V7^M'9{ _qlQ1x89%lzcֺg {&Nl`\Z홚/)>)cP:DJc 5qWk.ץb7N>弙8wTXrI"~$Yw{1k KUK⟑)8r]ũ3?L.3~1񕉁;ˌ]>b&GK)kgGGv%q#حPn#M/_7Bquoz SGΉ\WCnUos #❷ϟܑ? nzv y8Cinsb\{rs k*?/$5\p|%b϶Od?p[!csYHK%f(&r ; *aWw]]E~!=&~ork'KOUzYrnEv0?)/YҍNJsacgn<:_7>( ̮#99,Ův~5Ȕ1nmK%>K뒽5蘃vāj1#|~jU0.6,_lq$~g?xx9kc'̽dZ p}>BnO_X=#]L|wCZyZ TD) '>Cӻ֘x*}!ۖ_r `;=FObߌN(daG7/Mj+AgKWc_[KOX3$I>!?ͳk-yqLI_6cbZN\\Xd9JyҺt9цpu~r䯎C1o#yWܳ/b".ғgT>8|6&.q~(sSSR7ꯛՐsĺ7@1ڱ_"+AiuCk]_gEkmUWcR]qxRU;Xȭl(9,ҡc_"xҿ=?7]?I9aq`iH$uۈq/ɗD/<Mc/g`}RsK~*m{2!7r=#u[rYX 0\`Hyϼƾs=ςdOٌߩr>9 wN\Ĕx3uSY<%<$oiKG ޸~Z5maI9?Gxرaf/q"x "￉2+cs*{%br 3 c I9uAjy1_moɩs@dNG.N\IHe:5O b%]T ߐ_y6 л8]_l 99k9TyCػo 翻w ޣmQnw\f }O:ӳqqXw"N;pѼx98~Uߋ5=:&=-Qy(G|WԟdwM&>yg3яRaE"׳,]QɆ!7&/;IC7.&}/+jѱ=]#gSB/Z\3*U57=7rOSgTWs%0m&9v'yrjGZrml/"3׎3;9/q+x~ߔbt\S h?XI3#!WxƿV0d[tW:wwƵNiy\kZxSIjΌhWڷF6qjן-}xIjFv<*ZM:ip?5VH2ژ9+֭g9;<53q]!3SƟN&s0J=Wz3T'*ѫqA_z`"u_)vltBk=뒼ݜ97wtR&X" cx63 qCODiS~ 9_rΧ/OU&un?B׻~r]~^?c^$;qr"~q^g6]*7XT\sھuIcrx7Pk;vDK9?sK9oKV]h-#>EVgLo>B[2/)c*nw5t\qBğ_}e_mKM! q]_ھug{~}ƾc[Jq"噜a2v[YgeߟZSoq #%|ooy{&?s)>!Nyu\S<||(_؟k%8vcZ9G7ߘ2v,wjjc{%H21=488ۥ?Cb@J=˼b$G=l!$y%w>^~sSxƏ" ȸNM͵{Ni]vvkms[SkS!:+xŽC߹K?aqo羇N󼩔O@:}u~tɻfZ=q2q.zX7suP%'9o>e Q~?郍0%ԥO?1o Fg%O*up]Nu,C݈G&2?y%V94'#rni48DuAWuBK\bW1'dB{_î@Dgf:3{c.: jDlK8W{ԗa^L?LzNh&@+cS]uTz`AObU @nQ^w/Eu`Ko%ތu;K*F%_d0!>zC^5VmǟLMj2|^kcg_G.e9[CN£㟪pubƍ}n?dCJS'g8;osu<=GI)r5'dIcgVz|1%ELz}Kqe#O%+S(J'L7 ޘ9=<$<*7|{tv);KU;lYs>E =x`z)[6J51ga+~=ěc?G1r>vRc᥈N0JH^JB"5lj7_gIZ?rҝ=[,~ ?8-yn'KmF9ǿ{jeE5v\7v*c>%c /?s Rzاmym?ڱ:g0".G ?'buqkЇ]]|i!?v=/=xlr>\ңC z94;g"_ֻ.jץ[wXrҙƙ  &V6*U4ͺfLI_D~Whl gE -agl?;/jnƷQ2  ֨CɷE2zE-s/t,1<8k&Kr<ί[Qx]C=]G]1gsK~*9G+W^E.)Yߟ'%|[{}OB~~XjƿN>6q>h} :o%9d;LvM}\u5rďA-?R{XMO7w<@٫6`ھc7PƎ}w}e2&n ^2!)ڏخsTH/R5"bw3{r_1g>r[~흏45@gXFG%\JwmZkDS\#ƶ563tؔCjQ/i(%=J&K.xN)O>#p')<`?gTYƓ:FA:-+ pCz䥙}~=`-shcM/uk< .9<[;"wГ#1 fa*c@oVe,k<)G,? ?؇sRι^odjb{v]u쵌k1a=>]{urzqsmyQGwHآ-O > @ZBHn_ߨD91vHML?tSB;9<Ã.㟪&N*J"N5W`/sơ}Rs]/~/ƝS# Wdf?OxYKẾw=?Z=t)wA<sAicNoWP$>uy#8X ySX7Soےצ=Z=-qm܍[xgcjnj٧Ǿ\9P^d 00ʌgd+~(WWWH{=꼭sx" 'DZo9[ƈת:Gɂj"GU+$ !xrGKϳ#v?;q#%>&7tN2%ղ؆!-ϏsXN;\2^é9K3Lπm?I](_][9 K?񣉑ɫ/(?zwNcw_~ @'xN"A TtW| _q;q1y9Řaz;̵Y<{`S>y.kY4y>e;tsyY ^C"Z=rĿ_;kJ=wl,;S8n_X5nJC8 =t^bW5Ry+lpP7@nO܅^Vχtn?G?:Gr~t(wjoT&_󖣻5ŽI_Q}INlg/O .k{KYei<Wzkn&?#.\ajuSþ{1V狚UXSR9Y ?gqq|A|`Gy!Dz~m?}d3q~V<$YOs'B-?Y4tgV_L;φ֪? K#t˩sWrKm*{Io?3ؤO+ RGݜ}Xs ߵ<6:ԧ{O| }\j<'BgqgwDNXvW|}q?ASs=yqkںXsp!S|Sv]OL!Ɖ8'%- {I?9J4𓱷3bW"p =7ץG_f=ş`7V靌{'dӘ9c:5{ꠇb Yu{ڿZ#"Ij,PKI>XsδDƧcF>(~ϕ0/?u~ M{)5nc:O)=*5MpڟNK~ez {䛿wVH͵s[k^|B\֥z R35$e\ to6dNH%3G.9 =k9Kagǧg^= sQ͋d[W;M<[$߿o}br iqZk( )mX<eY8??,o%u_)'f z6<$>?^{]l0טYyr"OI珹A~o5%imr? u<NFɳ5~r_v>3';97_u)OfʵqO3Ɔ c=R'/]=Z{Mlyu5x,vL)r˧ ׎?Dt阧' }Sr$86 6Cg~?S{og KqrM.ePbj)ϮƾN6=ލ!,>.ߒsM_?!}nuG/~gzA_?9f/_8;m4s Yo1l|yNtd4\`qN N^5ϸ0pTkk3fjLa?~h=Y\*NrEGW ~&3:yO׭_اϨ%Hf8~i֝(^VRp6=K`"{S1~USrXXqm [kql\Skw Iu^ƵrMĆ+HvPqDž=ߓˬ%Pm=/wR-^M.Pn|2zfL~'Objj}󸏚%)5xu9My#jXDśV}=Wi^'5ץUVz$uйwG14.=h}NU.Eu"!IVxU,v rMMĉ563.˘I= `/h >``y̔{J;. 'V 3̻G%绪[I^*uq-(g0 71fCz/qq]?R>?8׳ܳOŸ#&'-xߪic_ 9 wmKC㐔ýWw0$5k[G,z,8VG\}=9k|z6>~vώ#~)KX/"z}ye٨em\-}CF5{o?EKv{7@.}fSSdJʸ֣eE*[E_ ݏϤ= :+/QeFcW#{ʆ->]6^`zew\'|l ?Di߭RcMx8Ԡl,}6 8tH^{[?3\D?c]?rxů7.Y/?ۊ.,w\cL4Ou\/0d"G:S_}ցQվ6|G\1bK3D} D\!k;\yGd=d <zvyQUنdx<$ ,v =CKd~0;vA4kBطtk@rk)40Sw?{άg9UΩ}&~q||8WO'9{n;ǹ!7n 2?qCk;C1ֈC kc矜2v>ث_J5@} >9 |:?<|. /v)0OAVyU7!6$5~sǘ\@26p5e_;gff⛂I_)Y{]y7z IrD?,= 1$v ,oJ.cokW yP:[cڻ^qkܶI'oLe#`,q>%%GF=L̿XA~8WS]7\[WySƏqKk]ƒ-_(k8H4nZshץ/þaw7Sȏ _:9<.Y$rw\̙5' t~7]R_&/%9ןE'3߁(9?kdK|utIbpcw i=ҁ7J0'q\v(ffw[溴^U Y59ɸ.%Kz'R}OSl._r+&z臡Fh9_o&نh-Îrx9F|__bs܇BcG=syقC&V*ޒ?#kf?#NɁ]/`[{덳Sd{ŹnAOWڰ[ѭ'מ/sA~,!aȕpNqo@9c{I;ź,l_T{s1֩9gslکY#T™gץԱSB1_z6[ i&$KclZ|>2qt虒fskF'bS 5~l?org3$#Î0N-WT9eSbcU^~?ɚ$ڑ/[j|"رxnǹ[#fF1{dﺬw=< Kw^멈B~5U9q#csɝs o">Wlg "c}d|h&6yO=Z{\{vӭ5_l~sq83ϏOK8vJesb,dο\Vzg'lwm8^Tx}Y}&خcoq}r?@ x+~~>o+^|*%'þ\Q#.7π_1r[Kk\Wuǥo W9Q6^lg]O?#Q)oN~NSA24e>yd`Gm|ֱљz=PGcKwo/oL}הݼr1Koȯ`UzIyPsK_$Wiא.y,;'k);&:F|>[Eю׃m5fċHv\?.~aJ8>Fzzޱsՙy! twqymR{÷w$vx?Qrdk{>_tk M?k)[wk׾`:G,{?qKՏC[rWGp)+ޭwM+dvj8JSS/žXqj\3 qـ/*̟#,"Ǝ.g?%ަ7X >6%_럹־"H/7O{9=Br3{kN]N3џJpvb\87Μw&/&=~g"v63JIdWv6ϱN#CEg3S>Z÷k[_#bI=}t+6B}r-x+F`㨓Gb9ÿwJr E#z̟D?wOyCS}3׉r8dɇTn_|SDs ?ݝ5tkvsԾ1a3qnwWqҝn`wrl 5F'KOv@=z.᣹~KQ5W$ڵў _Ax7#-mSsNJ\:.:v4yJFZ9S'h1=?C9^Xř9մz&NUo??%!y^TA_"~ l6~5>`KGL]EH}jUɸk$D<sLƓxs\s|Oju*OOGk]CDߣ)aߦ:^!n-|\`Y 5z ?$ݭ5I\{fFkoNJGEKkA">ω߇Ss`rbחlrCn"[ߧM9yFgx^;rnAK^!{Z}bs"׮ZL~:ߋ2k`iy$v C>T>g1kO˧Ƕa_s|\D}{\z`1ĩE7VK7WGa-y5dx[}z'[كODoq_"ϼߋ̫cSks7E=Z>Z܎y1uٵ{݊,3Ss.vsU]DsI5:U&O|t)Lݜ._-o>'߃Z4o4rȰ|^)SqeuGrKFqHI_dg>wlv*Iw|k?/;MݢAv䠏]WLoG?"3{>וE~#"w~JsN|_tBxIrzLg`sJ7sv9sR_!.XUt"o#炞G 2cwCg&b8k'FD.y&fҗ Lh%XQvS_ֻ^ /_ b+xdpK[S6gw}1Wg<صG3rMu)]gk϶{ ZX7J|-=P5.5o ~ lĂ;|r |~}$C~'QGιynq)_D> ?9@h[^!EB0=?ݻ>]_fė#Y+|بx~Do>+">pnuWY 3*%r#ΆmKᇘ75c|e+"U3END!zyO\vsʵ1fwʆ1|k5Cf]"b_']3XhMĊUU4̬&w$#G7yȣI:n}vwҳ= {uջ>1]?~x -q^*<)ݿ@EUQ<^c✘׊"WJֺ97saSZ\35y/[5ԾZnʾ/s΋gK9?;Њ]@kih Wvջ@Fw{s1Э%{y:}VYK^mf;_p &91&/+uL$/PdgW&cl l/9eЗ_ʱ q"b+n#G_@1nL9t͏г \Ŀ}+YAV;*7 coxt`K{jη7+KAKwZkߵֶh`Oqmou"Ăџod=[/e#@kɩPAlIn66sJs=s}ywsUƩS@Kg[>L;P+b_9xNk ӻ0t%vg _8?X~>G[,Vn]LιKoS[o~2}.8Ɨ.d8/ ΧW,z#Θ|{ӧiSwmk&3R3;|i_^lkПBx,rGR|깐R$%? #s^),JF\_ـo)blVbIKǙ}e+ήEC<;O:_ϻt?|rh?v`1 d #ל ?GM$~>C>>~ 'v ?l_vyj 9=Bu7e7ݥw캇`Ɛ1묇vrŶK~Oȯ.\zzvz9=qw I`3N7ޣ$[Wc!:b&dzܳIN%獐?,~3>9yS;,Z6?4>"ض8S1'O9/8:LAipc.߽@r_;ڸM焾i EFP?3a³:y7=38;suV羪F(?Z?=a\s J{nl!v_] e=> =7xvy%AץKr_ݝA%z;7_/eh9 !4{S~ك̑`q1:Ye.ҵSd߳U9<;ӄ4qzZkt":zdXJyJK=Jn{[H|dkU%~>2]~Kk]}A{8j:u51 3j;{ I;񣢿3⌈~}pѱ3~5'O}ĢW?#L/<>iUr<^2t9o R5zsg/֮~6O^>8?ɓ?$%t]4yDel_?kZH ]o=c23ƒlgr䙩C_zsѯ^ZLyJrV_]-|^羞k_myŵϘ~Z~tu(z1Bԛ$%Nʐ)Ak/o|A~ǘӾ@A?s?U"6|4q"/g9٠7-yC׊qP{cm jYO\ڹʧ[)կƙΝ"fKb_6M߫@;29:ŵVϔ,>Qzs| 7bޡU_S~dNŮ9OVN}F`OK4_:=Ykc>?Z\w׮y߻>yRƛfK}gz7? M/zZb?x̙|=|AA_|f*|TMjOkI~j óM}S~^l$7CFѩ/3Op[wDzv֣C+}J:EvuB>KҫAH .kD?t$isD># ^OswPM=K{zjS|]z?jK{~rAmgzz71|tgO8: зXy?Oƾ~/KPS%'AiGYK}Fw@^$s|'u򟢽?^< o ,zg~/"fϲ{՘n)Sy ~@$AEkC EpV@2? ѣS}#QSؽZkKə_緮/Fޘ!յVTVjh?I<+kVe V =a!}LTu |61%#gĺĐƃOQFb]-`@~L?+o9g<;7'L93wHoүC2U&ɋcwuzx_I?|\A"@Lj[^epX0lgGx}"5oH?uO1t_4N~G <X[˂y̫]&Ainy>,wM}5Nki0?}Ο f?ϳWjOZyQOF{=;ZM|V|gzj.I=8g1:5,{N;<{ ^3c5,(тp]7Tc݌mGʳ Ow&ߙyFnwǙ-6n-Cѷdt)9/2~{ĸ;[ɹ+/<=V=C~%,wf,09 $hvON>cgsNXy鍒.>[}S/ n!ZjrSK/r~/&x +GXwtdL,0 x.b\~vgj,2|(Y ?8Q/{ks1~"t&6q#<Dz;fTxVtkpyc{#-*-L:b(ŵy5cS3Mn=~HzI%eo{~ }3 9INϕb45Q?W(kپ"Go*=} %=5t?]r۔gpW5,Q5z]!A+=y3~{|{3?qŔ1dW=.U wef|A1ö;fG9s12zxıtbkvk5$O#A9l'~=l3q1)>1jFH>B:x65yIuD=y {8B{l'9rbtMȏ;Dr~KwOAbbC1͛溴I3ROK,D\";O?v &y+؍I߭1*/2._W>4o̽5)c4S%d`iʹ13puvywQNF\Yr5~;1cى!mmsjcgPyvǙ9whfO6SrQđ H=E2z+&wt@9"!zߘ!OMʔg߽ǑFC~>>3π~*ΨEe_5ޯ{4q 痁q~?뙈Qeo‡_VkH~cHM,5J"y*cZ7`c39ط]^gU;wkMFI/>q"cydz;r~uz`g8VcuO.=^ o۱ރ3\_w_]_x2m@s痁d ο6Vy /"Zsw\?[ dl-9ej\*+lI~< K/,SGqΤz 41 &҅=b~wO t_Lu8ٳkXg/*Y?<_,x`qJz1:wT7㶢 =EN/sB9 ,KuVSuuI,u@fd\\lvka/ȳ{Ə,$lĜ$ƎzGJr>GNω_#6<{96K2~7|>rϒ緕\Ě?_goMPA“k|˷7ILaAWCes$9gfXLd8a ~)v 9$5(s*l/s{U] 3ILr&D;&CoC;vΡFEzޛHP`%1Ę{s܏c<gλs5\s2?IFJoyݼ"y19?41}/}=WOD#=%]فqtAg^3M:tDO,b%D08Ee܂w+c8-/Wo>;L}e|ۨ9HӤ㻡(nzv_wPSh[0hO[sIzOND,P9Psvƣ:UOn9~=RmϬ7yE:N_Ur P =u~~_;ߖ>*}sq|(?Q`>k#RC_q<3x0=셑ZxV't!`ɸv[HOv_r ?JomA1Fy^ww3_{/410B'kG|\zR2u|g];Oq~xM>'w>_ |f6gw>t۾$;y^c9W~ϰ?Q5ƸĴ=ߧߕ5?~bhe^g5ϺߕCBy'`jG޸{w?g圅\c̎OQGG|i?{ُ~Oq^ÎEmy"\gyjʶF'} P3@C9n/Tof':E-"? O죦]9eߕl?oК/bEue"ώ7'`wcR?q7{p]y*ƃQg,1?/{##~}Ưx.yj6swΎuQ}ȎPArϺC?Q{>.U:gafKJOdhPت{2YGlw;4{gƼ$>sOx7Nk:Y;AזnRγ8{!apeT9}y^7qzomH|;JrŠͲvao݁~CgcaQe u8ܘgݧZZrZ Zlh?s8Z^5n,<4+<d] (\ў3\FsjF._I:{qoѹbzqZ.[v2aĽt=Ϧi=h]\RMă=wCӿ7 7?s>*Wv:kvg{=KJfhc|hsd_^ZK̼ OAZsdgDٯ9:9!P~R~{*gsua;6ž&SEywFTsX}he,eyjXc6t%`=C;O90IHlʏc3dzOΖey?4wyhBIugG躎W:9jX3u1IJvvi؛ E?DF?=.g=1œFOzOv?Mmcc<-vӒ '3^ht ju:ZuZc5.*g~=Ģ~G 5_ϴ9hdEk/\B?@w _vd?uVslWYE=y+y/xV(LVn|ϙS:п*?>z6ꋷ4NrֵA?y7uBɘgJ.;A:{tYXl^w5P9d8~L M?l; ZT׽;<Q')+;c97}8KFaOz754hϻ_&"9Ҳ>*O/ſ)?s"< wyyVf8gѧseT\T=3&#Ohd ~m%{Hi_Omځm$Y24mwFP&r隨y*k_UOsRoQ+F11=4YhH] 5_kcM BgFsu}T߇㟧|8?҆ҁg;w1)ykle.:&ݴ7/vRhBό?oZ" oà5= 5~v='#k<4ĚNB[COyXO|):y;OUDw>S}Bw]#Y>dg; gluߏ375i}s'ˉV?{S3/y{z,MrF+0Vz$W+܏ڳh{<%uA)Y{sbz<~רR?37gIT\[,ٳ^ԇ7;2*NX'|t񖾄8 }Fe\thiǏ*uMMZ/W??ؼԁ~׍\"z^Ц&]LvwsDVY4-eKi A֭Ϣͧ{^Ө5/?Gѥ]G_Gdi gk9wQ?s*Hg`1Uy UT|(8D֏yF%ejdU!g8uz9?"o[W!9UpǑu =%xdӮ,ȹ=]x7ڞ3/>kl[J~zqc[pkq=oϳ/v:;}vn6&*n\MƂrNϐ;Q;O9q;׼ڼ8~[w &~%;cwniA͵9[qf-s^0߹7{ĕy=ցǒ[HC\zxw'P_C*xO=f$ޢIF}~DxCQW]K{ E ֱ\ށ%5 Mq⏔p!(|v-/6YGy|fE~#|}ZѼ}ǸLZHDXO$4,9wϪ{ƣ2N7{솚sGm6evKhqz_WxV芨W7>wܝۤuˡ0#shiUt:s$YxpAkm9hr<|y$H\3\h2i*?˞k$*cƈ5?O<^Epmʌ'_(a\Sدٜkྱ;,Sՙ[WK8ϞG92>}dܣxtʘHH_3BKx)w´uWfǛcsx>=uO=<ώbly^YPwg[Kڨ[zuQ_=>2 ٛo874Ġc}aN3"/icG^/4'飭KE=ٴt2;u3FӘv4o:KەQؠn U5U#3׳  ڨ'j]mGo%06D[E#}0 uW>\_}G{ڎgXH2ȾXsĞK-\'zchwGay,%}w-]_a=i/5L=<:;گa=h'Pv?zoso g5ȧ|{?M?#InH\u!ֻGx θ\ZM:~}Zck/V=*B!?_—|8-ԋIoy]<̩ī~N\̟:/y5ϢOw`LGz_@>b|FSO|~\{ 8 CxA=}G;b_{$أdwq9]-y:Bym]?}ߑuYJ^v\֫G9ꗌr3y:Y?o,^Ub069wp* Gkh~qӮfo\?I۔ueCӟBT=L5ȹ \Mw 3 u_~Yfdǽ$e[Λ9Cӟ'_y4]mx k5={_[?h:zE(?A?49~3Hߌw~'wu{6jh3IbAf_q~H+}Q?<;`%TYe5e<#\SԼT?siu~)PG]cyԹ]w=痐^x&%cƣKǴU?Cx_Cn_m/Wk1뉨>ZX_+a ):4gVF +'jzoo #1kAiYh ݩ=@៬+l'yʺ_uMiay}7_O"OgMTOC1h@06j4C7JdM~ D)ѦNڹ䉫? f?3̙'%wpg g{߳x\(Z|Z& @?E;qYr}w/g'@S2o_ŋNջ}νy c-?A᜗Aٻ}򧎛MGwc kL5?H2Nfl9}aR,cPxsR=|GqҸÜEON=3N O?g'k%h+mshwBԍ@ nD[gs(LG6Co,4ڌ:M5cpD~z'>}6 +'iy7\ٿqlO@ͤO|v=%Cu{^O[gge_\u=}KD^z~9763~l:B$\z+^!AG _bmg[9 =e$LX S}/pDa3َ?g};b~T'/Y9SohWF]E{|),zdA8Y_CӿYDyɼ$Nڞ{Kȿ'9 =5{OQK$F?rƪ3~)c7(9.#~Np@f?gŸ-yYF[tf33rz䩨SD's٣uo}\E'n6󸧎)TF֞9d^fo:{r?kSH0h=/ch ov?(.s_쑿6Ahq?5xO_CyӁ[{FYts*69[>jFG,v9Z~>$٣ҟ`$M/EQ6qieŇΫ꼛?d>ѹ'Z-g /=^{ums]7X~d]uH?qh3(xﺋ^[/wCϚՁ?'nd/]qE}'=?Z7P_Du5tt3T=Td3W7f(묷;^Ⱥeϥ[;V9JWEY;f,QA7is/,m/3Ϸ=Ч6q{Bn+EELklɺCĿE?ivƱ|16aOG^ u_N}WN@?mŮ7?  2Iõ}3Iz1TgZ`kzMl*:yNK3] }S/t!SD FeT+e,> {.o'f=iWEc=T2?}d '))Tg`aciʼaqy&1 U#Fw14L_$yEzdt3|Q3C("\ӝ+ښE{gJGۗsaAu*ݣk֭9x6z'1nGC~wl&y^{M{Q?q`zׯ1qεqy,H3Y<>Bt<˱_sPu 9si>%\j%[z586H:?;M\Ԭqe5=2LxCњ߹f8 N-Z0뙏ܗ?0﹨Ʋ-X'y?*v?? 5K{=-×⯺ ~HI71^5(v͞)OB/`k栭gE5Wx;YA7uC?'ڳ;FO鉿AЯ^8gnu\끿{ c<<ɾ5j}svȲ= M?k6ܻ#rsDvң7LrGƵ0fhkhhWO~xh3W^`ڳݤ;~WΏɠר8Z&1zP0t ~c=s%Tp4}^P{7JfNDG.ki7q"ޚƩ#]gA6ɽ~…ڲ|ho>孤 f;f-ݣϺ J{h3onXm|41ۏ۴Q]/gs#4񗾣=S}mkAZ Lzh3$ckYW5L]%o5?5;GgLDLF+o˦MEHɱkxtM,8ˡ/_O8 I:w=>4كC3~/h7}r1r&ڕ(li.pwGy#ιRt],:"Yo8yM{Z 8׎=K\=WG[k+cU&^_ M(i܏J<<@٣Cz/5S}Ê(\uy e'd/ڦ"97#Z62/cވc)?rr3}':)g` [ǸsJvju!z&ul<љSg?,\~T0Shq3cײbӋH@T'^\E>)W0j,óJ+ubu?D߽&Z?3@_A\̞Qi26J}[kM 9A){O'йk/q5鼗Ϻ[o'Kw{/fHAh3%[='վMY5W72ruߡt!\J{g:/%O<_33D[xz$8{bhw\cix'ΏgAe6덳keieE/µ{~^yHwѺxCӿjYg.–ʞ5:׽_=_Vгss38Yvd1S=/oeuz=gdXe..ȿ'yON=ǣDFK:(~&}9?+qN5}~u$_GQu;Y[ʾzXP?Yƨ8h<-sk%Zcχq-arN)NF͕s8TvVw͇IsM͙^Fɺx u8Kڞ 'K0ݿ zt7CV}_9w[9IqENrXx@q{hd9mcӟ̼ڣä7;iSS0I]?8Tp-Sբrq'c7Y˽94Y?I0Vs?m*(C~<|hya :sw^鷝߱P=Q}|NJ琲ohKo{l,=Q̖n>yӾA2^5%g\:ؕP8ZCfOG uWs܏hۗ~>Nd-iS{B9wb/K{{VGOX DP=+lۚYǴ%3OJ8//W PiD<ςh 7h~}4:!w/Dkc'Aä=^7wgZee<A^@pIuV9s:}k( [BMfПp J_8Ek1 c2vW9&B<&iύ_$<}=?ѳ~3G>}={&|kqum:ϸt=Ar$s|_e=@'Aݹ@ř:KTt6&Z!Ԝ%#sg_PXpNFG˖?x4VþhB-%Q տ #P1$wκ6rGb&Υfkuy:pWO<{N.mIu0y:Sb,P{d̵g~4Ĩ{<GwG3vsT)ϏuQs2>4xTzH:2cWIc\z'P}H<Xι`{xoXJٺ3ؙԉcP E8-$KYVdv"m/E9?:Y? G枓}?Us~27YF_&EsZű:ICӞ7F׵ϳZ+Ok*9Pky^Ϲ}GM_?k(hKC]wğ.ݢ}1@_Ȓ)羣;/l\W~,?{ W?Ẍ3II㝧WŽSpWͺp5m걢 hqi+#Õ~?OƵ3/uW=yr>۳hh7gh_}`wJŸILN3x?!7 k!rmA٥~;sr5*<'xߊ>o⯺Ov\zTmZ,̣w𮺩O,)Qs砭w9Yo_P|eu^Go .+rC _~Z㺹D}.qf@٪syߣ=c~Ȋ .2yv{r%SǺ`GRO<I?vܸOymx=F^8&>Rv.ǯ<{// Qݵwy/$}Mn}-Y}OyeN_յFlszﶒ7:|j{~h\{Tut\Ez>\ɠs^{FAℐoӏKyoz^T֢^MD;s5<=3ʿ{ȿ3MzWn=PG9mhhS^^ʽ}"缡 陼6tږ#~y/mie9UQXBoMr( 9#){d>с~?Αu;[f朩rxYQ}W_s}9kԳ@ձ<ĵ[sbGa2~KqCqmex߽̆k$njLuܟ$;I'wC[#~PxhOK+ ѿ2u{(L+ebZQ?'OE$S~\s zW?ɇ;пpL=|JE;XͣhψK?ǽ߾oy.g]N/znFܫ-N&h7z%nvο<3us΂D scTn=Iҙ(ɢQT3h M?'וL1->5\q;nF{~'=~;їhls'O~ex Y;4"/ݏw:ri*W5s^SzKa%q9w܃wÜdC/={湱x沑= ~qe}q ǧ[w~':)|vnyj1xSy޹VNsg2jV!Cƛlܠ=zh@i{»}gQ3ެO~I܄qqOz.D?I:oq+'p-)(Q~ߝhӥ=-wŦ6I ʷpQCv*csya觬Ș3m!m }眯Wk\/݋湙LwQf皹T23;;g5|=+V<7&1׽.^qh :]K2j&ҽkژp*G½0fq'1*}xc%{~A 2~gkcy^gЧ{hsZ;oQ8gPF\78q>#EY)qܒb'*J z[b(??*kNN?b\1Lt:nsN}`ae.xhyPs;%?uuSo~*wwc٘o߇kc8 {k'Th8Ϻge[b~D:y*q(/~?4YqeQXKˡfn?3X}+ %nK^$GQ󿨧Wc<==h㜮|(u}ہMs c~~BvFkp@BTɏq([HgEa$Bs~Nw=)C9s'|g-gJiS(on[bgB( EP}w4N,?KwOB~pbkJӦv{K6O@)y>(|| kq*sQ^q7guų+_S 5?oG"yxCӿ4*3 ?{}>T{Ek?_Srl9`n9z@dZ2sRF/^뛋ylON?a!:Io9Ee}EAs9P4s/>(!?GKw;%ky_s׸Pzd~Hufz>qMy!Y7>M|b@k{'㥣ooz2kH΍t9gNa}ygz:]ʏgg}5{5s<>:p;z-*f/G9ڗ;oz<ԯM?_AycF;Glhs^^?q-x3QR9{ަG< }5wt.Lrpfgs\+3B<ګ#-q 7ΆzZlby5}mhA k=1|Βl܉CX:riLɨYPK=ίE}`p_\3_qijZշbLҟ\9ChW=ϳ }˄x,TCoKQ1c{z~kNhD{Lm&\DH<՜sϞAmm,=9R=p}q{w?<-A{/˺ϹƝ^OgKATlc\'XY?>7?P yO2T/6綒y׺ery='_yޥ74@͹RseøiْSiB~mF? 5;Gev|T-aXTsHwѺgt1]JϜ"NGQ\3ε<ω~د^_8HӇ%TxJA 8^߳*Q1wd 9,*뛆lfޖqrך_>QoX5E4ɿs]_u7pMPk/BǠYU t}!z684zW\ϹxI> m=Rw|O5K-ys-Ϫĸ[Vto/wDIo&:]Sy1{|P9Q=Og wfM<«yUߞo!Nr'.yw<8h_=OuvGa?uJ_~ j^q$%[f_{.O_˜qi_:z_7%Tq!  U} ~>Ѩwh i>Ğ\fhWO=; Enh[U$'{ϞLgEա]u8+Kޭ׮oXW?U<7΁UXi /9AToB֨9gw Mƙ hz?ވ)-ݻ#ڒ蟆x^289໡_N9Pu2$ /ekyM=s9ˣ4tJߵ 9AruM0h_C{)?X28m%>S@^h6yT- ebuT3=ύGbZB}jhq'>-gK"6ZO/fyO5%7Lw=ӶϡŅzQj}XU44%2~%)[g۵NǞG[iMS_< =GCqmWIvy@P=5A?':5潆%9tZM9@haʶgWIͺġϜir_6fċ0Mݞ%xڸ1|ȽKߣ9 OS9)s <x=<nsZ9,ވsi\c~s[Я7b>s漭?AC۾ 4WPuAw~rou?dXd?u53v/gTϫaf9=gӵo9qhz!/ID9"^?ݧLΟxGCd=vǹ*p}DԇQDל>,vMhk_߸}GO՞S?ֳ/@եΝ^+9S֍64'|DrAzfj(_moԝ+q{hrs7~ '{BոމuXu(L[>"Zhˡ-"rWⷐ~_繇Kru?s"9EzdBa'sט3}quQ-܂ʕQuBr^g]yp{'!oywFqB2q;xj=3tdcoTv#K;uawߘO릨;[]auYu.:&s|ߦоЦ,?YK *ϻ^w9I~hhSM9Ic :DۗrZg;Y|4iZ5kviϿcxۣ;/oS$*XyZt1<ŚZ!h1sb3),x&{]ǵ^y֋1=pܳ{2绣֕uAvr);w?W|uPgjYwZSFwyN~cxj`uˣlMΥZ 僺W jOA՞Sf6 =5Isۘ=~Ψ3aZpvL]%><2ۖx\Eӟ0 Zk 弒?g,zd(kv5}'tpoOWP3Q"Ś$y~K|:OD<;. Jv$_4~35/ʏhk$?F{rmƱfv&miT?cG/~~Qd[mE#9+X1 ڵc' j1ڢCgs: oϣH,W'o8];/O0as?i^=rzh=1(_DkNE3:.ztֳ {ң~/]?@9MI{ֶF+/>wz~q'%)kkމ-K }XCӟQ'? (\Yh!ZW{$NQ#Z?2޸Y447/[Ld`C$@u xcuϲ(;rPyM[=CӿH'#:W:E{=kfmv_gZo&o|[γ|3bx'E*ɧ9sĻ|}LB;Iǡh}<v{NUB'*ᅫ/lr =ZgGm|}a:ua T{G5N?Pytu5uU'\5am3Ll/>MLRDŽx {Een>g3;CgK=#Da0< jg<4zfRpT#yۤ_t#g.PYhCӟG5!}uO;u?{Hq.5NQ9 $7gŹ˵HM [숚B=U$S9짵qqh3ޞ9Z-)0qkֳ~ڥE h s{;~{(\K M?iv)0-ƘqZg7g>֬euNnWC5/s:r]o|D:?zb]cBT~=ǫ]Q8h'~ģgJq>-^'#=A:tba[s?y%{t㒛+6~|}yyN('z,NAO^[5M|^9=:#me=W}z?Ϯ9uO7 ]'3PSGՅNF3?Owݎ0ݤ-mzWոespY84 0ew@LG?~}PDك}Csh?]kqϮC/oxzhSmh7_zܧ/^_ >OqTe'xz|˳Ogi]0t_ϵ̺^3~?{fHg>%fTA M6wg\L<׹/g~f l v^;v3%|D,uP=OEa0bН۠xN'yR MsnM$(t绯0]>鷏Cb|oi%O_F`f=HO]gi7,ܶQ>ij~ev/m쟡0 {\F2䙖Qgy+ʺ:F߁ߠ2 jǟCH=wk?57Xia0 :Ctch]?7@gtީ׹'ȹC'QtڢS[{F&q׏-Ygidi␘Zf;D,\[%WO 9G cIyU{x?yz!}$'Gi?nCKCm޿x46mhg ✟=zh{D')Ғv>낎=߿3y^*|zuP=/=p,*T]Fh{.~)=6n'/+~Z i{K Ykl:6.wJs. ү9ɟ_-86ݴ-Ap?0 d536ڹb|Op.`x=3q0s-icl\V)պ%I!C{>g#|l\}i__kF#zUkz럷ww/!:4=Y{>_/WjoKFtS?M{E_t)z?uo7^zkf "\_{-pJyQ)?eD)e9sdg>lr>yz~Uwxw^8,  94}Gv6zAzkKF ?92k>6A?FO,76^~ߏ]%72KD1@rظ-P\t&9zREaI^ϥ/>6ԉ{ٔ?89Wwsƽ(77t@ݵk?aog{o;*x4.;6~Sv/qs;"y杅v>ZK.|uzE89[+|J4_{8_0.kVK?{D~ڟy>?/k um?gPW#<+<yM]q>'߹gq.,'DKځ>ǢxAwl|)CWVoP H_<M=hٌ)m%}ԗ#WܛIO-tnRos>ZZ{^\J]~ڱ{۫<(iI?-?1RQD 亯?O|>>.٧v ǔcQrjl\ޡG۷H=]Kt>sT7QN^D_χPwMAU<$OhLs╱s}T]7<0ۇ}v ~;>g#,ݹI{En:Iū$/Cm|F{v =V࿡R$}>e2KG)Nl[&yOls_"\,z_+(w I_OlN9@[N.iM#ߏeͻ,}GL=}AN4o埲TE/ic0l[GݵFpw߼k]/VkyO=jm7α>g)2s mH'8 )5?sqbwb_cD|ΑʘB#bb`ԭfuT}iqUrŏQ95Oqo<+xv=++1^O:Z)_t3ӻ u6#]~&%\bf<|o5Xh_2F3vOޟo㇔o(<#k|h=/n%G_܏u'mB}c3h~.Çz83CŰٵjqԥħ?}' 5˅pϸ?t֟zy9?x@{4]ߓ6cZӵw;l.},Zw̗9~*VFVa)?9^;*}'fzIs0Vjox6@/[FiwJx6H^Py󵧎M=tSSL6>kGlwomZ=x>l /A/uοUG|xk_)gų^3]/)ĤA?9eCu}%?'M-68ǠALo?{#yp6b{ൾS>96/:i(i3:ka?+/N99 sQ9<f?GڏEwmzK{~GMO޵Q8yqAC#wIqQnDᲐד~~v>>o")3ce;{yNR֩k91X v?P<'?3Wh a<|w/}WE3\#?-^}E4.6V6_HyQgZ }y~wϷ=ygXMq^u5YX{8:~7YWh|/|OG?ewR8hx?F;m_>'P:èGp?]>u:B1AuR }iyLX49N6ϤޤX7eOyr w?XͨTh ;#{#w}\3sMzwtچK|jhd%?KiyָFrۿG+oӾuFTg=~IL< !iY3~O_{`O=stY:_XRrdn}v`[OX𯲦Oּo!9Kkk*m&B)s\՘N| y}pשwSȞO^סؿS͟7p"s͟VE0ÞE"6 糿Ӌ 1mZ{5s}MQƱ9]sO]+9~O]N'̟1kfNj;6AiGu?gl'0C\__:Ÿ'7 M[nO/83n|53wn8w珜'9Qe]+?W3no'!ˬf\u=?Yo9;gI^90?3ϯ?uIj|j5<&ߛe1j?sFqGXsq.>&R|:6:s{__<yUF0,|6195Ѭ/;1_޿?J<9cX\M\2*6{gF}$<}akğG3>RBk?5:>?_<[/fUߨf9:w|?>{pݷ1Ϗ֠UzOϋ5[cMO}2_Ŷto!˼ߝ38|NsT_jj^;kjQ_2#iЉUf=?\g/?~5X9z܋cbxQ{C~Ǹgc\{Z|\'duaÜ-k5&wϼ_Xs3 v|+3I{d0p~Yn/{vTc?9N~׳<5ˬI}d筧uV~)赱kCanc矩=2~$_ה]o1߱O]l{~a??W\WwN6em.zuZY1|wNj]5ׯyz3~%w"^'Ό綡=xߪ[{d~Г?W6> sh>5/bqWl"~Yj"(b;538_|aZe+/9yF1=4} U٣?Cn6s?'58aqq949̫D׆z9יּ{S^F;9~M{\-t9ڵu5OO? S).*kG7YCpTR3{c÷/Jmոcunj|Y 5|!Å|?Z;ibɽ+fAwy fuﮜ]བ={{ZO9Vxt>z:5X#w]R~l5&T]8^~39-9 | > CL: ;/3cA{gf$v13kZssǢiǍgv<9q*2_wrñO;$rs|/5̗j抠q_q89~9n<=5s'rC?nKĤ 7?\+\#Aspc5rnŞs6~R;D/3'![lSsB׌9y7`|&v^\&&3_uyw_ܥjǟ_ة_ 6_qLNgi'm /Mg/rĶɓ]Xc?2ֻoz>{0cZKj-`z`Ϯu'\S8[O-c/ǘ#g|F -վ >X/I+5xź^fPl1'?E-XqiOH|Xc1^D;Ƽ+sneod_Z[F,͚ySp2g_rq^~_* ֏Y7]>1'%~Xsޣ?eSg[8`zY5^3?OQÀ?`-Xe=w"d>ses]=~X5451jc ןVcvYW܋#{\4|~2FΥcj-}>j^7\ǜgYX+dWٿL=%5?Q7ܿ/y/9{w?'g9>^}[|8\J΅ٿ_S{Q+2~k1{k5o_z~^i<{G5h qlSGpszX;_X}k:B+|G/+k}x1^9G9[s*:?[6TxCj\\ P9'vVk8g\:>/88>3 L/.u]sPs}$ճ92c3ϱ.퉚EW;qyuKl౛F>qEUMc[=kʜ_ ׈?5~wc`۫ߧjm"sMC]:,ɌZseWb.~'ucGsI;q˼oC՜|v5Nkmm5~Qc?hUSތ?CKnsbVǟݚގƎs9e3>2>&ZWnz|K&{|xd/:3'zXwTgԬ2c|Gk[X=Ѓ8օ| bcu 5SoQ*BOtfs.`X ՜W_ͫp5C77'̉sSǜN1~d 7~{lu8?&?=2jfwkdmS)lEraK_%k,6ߖ}D/s??wθǂ& >R:^}֟V}^9ު /ؚ+'=4>]~9Q?k1h2'_k83N މkn9Gs߽:vT>Qsovo=΃S~2mIp4כel̞.Evjɱ^KN=v"676̣#ںZws|d]o'?)rW`'Gk<03яN?]s=LnVi\#?p=n6_zW,3)ku~u!N[?]3x`'I<L⚹/N{WT94c_f` k6  ]j۷ړ~xDyX܌-ս='>PXzeu r}~iᨿw<+Rs?>;2׹{yG1T+ڜ[׌1~:=wY9`!rbw?|yl?;f튟0#@Cܚ5q/?Z{e>uW?{c>3Xg`]mG~K= rubW,ιuGp !gӗzsO=b?㞩GHy}p_/.֛31˙;~Gj7_wwU=: b<:^t쳽ȿBӎ$dC7~h ǜ09ԝ5[k]?m>xk/ܿ;c\9yv}zJl31?PsL䡚dMj2TOhuώ\smx87~~p"f kĶŀVk\1\2؋_:ήWYsV͹u:'x ?ZLS}3\?\Yu}fY!ͧ5' c[?6l'esuܺc3{d =辻/~>?5z Illc^f]3XwNo+f|+_1%_Zŷ>זYO|΢kl<{_.meZ] ޻O}{wb~:_ױ|}֮;+-cn uf=&\j'n~VWWagwҘ5˚Sp{dtuԾsXw۹|fP7ƞşo _YĘ.{2cBgrG,_V]wbW~ޥy&Jk]3vg_\1BޔNA;Xu#ϵq$Fg/=YMKy,&wɼO~PW6䑇-sﯭ5Ombsj}~ֈe݉;r}>=7;ľi~u/-/yϢy|ulYcxޜu#W_r|ޑyfvpuaP̘4}֬_:w]3gqq~_~Usqw39Uϣ}lIɜcɿz6a3'ל V|K_sCo!!;'g{j,Z863={õ9]\ӿseͽ\\9bOTO 3O˜o9)ZsM&_~N١'_?\]su/g]S37?og&КAa^{XS`\篯>W189'VkC&~2 ؾ_s;ag/ܭb~XPbN?jFs^u {`(]h "@#Ś1X;nxB[H83|N?ck?GA]|H?95МҌ\*G糗񻮄je?oRp-նVOX?qGr_4ס 9v{ny~okovWm\U718ֈXi4.s^[jg4'˻kw[k|{hoSr&'x[ߜhN9'6wWdo>SstXy֘9yx;j#s=sv5ǟ8+9s ]\4}n硚{W밮Yɜ_cɛ2u$ؒz:M-[ry 3t~/:w05,kC+q6rϛLSսVGp7qػ֚Fs㩚VϘ?~'Ϛ}H bks ]?TeN~ ;쩟QfGwמquլ[j_Vsd^}-2_1c]5k#z<˵k sǘx qv!i5οd]|Zw?1죜!p)VxOTY\粚u8OaĞsUz6l~yqZK{p;x|s(lmc/6a!ؤ bkns?3޿I27~ |ch^?y?[\}:neOZhԵΗ?r͛PC _XxeO?y_k~:~v&{"6I:Emm>Psg̗RmoƔ u炃2_kͱC'''Xss?|f=;1})xoǴ뿞Os_c/pe2ϼ}xÖ9'пb_Yr]p"[O?f,1kgO+ɹ܊vz?k3˜j}5?Cd>Gc{p.?q=Z qќ=>,_o2-g{/U?e16ǺSTׄG|G7R{ͽ~fn9x{k[ ƘVs[$?GFßMUyZ-}S{g5bȯVs'_:d_8Sl<3+f>+`Ys_+zfNaY~C5#16㌭+&pgen.v䇵~OsUw?7m]?qJԶggp!xȁgJs?gcG`?ɧ/ԅe?pkqœ.P?>]s1Ol@k[sa$\7&A㙱8>m#ZFog̾A7ɚ0sœrfĶOc0 "1ڷjX+:.~'\ɟ_Cn㎿@nǚt3jƱ_r#zF0?sFM0vK-+qK_Rۏn $8QkosgZSM2l3׏N{ݳ1՜OemG9˵=d_{{O_w<~a<:kǝWohWfcCiwr9︨?]Vk̵`>K8̿q6g\qo.lҟV;ޱ:~xIնe>lαT95U{?z%)ձݛk?@ypb5'VOo?M37Utj18>άְ<D\1h5z, o~Jq Yr$~t\'k(UY?;7' I/MlV34wLg߶]X3w!OuC ~b{S}N95q4YԱу_3~nG8fNE?5}cjS|~YwN͹e8߇Ú5?8sq)^OͳM­s:p̿rg5OUɽeU}otZK|p,);j?'3~u5{Y׳ϲ_3𢱞/kTǍG> .yseΛd=7}WZ9G3pEzG?wU5hNqa gV9b.E5or$ 5r{~͹jL_^vއ#fԵoIΩ]eUc̹u=f]sN j֭LwPowyz΃5^u>;kƟ?9O]Oɚ/ŮYj2dOj~C{gQ|̅.u5u4C H #}f^S2k9=+[Mȵ]0Qw1ϣ{lv?Ļ"_`_o|Ƶ0?qW?w׿?S;]<e*gzW,s{Ca`_lK*vg3y +V͉;~vhCc/s9zYlge_d=n7tBLtU>C됳qys~oXm{;Ce^/댉x}~Z;u2cQce4 Q% 1UY s?<>캾澦۩^sy}]8koϨn7s-"g=fP;Zs}ᐙk>$,s+`q7?gfof9n^_Wr#oO_]S?߾SOR͕g=bw]ڽ}w[/翎/N{?[xruLIqSǏmgo›@AN$ 5_K?}2gls5c,9#joL=$ب3Z?xbk7nuk=ZCVZ}/qKuua=1ͽ?cJO}`uǦ/nvv;A23frEu/;\oGY(Ԍ9~65ۏG~՘ mk"𽗹hc/_i꾫[Ǽe'S/g0;Yc̍8'M{5K;^2>RἏ5ߝYi_؏Y]kfpm ׌~Rs~Dګcowb=ډ㚟^2+11'Y/k>^e{k2_9C?}apNy}{ŸZI.uAog~WdP}<7똽9}Ϟ§ ~wnYYǟb?p Mxh-1Kk8V|d{?g5OE+55q=[A<ok_XfnռZkGfg>֓2'4p ?@73Hp^\5?||{|LgZD/NVsӭ]W3+]/ᓜW/JǚĦ[[]|l\<_rԮcM]8:ֽSB<+'jfGs^T3~~bb?6p'k9+[nۘ˚ b//ZWkGɧwTc-DX˪޳>a?|S_aW01)plbc]gE6,={Ƙnoج@5+>] `=a+Ok\B;1sXn;_Kz=Q/?ZܿAnͿg~'m벉G'zf =e?~ DM>e&fVu|uՌx@|v?!>s?{_~\9\' #~u=^:wrg'ޱcN[2#e=>修edԮx돎ῡm^W?Z?z{Bx߈ssx?VǔcN1OT%X dUE5nwk:>Ys5Cl'MZu/k|~7gl-s$_CQb'9P-fXz1_Ffm֏W5rksjƻά涭-pggOܽ;Khx5s}־fPjCǨƙ\{郞_N ޘ>*ggG#~5Ɲ 15Ow56jc5?<__;Xn/x2āO<~8hRƴa_Ժ=Uݷq'\ٓF?o~|1CZ {~_7O<:V025a{|h_Ķ\t2hj0cS/kN;q>R3GPnaG87jU%忍 q W\˶+vo߻v]+jΩvΓ9/5"v |Yzguux>糇b&7~fУjփ?m^A^ 0WU3՜Fl/b}}R>-yvobQ7)]/by1 ?Y'sVw?b?9b?ng$Jg_d_Ŷ_f`!WUs'11Ϝ]&W'ens~4c!~2?7{'y|U^P{ϢK?q\ed_j)w׌oȸKלdst.Y."eK]^ 8wj^ 5i'>Nzhl2uSf>1~{ƼeR\ׯeOrQuvuAxCbÇ]~ʚ|1/ ^f {/s O<·y?[^9XS[fgku]g%~zڿg͑0gb7Um7ǟqݿ?_YEm3N#ݜw_|yD|_i?lsw%O|wgkr2;|X̃D\Ouc/8Oz5~ƚ$>x r=Z<?g]bڝq-r]y?]O's|/ /9G ZA+X#; 2gZЇk>]:}ŧk>Ølyhs{='?u?4a.F]#5O]Kc?x?b;wTk_]_q^Vso_8kk+K V缙+뎍5ƔC>c|7{4 i!c2? 2 =g55ߙs9K/@ok\74~l[S4}̟;O Mxo2`]^`er0_2pȜa5qk .|kI\}Vݿ58MO\guhɿCA'ڨ |^6ںfsWy㥮k}Pƚոcέ~D3gu~bj~յ1Xj5ؿYS;|el ɹeoIuSd7SdNotCo> {cľDp6Ҧ?j;5_A'_tr]9~{i ꯯:v~Ͻd]ui4zuCpgW|:vyX?h=|>c~h5{4^h$!Yb#ށ qg=sU\(Cj'˙Opۮ[?'c1XIL4ى"cMlu4c>pIMu ?D)9or`)y鸞^pX/zYnKpm)OZxg(y޿IzϕYwrx9.z3I\K |3qXgW֓qĖƯUHpݘ18ka`>g;/3o1ӫ1 ??ϭ ̩3{Y8 sѴ>ST7s67/y_(wOծ|hKcpJuO|e/ ͽj V+Zds480k%o;jiZ}-I 3. r??'\7L۲;7mŧj~(Q={5Īpkry5&R}?k1Onl5vcNօZW,k0sUap8_"ر;O9>fZ!߬Yn#sU5j'I\J_:rsz'6~Xt-[rT~~5Ίjogg'dn>$@vg^k{6Ariӿ {?6d>9ּ֟_wrV:4G 5_)rەηdzm]kГUG>5?]3/7bzr/OLN3ڱwKZ͟ϙd{1&h}-{[֏8<G~qaG53h'R3g35g5+n9k<O柘:CLTGj?XkB aNOۤX:|f9/r`o#vry_o:9jzq%ɫ쨶i=ve׬7 5Q!~57=dmu+bƯ nʺ>f ,~}n?~#?zyuߓ9=blwkӌ ^7Śy0OǒC|՘&>-z1gO|1ĻVx]57C2Zُy.l'?fGcoAܘן׬ kSa K/>k|bh_r}]:S߫Ks߃.A~ܚ{m9/8:C.19e2]je=gus͌s^ Wdwc>+nm4bOM=({2wwc YkW\sZGa0PŞv _[0xpQGD[ i='N!:d↚so$Q#u oXob38Q]3Ğy^6%1B89цweOcl78Z3k>9[so΁7^TCujil8kȟW^UE9Xv5&N|P߫ ˽vg39X;`i;8c:1feެ/ǎ{ E2ㇱZv_ my뚝?~>_11:t2;1Xs0?J w=1۫1lXa|a?>SxZtygFVc/>~u ~xj~lmx>^3l?:-6Im)6Ipkjf[]k~ȵ,?Fz ꬵ}_j[xkm yŽ>O?`U_}O}Ӯqyb<#5^=/buj_s=']w\9~3;g)1UcMsAcNL1KmG8~?vw5H\\)o81>-Ys\N<7?0%6 Vo k Am.689$8y8۫{$V__7>R}sŚߗ >q1};5 3[{W5v[><^OKPu`z9έ~ם٬#vÿ&׳?Ve>V-4'J s}~e?5'/(gf3oÝo;j|Nϲoc;geuvRfa,ˎ)r0Vs/s6_t.ggz +ekˬ͏-Cs]3g{F3}Շ}ՏjQ?1]Op_tk]*Z)K_y)GS#y G`6{17T/׬Yi^oYgĹѿ0wӣ"u1_cs+{E! T +RfpX׎js]bmco2$jh~qruސR15vT9Ȟ\_ss1-9p c{5_WZ:d?wz۫XΚl/{rysEmmz 89?S37OlxCaK_wicwjG_xܘh6o͟nwGܓ'{4//Iw52_ğYĿk5?yݿ"}2?kH|BV}]-B ڕsj ײoi5柀5: \7[O7_h2xpǾ c>cvVjX?ߒnpk!rXpLud֬7#9w߳\eC͚M\ |Q;0_$F]>{ϞzPs?k4bа>o=T]̇4jα9/bm:˚SjǶkU%'ctG|`_S[m|1&Ƙr^5>`Ƭ^Ϯ`~9 co"yc>/\?{0ǫW/r'~uO't?EYؿ^ Z#tyuMr<83_k _u0ܬAl%{kbd37[X/܍/˱ڗjjkF΋e/[s?~]8sso#/`Bkv-|w\\3Y'x <ܱ?:q1-|U upO{HvLu >[kUf7OYyCWnbu5?w5 to1!8ۿS)k\/s*/?{8h5<64й5֟_׬_Κf|![Lg?t5PO֮Flhd<){OF"rYwk{:u݁m[͹2%< N~A=,>CZ08?l?O\p.p2?dcߪ1kq* 5_8V?jM;yk0[uOLۏ'IbĊֺTApi!~p$xp9SsCwh}Ǹ?k2Tq>k5X@?SC |WSEq}$f8E>x+ck0 7챚u ٝZm??24 O 5~Mۧ=4>u8p-v{yX_dw{U\w4@< UƅƔ^C-]?"&Obs\dN^yϮyϯ4)5׾>Ss5$wD|rɫWN^gs=O\V=kxXZg}޿Q?ʳC0w5k-ȿ̳rH8 ._q/-wM,O{xkBzkeejYuRI|`էÌX %4S]9'wX#o<3Kk>snQg/pw a$yLu*>Ks67V2e< <17t]5n_3ߟ;q??{j`GƻyfS2fC/Sq=Rs\?Es;v ޞ<35_~Y9H3}>cgQ<ß|f*<57/k0j;ueel>>Ctjh'gmfvw?koߩz'j=x2HNϨ_9|ͺf3iki56Y̋si:3Wo2kלypw]S5^_q{DΰĠ@fw?ϝ}ҸkjWf-%նSYu~j.8aGbgk7bw 5o}_q oA1. VO^ WͺXn'٣sܟ竹'?:>[/_jsP[7&g0_^Ƅ)_ϙ&lgkIgjN Vki?^&ચkjU!NLͼR3^i?Y?N 1D=j 5syE\5oOc߮cwÀug]gMb5 ?n;kdSgVs:ɍf*Қ`]׮g;Xynjg?~KWV?/'4{}O?IyADo~Cܓլ\g~~ ο<Ϙ_>cn'k?|j&c#ͳ:?Rc֙j֪;t|m;WGߍ?? n F=KnǸ^pup93n uO96 de~_0Ԍf>7wd/N5|ƔX>˙b j~w'>˵`[k!Zt|?sؕ5\VqaW lp=Gp7sjϸxðCyߘgxRb\9~*eC0Wp~f}c=\]Og\]9Esw淖^kKO^uY}9½{c/TkO{{VVa'} kQ]?yd;j_;?T3ob\ _']{|?zX=dUuE{jȥ9ԷTgkn;A+}y] \֜^V8ٿ ɳQW?Z=e?d?R\yA k]pKcX;}?v2ǥOiIzrg?w2㙛ǽ__>EU׺Xf=2^og19q됧^_3~{ͺԜMٟO.1Ye _ ȓr5h]2O@.瘧d ^4vxwٛv=3ƟHj]ke~5ka×>>?Y}g/rO/e[kbor$qu$llԅZJo!?Fgxrb.3J+6m'ω.-dsV1 S)@=:w?ig՞2N{̯/wkUY'}Ǯ?gA?udu-߱a>ϫ:X֞/N&捣%mfqixW֘Ϲfb#!/sj~0`G֬t} Vn[j9Pq<ڇޯ[;^cތgVcۈ9r{Ze|53v|uuOѣ=Qs8m~\p 糯Z3ߏ9cr^YWζzṔpź15Ou ?ZX];FP}#^x/88Eğ?\a1>wVuOTꏎ'>5{<8y X_1eULp.kk&>jj>'CCj?3UyZ_Ǿ:1-CYO8:^\5ǖ{{RcygcbQ>r*Xߋ:c:Ap k@y:|sИw]0kKʌÓ3}p8{Cyp!1erdsGs%1_ ZٰS>+ѫR?cKm%~*{ζ߭%Jp&{ud׸vtO7^cP@?rF=:o1_8ta[??s^S;W:ksv);e?_fx9Gwya>A>1iN {~ij;쬮dُ*z\ٿW3g >՜~c Kf[0D?OjQ7Ϟ̱~>Vb9<Ft2Ğs|]N%9+\կ;ĵT= bku~h5^Z=/cFk8E KO+uOU?q_7'g57T7=qݏUW[kּlz54@r~@㙳\Ͽ_}2'icrδ̉ZN͹Cލk5/r&f\ωqHߗ5?1O_Xc'd:b-%C.OWcp%wAw'&7N9o<cPnhOyvκSNț42O>?ksO?"pnoy|f=Zb6N/_EO|.;.kyZ7x${-3 VRu=:oWsG⫈_~)pv;to?kf&5:v~!ރa>/7>q/c~z.ۿG^0zYlո9(G,sn}|5k|=$2!Ji_g'u/́N2ýc3WjrK<Veo2~ glWEj΍k2]rs/tON~a[d؞X9z1pj'??Xsy\m&u'o9 OfZb 5Fcwg?Z?бս*?OήuyW$giM̍5-uԛ]2I֬cMLNMC߽9%u1+eG({/s_YT3ٻjo9NP0m녉c'w֜Ϳ^O+jf7x>R}?@0bֵ.od_915qe5_Xq||%l21ߪ?Iμ>cVVst@x2Yb֬Z%cs9X?5O{Eg&c5e KhiO?Zs>u_8_FT7'89{[WEN9E˕9g:2֟o<5?֛\~P `ٹc4Yc3yF0Ό3Zm\q eߡwI;![kg}n~0wT]k|YnXV7Ӹ_8ұ|v03w}߳߬m5'Nv"sa yI5??`5WMck [DM5Uqrub/mZS3o?ofs?luUuaׇߕheo>:o]0!ڱ.>v5붜3Ok9V̽V;ز߬9'=mzq:[o/!Ͻcej+W8 I5'?y2svdns)'jnĎ;}UyYrzΝYvW(V2B6&D! 6#I6APl@0ƶG ,,WEڮ}ޞ;]~NLwOݩG}m R4ieZ6o~_loM~I~)[{j+U{?e従MsRs[[O};m{]/:?`m~^u;U=?uͿ_畩|i;pޓk2g'ݩ(}Oʯeӛ6M'OoL3}:U?KXRuE~O_z?90k'+pP~NIj{k&RrLޯWv5-.O⿧jiǴLu~gdkҬ\^KϮ?T?_/[@w?U;Svi^׶V맩l+}$Uzf_q\VTK3}כ/hݩRu=_j_O~_yk~ ˟.ץl蕵>Q~v\ۼohsO?I7b}. +O&UrE*T}y}fge[Uw~qՃwko6۫>{Zj.3jo Su_WfjO{c}do^~?G`o~eZ)onCz&{ֽ~ɏ\4ϧ35T>/m\zK.-?_[>~_gOWj})U~[~qMkm<@MWro7[7T޶:ݝ_(or=SOliW}GR9ד1O}өlko+J?m6ŏO34>z7Oam߇R*no۫>ƺ~s~Iٷl]2=P6}^FZM?imϤry^u_;~NCol֟k^ʵ LnZO~ޞ)mg\c}y{V~]Ry~A댿Ke?_Y1Ε?LZ6t桭֘X>GS^]mn_vb[2V/?ՂѰOrT3}T_<.ǯzן^u??ܫ'BV,?M^k]ܘۻW}iTGkaR?SuD+ߧ.L~oz'{I>oݶ,5_˟{u:ve6gVo[{2󏾾{rǡb~S6k/5v>T~͹vkd}Yw|_Vh=hL崢Ts T}?Oq^u/Go^yʧyW>֖Ty^k|ݶݯk}_n~^O[W?YMz^OjJTƴʵzcQsR צ]֞4Ukloh9SqOݿ>g[;eh~xmݝ=]ͩnQ|T?.V5ZXX1TOewkeՓ_ܑ_ޟN^^csuںcev2|7͟?\~oK~uLT[~=ůOۿOm)nzϿg2~g{Ӏ_Oi.jc5y[kkVkmt}|'j^skktzmT}~ݵzF*EmcU7ۋydl*sk:֮Mv}VhyÞzT-מs_U[O|.ǵV_g3SsK}j[OW~կ{x1?_{V_V_lk#|{Im+]c#~Է5n¶&W? wjߏ~߯~T+~A5fi|߿OomR>O{ť|jKnV YcU6mcV~2㍾MT+X6~!U6Ru,ܞm0\ѫK!}^"U|}^Ru^+j4k9ysrgVzp޾?=J~mU~_c^ʽvMk{Um汵'?ʽٯayly?o{ߔ^khiu̪^uG86Y_T՟vv꼤}[ |V_-e*c?>[}:Y/ZQRu. o<8kS|a}RL 5V_Xmk_d3S>k/^6~Tj]G[i/Je;WS~_gZ~_robW?_־ku_۟՞genT.Ne?9m\eW]Chm7_o*_㟶vS.ìkz=UeΉSBsLZՈޟ^J~ޫgkRyG?[['Ms w4wvU?h}l]XT}mc$5δqN~ݩܿ,w]y߯K:;[T?kmzj[Uw??_?#wN_a4_ۗ| s}v=*/&濴\w~i/q\և؉5B|wo?bm[lLqsw>-}~ӆ񷕽s_?4}1E}g}=56v׏m_l}Ux~U?73>M_t׽ٯ?:ډuJ[?~˯o?^k׾?zM_Omi?'cGZW|(?k]lw0U.u>o?m_L~K2W+z?[_/|zRu:RƯ:ʞKjiNnW3ڮT~oq!fկ'VK`c7r]{UZTx[k^T}/??g)_oS=ݛ4VܷW]7Gtg>ǾlPbk++`9?oGS[;m읒ʽ^|ӯ_򲾱&?Tѯ7oSuL}kk|_Vߕm k?gX[~=ֽO/N{:[7+H?+b}MO|ko^uϭm}4?M1?GCOZ:{6+:d?h{NڇO5lmZ5g_Lg,&}3U?7/y>xNW<^uli۫1Xũ=+sZղQܯӱH;lS [z_WayL~r?.U?fsş[r⯥MfT}~Y4~aC׶{EM7z l^S?=oh1ﳰ~}n{_=T}o_oBokX=k~߇߿ۥv_{G?к5_ݯ=/{֢-/L\#y_s?W}V':gUW^:_6pWT>x+w6__?gk-?HiwxI{6oT֟+{~Gi6T>rX}oүm?\Je빭 زV\AazaZ_cԫm>ͣY9צ>7mkY[яx~ߖq/W_qCmcZֻ|_K?4ul~\~;?oOSռ#\NjSyzVΚץr<*WgCdmm桭jkoK\~뗧gl>+v?6e6j{MR ˣS-+{FM5չk>SmwYDuduͯ뭿9K[̯֫?\߿`㟶~UHk٭`9۲6su*!~ \ޞ__cq*^?Ous5]Zy=7~W]TxEv'ڞ1 {ypY>>{ワʾ#N?slOƵqN-3[W}кߏ?X_~ďX;NǣQcж1؛mOZ__RYusG k;76~ˏ5~?vU*~]oSi9Z!Uןr`{Llƴ1^ƪw}~~R5ۻԼ~Ͽ[_cVh9oXCy}ӗm?ѱ\*k9XdETοZCkoNб{ʏ~A7^ 5z]_O׷Smg_5ϭkk㴟y~m;iXĿ2=k?DK/ryb93zs7quo|k}l^_sY9?q?!_wǯq1,__qyofUOf2/vs^K;W73vTW}>};֟-[k9K}ݭI\?/^ VK\2GsL*OO{oʺ٩Mb׵aۯZ3MKp{FٔwR__J{;R=7״M̺Mw.O~*)ozjM^cZauƻ;sL imhK|gZ'O~ڇK|oe-vjOo'-5߯_Zʏu `孩ZR_iw˥7~3_ycVcZcm|@lMsƏ~]^lv󿚏{7zjMk!^K}}ߧ>O[i|^g?c??l?ڐ6~XXKRukCcmB;n,?Ŀzr*cFcSIv @a}oY2o 1&~?폛R__tZy7?NԿP?jo4}hǩ۫lvdcq.vڽi Sy}O}drKe9CT/MC?/{T_N6_ ~O[ircP/[E}ۘy}󂜿ƣ؅:lt]ni/vGXOc9?ǔǏ ӋW9~릚G[o7c&?KW6hՎ]=1F;~.kozoe8Ro]Lt\(lMn}/1# Sv4s]ի AP~3_~^zyȟĎҶ[طŦ}U~4.ɏڼRzXǸo4ބ~ͥvvTGzV߾(k[ˍa_ԴϞ~yn/t]z[dM8ʱwrݩw7oMֿ|Pg4/vmiɦuYM\of-q}{SOzoo7wTz~~ҏ=&Mg}s|4dϟxf4g밹i?~kM{ʶokO^zn>6?O=?K}ݛք7ݯיg<?93ju~KNShT~?ʸ~vį|}:q/vy;ުSl77ߏGKHx{+lsJ~\yO3c 寏qR_iw[TI#^~dS4=wԴ˷"OWT]T>ԯǾo>#ǶԞc:m~~M~O__篯ɩw5??۽~_u65O9!o?>kY~ݣ=g}ȎOOF'L4ۄ󧾾юk{{۠yj{^jIuK}}7GgI<6> :Vcz?R& ~c}~رS?ٙuIkXmչ'sOyguȹOxʓٰ _#k" =xKoPrI? A7?ކ3%~N&__5?_&~{|jC|X} .\u+ޠ[oH} 67?o/L+_U8}oj#z33W#oP8rX}.,!~*_q 8 ʿ>WG Aօ#G<xċo槜qSGx ^oٺP~#G<xu4٣x$ޠ[H>?m텽Qb\+~ vXSY8Bx#޴įĿ7\#H̳_&LU޶5So=B>۱O/yϞϻGU>v;`#dm>fJͩN+{U-|TbGp|OV_}E!K'#)~o??Q6׊Hb?~8N/"tAp}xo|~ՠ*(1։o%1>/_/i-\+-YԽ[r|~f2>_-PxG]+?\X7׊-W7u οex} ʿZ2C%wЛkg`%=wxx3o|^o |O[.1%n[Q6~S~AGJokR/ [>_Ǡ*?+ڀ\wQ6^+veIxx3o|^o Yߒl)t\/ [>_Ǡ*Uo矓3~5m]%ƗsP: }/۠[>_Ǡ*>'}ܲ#ˊ|ʙA/wX~o֣_"~}^OFYX;]~O[](?Mv<﷩ω/+=J>?Q2W<7>G<x#G<x#G<x#G337'~Pޗ^eŹa'v7ߪ2 3Gbģ[(lXoP*oq1[}iGrIu}vuz[ߪ2W#l~Qķ-7zH]l`]VA̿lYX>%Ǣ׃x݊7(VaǢ׃x݊7oq1[л(o ^ ʿUe->F`oߙ-o^n\u+ޠ[UcQ^ۍ#G<x#G<x#G<x#G<x#{:ff^$_+D~׾U~Iׯ.oP*eWo ԽV:9>P~#쯽Abl#trxxoU/CcP gI%8N'bM-C?7 [Uxdkw3[mz}?E|\YC|ߪ2_Ǡ&OzK㨶>G_y/}op*eh} ʿza2p\_yi#L,ߴ1A'3pPloo 3>$|=to}o-(_z A'3pFnq^%m aWne;}lxz=Ǡo8h}a7ח/__o =0,_Eac1>_xA}>vy@ŽwyS~oPUp}m0o<A[}~s|mS~GoPUp}m0o<~G 6y=ߐgWۦ‡>6FAWcP lo g~Ϯϟrq(_z A'ނ2 G<x#-޸6kYʏxO?"5?wxZٟ9e G<Ewmѫp޶572G9|ś}Mof~7rϹ1klѯѽ i]U7T'L43sY>|C\7={odWCvu7o- ^xy׎oq_~$~}׈Cv|,m zX@9^yUogw7-#*~O>t~{h&A#G<x[x*]ff.uxwWOGz{W-[jax(!\-7O;^^+PW`j_{;gkW !}/ğ<o9R~)/>C%=#̼R:N$v{._.VT<񷊿C={|Cy^!V'}^A<.; y(}u(J]<;z?:{J+ğ&Lj{QW.L-kgϻ][X<Ɠ$~:WE@Tmߟ=JJ.yHՈs>B ws}˚mX ϗ?Y|t> kg{>3}^T;/ni[ex|}Vk_/|g}u!WK׏uqR^ B4ouo]?x#GI͹H#팳H[l bl}/l<ϋŶO/>[lC bl}/l<ϋŶO/>G<x#*u[;{e{r-}?Lp#mQmwy\; ޟ=Oboů7 U򻧈H@]˟c6[H xI9g,bwCn9|x{gmϊ>{?Am(\' ~{c=0O|{@ }V-ĸI4Woou!kx^Xz= y@&f>xR7}Lkq\j1B _Pj=JKr{轺q@ 75,~wՁď?^yn_xtuo͡y{}&8H~9;޷q4WZƋO;t+mg/0y}?rmS ]/r7Ⱥ#(ܖ?U}x#6z33,mɗo8I=g{O?sO* F6o;wcd][X$Gޟ'sNx~oel~ $׏yox} LJ>Wc%G!~Q&~G-AO~ɷ_%1}%G~SzMa#Cw}>SoskͿp|x](qr}O,珚#cb suLb]O}ox} LJ>Wif'uTA/Ύ^Yxp|c8>A{tț{8ˑ#|\}&3r޾?r} 7>C+=sď\+m]jwX+ƈ#9|cjwox} LJ>WɒoOn*E"_N9q?5EXx .\_-,>^d^{EvqYoCxzf%%cq 7Ⱥp}xE3E_&"_ts3EXxC .\_/ʢk o.a-_ׯ/f,_6 a-<}H5~}a^oOy|̗CЇ7\xxЇz/ho}u"Φ}Elˢ^ًܾ:ӥ}UY>z˗Co!a ;;|vo||(7ZWЕxp[0_ׯ/f._F"5l([>G<x#G<x#G<x#G<x#G<x#G<x#G<x#G<OifI_$s(X?/̯Bm^Gw*eANY_  įpxn6Rw3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~] w"fgft_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?{9FCSy@?:t#q_+?:t]_T=GgTܻO?:]Gxa<=G~)v1:]t>?zG珮GϿg*#Gۯ)G&?(GKߥ2?mg~ 距o;.v?]G ~~w3?mg~ 距oa'L~9~H|v@j/~"lA$&[|S T~I9R. ??~ zs6GBiK?0m-U¿忕Z-C*>ۡ_[橼Ֆ*oa_1;2ߴKw7AiK?0/?Ï~7o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg],+oC4;3f6 T3ď?Q ?~Y+~(GGuhq?:AK˿{*>0= =GKq8.-ѩ/^Ϗ]ݷ#GKq^@?z_=|ict] SObm"SsS?;qķLeot]V曉?KG'~\%][T?:__OtFD'~_t]/?:?zDoL|@=Gϟ_|]?zG珞?\6_GT?:=?Ï~-Gq~o~-Gq~o~-Gq~o~-Gq~o~-Gq~o~-Gq~#w ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G&?VT?:@=Rq~`?~'_ 6;?:?-lg#wE|@Oy$Q ~'x\l Q ~mTg*#?j_oG5ѯIFGuSy;"PGG^L@Tz+k4wMoaۤ߸";כ3ş(~jۏG5ѯ%9u(j_oHO?2?:?؏':?vF礘כֶλ?:?fSSctQ ~\&k G5ѯ7{9YT̽9oa_}?Gb跰G׾<?:?-a7uzg??],+oC4;3f~\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/叮C$Gݛv?z~¿9 vc _*V6;=G Y&Sq;JW߻yl*YX*ΏCO t= 4G/_?~Wʴ.8?%g*?-Z쐊{ mwDO tF/%⧋?:Qt~bM}x=?~C*q?FQ8? ~Cx]XOq~G!uYH ? h֯_:n ?T>7D|O ? o3_o?0m}Ry?zGGKos_]aQt~wyTe~$]*qmcR1~B*QG5;a:vRP=~ }=XytpQ NF__7R򇿰zWOAwLع{m;?1os:72;a4.d?퓊o*րFd?e]we"81˯̷1h]m}(B%֬jI=6B~{DbmwwD!Uf{f?VkT;۠_/T~q7E!?OϥbHæ-/~2K/?ww3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]R;oO33kfXGHG 6 W?!{I}%#GwJ?:0HNIGQ<<m׈~tq)o~t%Y:uNIG?Q✖YAwJ?:>TYix?C/T*:ǡ_;%{w ESRUvֱ@wJ?:ںw))F̉o&M?i_&q6_!]~Cfn!Lq%;d L:(iKT|KK/\~q\m7[w%O?.(iJl-}ְއA߉/Gq~o~-Gq~o~-Gq~oqj5׉.~{o*f^&do3P4ן%@?Ӭ'O~u赽Բ7P4WůŬ?Kkr'P4ן71Sٴi֯?]3 ?Ӧ'O~՟;n2?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~wv:\hSyT2oa{Jx*AwW֫wT~8?-lF|GķCwF跰=_lj]SyT2oaJRqﵾ oaKďJEΣjO?-y>'0ժ2헵kYQG5'Zb TG qJU׈*~=8duzljϣ7Yt&O.B| TQUǤb NOIq,:E\:!kT7Yt&zEg~oqP*_<"kQ7Yt&_;֕? (Mɢ_nM@TY vɢ7YCD?77Yt&Qۯɢ7Y_;U&dQ{Y3 RB?_*Q,:E>'D@T{UzXQ,:Eo} ~}woW,:Eo~gݐs4;3f~\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/叮R`(~]$Y;| Gò~#;< .F|GķCO twOO>);7wMy?]D叮_O3t/GO t^߻cn)Ꮾ-%ۋo(n"/MTQO8!~\*ϣG/iסּ? )~l*?A]^_-O_"={(G -!~L'UV5~+oX?r׶ϥg%=XG/IzE'UZwj2Ww*(=:cχp?>~z]^('HSRqh='U~0bTuk: tFmDoF^ߏ6^~|]o*(MQwKe/.okm#~'/LnkI͍2;ar݉/1ȶM}8 ~'/~ v~ ~ 1;a)a{_DCQ6{X*ׁ~ n3uTGd?$֜fyOnߛjuT: ?_5{rK_ߝskR]ZG ~%O?.{eYG ~ٚm?7M}x距~/~G 距o;.v?]G ~~w3?mg~ 距o;.[}B$~k/N8,~/?(o-P8,~?+PQ|]qXFo8,~ן?EѯoD?Q/?EoqX^ԋ=?( w"fgf¿8.w*G/ Bw8K[NIGW SqESRWHmwJ{}/ ?B#~Z#ŏEwJ?:h3wi_xo~=?z_o]w))z^8݃G/ ?q¿~ұ+]g*`E^~q?Ỉo&& 4V_)>1Sю~f~f^,9 ?8ۥbjX#FO3?_%O?.?_kv]~C%Ng?[Ï~?߸?7n?[Ï~?߸?7n?[Ï~?CWVV;ueuⷉ%@?Ӭ_-{;?-~? T?퟈'߸fku/??^47?O~OGq-f ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G%?@|TG ~[Na{o_;Ώ~ ^bɚF|]/Gm*L|+ oɳAhC}]LEwTCG ~[%G|ީ}_Ώ~ .}^ oauW~ Dq޵׉&~zq? iwN?5GoMEWk{:&kwǦ8M"7b_{)Yvɢ7Y^)߻*_uw\ׁܾX ɢ7Yjk}[7PGoFoMQ?QXG7Yt&߈go&dɢ7YS;3Ǥ8Mɢ7zo,:Eѯt[? aYfTGoMEV^¯u>VP7Yt&(N^>4;3f~\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/G\~ ?q/叮_}ߗ>@Sy?z~¿9:Qw!;d*M*wAO tn*q\|J mÎ=Gw]woZ?-⛉o~#LlQw!~h;_?~MewU)ᏮM$R?%MTw7*~g{M4sF;'ϣG/I's_!~mw*(Klj?QTG/I%pTQOO5{)< T^^&b' a݃?&^ߋ{e^SG?[<9=mG?!G^_?gUZFW>&^'U(bT}<(^_5~l*(MQ7]~)~l*G8R[?_#;'U~=b' 3?zO~ͿTtMa 5Q NF_vػ{*o~ W=wG_;&qmT>{%Ec2.d?ݬgE2ߞ*7Ec2Twujw2^^];kQ~d/.kyvL]~ u̙/ߵqRy?('_I*)ށFo;~oU{6V?{7Ϛ{o_TRzwiKն KY*v/^~C1CE?sL??_?g~q ~~w3?mg~ 距o;.v?]G ~~w3{|Ŀ/~8?(|r+oU@?(պ^qn_'~GqX^>-Eѯoh6?âџ?(퟈?㰈qX^9?â_"֟?gEEQ!ʹO33kfXJ=I;|G/_5u*aY*a-ESR޻z// w~}W߿~/ wHe?NIGW&TwSwGwJ?:wH{xVNIGX*ʥ_=))i.4t~wOg.mg:h@7OE{A֖X~Cfޫpv?zN|M*ۣ_xW9G?GO3?_Sսz/~=X?%o^,_X{?Ï~-Gq~o~-Gq~o~-Gq~ǡ_Wuݽ7?O~ȟ?ӬY6?O~ן?|7ڋU4>?Ӭf3b47z ?Ӭ'O~ן?w'P4wKe~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?-l^;< d¶X[o/ m/G-Ϛ]-/G/q>AwF0GG?"?-LY/T2oaX?B|TG ~[]G ~[nJ oav2CUů]n$ig+~b>d,~oK? ZudA⇊7Yt&߈g%lj(MɢWZ)?P|T7oMEWu:; TQQ,:Eѯ~OnvuhX*~~T*εɢ7Y^e¯ڵiYϣ7Yt&z %#d,~GfMɢ>z n XFzsmCGoMEZZw7FoME/QmW6밢7Yt&(#7Emٙ5?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.tn/qֈ?\|wNqw!I-ŷ\|J'AWfGB"LJ?%Ki揮_O3$/]??z~¿Q|թGᏞ?_q~K7n~0= K>&~\w%=zo*(HLj?Nxy?|"Ow*(KG ~p*ΏIq/Ŭ?!q?NT9 Tjimg}$Y{?zO~޼LrY@?1QW.Vwo TQQ47R' QT{Ky?gӆ]^_㇑? S?>~_Gg>*'U7G/IկoTQQwKe/.={L{]d?~mŗb/_\~ձ~ mrәb/vQ NF__1 7Ix W?WyKew2zg-CwLx{޻S>?( {h;'I/:Ve] 7K ~iۡu=d#?距7*G ~i[Y.G!mRq/~q?_wF%O?.?_%O~q ~~w3?mg~ 距o;.v?]G ~~w3{|RO[&;{q~aQq'//E/EzE@?(~W7=~aQ?~a?HK~aQf;Eo;EүoT?EQA[̚Y7=\W?!ޑYz/ կ݃7O=x5ESR$L+ĻGXNIG~;77_Ϧ?z_- B)??QH~݋CwJ?:?_;_khWǜH6NIGߔEW/-&l7̥b _?Ts,9 ?Wb-~ktK/~ӫwmj+Kuj? |X*ׂ~C%o+~%cރ?Ï~-Gq~o~-Gq~o~-Gq~ǡ+gZ|wT?Dw'ſ?~Y=Cʟ6?O~Lro3P4W?֝׸7P4ן71;?O~ T?>~?Ӭ绹o~YOfF?i 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~ 距o;.v?]G ~~w3?mg~[kKURqՀ] ~[O7'|/G=d$_Ώ~ [3vogG ~[kj-+dLW{I>_;Ώ~ D~[_#lh9gΏ~ gf_ޞT2ǭY6zq? Lj#~B>d,~/]*I"~{:\ɢ7Y՟w*(I#Sq}G8MɢWzE;Fuw*({HSq}8MɢןTFoZWϣ7Yt&_m*Sq(Mɢ7z_Ǯ?.cYzɢ7Y^܋=~zU|/}S&dQ}. _FoME3a(Mɢ7]~cNy&dQ}. ?o(¯rnIY3 ?~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~_ˏ~?.?~GgKURqU=G @DgJ~az0k3Cw!w m8a ?]n6Lqwgm/ϥ<~I/_?~{$n87._6`GᏞ?߅븳긳??z~ߟ*X*Ц(~ۅ{Lq~O 7 ◊Ofzo*(w<']W`HsIkSq~\']Z~?GKO?"Qh?o TQ8">8kH4sF;چ(*(M(q0 yΚUZ8 FkDW#(R}0 0]^Ӡ߈(GG< TZGA(sHv?zO~ןQ{G/I_\M%T<{6[5Q NF_>Hok}>{c^*CQyb!t@jw2t݃cd?iWfn= ~G5;ammCpQ NF_}W/1o{>L:g7K eYݽ)pEv!r"p)@&˱IH;Ns;qwU-[EdÌoΜoη߻ֳx~=yg=3{V?>s8HǮVW?gλn|;u~_?nLO'~y2oGz)߯W?W7Z.?¯ ~oJ|v$-";RJ)?$_]| == 2eǙiǿ%ݚy~ށcB.}gofz~_W;w@~߼w: [_vez wٿ{#!O?wٿUꬨO ~cQ.i Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ8d:;sa|D߀c'}a;_7~B߀ׇ3» ('k_'u0~Z߀ׇ^~!}2_o;V"-q9~t}ǿ>\֭^J^y!~v_+_⹫x;3=fz2ɿ vL3e:/UB*tPU7ڱ6cP opUBWb9UB*T[{¿܎:ŦgT uPo~*_;kLO90V uPZUG UW| ~BWj:tnn>V uP wט֧UB*T[ U_U߫kLΊ{w_s*U_*U*=tvcP ??_W:UW]ݚW^,7/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?~u/_ǿïˏ_.?~]~ ?}ɘ80;?1=izִ/)*~;c:hz:u'waӽL/vCݦ{VW?A_4MG ƇwG٭Ac~?Կ'~ w/?NϮ2]mz4|5כN z߫w1ӓg¿ю-xԏ:o/.702 ClUWb9t翭uthUWq.3NyX_=m陵7xĴt@(*q^kԟ/c~տSsꯗ5mHz__翭 3fZbZiZ翭U_?T᯺¯WQ/c&qo ~uunc~տyv5i翭m=Vۑ}ܻϙ&l#Np{RP7o;εs{ۑ}_1e?Q!~#ſ G6OKBmG`skW%~ﱽBmGݳcP߇;ﺿWp~67oS[w7o;;gǥuDz_;N2Ms >?Ku )i> 2aǚm&z?M]MO?7*U_P,a3=azF(D?M/Ϯ0]im~ߝUh<%o"T{YkӮP??7*}\ k:5)$jnZohڋ߭ܚ{:-5E=ӦM&X*oaiy7*͕vտ#mB?omp(Z?=6WHyNӽL?]3eOo}tA.Ӿ,>rAӥL*eb~nᇿ}_(?^?ᇿ=~>b+'"j wٿÏ}|gw84tiQ|&Bſ,דLSz~ B&BſS-z7m4m?7*(^?ᇿP˻KsPᇿP_\ lZk:M~_ ?M5o(*&Bſy<)\l2m?7*-ϵ~S7*$o"T4Xߴ7=aK>qӓ=a_A}Pܴ:oz8޽4V _7%4͵/~gzH Ww>k=j{0KM+#WLw$޻_6}tUG=%04=eڛ~U񯫝y1y_iRWwο1/y+W*ǿ}]a_߃v>e+ b~٤Up?+ o7)֬ ~ۅ\;R_A샦KMt_U?pϮuVٍ1 ?=ʊ5=Ӵ>-*U_*=vA-*XMkL S?^W:Up#knPUo UW]ݽ+b kM_rl6:U_*uyv>-r_Url$UB*T;tĴ$+LkFtkn~]S_ݿ.Md;P(eR 'wٿyt?K'wٿn ?]ۻhPᇿU_u'wٿ%J wٿg~*~_~??_??_??_??_??_??76Ή=ƺď⯚?A;ɾ4өM["p?"_5ǿuuy?#y>d{ ǿuοMS#_1;LB;>fO63cUzRWJ_o߼vN77m4m0Cj񯫛M Cr},)⯚?A;T?O3m2m0wL W ]j.g5]a=r_5ǿ]XBRۍ,[u~uϮ2]mz,>[Miƴ翭>ۑawn _g,өoKuV^f]~]}DŽ\ӅX_=mzT?#"ԏKuVOw_g:;x׍UV_5=_8(6~|NïW~uuVn*o7{MLO_UW[j[p@*7? z< *翭U*Rnd%_ *y'w{}5WPB8Z|*)?~߶ۿ׭[7T޿?֟cϿua_*m~qtv^22~[/kij}s|?Ԏ54  ;l|Ӕԏ_=0/~-c^ꯥǿ~A_kiiizorp0Z\?>_M78_JZu]u-^57m1a:Wso"T;r=4ݴ޴ѴU(DwI)i~~rt=g/DϼYg V?ᇿPHJ 7*,޿=Brr`&BſDW~+=GM3+CtPᇿP噯wmoz\(DwGUPᇿPz?MS1De1_~_o"T^?ᇿP!7*-?ti(>>Zטn s4s pﷹi}a_u0!̣5wHb?mM7n5т_ pofzt{}-?W{~A p?cs /nHuN,o=Ȕ'æ={?~Gݿ%F?]7/տ?7 s|WVRm|MGݿeV߿8-<|g 揺'pܻ^ [["O~V٘^1ev?>*4/]w^cwǥ:.qPKIq.Vǿw$\$4,_1v`v?>"4/]wLS*.2e_\LJ?X_λo< ?y;'n<u/f,=Nz~P}Y> ~_]9۾b?wٿgϙ^YjZ)S.ܿ,ش\(e/e>i}=QlU.'2ΥB..b?]z?]n1n0J7죦gq}*e\?P~ߏd3W~_~ߏ ?]z.ܿ{j~߼~j~_ ?]z?]z.w}ɦLF~N`hᇿPz&Bſ-B uj:](DW~ߑF7֋~/DW~q~NsiiiPᇿP񯫟qAKJᇿPoc???????????=}ݾs{Iд83=he4V }&?藚VF[M2}1o uKPCg[[o1}tGU~;| uspFsn=16{L?c~տׇ`z6PUW4ԏצ:o?n}toUUݿ?a¯]32O>6])_`ym76]hz}ïOf~>=LlUWUVT?Uw7uuz_Ey7~un_QUVOvmRiS翭-wW*8MN1- c~տڡz|柇** z_w*8'f憱 z_=2Ӹ^36vy~Cſn-76*޹vyĿy!~Cſ.I87=>Ʒ*-_'MĿ{V7T ӚP;O?sKa|_ *G_ oo#ؿ80]GM4}JPj??okɫ _049\l0m?t7B'?עU kzųo*ry~?]z?];ueEW~KKM61=_]ޯ00=bk: ],.+MWrPᇿUeάX{8('wٿ۴PᇿUeÝQ\?.W~;3J wٿ;L2Mכ6M7*uljZg`,o"T;A~߉1*o"\?ᇿP&ߑ?MNj/DW&BٿJ?D7*o" 7*m~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~coڿOgO1-%)>~SSOWwU~M{~Oæ>i:?&_AxWCZG$ޯοה*U?L;_~;` bU~ۅo~vV*ǿ`gy?ٴ$<>n|UߪW*ǿ]XcWw>zg"1U~;ZyWw`hzɴʴ6a_A{}v #NU۱6oڜcP Ϯ4]ecz4D*W_g`bZUW ~}Ms UW]] imڟ{*W?َĴ4/㥩UW/| pR*U UW U_UBt.>cBWwd{ZW:U\?+OvŦ~X*Bſ*=t^ma_Uci.KX*BſWܻ&_{xJ(*yymW:U=;shUwiiAW:Uwj/IN2fd6ϟ5[3l'iث~W/יsM ~_W?f֛6 ~߅zB.E~{rEefX?.GZ?H(eN}; ?]!wٿ#Og=~m:_(e~n~n~n~n~n~nᇿ η <~^__o7n2}2wα07XqfC{|Tj0{Xu9ޫLט.7c?;/\m @1J`W ?߹|1] Yf!W ]91֏%~XjG bzE$~CD_c뮡 c~Go7b5W'E?*'W'3;b K{WGwEK܆~__.o]^f]nacz4| o6]c~տW4qol3m:5-*oo}tA.>;ߞozi{ZUVOS8LMS?^翭uu0_z9iq.VW[j畦JB(*j:+}u¯W~~Fy&2*T;?.n|ᇿPSoo"T;B&BſF ~ݪt~ڙ_)&Bſ?.?7*-?x?M?h]biL'Dw}vR ~~ 5R ?M'7*U_Pz&Bſ~^Ӵ۴PᇿPoyoo"T/;3~;o"TN50=!o"T;$M'N5ÎӭWix_msæv&X*rQ8ʹ)U%6W0]ezRӎuN0-̣~n?͕O7}$k[0^?eN:+7n2}<{ohQ̞7ۅ؟_W;b? [^??\W~;_ ?]oY~~r\.v?]!wٿv*???]o|PvvvxUᇿuyti {e~o 16?5/ewٿ~_C]2{2 ?]o'wٿ wٿ wٿS;L3ϝn:ϟ7D$,fB&BſS-{wp&l4m?7*+j{ziPᇿPogc]?7*usih&BſLߓJ3_?T?7*uPHS7*R&BſDi Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ ᏁiMMkKϠǖ{a!!t{.=Ϧ.1Oa_զua/$'_A{4Kf785w;uG*ǿ}a_v#){Yi_A;T?=cMH|Ɨ W M5*?u5tiU[?itc Upu)U+~ہo_W2E&#*U?Ŀ;+MW5tBkMg cP ^c#LOʿ ;foIuB*T[{ v٦ӃX*BſW]W*W_fZeZgZT*Bſ۴PU]{ub_U~^ai0Vᯚ?A{$+޿߽^a= ?׿S;L5M7jϦa_5ǿtu4M1e+_5ǿw}Ij:ݴ%!?Ŀv{p/ڴ.Svv}oRUwN(O խW?XjpUzRWo^;}<Ѵ5nw0Vᯚ?.?.)uV_ݿ~N{x1_㝿ǿ%y ;R]}Dz;ÿy~ZUV~0eM{L _li1VW[~7x(+jhlUW?ˎs3X_=m˽/6/63bZ*̿ y/2.X_=]bT`ْi1VW?3*[8gIՖ0VW?3*]*~׭=6}Z z_w*U zoWߜ}O3m c~տ>t@(*K8+Rϵ0㕩z_}x8}|ϱ'*e;$~?ݯ0u_ p^n?%^*_| u{(~`i//._$~ _W;߾z?t?7*U_u!m#?}ߒS7T[޿w}iPWPy'c{WP!v7T~>*U?=aBrs>2M59>e4;L\Ӥԏg_;4ߙ{zqcZMz?(IǓ/~ zy^_K7͏.wݾ˃?s.w)?K瞥eǟ˂qMwF/IN22m6m7-97*> o"T;kL&6 ?M_+Oo"T{RM[Lg?7*Lzޟ?MX|o"T[޿Wq1o"T;kpݳѴU(D75~F~_W?'F~_W?]s$DR]}2Bw5?7U_+LW ~~0+Gop@(DW~_ ?M?CݦB&2*/Bѿ ~E*Oo"T{}v^Ӹd(>>Zטn 7?ܞz6W.̡N=-?>#N`W͕ sO?\[0Vooop!8N,Ǧ?3~RU;B]3*}6W>hOI1Vo'[rU *moQJ][7uT?' "̝?I/[0~p|Z0[?7fW~?~4K*7?U_~?8MM=wLTe8sL ML3M/~ vYYev5? _RZwǧE/2n>ٴ4-zE?/~]]| U/]w=ݽ#2/׮f_\;#x6?Ŀ%h}sC#Y|U~Pr鳢.ЛB_4?wٿ|W?ᇿ~~_j'?~_Co \L~᳙!wٿǮOGJ wٿe~n~n~n~n~n~nᇿ ai߾ӔQ|&Bſg724I(D.=}iPᇿP񯫝wM?Me?U_W]Y0M(D6 ?M_~T?_ ?MoooooooooooL5=ozJ_M1Ui_Aϛ^0l:a'wa_A{}vcϙD?6i;X*ǿus{?;a_:>kz1_jn >֋Wر֛֘~ ^ﮝ]M{a~~;HƿَtNX߀{i0V7ǿDlǿ"6~צ3ϏElyw][ooy׭WmڐY*wkUϽR?^[ߴon7ݙz=Fti柑_ԃrGbgiP&]~[_~n~ݢ~ֿ??~?]oe~n~n~n~n~n~nᇿ ck/ϝO5imz&XjG˿nߓi;*'2ǿ׽yw 򽋦G?6?5N ;7M0sos ~j߽a*p'_5ǿIfgiJwb3$!~k0VoK_ݿ*'ͤUzRWo~"~oLn*'r[yUzRWHbyG%S2oϊ0W UWvL3e:/UΏ޿1׍_ǿgϾƴ=-*Wǿc˿ގѴʹ&M~+M_7c_-[ro0~+֬5]k| Z_=Wǿc_wx3JoIw_2;*:ӢԏW_o&Oh:w{, τ w7 {sl:~?l4V7T^?' *-ߛ@%Mw[Poy&?i:y>v /r3E%?og~2ğ)g EI7~#y o __y4V7/MU_*Mnw$,~CſMU9&ڱfƙ&i~[/n9p~?K-_ 7*-7*-ߛ9M(DW~rX?ᇿPo~ɦkPz?Mo"T;R.o"T[ᇿP!7*-߫ᇿPoc???????????>@V{=c?-kLg~E=6W5^W_ݿgɊwf ޕ|-?u&|-57?ÿcw9K(m6Wn5[?uz׿^EMU_~.w~*m˻gށ' ͕ u=oտn@j!cտ û~?G;*mol_Wlտ*l'qN27M6Hu/]iǙkZh<_ߝkgyx.e/giu/ǿ%'_Nǿ%qVKL+/~ ~_uGK_vN{_c2w<<2U h}teQSOsB9?wٿ._H^?]wٿ7~KW?]I#de'_կUW?_??_??_??_??_??_>{i}iy?M D4DP;LO1?7*uaӮl߯e{24](DW&Bſ#O~DT ?Mo"T޿_W7oL?7*UDi Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑ Ꮑi~>+}co~2FWw~)ۛ)c/~_25U~;ЗMGM6M#}UG{K~0o2τ W ?0MN!Ց]_O;LǮ__Z9z UG{9%_rX*ǿ];RBU?+W?c]M!czJ*ǿ]f#+&GW*ǿ?vMo0c U F;VYSS?ކ[ϏElۃw3m = ֋WiiiEA"6X3}S~-m=?goonNElǿ"6Ӣzv-3MR?ފ[ϏElۂwMg9Ŀǿ"6=-ſoڿgכn0=mzR5Gi柕_ԃ~&ӳ3XlU.Oe~_wWC?mzB*e7~_~sC76~W~~~߼~[TV0G_'wٿ*~ǿ~ǿ~ǿ~ǿ~ǿ~o¿g6M34ooa_I1Vᯚ?Y6Mha"~ۯ]2=?#˦_1R/ Wusi}Ls"ͦ~&)*ǛA] ~39~;v ?o0ɾ4 s~U ?:߉=X?_9˽גVᯚ?>aEQ~9vu}﯆soO!~x"om]UW z/ͦ b¯u~;[8g7c~߱?'x53R?%iͦ ~+}Kc~_._v9wlqV֙N1- c~߱wދLKuya¯u~;nyi{h~߱{vׯ6 z~wUJ zSMϘ^0p|BQ7Ti&gMϛ^2"_s-aV!~Cſe`z}{ *-PϚ~.ޟ7 *TwxPKc~Cſ>o9N׻dBpO޽' oܿ(O3õgLϙU ^i?.U O_g~~ r{v??~U7/^*u=y U\l_~CſMU9ٱf暦ff< R[7^?KϳclZ;ߴ2w{n;&Ҵ؃i~[/Y?'7͏.?_\νkL S?^?KOJ{p^9ew]?=p^9?m13%\BGP#fXg ~>`i$GBOo"T7I&Bſ~>Szoo"T{}@ &[ާf ~ENO>F%D~>r7U\&BſMU ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ MNݦ${=1j:9+o637 U/ o2hRU)B8bsWMfzmaVe߾? 7P?ւ]w۷gu/?_E&~=--?mR8o ?_+^SϾĞ;TWkλoL {h/\U_W?=|c?餸-?U_?8?}OUo8ksM?hտ*l'qf&f:.϶7|;Ǵ2( ;zԏ2wI?^xzꯩU/]_wy/ƿ%?/2 v??ϲK׭]|_ߝw]yR;JԟxU {K]j:{(_5 ʿ>opnW~_ ?]H3?wٿ_| JY?ᇿUezLGb?]z.7w{_]鋦CYUᇿu0=@՟.W_=Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?MN.=wdi(>t_Mf'S?Mݾ w ;P~M?M3=}?IB&Bſ%߻W&BſᇿPwo"T 7*m~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~cǿ~coڿ_n>(1fϛ~&υ U쳛M_2dz%qƖ5M?o %W⫥O0=)X*ǿ+Yѿ$b_Ww~>/d~"L?'X*ǿ3Q1u>0 !_׻zs_CIf U],_.U~;]ݺhl UGgU___B;Ŧ71]*w,;yט~|>m=?ocm ݐvz~[/b_fZeZgZjz~[/b;ַ+X߀oJ٦ao]a{a~~;Hƿ<ũǿ"6~w;z}*w:ڱfz~[/bwlM[X߀vi}2ݓnNG̿rд?{,`-_M~߼~ޝ5Ѱ?wѿ~߽߯V?wٿcì5T??]z?]z.W~[.j~_ ?] z~n~n~n~n~n~^lQL>sM'GOO~ c?Ŀg6M34+wc1ӏ~8)*U~;wg3_Ggma_ c?{L?`ď_/u~u>4{y-_40Vᯚ?.ǿ'va_~_& 62I|ߒb_5ǿ_ؿo~ !Y_׷?#qknWEW rm:`W_~_㝿ǿ7;w;bT_=wl϶\`zi[_v2*Wǿc˿ގ15o¿_ ~w|~WJ ?Uf~ikꯡǿ_ ~]^_sS֯ǿ*8LLR?^ǿ\{ sR/b ??Վsz{_wu~+9ܺՆԏ_R;Jn ?2ch:ϟ7Lo5 _M^74V7T[}iPW?ow`|# opt oMT E&=? ߯f7pAz?|1w*~m C+\}Up]z| c~CͿ wkߙ}?4V7T}ܽet?~wu{U7T[Q\l*m~˱Ўش47%9>e,;ּԿ54۴2tpO=ǿ~ˑ?5uܼuV_2_?َ5444%ǿ~_ߝwuܿ/~ gL{LzVLs?&Bſgewp~0?7*-O,<_ ?M'7*UDݦ~>h&Bſ~/D\??7*-/J~6?V?1z?1z?1z?1z?1z?1z?1z?1z?1z?1z?1z?17;Lw^cti`]ԃXesMcN c}n3 kPw:X }%+jhl'2o??~o8~Wտd__?p1W?uOß{/)zmi3xߘ_f~Q1m?1)_.W~?N|aV??X_ ?o{K^7pNUoUOL34M0M1Hu/]eǙgZ|;۴2wkZX|_gimKXe)/~U~_u]2eO_NO?+2ok[~˽ݳd߅ᇿ}}.b.|~*?H_[L?~?]oyPqO'wٿ¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿ&?{~)wd(>t?_m~/jb~?~Poy#t_ ?MS1DW~cZ?M'7*U_Poc????????{;{_$H$@#I0%+[$,^G9뵜ʻ}}bZLI$#H{NuwM]4x{o߷T=Uoנ.~@A[ KU_~s_E?[?c+s~=2?ϝ ӿ%__X-}R)ѹn|,O \>&:ǍQ ӿDnKV։1 A~ȍ|zf j7F6OϭyW3j;^DY]eӿ#WնusߑEnGϫmL4oߑEn[&?;ȍymj{"7λ[jqcno/?ɟڿ zy'c'>cݿOHtH'?K>M c'?Koؿ O~w/ٿ' ؿ%WsL?_Կ%WdOdqO~ӿ'?_/nO~7'??OqO~ӿ'?_)ϲ_DfsƉNgEPՌQc^}On~am3EW?vſ{j9>o?v? =Ktv㳀;9ֿE?{>D=}ǍQ6$?7oEGs}Ftf݌QO.rբ ŵOBu"ZἻ%? ?[>g~mv%? 'Mt]~?gX[6q?_ӿ_ӿ_RyΣ17FG?:?;mv](GG|μ{ӿѿ{zD `ϭo>Y[0nſ!cOVo@6wMN0T76P>!`766f nſ~t_nſ;9:|mW?Iʞ?m~o@ /VsmN}% 3@? cwHsE}J?(SVa/~ :(O!>Sf8OvȂ#ڎgҿ<~^$Z|Ya~^85?; ?η?!?9x*0z](ZZ7E/CW7=X_?)/C_'ٽz׀Sӿ# ?"UcG t9ɟ"PD~ ɟ"P翙&'OhE)ſv@tD)@'?S}uT{JO9JOs `$?S'ɟ"P~́O( '@/3'@oj ?~wdA~O,Oߑɟ?; ?sG'ȂρY9ӿ# ?~wdA~O,Oߑɟj>!۞=m<_׈,zߪ"ϔc,٢3D?tsw S$fƪտD @'`Cnh򮟱ԿSE3[;enck;EL~|BRьڎa@T>9&I'?cXsXZ_c_b Η8xF s_>j?9Sg}; |g''_ϻ DKuE_/o`IE~'M?a;E~~˯]ͯ-u]!!z]r?'/rKijhn%wx|wZOyil>O~_I~_[v5O~pk&?No'ik kx _dqC~یz5c@H/ٿ3of 17N!?K*o^ d^".]&zJhPOsO~__?/7/ٿk0O~߰~;?'E_O;~/'E_O9/ٿa|0'=;d>kM ?S 7v?+y?At2PO'\~'y?Qt PO_O9b$?S'ɟ"P0Jޏ?E~)ſ'@/z$?SI~O?EkO~>,=?́PO~oqO(O/cwO O?EWw^驃O( 1@'?Sw5C''@񯯟G_OOO'@񯯝O(~~)ſ'@oX?2I~.́rMn ӿw˽7Ls //--- ( ?[wz ӿWMÚ[k^E 1 ,Oی:z4k?7WM ӿ{9/fjhǂoο9/W?Kzժ+X-aKǂo 7VG?ǂo֯rlϮǂ/cA~^&.]i3^? &mun tXRc.ϋ^? "Un tX7O=&Z]sQc hG.5[@495,c~w tXA_^yڎ8@' o@5W{W?κ=y5,c__?QP":f=oqc ^bli׿kϻsg=.rcXſϠ𯬛 7F:,P;~>'R7/ ,c_}=>G_[tPTFec8q?S{w/R/ٿaO~߰~jA4Odjw/?lҼ1uO^c߽lO~_NZ; r?('.k5!?K!%w3h/ٿ _wh E/ٿ?;d{ZCt "7XOO-c{]ȍ?dOdjFb$?K/z$?K/!_}Q'_m37N/4/'lMsEeRi!?ۋmO3^4!Z"Z1 C~jѿ }pR_ZY-s^(o ߅ºȝwV/t~t EXNm1 !?ۋ4qϊNshRsy!?W{5ypyY7 _K}ϻbK~?/ƿZ7}2>%yu@oؿ߰E)n֟>cɢS3wmHE~s&?XQ7lmmtc~տqصDe? beբyEn¯]J=m/zD!3GP45?z__;Q¿Y>QVO9kom翭E_Pv Zj{1 ?zwhh翭 ? xWםt7g~տ ;/m:FG[~ xWX(o' k{ޝT7/ ?zd7O *jњ̏Q >,=&#:( ſwqo~ĺyzXS[__?w0:|nI_sN>& 򓿓gm3Pͳa̹I~غc_]"^'?; y?''1-wJ ~ 򓿓gͯ-z?,(t?qI ;N4K뇱 ?; ]g5ϜX_e0''1K>k^m`oYߌ}8  ?EW?E9~)ſZ;ޚ%'&O(ij>7X @'?S?E~)ſO(E'@/!ɟ"P^?O_O(E?p9?E O(_O(NP??ɟ"PS.z`/PO]/ Կ)ſڿngO~_'ɟ"P^?O߰h?ENO߰AN~_#zH;f Ps+y9NsyпJh?o!GVYMMu-$*U?o!G_-LkDkEfۏQOKt~]Rͨ=/y7/{ΛC/%/9wv/[VÞ7=1>,}}'}}|v':Qdj;>m7>ac 99">rC?;lr?''8NMh7~@TI0||ڞg1ui!!?;?IcDv_]t %vOϙ"<-]3 O~s&v; g?Ư}-Z;=)ޟ!?;S7=o9:Y?!?cٯcr^?#7Z#?3&ws_J~9OqO~ӿ'?_/nO~7'??OqO~ӿ'?SRv 3L~%vb>ȍ?d^byы@'?K/z$?KܣOdIW?O~H~_/ٿ/ٿ/ٿ/ٿ[;:SDO~'ȂρY9ӿ# ?~wdA~O,Oߑɟ?; ?sG'ȂρY9ӿ# ?{=*qC8'?Sm{%'@#܏?ɟ"Pc&rhPO'ɟ"PO(E_?$?SuWCO_C?E7\8$ ?E ~)ſ ɟ"P_1ihl nmw:i(O8%Nwo?kc\D(Oژ/Q_3f;6~4F6~F6~Ftm Gmm GOd+Eϊ^78G_+AERƍQc ^ .]"z2(G#@D4]4ۍQc O~r*Ţe5,cMSC=-z((fNMucXſZ;]%zNO2PQgmVskXſZ;/t ¯sfeZQw?(Fk(b¯;yW{ߥn tXNC)Y3j=A4ٍQc ^ll <_Xſ~P(! ;/UCO~p_O~H~_I~_FNG?~Ozv| ~o/WV'T~\ud?BG?~O_ ?Ot ?C~*q?{UYtď~j|u(_~ŏ~?O^*.]!zFWɏ?9[Dg֊61 ?zߋd%n<%zN((sf1 ?z_ͽEOE9KD+DD =mŦG?U>gjmϻ'&1 ?z_kDEk~տڿ\b+EsD =m{v^)z}@GW.v翭 _??(a{rmǺA]EG E¯]n<<ӍQV?U/ ?z_߻_Nͨ75h5:`(ێh=smGo@޻wo;O~y'W}~hێɁB/wo;O~A~hێh=lmGocJNS 'zhێDS'wo;O~Fm^vч U!1# wϧy?~/ -qQ%?&ǂ$ԯDk{0m2?''~s@;e.4<(ǂ$`[cA~wmw[Cu?%zOt0 򓿓/uh'] 4& 򓿓7_6/ ?;!=u0''Mr=XwHIxE ?;G+Oߑɟ?; ?sG'ȂρY9ӿ# ?~wdA~O,Oߑɟ?; ?sG'{lLt^K''@ﳢDO~^r9>@'?S/)ɿ:4'@A=/z('@%'?S/2M }5}@'?S}`)ſ?Eп<~ȟ?,Pܿs׀O~_#z{{8d"Us-$'VVFG?K~WuӉ<~BReur}ɿ' ?:ίTX>:|-=/%?%?%/V:-$*?mhMѻL~sN*'/PwlStmч?vOϙ!|;ٍ{y0wSOiYugtt-zK^?Z'??Amf1QSWs{;~On߹u3al }L;~O_^?.-s 2'_Z~Iџ?O)In_CO9SkfhQ'z'BҺka ~9OqO~ӿ'?_/nO~7'??OqO~ӿ'?Sfv6+yBnͿ~׍}on?'ii~Ù,'4'E_O~!?_I~ӿ/ٿ~u/ٿ~pij%7|9>Wk}7b$?Koj ?~wdA~O,Oߑɟ?; ?sG'ȂρY9ӿ# ?~wdA~O,Oߑɟj}ۑ;Eo48'?S5DAO~D~}?EW~ޠvo#QO~v O(ռ]>}!)ſO({I~)ſwC?E!?SCɟ"P_HX~me ;_ەUU@OX/ (ZQ 򷃟:wo?k㤈P 򷃟+*mLrD nmtb @O85"nmLs>onOdu<%(N)Z'(Z?(Ej~xEQ@? beբy/qc 7`(GWyw*7F:,PWMlϐϚ#Z(R?@c>_{3Dg61 ,c_߻>x?+Λ׈M tXп<~=Zݥſ_?U>kfm{މu tXWv|@]{k<׀Qc l~AmVf׶1 ,c_Cλzxaݬg?E5 n tXCE/C'/ɏO/ɏO/ɏO/ɏO/ɏO/ɏòc;ʏ?d>辗JϐX%WG]d1>8|@'?K'RB~߰~s'_O4ڿ%~%7~X?O^?O^?O?S7 ?C~"тo~o/*墥(^ :Qяӿ\Yj΋яӿΟuW}ZY5>^ ď~_V͵@^'UVFG?~O?Y7 ?C~Ռ{:?C~/$I1^+ۮ zQM,(g%:WEtsuY[LʍQV^u.E_ItZm΍QVOy9j{U=m~/׃LsD9xE(+svάl+=m~ wkm׮Իk~ٿ|Bєڎ8oC^^sf7FG[y׹ύ; 5ڳ^;kk~տ(+%λ:FG[y&KW VDdt7FG[ߏVп?m,nF6v6V??S?Zۑۘ4(ێ4'}fTi@ێF٩P 'yU<7wo;O~a;oVп?mgKп?m̫w^7>,=f=cDpO~w'g**:QthQ>ſ{dۃC!?'':g,g,j5ZIޏacA~wMo5jX?''{I,PO?ɱ~Ƃ$xф>G!( p54ǂ$wfݞ!G3_bA~w{(뇱 ?; =wU}b#/9?'''۶IĞ / ?; ۦe 򓿓hkρY9ӿ# ?~wdA~O,Oߑɟ?; ?sG'ȂρY9ӿ# ?~wdA~ڿ˶D7^&zO(}pE+7O~^k>U)ſ~s.z('@oX? )ſa8!?S1>́PO~܇H?E qC~,o𮿓)ſ7swO~O(P]$D>_Ω DPU"gWVsFݿE=_n0 XY(Z$_5cwxD?ÿ0(% 7!`WɱZFj(m=.zZX`$?S/rG)ſ ɟ"P祦_O(E_O#OC?E~)ſ'@y)ſ'@7}h ;O~)vr('@O(y.WCwO(Sw@'?S5e{>?ɟ"Ps'?SwyO0pO~!;?E!?S!?Sѯߑ)ſׯ ($ZQcA~dҾ_,R5> ӿxW&:]thk0F~?4sù4 ,OǷ3F^{mWLs /tZT5] ӿXʽ~.qZuZ ӿ\5eUe@ ?ۯ뿺N ӿ%c/ ,OE^{sw3E~͟_.uMm5,c_¿\>khhh?( ?Z;oP¿N>kcmϻDk?@ƮAhBZ@#@D45,c_}Yn tX7\G~Qc _?Df 5,ca">??(sPcQc ^kl >`Cwc tXsί_]Z(@/h|ּڮ=Ox~ tX;|=Cƿ j?}/=.zZLj?O/'E~G~I~_I~ی}wvkOjhM7 !?ۋ~b~o͢-U3F?;L{wkuQ?'?6a=St茪Ώ_{9/yTH~s;mJa]%Z]ٿsy 18n(o ϫݹwMp^[t67%l8FokΏ_OQ:DGv]Ʈ= ~;~O__- ѧEg[翭;.? ZD+Dk=mϧ}w>-=my9DDj;^\翭E_Psj9A5\m'}#VѪ3 ?z_ͻ}=#+99 DKD3j;^X翭_~¯g>.T=moX?9+k;7FG[~¯޿ZG[~^V=m?ʶ.4=LS{6 _ͻ𸫡{Og~?Ow3 jEA?{vu|Q ^h{O Ͽ(/~_N8Z+_GE6PSY?D?{ #"wm7w(i~C?|& nѿH(ѯߑF6PG=(zXtH44$NONbRndhhQ>ſ˶>8h2dXDk쓥-oX??Cr?6ǂ$EʴneWk2,ONBϻ }vWq,_?χ/C,ONo y?''xM ucYacA~wmQg,ONϙ88(E ?; _ j}𨫝?''Vvѫ7E ?EvEoO(wO~]-{@'?S?E qC~D"O?Eп<~ȟ?,_?ϟ?E_O_I~DC)ſm}vyw>)ſDWO~^?E7ݭ/O(rӼ%)ſ>WO@'?S/'@o~)ɿA\?$?S_CO~O?EW󮽋?~/k}Vm>+gm1 ,J}Wts0g8ߪgO? SR?OO>-dՌQ__?~!Oηs+;>}Lu_O˿UyhտvEs P?/ [k΃7C;[~?7w7?W{_?Fo_C_?~n {F t{gt t_~?7gw^*>Lj ? T9Sk;YwlKtc 2p>{n;~ON:.ͭ el [C!?;_#QtZm~_ͻ>&;~O~v{[2wGunWR??~Ǝ~jцkZ_eX?c 'ݿZ?VOsη:^K:O3[_CO.(nb{k^ac ?om*zXs/ٿ/ٿZ;omrPO{S/ٿZ;w!z4kO~_]:+>ȍ?djegO~߰~w{rׯjE\?$?K/;d_#?Kw]*PO~~ Oۮ]k0'O/ٿWvȿ;u%~/nO~H~__?Qߑ%wwI~_q?'9Չ:Opu %'@JWCue)ſ~PkhwO(zUP?O( ~{QO~Ӭ!O(MA~~"/'@whO_O(MA~mw1ͻ!)ſwgs )Cc;~>}hpO~9?Ew5.I~O?E}O(ک^)ſ!O/ ?)ſ7ɶE{n?ϋ s?{6nMѻGD?*+@ ?ۋvA/ ,O'?s/ǂo/Ahlx+",OpUϟQcA~ga {aXſZ;om>eO>-<7! Xſڻg6љDgcX-{$ ӿWn٢sgǂo?Ͽ^͕?}v>/Pg-h 7F:,P|UYDEKk;^_?(E# ?[~E:,P¯i'_'_ѯߑ%>vhQ%阡c'?K.>CX%~/nO9Ѓ{?_dO>!?KPO~_I~_I~߰~I~e>7-{&?gE}ZCn;~Oߝmh:}/ǎӿWkvcwcrpǎӿWsuۢ+Uя~Dn;~O[emQw3?;~O=L/WQ/ӿ_ An1wr"?_?a @ߒmkuOU#:?&ůWǎӿWkC9?s?):ύQc~s&wr"?ۭom7n6 s>-翭uzK,(ks6N1 ?zW>&7XQO&:GQՍQV^e>?/z,(s֋V68o4vs17XQÞu3FG?gQ\^3sVw_ lѹg1 ?zK/bDW5qVu^ko?翭뇨_Ͻ]\7k(o4A_Pڑޯq:7FGIE(ssfv(V/.]$zBho:?GP j/] ?Wae n&cQ T>mux0d<' lEO?}@N]{tCQ کq{ ߰A?ïV_xլc} @ox1 w1@Ev^jO=?/ __ws2>8p w(EN|ߜ #o{? $gMq,P{c_I0 ?;7a/ov>xNʴ~Ƃ$VkpSyE0 ?; Qg,ON"'f?hڃ܏0 ?;ߜbA~w sj;X OXĪڮWm׷̿9bA~wάst7뇱 ?; ?_w^躕(뇱 ?;ߜg,ON߿-o&nm7ͻk3?'@}h ;n?E7O?EWkNѝO(E_O_I~j>G%'@oX?k}('?S?EwxD_O_O(E_?$?SmW'z('@}ԋWO~~"O(E'@oX?O~~mƽ$z('@/z$?S?Eɟ"P{'ɟ"P;A'@-'@ﵲ: Dgnz}!wl(>'|59V~LVv-8~_%5V_/4sׁO;a_~0?)O~֝3 }ٍQgfmMxV 뇾9E>)h'GΡ:Z_^?U꺳H9?'?_5us ݿwȶ]w}!?{G~NћwE/ٿ v$?_[CO~ӿ/ٿvjdSV?Os?_OOO~/ٿ'K-WnO~{hK__O(`bHPO~׀O~j_zc)ſaD?ɟ"P{'@KWO~iT?OA!@/ɟ"PO~?EWsn8qQO~>'۞"y$?EWkns}hPOߧe3ѓ9JO߽ ɟ"P^?O_O(}N~JO>3O~j5yO(EO(E_?$?S˶>&U5я? ӿc_wa-,_?{}Mniψ~NSn@ ?ۏOVgC0Fο՞G+ ?ݟ_Bο?@]v ( ?/qYa ӿNٶwr(He}?K?{gCǂo NߜcA~.=n,&&::,P^Z+T[n tXnW;3AQ -Y<^ٍQc D}YEED?@/z7OX~ZWyڎu tX_{G]@(@~?ձ2?(~6~~RUt?@^{\D? ^]#X[n tX yշF:,_?aEe tX"vRѓƾ C5D/;=ݿ.?_'_'_d/.0v?((+s֊6֖m翭%4cG?nλD[Ej~տZ;5w' ,ͯs0 ?z_<`? >S翭^k{yBn,:翭 ¿=Yλ:FG[~QV/(z=i]{=m/zDsj9翭E_@WW}{`~տ|"RL\7FG[{lDt)s>G_~@"4Ϻ?|7 D> _xw/6S?_߻\.z4E?(ϗmxPOQ O?nſ o~ow( =# U\(us@'SmWkCz ïkV~Um!`Þן@nD=yX ?;Yj;ɵ>WsܓycA~wk{ߎp(?'' go/x} R?cA~w[}n>h-w1?''Wss3,ONo1?''% ?; GwS ҿĂ$s ?;YKj9/mQg,ONWs[{3''ZvKWEo ?Ev O(yFcw-)ſZ7o!z4D?ɟ"PS{D^ ?E/s@'?Su!?ST??ɟ"P]ӼXO(y=:!?S`$?S['?SmEw!)ſ>{ߪ JO߻AO~4O?E/Z?}?EnW;3y???'@.ck(!ɟ"P=zߪJO_?EW;7 ɟ"P^?O_I~^.ۮ]%zߐr߷3_vF2crEj(2cEc'`WD(moX?1 H}oY5c7>Hc9VϜo!(mPy( <-8~kr P?߬u_w?E_?~[A_Ι=!Rɟߜ߰yJhPɟO3[9(m:B T}X܂ݿ7O~w?]>ghhrmdzk|uC'Jާ!?;_$TJ4e-N}L\ ;~ON;v}*y:dCn|&颕onw|1G ǎw;9-]t}hV?Z'?;?V[~0h/E˿V>g4ъڎ7(Я?Ss^?19KjV:^OOѿCs-򯯝k̜ ;~ONuyhkm׭ݿWۑ O^ d6ך淛qO~_/ٿ/ٿ׸_ootM%Wsd^m}ׁO~ӿ"/'E_OyF}?_mE;]wxG>PO{l_;/ٿ/ٿ/ٿ/ٿ~~vO~ݲ.={>g(?XOعϝ]t?_w}f}d%}/ٿ[CQO{IA~^&.])z탗O~jޯr9lO(S{`O(E~G~~4Ϸ5,Mr^ך'e߮?KxBx9ǂo [u?~s'ߜcA~_o~7gX-Yj0F^y~;o~`?F?QcA~yWDߨwɍ?14rE@ ?ۋ˶]]@G?,:O7F:,P{lMt~|jڎ8@};nݜw}܍Qc UW?? ?ns?@Ν;}ч@G?@ۍiXD?Z tX7>Qc jE E:,P~|٢ONU?(~A.scXſ_}Ytz7F:,P^?QԖihvmKjXſ7ʶD7~RxSI~_~'?KΛO'_}u%!?KêM6PO޿%7 _d HO^?O'3'O/cF*N ?_56cFX%~%{nd~"/ٿ!ѐ|cO~p@~_Cd%}C~ӿ'?K/zB~_}n;.q=a}~??{o7L/~Dc~ky֟{O~[n7d*Tvg@oi_?79/ λ߶HGΙ/_38Nak_pQ;]!?7ž@mݿ{6\c/ !?ۋߏnt9 9>)*(o/I/>wlhGA{ˍ?Osf1=ck @G__7UoqVv~N>Ku3FG[5yv8Vݏ͹W״PV/(ȏ_¿Z>gCm-mqVjg"OϺˢDqc~տGZ?<((zusFG[ 5ԯ@G5M?un7_' \9n&vV^3>~??ϫ9F6P{l]tU< % >S(o4"z)('W=]_w(^~0տ]x !`gg)[\y4G?~վ{ρ 40B?ï=p.nͿZ?_@/!ïwiu\Q _ΙQ oE6P;I:Ww(&o7m _єڎQl{ߑxv ?; {^;(mj {k3AD {=&ǂ$'b_=A0 ?;Z?}=66ǂ$G]?ϯ9/ ?; U-/J 򓿓 D<ILϚUkGEE[Gv=$kFٟK[_gbA~wĿwXD[mN_E/ceW=FU3Fݿa: _˱w(m/z$`ի/콌_Sf?WтMElUu tj['ïongt~F/ݭ;~|Qb?~7+??E_ y0Fo~j(m/տտe+DS? t٢ɵϩidt ;~ON,ͫxy y9M>K4/ǎ9-'^4:́r?''s-~ONqdN?ZE~sP3ʍO~OO<۶WkKn\?cϜuRO4Y;wv B{9PnAmV8xI >Z??@~BWڎ{ F?''ku+ol ۞=e{O!7C~MSCOjs/ٿI~猭Nja͍?dOduGyh'i C(7XO/'O/ٿ/ٿ'S' 5ORi퟽}PO{lGt?_w˶':[n%Wk}_'_OKil }4kO~_Cdj= b$?K~'1.cX?Sɟ"P0xO_?ɟ"Pi~?ɟ"P;~j_?('@/zB~>r}Q%y?FtPO_߿O?EuO(5'@/ɟ"_?ϟ?(o=ݯݏsO~~k ?S_2bw_?ɟ"Ps~)ſO( K'@ˮvf\)ſ//'@_sw'@/z$?Sx ɟ"P^?Oȶ'DOI_Fwr^l{:z}hZWV;,Oz}\-:1?O1 ,OpEcnǂoο9/{gK뾳x3mC{[(V]?d7VZHA@b@vO陞=grl{߫[F 2nDWߓu3Jٚ//Xaqqf?[kUSĿ^;;)?Jپ0㢙OS\4o~B)gߗ쳗q٨"ğw&}jAVdTŸw&>^O70TȎu {-cSR_g?d졯Mvm-֕aOI?%_PPV~2]X?%uT^?U7ڱXXSR?%uT{Oݻx=eQ~Jz;MYΟo uV Uɿ ϻnϛ-vcSR UOI?%@%*W?%uT^?UMϻlz`SRVa c, { e3ΟnW{xq_iPO̻X?%uT{zT_T׬bkX*)3]⿣~O ~g¯_NZ<\5k ~vT?ٿ~_~5Ƶs?CNy|۾B!W~T?dz|*?CCO~b}3U˅?Co?dO'ٿ~_NgU?dOv>ml~B!W~^?U?d?otYsьUSw&=Ⱥ[?Sw93Ϳ80mo98U:Wg͙:UV4 _/u~uzYfŸ:ǿ5C|37Y4?/Ǚǿ}|zgB}{= ~ ~ǿzJί߇?Vu߿P?dǹ} zȣWlnbŦz¯W~8lUW¿lݫ0^_翯U*>^kqcCX_=}o{0BW_GcVW_ۮW͙_=}רoli 㭥zX;h^USUW󶲹z¯{Ҭ*[w}u]X_=}zT_Q6}2ז:_78U5kߵUO*g] "#?/}"/>F ?TϿů[v#Ro] U'޽ I9O*? Ro՘ oc}BJſ^??Tk!*? O*gܻW~?R?7T~kEERYpRBql! g9?k8=q=o~{[,0)8P6{)wg~ _2;))麆ƽ.0)8=]klOIſ*KJ?'λaoB }&*3%Gq|}KD~߮,? \nʲC0%Ƶu3%G߼{~m X\aSqlְ|9kJ*U_Rq ![C==U߅i~lU'B*ν?zjaU?w!z:)X?ᇿ ]?B*v?]Hſ w!}*k Ro\?]Hſ^;UJᇿ 7/߅T뿻xQzPᇿ w7/?w!wsUwBRo'OR.vkR.Gkw*._{C0_~}q ?]Hſ럸B._S._ ?]Hſ׽c.ulQ_kFJ?WX?_3U]U;W~ǿуGݿguڹkٚ珺߻x?7_sP{9WyE珺vzUvozk U_ ̿_*}f{ƾls7ڿ܃Gݿos9,5綗U_ *};w:fľrBqq[bŊR߿o0~_kh9wn^6^r8oßegq s_%_~q6yUƛ{_QfpMO??ڿ0ٿ9Orߜ~~o9/g;_Sk-}'=}!9 p,'˿Î`֭|=i}fŊzpCO??~uU~OZ?7 ~_)?dO~o/V~޽w ?Co}?CށJ?CoVU(?dߎ]sP>*%z= ~_=~oȿ?GS??Cu3p7lrO~_華U_U_!W~J~^?~_]?ֵ .򿁿CH(߅T~+K?]Hſ'w!>]& ~*.vr!w!R!w!/߅T3/lTׂ._~y,Xޗب~ߩQx'cPᇿ *c.xw!OBJ=Ue+?]Hſ~s⃪Y/B*ܿohᇿ V?]Hſ޻ѥk?]HſgZW?w!ᇿ ].v<jZzB)gGC E/ğwX[-!ğw{'u^բY?%Lx 7fmo,ſV?%_{ƻ ğw&=Y5=L|vfC5U4kX*)0b?j*)gk3_b5VO ~;[?~^SĿ_xM2sUSoUO ~;mcq_9sЎuz= J)* ZC<[-vY-x[ß:J*=~_-vX*)_Uvu,a ͕?%uT~u7-;s  oLm#T͵%B!k /UM?ٿsYh*P~_OWX?U?dz\?){W?Cz?Cl~|ϯڹH(?db?ٿ">Y,?ٿv\v ,?ٿ~_~vT\?!W~۾ ?Co~gϕ{J~_ ?CZ/_%_O?ߙ59WO?ߙVsc[sfƿ'ğ:ǿu|buj?~[,~ⷅ:ſg[U~;_߷-[|C ~; ^?7U϶~ ?_=U:7XkX=|B~;ӟ:}*wߪ}EܷQׄǹN?X5k _:,[*˩{)_ge(uWOe3纇¯{=T5k _gF%e-uWOv۞U̿ w?翯m_ĵ ߞswM¯W~㬳d cU̿ ?oΨ_^gflb~տSߟUM}¯gUe翯}j~p~js?0BJſOWo\AοoaBJſo߰Q?so>S!I',j. w~dgw O*g̽Rn}"oۯ>F#?Tdz;(??7}Oܿ_T*՟[熿ދ[R{XCn{;~{`I_C9qߜ's$X?*Jſ/j\'? Ro@(?ٱ[\mqE!Yz]]aSqlsxC~$?hmR8}7â gc{'@OpgJ?\?\^6~NIſ/Թj0)8cr_RqnϽ ,*)+Us$?wUُg%%Gѿ~ܧsB]CWf> qj-)R*iJᇿ _O r?JSR9B._CB*P̢iOB*U?]Hſ߅T۾Q?w!E*/߅T=X<Ԫ ~?w!W_w>w|?}>{g?s_X|zpkg o&7T~[Wz|*.jwi'PG㳫ּ{E3VvzѨYȍ?OwՃGݿoW^?Dn_wsZ|⎢U'?-?w[*}j s~_]?vמՃGݿ9/{`W_=/B;b-.Xdǿg>ހ9_Sl*!o8X{8U/C?Sr/O.?/8,ǻ/_gm|jE=Vǿg]_X?d~_'Z,j BϟOʿ /U' ?CB!/Wۋ?C/'->4oť}X,?ٿ?dz|⵪]~_YagX!Jٿw9eҾZB!;U?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7߅ϞxbdQx}w!>b=jx]α@(߅T)g&~B }̢߅TyQE%߅Th ?]HſC~O_?_R?[Q9?ŧTŸw_ +38o)g{ݐasWo?Ϳba͙?%LH_-ׄSaYj=-!ǿ3gO{h_ǿC~f#cJ__ȟkA; DclquotʍknR; 5,cI?r^ae2\7ڕϻ>=?NoK;~;r_fZYy2+otʍǿ)7~a?0tʍڿgZ<yXnwX<`(7 ?3W-bd|yӿӹ ~_ ?CcUOZSb*C7@(?d_'ٿ^;yj;C=~E~~~_~??_??_??_??_??_??wgwZYZnY?ug߻쳻-j!ɍ߽z_SwU?!q/qj=u?{عXkha c-[|ίX;"!ԺvG}}Z5h,Sw&u{2ѷj!? =wY aٸ~ί__7UXּUSwovf _/u~ug~ z;V]k0ކǿγ wCa~_dYb2X_=w~q[\W6}a ??XUΏ߿_/㬰XS6 ?phg=VWϿ:?_eƹx-Juy_g߇G,ӹ] ŝ+¾>RC ]tP~ik?Tۮ1J~QwXy?T*G[? ~p!IGD~|*JſgJ? [EW_IG?^5{*O߽"wZ Rznw+<㻅'KJ nw0ߑSR}N~?7ٸf_ O*>i=eL_bqP O*3=Lܻ|?7^k?T5| ~ۺ {. +r|>wݷ>^9_mZo {qw:[[߷]Wx;_*;ֲ2\3/(jw_%W~u._9叿_=ǫ/k|ot͏;ٝaq#U~O ~dnO,NU=NRZ|->߅Tu{-> ~^?]Hſ w!yj0Y|XT?]Hſ^;߅T^?ᇿ ?]Hſ~ᇿ kߵo/wQ|=7;,x*<#s.{ϝ{p7?sgSzp]?㻛JQ-~P{?mϸRn!,_ Ekg珺'9տ^?XC;*?_oW?7ѻzp{X?OToPƟ?sg\C~ ~_u޳xbq7Y%9}~|>Y\$z}+?CU\ ?Co]|^+,~v2sB!׿1f?CN]4'ٿ~3ݿS?dX?l ٿ¯ǿ~ǿ~ǿ~ǿ~ǿ~ǿ.}iIϫZ߅Tc.{Zf?]Hſ߫B [|&T?ᇿ GUwr_OB*OSB~k罕f?]Hſvu!w!/߅T۾ ?]Hſ~'w!z޽: O-?w!v?_ttttttttttt;UŢQQ,X_߲o,T?%L}#gŏ-S(ğw&=ZWYޗY0wZ|v=Jߙa쑺oœkqa>jn/ğw&k{WZޗfZ?S J!̿lgE}Y-ğwo{â JߙOZcy ^_wsB)gz7xnEUSĿOԵi,Y\a̿_%ğw&} ޟW[WY0W?%L)gٙ3UO ~ c]cq^XRg7ڱXXSV{~;r?bǺ& D_mZebqƫotʍ]S9=?NocmQy[otʍkž D߫,cI?r_{זaލU'w&ʍww:O;L~;r0+Uk|,>>[wX~-N ڿws amq=!_^Y|"?hͿO?Zt(죐?g~ _/u~uga 2̿eq_ѬC-??s3+?-ow _Gu~u'E _/u~u/__/Cvk,nkq_/Zjÿ_ #_ݿ,_ le m~+X|_)Øg?/W7WqVYX\j ?/W78[,vZ)x+Jo}@X_=wWOeq}EKf?bZ~FR*P; 7X(߯xq.VT*m_ۗ]?7yU'_B }U?ῷh^!Iߗk,._aqPWRݿ\$X?ϧ͙RW~?7X<\{#BJſ/TuP~?wWqm*Jſ7:O O*?7ѻRT*?m("2ל|ae. \RN'oMn]6tVa|{͸k~;x{n(~_S~׬֕Ok/Cug3Y>9_^6a_57۱{;/γ kV݊9{uxk{}vŃBϟRCZs,.?w![-YoB*=~,?w!/߅T޿Rz.',yPᇿ W}~wy u4BRo yB.GH(߅T5| ~sǿ ~sǿ ~sǿ ~sǿ ~sǿ ~sǿ ~sǿ ~sǿ ~sǿ ~sǿ ~sǿ ~sڿOVgou,>>[wTw-ި>W+'\yyGx珺M;E]Ε,^x =8ig+ ?SϽ_}bug'w>dzb+=8޿?7عx}`*}RWch=ЃGݿ_Eqmb.'>R*}znw_x=8^?o^U ϵrWX,oq:8+8k-6Z,+/wő :vjxW{Qobš :Mvmgחa=vuPn~?hǹ&=e_z[lo?W~ybҺv^d?Cv^X_5ko;0>^_r^?<'u+8k,6/h bb} :&Ux}qrO~O+ ?Co~.s2kl?d޿O}>oUM~?Co{P!WٿgZ?"'ٿg/XTg=EB~ϞP(?d맿])ǿ??thrY?m/[vk CU?CR?CٓO[Fa?Kf1] ~kҹp@%߅TۮQ)OB*} 5qb T?]Hſ^;xj}.?w!g)X?ᇿ W._CB*U߅TXݻ X(߅T{zT?w!߿._Uzk?]Hſ.}?]Hſ~ϯ-v[?w!^X3;-Z?w!zX?~ᇿ LS.3?w!/߅T۾}R;B*=i}jqb}Ŧ wYkY-ğw&ߴx {x-ZXiy_0W?%Y+?-V[[l0/9GB){<|JaKjUO ~;7W?%g]4VO ~;^x \nqPUchq!k J)* ^;$Bocol*)ܿ\==xcbŁzŸ:J*bZ kBW_c`by>Οc|j} _;[\Sy*)_TŸ:J*} kw}.[PO*)C{c-2ו:)_e|S=`SRoˢSk{חaOI?%ヘxw=VOI?% UOI?%>a=ihd?[wX<`n/G9y }F:(7T} sGeB!*'?C3U~{gn^?ua3 ~?Cz!}N~۾R{g.?ٿ ٿ}Zgľr5B!#7 ~v}?WOg[|Xk̹?Cz!kgab7~wtjW ~_[a/ ~_ ?CEq~_ ?Co{0^i~{{-̢gsx.{-O?ߙA!Gu>lx#B~;_/|Q5pGf.~X?u3Ϳ*}={}vwzO[?"?B~;0Evǿ|*?к~>ݿ '>ϫf 17~X Ŀ޻kͺsO?ߙ>~/~f_?+W:UghuRWkw¾ϕ˄+[ z,^̾BBWk9dqŎ翯}>oUM _;7[8RUW@Y4 aƟʿ z;2̽-6Xl)uW/*9ݿ.J(*9翯{ >&ϥBWp=e翯U_?T_S6=27:c|j}~y}Y{ z_Eg2̻q¯WQg9X;˰~c~տ^?_ |uVW_}3U7Kf1] U7-xu!I_V޽ ]-^) O*zޟxjj?7o_w߶8&?T}uO}qPw,[(~r.VT*}yU??skEx RoPvBֲT*U_?nݻ~q>*?T;tq] ,>*usU'soO)O?U'B U]?n/Bz`I߸ڿ?7+_,+I_ *Jſ,ޯܫ, ~Ǒ/lXQ6)ߏXؔaSql޿v6UgJ?{)x3J?|-\6G&XaSq5gJ?zS}v !13J?|}{}8U_??cQ3%G~l~oLߍ=g2J?>RglG ^*Mj!Q?w!e]ç_TaR-j0R?w!SbRorPᇿ {~`._~=w!R.k Rz?]HſgoXep!Y.B*}>{U-FaR+USCwӯ}T?]Hſy٨R?w!z|VrPᇿ *WD'w!iP~R w!Q.`\;\!B*U_?.W;B*U_ W*{{U kQ-^x$c>>ugEp߁_=cSw0~u~_;aL:7p¯ L}ލ=p?ɿ:fɿ:Efk藊 z/3WVW?&U_Cߡ_?>yu5v -Va﹖-.fbO??6;ne` ?ڿ0ocna7:;_8lq-=JOUwAٗa4h0A3?ci/[-vfڿ#7<|MR??̿jiwÜ8]#O?o'Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?];]agŒ ?O~7,ީ/?ٿyy]? ~_ ?CW-^Կ^?^?R!W~{;,?dOB>*?dv?_ttttttttttt;(<=db,>޹~y[,vX?w!zf?]Hſ^?ϵ8_~Rz.ػ\`b^Ro5j VX?ᇿ W.ya+?]Hſgt?]HſkOB*ţOXoB ~ߠ,^xz7'-xQR~[Gf~[R~ EKB ~ߠvt\KO*|9AS4k* ~ okX/q KR~_oP{u/?Vu,I?oЃ=?? _kaiŢQQ,X. -v-~z J)]cUBWeoqbkٌUSROIſg5t*u:ݵw}Ÿ:J*}_jB(*kX,X,/xcß:J*}>{F%*W?%uT=^CQ\Pk:Te3VOI?%OkX7a>hqM=VOI?%޿,X)~uY6CΟ~T(*>hqkJ)}nqtN[}$gcSRz~W?%uT{>*ܷ[cA(*k˦]Q3ΟUxV^~u/_ǿïˏ_.?~]~ ?~u/_O*<{q޻^kq?:?dsb}u{T~ߏ?Cu?w7 ~_ ?C?Co \/{Eߐ?d???C Y;a-vX_=}UbS:;΍־翯s=%}O~fb&zW~^aJeBWO*T?W _lz3/JS7G~տv_{fƟʿ F;Ζ2̽k0Z翯ک|N\|S=VW_۾~,)uh翯U_T޽bz¯{T|=esX_=}o%gGZxc!Iܫ,B #wK;y?7Ikٱε"x|;' _;7v?8i{E?o?{ս{NY¿?Aѯ¿#_~T?胢ot0/J.ykџ O*ۏ{Y,ߘ~h}dqռ{q?Z?'wIAڿ'O-NUMfc){0kŦ #n?T{>)? =n}{_{;߾ؐaSqsSq~PzߜSq7?.q!%G}UgJ?=者?0%g\q0%G[})W~?(GjSRX?Sq侽 =o%ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρkniŕX: ~g,WM~߅T=أlRkU,/Z(߅TnYby_.ֿR﫭~X._GFq~_z(!.?w!b?]Hſg_'w!ct~Ux ?S Gt -NX|uȎ"xY_=vs-.*+?nï Lϱ\hqYsj/?~w?-0Ou~{{85 z/3]:2\7%Ww8W/rcܿ>$U_C:_ݿ[0(9NMv-ŵe]V,n-៶^)ҿr^?̹g~#[ܜaSF,Xݿ*S?D?o/}9NR?~[_y\\b)P_~~n~n~n~n~n~yba,>?ٿue Zj F]eB!W~޿UUB!׿.w}Ȗ ~vk+?C ?Co{P~ZxNi~_ ?Co%ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρk~ KgY|kRyre@%߅T~LF[?]HſɢG'w!Q߅T{FRo+ZmB.߫Y,B*U_?.߸vMB._CB*]xCw߅T5l9-^xy'ǿAoZkkoYT^-;B ~ߠ,^-XR~_./*7٢SEKB ~ߠg0g/O*Zװ.o 7ȯo~~~c l/O*WڿgoZ]w_;[Ο߱ώZWw=BWakqbsJSRkoU]0ᄑ `=VOI?%uOW{ʿ 20mXYR?%uTjo~wor>VOI?%uwB(*;R6cSRθؿUOI?%[i_SRo~*/*}W?%uT]_xΟߩs7OT_ 8o)_;,<.?~]~ ?~u/_ǿïˏ_.?~]~ ?)sU>Y|}*~^(?d~?ٿ^?OX|bҾZB!VcJ ٿ^;csI(?dzrz 'ٿS?d߿!W}~_~Ӫf1f X!į~g1mq^;Bw&>inm!~~;~k߳h||\_΄]s}"X_΄=FW?ǿw֟#֟ 70?[4ULw}VW?ǿ5>S0?,~uCOU;-s2Uoz¯׿*tԼ**{8,QR_=}-޴XhgqrO_}{ŭ*߮ӱ*oli 㭥z_E7O~u%R?N3zػuТQʿ v[,lqMٌUWzߩB U_T*翯[U~\(*Ͽ[\翯=j,}e3VW_~N׮b߻UWuO_ڿR¿ L,VaW_5| Yccq);P?hT{Rϋ/H.wa޽ ;kŒ_ۑyv-/ſ ~ߙ#_/ǿ#?v$g׬2=`I*_rXR~=_|} Xkq?Z?601k~fb} 3?v}ǎ[|P5{0)82̯Rq&ZGf}7XaSq {lGg^?Sq^=P=wgJ?͞c>eD];OVgeؿ׭|[zX;:]aJ?es/xO?{x?%GjڳeqJ*=ު7d{nU=o%ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρN'ρkjnQQ,}T?]Hſogo[kqըكL%߅Tۮ FoT?ᇿ M ?]HſgYaqoB*ѪY{X%B*} _-BR.W[!w!Ƶc?߅T^W\.3OR Ze}?7q.\ -.;rW?&]hQ%]bqq/HqYJ/H ;9e{O{ſɿ:?/rOu~!_? J_;Z>^@OE{,X\?ϟwgv5eo?)\`qm?aSÿߎs]e_z=ݯXܐaSÿǎs2k[f-~:;W,~2U=JT/~Vq?O_gǹ˦Vo9dqō ~vW~gšڷ>/˿ׯ3ڹbc~ :~_ⶲYǺUW~n~n~n~n~n~nᇿ ~h}dQxlcϟ?C[=Y?ٿTXng(*?dYR(?dQ= ?C ?Cz!T~_b!ݿ,;tnPm/R~߮Kß?Nß?Nß?Nß?Nß?Nß?Nß?Nß?Nß?Nß?Nß?Nß]8*E#7] ~-n?w!^a^P-?w!z߻Ԫ?#B*V^(߅ToNy6?w!Rz._s}Y\[T?]HſZ뇱v*Ro]B._]֍Bv?w!v?[zcYeqTR~qe/?? z{z7ȯ?B ~ߠcB ~ߠ('ǿAquϾQ7~E~snEsIR~ ֯ϝןy ~~D "=a}lqbu,?WuG,*)7-ޭ{`,V _k!e3VOI?%~`}X:bC vk-nW*)_X;G:H%*_fZ?%uT^?U뿱G5aß:J**A*Ws;0u,SR~jqj _?Ο}Y;\+TŸ:J*]>X%xN=UOI?%Ui߿S?_USROIſ*͓?%OuvM-VY/<Ÿ:J*U;^wX'v-nW*կTX2q¯>7Хfv(UW{zTʿ _;Tgv翯+/*W_=7\翯X+ewo]6c~տSPWfkq翯Cue`f Mz߮K.B;b[,Xz?o?В2\7/ݻ/H. ;e_ۑ]k:ڿ/H.ҲsXf ߎ_?|lz v$~ƿ] >sU'G }ݻX\ZH* #]Vg6|2CO*ۏtU\C{`I?yj}UݑY|k8a[t߅+-[ #g}va|?kh;pCO ~Q|߿S=ŖK-.iPO ~Q{+e٭=JL ~Q_KZsžLgJ?≪$vCR?Sq{_^;/b~?%G;w/ܷq3'vbSO ~ǑC.%^V. ,X8aSqkߵgU=eXi6S.U؃QknRѪ,5{(~?Tn,5{~?T~?]Hſ w!Sk o@{*._~կ W~R Խek?7 8-[\nbYz/3Ὼ \W>^@οҎ2U/Hݯ[k؈@/+=o쁯߁_]fP6u]k*ǿτ{_\{W_;zU\wv{*ǿx7eƿw WfjŒ2<=YYkf?ok2xPIwUyrŭ?aSÿێsmewZw[[?g2q=R9xOO X|%z;-_8T=JTnT?a'g^JTϿՎW~׭n(Cϻ {_-jaS_??{˰WQ_]_ݿ+Zz3~??W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7Ïu?W7߅g[|X5T>λVk* m?ٿ'PCOUa[?CoY> ^(?d/?diP~K ٿm/~*/?d۾+/?dv?_tttttttttttQQk,~] ~{YdqPᇿ .=?cb~n{yO ~cg-?w!zr=f~ᇿ w病?]Hſ~?]Hſޝ!`qX.3WB._~-x;Y|(?? r~bqh{RR~sGEX|,?? yW6pu?? k8kq 7(z~%~D "? r~ɹXR~_oPf_֯ϝל߲8ZXR~D "=no`넞?WюuW,- J)}ũ*ùbPUwٱ[Z6cSRuVOI?%{_n_GΟϴ~^(*=UOI?%OTŸ:J*m>dJS-~z J)7~.Z?UwڱZ\w_ß:J*U*7ٱnfŸ:J*=)^?U7ͼ -J)W,޵xâN?~]~ ?~u/_ǿïˏ_.?~]~ ?~u2g-Z;?ؿq/z߱o*?dOE~X?QN{bPVw ~b!]?ڃR!W~^?U_?!Wc:a{Z|"į~gqe~~;=U_ǯ/idǺ 9? sOZ+B??~uR_{"G?ߙ[ڱ+y*u/u/?i=L K S>c}֎>F;+=^o_%Uii4zTq).Ud,.M6[nҌ4^I09q6$Ab0@AIl lqbǞI $kFEyޜst^zx;?>;޻?bj-T\Z!;βeo$Sſj9k9_TXůCgx_}m=v\hU;8YZLS7?VP]D*f{,{_}_c[_Z]?UDlR\W_W?׭ޞ-/Ov='R8U?iS]8~4vcWkw~ayCi~?4gk:l9ߛ]Vow05f057W{s\a?j~.;Dj*&7_O_g0CϻwR}{?sn?*O1O3}5J}sֿsbzϥ }||o=|ߢ|5O3su}oX~l??{{{~{'_;Оm?i&_3{5uJv濇kֿkf-wA]4sgU~v ~Pw%w3׿횴E[ɟk!&>>~v ~Lź۷^? ~7G_O}? ~7G_O}? ~7G_wL1*|I{ǏQov}oYUYJO_?cT~Ǩ7="kcT?>F{w-QoǨk?<5i ǏQowYT1 ǏQ鯊ǪTg8{RoHH_t7_LH_Dj?=_}/}y}^KG~wϵԾ|ߑ/N7>my_}/~O]a[޲-b?{ٔ{zZ_W9~Ww㧿?]Ou?~_Ǐ?~Ww㧿?]ڟ?i˚bϟw?~c3gxֲ^+~ ][^?W-,Btq9ߵ񏹿*g,bߧ=N'~c'k觋Ǐj!~c񏹿[_񏹿[}~F߾#o৿??~#o৿??~#o৿??da,bu˟^T+a囖 ?~}Jկ1*׼Vgk_|GhcT,oZ~k?.1*B_'~}JC'~}JzP_cT]޶ZǨW߾Y~ϒ옿ewGowO}cy-R[Cjr_'u7Kj>fe僩z)?V{oZ~{~owOBUvV_s֓כߟx VSB|/~[ Wja>_OiJg(,_}ӓ',,,>_cmX6--kcרF;mwl%yAhUXG,-{RhwkT<)zTڱZ[V,*QwJw_?UϦtD?t]bO4QwJ%_C%xShUX˩yojF5*L}|ʲf٘TVYW5Qon>g7ectGhU]_רF?W_X-_w7?\H:QwJ~fRc6ZA;1T=6U]~j^CO{WwU]kk*>yX5Q鯊}KO_u?~]?ŏ_O_u?~]?ŏ_O_u?~]W5yEf?1XY}_*񏹿͵33m˗-_Z|ǟGW=v/8?z~7{sXHB*~?}C#HBB~0=,+?}~͟hwg>LgϰӲ{R}Uv+3}W_7w$߻7GBo9b9nٓG_}gį*9dj=`C7kh4s>>]=˖k_ſaٴ\\σ> OgղtP?wy=*~j/*gSe:`yҲ\P[^?S_o^K~jկ*ZVUPſl9U~VP{P*{OW_ol?CɯJ-wwߞluwϯ^,= sjCC)?Ҽߞ_j;?ׯϟ4=?[UZC[ g|;DoOCuwg_7w7sy^sºM-_us|qר7߷(w׋?4ϛ}we#kf=F*Ϯϻ={wMd5O3c?O3c~-w ~̘\W5O33S'RouJU/]4?o@U޿Ѻ9Q}),/~v ~Lϧ^@k৿??~#o৿??~#o৿??~#3ݖ˖k?51*=8iÙǏQﳶֻ,{D1*=`k}hR}eǏQӓzrǨ7_?=?>FKbnav ~}J~ZCcT[~~Fq_ ~}JUw-,X[#;&?{ۗ ]7 =_O??w7s-#+d'R(O???מNտ!t8UYKGo۹/uw_;W7uy$#Yu?_;Wí_?_Ezj{mǯ맿/~~ǯ맿/~~ǯ맿/~>cݓ`s7~ks?kZߧeBq 񏹿O{@?>EC=gxβo!~cﳓ?MǏ-/kJ_ ~c'~coy ~7G_O}? ~7G_O}? ~7G_O}׼^goZ;ϟ=1[bw,Z\_w ǏQ5cT~ďQo~=M'~}J/ϯ*_'~}J35WE1*=ǏQoi^?T~ǨoG߳$;oˏj>na?~[.TϷ;o׏Oyy7?/_wj?t?zj!U*ao5+o5c}1{RVowOiϿ^Xſ? ?םT?_._ůLTBRDeUXg,ek]y-{q{ *v}ÖSxw]߭7_$ϻ*QwJk y9ASz7FovT]n ?ZΧF5*y[hUw;q˞T=>t]sW/so~uר7_?웴+]?U~Pjhר;\"ͯ%*U]O?{jlעU.qKψ_T+zν=R?VwkTg/Jߝ}/X5Q鯊}Ksd?q/~~ǯ맿/~~ǯ맿/~~ǯ}Ǐ.90i;?gs>(񏵿w?1~qGyǏlm{eǏU߿?~?~ďU ~c=v[>hIZ_Q?k'꿇 W?z6߅_W?kiӖZ>i~GT޳4/翺_Qo;߃EW?ͯ74(_u߼;EW?~nF W?5,T#翺_Qo]~Hů~q˧D_u_err&_37'=_ş=,G-ϦW_wgqT\~=a9m9d9V?VP[^?Q?ݟKIǯCe5 B_㜳\Oc~*D\ߣU?KU~_[_*'߈~jwJ~zU?(^?U{8-G,Ϥq~?XůC?*éIǯCob?gmgow;<,W_ol{Sy ৿} s'gs?PKO}C?3>lŹ^_g~ .zX_@}A?[waE_%i姿?[>,RZPO?o֟?ι>Ow^~*_|nf?i&?!_$}]߃և-Guz5{`'}|ɯ=\{wJn>y1w ~L~9׽mwJU/]43o~{~o~x9 D]4;C6vK׿kfro{E g? u]ϗ?dϻV~zg?ׯspzVר~6D~v?Ŕ_h^~߿軿}5G_O}? ~7G_O}? ~7G_O}? ~}椺ʭ?6T\*_?c\?#kcTSOkgJv ~}J_Qﳓ5˖oȽ 1*Ϳ51*U~ǨWZYޱܷ$;GvLǯ맿/~~ǯ맿/~~ǯ맿/~؟g?iqXXv|τ|߄[in:̎srm~|j].{ׯ[ ]~e5K{ށ_|u??vr{dy-ߋ"Ϯ?i8˩M?O~}=*_tǏ|l- ?ӖuO [~뿝?p^:Y7?W3e?~]Tס_㧿?]Ou?~_Ǐ?~Ww㧿?]GϰdȤ©?Z߉cyܲrhR}';ksI]ΓB~ďZ>\_V?17_;kye;Њ?~]o9PD?XJO_szPsYhsk৿??~#o৿??~#o৿??~#-/Z^|~?{cT{zrU[#1*=V\?_fyShcT1i_|-ǏQ-J^lbbOnuTڿǨ?>F6{kcT~ďQ1*???~#o৿??~#o৿??~#oZ>l9bYJoY.k]Z>~@eUX+U˾T=>t].mq\Z9˅cרF-Bco9by&U$רFyݿUwkT[_^?Uwoz5QSڎfٰHcרFy[YMJeUϦʔOZvZK:QwJկ*vK3cרFSCA;ֱy7?^N:QwJ?bkQ'=|{w_şSsuרwS_HoDרF*{w,-Α᧿/~~ǯ맿/~~ǯ맿/~~ϰy˭~Ǐ} O[lX6-ׅ?1v~]ܴZ'k3 C4?߿?_?s뇟\ܰZ_'~cڼ--Į񏹿뇊O3E3񏹿*~Ǐ?~Ww㧿?]Ou?~_Ǐ?~Ww㧿}⤺Q4R[ fXůCgW㜴LSIǯCSş{{r_}6*v#=z|4U~~zbͯ߼E;^hU'8gR;s~m*~j*ֿUWwU?>Q4(=3z| -?*U?w*ө}{bOZ{sW*~jկ*v}ÖS8????~#o৿??~#o৿??~#o& -[3y߃4|T=>H?{f^/z|fݹ5O3Kw`sQoyϮH=n^5*=&?#_?i߰nup?iawoqp?idr}n}R5O3c?O3C}g?ͬwKg?/w׳Fxr9kf???~#o৿??~#o৿??~#o"kcTI{;W?>Fڙ}s']_v ~}Jկ1*U߿ǨǨ7_?{[._cT[^?W~ǨW}3ǨQ鯊}Ksd?q/~~ǯ맿/~~ǯ맿/~~ǯq3Z^|~ǏA;Q ^!r [SӖ,|1w?O_Y.YVRx}]./[^p㜱O)˹?7}rr])~ju?IK4vөH@\?'~cq?TϾ5___3e?~cL^?~c__ϟʟW9~Ww㧿?]Ou?~_Ǐ?~Ww㧿?]aG-ϣ Ǐ`wbO ?~cbw'|O ?~c?1w~TSP~?f~>(>kB1Nhsڿ(XaAIǏ-+]?sկ񏹿kÏ???~#o৿??~#o৿??~#o"g߰e ?Ǩt'|ǏQJ|WkBwW-[OǏQo[B[\? 1*=Q_^+^CTY _?ďQoǨW;nǨo?~#o৿??~#o৿??~#o৿?.M>hȤ>ɪUWX7,--W*QwJ{y er$U$רF!G,Zkrrr~uרc?cdγBߟ=z|4F5*mayR*QwJ'_Z=~zuרwqR=IWv{aרFkGş=R}6U&רFpw*fϛ~\F5*-_W~ٱNZΦy7?>t]~` W׮.=>S?VwkTA_רF*{w,-Α᧿/~~ǯ맿/~~ǯ맿/~~s ??{{줽ǏJOߏOq?1W}~ď-ͽO񏹿ͽgt?O}? ~7G_O}? ~7G_O}? ~7G'ͽ.}~LwT}gPGrWkiYy˥5O3W럓y)UZl\?s>vר7w`s׿kf.?/ǷG&=PNh5O3C~l,?ͬE+z>\??if_g?͌a{|R]474p{@?\^7[gS34ֿkf_ i۷^? ~7G_O}? ~7G_O}? ~7G_wdaabyeXϟw ~}JwpFIǨ7_;cyܲrز"1*-51*}ؿ, ?~}J="߿kcT[^?_?ďQ?>F[~Q?>Fg/1*-Q鯊Ǫ ~_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O̎srrȲl9t8uo,/~ ˦eE_ӎp/g_ןWZf{r㜷\NnzZ3^;U9OqS{_/~w?]Ou?~_Ǐ?~Ww㧿?]Ou?~_Ǐ?~Ww㧿?]Ou?~_Ǐ?~O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_DߴcݱZ?>Dc[.[[X.o/yRXſOfٱ-ézVow߇h~_D&ÎYT=B刺g;N?M4?qoOv{rrO}'c_DcIpwV{w,-ic8?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_iT=~+_Oߴܰh`RL|R -_Wڎnl9n9aoovOusosJv{ JqVRo9b9A_ >~~ެ_Oyy7{,ׯ_;QTZ/O}? ~7G_O}? ~7G_O}? ~7G__);T}g3Ga5UO}9ꟗ[ދo? ~\^9/~)>~N۷?r}ooB?%9p/_WʎsrѲ`/1׿⧿oW_u?db??㧿<^XN[_W?]Cw^? ~7G_O}? ~7G_O}? ~7G_O}9 W-7S{/k8>Ŏu#Uἐ/_kw˖U;xzgkgyrߒ& ;&O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?HW_}wv UI9EJsT=7*~W8uaqJ_fyr+U_鯄}_W¿iǹڢW_u?e;W_^`x?U[=e#o৿??~#o৿??~#o৿??~)? JߦbǺo /~ L9Kso߶|5U0-U7ߣ=}/_/_[އ_Ÿ-f-B9Ko}_fn¼_}N{o_~?G3G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}zgkgyrߒ& ;&O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]??faEIOٟ-+ϾM9KkϿ?oqfM˗럣⧿?gٰ\ZR{/~]V/~ W8ߴ|g}r𿔪כX7,wϿ?U{Fu_?%/}Yo_oqceWRV_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_Oϫ#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~hvۖW,WRͿOfڱ6,W-'-,7v[u7k>DcM>D&87s77駿g;N?M4krٲb9m@刺qoӯYZYޱܷŽ ~_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_OɎgǯ'|8W,7-g-?ޱZ9Xů~;_q;ΙT=鯄/~[_W˩_O?=UJzL_ o%J=o~-k_O?hYZZj?W_u;??~#o৿??~#o৿??~#o৿]Ӗu˱T}O9 u7/~ T;!߃|k?;?߿ge/~ ?_~?u9۩w+l__N?rWmowS||U+?v_?~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#oWw-,X[daa?q/~~ǯ맿/~~ǯ맿/~~ǯ맿_Z,G,-gb3O=L9K/q6럟aJ9KϺey%Uϻ"/f{r"Ͻm}ZOٿ~ztYOٟ[N>M_?w5tr2C/1ϧ}떳EU9㧿\Ou?~_Ǐ?~Ww㧿?]Ou?~_Ǐ?~Ww㧿?]Ou?~_Ǐ?~WwW?~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿?&?ۖW,WRXſOfWXkKiy;x?M4{˲77X˩zk9l9N刺iǺcyr5U__Du/o7X߱o&c_D[{oOٱY.yxO}͟?Ѽ?q*~0͟m^wg9b9AWw-,X[daa?q/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿/~~ǯ맿ܱ߰jjiy1_Oߨ{9EuJjs/ݽE_ !;ΊeO%/_WƎsr%UϻgSV񫯿׿=F?eղrr⧿3⧿ʎfuJ/=}Xů~;_A;αT=?UW5G_O}? ~7G_O}? ~7G_O}? ~7񗓿y2U-NY}/8gO}9Z7{WFs}_?%E> ^o? ~ߡr{o?\7sԼvur9kkWw6/~ ~R3Ϥ}o/'?67 ?~;??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#;+]=;4YX1~ǯ맿/~~ǯ맿/~~ǯ맿/1qNZZ[V,IOʎfdYN9K78W,7_??^N*~;3_s /1w9kJs/~]j󼛻{rrׯ./1rOǹ_Ǐ?~Ww㧿?]Ou?~_Ǐ?~Ww㧿?]Ou?~_Ǐ?~Ww㧿?]ǯy ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}? ~7G_O}?M4; EU?>Dc\_D^\l9YſOf۱ZNvвL刺?+w_Lg;L4~Ϳ7׮YNY7yY[_DKλS>F刺Ͻ[駟Ua&Ŏurr8;L4gTa&ywղ7*awV{w,-ic8?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O?%eu˭*8u!ˊW?|8yr)t;_s}eg9"t;_g߶l _ݯ~OqY.ZYNj/y}Cjx²r Uc9o|f?;_T_wi ~ן簵>?ס`>W?y ~7G_O}? ~7G_O}? ~7G_O}? ww/www/N>;l!7gF㞿|I_bnB?~7QVR:O}9|?[><=Ǫo֟l^-oyG~{7ԾH9G]Zܿ.yo৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#;+]=;4YX1~ǯ맿/~~ǯ맿/~~ǯ맿/$w翺َjYOUFW_yT=l~a8yʲVw?W?/st~TW~a8G-',{S\:/1=T=oA ~Gu?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~]?ŏ_O_u?~];??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿??~#o৿\sΧ0h#vSB翺Csv ˪erQWow0V;[ϤwPWow0VTow0VTow0VGuvcg5{QݿݡXYM~jiYOc?_('_}CfT>owڱZ[J{\D!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!B!^B!B!BcK ?,q~hM&qdG&N矷ɿQouMvq"}g_?~Ǐ?!a޻6iKm6Zj3+q|vɛE>XsEfu;VvbMf_+2+wlIo)D/qǏ?~Ǐ?Wgn6b/_ڔ6q^j/)c[j,#KmϜE#E)?SR<].Q_-rHysKm6Km/ئ|\\jۜ^jSҵ"}]4BHqkE_/)_,S0 03Wɣ=?{f3B!B!B+g6jm8i ?)-oOE"=NoFMno?~Ǐ?~ !fq')ww-)_#RYm}vI)YUd&HyOȬc5"+}*2+vǏ?~Ǐ?~gnͥ6b7ڔ|q^l+Kmb_^jS66[jS~7-R޷gW~AgP_+rHy_E"]οXR5O/)S^lSޟS\juRF\.RH"}ʿ8 0 8}<ͼoa;'B!B!R~?)YoEXI3&3mVvS~//).}y?~Ǐ?~B,.$KmG]jSRYql7M~G]dVԎ)]-EzYٱ"+"wf}Ǐ?~Ǐa홛R;Kmb,-mԦ|}[Km}uئ<~yN)s?SFPdȟػ ɊOf.n  28,β2⺸-7 ?ANDQC]};I8fvj{s<cs7yEyƛ54:Uyxmց`5e/gGsƑJRT=*]=UׯS￈HSՐۇk0?ZmAn9FI'15G(c5J8'ϻ񜤓9B@/(+++++tsj[&qFԕo)~[@C]y/ޱ>BnY9 gM@]s>ʯʯʯʯʯʯʯZՃ\uἚ7s7ks7s7|pfL pL4\ S8͙Bs7}78SÙ9s7S7ִ po9`_^_A7T=^RTXu}_ݪ۩V_DDDDDDDDD)ܛ9(pmIq6΢A@mք>\>4%>stj:](W~W~W~W~W~N/79_s7Sw 7? C[xoxN C]Q}s|e+n5G______/ߙmyӛ 7YĻ9B7+7p:\Ks-p^4z<͐`F_0z9By|_ 7}Лak#!K/)qV߯a~8T*JUUݭJ~l~EDDDDDDDDDro=}jh:y)<M_7N_Un9Ftokh~3}$/Bk@/(+++++t L 6o& u͟+ G~+W _nԕ$Y4)luϭ(++++++w;sn0OzI0Us~f`xg`i`f`xs pL\ ܘ9T'ڌp4p4漣Y9ϛɃ>ǛI{gy9?4M0U8C`Q$>*-|U*JUUݭJ~l~EDDDDDDDDDo}}$BۇF#Z>;s/j:?ϚrLIFwR_P~W~W~W~W~W~wdh0S#?8{2~"Φ}aS+?s97;,&,{%+7d?}y[@]s>ʯʯʯʯʯʯʯ9Μl-׼>Y9wyz0/xU07{R0 ys>8\ 93U#aNU11MZ 8ܞy3E0y3g0?Q0{DU|8s{a}z*JRĪtV_NUJ""""""""""MY>sHs$*M: xN24 +++++H'ދ{' 9}) s_&xNւ/xN |ssݠ/luϭ(++++++w;s\0>y;V0Z0f`nf`Vg'x݀|q ' ǧ^X{0A0yy>|_ jos7<~7e`8y_qZ_ x|ujG}T*J5[~z;U*4{*q>s_VkǬ4|֐gxN;4[g5̙wR_P~W~W~W~W~W~ &stsaxN>-{^xN1^w^.yߗtW~W~W~W~W~W~WN_gN ~oa#ެ , /?<&pϯ8g5iL.8 4?/y>Sù@9՛ai:~737 pp2:^[؟:|U*JUUݭJ~l~EDDDDDDDDDroq>\™BMϵڞ><h:?rI֥(y r<IwR_P~W~W~W~W~W~˾6o0>+? g$_~2+r/Ru7ss}uϭ(++++++w;sb09̛Q9ߛ ጝ1Y>w^;faia{~jvJRzb}U{~wү_o*[p/ ϥkxk=}~$CgQ{r>at'k<Mʯʯʯʯʯ"҉}m`r?󓹃}IOǾ 3?W<'bcPWScg?.| F"ԕy$x]]s>ʯʯʯʯʯʯʯ^]s7y5<[s7t7s773z3lUyiB?༠p& #s7!e|u6^G3R\k*ἦls-o ĹӼŵj*JRĪtV_NUJ""""""""""MϷΆ>\OµCMʵ>sg\w6sңۇ3^wR_P~W~W~W~W~W~Ӿ68d` ԕ7rT޻TWCcr?[ރͿP<''wʟ[MQ~W~W~W~W~W~W~$Uwy.^nf`7;sBp>O 6`>g6gw/YÛӁs~f`8g`?֛ắb(>x}s9zG&^|!m7)p^JRT=*]=UׯS￈HS8vso<'y9oCnԙ/U}6a5%>\3Mʯʯʯʯʯ"҉R~N?'ox]ƾ XoP~3FPWsbd`rÛ7^ɉxN{٦mtW~W~W~W~W~W~WNwY^ě9՛Ap\"\ s߼l?Us~K38| 8pn ( ?s19)޸`8s89Op#﹀sT*JUUݭJ~l~EDDDDDDDDD¹=ܓ= Yh:]s{_4kf^%ZM9/u>\t.P ʯʯʯʯʯ/";6d`nf`{yn~7k,ºPW~^:o{ ^s&Ր^ɀՕ?ʯʯʯʯʯʯI~ ,  [,Y0s͜\ p<H9|άM s73ܛtS0>TΔ<u\ _6+p^`㹎QT*UOJ|nUTe/"""""""""9>8M_<>G2?pos] 9:M_8>G2>zN\u]______D:M;Y.)/+ұor$>}ƹx]Ϟ' LoxW]W^ͿY<'=!PWj+++++++'3's7s7|7s73s7S3gά(k '7| }ތ ~ҧk)#s7}9^jSro8/a:LomE*JRĪtV_NUJ""""""""""M9ڸUn=k}$7A(=k}g"5%An9]t.P ʯʯʯʯʯ/"9}53L]W-xZn~ޯ{7+MW2Q0󢿂^s!7B>/VWj+++++++'9og`f`8f`.fH0<9gx3(˼Y(%L{à*0j0>̗xpnT?^')Ɯ{6 0#>n `NJRzb}U{~wү_o*[>)|<'k}N/M6>G53}')t%Cn9ɹt.P ʯʯʯʯʯ/"x˷&sBOx_ ù1g$_ifDulu:L ?4GRT=*]=UׯS￈HSb=_ZmgCn9t~;ƽsIExNr4 +++++H'^6Þ9'pu&Bn1MG^/3s8Ӊx] 74dL <^Wj+++++++'ߙp>p`8g@0|%u3; fl,&`;T*J5[~z;U*4e+jZ>\4jrINs]J's{YN⬞k!{z3n0gz3{0Gy9BUuf~oZy2q< ET~^k{3WÙ/B#m<~!xQ\ry>#8+-L JRT=*]=UׯS￈HSuDM܏S^jr<InO_{̟ew(,>Osu]______D:qo&sx~Şf`?Yp{fߊ?)~.^ׇ{_( k/+n5G______2]0ü5^7 p>ϱL p g }g8agy3z?W3+xs3x3{3y| ǁ:{uUaބu kgւɁ gxh"k80JRT=*]=UׯS￈HS{o"\Mӵ:s<'y&'_9 j:k5J>?sWu]______D:oqd`f`?cǎ$_?^~ 7?XwVW~Mi9{ C]s>ʯʯʯʯʯʯʯ絑>T՛1֛Q OLf`< <@opfnos񃽩6<l pf8jL32p 벖RT*UOJ|nUTe/"""""""""Ҕ#|tsW<'=_Mŵ>ϋ35K,&7%@n?Ŭ4 +++++H'ވ'COfo83sK5p.P]O!7nu8sOIx]k\V}_______;Ͻ8gL^ބ`yٟ83737[jAoveVontwf~oBpo6|$Y%j snʙy1k"p_ܤ؟-[JRzb}U{~wү_o*[p}oQ<'bM?>sSH&OxN24;9r\I·wR_P~W~W~W~W~W~۾նp0S[4g0{3}0u^K=7?u-?)ԕ[2O=+ʱW[2sc`^ངuϭ(++++++w;s2k0ý'=+xy3 = zxo8#gUqpQw}^rsf~^k|-%|^[; s6g&Հ|?#c/<X6RT*UOJ|nUTe/"""""""""}k}N$A.?$fMK.>'su]______D:o-Lx~20u>Y0u&Bn~RxPWbWD<' vUW~cpאַtW~W~W~W~W~W~WNgN>^x-e`87{X >Ϋa \378ϛםYěқ#p_ x^ع3vmi;qfvovf6o&[g]gyqfo3פRT*UOJ|nUTe/"""""""""rp_s8y,\ M<>Gכ>\44; >\u-4 +++++H'󭶹~O :o& 'h{ĸ{t| yoן}^C]c!7?O<WWj+++++++'׋3'3 ~``>?8g`f`nwfjowgrfNo^qs{̌p޼|Mz6G`7mYw,= UЙ9^Cxh>47cr0=pJRT=*]=UׯSHI߁\5B}FAq*׮<yu\t.T*wV_RT#^?"%Ŧۇk66ZmGBn:u|"t2G(sOsW~W~W~W~W~N˷9}; 9L]'}ӔxNcժ+WZ_a/x?_pNnU9I0x`]s>ʯʯʯʯʯʯʯH/ op}\L{xLmpUΌ%ΰ?ț띙ܛAp6pBSu|! )33z33x3yՙ鼩3^;RT*'V]Wkw*vU);ppPpp܇׬xfuz|рqg),b=#< }ֽOghs}Tq&GAn^؟kT*J;NV_~Tҟ?' CnuYMƵ6>sMH>\4? _υR?_______D:oLx~2492so]96?^ɏv g41[n~:nPWj+++++++'p헀KK2? -|< Txs3Ws5ΰΌ͢y;9P5?ˁO?pǿ T|>yg8CgfggfxJRzb}U{~wү_o*[xMf@0x7W絚iyЛIy58U:Qa( ysr ."}Ug?8?dPT*U߿:*[QFJDJ5p/>\S5-M˵ڶ>9%4OxN½οg|E'Nt~.ʯʯʯʯʯ" 48sd`<וףs|"+?rs5v<]珽?VUv#ו?ʯʯʯʯʯʯI~5^<" )LWGo8gbor|.qf\o؟ss{] 8pY=b|9B<%ǹ=3y<3zù@{3|!giQT*'V]Wkw*vU)i;p&HT=NyΜQ'ϞpP;ȼv׹wg /YI-< t_>uAG#T*UWTe?*ՈWϟHI׉klrpo&t]mgG<'u)#yx~34x|d?[<'dP~.ʯʯʯʯʯ" ۵`0Bp-ԕpss\TW~Q5J0k`V+>5k' uϭ(++++++wjf% Vlܧ}`۝ἚGٛ{蛝ԛ  R}׆;kFuUqFT=,͏pVsn rso2 0vN}rZОPT*U߿:*[QFJDJ:: >!4 jr\IsM<ۇף&K)h:]?J|Q~W~W~W~W~W~ğBm][m+7SW5b4_.ejXLn[Dӛot3}_uϭ(++++++w_{UtpN[3Es pVZgfog؟kTc>1M8W/Qaga0p50_ 9= }ySk+L q.JRT=*]=UׯSHI߁),>T=8g o &piaz|q^f-!?p>RK0j0ys^*JUWTe?*ՈWϟHI}3|rI_ZmBn9 g5%rp5n5%B'-t~.ʯʯʯʯʯ" 5U0+8pʘԕߞw܃>7(q?/^W=bprs߮3O{%Bn9:aM+n5G______M < ËP5gFxWk,0?9)J൅ L8kxf|o8O08y( G$7puD# 7:ke837837:37yM/9YI7ߛL*JRzb}U{~wү_o*['?3T=%\c۟RxD_uׂΧpSC=ΙBo@'?^;z<=8:*JUWTe?*ՈWϟHI#߁^3k<'οk-}$B/ϑ< }xts$k@n4 ~(+++++tp &s{Ǧs sluZT| 0 ^}ֶa]+n5G______ߙ`Eŀs{{`0 8, lY70B՜"18;h;ଡ=`B#;gm =oq #} wu=w\g\RTXu}_ݪ۩V_ I`x g`_uʯʯʯʯʯʯʯ}Lppv &;3-tz9ʙO`x7`w7 Á  =VA۝pv,#zęѽ-85ՙ_.hyN߀JRT=*]=UׯSHI \LJfׁs{΂~Y8󱹶JRTJꔪl~G*)&k?O|dY(M?,>Gr:%At~J }$K@P+++++H'𭶙O {OL]'}AxNPW=c}{ހyՕ{sSn)9 qq}׶PWj+++++++'珿3'wF{sun 9EGG<Gçp2| P՟s؟s^_Z\g7״/kùʓ g̨\ )=}yΙq>:ߙAJRzb}U{~wү_o*[8 ;lgLH̹ތLnC^ dSz|n^o 8= }?qwhkVW_RTJꔪl~G*)ihq<'+4k}.$C_ϑ }~$\t~rp/MB/ʯʯʯʯʯ/"ӷڦ &s{& aoSW~ߴ -pI]yOV'WKp pO]=?n<':#ԕ?ʯʯʯʯʯʯI~Ι9ybpp 8? } p.83k8ߘx]ed`Qׂx}9g?`-vǀotG8هU*JUUݭJ~l~EJ:!n 'Py>?BnYgmz|?YkBn ^>q=[΃ɐg#RTYuJUJRx3Cn^'οk-}V$ Cϑ< }Ή$\ts$k@nU9t~.ʯʯʯʯʯ"҉|m`r?9ϛi+oµL9gfhKSWbo0[ޅsMz?W<'8 ʟ[MQ~W~W~W~W~W~W~$w8༗1q=\r ܋_vy^!? 8fzp:{_rް?7YIKyy>ùss:?)]7s~>#JRT=*]=UׯSHI'^?Wԛ1?7{<'pW=q<+l 9c=_7\{HrsST*U߿:*[QFJDJ}L@ni9ɔt5]m>I<'Y*@n9 ;5󗖃>sUu\(E_____EV`r?9t0x3i0u/xNr(O{M<' pנ\ŵFy͠tW~W~W~W~W~W~WNs90}y?uAOOx#q28u8>眙)^sl&ss{s_a&x _}upp> w"2cˀs~n%)JRzb}U{~wү_o*[n'k,cSy/Γ|u^_u|Skir 8gڌLn Yߛ!x*JR*SU׿jīO$i^}t1k2)Y> ss &h:,9>+sEu\(E_____EwVی~N'3s7SSW~Gr8}z]FC_{u*J>*7,dW}s[B]s>ʯʯʯʯʯʯʯ|Ss`j,·Zcaq{8q S>V<;óO^љu{Ûpf5tqotT=gVgz^<?07*T*J5[~z;U*t]83[L㫎spϹ:3W_ xe!g{{cqOn^c&vrsu'}֋ٟT*J;NV_~Tҟ?t6WۇO}s$Bn9tts$'Cn#9t)s$Bn9ɼt~.ʯʯʯʯʯ"҉G}m`r?\3]0wxdss`ghbO}j9GO\SWj+++++++'o3sO>cQ3 U98Y4U}v+?-k fd^眽>7Uut3t /E9BU9/CRT*UOJ|nUTe/RL gL㫎 \x_΅ ֥U9GX.$r _C]πpFSZ?ߣ@RTJꔪl~G*)k$>sסHf>SsH>\wt43}<'}UυR?_______D:o &sX;+s7}x.@:ù:?@ {>\tp8T*wV_RT#^?"%}Zm܏)}h:9 4ɕxNµ4M_:>G'MB/ʯʯʯʯʯ/"x÷&sHpf+opg.\ \kpϵ}fzՀs^ pfpϵżẬyٽyڙἦ9ܙa; :) o<GRTXu}_ݪ۩V_`:77o<~8MqMFpF &| }s7~p!ϡlmRTYuJUJRx4A8 kj/4n(Y>M3>G09;M#ڪ>\7 ~(+++++tj?cvf`?w$;@?\sүn3sއ&^?s<'o uϭ(++++++w-j=8:7;7U}pL{3kz>zu;Jp9, g >%b59 Μe}36¹=/g{9BVùC99{yogx.#8{a/;p3]RT*UOJ|nUTe/RҩwLqFʘT=8pތLn)hL_u|pg& w! }v/p:_N>i pmJRzg)U*ߏJ5U'RҜwԔ꓋Ou2xNI\ܷQ[GH6NlMB/ʯʯʯʯʯ/"!~N's7M)Mvwܿ~|Ru?.J:sD<'`{{PW~ރ=r$35pS]s>ʯʯʯʯʯʯʯҵxh0| 8aj^:[P5}87f]Γ!7-379>U_r\Ϝ79ÙBW{?7)YF3p{ |JRT=*]=UׯSHI՛z| &?Wg!rs\=ΙB@n'suѐgy8@RTJꔪl~G*)ej>cߥ&SAn9h:ŐxN?o~7 pﶦsW~W~W~W~W~NǷ&sʙ3= ?_4a;+9W2F0Z󅾅/{%@n9 i@]s>ʯʯʯʯʯʯʯеږNgz3g_V\g7g}p^ͿYћ 3~0DN>3A0 07:37W9\37|y&jg&:քӁΆ8/>A_[JRzb}U{~wү_o*[ZQoUǯf`/؀`rs/Ugpf!Hr \ϓۇ׀%\ 9.\t=T*wV_RT#^?"%]Zm\xN4>!ϔ1kKt~κ>\'s4ɯ}Lnd"h:]?J|Q~W~W~W~W~W~kնp0Ɍ͔ԕmvя @] 7=kԕp$`2ZV}_______;k ,άͷ^ O8787- q4\X?a186%k8y9Kάřɽ͙yҙ8s#p?ky K`+,}fJRT=*]=UׯSHIOv-w7Sy?ǽ)6u0,U9G@lj?>A+>\èle{|_ r>PT*U߿:*[QFJDJ sR<'zsxN4% uPܓ36KP+++++H'OL]yO9 ^C]>>ԕ`rsoM{󿱮tW~W~W~W~W~W~WN˵VUg8߸jg՛YΙY>/ >MRTXu}_ݪ۩V_s hoT㫎8o~!}`uz|IaSuA IB}88- =#}"JR*SU׿jīOS\(rIS?j{rptEkl ٽ~+|_%D______DƳ6o0M`_90^ ?"| PWYcdo?{<'Ƈ&/V}_______;=Ngscxs3əyיELL9.0p&7L ;”+i3-pM_·Qkv3ޛ3ٛ 5+ۛKӜiygl]pk/Gslk g8T*JUUݭJ~l~EJz:m f`r,~0pKv!8g=}7Aŀrl DPT*U߿:*[QFJDJ:۵ڸ/Rn⚢ܧ񿭧}LWϗ >sj:9_>l:]?J|Q~W~W~W~W~W~640z3O0u9M}9 +?GrI> {Xn9W{A]s>ʯʯʯʯʯʯʯ圙pmuA? q},8lcP5j^L{/pfwp4|+}ak<ѼG43@຦!p.qPVkRT*UOJ|nUTe/Rҥwd`8f`_u|o|0gyf+ևW g"|}~k`r\` k,; anWT*U߿:*[QFJDJ>_xN=?Y|}Lno9ɻtcUr,INSHƅ>DMB/ʯʯʯʯʯ/"z!~Nc`fc`?S 7:0& u?>J~sɛPWyb ?o~W.k +n5G______Vg&_,opf)oW˙E}6<v?Pu|:Áy΃Q^:ؙ/0}kL ,q# >A0-?5T\5T*JUUݭJ~l~EJ⌗coUG3o &?L9 _u{N]*[s7!{kx!ϡ l 5RTYuMUJRxu7@n۹u8_1}']9f| #[\ts$rp}Ԅt~.ʯʯʯʯʯ"҉}mh0Wɼʹԕ7 r޴`XJ알Lnɏ;u_0Jsl uϭ(++++++wkuIgVygxMag눆zs33{Y:Sny2T \oS5pؿjL M ,>7W:K9ùIa , |*J, JRT=*]=UׯSHI\!¬T=qY@Ox?:7Kpz|a ൩} ?g==>>gx9?\{pmm{|=r 9N*JUWTe?*ՈWϟHIVӐxN4H|]KW\a4ݸ;'!,!Xp'<,%@A !TѳOճߢ9\ek{9S=1 BdLh;6!8铋mqOn VOJ(+++++=&uuD7sT~6^vT~5^0'!4k(7k~fvW~W~W~W~W~W~W:p%ٙE>gVg}؟x|jg8ogRfΫ8`O`CjEy;g;373737pGޜ sNs>]>9UsVޮJRTñ*9UߩV_ɤ\Mwy3u0y3v0.0lUW΄ç{|އ>Gp_ Ƿ%\gT*?篺TeJ5*)RP}ތ$OC߭']gx}2x 9-^?VAn5 Vk;S _______Dxwz8'ut>?9Y9O&ϓxM3, {oyrI>뻚?c $ggp 4?ʯʯʯʯʯʯ_'?8Áscqy,_gqΌ okH>뚟8Y˙a]k8[櫮3F0Yp6h>_p8»0/ , {`Y8 WT*j8VSWep>*};U*tMLLU9Gh`nf`r UW~ \¹@w!n-p>/8'p Y JRgUl~Q^_"%]:=\ۇgsϽxMr;UN)񚄳uS/wMnO5ɳvJ(+++++qpOx}u>\_4Q0M5Mև>^7+yrs?_{%ܫ+7k{8Tj+++++++N(p>7G:37c-pMgC_89?k;M5k:y>@UyAUyx>s<% b*pg=q>g|_8s?8UyARTXM}^?ԪTe/R!K#4 &Jܷkiί:!?zr BnCmz!G.k¹P?gOq٠RTҟRҏ?*O]g3y&>Mm?9r\I΃o#ę>.^ m$N>wk[M/zQ~W~W~W~W~W~㿾`r_ TUc8}sօ{%{]} m J΁\u8Tj*nG______N]5ʯʯʯʯʯʯʯu:=ᜟ> g?c @qP5_tfgxhq?/b=\>Onx_qp2ϳ'!RT*p>|jUwU)r-)̙ތLnICU_u|&ro\,ax8跐{묎>K 6ɝ3z& }̝\}$Cz_(ʯʯʯʯʯ"R-3U0+ɘ\ 4Ǿ ׺uzVǹTS9u}[4미)7$vW~W~W~W~W~W~W:wu`w`7q.͇_t<5s;~׬]Sgzkp'l7p3p+s{,8F>\K3|,s!@UE3T*JUCJNUJ?"%];=cs7>9ǛQ}մ'UW x| ;=g'q:!8PMARTY?ե*[=TWןHINIxM=m$wMnɣ]v%u/qCLj5}~O^隶7PE_____E|g`r_ʛ1i*ұor_)^#ל4#1^~z!i*Wr:l8)4?ʯʯʯʯʯʯ_' 6:TޅcGlP5wΙwfIg:X]3v4ΰl_ 8@x VKkaiL$rGaA {ARTXM}^?ԪTe/Ru3n0UvUCp]Jnf]s0 pNn|r oBn; opN"6 ŠRTҟRҏ?*O]kBrI΅}YK%ώkuV>SŬ VR/ʯʯʯʯʯ/"u<;=:}.^̟ &\뒛qo,{%_Cn~·ʿhpnRn%5 MܛvW~W~W~W~W~W~W:wsI8gcx 6އ_oS5蹮ۙt g5S:so]>Ot U ) k ;g8|8h`2~ *E,Lx||l"\/}8h)PT*j8VSWep>*};U*u&#s7Su~5o5V0'@0'p-Mn-i=xrlpxS 8orpЉ9pJRJKUJ?zTү?xMr,nOxM½ϵCBn&x%܋- J(+++++ԙsc>-&BnQ5Z3xT~rsm6CSH9?(=ʟ[mQ~W~W~W~W~W~W~寓syvs{ Ӱ Ux-O}]333333ǘkftɮ{s׌ p)l\Gܞ}8gC.g]3c5:uA}8h5s9RT*p>|jUwU)V8 Q0UW7s7cqoaG:bp\_۟ބçۇ v2|E{|{r=kl+JRgUl~Q^_"%:=@n5BmrIOd!}~(g}8;Nh;S _______Dwz&uU>Y9Μ!/&AnU5 p_-x}2^0y!4+9rsN0/ Mϭ(++++++ɿpp.?|)zl >벌3Us~8gVgαw, ]33t͒nj-pnw?a !z$[&)pgUUoRT*p>|jUwU)L& 2o z3a0k`r sg{An-?F & fwoo: xT*J՟UW]UGx~#ϑdoh;?xM=?O b&zU3F̚|5mo}+++++HNlNO {v\5!9?9Bp3m7ά9?Ù6ۜ+}.ur`S`|<`-}&3`a:X؟sT*JUCJNUJ?"%;=,ܟf`_֛`y8ί:}ĸjp?>H}=̶ǹ>`osRRTY?ե*[=TWןHItߔxMs>ki;L>J>\G*=}8îi;S _______Dxwz &ud>+;*&\xM™9cFT~ x}<\o/h*Wrk<lMϭ(++++++ɿr;lOןOy5+]37vx<5;󗮙ę9?Y7UiἝa*u!p3v83N>.bppΆqpvy>tL f)g&RT*p>|jUwU)z?9U>7/1onί: p-p ?\c19>b]V=po>mP_RTY?ե*[=TWןHI[Nf.xs56^ m>G 3J&᚜{y0^mo}+++++HNϜNOLS'}?y&Sj*aW6.8ޅ{%u/{@Mϭ(++++++Ϲ=wgvapnC6<U_p̣]Y:u͊|5?qRv摮νaxX9H=Nw: fqgƄ>k؟\RT*j8VSWep>*};U*tL̟"_̈́p$_4UW |r 'A>Ggp| {]{k{8kJRJKUJ?zTү?uu&\v!5ɩvY}p>\A{=^vJ(+++++,Lf ~of 3žɞj$<$,?_rI_Mϭ(++++++ɿpn™a'x8Q8Ffcg^=c{p-XeYzkso]33#ú|']΅<At}փ[`_x ƃu`8xr3 |n}ĽϸS>T*JUCJNUJ?"%qY73Su~qz?W3mδ:Jp", Bn``r 7#HrBn2PT*UV_uV_jU'RlpGnWŽWs:^ m0GgxM2 3>kM/zQ~W~W~W~W~W~ܞd`x|`?Al'$dbϽ؇{1g+^9ljfQ~W~W~W~W~W~W~Kló5 +,9B oZ,LWfg)ykt敮|sx os3;`i6{+ 8?b8gs䁏5g:o s-RT*p>|jUwU)Y xb0UWٛEጚՂ7gׄ\UW·}FL# r͏:O{{= Ƿޟ}`3T*J՟UW]UGx~5;@n55v~u3#^\m>GɒۇpqRߎQµO}$7PE_____E|g`r_3{0\?e'$3!lMe_@n~~h*=;rWvV}________uz<$Ta<=Z s# |&arcϥ)} `~z6\T*JUCJNUJ?"%];=s7SSu~[2?{gL- GBUa \ z +: 8jsroW@n4GRT?ե*[=TWןHIǺN!ۇXTvz>k+(YrIcH>>\gŵ[mo}+++++H\3]0G p]47|#=FT~zrs?hk*ıW##^ -4?ʯʯʯʯʯʯ_'n1p6˿`v8g<{g vJpb|5^׬ /]6vjμ5+<w93p_>)9ϊΌ ]W8{磮^gp6Σpp8>]q"󫎳?Y8pV2pT*J5ϫ28Zl~EJwzpsio7‚pT_u|q-,G@n{/LLn?y3Q0xo«Tx8uPT*UV_uV_jU'Rٮs&95^m-FV9^5m$xM2󗦎3q&qvJ(+++++,Ld`f`?w=ߍ$x5B_An~u5TcxM{BSs>ʯʯʯʯʯʯʯu:=!yQؙi3#zΊpW,HL?m׬̛]2]Hx 79l t guGìDk{s)ܛ8cg(sARTXM}^?ԪTe/RR>\}ί:7y>8(:/qѐ`rBn8#6j0zs }>@RTY?ե*[=TWןHIN^ۇLu;=BnO5svi}p>kM~m\svJ(+++++,Lx}H0\?M5M#7?p!4mF&7?p]4+,KkMo vvW~W~W~W~W~W~W::=z<#{3]C8pgFs8e>뚟9~׬$@#FP?]Ù6OMzvW(\ߪOn%\±YLB.b,*JR j V~*[p}NUǯf`f`rO.UW_Պp<皖AqfC_!1l7B J1>\*J*.U*R JDJZuzv>\q(nv8S(>b}$kAQ**^|mo}+++++H𝞅}O !of SǾɮxM9BTbk~&)?$#T5ߩvW~W~W~W~W~W~W:w43 zs3{,s3xs3յ Mpf+Xx\px`1a[`އgTlnЛ۝[އc&gF:pu'M Ù3>WT*J5ϫ28Zl~EJ m gLU/f`f`r07ps0 ON09;πg!pp=գRTҟRҏ?*O]O&9^ y#^< ?>e}ֺvQm$MAz_(ʯʯʯʯʯ"R˾ӳ\0W<4^0pISϊ}F ho_XS 7?M">k*nG______N\{uA#{s3]o8̤p> 1Olg&fg6'Yϙ`v`Wgqv%RT*p>|jUwU))/Y0HŃ`\o~yPusp/8|Oý \zs}RTҟRҏ?*O]%r6^myr|I0\/gxMRO1m$\gxMROJ(+++++L딳eFoWSo xM>4+~g'7T{ǽr<^4?ʯʯʯʯʯʯ_'M37378;377;ÙU/sfouqk8gN8?= y3µ077837937Up߲,p1~$MR5_3\RT*j8VSWep>*};U*)S7Su~񛽙&{3o0(Uu~෰pOna`rs>Ҝy›9y_7 u>zwO1T*?篺TeJ5*)Ir<I~KH:=rI~H+7PE_____EY#)`̓p=IS}:$-u|}Ms!7jTV}_______L oǛʛުyA<\o.vfowf'X .Wř00&lÑPu4Y7?`oF#8cS89x3yAOpl|ւ38c8HRTXM}^?ԪTe/Rmod` T_uofNo_ڛ=UW_ |r{ rp]7 {|rlc.JRgUl~Q^_"%]:={+c\ܷCn5ɔvm$+ԙ#s* mo}+++++HNN's7Tk/{Ͻ4+ܞGt:8^ M5^NTj+++++++ND grtp g#̤\\/S43!9 gov` `vsj9K#y}ľSp 2 7[8GhCʙNPRTXM}^?ԪTe/REod`8g`ί:~7B voU$:̰An+``rWoB0z 0o_t?^`JRJKUJ?zTү??!vQm$wMn(v~,>{c뚸Zn5tvJ(+++++,Ld`f`?[$?p/.JF &7\ 47k=Y NV}_______~)/Syù1<9ΰg,pܣ3daZSpowA8 x Q-#o839idox'g&?\[׉qgq5\ ʯʯʯʯʯʯʯu?:=?fg8ovgěYΓYЛۜ쳊7 8s",ý9hi~\ϓ{s3ϓzS՟}8GPgb~75N\/e}JRc5yUsP_SҏHIs=T_uV ao'&VUu~_Z΄v`rss7s7=׆,G34GRT?ե*[=TWןHINUxM5Emyr&]h;26 ^?HƂ:üvJ(+++++,Lx}2S0\_4k0M^u[^I&7a#LOKމxM'p_6ej*nG______N~BYƛܞ8ÿpۙ彩TpNL8:QYHN? "ӛy;83737:37?U9/vt8o.9/Ͻ]V >Ǫs^T*J5ϫ28Zl~EJz p}LLU9ke`nN~wt2,U %9?h?> uvJRgUl~Q^_"%qMQMAg}f$cBpQn5)v~r,IM/zQ~W~W~W~W~W~-Y)d`f`?po  v_{%x}2~0k`ʿJpU#vW~W~W~W~W~W~W:qyęz3k{87S788gw3dV?;Za983d?\Ψc>^y'g8rgf^g:g&nϙϱv?g:=\CJRTñ*9UߩV_s*on{3z0z3q0 AUǫZ( &ތLn;+k'CyrOCn)hzT*J՟UW]UGx~Wy?cAn}9$^m:(R&Y BW~W~W~W~W~:8g`r_Oۛi*?$`h*:N0y!4N k_ZTj+++++++7/97:7Gl)otʯʯʯʯʯʯʯuuz6y6s.3pGܡ3W\kϿ spTz gY? LWgf1g(s|8<\ʯʯʯʯʯʯʯu:=M;l T֛Oٛםʛ7񵝹aTZnCUs8hao8Oj~B<3{ùC#N"g\` 7TqRT*j8VSWep>*};U*t[>#L͛97Ot: p"pf۟kZF &8} }Nf`o~wAw;!.G*J*.U*R JDJzuz$Tm_u0ߛrIfo#9rIgV>j%i&9R/ʯʯʯʯʯ/"u;=+un>Z*@C} 7hz#Uygù@`duV\ pSSs>ʯʯʯʯʯʯʯu|=?qfWo>p| 3 ;78㳟3\<g^z~ wCU]o675 pfOay33D n/O%phљπ} UU*JUCJNUJ?"%]N& o y3n0Oz3W09`XUUg};(| r \ۇWJRJKUJ?zTү?s:~NvsH)^ο{tsc& οJdEsT&R/ʯʯʯʯʯ/"u;=ۓ:})^,̳,LS}c 7B BS/уn>k`ʿRpnOne5 /Uwj*nG______Nay/34693ę0{{3>'p΃p1 l;|]qNwy;&3y_oig̈cGo& {rs OJRJKUJ?zTү?y2^m(F8dm*Fr'9>^\ m-FE&YBW~W~W~W~W~:ق}O gƾxM9?T~κ\NvTuSg$⬰4?ʯʯʯʯʯʯ_'o Ǚ=᜖m·Ι✽7쿫7l;gp]~~HδT9ý_vfeowfmo8_g6k 󩼹 w3p;|tݛk T*J5ϫ28Zl~EJ% L߼#W7ku8 ί:> +A@q~؇߁=YWAn~u5}RTҟRҏ?*O$~X}ƉK'c@Yi!dh;?y<^ ['!ϩ{R/ʯʯʯʯʯ/"u;=:)^pLLSfs 7!4s8'7^5`S|~og?a&܏k*nG______N7\|poXxՙ- g8VU|78ށM p&pqx3=po5>p}f`xOm5V⿝q^8M #LJRTñ*9UߩV_;{s7Su~?y3Y0{BxXN/΀\g5e0%>^y9˛W 8g+=}NxT*J՟UW]UGx~<ܓNh;Om$A>C~!}}жR}r5PE_____E}g`r_'s7T~SߝS#ÚT~c!ܷU^{%\ۓƃ͡vW~W~W~W~W~W~W:r΁3y3 sp& #4pgp.׃pk}p5qz=~<}p <*J*.U*R JDJ% pEn5o:=KBnY3\ۇ3~\Ậ}M/zQ~W~W~W~W~W~n1d`f`+m w9CfkAS 7# {%=Zn~8k*nG______N]_ yA po9؛ pp)9 {Pu~Ucs> W38ߓL08Vr .MFPT*UV_uV_jU'R[5}7S&BnYQ{]y8^m>F91^mo}+++++HSi`r_w#i*?O0 Mo $ogM\S{sqash*nG______Ny3} p  p py܋jgxN՜ӝzC_px3q p$}}ԯ`!t$pӡYFvYםaG7 =̤ިT*J5ϫ28Zl~EJ⬕ɂi8p/v_sycy-gsNn;``rͨ/n0e}rsнۇ9_>PT*UV_uV_jU'R$sMNng,h;ӳ'^ m!#%h;6xMrR/ʯʯʯʯʯ/"uwz&uʵ <T~u>{4 rI]T~SͿt&9wj*nG______N~<<^:go8J ~2g78 < v9gFf?g ??3A3[zv*q3[y<g+-'=pe7.s)qJRTñ*9UߩV_Ʉn'@RTY?ե*[=TWןHIǿ ϫõm?1F5Y'^mZ7!#^HxM R/ʯʯʯʯʯ/"upN's73T~Nm{aKh*ѱW o$\#r.SSs>ʯʯʯʯʯʯʯus3Xrpp6HT8g$;c|3|3]pF gFhgރǀm8/z#="||OJ؟9g8hjXo3p:~/߂>RT*p>|jUwU)߱,,LUf`8NuwƩ:p6 !?gnOL㜳&oo Xo:_>.8'JRJKUJ?zTү?&M}dLh;ӳ9U&YRc`&yqTsB&9 BW~W~W~W~W~:^ł}r|fT~΍]0:bM??J\0|kT~ε:هBSs>ʯʯʯʯʯʯʯuOfN΁ـs{Va ~s8gsPUӝt̤p1kv%pѝpΰ? s{ɾjola5؟M̼|̏}1p33{|=RT*p>|jUwU)7p2g0/{h0UW7۟W [Ǩ:8:+!0F0w<~75Q-AS}s ?@RTY?ե*[=TWןHIG[rt[{\ovecdQm&Yv3|rp]ӫvm$ph;S _______Dwzf &uߎM̟~RM M'}k5Tcc}չjWZO{%̐/alʟ[mQ~W~W~W~W~W~W~寓7sW|Y^Y17CU֙9ϙ׌^u~Gq3z,7Vs&- \78CIRTXM}^?ԪTe/R.~3K0UW,7u ;ӡ gAna`r&gA cko&~OTOJRJKUJ?zTү?H7Sm?$^94^m2FoKOCϊ}$@z_(ʯʯʯʯʯ"R3ӳD0S#Y &+*7slfݠ\ Zq4+9rwڡV}_______9͜\ g8sσ<< I/c]3dõO837g8\Qs3{SuO~߯q5߻];q_"p-g@ 8|̒pAT*Jj V~*['\7Su~G7p07sˡ8'9?=o&s q >eBn>T*J՟UW]UGx~}~Mnɧv m$?>O_o#,>k@w}։$[Bz_(ʯʯʯʯʯ"R|@r_Gl`͜47|ֶO M?kw|}Mk]Mϭ(++++++ɿP9/ </wp;7[Fg8o>h<>7W937>837E8g8\w<_ <\=G.{#OARTXM}^?ԪTe/RCoscvί:93\Gy>۟|=f/UW_8|}Kn 㜡=E0}o(aSqOW!ϑYF}*J*.U*R JDJ臘>\l}$?o#yr9^m?'Fr"9$^mo}+++++H/NRN'g.wOGCn5ɮ߂m Mo&7q38ކ8JN~*wV}_______ܘai8sxVǠjwA{+,)}3s3S{s3y?,UQsH9I"ل9  (" AHE@D "*" ;w[Woy.w{U{~tu;=vRh#s0 aX*́^m|9R8;eOyڶo[#r!MrxY7m۷@W99Ԯ3órsf KsP ù=^fYeMר~Dz&_}>z^SgݲOcMw >-4> H@m> ^3ΊǢLqB__o~7o~Ki0aj?lxJ9t 9mg{Cm ʿu೷jZi|xݻ5>7o~7o~eo]Cs '93/m SX5+RX#Qcmu" 9fj?9t)p{/wwxy6˲,kzV߿Fe[}?5' >~Q\ZiB__o~7o~Ki0y9~Ny*9pu=83yy^Px^zWz^STOc_h[*mo~7o~o {828ggsn/⌠ˆ#jxOa6 /Ia`+|]8 +|^9_p cOa9=87<^ Mq^,˲UMY~;K}✟us?fb>Om|q6j9真N%h۾mgGs.Pm/@ʡv9\ spd {s8_30?,Cm^]w~/7o~7Qܖȡsv́|zV6>(4 m1uҫmj*?q_ָ߮7o~7?J~t5p vyܘWQs0 )<4 /JHa~; aLާ#x-y輏: 9ByM|N s8#=3SG{׳,˲'bu}US=V_>RxgnOaڶ]9mr<-h۾mI'|jϲ9Ԯ"9I +pR ~G_l%?|eY5=_˚|7pٵ5?p0Pۇqܞ>)QG0J`7o~FqLx^S v'^gU~β(sk'^Cm~> ~>*?\{_[c~7o~7(.>GXnQ=btbRw~> aଘa8/ gJ_= a9 ,^+u81u : x^(8{_y9s^ >syu,˲'bu}US=V_>Rnqnb&y4ж}:lg8Cm8ڶo[ xM~Y:9yjygj4s j?.^GT!s< ˲,kzV߿Fe[}?5'`)XƝ%wP}e>0;t/Ɲ3Am>/¸w{/7o~7%4~N(7ȁ_?YuSOϦ_a?Yo< G*WPO<]寭q1o~7o~|׍\3O C\9<-aLm>_|]1 Qs0pGI /^R.783~ɡm RX=KSsR8 8Wh۾my?"̙C:ɡ) r5<ܞ39v=kj\eY>,kO6}|?aR~FXsB٧uw~/7o~7Q) &C7eƖ9pϺ9tҷ{j²ҫ1o<'?Am> ^7?<.]寭q1o~7o~//37878o>_sl8_\ӫ>x|s)vvNHW )p]SkKaW  Κ<pO=6/β1=eM-|O#ak_ϲ,˲UMY~;K}: X>RX1La=8#sym =g眥r]׹Rh;KC3S,˲Y}o}}Xϟԧ? BmSwƲO0'Ѹ jUi YIAm>Ca7o~FqsL<)fll*4xU?^i<gj-63Cq-t7o~7oQYfnisp_xa/x^Wnx^ íðy  R0pV}3g<2 |myMR<%+ ޓ9mz 8sy~}/pu|Vf8z'๯m٭ yV6,˲,X]}_|ϟժo'Y5,uΙṋmrs>muW`jOHajp~΂9?΋]?x<աpXeYӳ5*Wߟ?OgZ Ɲ`G>øA })7x ҸR~FP+eWa7o~Fg$mC"mC\ uθo]󰞜Cm~^/L?CWyaPO65>7o~7o~o8݁|89ׅNx!޴Kax= g[[p0l¥?Ri k9)l?&^W|8 s9p^- ^cז^a1zXeY?U߯tg[}O9}.L'R|uj|Կ˲,kzV߿Fe[}?5'ן>duws >}5>9Rwk }8Ɲ }~1o~7/ivbj?,7vW)CW97 {8%ҫmj9yXy|Ym~<8u7o~7oQ|`Γ}Ospͭxv{8gbSvNa9;9GJ͹L?}Cƹ@wz\q͜y>|YIM͙Nέ:aoZeY֬\]}_|ϟժo']=3SX.9y8Kgj/u#m۷| g?֏Ma#Ew~>׺3̴;ok,>\w~/7o~7Qr^ZoyRcʿljskUϔ^Cm~ ָ7o~7?J3' اgsm 7 g2 [p0<'>mh y8se>ρا2yA|~|8[x>s \\`XeY?U߯tg[}O[~xfڶo[繅r,s8O m۷ '߄Ü9Ԯ‚9,#³rOB:Gjpn9W:,˚QYVeMI}Z *}x-V0_&|jXi pySxٿƝ'Am}9]^o~7o~I+&j?N [k6ϡO8Ϳ^٧7BWyo 9?ߘ;G*?k={xҳ]Uw7o~7Gg/),Y)lù)lRGhş9,`1༗́ٶ3Yxa yύ̓÷RH9\iߜj9 r8!⬡es&Ld{8Wg!5`YeYO{V}~ӝo}>qV9<?i۾mV8GFϹ'g2 m۷]繋s]繎usE<BkxwC: 9e}4-|?eY5=_˚|>rw>}ø?FGkƝ5>+4qB__o~7o~Ki0aj?;pc U~ojs !猿gy^y]9?>竫ۖ/@m>pt7o~7oQxJz>|9>}C[X΍Y1R೿}amy iӶ>7 xMasMo7oS)88G)pnƫsxmeYe=﫚ZMwVĹ1,/ʡmu #)Cm޿ƙɜKch۾vs/}8m>Cm노x]Qp7<˲,kzV߿Fe[}?5'i7pLٮƝ@mS>`S~F))XƝq:;Wb~7o~_(l-sSX/Z6xGm> }d}U~>#~Cm~>_o^ UOsVָ߮7o~7?J9^2<ܞgx9~rl g/56on1x+g,|&y;GlIQY78 ñ)1)8rw3΃݀<?]έ9 Ά7qoYeYO{V}~ӝo}>]^nlgڬCm뗤N/H@ڞ?ն}Nu)\CX: SX%>*?BW+4/^{ӺXx]m~x9tҷIO95>7o~7o~󏒟q8ϗRX!Z(R^ >[R~ [Ez2p^uPޏMsby7x<9rq䜥RX+.|?\{gqv/$,˲,X]}_|ϟժoԧ ^rY ж})<;y57Hϙ\mV?ϧ|N:g#|Zm~Z<8Z]\} |eY5=_˚|7v>/);@m>caQ^2PgOciwkԸjVi\~7o~4`‹sL#tU kUK۩Ϳf٧?K۠|F9f3)<]s96e!>]寭q1o~7o~2)8Os.y5y pa}O1 ISy2 /O4qp. n?֟ʘ 8c߾o_]sslcYeYO{V}~ӝo}>]\n)Cm?OaHa΄ρ 8mq{8{?sN:pOm^/9B\_(pԮ<(}pz,˲gkTVcY?RV*76>|g#;Q>a)?gOٿh jy@m>w{/7o~7%i0aj?(7vʁf<]_mڏ|S]5Eȡ6?>#*&oSPyeQk_[c~7o~7(9)9pnϿmϱpn~)ƒׇsxxs{>|9 #Y;Xpn9;:91˲,z"VWW55g~/Go*9³sh۾mϡMKO8Ӹm-t՟3jˡv),CmSsOy./PΙBm;zs޵eY5=_˚|Ŀy Om}&d\~Fasn٧q,;?ѵ}Vi,οlCm>+`7o~Fqg{1^kuU]|cUݲOCU~4g͓CW7-}>S\uà5>7o~7o~o?p97I9|9p oy7'C: Lax9Y{0/0#i4 csLau\s^ϑ6)p΁÷۟q688/縸,˲UMY~;K} X+SX'/Im^9=S{<@m/oBw]U P6΁ǑkI se|pF`YeMר~Dz&_}>^nl }v(48{y0L8jQiVe0?,Bm_}w{/7o~7%4[S>sx/*?|jYag‡p>pr{|aA88G}C;yR\33SX8W=q΂9pK?<8[|猦=n|eYDjjj7YV_o9\ն}:g9),CmR ޏsSm۷\Hgj#q !]a>7sݲ,˚QYVeMI}|7Bm]>snPGeƷ`)QϬVq>w}7w{/7o~7%4VS^^6]_m+}^]?j< y6?ωqҳUw7o~7Gz93xmsx9 9R ˁx K!= *-=G ςr8>gs^M\S}^Hyk;W\8J(>M@|ٟ؟:\ {,˲'bu}US=V_>R.-7xOk|+gm_%}xԮsf2sD <Ù|ߐԮCmy˲,kzV߿Fe[}?5'i7pPgϲOU0g  }..4Nqky > }k¸_W^ƵPۇqB__o~7o~K=i0aj?׍ >͸f&ޛVO?UJFΡ6?'5mJa}|ָ7o~7?JC Γρ|WSX1Y(s7x)ߜu>ϝ3vL!ΖY8fHk_S⬛r8'M#)?Z;zv|!{|vs8^reYDjjj7YV_$S19wLaj3F3xm;n8jKPs Pۇ́Ẃou{ [,˲gkTVcY?R/7v>+}¸?LG¸?\~F,iQyKYeƅ0]^o~7o~I}L.eI ^+Ry=M|kw*?wjVi^Uw7o~7G3+pj ,;)S,}<<Ӱ1pV̮p:,*|./<Y0_q,=V])\ WWsPV-˲,X]}_|ϟժoԧ=r߶}Rxi+js2ύpm߶sJWg羋Pvi),?3۹jyόsm-˲Y}o}}Xϟԧ 3OcCosp0sy٧q ;*Q,Y3ǝ5>,4qB__o~7o~K~NyO V <ϙ{C^ UcJ9?}OauW/48Y&*mo~7o~G{>9ϧ<\9~L^w4wR{80s_C#:'yx?w`oNs^{ s/a7 Wg_߲,˲UMY~;K}^s{ ж})p6ɡ)|^?Ja8˚x.]Fgj$k0\eY>,kOjl_iϹ=Bm3>ayP)e(sjF{ eƍ0]^o~7o~I6P9}[|9ts,4xMϷڞjAx/cgP3Cm>}sx_^Wkk}o~7o~%?yZ9 z8_y_,9 3 ^7p} q6Džs{́ϝ' Ⱦ2}s۳\ sx)/Db˲,^]}_|ϟժoԧpe kж}:W|_#+/<h۾mןpv1 9jy/Pۇeq6> @:_ӠO |?}0_&|jp7`,?h }<2q?n\ }8󇳀Ɲ }~1o~7/ibj?+@<kWj/^i *JƓrxٿ0CW7+|}m> ޓ65>7o~7o~󏒟.-,)~.κ9pB|p <s? - E<_{8[)=o}8i:1<.ÓU rmܧ_<J8χ*rFMgeYe=﫚ZMwVt[eͻVm׮$UsW 33Tm믇vs&yj9Ԯz!/s~ <_Oρu΅>y?-˲>,kO>^mƝ`P?e0רsJ}^\i3>KOqB__o~7o~Kůލr:r"*?Z*4x ι@]LY#sʿތLPmO\ָ7o~7?J~\Ϧ?y5>8^R9E=}~h[h,»38W)xm~| pH g_s+x~fT\Ϲq~>޲,˲UMY~;K} *R-s9P-)p1;]m׮|9 usy><~GPNn]=7Cm>k3xz,˲gkTVcY?Rw;> ^2&\ }n/4~ ϙ?/>}kjp(sju{/7o~7%b7o~7o~#$I$Ifms sh۾msWˁˡS8 t^Ӷ}k4>v8Oy)oS3jO2yq,˲gkTVcY?$I$I4K ަ<*ǴN?La/}SO0?|ؼ9u2e^6eƇ7o~7%I$I4$ &p])֯Ha8Lqs{ڶo[!|8dϹ4KP~m P{),)l)| >Íp*peY5=_˚|$I$I4=Q)7͡wBm>kDx ju5{*W#P><.ָ7o~7?$I$I=\8ɡmKSG<{)ж}u`CmνY2RX(Q/s.!)|7JΘb,˲gkTVcY?$I$I4x9ԞGUٿ9BW@]Cm93>UCK󼪶>9B/tҫkoj=7 ָ7o~7?$I$I=pʖ9p}~S s8_ Ӷ^9HץY}Ky9pf9“r]?5Am Rxjg0`YeMר~Dz&_}$I$I$i& &Cy_p} ɡ딾6Beް g͗CmgU-f\'4QPٲOc?X85>7o~7o~#$I$If=rx ڶo[<0/ jEpڶo[?.^;G]q P)ÏRX5/G]<<} [,˲gkTVcY?$I$I4|.>ogڶo[o'sI kP)| voCm[`g8jP̡Y),))|{}] eY>,kO$I$ICi09ԞGg=ϡC6? lRz5Cm|.wS7T6//4KWkk}o~7o~G~I$I$J ,ж}:#m|.&9S gžpm߶7pf=C)CmS,ߥSծ<^T).eY5=_˚|$I$I4KQy9M͸~eOBm~w5}ˁ {J]/Bm~9 8Uw7o~7Ǒ_$I$I`^CmJU9< Vgж}Ap8a̰A}Je9|3C:GseY>,kO$I$Imi0ajϣRo<'?yuҷA>MsҫrLٿ1)p.PW7*}6? ;g5>7o~7o~#$I$IfEy/&ж})liy y ڶo[5 |ՕP۟slϡv͡ϷR:ݗ) =0J^gseY>,kO$I$I:6\Š9tҷ1?ksP">뭫^#6e!lx7t7o~7oq$I$I4yWQm۷ߜ/LajΨ 8omf?r]?!r)Sxj?fzx IgYeMר~Dz&_}$I$I$i=vˡ<*A|6uyohͿ\٧/p{g^%sٲp,<)m+4Ms_[c~7o~78K$I$ipL5Sx^m۷ߙv9p}jO gkTh۾mup piP۟s{ΡvΡϷRX43SX.YO럂ρ9B|ٽ`YeMר~Dz&_}$I$I$iݕxOysUKǡ6ep_+PeƜ9|9{hk13_pUw7o~7Ǒ_$I$Iu`aoh۾m}u $RxmuY7Ϊvʡgp.8s]j0,˚QYVeMI$I$IT3 QH pU kU76e8cX?_)7O*WGPO\|WWkk}o~7o~G~I$I$.K pg ;ж}:cyn|(wNZ8ڶo[N 8v̡OSX3rj uPۇ5{x ,˲gkTVcY?$I$I4s=DzcnMaʿa8joRi+~U~,Z( @sUJɩO\C5>7o~7o~#$I$IfJ 0?ڶo[s6aAj(ogm߶ON5Pn뜟|}OaNKa8ˈsxj? Am/p8eY>,kO$I$I`«r=>W?Rxa]ߥmpnLm=> ^[ڒ_Pz5Vʡ6e*9b9tG>K٧YF/㡫5>7o~7o~#$I$If=r:i۾mo)CWߙs{x}Hmaf뷤H}~Z9ympl 3מs!̑eY5=_˚|$I$IHL-woU6+}’5]86?3R't_1Cm >pt7o~7oq$I$IזAm $x %7Rh۾mh̢P۟A{qφAmS=% ),CRX'>7HƉs,˲Y}o}}Xϟ$I$I$MG`=9\9tҷ1m>C`aU2笲U^ >6?|V5>7o~7o~#$I$IfL 5[ж}u)lCWy} 8 ڶo[)OW/PDPۇ6ȁksܾcP~2 rM5la5`jYiO+7ρ3y̡딾 nw-4>Uw7o~7Ǒ_$I$Iߦ]s>i۾mvɁ͡[R8m߶?giNZ9ԮŠ9I |.ۉ),WSxj׏qW8˲,kzV߿Fe[}?5'I$I$IS4=Q-7VΡQp;`!xt,-Cm'a*Ws{j]i|x\ָ7o~7?$I$I=ܚu;m۷_sr*Ms8g'm߶B߅|Iaj𸯛#B_Js{j? wCmA|!˲,kzV߿Fe[}?5'I$I$IS8wps U~·y_?Ù9sPcx̜9tYC70>]寭q1o~7o~%I$I4{X8&8#eڶo[_J9r 7lh۾mnwA매t}~5 91>_vH->̑,˲gkTVcY?$I$I4L P{c-3tҷͿd٧|BWyѼ9u5`CW7+}PO ָ7o~7?$I$I=<^)C|.؎97a8ڶ] 8pN)ym}.Jaxצ9:Gv;9m,˲Y}o}}Xϟ$I$I$M;`69ԞG$+po [U,PiaZz5Cmo9t iͿL٧ká5>7o~7o~#$I$If|9\ն}m)<7kR?9m;|js9Ԯ,kO$I$I`Ž9ԞGX9SX:oZ6>qLouUSJƂ9?+p&;^/@mgofAWkk}o~7o~G~I$I$.L kvȡmu2{REgg@m{j_P>'jp69d{[jγZ(˲,kzV߿Fe[}?5'I$I$IS4AQ/)7V)CWW(}SѲOMlx+tҫ1Pe)tҫ1Ϳ|٧ָ7o~7?$I$I=ڏs2Mrh۾m) >Spm߶/ /oBm_z9Ԯ85rsy VɁ-QOP[wT|ޙeY5=_˚|$I$I4mQo.76Ρ6je{`o^ysg^~I9tҷͿf(l <]寭q1o~7o~%I$I4{! &l=)lCm7yy9i F8ڶo[𚜽T lC:CmR:R\0g|m}Na£`YeMר~Dz&_}$I$I$iݔ8<eƲ9\š9tҷ=YiBW)6?g<,^U~eRe;`m8_[c~7o~78K$I$isV8OmuΥ0oa8ڶo[]? ʡvSmCW/Iax}] x,˲Y}o}}Xϟ$I$I$MUs=zaٿ?dʿ@j?x p.롫/A8/]z5.48g9_[c~7o~78K$I$i)[p ;ж})CW_`!m߶&8gAms`jj9}>=P~8}>wap'XeYӳ5*Wߟ?I$I$Ij7>O _[c~7o~78K$I$i4Yڶo["ruAPE);Wm]kq맥t}N;)9eN6mx>Ͳ,˚QYVeMI$I$IT= &y[Q/7g)yR]_m|jSi _*9|o<㺢K̸h6*mo~7o~/I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I$I s.|`AkѬ],sw.^E[m?Z|F⎢mws}y*,YV-f[\3gm)3TŊ勵 -^^EqW u9')_`/(x%3_ub+PqvYW`+g L+kd(Y`ߞxw?mv)?ܯ9X{*y?SyڷA|po~9N/.Y0W--?V_7=/_߱1Z-<,|dqnyOS]TlWl=IB.Y^XwTE;Vއu8PlWl^lRlʱw'VᬉsydADD}^BaBȥ|U߻vw:aTqDPPD8FIiƷo{;2׮~[cs{/kQ#}|YxjqtLG/MϻtWmӫez I_kTgk7?+w]GzuMzڛ^#nגZ^˿ymΙINtQҎH;jvǗ5oK((W?@sA5)~~kCZ>^/s2~[#vkoxƧZu!v+ }O?e>,y;8.M^^go8?V#^W?7MvҫSڔ>~{0nW^ҫUsYz5J/u.N??٠*鷿K>^^צWOoo{_:/~^o{jz_6XW^^Gk7..WySPx[[~HqIߥ?]ҏ^+kٟ}aG~VNJ^V לs~zoNUI pK5\~~~&~ =I@+7mύiJ_<5 :^dz-N?WYzmLO0:&4.xIo/:GO_~1*>^^IׯKM_T{洳4,9zUxZo_^S6U|| }Wx6)~wMW?H^߳ב;=~!wotGcUo?;שtA"ۿI_^+ҫnzJm.i׍;kadz%ڙ^Ko mߓ~kk,}\Ozwv:נkT%=|wo>ovT))yk\z>tzL?(+q IKg~?fNn^KZ>>>>>>>>>>>~~~~~~~~~~~~AAAAAAAAAAAA!!!!!!!!!!!!aaaaaaaaaaaa'qr'qr'qr)p )p )p 8q\ǹs:u8q\ǹs=z9s\Ϲs=z%HHHHHHHHH((N^8888888889983333333333SXXXXXXXXX88N88888888899{8LL93333333333SDDDDDDDDD$$NN88888888899{YNLLLLLLLLLL93333333333STTTTTTTTT44N88888888899{zNLLLLLLLL :3333333333SLLLLLLLLL,,NΤ88888888899{:3333333333S\\\\\\\\\<}8qǹs~9sϹs?~9s6s6s6s6s6s6s6s6s6s6s6s6s}9s8p>|9r>|!C·9r>|#G8q>|#G9s>|1cǜ9s>| 'O8p>| '?p?p?pO9r>|)SΧO9r>|3g8q>|3gÜÜÜÜÜÜÜÜÜÜÜÜ9s>|9s9s>|999999999999 /8_p| /9_r|%KΗ/9_r|999999999999999999999999999999999999999999999999999999999999+W8_q|+W9_s|5kל9_s|999999999999ǒ%K2PF2W$'ߨ999999999999999999999999999999999999999999999999Ϲȹȹȹȹȹȹȹȹȹȹȹ))tJJ2PF2UNeS)rJ9RN)3N)Sʩ©©©©©©©©©©©)q8e2NS)q8epN 8'pN 9!'䄜rBN 9!'䄜q"Nĉ8'Dq"Nĉ91'ĜsbN̉91'ĜpNI8 '$pN©ʩʩʩʩʩʩʩʩʩʩʩ)s9rN9S)s9 NSTp*8 NSƩƩƩƩƩƩƩƩƩƩƩƩΩΩΩΩΩΩΩΩΩΩΩΩɩɩɩɩɩɩɩɩɩɩɩɩũũũũũũũũũũũũͩͩͩͩͩͩͩͩͩͩͩͩéééééééééééé˩˩˩˩˩˩˩˩˩˩˩˩ǩǩǩǩǩǩǩǩǩǩǩǩϩϩϩϩϩϩϩϩϩϩϩiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii:Ӭ"d CX&m]yY;tttttttttttttttttttttttt\¹s %K8p.\¹s N'N'N'N'N'N'N'N'N'N'N'N'NgNgNgNgNgNgNgNgNgNgNgNgNNNNNNNNNNNNNWNWNWNWNWNWNWNWNWNWNWNWN7N7N7N7N7N7N7N7N7N7N7N7NwNwNwNwNwNwNwNwNwNwNwNwNNNNNNNNNNNNNONONONONONONONONONONONON/N/N/N/N/N/N/N/N/N/N/N/NoNoNoNoNoNoNoNoNoNoNoNoNNNNNNNNNNNNN_N_N_N_N_N_N_N_N_N_N_N_N?N?N?N?N?N?N?N?N?N?N?N?NNNNNNNNNNNNΥK9r.\ʹs)RΥK9r.\ƹs2e8q.\ƹs2@@@@@@@@@@@@9s.\ιs9r9s. \s +8Wp\s Ε+9Wr\ɹs%JΕ+9Wr \Źs*U8Wq\Źs*000000000000՜9Ws\͹s5j՜9Ws \ùs 5k8p\ùs εk9r\˹s-Zεk9rJ+ﲕd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nvd';Nv}miI42PF2^ied^*k]zMxUu_UJxU&aIɪ%%?;s;.^̗++Xz&ΐo>3/ucLe9oJJ~\^RŋiV?C.#u~>oŋ:\>gb>Y~/s6}_CL:}_ok/i|sJ,Mv_|^+9ӏyNy-Jwkϟ'q!k5sn*QS%㕝d';Nvd';z.*, e$cȪ\Vj!kZ#zl"fl![Vl#v ;K)-% G1Gr' r$')r&r'"*˟r\$)__˿N)-7ok:^n&y7Wd CX&,.kȚ-Ⱥl,Ȧl.[Ȗl-ȶl/;Ȏ9g}9J@?cX9ND9INST9MN3\c9ODTΗ? B HR.+#NV;VQn{(oP&H2UeduYC֔dmYG֕dcD6dsBdkFd{Avȑ>Qr#$qr 'Ir"ir!y'r\ ._Erk[w?ɵr\/7ȍrC`_{|/{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{!{! =z[h=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=Ch=CO =DCG"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!"{!c{!b?Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cl=Cbſ9$Cb=$xVb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$Cb=$J+*L2e"rY!겆)kڲ+Ʋl*沅l)[ֲl+(/{^(9ZP?c89^N$9YNS49]ΐs<S9_L.? /"KXJZF;[ZNFIP']Jml#g9F6rml#g9F6rml#g9F6rml#g9F6rml#g9F6rml#g9F6rml#g9F6rml#g9F6rml#g9F6rml#g9F6rml#g9F6reF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyF6򶑷mm#oyH[zil`(F6 Qml`(F6 Qml`(F6 Qml`(F6 Qml`(F6 Qml`(F6 Qml`(F6 Qml`(F6 Qml`(F6 Qml`(F6 Qml`(F6 QmYE?Nvd';Nvd';Nvd';Nvd';Nvd';Nv,WnE^3yeOk+3LdU¯2PF2|XUUs9rN9S)s9rNSTp*8 NSTTTTTTTTTTTTTwǝW#Tf d(#DVBBU^PSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS۽*_Qe2d,Y^%Vj{GNNNNNNNNNNNN]N]N]N]N]N]N]N]N]N]N]N]N=N=N=N=N=N=N=N=N=N=N=N=N}wi_RE@2Ld*{\}51 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9888888888888xG%e2d,Y^k{uQNM8M8M8M8M8M8M8M8M8M8M9ŻZ44444444444ьӌӌӌӌӌӌӌӌӌӜSFsNsNsNsNsNsNsNsNsNsN N-8-8-8-8-8-8-8-8-8-8-9Ż{ҊӊӊӊӊӊӊӊӊӊӚSHkNkNkNkNkNkNkNkNkNkNN%m8m8m8m8m8m8m8m8m8m8m9ŻҎӎӎӎӎӎӎӎӎӎӞSJ{N{N{N{N{N{N{N{N{N{NN^-88888888889Żtttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt 89N89N89N8NS8NS8NS\ǹs:u8q\ǹs:9s\Ϲs=z9s,}FrFrFrFrFrFrFrFrFrFqFq)?n4g4g4g4g4g4g4g4g4g g x111111111}rrrrrrrrrqqw);og>g>g>g>g>g>g>g>ggxw=rrrrrrrrrqqw]YYYYYYYYYY)Qt1g1g1g1g1g1g1g1g1 87pns 87ppppppppppppprrrrrrrrrrrrnȹs#F΍97rnȹs#&M87qnĹs&M87qn̹s3f͜97sn̹s3-[8pn¹s -[8pnʹs+Vέ[9rnʹs+ggggggggggggg9g9g9g9g9g9g9g9g9g9g9g96m8qnƹs6m8qVpVpVpVpVpVpVpVpVpVpVpVpnιs;v9snιs;;8wps;8wpVrVrVrVrVrVrVrVrVrVrVrVrɹs'NΝ;9wrɹs'ggggggggggggg5g5g5g5g5g5g5g5g5g5g5g5g g g g g g g g g g g g .]8wqŹs.]8wq͹s7nݜ9ws͹s7={8pùs={8p˹s/^ν{9r˹s/w%T[E]kWH2]INerrr]YYYYYYYYYY)9wgggggggg=g=g=x {7p6p6p6p6p6p6p6p6r6r6r)Axggggggg>}8{Rǹs>}8qϹs?~9sϹs?~ffffffffffff8p}9sy>8p>|8p>|!C·9r>|!SΧO9r>|)SΧO9r>|3g8q>|000000000000s9s>|9s9spppppppppppp| /8_p|((((((((((((KΗ/9_r|%KΗ/9_rqqqqqqqqqqqqssssssssssssNpNpNpNpNpNpNpNpNpNpNpNpNrNrNrNrNrNrNrNrNrNrNrNrNqNqNqNqNqNqNqNqNqNqNqNq|+W8_q|kל9_s|5kל9_sNsNsNsNsNsNsNsNsNsNsNsNs7ǒ*L2e"+=,ɼ$pppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssss.p.p.p.p.p.p.p.p.p.p.p.p.r.r.r.r.r.r.r.r.r.r.r.rJJ+*L2e"yYrJ9RN)S)rJ9RNNNNNNNNNNNNNS)q8e2NS)pN 8'pN 9!'䄜rBN 9!'Dq"Nĉ8'Dq"N̉91'ĜsbN̉91'$pNI8 '$pNUNUNUNUNUNUNUNUNUNUNUNUN9S)s9rN9S)Tp*8 NSTp*8 NE]MW9CG:G@lhUdErTd3{9-z}ֹg{sΘc9c0&WO=޻]z]vthGpJ8%N S)pJ8%qy~\AY(2!2%27ō+Ȭ=?RN)S)rJ9RN)S)q8e2NS)q8rN9S)s9rN9STp*8 NSTp*8JN%SɩTr*9JN%SũTq8U*NSũTq8999999999999՜jN5SͩTs9՜jN5Sépj85N Sépj8ZN-S˩rj9ZN-Sǩq8u:NSǩq8zN=Sϩs9zN=i4p8 Ni4p8FN#i4r9FN#i4q8M&Ni4q8͜fN3i4s9͜fN3ipZ8-N ipZ8VN+irZ9VN+iq8m6Niq82'Ä &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ )XeY(2!2%r|fdVZ3uAD}mos3}cكbˆbE'Gc}wwnosQXlm?߮ˢUkXϷl-[~77Zƺh<=8LF11=]]-RcXwX/lYe˖mGϯتDTGtD6:4:f]U6[t?GE)<9fS":&sjns~WD%zz1:m]QXo&F,,:Kc&L0a„ &L Y(2!2%Ӳ,ŲDeW9P΋[Al/9_\-! r?P/r\,ȥr} b˵yiNB )=e,%-Ⱦ/ȁrﶗ/._r_\(H.KRLXڟ®)qIiSbY"{޲+r(r*r)Gr+RY&eUry%˟˽/>rW'C.T. y\!П$'? IOBП$'? IOBcyL8 1<&DŽpcyL8 1<&DŽpcyL8 1a-a-a'a'i:JڟIڟ$O$O$O$O$O$O$O$O$O$O$O$O$O$O$O$O$O$O$O$O$OO)?)?)_OٟIٟIٟIٟIٟIٟIٟO'rI\R?)ןO'rI\R?)ןO'rI9/)%弤r^RKyI9/)%弤r^RKyI9/)%弤O'rI\R?)ןO'rI\R?)ןO'rI\R?)ן$')=I\R?)ן'?)IOO~iIOZ֟֟'?iIOZ֟'?iIOZ֟'?iIOZ֟'?iIOZ֟'?iIOZ֟'?iIOZ֟'?iIOZ֟'?iIOZ֟'?iIOZ֟'?iIOZ֟'?iIOZ(gPeB&eJeOY$e%{>'r$!r&r%G1r'Ke,RV2ߟ= rK@+ !r\*@y{Wa^633333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333S)rJ9RN)S)rJ9e2NS)q8e2NS)s9rN9S)s9 NSTp*8 NSɩTr*9JN%SɩTr*9U*NSũTq8U*NSͩTs9՜jN5SͩTs95N Sépj85N S˩rj9ZN-S˩rj9u:NSǩq8u:NSϩs9zN=Sϩs9 Ni4p8 Ni4r9FN#i4r9M&Ni4q8M&Ni4s9͜fN3i4s9-N ipZ8-N irZ9VN+irZ9m6Niq8m6N333333333333333333333333333333333333333333333333333333333333333333333333is9vN;is9999999999999393939393939393939393939999999999999s8s8s8s8s8s8s8s8s8s8s8s8Nd8Nd8Nd89N89N89N8{rٓ'gOΞ=9{rٓ33333333333333/t|||||||||ޜ97goޜ9{sٛ7g>܇g>}8pه 8 8 8 8 8 8 8 8 8rtᾜ}9rٗ/g_ξ8q:q?~8qُg?BBN+.,,,,,,,,ٟsٟ?g9s|8p9s8N{Dvp:8Ntpqq:erggggggggg1g1}*ssssssssspp:r g g g g g g g g g)g)2rrrrrrrrrqq:msggggggggg9g9g9g9g9g9g9g9g9g9g9g9@΁9r9s @΁9r9s A8q9s`9s9s0`9sVpVpVpVpVpVpVpVpVpVpVpVp9s!C8p9sg%g%g%g%g%g%g%g%g%g%g%g%ggggggggggggg5g5g5g5g5g5g5g5g5g5g5g5g g g g g g g g g g g g #8Gp9s#8Gp9s$HΑ#9Gr9s$(Q8Gq9s(Q8Gq9s4hќ9Gs9s41c8p9s 1c8p9s,Xαc9r9s,8q8q9s8q8q9s|9s9s>ϱCn}?2)S2-XFfe /\>p.\s 8r.\| 9r.\ȹs!B΅8q.tWE8q.\Ĺs"Ŝ9s:bŜ9s.\̹s1g-g-g-rrrrrrrr.\¹ۗp.\¹s %K8r.\|K9r.\ʹs)RΥ8q.\ƹs2e8q.\ƹs9r9s.\ιs9r+8Wp\s +8Wp\s%JΕ+9Wr\ɹs%JΕ8Wq\Źs*U8Wq\Źs5j՜9Ws\͹s5j՜k8p\ùs 5k8p\ùs-Zεk9r\˹s-Zε8q\ǹs:u8q\ǹs=z9s\Ϲs=z87pns 87pns#F΍97rnȹs#F΍87qnĹs&M87qnĹs3f͜97sn̹s3f͜[8pn¹s -[8pn¹s+Vέ[9rnʹs+Vέ8qnƹs6m8qnYYYYYYYYYYYYǹs;v9snιs;v;8wps;8wps'NΝ;9wrɹs'NΝ8wqŹs.]8wqŹs7nݜ9ws͹s7nݜ{8pùs={8pùs/^ν{9r˹s/^ν8qǹs>}8qǹs?~9sϹs?~8p}9s>|8p>|C·9r>|!C·9r6p6p6p6p6p6p6p6p6p6p6p6p6r6r6r6r6r6r6r6r6r6r6r6r6q6q6q6q6q6q6q6q6q6q6q6q>|#G8q>|g3g3g3g3g3g3g3g3g3g3g3g3cǜ9s>|1cǜ9s>| 'O8p>| SΧO9r>|)SΧO9r>|3g8q>|篱ߏXY(2!2%25Yo>|9s9s>|9 /8_p| /8_p|%KΗ/9_r|%+W8_q|+W8_q|5kל9_s|5g g g g g g g g g g g g 'Vwb=d˄LʔL=+#2p 8NS)p 8NNNNNNNNNNNNN!S)r 9BN!S)9qN9qN9qN$8 N$8 N$8 N$9IN$9IN$9IN8)N8)N8)N9iN9iN9iNq8E"NS)q8E"N1S)s9ŜbN1S)pJ8%N S)pJ8%N/N/N/N/N/N/N/N/N/N/N/N/NoNoNoNoNoNoNoNoNoNoNoNoNNNNNNNNNNNNN_N_N_N_N_N_N_N_N_N_N_N_N?N?N?N?N?N?N?N?N?N?N?N?NNNNNNNNNNNN@@@@@@@@@@@@ ````````````PPPPPPPPPPPP000000000000ppppppppppppHHHHHHHHHHHH((((((((((((hhhhhhhhhhhhXXXXXXXXXXXXθeY(2!2%27!+ȬRN)S)rJ9RN)S)q8e2NS)q8rN9S)s9rN9STp*8 NSTp*8JN%SɩTr*9JN%SũTq8U*NSũTq8999999999999՜jN5SͩTs9՜jN5Sépj85N Sépj8ZN-S˩rj9ZN-Sǩq8u:NSǩq8zN=Sϩs9zN=i4p8 Ni4p8FN#i4r9FN#i4q8M&Ni4q8͜fN3i4s9͜fN3ipZ8-N ipZ8VN+irZ9VN+iq8m6Niq8888888888888999999999999888888888888;qvىg'N8;qvى3ggΜ9;svٙ3ggΜ9999999999999pvم g.]8pvم333333333333333333333333+gWή]9rvٕ+gWή]9vN;is9vN;333333333333333333333333333333333333333333333333333333333333333333333333g7n8qvٍg7n8s8s8s8s8s8s8s8s8s8s8s8s8svٝ;gw9svٝ)ȿVVd0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ &L0a„ cAO=d˄LʔL= YYǞkwnψ}rZZ1$bCRXح3{~ XlAұX]tϢϟ=kFFnv]{_[lz˖E~=͍V:.ZDG_(s~bq,vaLزe-?fqS8W,v[S1CY=~oq=c~S.m*-:柣cc}|c6E{+c11:פXlyy07:fh =ǒv &L0a„ ?Q_5ӿx69ukGolǩll?:+Gmh$7>6ݭn~kt?oܿۮGÿ(zLsyus7w}>aBí?7;w}}ӛ}}y@ik}a6d[ˮQ0󸯻ϗ]o7?&}g ~x+;V5;AooW~b.^c~acׇvdDz}~貎5+[1#ױvmw?+?s}3?#Cw؎W=vhk:F}:oߛy:tIG7y.w Ϸ<'*ܷ ;?Ei{-Fhh]_KVΎh]u quteE~vvܾo>'v}lq磥cf$r;#cCyGhz}[5l~?S~*GOv}y?} Ʈwq}Jy|?=7z5ZG7> :;[w̹;D=,Z֠h );%znwG+gIt./ʎڳG[#ނgo{}v8_#?H;_~;ߺx?D]{t^3z?o\[uNkkŹ7}j>w?ww*ȿ6k}D^KzϥF+g?Y&BNz7 prjpeppercorn-1.12/delay/cc_worst_spd_dly.dly000066400000000000000000022074331514752025000215130ustar00rootroot00000000000000x̽weUy5j511X0FKф^cb/)iDA3a* Ӹ3A AXw=o={Yqد쵟|74l溼h:4y͵.k5YuCsB]\WϮi%ues^\4AsYl"3;SZ+:ojSzQ4[4ףSzRs>6͵_s\{5溤vh=Fs\3zXJ7_6Ӛ럚k{z|g5溴f~/y.7w7S~o={ڽ\7k~xsnuzsncxs-lsܟuޅz^\w5ӛzOs\n6k-z6ֽ\4סuBWh= Ѱ25K>/ZWvx:x}s\l;_/_l(15St\7JyBwkzZWWޟۛ+ӛ:V~5ϲ>kugN8Osw~ni_o^\2"\6K룒ˏI5ח#5Nu\?kG6wڬ=6u?q]{/~C~Iy~7 yd7)D!x*Yuy[\?Y|{3tg5uqoX.ۛ#z>}}^2r8W_f;{<;[ğyCsjI͵Ksm+W;{kS:ld5OpPsM396ٌ2e<gLOK9~,?76/;s{מ.O}k7Xm <ȭ@Tz`s9w%z]\k@#D::F^A2zpWO@#2z9m-~\%顣s[;{~]"kR9_ݡWz{FѾu؄볢 똙Yc^ i`_Qm)YAސEs3g"q}ڲ)Or{=L_'[+3ӱ<8@l3$"faE[?Eg*|6Sk|V@7Hg4]ߔ+c$X>*z=tms]\7ݕvw\ is=%;L=z}o(/=CWGl?<~r|b}zGD;c\`h~sye.'|? ]4vyaj˵߻Snl$ tڵzq]Wqz;+;aW?Ҿǿi o!%$Vy}WYxaYK^{M#YOldyzŽ\\A\->XT߁H{/:~hx8>2:G;7bEA~/mٿ<9FI%xa4_Y\b\Hx>}" 3 _7.߇χ? ;|.[N6 y`woii`;7Ol@yb)U\/߸v.ᷝ"}nEX/J/g't}gd|ηC䁖w7vj7LrA󾰹 Y\J{~j_WiПأO">v_#osI_<6\?'ϜTZϢfkY\{4ס4@CZt#fhi'!WWHn>}3YiM'F^T6c?> l*HelAL{n3ȭmtyr}韒J ;K+"[5*rmx~D9ѷ咗`O?_t6E'~7hC9ekqc:Z S::ʾ⣞}hϑ+S'ϷO@~ QnY{?o1̹c(^|R>k;Ϗ_ɩctֻ4>iC|Iς?侱Ŀ# xa ѕ[c/3k0:O49ғtܗ~d,l;vQ?w^OzυѽՅ^KN=?.|>[K6?gRodOx]bx̜S%i3%$ltp%>PgZnQk=r:C@j류9ixygO;ksq48;;j78;BsM#΍^ӑ_-A2x}>}U{LNg>}hbcҿ˃x/دy3ǏOIE?m 1SK^t_c WD?ſs6YZc\c}bǜq.璫;u蟜ysvrasv D'?cS/runmkI?ܼ&5v_La}~Y_}޼yogUa}y|%?QJu.l̫/;A}‡.y[j?J,k1lu狇gRkG6'I4NE?}>\jsY:wc-|o>Kzy%ŸA ۍ}韫TY*vӗyR;Oѽ@5y]ڹM@sm%9> b=Shn|i 7GSe:꽸y3e"l/z\s9sN}/SOE~cuNK%b'~}x&H?%Ġ-tT({765~O=ltn1꽸f1\'rlNߧjMw( #)e/!s*z=JC?~󏱖/i-65l q1y)~u?%#߲݌2wj_dYJٝS;1vuvg\ZWG:G]lbgc<  y~W6?z`| 6nՈgOR=H?n#v=Ws4Y\7b_c;)yFoWG=@V<쮯N휕e}q]ߘstmsYom<ߗE>w|gO_goֽ ˶+%'nЋg_/G?DyPC~T7mюrjκ&kY7YAp^DqY:8;cyP{/gs})?ڷ.>bzRZg=KC,wr蜫S'E8l'4l_ck~7>9) wuϡ<䷶ſкW.ϔL?π9ΓܣG?>q[l1g΍Ro3_cS\} Xg ҿ07wt4#hAb^lWyR/o_9Ρ\|hv/W,z:e]mtӌ/Q~lk6Eѿص?~M~rnǙѸx5_mOgƵc*#SGogIg򟉫tDs_ݗϮ_FwJFLa蟫D|QǹiK4ҿ>~c<&qkG(G[gnZktU*~I\>_?9~R?ܓ~<Qd7?,N%jK% دDܘ,` >'~Ev=Kynd㛺$/, e}lg?akAL8ʥdk< NjbhYO }Dז;k}Y]YMN _,w}>ϒN.0WOo`Kc_qcv;D72{2~iswɹ?~ R{]|df*:lݒD  zuOyG zia.=kF۽ʯuIA Fq'\?,8dJ*XuM!;xg+℉氾~pwu5Zj<'u{1ଈs῕,U.w>.5,O]D|ӫitz^GLʝg\.A'Gn[?&^f ZK߯e\p>GsGO?6jc @`sj o=5:&`={#WsũO%׎k{<Ή FNJSx5 zgό<_MMsv04`j~C?{g+FL?q΍m.X{ģfd|/eg'T}p3"@r1ĸnw{r>Lbτ<~ے\;)wf7lэSRƁ-Wne#\}Jr˾%L=]Rk &S /279>1~TxK:?Ρ\F?k_/wފ^`xd~;.`o :w2U o%8}?-"wcq?5b/fcvӴ\kp["~]_qeS:@ωr/>)Nk@֦29Bciz2-=Fg=Fw~MN%GjlwWbC] ?#ᦇϹ׳;ko^Si>hb7 $/?o}J|3&w\8炕F/{> Xw"s+~&suf7;w{\|=x˘v昿F*нzѧY ۳8Whɱ}`Twُ8cp8}?# !vx '6Ycb|稰iSO X5\KS3g ԑx?L4kEk-<;09;J>i߷/! I2B*3z~I.yidsCyγI?#W/k;qyސK n 6,س97<% fo<|H]瞬aD5Lq)w֞SK֎_nJorc9C/+|YckgO/G+ryyo˴Fa3\p{*r3b;!ɀ(9{'bZ?䅩䋖] mnG염~J -i(˓S# ǿrq*/v6~=ot5j:'7\J͢5iBm`/{HV1ҋ'/ʳ LJ@/Ԟ%eRß/!g$L (+kw5y~/ϢV?]wjoYߪm\CWBg'<vt$[DEwFޑ+8C7Ak7!Olپsu\o;\k/KT'R3asߢ'K;s>C߾Cϯ=8@g/]Þwo>v pnLJW~^!~@ݷqrb1κK>A>sVFľw~WO~K }o@?b;Z"~a3}\ш*z5Ʀ?QN~anv6%֫T lGlx鲳Ļq&L,hpF\/Gx>H 2/6d-];j?/묻+2JHM$YDA9!~fc_]xDp{QA*y''ү2% QQ#T{p76p<2qo gҶzƛu-]u\umrlj3cg}<m$bQO=>9Kɩ="4R^h;Xw_N.V/22h^u< /kynbݝu wYyѡO&|,F }7֓wJ~?l T]~q&H8D= wT_=_hsc\υ㹒Tk;ZfwNc:Ϙ2v{$%#ߗ~hvGKQo}lCͳbK_k翱^:bmlJQߛ_?iۗ~oԞS4F٦F̳7օ.HK3!_Nʽu:'QowJIp']lq1:U\yRq3;^^_6g<bg@~WHFFp?:¾8xw'-HTrC'RǠ q.C}o{z S=R;v|LmdK~Z<[35o?IEֱǧ( ?G,篞M_ Ol,+*ٗ~r;J.HkOaF1/ [T:v~p8wvֵ{Iztſ!Y~#߾ۯLeeyꗩn= ;UfCw-bƹ|`+ǻcS9+K_gFVl bAnf*<KϯS~A?l}7-oīw}^;HFz0<d?oWߩ9w=Tj\n:눩Lw~J|yN42N?co `?^Y0cps0=3R̄7>g&'`3{ٿ.{zsX=;7 V/y8j8gs '8,zxv7s>d=Cs&?YlsOztx{ղQ,O}ѳf2`UeRO|T3p6 D;ON&i:5g) m|e&9{gB|V+eLK{Ϟ#3Qe0Z+κZZW nr \>K|B= g':y*b\tŖ'kDkzvsr3D)W2p>1NcK @%CF}`H%bWJ?~\wxeq*9-A;p蟗HI\@^qv9ᾦw :WF;2GEw~N䓜><ߦHfh_=dn|y>]ޝJ ~}wXr\+RxH|O\Z~j]㣡~WMAr5ӚzqsXF?4e;<mokgj"]쟋vx.NtJy0^2g8Kyo.9_|cz3%zMJn_s_}_!١9 zǹc^³[bС ݈.󻧤2f:"|wZ*9btu{f^52  >5q}Iab_?9$ 5>/ΝqE 󣧌 ^+5צF?L#3RvxޘC<8]w%ϏlSUa2\?я/H ͒ku/6/L^b;]lv + ީ@?%~/]·r~E.y6t[$Љ%R.c^>ϟA..?^9+k5ig,"WOmzIqM >4kJj3?,gE80.AigKoߒEO⇑&_{ oF^7687z΀M?4 !gѯ33Ԯ%goxf'k|@.6{ϣ3Ou uO!. %g@NÏfgD_|ˇ9[Of禶clcm+K8h?:u~.6:POCY<.,qsQ>b]rOgG5bn#ԅ!ZBޟzSsFA˹#2<:[0z3WPoӘ~1{$̺hgnJ] X֭O&5;7̅ Wp?m#yN.CݵC.YCKvx9@v1y||7v&+b|V{Yyy`kOw&rd8/"s+kнZ^2iv_7=s]͒ >O}Xv/Tju?D^'yr˾ezF2K%''bٞ<_!%o)֤z<[k}/Szf*w^aq^'ejA#O{¾m%W̃%lz/޷i9|D-}s[)~Oo}VK2{O+ksm~J31 :<1sOƚq:-QG:-@q~Љ[՗D3iߧ5ߦg?o?zl5~˞u_Hy _7k0ncl!{e=?ߕz8wV*2įX#_p}]į#3*G9+֌,hO-`=0(kT0?:ί16 Z$؊CG1/KRwηܚF;KkPj[ܓjۦ'$BƕeM~|}fc_?8ϻ?uvSO-Xvq9j8c?7Im|!{9yg.snQ?K?:'?ǺtRl-#S0.p ~kB_c󫮗Fg"KGDθUg޽R*j:׵5p?z2|9<YyxDXkz}6NG#>S8nb(W}?9=Bq.$z _hjy.%)Ǻѯv9~~e>}5yCĵXOYmcecCq (se`N.?rlQ?q.¸E?)zA|Qڜ\BI3!;L݆cOs!{x9;$yHXo_3k/ޛJ4U?Q~8 cc='1M^ǮwFįvlWi󏜧rO/Tf95?=uQ}_ kry1.T qZ{.l?9l\):j} Z~|92g $Gпd壟,,OI6y_ޜ^}JOΧ{z"u`7.m/`hRM=D\Dip)=/ z{Ol={a\yNt1t^ =0Eo|! JPgsK?k=o_?'7AY &Jȩ_HG[r]z胩zݕ_Nma8zQkπzvgYOO%\{hrIXL_ O_3{}5ݜGBoX42<}Xu?ɥMGod\s q;Du^#!6Gwý'ÿ~ZGoY!$KR>/@~.MX(E^-ʵu#L/8w2AKFɩrăJ^ſDvv{y違inI%^u*uxW?VrˌoΘ'I$J~govpcxF 9ZEÅP{+~8L&qTz٦_ڥq-?3\˱^<靈%nuoeE"E%EO!.cqJ;F O}']B&X-ad < 2:_'>Sm1ю#ǖ}_uYZfO-qܺ kb^rY9k$Gࣁ^3`W78__ղXu. 9FOg{ d3#=7i7 ?/2'eA*:O v/-FK,<}q-NKenw\]J$2~^^m3;h 5`ٹ{|.=؁D_ N_9Ru_%q*cu~o3W:̒_zy=7c?*YN[792񣦋Wܺ')9cTf0t"{rZ,<5\jlo |Զ89^q:mjKRŪj*%gvO=9Yq΅C |D2+6&ǚƏqkr$kqkf~3G]/@};Kђ_8ƿ^9?ct׵_^_$sCNg/0,7_Gׇ~^-?-oD_jL0'g)y:)eKI`N/s _=${^-_{' qv>imD?[_Y@7>r{S*𙱿/%[jW.#n+H~ks>\XY53pjq]ؓB=8?gzf)bƷްaŧ4<\PUy ֗ii8Mmn|y>'^1qrKԗy{fIjsZ=osɑk%Vq^3/ا[.F5F,JC}o;wם?2$kv1;nɩ#f?g :_(! y;Ns4;1{n['>?NHg80/R~;/1;='3-wm\s q.~O%'zoy~7=܃T_|~@D\tsYtgf/$/QF<#q!kz_rO+.w:u,XF]?!?'}QoHGT\_๖ c>#F~)t?;CvV*s>66D,X7~|z\sGg>~4d,YO?-q6_AL0*}8߼]:!?Fb02k=D 6_޺iG;sw_$'F`TӈZ\Gz{TE* Mx5{Q+Sc( 뿛~=ώG`G\0#Xܺk*_c#U~57"uwq2{GgL갾&e<Ӳ5z5Z/,} 5#Gc\9J;3Mop?1 Xl~aZ*kl,2Mݖ19?\ Vq:׋k|< lRYYNrA#>;gs}9YߣoaF*yS?iď#>}Fܗ~w/H>sڗXw8!l9)kvEqc53}Ilߏ@~uh}.~yi4[_ ~kی4~(߾޷XK\^}(ٻF@?Gk_8"1v}g*gM脾Z\=  1}_֍1. Wn3ō}7?ʌt瘿]>K2RWm{mo9mOe9ƿ1*unZ޷5u-^SB:R=?WRG9G}.7%9/X߹eӗ(7e_0 [[<)[\;?IEkSGvxf<Bw"hάi?58?x=09 ̋G}'7SM.e; nߨ1G벐k-PRkqn>_?#Y=\uF~ϿgSnоȯq?ߠ4H?{3Vo{gsG@?2G';hF9棺oLtۋցszk_|V!~҈ ;wQKml}Ϗ?.I>_swKR??$E|~vjkS2;DX5\׵ګuR_eUStoU ;LBpPO/Wt1Ns0)QJ{OA_? 0'ǚqRO#kSS_>f-Dt?҃*腤3R9ËS,^9Mkֽ\E6à6xll zI1Og?xk*gEoׂͥ>c3C~c W'&6.qgKy\*O2׮} oYO2m;b'˥7g_5>6ߧnx9>K}.:ҿ?l~DM~t]fXӃ6~*_br >o_`a=}5Vr\&3 _{qK.A^r|H.7E9(5i; /~A{W 'Il ] /A<ƽgu/@s1.1{3nHNlz}XΛKn95k`;w /SQ4,}x?Z:*ow,O?{Hgq*Ɯ4ϊv7FoqՌ#BmOr?I MϬ{O@o#bFy^-ƾ:>:w\0p4l_ `DZGty=ϋoKĥ/CD+{>%4|Sjϟ:6lSG,ks /kx:4?՗S?Y{*W/g}$qr\6"V`D_OJeE}޻58Ϗ@N}O2bЭčm\krcO+|@%`o)Z݌\p7EF\;poN/Z<8!b_qt̗zY*q93;khqlE*3s#'qm@įzv إ+EbƁ$f}rXjWMr9/)c%gx@+ܟ. ;?zu/!9ݟJ`$=o7q|xn@\|Qj_\]/_א_cmcHvх'ye"k?T#ESS?Trqu`\w\?\Es }/h7>]^oJO14?#5_Ao_<"^&}t2Rߛ &6`#_eFIksa{׉W߯3}|{j\fz$t茸vy{cv;}ۃ<'Ԭs91=|r &ԍPIZJ\m?Ԟ?{{4j_H|8t9vQbLicefً_c韜kb[?9y Ws_i[F{`y"CAg:3Izd7o='Kx~D6\V~FIU~=]˂g#cɗK?KN}ܞO.>}id^*Xձ~\ŝ]OF'ozܞ/s#7\ur.u|z=Os{jMI\vTq]kMQK`b2Gy0 |sIYz6]- `RT={=|d|g|ݵ7Jcr󜼏7~vYe=蟑y~(6ߤ\s^癧u*m+%gZ1>Z{nH~'vӳ=Mle.>7 oPo:MKԖNm:Z8'=p<#毜KLGаa}I1sb0\,tko]tsg]1 E۽S;@-v_(s"Nq׍> gC5>_ÁWI%/|;[|.c;!=sۗhb yQ׵85 ۗ.Sw֤Rw_*zп0XQ?gƉɶR[N/gk#[;kYҗ1o{b=j{_%~휷3⍽agOm`w+g3vg_>z#v7|?=0|<36{4g3Yjr:3 n`g㜯xgT/X ~{_O?8\ާo.PoTb\wXvSyX4CWW"k{u=wR*2z$A^ڳjpoxpJ;DyOum,K<f=cۗx:ױMN~S?9smh'B|\(_8ŦNJ9u~`c ?3ajwg;9Okׯ纖Ə?P@= ;pkpt<2#_hFQ:%O;?zzPvs >8H,>yZ.N3agG@?6֓?ȸM?v1Ƴ63rԶsdǿ: sgjvvQ1ԉ 1_c,I\ 4 z󭩝5Y}sSm<8_}뜌^~pahCc>r^;oşb./s|]/>T΄D/[ЏCkJzJ"!xSS{Ѩ}YJ>D}ZãkF@įJ{.HJaĢ3>֏{=⺆wW_ѓ< xSjE=Aߗ߽zj7f{0S{]?O=?[ȡ5C+T_F?=%Y?N_Czzb1WFl olJ`Pr/g.}`ПN=cл`LGΥɾ1OIh<ywcң^O۹'g. ^C:;L?Efo;". :c6>u] [WYσ]^ӱu?|xf=ʓ+zK$9B^+dp|M|O+~w?y傑Ϟ'\/O?t^:]28gFΥMzrg.Hſ3T|߼]jⵛS E_$:? 's){HmcGF,~OMb/U?ulM.4>]r ÇK~Cd'o^-^3(Xȝ{(Jpz*T_Zab~cSZ\wu.kVj륩lqw1WWkm b-0y}/9i??ǽ'Wf}|g'wIoKR;~tL3K18o߹Clo.Cn炉 B~O8knH?y_-a\z=3".P󍣃 '8?ЊXs'qz9%sЕD3?Ư^'q) o]ϹgK䱆a,Y':)i`_ k&oE܋M3+_ٰ?D{hw'Ǚ)<ҙ?vL6cuFߌs?+9{Wi|_nTLw|9װ tzׯվ/ώ)I bbb7?aܞd2OŘ4F]9֭يBo';pϗn^?9,y'ܻ&<+S^1.^DqO:kx=׵ףޚʹ:09FkIb^&/yxx|ܞBn~Em{y07%7_LDTJY='؁ydP"?Kohό< Xi^?y9ucjƜ3#.+؎\8,G,}x~J>Пigo=3x$_oA {@~G䟻Vu^2>7V75zs*\z:ls'9 ׌_I ?_3]Ez9gΑ5w!nsp^8V_)B|ر~ADzsizkS[J3 ~[.H];XzfV.vXFo;?5gg }~j\@噦g/#ϳ<=! x~0 or>d5p침7gSwp33';g>'3ssɉ Kdneח3u)rpoϏ)Οe6uPw.}оcO"ng_(^yx|o Ϟ?-@ g˃9;rL..j*7׿3LoD"bΒ]WsDgupn+EwHnOƊqz&ρNtܮsgcG[lթ:,WϊѓG{-tr~Jsw_&_QD{Y['IWM~ERE$FgTfD X]c~7yRDn\@Y2ܥk^)spCߤg2}OM92{dcn_["RsV䫝c^}~@uCsg!6z<)͘r 2tfX{yUwk_&edLf&3dIcRLBda c 6M6W\$K-ɖdْ+ݸl ŔO>:Z}~zzξ{޽Wk}ױ)Ws.繞[} z*}='7~aӾ: Uurr70"g~3fѓ~r>Ĉj"SIr[ďCjefC?Z O5?~۲^~<}F3:s)CW5K&_lL9x %/ߌxX{|.HݿkrPu?KR.noOR6!˪A'',|feVoRa<^VB? Tqj<.ƋUSDoݪn}߿ 39~gwFAy)U./RsW9S ߧo[L޳3>ڳ ;cÿW婎H%3>BO>!ܓZп:jW߾yЎoD Iɇ54K_{0m_<.VjL3wuǗ7V37%Ng.<_k-Kz~3}%wES9)_d\sՌY3/f-߳/]v]-oŽx4 |7: A \{-/J?Ƥ|r/CAY_bKz 6#ߣK_U;v]%[G3wRZC=b_~:jYqQ1(/>#IW%Ϸֺou꫒f<'ujTGДg;wl52^$@}rS䮸w_ ŭ~}fiN_h< Лphv^?W_5}:jǻ@'oP/-뾴۵i_ϓhJҷ=&w/T]c jNqe倄 ijwpi.RkˆgſN?97yY7o53J[rǽQj2\wuz竕~Vm}9Z!WIQ1%z_l/ZO<##S7yS=1-9= ۭp[O񎰬U?ʓbu|ͩMGU'3CfRsC?;꜃.m8[ׯ澿T;[ʂO PO6W=<5 J6G?"9SNc.>%Exp].gƯֽkERxY͇3 [p7u(~qA?C ~u_R%]3bEt&<bJIgHއ穁.gӯ Eo J' 3|FJꭰ+,7{'ď_UtGGʮ}nBI[Aտ]⏹,w}社V߁CFsT/ڒ;I?\c'{~?Sz;|QkԻ$&'2%S/~'O봹 ~Pv[?㋨w]{q*]T1|gr>W~Lƿ:h(^KFy^]Y~/NEQZlT(*NXo]<>;+3E'π:?tC>ێט>TKo+yD~9tguNkj EŸN[]2zkt]gtKX9w(kgg~Lrofv6=]{-/]ҏ]FїĒ?eȲffA݆WGe_ _zU׵u_Z8r}]w{?V\l򔅝~yܚ5yN;gs1?k~&{}~Fws9^'_u|`Isbp){0dqa;~QV}Nn譱)uo?>M ggDoΤsǰAk/$\ѯ/E.[M><:?s!,=rbo0C~e5?0Gκ,{g^կnɩb%~:3>b.}S?7jO,Z臯?{?Q䟡;' igcb>o暝~%'ǽQ=Kz}>u=в5֊o&>sGkbfGz+<Q&uOŎU߿|cƿCG*gyG藿 ;nѿ6~$j?+NJtO/t?_->iVܒVG#U[΅{yt~u?ҺEoEҿ$=K:.kѓ}kQ~FߡK3:th#PUYuO8i;;D9-?kGk VVyeGnZu{(>@g\]%Uxul{ <)Ϛ ~{1?-m VCf^$hD{yN|ZkϿо~+aѫZIzO~~/ɚy8 kxjY3I8v+AI|~-. z2l4Sr%fv#B.~1τZ6o暝,N패H5 0~3K.U'R1p5c|6iп2ʧ]10gz.΀?:Hs4[5Fxc7Ewq/XE,u>xQq|٨xhZxoݒ./=>5|\sNzew/I CY>6X'J'y$e3fӿ4\+pI+uXX„:.R?-*}t@v>P4m'*גa*ܞ+LEQa3qΎ|W?V\f=+/է|kO}F Xd OÏ%>.]S/EQ{[q_*O,{FC~],zvC_c*ZS>+Ô?L9 vA9ž$$K3~lfy"-,eh_=+Y!ܢ>zr?dg3~s+yFtKs//0%gxs#04p6=uY<(]ҿ&?z݂.|9 G5'wN_r+<뢋쳍tD39=jY&F|F9_ПK/{ROc2S;ԙ/=dr}y$6ӕ_ˠf/p8krsZ4ɧa;Nݙ'3q3v_7S]䥈{'Obg9W+5OyvCbPuw8~u~RʺDq)uD 9ΥL|) G𙡊+_{T',]@) K~tV b 2Rn*u@+n~Ly YsQ5uOZ7Z3u3qQZgC ҝ-YR>x|< P|U>{j}<V<ˇV-}5I7gqZ} a ߀On=:I ,SsQ\涃~avd/u n={^jga^ȯ~~R㎦_GF?{׽#⋠ޚ?Q[M_8ەQW|gUۢܤ5;bs1U>NH?qcAca>CQeUNmG7o៴?ϝӉ%&~~륧mT[ϽI__gAIO˚K䷏S2'CW3ۣ:g>j/ Oz;"^$7e?~njOZvJ~C.>ib?9Q1aqT<Ձѵ4.>V>-¨+|1j_g)r˓CrO2{3eR(?ྜu5~B.~)wȆư +爅ɉ8Ε3j.waw[xY쉰|ZSbooﭽTu _.X?QL_?Yg$׫s`M~[Qk ͷn'_+nY;M4g˱q\G>}~f.gu\zkY㺔`لH}'Sw(g'o=ݺUyѼa;Ƥ$QbkcܞWDliO{"aGD~$ou+n?>$mrgDyCh~0@Ez¾?cZuΚϏ;~ƗƷc~Alя!W+_3~ǭAagdRέxܚ3W^~`LjR{"}f|>Rj(s͟/Ԏ).2u3~as>r_xb|j*w4e2o;-Zai>@-?EQ9??mPω39UL9b(;.Knjү{Ǣ&6^9cJ_p٨l材~ϡY5es<+/ّãZVUϡljЂ?"&zh\A{.}Q}mQukPU?HtpJY'Xg/ oſ#Kw;͝g7{W3.Wu~d=K:=Y,*~ҷ~5>IªYN=-˂^NH!@/CMT7WG_~%M^~z+zV%Yp&?uz/nm6u~Wߣ۹V>u?"|Kqu҇$b៿x~z|T8ߘ@o! ?ѣGbC%l=z]뒧LV>:H=znc;?_ۜv_?}5L|)ŠEC={I/رKCo/~|f8_F_/Of^3gD;Y)ɒR:-lb9Ƈ9YQ]vVj}Q> ߾ 淅_ptg]O(r`3 >goc%#W$ϰKSiA?6®Pos\ʷ{z]㥋]3Aa{W+6aU _wCz 碛#w`0^]N _7Φ2]pN> }L_^Z݇:~7#c^B'/;pr z[ ,;b}N|#ֱIƯjתVli_=[ wi -j]pL^vu?DW(ySʳ'KL@:c(gG]j7?_G4 3R{|K9v˩;ӻ 22B\`oL^?8S//L&pYjㇼT\lTLhlV9n?F͡7sEc~73㼯%o{]}?}~+?ǟ?|!(z'>,=+x>N} ϣK&>vnѯmy~wMt9~:@ľ=N">?1B<ӊ=g59UQs.?OPs`['Vq.>g ]tC`p&`a4~a/x%䯄@_auyQ5®3w u«־h癕zg;zY]<-QᏝzGlD[WO>1Y96 0~iF㷋=ϩy?xdUpv _ϛYᨘ] D9*|>5)?Tܮo`/5z?S13tkKv<%>*utҊR1Dh8Wgs[2+tJտ)>ާXcȼ3ѥZ;yW{~BÒOޝ:s.yLJ(.ɚp@ꘃR<~Ncv)Fs $.p'U<[t<}y||t06ZʧK~yɽs3^u~ϯ*b[gKpt¦>?BF|t0y&RTyO3Wr²_)loʱ.}M5#{?1} +6G/1 :JU[t$=zL8)'' ?TwzPOz%[_HRϪr?͓aRcr}~ʷtPߘk]?u {:;٤Xfu<3%?WS"~s]>lKR'+xP]1H>t.iqXL _Xȅ<#ϙ+t'0q e_~{H,(pK81DYgfȶb3K9tǕm&U#Q'|[ϯNz\`em婦Ź>.߼\߉.;|f7j{ߑT_u~W䉼.n(F6WCT0/* .N5}+I|0rkKw~!֬qt(?ww/]];_gk~_ۭtql7Kr5ӌ\>Aޟº;,?G/0YUkv_VF_U/=9DGп;\9?-Ϗ+%I/{~UMv6].܏:>* +@-P<;s_3>}9uwDyɚ[De_[xY>Q}$sO{eQE|F?~)| |N?"y K~Y@O]#y?7*~<%_vl "?o+rmilyQץRLgߏѿ9~31qqMw'IssRјZ-L;^r E&4\ZEghӖ[VBMUXR.?[?%Cw~aeg( /dVZ_7¤:s_e).9dSgSwٿqZ8W޻x;?[/П䙡A|?uuFş<~ϔZud?~TOFOse06/[QsO#lw>2%WFkn喝mɻz/[9^I٪GIf/~\ ?Yyم1߆Ҩ8u+|o@1F7Sſ߁ 1~vϻt:ȵdyǯkP4YktQ멄gޑ'տ?sK~uO&纟6{{ѻG'7_DWT>_qѭk:6@c密[bdgE-XG#=W.:ޚ4njopH[ey6+giu;z߯c9?w(E3]kP~q#ƽn*E=o>Lsޜ|{\_ZxrWgz'/~L~.k>9R#Z d J?qόjٷKc C8mٱ Wx;~/rM,5c/.w//,9Ug=2>Dߞ1Xyl>5?g҃-=|%YWY?+(>@:Gs1]̍Pc;!}=}JjL.lٖ8Z}gi5勿/;&jZJo_O?% 'o,4>/B?$sjߖ5pvЃt[37$}3-DTҙ2靥cAPϋ{|oTjOҖҮqm5Fnc)s۞s}|l?%?#wX/{wR1OCb;^q7gS'`9? GDŕ[u~4z{ gmx{fUsF.i>ӭJͨ8OK~Q_a~l<z޿\ÖzvЏowL>P~^3(SL8: "aB7>`lpcgcb7M_hU4{XA)+y$Ϧܕ2y| nOnA+שE]~}S+1ާGgnN}<_Xm11ഹ Rv FNwOk nUu[tW'3@IOT~s͍Q} ͿDe,7,CsߑSN99X4CYQ&]wx,~e 2r,>~86`m8 i6} !Lr9|Qlq"Ya'#R?<,`EQeZ겄3I ea OЛǗS5F>?|Z>8ΉQuޑ{FK}B>|XnV_¹R'ƨs7%|۬ϛS~ߑ>Cݥ:Pկ^9fp: 'S*~cS+E?.9ZEX ;}4jς$~~>+-)"|,u33_=|w5 FJ'vWq&wLgaau_9~5#){'/xgs^>@ Ll!_] Jf *ו㹄[yGZP~☎ό@/՗6z~jH3q ~Q9q)tM9~/PD nsZiKW+ux}Ag=CB_wC+.݁kJ!A8,l.r@gӿ.??oI/u)+ ͙ le>{߀N\:rYk^C"\Jޟz]sb%?'޺ZNԏKC\?Ov@'-_Or)ر\.zyʉf<~}K/0W7}횴G5_LZlDw?b3TQ&ߤ>Ҭh> e538|ۓ;f,k}]sZjJyNlgPrRa/EpGzy$_Y+_p[~8ub?>[KI|F{=ODW) /tsl| }ե;Q+♡/u;Ÿ癄+9gb4;&T ?Q{#W޻@qʣѝ?ߌLzΙf QaћčԜKp[5'w">My6C_ gt-Ow,KfrFY)fW ڞZ^OL:?B~V>xI]Jt?;?es#S>UꜿL.H8'fo>aRgp&`sL+e|h JI?6.kϥb@3t0< sO /|~8xoRs dx}J{t=OJnhK:ƵQsMnZou_K_nQm0Oٔ}0>K\ޚr@8SoLYNK~}P=Zt_>]f7u`P^T[ŏT Czݵc/GحbsE_}!ןH< cS/{SO~ѝES_^wyLEf񙹿^}I'~8H?F1AT|7prZ " dSs$Kwt|Nx-ĶLz'ɗ Is 玴Cv3sU> LO4>no r|U.$/oT~*zV_ ?uwL DЫK4C OKL<S1Nj?<2xgLg %*Ŧk_Ɇ#Nz[9ֺUg.{kG0&?)YgҞQl|ln[5B'ʁQ{f~s(-Y֊17y!O$/:1~hs/s7$_=qcnG?F^l1ݧ_ߵާ[oݷz$ɨ;C_@r>Kbs?nVLǟ~'kFPS0mBNSInxVGҟ$ۋ-~}.O巵v%r/Kw1gK^mE;z8^WySIcOyoxϙc̏y ?\2}:4r+'޼??ai~w(soG_OjiT\1 )㴷`_?ۧW-ۺ'j}/˹wKw:G~=ҏjP_oqd?O\^y"@-YoG/[,jKԘW¤ZG-z[ֺ%{ݿN+κ+j.F/n^U#P='}>Wek(A ?\ng_w\G/s1 Ƹp۪G3?c=|wGtw*-k5ܟ[~{Nz͵b0Snq ]479!_NNJ/%g(q~#?Xqqם"..wnΙ=rVUQ _{nE{۾QW_ Yv|& C6ʟC_<17ߒ_Օa=<25*^5]U]+wEsZ>?pŏ\_Kvs qn{CͳR74#^tTtg_9E{Z뭊#%>XA~109ggdZy|^T׭zV~g\ԚIտҭWWNLu|6Yϳl:ɡfywf͟F_ϒC+>ǔߡgj>*;k y(o1*.j_kK3.Q_)uK[\)i#~gqi~/2~:l1 Τ_wϡ+OpgOLl'e %uF#kQddɧ+v~}TAuh l}^=_zk?qչׯWzo+?hU?j00I^|{/:g#4oqc'wu}G1Ͻ7ϺZZ:Gb~,i; ׭!߉.g&~I?Uߏ>~}'/?:_p=ՐQ1WW%??NcyI?ٹضU/|i>G%ZwDv/x_3߈,9] SƮφpRԙ:;9ۜ~~{ *bb_5wEܲncO% /-1Ƕ_\aү/T/9Swgx;~Ͻ:%jmvubh!wώ-=04[+sޜj|CxPe🱿+^~y'Z//ү^wFr1ﱹ_K1:g'IeG{k[V+}qU\Lt/3B> 0m0\fz0|0ʵf0[|eVK sO\4>g侠_لU,pba|h3q=s 4fp|9 '2d5`3;[~pF\㷫 !K}|w~&ψ `3g2312) /`UW{WU~^.> &2=%y0S4_C:_!t*5 '5=4#ت8;QqWngĶ7l1ۋ.RgP1K}|aoR:-N'fp 2{nεѝŤOyeʱ36)zDD^,4U]VlAmKtJU~GE׺{~H—}{ ?qQ%g/g.6XH6`KS4e<;}WaY3УCu;N< ~$m-j;1Svo)y;S6[|ݢQLtŹ>#cSMrLfp"Ize>GvY)e7=)'S߁^|9*Ν΂gksNݢ95S9.!/vZ2anԨ[% ŸO:P5yG9T )Q3e : ިO;"FwGjF|^lf"?gfj][DѼya 4.ž)`CV=~_39tWRGS|f帐ѝ/M|7D1;KAHsb,o@AN9rCE(8Qu墨V =y\5q67GZ_`kGzkhD/?[t|:N fc$f(A`?K]ԧ†4kRmҨ3wW= |RW|=|gjQccbz>s\=;%_[y*kZҟC/:;Zu^}xN}:ynޛ>٘2οԘߙ̢K~߮ɵnM~'f7Ak^'<̾/~6eїܢ{n ٍQoY;;a?]jNc^页I3>>33?/ ѭD +@_'6]ѧ/LBRctYG#㻝Awstm,yg|jJ[J-u'_O:qNg4b_RvwH܇ِ:\1?}ݢ6&x̊3sE?{|WL$/ud_ɊoŷuC WzI>d}ǿ#j_{eiХ{0|kt\.-gЕʻ]cFMW$ւ~W?oysyJf1Ŏ{ y)9X+dx.c9^ck堾[^yIȁnC/Kp;_!7o^3=blP=~?-rОwxcg~0_O)GxDЍ| nq1Q+3V;$eTgtoߕslgSq1ShPX 1=_C,T?y6+'z QW1EQca1l~+?і1U|?S6~u7-EukߟR M PǝGR?]#|h v8l( Lw#V+aN3!R-_lY'ugG7~;Lo$ϳ3?ibgϡ>c\1 ~пOn+"K;z /WbWs|ɯע/K>;6:w`I6v-N/Q%*/ #(>lw֞kw +&QxJNuK'34r3Wrň虥KޔOz}J<XT{yRԻX7}UTR> ׮ѳoK NP=<$~.3];,-?ߜ1?^?@wW`մ7S:Ի>y3g ]7$ xMDž潷ޯ{~OA=n2݉gDBD|^m(/=q}ܿ?j=]1z_޲o~POOyx0]8?l(+O ?ѵY1NK 79EMwŶ8~Gh5?u<}x,FF1~c5F/{0i?85S1ǡ~YX3Fevv %An{_x\z9_}VwvҥmY?^Q8cP{Gl> ~cPO5;0k򙎍;W+M0ܲš=4b_oi_yֲn #{tOn]<1Z-k$uvC_89 _4wgChϳ?oWEōv~-QV*_źu3*$qf/`"ۻDn-Wv.ﵩڌʯyTW=Jb*&g˶؆G_Ьп(j z]rCˢ-Zѯ83w?e nacTNSx;{_#CK۞u}[yw1Pyva^ulT< .z{_cΏp~)\TzVt|17^[; [*j~Ⱦ^Xo}GDſŠ~}Pv~XCq] +w5ZӫRlSzG?_ZI?F˽gպ?jkb|CMuou1~ٲg~<KsBT bHCy߷ ?3&=D̯Ke,*&,q2>2}1v}N~?ϗjvm>;ѽ]_Ynǜ;~iQ?qbGӗF {椑Y'xi)l+{feU6YO1`"C?8.P/5/]zft/1Cw=w3ȿ {QlkQΊϼ3j yw[pdži4^Gݧ?uQS]ĖĒs1?SЛ&ȿ uTaq|/y-.cJ~7W3SyٗuF!{on?#ў?s%Lzư_C?;X QٟOҏo7ᦨ?P ?q# |u^Uۀn\Fg=j |-L'zZ+֎z\) EY;Oςrq҃Gy(%W¦<{<ߠw>eYX Sm%bgһOo"['G`}f X}#./S&$!vasMOu~o9gB',١犞.C>7F.wkh& 80yYC}F kAx7'qWs+\F"޷:5IFnp9ZߣMѭ_m,:wYT[!*f;_KLI~ GBX//LC?{^TOo r%+ 4\jMgMO8s\L9q,i0 ,gdX S._ jK/O^ROҽzw틒K3:tq&9~ 2\ uEQ6Z=•Rl{u˞}v 1_sVFGH~kwᗲ_cKʔmR1!kҵ _=˼4Q},/%cTL7[{'}2iḔFMQs||7c#sϑs[ѝdg) ?h~T"j ~ v{^X(~o⵵.gFuc?9,{S-\ʖN~>;'NunܳoLΛSM>Bi~_K9ן|sX<a|$訡x\ ?YBɃk7dBKž:tqH]9C-zgӿ4XwUTn}:/B/Շv{W<Ljv|E kŹ-YWs1=.^m<'>?EG?S' 8$<'SRw~2ymϒkh#|.#Q`=򾞳>ZO =w}jv0\L9ݹ;bqU=D˺<+a'nuvya^jobV8OACvνQcߛ~tl^9:G4 ?ƏEL%|t73~~9j1=>î߀>r -z)"_ ??$:~. E@y6&2\}ݲ-_dso=䂔?yF8/ivG?x}<:Rm/ql//τvǯ#UDz{N21ߖ ;PXSPO{aT G,)$_t*e;ձYjY@nV9_ߗG{itK_)J`ʲtߌOrի{r8>ڄ3yeQgaR}y璘[5ka| o%OGrO*:5/F.F?xZNU0+<3SOJ o|qQ~[ޛwIʉ>C1U[ضS\c#u~+g%x<_/ J35𐔏ÒvhLp~L/hoEKtw qn{OR?gl0:^3Eu]G.Gސg4vG{VzYQiX+/Gw~gF_|NkQa4>pH^a|l6k<.g>շZ>4O՚7ni/j3Z4_ᨽ_|^#F)s/vGy},߇_?CgU; /CW8sJ}A9^OeqktbWJuc[1.Pu%)5 ?Vn_N%׎#}#:sXKunſ[x jocQki_yoWپҌw3*?{9oJ穼}cT,čɛ@Hr?uk\램?o(u\Έz;z_t?7^ ;.ϟ 3GBzcCwXHs婐;A Z~1^xYzuOZXmݿ80=8^ G}(Y=sKbߡ鱌8k+O\Sl!ѽ?rXM[Dknϭϣ#9?&t_ДVTsS?%ѿ)(pz|w?P#qcN_%j{:g{{~Ng/Vƭu O|~jgTUoDE~ƍ,G?Yh(䬰]lseo1߆ҿ>nD4W1}>{Htzmzn*ns1_͵ѝ:~{vm%E~=g%[vBϋnG]1J~?Yp/yQ+ǹr+jˉnx5lJypaG Jz~n}~]ԹcWw8֎4/%YwMY+O!Yg~oߝ\&`se[n_unj?GWjώ[AFGFf==}Z8!إJQϿ.3p,>gH'Lc[^ z0GJ_K/}{g=+'skɻvT.;N^FAIIҋD߈zzS`xKuW%C,(\,|&]A?1.tuZ뽵gU#^"p^!R1t+|A_+<ޞ>Q0Ygs\ڤkw;RG)kwa߿ SwnAYӳLџ|Z&+J?gH{f£)`9FEQ{}t'<  {)5wJ(Sy&J <I_mۧWuxtn[?އ[uiͯw߀=Vwl<$LFWC?<`dG9_9z)Ǧ!vm r n~>砾T>3~OS=uyf\?vKXOڰU/O%@0D>9xRmU&3n°^/],Ga~eWǤ]6[R?y{_kNn.޽ɛ:~z?\lgrE_t y~|H_mqxgsZvc"_>ؑnzng_!DF+eG}K;Τ, -]| r?S$ܵz}fSoKu/^NJ>A)Gѕ_o<lNL lM^?T1p\g0w{l[o W*yqb*l)_Lr O|3sx>Z<2;~QF? AiYj ;t*~>׬-]hInP܁S~pn>6gןgZŰyg꿞뭽ŷ/+範:E=%E$bw'O]?l)5?kݢUTIR &sGT &y>pڏ/]~J<x_p)-ItxOږc~7v{b[ѓgYzEu.+7>(43y93$yO9x1^lK:tr><بyfſVQ=v{wc)ڟO[+9r|X<;?' =ZlE~Ƀ~0e< lrω%NLpKJM F_'9ɗB;۾IM_ #\Oǔ?t ai΋g>2px|<?13~\.yD~T"I+J?>o<&[_'lO#ٮ>(Ŷ/[|q1z[+|ϢFRb/5yNrz^BPy{ X^Ju-3y[s],n9fjalW,~n);/EwohvrD5b;2ALswƵ)soWu83'7Nr,ek(֫ywυw^hz]ևJn|ե3J}aF?:{_W,8)9?W>uZ{V_8K[Ͻh?h-'q35yz{%7n̵̷_H}SF77ڇtlGۧ/Ix¨=J/|p.:ƙl=3u߰߿3jr\3)o<| q1L\0?W|xJr_CϷpڽqa_}Ȟ_tuT]EJa9fcr`b3Tz*ꝇ[_;fK~$j-@/ T=߈ C7NB_RQ=ǿCoLJSk{ᨨ1|qr GT Wg =r.;Ug3[Ox<&^_KO#?]I70&~cFgoO  ~I?5*~TT|xy/i7Sr|#FFh6k+{Ӣi_e[o^){tT{歳Uc, ʭ d}Rǂ2;]\OE}&:o3F?jtr{~͗Dv:~w>z+ms[qq d\jL66DŒuFl~tz䈨6xѯW04t{9>j>Av{~\l(O$DtYQsn%ܥu Gz6.U`qmQg''_>cIl˳KŊw}I›]3;#u#IaO%sZ{_t7vK֭z 3~Gu+^,;g dx5)?{IWyQW/p<=WzS?,{+d\vd]~{^/sտNXxveROvb6~ݟ~Xq|7pWg5{ED߫dyl*2rj;%Q{plX7C_ڷ#~89R﭅Ho\j>|cbX,0eCK 8u^zѣI/jSTSJŴTݰ[x/gD+GK6>/}K =3@p]K4!375 pz{  ǯgл>/V;<ɄdCbћ>Fz'%xA7/R~KʯwSǿ>#gDϼᾟ[Ϸ[Y4晅#oӹ[.{UQ') V9. ~]EcwcUy޿ ]$o+'X^naO%;~׺un_}.qVp orϗ.~:G=_s69pS}ݢ_{$kAЧ }~t5)ǖ_ &_}5 %]]Y_G)} ؍@X'G!S_ggH|=;4I>lS>N-ucƾ?`r>8 +n3RpNs<0ϝ#`p5JˣIY5Ro?Qqf}.kn9֐[ؚy5yGwϚK8ˣZ{Nx8WxGx/ICpזպTFnbR9_|-IWF7{^Z*~CRC.4C}^ᩃN/M@ ǶٞZ7;froo0%R(տG?_*..)Uܛ{?^.j{WtЕ.nA+& ͸X{༅#eV9+Ru]uσ^#(uWZzkw5޳5e~dУt`Gw%67FxQ:SN9rļ_'5kՓ/LdBO甊a[1E~?9p>Z*.?LI|.nYп*Q/!uoSA윏H8T?%/}s0p*O~hPNQ^-k樵)vs{khҿ!Ȟ)yWOX7R~_k|!l-RoI}oߔwr{Wȳ ۣn<;_ݘg< uϬ|)O$Oi&o~'lJ ?￞yPNsujAIGR(熿Ý 3Z0##g䩛I qM>Q z܋O9.w^qX|hv_-e:Ŗz*-L539rkGxY924>rI }N~`T{_4r_ Jw<~jxԯ}2ҢOI^=b-n38WĿmoן+ V/g:Y=~A;Yp/?WGr/,rq3'FYwJ?_30\34S:b_rprⴷ_mѩ?ɞwHz~QK>Ȩvé[ seKS~߫KwWJ3S{sYVL'uC|aX{\;:Ӳ_fzE5;BQ{?KCIډ7ߕ_B3| @ 7@?f{ɨ/A'o^_'utl̅##~+ܫc%j{Z{\f?p}Х3*xlwoͯG^J>NY%~y8IsmTm <Qu[ugſϸ_zG/jg5ez_|)_/_w4 B+W{\r1oME~{+v\k/S ?+_ReH<Թ(kK?;x`e١_y}}¸97Kyfnɩt#uK?(wߙ')êGo|ogw GWГ ;._r ޟy?{bzEسCR~'b͙_:QkhO.{Owv1^)R\r?νR~8f?к-v =~OJrEݞZ;Q 汥QdS#O@)?/NG^jY=1WE]?qQtw/ l+_Kr>w~n_̟ ~]<;|}Q ,_>[g]kŦο ΌϹX;_?j~7ʛxTq 3دiG^GY->ھߚs/=tmNMy2W%9ˢE$ϯǔcbZqp9t'%3w.ͳ;l4-ѽ&O_Uun>zf]^눝x/fnѢ⋣"eq/In{k讽NWO:[DHȁtן?}~y*0 /s7%/"&W~\LJ?!jQs?FWk~z4Nw~Nݚ9=wп!nѿ$jo+_5D3K6qSw|Y=+>:jU/{Cw9ߑݓ^36Kg%Ϡ)yyݍ#bF~WWtE=.߇濯٢׽OpQԻ`#s[y֚s~oo}c͏֭SG#\Uf_?.Ŀ=Mg| e>!^JHww-K>CdzƗ/)]e{S.Y^l|KA8~W+r_8IZݴ{]<{#f~Nl.ݞ/G~oTvXʳjTJܫ;ލox>J34<9W9룝V_n՚sZ5=f>˗*#9Pl\49] -tP.}?{0{/ᖠ{ouݍCzj%cor4f}eѹӓ &{^^?,`+9eOnc?'r_K^>*]3%Δ-ɛK= ל0T{$i^{v1k |؄7tP;m|!j~rXw'mFO%9buXx m\T|' k9h(@;wzi2oQ;qߟX09-OAw? Ub__ώ+ϟ[~k\ .`v1S:{e¨3 ك٬[s^˦z3O|KY<ۊn%'ܗ9<ϟ=/2+N> C/ 1mGhN ~*\9o`&¨sȐcˎljFkkxif13L|-{co=<[z~6WMy??g{?)\H[S=/;3eCT6ϒ@~ȟLJ?>ەK~_v徔{`oD\(nZɌӪn~/,8Q}G#+%;+|˶"QQ8 읯#kd=MͤU{zUt׮?%Ks~QjSPkg}ݢc~X9ԗjl.ٞ{U_yםosǥQs´"(9#?¨1b9Ͻ)vٟa?ظ{1rNO5;w_&ݬRMz?~+uW&OlO,f(r^@9FdVH`7s<CWЯz-"9eOC3t+Ӻynɭ{"魽~I!ŀ wU%|Kǜ__e.yf ];ǣk7C_M c$<|{}IbcdMޓ{=Qi_#sIAg7b19:sS''qѯ;_r*9)/wy6L?LJ߿o:w`m^R~|jc.ʳj8J}ucA_&<[IzƇcˋ7Zw+'Es0.?h4|b+ۣSSN8F|O&W+ Ki/;\s>ۓ 雺tLJ?- K9Qus5OAoһFGJ8>gYs3\*Z]5as8S^khigd׭A }n]쭗G'u{d`GDN5X: ^OoސtF K[ScjBy沤s:ߗ??XLk<ԙ؟('Qk>y>;@?iIo q`'hqgdAIHA& s䰔[KWWE\k_9~9t _^!>aI;U80!bQ.}.!gvvQTs|!;5"zN yuԺ_)󋢋#$*K򟟟2qH{WO9BgޞOO0=[-Շ 8xwj~4Ch5ZXYG\xI^22Y/ٽ LB^31|Iߕr)sqr>./u*dK9'zr*Ohtgxҟ'+МJ}E ޳8j;v5[c;l<I_^fkt>?]uO|xA3y++oi~ʯ /-L}MʁgajvI?)g&\u ^B`k5[Z:!\xw%Ӣލ:޺W7"N4/3w\E&]2H~=y8C{['!y_H]__S̟R~%ϪiP ox,jc?n-Ѷ-ZXЎ-+JNu;qo{{gR~8,"$9~,§ L£S#?59..~cvyP]wG [}=r >'yFFG?VSZsz7,+,[F!~]k{t"9.*Qg)~qGĿ\rWC؃;˾FǾ6^PY?\K*3u#ӓd w)]ukr¦Lod KO9_)kv5s_+s-qǿukM#䳄+Rmfd^jYg1bG/gNO;1\m/~>5 tX~דs_k>sݏ<#'?\r,zT9ߗyO0Nl8RY0]Wur8g'VD+o}Kп7~};G{kQzOY/ZvlϹgSVѝlXE+| 2LE;yRuy>w)̗<zA7<2)–Q>?/ZSޜ站[R5oye ?;#tqcs2~f]p9w~۟4pGw`胣O-c~;{FTpxxetttꧨ~}o }zkw^?xɹ_t=fxTp}?Nyxo fRlVf~vAے箝eN==#~ȳGt}>KF6>y#jg;5Bz]o*]v}N +&ޚgj10'& GFtOԯTgtW\j[|u뾉:k*zg z|OϖhУ+#+K'/|D8%\r~Kq?w0Kϫ?8job?%+櫅]:D˦~%p6^϶[UH<[{w}-m)WΨv~Bٿ?)g8\S#.yHTT{Ә ^̾?.jzOӿ0*x<}/9*eumukBVT#|Qkt`dy(~aeA3o 'Τ_Y7} ߉:_hK ׿Y MW*}c>'~_t/+)#o5<'+'s]ԙWGFퟤs8Vv~?w{bg!VE[QC%0.LYo;?O¯vugeSdx;y㽵dn7Fw-]ϗR.\h^; 1O~YWEI NJ?1 N?{h*ϙ~IoMf/}~S 0j~v<;\X.[+ᄈnrWb} ҟ#ǯc=q[+v[{x _4p8= TQ7iĂE/횙s?UK[qޚxso3u~|Y>G~?H pyП.k9"yTrJ\JVlֺGznk@vy}T[zۢvO`O~[-j ^'6>CG MӝY/a{OA?_.{~Źa]#={9HOi?_r@o3s.ž }\sn'_g){^PFg/SQOu=7߿Cſžb_Qg.?$Ͽ$'k+yx_g?>ᅰͿ{ _C/_@7R3=yHǩ'?'?\*޻I7˲_p[%[֭}!zLEſB_zH?2,=:F=$gB,.7%zǿUBv%wS\\.;~ߚt"FzS`Yz穫J_V3:sgGa>X4=/WyTQ$44@'0Cub+z:+[/{z{9/y7R1ԿL s_C zٜγkB7=u׏_:!jl*5uz ټ8kU޿z`cۻT%b[O)t_t1W[~?Zjo C?m.k~6an\uW{fGMK?gZ* WI?EoO/+]\O 9~|o+# ?+]K}C#=Ipү{A'Qq`bY%.S^DԾA񣽵Ǟ~cb'{멨wvVΨ%Q1wZۿ[y֜_'#W9~9~c'`(w ɳ3TEFDa^~?JAXK9?J}DL6(K4u!y\]\zw@0D!$O؃ɽuD͍W{~< VO!]xސ#~6jˠ`ey/7uo=#zkkɲuty{xrqG?R{z?N/' J\O^·qy_6'ڤ plg9<^qt as-}miQV^...Ǜ?rKR17?C. =yG&ߞA:^f7Dݯ2Ʌޟ_Y~ߦˤYX `qw|~!K]>v2 LT|IS1<%njQ?ՒSA9+_+yo-]do=|CIugE V-̳S=㾥Φ]?a'6?NʨЊύn:ξ&ß-D8Rl(?U:~\{$*[ M[> ߌ-,6]DUwp^ 3gD[uyQkr_ێ,u rN&(10=ӥPț Vȯ+8)Q){gtq턃+j޺=׊U4*֏M]}x__xXQsЛ|};5y{Q5'q~zS'i-~mtQkY t*yьz_~*uF<.|_<'$_AqϒwSVyb O}m#~9ʨr=HTRu /+HM]t)>U~=OՊF!m[J{z_5pao?CQ]m q4;NPǦNԌ-)pJR}ϻK},Ѽ-ez F~4Art~[<*~ QsXr[t)Pj/itݬKY8)y]ӥΎub$s}r| i)~AFZ-HE~%F TԼQg&|\)-ZdZ3IyzҨ>4iu8FS{ObJcfy{Ut奛ڒ<]p~Yx?a+gGBK4?I3F+7@:+^NGwEQ1u)3߇r;.߫s/,ηԸ~?)O՚6c_.Xy闙L!ߓ|hEGO_E6qVXnˎ{kpȵSG\{=5*fpncg埕kޛ3n]o4O= 9_)ʽ(*dW~S*i?]gq!Vͣb{kak?gh#u|e'u:ꍥ9qoNyWN]yvy K{EO9+„F#*]?&_4+GA{ʤ3Y;=d2|dlsS~1Kw=:adIg];8w(Fgkπ _LE~?$+u&f'^VnE3),Xt p NjVGoNVO坽uy潽+6zKe?~tR4*6/OG?#w/0NL?zZ_+-Q‚#aW!-~/..ns|Ȋg~[Z~/5a)4n.hO&eOюg]w i.;{k-=_ZW;zk }nނRu?_Gb:=}3ѯ=:D*1W$yFΏ˿u<<^bPŖ?A˯/]\J39^GnO ;Wwbן 9}Np?jN<6zHO3x5\܋bc/C{Sq©{gTYnϮz*Vn0]**E@a:dCG9曯[8~ yoLY=/#`sl_C/ge;%¨3){f[/^ޖsb_8Gl/zq^=qKoݒ_ӕ]P=z:_-P ]>,eɇ>^~L~/ڻv'tϓӯޛ=MM_ ʯXf聖|F_W:ޚv+>Ν0jOVD879|c8R _Y^ױ(*jk/MԹ/։+5ssawLK[Z_һ='~YGGOZ;(o"~ǮoϿE[wY~~u2D;'^k ~ase?5  ?4D?:/G sB>3gxOs_Ȃߟ"? -/1;9uFbVG(Gܿ?jſ=_oBw|ttK}~P秣O$Q.NY@?'=OT+|`I_y;jYTM??V1Qc-"P{uQsHo=9;z9ȩ0Sap?.k6 r-RzYcN/IOMͼs_^=!oy#L.G g/_<\z ecY+zs9Ծ~I<ыѯ~r?|Z=aE7A 7.=HgO_ x#ꫥDŽ~>ZjUWB}!;4yH"{ +I;=Y6T,~5;7Y}m4ǫݧ8xY[_P!0IQq˄SI@pR{o9z[0:Y|/k䧋]̆iMT(?Jz@Գ#䗞}_*F"s୹V?У^/ewe ~?=zImo}L%#zżs6/:ky0GG5Oxm%R1L9cZr{N~#6C1 /J:/.0K.]]k7z`լ[{=6_AžN#W)qzczг+KWE`AD|k : 9&ϤK \׼t>R*%,eu?Q{͟A?~)7߲=q>7͖}2< ٥ ½qW%_׼#הSߨ'?+Ov!bթ7Xw0:}W 3q}[8U'UѨ3xN?rb;NgM>Ⳮ)bW\j29WȟkVʥ?DQ{V9;)$7~ϔ+T*WIρ>~oM}A~UϕP|&sᘤW^r]ZDKzcQg7o/Wj_*&,K9Vk)|혨2ܞ GMF:{Fu-NTԜO?[ꇅ_zc 0U^Ѩ3U_tw$`k?Y*7u <=~MF?ރzg+}8ys{as}!| ڨyF_y?K~wFW~;5‡ ?Ÿ &vn[{_W5Rc<8` +?M~sI Cw8U].yFxy{t彅Z~2:nǙQs^n__O^O듗g| ||%x'?a>߮W8_i1Hw%_“\{Fܺr?UoxA4 O{C?ڻKg[ϼ1y];1&0w~UOEY/7?,#wE_'+σ.8^v\yQs?v:yݕ6̿]*2?ʽŔQ;,+p?F7FnD9w%;sk~,5lQ^BsVmܶ;gnVԨEЮ#~.p/+"\Jt3*+TS8U'|ث ؐ1u~>OsuW< RNi~6͞jYOx^RυRu{ )lOR66O}:f)E5JvqzdɵϟoX YGGU9*bEQS+홖?_r+/Mȁ1#~t/9f@ $/@oH.y^uE_O&Z;~Ws ]XQ'6ᅹ'_!V$O=NzDA;#ߩ迖$>qN_YsK}?9i,_nKt}/Vj 6~,C>~;<]yq ^7Gc'k=QK[My|<׭Qg`j=*eVRsǥ,;,#/NE7{8ljnZ/9ך$sE+q` k9);kǟ,K #>~?ʔ &~>>*yJ_\:'6ܘޠ +[@ҹt]h(j+Y_( ƿG{c7 |䒚Ny} '';p+OAuϔ;gRW~OWxeSN>z&uBg;?뵋s6F!~c3y៣J7/yG_zǝ>uҪaᙟ+Նyʭnyida'~6{O_~J~F/'m:k$>Z_G>d=ƵQq:kDu˻h julݩQ3vL,3SV%9yhߙ~֊ί3%j,P7ז?˗۷XzWss5ga(;32-$}]I;Ҿ;}e_u4{0KvIQ ˅Q{U}ax],[{[}-:կnNaa\٫Zo4"߷7Zv~=1xӾ8?lo3W\H8VKMU+UZr{o5x._)#~9/Wuߢ_kT\8??c>]\hZl0] {as9{q8Foߣ[JuKݿvRӉ<;Kφ?~y?ʨ}&bXswb$?Ee6WP02~q%QsȠ=OJ~8hoZ [[zYv!^wn??h(32-R}N:{js_?@l375z\~8ֻzVeO?z,>3qzGUCϿE]G?O^BMz>Ssd_[^/w{~ޱ>O,8<*ݲehtpz0c__5OF7 c a[;`:lI?@fT*soe*~Q=OOjo>CwOȬ쥯[vךrܼټ~? G~r*i[b%6 y, j\C&߱~MJʨuVݿl*cMn+IT{cy:_?\sbj՟K1JY#.wLJ7صKX lvwtBWpϓү:Ν6@uښ%y^U%YnONGwn뼷n~U?TX|uKtoѿAlq29{LJ9tp?LzY mIGiݻr71b|8]ѭ#9ѝT|}ݒ~~F'S_(/qAҐÓ?5R,]Q7)msCs9B?kS2~B㞟Z7]ni'Ϟ]y@z70kRψ:zS שQX_}ݢ~Cot꾝wW=rCȯT\|cMBeߖ [䗳'Z}-<燢??Q3GvT_ZƐehElwXuNH?9)&\Kmagɟ)r89Np6=O,/BDžBUQk. ˣp,[QsWD_Vt ߙ'W i]ǣ{gFӾ+Qw&u 'eߐ|:i|{IGFT.zդo䊨k3ig^Z.aǹ?&>TVeΤqjC<]?Xj{j燸~ KzT7Ias8|\wC9f¨~o>U˪FZIz7D)\߿sĿ䬄_*!{VO|I/z@͌f# Y?3osvkVdjk/:H~aoW ް^|y(֎kju~),[)'k3ۙ|vd 9k88f0 9x1`fǁ2Oӿ*=Fj"$/G_\)ͼ?Z*οzAs=4YqwQ{@W篋n;sf;jgsU9%Ml3pW{b~}j^5){Oz]tcrE3)O.#|81?;4߅>Z\Fw٨yd3zu ' |7DDiT v _5kGOms_zr2?ג?~ԙw>OGs8f0k}2>mg~[OJ}~1VwF,,'|!y5b'|-0Gẃcsr}r>vנw~5>K-ڤ^/]~'q.H>ܙϑK ?Nizn+S۷W1O's52\Н3(ꜣQk OѼQvzh[s佥?&=Iʤ~Gu.| KwsSVߞmH>AonK~b&)O>`O?=\5/ьJwr;>ϯ>6 ϖD'Բ>?QAR2ڛ~f0iq[vmRJ{ ?vY&Gj*)RF5[5'q?A=e!Ifj1N5_zO=x8SQ󇊗ωpy;{k_ Ȧz{/K:O:}]C#bf'&S_8/MKw9{cQgo9M}~s? Қ=u{xy`Aܜ~~kפyK'|>}i͊'|4yTQWQr^wܳY]F[k:;NhUxt?R= ;qE/^;4O.OY=[}Թ;}ܝg}_yw۞]F7fk??Ctv\Yv[sɯ>;S^ߝiGЬ)&Z<=9:<_O32=qqr˾b~tQ*5j[?,yW}G?-umCGwS|/h߶?&Y.N>rDY_Fl$h8:_>&%6l:ev[zgI6A?WSy,9dGSJf>??"|PcGy=,x{?#C/3Us_RsU.5=/٭(* QSQA|QEͲ֎Vےֽ04LG ]#ݜ+67*{`JR~~|ag2ܪ?oѿ,iF.ϯKR},(.\,4лj8~|s%Uw_3%ȯ_(Щʡx^sI1{~IϪW }:ggwGT*>bzu:|E1kqtZh%Mo\_ћo+G^k _uƮdӿkW{!qtWo*u ) '~&=Ӣkr/ۢMZEiЫ(5N=-?/[;O&ɴϼ@)_=i^c6jZ[S/F6rK]2y;э_Nߗ$M}/o)et}w~5_ϪRO1[/tSGs qfʿTzRuv$ ˒_{əsot_Uqbsr?WW[oĿ?Vkϻ!&wENyI9+b p^eګ%OϿ/EBgbkW:E&'E[Y_{EƘbzMZ>m;٣ݬKGO=Iy]'*O:ebc Xlm~E,P~Stq2y;&/ίo={鮈+_ӶRu)n_k&W%VƦ<]ܐ|BE;Ew˔wOoOZٕP^k|ݢq<|rCNz^Ͻ!gI!MJs=o MϾ㱿&F?z 6Zf(}$?F{ߚKYû_+6v˳KÁA:Zu{'t~N"vǯfYs=ǿ yR]x>G}ؚ!=#~d+.'[5rE;>3\F9<s¯uQkN[bX>Aiѯp/ww+Z7 @J} ϫqx;iէ-1o{?}bف!U~{!+F| ץk~%4jHwI*UK_{\?;VIe{.ˎs5ݽs u 5Y/U~åߒ8k[?֢o%'=_uBH-шyUS_b8?p sg99*_[oBQ?Iw=R34C֜\B G>3<£K^cgz&K{wqyK]qlnѯި5nϲ󯝗I~K1#gʇcmѯ9wFO:ەT ;Hy*ź7Vvz{uQm[~ukyS>3j<Sy${:! ݐ?IWQ)IO&^=}=׺V-p7?mhYoYg娾8XZCNJXe|zt7>!ͨ8jvڤ u2_'}=~הύ4߅B{?NU~P_޿+p :y|~bͣ;}SWZUN*U:ıSI9Iqę=q`61Ǝ'l'$BO$!@̈byH|:{;]UZh~ᄃ}p1_wMX?W8 dTojw=Ε]~ m_tLgԒQ0;њ? dVx&9b19~9SB]Jy=&gscԯw?R^}W;? 7֧zE7GW~^8ۣݏkh[^>u/L\WNZDKWԦ?B/$;s+,s"o!"7z/L9.ˡSzoE/=T ۃ< O!}H_==) R1[7܋z>mS8<|3I^9&ye^87y _j}{Z ?V*Xtq'vkr|\{kL[/_uiV?x?Sn<^Sz3=UX!^`z㼥TIz_.yw/?q{i2}lrRq9ؗ0!g_H:-w^.*[?$gSN9Rqi .=jz|,%k#uO~g } AA_릢ʲ^ndf:>sKl^kWF0z"xةW"pFP䓕vN0tZto}?vDX.VflJ?Rg$:9qԓ$y_=}_ym_l˟˥bѸ;S5=}T]J|'/xGgyNۈgĶ ^?eXx!ۓU OR}3m1p9܎#ǒ}[{9Ë_{'1sb{SNޡw}O/;JwN7g Nyy\1g8 ڪ=o ݿo(7R-L~S/PW'BdA#8²NXd(]\L6iZ*)+ L'Tբ_x!Џ-XM?`tpl aO_8?S'xJm-Lc=nuOgÓnŪ53GUO;ҟkb_II!Fܔ0粔׳6}~Ӽ' -9tKY;~rk~},*b^п0*e%|9|/oOW,(-ޣK||rSH^"%0?RkOKzsO  D X0''Oֻ[(~ {,o;=x|'\^Jy[ {~U3gF_*3>; zo*H 0d :Z|9s\~5+WJ#s>2re&a*PMytt}w{RgMy )k;,L 7?\͟3'U]z > ;S[z{As1>ւI+aE#M~?U_Ḕe^[(ݘ" ?=*;a) %ז}L~U-ld{$/]&@cwOCO~8~_V>a钔iӟ:sыQʪS <}(~dyҜIv;bf~:b'ZunFK 2꼅P#E^BnGs0Л>g;W3f _$iߓϒ߱>? cRnOOBS_޶) ۢ;Hv R@Y_^. %7F7Ob.>|'3VWK[zrSXܹ/J&VlaD4Z\іּ}1_ <5_uQ\6Nѯ$wavJ9RNM>Gg_8o7S|E ]^uOvԜ/5"0Ww`?Ȭz^=0QYs+v%O:o\zF3O3^;htj)?(`(l,uNji k|݊[域 z93Jx\Zyddμ1?):sUEQwQ~v)oH}s~rϱجKr/no@}NBVvFWD `ǒ^RII{k~Nx^?K6anϠ9P{WM+uvKs;t} Y_1ψ:S{2%'$,{~AW'֎k?>uɕ?r} /MG}ؗznf1+Nq?gWoͯ3W:SngNۯz9{y;*pɯ`:WNn}7/++ܗQkhR=e#+MY8"2tUү| :Rkɯ|~W5fH_[j=.+\+^zx}=>:6}/_on֓aX{~תX[{=ۣDLzFe_ן)"w\lm~O&^??Gf-Gf;G߱3R>!kz_RO[r{v׎YXF}-gǾ?*~ xb ˣ;_N?xo_8> )_C<ΔR~"w.˭>.#9ߔ|ho=poclSﳁV&_<;_ѷ/D\#%Ϩw~0~sѹz,6yU^W;r_1κv~&OrntW6Z86kvz{/1\x<r}}CWSQ߼^o~W asϿ5~w?;^I~Iq+( ǎsv'Ww=kY<[Z2po}Yl32^'ɇ(,E{>q!?C|W?3~ǟ}M?6yRt17$Dg\cci궄!>" }~+_{Nלtvtf</"w1c]ͿJ[ v킨Ώj7Wca-M>x2c s(/zQ1x^b~aտ犇Op- mqm_պ 3o^ E}t=_ŽLz+y^鸨wM脡V\|C5>zvut1ܾ#NҨ=ҿ>\MscCdt_]QƘ8I{O&~Ӿ<,{yfǫtunZ:]u+^*=uا^2y|uit_KR^tm!3ywwcΟJuT<7-nyDmƴ=Zq?w?O<2eϋ[(g6B ~ ~4x]9+7VyswA9FP?8OFׄ/4\cȯ^ъ=GuY5{QV۲[gt5_IZ?3unpks?|귑Yc "|w8N?]#=<qZu˜[|Ts͚ɀV4c{_:<|uK~}ő.qɄ'ltxi#}O\~Ǭ_z>@Ck?~Ѫ1qu̶IyXR|UWSL~/3?t Ҩ(WrOw#r=㸔_ÁBzyQ4|o~,^wDG-.y뽵zaL?#e@8{6~L/ o.y{gԧtb`'<[*vONQgoY?"A?Ǘ:p5 Kşߔ Pk遨h&4zx栤S?2bcݾ;ت]9)WL G'XX:;~-]BXvE}p#'ųzoݲ˓ ߄!;Or?;RG:ΪǏϳ':.6 ܺo= _?zu;__qΊyŎS89.'K&2~-g&iw]"祥o{I9u,7ACL z,uRmƽ_ ϬL^~i/&Jŵ;tEQ͜r\;poԯ%h|T(X{e=|鞬}޺, ZaTT.8ɇoK.~?,3smf?:\n̵$Jo ?`~Og?> {Fwޕߖ. 3?{ymʀ𹅻m<JGvKO:=Gr2}]ʯs;<]D[5nO.Zsv y?,Jr": >uS_[KWFZ]Wh~Ȁ0c_S#$\/K~R#1o}7?8W?&.2~SH_#յ'wEVKY/>ߐ&y>zBҩXW:Rg 9Q {ݩSW#ǝ^2?_MZos[ӈk;_%aȊ< _/U_SG?310wGzp9%;g'] cǟyuxc>S*~)˫Kl&,nF\.ޅA~y|PI7}/MLWtiJ?ݙ<)i+Ǣ)3\dYZ=~H{Kk~fHZA??ݹcԬ,Mz:&瓽-nZNpԒQjyQ1XY/KYPݨseW?Rq #g|,MY.Ss?uT| } w ᅵ./La_L]OK>|ă'v*X}F^/eލU- EQm/<5 R*;ҵgk gW#}篮}d^=/t }gԼ}юgR[;u~V=υ/sVa7'/Yx'n\g[S&8_tfaKA6K?n<.-I_u^$xmt"oRg3>?t6>[cK{M~}GZ?/ϟ=M>&ܑ2e_Yv쭥]y]|#$=)7"O Dg"w&w噫RPqeW)|sJ/za#t%G׿lz$kϦ k3gGCWZf_ﭽosNmfT"pJUw;C=<癿7IBKݕf/9XP_wQ>'ås?ae[wstU>ϗxU^ȔO:.4] z(f`x 2~[.{(+B7~!-=*Ok^<Ѯ_}}|QSJS}s_sP'|IfYt\ כ vvѯ~|v'vLu?yJRxy3̯^Ic%Aǿ e\.m'82e{3aCg{i+cqݣZIu5ۄrNpp\WђktLu1K6myߑe׍_չwBgT'bIóѿ"4jIUt9C_}ʏFr=lØsnTu< }L  y?0_E˽ղ~^ViUNм'7 m {ϋ*U㴿/ptkrݨ_'S3*yNi3{fp[ϷpM;Z gX ]\;>߼~Z?a)L]1IwQW? mpb{~l`t!q{=ýtzk{ף:Ex'J_gc_MYWBK_zK>1ϡ9{=~Q/*As O۳䙱L?diP\uUݐb$cw+l(T\>K_c CE\<]EQƴ_CGlSUW/qbw8%߅ד5K~pyy%>#Џ=U/bLۯP|wIo.3rѵ{dſ: [vV!gF!s>Wc<sC[G/,nߝTXF-U5F8Q7mt͏ZO1ǡ{.Տ=_5q}>glzU?>a&[}; #7DwݢܔM(|?4)vye{ߨqYCZ [_?'~5͹P*oeCwNG{ixPx_C1D"yxp8!D[SK^Ӈteؓs<#y}VӍI>Xc.y$;ewyO׼C͟B~#'JY+?]yYҍMؑ;~w`¯>9GK o]٨gGnŭ-ylrV k?v?A{I|7P'Kw+>0I.56<>(~y'?!Ǐ&?1Ko/7ᜨJ?挼 /sy4ҍkaW.uT+-ٝN_>Kա"o+՗Fbg/=;Y_Yv_~se^%l 37UדU`2~…w6W/Ew"=oɏpwE]fsu[#~yotitw?^f.|7\\!q53?ק_}kbޔ{vng8eAsQ }e|FL=+?wg_ϙˇ],}ȧ9C=h~I/!G;YL\[j\?Ԝ:)WEŏǑ]ͯQ{{g#jn ~[gLt$/yr|hlxG*|gT]QsҜp+ۏ}-{<axa:jIҥw>j{q:WR+StbyeEJ?vaec9\3H~3B/~f0`5ۆu} w`v^,;r,oj?5HgRgA'_1bJa??[|<Dp[~1=`ݯwrQ).1KkNкWwڜG9B^|09)6;gM>_o+#坠}Z_ޖ!gx?sHzפ^rsrWFwꕘ9}o~N8eKw2r/}IsSj rW?=Mx.zO?_T*~k]v_ Xk5鳜?<<#(5j}IJՊK {p>)~'UR7jTwLx\/nɝ{{}3u?gEwΩaGOgb0__4k/ܢKpޟνC~=%e{ 聨3_vFq}' G:_A1 6UqIsOO~=n:+.Kw sV=Zz_)X\OdveQtHwkjMq"Я:/ui;7{vW-| ܷEU8|fwzOqnIF5'Nt؝>. ѯ٭Ο{دWf|e䀜f&E]#υ?]pbL.ࡨs/nG]C*ћ&]G$ߜRunbvbs=OsEeWoѓz@=֒'z뽹?ڜs:gw`''+l俐<$Fh/*uPϋ:O@cy qx~Uq:~۩)< _}wՠ׺Ex~g7%]ދ`_[(Wu`_#gsr=QkYg!ۛ#\|scPDwN~ןה dqƶ.K ݡ/L~A.E=?,Lqv-fj?T տЯk#/U\ku|M5@ss NOwΌ:pvW=WŖM?bsMu5?TrNCo/-VgM5vċw?ɯSiVGy3OV:G;`If⨱|vkt>?/5US|?%w*DTzЈwx;L9ŪXy'~}T;7%=OWE{z~}wk-+{~sYlxG?^mo|)g& ח:;UآUs Cti(l^WӇOdSC !ri_'rЯOyPr_ČGjC(̗G|EҏGկ<%ϋjg5׬ΨGW拗&?jܵ|k[{~#>>?iEG^{Ub`rW?Sf|?3>Q-P/3qv\q/9ԚPd"'('zk~-UCuNbw5rpPw_'n~I,V7wR#ޔ_ =~RWr^Իjz^kg'lc/ZDi?[7Z/ڿU .|Rk}l=~:AO0<ޔ\?W93.oѯ Twg?{[x}'>YWoRCܧ$O8{)\l >)i}t˼sV3\%O)9ށ]ݒ8pW})%VZՏ4֫WCԯ_mUF3t{=-C'q(̟sEgr~J1sK~N_ ^?ʓ7sX\2:I͉D _s}Y?@Wt•R]~쪉@fe(S~zd1vSEǔn.B:fs?+KO"FP3WҎ_' ̋ZG>]Qc'~l9}C-ǢΒuI~ǚ|Nߊ;,xlYtҾJ? zM~[$ni]{/B;FyP].w% '~y,?Aq0M>1}h}?m|.y+?7ށ㏹u'5r*WW&H:bNgG)lo-uD)=<,JJ~'JKmkg9__ߟ3~ݑ)ftbGty\Y!}Ut;c~Lb(U[{fUQuN{hrVr]׿}5D|gJ4.E]x,<}CR{t_ןc nGoUJml#qbjmxYzן`=bo\nwOѽ?r?ͳ?tkT<wnIYCNo ?EG?9'I9 JAgC>VZw_aRʃb3'$_ʹ?j2<62~A_){4߃aw/119r|GȱzJxEcK9eoQ%]O:QEuop}o-yѝyJvBv%/3'CIsUR ڨI뾼^fso~~]~'.ɿ(gQg8'yߙSG~犳#6cѱ}0]Q/C5ӈ5T?ל@w8,ZB+v}zBkul"t?O^Koҿ"x [M,PQqu߂\2<1/9w]?c f'ˎl#sZOsEU^ȗj|W'\[{/|Rx~`߉:?P<xiwKGTwK~?>3r||}05DLP|>>ۨsQ}'7֗D)uo?>M 9gه9ow}17Y>Ms/t_1;-֨l?EyE~@<57u?Ygկnɩb%oo譽s/3_L[GKwFr_}IIϊlQsω=7,Wl끖V|ӄ$;Zo<C<_<]\QƼGf_P_u.|#+Jι\Ek/C[_?qHNJtO/t?_->l~u+^no~Uϣy*y[ޓZY1~-}'j~H?Wߍ޷%7]Ôڣ)%}g~vRt}IGĿO^-3;zkhAǀCo[s)ؿ0?Bq{J|9u<53_/}~Dt知{Ƹb]&#tO>8&{?zxvx_5[?O띿߿ss˞/^c>O~* ?yOwo@;9a;}M?s{/Lܿ?j导?׭\亮n==K:.kKx/+ǟ.^R1̾>KSsE;FbLޝ!^.?oo>~,B=c_x J~*u}]{VUWٺn~'D~?n?G&~`(xt1%U=ݾ~ MxcCn?\o~r¥N|ѽz ϓpgǟԯZ{ߜ' =zHS(wg2N=2:kY3Lzv}_̙J0+ɪkV.^^&/\ ^+jOZ31tz6B.~ #kA?z4I?}\/Ec 27P'xf1gCn=X^V%l_aD”}f<w>̽ޚgZ?Ǐ_Fs[s -v4oACڞr{}c,/.$r_tscГW.6}_#t*H׉nyC__w%€$sZ'v@>?s1yvyq׾ -:][89-+Tow%o1NOyAq~qkc?ͳK #"[FD<l3ON.̱ co_Vzf.?:OV34SRuՂc#I~\RE{H-;=,^479Tg ?/nGqa H7>P?te?9~o5E^{w7ǽoͯA3K<=̿,.uv;?NȎsyFa~=eWaN-3} @>5}T.(o'X,C(_\Uy뢻m~5)k&ݻ(goOzt__Wӧ#+>^v׳͟REQ7xY} ;Vp<~+iqΎA ~>}w6=l>[䴅!'kΨ3;3s>γz>̤ ` jEl󣯉jD߀3FKvVOa 0|;Gճ:yW˰gs1E2)ׯ̯_>2@ Kzw>y֜5ߨKJ)^?Њ[_xvF~=NkK램nogyw^g~u{eT'U1_ .ReR/;yfK't*B|2fV$/Ǣd[HUSG><'u/*]s([zabCKM~]5oͽr;SvY2 ڽYZ1h&^0 P|乓ǿ)OlEʳ|hž{߁1O =S g| |"߻/X(DGݟ2'OG(]1sd/:"7zw43yP}k{t\tsqx;q.:}KKxcoz{G7o៴?U`ڶQ&K45>Fwb\YÏ׍ٿ©Cvv!W3:g|X5Ͽ\ұ[y៌8s&Џ.v(%o3d4'L^Ex('#\kO[xnhaufߚ]MQqX|= v@~_k/>Ճ?ޢUT+s|wEw~ӹQyu V+HQ5sZ~˸]^g",!_pGpaمz1gw+FFDﲑd'ǣ;hnTGMH Zȓ,B⟝>s+xԚď/I^~~1ǖ:aaї߉׌qrP~+*s+^n? ׯ35)0 ?毖?~le(͟/` (.2u~H |f[78ۡkf(/'35ϱVM徦ֹQ]6.$qnֺ[M*na_~ ftUQMC_gr:,̅Q17}r_FUƘ37&~boW"O%ovnT=Вӡ~r?{ n̨rqOi:yiaߎ1c( QLE Jضү?<|ScnO]6'S8"z?xu?Nl1uNE;=QҰ+coI T?TtK1Ns/sv@'7:Ϙ5X1 A)3mE' bGub+y''7]w^hߙ7^?,C G'|~tؒ3Q瘪7ktkܗ˯ooWgp?a_*#·d'} r侼G,^^{z}:>.N?P?彨^w@҅ d d{n8m$ߋt_?Ž6ג+]C k Nرuҏ\ӟ?Ww.~P[Uz'r~OoHE wn0R* =_XX α5>1/Z?C[wܻVkj1UWqp[V;7__W kRNVO~aWwqKԚ![9zO=.I{g~?T4aC W&yY?7jmz ]}?v|Q-䞦'($uΊW巏;%V+*گ&u1rW947N>|$jp>Om/7>9*d]mL z_KkhQj=y7Dq37lm. ~[ߐ#) eT[:"GaGZjp=1UPKK4T-%w<_sƋDwLtsOM))|K|ܞV*έ0,;MɫDQq_cVp)%S ˎrB=sݰ_ǭrOE͡w9Dňw@c=Y{[ϯNb'}8j}+K8Q/N]zP.T՛7\$|ݢ0@;*)xg,|ČتJպot0CM:ȳU]'vTљخKwN8'+s$m죏_qSdvќ9_x?TS<JCQL7,Ltf,O>]佮_%X yE7rM1窅٨ʭ~nU>6n ErR+''wn];?F7.=8_R3/J3ѕ3t wG>Z"!/J_r,j̡hT ^Tۥ5VzCTkſ1yPۚkOا}T+25jLб46kҍS+N| _X {vTs"4gMqDXgz*g9[sLYV\4/33 _Q5~?>+bo|L[CWM{DyKR!~R<ذ'@f|'!vԊs׭yIKϋ_*QUoWlOoCaCR|g.[M߹?J6E:TZQ~0u1Tgfv ؽ?5g8󂇼D81F?YťA?+7!;q\\o\]Nu'$l۳ymK?<[j.5y=N_?y:3^U sK7G9uCG:3_5vPѝ{M<|Rf?XKXÚ~3q#:ug!]|[Ծ?x-#*}v/J}Իۋ_e#wϤJJ8.W֖:ӌ\>A8N # _}KZ~תW|S 7*+wп#ܾ?W·x?-1_ pݑouFTl3c/7"nW\џcz |/3G[+L|Uգ(u?Ώ.XW>ARBGG Y.~x8-> _G]_4~Ov=<6P}qG*f- }M E?S7?Gx.pŢ_dhӖ[VBMUXO^=㗣Sb@J?1繍?>zBcrUȬ|c<ӯu~ǯ5Vh%~'\h{o;gǔė4ƙ5~9/#7!C_MxWs]QuBNڏ@?v%%zCsrY#?w\b{Ba#ߝu6Fڏoל;Xx>vWH"ng[j7FOG{h ]u;in'?\.<&Z1Jcd m( Ӻ-sn(9k*ECw>LsK=[r-<2]_CqvO{my~ݷ9:.Ⲩvs*J.QX_u_Ex QV%?Wr;Ľ9|.fsk=oQj!۪-ѧt7Έ:^1(?,^]e+/~H_kcs(1y4SQ&YhOEӰ3{8;Vk=xo_O?='7ޘuC_GQ.N=aoW9og~=ԤӻhSLN?<`:;%9(3}SOw Z}o~zou}޵f^gg;-Ÿn /ӿ#<G~-BvwB/RүaB3:[Q{ѫL!yÒO3uq y2lJ~wiV?r[Ϸ*AoN%E7Fz_(3  R7yb5\ =`D|:e^ڡ(k!aErhߗWM^H-KIU5-|:}H/SE}H1O81ϙ^+a(|;V*&ʝ{qKw$F'D) P_Iߗ >NKYHXtǿrg_@󢨸rDϩ`^=Y|[8}^5>rOyQqLEsAZcL=(I·`<;f=Sҏ|nFvg9 zF8ثCJ91[3g\Aǵz؂%T0(G~, wzL}|9Ϝ}k<3aF[WsyT:a+4)yK30-eJs 7x\);۞u'XoBvZ\wD~<g]¨+KR7*|/P}VԚ仫\y٨wQ*0+v4ᄤĔ>~a KxpchvQ1x‰Bޜr^U8  t.YO2-.K8l~밽lNpԤS5F>UFc;/:gE^spU_;}n$+{Fy8O|7MQ'G$=yOcEߖ_#%O{I^J91_E:T<#KoR_hRن+R/kѿ1꜈) ^v%cat;~=s #{W/_+:j}b']#y_K?[[;uO<5y9\g~,o9v_ %:_}_oNޘr|o ,&v&/LGC)]K&JE8.ٞnG-&ԹfgK_qՊ kݢXŽb~ 8|_D,NO~]?p])ߧ Rx9ttq%p|h>>‡OFեQ}]| |f²)udo3xzr)>oGu[{pKB]Gk~zK\ #M#`#cyWt-C}WG^^S]Z3>Y*rK{_2gq:Q3&O_/Cpt?p1| }]-ѝLGJOK/.b.]f;;z'}AN%ggVW5lP(;­+xtxv(l ?gaLgF_΍K ܃|Ts_ u/>W|\c(_uۢorwg 8T z!X{sPzKt1~WY+U-զ! ϔmޕ_S3a>>WIɅ C'c9l{Akr g.ҝ J%GS̝/) gm8|r%,w?=!o|h Yҏb7С[nsPqG3}O?z|_h{^ЮuLFdS&_Q[rןZ5>!8>|>ڞo^zX62^2z{v[N\vBG;{R ?V EO-ݼ0iP;^xq;EVdwn~܅CVN*u<]́ y^п0SVqvs~IIOU!wRt7^>WO>q'OE1ATl7prZ Qqg|?sOt=rݙabOx-W=C7ߤ5CUӇ/ӯv?GgNNJ˓cӯ@䲏ߣc0yU1x_T~!{V_ o:zgkeT_h!>GOzDřANnME3FkFRп)j/ǏQo$D%,o~$9ֺUg.+zkG<9^ލYoJ|n.B\1I{_zL]1S q_t#޿?7&I|\`n8dyJg{5)?swx֨5.96op?z{x17ҏm;γ\ g,I_1 {ϲc̏zy";ewʑIV'Igc8~v?_ix׭8Zn[e٬rt?x@+ǜ_6~?~n [cߡOߋ:Ɯ!9%u,+>~<<e[D~-^5~qQuc/ϙG5a(>}.]|cߡ;겼ޒ5ƺsƼ&e?պ?j_[nnY\+O]wܧ8~&"6 }}C@t8<;f5~5!wEW乨bf肛Fm!O|㢋mV?ѹGU[rגkޛrnr\+|q\/vbzJz }(1Jzƅbǡ_oE~)cNMqd;nΙ{9k"j~}-h{_~?/,1c]?JҨzug.QQ1-m5* ˮ޻NYR9 -m=On O8np5|6=ҽ6bM{C?7QgnQ>/ts&ҽ]#?7>XA~1z}zMt6MܴIf:vS=F` lsXy[;-=Py'3z^z(ؿoAhfi8ZVsE;ܱ f},oL"ضw5 E\q@?%i'uW̾/j^W?9to>$C!7?]5M;~ ?? ?MK߳(F`K~]~b:?,4WD!zi{0*"_zHUwy?_jmI^ZcgX Ď `Wp&BӨKWGAm7f?9g[zaΦYÎ"~O$L>],>ۣl2{d}󵢷'n}y/>5ᷳr(KF4_mX(׿9~t|Q)Ϟg^Gzi~\_-ka1F8ZQ_I倰cGcٱϵŸGK|o= Q9+ cKC绽_ WuL/me#G^g qGCZCuc{XҶ\'jiό_=FܙzOg,Fݳ;~_O=/u z/dĶuCչ_%idupOtM?R( c_|Uѽ4l>ϑ [#Ӑ~߮_+g1Wߕ< 5zH?!1xYӻKڨ#K.hUWiϽR?~ :c@O'B'_=`ӻ5ʯfs,Q%++w?,gclۢףWG3:gIQzk>7)V_<$d}_hf0o$=ltC׌ … f;g `hNtC<+ Xg>g059_3gaI)6ie^{~npCr.~?ms8j5/^?}ef00L35|Oo[?|^.6p3;Og§>Ԭ/?kZ]Oͨ~%QsŶP6wq=CgSI~qeW5UU <*U{̿_7Y֝5' d̓\2D%#ߔkcS d"?af2C3 wv-)ˣpW?oDw{/m'w%V3Pj5)̋`fs< wDw~+ 2yOycʱ槼1Fh藓rbUO3\xEݣmPɴjgC.BV񃽵Z<[ _$%EΫWE1e32`u~\3)ן3 lXmES|ܟRvuFvWdw?ά<2컟Z0oM}=D9|ܪo2fCh [KA}f;߁O~, NgAsW,>jԜĻ09x v!/ذ׍)2&N*oj>5P5yC :VS5p'DuS=5ʨٕks?&h~sސrl d;v o 5ea?y]Ƭ>ɇM|I_cI;'E?'|4y>8N 00Z5; uOu̿S V3DkCO}}1vN'^a{?A/G&4jF!&"ymN??}/,Z᫣_|osvNuOj+5+5썩wobI|r}P╛\,;{1%;+Džx)|#*H+_sl,pAV33#5Is{˾.>rTS7nn┋zkl54bggb2~'Y\̾6;o]oLc 4&g)2嗜ms`fOFЧE2oSzF+ޣR)6|8p?3|/ꮕ=YĸăNH=udvQ9R/{c󠟽FޕklٵQ5Z&;˓?NYF*lwK/3Q>V[#95ʷ9"&=ǥ?cS2xo=Rnz{yc_{t躨5kkb[/Ro'-K _ӟc;n?9sջuY=ޚ{'>I+KS>[t?>m{m!B>ttFOj'{I̸:}&&{Zaҍ/ ӯb's t< _滠K?_?(ߋ%96σ8XeѕS/sΎ$[jJ'升ױ|=T|R>㼝>;ިП_rϻY5^We^Sێ|stC/9̂SqVc$wŜ75O&,K{p%e/:.LՊ\U d_ks5rqOy .O@l,=ޜ?T=Dmf;7&? ̏gSoL4];2Lc7'yŏWc⹬9^ck]~/xԋQ1Qw3Q|wSwⷽ"^z{*~u{~x=~?)H9hycc?'#扶og?QSߐgyn )O~ _:f}]~4{{oʟsHE9O b1H~WVl9iz:;7y^o.QMhz(Ky[?1[Rep۵=;ܿҺ>#?9KTm}wC>7_aqD\vxga?*.5o>ysO_3^nOA=+w'<s!xt4sQ`]Sԧ|- K',.*1Y.k~8y$&ל o$N_ؿ3c:cj?{Qvwݾ]Bɯs۽z /Q+ճ.os_ԌǢiqL?j,Nr~?ۺsoӘ4cuAރ<NGENw5էZ v0g`}qL?%3?=?cw%cK*Zx¿^>D꾔 [ѭGw6_\>'=}w>bY  қSw? y-#QXcqJߟ_pv<~ٹ-'7.y&%(LXd|d0c02Lc8zR^kKO4MC_Y譭1s;cb?)Jm?z;P1eQuQs;Ffuw_t*RذWC;7+[VדQ6Y{}9|De~cZ3;WnX3%K⡝5[}ȟW3 VoCuV<wO:: ?(pNtę5૦c_?j6}Gk~4ϱtKt"u>XϏ:j~墘~Xk@t>f˟]O垯xW/ji;nz7EGp *sd?;:FQ10 [=gzkgvדfN!yQ}a‚sãgؗdz?Ϛuz8}_^z|&v\yE z/]wY#"”};mU+L觷kA|9U덩W@;5_O`aГAG9  0lj]w n;,l@뷷E9\Һ893I;B틢µWv_'&?y쭇pup9jVF~uO󘍪. yk~}/?K)qwNNqw~xѾ%~p Ժ{|"z] uQAǂvrIJ)7zȞD1|=q/:fsһ<޿ZWis}S0:#7\t+9G'ы7~,iQe!^Ws_KyVҏ_0Dystyw,ϝ_Ӻ{K3}ʞ;yЯ;iJym̓6s?]XE ̋>>_p2.L{zmYQ!X\<6SCC~~E^9q儨:%܊rK+a> \WWmR_W, zgw^x;;۩3QQ/_c%L=?aO{+s-,̫'o:>dwL,m#F^VσӒ/?]{&>uXo'~r[_ɩw6zrLjv|srCqں319.>xCkNA%ű]j+Oym8狭pHwn=fw)Z ާFR~8! {`ʮ:9=y%=??ODž%{cus||e7oۓ1 |O|׷n?]>r) r~ߙ<$ Mz-e_'?Ar}ktkVgC`=DZ?'U'@T?'|'?[;Q+}C,t++[[c':{<˞b_dxV3$gm!>US&؀kLD߭u1+NM||N.ziksq)c6'iA3֤g9}^ {`S'^ˮU#.mbϋbNQe$y^ 5); [AqÈQRi +t(3gZLo4j~ ձ^L/M.Fn}F0턫#<5Jؓ3Q9ǣ昡bC?4 k;'\ žO|E;H0{/N~?#*O˓^,煓ea%)\=vI;6Lz(qɝz?se}_k-štY/tj, ﯴoI)R62Z~Qv/ZaXav;Z<-GT!Qvǎ!?Y~~(黨un5͝rߵ.!OAxZTgetw;g޺tj>c5S_f[͔X%/+tG~9jaݑe8wh:Cٻ7~v9U'#/uOK'wȵ;e1XW1Kj_˸>5v}w> Vz'b[p6f?_N15?_aCwECqظdߛ{N95Z8EȡZ_ՉǤLT{owNVMyfTfbeCD{F9*(zQTo<мQU4y8Ib?y /6OVƇ\';Y6 _'wFNKO{7ȁfy;~ǿA?F.nT]5~4>8;/|jǮDͺ;' C7i_yf!m`;V9ih[{ϓp3&O N9\=p)y ᓬMz~]\v_[/=@L?>^!lT}p1VLl'%ۡ_Q@%`1Sz5;HXuDiz}[ToEޑk#׎)=?!܆z;7֎yLksn??_=̕_Iz_9ktM (^Oo 8y4u")8WȝsG+ ۽__7\[mz(JFȿtv4wȬcQ^\u{Ӡ_6kGw##N}mӦ_!}3PΦK]xX!yͽptn52y}SѝuGۧcFWgܺ q3Q!T'/w'D/B?<_uY%_+Fgqytv--'yvՎ5On魇TrGo-}Mt{}=-KrC(sWkF2;F5BK?KTt*/i?%t@tsV}YP?;~ǡQ~[?5l@7Glwgdy6y)߿?>. fȿVMkr]g:ϹN5muI&K3Q2i/Kl 9䢕wXӼB<%\h/D^~xYz`hh}z;rcgR{aJ?~kr\;%w;~t2zZ7nnF%ȵOYDc}59{zzAQӏnJNniQ>'_K?½$u\KQ8Ŀ\ty31a,^?ԨڔSczFźȢr;~,{{.:9+կqSo='qVjDl3"6`L{lܴE/;oI9{ռ /qQLw,t^&2A/L^{ CAz3ѝjCvS퍽_= |3͵ݱ8#*=b;{ҿ<V "~ 'rѪ3_'m%Y0cM4WsWԖ^0ЅDqx-+h^?>a}qTjY=q3zOMrC;=G/K_eM:}P( Z{b٧-m[mmTsNwN9#pCU˭k,Fz|G|oƞBϣ0I]RaۿUp6юЯMg'Qc? ;=w"z }=X7^ADž^zwl->>%QXN»~bSo5>xVs_ Ss]?b+<٫n0Xz˒n/:M:~zԺ^dzL.o].6q2U:.zox~Qló՞}fzyn魇{6w_!}p ; S~9p]'s1֪cݦ;t)jcלksxh>[I7CLWNl#\zF߾6yVߟ؂sn{AF~}%ekW3ay\&%^#n=N}W .•şpam1Lj1$$GIuCr7$ޓ}=t/V(ȱ|Ɯ&zy3 W8;q&mrAT`hs?~῟}`_} ;%04i֝sH:.wCO?QQyfſV=v{}\>jGלw(>ݒzm=cDN(Yu+L2w;?#؀,Ǽ!'6\.ԣ 6l,5WFP'1R \\7yQ~wa]*}+:kGŽ"g~C'A?tտvMI%~+o5.p'J\C,5#k3ϻycp>Jsܲ^mk/Yoȵt 3n) PsqPCnQyG_e'Juom֝,`G ?1Kuc)c韄?>&jĿ@ω|Szlr𔅉;go=h<^c?.ȳ_ &COpҍr~?AW+.P>&u'O<_%y| ߢ{oy,gAZD~/ppl2Gw,qY{5gA6z<~cst1lL{I󏆞9xz?YK7%v m.7b#1ѫ $%/,Qɱ_{|{ |K\|b0͊ǷĘ׵ng6E_iC5ͭ/':<~w$i]XkƟ_KVnj#[~Ǐ_3a_oM:>qGCvLXϏut^ҍW(}S +yrtӗ'|Gl<4Ee}f[w.:/~;yCMr~;_;&/F]s-<{l;xyq=a'*S).caO~)a/e<ӓү]U;GrH1WY;?g)gA?z^1$kltG\ҡϧR~ߓߺu5F3YmC덹3Qu5`W?~@3,k%[U /-?:{_W,8{_=78t60 <{jT ?T/uJ'D{ CC g>MIϳۡZ\kϮmޛD4?uQ}% OҟYOd[>8Ckz߰߿5}1Qq4so!.8>~9o!7DwǮF ccC80&˯>mr D!h=Q,~5<"4ݕ0pGBK쨼Qkjyt2nkۡۡ>_!=UULg,8ߎ :y/4?#o' KSr|#nЎeoύӾVˆOK96dG_=ϢZ{%iccmNvQu? ocgEʁl]6_uu,{|1'C}P\]~OYE;~1?n-Z{/cê:,oWF31'3>_ka<[sG/zvpW%}Dw>{ 3^jޑ<%LpWתV8(Z_D#=_ߦKE?%ENee,N3pCg{"өGG:@)oH9ך^62Lz̝4ezb?d?ǽ[߮;#eeٽaWԪJ!\&ozr7$,݅a~>+ZaX#oki?-cs- !sDߍN_Ѿ)eKҔ]A.kݎ^pY3 /~fWKtǢ(Rr݊/: ]~ޒki}ܞtqVG91( ~_jo*_dFw  ѯ{i7FG,~4qOaݪ'X{<:ifL۱=(C-\s>v@=ODa-^½+^Fz-xfctC_?WwiP2otF\/xiz6#֭V>=t+ǏvLwCCk@~4B9~y9~z79lk᧷,`o,ӱݖL>?;0#{.|$_ ?!a_ch @Fd}~ꝄV؟LZItl+__3}Qez{tsN{Q<{l5\ )u?:e`ܝyӢ|Yǣs KA"~~}&&Y Ҝ Oa\!ſIYח *q}C3[g"VsV!̃~agNŠ/VS8'JW {KG"y|i͟~S$}iTo?KQ8!:3>f^Ǣ%5Iu 2L{I^/*?IzGo>В6K_{tUT毈<.魯 t,/hn~a9cf|7*Yq+||'7?6C%D {{h7i>Ќ bcsg[al iݐݘvwqT W,9:OǫtYG{닢}\c{kwlw= IQ0wI\f1;UOZZ/ϊ8kyF?fQ9 ՙbÐm0c '\!z,_zi ? _ ) wKZW_5Hk;@~Ic2iGg~W,|Z/,|Snݝ_DW{FݐnZsYo9]], Xv \oejGǔ[-~qb JGyIF++ }fs~ .C\y8ʏ#t{f8y\:;¥v;ҡ/i}I L_|0,Twwӣj/Mį֝ 3Һqx<z_shmtgd yVc{OϿ{O|1y܅ǒm6lurK)_p}/wI䣱/+. Ihu' {7tzbt'Bgg bxYǕ}Mm]GD幼jٱG|=$^k.~r'DPэ4]ීBaE~VsN~u7_^u W|fV{~_G%9X$_sYPv-uqz?sakč4{~w+v\k/S ?Yvſ>T 7tdw^:GCǿ /L;xt)T:zH?ga4֨Y_zKؑ:S=+dt{\q>'ϋѿ4}uT=7y?{Kv]9n/'Oi.òyЏG_>/N'g>:v<|ZtFy#.MyKxYXf=v|6t?d{"Yu2'E pDꝠ}qTQu) ZwBG)S?[k : A;ЗgD/^^o\?<9TY|™ph^Cb݋w4?3|,'TIjN.13o6$Y?p\+u9h=D?O,']sOC|ľseX5]:7s=o;HwHi 9~;OWeg՞ QX@;܋O|o~[CEa~[U)?O%"[rγYO箋7W=Y;[Oc[W{kv><:Ecz-j۪{mRf2@Ws7Uk|3;?سSTá~%gSGsX{ñQuTsAJv(.ŶsЄGw[do=<2E lo}CL3 /&XZ~\!AU/wdqr,l>QsQ`LfUynVt3YQD'q;] 3:;H?|rN~w?r9Ǟ!ON_a>{S~e|Ϸrz&>1]^눝8SAechQ⫢p&@GTv=)7z?봽~U/FBI?\h֝ŬY*l5y.p7σ~ s{fq7^w~natwAõW'C/_7+/8O9R}G{'oں`ՃaC-۾33ɷ?M_{]w@ʧf13g'9V/PH5OGʽE{ࢨ`#sNCkȽPL Wꗮnozng/_TO><GC|g/1~=f嗑O򡪕t=,㧭h繶Uyq+t~WgF(x,j5~׫[frLډiUw{UL(W\_79#9Ss7q6^(TrڷpY9Ew=W722k",r?JNEZgriϩ)cމpK+ SjN#eޔgXX#;GosNY%oz]Z[]|XU;yK%5??]?gυםrKZUΈrKTGy?OXZvYZ_護{bo͹2'׎3)\+Iyg%_nɟ!wm׋zTka ?}*SPNg^jε_)yЯ-IOA?b{Y>^A\ty!nj <Ͼ{^THN槣Ey7&gѺϞB|% =ygA6#+e8ZCwVlo=W+ $1~{QKsPr^Y \ &CޝN=O9׎|?Z˹?Y)>_O侴םr[\3zz[w=$rV'y`؂{Ix5/=qI~-:=؃X%Y> ?s6bK?߯\?߫rX=[Oߧu}Y2~A/~/Zx~w+^{K)~ŷ[_ KGz6Om&;ŨT { ȇFO}wyWl]O]G .m=wL]CcG5z[WZo NAQҟp_Nn~^ȀӰem[''\)`@4yݔgrwY<o'ypCg<>ݾOݺXOM_i+P)5^仝 ; H~܂+)o.[s\~"b3tЧZ#=zilx{{< -=KQſK~X>|aUP'WV32,LOtamQ}_¬Ǔm.Q{!FYZŦ{?7EC^쪇kAS^{ xJ@$ݣf.0 }g驏Edex{aӾ_5# } {#kru|sj|-y| gOH'hw6jnA}y4y}x>? ?mc!vGb5˜ќ&ȪpE4?Kw70ea2deG65#xy oYG{Fwos ysO|!zc᝽{z!X?6_Y:LQKfK/$wo5va#a58XV&8 c?'jMf(EWL~;=EB9\Dt;֨e cN?9,=4a}[g|$z6*tƜO64X-iͿsw~"}$~ZGgϦ?d]KٹI;Oϟ];1(wXywL\csUύ,NceOzn56zq?V{Q%g_W_kڨ|'Dsr h{΀yZKob2ןg16,$BRR)A&wOVѭ_RCWM'bz$/D.g49)w=ӭyԌ-?!?G5;ǿ7Oݢfߋ <__3e{Qr]=_5BM"k~3#Ye{<6NP|o5ܳ{롿>[}/D_yY>/> C?:%F/w,(Կ=8f&dԘ!GqlmSQ>k"߲;2(~s7%^Z12k:ajOo'|O-[F[^oY_Ik G}߿)ҿϾ f&yj﵅?Ï'F i3ǿ b7\Ls'·R4DZc>z-F)/r;)M< 寤_Ɵz!?yH1{k_'jtxws'8 YF~A#B]uyWleLcj#-m4 =W/} ~u#Jޱl;Qb do#?9V.<$kfK?>\TqRϭ R&^BoF|]~ڨ\hL-;~B6UOt˜OSw}}^>$C7DӾߗk$FGϠ3>]+ޯw]4 g'?;_rVs,_9g]~5w@w_OEޏ;7Ȩ8qu.|,hu+ބz>+dFXq'AˢDԺ7sj_#jH>գ{I7~,ˢjkω7DO9NZ.S?穕W3}0~Ί‡OZޅ~/j(߁n_H?ƒ{zwmߗ& ["Ӛ_㽥}^{/}i)މzYn/϶sB߮>z|./!!!+~[oJzW8Ĩq2GX5CzC7ͺF5C7ZOf Kѻ^ow!]Mx4N?ޝr5 ?jv=/+ _{Pf_?)u3zI9lw>|Pީ_f4''WOb ~C>sN|(@eF7}_3|leAhmG}+r°Hڝ]^ GsС覭1'Tӽ;{-E_O^I\z57ԱտOKMKVs *#ZziCJg3~+Ի͢wMs~SLyFh^=SFտ W`g>8;7ϖo+΄אcOio.}~g* /[Z?_sUWs=_o*\swI;rq*}f*9e߼۱\B(;(\cqo 33|^T݃}Au2WXcTs5Okd{?he^)>!?5O+=L_f;^q,Gkz+]l5 XRY; +֝ f/z/م7&pۃ~ے΅/B)®8-՜q7\<_#4@?c<8\},Vsm5 {ՇgqT;v5[U6|mlzy1I_^f}t>?]u&?yп" +jEls>{cK ¬ppaYZ"ج3R&tAw^u7eӶFK[aE }=4}^׺3_n5I!gA?6J+| |<;~/ _<,ycUד76#ſǿ'Eչy.g/:Ѭ+r|}NT}(z|_h9~GϿ|~?B~_|X}Y1>< C+}=DL?t_]ja__[7NcZar,Z|OX4Vܻ #{gb7$Ѕ/;'{??%l$ڶcFI֥)CsʾȲ򷯌.~Q¯Z+>t"99 CZ'f߷ ?9 Z׶.ƯݿEgR>_KFKdTEQkV/FҷSV{3~tr=>?HE7a/$=-Ƒ6߱k^U﫢=·_~g|?5VM#d\wct|;7lF7Pu뭇2֤Ev ?K]V\{_os)a~5JW~<l%FFl3]15NgrX %;QX(H8cSE~$FI秌>Յ03.~ O_|ϞEW*xddr`U \:s_ſS{JSۘS5Z?z?Ķ|oM=''Ԭ~8ᜠ'tqtgw m{yFޙKߚ7'ŚA Wy ֌,!^_:Ӣf/HҟC?<r>I74\T8܏c׼DMQ,zT_{R+L@a(9uYr\]ݨ g'V#Õ'пwZwF?譕"GIϺ?gfx$ %d_9L^)3vy-XNa4Ψo;ߕ~ȏnYwJ#{ ϫ_!a<]ISޗ:G[څa ^Ύ;5@3xrvB Xl]7ˣ!t٘IFת{{Vv|i/bʯW% ︓4Cʟ]}foH^2a,yO's__w`c~b?o`sw?7=u;uwx]bv=1閾?=Gn5 szpT 62{~rOFcEU sP=Pz辉:k*z`>h]]skK?R-f8zj(ap2pMlyXgSY2w*>&~8@Хhq|9\5 @u1y~?w`%uS6>t׺2' @ᕭrXcnʽ!3ѯO&Ir3(Gs^T# ,zZ7V,(9z[9{k9~+ GQVᖨ8co Q̵0wvy~GU_~C:zҘN8EIo1|=Dz4AǐGTaNeS}{G~@Wgc|vq7wU?5O*]_ /pCo;?]F^Oᇏ?55BݷҏrvMzZcw5ɇֿOQlFᱫ9-&s|ǫE5CęzkG#>{_ۑYaC +c:cF[Y9!vݻ * ?ux.H\|-ּ{.kvSF~$F;^O?'kag>7n5dRĄ^36zLT$} ?T=D?4^X8CI~.?});?~ӏ0|'[v??E6W ?=ka[CKCvzhpGoD3˯WM x,~iߎ!ꉻ/yq}7žON~S 0JN5;sUNY+V\ʻop9W>}}]f'{> }u9h!c/Bٔ39P'~ǺѯȦꞞߘ6~N,Xt߈n9n\ P+9~o^Utǣ;L8'7djЌ2z;D9ll>v {!WE.s΄30Mر?,L ֺy9iO5ewYl ~;{k=DϮ=bG}uӦ_Df]~Wtcϟ:!ݔ\.|g ralCKKv _id{E㯣oU~@xz-7>lz<3Q2GvAc>uNj(JMc~|'_g[.HӨ?Ahޛ9!AW?tG{kپ'zkd>SE [{\o)KN?{:gn [߰?C M+YrvTe6*rUTTL=/|:首 s+Vz/艹~;z;+?xYmI!=;8ߑ@_}ieltC/{rE$-#|Mo2i~SA?0M7<$ _{6 Ir @_?/ZI5|qc z볒bCg-3/Go%Vi#Rz~/;sܤ]Ўc跣NoÒ߅_˷ Ӷ8Tܸ9?3 5AZYrGڤ>*5=O{/އB_ׇ^!a~򳳣7]_js.zY't&V,P՗p`<%.S虣xץ<[ ?Z$g<_gПk`{[Ka,i~6|>K`ѳ S?jdGzg6wYa!۪O46^GǙ{%!w}=~~ Of+ ?w_ᅱN=1ߍ24?C/h)IߔkoAcr:C\e+{f93zv߻,J|=I}Nzɯ ? ^pz?ժ7oQ/0vߋ? 9_o3!{+LvvcZs"i]kzgE+ 0W};ˢVy7;G?~ZD?:}*crכy?G=<DKZ]8IwNWpy%qQVȯP 쨺=a>]\;`no=ýJz՗Xm3"j7ԙ [Pߎo{9/ Lw;_hRj]1az{DZWQ:$_mNC+Zͯ)*xC__S ſH@tvCJ{xkk~soɤGF=$y0+huwqp\σSG|ַZa_DS̿Mz6ggpE~4nE=f=x<$O#9)>?(eV{ScOM~[3oſȣ7kG[K11)\8)ys| 0MmQ\k~QuZ/-H"Ӛzo%_ bT^QyD79,7Ew~ʐZ_#gUt \~:/wuY!?=; #Tl|38D.?a$g= <)rx.%) { ;x ;/!o5)Wp60~ |V,7c}QS;~o4~GC[EǴy 9 E6qe/=sCJrmkQ9OQS+xf_ߞrV>)<=нf.mx/̽iWu%:zxꪮJҙJ%@0Y?;ˠƳ?o%}F&C|gqnt?=_wO+ǟ 9Мg]㷘g [f\|7[\8]Vi7y?9n]Muos"u_T;աwiU}f]_2 gKvow~*nɯ:LTQϏv\heո- =VN%?{ 1ުQ֝{u}:쳸>Bow;\õ'mgt/n;t'yy Hy qןU3*T; X0Y6yEɻҝ;k_}J_+`8[/R-r'aW}}>'XzJ)|3K~_튜9 n}Z {MX ?! :;sz?)lY.!7m?Tk[r-̫t7Zuz'_."_q5Ƣt ĥ7z}/[zi__Ttq)߆ [~&h͖<}?'K喞gs:_U@aW%_FI-ѿ?ňΊ}q>}7Sw\~ݩ7gwh<8/ZMC-j 6歑=Yl~ ׭#э[Ό(uk#,Gy}VSr 99Sn/>eHS| ygk?Gw2}NFn O#({Q&˹/;|H/C~F}a?]ߓsg¾8/zq"gyT()ԇ9~g.;~Όc˸?J  ϊ9<"n,9ʯ)bśݎCT>պ%WkM?n=Њ?'Т?N&W})>WϏU/|KDgXy?E~Fe #\u=ۇoţF}]uJϴ%u+^.ty|Z-s(n;"rf Ek+ϐ?8z}]Gk+y=' yw;G/>җrF0Э@=UY~=/+~ϫjv3_ j_o?]W=/ÖDŽX.y3x X ^Qlz*_o Q2?W߲_u\g0g WKП^3g,m >q_GF éT=nnd>C}}OǏ q?~溨g=)\~Qzr~^Go&zs7{΃ "\=/*z//w0]ԿJ`ZQ }B/0 -*C}~BOnGW<7w.v:D,ze뎾xAxvERo %N 5__wƯC>; {[!2S_W^ªS8C;A=Z)#}W7fe@3'?>}ʺߪp" qb?k#1*C "mgS> H󲉲p*O9tw~8 T0}:~Kb$:.vn9~ ү;¿)CG L4]==G =*dam)u/[@H G[Ҫ^ߓbRBkRXL_ox}&!XF¸^r]3=6גuV_jVwTk_s;x A>y7u'd){*TpO-NF1pr+: Ș 3_e~ %u{}N,$ B:WGw䛻#K@_ؾ𦒸u>w}+]\n9<?j__!ЃґJ,>G}_忟vw"!"ԛvw$xFWT?<ׯ;jhկzTKy'࿽g;< *ρ^E?WZwF9„O䕇sJ/feKŽd8]/][z1wFIGȫA M{1|eAd~WCQ/I3#vEޡ{5Ԍ|6C%`1 &oEʤbp{*d#g^#d n?֭aY|cqYP9?ӌ!,ŝv19~}FO~8Pg+! @IKb:xon# &2/ m.k\~A?0+K qUW|yOp$Kb9lhNwr#wqio fE_@#$y|:=GţZ~2t(1_/' ]1~|3_O? G{y;_)߶ vxwək_sd\XoL>̯Js?ɰɳ)˚]໩F?_3Ήԡ8$[mC8~s ˮW]Tbqmϧ#*+; -BM%C=<"s/%:L-K]_dJ~ݧsJOr}-r?7j;H+Ѡ^Myw,?; w)#Q~Qwjv %D̠U܋ů=A^Z҆ G㢲__7~l?{|osUR~?ůĒ1 ǟ{,q3;k,쎜!}g; WoK>#v1[]? a'e?s=9z_{홯[zY9묄𷽶DСs`.>p \֢qfD?Fb*1;nϷ|qQ6%}=0n2=~oq5U<$"qk]M-|OyF(]/ ҝ4_B|{ >_Yx.X~ryVs‡5{'juk}Eƥ<{7ji?%T3>r;ATމă8~d6^r5C玻Boz-{poT Q5'Q}tǯ>}Yr{J~q=5v#o,ό GV 5{ў-?j^w>5C.݇wC32A:K1DK7S5I} h2_u #ká뮉?,:a\ϔn4<+ZGF/pW| Z,V|W}eϮ+>_܊_~ͥ[?w*:SVyU8E&Kg7Gr@4ֲOT< gѪWko;;o'/'!)%s_)96X%c1.mOtWD /9/#hv;J?/}jEV~i4\?7uŠ7KΠ]F38@g}L_WM%{Ȃϟu(~Oك[u=2IQ s4O~^!x? շ89޿/ SšޱǪכ'¯Sj99Uo֜]^j]~G R_$XSǣۿ?ϾqmήIgt闬}679Bօw'Pn׵-YlR݇:RkgQ~*c[Oup}Muk#v Ik #/_}Du\Q}52>-U_GF?6WWF?*P=__<=oWS8 B!Nr vo߀x[wc&# +_ j}zW>89d篕ޮx@-[5Z?lz͇_@[3 Xwc˸?ďu+tbh!'ŰA[]n}{븻v SvמsLY$=Y5}Q/"swϾ9;E}&Ik}ϕX۲W^83"mǻ$gFbEi⺅:GȟLTkK}o'_Dޏ,/@}ӸGw??: >wFq;g?T_s\mDƔ!o8Qɭ9hxT+]ǽzZЕ 9ZGE|D7Ow[3z5.?_ܸzܨ>Ϩ' mߋ=/y%][=.F{T#oo1vѬG3῍uKos= ?lzcha}d~eHyvU ~v;凃b؃Z_QuX}zq_k}d!;I>珎c8^?Yղߊ]ɿӖH{]nŵ&5}6Hev1Ϣ%6G֟(G+~DžnW:YdۃHNcrAMn$T 1oAjfdk>K7䬽Gq9X ` ]?KLn,kDUW o {F V]Zj{k'rwUk߼\ _w '<)>j[{z4qRqYDڳ9=Wsۡvrѝru%w"7wbt(ѭ#cLz[r]_E%3s?g 8#~ƻgm?Lg(~عj~ZTwWz~Y7]ni'wy.x6G?k\W3zqZQtb+s[_J42ޠ c=o}ʷ,aST}M# XuS?a߿_Q ے{uK~1ZN!gG&߳k97E֪{hѯ׉oՇ4O~2 o?Kn-_nk?K\N!wQ"|jwZV<=;#RNk?W^%oɣr&Ӳ#-gr5Kg>ƥK"luyP&GCA]p!T{GV2]3=wx׿A~^ϿgկoΏ{\s?Oq_?=?.j6=O} 1sfD|n.r]wk Oz>K#c _מ :THDž?UV__Iw='3#kּ~?ώ~j_b k`Q/0 a-(7+ s%(7lP֎ku+?)9;ҹo_P9 X}Y^>? N+#: Kw~/sk$V C\7-ù#೾=3Jk\̯ ";V]w@/i#椼s|~<6(tk K3qzzV~!`翝K:gE[gi ~s Dg׹<ذ3QZy5Ar|v _Q%|(^tK af24~#&]~K?Ϡox&r~(d皽Vӏ_ ?[ Ӡ"}%Șǻ?_CK0w^>Mmkw-p/\!cΏ2ǔa`.iʯs' zKs~oWt b?̊a5OP{;?E&sE{맫5tФ'X߿)rUB[_ae8?vV3G>GǙ`N'J_Ur~f4?W;`{+ˢk.b~eb?O!۫#> vN3䖖kAݯtk%ד~rFypvi͉D<2 )! L& '[V"覲nɻt3Z5WVH}:Dd=0? YQn.ݚ5ua;|Q`3V1]3XLe eT&_WsFHy+?yg}2 s!y5?z?/ KoY+ċw(93}>I7GW\{e;_] ݯ"4Gxg?gweKEk]yW<>YD|z縧nŻt獶qO 1~Y]~5_Ea#~5< ݸ}a<_/#DU_]{-/_o,ߪ n%A/ǐ}ypbkވ-G,^_ yeg|sYz'e\g\I<_qͱEc}?W asuV>O#g`sb~f.ߠ|7}~%4u#E1hϠ ]`T26w`w1P]_}z]6\?\|a%\[2#Y%}ꕔŰvsI3<r?JCQ;l.Щg<+;?}̼_oz-y qЬZ~.z22Fm2+zF{utg[yZwgz}:3cX׬3?J?y0ngHwK~?D/t:fq%fή蟘~=tvu6%mwK7׶ҝ?.)ϡgova[t )Yҍ?\`Ϡtw\}׬y |+"U|~>oS tLPNcNI}bOI27ER_=i^c6jZֺ>ZQ/m- _B||jr_*Į.(V+ҝ>{B[ކBQ~S=_wR;{{y.ݽnnj?fSxL@;l-rЫ).#?:&'򋡋;DŽ̪(]G&%^VקC>z?I~bG~9$Nєq{8 ];P9@jgiGV[H_?W&iTA+6ĝa _ѯ ֗P7BMoHϑKώ*ݚ2(<@vd_Y+2?i=_+| c%B G|;9wT$Z,ӻ+Z=tWﳭV+.=ZUwI5LXCr[#c@OI:wa|~KơiJuq_H~.x~א_@+lIש%NvcyȫrG?,úg2>#On)ݻ$GȻ஫Y1c݁=/;..>2> ?>W_)ƟynOqks ?|\goy2.НuQ}8.~/P^zf3c~8OΈ?rly?pM¿͏~ϝcd|H!gFϾCSz l5s˚t:?'D{ߚKwW_n$΍mXF@?{~Ȗg~DGj?j tpGsŸxϕmS1dљϵ?<ܲ׈q >Y ae#F:?.;[~kU?ġr w쾐peoY ϫ_x;O>U XrpT[W{#nWF~s҅= '?'tW<㫪΄C? nYb^}qF}_.Z;n[j=8zeAm^sQѭkj"{M=o=Y/M|Hƥad}![q.%bS_vٟѸ}k{k=Tψ!~/\n#1'WG.0Qs~ ot~i_5g.8 {#G&yG7ߝ^c H{{Hԇu~5nI*3g@?LPcmѯ9{X9A;Hq*uSF1ѽ N;~-K-y/}}^xW|SՑ~<l7?Kd꾋#<Duwh[V-po>IѶߦn>g/U9wԏm3c:.ʑ_+7>>qä.Sܯ{~C~EW{D:́[6fFpa)%;^8;ݏkh[e?DV; my2ĐB-ܢQQSGޙ%PC `*]q]H>W-v/Ez_Zq{=UB?z3ЏfϴwpǥQnoaDp߀K&<y°8g<<]2 i߸-=3Y>1GunbG(o =EO0[Z+G>}F^{k?m?ֺZkfz~d|a#9|+9+y協אO$u#F}+,GK?~~Mŭ<#q?k2^[Q. 1}ui]}WD~ '1&-]Xǯh&ҒӠzwt"-E?R}.ҍ }@=2|4{W!W#%nf,;쥑u{' YdvvZ{VS3lbWvr,ٗ }ZZ{H}mt}^Ͽ3A_.!&j>C4hݥ3.xF۹v3 r{)QC@^w a$ M{2i^ILӠikşv?J /DL(җ.~0 eHZ['~rF!¿U!|B$ְ-}V8xhK{ N_99գi%+Ja5?_ZY_{=΀w R^wT #?;/5῝]~ 5H~!D`G3r pRҟ|6tl|Ӡ1|~]Vχkڄ/8ɲ{VEB@?|ѵ|nTH{ ]sdI0|΅'Y>W?]X> OrԺu/V[?}WyGS'ҝmt2y<<_ 3 nO<ZaP:~0]{Nok~}.)LӠ^$__?)u1FqoN,9O'$ ` $ q_u22"{~2 fIlKKOWDyf-Yse=->+>(kqlhݕqWiA srqҗWUmk7:~#o.~$yhnI;$&6~`ay[1Ze|~s<Ў D)w  ~)WSysIU\<8~b{/k7P>bI\}{mS&9@:T:z%q?\r֔b'ow¹&Fxj-I:gГ}q{ZeguY뇥?1353*ҹ %1^rI"*[؅S*š)oeasgyKzÎ#žG׽q)甴ϏAH)?=e7\ >X f[Ȋ]_"hsK[#g"/ϔPo x'G9wNmX|w[d\Yc;O/rN_}_ғ qF<Ebz-E*os׷G[~[ZZb~Cy|uY@:dE䟑OSx E3y@Y K7o @"?/9Pxqh- [\[JδXW.\$Ī1ѫC_sk_m%j1 CxCwuw_oCAf>~0I;\R3G^?1?TS4PvS1(Ȫ׃yϣi9h;;%-guUw-H^Y:upGS~E8+ w]l6çJ􎺿1/aoaJi;+?> u;Ǡ_/s38kѐ?lBg%J^[KCa|~/9WHN0 }+͒un3@,~_Yru_@ $^?/r~bYW2% =8buWgZɭcZiΈzr~i%:~(${uG/y}ərv /@utO@ 19 ʉ-*9;xظ+5Ad]MϹ9o{^ВАs_;K^PvN~K+㹖޳h7K9_ oͪ ^}=5!{z"uZ^B_^`C|#^E<o@ןKS E;-u?6,f-E \3}X$v=t3R>>n/F/Ro%$AyK<=1˨OPÔUDK;wP}O./<f>7NOqus`g˶W e_b_9 j=GG!kTdg-kv _K/Q/d͏xκvL>ѕ_hm< ڱ:(\Vq ?q,4 _1?2.>?z\GF~Q{~%[ȿ~Ը~+- #5H _;Εc"{W*Zjk ʸCOtw-#.>~9t\>ƥ_:gzuЗ~T\q55aX̳!>)r62-ar{\ݾ_{>_A mXܵEF\9ck2..[ 6lG՜UZ;#w!Ћ.#̎Sʗv,wŻkpƒ/Z\_c'۩k~ƣy`nGiۣm9_7~ӡ_o^ǻ<ٽ=CWB&+yޕW:%20nu/(_΢]];ԽOqg~z^w]ѭ8לAm$/=egvJ^f+}U[eߨAA=ύvaߦ^fEw~ݸkƈޗ$P~T]}緺s͚%h| UׁQ-,ݻHX@Շ~{I\~q\?j3TJl/7~=x'OzUz[~n^m>B}l3#1^Dր 2aг"WGyUG_wYGa_C@-H%7Z=@@%/W2}$g@z.XXD_OJsgEvR;/2k >^[}ۏTQ 7Ǿ۪ZEZAgހ<",qzI)_y|g1#MFe^DѿzLx'JJH|]a%wKLM/'@F>4o gc2\aZ{X୎ l\n."t?ӑF?/-SމS_(_w}޸j\A;\]ijυ,lju|YUߓ}DE_<1r8K_$~i&+]JZw b-wиغH Q{x_*CˌA)RJ~fA"Ygw< }w8O^Qs /k=yj=//&-X'mWܱ_U}v}a}Gcʸ/ S_/Q,H}{n}.̥c蜉@/z\C SkdϔOK(I{;Jҽ5?#] [a D5~zCvg3~nȾ 8FϪjݲˣ;'o߻t4=g( |aU;. #1rqv.¿> 7oZ89.z/ 5;|'kH:;l%b ' |лn1YiЯ YA^*Cߧ+~9G+kr~JΜr\;ި_K8囑|.c}ˎ=SY}պ? k_oC~q2Ĝ/=™q?Ös\Inc_7x*~9FTL:SPV\ vgH1KҒ9O<4Cw]T>Y[w.eJ?r9E^ڂqW۫u ?m1+U#f (9L>ص/SGK9~b΅Uѝ;lf>OEFe%1ۡoV n臍XMzѝ?UПʃtŽK_)|eO~|v'yx~LPX/-9U/>?Ao S ;W^ ?vctcP߰ϽACѝ;e<㲩xt%רA-'p%9k3{ ]<2 ݥ'#(<xB }@q]A w~)l愾<9=si.#dx\qG[J3Q n}\TB ,)N|٤ݹPr Ӡ?{,C +[c{GZC }33rjRC qpwo|2׼Sn..C- w]{mПCdw{IrRMdz8~Uj^ǿdu_sTd7kˣ[ q-ݻ$1j ͙,uT{n?臎U E՞|8X/!Cv~C}Ng=㟞?& ժnѯoNP,3J~9$v;֚}~9%}m_4gQ.? ;c|@zc5GWEwWG<ݹc"Gk?|ݺM裀·]&&]]<B6L^Y?!X~⴪1l{C\E1^HCa? e߼l7A~?j~l)yOosҽpGQ];J^84_EU z3'_滴ndm9|+uw_JtANCu5or=~wЎ cx(\,6_D q@ן迲Ap%yſR酢i|,ҮBm\s":/o?3M[c+H;b%mve|=x2\+yX98|Veɶ6}o.COೈ ߡ ֪?FO# c݆sCXoǭ~aV?`Px׭ kw%~<_q鿌{p1t:!HL6y0Eg?3+26w5Npp\Wђk FֺEz| }ѯY~7}to_@?~xvs2WHD ՟3"e4ƙHZ_O.{ e=^VkV)I g-mᴷo''Yԍ!"ܿwɾǥ_8u ⢪kЇ~ohy]ѝ|@A)п:3MzT]6T8{k?Y6Zϟ]9_{TkTjq{z*{, R2'_OGWC(羄{˸9Q.?ǥ><3`Ğm" }J |&KKNťl]gZTE]'W⾜p)73.H9/A/ Я|W~K?ݶi/?_)/ΈIGOw _,?}{鹤>BڿCQ{m?{@; _C{i9ikFh|6Wqi.lʩS_#/~w0jkg;wFNjNnşǟM=h!^ Kx??N5xCp[x :]y+@t?/?wʿ<7~5.r {gP'q*ŵy+zy,z\VhN纕Cl[@㪿\F pMsS=}ǥg^(5o_q_btn΢]E_73W WG/ɱ8O+E3>|G^_Z5~s|; eT)߷fGp3b~gY/~a'P4oE?xysǯz$ݨG/ ^ oXWq5x'>~aVoE9Q¯2 9*^菉7+=^vS#1wk#<<{>DNk ^Rהľ$$p5>G>:.o8Ƭz?w|_z{zW~=s-3ï.Q~%{gB/!jLMc =|HXǯ3a}璇vyM}-[=ymd |-c~'uk)+`}tc|$pXqOn~/&b(U:-4Z Ї_,3$֞!8u3#c[W>&t r&b0bGw1jQ8-,-WW܄|䣏y\?J@ot}k\ kH+;t*<ՖWv='ߣG2Ğ9>-Ϭ3e6OBz5o.|Pr?TIy A [ 6KؽO~W@nAz}"=]~8NIyL䷞YbՁ/!{x'_fFNDz>QAFӴ¿k"؀g?hI<-s4xHx f㵔c_C?tZH,q_:0ECʯ, W<ʊ07F2r)s0|g^?x~Ran}/8:{ ~3lt0@a5SŹ#} |Gw~Wڱ|ݚZ~Vk|yw/H#C~R؁g!e9KbȎK; ?_q(y _w:#;^iЯ+/xӑcI0Q".9eKI?p=x {ǎ=?%gQ8>F~Ί[RC|w p:_5-$t=sF?-ylrl _>1b-'}D _ ? (%+|K:= zeI J̍[< ᜨo_J%/?|$ksJb]V"S+w+f= o:f>r{YSҎ][jyo͖%4ZAj=)_M:s36?޵;NegjOUkab<1uDD7 Z]|iY.K>EoG8bӟ?lOpM$V)|= ^>?Y1_>?m%cJ&t~;͓ѯǞˇY8~g#͚Ӓ34 mi[b g0Uďݐ]ͯvtpڱ[/Θ#ґJl!f \_]ϻ"cҰѪWޯk<:ŵZ{B.qП?'נ.${8d̒X8ө;9:~ݥ? UOv+|n"r!2Éս'WӠ<{_8AE5;vLx4{R %g\Bͤ׭_cvUtk}T{p!@ 9L%g/ J7l!m A9\5HIc vʵZc=Z&կzȹ#xNzS }M_BY~ySԡpV[2Ւxח X^ǯCJR_)GKтMp\z.pǥaᶓDŽO 7fWSNUjTHӠ߱Y Ȳ>,? |==F f[`csCu̒OF l($#2aK>`Us+OԚ:3+t΋hn|(y vϨ=$~,TG ZyF!ũtkxRId_)pl@\3],%}܅l%fw&媒~i| =2}Kǁxnbj͒ũ^ʯ呐?R t@7W[A vWwk ?c D-Rqp6#,Kg,kv3erL,9;MȼrF}QK7f.&%z.OM?XϝdgCl = }.爒8֐ԕnƒ3R_U^}_݃b-%g0҉○K7<];Nu?"Jǥѝ-sw?-v]k8f 0񎪁;?2v혻J~3I5{3%~ rp;kŰ<KWPFUη]CW5@e cWq}i$iwd~I@;Kwϵ-V,N>xc){{ip x[tů/79;bm:j:VS_uYݶ7swvV=zoֲU5Z{\Yg!гe$K̀S.y_㞋?FͯSv3#Skn?7bnd-A|f+|dt::h cpO/ʾ_[ۀ|(0⽨T:Քe__z4eW1!Ю"{J\5.=+{HYD wݳZun܅ 6T߉+*zKtSL?V?Xh+>tbtyotE?uvhV:|e:oYХKKmmոωߧ~1ļ~~9/]137P72\ӯu~m\OT8_uY*Gc=\rKU-3| ln~>'ⵦkS-q<OwwI q'C?@ ^2єp}N~]ɞ5~q_g"g/~Tlwנ|y\닦lϊߋ5^|g$xzF]K~[ϷʿZ#[;‡&k"+= 㟯.ٿy%k;[@9#)veQNjOPwtPҵSOzU;%3׎oB?[ӿ82^gVE֎ LSATGy[ӬG6>oT)b[t/ߗ.݅ȯf=׀ >d_lrZUU9?BuՏ?n ʿ k | {:72~Ŷȼ nJڀ?C'CIy~+>-}+p-S_Ի;o]O.*ϙUö1wp5}n7`eȯZwߊO@LBᅧ]sP l%^ΊU ZE[~ϋSvV'RL{ono۾oߔϦ]_@#p_L}G3╺v<|+|(y~/PݞvrﱟWY8X{^Iy! =UWXƧ<VqCdXcOiЯ\_NWMcg?pʩftTj^(>09 * ?Q#/ҍEys>%Gqfz\d7"ǿ+Nxc]YM3}A-\'_n.֥o c@87ZD>;|Nǯ~e E2ъ'q=}ft ?>. /]`c=~%Y>t%<'5rft믮$H-Ӟ(ǟu?Szg|Wpts @W= e_ث7Ke^C᳡" ~gfdL`~p?*>?hAJ?f^J^]_YL#|٠?^9+6|-̸ZB7T=꨼ձv_tf\oaǥ9[{.դ__=_J@"!9w-_Y'ˎls|{\QՇ^_EZx;u=Z|`{=9? >qwx:%;CTw"TפORRn;{ߺӬ;{#cN1i]M?'n7j-,uo?>M 펜_n4?`4oˢ;zʅlA PO yi/?g8"C\;Wr@<5#κ,{gWTwzݒZ|^$^|Ջg\s! ~0r6Ȟ~_^Cxs3@OR_ɢ>q_/rw\{*y<ݑ8@eq z_vRr<eOjɭ)ɣ֭rK~[|W~d}0Na#'_m5 ~'GB_}?>.3~{hh%_I~?Ί;}F::Twk'}Tww?qgFG ?y*L$>#`^=V](h=gD7/{p?jů?׭|fr]W[σ́. 2"|@K#<ꯔ]qAH?apKȘ8~ uJ=}߼3o:>]䷞߭؇p)S!_(o^$8(G+7Q;'EL:rm#O䟰Xs~4kQK/VF(kfjA`F]Ϛz`KHUVhfG2{1|N\qǞ k6acIuu ;tgJw~Y_U}4Ec r=@j$.ڒ} @&wnϠ? 3G8©y{W#q}^Úb;Ά0}zޱ.}62O]d WocK9$#Ho)yn_jяzνSߓF#t7w}qkiYF-#/I_ywn$_`//u<7DA,~E8AJ=J~ׂ|qBZ꒸>?1z"Z.mq/>DNNF?Q=W뭔qfūg`(R#pԾȳ{$Asny0i\տ%~]NO=],}NfI?׬Yk6!L~z yfys$~fּe%\_!קonɾq,q(V?W4hԋ3o!ɭdv/^=𙟢 3 -3輄a!:7i6xm| aƯ/J-룻l~tѭ}/o%Nedfy6Jb_OY ^-:7dob:Յs4*lgxGhZlni CWTk 9wUo:G?VYpwf֛~,ǵ\+~{ca e03!\;?(SI cOWW 6)=۔_`m\a ?4R~OOׯig>_V-^ ]5䰧AS/Y{H,,_OZG_ j]*N?0r<#}ð_Zsſ:$)?;U'Y3M~vUz]|7{[ptes1R)7 7 \7`:lL36I.lK%K,Gn`Ƚqrɧ{|Z<{gFc}#JQ\ʉxWl²3a+uvҿ 0b]t^⏓W:tq)/LU7t1jaЏ?/sZ ;AWJ_?"gvl:G5?j}?3Vȴg\^:W}C-|u=|> yy.u> 3}YQ[tV/>@//LtxSE~Iid*ը? gaRmA#x_p<+Nw|6 oN3!gxy#04p&=uYܛ(¯_! JWThWs{8 Ȁ}at~tЯoil>`Kޛ? R|-+Ֆ-uą;@yѭ[P!4?)·>t珻q..s(x>HNXe'yܲ-\Vu=gԬ/P߹g>r}B>?pvߧ?{kg{&sV?J8۟SY_/ ';Oa*:~?$j SA_`8~0_t}j?O {(+fǟ'x_~NtZ9_6%Vo2ay]u=(y-A^q2'ٛi8Vџo?1ٖ8Wѳ_4 !29?ŏF:{Kա\ o&yKCe/r/߿-W +:.;B?>_~f_Rg ?ҿ?,A51 R2W ^WJΊ2ۥ*oy=υ2 [xXqW[~|UA^19?:"/8|W+Ժ+$N d1ivN8o?څo@=)1_ {SRWה:;AkD.fnsW/M#X/)sOgaYs,K;~*y0C݊[<%E5uNZ7Z3u5Wg.vCZ>Ju'$+^0 P~j8v}_ǿ^b_l{߫b:䫢28;VOa.l!bxܙzaA3]>ev;FcD^\uGzߡ/%bߋɹ+Kŏ;~]9r\>ގd\/N{kޒG^[_M_z yxaCh~ƙ#E{[trT\a sZ8d]~a㛝.{Qm#V!*y'g6s;G7o /jۄ?9~]_/=_!1LJ*#D~oWe1<җD̈䷏S2'CW3}Ѻ?hg?b߈nkX^'ceI#6¨ui{?gNXo_s@}?\'#\=kO[xn_lau5{|혁jc~ ?S=Q-/~᧹/z]_3t|gQT<?~Y0{J+nE'>ϨW+߅q,DXBnbS1`ETWw~#1k1oO%+snr3;~!F@<"W _'^|Ӓl ~>JM~8._w}O^y'snՙ+pVo3k+Mcon NJނ^g4kŏyx>W;g|3QQww?ωi?gοe燶֭8ޛpLԸ˱ᙵޯ_;}{WO؝QkjEo6ŏ/Œ¨1s0W5czܪvJ&%?+܊[ϭ9|`+{Ĥ&_s`|s;{? ΀BkԵ nBng!_3CY?ټj*w6Ώzvێ#>vn-}:o ?Pq5>:̐e;{ҿ"㯢s}7=nү뻣;2f2~ݾB_}cߙ~b?+zώ7;?hP?Uҟ#soaѝC?%jqTطcJnϿ\sk5k7^2es<ݣ+/ޑZVUϡljЂtLs?S.yh.(4li?m~ϻp};?k;qo'$߰gcV .KQk!3_ +Yp ;~]?m}Yx;GugE/%xRQxT&}KK 0X&} O?ݧgQ1?~Xks/nz8sDQd}{G?0Tע)ɡW2١/گAD_ӧ%|y?3лRq>Pj%9~K gSQ瘪7fCUy_.>~߮z5z}ݪ~orI[ b~;y)򹼺LzL߈>Ty_ oP?幨^GR?b{XH>q~d9&`yM;㢋_'Kd8΀wyl<=;7zZQu9~/^GMT$-H0).} ^6>a9>Qq}iǗ]<~Ske}&*~g}mUi~KRW ;YG&?]w,w}=kvzyEosz? ' ;:~R1ӄJ G`6L^< Ok}lW/!o&$3׉>MŽ:䗞ħypeys/OG{¯~I oJB?POth/7tT<Q_GF]Py?=j}Fn {QtqOrr_LO-΂}%|]<E3ړx.=X@ҟqkvAsSJgzO5yJ?<RK=P/iK X[ߕ3wnyxϏNۢ8S/|lRRq9E۱v*Ǎd:1;zǚNThV7E[=ߞ뇢_{'A(e_/zFo0=t{KKL~lnsM5{ܔ{7-#}c Xm{,/kV$OJ>zlb{Tl>|ҝS JQצ6ym?eony_xh~79Ϯݯ{v'fz,q/%rlX͍)G79c:U QMH| WռISN_X ¤^rR+a|T| ̖ܢ_z>0.ͽG&*17vOYOOϴ!xusC<_K+yU~ZpjQ.+w^s_as9΃Kw~ ;~!1}~L(o徫0l?^fgVku'?o^d:T+lyt:>y* _u7L |^PNߐ"]CyהU\z(奋&L,우ۿ/^:v{3WW/oT|0u&o4o6ֶ?SO^r GRgxS|&Eң.?M\埡}lɨkΗ=+>ܧ nk]lꭥ?I\5{kGɏfP!˯LBߝ )^grBĽ?=WM-<%Eo2_+wE.|~f+|c&v^Ϋ[+~AT&?^[c_(.ҙ$ܯ5Mc<yV磜l#:sA}~Ԛ+Ǻ55^Ԍ#x]pn~'v{Ru+nO>Us1/ҹ!gC>--B '9)iJ7X`m鞫I9~lx@gF)u2"g{,gi39AX&F`8blt~t暔~ ~7a WX֞W )?A~ue.f=h//̀Tّaj&jOGcîL^NNA,7Q+Ε['J>ΎG%dڨx g5sWl{[vC#?:ڭTZԇ9%!Ka ?_#7C~3~{q}M:;:tϯ:mk~~qly/1"]|g_4 )?Zssgv9%.֙.{AviCƙ -x<\w枣kzr(9<~RTdR$|럐6b{JQcuQgy7xh~Ks~a{t?t;-?0vWX_r:n~lf@:~ҝM9k??\1^];_grΨq^/)w\}W)]:KQ'H?‡~[CXw # _՗tbu_^s=>sA ;ϕ!O~a <UQMv5Mb/7"n/>7>#Q{{]Xw9o/7YuW޺տy #{]모{H>1PN,~4zYiC/|+SNqOZ-WG:/>&cO-ŷP/Qr,V?P<x͆_޿S}:靽Cw4C~ }wXoC?>j߾'љS[ob畮] w%OXK=~,X-{ڒs^R_ף R2™| }zgPO1N}|({(2YB~[ ׇ_*ϭ#?MNu&cg}ENw=¹j f_?8qI'k5AGɎ}7iǏH~-ONư_C ~|_wlD= OuQeSg.ťT<{]nٖ޺}g˫Ьis/>~υf?<8~֨;0XxLQe_#מE%CƚC}:K:S{WcχүڼۣΏx _c毆[cr~Gx_Ȣٖ? ꣑ydyhmᾶG& 1|4׭?zsԙ'ȷ;4*{]~.ړ1k#y!_ 7Dkr6ƙ‰Udwme@XpX'lo{]TU1-zʤJ?"eW=bQL !o)^gܼF\} j>D+꿠>KwԿ|l8W|$`er_:e/_]:ʾG1}uWyn]ߪ*-L9#@^m{e;/3|l%G}LxN 2#a6~xLܜ&R2,oSk^}T{|%t[6ړk\[1\ybMUSz>  ]WN237'{ƽ) P_t np4RbO(]+v4W9K=Vo ǣ߫ߒ5:W/>5_eb ?s~O(_,]s5Aּq~Oox~/.?o}R.oSz,\7xf&ԅ cm=yU=6^&}{gpܿ;~?'^ Q\~ۄ+]~HaIʼn='e|~=Wb\5);u&GohvZ\WE~8kIT"ΒV;5*.yQ_-M񫟙<]xIR'uQ~oﳢV'rQ*TatK`=7 {Y$.fLGh?GMNZhbI#7&՟ owޟP?{MThrc3E{~ϒN\`(qlquj[g0.jC[}~kǺMf[}~Ns7Gw~X8dW+Rcv 4a y\<~Eo[^^lGyRq^ ]8:KL&LNKAvaIE#lLEx?ϑWaC~?8N斔[^0Z-9їQ.cȵ!!.tKvR'|Q e di>ѭ&Ykᱷ]'k}߷{~i:|^?\3nH.! bC)uvB:ܚ3M&J/bl{xIč_ud찰-Ϧ_-B-cu3C7O_6sW|?2s<G pw sƿk~gˇvga#YCм@O:% ߜ{|5/,K=OPg_ﭕ^ސyCoSft5yZJ _pw> O6Lѷ|GE~y.vG_$}mKeKM)ݹY`|ҫ%Ȉ:)TK׷A߭+<;2|9u`|kCSOmHykgzKrm|$r&/.>&*r>T22u?cY^=t?oBƿC?9?_wNZ7??Bto?dRN߉' 9.Pl⨨8}v=&13WOt.a$#jaƼ.??o:g|̈́Avn7Ivb {ߌş j֚אgګux]u+.n/)3iD]΋.rgOHYy)ga= S g&J>䦨ˮ4y'!~=ft2X p̡C$:&C`Pjv.}=>?Sjl>gDCْbNcƲv _]t ɷ㬽J? v):{ ᳓&܏Θ\y5'%-\NϩV$ D={&Ź.i!.w8ﳒ\{W_ףJ]o7~Exoty%ٗ:;5:at'cqnD>{h~:*<{dVs8~~jV\z l0 { ߸0Q':HK͹/Rʑhίsf5)˒پ)m3Qm-+&%6FvUfaڞljn뭵M:?B4iE9y_/I^cd"kEz^L gG7s5R׼tg1n2 Ň[^4nCϊOe):CņEII K,?6oG>{_t TjO~J2|jWS~ELZ'%~65j>z}j]ߒT1Q&Q?ˢb # gT>KA< O^gllM/.Ԩ5(_5 ,k֎]#`*>[ \wVxD#K_9/- |Jt'f36 GGw~?#Wj8yJ,?B9tdOԧ븑*zGP=(|2M½_hw-aԩG 8;6LW<u~8zy~:Ce< j"v}z.H3jm>g<\ܗK.}t{s| 3 w}UL*֏qQo VQgY_~HѵG{~LǓ'x`n8dyJog{kdwYo}jzX_zgGIm',w.JyxJV=,m ' ȃW^1X_k_;3uɧu79Qǹ1[ fzGßlխeo/0z?LTm&#P}#*~8 sN}?nѿyү)ߍC3AF<aw]5W!$}<+dcOѮǦ }G'Z ;s=W+O?^?ƹl;γ{^uFX8}U_1'LysH$$UpF?Vvnn<V-}pc?-:w ;ww]~.pW6ͯ'ulT1wHN >-<l9Q{o}VoE__;ǔߡ~3/ 0|cC7 eyl%¨1範I_ΏZWu7k[ֺ%oLWk{":sKZr6j-Z_Jz?k`??rmt븼(:3?ǡ;.ecŏCwy=OA~:t_wZl#~~Hts|Α՟^5uW^׿3jj ?5QA{]?Jn,ɞCoɯ .~5*^5]U]+wE2A6-m]On>ب,qX?Xۢs c 褟^|NoV=;Qe8W:"6 Y%}Fgn|f_[Y4?Eˇ4oqOZ;WwAl8gL YύqQzKF٘/CFDWҏ10W:f{白?'Q^ϐy[zka1.u TGJ3uLo` Nqߡ9c+ N1w('x.Qk#?OA2ƌ_TKr_˯I[vu}ߡտ?gDŶzEɸ-\ gk_)z*qwׁ{ZV=UGnoe6eT^kZϡ{aN1fR+ݹ/j6Ws #΅8VVNchQX&m\C~|Loc _=Fߎng(ߋn^hߡ{튨3HW~S1~yӘվz?"Iy_gu^#a(JIѝ%ݎq8~?, 9!f[od *bF^"Fnq['ؒk3? ?_gx31P3H_ ]~Wc ~ (w2~s"[~u+A0?f? c]Թ~^lKnf1 a. 3=f5̺O_?_:j-OZсl*v80>4saf2Y/_=:}Nǧwh[X&8J]f8s+5`E_8>j.R5 s쑿+u~ KA̬-e2@c7n:{?PG<9v,$d՜J}|_0>ǝ5A YGCa_E;(^Fsϐrg 譅}Zo-FNڄzEuR^65g{e2sAx2-?=)e)8t"Ay̩ͧo'G%Dw~zIѩصA/0$? 1cЫSWE]]K\ulkοL?-uV13l4?0{#{i{,oE0@ҿ*y?D7Gw~+ 2%o;ax_3EWy*u iҶ5sB%cMq!_o1w\zk~>A?g3ykYC4{Z>^_2|I9~C53y؀2oPs_h~־K$>y8.eW)ysM b57ۓr_;vq5ES}wߡ?ݔ<>kv4tk+Csj+uvҝʽ?tIvzvi}?82V(~: USПښ}-_??U(]:cyV¼v5eY|hl c\}Qbv79uwq;KwAKb{%>P.}s _}`K^F6kU}u꼇o\驥}-CJ‚+~nP/ccGx΂wax8bf8=y?=ݗ?؂R]JְgFel>\>{l+FEsп$j |ft1 's75Sե;]3&&yMeyuOΫGwݢdsS[&ˣ7578]~z'1vYČmLf?cJם$8_ёe2ى~P˚m.u qVF7G'o^kzkhTgc:~'_fr3>j|߮ҟ,6~3<|.{\>39OQ}hw_:ebdY+^v|]\!C%2ر\V~}>rV;*s Ҥ߯ٛJ iT>zHg(5\c.Zޘ¹LYF*E. D ,J=&|$C֑,ɞχw:Ơ[y*I\yc_OMSC/:̤;t.lSY-?c%@+fK71?s;?:\w{#OțoNY=(uG3_)ݏ|s^zU^/,}# #9W V̖;;+vm2#~~~Nuѭ y|9II}Q{Ntm,ɿYՔNΕZXOn?>qގ{u>RGO.5ԧ//]!?CS=}W-gbbYp*N}uDIr&/J"9xʁ]<,Ka~.q)lM#4.9?,\E3|;gK̤)o(uGr/&~5r|[)ѕ_eb,ocp_/B~)o}ro7'y(uNW\־yg4}V[ 4c{Xח}(vr7SjZ|&׶#l!Q1 ~gןΏZ{ϸpD[]e~\/ϐϵy-vJGWzM>]eQ'ڬc7@ 79EMw#qb5AFnq O;t~F7#v;i/?<z?&\:|`O^j\b:.޷۷W(~r jY_ZIʷ溞>~ǬSΏ3S$1 =I伧Nw5է/M"۱'av?eO5ώ~wE%~e}=~㕹z i=ooWj}>@1t's6\F>?J{~)s/"ߊF=F/Rqn*bLj[1/=?*sn\<~\~ b>AQϿc_cK-WcϨ8Nױ cvc#C3O*v?!{g58<_{ݽUOwvWik% j>}A;{Ͻ tS3Qo{W_} OƠ[?,n½\;Wy-y ˣƨ!h(u1(Pp yk,B/98-kdy ɡ.+/{j{-\#^rNtxKAl_\<'=}c^bZG->?Pz{l]87G,_cٲ'~ â#k-s?mga벫4>~ژkgrY/ K FrFfj)}sZiycD7޷ϣG!'McO_֘<s~P/zg>B8P[_sceQQ(wxxQsȬΎ]JǴ6yuK~[xś{k՟?& c5'_/_klǡ?u Հjr/#>~/Ķ^QT;ۚgԯwÉ!n[~rnu: ?8>/F`M(Šfג8/J?tb{!3QqjJ_y-.cJ~7W3vSyٗuF!{on?-I=<:"jV1c4?=~O1^d(3u]ѯW};~F5fћEw>١gR;׭Po WgOsUl>+[X0@?!}%5Ԟ'^?(疊I%~Kʄ*#ǟ01>a¯{8*GO6:s}ɬ?2X)o jk[dD=I}R {R,ea,-]:v}Tg\ ~uQ  m˵z&NWDF-{:&׎!~a1FސC6E~¿ #`z>/\wzdеC~KGb{ S[:~R[c#Z Z/Dܜ<ϳ,::_TAcIf:.z/m{ү3iJ7DA#|WXE z,;D",LN~GΉwV[Kْkm}jtĩ ~Xda^&{ߚ5zWCf}^fB}n_ꃊ~p"iF<)ӋS&Q ' }IY8 62] q*>—97,7m{W KbIԾq]Lb먱$Fϗ~k!s5A |}V#nO}`ў] j.ga^[x[k ?|^>O]g3yv>w&1J9;r-=?X*pllbsu„[bAܻ2_/_X7'_P~#I7x8w޶ _x}(O'gA qOɹ <#G[R?k)89G$ k<1yE̓yz׺Z魧\9_/!F{_<*bc&etg N:J¨gAR~39 R]~;E)Nٻ.y/YHOO}_*N'Jm|=6yG9Wq&} gTKώL=-kEj]>j.\䇣9'] &*㦨Zo\??LJ&R:#Z{^K_m[{o%)'zoT;e7?hsJt[ŀ}:u|<kEϏp~"^ƑB~t(YD`U*^"?3WnяZ5_gb|s:|zhԙn^ZKN*/!&Q#?{2b֧E=~pnW ?;~7+IeQjkbwS&/rX;ǔPWwv>/a9~/sLZ%POӅfl|c6^/gw)5~Gt¯s.~|?4e`797b́?9&_/yuvX8W+0)">gaA(iNt_;kHEc[)i֭7:u٨x!29?4_g hFKv<^_jn _xʨ3x9w8}zʂ*F{Ky%+ǘ\^^b/WO+R#>UK>ArYC_ijύz5 %t-ى/*mUA7 [99'+ 9f'T? c謨iv͹ԟSgSOE_ՑyȳcSρ_+2ƔW:Y!yyCC?>45uGtg(~|~ԇLfPLcKw~.r72Y+yj7zF-3gӓ)U3vΎoywLE_WB*)J պ-Jc.`WzvtEgbԐ})jfbeC7Gwf_oTz&jo?Ѫym>]yRgf᫿Ly &sWg|JjOvto~g,S^=]oktgjNɝ#;~I>_DE~s?14s;W^'CM)HTvl9< 7c0k.]?Z w֭όZknӢ ]Oiz&?&~||Jˆ}8j}.vk1G>2)T\hh wc{w"\z}G}yGC\;lI_pZ=֎yLJ{]ן(vQ?oѯ}xW9]~a ;&?o8+u/Fq;4O}[%BOnεs\F~?pѼj;ߐ|:o9YC0nPmϔ:]4ӯu~gx]9(yߟoKޅ7q,ʼnmɻp8ꭅsy\<{|lknJ;5QsxӘC闌2L8Vs/j?k_g%V]֊뻢⑸۷DׯvL٨t_{[r*$v\?m.FX;S[sβ0*⢨3v5_/F5Bc U ?_c?%GtsV}YP?;~?іVߖfan[yQ㘛zy>ϐxlL]u}ޯ:J?2Iӥ)m1◡K}0jt^yc\vɬcTr9}gDgV~nϭWu 7GKoVDg?âX޺>?kCg:1P=O}dy}]#??>.P8Z׵ΉZ3r]g:O[fѢuT65v\va}R}_cJzEkZ pc{?.szmcuN1c\sq7UsxyH?I=Kڹcbߡ+GHΜѝ|W潜_\d-oYFc}59o޺?GGPs~@Fd~=6ϩCO]]i/f|ŹcP#qcGsX_5֕E{w:g{{^3v}lt笴Vu O|~jgϪ5/6e(.~~џi\1t _&5ofbC?5nQd [,Nqyhtzmzn*[٘^RZvoU-ѭv{vU%E~=g%- T*},j y(?gsF> Co:Fqrۿph&aGraG J1e[ׯ{z]p;G'xfE? xe}nB6yt-?J?rO=J=R s- c^QO .lJ\\!7{q`IЯ3¾U巢ۿ %)OgCB/ڃ'\S>a7I%Qgُ͹'wG=\RЯ|W_=GHLH?}`ӷsGʰ/F  Y5{q,~,pוI;ҢFرGW"0~t[Svk$]OׇKRԪR/{~C`x_ܶz7ݙ ZZӚ_߯s"h;1cК|.7EŧY' sfI?<=#?Y>lA&<?l(zԋݖ<%}:uͿ]@|٩}T+Lzxyw{h^']C^ýw??t˚xXa.+p}? ?MHz|A/M:~z)]8K[]zi>T{x$V?7e7E)ʉ][{K: ^I?5.ń_3֛7A6n(/ސ5zh\?KZ#KĆѧLOoHa~[pb}DT ._?誼'g <5e*I`=,e/s3Ϳ®{iKw'VoǙ9"eWo> {n)7LuĐ>\̯3O~e})tV7=';ȇFg+wAрzO8+M95|_;JA׭~6+:+p'y¶7|3_HOa?uJy}ιpLǿޯ);]'X"3G3+Ŷ=/G{l}3WyyB GW9-hv,GceÞ',# 5a"ʮD:å慄K F_j9+e)})F_Yj\~?1>s w~'+uz2{kv6XEsua<Ӭ hW9,pwЏ:yDΒR}_\L.~Β'|ӓox>n>sMѵޔF&]_|bogF-zܔ= @ Qmg&?+9I52Wş|Ţwyq4o ڀQ1X_R1c&Rh@c4}uЯEşkL~p#ܭO;Ǘ: 7v?Zu{\5~U>=,t&@~?R ncGU6u+ƻѵѭ9eC-[_51D [H 3l??*|S0څ.vp}in[gO՟Gיi~Ǻ|O1 T6@Nr~gOlKJwj4N*]}w3QgHڡws%oW/(hF1m;v~-_B<7ieu}^'֯r*Cw?Ϗ|WKSfub4A5qǖVs<.2#h/.^翳1ζj彾kjљe*SP=z]/ S^ _G6Nt33͛ CWD[ߖt~$^QMt+>?g)ņim;@?z^1$~T@tgj| {=[ϿnLcb:|D_3yz]y{Rb_bQN#Ux] $} oտ~ݫV?`ܭ0 <{@{a~|-q ?jZ9WM1=;\fa~,4gWS^Set/ڷO_$Q{7l_x[t3Z{.f{֭~~֘w%??,j\?&~Pox|u1NP5{Qk敉SotJ(1Z88?˯>l׿'rZu?/魥/7֞Cv)ɯEoB&_(?/Sj _N/ 7>_rΫ_óc_GvxYQq$>慽dsz}#__I8墨EQ{wizTKXnW/$M^?3FP[w;W͛G#dq)%]d1y;qV._3ki׳Q<|Zzk&֎zql1~.j;0ϱCwoﰷ}#j,:{ 뎾Fֳ1'Ͼ 7F _)k,J}ǖEa 23zɟo]~V1lT|ǯ7)rvEYwEFh{ֲї:'[v}<7¿:<*=Y;{Eyy-A,I)y??#~JrOy^Ly/QfodǚttZDt6i/F=v:~g^z+ms[qq dZjL6Ψzg1߈oqPuz]GKjw5}dJW04w5߄;7Oaņr+y/yilHNۯG֔uk.᪨gCnHoo{o{zN{,?au8~ kS&~*ח=j{_>#u#IaO%yZ{ox3[+{Fu+^:׎ۯP: 1P<ŗ~\/;|c =fǚ;휈{eO= ÝߎUoo{U;rM 5ƍ_svf-ɽCw, ygQv55?kQ0tW\-z0 xhߨ}^9"_K89*ğ_lzd~2С^6?u8{a_?>^㹬W2W˓fyv.}=¥ZݭJzE]6bp+ kQW?% W#މbT҇s>szd@m Go0IeT h<=B8"} ,#ʯwSǿ>#z]u~%X>~n]mg9mS#;%J9`YJGClϊWzTj&-E{kCʧ_[,ݣpEQg%,Ͽs-u-s^ߞ?KuYNтRY\*Ɣmy٢)A[ygt=zOLzLB9b#´</eCj˖Kn&j?_t:Fe9w֫_T^ggGKO/S}H|kNq>?W~svy-_=';_=?wgP8o.lQ|ݢmY炘N+Kt kէ|Qeޕr@#3#|tuE\VRנ_j߷ck 7sk}R1t|jRc99GC'[5||βzN[ M7IͿL;/uF}b;AC-a_|ti:5 븦XR? rF) dDWO.]}N|緧E{{z/O߉R>J;KuDzx̽9&1yYZX|w=6/xtzIE\߻ÓZܺu^}fTKboW}p6@!vNx4Z*n?\ s|N M؂?:y˃Χ'e/ƿNܤ 5t2,\؍Sv>~W}\m7>{ʯ_S, ]6 Uag>|e';~agNŠۈ_b_yOVj}V,?S?.)ZGœ$ϣeQ{<DřuL<5_k-g|l^{=/Y6'4~%*}=^ v^[nѿ<'8~ɯ/_ lt{f~4?|ttbg'rg4('\ԸmtKZw}tsZ;C9?gD?$ߥŲoc7^,r2RX<?'ZZv>D4u~W%J{M|wS+o)׋9i?4˒fǩkω.@e6e%-L[vjfs1֮y_۔ߏ' Jl,XC$/':?oϔQRwpƺw^ _dK~W5QkՏRntjZhw\w/J^|E\<%ʨnL-ؼa* wRu%1eaeˍƎ5.3vIZ3:L?_30'LhkWOO_dK^ڱ]N븲:Ͻ"Yס<Q\Kmv_Z5#}. ?{c:|OJR+lƉȵfSlO?ύz{Ko&LY=IցYhULп0dzV9hVs(YUWN3;pۉ?^'Z|~`Y:7i.RdEN?pn%+9~_6'{ R\T:޺?FbWz""vJϏ<~|m%6N9/:kM["+aZc˔&x[ w~>;:꛿?s}Ɨ/ͣq,%G:27v}} mK ]G\^ke'N;A ;bGw\GO]y^l7v@x]-߁<.j)ņyY۔7璴7͛~U6FSKu xKuV^':ts%@7&SGm]꾩Ag?C3O-uL\_S] ҭwꊯQN:H1׿y9zo;ΐ:t|a?YvܯfNl_}VT,Yk}V¬ijE~~r|ťĹP7䯰"|)AkZޥq r|^||}>tǿf3?;^ϫ][i̤Oderg37$@D`6զ0nIdU\dْΑ-˽ސ\dwW |]w=>>^@a?|(yF l(J +OӌEՕ';NQmx94߃|YC?Z6Z>3߾ _`O3s.FwN LVlK\4^ť2Ǘ-ʳP tf44G^h/|g͹NC*FlUOyŜ`t|fE.K;-CoK.Z]JW <_i;T+O7Z4φ~\7ȫΌn/ ķn;ާz^눝[SAechQlQq[gſ&Կ%:m_]ψ_R^gk-&ݱo:Bם1͚qtw~_.>:ߍP?.,_CEKH/s~{R礻>t=wsUo.Atݙpi,Go/J>y_C&hwgxEp_كkK':)*߷{^>EQu9<;vzso~n:NpUɛ9}y6@3ӕk䫷\p0~vRE3t?]vq2< ^c_漢'/꘨[ryVϗ:/S#˒5&x\j,ܽOG|•Qkҷ}ſ{;3>ZZuo~QgΊn_ǿi#rP?W722k"EOUOQg ~i,y,ϼ]到 +C׿~=Q혼I/}S㹦cnLw%xhOO^bN'oiq8N&>eL!"vڨEͿyrtԞ$T1R*ρߦĒA~^';~)?Q.V+kޒ5n7u 8K?5>_W /3QNXqx]k~=GE͵i~/yTyFDФZKK/!v]Uj Ĥ+pmҮ)ޣA+n1-d}թ~{ҔȇO,V^ yE>;Kz_=y~T)h_[u˯V{qc?hEYOZgڒ]j_ZG)ӋcN9#[ G|hb*vy. PÔIO`w՞z:rnJڱ=9Я Ѳ{U :T/bW2Sܗvy.G#?Cb[˹*g뛓7KL}N#.ID}sITn_d+7§^R'i+-.j/}W?{ xssQy>!*vrtzH1@?;Q^bbuV9?J9:9O>cT?כW1|#?Jp]G .{̫wt=~t7Fo߁[H{kpj+y 9BWu韦̪~Wt(vO^~_._OEwW '|{FAO39'Ez yLaRuj,ՇcT섕NO%OT;)n9.޿~GT}Fәy^,udX?Wūn_mDŽ*O ?LNoE=Zܶޚҽ}NO-U9"e5-Co{l?6} ϟ D$/YP*vq{!4I9)mȪpE4?KwG:=cˎljFۢk1FݙG5Hf,Cϴ{\=q3c?QvwWPKl15>=7T}{Ozkd\#~+ꏢ~(y'_fU5T_=<2xȎkS %?s i.<9+t07Q˰s"j3AL_1w'_h󶨳?E?2NSTQk"߲;2rv {kȠ\} fת=2kןeǑ>,Oo{[MB=wKqq$mPqԞM6C%g<]5~cbZ'Hv]YGy󒯰amo?A=f[ofqR1dU}QֶS_gRxֿ_I?z떟ܺ'RdoL.yH~9%c#Ƚs]z!Xz;{yvYFg~ME~MJ?)Q⌁sn^wDwt57FM_lM_'tWlU׌6 W_%B{'>5BCyO/g{aIƞҿ:yUg[s{m H>]<b#;u|&;n^՟58:3O~:mL_1OBqX\ENJ?z*?:S!85Qs@svQwQ>=uL𱠵5?E ?[} zkLX//J8;G?У ,tj]F3D~}E4׆>c;)'D]un^qҫvp/yzF<ˣ&c~Gi0zwT w2y5ILrd2{pn,]RO$r@ߝf MJώ:?+;]/.CЛav0G "Q's\v{-A87*[zqka/zETR*DvH~`sYwkʳS}?Tp޿O_luNJt-漄xMib]{oy?طԞSRFտ ?f0>n{:s^5t[ǯA/d}I:*_/+{o[k~Qo_9~>ӗΤK)'%ݚzF*xF` 䔽S.v"<~+]\cF_i?Zk?sP _],2Oa |.R͗Z8GEѱqvmAJ͢.]-uA͒~.:HKo${G8?-c7'+YX9B4@᙭Qgxҟ's+u&̉>Bg^AQ}/~sGŘm?_U6}>;_^fSt>?]ug:uUI- ?*]gaP'MQg^n//`k5[/s-WJ1%rwݩ|ROz7YߋSR9A`|Ty=TeHG5ww΃<35Rc_I?"#UϯwY:7݅!{GOnѶ-ZXЎrvWE/E+굹&݆wIX(^|/R2׺&j߸[OG'd_K0U8?YU??DŐu V|+uK:~,y~dҼ>*&0<󾰙-uܤ;mG ;灨5KgVƾK G}~IG+4桨yhU٭'~D? wﵥ?NJE\sz965q\hF3jM#d\wst6񨨘}oVu[sE]YyzpI>˺R7DOT [o>5PnTr+,uz-9l#]s=ףFo= \x.wb3%eo,S3`\c =?{J<)a}~L\o=6j=CE~W+Oy*OQ^nsM*"ko?u ?boM=''Ԭ~ux8'tFt)G~q?:[ssYUjҽW~5oNɚi|9yu"ϲE3෫Jϊ)%̓l ү L]|y6o.0x 9:?tUzu9eCM!=#ҝ??7!K߇@QDڽG\Kc`ӭ bMd)b`JS5UkN+tbEp{V=F+_ݺoΚ vɳ_gT?T9'k^rMGjQcaK~Dͽ!3oaRgȹwE+*򃞿1B?{x*,Vzۢ C }ɫ|魕s6]X8']? *6Q1O-@? 6cwAX1t-գ 򨎋xB Ჩ>D#ޯ>n$Ϫ~$_k-^ٽzO.MlߟSoGsY{tvHI2{qG>{5W#9 ɇˣQտ-u>CRQg([_)C/kG#>\*i1 ~ڤ T- Y;~scԻlb8&bnoOd-;Й1\f-`7e_Og]='kB^O :do}bԺU䓅#x# %CO᷷[Gə1]aɼ'[v??E6W ?Qkxo-lzkl~ZcwY LG?QwOSgA0~?Ϭ~Ux{'_Q)('Xv TOܭɋE(}`5O¨r].UN;yvdy|_X.V}KohEz?s o_tOtq!/ߟo'żO=u> ?NJ?t!{z<*9-X]3S總V¹jc+Ε?[ϊ:[kەQZ~5>*2u~["~{ɩ[<߹{۞EIWx3QouB~'gaJOFCO5jS)q1=8Z.aUf{֭y CaՖP;>gﲅƹ9F|~[|v~|&be|uCtAFxe9qQsC1NJ|>R!rwI~>] 8t@o|ݲ-;o%z:j?‡nRrslԹ^zje~=DgRH,xzcX7uOxYWgt秴i{{-1ם}-u~f\_.]~{'.NJ\edOc!m!GLJ?q.rMYļWzsSS+2_e'dk֢sF>ݵ#5w]Fuv|q/E7tR=}ȬRe6=ҏLYvыI+sd{w$ij.>[_bOF#~VnתS|>bO]_?}~wFTF~)uQ{҂Q],r?n0g9'y弤8F߄fH^4SK _HTGY@t=XT߯u~L^ڿ{k譕=jl5O8F7N;G.dzO{գ~Ν,V.zUVүR?nI31X*8=<ܸ&;f𣦢ƗOK_z9sK#OP]W9ѿ *ptFeZ/Ligqnۢ2^^i =.Nޥb _XL'lLƢg7(GrPo݌'_ ?ZT;;_{+|\Β=kGDF iLDz9۩;νgzhzS`пq|k~"'Ea^~&T,O g^xz7$Kf_|=eQX<[-g5g}yo3ùeHG#k3qIU4wt[t9ۤQiA&?t@_8kSv)J~-A_r.7uo}GA{גe_]kݿێuRuWdHBVطOaw-_2?8t%ѕ_?3! |4±R{ŗS^o?#޿A53lj\U.n{RTLr0g.֤'HE`:;'?񶔃L{iI\eJ|%. _=M-6 a^.]vwE[99_̟[~o?V=r'ϸ/*EN'|"o̽%e0DUkv?gFpV6W~+(l&?J;#?- z9I.w | }?sG~CnkoH~ 庨'_~ߕN??KŰCTF3*˩ub75󨟿jɩj]usOo-]Do=|]fjx^oR.]Sη]n ߐr)-UQ3SxJ>f2RqW&\T«.3hm?IwjN,|Ožc<.%*e)}\/Е鿸` ENukפ|\}^w;_sm?`Ҫ*&(|%Lwnӥbh7>aQ_Wp, S kktgd;Y_{[KG/ᾤm:*}R-uS.ϽfIBK,K72ܢ_DW9~)kNEfɳ|>M^G]eR&+vnQ r![ REW_cwr;Ks&Wd+&UQ/>sTmZJY#ͯ ?8? CQTW ȔVJgwooݺWrȜUk޺I#Oa|_'ʗ`ow=1CđW|TT\eߟ5jI9Fף{%ykS৵)ЯukJ^BfN3P<Տ+¿Փ_A$1O|>bv==0.-mi\k~Q #-y[~E~ė\B=H:A]^uf4Oiֺe%w֪OWˢ;au>R ϯ,5ze[O)ǘL)]\³]jV%5v܋GsLl25? ;/ͭBVd'|^ïCnTCmbGd$}N_P0oH>??}&YaKr?WmV^&,5Z5# kE6qe/=mŹVBG\?u4_ɵ9UGOY4 >'W2{$rO)Q}G\];%wIޓ ;ym륥뿩~cC*φ~K|{0"*uo(Z&Y9ogZ>Q;+fs΅qzʡ?ePk]Q?KNN,|,\6s3 }Z[~[_ko?|EΠ%i?|f/DQRg.?_hªREpwvpYս-3wH[83crl`t+r:wMէG]%u/3QM;.-RNkT}t=5VCb{kak갿{/TF'~!9>?,兦+PjjCgO;2G9+Vj^of^S/x>"L_0m?ե£g$ǀ?dX%>{_#)׊_toL ?LE~ʁ iE/󃩃M~g(%~}PǙ,ap8Ep¸sVOuͻzkWlCޢ/ZPKYCO>[?߁\—@g]癦SyvĺoB{!?㙦{l;J_n>~jit'?ٮ/s=~lW}p}XuD vZa)٭7~b$ޏ/{v}ߥ/yP~l%7֮|ݒka^[Nh#?(kչD.OE~ڦFO@~w%Ul~!OjǢK65~&h͖<>_?F}'-ti?7O/w>QJS/k(I_=̊ɣ.">}7SKTYnz*Vƨ~T~ϗE@WF=jSKMc+z"%aQq6_<󏎎?d"xVSr.:Scd?xr}}vTZzޏLA38 ~n O]8fǼBJ櫏:#x_5 ^ޖ3J/;nϮ%kk|ݒ_ӏWz?5jdߢ}FF\Mg/YXV'tQS >_fwy$o,9D~W/*bݎ(r}ݒ_zsv{AwFGWqe>ߢ?OVܮRWKU/|yDg6ߐw_2n._ZʨuCV>jC;-ylok݊KO[d{Q~oiN?|ްkܟ*77)[1K\%~5MQoC_gS'/W}zSjꭽ~ՁѮqUtΞ9l&'?˻6"jl9d?>+ǰT?Y.gpg~x#S1Lqˣd#_˞[oA?a?x?7;d|Om&j.T |xTg{/"ϺI_y{;jYTM??Qc-"t\'~[O~qN^=;rzbr* \߁{UH8dBFK(T?9~/wLw}>Q1]Z2R{^,>?0L5 a'_#~꨸eԳ`Q<u|Y;..Lz 94τg*_xGe>ӥ+R{EVݷfCS\qcJ4I9Qg V{cxdUw٬[}//Op,#a\\~W]]k]}~/X5^uO9/94o_2+z~>sy>흯ǖ;~vʰg_I,Xשw\Eo¿1u=w# I]3O_[/y$?;!?/nžcF7rwI9}Tf q=!;ůfK_~e#O*#ل;?l vݿqXuM>*<#+ℙ渾~p-Vߓ*PTˍ6GϹ&yP 7_|>N΁>laP"`a ?KȫzTMJMrip{NC8>z}aAKJv7.`n}@ɯ-(#ډ;_H˷0ϧS~љƏKOzL/MWԋ=53l:I{5fR17/KK`o-#}3y;A=>y0^.(͍pKƆ SMF3+6Eߋ,j);O:~;W-Oů 'xs fW{7 GVƿnѩ\HkNM;M/ 5;\osA~oͽ-_1? Dq'Ɂ c,kvv  ] g#r9ۥQu֨2ySnjB07P~u3σO*773],,0n}gXyV ")uѻƽS:C1ť˵ 'S>/J“\-u:Q &i!?*R~/J9@}gKW};yWS.t㚙Go.fIѝ^lngA~sa;*&dPa<2%?s;s8W|'$K f oMA<9> ϬQQg0(GmL/8'hfgcѝ~EQsWpg iky홯[*9>j9}'+"|~> c7"$:GSnw%%-qdt>P;~w^ρ#z\(q0ݱLڑWz+JŴY͞jן 3pKZGѥ/εBz&a1{39Ac_Ŗq-ſȿ/ [u*$!=F#wϪtXo?,27EQ/Zei_u.Ԍ#:K2ʙ+h$υqJ>zK|S}kb/lKn+w9~f˵wFbs,$_M)D W3xx6|cJn2w??ru 6;)WuI}>e3ϼǁQ9Dj^䕝KzꓹJ/yg# -幯.ˋƿ‘_^0jyqO~wxt^uguTTuXCu{bd=orКvR;Nʨ㇣Ώ&a+y[>W׽NcR9Nxjn$j#%ӔQFx^-I7y[bMܟ]uW >?1*s+(f/_RGjo|#jp%}Fg; _O5ֲw-y~/gѪon/Zij2;f[[Wat9)сۢ;r*樱Lx5}Xzwssёoy Pr$g&3t> to[KLYGy(;)$# &wk^Arl]Þzwҝ35'W}H'Wt8;vgofn T;9}_]?Ay?j|_LE#п<% 'Q agGdnw[Aٵj.3o%kG~_Ozx/.;[Zެj6.݇uyWy#y? }M?]U7$l*]o{_Qg4ooWyO74-:.ָ>27c)z{otW7-;s{ߟzvhԻm|1L8ωn/~_2QOG/ɽsI*2t㤑?!υ87>vX,l9_{꿫~wq9v3ѥWo(yh-d-W}t xm۞A[A' |jgFfU8OSQc_t䥳ŞoĨA-]np8Éu]_;CSv~ikCuo?$^w~gqnT+}#o?EeFe3rS₞3вW;N¨]GŊTTx,-\,ׁ}{N7].m~GuA%?}[NH~91Zc4?nbsn]J?N[7Oxy9)~.-Qot+~0{{խozc7wSd~eQWy0t.Ccԃu}UmLXC>_w~Ƒ!'V C|Vօ6tQ>6ޯoųx5vR:תy7?:>3u[;^I~~GKs tg%1C2DJdz iO_I[;ӲLZ4k^:~΢H??)'_<] _׎_"*~Ԑ?!Zg[9ߙ4Ν4_o藧םŏo3X:)k:ǿC/MJ椙pD3)Slo=k^0Ny(9 V.wk|Hz훯E)_3 ។^O0l[z.v9Cv>ZV^n}vϋa _t0rkVϿ) :?;*jmCao혊wSZSFSuN(<)~O̞}q>f ^>8|Y3 ZY0CB{oD,@^I~f.0̔f^ X+_s= s=4ÝQϠ3ٸkY4? zvaг~^xzf 1W/>ShRÕO7&o+W_Y v>39gn'_(u6gtj){f2C+Qgr_x+~<~=j 3QZ8/xMWקEQSrߏEQW {>Rg"=ȌI_G|Q">?kc0_OZ> fy0x?<>+#ٸ{Gs,9\^ejŤ;ɇ[{k e[w kF1(7+\M|+yJss-e4NݑI+&ycqy?)4;bX[佥?&=)_ˢ<;8_|?(#>Ws|돗:wvY9Sqo^ܢo^Vhc3:|ΝT~w~9Џo:nn}S~:I.2Gͽg>kA0CE'߯tq5!d_:'|yp(sR9qac0s ?{5rc074S|OyVQfnɻZ5g+NEw|>uZ>bÜW#䙼#y=ص}R{R*u+x ~tVynA{JJ~yl'j|Wʱwhz c Ό:x}-3腹A뗧TM^ǜ yǧ\3?U?ߢU>Źy7GDαy[ qj~|WsO,7ז32ſC{t>ǿ:_gK׮|Ƿ[?ϕK˒Γy5bBԹ9!c>{[ܗ^2M?۫n'g1w+GëSRv7| ˓ǿx kꑨ3)e١,<%>>޹׿`]ͧ3\> ',N%\OjIâu߶}w\ܲ8?Q*)}{8M%wȲǓwK^I~ٷT_ }\'sSfU~+_CH|KO?OᩛL鸫ӔYt~4~(vU~(d[R'͂lyJQg^i* ~ 3H9y n]ϡg]GM%(}˗7.jeC׭8%{ah}v̖E1ۍ\Qg;v{.LA~>?4Y/Z$.T3u~x~C#kD_/! oIYPyN?M^\OT.9gcL~oz)/˓n;Jyů6 ?qw[iQq9[bg$F+}Z+x^k#XlGW&S)ǿoJC Tjn 1 ~詥ƾf.?=gtѭۤ3-~lK+S85ƎW̒~cw{]|*G^Y*Rs $)~:e|mjAݩ5s=6?{V/R }KaSOL^,?_Nއ'wnT$=E-(5fYZ1zkŨFn Cf%#sz;aG[LodA=OΓk|vs?~*2-[:B>-O9VaKe%7)oW.]3(/KyŎ%|Sܑrpi/gn0WQE'{;BW2<ρG<<.i,29_.NaYzcn.ɩפ{#yhxY)j {7 `חjwI]}E\N@wbiMJ?S渚L}wFI]WF>H=tL I3|@umʰ/~!Y$_bg_rK99b_Qlߟ, )krQOK?>_Uk,; R}!~y#NOW? =^%{z} 6y[l+KObYku9 S,t!jN 97X9\8Y|3{#IӓvQ/l{%mXGR  ;zrCGY09GFU?.Y[֟fOGl11$S'K,e/1X;N9?7eQ?|&J$]r`_{I$$< +31sk~߹iU}k ?IG^/ψy2)*Qɟ`/ws{ k ة!:~8¨GP/a yRnEaݟok|ݢq<|rCt?NC_MJI?Ȧ/Iڇߦg#SU6Zxf(ǣ=Ou}o%dH?O[)ȯ0{'t)[ΟzYп.] G%!GpRz>G}ؚ!=#~d+.'[=_o9+YԞI_o9Oӯ¬S>vKy1LdT +˚|߲?yb\q} ox;iէ-1mM+z b\9ewL~uR4gK7mϜğ~ў_U4:b~NUg޽y\ûHo|Xxko»k_}փ˧% c͂~ws]Ϣ^lj:OHCQ 3k.$_o[_vٿ?qבqq_K[kP=#V>?D8giY7@υW ~!QG5qL^^}e35[BEK9G ;!-<=vT}_oI 3tpKk9}ݢqϷxi?s";+ڢG~?*l!y*ź7;}׹{->3cIr(ѳC/~r?NJ|ݿߔg~sR{;Cr;znveu6u1~"8)g1>ZPF׺TƎ3w~5&\:n]f w\#5墯'w;'ǞuG5>Tvt!ϳ_޿+d﯉Яߘ{NJ8?Il5d{_=éQ}8?6ywg!{zSTqooצb\8/VouSQdmʵׄqn~Taxqo4k] + #ORߋ5zߡ}RKQ%A_Rj;z1Wqv)]\@}`yчq?vO)^)J96WX(7rS M^u_~#8p.vsVlpoz#E}`>φ\?o&0t+6^0Pj/]C?m+Mэ\#p<;E=dOa;'^6K? >/R -ϝroH*iv )a,#JozEYDŽ/g'KDzU#_I~ҵb"7 #g) }k`ξ-V]qX/ho-.k|?Wm~?_>>:f}N,b_-?Fv.#}~[KգlǒݒF=7okMo쿰KS]O~g.a3L<ςpyʬÙ}IbY)EΆVL5m&qS&?K_[4h}r'~/T:t(ygt>`=<[9yV¯~5_ "S~5w˽<&nR;~T\OSm˒n ˇM,(?X5wM_{.bϑ_ vtRHyqCjҡAϼ')˚5w)5~ĺ5;-IRw{䟑}qegWaOf,˳63gܗ=`Ͼ{J_{ O:}~i~ti?..}:.RE~"i* }4*$}yg0 A1A\ϏH+  T-ld_˒N:?K9Oϟ(߹[gR~y~~) b}#ޥQm碏L=U?8x9uqseQ2bϵnn 󵹆wgS 4;lĻo,uѮZ|kؑJ9+ ; _;O?-5f~t Wt_҃ϗQ9п*U) Drؓ_ Kw~R>/γA~/57Uwjk^ӥ?t|(s8,3V-=9]*[CLoj {m3-?Xj|.~O*I;+a\:UM|O'&_Mѕ_obSj-|Swg_NЫ-̉YN|ҋ@%H^K~5h7Js$`5F/3 WV¿mb.8j\& ] __O;n~ǦH}KEI=I/oɝwfe2'TxKՅ(_ςSy ?8ng]~?;NI~\].x~_uoWܚga-I闏pwTvd 1d\L bA! ;'s#B`!qqGbl`׏=v+?)#Q¶֪}dv[o}F+m}Ute}VQ1^MJ0Kn>q!?/(sFKŢ|"ϝCoÚ1~ 6 ܐ\&<#LS%L~v\k7||͞Oȶ&7.,D4x3 ʙ3^>f~τ/NjTk<{?|ݢѐ>~tZWwGc ;N,2䵏{=5&?boYԳ>sqOG+8:j^zH;)?uF:3bS1/wϜ T-!:Ժ'lo~Ӿ<,{yfǫtunZڷ-u+^*=uE;"j^fQԻ%Q`{'23)9+pY6CTԼFS{_uyoVFŭ#xsTonLޣ{x8tw9qR>t㗂cKnoJP:y@Λ_< jQ!zF+.e![F[qnζ?#YnҺoF+~>;bb~֤AW8~򟯏:iN?ڹf+kE}17$;w'򢚿0V=_~f2^W%ڟ[fnɯϿp7;c>,l<~tF?~K62W |u\'_ux_in~ŃU?'Fk|p0_;9c#ZC1{%Xpѷ@<5ѣF]:j#k>Ԫ5k W+O;5y[SF_ryo$ ^aowAX.o$ bߧ@8]l,# NwZ;<_ϴ%7~oЃAHk΃O_|V0OY0/>fzQ:i;]kɭU9~&}$3пIz<2So0+qISz%\3R ? Z=w֭>A;zq ߋo#'WgBN}sgko|}qrR?}zŴ}N:yKcDϯnת]|DL˓WK?RW5^?;wI{f]yzAR!{Cg[3dg-GwGGRF`IywwгF&הяqATAœrRIvXwdU[3[ԢiTeQi=sod%Ћo\Z8F{S>o,# Ϳ'9;-*?ؗ_a {`RJ~,V|qԻgw< ^?~ y^{zkyt҂!Q떤쿦\"/Hypk.)ۧ'~erWF ,־eo&`w %{ޚ4k^S6R1p;{*z2v|4M~ho˼S5 ,wy9a)c?:ywS>|ssԼ/)ݙ^F8:_t*zV3lK={%?r9E+.Sm\մ<{~?s u[O/5uYHs%ĎW9sL_;v =OHsR{I;ثCRWَgd?~W:?L'6Xr٤x])%5 13٫G[A|솨_¢I}J9:f|cWG7u/\Yޗfeil׳1==n5u#rd\/W^?ݥ{PO%fڳKw~.97 g}L\}9Qgx̏~7ǯ֜З$GϼQ;3L3Qn6*sR>9>_ʹa?>}KW܋N/ /j{i MW+:MkElEw+J#_] 4{^Q^G;>_'۽y[5z}ĞS?—9*j>˱\~}f =TCs ]tR6>EsrBꖔ]N?n<>猿d/:/[2wkR1ſ$x_B{,]^}]#_}3?< `p,ǧr"9W5)jRУ/gsqo:g+݂_~@_џ^{B_[j ;0| l拞/AWW=2QP>UwF֫o[{ߺV?#b^3 %.Vs~tr(_;I4ť[o^sRQO?@ Ъn3a3u~Ytǿ >yL8;uߟ%+wү(Q%?s\VAF<o!&#SPꆨ8?_ܱQeeV~@cd1IpMП<֋5]Z_|?N]ܔD__ç;0eeU.C,Gj1HCPjݒTyQٴRXȯϝi4wZeQ{?P)|;?T9!tyƏb7c;WW!D/:KE-G,ϯ W] wz%RRctcx´$wnSmQq|<#\l_wTV _@gvd>??oѿA׈Ev|ttp:~NNT1𣆞II'ziU(<౱Ŧ/MKb+{T;tmv֊}=d7ZyLpL-EWf; {L?¶㤭3G0:;~P07Ҩ/8޿lou~kz6D5ÔYJ|w#PWDŠ&}v ~t&l[ke=>yQsC+eioq|=lkw|RgC(\ 1+r~toFq[?~x. $Iuc~w٨ cyQe4ǙSTZF˽ղ~^VgS.+\C/:/L~!'_8~ b8u]N4>~c䷅| ^w?E ZYr&_NGowmbɱ/~ yQյ}TvaL5c}?'is3J"XnCeEWNb_k#|ޝgNo?Sj=m}cg>]ѝ<&:} I: A37?-yz #*Ag3cI?diP\uV. э b/aQ+/?~\ ]XC CElҬ>_RaS>kPONn=wĸھ)΋*O;뇢;ޚ+.iD~'_y};{Ƕ>;/5rc4Fs(^+{Q9 Sa{YO¯{c]l꼘ȩSsU|_{|{It[nNhfADww|*j>?$iF}4Wy>L\l >p> -b{֖z E1[HyGw㊏io.}F.#+mih޺e[g՟Y>*j|B6yŖyxIҵ]y3 c?GGmk?:QglLbЙRc1_,Y}s?<=u9g?uA5%zJJnGDmv}e;IԼKan~>_2\ݾ$>E?t,JV?zwת_{Qz9uya/_zsmY~J~Q/O}<\*ͫnY%wE^r{*\-zSozp _knj8F폒֝K%0dtC u|d = <9|MtcC]1w3VD赠Bs\X*Y=}HJŞap ǘ_#xk|yv =)sWuGI93Yg#W}9K=ԧ_kv9lWnu[3a˪/)G$ W5oʨC|ĚNG۹TL=RNy[/p~s^` Br)׭_ET J >K|{~Z <%)ϧ%ߜ{Bf}Gũ?ecbfc"9911ji8-, zkrתs;9*مQz=-^./L=Thxǎe;kWEJzg'ے_z;` =:W[ fٮ_wa?L07[o}2>'bהQS?7S3鹾L~tfoG9T FI3o~fŪs_B?<|'Q{}F\}ֳƿO_IwE ;G 7Ϛߔ|=Oy<zg(GL8>*qܔ|煿_}=;ߓ*nA:G澄:ϳ% |碋ߨ\_>;_8E=KY} g'qX!a>R5>/ ]*v|1+S)܃зL_3S_a ̏z?wDg{BT_By^)_ؔ^xڱ|ݚZC|6_ճ&Ų87i=0P&;OOyLKxap!6;G5}}0?a+臧՛UΔ+=*֘Tj;JŏBvM^+ϟR'zN(W/籯Y´ܓ?C-EiQ_z)RygXoװ I]Qu;ɏ0g{y\N)]L&ٷx~3yL^9ZS*MeSysǦ5[–?=W5}=)#육 K}/0Q-ÆO>^\q{kd[GTzgt=Nᯪ^@ww$/yJ.9D|=Jy73mNU ӯ>b^{Lܗ'?QLJ Ə$V۱o=S;sѯl,T=y?L'٭ԙyC~`a{53yN#jO-Ng_il綏3xD:ܸ_|~nɛ{ seѵ+/?o煣_yȿ-\{ݠe\^g|~TQg)毄:‘Iݹҝ߷%'Fu9䊨o&Ok2Y?s?R} x_qrOG=ё8 :.n,^=dC|F]4)OME_:~ݼ_yĆ'!_͡^]j[R~v/Mק^ٽr- P@v3K VCˣ{g]RjU|wjT >f\"<t>VgY`>I%|OwGZ;6 \|>W@aRg]*pWL"NT _ {2 V?U>$P5y–>K|*=пG g-=S?cSO"0L_a8J~e_3ۓo|.ӥ;P-6^r݊3jO(O%^~pI}~0fCϿ?T;yЈ//=tY왟'G>7??t+9A?Gw|bwbj͒o܁ 坠ݨZ_~!C.d'=G`1//+n2iEGiwO-u.so)wП |\ω砿u7Kwbw*]~=t+VzoN٥. WR]iѝ-sw?{[y\G9:̣oj$_n}/I |y{6:=/ςZi3ʝϵrX~Kc63(qbbT]xѲCc>e=mȽ_-:W]KA#z =e_=)'8Kjn H%87}quУ QF־ؓ_[Ί"m~Swس㧵{{_o-zoo}/_dGOZg'TϑQgy;68˒5Y3!O-Ew~?-=ű{$=d(y\[^&ĕ}\Ͽ"?N#)j2ҝ<>gqxʃWߊ.t׻~/s߅R.:?_A>u{bw=v _oy~ mݿ/H:gs}r??B3v=J, 甚/_I!#|h_J-b^IZ;??>6u &U)Rk׺Exϗ%oq8h=8)4;T럱/5d_tVt.IگZsu{||~d|&Ϗ_ы=r(n7=OqV{oy;E}suSOgczd_3maUw"O[&w]yxQwʳ'&|,͇R8w·S4o~ߖUH o/ɰ>#O\P5޿por{)5G}RT?M,.? J?22By kh)]&fWm&PxY ?rƥRt1^|7{Vs59Ή)@ϜsdQw$ 1SR_>+("y燊ս蟍zT!qٰ'Z7|UJ9)L9s۝riyXw=9*cvI݃H5XxV Qkh;<?g4?b՞/ſȬ_(.&o Q=oܿKR?,=OF{z~}wk-uujf(kـV Og/P<@yibHb/k`EsEˮM͎~E ^__uʃ.)u&0.Sߵ W/f'Ogl֫7ٓ;b# /Iy@N;9Srϧ_cҨ_t9/կ4 <=b_ J(ks/8+5?jxIz]K~[ouv]oQ"{ć@Fr3JAߗ|@r'A 9μ&׌%_{r_;󜕯P:蒨5>!v|gj"*w瓥Wj\:>lڿӯ|_E} j7د^ECI3_|S |LsR~N<;gx-f";,dӆ^ժ*u~~hݿ k &;EQgz|nb'3ߓg/9}vJ ~ DvE9I#'-w9^?ue+{-/)&EZn |-?cM ;9|hlHr?ǗފguۗnEcK?ĞSݒ8 ɯV/RKVZw7wgWCԯ_o:/vj'OlAq^0ſo,5ED񥱷_mHPP[O΃ѭlIŦ? Qc5:sa 3Z}r?_} ~.j /޿Sj:CJUo:~PeG"vzާ/K̥ra`*](֝_5~ю V tM~$CRw+oWu^|.%OտA㏹,vಔ_l);zѭZu}{RhKt&|r}ǿ[G8ң޳Z>럹U9~fQ>9W|$'ҭ;3y?_i7O7.{qG^Qu^%w&O{yeC[A9ۤ&z:wO}M}髩Б¢ŅJ<>eȋt7?'K ũ'郥m~R&eՄmi|ThmLj{3IS9@?Yj:rz~L}s[}Sw )Sl(!I g痕A~Z9K9tUG-󆭠_15ŲмR6=Sp'D~_2ZD:cޗL!~m[AjՔݓA=lMԼR{J^[AcvoQ/Dʨ?x`` _ZW%Xk[l}st߽7䤨:cy.s?\ԠGձ[zvIt:[F[Z~ިxiد٨CQ׎@N1}d*dW2s=ѝsx_sTcpuo2jku_U/s~o~.?بyƅCpC_k~(>&;7ojNcnouK_,kk6ty￯9+ȁ6|<,ZWSykul"K80Y9K) n~;'6k6&O91PO}1?k~dx`紦_U}蕽Ҩxg?QM[| &+x::CNntҶݫs_̅Eyߓ{&ԟ[{} c8Qcl'2_LdZ3A zߣϭF\[cS|&8 <Q{c4/￞}pOMs~$|j38_lϖsԻ=?s"ќg\E&wȯryQɲ|ߢ-9U_䷵VϜ'?-GO^ſ>-?{?xcP9>LstLrA;.ꌉ~%'ǽQE<5/nn{sSɒ_b]ٍbkɯy4‡f?wy%7ҿ$?7\< ]$=V;~>I/z[,3##}ݢtg4__~Zr+{os֭x%UǐT_5gyǧ@8diݢxCQ߯lR&c~Ll䳿h;= O5yYm#/SJ{wPt}iGĿU~mo~g,|ݒk}Z1xzm#cn)DMQq@Ǹ?zgۙ{co~rg{_Gn.ϊ߯~+n?Zc~Ϗz+3 ?yK1ߍSgxF xkcՅ{yѽ&W}fr][>=K:.kE;,9^ܶ>{K.Fݴҿ2=)ZzIcC_5:#|{ J~ߓ)Uko{uȭUu/_~8{p7ZcYc.~tvW3\:73|?'}DGץ,lo{0vY>;Ƒn>K (6oE?OiZRk}s6@0P. ҵ8_epҫO_ }I׾@z67,k9 ֵ[T̚z՞V/>8ПtJ?~\^ sדc?HOR7UǗ7žaoo |;o%'Dvi/5}G(( WgKAs>Wj}Tf=, =# Qq}^Y`w ayǺʨw3n<6*~[ǯTw#Hsz8;tg[/}ѿ&*?CJs}\hs4oAW\[.v2WqQ},Q?/R>ߙgٿt5 C!}WL?g&U=V9uW"[k螗Ys)/ЏG哒~^.3>DNNF[]}c0^zUyG~0缨skk5+W3Gw'vm[5?zF=͟ROr}:C'&W;%a:f[g|jdTvpX7.LܝRw*ӷ$Y*,qF5rW%= KKc,{gǗ:szy> {~}u??#ֱ s\&|~R1KOϽ-Il_$ i_ytg^@W a'N ~36@;iGDs﹵yjA^Vw JھuWyBtȏR,3a_*UGwNdWloKŐ>|Fs|>3B_$9yi G xW3/P7؅Q,<~1 {|YUҽR[Gdܐt[qĘK;xg`/}MW9?]ps#,K̎M}1ZG{=i̭?2-~;>":2iI'vĖih5eRqAe=%5r̹{-?g~Sy!i|n͹$ 3Td;Y=Lt\8¹u s?| έ쾮T PS^?8?==.j%yVy]n/+vKl?2\s?#ස!||~s,NSٽԹH<Οgn(?).UG?I=uLdUK<9[A)I?Ԩ^'s?KYW7naOKC_)u +cIYOj\ 8S_|;6ҽ:xYI#f Wn};wjV/{1I7UW#j98~ JcRmγ'5+Yˣ_wN>u['~߳>trCy+G?Lr5/]̺w$g!+T|°J?4M9fO3=ϯt'Z]~歹g19,quˠf/M|.C rmLǙ\FןiԻ-q)7ZŹ7)C%$g|63kߘ _a NNJx_*%R5+9u\J)󼯎x7;ɩgޖ4 K?37'e$obXۃߑyx_|}nP7l2o]IΪ?C83q?_ceQaE=[du~crE灹?"/8g%_V>vd۷+z[-X_"բѪ~cC]K7Я|d%k=Qg0̏.M/'.R =|Osb`AA$utY |4??v;)/KQK3CWÙQ*?G&C5_٥ >eW3?-Ky[SLǓ)j/oxϾh6Vۣ+>v}A3ev Wϲc7D{_{C}'>+;~|6l/+tj3r_TWѾ#uH%"7-yT/zύsկL\+gϿUۢ["*<?E.˾ǡ;1+/~N2繨wwytl+ǐ|ITYs9ֿOZQu _1?3߿?=&i:91r+{;?bq~!Cלdy6&vYs {t!K~8un.>~2y:71K,!=Wq_l>V 4/?se~Fu}1&~PLFK;6Chث*up\1 mT+w|fվѵ-< /aufߚ]QqX|= v@~_6Q(N[_Ӡ*4T+scn_/b^I|爅/qǹyF-e\.n /3[XBo>[{kxX>sIu ߊpOTKg.qK[zE_r<z]7{_ǂ[hLBgOI1c(/6 c,cキwZkzkg]׭:s.}fۂ38Qq)?'F 5Qw[rQ }m}C韍n~U\,cCFCl{)/cJ)GM'3΋zvOG}l[u4~'5W:p6_*><1/39,qs( OL^70y1}'{˽y*ɭ Ik'`EW2s*?/z{n߫^S}7j}#POO̝>@msY?6iesy?ë0,(z'+=yrOKQO8?kfLpX'|_n}xP&=;ڞ]?I8멥ۗDE,Z8:TG6{m>U/[ƟQ[uI۟ߢۢƎظ_O~w䉥=>=%ߣN漵T]{qM~,]ocg %ORmǶ*__v_?^\t|2&@OOR_'zCOuqpT:x?5jne.qz~ke}2*~^>/{~_]sRgr\,^gCZ ;YqЍ\8?=o&|Lz6S`OLfrl;%V!&"E+/+?]4/yL>#Mo/7&d\E%5ϴp<뭇ʻj 1*nz[baVWJ/JŃx^/|ȉ78^POjkWDn~=Q0F)DžR}߳SNr\e)ܲ uH.^}zg=>Ys12EP|]|.gg&3?P&wG}~9==t=؊ 'ܯP!/fG$,K;nF~ *nΧcw5'p;C=ߒ\gFMF^k> zN#D$yi> gl0O^`K<츎E?a6Ҩ5]g߲{,|9Ta^ Kx3ĹgbIzYJ7h<Ι;N|}Exu+xZꗥs7_O؍_ogn9ӣO/Dg/ʵ%_Vů¿tp H]s~Ҏf9_{jf8K}gM_Wʙ_DxW߹)yfm89-Y~ݽIQ뙽OvQ_<͹^EԳRQy>5`UʷlPKx\g|?3c=58{7͒OIG~>oozt~tr~^c)@>zRm{O@J[ː &c?cw6jωs;8K6azOs,U11:S8Jz]=~ƞAE "1ߠ9_x|ѓh+S9kg|=Cj3cL ?;?Crt=>|/b{8ݑaj~Ԟqdž]xlrQ+Ε['ɗ;N.G#޻)iC uV[AcHxR6s[I'i2|θ7~03eK{'GïPnBziR0ʶz*rJ\;!MU,>ph?>ϕ A8 LA8FFըV_ҨV}.T]9)m]?-W%;B&\wd_!ϰ'8Te<#:OPO_xE{a=r.=_fV?Qe׭^sT vb?WZ=c%?=&~tE1~Pi,ۯ)Uܢ^G$ʱq'\ʖ[=Qx}_9Fo(NOf/N|VrҟOP>;~ziB=*vC]~Ws@f}o!gJ߁5;zr?< CVb/W~/= X-{ڒs^sR_2ª$^^M6t=}39<(gƼX6FPOy 1Ь9wKm_7@ i1? G+ֿ1_ȩwal7-}.#מE%Cƚ޻:K_GE&};Fu~yz#=VK#<=b.,g4~py}~5VF[rڒk-}e#Q#.0j<~9w_s?P'j7r?3eÀ D<3y硨3/9(cWuʨ>gޒ?'տ?sK~u'纟6/C?C=?(?לz_?Wjw(IdCL|}ǯ8.?7~,vvhdY>8sE[-xsv_񆤁>f|底瞈쎨3#+]7T߇]p՞ zga#OI9kǍ C DܶyĖ:^eGq}ݒkE_bkΟm~h~+|Nc<ҡgVqyWۅ1s%^rIN,}1>sG0^c+c.`-ٺm}okT֤SQ³Rm3sd[/MY.Fu>G^&GCwxSW8VQcr4\]Z5tZjo_O?! '-ǪNrG?a֟ O \R>+ߣO`Ax?/;j#0~xKQo tLhC+г#|{-OzeL6qX[3-|Cs;/;`ag~$Da2s =VI?}GgîLz k(4?# A| tзW-zCJڇSosE8 `O!rE2ޗMɯ.-uMNo|t?zNMwiaaҌ>Xw{6R͞\j/zף?W%<'GNؾCwB!!oAn!5GȰzGJu~$m(Jbc_(3)ǜy\ F?Lί N) !12zKLQ͍OkyJu3yc' AX1_zH'W8:W&{?>z{ dmx{UsF &vaǑ O_ZϓwxW?{kYry|+JiTUr*agac4a d>~86R1煋*qW]]Rf~/~z+]5)Ku`Co_b/ ?xO~dʨ d;@]p&z]/% q%`(qlEhq\VU!%Vmh>|X oPyZޖI6SΌ:FXc?F>2ƕRv>2 /KYCKC<_3*j<b#ЃL9xvʀ-7.J{wVluVY~͎Ys/FlB?*96/v~;.33_OiϷw="j}uQ{ YC<+iR1D;?Q3~plpx?e#OF%_n̓o]{q{Ku \']-@|^< Qq젇ʟS3"',|F+9.ٖu>˕ў4^0r@_SMk_KcM_ / {ÞeB/1pV*Nԛr?O[H^J9U>‡&^ yџns=guvT_Wa!_rS+_Ͽy{o;~Ki)LOb'ك낯$?3ek1:u|=&DsW'!WXGG>o%=v\ i?=g?~ʬ>=lޥЌ{|RUzI 2)OxusaAeb^31 3敥7ɡ篺;!ygt>;TL)ۜ9~l$rYk^C"\JޟW)*V%|~t}u+.n/)/iO\<ˑ}\oei§Lsǿ]C_n:QYd+CʆxHw2{% c;aj |s~|3ݹs['&O#rߏ;{}XxwS^#yꙥr;,r({:& ze(gDu;yS+9ƿJO]Lv=|4y'cqoD vVgEM"˫}NryKM{NM9KKeRo3C?)jo\~TI݂x]~7wR}N,C(%ߒTעtOӢb s}+(a3$p̔KJ {Cbog"tQiB{ cs֠(uw'ԤOvޙzfRg0(/zxUHs#Y*\ ~t?==xM9ϐ幷SNipsSOQY{34H5<ɥ{G~J.2@E5(uHzx_=#ǁ@z>] LjQKsLi/O; sgt`ܝ ~~W, OEش;ghV5C_:Yw7'~a'wGsAѧp>yr|U.;$/2Uu/X7De}}1*;$Ŀ>M~_?ۧ屗-ۺ'j[_[;UQi.cߡUsf_z/ 3#yϑ} \42=Puͨ^oZwxۚ~JdQcyQc^_ jʨ6׫[ֺ%ׯݿN?eGuſȦ8a>97t=b:v_{nE{ۛ֯OU|јC'.w_}mna~|aʖɟ~C[~Clo~LTDeWU ]x~uK~[w'_g5ͥ>&c c%vO~ok|<RV!^?:){eQ{5quDlAz}~/=T+ώ3U/o1>63QSc[H55%^pvHY)gϹivj4byKwAt՜˗8/y_ϒC+>(n#{F'[-9mZ7 #b\;Is.sB)C=U#5~|pԿpoT;U^cߨDo^Z3<5"_䱵nɵ.4e=Dv wwE>\8@G{/~1v99_I/ [?|o9‡[תwpvY{"dg]wjwq#7ZAC[WZ._za_7?ا_$KF٘/Cu!&v7!C'ϏM#0Wg0{白?'Q^!g~[;q[cG:G\7ҏG`#Kvk JےC'1էz1{a-w;Vsζ>who*Oן v[@1?.?x3{|ZT{<СmS…y%o>-~t@Tʱ]~%_r.˧Ht'[>n}~ 3x pc^>?K~AC1#~ 1NVRTߝ{>ׯiZTVкտٔŦǨ_mCUsh^Sokmѯ%Ce"?RƩ/j6W%]ԟ{oy=u/=ZuCZ=4i'׭!UQgnO'YrAcկ_C3#J՝?[A46Έ:D.w&qtKƼyI?شU/4|8_c?4'׺ 3j}ǽ|42T~KTvJ9QT_aq8~gt_;cc?g]5oeu)q6IQ!9VʾȧpCG3C;cV9`3`2mV:s D ]_D*v8q#}&P43ht|0g2]vƯJ,!f`?rfEKEvGeIyo/J!뎹i]GQ/f|LG=3ce2{J3ៗ$S4{Ik#8Nǝ5Aɨ YCG:wPr^ؿ!C{ҧ﭅:Շ6`>#Zֱ?Lfx쐯a[֌?x }f|,_M9ռ{f/?Ѽf ѝnt} fOCr`=;6)̨gnK;#'`؁7\ j(eM/:I:*̋`z b¯L13?3y=+i2[o4?_S5?E*;Ǖ^=zً@K LW޷M~Bo1}qOoHwֲ'6Bύ\iEh2l h.'1C)ys<'fdPְ̟{Ͼt)W4{KM9񜜲2aݻKAY/f #?5I2]zA)6I3t#S6Я̆FUsRlIt5}JB^H\ߑ]|+Gx~뿱Gg&v[Z᫣%Q5;<%y}ej~sɟA3ސ0_+|k=jf2GY?}Lrq}5W̾*u G1[KAHst,{[ 'ANRg_<O[5?se>rTn^CWZU٘@rOJdž͏v~ﲨK>w\Ry&ȥ ]V&UsObF4O~kQW=iGvw,5% }RslkG1 `~ ?⯳Κ+~?:u;7q=W?63%БrOoϱ?FVƖ]F ^#yj;OЧcwg4yg3Q>qq[ZG8jl{xL'{K?G߸|M{Vk}=W^k6ך*!.]'R8ly ,ޕ:S|ϦΔ\ !Gu[HyWZ[$$?a/:u١/O_4}:Rf}6'^x”t?/.NZĽOK^3e݃)i!%FnZ{K|1SW5i<ӒoХQ&{z|.82|M%ѕS/sΎ$ZiyֽRK~׭EQw=}\\/͟zqe :3<_Lޙ|KW~Թ讧ȍIlLIŐwo7@׿6i= ?t_i7o䊮L-LK~}' }/s?y"&rIyh;M΍3GBc]:3蟕)WsgS ϩ+'S,7D^ ]-9+G+>W\֡9Qc^_+uog &"qrF|vY=rzRH.r,_Mw&/7Jy y&,?'>nI^뱥{!o1ٽ{ ?z~q>Cx3 ?9 ^jݓɿ_]&9|q7~?t~q ?>V9th?NͳRB~[?_wbcJ?BW,rgbB}:Y ºcbo~+?hok혐n埩VS-c_a=}bx;W &òu<\?[)__KYQv _l _s~z3F/sWm >Ϋvsg幓vCeRZG3[G?4z륱09szK^yɯ.]?4 ?:>55`߻u)~o{Dŵ!_̭:+Z5=w|>k: t҃_BWUʲ)oͳyylPdY&?Rw H˗?>yyrVZו)䠹Qz(* Opg')OHNy ݃"C2I'|gI;Lb__ONysh_T?|U l@:\|>Kg~hT{~h9:;5jߗoj~2Bw=wzQgrw3'F 7np9OdV39=>cSVصWlxSc. =Dn/,x_2,{ܩb{ztY%eRw$j.䠉y|hzȷK16:Z,~s:%i]Qkoigtw}%`wDЭݾ!h8i8.4.~Wgݹ|֭\;_5zێLlQ~crO^㽽ѿ,釷WG;gc~PO?)Gfp3S$[l 7Zx-ءS懵s;gv|A[G8f}nE4(x{5s sW> o(,"NG Cj_[Dnkwݾ]B=r[}u¹:-g|YIʷ/nfpwLy<+F8;fr~>Iؙc?Jz|$LwzM/~rJߎ?I-{*?;.V}KN[­ϳ u ?]{}"<[+xOt}.Yc7@Dk:l;YTx:I;l:{_lܾU+\FŘ$lb^d{^TܒpegcӸX^ֲ۟!>+񣎏'1T;5I{~Id'3l#ˏA~ү82wzݟ""ZۺVU[kkՊn*b]"nٔ% a K @a’;&|̯xcOG>335ox~ :?xg58:ioݥ ]_6CqQQAk¿0KD;+ x?W/`wD7yU9~'E9gEWakYlٯ0?A4QC?\?% {_rgyҬe+GpNI ]11ƿעw^ݗK羕rЫWn׺OrI?g>cZG>o}{n}'w;qe-My82w(%u5l~?b' l l;`@?mkjv3,܍`rN&F;ch矧_ayaco_O}w2fu˿=}kE pRKkZ?6οN6|~GmO_,3X?/ߋrr46/GR-`ÞR-mQѪ?>ya!O~zWLO/GgvTc>~,v}[cQ~/>b\/8 {QlkQ]g3[DɁa[qr+nu: ?p\#ᝩWꤏG('~k΋b2{,_'y_faR;yQcQqNgq~7W3s?OOؾl}(3 ߣI~S:?sP>Kec#]k]=GOF埳;v2Nf?Hw/ʿ?wHEԗ^Q_ڶz(8-L;+z~]њpqE;i+f'PoZt/:zzLI֝ӿO 7wB}&_> #Ϸy C+ ȃM󞤅)K/zv15ݧaʿOIBg7?#Of闥OS=o<"FWПS_OL<"n >ϫl\4E] S>4Z893B}`,u|~7'w* ]}V~?->I}#Jnp9ZG5_k?nǛNS' iqG=0[w}:um< RT<Oٰ[qoҎ`6t,hn<1J3z5Ndӎ!t ?(͛z(y<zjot}齰>;~6i wCpQ#Ѫ/~uP}y!_|/b!*z }nWSK `#Z ZGYud%Kƫ;i1KYKsQ~هG_ם4eËsMW`,mU'[tHyAoig$srcaWP6;Z:[q 7='s"ر`>=̖?wj}>uX+^كNp<|5A |oAwQWbh1CqhǗo{nvZ9?;֙ӓ1\|ӭ5sĠ:,קΣƒs3:$Jݺ:/e[71֞~.]u>33u*癿 wv>}W99ySޜO>:r#Xᰴo>9k9nȿg'F_xSǕv>݈373]ivyQW0?Hy +730,_'gfJ ^eѯ_IC3 PD_Z1/jšbʿO#gdO_8뛓gxR-2LK.O|U)[l )kR3w>?[l`σ;`p<;}/'3#:-篈3%ozǿ~A]9[r>8?ً6:{|p_Ջ`< x3Y1yB-›m\]:pIeR -3c g.{+m}s#g_-G=uT'7_}] iƿtE9hg N:> ;N1 ~ѕR n0?҉U_R'[OVz"t}ބ3yyQgaRc"rcg+6wO9)< ,|Ako8+{,i`y.iۥmoIWfx{=gܛ6Q[ٻ*J_53?#y;?# ?a;S.m?Aw%5yvW;/Qϧ_ȝ"c~4ׁhN/2ޕwa:8J<5kg3J֊fCaѷUtͱp|({%|+se]t\>mO҆7OXL{\f] q^ce#_rxfҝcVk~b]ak$ZQrtʜsj@pE srGGɷ,@_ KL??~{1{~7K`'s|$kҪC)3TTߛ|~l[~i4kV(1?0SoקjAM0ᇩ[NLީY"ge^2oGwLE_WboUJ3RxʜnO| պ\nw׸+wG;`?bfCs/Q,Jl=+JoƨyּQ^ѭs{>5т䙿E,"J}|>3}yW9l2 [~OW3?wIJVi+챣Nϯv]9 ]>:5~Ġ~~;?'*Wdr >W;o 9{~\&y)/ O?in?mH(Ev篼NFw__}#>|ɷR7T_WrӳS< 7c0lg}>ԻK+Wޏ3M1̍ѯGV0+J|?Nii\}Rak/xvm5_5_gSkSKp7HuĪ#8c~q#=K>?c!ƮSz2J-܆V=o=Wߧ'o{w/Szʟ;f { {jؖΜEC'^oɟ}?KېlA[yz~&a:@%8*~8W؝s엢o3{}h/puZ-,c+ߔ/} M=®j _`<;-y2z:Է5,%٠68oͿ] :6a١}}].ٍ{cwTؖ{OYn%QzqA>T z/v8[.Kr]"Ik}Bnguca/F+3uXfL,o=ux4V;~Y|K'7:.[W313ͮ}_ǚoc+y[cY[۩syDoV~EWu WU\u wƣWPt_[-p)t{eiu|ZڈƱ*<3wF/>Wc71o=O}S Nvnnʻ`j3Xó2gyyX_׫+^|w>[Dk;[syjw2?}c}~ǁ{XΟ&cR-sG:0{ }C_1w8ǍgQκ>AgpY>)_=sVկqaE$>iկ#.s'5;;1ūn~Q]oy4Uamg=7ȳcMDӭzsLb #{[Az;џj-݊'cxX`MM+{a[oϟ]| ~_Y 5K[λf~8grVyzN~&0y&uwA)qv2<L@FO#"7^ADž^ȿ.׽72y7k3 .v}PIxWϙ] V=ஊN+g8ݪ_=8J}O(gOI>{_vH /ժG?+V _( s}T5o=ЫOGLo=;޵ӆ8g+'S} SnSW:? sV}!mbn~^g^?{['->/سb0{>^#0C7zvwB!@9+;Ϣ`]9V¯!&?sAt {ZO?eZW ?8q>Zjޗ-z] k]g[{l|tiG=3>aQ:~'+= c]` ?yE~GoSO=A>ux[Wp5\1Ù|ݚbO`l[w4) ~?Jݤ/'xۮтdY{pL/pfq\|x4ϊ1n%Qf;z^9+=>aW/w@=>,0w`% |/{a}-[ &Fƀޜ s+ Ϝ_ c8AXϋSg~n,ph{~~L ,x_qz߄k_' B ɮ`p,8'#"zv Y}smwCKgzL-ZvײgK;ݺbrMRGYuΐJž]Wk?{zuBވG4`2J_i8u5wLJ^/Kbv ߒ5i7뼸N/ws7Nfs6g΃b0:&Go]_ wZ|Q8߁#"lC>uVNbC|uWtY='ӣs./wQ58^3mޙ'+<f/iz/r,~ߟ4v rcKѫq b<+y/&q^nS3E|'?_p?yWoI/y XoF?v̾ywEv5E?Jn3%?ȓ W';o~Gm41S_} ;oߙYןs~=${fb bj0t&sO<)Ϭ/~(X~vG>p,[)1_!oI9}hY05(=n^;7,~&NVl 3#."6>]?*#yx_Ƙ5:o>NûͥZ?g.b6@Ug`ƑjgRKI+Ia GsrY3=7]; f^wbw{RQ?[|~I;KK[ |%r_9%>+gaGxISbfj˵)?-8fUQ:_ъŜ2}f~z ְ2yfN>F>T6r,bMI CRڹ+γ:/ Q|ԳcW¯|.$Vv)L]cn6^9 -c17MՑ%ިM+.Ky=D2Ocždeًr-5aDfEzw^"VqGeك˺p[Igbo'2ˌsG>ɫo͓o){| $O.RKZ.teͦ?֕S:}> Rq,\oGo}z>0^~n󭸚sj8S=~gf~y^x,\?6+ҮG6%V?ulFُn1e򚔛f{:l O>4ξܧbT*.]owKC ?x7f%nu~%^ P~bңVm<4>+NݯH[p)?|tNx~>{~Qb>L~(8>VkS;U?O Ğ)Í{~-u=ey}vNGrѰjy퇻2Aجbc\=s]˄ߎm#&vƯzjEl+VUf@]v:!xL~MK3⿸$ywWd|kӮ_qr&z?|1~QW?<<#GU%7E#Ϻ{DW|~Yg/k`䲈NْI;^ߕn9\'>7(myTOw:|.2ܧjP'7;>H8]}9̈$ $9^ٳLҧ؞kZ} pΎ~ͳׯO?{]]?h]s>Q)8aS_Ē`<|:k#5QL";79j8?}QK?3#J?m o?hLhŬ 7tMR^BG՟f'~NtE Lo|jxG?,U8κӞ~G?-?X gp7-md:ѭH<_Pю ߾:ޓg[{?>ENWDύwToq}k2~~8'b4w.E8GWQM>:; `:~;(YQpd>-wE ]flUϯCirREKRRC{w-5r~ս,煹?{+,i2w%g6i?7U_|G~WsO:{ w(}c9c`ou:pNկ8D 瓘}C3\/^Xd(>xMߒ?ry/&V>q ;=~YfD@C}꾗nH^۟WݚKBwCNp[wO*NV\X_z<WYQ0u8kg!m2G1EQhOM]c?6T:,ʞqګ/G~kԟnc;bѭ<zӪQ?3u6<Y}y~[Ǯ?[ }1,?cQ?$VqvOĚZϞƅ{ou۪oi᷷ua?Kzm~|NsƬοWٙ6/esU&[oL?-=k繗8U3kM_g^/Wc~%^ Y=Ԁ*GtkEOpohaUco^F85x^uŸ$ˤ_ו>| 'Ԣu7)t)xQݰοse_,WK F_uBx_rN.Ϣ(gA懣}dS}y/6WH;ZQ_Թק[W0 _acÎӊO4(Gvqۅ-/M'$3+p/>ݒ?:y+՞p b_$_ɻ_}S~sm-7W] ƻי%/]{՛}o~qL;/s|]nvw@0DnICdN~^/(Kly7tuʚ># qZ.'UtzK_Ṷ[+/QP+,WbF-R=Yнk(?KSWms= ; pbu3|2ױ{~}`N'R;}Suª!u_Jp0{o_vv5џtKGu;!uqǞ[C'M )wZ/51n :>T4_y??g=?*d WE/8'f><5;>|FvL'iVG_ \Jv3t_|gt_w[¾:5|8]kq6!¼#^ǔ<]IHH_j8RLܟw&ϲ6Mf ~ݡ {f/|. 7Ik Ϲ oԑ^-C}7yIJG/Ugw{G'YVzu_ydG?~xN){$XLbb #^p sq\kniI Ck^<_󮮜)i 3+q5/KfUH4] tl[̔3O>f=+> #zpbtz>8 6/+{R_{$=\ O ?o<=SuRo?v(8ײ~c 9& [n_i?'?YmkuN[+Ǯ[{ɞy?BSr귦=+y!a+sjԣǯ}[g_kf_^) Ⴥ> `7dSnTF?:#LlhgS^al`i_&YQ:pSE+vKU߱=6eg]ꯛOε+iۂpS}F 6R1|}~Y(]mpCOrW*F皵QzWU&˔{~S%(͏-KHZsOl\ډyُÉKWDn~>wnpߊsr :09{bWh|i]q'g4('M(^-kߩEOwv^dVAszI~WDg4S.u]KXSWˊ#cKO{vQpO 겔(e9!1fxw/C8kH4g_!~授 ξc_S:?2j3=5y>.)cν2岄] ʉ2/Jd lckڮbϤ pN&ٳOarZ1.1qZqb㓣(`6ֲӖ]w-L5399 R3>=RG'}?&OMR?!13m>1a4wyQjOH!֝}k]f$gB<}/yifw;Qp[_f)w+z{O@ZG[G}ϕ;.ȫp7|ՔCK;&ߑfI{Qk|Gģ-%>+n˚fhǻ\lʹ71]RW`?,;~_'e0m{ۤ= ?A}RңʟgiHgx(~cN>)hG؟?w_]pw@~?븲Ͻ0]ס<0d0a|9ƒmٵR5^t-p}vɵOGuQfk_ɧ(NYwtUW=S rǮ⿅_|NϺNMӎ&5v5} yI2=b[w_6K.= Ş)O&ۤNo} {'9mS37;RC_gٵfO2線7ov(쇪!ީ:7bfr~_6'5xt)u*-;sWEO<(9Qџ `~%]?#c^6šLj}h߮ħ7!>D}RvpgT8_\{4'U|XW7ޕ %+SX_9赻=)kB &MI7VO[~k^ѿ~+tSx;8Ϝ Hw~fNF=ST~/x쳣Ro2|<9^6ٳأZE{Bh .7J +fP9 |kR gϹRK秨aǮHv{:*Y%%;7Ozi=sЄGwIiQѭq:;eɮԿQrb[M( >ms)޿MkP?zU?s{Qvj=WW(gr|#d[ 4WĪ|+{ 6-{tŮ+~KƇCs 7$PKnw:W]w/ Sg@}o~__K>3¢\P?xrvty6b8`=?i䯹Ģ7;_j3{oO?{${˗s ĠkKK+~Dg[E;!$|zYd_lC uWT SehV |ڙQpha__O~I4];Jќ\;~hgUJGWn%͠ݢ+s!;x4{4uLqf|_ ~ "CJ'}C?6nEE\sE~ &w8+7K祼2weiW11YjONُ_*w^9ԅr|ڧf1="<:hb"j[wI>%}ئuĞ33oZ4r]їl֫VzR3^6$1{G~"4?;`_yzň뼇i{TԳ3bя}EeWu~ ˖ӎJ^5w߮/ QLk\Q+bHRŴ-r,y%'+?|{xgi9:NZ)QG:! S:*a#տ,hսwR ?+Oub?+@V\leliOFfs|O]UB3tR͆=/Էn?9މpK |KT7&ۧ.lUN಴YbҞawwޔ&RMXo3=~~w2(1ίo7wȯ׀Y)}WQb3_3#uw=' ;UOq]WyG>Hu+}f,߈]|%iϧT\>vnn+p_~j&|.ãz?9+Od?"]H5WO|y]kQp5W|'Yb[i ν:{{uς'Mr#gr31 -ĕޜ{䬨e{_j<> &{]p#dѫGmbtc Es88{'o{mV^ {|\?_b =ym=m|^ho/kW<[qOac;F3Aq8G=O@COM[op7#E|Y~v_SO]~.){>4(5p!}Ъ8$u\iiq6C;SD ך]`7&ǧ"c97r^T~S5 wV?We/vߒO~cD1S7?90mOv>_ ~O䱴M]0Z;$Fre@嬜2\:'n0N=R {T?'JϫN`7'{/:K.Ͻr{PiG:F<*gEaIw?6J4>Ppb8yywI\~;e_7ih0yJ9g'SW~jC;B_-ܲ9F^k8]x325ޏ+r}W䧟UBL8 NQ{z-W·5{Oj/>ٖ <b{PNrWơ^v1=x5jӣ ,N[}#A7|83L&Sex;#GラL}.Ku. W~Y8aN}q*_y/$_}ҹLwDN<&އly:Pm9+kǫߣ< ӭ%Qc4{R?~u߫a<GxrGe~ʴk샘Zu_GyEKiɟjտvdǿEMa=0?LũO?U ov)cݸ+8?~,@Dg/u3CG/T鷺׿aaWW$xS?v(380hS_2{e'3Hb??XZgk*y iS4+c#S~j+Դ[5WV+rmLܜ<"|X=}Z1&G?{scKus_$,E&rD[2k85;Qf}1m[1e65#x(YGF"w)iWT46tN)+~L<.Rގ2; <9an_R}S.Ց)Og/Mo]'V~?ҴeҞunzwT,ś Y̊A1}(ʜ#l1Tقg?e~ٌџrvCKRNc8VSQjVE?({g?{{5<;zrsm7E?l.#*+Ot6θ>?o\k9.O>}^zyqdя{̯q\fsceRnh]Sؓ-[Ϸ_S#/[ׂ㘟iͿS_USmR5tg!~&Cy>?N|`ʟQvw`ye_j|b kn3̹,$~ץ=TĬ3;p|NߝݓӪY g}ұA׶oKӹ/|M/:="Wk&ls/砏˟[k/FIqw6eQg7gy29^2/WtxEi,%uHoW{Q6nf>tL?z&2]³b7cu ߜNOθ{eL} ߧ;u{yF^[w\yl%cGV^K~V~oޱOD{bFbcliQ})N7PkjO/>{?Bkꖿ:z)<{.vTcs_Uck_gag'?SΫk.5ѷ_Ց>->?_>Y8(ʫz/PkMߒ?$։?9'ߜvM`A: 0Sο)kRWuswE=Wׯ~6(+F}.s_7m_ߟ*˞C3i5bRҌ_A[|欨! }/t.0U:ǜ/?+EҢ1sߎAzƿ|,Pq٦ӿ2tu_xwTWw~?Vǻr=S+]h6xT?)g~G!V| ߒ2"^/qczwTc-u.5SͿVa'{ӌ')Z7̞}sMnoi|1g+>9ϰgltW=pKtgAcoȍ ;=3wDGq?G?|?=g/̘=s~cQ>w׻(swrR,"|,xmOQo]S -Q0pz*_vpr&7%̍ݣ ./@m@_fQNfhO^T+^0jhP =?Jm! 08c z_U>_G0+/ҧ"xH;>> -J/ Ե:Z89-S̕tԅ+XEsCkGqؤ2l~ueVKO >+ڡW(tlh"*a"=[Sf/2^6}X3}^?M؇Mp}6-Cgɟ?1&@-]/ Ϥ>x5NpQ4>]T㷟6V> ?(uµFψ?Eq?{*뎬负sEMѷ_]| ςzc$W5Di wn7J<{{s;Ki: ?zK HL mTpJOio_طgAv(e%gt؂؀/"~3 ='& ϗGn_kLza>WG? |=s뎝sfGm?ctylIU/$t sƏd R8t iך_&,;b!|NJ Tyo$*?=k!D9|xSǵ ~B/R{ێ󒼗|T컜Ek"OM l'x'?|v 0u;aYWbgWU/޿43z~`?My,}M}LAbs~YGkο膟5.~-(1杵o 'E;+'̜^>q?ۯ_"WJLM.X.>Fܚk30'k쥜a*, b;u&E}¾|A o $(ڱ+sw8>W[-ߘ(^jq/a7|c)&ittv |4s7Y 4X-i_cgFg;zQ SIMFiĞ4;m)%~̊Y_C~]?uNN6>&F7]=zqò_hny+/XZ}Blt+\-O^|f5v5Sl:䰹I tn|Ӯ3?? ~rW@zĤoJ]߸矉uۦ>}fW/8qqn/Up!i&~&ׯr<[=.4DUic1#wEI)vGud>wV0>-+3TqYs(LnI(KدοES{JSfѧ[ޝjVU(E/MgxŠѰ<#b$b9,9rA:};ߓ K=N8-5oX_oT~n:•u\V"KGɾ~n>5YeȒ=?%uV/͌UN5)pZG57 v%,v&:HOtrz 'V?G0;JѾ?iӺ3};=L?K(?:՞ ϷL  Ka21HѶMn~'oģ7G0˹Zcgޙ<⇉Wtlox^eTޞkO᧥͒QʔIGrJÝ.w%yY;kRg{sv{loL~8:2S1ؓT?i[[>ci}NE;~zot}UяOwQ^ή`|ifmxſO|-^ >Rw{6%6ae/LQ>ᷟtjŨGT}q]d{UJؽ]&O%OY{fޞ'k((wGޣ;tWzYi3־κt&^2n530Ѽ>U鞨w.fEr+UW>g=cw49#oqtΥN n1/(Ouʵw[rb|5j;1{ >] ?`1]:n?mW,U6b]Fќy+UQfwc3N`߬+shn9Oy&v`x;Gs3x޳#Ǐ Ci.rwQkP8+A^N1.Q0WwyͿh"\Kc?}ҨW/{DW'ܓ҆W7NMmDWϏomO3Q|~@Wgc|ՇdGrZd3g^I]_c{eg~5saQ 5BG纮^_O':ه6Js`_o<ǾnF?k5)Cp>yK7_26cTKG;7X8 ׬+~Inɾ@ -ׇ ht=잊F'c:}hU#W>uU$6Ԁ)QJRǁ?p_)/srwDJرoo1?rBg~ӏ?#~Qblz~|rW> ?ia"WѲٚnJEﱿ˾}oό;N#g}tl(.|qo6c|wyxa/*M=qW..r1_])~U>WE8ٱª^84膊V}EEp9Zc`=8~]h~>-o>.gW7~a䫸[/;olʣc9-X舅 ǿs_¹jc+rwJ~KM]:I?J)/Qf<3;ݒ?N}~s[1GTYDZ,jS)b~}qػU*ּCaŗ)o^^uhr-#\'3{9sr1(+ʸ#%Ԍ'-)[ϟ"JlwG\.G={x4gQњ zcEoˏ~f;IK5'ע_qߵR e.ŭ)[i?Vً`_Xԗ::Cj,W7ľ{/19He_??1c0o%{&Ɣٔސ2M;GſaPYwTMX89o ߒfP[E|< }_ `ʟs.vOQM1k{:zn FYaxe8lq83k>]}>Odn@1Cr'I-sRWi,Yѿk'/7G^#x^륍V}ѧunQb=̝z/NIק.ܺSg["uu;:pDv>9l2Y> cvDi >~asKO&#r9~vI2Gק%O+6D睾$3*zN'{yXw3;J,=d?ڰ}+tZ:{n\}Cu'^'wA囓gSY\ԭ-}E%n9xk4nj_EVltnn<{(=Ÿ}xYԘ9>e'lU;;7ɛ7Xcl_Ksqyd~קs?;zoQ!HEuLQX$?"oN[OOaA=un ;;\ǹQ:Ƒn~-R4::|si7V&<"%)e)sVbs>;zREK>0J?>'B3sLkR7+kf̔%Q8?=Z;hoqZisЁ:3̟_r?l:V[vL]髆ЊuOũcMbV>p]S*Zqѧ[ EG8,}}rnQ%ǂ^w|"Lҏ4!#2GwF_wk'RNe/z\Ek*7PPY….ZIˊX%}{rtZOhtnZ& gVv͟?/eo/~^tKOZO}XN)Ⴀ`iVOh~QfFO>[|*n|pQ{;؂]wR[S?O V7>-EQpnξ<3nz/|קSVNe99aśy\)_d?Aou<7}u9Q+̊b-X::>NhOe]F~ r?9" ҙOs{E{OWF˓ݲy_q|pi>~|SVP(/wyd:yT0N߇wg~S|FE_xEEޢoF S.ScC Е>N3]<0cշ܊nֺsE)D9SrV9:unw*j<+Z~EVtK[mY[|K_$, LpΝ<[ \f;Xh~W )۵o/l:d,giSn_Zgg4:_(Am8?B9}U9-.>ZM(s u)UĮoG^5`98BN7Qa.Jۇčq4B}ՊeUt϶5+ʹ>NԾϫw?/C}<.Nu%Z9*ZV3%.M䀎K1UzMtk?T ~tk(y==7'GdG#]O38=8]ѧU{rZ)=duFF9/wcKnBձ!ev;Ε3<}~;/ߵ4>5Otyw:RN[(|_g;xV'e|hϊ;1NԟNԮ 8;O.יݍwtdOV9];2*Tys[v}Zݺy^rro`_cz}ק[dֽ$y:>K>Mu&QlDV(y^N?CB?:?Aޏo癵'k;;J.Q9ۣacԔ6w{gv}^Z~I};J,4uйtsN@ջ{hC5dmj D,q~ t~[_7QRLDK y/+['y^VA=ʑ?:]gNo(~z?Y/=V v}u/_[iG3:xH+mקc:gtGĊ{jsȿ y2~_Wo9rPLے7qz2\[uJz|.v4^YxP~Os'l*uȘi-ѧ[[?k#u{<?=F59wtU?ֺ=bC:WbEWÅ?ʫ8݊a/_垼䅟WuGfFEN ӜrZ>ݪn_(MǦxoV~^%߂ +ϊytt_z<)N]WX篢:Vu'S(wu? u{ZҪAQÖ]n->[ jԏ{dﳀ(Y䠵'cNqrGkUtzoO}~V@G:A<&5`;'Vt랫.&_5!wCzWwPYM9:-bpuOW%دKcGaEPsHΜ;;O3;s_Qw/9s)J͊b RoNYN9=.h_'sO?q(f֢h(Dq5;/f)8=jNxo+wr _cPstka~AUY s4|̓ѯQuΊrs]UoiǓ|M)[՚@k%J//w;z;T zKkIj[~ߺw!{_;zV(MVVݒT: J눽/ʵr-^o]5ߩh7翗VtNEN:uo{s<7[Ѻ7~nEZAn>lQ,{v kfX̪tZu+/wX]DЋS\wusKz_j~@u/V|x]o“DVmZLFO'<%S9ߑo2ZE<Ԋni/>uF(y^T\,87]-IzSMz( v~.r0s;='tyf*;VNݖ^+_JyȮ9s8"{3*z^Kbu~ݝzp ZvZ5Dn߭wߟEg^(gtO?V=ǮNoQ^ΉNEy e{ PsۢOߪ R kK5]W]?G}w|uݪk,*T?6ѕ{Up[U*>-SzQd}jEVOzpuzxvt'Oda^?+w'srWѭ{vhϫhGg^Uu)ѯݒq~]ﵿ8ݪXi?tk]_=(3(=b%xRD tw*z3t^};^gy'c`#au,ʍN+VzVEWa'N{u㱓Lw^!-Ẵ :[?[u)Q,s*^W4nD⺖]xݑ~f>Y17xNyPΆNkwWNY2;"J~hmV+[u)-%?x?ζN;//9.Ċ~N=imVxGwюKoG!;sHg+(3nի̊ztDsq xOrbmDy'v}ſd[r9O:t"ťV_s/}vt.t2oz+YQà}˫硊nř-YяG4lGu UyQPN8ݺɤs^"(Lg99F[ֽv级>GݝݕXOE9 C?]q.[y[Kw|Ns'&eئӺ3|jEߪKq=-콇+7?u(ݤrB߯Vr+.ms&'O7EdS^97zX?TKέ`Gd9Lg#n~ӭth}g&j=՟qkZL 9[ޏ~dT]RS ׺!mӭ.hl\(a*=}VFbN[k/]/ߗ~@tt9"[}ǖ]#OFO\<+gwߣ!ۛS&NF?$T<{F<~drQM[Vt>N^ק[ u=ɳ$ߧG_t^r ڧ]-9KinPѻE᠅uuW(<{ZY+kong&V_ұQtO~ MƉm[:?Uw^BY=igߺ8:+7.wuNm#[y;'i]+{FűQǕ+[:F)޿};D(>^s_+O@Еgp*ZJV{~MuF/wm~WGp >){ =z]/KW^]-lK6= ;{wO_Uw >;J\$[\+'QrsS]Qq>n[|fGg@wԣN?yC3JO294J,t+iūϮ|)O~e'|H}I `y)tu.v_(竽(0 .2g(PQs:ln_ ߷Y~Q7 Z{zЮBVpK>(=ɿ4|X%Rz~'NEIW=,omҟV_ŷ73>q~],,i[qu+/sQb{?[vٟyo% _3D81= dJd0nA#d7@ޔDvYW@(y޽;ʕyRψrOSot.u=8qpwYf,&6ל~VcpQPy\7p}_j*aN[dS_/&/{Sgu^ii3:zZT(^㹴~~hm{*RuVmW}|+O|ã_hwy:uԟ<({}3Ϣsw~Mau6 }^^;~{LnxxzT&o^+gE_YiFu48퉫9\/=_l܉}[w|QXv}n#GaӇ:cJk>B'_"GҶg  ̻ Da+#G̰B>smg"zoc??u^ Ϣ4_ _ͷ֟hs&LQMQpѵ2pÿd8,YrbQ랫}cV~۽w먼?VCouW1̟Wra>"?wOnS^ jg1<'zE: 꼟?1Jimtͯ}f)L K9n9}LgD=7i[hTb29*VcqWSe\a'5ڋ2g,G&wx:ﹱ &J~_E WuveP-MO;sgCgt5^;Yeϸ:E(;,詄r1Z?r_k=.q=ML\c^ FMxxEv|l7N9*&pXsPcI?)}Qy~.wmkt^eW?g=F6sQ8)j?,K/?+f;^30dgROۉsٍoZg%u .wx1ñnQWK3.Ows4VT9ԉ<7S\xYR_ꧩrCl|yQ{wv_OYֹΊs~R|&|_=I]顨hsri3~С&/xW!ro>)ezс3#bM5>d2P8GM8s'nua8"DxoE4Nˉ͐_dWָE9mP^g$0UGEd?|ktO洣Fȳ| ׏8ܮ5ʨHzP~Wڧc/ܑ=8vI<#Z_)arz0Eu5C/3q,s\z:WqFb8C|t2Wk"=`9¯F; 8D]FTeM 4ui#mLXߢK?|dg\ _4.J,ߗ *3ڴn6pjweK{1Tv1N\FaʙзEݡ^C_vgO?}5=} 41@]޿Zx"*rg0Wew~84YťsӦ%3<8{Z |noE*e(QE73D K[Fx7Ke?;^uߦ.F@@씱7y*Q?^fO>iO׫>s _lj2@OCH0F? &jM8 ѾiU\aY cr*³Q3^9\e߸}5)2gYCטgh?/[1ځdzdZe79:5lY멏`+fG#yx+C"$o+o=Sz1~6>g N\Gch;sW֘Pe{yzNQ3>:D-?s [Mv9wϩ?8gGύI\ R.QI=%/k| ?;Oz(ΠuIؙף'Oh~t;|Y7r>gDgOc3˔{b^'u;g,x?4WZMrNʞyP.򵝨|c'sIQ~Fڥc}bjr/A** rGniwf T|?yk׈\UeN soW떘rh^͇1v`g";^#L?}U`j_3#W?ˑcN穵8Op{ΟTcp.w<1W'Bwr]9(M_Z=1?:ϙWdߞ\\Dֆg>zM<{b>w'ScUod8ygUvuN\tso_6֙ܓ?ϝ&;Oך O%>3j^='p=E',Lߋ?Oυ_S^%Wv} }7'_ @_y\u/NYkI9}~g :y3(?sWWgD45(C,ƿrzxԆ35!S^:uz{v2b~;s_Ԝ͔ϊٮ?:鏋s_ލ;j91צof}mj 7-^C1#ү]9E{_Ի_f9޵\\ԩ8{*_Wcu/O!]Dh\2q^k9{dxo>,# sO #Qs ?\Wωš/m|=WsrT/EQIsR+{wXb×=p9po۸|SygcIg>|Mc3 ;F<8Sc9-WE9ψ_=ۉu)B6bc=T*GѧGZE7G2+dnU<?z-|xJ_CG _uy 8yNTO\MQ#oqlwϭuwz%Ij/։Nqxޛgsx/|,SW_Yv|'&6D\& 3P{nT>u^e' t9op{gG=y.c=IJ\}7f߼I<3V1%>ֱ7D"QU鏳Nwx3jCMK D}R Mvjٯ7\=y~p|s1EźSC8.'xɩy^K?=s󼞌=yi6AP?=rx s__S|(fU?>^kO8;שJ;=~ə{uiCkoV%;Q+KwNHu(\]gL`ߝ:?Lkɽc;6yQ\/ G,c=YAֱ+4R'ggŢ?y~Mc?kՙ9yrޗȽ}fAeRg~G)u#z/^<;k|֓w?}dGy$y 6RsdL?Of" >1sש'?5WvjԻqWy\x<+MU~YW7Q|obbO5^un!bQ Xo>NT-(\'69׶?xSoџ8 5]m#NFWHp]nvuk]u'ʯY.*GeQY卬YeWi״oZiGa/g?f\.?<7Bg>=/?3^KT]wZw>p\Kϗsquq8O/6d~)滬7GcK/ɘqs'E`НW5N-F6d-O粿>hHLQQyyPUvS;W\KyZGO{p/I/5KNĉ~ޘ{;տ=oM!V7A]OQuɼ'^9SjT_35|\_˃4Ը^095%?wowOYS8sdF͕ڥ'gt9Nϛ/ڿI<5͇[v{߭,?p :@os9ȳ_3_'yt]]{#1ٴ9gOj >~:**~F}1vFGwb~|=[ɮ-,c~#):(֎]>girsB?CQGbƟf _'r,k2%|Կ3IXNLRi_nT?3:^1Bg+1/Q؜ќ#Ag?;PԿїDS鿋]]5k5m%gSQ _7EaN_9sOJ֏]eB]eN_ptϥ6伱緅ׇEݺ=~8o/LsKhΙTM͋j.~v8>=͕HtTz{RT5eb<;^Ysqc6<y/:Zm;x/<֖O<9 cTUC翰̲㓸cyq]O pBֿ.yݩ>*;Eό+ߒ7c9J:UjM?՞D3*fZ8>?}rY;t4IO|rF>`ӝ.wt|o甯A}eּљ ԿwQտ,o[?s*Q]R 8?*^GJEOwzm.<{LAy?Gyk^F.էZ[P>xެѸ'V.wZ?=Y"ƌFɎɛWh\:?}*obϋ#xx˝QSa.~uQ_Ga=;Tv? __A璱vL]M'pQM2?/]*Z%6)&oZyƟzXou;S˳{0hrG0Mߙg&J!^i~@Wv֯+zrCX'}1(akZ~R猵Wꭨv =Ns <t;,.ĺ]%O$~7< ɞ3@Iy'|II33r$Ĩism9nOJTZs&`vًR#_8&{\ieζ@ g<(,|jY``DO/g.vzWצ=OyʹJZb;]'pN\ot=Ax3!7Ŝ+[SNqtO\])M}/o\/œ׾<⍴owuuxŅQUIw\ygn)ͦpso,3 ;Bghyijx8d8 y*f?"@Y8GQt3x'#{Y0_0s(j+w*ϠD%,80kƿYh{.WuL {gοJAs2ϫdNݽpv=wyg2#_Bk\5o'\؍#ş[Piˋ93j>2e\(V99:]_6y_T>k]i2}[L-{<ߎ3'WEy]MgpszWNҫSߔuZ:\]Ցg zǵN]+U~ڿuƚt7 ]5R1 Ng\8k Gq(G]㉨YGX9Ȯ^|JTCOFrZWZskokzj֓dMrCH?j/9;{w,(ti2ANϝrxQ7r^T~_RKm˺_\\D<W;~83? :Cg]wsQ:sߊֳ~u[bJϝm7(?j~iό>4`RBvgNO\ʨy{Mϯ|ݨ}'DxOr[|Zہ(6hbʻQ`Ak ߏ(ׯi1 , \Z(~?/x6±M>}Q#Z~vTfY>2 c-3OVSnљ&+O>7iܟ-C>N7n=O2ϔRyGpԝ>neww8 ~*i7#b7l r^0FTez|RoUv8yC?y2.{۵Q8#n 3[:.&_771U{4A\=5#eog^_43co?#yਜQk_7TƯ ƚ^3+@!mxzSxL爪w'W4F#59^<>K]<]\O"Lopw3ow5'tqxWYWNDNJ8)\^F;Mol)můܜgs>K'?#<{u{2u!sVT/5O?tF6j]U>mC>j2uڧaKUO;}1+h,_]fRlzw˩KEu9 );ʭ=>/pI<|Qj\Bnm|݃1 8e8Fٔ'y8|Psu.$~|"fy[_3YD\-z^q0|S.csM<sޭ |.7]UW@(w}/Z79?jNG]u<^v/p<<>KЋXC7?XNT^_O@̲bIo%lӟ>c1ˮ.s]J?u<8oq݋\stσa}sᡮr-ouv6ck]8$׍?s˭Q,#l뀗~hb<싡OZȤ+쿋j2:g# 1%׼z;PQ>_߭?wn0ya_y;|?=[ˋ]]@Ï}s\<ߋYOew..~3B^T.uX֛ƥ_o>(y'@>>zUa]K}yaxc8W@Z>ϽzMS7)CvֿyI\Ǟ+GH?ߴEy?d'lX'r{g]>'ƹq鏋G=|f띨xo'KnͅX]U>} 7*=G8,Ev<8Weg:ϓk_T?zZ9+JߍR+M&tOOޤ W̘:6==R|s%p~Q?֯ЇgcZTϿ]'qՓe'Ù{N]LqQc℣]iQED )gu (GYrxԧG錨j]F컲+lz=ww(e=]9mWp<1޿I} +_ٟ۵9Wn̨} QN `#O7Sک|FL3bbx͏G*_Zޮ5}rgCkގy2nŌ.owu4t#ߥx֑]\˗)6(EQ&7^0&/| 6d̼ߋIslߋVJ_px)ZޘeOs' ~+Mv_WOn řBRx"< y}S`W󳨙;'Gժ#~G;᥮ޤ Azy^5?礨I9rUviQSz>7ך%ԓ?oDܞKn?؉)[g 7K[sQ`o^< qmIW PA'Dߟk&S )㗝#9?*;;@uevB`Wd=TyvQs/5?>' N/=G<6jFՔҾ<PgƗ!|<ҕQ|Q;3oP9'q8n۷=i#Q&/ʬA;9=qx6;Z~ɽCqIUi{H,Hqo WM=2toh<-~?Bۛ{>gx3xDBm*/s{- I}^.0Y~Z56N;'TsK5懼GOvB]]ug󁏆}1/)ψ }Y:qZy_\a߈7QqYf8kqQûиL{'DŮδcn ?5S_snrUT&?x`*29gRǦW|$KM/qqz,q˫Q}Ry&g x*`:na\/>&+gdYnsnJNJQh\9p:s'ODU6oEalo]Vf._k߫z Qumh?[F~n C?>;ejc~h^?u 7ki3$d&9Rֹp#ew~pNymϻL <3-:B|.`gR߫RI\Ov@`NBeXt,s9=}5]_)k(|&f2*CԌ[{.cMLjb+/q^>?smY;iZO/ҏ2;M}}.c?8!sƌke-}(Cގ7;+JufE> Eؕco\=]tLc=}j92&./ u;p{T?ĉ,;٦c0fQW9J.?^9e^ugF^\gմKYvlQHh_Z3)޶N+~H=ϱ{4j~}{^9ڷx q\Lq7u5R?D=q1s#f 'b,KA^}"'j&?(8nUSwКf̉]gy\Jǿ[+mj|7v:㾨#e,:OnG~G8|,qm/+wW܃xd峤/xtW􇾫>Uqc X#7xiUfT;,gWLϪg3~7cWG@eWty:g7.p當5}܋5uXܹ}~ND)NNA(uF2:>?\/䟌5垦 /~3NG''zM&+;=ẘ3ÅpQ=plW_; O8kjs!GͿ߉5K7Oj7O6rWEϏa=Qsz;ʮϡbnccm)tE=d>7~P>8<3_H7?H;ڮ}rTLr7z(:nm2Fp ]Ͼ9 RO.%=E"x%oscHPY)gE<3*.>YkAר<bKd9HYygM{w+SDy8S<şפg?U(QG)p8kCwDG4*niTݔwAlp~ޭ:'~I8ڟm2g_|{yΣ87|mQŘyn/+n7}rDT=Q}@8j}ΎzA;Թr~k3VZc;g̲ݘFD)vr-[Q1{qv*şoΓEJ )?񱱻7٭ לKmOi~|?WHx_8gGB93}gx4fx|ֵc?v3>iq/b83/cwx)DkN>Ik؋;jn~'cK#'{ "?K8(=zn=n*m6,D$Ŝ.z^<RO|a"<>GV|dƄ*k ZkI~'-7۱߻ϣY*R;}sڿ=I=;w/qtk{r R/./VG)M9$Q_hɝQ __sƳZw0_" ӾB+램gW561ؿV~$إQ&Wwq7]́(3B>yVCQ3&&}!)yJ OD]輦'$*~P^ piǷtӎ>dz)5r/fQDV3/rO ~y'g\ xO.>垫p ORkZ'3kxeQOϭuWw|/}OĔs\_=dlGMv,6TӴ]vު>]v"޲~Mv(Yʥى'pRO/zO6~޹^gW8ۛ;s4~[q<\ǃSvxYEʗλ C{j&+oy_{ P33Ӌ5_8%N\?uM({HQ}ŠIfϝ:_~q2aK+Qi/sgoeק.gss]CYv|f/ZljϲIJXZw8^ƿMqGI0㖹^<0>鿫3M/`DԲ>̵0a^ISh탦n3Tv峬0&Ou:+es2ZW;N'EarpxcZ ϳ\c>[t/q\ϴ8\/̌2ˎ?ۛXQuɏdz8~D? bG~ǷaDWyvJyDٗ3\Á\#]7 3r>^]9= ,(6rb}.Wsu=NPG@;M9qC/v(;QrψRF|a8BZpx׮g6ėGYWl7jnξf?z? p+1ݍ3җs3]]N+\ԀDX#sa֎gp ݍ#YFI5a^͟c}g1O[{W8>;>3u޿1׳4"Kq0mit8=3KχH Kcjc]7Qggωw[yݗDw8Gq_51?guY򢉣r n:i<O2uZߟ"ǣ }' yy)p>i~'0soUvuFͺT\NGdśIqE{Np`zCMߎf^@ ^kn~Hka<}nNс]G>jq4^Lvק֋dGT9G/#TeQ~wJn{Y\{~6:|̵kzw^v z}T]m/9}U]㳹xAII=(HČyi7;ʊY!~oFյS5L]=_}uoJYʧuT)yŘٙϢé\^Z!|9'Dǻ˽K}q]ZáwsQjt35l3>K1bgr!Y>kMvx_6Qȼq޿ϕzǬ%㍴ `=4}nF,|O8~igoI1?8(uB*w!ަn[穃(^Z?|gӉMvQ+_)`?5|K~w>t8n"ЍQܘ99#*LZdO_əQPzL/p_[9۬?$ YvY^\'w}°>#oCRJԼÙ; n^ g<^s_5}/};iy1 -e%5SWDc=q8{ɋN1Ceǟq~ƓgDq҆'?=USbsc7Ww}asRǂsnTH_mQ=G͝~-j\7rq8N_/O&띨:9{1o燓Ξ1Gގz7\~/8U_oGa|$;{ֱ=;cݻcyo2p/s4_k+.mKw}3/v(hUozrjKu|E~F9;d8}_3XAqup[r6CO4#_.9wu ߵb7j/)pJtuWt4PK3{ _,߽oem:]]Oc3IZ0)c=Xˎ?x>3*?; ^MT,AM)u^9.wz=g?sX٫[ci\f?k c~}7ѣ`"=d?e{M~ƾz'8zYwp'y/5|zh~.z~Y=mok{Q':5r_ds*}ɺti9?ESͳ'w0 [*:#XlX7Dͩ;zz/6ˢZt'-&:ƏcYй?u1{zn~5(=皞i;"Nߝ([g`9wqs&ONTh=s~5{!ј1^}&5z3>:rGuOܽdN?jS s y(滼hT]şW -'Q+^Uָ.eŅ^B Q_k$jVOj$⵨.q<GQm?+y9QWy5syok{>hXõOq3c91,cdkH[S\:gXOg82fw㹨y_ϻ e]( }'g̽'&|OmxZ|[3{#{r^;Ӄ>].or8쮬s7jvo 3;EH&;{~Ӊngˣ|M׉sg{hoNT?rqg#^>8'xGk1*;^NƔw~חG]y#|>3n)9`U8,9x/R?bmDUOhYiR_zrRڋ<_*`G}$v,W?4֫;]z/uӴpΈPͽb~HIgq~=vŗ\^󤑕?vzxI71ϕ:kvr'X48-60܏SbǾ1Xgruj\;Q9aIj]_WEj}}ZҨxP|6\ {8|k%Qx³Qt8W5ɘy5GݽމoyƊ%J+_sW 8obgώEL'%W9kpz|@iN漢EQygO{7J{f,$j /1SyҨLns)o!׽|F2QyW5?7gNhYQ5(luuɎLsܿWs՞;=xMc.*]ɝX?ty#ﰉ#ō.qYy.(f͜wbOWϻgpEߺ9*pZ,vT=(m~-W 88|+h8Qw }."uo/picnίXiiNW2b8`ȹwYI83?ߗϔR_c~/3sl$r<%MvQeY~LWOzXڟ+Q+w'9ෛo.XK /#pZj}{Ss}P&nc3%apiO«bdf,g<(p>RIel[T@; ?Z}WyU/VY1@~g٩S3k9N&tfw8:?k??5͟>Nn.[#iw>O(8.OřԐM%ބCYӗ6ὶ߁Ϝ:|˰9*mrn{sߍ=o99 ߋuOCU>zĕo!>L[D8dYTvǝsE|5{(ŞÃ>ɮ^rS5O!WRy219q[OLGkkA߸`Dރ9g]xiSofNDO0< /0 Y\3>Ke'ί}7g~9/^1Xh{ 7sRyYwyb2ô{w=֞Vj2/Ƭؿb>W|[O|? prro4ᣨ2} ըwQ~*#֢_?p%R& >Gј9-|ϧ̜:*{=s~Bڃxn&n<_cagnj;~ *q2_n9`#?Gg>nboad|RJV<{_]xv ^A% >5 e̼S&q_?'H ^^0  wD+Q[36Ϧ {ϝek? 8!G p%t1S [ ?l~ߥ=>W;mc[s<+=;r?g~u"Q7Gb翽̼\~z1EÊ|u9F?^~%85izL`/[D~Z1Kޫ|ųj|α3g|?{^/6=!߇;O/~_c\Ҁeæ'ZWR Yy+^so? rz D?uO~řѾ~js t7Q81 ˜e ?W罶h sοYzߵ@e3ZfF_gTs\2NmחZFNwP_?/Ka8/uj`o|Fࠜ)tb34QM'׬]Ը-gb5gnhz?\/sU vxH;,cޖ=)5T;Ghs%.K'\kň6s+d ϛ(}>5#Tq0q]b.]bbWG{6Q xXE{uufbVatƝ?hs垿N~k3?(?O$\s5>A7_EމΌ,3AzG+>':ݦܘ}DxbD l[B7WMP\s1ۙ]vwCzB ]rt#&f5UWѩ/GXZ~sZNtp|qV L,׬Z'=+/ZLFj%1̥QZGkCkͽˁ([X|$yf/Kh/{1]L|)Y?ң>2Nw%xx~O?_]wܞg89ࢊ싊rKk7m'bXt̚^ Dgz(`W؛ˑ Tڇ)&.\ï^]mO_9`Nj4rcƟkO9|$=w_BNSk=U{t`M>G MR;ˌYoZ3߫W?Z?TzGtz5׆kkK~\_mC3QūQ.?'Fm♚(~ G\/VGנWkXlb~'S f9FSMjgUOWSL@Ej2?^wU]_Z~|O)FgW౽M77VWx\癈m~gnec$r3kH@Kׯ}X3'及jhgߓ[O }W]5ќHP=Pu?ĥ1/AoX_rCXo{Ըgi>?S ]Ew~HgJhQklVsS.썿( z=՟?1и3?}W{gZWLOg|\AwDq4GDzkmu-3V`&9@7i_P?V,W[׬3_^uR$WU1_T{zs=w5k_ƍfji1&5q$gA?GXHLK$Vs(5V>b5wK{yq<I'wGN=v)Omy6Q?v{7+T\Bn\72my3ɘuצɿXߋ2&Q^A5VC];d(Oc_?Q?ZPjԌ ~)~&=;Oz<6XM>/L1 - ldF(tՏh(? 8:b{S-+v<8c<D{7$^!yqճ[;NinkAsk]կ?G{?ќNGRYyib)Rs@YkN^&*56J돚+~5eu>޻}}ǹe+ LQ_ :nHWMiRxKz{WW' n(Ry&ֿliǿRW Y9պ~hiKc wh<.h{/th-5#/}E@P'=Y_]|Q/?5~Wךkr[wrJTZ~U}~*Oa]z˨_o?=Զ+vؔϚ;l 'Ɵ|5j,?3Rm_(VsbwGߌ2Kyx{14еs|?w.Gb6jv^_glzgPyrל?z3-fN=1|-?U&@H {sFj]-\)2ohUsOvrjѭ^Ey*us>?G6xW'/َ+g-ً1z.}OgC?$_C3^6GKkL~C׀rzPgh~ֿkGS4<ſRMG+gzߌ6ǒOh5ρ(;);|- kT~HשN:kQA;+Lq\i1!Z罼s,|Trzڿy~">݊euj߻z&ID?#:P}}Nu}S^;u)/s㚿Ḵ7=ʹo?7o>T:KJ3So4N+C*Sc!GOTlwıȳÓxpK΅oy8j@kG\k=FKG1瘊/QP{ }s_ͪ_sX7o#j*j?''Mkz^~־Kň{;'/f$>HW1ah3}q弰;+o翢j5f.kc~bw:5cQlT4Ox; ߠm+ՆҳVi)/sO'^{wqVXK8ͧϥ ZwP})SN:oAy~vWb=란U~s<~%YC.s<]֏{7_ YW?O;AWձ-?QQ}WOΨWA w)i5? 2ۧGʵ*WAqu*_HV]Djn7Dv @TX?5jZϺ~}FW*{)HzbZxZ>r2_+vnspdORǴWWs/L^{xAuXgä/oNyb#wü8"ڇ~N>zv*:;~_hw-?#1-1:'A昽_vuw"7;ۨyk?>Ǣ$ГMu<)_P?{|-Q7Z[5'g\\W_iG=:7 ;w>cOwԇMSAȪFݓ+*E:<{5~=ѳ|otBuZ$}ZDJި9jnq<_])Vcb |+ (6l??W_{j_QRg2$UNʽS^kh {m8S35uT|aMWvwM(G`?5VkuS }7d 2׿DVSW3 }mTcZWkjԦgks1_}IuV?NooCĺy4Ds FF?gokO.~h??Sm)do)3zJkL$QvYשzcTuLGq-3FP3?FNs;aPhH^{FǥjO&柬/Zk&J8b;[V_^hw]T5ԘJY: ۨHB=㙊%jߠ~e~ֳ~ ZqYc \C@Tlj5^~C+#+o?Z:Z=8ҞSѿ[E5b3|փП?:Ast\x?_)VќKL.y ZSS \נw~*&w_e%GpQޑ} vI_39?>,g! oWUN1D0ý79̃Aډ!"}8t>}=ۧlH\B $ԅ0AD~wsԭJn}>rj׼~k%&[_zQ~}:+ #ICؿ/ʿ'1>c_P72,u_<;z%k#j;mqh7E-Gsg8+ĵ%~f\._B?e\/0WƹI?u.7Zgr5Yqޛ#UV$hwT"~W0e9[,Z_ wháO_Or7Q'ūNVo$T+/Ź1ue {YT(:ado|y`W8o!2bS|'~UGaݜ1~ 5,>"ô 5VKaL߃91+Y)wz[lO%>XM~#~/ԟA]WgkQ/1G-6ژ9 Bnk vZ tl1`5˼L>%{Xg-9:q쿠q^}TٯV8Ryԇ)i?y80'rWD:q!e.Q>]V?:[Qor >gU+OX_I,yO1]c|ʕ]9+ט.z+Oߋ>Ac#1@'R~f΁o1"zE~.)f?KNGy>'g0+y8h -} uOj'od\n2Ϯ^bS bc]?|ވV_'/?̟O}Q#Gq5~<~?< r%šrbF+ Wc=+g4OWKD~ a-NVϚOy<8{ #|W'-g3bgkND–1>6#qi&<;g35/(kҩw[(Sʟ9+=J$6[5;Gv%ތ}+qsXWϡ ¡)ÝVYb'uevEՅn<ѠOJ lq]0W1\?+u]e:{m֚5QMga^ü"8{ 8#sP^(/?nQר˖ұ+գ2Ε-\bs0YhS_|s̺b+z4Vε㚵;F?;/hӅqOx1/BSܲ(A #7.̇+2C)%~5Z,Z &gAJ֣J GbRid<\}I"Y~eg[0ϵލ+=ڬO_9IV2Eyaefc.b#9s~_=qƅi|"Cx!Xi?F_rqbussZmV߿3k˼B?X֋d?x]LXR\@{eVEhXd(|pWfevuu:ZYy ^Pi~\xyfe/e|+lS N}$ahrgVwѧoO~_PpL}Be=zd(*$u26hGy?J U+U|r엧\(}TUiKR't _%&ʋtjRۻ2^-f1_3Ƅ9/&()zOb.Oy %~SG^_A~{Ɉ_ 灋 s,99%R2Kim.˸>n?sXt_8s_akoI>$ϊPuF3JY'n/?wbZWRŘ4ƿAG]!I߉}%oY%IihE3^`>_u b?[|bn/ߖRvK-_}@[5>cR'cH9ZMƃ|v [֕*{<8IBO!Ԕ3ab:2&SuO|r]w?rn|b%8O_=t΅9"⬨UOaiM]bjZ<<9Z^EK]7NI_V_DȚ?XJ!L~[s~^]ƿWX#RP'O?}e;[wV-U}#C?vjr~V]3ig0x- 嘅vKq]}o}<+<8iji&a%RM'~r&V(S9*k)sSh/a/طK>ʵ?o_]Ys'qL1b״ߡ g} ߦ=MfNӭ?}ZO?#+ςwQcwbTRV]{/1bbaK=>ҫ=OH}OwoC΍8KCs籷H<8uøb_u,k/֏D 07)p \'Bc-MUi1(gESP֘= ;aEM/Qޘ:]cekN]Qw9 {-piRQvzd9Z?: r{뜶۟Gu-Q@66oO溕oʹU.jt2? G-[,Us\}ث.:ig90?Q_?\$1'C\Fkb^57儮='S9ۭ?ʎ^KfYwnjJ1ó&/1BK]TN_6run)gl{=ثN]*7V_w92fK {)Wo|5{8_tBfZ!me8 8vf%uS8:+ֿ+ٿ9WmwΠxD:5Ybb>\X 'mN+1]9w7h?)S;0Nݫ Y)W4exg2?syGߗaS2y@*1Qi/kS=n{WdNq%7j֢qYs ׋#I1Z)3˺yu< );M_gkHY~OdGd~S idmI~)ck-Ϲ^áϗ=bxl?o'n1Ҝ.;q|˰?_v7%({u̡q b V?bB&⽹P_E^` so(|rcjs[˰Ⱥ}x)J8/"s~$,J.?w9;yJr=Z8 ۩`><'_is?Y0Ginal%aN]my.o\i?l[^icA(k=VpĖposZs]rW[??u./,۲n2(!bhK{͞$:|n+<;oJ.9G֚'̿E5R7MSNi^+_#c^W@ݢy#}eTό_V1X#MA;sD8/_i/h7i=? g%nc.3XyCYfucĺ0/' "B̩Qe~B--O05ʳiOdj>ie@-YcAIy,RٻYzWB]~7?&;,fZ?aOd|#몔q_I3¯2WOW~K knpߘCc?-?9wf9OB-hb8E9<<-x??ӟa;Կ@NCmrM9勄s?dOfʟ,[Y[,ﴜ7>b>PWO/LuV3CGE ߍvJ_2cmy-Z? X؏@gu\>'>oǙ"<|s~J_~z|-Z(17Kg}=SVb}1sbQh2OOb89[Ie>i>j9C~8?zR>pm%"db>u32.+٠zres_o˟d>6[X7ZGtgtrB)@/<4帘mbHbd?H6M'YdtV֩ێY7X'^ko"Gta2V3R׌sDD{Ik=_\IGs-i&qc/ҷX:ٿ@yϴ5C"Jꡁ7T+gc }?׆y!ΌO+9iٿ&YFrfW?C߃7g߲~?X:cl兼)<5/iCxoy_m F"s1/E~$) /$QUKl2+'W"m%a9ٯ!e/ߕ< bNVu~F_Oi{8bПA=_)йG~zavM}<+<8%C#y~x:3RBxi]V}a.<:/G_=z^_"?5(xBϭq'yaPKլ׽gD6i}{LW,ilrO|s]}pרIVf'o%⛺;{!<=㺬rVK|-3@ _9_H#uce/Skְ(;ub"Gim2*l3:⯜Y__?qA133/J~ȏ8j,Ozy\f⸟33ʻiG8*ys@2ɳW9?nҞ*=~A~?܎rSPDϰW&}dS\rVVۅq/.t/SKµ9a(?"ӷ'JCi_ϼ6#(?1D"sSSoʜ8sQ2 1[GGIÃNc\W ?V{>d$IqVX}b?ՏT?;}'sϔGWRz\t &?񓌵Yk`FӸ~/<+ۙ ͙>y}lc)Nfk]7/$Lʚ2yhI?Φ\_ H1~$F Uab?s92N˜CJk>utjzFz~b`aH)ԍ[ҷ5nņsv ?/ kDZkRoFL -]Ŀߣ_Ǽ"W07D(϶Kz|?B]4W~Uhh#"&z+%){V˾Ah߳́~GJѾwiKd}0gzRQQ֯WC-ΐa^]=P5x/bC bDkJbs?ze;,㵄ʼ% ﱜ `.[ik^NI۱lX94r oYKIFL a&QB8XW'umzr/luZ id"o?\";:YFC37^hyΧwGwej;枰E&bKoϒA⟉K&9u8'Ļ2؟uor-1{{8oFH_%Ɖs_>j J͸gJ>e3~=c2ϣx=b dK~X/V:#O)C_;5蟟}0ye貾 .ݒܫΨze#%G[5o/7$<#q{癲^?u_Nֿ߬,]\DDu|B<-sԜ54r^ EyWٿPQm?5ӏxHŏ#^7ghWM9pfsߙSYS?#k˖#(YɈaW\+yvJ2z|sb똿e ŹA~ڢ&e0IO2@}^?&-߾fP3˺`.c#%p(38?~eiǾ bdNF3wy:>.&? L9s̿4&_^<˗|hJk՛8?8v:ƿ O6l̷rAٿ~+??kĵ'?RdL7ĺ')ܔ:'ㅡy/WGd뗭w徫#bef1'G`Ϙk#ZX|GsQaP8}ohmCao3!8O|z"~@̲L'?O#26ω8?GxیCYdzfys__+_@> 󟱟Kg)!-;o0YDb.2Oqr,V"'/ͅdJL.iޕVj?i28EߟG,υ%P?ቓav~>ػL`>e*ok#^+&~ԟ9?g3ݦ+.:AbϝY1v`'u7ߟG,AV|A1/'}BGhϹ'~ͬ|'mqga|4?]tWzr5HX#~^|EEoanJ}6"vj 烏[_Ax=OwLW/[*_\qy=(?nտ{A:YQ)fsMĶ1HXPd4/<;g%3ʹz)EZp}&X $)%_W8Cj);`ѦXa ،gqe,⛱V/GD˜a|E(r' ;1\_+V(_S'vF,abFb8hh~ WO3ߔR)LYêᑜfHeŀ1#L),f?d9b_vSb>:W9J(k_ 8O#N~> q[C[ood2 b1K?TSo~?͐Tu'ΪvfBL~(~[!eOc~OƿcԷ[Or]a"EVyLJue>yQ_`J8V>5ƿ ou1+[APPAL T漤HϲQs68r<}ric_x},=VMJf_7YgC͖1#rğ\.G.*RN_.n_2E=g-Cϡ?n+k(_O'~X/VlI'%vYc+ \(SF,3c:,/'{X"R?Xoy1B}0Zm#V,dBގ}˘MaF|=3/Io!V[溅PE'kMF6es=gD)uP>)xS/άԿL)◤OvZy̟GӲ~cCZOɔ!P@~A~\~a+ߨxƳ g ?G1>a\mGH[ϳNQqQ<+;<3ksʼl%HlmF_G}5ȟTV8mSɊ5#WJ[6Ù Ѥxʽϗq0<@a~B>cm){"FK}< sPa's \lT3 '@]4h{iWn#֕E8Qrƹm< ҕ1geI0qp~"~4.Z/Ì(S'~e<ksǤb?re:S$vO(/ , a)Ŀ1;`|֏X?}"?ߥϔ?)M\o?'nrm\?嗘8?c"[`#ҧ<閱I$~gʼ(Ye=%?[?ė\2E< 1TĻ^hYoڇ\0bO~,uE!|b?C!+7x#uQ]>/uSrˇGt%N>c":!0_MlF13,plpczP _?cd_!q;K,ʑ@EUQmNqٿohUFr_."3sbNx -ea2"^4*>#~}R鿱E2FP{#?Q*&ww/g<;z#6܎Oø5J~{ߎ:_[?hIHX1Gz?jK*k+X"ހXȘZK5}/ΟJcO<_m~"C)So(פ֬$?G!6~,}X&}/ި/5jg\O^Y2ޤ<1~z+m|BV~F*9x9bdgV֏K'>ZN_DY4Bs<; _Y='͙essE]zi^< g?S0a>Ae_:D>|:+{y?œεQ_16$ƘgD딞Kr]W7}cCX.ڻOtBWD,S#MFiV䛱oOߥbwt XĽuQ[? oOI۬) .~2~'Vڈ\?"ꭖ [,⊹#̷X!F".gIK\׳ڕZAy쉐3eտ<'O(}NWaK8eeCҟIvs?_7<2H'&~^{<9տk O? |Ewosҟ?="ϬW;>N?46Nh0A\=W1OgZD3"y6暔aSV٠MO _!cez^_b#e54o_k3Y/}y3˶}5z ,' ?<1՞{;~Ihg'uPXfkf5hex'cղNy>2Nes-F\N2Ś%ʚ?Z)?4=|mc2A~=L9O7r& d[.3&{ ;Mƒ2H8eL{'q^qM왢'ɣe6cC??גz5,> *sQ(>tʟ$K9Mg<:٣No.#w~.ο]f˘Z6ԥIWJ-_a]9τ}XZ\׻L<6iԟSA sȴi%օ|`wQvOwڮNrR.8Cr'MTTObYtΔJoq4g~žʿg[=q=ye_&JDžRҕSeI:.˹c\JjΣו#~&_<+Oյ^Zu̧cO:s8̽p~@sVJ\bܧ}%y-u9=.dM\5)}Tp'teކbxt '?Kě=ݖk#\Pm}ur~1cZ~W%or$-bZr1]k߫C11zbSm.ܕp/}[Wʣq^}TWO~dN~f:Z1S?_cqSɼubJ׾jsb;O.}oՊe/\SwHӲ&7F[|O?3oLs6\todSekbZZ/$W,=ObQm!!1E\g͕V#~:'ݑ߈'O3|<ıvE9MNY &~M;,`k+_ß\ge_lՈӟdBT0`3+bO y\/߇,koaSt3"OeOEN˱1lLD+oYμP;)}f9oOM8c'bR.p/58+?~Z*7ri0EވKN˾2ӡ?rmk#빲CC_\5čVyhrqmG8bf%YwX8,b]85)- k>d1?*E>!kiٷI'o۲GrLA+ֶh#_uC/40<|2C ǿUɪFZ kCU?dY *Uox-E 傺3g?:q:xQ>//w)IJVOCǡ).Y+p- ?3~>9EW!.whϔk[_Tg#1e8n'67HR;i7xi6C=''cs~J&9g g?6`sQHZ_EsʫDfbG&O2~~-y4˲M<2> io?+s)51Z¿_q"wm9.}. kgS柰B}rQ2~d5oU;?٩j]V3ǫ([rX3ʟP,x^kCPϚ#|xWCPK~?xU_og緰G&cP6;5I?/sZϵz~`>)Wg-WYM$~<6˘~V֎wNe3uhJg{Y;&_BaD3XQv{?k%ƣ?dm.e+o0H?rA{lk/,5EO)g^]E's##CY~-Ҍak?YX+y)~ៅW_GS_e̽sgI6'鴢g~>k%hYըg);- Ώ?aLJCߟ<2 0'L}z(/Xcl{6xc(2k~{QcN'1M?C?\Pϰ_?/7-_b)!\0w }*}1ȫ85[?K|9r,[Q:??C{ VOĜ6CcgdwՊ7\~"qv ǡPz/jϛe+}ub|>$u gXO$+WK3y[~ϥ؍xS!vWG&_s8" ?s6#ϫֿ˿˿uūϼ?"uQ LBυ+\d7?B߃:-'Y'5S7"v9C? gtB}kV?q_ QQQZ-1<mL}?o#&N7Ok#Kd>}Y|mEJ8>hk?Q/q/1N+Z'9OU7>'{5wqsn]C[|8 1>n'gGg=lAϰ5G>; qԟ ]98G0GD@ax*iONofَg0}6aSԓ?'u~@WPo\<+{٦G^uԙqON[Onq~N?>dM4֛5Mg)}x1Ou [ӷŠ,ĺW>3ᯈe}%qG|7oIґO&:+gN( މgM>3sϻmb3_q4;:1U-cy*5>9O)ZUe883 柬_Q7*~9+'>\Oo/M3^c'|m[ef?}[~OY#oP~:/|`}|r=4~mS+u9b>S9;3(ջv>8QHGω&~MI؇_!sS`rrbkk|M=O?k5<03+3~ON}oUaskq_/[?Hbxi)i) P{W|X_GIz?M gͅ\>ŖmFkXkcho?CLtz cdrvġ.l+~wJ Oڐw6mȱHF:a_Us+N.+3+QYO]/[ΟSXS|E'gI]Vf<1]fy*$WX}%Đ3o|>r6/SƩCv[/y_%Cgm~-Y{2~u9Ԭ +N#q k_:;߇t 'ùG~ ?-\n>΅gy]?yhrv,޿$|g>NNuL8OC꿯/ּG>ߨo7-?s?53{}we}{i3]ґpv,}n}}Ώ~>׽M/)wa5o~~S!=pF/s{}yHoDڅ>Z\??o﷟y SṰZ-g~ o|Y~'3}]/y>\ ?mO[ew|)q}B٨cg>? <Qr翿1F3g`:PQqmX&P~`hCqPω>O<ĨFs&~}ݙطwh=_g5ϝvzO4Wլ_k>+|:Jh^5=v헂b<G2HYxdtj53n~}foAL~>Ft>l9.^g|gU/>JX|4F:ڇ!6۱a҇Yc~iY?#K^P/CK _cCow7vQZzC0vgf+tcFDCh7i~†)6&8A1϶翿CPV_Yk0 pg׆F_xmG]fõu)RkZ>>͝u6>~ZHׯ|{pCv|W껯]n;%?6T'eX6X-`y捨CVo=T7;D\bjsϬyP|+(/Y VX?>Ucߥ qœ~]~|ϔA~fΟ#9ֹ"N~n3s lQ??>Z׿翿Csv{#o/wj=N 3F=yDi \gnkᚧ?ϛ;Odn>?C?/qS6j)m=?oPil~ec{HkT?zf8d!&sq.?0Iksm(wֳbm'5?2_$Wozh5?3'ÚWKWZ}3;|ޝ>H?_nW<~թ/9iկz|uw)ߟ?2@ Ʈt H`zcԗ́cHoe\J{b4$zOK?|O*Ǥ}qߐ#t& L1[2tM7Y)G/ӧU?}u|4zc2Q>oxiqgOXۺ/3 \{iWkDEz+s൉DSc m.zc7Q>ƮEz+ˇ i燤߱(joo}YSҚ>ݟHwg||KFᅠ7;+2U>GZ9tt(ݷ,dz|4z1A[_xT65z^5z^k9%'fXy>k3_5z^5z^k9eص^}~򡉟_;>>h|-ۗ汍|Ͱ^5z+OUk/Y!Y}J-/HɽwXXIi׷MM>=e =Ct@oTAOe~^Ms?m&!{e|_71g{y5͵n#wj|4z61$tϦ/xI/Uww>=ݯO&>@g>“W,7{BW3[NN/UBq3_}&>qi>{QKsל_ȇ}.1Oe$k5z^5z^5z^5z^5z^5z^5z?: 1I?ߓ=^S_gV`v#q72|v{c]^9Σ\ߟW>V`qOCǺvsG߶+h ޚv{c]^9Σ\o[uy{ؿFkFkFkFkFkFkFkFkFoc}3;|gT篮Csy˷V}fؿFomo[1pnM=޳ϟZ*?./[?)|m^Foe~,cMYutU׾?=gwT5ho[1] ~U^hܙnOu}S|4z-dHo ~{_kzY.?ڧ,Iyor^Foe~,cM':O߉B7I~^E~N ׸HG72L1p۵zKW_-KtW5ho[1|Zo߾ki}*_o$i^Zm_&EzkFkFkFkFkFkFkFkF[+=zXWq\؎׶S׬,ݯY9>*M~{}Z=wR">}ymD-[?uE~a>G_7?~|cߤ7;xćm}㗻 ~a{[Cھ7)ǿ19'-ӛ|ow|"9Ҿ,z<_7&Ǧ/t)'WNzM>Izc;Q>oxewGE~a{X+뽽<)ݿ:@o|-~f置yʢ|<ǾIov|'-[yr?.͟?M{No?|.ɋ&&1(cHoeݴVdOz;lw>溱\ɇM}c7G]g^}N1[2[cr|ۿ爽E&&1(cHomaFkFk5zc燜_3}ׯzp~2?7t|o{ɯ]{ΣkFk}X~!޿˯щ_65z[~򡉟_wG{zz# aFkFkFћ~72LoU/-7.[c7=$#Z)]Efb}ַ<BoESlm|t;R?~'6__yc*VF۱z t;|:X_1M>BoE×64/Y_3𾲿^^ٿg4__yc*VF۱z o>?o<lq<Uȁc c 6@>1mykWWjq<Uȁc c 6@>nn>;?_?|<Uȁc+1 ַK<ס|^}BW=ƺvt?>>~Jm&W?~7{{0?Z|˿ 5z^5z^/tao'^Dt?q* ~ޞC%) ^=.,ۀyF֦wb7tDߺg>ﵓXϷytyxZ/tG}z7Doe|St']}3o6zJy2g/'Gko~Nﶹ̝ێ qzI~Gߗ]ѳ'H?\į޿:e5O}^M$};gtuj+?ݷ٧Uw=|b7,H?Z9M&/KK-zM>}y=Zl+|4z,=zV5hFkFkstB['e17HoEj>߯8t&!x`JפKMB4yu^0[o{r~߹4CyLlyUO_=x~Ҽdoy/gw'|R~B7E@|}O=]:Do~_+龳Bo*M[t&zN޿gx/W!ϪB~>zSoǴ5h6{Iu7?ӷ_ ;nI 7m}c|4z|E~_gB>ޜ~n>*cǴ5h~t?{*zz[{*cǴ5hϋMϷn>/˷B>^_IK*ߴMikͯO!O<{6O龬Bo*M[t&tjI/+z'+=7u}cf8FomWGN6uxIĩ~576@Ac}M^صη[=_tthos~y+.|z;q]|/66zCc S魃za}|]/] k*3 魇־~ח5D5k289BNoZ<}:G|8eSٿ:eSM_տ:eSٿ:Wޞ"7=KroˉSMKN75;S|ޜ_|KŀzkVu0 ޚ׷Ϸ[~YMTz)iJG5z^5z^5z^5z^5z^5z^5z^5z^5z^5z^5z^5z^5z^5z^5z^.tkw||? }YK\ٿwC}7S~?ݿ?Kiϗr5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X߽r5QW[X.?Mt]龬ko?䷭]߶}wM~7mow䷭]߶}wM~7mow䷭]߶}wM~7mow䷭]fM種ͼ v&AK1E#f1  ;h b `6f1v 00͌JuFz{3OfU~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ï˯_͇4+Tu~ί߹w6aO__=c^؟'Tu~ίm;w5Tί>1̇盏:WWϯzί>惃fί>?u~_?UWU+JC_v%o"Gy?MD~W?~;oJO~'7ͣ] |4?W!B6ǙO.1!ghk<Ǽy/?W_TW?qvrG T?_}_!K8m#2!dݼy?gZm^o~yQW?m5oWW?}ZW u~_?yyy]¯>Ǐz~ֿ(͟__}WQ'*/__}WQG=WW?U_ǿ:!WW?~ΏR~ί>~>~~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ەoJO~'7ͣ] ywB_\O~ڧڳ uq?k{;w5dۖ1U~_Q\O~zq8?'u͵wy `?'u ~[Wnu#Bf:|h= uw(U\?'uͭ; ]Nμ\B_\O~|gS_4WWߺ|?⹬cƿ:u'gN ~[?ѹ}ƿ:u[?~ uq?g ~[z?'uu{;~u{J]N]ٓޱڗ"4.?W߷a/JwTAk0Y?ߕt?'uOO"4S* <;->_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u5ry~CrHVW?& 7tw UW?&ev _}O~oc!; _}O~WYB _}O~uwBW?__?m_^/CWoxs>~'M_bsݽ>~'M?m}bc˅Pwk'O5m>|zox0}zoUas*W'?romwO3b/!~n񳟾CBW'Q!~o#O~)y:v.BW'k_ ~ykwW:?{ު?_v˿}{.nBW*] o6ߕoJ}?WB/_ے.;SG/mIO?ׯ ]/mI6ͣ]o0Rwz;4 į^ CG63f/į^ ¼y9wW? i?1/RnK_&ǗO)3¯^ xfO0jz/Mw7y]{xK_&~յO~o¿Gw5_0g8`ן߄߯>nTO~2oky{5i_̿ʶyEui_r6;~ 7ض>0b^m^_._~sL_.?/~]~_u\_Z//~ e?Rᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇿ|U?C""K?Co}<|J'9'9[??9gٺ͋C?0%Tr~ni|^{?Cί ?Cίϟ'9~+?!kA{!;~߶7ͣ] 4-TOSROI% UOI?%?TW?%uT>s)W}T=3 *)󧤒߿ud|I9. {iΟJ~?US J)Wʹ~rs~O~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_Wϯȁ!>O~ۄ!nǶmߝ>~'M=w71XfY_}O~om}Tb¯>~'6{xs¯>~'M=ٝ~X_}O~~,į>~'M1`>8p~(T?m¿}ح̲/"T?m¿.1%X>4?~u_fS*~PgOWrT o(qGW|PU]_y z _0|{a~yv;QW_yyPU=cC̱oh!~CQ?U?YUk~ՏTky(4h?T7Ѿa~_w*W_ן{0?  zso] 3]Q7xc}/mIO߉wο+GR!{l,=P_ے.k;S~ܯ^*Q7z]!ۛߖ{:(]v$X<@6ͣ]oo_g*Q7~wz3?B?oJOU?{?u)ov"y d7w<?L_צ3qgO~'Eo3 ?z;oA%w_//M^Ӷ/+O~~Qw2<ߕσN&o"Gy?MD~W?~;oJO~'7J~Ou]f3~e[h>ǼD߆TU[wJق'!V?6_~ېJ~<ֿRɯ ?mH%ᇿ wRPᇿ W}6_߆Tͼ|y0l>¼y0!~_1lә;wW? 5>Y_&{A 7z/M};ǘO4n>|z/Mw ϼy7>B'7?|XA!W? n`!~_h>$1W?]{1p~w?G] VW?W!*Ns(+mM?dնE|?W?3_W?Cί ?Cm7?֙+{Pe~_~_?nyAm!>V?J'9Eq!m?MD~W?~;oJO~'7ͣ] v2=%?{خǶ EyCڲ ?~}Q/?_[m"'QU[;_[m(?σFqYN׏7,ې_[n"\m"o;0_g>߼|oЩ N3| /SR !- 3( :)󧤖kEOr{A?%uTu[Ͳ畏G*~krT?%uT>VwS"|{y~=(Ŀ J)_O]O2~ϚT=d?Ÿ:JS)~To)):TGSR_{]?QYC J)wkO~׀;~:)󧤒_~n3/3o^n~.0/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?ۼ>W~ۄ_;ؿ;7dV~ۄv!E\^~ۄmkC".oW?__??&]_ʯ߭ _>x7^BW?&ض>)oWB~ۄ߳[]_CW*"Wq{|\楡sO3d_W=]l^\> ]BW?1z~5bzsͯ?? z )v|{b/ ?yyQ?j CGx ¯^\{z_n!Cv/!~_*y+?f} !*5gAsT99+Ϯç ?Y_O!~?߇W_淚?U_~;*~!g>\_W}Tzv 1GxK_~{={>Wm+?]~c\3]Q7~gќ3ڑߖtw }p M~oKkxmͣ]ow~"?oαMy?oJ}};}/mIO]]W"yԿ+]潰 "yԿ+)y,~+<ߕOK~g)˿]U"yԿ+?]~s"[7~;.3WJ ,7~ϯ~?\nN&˿3U{gO~'E%w_?/+2~f!/]o\eRnKσN&o"Gy?MD~W?~;oJO~'7ͣ] |.R'!^d^TΟj6?JB6_~ېJ~bᇿ )W6--0/?!%>Rɯ ?mH%[Οj W62<׼yGn潄O~o¿|}EOW? =yO~B'7w.>;~_uO~ov!;ozz/Mw0b<\!~_*bEiן߄{^?vG{?z/\խ?Wi+ _;>(6;~ :lMu@~23o*rY?d~?_9Q?J?d~_n(6?!;~ =~ˏ?kW~s{O~2?/~]?O?d~//~Mz[?7?խ?_?խ?_?խ?_?խ?_?խ?_ؼ|CS?Cϯ ?Co5*~߳h<|.>>?=?W?ny_~_~_?ߕoJO~'7ͣ] c}WO~~ww]oIw1suz?~E ,E~[ߥRɯ?ך7/4t1jxU?%u/㧮P|GS"({lcM~;O2~~}ۅx-lO9J*|_wZؼUOI?%~V滅?Ϙ3e|p[SRYbb{{{aqA?%uT[?t¿1e>S߃^X?%u͠{A_SRɯzŸŸ:J*kDO_SRo}f^f߼\a_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~us;?ncn/T?m¿ڶye7ouͫI_}O~(bvWJ!~??&߭j?L P󻶈yzv}yN}f¯>~'M N~;_=_=Sna{м|2Rnm}Q_ן{*7̗z1̇ ?~|_qTe>|¯^\[͟OCdݼzs"b9K=IS_WU?QO*J~ՎT=Bq ן* UWPvŸ¯^\~P^׍y#k~??ŸU?_??ߕ.vC{wJ7wz7R=G!qE~W'loKz~ߓ52'?oJ}%MD~W綺6]Q7cocͣ]ooOP<.oK[г֮D~W~cmߖ;~\^%?oJO͎΀N&uf]jE~៥o޻{~}nw2]o~ a6?L_/g6?L_eJO 0/-OK~J}eR_RσN&o"Gy?MD~W?~;oJO~'7ͣ] |yiЩ?!~|"w ~ېZ~?!~|^߆T{|M+w ~ېJ~ß:J*_h|yyPU7C{cg><ΟJ~f.1_]>JBWi>|QA?%uTyyPUw2w;.=+J)W}TO*)󧤒_E }OI% ǰ?%Q>oa6tSROI%S  J)WϏf^f߼\a_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~uζyU7 o~E_)į>~'M=(*~ۄb}˯ oEway!~?mf}qg¯__̯ߗKE\~M_}O~.F|} o-ߔ6=y]Yn?~T.o1w=/,į^jo><|!~% KYs|D!~%j \;w7'į^!l{%O)!~߯ںWk/T~46Uk~ՏT};GB2篺'ÿy/a+į^s3߃G_*ת,v9=z~Oè޼yO!~߶s̷ͣ]o~";uW7w}{T![+?oJ}㯾{٭{"yԿ+}?.~wcɣ?oJ}{)]*Q7}sQ\<ߕ9=y"yԿ+-&"yԿ+}LK~MD~W~PC]>O6?L_W_^UhU^,ww2]ۏ!~?u2~f)/]oY ~_ W?/gߕ_?L_/g?~;oJO~'7ͣ] |.Rɯ ?mH)~ېJ~ b?mH) ~ېJ~^~ېJ~<v?mH%>^P>Fq6_߆T62nE W? ˶}4~O~oﯷL_&Ϳ1?SKiן߄-Fן߄"7yj?Fw'֟߄ϭzW? {;ݐz/'7>{`ϰפ{ǯ^ ugͿ.gTO~26;?.B!ϿSn{]w!{~cxۿ;Կ_ݏ!rY?d~?_^C׿ˬO~2>J_{[?u !rvB!2~ou/~ ?O~Y'~['~['~['~['~[o#gwyyI?i.4_UrR[?yj'9>^d^4Or~_?CYa4+Xr~O 9_u6W>~~C~_?pyq+w ~_6W&"yԿ+?LD7w%' ~Qw2<ߕσN&o"Gy?MD~W?~;oJO~'7ͣ] |rOI?%k_cg>ܼy!s{*9KHe oŸ:JJϟjWјv3eּyʟ:J*=C|T?ΘN2j>|ß:J*U?USo_SROI% a!-a ΟJ~?W9aW?%uT{Fe__SRl%畏G*[x I?%uTe6{V0e>(~Ƞß:J*=+h?TO*)󧤒_~n3/3o^n~.0/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?~u/_'ïO~_.?~]~ ?}öyuW?&mTr/ o狘ߔI3嶝˗W?__??i_=:OuW?&۶4S^2o~ Wy F_I~ z~2*gٺ̋_i;?U'8|!~߯ۺKW+{PU53nӼ!~mcy #G2f>R_9+ߟ?oyPUw6~x{潄s~7{{ cCOWϟjW~O*9>yCSk|!~3穞P<׼yNB=TI!*B~ UW?gUmsٝ/į^h-kz?zso] _w^+Uͣ]oV{nk=a"yԿ+߷^Y}淅ͣ]ow-F7ͣ]oOnJ\<ߕ_!qE~W~gA{?"yԿ+bVׁo[O}{9!qE~W+-_{gl2~23o*yd<׍(kfO~'Is\nN&ᯋ3KOK~J}_?ne-/]oY W٥eBO?q3/mOK~J&&"yԿ+?LD7w%' ~Qw2<ߕσN&o"Gy?M߿u/2t?mH%e|}??!~}|~ېJ~Տ >o^hW߆T>Rl%櫃f?mH%_|Ro9ǼD߆T{ؼ|滄?mH%OoC*=]ys͗ ~ېJ~Ã̷j?-~o3/3o^n~.?+m[/:J'{UWr' ?]n51:R߄sW3?)/M}[?Q!9[?~~_~߿(矃;;?Cί?<>>>?b]O~uO'E hΟO~uO'EO~u~_/ ;Sۂ6Ŷ9vs9/)ToC*=h~!q>n~K߆T[?o?ᇿ w?~ېJ~V_ >"8Roc7x7?mH%ׄxMŠy~ېJ~ϛOoC*U?ᇿ >*/߆T6W&"yԿ+?LD7w%' ~Qw2<ߕσN&o"Gy?MD~W?7;{\W[5^0l~|S6en)ͯO*bv+.ğwZPV1Ϙ<?mKm!CWzXGp~L?%oS {RQ.(ği[͟יٿl}J?%?)O~sHW?%o~;m߽F_]Me'CZGk*)O~p~^V_'CVJ}O ~$̗z _1k>|(A?%uT{|?oA9_c<ϼy/A?%uT[͟WΟ*C}`A?%uTU[wʲ)Tiyß:J{{[7=|BOI?%k?c:(=vΟJ~|?F_T*_SRouA*si'\sa.~X?%uT[?N;ŸUSROI%g[Xߏ _{C!^SROI?%i. #x?qPUS J)~ n*)󧤒at6>>-~?>. ;}S 7Wϯ+wFPU?ϟ^~߭͟ӼX?%>f?CoOr~gJU?U~?Cί;r~6*~_~?խ?_?խ?_?խ?_?խ?_?խ?_?խ?ںGB/wC-)3 jO~j[-柚̶s/ˋѲ jO~2ϖU~Us7~#k8Ck?&ğK?mzj+Us7~//WwK ?o۶-Xaϳlݿ_3/ >dӋgubs*Nmݣ߅xg̫{XNjQ߅S~$=bg~#!6"Wx?ERW=|sB=%BW<|y/Ck~Ou)Tc'0e>^_yj !n0%į^\>g>|jOWRqgWU?UXُO qG>~ܠw_??Wվ!~-OE0Uk~O {XYr*į^\~Py'\3̻?z|o:̯Nm ׿sDRɯl}wB6=?`ݯGǕJ~Cy/)-g{d~\~^\_N Rɯ/ OϖUUǕJ~Ogz|=q_n_q_3Re[?_?z_ͩz/?TC_1Vφbw!q_}}nTǕR~<TgV~T\m?uc~׼-?u֚7.b̀N&=jb3' ~a d?7~_,t7?0\n6?L_/gW?3~ϯ{q߻3O~?Mt=JUw;_q=B!^m4`mR7'![?5%ToC*A6߭͟?!?ᇿ wkoC*=j~==c^-ToC*rT_ W!!/߆T{FsB=B6߳lEEsWxB߆T[?y{K?mH%gں W!nٿ͟߆T>R'!|~ېJ~OoC*/ᇿ >*^6-~ېJ~_Ϳ7~o3/3o^n~.?+z|-_~2RSulXrJ\[͟^OgX1Us翙'Tgm"w2g^IoU<6?m=e~о OJ}d~4R?ol}TG˱Ɵ{ ?}ؼV5 Cί;g_]1`_߾jT;ߟW?^W?n߱mk^m~vO~2J*"wEO~2="rY?di_VQ/L?dyc14~/CeO_}z+'Ɔb]2~_Ynom1ݟo!{ȯsWgƟ??'uw7_]?Co}ǩ͟?~km/ ~__As!_ 9 ?C!k_?9.ߗ^ܿ?9 9 9K_g|AgsP+[~_$Vr~v}?-D?Ww~;??|J~{?W~ɯw'??Vrc#y}o[߆T}~bPᇿ W'!z_;7~ېJ~?'!Vbᇿ )_ W6_~ېJ~?w 'ToC*3jᇿ W}6߶7ͣ] Ο}1*)O~M*)O~]f~~!'Cn}D?%4zXΟw__~Z.?vb?NG'C~}O ~;_Szޥ{VO ~$m~? tyy*)󧤒߿uhV¿1nǼyW^A?%uT[?/4/?U==tSROI1?*N:)󧤒G**)󧤖__.~wy?!CΟJ~QrPUo%tSROI%eiC;GOH?%#GͯΟZ~U?^ZA?%uT|]PUՁw2S"'ΟJ~u-1v[7xao¯.ך2"Tr~uwW?Cen0?_?9񏟃QК?e97B!wkCr~ֿ(~_?X͟r~Or~ڸ,?¯^'~['~['~['~['~['6~ۿ0h~zCG̏,F*?mCI"fח wZZXp1ZVOh|_Us)_=Oٶ)".?+ğWOoo1hY?Q?o[;c!N#(W?7k8s/:J}W)F\g?7ϓ8"?W*gO~s_\_)?߿ud|q~P*nW;[-KB eBWży_{ ?M?yqƟ W~?)¯^\??j mf>|zsͯŸUk~]{ wo!~_SU?US zsͯp|]Nqn{Ogk1d|R~7>UO~^q_?ůݩ/w+ؿ?~u._r!q߭// ^y"UǕJ~ k//FGǕJ~ulm{v}[hq_| g RO-UǕJ~J_\a~\~kw2]o56^?uy~W۬' ~"~s\nN&ᯋ3K?]5  ?/+3KOK~J}__O[wUA~? ̛_=!޿W߆T[_߆T[͟τx@~ېj~ ?m2~?JSRo?mH%'!))~VoC*/'!*6߿u;??!%!?mH%S>?{~y~Rںoo6_o.?! ?mH%W?/?ᇿ W!!/߆T[?oC*U~?mH%[?oC*U?ᇿ r0Nύx\Vwٶ5o`7ϛߟ/TgmvR [1?qYcղ 8?m[̷e0~R* soφ͏(#|nbs*淚?(ΟϾwE!^UB~?;xO;R?Ox}5_ʟk~Uض56Y'mkyS14~/Cwm"fZ?d~chaO~2?/~]~ߖg4~/Ce_{vh~ ?{Vߥeǿz˼?d\o{Կ7!?B![VcAs!_lC/~z|o?9Zf&ߎ{I?^f떘4_k~PᇟhZ?Cίz?Cίg=a|/ ~߯ںW6_PS!t[wAeb!線? '9 C|ؠß:J*_Xc^PΧ*WӘ3lk|`OI?%n9^ tdr{V}OI?%Q>oa\_/yݿac>|yXB5 ͻ?αwW;|ew __0F= zsͯϟ5_uOؼUWOKBW?:lUW=]l^4OT¯^\~P k~5C{x !~_y!(Ο**5S\3zsu!?33-g]}n(F2RW*Wۂ6͛kUǕJ~u?4T_~X\wkl}οC\l[w+^5ͷZ ۾ス\VW*??6ߜ}p+/φn-+nj'ῪwZ!q߶yyrw2]?.F9`w2]kdw;U}m~;.?f^WJrm~;._,?/+X{.iWO:w 5E|y9~ېJ~癯?ᇿ W?ᇿ W}6_~ېJ~OoC*U?ᇿ >~B6x~ېJ~oC*=]l^\ΟwK߆T{{|%Yn~sBmeKζ=M>fѲ )?kB`}OO"r"X?q!Ο7bۺ|".ߑIowVgUחg OJ}g ;1sw1/`74?VU??~?n|s9e\>?K~|E'_\{{r0-TgV j~PU5ٺ_1nmŸk~U5 צ{O~2:֦4~/C{h_O~2'mqy?[>X?d~_]o~yuO~2G`nb}y!~ ?2~e]xͷ!T~}ݽg3?!?6?m7B!>~HК?U?U?3!W}!wk˫B!ʠ={y>?C>?PU~?Cc^`^"Tr~ϲu;T8%Tr~ϴu qK?CEEAs!޿ y[$! 4 @L!Ǝ3w38x@6f XRb c`f f fӋ՝}۝^v oէ[[:>ߪ]]3_vǿN.W}.W}~_Cr~j'w9~/j//?b?)ټ ?J~ǾfOMßBJ=߉~SH%BROO!*? )Wq~SH%CwßB*:~/ßB*U~?)_CO!oJ?o;ߔo?N?o;ߔo?N?o;ߔo?N?o;ߔo?N?o;ߔo?N?o;ߔou4g7 ?%Wckʰ/7}LQ{O>_Z{qQ˳LQ{EmfX/7ev/ ?׳_o|uUcz7׿8~Vyd&l?ia}[;_~wa9L?&ݿjzysؾS?&s?q{/mG/oU;U^1s~R!'?,U3̗ *c:, W1tcRI%s:k\y¿И7/5/0c^tcRI%2e|PUp{/w:1Ǥ?1_{?Әc4,<:L*=!n_T}{(J*ǤJ~g *W?&uT>~.se| Ǥ_S1jݼ+珉UyqUcRI% ƴ+{u$cRɯ;~۪o>1׏;S1v5_~x7:L*ԕ6_k~wcW/:_=}te? ~?? ~{Pᇿo9~jkWj w9 w9^ltOr~1_Or~Or~U?WO~u?WO~u?WO~u?WO~u?WO~u?Wß"c+?-uSV?Q{Ϙ!_lu ܾL?O~GoMGX{a˳ l_}5k3^_*o^g^/'ׯ[gXX':?/W拊޶ ?/na὎W{_{/6/32g^j^!į^׿v+σNsA!T~U]9^i>T_]ȯ?<Ǽ<<%BB~O ^?s|zۜ_C os~Tg~.Gz~^SU*>>]\׿=[_w.0joɼ+a~5zm}/S $?T?w׸޽`*2^~!A_s;'ῬsuT*ؕ7G\J ra|!A?~j*J%S^Ω J~oUJ~vyvZd f_AߩZoJ%Oa"!A_C'Vsα9*ϫO'jܰ%!AM ~gͯ'淋2/w8]ձ3T&O~o%W;!Q؞?uLRq'O~RNO~om ~:ΝeEhw8]?ٕnWjC{=t:(>r?&O!u4-gP?Tŕ}??)_'J~:~SH%{[7f3?J~E՚:(CßB*}o2?e{ ䷾f7(TO!^!>~ 'J~OO!gq<>;?)X0_P?R~׆ﳹKßB*=A|Ro9/ßB*U??T>~ ׿v+_T?)]J?8~ _珉?L*ʕk]5^cſ){]6?o~?) Ҽ|^QOق'c]7o6?'T'׹E泋2*7?gy}WY'W8|zV'y_juy⢷Cٷ{kVO:w(ϟ?1O~E/Ǘ`)7~_sX 5\>OL? ?^hX_ *7?oNUo2X[;Wލ-bʍ{ \[7WUW?ee簭O~2[ڿm~ _zvQ_ *.O721=[eWU/]z]\Ye~_u 4LWrB.W{>_eg5g6f_ɮܹ\\~~0{=v+Q?w9~o.oo>~Or~/j'w9c|Dž?]E~_?~_?w9׿>?]ί ?]C~_~?խ?_?խ?_?խ?_?խ?_?խ?_?խ?o^usO-O!?J~OpnRO!N??)_O!ßB*Uf?)_O!* _I9J?ßBU??T򛚿)("Sw8("Sw8("Sw8("Sw8("Sw8("S{=v+?w~zc.{u/5UcS]6_ϰ_01eV?&(=Е랜Y/2gm']8>|zQB1O~G=o u|Z *1O~Gg?o>|yu>G?&o_jymQc+w\9פֿ+']Ҽ|aѻ^?&o׭>qVm[?&oc챍s7ϰW?&//r_eGW5twƿvtU{*(ʍ 2v VTQl3iaռ;m=?Nzc1-E~[O~SnWG/4/ } zCW?o7pʍUowpʍZ~XPO~GQn9^ʞXPO~GQn3o0Ǽ<<+* ? u[O75o/:MϽPᇟ6~??ᇟ~oQ#Z''w9gc;'~;?Ww.>P_i~_~?խ?_?խ?_?խ?_?խ?_?խ?_?խ?صw|.?s7_`>|NV?qΰ{LSö ?w\m~|v72Z^Ucw -wˍ<a>(O?q4_~2yE;+ca[G/o_(sh?wUkzR)7~o߿(z]-:Lo{_>mo?6g\^ׯ'':ܿ{9~O~Gs~WyPs/1o4iV3>l//pQC_6˿2׿磄O~ϯ!W:?myob\O~?^BW'pѮ|U+ɯ Y?UO~\u~,u/W{xԕ}KO~?!˅O~ż+;g _?ؕ{͛Ϻ}-{_*J-j~FO䢷at!A5{kn? }*J%9W63b~ZO3EiglAzRJ?OwN *ϪQ?s5gU_LP)WWkocp%?8~?~VsU{Ro5~>%T'֏*J-wJ''շEeoUZ~U'~檾 Roj?ud~Fxw8]\yϗ_=ۥ' ~m8ߨm' ~{gw5'??/)ݙ9w_Dߔr㯎~ qeI+/M)7~U ?x}f_7UoL'ᯫo7W?T@_ ???T[?7ßB*U_?T;ufS?J~OO!/ßB*=ƕ ßB* }~SH)U8~ WRoj?M v?M v?M v?M v?M v?M vOz q2.MQÁEO:|$)a[?Vrl{;+u ^kRk[Ĕ ='T'_sO3O'קfdQni rgNWU_|/9W}W\(u gN4lEawm77o6?+TUۚ_ɝ? ן?W*mͯz?oϪI~$_7wWUW?dj`^V'w {;/ۿm~ pXO~24Ln9l'ws_)c0/Zvg6O7'wj[U/]e_~]~-N¶ ?/Jg { 7te;?W[O ~oYr~EO~uꎟi]n;~V ?)ߩ?J~O!ßBJ>?XO!*ßB*MߔvԿ)~;vԿ)~;vԿ)~;vԿ)~;vԿ)~;vԿ)=|y.9͟6&l?%gc 8 O?adV ~;J~s/5i| _ﱵm'>>aQ  ~ۅ0|'#>{˳՟cvb L.ʫ?V!']8 L.}?1U ~;s擊^O ~;J~WcW l}~C?&//r?G*棝b2^;Kl  opʍe>|hE~[O~Sn`I8o^h^ʿ !')7ݓSw8w OA?EWhA?EXype?ɟ:}mˏ+G74~dw}瘿lPᇿU?ᇿ.W}.W~[z~7r"޿{bx_,5ˍ?Vr~r~U?WO~u?WO~u?WO~u?WO~u?WO~u?Wß"c׹3痘4{ϙ?o̟?qPΰ:'Om_/[ur<{zcKwa換?R?q]V 98{̟*z'o>U{lom=~ǔ^ᢷ:LުU:Lן3sh~gɯF}n(UBmcʍ_=W:LsB W:?m+`~BW'j>2WUO~gӕ] O~zߟ2e>>!~_._vY9iYUO~]tBW']c>%BW'.se4$į^u~K_|lGS W/:?T{=vyz-P?= ۟T*|x-'s]_[P>~U?ᯯmAߓ\ER=*f]ʹ7?<:~\PW7T{=|[8Q?WPW}2?ׂUJ~jO6~BJ%~"9d}vHT**J% &O~o%׻Ga{KO~م̾VNO~ܮNO~{߷;Y^_/^85?Nÿ&(Z^'kz8u9 l?x1w 85?N_Wu{Wr>H_Rnm/nr'5˯1 ׯYtRouϦ_R]o ~SH%_t5OO!VWßB*U??T[_.qz J~Zo ~SH1?)D~ϟ?&* ䷾J~S7%EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ?u~ׄ37o6?d+yxE?lG揚mSn߿6B2co`)7~ק̟6||V'yW\ ͢O~???Q*mN2ܕn5w?1?W7#sUnm5kk`~c2آwx r'_?֯5?O)kHUۜ_'k^n mW_7C{Wr8~v.i鮗c'O~2m~~}#l_?<׼<#l'wߟ3Wܗ9 ?yy ue/O~2?/3ͻ8__u{Be׋g8cq/]ż+w {2]u[Ocwa4{lv͏ ~3˝ ?]ί ?]o|?ᇿU?ᇿso5?-Tr~Or~s0^{덟_tz'w9 w9 w9*~['~['~['~['~['~[O5͛ϹJ~׆~ wx?T>~ )wy+{{ >_{VßB*=bo ~SH%gcW4_u!TO!*_5?)m+/ßB*U?"?J~S7%EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ?u~WcWuOql揄m't{_oM'2o{ߪm?%gcϽTy(3;B1O~GiFW[tF7^f(3B1O~Gɯ{\KU ~;_ֶUc{9|f}ֽ L.Us/iߩ󇷚ΰ=GX$w%wW?&柫3CV}o_']8Nk*1O~Ǖa.!#G;A?EJ%CopʍW-W *(ʍ gOg^$')7}k}Bp>?'(7e=L~[O~Snߝk<<<#r+#qw8{ù?aA?Exemu-XPO~GQn&W̏6?o~h_s_3uᇟn=~sI??Q?ᇟv'?Ww~[8~ɯ ?]eNw.Ww9 _~_~?խ?_?խ?_?խ?_?խ?_?խ?_?խ?o3~^`C *~;J~ϳǮ7?fĕ};evmQnl_M'\yؽfX'8+_{7̿ZFG/0=vqWc ^5m?%c׹X'8~az¿w;ʰ¶ /o{uX1Ư>Vo:LoW՚~\͢<¿/O~>U:Snܿ,O?`9|P_YU#K+̇ _6͇SW:?myob\O~k~Yʞw+CO~?$dc#O~i>xyyzo|\y,UO~0n^h^$į^u~,ϭ/  czowswgWsjW{oxmgS I 揅J~ׄ}כ7?kURɯo[O'__so *?_2rQw aWJ~tE~w٨ST*TZ7*O`J l1A\Q?WP?vC'_ RdsUJ~G;ᯯ[?VT*OUJ~S7%Yr݄7 'ᯫʬő_D?w:eI$_wczdp&)<@y譁'k'?u&O~_I ^2r~kw8]mhh~ܕquW?T{=v1󥮼;BRɯ_&'J~ϳǮ%\LiRɯ ?)ؿ W}R/?J~5~~WßB*U~?)w(ßB*U?Roj?M v?M v?M v?M v?M v?M vί{so5?dQ/:'K^lW_0bV?c=ӕ}u֙o1?%T'3+/zUok~ϰ. ˙O{X߅*Og>`U۞; ۚ_~_[=<_mSn?? uo(ÿނ'/m:Q?y?q7wW_7C{W/m~ ^?{Y}(ߊgO~2Lnia{?S_Z?;~ sg_e_~]~O.[]oާ]~~0~;/ۺKir~mNk.w[)?[_.w=v^zfB.W}.W}~_~_O~_~?խ?_?խ?_?խ?_?խ?_?խ?_?խ?^?d럤J~sp/J-O!V].?)D~ϟ?&nk'?)_~SH%b~OO! _珉?LcRoj?M v?M v?M v?M v?M v?M vsB_2W̿`Űw?z>a揘??, +zݰB1O~ 9Sr[aCB1O~ǵ~]c-5Kτ ?/ؿ\Q{?XV ~;͹]?UUcs?wwǮt[/fX/ϥUc9X ?m~_g~\1n>|TQ7Ǽ<߼yz~;r_bCn0/#')77c^`feG~[O~Sn=nN. ~w8_vCO7v< M~;r~z*(ʍ *(ʍO_K_1d~ǿϛ_t?{`ᇟŝ~ѓB.t{ն ?AFW?O~pݟ-~UoK?wU_gS6mo?m{~뙭Σ+_?}s=͙~ y׾#G-į^u~,B}KO~?uyQr!~fgw57d&l*\a'63B Rɯ ?o _23b~JOg~Tj~ fJ~??d_*n]t'_d5^!AM ~zM? ۩pdfi~6.w8]oEk۩ps]pu/vj~;Wqa ?[(lOH_Rn\;+ép^2WNO~Uy;?x}?{3rS?uyZe]c~|7]~ ~SH%k\6?)_v7?)_O!1w=v?)jay+[QßBJU??<~ w; )Wq"?J~S7%EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ𷃟'EoJ?u~vR=.MQîI=)lSn[ZSO{#G/w`)7 S{'q?=YÊ޶ [[_Sq2{2b^YUoyU_6W2Ey]m9'1mWm\ۚ_C'_+?ꚑ}-#ZĔ W\ʑ& [{=v[O ~{=v+wOdX?eﵓ;zQn{=v+u[\gl~[mǔ,c]9F??̻盧9N??ʰ?E~-"?~_vQ3]9z~U?o2ܦ>~^`dg?Vﴰ7S}~ν'wQտ_vg6_.ʹ7͏wy~X='~/gn~|Io69/&Tr~?~||Dzu ~ׅ?]ίw=~ݱ͡כ?w9U?wؿ[?sz'w9'税Nw95{Ir~5+]o- ~9u?w9'w9'w9'w9'w9'w9LJm ͍{?w5'~oύ~_~_kA1??T+T?R~SßBU<R̯?}P?Tョ/jRɯJ~OO!ßB*U??T>~ G0SßB*]Ϟk^xVßB*=5o_3oM-O!,cP?T{=ѕo4?.TO!Vk&sSBRɯ?EqR~SH%C~SH%5O!_Rɯ ?)_?~ϝo??T{bx7{IɰGi>|Dm[?&(=`͕\5srAem'"2*1O~Gɵ\2Rj[?&nr_'[]E/նUc9/V2wׯ=97>guPm[?&oG~.7'k~-3{hu7'MnT¿ܘV5h>ȼǤR~׆(_1i׼ywN?&uT{”񳺗S*ǤJ~Oiym۞f8LJU?UtcRI) Bc߼Լ+ϣUcRI% =J~ĕ{|rBW,WCVI?&cuVI?&.Xƴy?WAW= L1)WQ]>vpVI?&g1_K|_s;nǤJ~SxƯm}B.)b?w5'w9/j'w9?[}f\B.!w9N_Or~:W~R?]o}&B.~Nq~_Cr~Ow=w8r~O.2oq'w9'w9Q?ᇿ3j'w9CGVUr~j w92?`y3AE (=.^~|;(|`;cw~|ȕn7#׏˂ o{--Eo[/urAN{G,z*;:~O~o}߯c;eX_U ︎|O[E/+9~O~ͯ..'\͟Ocʍׯct˳uBA{Ә?݃_?1כ?NV= _aqWk_e/74b>|yzۚOr }߻T.TW[[~_qT_l^j^fϼĕ¯^zBok~O3]9vQóyg]͝_mo5x?Usyg=xzۚG3*>~{EBok~կߩdżg ׿cW7~Ej?Eyתb{TJ~sp}5?_d^\}-m*~Ej?=^UJ~[O mǼoVT*=>3"BQ?_^l{^A_?y?-槄d^XP׏]9S f_A_7NNof[?T[_R|zjO3ROX^ZVT*~~t䎿1wY;*VC'Voo͝P䷺goM]T ~KWogA؎I%!7Ε~=a1w6?w}>q<_%?T_{cgry-8*2~?W_ 1w[ؿ?:w65{s?c~T__1~=ØkowkWGm3ØwU ?ߏ|[}EWsX1c~__{cRY]yϯ J~Ϝ?Qɷ?)_~SH%{;BRɯUr WRZ~SH%'J~OO! W}~SH% J~?5=`{IT?)O;\/v ?O ?)mJRoQ:Ry J~տl?J~?T|~SH%Ur4FW~J?T>?)_~SH%*\9ϛ_tO?ן? E= gǯ^ ({=W?;~_GWoDZ0zc]ϼ޼ˏ?V~h~rXxc{7ϽL?^ow_)қ,9Wɼ~-}f뿷fG?oyiݜ~~s4^s 뿽~ww__ȏ.eﵓ;Νz~O!oEӛ?WUs??s]9]]67r3l._Y]gGoÿnB> >_^#ʍgW_O~u?WO~u?WO~u?WO~u?WO~u?WO~u?){+Kwc.<iۅ?]qWy?ᇿU?ᇿ w9??w9S;~ߩe.ᇿKU?ᇿU?ᇿk/?w9"ێ7%O~"ێ7%O~"ێ7%O~"ێ7%O~"ێ7%O~"ێ7%:~{kn3?t?)3]y樂kBRɯ[~SH%b?ßB*U??T[/Rɯ!J~p5Ǫç?)ߪG~SH1R?8~ w[g?T\7x?> *O~K ܈U'fF?o?-oo]^ ?o?-5/xU'=>5*O~K?It{ *O~K?Ix{lmx]Yt/1;cRy~ ͷ _15aaռI?&`*W˘12мI?&~•kjXlTw;ǤJ~Oj-P~wy+{aw]tcRI%U:~1~ׯy L1W 1Mwܳ׃wH?&Q/:?~]~ ?~u/_'ïO~_.?~]~ ?~uc=(no0?w95{hPᇿ|s?ᇿY8~[_Dq.W.W.tW9V_?w9Sn4?.T'wz w9Vl*w\5~.z<[_}?ضU/?'-zO3zoW_f^a>ߜ߅שbͼyy+׿Cm׿UP}(ᝅoJn*M)7?iJoJϪ,!AE~Q)?*ێ7L~ojO;o;ߔr "SʍUmGRn "Sʍv=X)vԿ)?ymGRn3"VT*3|iSG7TOvL*3{k ~ENrm;&Vka| #}vQw_ 14{lv3Lߏw^k_%&j]{3`z ~Q=&?&GmO.2o 2Lߏ|[e^cRo5x{0&G~1ǷöcR3%&GAQt_KLߏ^ ~T3&GmUϘMߔvԿ)~;vԿ)~;vԿ)~;vԿ)~;vԿ)~;vԿ)=[S_WßBJ^WRO!PR WRqRo5~^)ZO!sM]T_?J~?T>?)_~SH%6_{?)_~_}yIRYl z/Z<;x8~v'_evUO~bUO~g2%]:ݹ?ן? kUl z/'sW~֟? 3ן? E??ߓ 瘯 cn?{n~~#"?X~O.2o1gX?NٮpywgϬqgX=~м9?s{?c{<׼INc?E]ֿ~wq93\>{g^{H7 ?]0> չ?YrN#4kE/1O kλVϯ ᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~ɯnᇟ~S6?~ɯnᇿ=nJ?w9'$Zr~?kW9'EqC~ɯ߭O[?[l>|mr'w1Ͻŕ_e#B.W}.75SQD~Q;pQD~Q;pQD~Q;pQD~Q;pQD~Q;pQD~Q;Sd{Bf\o )P?{y< 4{lvWCP?T ۜf?)Su.TO!sOO!bW t ?)!J~u?J~OrßB*/ßB*M?.* vR++m*O~Kܮ2RrJP~[wm*O~KUb^XP~[j9S~VT𷃟"=j?/T𷃟5bA;o*O~Kϙ.?o?-潂 *:'l>|aSƴ|++̇8cRu\7пjBWݘ4tcRI% bcZ%8:L*ϛjCBWfL±0O7v:1ǤχlG{_w:1Ǥ_ƴ+yǤJ~?+{+|v}:L*돭74ws8wH?&V-NQs\Ws+L1W wüyW|WGǤJ~O~U{/8LjUwe#RI%*\F'7~u/_'ïO~_.?~]~ ?~u/_wm7o .?Xᇿ]/Kr~5nSOfsB.W}.׏Wu'w9'w9 w9'w9SOr~8~_[¯O~G_Z>|@R!~~; JA+({n>g~~; Eww?QϟEy?{U*!~~; V佨WbVW']ާg~~; ¢??__<_:pQ͇SW[i{e/W[[?ZW9SgLEW[󛚿)?^=#)vԿ)ƿ$د8x"Sʍb,*ێ7d^\PvԿ)ƿyO^j[PvԿ)ƿW_hϢeAE~Q=_k*ێ7(&vS"SʍNR"ێ7׻zy+?ۭRG2dl/׶cRo2LߏZ'~=̻r{?_)sc~4[~ߞق{6XЕHac~?~Or=T[_r?c~ԅK?&GUkS2~?ȹr^T2kUƤ_3&G߭m#~O?簪TnuͷMOLߏoJ?o;ߔo?N?o;ߔo?N?o;ߔo?N?o;ߔo?N?o;ߔo?N?o;ߔo~?fޕk]e~~SH%{I6~SH9 ~SH%.0^A ???z?)_~SH-'r~?T[]+ ䷚?J~O!wTXq7]IW߼o~-bʍ?_Z6O3_k/T'ÿR⢷N?7?VZ ʢ+[Ĕ,4_4UۚmJWOC'*^Uۚ_]Uz߃[Ĕ?_S5OϟUۚ_/evQVok~?omIzs_6Mm~~5.c=ȼ|+#y,yyw=d{BP(7?0vefwm)u?;ǼȼԼy__?~n0?7_+m͎g_;/psyN?*2~7 򸻇+{b?\;,.<_ޝnN?~T??y_}7E~~8"?]g _n9{l&Yk?]oq~$k~ W}Rɯ ?)_?~+!J~O֛o5&TO!V< BRɯ ?)S ͛皯s=*Rɯ?7o Z?Tϋ[QxLßB*=vs`?T[? wj6?)zx?)8?)_wßB*uOtH;͇׶UcQ棋^ ~;].1w L.wIS~V ~;ѥqgus e}M ?w_<ツck9w^$7'>ؿ͝?&︎UPQ;Lq_)lL !#L1>~*_1o>мy_N?&uT{bxMט rW}n*1Ǥ/4Ǽ<<<ǤJ~?gs*=|r:1Ǥߩ}Mz L1W ]l^~X?&uT cRI%T'L*s w ǤJ~OzeI% cʞw'.ݜL1K\02SkWy.w[:hQ0!Ucw~֥q(#޶ l#Uv:*;'7^1?mk{D;o>mT)7~sU'm=\^e^YY/urg1?ac*~;O~?m뙭K:Lgj[*;'ṷ6_k~$_?%SƯPU0m~^׿=ޕ}W_:ؼyyzۚX~=2!w¿^ܭUN?u平wە= zۚ_So,W[>~W|w2~X_m3\9ox"W?.Ԃ2uW~VT*=v+ O5_l]O]E_'Z~/+B2>U͝P]y}?l1BJ% '_ϯ͑P?U'_]̯e?T>dܣk*J%_O;Ro5jPi25?m**J%ovYP?;roxmg?-3ö$&Oɼ1?ʵO}>j-И/vs~j=[?l~.?hcZurZ(KZ_3&GmW3wgϟϰ1?js0kgKLߏqwW#菻^܂^/tgWs< ~Q[OgLߏ?V=_ >ȘT6~n ?&G>;k|[g :ɱ1?jkY{K2?acRug1?$TO!V  W}Rɯz?)_?)D~ϟ?&1)WRo5:~ W~SH%'J~sgF{\*TO!^)]BR79#N )gM4ͳ$$˔gg+'Y]3IRR2H4Fh@,$$ δ#::"#:^uߖ}{"~羫w}O( ˃'?S?'% /'@o-'@o}~)ſ"OE ?S? ?E &)ſ~GlmgU;Žcm!߯UZ("7 n@{Wm?HM}sUO~_U(ö|ޠU?v:o|ި6gTeC~4yݿV?UW?Wd#h稦fR& ;~O~o3O_OU߿N?_R0>I۸;Yuqwj7ܳjlWqv^)ſ7꾅>O~^:\J)ſV? Z$?S;'ɟ"P[?C?E>p'ɟ"ؿ)ſ?'y?Xп<~ȟ?,Pe7ݞ#uPg_U_mǂo7Qqs;2o~KIկ^/˴~U˿( ?ۋwM33/_n%q-_X-?ǂo/aӼk~p/ǂoߝc~I mXUsꃪ_Fn_c|X+ǂo7K0~Xǂ/cA~WOϣ2]Bu2{?@/(g+y)i tXhټ,{# 6?E|+ he/n>UuQc $"?7 tX}7gXſH/,c_Cӕi,q:,x_{ D"O~y S9?(EG᷿]]};ݏ(@n#Zd+PQ:Wܵ3U?@yb9|-\ϊ?EB~wǏ/wQm?_'_'_Z,~^W'_'__/ٿ/ٿ _'_'_'_v.Q=?VPOk l<:d맽CT?Okޭw$y('?{xd/'~"/'Z?O>H~I~_I~P?O{խރ3~/~Em2!?ۍ} {ll>uկVnǎӿY{MޯC;~O¿em~C~h?nG/S0qްoo2}̵f- vGӿ+ۭVܞa8?v-a9/<]Ge[tXƏ~j]XFoj2_ӿX__Z(M ?i[}9#GOԿ_}9s~E=ď*wvg\4EɪU翩Ryr9YcG7^|{=@o ;﩯,(TIdڼR9|-t PQTW} ?zP?-hjs)Q_Pͷur@? hx٪SUg&翩⮻V_~7տu_?Oi߾g9+˲ T^ TƩSď>U7SaS__sZ(7~rkJmӠy7?mG4_Mⷵ?ݪv'; SݣZE4P}\6 P?OYbNſ ?Q; 4O0~j@/n{r/o(׫uQ; пODui7YQ{=o'Ds#O<όg=62,Ov;9SsmOhkBN~N=τ5g=63,OvLP:ܶ~Ƃo'B{_ 򓿝`C~6a,Ov; m 򓿝h_%';Ykk޿9/ ?ۉ(3';aS) 3kĽus,Okuc??E~)ſy@"O?E~)ſO(E'@nqB ?E~)ſ ɟ"P{=#O?EwԿ)ſ_us,6JO+?T֯ۻ'7տ?'ΝUk~3kV7ro(̿(%>?SA5En1Ov+7XOvQ:Ym έ2!?|ݏh;?v:CgOc߿w F?';SUUQ)E_/~i^k{nHn{Υ'Fv?7"`H=[uj7C|7GqT?ܶ]F/J;_=N{['C~z^}XatOO׾ojkV\c ;~O_9'?K/r$?K/r$?K/r$?Kurx\c'?K/z$?_yqtO~_dޤ6gT/ٿ7꾅yժO~_I~_I~_I~P?C'_'OqO~ӿ ŭ'?d^)[T60O(b-y{3@'?S~ަZZ?OUO~TO?E yOHOhE=!?Sտh?'y?Xп<~ȟ?,Pkk?:(F?ɟ"Pk/mS}('@o]óg ?E.ݷF_շO~_?Ewhܪz ('@q/'@L`)ſ';?EZ?E?E~)ſCX+ꓪU X- էTs_ǂo7Ʈ*nT? ӿ%P9ߚo,O0z߬\I X-a U6rſ(/(V5x[CD;uH ӿ%73w ӿwgVfկ~oǂo o}̭?u~ ? s( ?ۍo} Ujs@GާXu?(I-RmϨU? Ytjjj|:,'bQ/3TQc $90((hՙTTc?@/z7OX7ϧ@' ts牪)i tX~_Xſ(*q2|3,c_OxJQ/Ue{Xſ7%rZ(G$`뇧 ,cߡh|;S\lm?@o_2/g,c/ =mm'o;uOn_?yC~\~tR= E?_?nw 2OܽpO~P?QO^?O;\T?O[gro!?_dڹΧ @'?ߪ?k8dQ'_'_o&H/ٿV?mp`Od/'E_O~~!?K/zB~_I~+u0TQG?(o7[7VwؙaTTQ9ǎӿ˵~gy8 ;~Ov/{o*R oT]OǎӿsNH~o}  ?gd vGӿ޻{_6 !?[>+Socp|/31*@M ?wrՎ Q;obj9W>ՇTP}=M}vj`>\td@o;wi{2qK翩?mE{~jl(@oOT׿<v}=Mo(=P]$FGSCX$ ~7տP/?o=p?z_?Qm9a ď&ݷHAsv>OS7}6u!?z_t8S]FGSk?kmںEZ+Aן G NſwP?5ςw/&Za@[C!xӠy7ϫh~ @_?iݶ9p('?4P^?('WƪOw/&?iou?r=F4P[_l!?sb/V޿4P;׽\$u1H~O[_?Ϗ򓿝5k[̞ cſ]6y\zg ?ۉY[7w7s<NlKE/C7OK,OvpϱN4?Xqά_XDSP?7Kk`Nsf;?0bP?s 򓿝8Ec{p,PR?cA~M}sU+=f\o0 ?S"VrqӣO(7~n?ɟ"P{va.)ſ9G~)ſWϬO(E_OP?m0/HO(Rnu@?ɟ"Pe7_JZہO~~)ſ~? ~)ſa'#y^)ſᝏ;#?ɟ"P{iAO(sf?PO;'ɟ"P[gkoǂO(:V?OP?Q?E}O(9 ?E׮-'@/cA~~Ns__ïo:Q_iߨ>+,r=?oʪ7EnG/r$EVaO?ۯlW7EnyE_Z3_m3kO1Vn (M/z$wm*xs 8~b'H'ùYQ_Yޡ^=7X~w?UlTQ_I*՗jcgG_yUj]:^u꧕>A{[:$5n?';cTUT_;߱~5Jqk0ǎYI~ _?cyi UW|맽C]clG=EZпK ?+[{4=AR??rŭ,z_~P?t/={?';UTUm;FoP?sO;+n9xݿ~ZڭA?Z'?o|f"ws[݇9ǎ}y[G/nOEwZ/ٿ _'_,RO;W'(' O_O[? /ٿĭ=fpFۀO~k=hV17XOkk@'?Ko~/ٿ>dOdm'?K>ݩZ-6O~ŭaĭA,'/v;t"_#?Ku} _'_?~UKTO0O(F?XPO~$"O?E-y`$?SCushO(Z?YO~P?O_O(O)ſO(E'@g{O(]gGO(g֩{=])ſ ]oUܳ_{TO(Z?w?Ea;@'?Sm[;w.JO_C?E^ݷ^w@??ɟ"P^?O_[; !ɟ"P^?Oߡ>PO+ŽѮߢz@93Ϫ ӿ;esgdOFp/ǂo7yjS7gXv,u0_T˪//G/ӿ=s_b/ ,Ov;eg8_\u3 ,O2~Ka9ڸ޿oǂo Ho ?ۍ}s={m{ f?WemX?_Xsb/ ,OvĭA ɳ@G2UT}Tq:,P{c!#PTτwǗjqwj1=Mo~WQ? GUSêW?z;[?Si翩~"/(9翩Z?-7v統wa~7տ~>%[yQAqǁT,tC~}=MMo^?Q{f.[;=M/;TƩSď~~fnaS[5\F4P%ۧZ%n.V?ۛTT\& NſW}> %mޯVqF Nſ=xCPkW; $"/X3w٠w( Jl_?qF4P[?A?_ys(IgNſ6hٺֿ?)Nſ_w[~A?_UUS(B4P^?~wm5ifݷDPOvXe:Qu_=S =Ozv ?ۉ4Asק۞g{SNNchq(ſ8acA~ [?ށq.l9/ ?ۉXDIo3';akzE,n{lҿĂo'lmg1XV?s\7'@o5v`E)ſ~Z ?SOO(/O(E?$?S?E!?SQޟ ?E~)ſ5CذgvGm!o/+}sXOQPQ_IϪwoQ{9:-]UU(M/j$oZ㮝?mX?gmm7տy0Ҁ'ӿ>gjyLQK/R$٣97տ];_'so}U/{~??1T~ZL2q^?';gT:]5V5Q{ w2!?:Yu8O7{Hsn?';f.VP{:h_bR??^.ݏ9v?ORVOܯߡ_$`Eu'nb]ro"?F;Fo}0/01~l0'OZ?cq=LqsСF\ݷ][ ;~O_|?g(' ss`H/ٿߞٴ5OI~_I~_?KSݠIuzՍ@ ?۫A_?amܵkwm{>,O6^9?Uwh*y/u^] ӿw[ P?=oo^?ؿظ]oRcA~΋/ ϡcA~ީVW{72 ӿyh{FnޟQ0F៩L.SMW]Tpc $n)|WTƪ&,c[\AOUi TXſteSTcT8?(?~-%(T.W]!8@o} ŭA6OZP?Y93OwmX(@Qc/ ,ct}??(E(v{z`Xſ ^GUoca tX7nqq|zaXſ0t{IdΒV@ZO~8I~;I~׀O~OCd/'E/ٿH}4H/ٿϐ%~%~%7~=f^usF?Mr{~~woWR[cY]s*YoFoSWwwSU9@_G2+n* ?\;Hߑ>X0sۀc^#^ڟa9;K~oM۞ ?\?wj:Fo$?뿼m?[s?ݷTM0?G៩XujBե@/%:[5U5V5Q5=%~/q<4@o/B?Iu8)1@o(6ֆw"e@/ſh dq8$չ@/ſhH/?zY!.n=KZ ~7տ3Ts?v=M/(ō!n==M/zDy󚇭ď~/WT'fݷDܺwS=jQ; gPm]+}~$u?\\ NͿ@Occ?T(݃gĽ? AߧZ\cn@o~A(ȟG;_?w(_'RU6 _w;ٰ9w(Eo:z#_y{T V{;t qu/uu1!9YS}?_gOvbOlQY؟acA~J'< g?ksv]T/ٿ7xO~ӿ.ٵ`'?K- 6A{ _C/Hq_O~~/nO~;OOŝ ?Klj ?u)ſt߃g$3O(E'@/z$?S辥mUTO~YZHO(E_O_O(i׶'RB~'bB~'@p ɟ"Pk| ˶;@'?S}U/K??Eп<~ȟ?,PG:!?S'ɟ"hOE{MҼ5u)Cc_?E;ɟ"_?ϟ?(E'?S[{}EU@ ?ۍg4v߾?K}jjjj5,Ov-NxJjWPDo/^ݿ3r94 ,O r]Ukܵ%x?{5.WV}?3 ӿ%?ׯ@ ?\shܪu ӿV޳C.={ߞ ӿqk~CJO?ǂo/\_Xƿ7%R=z((3Bեi T,cߧA?N&UQMP#8@Q' |^m F:,PQORTcUǩNVXſ]wߣXu?(E?A?SVMcD:,_?8_ c!R2#9?(/Uk' ti]iQc D"_' ,c_ú㪃@G6kv߆cMXͿj?Suߕv-x?(?^?zRm!?GR6ݪuwˍ?d.^?:'E'E_O^?O^?O;~PO^?O;GdZ\.nOI~_I~y+9l{@'?K=s^s$[T?_'_Ú'U?_'_I~;ujsY?O޿%~%whv/ٿy'E?$?K}Z[~"=^ ;~OʿZyva@uoO~w$]$nP?ec_zT.t{߼Fxc@o,gwa$C~o7GNGӿ&_9C/WP?K(MEEn socE}ogJoߟ+%Uk*_?KkUwW_!7):,r ?;ۘ{?'OO_w㪃@GPuU3(TUƩRď4ocEi T翩%nݢgT TOx)1*Q: =M/ ?<_?#'GS~QT]-$qXqUd"͓ݿX;^ujqx?z_5ލ)PTOc]OGS{[ڮ[nOʭr뎅mNſ3KUTP'@'m]Pu@g޸SD弻rcy) NſᯯQXi޿ ??Tοv ٺv -4P{{XܜO~iwkcVaz@zV?wIm@/z$`w(E_7Ew0E4P;Ww_ރPOv'?mſ΋ժĽƞ#fNs_=mk o{ĽÞ|3ǂo'lӼgO /JN ncdk) 3yo@N:([2 ?ۉ~ͼ~Ƃo'l+bojv  򓿝w_X<]ܺ~i?~~#ǂo'l@w=ro~{gs3,OvTqkpV;E ? wy8(ڿ2,OvMojZj_ɟ"P{?٨KZ JOP?'@/z$?S'ɟ"P^?O_C?E~)ſO(E'@} O( Z|('@};q'@,u_C~W?O(sHO(!?S'ɟ"P>H~d"?)CczxC~}v-X$?S'ɟ"Pk?L]uIK=lϪv^T-]P?ȍPo?ÿRkMjUT*OwjuFo"O?7WλO,rw[*O?Οm{MXW1~/ S>H(Mlm4oc"z0nZc?ȍHo?ÿj}O,rgKn=R,nzϻrkp"7~^?_~oWToF_2ѪTTgӿ/?xv1ضO_29骳TS}7 ?Kmӿ//C~\U窦&_2?!?.Η=Aut ~%={DqsZ(/K柬:O.}UQQ#ǎ򓿄\ݷJWD{0?_a!OdI~_O^V.PO{{TOu|('E?$?K|iO{cT?OXd=oIO[+]!PO~/ٿ('?_/nO~7'??OqO~ӿ'?_/nO~7' y\uPzǟ:OYAq?ɟ"P;ǟ[lU-P=:?E7͠O( K!?S)ɿ ɟ"P;!ɟ"P[?[~)ſO_I~g5gׂO?E75&fPAfӿ# 򓿛AO,OnmFo?; ? TȂ&fPAfӿ# 򓿛Aڿ uSWU[_R-Ã~{9,OvyojjH0PWcA~aJգUk^ ӿ%1w^  ӿݎU;H/,OzFo ?ۍ S?s_˜kc?{107wXcbcU1?\ݷ~e ?KmzX  ӿ%?weuX ӿ|~g#7)7:O5Mp; ӿDnopjdoߑEng?NT:m?k2}]QP6~EjW7>Z[9??Ŀ7Er Η ?vƿJ՞ _J C~'S"7~>0Xɪs}Y)Oj9@Gde@GoOPG?:?;X TΙO-9/ߒO?~{$ ~ӿf;CyTq=1 ?z:]5^Z@G _ӿH=gUψ[GО#9(O3ϨM@ukk|; d"O];vvVqx;_ۿEuj%ճ}-~{z'Οͻa@'"w(S OWͻnۀ; '!7eU+_i^??(gO?{ʎG Nſ{UTc7kk(36y\?ᚯ]~i75ǿR/?~'}G'=(qk)Y6m̈́ ^NO,Oz0([~[/O>([~um1[7Ky$ f'U/KAEn㧟Aۼ}xO o|'ӿ<~.&>]jX)ſ7EoQ>)ſ׊{z+Ľc%'@}vj.iU@'m 8~b?W3U^whV?ɟW+SR:ImOd1ITg&ӿ/tXSUQ_jbչi _]OTmOd~wT-s@/KyyӀ_j9ɪ@/KgkFv)ſ'@o'x ɟ"P{]~"/'@/z$?SOO(E~G~Tی* ~wdA~wo3? 3ߑMпG'7A6# 7Yی* ~wdA~wo3? 3SwgGmW}G>TO֫6ǂo7{̞#y)oQmWVm. Xƿv:_?;Togg<ʍ( ?ۍgo j@9^y[y ?G.IH%~%v9~z'?K/z$?K/+ĭ{ؿ%~%}/ٿ~Q-I~ӿB?Ou%7\C?$?K/ ?zO~7'??OqO~ӿ'?_/nO~7'??ɟ¿t߃gT TOI~vxg;~Ovw۪[n[*eC~ޢ]T/dߝMv C~i}Vj{c^gJhoGO[$Uk.k'Gӿo_k5os?94 ;ߦ7wS/tXͺo~ϕ?v-aeK~/ "e UͯW΋,%˽K:S5Yu $ ~ӿ꣪ާ.~ӿ!/_%?T'N7f`~ӿ~NS] K~sUcTT,ykTqae[rcV{  ^T﷛pſwݪwի@'k[W; }+y"Fk@'y=mi#]'_ߵW; $"?9ުaNſTr6'{= zb!>o'w(:h('0lպi7?G3h{헁; O}(S*Oz#'F{ԏTTP ;~Ov'&ƫ&W\;~OvGƉ(ՙߕ9-UacKUUP]z9?;#z߿ktǪͪo[?'*ݷOac4z`=0a?O'{Fɷ~SO0hok?'7?|L%{nu^Ks?'/,}Oqr/ٿ/ٿf b$?K/z$?K/z$?K/z$?K"Od,d_#?Ko&b$?K/z$?K:,k^o??(+=0z((?@pH?(XaXſw r~_' iTgXſ|^c]w@o}A(@爻|n:Ջ=Iճ'?Gl$O~_{//ٿt߃ZFO~[urq]߫Zz('E'п %~%~;O/?_dާ6^Q="9wO~_{f$mϑ:|r%~%uO?_Z~%)[Gp`/'y('n@'?K/z$?K/'E' POU7بKZb΍ǎӿzȞ{eaLyy~oE5gת^0CkۇcnkmWecS@o/_uj9wWwʍ(GOvsIZ?2z:|,F?'ߑfqs?4|w/ !?[EoCc4~腟og"?;r?}m*(G%?ۋrOv3|n_պ*Kog"?۩Cq;@Gꃪޫz#@osVG=o|LեsUU翩9{v+7XQ/Q]Bu2q0 ?z_}n@G?M5V5IujL ~7տ1(GsGSkKA*=Mo(w/e~7տ(yǫNP翩E~osϡﵹ&AyڼdqׄQTiz`2翩E_POw x8q ~7տsfy[nO7~_[E4Pk?cy=F߾|@moVUW {Q; ϯ_ @?iVIE4P;[ZYC@'yGz= Nſw+]zo iw?aco/ 'o=ojQ; ?ظ̿ow(#/[߱{8ެZ=0 _I; .vko'NTSŭ`Ϗ$B,PkwzTs$?0 ? {qng{;(]竪2 ? [hl?sߧUV1ǂo'.>Kh}TQQacA~M3X?cA~um Цw2,Ov.XDX;m_%';Q݄wۤzC  򓿝(nu<s 򓿝hjk3?: 򓿝hj;"Ϗ)ſ0YO_]xJ5_ZB?ɟ"Pf\O(Y=CRJO )ſA'@/zB~4nO_I~w'@/z$?SHg{\?ɟ"P[xO~֪^ۮPO߯O?EwhV?O_O(#)ſO(?eQߩ.PO_I~~Mm)ſO(E᷹'Uϊla$ꇪo8~v U;gǏQ9ώ=/jyUk,FG?K~߭7(y?UG?K^qO~0qO5oK?:p>۸k޵7<4c'??I5J5Fu>MBUk9W ;~OvRM}g콇ՙ}9H PD( !FH{os^0&cr29(&#={vwhùn{z|Wzުґɫ~'o{7zXi?+BvZv||f~Ӫ-ogyt>/ᇟs ~sP[>?_ZIysϯKt3u8y~\>!`O8GxO{~]{|?~['~['~['~['~['~[o#q/ߗ ~ֲ_w?'?Co\s?u?Or~'9s^%?fTr~'9Ws?Or~?m+2ߕ/&o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_]'?ȯr!=^ rɯ{6?o5߆\;?;OoC.`^$'iToC.!N/ut?!/߆\#-I~.\_eToC.x~ېK~'!ͿP⹯b?c?__?MzP~T~UDž ~H?__?M8WO~r>)/?<D~>q̿ ߅7U?a?__?Mn}# 2oߛ" [;{Gm}Feߤ:,||7ir [r7Wy.[t||Z|sr% g]¿JL'y]ɝ?'/۪Ǎ˛n >9 w._+?eTtD_>T>:ΟK~˷ߗ5 a N9k'ֆt2cSN9׽oniŸ;N.u_\i]&"%/ >9߸yQ]7Ns[N9wO1 bZuc!}.9_Ņ?wׅ?'w\m-Xݎ%wc@m˅?μGV?'w\כֿI5x$g ?C'O~ߗ/?~_~ ?~}/_'O~ߗ/.ղȷ;Bs!{ZvӐiTr~'93?9eWO| F!緞_ ~or~ݏu??C~ɯ?r~]yP~TG_~؈}6᯳|(?mU/Cwo\s3F qn'ga~~ۄ>v~UDž}.7x*?]w2?~Ns]ݷo__B~8ryvw~' =>k~C~%.@Ɵ 9Βb^RXk^FyQ]z˛&#~Fs%F4y{Kͯ{t?R>F^.*-g^Roɏ߅?7׿~+ ih^R;w~q.ο}wQ]CF/5\g/>=؅߽w:/.Sa<׿=?]cVwmH9l^RZv|#&yk{`./5mw%GWGF-]o/Rvw۫|E~˨Wk.mF-]oooW;f]#Q7պ~-ko~~ň"eԿ+?7uX|E~˨Wo}㟯\]-T~@|#~a!=?!xPH?wӲ+Gɿ_asi{>1g{@O( Ӳʷ;{X/!ؐ򼺰 ~*GE,Y@~/7{X'/iL~ꟷ94n<^ {QK>? ~> ~Q>Ϝ3o|pH%f?si43'FU|oA3g/Ҧ*?64o- mw%o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%o;e]F~2~ېK~k-+_ (o3?!O~ېK~cXo>gToC.J]|Qᇿ wr~9_!x/߆\o3߆\- ?m%3~'?nToC.쟎 }~6_g ׅ? CΪÿwz_ߔw/ɯ{^ ƼXb~߽&Gi?~';~_ǣ}K ;~_bݝtzw'3֟߄?kcGϻ7~_Oμqyן__8J۫+;o[Ͽw? }Qo<==gG? ~?X>\>Z>@>D>27{.3m?? 2y|T^! sk00ΰ{~'Us?9s!9޽F<#?.ӽ߯w|Bϯ>F~wO-һ?w?~ំE>S o_???wþi)qaN/}_?ׅs'~['~['~['~['~['6!v?Kwg8C.gƟ?9~_ ?Cί{!!,V3F!7?@CwZ);98Or~'?C:Or~~~߶7-] 2l&"eԿ+_?MD䷌w%' ~Qw62ߕ/&o"[FexO=k!;SoC.eHb,_)?.`ToC.~+^O?m%w$_!?&oToC.?oC.>Nx%x/߆\;?{EoC.D*w}hToC.u??m% !?6=?t~ېK~_(=\)WO~/OV?0⟯/&=-o8{F~ވ ~WO~ߛ" [G[|7)s}hv៯/&=:w~h4>v៯/&WO~[7·FD~\>؅ ~ ޔK~9gn; >w?UL[3iß;N.]$-/_/?cTbZ#W'sr7&y!=Q]OwʧțN9!= b:J^*(./ >9`Vɏ߅?kO =ΟK~%0AR82GoΟK~ŵwsrɯ <S#qƺ?~ ?~}/_'O~ߗ/?~_~ ?~}/-D_|=?Wr~Mˮ*^~?Or~e?ow~?/~kٕ#BzF![?Cr~[F!9;?!ׅ?G'gݷomG=ݷoj؅}6qx?mgFi/Cwoqvwo?__~o}h?mh}h4ΰ ?m?}]Oo?&m<0J'ݷ/? -|.gʧg_1wv|||ͨ.ku*$y{K'jo )Uuw]$#5 y||Ԉ߽7~sot_\s {Ko=y|C_\h;{K?kٯ߃_Ͼg˛Ci^R[/wqt_\h;{Ko?]>wKHsp}y{KC¿Z>9i_j~q_ݵ)!]_j~e i~q~hϼ<^R6Wawo˯U?c?_2ߕƿ[~WH~ZF-]oRv?~b?_2ߕaݽ0?v%[FR/m_3~ ~Q|vR|tN.a~ ~Q|ooc P@~/94ggxRǡrit~|\])?*ߕoJO~g7-] 2l&"eԿ+_?MD䷌w%' ~Qw62ߕ/~C~%.'_-?|?m%ew!_'?mToC.u߆\?ᇿ 7~i?ᇿ ZnF6r3F6?4?!~K.ϗo^ !˝?!OoC.u?5U;i]U qw? ;Zׇn%é; Rv{/Muc=Ј߽&Fww?׷~__CF̿wXw/r(ͻti^ B̿/o]t|~? KA!=Mm?? \ZyJ>Q^xYR~\?_2+/OyNs?MɧgWrϯKt3wg޸u!;O Sg{[9a<Wc~m?r=.r'/ wIg=jC[34{|JHp&_~ᇟ~ɯoᇟ~ɯoᇟ~ɯoᇟ~ɯoᇟ~ɯoᇟ~w첐|#?Wr~eϗo5?9g,,o7?9?u?/?~'xOr~4~~_w?ߕoJO~g7-] 2l&"eԿ+_?MD䷌w%' ~Qw62ߕ/R _!?&|?m%ٯBzv9F6ߟkmF6߹y/F6_4<oC.$w햯 2?!oToC.u߆\+-K~E*wz}hToC.~X~[1w~ېK~c|y~`?ᇿ ䷞_һq6߶JW}JV1WO~,?S|7)oRfwWO~¿7E~6eߤzo<].eߤ*# 2o/{Swa3[ϼo} ?__?M>9Ja?__?M+/o_^Hπ{"* >w?UL[3iß;N.F[aHϐt#?Wr~gc/ 9췌?Co쟓w?NsQ_'9s ?Cί?C;??u??CίCr~'k~q?b{w/o?ߦ~M6J}و}6n43pw~'MrұF {b~~gGg P;eh7GbO~9O~Asw[߃O~׎".Ҳ{gCsw?G>WL׌_r~+;QmFw?Q & O5wn?]?V[_j~56$$?gT5:yR>Ih^R;98O7~1wv/7Ņ?7׿?tͧtySF/5{_7 |>׿ߖ!e`HK~[ _z=ߖGxK~[̿MD~˨W}gEa| ۅ"eԿ+/; |E~˨WG8}(.-]oqOu[.-]o̿2ASFVgI{Irrϵv=N?3'u;Zvcfy{OU]&K~'k~q9asisޛ3uNu94*ub?si4,v94{ru94?+wQ@~?si;6c/asi"833pN.Y^~ ~Ql>>8'NvigN?%+im+2ߕ/&o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_VW@Q~.~ېK~5&'Hɬ߆\y|ͨ߆\roLg?m)?߆\~?m\0_~(_oC. ?m\N6_ C-Gw?#EF'7W>89_>߽̈&W~.'7᯿os|PcO~g? _FS1 {/M 3oHჍO~o:`硏5w? ǣ4G?{^ x =C^ EU^e~_O^Wu!=i7*9%a|?{~{wWE|v?? i] ?xZXM~Y>34+CZ_Ug=sg<S~3/ɛu;?o[pOᇿ "-O~3SoC.!ӭr!={[N&f?ᇿ ꘧_^2߆\>rɯ?m% ݟB:zVQ6_ ?m%~ېK~?v~ېK~'!ͿP{I~M~e# 2oR\.yb |7wQyv៯/&.؅ ~Tϻ1+Fe$_/o_?M|7ih/m.lwm/WO~:0⟯/&1¿7ղKBGM.UY&y|fɝ?'~_ˮ3/߅NOku?'w\-4wXYnTmϖ7˧Wbsro\vs9>%cabyYɝ?'%;q~qᏳϯ|sr%Kn by?'w\yN9?]s N9 {FH3p}-ß;N.u?\//ivɝ?'O8Y__ϼq{|dH N9ׅ׿3?t.q_:kJD#~_ۈ{>sZ./5 1!]^l^R6Wa6tPHD~˨W%=ߖk^Gt_ے_Xs1|K~[̿MD~˨W1s}hK~[ 8/݋a /mI/0}x៧oJ}_m耐#y|0%- c/mI/,ry~=ܿ WOR3,{>)JK~ ~Q|~goT|sS]'?Uȯ94׽N)LJ o\vhhcm ~*G,Y@~eW_^asiϙnͿ!!?Өץ?(οyS%Ϳu|3'Fο{:w94xoF>T@~Cˮ Oxg3CDsrg??hS3B.8o- mw%o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%o;ѲK7rZvMHO~Ө߆\݉cfyQᇿ ׽r?ᇿ ׽rJ硿!hN_eToC./ i~EaToC.?kyF6iCO[F6b ?m%.=ݯv#( a^ :{G{{/MﮏX#~_/ V}{/M x3 {/M'/6w?__ߡߝ?ww- y؅߽~__kzIx }{/\? >e7,? 1Dtwv.U?4!3g!=?{?sO|5!] dG_4~s[sMz~YEqލs7??W~?_3=?j=gu??\m{G_4C;CN 8;?!3o};]_H O~}?׷O~}?׷O~}?׷O~}?׷O~}?׷O~}?m7M߅ v|o{=,-;â?Co_ ~Kø ?& ?C婐7i/R~c|H~+_?Cx~>4?9{:4[Ow?Or~!r~JD䷌w%' ~Qw62ߕ/&o"[Fe?MD~˨W ~;oJv~ } Q7,m ~ېK~_oʇ/Jcw4?!N~ېK~OސSF6߹sި߆\ũrɯ{6_߆\[<rZK>´ro}οS?m%g|'*ro 7;.eߤ7F)WO~m}8.eߤB:P̈ ~oT|oWO~c淫usXD~n?__?M<\g%__/2oRQ:Z |7)Q\z׈ {]Z~*g\g?'w\{=*+3`߅8qOٺΟK~ 1m>õ)>؅?'w\;?ow2"#c?'w\?]ɟK~c|D~'x/.q]# Yß;N.H ;0?5.ׅ?'w\{eH}OE~!w߅?7ΟK~z߻n>WsreZ|cH߁12.uBHK!] vɝ?'^;@_g?]s N9׽OοʇKvΟK~]ϫUw:~}/_'O~ߗ/?~_~ ?~}/_ZyEу!݇d?o?ƿiv {$ﯚ?{@5?9׆1 ?Co=o:[O ?CίCr~oв?wÌ?Co!9F!w=T~_?ֺޖߗ_߬~vw~'M(wW ?m(8. Ga?].w!ï3(緌ݷo8~ :_;}6Yd^R>3o iF/5Ӆfc#|XH {K?]}o^uw׿St?Q^+"R7׿/߅?μG5`~߶ ϷBe^-]o1qf_SC |E~˨WnV]L?_2ߕ?y0̅"eԿ+j$?ZZ7O>K?_2ߕƿjK~oaOfލ6_ےo2ߕ>,W䷌wSͻ'+/mI/݈|N!V-{Qwh}+5 xyۂitPM9Z-{FD]~%m=N?V3Mum?siT(7]Fg_O#~n??Jw^?h{|;`iT[{?sit`H,y3'F?/94l|~_N.U\Oo[?&, mw%o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%o;k#;M9 j-{JHM~I>߆\Ȩ߆\;?o?ᇿ 2-{8&(oGF6_ ?m%ᇿ C:|Qᇿ 2 ?m%?ᇿ !/߆\||}H̝;7~oR`y{/Mcn-HVן߄?~*񻄖'ן߄?~w):w ;\O~o;Ȑty؅߽&\U=\a^ BZ3'.'3֟Q!7s̿ww矜z*#~_(oO 龍F>--(=z?o? !!T?k[ސ[>?C:vWvGOOU=ni}cWo1uP#?_]}>==q~}_>oοwasO[{9:X<_}ce?9z=G$o u~߶ſ?<^^\g$?E_sW{Dbr'|Oj}uw~ɯoᇟ~ɯoᇟ~ɯoᇟ~ɯoᇟ~ɯoᇟ~ɯoᇿ^e7;s!J-ύ/" kTr~/Ӳ{EHMxOY)cTr~?GF!7/~?~~=][dTr~/n~_~ű6W&"eԿ+_?MD䷌w%' ~Qw62ߕ/&o"[Fe?MD~˨W {)(r?o[߆D^eToC.WvGVT^mToC.A&(GCyQᇿ ^~ېK~' ?m%#L'!޵eQᇿ >xoC.uP ?m% ?m% !ͿPzC-#,^?__?MzZ{xmD~oOo_?Mzk}׈ ~Tg/{Cwa(y|7)@doW?WO~ެnI.eߤ/ "ˈ ~_\{=,-(oGF)fDy)ΟK~鹑>Fw?Z\K1ß;N.l3߅uH*k䓃N9*-{\~_E~Aר.>N>P>ΟK~/ײGwfӅr=I^/|sr%WO]Ue}gŸ;N._ <\Or!ΟK~ aa<]sr%ދwC:V6μ]sr%u/ײ k.988?tgx9ǪΟK~#u"|sr%.ׄ}?~ ?~}/_'O~ߗ/?~_~ ?~}/O_ۮ?9WkSGmF!wk ?C?_n ~~?u??C|Q;\[Ϗg!׽~ 9.h]ȟȻG]ݷw~=i]ɟUم}ww~QGa;?5w?Uۋߺm?ۿ;^"(G;m?_voߝ}qϯo?x { do?eۏ{~۽,^o?}Szk{ш}ww~;&ۿ;_}ww~rBߓow¿V>E,$O5w{"(gT%2(yʈ߽7Gw kT !e׿nw_>$}"@p#~ø:/.ial^R;?o ~ 1ry||ڈ߽Cȯ nuwP?]^R~΅k'4o2wu.CyW(u_\q]>zvwu |Ari>Ԉ߽mǾgx+goaqv?9gd߮l?Kla㵯x!Tm6vO~g ?y9y-~ۆ/c~t' Zt7> yQ~' :Ϳ]yqUu9, q{{&j;3gOfI{o?g?o[?# H|AZ-{F4g2^asittusY9w_/94ZRueH0K~eOʷ94&^?[ ȯO=Ϳ_Ox9}W_Oߏr~m?? = c8 ץx널˫~ct_>o_~ᇟ~ɯoᇟ~ɯoᇟ~ɯoᇟ~ɯoᇟ~ɯoᇟ~Oy|V?3` Xs!>(Ѩ?Or~r~/B}~_ ?Cdm?Or~ct>?Cί{!wC ?Co] ~Qw62ߕ/&o"[Fe?MD~˨W ~;oJO~g7-] 2o|9=!{~"rZ|آ< rF6߻51ܨ߆\?ᇿ 7CQ_ !!/߆\;?kN~ېK~tnQᇿ !!=6ro] ~Qw62ߕ/&o"[Fe?MD~˨W ~;oJO~g7-] 2Oy|S3tNlß;N.@nŚ˻¿"r|Z^|sr%ua?]7TyNX}.9yat?\LKeß;N.;<$eTi߾ΟK~bZƟK~ )b,^exSH N9AlH}!̥.4+ &/>9߹ w}ɝ?'>?]yBy>8^>1ΟK~e/ʗˏ߅?^=,kq_Ÿ;N.u_\kq߻|h`N.u?OP^FS?C'O~ߗ/?~_~ ?~}/_'O~ߗ/.Wjc{!=?Ca _Bs!7[Czs? ?Co?;'9 9s?N/~_?^Ny ?Cί{!wnt_S~_~??_??_??_??_??_??jzF4?W3s>,+F/5kn:yQ]W'˛)F/5ӅSpiV#~ߺ;O!퇏 i?^R?]'o_8nqNl^R;ysm.sz]_z~]./GK_z~] g׿Ox9+xMHΩo_?7Ǩs ~sq=M!K$r'̿}?9;???ooſ_wge?#νV9SJϯ O~}?׷O~}?׷O~}?׷O~}?׷O~}?׷O~}?mZvkH_*?,ǟ?9?Ӳ/ȗˏ~ X|b?NB~ߟh- -]|Q9{_?CίCr~tt~߹ޡ7i?)sy4xOr~JD䷌w%' ~Qw62ߕ/&o"[Fe?MD~˨W ~;oJv~#ݽ,׿oɋ~ېK~㻷_]^bToC.1g7G}!=yQᇿ &-!eToC{.oC.u߆\{yᇿ 9?n6_ ?m)s9~ېS~x?m%mw%o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%o;?Ѳ[BS3%y|nɝ?'Bn _!?&gT97˫M?'w\Ӑ%C!Cߥ.[tF>mbŸ;N.),_)?.`TtZ>\>F^|sr%uaspH߁R=Ϳ5ΟK~cC~ɴ_srCz!?| w߅?Û2.9ߟim!}e#Fw?"w||TH N9wnt~_>'}q=ΟK~^G yO7Vn>97[ܞ<Ÿ;N.Y/߅_srɯ y5!3Da_'O~ߗ/?~_~ ?~}/_'O~ߗ]r~ew˯ʿ?2?9~_i]+UQm{P?u_'9~_~_ ?Co_ ^'~['~['~['~['~['6{ ?+_$'ǟ V+o^R^S-y|{KZv-\_eT3/W9C{K?ߟ<}Qqj#~?sxUtw;<%lTu֐f!S׿bM.sߘs_j~ݿ…0yi^a^R{~7=RW~è.q75Ո߽Wq,O7׿Hn/w߅?涞75`~Y_s.G+2#~߶7-] 2l&"eԿ+_?MD䷌w%' ~Qw62ߕ/&o"[Fe\'m ~ҐxBHώw)8sro|?'FE=dYγ Bm4:1wZ6]+-Fg5;l⻌V@~_ m4*uϜ L%mm4/}s ~o?F{W_94kI /LgN?sV;lS%u|3'Fοmw%o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%o;k3! ^SoC.~ېK~/вmE.rɯOr68 ?rQᇿ w{'!?6_?m%CoC._'!=6rɯCoC.u?O0sTLSIFt[Z {odž{||H3 {o_ iS{n^w~-<|jH'tt#~ncV ia<ߝv˿8g#BWߝv%o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%' ~'ߝ9Y>.gGb' ~'%7{6Wrz~¿77U~ΐׇ.B~~Z _/?U$9/^̿7z>7_ l?- ?~b=F^&&l?- 埼faRm~;Rk~_Xxom~;oJO~g7-] 2l&"eԿ+_?MD䷌w%' ~Qw62ߕ/&o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%wB'_(_/_#)?~}/_'O~ߗ/?~_~ ?~}/_'J>Q>V^.`O~2&y|^,o5'?fTt$j}.!j}dO~2ݓ!ۅ?dzJHo\9F!7VsX.!0'l?EtwmH[/C柜 ~~_'ì?_??_??_??_??_??_??_??_??_??_??_??;+2ߕ/&o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%' ~Qw62ߕ/&o"[Fe?MD~˨W ~;oJO~g7-] 2l&"eԿ+_?MD䷌w%' ~Qw62ߕ/&o"[Fe7/Ug|+od}2~Ӆ6QNwOϒB~'o$okx~;e}_>;[oL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o:_ן|_ן|_ן|_ן|_ן|_ן7VkrcuF/lc77ȟG={qv7ȟO4N5n;uq_r\cTst<|`F/?3blȟ9'0N3׸MF/8X7ȟGǻ|9w:||||||||||||||||||||||sTпe_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.Oe71ơ&A>ɤ/}Xo,1Vk.ɤ}\C?IRcgc`vߘL056¹7&9]KOˤooL?ǿOˤo|]&t{Xlw*v4~N]&͟Ͻ?8߸ȸиĸt? /O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/O/Omwq88>#?w7r cj\7?w7aƱcqtFoZ=EƮ^ƒs_ߴGk<'eO?Xgn03}shơc\s_ߴ Owt;gɤ/}Xo,1Vk.ɤ}a8DOˤj`Oc-ޟmIw:v4Awzv4{`Xxx_ߘL?ǿOˤs;oL1跣}ӿӿ2i;oL?ǿ{vqqqqq<_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ןM'eO_5sqֆs_ߴuu?ݟMp0[kٻ,#?wwr7G'fONas[Cx?ݟM뿫X럻?i^ߴˍՃK㺹ӿiG5F5!\s_ߴ; }7\s_SoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.;2_d4?a4Ka4O0 /In0;s4l-Odܿ k_?=nGF{o9ctq*/L?ǿ3wz <O[=83[ǽt0}`OO[Ǽ|GO kFs3[Gώ|<_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm ۭEƅ%ƥ?_?_?_?_?_fݍv1dO?uRc&#i_nh5+rfÍ :eO?{ EӿO.3V fKO??_c[ fO4n?4s|cAӿO5_?g/sǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟwǟw?M [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]&MQz0A>ɤ/}Xc,27e>8kCǟǹ7&濳ƾnooL=F>{eGǿ+ߝG9 ]&͟e^ooLcC; oLb>2c5[?.V>wGFÇѿӿ2i>X8ݟ;=oW'|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|ߴcbn럻?ոΨo0֌{:?w7=X7#2}sl,;#?w7ac p.oZeƁΣ8?w7ooG7eO?]`;7GGGgOwǼ fWgO_;]̞?ݟM뿓+#?wT*OcBoL2?U/ßm [ eӿ?1XT ]?&o*O kFFG%}̤/RcŸ5ҿ!w?ޓ5'ҿz /.Np}ӿ?=]g?=_?}nGGώ;~0;wxo]_3w,=߭hkF=5>m̤o|<ܷ?.0f~5/ߘL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o:_ן|_ן|_ן|_ן|_ן|_ןw3ݍ3frcX?4z@cwWO?6GfO??_yTϼ˟_?88j#2fyq/3VeO?WӿΟ_?ON??????????????????????*OcBoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL:c Od}8XleW3x|ߘLv361v6ҿӿ2imf!7e}8ht=:OdG};:q|kq([?.濽]ooL4ޏv4=wW~-ߟmI?neGǻ{X8_Fvqqqqq<_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ן|_ןM88b\oøXb4Cf8tZCf῭?oqv?7 wxt0?Ϭ9y?wGNj f?cIyп?1:wicߴnj{Yglo'??OM [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.Onw΍G8at/>\wѽ$Γ?.wh0;j4;vdԿv[}4n4j {WeԿv[ѽuGkSr'm_2>^͂0?snG~Veؿv[7/캍cI>u{?T>s4r`~?O ɼӟm4w]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OϽ?8߸ȸиĸt?O/O/O/O/O/O/1;{; b~ wJocs_m33Vk ӿS?_c }GǏӿOc/1;f{n;=wJPnǏӿ5ǐ wJ~??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯??ӿ㟯M [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]?&o*O DŽ-cS2vпe_?.OcBoL2?U/ßm [ eӿ?1XT ]&CÍ}q]&}nƲ-c =p6Xrc;KFCC]eezh2ֿ,7ǏK3z*?*[>økFCC]}vmϮ LǏ-c򹵿j0]&+ۏNsoʑ:gԞ+燕gS~X{~WynV{4?ܦBrf‹o/]ؾ|lS{>[y=CunO!ܓz6?@_cm^_9U\-o8>"k>,:6] ???p{;מ>=zٞ+Bxp$+=/ !C+=4!XD BW???_f̎CjϷ+ڣ }ʳ4#_{_^5=+[[]޷3)-1]V[!m*ՂbVqs.!'jbG71sc#p-u#o8 u#JW }iގjOh¶w}ӕUB>\-]̡k`ۿX+ɶq,g`sC߼+}B>ЕsBh8>L+]c/cfǡ燕gSi4H=?\/r}[z_=GrBmxyܻMu?J;fv]{S{VytnOSoUE9h}=tʣ3o!#< :GE7osgMBS/ ֞y>v:g|lS{K3Mv-4YzT_Ͽi}=B!90?'-o!iz9Bȶq fo9V EyZGM#F71s66ݧ}w@Agܤom{ʳt7BOm:cY=IVˡByt&OBW???_b̎%G_{tڣsfVԞ/VjO=_cзW }coޟڧ:sڣ՞okuP;6}Еۭj!_-tyPm8[?G?4}1cqJYY{|T{>]y=_|m }^*>w+Z]ǹBlKo\+ BGϑ{ϝB_g???|ގ:iϷ*Ϛʣs~jO}vغڣs՞C+Γisl&i4As#GFhqaP{Qy~+輠kseEZD? )ߦ9?zH,/!B!$t}{%M;$mRxi53^[Zc>\7cZ熶c7o}>,c>ݡ3Bla8tS].bg^{BmGWT}|W7 m ?aC`;筕BW:Z ?ĶqY>Cw?Kk·٩|Wsʣ?Ty*^Õgڣ ,\93˄/# tάpsx^!\.|?? JswzF('BhnG'_g'|}.Uhm/Y=u:+}w@A!~ڧZgpyYT{u=MZ-)3?kU s>_]rnZ̈́g w׹:[՞V=jgʣtΰH٭<]kυG5kxt. K=簷Z!53+oX-'cCﳻPVQVn!_g=e}_ Mu?_ύ<sx.<;=ƿqyWsJo#X禾$ O\β%97t*"< B!䘮|ϟ^iMgV3sIX1~9Z!N?us#f????T3s=};ޱ=]=>zYK{t.֕ǭC ?O?(Q_z:???:µk+eGL`5~Ƶ-zaA &,  psagAEh :_§s{e9ge/ up`A_ҹ= [ MtB!90?'-o!iz9:϶m >Bh9o F=6{ }_ikYm|W }smط\Qy=]3z׳[z+蹸_ zouϫPSmYBW???|pp+A^й@Z_g5\ zbKda+A(NppcAPsD[ :h( zIłй=zDŽ:_Hӄ꣞Ou>Pst  :I}n-B!90?'-o!izӫ9[uc8^#B\a8 #7F u~b8tS].be53ǪڧkjόpЕs!_=HxЕCg1Զq]?aX{{^*'7P&+]cu~ A^8G< =פ Ns/:Hܞ뇞*nyAMufㅝ?T_ҹ=>,s{t^# G Z_s :gwfzAgD/蹻]t.'BrLWWa~OZRߴC&T3s3Cs#B\g8Y`B賷ިuV^+Zﶍc>׿R???@ ?co'O3W֞|=hzo]VˡӅ_B!_RMu?Uv^.y yς>w'j6­k#*ύS<[ zN隡gS婄S Z%^ã"|Jxy%|Vxk=IK l/ܤmeY)9mc}?C!䘮|ϟ^iMz]Z< oѶq3kf&A*c>׿R???@ coNJڧ߷{}ӕ[Ϛ{N]=_:C)+l!ơ.|Cw?ˎz~@g<=q.b?=Wп6Uy3Ž<:/覕G vtk~뼠͕G믞&zBtpoAg;~U,4o|Ag&,]Ϧ<+[ C!䘮|ϟ^iM=msBMơhg]=eud<bkY6 }w@֞>2jϏ+ϢӕݭCÄ_( =k]j9B?`8$=_z_WZ5_A2T?4}1A|Fxpsc΃O g :HSgEחW=:Cδ담>/liv9v9.\Y::CIw*Ay}~y^#z<zVU y Z皡GYRgB!90?'-o!izŃ9bcpf u_kB.׹I1KơJ~_ ۳閶㦂>S~AV!>Qun5BWmǍkk+BWZ7 mn#\Cw3;>''&GhMyA:Fl<zt1?\ͽ *Mй=:/Hcs_zGסg[ > G:G@hBH*IKvHڤ)y;t>s߯a=ZgB߯',:ͤ/(%h MuͅΥ׍Zy3,< = +CʣQyoٳ賱1EZ ' Nt Tᙂ[izt=^zSZTyztYڻ4NVﴬB!90?'-o!izD\"._uۣ3>/sNu=-Hh |uyBhOK7z/azIZGgGCM !LgRMI)I?^O@o gZ}#N(,=gZgh8u.BǶqwXqڧ3m.\YyԞoguPcI*trSg kϻ*koBa8!AxЕh????1cfֹt>] >"]hiׇ+>/L|c٥<*jd^yY@7t>qjtCi 4CSг~z{tGB!$t}{%M;$mR|ҎW zB7ױ5?~$ֿ׊-覿oz]Ϸ %c`Å:zÙ9>/ֹq|F{[#j!VCշEF9N]}.|  3iП+Ϻӕ׊U:޺?zmbׯri#I?4}9?z|p9ZBSMsu~03ܿ?]y3輚o =U:t9K8Uy>' OtΏWϲ:5?=:io_:GMWyBB!90?'-o!izD9|Tx^szBh}RYQMNXB?J8O}^ZÄFPu~#::gIσi}B!ә߿b!iz!}R@J>&='ZGзÙ9$mз>klZgqз::Gh>׿υT/???pm53ڧ:[s]P{u\Ο+~W[-GU{B?o;nX{>Wy~W5(_;z3&t???y;zOx3a,|Bw}}ֿDhӡgYгoj9\><+%CϢTA=eg :}>\_ ZCг\ /[k+߆]?=_B!90?'-o!izD9vu]y%'u^יz.eW^יd!}W 묛7 uM7 B_}!$9FB!B&CH?<͎11vOYQui8Y]}ekgrYj8H5rB|նqwvg8Uӭl1Օӕ^!_w{pkAV˱g mءtSWϰZO0=N+]ccf˄ z|zpαy#ӹ< IC֕[C;*|Z*>lʣ״QytޓV6 zSdzAg,sY:詂g*eCύ*ϕC>C+T_>~гs9B:'B1]}_?iI~I %c`^rM7?teBh}=_Y]M}u>#,K@}]ϭ}Z+}vΩk~B_9zbWuF<8B!e'XHڤi1CC5'zoK3s|Jk+CgT7s?#M \H???@ ?fػ7l{Zٱt{gV-tFm\x?j9:P=tƵާ֕h????1zn#Zzл=wa"#|Q{>6 * =7o.E >&y;,Ĭ>so>R}???UkOh^i;מoV]jOW 7mz͌?sg_#ǶqAx+VB-ldz#+]c}^ãs~ޥ zE-T_i}w"nTy5ۣs~>7lUy>;ܰަiPӿϑS]:X"h5yD?lSy~;蜟+ۣгu +Ov<BH*IKvHڤ)k3>+fMLi}عBL=uuϬs~ 1 }]:tsG}]ܞ::ZSi}Bt&XHڤi}޳Zgm8NÙ9!9۶qFZ7W:z}g>=B^ۿυT/???pE53ڧ֞*ςӕͬ,!_9[O9j9$Զq\'YЕVX|ڧCwl=OAqtU-"W :Gu>;O°sZԧi>_^/n/uV:CI_s){ zk z :A#]'|[K:Is.!SD!䘮|ϟ^iMmOoz]\*'|_p7A?@h#! B4k>B&9YP zBt&XHڤi=/Cޟ_=Bh3mkeuڤW\ u^k8s! ??1ڧugY_iz#"j9)Ҷ=zկmL:=W/ ?4};1C~Ags.KAE:_CvCաG蜙|gٹ|wٵ|eٺ</s+, J{OJZG yÙ9bXko8~-y[}iBho>R}???ß9tnOhٶw=?<֞`u1g8s+Y-P m:o~&t TSCwܘ}G[Q?QgFib-јK콷(b ر` vo쳟^{?fř{֙{J3@oXֆUq/uY2CjLp)\/eYY7?MAĽԗ\b#ohfgLs8V^fC#ޗJRTz^yhkut]㚜Y;>:>;?v?,hӶWKu?6ſOT*5+WYGj{iY]mu`s+3ƊqpLOq k5`;U _______Dx#o4-UzOE03-sG?]'\/]];PϽƪz7UU~kG______L~|O8օ!ſ,?Jk9 kC^ksi0&pO?2?- s7x6 Ƀe*x }JR:cU**Ti+Ii]{.'!vy F`ϿKp1ĹʱcUkf? 8+ڇtwؑ~\sXoe\w!pƑJRZR?J[~~TWϟHJ:\ak9'ܷb]qmOGU>k\Fw=_BW~W~W~W~W~2^MsupEPU]_arx=`s:ww:pTf:ߐ7֪+++++++u3{` }{wqM> 6kT8/s8'y5p?=෰ ؇ǹg[= >G;x_qqbo!6'_RTXU=JgkPw~*>/k<;ph΅WE_____Eh4 ;yi"AUv}`Ϳ; 8ߦT{u{e{TUC]/wxCs˹gYUUwW~W~W~W~W~W~W2/93O9f`#p, a/8+f<Z'`$<gtqp&<7pVqV }|+,x o|$ĵOSe>qJRTz^yhkut{.;?vRx&_ N;?v?FkSF \;dn~3zH࿥L-? FJRZR?J[~~TWϟHJK߁=MڇkBgzOMguZoy]͂uy߸_BW~W~W~W~W~2Ms:[EPU]_oXsTU'`ϵ:Ep][PU~u6ylC[>ʯʯʯʯʯʯʯes ϳ  dX1~4 Ϲ1\?}a`, 4\/U9΃!l+`aM) d0 > |nx&L ބGcPT*3VUϫ>RNRp{Z /?gs4Kc=WL]/Gڇ{\/8 zggw~aaN#ST*JU*mQ^?")->k<:;AYN^>e>\?uMu?Ľwy9өU}/~Q~W~W~W~W~W~)㵼ѴdX?REJ,VU5vo0lC]} \{TU~1eͿ~^l}֪+++++++\'8=ᗰ7p=srBly LO=>Y8f0pv8{sU=~YJp7&)z`)OÇ0xT*JUs~G_S_$p%pNk 6ǭ9WPܞ v~8י̿Ysm`=56eϗ>P^Z?T*J՚,UJ}RRDR ]-u8hww<ԝd=>wkʯʯʯʯʯʯʯes 1z s0,OsyAf&hxF0D`9BEpOY<pϚ0+ ؟b;aõp+\;?6HRTXU=JpOU՝`==`_89ӻL.u_ùRT֬_eV'Ҽw`W`ýUo}pxCuq=׷̀sTO9] u{!+++++H獦U9}]f"EPU=\_|] η\Oqos>zʿzXm5gPU~kG______L~<( VΙ83?η:-,ep2pͩp O,^08 }z? \Jg ,M|tFpp!c~8Ɖ9sKa:T*JUiV߿VJ[HJCx|qk4|㜁\GuX_3ڇkX`$XA0  T*5+WYGj{p+ wp 8k?*JRuƪyU9UթV/ҭwxxRT*UkV篲Ti+ϏJJIkN>ka;?יk?^kŞu^k^iu{!+++++H\c"~Nv{r,ZUzOʚ΁I}WkOapSUc5?g7UV}_______"k4n|kYcg<8> ؜3u%pI=x>_ܛ y;lpW}yZ|I?8}payMfPT*3VUϫ>RNRFRxbǎs30^kU{~qa;?v3ڿpO.`Tx>?Xo }LD8IRTYR_??*U+O$rPϲPwFY`3]c5۽>cu{ k~R{!+++++H卦9}]qyxTG۸kA)1FsxP]\/{Ys4֪+++++++s3{ ;^a390Blbq5v;y~_gV|ngYXq,\s\Bl>E5<u LJR:cU**Ti+Is~^U;>P<Q;?vplGl1D!Wpn8SkǞRT֬_eV'p_'k5Pw~[>\ϵCO u?ڽwX pxU}/~Q~W~W~W~W~W~)ѴFX?sk PU]5ޅBKSU;]///k޼EB_AUq wǵd/NUV}_______1k4q ד!΁y= cJ9v˂#p?]lFv!κ;w0[ n8.G8g28xca8X#g7{ *JjJU*mQ^?")q}K`9skkm5Pw~κ:ku ο{ oKẩݡU}/~Q~W~W~W~W~W~)"~Nt{K,VU8ƚ|f닸TUop}َ#RT֬_eV'ңYi&Xp+Uw~}px)Tw5twο{ $YwR}(+++++qhZE@AUs}=]qmpTZ/qxJʿ k5&V}_______y; 8'6-/gA/*$wxToBU9sY'6֪+++++++g,e/d̃YRNRnM5Ο׷p&p, sr8Xkp7X Wo;4l%*JjJU*mQ^?")ݗ5ky 3냵lu皖1`s>\u&ẩU}/~Q~W~W~W~W~W~)˼ѴzX?\;D| TU]\_oN{]qszy߂5Uk~ |BUUwW~W~W~W~W~W~W29yʂ\ ڡ<8/ʂsY<0 N XO΀릮:[`6/x8/9g ~q.`© RT*UgW};Z~Z*m")M3Bxbǎ_/zW΄Y+AWXkΨUUky z 쩺T*5+WYGj{u5^w ԝj̟Y]qmO/t] >5^9BV\õ7>\g5?u{!+++++H卦9}]-V/"EPU]_y7rxܗj}U|oށ0ʿvx}aC UV}_______ k4-Ogp ?vk8GeIby\8_&p>p9M0 psx|8>Bn?{iRT*UgW};Z~Z*m")=7)Oboes5ԝkގ`A{@^Hʯʯʯʯʯ"RƧyi"~N9Gh"x5/z#sΆTfk` .^H!qN[>ʯʯʯʯʯʯʯes,X<8y;3m̓/b\Ιs:ppOln=p[p y>w;?֟kuz~/ù`gJRZR?J[~~TWϟHJ\su >\+ԝ_`Or>sԝ XxO_BW~W~W~W~W~2Ѵ.X?\۳|΃e%`Ϳ[ƪ*?,P׹j9c{wǵI[@*ʯʯʯʯʯʯ_&lΓYVKg, ]`%Va(\tp6pH``c`88=sYb :؟U*JUs~G_S_$KFӋp9p>Oqx&L_bs{Z 84ǻX:ny;gYpP:9YRTە,UJ}RRDR5$wY4u:Egqw{;?׮p݋Q=uSe#t՝T/ʯʯʯʯʯ/"e<7.iw>o\ux\;^U~z/vxoU_]>n֪+++++++f&|7_Y0'>y>CxWᜟ} v~, \ byF_w;88y~wsNsT*JUiV߿VJ[HJ獦=CkL`;1`Ie>\?sԝgAw+;U _______Dʘh4 yi"x2~YU?.k~3>So_\p}Umka1ZuQ~W~W~W~W~W~W~/Lhz87Y3/Al9 \õI/ s~7  [sxxp|ߦC. NM{q5 ;l#RT*UgW};Z~Z*m")]7^8Ώ^s`9cǹ1,y X ڇ38) e>[A?_RTYR_??*U+O$Yko}^{{՝.޼`}wמ.뎬}N@;?sW~W~W~W~W~;>Ms[΃;`ϵC{cU&uxAp]Q~W~W~W~W~W~W~sܫ-ZW|xsl^&\<+ì<tkؼX>0ze9y8ڟwxne|'Ďs3sp*JRuƪyU9UթV/%y9ܫ+v8<>A" cu?.q$k#}8/36Sz|S >p^PPT*UkV篲Ti+ϏJJIwh >#=5k[k}?{ '`Sw?ʯʯʯʯʯ/"kl~_#zEp,XU_z55Z 6\4j&p^XUV}_______5szF} bcy}ImKž,p>? `)>_'KHL}8g,|t?8뎘vNGa]a[`coQT*3VUϫ>RNR΄@.g v8 =>δY+9Z?`=2?*JJU*mQ^?")M$ww-ԝ%`uD^>5{(sV^Hʯʯʯʯʯ"RWyi"~Ns{ʯʯʯʯʯʯʯes߮Gx? x|Μy΄յ6;Gla-!lp%tx0 b-b!Gq  SZ8 h9T*JUs~G_S_$qyE༝!vƬ} WQ׃x/ }`a;Y` ?T*J՚,UJ}RRDRPWϝ6;5߁\/2*PwR}(+++++1+o4-Ulw"x2*sA`gg\XOvxxʿ k~ẝ ko(++++++? Ľ)\ JR:cU**Ti+I霼ۉ;ν'6_Eց v~p ?-PUϱ|!`=WT*UkV篲Ti+ϏJJI{9k5Pwߺk5ޟ𸷗OwϙKe/GX^Hʯʯʯʯʯ"Ryi"~NEp,XUܞ`}p4TF ڛY:GUv˚Cwu>PU~kG______L9`<yA!ܞ/>yppnܞ0 8g4 uy qp=p.{%g:".׉~T*JUiV߿VJ[HJ獦0>$vE,XjpΟ\:'X;ڇkp'\ge=z!k>0T*J՚,UJ}RRDR:?k4kX՝W5_5ϡ\=}vxG@^k_k<;U _______DRNR8Wu9<qxsڇsF\{ea@^Hʯʯʯʯʯ"Rƫyi"~Ng"x*.ozg5/ 'BU#uYu܇w[>ʯʯʯʯʯʯʯe[p>p?ۡ ?sx!Ձց6X 6g0`  0`Ӂ8χs~v`GX8g9χ}v5`WT*3VUϫ>RNRMdຑsrm>k͠'l@|q?}wս`=cõR܃l(<]kc}p(\*JjJU*mQ^?")58wמB`[ ?GO?<{eʯʯʯʯʯׇyi"~Ng"x)XUvŚw76*?G} ׺kπ{` ZuQ~W~W~W~W~W~W~/oh\r5p Alܡa 6 VZ恿qOlOl|&p9Y7Bl.nJõ^ۙq6؜a3ZJR:cU**Ti+ILq/ۙ י/d}zv}bǎo kGVC?A1`= >@RTYR_??*U+O$%  >\u#u{ k}W^ZX] _BW~W~W~W~W~2f&~Ng"x3(oz}8fsYU>k~z*?_;ه3S[>ʯʯʯʯʯʯʯe5&p pm ';?#ɞGΟB"3K9RNRku&Ώܞ7*x ɰ1@w`9;εIC^ڧpLTqvJRf~*KRTmԟ?f&\\CRw߸~ >skY=ep]Pwekx˃5U}/~Q~W~W~W~W~W~)3aZ),U;pα\*'k ʿ k5 UZuQ~W~W~W~W~W~W~/sxn10N`p.P·ܧ1?Fj[՞u,Y76:q27 p)pv$X 8kyOXis{*} %'kgm GJRTz^yhkutsh!v~5E'C?;?v| [i`<gC`3 !0)?ƂOl.С?*JJU*mQ^?")q]Xp;5gu皖ڇk/^[}~G[^Hʯʯʯʯʯ"R{{-Sq/߸lJ+pq!*;T*JUiV߿VJ[HJFӗ(ScIȋ\; Γ)g$<a:\Sd=?\ >•ƀJRZR?J[~~TWϟHJ\+!>X՝vB\STw~k51Pwkx oy;U _______Dx7o4PilϛyPm]_l>_#Bg@Usjw?/T|6֪+++++++f v<67^<  e~ <9fN6s1p,\<V vڟkW~p7Xpp/\ z k✟qJRf~*KRTmԟ?M'kx˂h>^㿱Y]i+++++Hx)o4-^)pϋyHTcZkm5 `PU~wz'k`p 0'"|\pOy;{א?kQ4\8fcٟ|kp;pt&8g;Xbfz*\:T*JUs~G_S_$FZ Չ;u&y>[N[ 8ڟs^+uDxNz8_ڇh* wJRZR?J[~~TWϟHJwd`õ"A7r>v];?5'k u]g^Hʯʯʯʯʯ"RƇyi"~Ngŋ=p <4 }l|?p

PY1cw`K kiǹQap<X?_ϡ0gOT*5+WYGj{tqhk^{'ԝmq^^]>ckο{ ܤ5ޖPwR}(+++++ihZSYԒEPU~ ko8uSyXs\E>zy5o4p@*ʯʯʯʯʯʯ_&5\ p3| !s.˰>tKžNXeU\` 8񣁳 Nx;BOPT*3VUϫ>RNR.M/d2 n_9cǹ`qy}88ǻE`\T*5+WYGj{u;W/^[}V^ >\0u̥:o;U _______Dʨjwzo"x7+zܻʚg·kf?.k{^QPU]/5?{UZuQ~W~W~W~W~W~W~/a><; `{{cu8cL;׽3ο{ o;HǪT/ʯʯʯʯʯ/"eU4pxsy"*?k~36PU{]/o"]Ƽ U叭ϱ?]13e;o(++++++?=k4 87ڞy,~ܟ?̃XA-Y<> :GU?8&֟X:w`4̀-fw|`):\ /`o=a,pq\ [JR:cU**Ti+IiRhzn;z[@_8o'vϙ9;`=~|>S-1> 9_> \C5JRf~*KRTmԟ?^M/S9;52scvvx\#Tw~=Ѭ}f=ϵOo;U _______Dʘh4m s>̓U]\_"AU}؇ok"Xs?/FAUUwW~W~W~W~W~W~W2o׷,,K|@Yl=+D8f];Ĺ@i6\| 30 f?Ͽ^<;Fpp]Ϗ?ƀJRTz^yhku3ރ2d>oy;cǷPU{~Yp#p:p>Ol/Rz!pJRZR?J[~~TWϟHJܟkN}wx/Ar>Gk\3}Z9Be!;U _______DLՊ9.`"*ޮwXsOl3w^޼E`uV_5YLugZuQ~W~W~W~W~W~W~/JhܖsAlMy9?>RNR8#u>cU>k n$v~p2x9y^i5TAZ#p-ÙQ`T*5+WYGj{45k4=>k\oXvq] >v"ԝ;ޮ`WE_____E յRX?=.(z#7ww.\3SU[]/o"]]EБ¸֪+++++++f`Zp>ϝY0_ܝσY<+ 'f/{~ K38/hp]8_(Ok\ zρ'%= 8[38/j{8z8_,T*JUs~G_S_$ yMކAڟsuzfbq7 ,X_ /AU}ƉN۱{PU S@RTYR_??*U+O$%}s{_CT1kc\µO>kǠkx\{csWE_____EFZ`~7V EPU\_{Ywqx.4U|54wWwkAUt}=gͿ ;9PU~kG______LFӲy5$ KYXYT7;`sa?g_2q=խ! |X2 &k~88h(ip T*JUiV߿VJ[HJw獦oa*|c/?k:9 bǎ C[ k4Xs`3 8k8x3}QT*U篲Ti+ϏJJIscڇkE6k.o/;? ku ԝ'Ckc5 PwR}(+++++UhGX?޲En,WU]] aT>aXn&ʿqO1k5_á֪+++++++/g?AlNY9Bd 6/(V.Y0\3b a7?\3 nO 6b>zX[ Al9/3dl ֟T*JUs~G_S_$% pˇ;?vv^`C\r&pN;;p6P?g= :qJRf~*KRTmԟ?^Mc}ĸngwSw~Z k54;50ww4ԝT/ʯʯʯʯʯ/"e|h4 o=bAU?s {yPU"]-TOm"*?߷ `ƻ8߉{UZuQ~W~W~W~W~W~W~/?6,|w`<ɃYx ;,|E75x!缠sn,^ܟ])<cYyA8g1qA xe48/HRTXU=JcE25f=nkkqvLJRf~*KRTmԟ?ncy]qs=Yo=Vgƻ{ ;XzB^Hʯʯʯʯʯ"RFfsihZ/EPU~· ܷk8l^ނE`?]qϔ<qm55,mCcG______LYYi<^`Z-^̂8,k|k YhWדpIy23xNΙڤy~?̓YkPw~~X>\3uz~`uV\UwR}(+++++yh[X?_yDT?׻px zyEX~TuU^E`]>n\TU~kG______L؜Y9xy;k8/s8,<ebs{x>XEs,L<<%<3yYauy||p%=ɜa4p6ѥ(T*JUiV߿VJ[HJwobǎs)z.ku8H;pNU9ǹs`;o(x? nkp'tARTYR_??*U+O$Fy`ޛ;ͽ}x-ԝfױX񸮦kxcL3U}/~Q~W~W~W~W~W~)cѴ>X? >˃Us)X.-T'EBYTP׻rx v_o(++++++?]fzy;M\spn$Z 7ϫ`3'8G,7y;~yp:%q <@lJRTz^yhkuY(-bǎOV(k8vA;?vLUO8g =UO1p5XAds4qG*JjJU*mQ^?")}5'kPw)5`sƛu?ݽwX vx@^Hʯʯʯʯʯ"RyE`~(zTscƃ5o<^U~w6Xs<~T_|$k~Gq:.[>ʯʯʯʯʯʯʯem|8/{~|bb7Vx(Kc;JE,\D|_#U}/~Q~W~W~W~W~W~)㫼Ĺ=gzo"^+AUq}wu#]` T>kiz//6OT?Y.=`TZuQ~W~W~W~W~W~W~/!;ߩ?;ضkTD""ZmŜP,F6+AD$IT(,sxf3Vϧgu潜jqw:{k{ogxOo~Rp  Y \;yBOo\ +tso{VI8!qRdǤsr{I|']ה1˲,Zk﫚Z~:m~6۩=v._49;zS5/Bχsvl[P}v`C_k2eY¬߿e֯˚{I-qh;YA9ٗag#>V>'\;?Sq-Vlk;PZ}1o~7/it3Vt~оZGP_f*k  +h{sk9i^w e霌{?Zc1o~7o~H3ܘ5BÙ0G\Qu" å p w$uk7N'u4\ ރVsӤX+j/ DZ+.]5QꊿL+0)H˲,Zk﫚Z~:m~J@j8wysxMOj7!ڟ_c!ڇkl؇7ư3D vhھcIGeY¬߿e֯˚{I-]?}VIdOorghsHFuJ>\0cz2?cB/7o~7%MnfC"9==ݿ/ԃbkWɸsos5tN/`+akyO_W`o~7o~lw@αO^c@mm/BR9?9%vp=OmN ]= olz׋^ʭ | ܤ89s&}|n;t:(n%˲,Zk﫚Z~:m~~~gW~p5_;\>P]Ùq^:|hB΄h]S.:?|E=> eY0iYmDz^?RK\H -;?|M;?ױ,s0M=aC]h7o~7i\zL_D?\+r8+VsB4mss0TRlXm'ຬ>ʾg๰) ?Zc1o~7o~\>?x8wKx7aIq&DO ~aBmuKx ܃=ksj2)>vLZbZ+=\oYeYc }U=QBg֯7pvpEP{|8י8p]J?ׇ|8Kv_;|:^3TcGw vsac{&zp0DvFeY0iYmDz^?RK\=}ɞcj23ksA:'cϱ_66-c笞B?߅V_o~7o~Kx_C|ޢ_ɸc~7o~74-f8Ws`>way|Gsu{U j 8[fo#kkW159K&`>|&p|<ߓw늋'wEeYe-5UEZ? նZRKN3=vO.l\todh 7o~4ӻYt~vkW{_ vD,!<`C~^h~vp?/*?@49^Gk>7o~7o~O9< 6Ձsw9]Pd4< x_}pФPjs{?sڛ1&><؟׃m;}8SIA|ެ6I񐮨jIuڤ\ ˲,Zk﫚Z~:m~M`Oຑk끳YGX?ipׇ_;k/:X?& xsu|9D/ ڇĸgsmeY0iYmDz^?RKHA9̬-!gtN-odWC,ckAϾl?;PZ}1o~7/igu3}qJWܻ/9ܷ+}oZ9*/S >k#53m/I2g*c~7o~74L3^x<|vLΙ,p aR,3\[}wp t]q̙\ p{ {Nܡn=kF)<\v٤(Z+13qŤ9}GW?_\=8 }{qg=E8{*p0| ˲,kaV_ӲVeͽZHgCϣ9scvh9gڌ{]}OYb'/;}Odo~7o~IڏGEsze:?{|_鋡oC4?>p:`;kC_7ʸY4??7o~7o~qr. ^a#"ޛsG]W `Y+\õ%7/8 t]eR\ O q.c{szp.P؟37n}>)V芻q.P,3&Ŋ]aYeYc }U=QBg֯Ү7pv@s \#|:Wg_;^-~%pOmLNƽ>)=Y@gsh,˲YMj[_?5jZzb qMgptNod\_s~:?NGBNl1j 7o~4Yt~J_Cb/K}oB49ذ? 릮h~ *^ٷ 5ls`W8Th7o~7oi~3g}Y+_๰pfg޿sWW<)8I{fO ΢`R<+8dž |y>gSx[?gߺrRp=ؿwB\vŤxDWpZ˲,Zk﫚Z~:m~OPj?nGoT㜱]5i8(z|gg\ _? }8H#,Z״cYs֟?o1}/ճ`{un ϙ?h5uPc@0v.b~7o~_48s}^wb3}{G:'}Oh3\E4?,\/*W-*c~7o~74~3g_s{^?q2 m GM6I8cRܯ+8iR/4Zgps>I^a~/TӤ^r| \vݤx\Wt/|,˲űUoV_j8%}Z8h7??k_ p}Kp.DoPwgw6ze{,˲f5-m~}XܫOjkW >Jdj[Lff}vJd/IF? =qH^=ע}Hdw7o~5$~}5$?T~cD-2 +og1qaEy?ȵ=C}o~7o~&?>&<޲ /z g?)L uڤOWIq8uRKρO|>w ?Zc1o~7o~%]y ^!}O\kpuǏ\R;^sƤoW3)8Iq8}RZOg^'q*<>3U#TsxrWj]9?s{I~gw eY8PW5?j-tVjK-~gwcb/j?+n` ^x x :k!z }jsx#ƵO'A8g >&y'eY0iYmDz^?RKH3Y)=οdf֮U:'9odtEy6;?g. >;s`C]h7o~7iZ_D?ؾ+x|?õ{!p=PI23q= Cz67_*c~7o~749ׅ1ՎsL8aK{'|֤xpWԎ=)j~S'px<̵><9ʲ,˲{Vj[_%{|Ἕk?y>*}uw_;u>?#\\s=mD| Z˲,kaV_ӲVeͽZLB9c*ڇ/ Ɣ5[ccS!tNƽ?߅V_o~7o~KZ/+٪}%/͸v%霌q. kThp._3ʶhקs} 7o~7?Muo1~/FE?wysn3 39s{Ο3'I񘮨9wR<+j{^_^N?\`/_G<kJ;2pfQmV1eYe-5UEZ? նZRKT_p>_;~|W}-/9<'<^{|{X}j s-z|gkC|!ݶ>[s,Z״cYs֟?%x-D q:}NJd'뗢}x`\OŵO>Mdgo~7o~I^]kH*;Rl3&=P߁zeE4cy[~h~^K7o~76J> ܓ? ~ o[A8x>päX+O%pxvW\2)OXO ^'#ϹIվ1z)Uu-'l<k^x 8C 4{|6˲,Zk﫚Z~:m~~~gCFjS7!pDsWvj絅ׯ/U?g\}sp D eY¬߿e֯˚{I-q ڇ{6df֩}N?"=Gٓ!ڇ[h=Ѣ}.w7o~q{73k;~Ncv|_l?jLJіh~޻w#8e 󗦙9Këv|o~7o~$fΎ ^q˞FOB?皢]`ix1\1)IzW\<)&I6N xُ`]hksׁ5[pf󀳧w,˲,kqj~/j[謶Z✟[9q΂8R9+x}k^B?g)㼆s:Dp43)px8S=y=8Dz,b5-m~}XܫOjIϫ9]Nh9{XVhǤs2w6v~9}Od4v.b~7o~_4ff=/S+C5(uH\uAk\2h}qXPy-{E,q/x6Th7o~7oi~3g>Gpp8Iy;7M5bIhyANb)x, {8g >x_퀯i05U7am!=t\+nxz>p&eYe-5UEZ? նZRK }qBW,G՟בہ3mjxsW@8pohkjyD^4OZ˲,kaV_ӲVeͽZx1ucdf90MiD=!=G׮L0vsqU f;PZ}1o~7/iK32lPyo_:'V͵%CC-\b_mQ~c?o~7o~pp8jvx6RI _w9/s|yYm^P?׀z gz#`=x,pm0/TB'/eY8PW5?j-tVjK-~gsFW׎s i۩=vI~ 8y;5kqWmN8S!ڇ3O>˲,kaV_ӲVeͽZ^{mGp ;&3h{=}VHdOQvD.w7o~q[73k~NԪ}q]W7o~7o~OVx{jy6[s>6}5i]<2vRpq.В|` sx 63׋3-K~$0_ y||O>8wh Z˲,Zk﫚Z~:m~8K8 fq^ù*>P~׎>D9=5Nh^k: ju!z p(D| >,˲f5-m~}XܫOj7pk>/Id\1v'3Nh39 >Id\3v3s]>s`C]h7o~7it̬Csʙ3 !Z_ qh~S56Vh~+׸.믆}whsm =*c~7o~74k|6^#!^{3? Bmp2RX8I쮨=yqm`]~ |yGsxp q3>]?<g} ޫo= xM5,>eY8PW5?j-tVjK-qSnkyz9'ڟv6%_;ι=߁hqή=7\>|^#nY}*Dso?Ap"=pXeY ZնZ,k'8 hz23 7c5}"ڇc?*>t& 7o~4 yf_D?W3ZP9˚{WEsר gPzem:?g?|~ykx^c_}o~7o~&ojs{8tsχuIVW\pvQ\Ù6+]tbx?pN5o]$^->w3sqnLk*pnAm[W>sU˲,Zk﫚Z~:m~H3ᵗ/j#,>ׯoT#?^.q^;}x-8~_^W*[eY ZնZ,k'8}^xg^w 9jyESsx!0)wKgS{8iWh;A:[g؇xckgq3^?<XeYXC}_|_ԪYm/tB qg>K߃Gk>7o~7o~OV8gZ aZ}7^$<j|M]IܮX^7Ob)x|8χP{sn8y>}Yg'=8{k>;ޚ1,˲űUoV_j|n^۹j)ڧ+8g&ڟL>d+=v|C T?\Es;癦%I˲,kaV_ӲVeͽZkN}84<@g\ c^c\Ù?\{3v~hv|M?߅V_o~7o~Kzr_D?zl_ Mocm:'㜙}R}{nz>D2qպ*c~7o~74I\gppO8U缠g3auR>w86)8/h `w>o/q?Zq%?4Z5#:pSИ,˲űUoV_jSf℮úL]_Do[{pvM㜫3ڤs!z3/sμ.=\#=,˲YMj[_?5jZcyc:'Z5uD.?:=GZ\w4vs] >s`C]h7o~7iz)D?7w3Ub7kb9 +_Dϖ )# W'DsԶ26 ?Zc1o~7o~M/)~_ 7}}Ưx-+b·?3Bx/ҳ93>_7{mYI͙?_3`n|8gG0;}~ ĹCo;俻XeYXC}_|_ԪYm/9?~]!׎#7A?p}P{|Fk2C^?x].ڇLk3DGElv˲,kaV_ӲVeͽZNý>c욫`ܗk}8;0v.2l:'+ 7o~4 "~NMd{싡si|,ϻ+?-eݭ/NB4?/c ?Zc1o~7o~]|>j\; t[= xIs85Z_Iga^kN7#X8[`k_~9BeY8PW5?j-tVjK-~g\󷮸g_GOX/\8;wokq^|h^ggo z3Ù߲,Z״cYs֟?פ$\1vLff>saKQ yr:'dc̥!tN6銱w7o~=ttN?G}1T~#126 +h3ᚥ`oK2wtN/G6Th7o~7oilC?>m^~ 3^.G<>yAA{$_Հ \vxؙyM|<>[BYב3vx F༝~:zzpg.סqw^,˲,kqj~/j[謶Z:<Ζ싃V=vЮX/銙>P!.Q{|u&o^8:z|?ڪhPk2=k}Zs>veY0iYmDz^?RKFtN{vdftNv9ʞ>Hd\4v~M}Ldo~7o~IEs9Bk0T~Žy_| fs?>9?+C>+mm2*c~7o~74~3g,g\{p^pE#p.g/>vg<xx1p3q]ӓ&p.gl'Ss缠?•03~p]s,˲űUoV_jU80|k3{P>P{|3g8e2uipͅk5|Wh:LӇfc,Z״cYs֟?%YXokWLff }x0v~Gz DɸhK#[}ɖw7o~\?3%rp }1T~{Ӣkcx*?^_D{S[/{vh~u\\†7o~7?M~΢L/yA/}:ZΫἠZG x}Ã3kk 8jߜQ=sx]|<3z5eYe-5UEZ? նZRK_;~p.P>jj]O5iDLRqΗf^,˲,V_ӲVeͽZ!gtN ̬!tNv֢`s2e6v~_}nKd}W 7o~4ol~NNd/!yB_ p{Pzeh~ދw8+8i'yE/ C*c~7o~74~3ggAm׀ks{xP-`-R8g>>9K-l=$Z#^Wd^,˲f5-m~}XܫOj:x#ڇI}odKCyרD<3 uS\+T:'[?߅V_o~7o~KׄL3gtN>vųbk'=_/4T~ネZvݳ/}ܸ~C}o~7o~&?pV0g\sp8/o}`9<>QxZ |39=?SKpx8-=j|}qxW,CYhws>Gk>7o~7o~O6gs88]^>y_O߭T>=x֟}>@|gx֟gD׎?s>3o>8JWpmx˲,Zk﫚Z~:m~O/ =h k |&/|xY8sΦ8 C,˲{Vj[_ߤB㿃!ڇ󇷀7qYEsm=3c8_N߂11`Ye-jkZVjWϟ7r_c_"hαY=)ڇxiNFY> cB/7o~7%M=/ӫ٪}=C5ރuD?Wf0T~tD^%|] C):4-k5v7o~7ɿc͜*·pϕk,Ͻy3 xp=ҳ+P̙\qnϥyJVppsR?k_;YFg"_usn ׾8ZeYXC}_|_ԪYm/\g?@?>g^*^=>z->6yM>K\3p=s8 }8S,Z״cYs֟?٦tNU;UYAV;9օhs7NFD=?߅V_o~7o~KMw~NHgO ޻Ⱦ*RߌkKߘx+as*QWl_Dިث+j^DZ7o~7?M~3\wTù?l y>\Ù3.y9Oasp^Pm>2ϹO\~4|~ fx3˲,Zk﫚Z~:m~y'v}Q{|8ߥ/N":GϙƵ׎8xM,ڟrT8 zhݡ[B8V7F,Z״cYs֟?wg ڇ9wLff] >OdWOQ=ͣ}ɸi3} Z}nJu\W 7o~4 !~NyOc⼮xX_ ]o{|Ο9.\~ nI_@49{ |7o~7?M~ދT}%sy^xag`Ί}^{X+8g g6|^p#qrmϮOx[/:r?8Gk}8χpx9{|8pN˲,Zk﫚Z~:m~L9^}ٮ)9׎8gsh^uqΑuhZ^[㌦qg>wsa\_̟7MFv/Y)?߅V_o~7o~Kƿo }U⬮xP_ o\߁>,=y?pPߜze[C4?m /*c~7o~749l:q\ w,勀󈮆ZGix| ?>~%ν ƽzgn_ٟqו_6ٟ6,˲űUoV_j8\_]/j]c8[ 9g{oG Ep? -GZ j-˲YMj[_?5jZژoBPs8g+}#փhz-3>˥so~7o~IӸ,a}qzWܿ/7fɸKCK\ϽƮYOCcMdy_Gk>7o~7o~O6x8Amg6YuJk—I <> %^. <mB>|8;賰|ZZmeYe-5UEZ? նZRK­P{|P Dxv8>S 4M.:q^O DqtpRkGeY¬߿e֯˚{I-: gEpC\0u%D\n?%=G5bm(kWD,Vw7o~qe흭)!zd_/*Rl3ܫ܇P-xPߒze?hWs2y9u*c~7o~749^ yM96S}I8_g<>/oEX8a|~7es9|pgw}yO@,ǁ{; `}3˲,Zk﫚Z~:m~~g]_p =ٿ.qWpv4R絩q^VkC8ps \?'B8:R]eY¬߿e֯˚{I-q1nE;?,> c}7wBϻ9g1>OLdܻmC]h7o~7i\~{gO=/8h*?_ɾ 4C3=s/kKg03y߫a?Zc1o~7o~6r ~g8#k.߽ xQ&|t=D<{ wWx)o .΄,>W};p.M%^,˲űUoV_j8\^CX/j?+,kpٟ=}8׻y݆k}x󢙙7 zp Dp3wXeY ZնZ,k'\߅lE!;>oHdq9Bo~7o~IX|~Nks~j}1T~5-Ld{܆Qh~I_ g 9g*y݌{?Zc1o~7o~$I$Is85?wR}Q{|8g,GwGo;›GP{|a{X$[_Ds=b> Φ^/!zwy>)9HYeY ZնZ,k'I$I$Inf}zm:?[/Pߖf?h9@p!ʖh:]JDk>7o~7o~_$I$Iwffq]d__;k_֥D+~o=v}pm!Ǐ/}8&&l@pDNvoYe-jkZVjWϟ$I$I$7 yf_D^Ϟgvޑf?hקsa37릢fb?7o~7?F~I$I$9̺ S{|P\_Ds(΄pLocŹ@7pq6h_UHUW<> `Ye-jkZVjWϟ$I$I$ͷ˻YOuTyb_\P97>߃Wf0TRl?0qC]qOh~÷ao~7o~c$I$Iҝ,?U{|]QB<~=vm- E =p?i_[_q9Ϲ@eY¬߿e֯˚{I$I$I|Ź=먜j_pobI}C49Ԏ+ܞh~Y/snR4?/yf6Th7o~7o1K$I$nfֲ}1qr_/vh΢+z"ڧ6阮]=ݢ9CE.,˲f5-m~}XܫO$I$Ig<Qi}1TwDج?s"6GЮzsߴ!tNpac~7o~7%I$Itpn73⢮x`__;~^Wܷ/C"Ӯ-|kǿ7sqohC.}W?!z|k+Dl g4,˲f5-m~}XܫO$I$Iۍ̬gE:l+Ck ߒ~`^G?,q߮u ͩWƵ:7o~7?F~I$I$9:?v_;~BW,s+D [-ڇs~n=k8/=9 }8TmYe-jkZVjWϟ$I$I$7X/QJgO)}1T Rl?Md߃aG^MEϖ }Kܓ+5P{]7o~7?F~I$I$9cb龨=vLT_Dgݰ=_;pہ[ z|W}`7`9 ǿB&eY¬߿e֯˚{I$I$I|Y/u9Kaσ򿷛 D465T~iw_Dc}1T~w3D$\ߵ# ?Zc1o~7o~$I$Is8uq`Z?tŲ}\S{|8}Ӻb ;vjWpo=ιC/5Zor,˲f5-m~}XܫO$I$I[ZQ9gm+C_q}N4?pOms}}> k_ ?9?60Th7o~7o1K$I$΁3Rgv}w⬮zWΖ=vp l A=ע 9+C&|΅hZ˲,kaV_ӲVeͽZ$I$I$iq>Ϛ}ZS 4T/ڏh~9pל Ǥ>k/l #p ?Zc1o~7o~$I$Is8!wC?v}qIW $1dYe-jkZVjWϟ$I$I$ͷ%Y@:M,gP׮tN} ;PzehMz*Fo Do8vGk>7o~7o~_$I$Iw\\kg`UgWLӟ{Bq7`=vp< ՟3j}8Ǐbk=k}Üt!XeY ZնZ,k'I$I$Ia̬@:̬xJ_ 7 hws_0T+S}u;+!]1鋡+͎hws2YZ~C}o~7o~#$I$IKW׎싡s}ׇ|~׎Gk/9yEKEm^:k}s8Ȳ,Z״cYs֟?I$I$Io |^G9:pKW\hSYm *Sߌ{oE(;a{*c~7o~7%I$Itnf }VkO +_w0=v=3lϽV*zk>d_gtakXeY ZնZ,k'I$I$Im~fB:*gά affIdΥϵ+h Ck`/7-DoɸcÆ7o~7?F~I$I$9̺_+׎s6s6Ί=vwhC.}=k_5.h{¥`Ye-jkZVjWϟ$I$I$7x Dzf_\P?fA4 +|hٲ}Q[3TٮtN=^߇Gk>7o~7o~_$I$Iww3}j:G?/#p _;̜5\=~mWo@49}o~7o~#$I$IffqΉ]b__;`+v=vy<+zخڭh~a_å5ZseY0iYmDz^?$I$I4߸}t:'[7boM}m 8fC`s+ÉW Y/ʿ^9k{7o~7?F~I$I$98g=v] ߤ+ẝk? {Bm.P0b/}銥b8=->;߁kN˲,kaV_ӲVeͽZ$I$I$iq znfS]*Rߌscߒ~`'^J}9B}_p0T~goJd?W0Th7o~7o1K$I$nfp(=vخ>Vu} CgַD\=7>\/Ĺ@ۀ-Do YO eY¬߿e֯˚{I$I$I|ܞE:*׊\*zoƹ=\G?s}uVw닣벆7[oOd?_ߡGk>7o~7o~_$I$IwWw3gt}Q{|8=/E]ql{BH49Kv-ùO~]yA= +~dYe-jkZVjWϟ$I$Nκ~'zʾN=јcѪb1Ƙ}%$FC1ʪ W2wΝ;Ό*.Ȏ싸 0 |W;ݩT}NNz:D"H䏝cHi뿣*)>׍)]z*?7gH[ez7rsH@u=uz9 )^x]:[vq8?q8?%D"H$D"H$=YK7rwH?ݿߙ5/oiY#_*Bi~z!] i^)^\5R>k%kBzg y:W<\HTTTTԟg^nlDEu"H$D"H$D"H䏝Og0Mi*dq!u˹ϛNgW?7$pi[]J\g{rx}UzB_q8?q8?D"H$D"H$sYK7rkH!ݿo7Ov *BQH2mo+WH[o&k$isSH׼7rY/ i\)B?:D:HE"H$D"H$D";ştL!mwԢB7^ߛ)>/:l(o i?o/:M]5RiI|m37Zq8?q8+qH$D"H$D"ȟFϚ^J7RLşc9oFxV[}w!ş^%~E!şV<]兼P-Bz{1T/91U|НDEEEEy֑&֑OT^G/D"H$D"H$Dy"kz)FNJ&o3却ߚBzvrn!uo&pj7oLos8}:[vq8?q8?%D"H$D"H$H!]Fn)[Ƭ?GH[eSQTHko]sb!)~gs/+BV1ZR^مۋB| w;****ϳ_/7QGc:_H$D"H$D"H$N3K i뿣,kz)<5rTH{cZzmxU[^/>>OH[S y|k^i'q8?qWH$D"H$D"?\5RY#ǟvn%k{ȝY#}FoBrA!ݿR|˻ ]?524oMY#]F7RP mB.Nqre!OYG#[Gz?QQx鯿H$D"H$D"H$cɬi뿣35oY#F{8۴oMos8)U7-+ y:dN9k^i'q8?qWH$D"H$D"?$kz)Fn)^v=Y#F?5kBvBZk\ 9\kgVY#,}=k8Oro!mV +BSH[Ͽ#C!w!uM7ϓ\5R_||ԧ i79-d{!Zq8?q8+qH$D"H$D"ȟF37r{HkH{{Fׄyg!-o*qkF:捴չ9k8kF8kBz{=չG )>x]?:D:HE"H$D"H$D";OgM/xݞ;j1F~523o_n*_p>QȺBG!uyy#m=NKWҔ7^ߘ)^/mBRK{J;q8?q8?D"H$D"H$i򝬑^Z)7ggj^sۋ|e)?Yȏ i/8 #Mԑ#=؟?_$D"H$D"H$SnԼ;jg37Ӭ)y#u=^H[gT+_n9g J!-_}/N=翭J;q8?q8?D"H$D"H$it3kwHko۳Fz却'k 9Pȅvn_Bi+/Tg-+?:D:HE"H$D"H$D";OeM/e~H[,k䕸9#uu8şJ\gCzu)Υx}:[vq8?q8?%D"H$D"H$ YK\5却vn.k$vH-mwdB iݾUH[硔7ۿ5t!/7riHaX iRH[(B?;B>/>nR|cS)#RJӱuɒ9[J!)SMɔR;t~1#eP؎-C>?S8>9t#?t{:6>G#S&MI&֔Cмo'S}M4;R{N=sSͪ,Y>rSӯRMi_ӯNo~=?kүoKouצܙ~C﷽nZij20<}}<뺧?Rv./Rwo[S?|6eJܔK:75]rQ)<ڹN۳鉔].L/KiۿӹN]ZRJYٹu)S6RIO/?2$W)CsR:[kJgݚrAJ=C)WtikΦ;zk/OwSS+)>*ߤO/?|?/#)wM~[=g7')׌֔{3&ߦ|&> `sNy(vcvˏl9c{4gY?J9-})g)[i ҔϦtR򆔣{ d)<s47S>^^^~)6'Ҕ\r[sm>uwIzk;詔w^>Go-)MTl6K91eCJ5eNz?7^ޙrn?}!eJgyCyOY2&elmߟ}ҭOߒ^!n2=eeq)QiLL|J9ޔٟ?֣4irʄCsrL\=R~^ߔ^ޘ^OgJpxRK|)7J=8'G\ O/HyGoߜ~dYZbgk }B:s){p{z?oL犔oק^eܝrV)W\{>,ns6嘔U,3˧ROy}zsY݇s:4OפܖW{ޔ{{SNt`z^߿y'Y7Ŕ]뗦4M9?>{^/ksZROz}Dz{~\qkSK<#}h~9RjܜM9+#)NٖÔ鿛oL/2O>HC|hǤ_Li[{{}?_?xoK-Jm=O>tJyz)O)tEHikO:wK`sCϖ;]}ύZݣno󷖞UJC^o}ۏT1t?4[|%14@ʉO#} s[!;G/ѯm=\)W9D'S.>~H\)}Д{Q{'LYwջzO[@}>XՇH}>Z D(}e(;4I_Y_E_U_&}Eߪoӷ; .}6}v^D}N}.nuKzY\.zW]{>z__!P}>\G1X}>^OԏW(ߤ߬ߢߪ F}YߢoշN}[G}~O_~@~PLG}>NO'G+}oWoWoo}I߬oѷx}~K߭Mߣ]W?QߧS߯K?[?GY6Ϸ+d%*o|K[2ߒ̷d%-o|K[2ߒ̷d%-o|K[2ߒ̷d%-o|K[2ߒ̷d%-o|K[2ߒ̷d%-o|K[2ߒ̷d%-o|K[2ߒ̷d%-o|K[2ߒ̷d%-o|K[2ߒ̷d%-o|K[2߲Y\6߲V6߲ͷle-o|[6߲ͷle-o|[6߲ͷle-o|[6߲ͷle-o|[6߲ͷle-o|[6߲ͷle-o|[6߲ͷle-o|[6߲ͷle-o|[6߲ͷle-o|[6߲73ߖf曙of73|373|373|373|373|373|373|373|373|373|373|373|373|373|373|373|373|373|373|[77|s~n曛on曛on曛on曛on曛on曛on曛on曛on曛on曛on曛on曛on曛on曛on曛on曛on曛on曛onmθbo|+[qV̷bo|+[1ߊV̷bo|+[1ߊV̷bo|+[1ߊV̷bo|+[1ߊV̷bo|+[1ߊV̷bo|+[1ߊV̷bo|+[1ߊV̷bo|+[1ߊV̷bo|+[17vh;t;%gzWzM{zO}>LG}>NO'G+}oWoWoo}I߬oѷx}~K߭Mߣ]W?QߧS߯K?[?Goo4yNjUuլf]5YWͺjUuլf]5YWͺjUuլf]5YWͺjUuլf]5YWͺjUuլf]5YWͺjUuլf]5YWͺjUuլf]5YWͺjUuլf]5YWͺjUuլf]5YWͺjUuլf]5YW:}M5uͬkf]3Y̺f5uͬkf]3Y̺f5uͬkf]3Y̺f5uͬkf]3Y̺f5uͬkf]3Y̺f5uͬkf]3Y̺f5uͬkf]3Y̺f5uͬkf]3Y̺f5uͬkf]3Y̺f5uͬkf]3Y̺fi /Yͺnuuݬf]7Yͺnuuݬf]7Yͺnuuݬf]7Yͺnuuݬf]7Yͺnuuݬf]7Yͺnuuݬf]7Yͺnuuݬf]7Yͺnuuݬf]7Yͺnuuݬf]7Yͺnuuݬf]74 SzTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT˯խwxsej~N{s/뙞˴8㼏>8㼏>8缟~9缟~9缟~9gp9s 38gp98|8|8|s&LΙ39gr9s&LΙ39|A9|A9|A9|!·8|!·8|!·8|a·9|a·9|a·9|G8|G8|G8gq9s,Y8gq9s6lٜ9gs9s6lٜ9|QG9|QG9|QG9p9s9s8p9q9|q9|q9|s.\ιs9r9s.\ιs9| '8| '8| '8q9s|9sϹs 8p.\s 9r.\ȹs!B΅ 9r.\ȹs"E8q.\Ĺs"E9s.\̹s1bŜ9s.\̹s %K8p.\¹s %q>sq>sq>ss>s>s>sϹs.]8wqŹs.]p~p~p~9ws͹s7nݜ9ws!燜r~!燜r~!燜r~Gq~Gq~Gq~1ǜs~1ǜs~1ǜs~̹s={8pùs=p~ 'p~ 'p~ '{9r˹s/^ν{9r˹s>}8qǹs>}9sϹs?~9sy8pǥ|0KycςϮ+tqA9ZfV2F]}>;6Eyuh$***********XG5!CDs{'LYwջzO[!P}>\G1X}>^OԏWCӛU[5[:}Aߨo7[6}C߭Mߣ]W?QߧS߯K?[?Gi>>JO?F~~~~~~C:%gzWzM{zOч}>J}~G&}f}}V}N_o7}M߮wooߡO߫|RiEY|B"by:هN^zzEwѻzK}>LG}>NO'G+}C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>C>Cln+ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ}(ۇ>|ه>d!;}Cf2ه>d!}Cf2ه>d!}Cf2ه>d!}Cf2ه>d!}Cf2ه>d!}Cf2ه>d!}Cf2ه>d!}Cf2ه>d!}Cf2ه>d!}Cf2ه>d!}CnZ_Cnrۇ!}Cnrۇ>!}Cnrۇ>!}Cnrۇ>!}Cnrۇ>!}Cnrۇ>!}Cnrۇ>!}Cnrۇ>!}Cnrۇ>!}Cnrۇ>!}Cnrۇ>bZPPP؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}؇}xc}xcz'LYwջzO[!P}>\G1X}>^Oԏқޤ߬ߢߪ F}Yߢoշnm;>~]A={4O??_____Co0 ݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍݨڍ4/[?ݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍݨٍ45[/ݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍݨۍ4;[ѷC<4********************************************p;̭s2i~ps\]WQͽ^zzEo~Xg= +++++++++++++4?wKzY\ϐP=륻7v-ge4NzI/뙞=K̏>>>>>>>>>>>>~~~~~~~~~~~~ԿI/e=s7?L3333333333333333333333333333333333333Z(1^zzEo~~`D9g=hC8C8C8C8C8C8C8C8C8C8C9-Wi.0000000000pN˕5ssssssssssFpZ13333333333ruQ냌\ad4g4g4g4g4g4g4g4g4g4g %c8c8c8c8c8c8c8c8c8c8c9-W9iN8888888888xN˕Vssssssssss&pZ23333333333rIIIIIIIIIIIIɜɜɜɜɜɜɜɜɜɜɜɜ))))))))))))iiiiiiiiiiiiYYYYYYYYYYYYٜٜٜٜٜٜٜٜٜٜٜٜ999999999999yyyyyyyyyyyyEEEEEEEEEEEEŜŜŜŜŜŜŜŜŜŜŜŜ%%%%%%%%%%%%eeeeeeeeeeee*ʩr*ʩr*ʩr:Ωs:Ωs:Ωsc9r9s,Xαc9r9s8q8q9s8qM븭\nggggggggg5g5q999999999k8k8-מ[YYYYYYYYYYinZZZZZZZZZ::N˕qqqqqqqqqssZr mllllllllll\pggggggggg3g3999999999[8[8-W!iVVVVVVVVV66N˕qqqqqqqqqssZr59s9s|WQ'QUɒs("sۦmۈUƱ1b=άysN&l Tim}[:T9eWas6q>|#G>>>>>>>>>>>>~~~~~~~~~~~~AAAAAAAAAAAA!!!!!!!!!!!!aaaaaaaaaaaaQQQQQQQQQQQQќќќќќќќќќќќќ111111111111deRm1Uk1 o2%3W)XXXXXXXX888Nsqqqqqqqqsss ;3333333333Sx NLLLLLLLLLL^Axgggggggg2g2g2ԓ99999999S8S8S8S8S8S8S8S8S8S8S8S8S9S9S9S9S9S9S9S9S9S9S9S9888888888888999999999999383838383838383838383838393939393939393939393939888888888888999999999999s8s8s8s8s8s8s8s8s8s8s8s8s9s9s9s9s9s9s9s9s9s9s9s9888888888888999999999999 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9888888888888999999999999K8K8K8K8K8K8K8K8K8K8K8K8K9K9K9K9K9K9K9K9K9K9K9K9888888888888999999999999+8+8+8+8+8+8+8+8+8+8+8+8+9+9+9+9+9+9+9+9+9+9+9+9888888888888999999999999k8k8k8k8k8k8k8k8k8k8k8k8k9k9k9k9k9k9k9k9k9k9k9k9888888888888999999999999v*&sdDFeLeBfF۬L̵7p6p6p6p6p6p6p6p6p6p6p6p6r6r6r6r6r6r6r6r6r6r6r6r6q6q6q6q6q6q6q6q6q6q6q6q6s6s6s6s6s6s6s6s6s6s6s6spppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssvpvpvpvpvpvpvpvpvpvpvpvpvrvrvrvrvrvrvrvrvrvrvrvrvqvqvqvqvqvqvqvqvqvqvqvqvsvsvsvsvsvsvsvsvsvsvsvspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqsssssssssssspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssNpNpNpNpNpNpNpNpNpNpNpNpNrNrNrNrNrNrNrNrNrNrNrNrNqNqNqNqNqNqNqNqNqNqNqNqNsNsNsNsNsNsNsNsNsNsNsNspppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssss.p.p.p.p.p.p.p.p.p.p.p.p.r.r.r.r.r.r.r.r.r.r.r.r.q.q.q.q.q.q.q.q.q.q.q.q~ULȈʘ˄{DJʔk999999999999W8W8W8W8W8W8W8W8W8W8W8W8W9W9W9W9W9W9W9W9W9W9W9W9888888888888999999999999787878787878787878787878Y'+̑1 Jʔ8ٜlN6'ds9ٜlN6'SSSSSSSSSSSSpr89N'pr8ND8ND8ND8QND9QND9QND91N81N81N8qN9qN9qN9 N$8 N$8 N$8999999999999\N.'rr9\N.'q8y's9|N>'sgv_3̑1 Nʔ;?595959595959595959595959888888888888999999999999u8u8u8u8u8u8u8u8u8u8u8u8u9u9u9u9u9u9u9u9u9u9u9u9888888888888999999999999 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9888888888888999999999999M8M8M8M8M8M8M8M8M8M8M8M8M9M9M9M9M9M9M9M9M9M9M9M9888888888888999999999999-8-8-8-8-8-8-8-8-8-8-8-8NS)p 8NӒӒӒӒӒӒӒӒӒӒӒӒӊӊӊӊӊӊӊӊӊӊӊӊμ;%2p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p 'p /zU*b2GFdTd\&CٙLʔL*knV` V`uV`"+ʺdV֪vv߽OYY?xv')xʺgupJdW`m n<jqƍqFN<?Zǘ]Jjvƍ_dkiZ>ݳ>}1kTX^ { >EzwEozpǂu}qwcz8O}MwW7 w17 wW>NXwMdz+p 'p 'p3?dd 2##2*c2.̕y2_%e)YZ&Ȳ|4jY?cq |R>%ge|^ {/;?_ r$'Do##2*c2.̕y2_%e)YZ&Ȳ|W.&?_')|F>+{S(r('؟ɑ1 Y\.!Oʧ!dO|I,_^/ku|S%ߒ-ߖȿ+Q__!SZFx9ANd?ʑ1 Y\?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1?1?߿'n'n>?q?q?q?q?q?q?q矸O'w;ĝ?q矸O'w;ĝ?q矸O'w\Kq;.q%w\Kq;.q%w\Kq;.q矸O'w;ĝ?q矸O'w;ĝ?q矸O'w;ĝ?q=I\Ozw;ĝ?qO\ПŸП$'? JOBП$'? IOBП$'? IOBП$'? IOBП$'? IOBП$'? IOBП$'? IOBП$'? IOBП$'? IOBП$'? IOBП$'? IOBП$'? y(;ӟQqe̓,)K6YF +;d%YYVUe5Y]֐wʚ-Ⱥ/3y(|L\>.!Oʧ!dO|I,_^/ku|S%ߒ-ߖȿ+Q__!SZFx9ANda cI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KI]JRRԥ.%u)KբۃLRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]JRJRҥ.t)K)]  2Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)Ki]JRZҺ֥.u)8ZT6;k+N8N8N8N8N8N8N8N8N8N8N8c?|k7\y \+29dLeBw]̫>2##2*c2.2:^Vk{H.'rr9\N.'q8y's9|N>'pŝ̫_2##2*c2.2 ^W«Jx=MININININININININININININ)N)N)N)N)N)N)N)N)N)N)N)NiNiNiNiNiNiNiNiNiNiNiNimEyP&sdDFeLeBf^;{W=jyQNNNNNNNNNNNNYNYNYNYNYNYNYNYNYNYNYNYN9N9N9N9N9N9N9N9N9N9N9N9Ҕy5T&sdDFeLeBf^U|׃|{ VyNyNyNyNyNyNyNyNyNyNyNyNNNNNNNNNNNNNENENENENENENENENENENENEwyUX&sdDFeLeBf^}W5wx5[%N%N%N%N%N%N%N%N%N%N%N%NeNeNeNeNeNeNeNeNeNeNeNeNNNNNNNNNNNNNUNUNUNUNUNUNUNUNUNUNUNUN5N5N5N5N5N5N5N5N5N5N5N5NuNuNuNuNuNuNuNuNuNuNuNuN N N N N N N N N N N N Ν;9wrɹs'NΝ;9wr444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444p 8NS)p 8NKNKNKNKNKNKNKNKNKNKNKNKN+N+N+N+N+N+N+N+N+N+N+N+NkNkNkNkNkNkNkNkNkNkNkNkNNNNNNNNNNNNN[N[N[N[N[N[N[N[N[N[N[N[N;N;N;N;N;N;N;N;N;N;N;N;N{N{N{N{N{N{N{N{N{N{N{N{NNNNNNNNNNNNNGNGNGNGNGNGNGNGNGNGNGNGN'N'N'N'N'N'N'N'N'N'N'N'NgNgNgNgNgNgNgNgNgNgNgNgNWNWNWNWNWNWNWNWNWNWNWNWN7N7N7N7N7N7N7N7N7N7N7N7N$9IN$9IN$9IN9iN9iN9iÜ9sy$IΓ'9Ory,Yγg9r<)FdNNNNNNNNs8W|9s8q}9s>|8p>|C·9r>|!C·9r>|#G8q>|////////////????????????ggggggggggggg g g g g g g g g g g g ggggggggggggg0g0g0g0g0g0g0g0g0g0g0g0ggggggggggggg(g(g(g(g(g(g(g(g(g(g(g(ggggggggggggg8g8g8g8g8g8g8g8g8g8g8g8ggggggggggggg$g$g$g$g$g$g$g$g$g$g$g$ggggggggggggg4g4g4g4g4g4g4g4g4g4g4g4g g g g g g g g g g g g 7Yٮ\L|sdEeLeBfL rrr =3333333333SxqqqqqqqqkULLL^zgggggggg"g"g"z99999999888Wܞęęęęęęęę̙̙)ddddddddTTTTTTTTTTTT444444444444tttttttttttt LLLLLLLLLLLL,,,,,,,,,,,,llllllllllll\\\\\\\\\\\\<<<<<<<<<<<<||||||||||||ǜ9s>|1cǜ9s>| 'O8p>| ΧO9r>|)SΧO9r>|3g8q>|3BBBBBBBBBBBB""""""""""""bbbbbbbbbbbbRRRRRRRRRRRR222222222222rrrrrrrrrrrr JJJJJJJJJJJJ************jjjjjjjjjjjjZZZZZZZZZZZZ::::::::::::zzzzzzzzzzzzo2oQqYIk{olllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll|9s9s>|9s/8_p| /8_p|%KΗ/9_r|%KW8_q|+W8_q\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\.+c.̑1 ~)o.s.s.s.s.s.s.s.s.s.s.s.spppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssnpnpnpnpnpnpnpnpnpnpnpnp3NVv1##2*c2.!)q9ٜlN6'ds9ٜlN6'pr89N'p"'‰p"'‰p"'‰p('ʉr('ʉr('ʉrb'Ɖqb'Ɖqb'Ɖq8'Ήs8'Ήs8'Ήs'Ip'Ip'Ipssssssssssssr9\N.'rr9\N.'q8y's9|N>$$$$$$$$$$$$4444444444446m8qnƹs6m8qpppppppppppprrrrrrrrrrrrqqqqqqqqqqqqnιs;v9snιs;<<<<<<<<<<<<"""""""""""";8wps;8wp*q*q*q*q*q*q*q*q*q*q*q*q*s*s*s*s*s*s*s*s*s*s*s*spppppppppppprrrrrrrrrrrrqqqqqqqqqqqqssssssssssssjpjpjpjpjpjpjpjpjpjpjpjp A92"2&2!3I7&&&&&&&&&&&&666666666666............>>>>>>>>>>>>!!!!!!!!!!!!111111111111 ))))))))))))999999999999S)p 8NS)pZrZrZrZrZrZrZrZrZrZrZrZrZqZqZqZqZqZqZqZqZqZqZqZqZsZsZsZsZsZsZsZsZsZsZsZspppppppppppprrrrrrrrrrrrŹs.]8wqŹsnݜ9ws͹s7nݜ9wsqqqqqqqqqqqqùs={8pùs============^ν{9r˹s/^ν{9r:r:r:r:r:r:r:r:r:r:r:r:rǹs>}8qǹs~9sϹs?~9s:s:s:s:s:s:s:s:s:s:s:s:spppppppppppprrrrrrrrrrrruǸ5O7n< Z` C"X {"z=c:|>Ch|x!x_?ܟC<]WsZF>>e~~-zɎO{'B-ܷEoӹ;7?3~8 LǗ͙oz[x|.| ?79WjȾ~׋բ/o~>-Ѣ>q|y_qv_gX=zWoԣ7-LzϿ7j||[x_r{zt=:S?%~vz&/ߺ_)/0[+3xg-}?ܽ-|GϠOSC^W~B[4+[f<~˷z+yhVvo޼yS;N8s Ohևc?|~Z]cv~ z9X,cb`]X[tLGnj呛v떾~֣-PC_ŷzs?8Ńt_ܢϷwgcǗ`G:%C5β౬ `-,zB=|?XƻC=Ogm[eC?pk*/#'Vfrs˭?r֣oG?ҽǭmn&+nm[럿2=ڭ|?[~&zR_>VăX:+~䡿xEGKt~/~p~ǗIw-x66'XRk`?8c]NO盯ТG2*/Q}+V$C^Эq?KwK܏>e54Xk_v)~[ o'_` sYϿW:$P7K` `*;zNJ>EÛ5/X:X+ޮ/XqĹ,XKw;3魁?-yu(X_E?Zn7dy7w b\:#ۙ<Þ߿]{ ?'|};3GA΁>wH%XoFy%=qsdwOo=ֿ-<\oo=[xZYx7|gg>8Xc5̟17Ș#߲~|ǻxv1Y_ϫ劼(7T/n'3>u_c|y|zJQw3=<'Wم)=VE3=,Vޏ=Y zcyשC&oϸE+OG nW V=X1,өK 6uzx2z$Qprjpeppercorn-1.12/docs/000077500000000000000000000000001514752025000152575ustar00rootroot00000000000000prjpeppercorn-1.12/docs/.gitignore000066400000000000000000000000141514752025000172420ustar00rootroot00000000000000.venv build prjpeppercorn-1.12/docs/Makefile000066400000000000000000000015001514752025000167130ustar00rootroot00000000000000# Minimal makefile for Sphinx documentation # # You can set these variables from the command line, and also # from the environment for the first two. SPHINXOPTS ?= SPHINXBUILD ?= sphinx-build SOURCEDIR = source BUILDDIR = build PYTHON ?= python3 # Put it first so that "make" without argument is like "make help". help: @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) .PHONY: help Makefile # Catch-all target: route all unknown targets to Sphinx using the new # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). %: Makefile @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) clean: @$(SPHINXBUILD) -M clean "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) $(MAKE) -C clean .PHONY: reqs reqs: $(PYTHON) -m pip install -r source/requirements.txt prjpeppercorn-1.12/docs/README.md000066400000000000000000000002661514752025000165420ustar00rootroot00000000000000Project Peppercorn Documentation =================================== Setting up environment ---------------------- ``` python -m venv .venv source .venv/bin/activate make reqs ``` prjpeppercorn-1.12/docs/source/000077500000000000000000000000001514752025000165575ustar00rootroot00000000000000prjpeppercorn-1.12/docs/source/architecture/000077500000000000000000000000001514752025000212415ustar00rootroot00000000000000prjpeppercorn-1.12/docs/source/architecture/global.rst000066400000000000000000000000371514752025000232330ustar00rootroot00000000000000Global Routing =============== prjpeppercorn-1.12/docs/source/architecture/overview.rst000066400000000000000000000000231514752025000236340ustar00rootroot00000000000000Overview ========= prjpeppercorn-1.12/docs/source/architecture/routing.rst000066400000000000000000000000411514752025000234550ustar00rootroot00000000000000General Routing ================ prjpeppercorn-1.12/docs/source/architecture/tiles.rst000066400000000000000000000000141514752025000231060ustar00rootroot00000000000000Tiles ===== prjpeppercorn-1.12/docs/source/bitstream/000077500000000000000000000000001514752025000205515ustar00rootroot00000000000000prjpeppercorn-1.12/docs/source/bitstream/bitstream.rst000066400000000000000000000053571514752025000233070ustar00rootroot00000000000000Bitstream Format ================= Structure ---------- GateMate bitstreams consist of command blocks. There is no specific header to distinguish them from other files, but each one starts with the CMD_PATH command to set the first die on the chip. .. list-table:: :widths: 20 20 10 35 15 :header-rows: 1 * - Command - Length - CRC1 - Data - CRC2 * - 1 byte - 1 or 2 bytes - 2 bytes - n bytes - 2 bytes Each command byte is followed by data length, and that is one byte, except in the case of the CMD_FRAM command where we used two bytes in little endian format. CRC following it, contains current (header only) CRC and is written in big endian format. CRC is calculated with the so-called CRC-16/ISO-HDLC or CRC-16/X-25 algorithm ( poly 0x1021, init 0xffff, xored output 0xffff). Number of data bytes following is defined in the header. Second CRC contains complete CRC for all previous bytes delivered in block (including header). Some commands require additional bytes after CRC and those are fixed valued, in some cases they are just NOP bytes (0x00), and some require “execute command byte” (0x33) surrounded by multiple NOPs. Command list ------------------ .. list-table:: :widths: 25 5 7 63 :header-rows: 1 * - Command - Hex - Len Size - Description * - **CMD_PLL** - C1 - 1 - PLL configuration * - **CMD_CFGMODE** - C2 - 1 - Change configuration mode * - **CMD_CFGRST** - C3 - 1 - Reset all configuration latches * - **CMD_FLASH** - C5 - 1 - SPI flash access * - **CMD_DLXP** - C6 - 1 - Latch configuration X pattern * - **CMD_DLYP** - C7 - 1 - Latch configuration Y pattern * - **CMD_LXLYS** - C8 - 1 - Latch configuration X,Y location * - **CMD_ACLCU** - C9 - 1 - Address counter * - **CMD_DLCU** - CA - 1 - Configuration data * - **CMD_DRXP** - CC - 1 - RAM configuration X pattern * - **CMD_RXRYS** - CE - 1 - RAM configuration X,Y location * - **CMD_FRAM** - D2 - 2 - Block ram fill data * - **CMD_SERDES** - D7 - 1 - Serdes configuration * - **CMD_D2D** - D8 - 1 - Enable/disable die-to-die direction * - **CMD_PATH** - D9 - 1 - Enable forwarding configuration to die * - **CMD_JUMP** - DA - 1 - Jump to address in configuration * - **CMD_CHG_STATUS** - DB - 1 - FPGA configuration change * - **CMD_WAIT_PLL** - DC - 1 - Wait for PLL lock * - **CMD_SPLL** - DD - 1 - Select PLLs * - **CMD_SLAVE_MODE** - DE - 1 - Set SPI slave mode prjpeppercorn-1.12/docs/source/bitstream/commands.rst000066400000000000000000000237111514752025000231100ustar00rootroot00000000000000Bitstream Commands =================== CMD_PATH --------- To be able to specify die to program it is required to properly forward JTAG to specific direction and set mode accordingly. To program first die we use 0x10 value for this command and it first one to be executed. .. list-table:: :widths: 10 40 :header-rows: 1 * - Bit - Description * - 0 - Reset to default state * - 1 - Set to path to top * - 2 - Set to path to right * - 3 - Enable forwarding mode * - 4 - Enable programming mode .. warning:: This command have data after payload, and it consists of 9 bytes ``0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x00 0x00`` and it is used to execute this JTAG command. CMD_LXLYS ---------- Before sending any configuration data it is required to specify location of a specific TILE, and for latch configuration that configures all logic and IO blocks it is this command. .. list-table:: :widths: 10 10 40 :header-rows: 1 * - Byte - Range - Description * - 0 - 0..81 - X location (column) * - 1 - 0..65 - Y location (row) CMD_DLXP --------- Alternate way of setting location for configuration data is by setting pattern for both column and row. This commands sets row pattern and each bit represent one of the rows. There are total of 9 bytes used in payload. CMD_DLYP --------- This commands sets column pattern and each bit represent one of the columns. There are total of 11 bytes used in payload. CMD_DLCU --------- After location is set with one of previous commands, it is required to set a data payload. For configuring logic and IO tiles data payload is 112 bytes max. Payload can be smaller, but programming will act as it is zero padded till full size. This command is also used to configure RAM blocks, there we expect 27 bytes of payload maximum. CMD_RXRYS ---------- Similar to **CMD_LXLYS** command, there is a command to specify RAM block to program. .. list-table:: :widths: 10 10 40 :header-rows: 1 * - Byte - Range - Description * - 0 - 0..3 - X location (column) * - 1 - 0..7 - Y location (row) CMD_DRXP --------- As alternative to **CMD_RXRYS** command we can use this one to specify a pattern, note that each bit of one byte payload is used to set one of 4 columns. CMD_CFGRST ----------- Resets all configuration latches to value of a byte from payload, except active SPI controller and configuration PLL. CMD_ACLCU ---------- Defines start address for following block memory init data. .. list-table:: :widths: 10 40 :header-rows: 1 * - Byte - Description * - 0 - addr[ 7:0] * - 1 - addr[15:8] CMD_FRAM --------- Payload contains up to 5120 bytes of RAM content. Start address must be previously defined by **CMD_ACLCU** command. And RAM block must be selected with **CMD_RXRYS** or **CMD_DRXP** command. CMD_PLL -------- .. list-table:: :widths: 10 40 :header-rows: 1 * - Byte - Description * - 0 - PLL Config data 0 * - 1 - PLL Config data 1 * - 2 - PLL Config data 2 * - 3 - PLL Config data 3 * - 4 - PLL Config data 4 * - 5 - PLL Config data 5 * - 6 - PLL Config data 6 * - 7 - PLL Config data 7 * - 8 - PLL Config data 8 * - 9 - PLL Config data 9 * - 10 - PLL Config data 10 * - 11 - PLL Config data 11 * - 12 - Config data for clock matrix CLKIN PLL0 * - 13 - Config data for clock matrix CLKIN PLL1 * - 14 - Config data for clock matrix CLKIN PLL2 * - 15 - Config data for clock matrix CLKIN PLL3 * - 16 - Config data for clock matrix CLKMUX PLL0 byte 0 * - 17 - Config data for clock matrix CLKMUX PLL0 byte 1 * - 18 - Config data for clock matrix CLKMUX PLL1 byte 0 * - 19 - Config data for clock matrix CLKMUX PLL1 byte 1 * - 20 - Config data for clock matrix CLKMUX PLL2 byte 0 * - 21 - Config data for clock matrix CLKMUX PLL2 byte 1 * - 22 - Config data for clock matrix CLKMUX PLL3 byte 0 * - 23 - Config data for clock matrix CLKMUX PLL3 byte 1 .. warning:: This command have data after payload, and it consists of 6 NOP bytes ``0x00 0x00 0x00 0x00 0x00 0x00``. CMD_SPLL --------- .. list-table:: :widths: 10 40 :header-rows: 1 * - Bit - Description * - 0 - Write config for PLL0 * - 1 - Write config for PLL1 * - 2 - Write config for PLL2 * - 3 - Write config for PLL2 * - 4 - Configuration set for PLL0 * - 5 - Configuration set for PLL1 * - 6 - Configuration set for PLL2 * - 7 - Configuration set for PLL3 There are two configuration sets, that could be set for each PLL. .. warning:: Value 0x00 is special case and it is used for writing to all 4 PLLs, same as 0x0F CMD_WAIT_PLL ------------- Wait for PLL lock. .. list-table:: :widths: 10 40 :header-rows: 1 * - Bit - Description * - 0 - Wait for PLL0 * - 1 - Wait for PLL1 * - 2 - Wait for PLL2 * - 3 - Wait for PLL3 CMD_CHG_STATUS --------------- .. list-table:: :widths: 10 10 40 :header-rows: 1 * - Byte - Bit - Description * - 0 - 0 - Configuration done * - - 1 - Stop configuration * - - 2 - Reconfiguration enable * - - 3 - Enable CPE configuration * - - 4 - CPE reset * - - 5 - Fill RAM enable * - - 6..7 - Unused * - 1 - 0..3 - Configuration mode * - - 4 - Select configuration mode * - - 5..7 - Unused * - 2 - 0 - Enable GPIO bank S1 * - - 1 - Enable GPIO bank S2 * - - 2 - Unused * - - 3 - Enable GPIO bank S3 (CFG) * - - 4 - Enable GPIO bank E1 * - - 5 - Enable GPIO bank E2 * - - 6..7 - Unused * - 3 - 0 - Enable GPIO bank N1 * - - 1 - Enable GPIO bank N2 * - - 2..3 - Unused * - - 4 - Enable GPIO bank W1 * - - 5 - Enable GPIO bank W2 * - - 6..7 - Unused * - 4 - 0 - PLL0 PLL_RST_N * - - 1 - PLL0 PLL_EN * - - 2 - PLL0 PLL_AUTN * - - 3 - PLL0 SET_SEL * - - 4 - PLL0 USR_SET * - - 5 - PLL0 USR_CLK_REF * - - 6 - PLL0 CLK_OUT_EN * - - 7 - PLL0 LOCK_REQ * - 5 - 0..2 - PLL0 AUTN_CT_I[2:0], should be 001 * - - 3 - PLL0 CLK180_DOUB * - - 4 - PLL0 CLK270_DOUB * - - 5..6 - Unused * - - 7 - PLL0 USR_CLK_OUT * - 6 - 0 - PLL1 PLL_RST_N * - - 1 - PLL1 PLL_EN * - - 2 - Unused * - - 3 - PLL1 SET_SEL * - - 4 - PLL1 USR_SET * - - 5 - PLL1 USR_CLK_REF * - - 6 - PLL1 CLK_OUT_EN * - - 7 - PLL1 LOCK_REQ * - 7 - 0..2 - Unused * - - 3 - PLL1 CLK180_DOUB * - - 4 - PLL1 CLK270_DOUB * - - 5..6 - Unused * - - 7 - PLL1 USR_CLK_OUT * - 8 - 0 - PLL2 PLL_RST_N * - - 1 - PLL2 PLL_EN * - - 2 - Unused * - - 3 - PLL2 SET_SEL * - - 4 - PLL2 USR_SET * - - 5 - PLL2 USR_CLK_REF * - - 6 - PLL2 CLK_OUT_EN * - - 9 - PLL2 LOCK_REQ * - 7 - 0..2 - Unused * - - 3 - PLL2 CLK180_DOUB * - - 4 - PLL2 CLK270_DOUB * - - 5..6 - Unused * - - 7 - PLL2 USR_CLK_OUT * - 10 - 0 - PLL3 PLL_RST_N * - - 1 - PLL3 PLL_EN * - - 2 - Unused * - - 3 - PLL3 SET_SEL * - - 4 - PLL3 USR_SET * - - 5 - PLL3 USR_CLK_REF * - - 6 - PLL3 CLK_OUT_EN * - - 9 - PLL3 LOCK_REQ * - 11 - 0..2 - Unused * - - 3 - PLL3 CLK180_DOUB * - - 4 - PLL3 CLK270_DOUB * - - 5..6 - Unused * - - 7 - PLL3 USR_CLK_OUT .. warning:: This command have data after payload, and it consists of 9 bytes ``0x00 0x00 0x00 0x00 0x33 0x00 0x00 0x00 0x00`` and it is used to execute this JTAG command. CMD_D2D -------- .. list-table:: :widths: 10 40 :header-rows: 1 * - Bit - Description * - 0 - Enable D2D on north * - 1 - Enable D2D on east * - 2 - Enable D2D on south * - 3 - Enable D2D on west CMD_SERDES ----------- CMD_JUMP -------- Jump to address in SPI flash. .. list-table:: :widths: 10 40 :header-rows: 1 * - Byte - Description * - 0 - addr[7:0] * - 1 - addr[15:8] * - 2 - addr[23:16] * - 3 - addr[31:24] .. warning:: This command requires data after payload, and it consists of 2 NOP bytes ``0x00 0x00``. CMD_CFGMODE ------------ .. list-table:: :widths: 10 10 40 :header-rows: 1 * - Byte - Bit - Description * - 0 - - Number of CRC retries * - 1 - - CRC error behaviour (0: checked, 1: ignored, 2: unused) * - 2 - 0..1 - SPI bus IO width for `cmd` (0: single, 1: dual, 3: quad) * - - 2..3 - SPI bus IO width for `addr` (0: single, 1: dual, 3: quad) * - - 4..5 - SPI bus IO width for `mode` (0: single, 1: dual, 3: quad) * - - 6..7 - SPI bus IO width for `txdata` (0: single, 1: dual, 3: quad) * - 3 - 0..1 - SPI bus IO width for `rxdata` (0: single, 1: dual, 3: quad) * - - 2..7 - Number of dummy cycles between `addr` and `rxdata` * - 4 - - Flash `addr` field length * - 5 - - Flash `READ` command .. warning:: This command have data after payload, and it consists of 3 NOP bytes ``0x00 0x00 0x00``. CMD_FLASH ---------- CMD_SLAVE_MODE --------------- .. warning:: This command have data after payload, and it consists of 3 NOP bytes ``0x00 0x00 0x00``. prjpeppercorn-1.12/docs/source/conf.py000066400000000000000000000021171514752025000200570ustar00rootroot00000000000000# Configuration file for the Sphinx documentation builder. # # For the full list of built-in configuration values, see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html # -- Project information ----------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = 'Project Peppercorn' copyright = '2024, YosysHQ' author = 'YosysHQ' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration extensions = ['sphinx_rtd_theme'] templates_path = ['_templates'] exclude_patterns = [] # -- Options for HTML output ------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output html_theme = 'sphinx_rtd_theme' html_theme_options = { "collapse_navigation": True, "sticky_navigation": True, "includehidden": True, "navigation_depth": 4, "titles_only": False } html_static_path = ['_static'] prjpeppercorn-1.12/docs/source/index.rst000066400000000000000000000005171514752025000204230ustar00rootroot00000000000000Welcome to Project Peppercorn ============================== .. toctree:: :maxdepth: 2 :caption: Architecture architecture/overview.rst architecture/tiles.rst architecture/routing.rst architecture/global.rst .. toctree:: :maxdepth: 2 :caption: Bitstream bitstream/bitstream.rst bitstream/commands.rst prjpeppercorn-1.12/docs/source/requirements.txt000066400000000000000000000000311514752025000220350ustar00rootroot00000000000000sphinx sphinx_rtd_theme prjpeppercorn-1.12/environment.sh000066400000000000000000000003061514752025000172260ustar00rootroot00000000000000#!/usr/bin/env bash SCRIPT_PATH=$(readlink -f "${BASH_SOURCE:-$0}") SCRIPT_DIR=$(dirname "$SCRIPT_PATH") PYTHONLIBS_DIR="${SCRIPT_DIR}/gatemate" export PYTHONPATH="${PYTHONLIBS_DIR}:${PYTHONPATH}" prjpeppercorn-1.12/gatemate/000077500000000000000000000000001514752025000161165ustar00rootroot00000000000000prjpeppercorn-1.12/gatemate/__init__.py000066400000000000000000000000001514752025000202150ustar00rootroot00000000000000prjpeppercorn-1.12/gatemate/chip.py000066400000000000000000000610461514752025000174220ustar00rootroot00000000000000# # prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools # # Copyright (C) 2024 The Project Peppercorn Authors. # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # import die import os from die import Die, Location, Connection from dataclasses import dataclass from typing import List, Dict from timing import decompress_timing DATABASE_VERSION = 1.12 @dataclass(eq=True, order=True) class Pad: x : int y : int name : str bel : str function : str bank : int flags : int ddr : Location @dataclass class Bank: die : str bank: str @dataclass class TimingDelay: min : int typ : int max : int def __add__(self, other): if not isinstance(other, TimingDelay): return NotImplemented return TimingDelay(self.min + other.min, self.typ + other.typ, self.max + other.max) def __sub__(self, other): if not isinstance(other, TimingDelay): return NotImplemented return TimingDelay(self.min - other.min, self.typ - other.typ, self.max - other.max) @dataclass class Timing: rise : TimingDelay fall : TimingDelay def __add__(self, other): if not isinstance(other, Timing): return NotImplemented return Timing(self.rise + other.rise, self.fall + other.fall) def __sub__(self, other): if not isinstance(other, Timing): return NotImplemented return Timing(self.rise - other.rise, self.fall - other.fall) @dataclass class Chip: name : str die_width : int die_height : int dies : Dict[str,Die] packages: Dict[str,Dict[str, List[Bank]]] not_exist: Dict[str,List[str]] def max_row(self): return self.die_height * die.num_rows() - 3 def max_col(self): return self.die_width * die.num_cols() - 3 def get_tile_types(self,x,y): x_pos = (x + 2) % die.num_cols() - 2 y_pos = (y + 2) % die.num_rows() - 2 return die.get_tile_types(x_pos,y_pos) def get_tile_type(self,x,y): x_pos = (x + 2) % die.num_cols() - 2 y_pos = (y + 2) % die.num_rows() - 2 return die.get_tile_type(x_pos,y_pos) def get_tile_info(self,x,y): x_pos = (x + 2) % die.num_cols() - 2 y_pos = (y + 2) % die.num_rows() - 2 x_die = (x + 2) // die.num_cols() y_die = (y + 2) // die.num_rows() die_num = x_die + y_die * self.die_width return die.get_tile_info(die_num, x_pos, y_pos) def create_conn(self, conn, src_x,src_y, src, dst_x, dst_y, dst, delay="del_dummy"): key_val = f"{src_x}/{src_y}/{src}" key = Connection(src_x, src_y, src, "", False) item = Connection(dst_x, dst_y, dst, delay,True) if key_val not in conn: conn[key_val] = list() conn[key_val].append(key) conn[key_val].append(item) def get_connections(self): conn = dict() for d in self.dies.values(): d.create_in_die_connections(conn) if self.name=="CCGM1A2": for x in range(27, 163): if x == 27: # only 7 signals only from bottom of upper to top of lower p_range = range(2, 9) else: p_range = range(1, 9) for p in p_range: plane = f"{p:02d}" offset_y = 132 + 2 sbb_y = -1 + offset_y if x % 2 == 1 else 0 + offset_y sbt_y = 129 if x % 2 == 1 else 130 self.create_conn(conn, x, sbb_y, f"{die.get_sb_type(x,sbb_y-offset_y)}.P{plane}.Y4", x, sbt_y, f"{die.get_sb_type(x,sbt_y)}.P{plane}.D2_4_D2D", delay="del_D2D") if x > 27 and (x != 28 or p > 4): # no connection for 27, and for 28 just 4 signals from lower to upper if x > 160: self.create_conn(conn, x, sbt_y, f"{die.get_sb_type(x,sbt_y)}.P{plane}.Y2", x, sbb_y, f"{die.get_sb_type(x,sbb_y-offset_y)}.P{plane}.D2_2_D2D", delay="del_D2D") else: self.create_conn(conn, x, 131, f"TES.MDIE2.P{p}", x, sbb_y, f"{die.get_sb_type(x,sbb_y-offset_y)}.P{plane}.D2_2_D2D", delay="del_D2D") return conn.items() def get_packages(self): return self.packages def get_bank_number(self, bank): match bank: case 'N1' : return 0 case 'N2' : return 1 case 'E1' : return 2 case 'E2' : return 3 case 'W1' : return 4 case 'W2' : return 5 case 'S1' : return 6 case 'S2' : return 7 case 'S3' : return 8 case _ : return -1 def get_package_pads(self, package): pads = [] pkg = self.packages[package] not_exist = self.not_exist[package] for name, banks in pkg.items(): for bank in banks: for p in ["A","B"]: for num in range(9): d = self.dies[bank.die] ddr = d.ddr_i[bank.bank] loc = d.io_pad_names[bank.bank][p][num] pad_name = f"IO_{name}_{p}{num}" flags = 0 # mark clock sources if bank.bank == "W2" and p == "A" and num in [5,6,7,8]: flags = 8-num+1 # will be 1-4 for different clock sources if pad_name not in not_exist: pads.append(Pad(loc.x + d.offset_x,loc.y + d.offset_y,pad_name,"IOSEL","",self.get_bank_number(bank.bank),flags,ddr)) return pads CCGM1_DEVICES = { "CCGM1A1": Chip("CCGM1A1", 1, 1, { "1A" : Die("1A", 0, 0) }, { "FBGA324" : { "EA" : [ Bank("1A", "N1") ], "EB" : [ Bank("1A", "N2") ], "NA" : [ Bank("1A", "E1") ], "NB" : [ Bank("1A", "E2") ], "WA" : [ Bank("1A", "S3") ], "WB" : [ Bank("1A", "S1") ], "WC" : [ Bank("1A", "S2") ], "SA" : [ Bank("1A", "W1") ], "SB" : [ Bank("1A", "W2") ] } }, { # non existing pins "FBGA324" : [] }), "CCGM1A2": Chip("CCGM1A2", 1, 2, { "1A" : Die("1A", 0, 0), "1B" : Die("1B", 0, 1) }, { "FBGA324" : { "EA" : [ Bank("1B", "N1") ], "EB" : [ Bank("1B", "N2") ], "NA" : [ Bank("1A", "E1"), Bank("1B", "E1") ], "NB" : [ Bank("1A", "E2") ], "WA" : [ Bank("1A", "S3") ], "WB" : [ Bank("1A", "N1"), Bank("1B", "S1") ], "WC" : [ Bank("1A", "S2") ], "SA" : [ Bank("1A", "W1") ], "SB" : [ Bank("1A", "W2"), Bank("1B", "W2") ] } }, { # non existing pins "FBGA324" : [] }), "CCGM1A4": Chip("CCGM1A4", 2, 2, { "1A" : Die("1A", 0, 0), "1B" : Die("1B", 0, 1), "2A" : Die("2A", 1, 0), "2B" : Die("2B", 1, 1) }, { "FBGA324" : { "EA" : [ Bank("1B", "N1") ], "EB" : [ Bank("1B", "N2") ], "NA" : [ Bank("1A", "E1"), Bank("1B", "E1"), Bank("2A", "E1"), Bank("2B", "E1") ], "NB" : [ Bank("2A", "N1"), Bank("2B", "S1") ], "WA" : [ Bank("1A", "S3") ], "WB" : [ Bank("1A", "N1"), Bank("1B", "S1") ], "WC" : [ Bank("1A", "S2") ], "SA" : [ Bank("1A", "W1") ], "SB" : [ Bank("1A", "W2"), Bank("1B", "W2"), Bank("2A", "W2"), Bank("2B", "W2") ] } }, { # non existing pins "FBGA324" : [ "IO_SB_A0","IO_SB_B0", "IO_SB_A1","IO_SB_B1", "IO_SB_A2","IO_SB_B2", "IO_SB_A3","IO_SB_B3" ] }), } def get_version(): return DATABASE_VERSION def get_all_devices(): return CCGM1_DEVICES def get_device(name): return CCGM1_DEVICES[name] def convert_delay(d): return Timing(TimingDelay(d.rise.min, d.rise.typ, d.rise.max), TimingDelay(d.fall.min, d.fall.typ, d.fall.max)) def convert_delay_val(d): return Timing(TimingDelay(d.min, d.typ, d.max), TimingDelay(d.min, d.typ, d.max)) def convert_ram_delay(d): return Timing(TimingDelay(d.time1.min, d.time1.typ, d.time1.max), TimingDelay(d.time2.min, d.time2.typ, d.time2.max)) def check_dly_available(): current_dir = os.path.dirname(os.path.abspath(__file__)) return os.path.exists(os.path.join(current_dir, "..", "delay", "cc_worst_spd_dly.dly")) def get_timings(name): val = dict() current_dir = os.path.dirname(os.path.abspath(__file__)) timing_data = decompress_timing(os.path.join(current_dir, "..", "delay", f"cc_{name}_dly.dly")) for i1 in range(4): # [1..4] for i2 in range(8): # [1..8] for i3 in range(4): # [1..4] for i4 in range(12): # [1..12] for i5 in range(5): # [0..4] for i6 in range(8): # [0..7] d = timing_data.SB_del_tile_arr[i1][i2][i3][i4][i5][i6] if d.rise.min == 123456: # not connected continue x = i2+1 y = i3+1 y = 2*y if (x % 2 == 0) else 2*y-1 name = f"sb_del_t{i1+1}_x{x}_y{y}_p{i4+1}_d{i5}_s{i6}" val[name] = convert_delay(d) for i1 in range(2): # [1..2] for i2 in range(8): # [1..8] for i3 in range(8): # [1..8] for i4 in range(12): # [1..12] for i5 in range(8): # [0..7] d = timing_data.IM_del_tile_arr[i1][i2][i3][i4][i5] if d.rise.min == 123456: # not connected continue name = f"im_x{i2+1}_y{i3+1}_p{i4+1}_d{i5}_path{i1+1}" val[name] = convert_delay(d) for i1 in range(8): # [1..8] for i2 in range(8): # [1..8] for i3 in range(4): # [9..12] for i4 in range(4): # [0..3] d = timing_data.OM_del_tile_arr[i1][i2][i3][i4] if d.rise.min == 123456: # not connected continue name = f"om_x{i1+1}_y{i2+1}_p{i3+9}_d{i4}" val[name] = convert_delay(d) cnt_ccy1 = 1 cnt_cpy1 = 1 cnt_pcy1 = 1 cnt_ppy1 = 1 for i1 in range(10): # [0..9] for i2 in range(19): # [1..19] for i3 in range(10): # [1..10] d = timing_data.CPE_del_tile_arr[i1][i2][i3] if d.name == "CPE": # not used continue # These are wrong names in timing database # and need fixing if d.name == "_ROUTING_CINY2_COUTY": d.name = "_ROUTING_CINY2_COUTY2" if d.name == "_ROUTING_PINY2_POUTY": d.name = "_ROUTING_PINY2_POUTY2" if d.name == "_ROUTING_CINY1_COUTY": if cnt_ccy1 == 1: d.name = "_ROUTING_CINY1_COUTY1" cnt_ccy1 = 2 else: d.name = "_ROUTING_CINY1_COUTY2" cnt_ccy1 = 1 if d.name == "_ROUTING_CINY1_POUTY": if cnt_cpy1 == 1: d.name = "_ROUTING_CINY1_POUTY1" cnt_cpy1 = 2 else: d.name = "_ROUTING_CINY1_POUTY2" cnt_cpy1 = 1 if d.name == "_ROUTING_PINY1_COUTY": if cnt_pcy1 == 1: d.name = "_ROUTING_PINY1_COUTY1" cnt_pcy1 = 2 else: d.name = "_ROUTING_PINY1_COUTY2" cnt_pcy1 = 1 if d.name == "_ROUTING_PINY1_POUTY": if cnt_ppy1 == 1: d.name = "_ROUTING_PINY1_POUTY1" cnt_ppy1 = 2 else: d.name = "_ROUTING_PINY1_POUTY2" cnt_ppy1 = 1 val[d.name] = convert_delay(d.val) for i1 in range(165): # [-2..162] for i2 in range(4): # [1..4] for i3 in range(12): # [1..12] for i4 in range(5): # [0..4] for i5 in range(8): # [0..7] d = timing_data.SB_del_rim_arr[i1][i2][i3][i4][i5] if d.rise.min == 123456: # not connected continue name = f"sb_rim_xy{i1-2}_s{i2+1}_p{i3+1}_d{i4}_s{i5}" val[name] = convert_delay(d) inputs_all = [ 'CLOCK0','CLOCK1','CLOCK2','CLOCK3', 'SB_P1', 'SB_P2', 'SB_P3', 'SB_P4', 'SB_P5', 'SB_P6', 'SB_P7', 'SB_P8'] inputs_left_bot = [ 'MDIE_P1', 'MDIE_P2', 'MDIE_P3', 'MDIE_P4', 'MDIE_P5', 'MDIE_P6', 'MDIE_P7', 'MDIE_P8' ] inputs_right_top = [ 'COUTX', 'COUTY1', 'COUTY2', 'POUTX', 'POUTY1', 'POUTY2', 'RAM_O1', 'RAM_O2' ] inputs_bot = [ 'P_CINY1', 'P_CINY2', 'P_PINY1', 'P_PINY2'] outputs_right_top = [ 'MDIE_P1', 'MDIE_P2', 'MDIE_P3', 'MDIE_P4', 'MDIE_P5', 'MDIE_P6', 'MDIE_P7', 'MDIE_P8' ] outputs_left_bot = [ 'CINX', 'CINY1', 'CINY2', 'PINX', 'PINY1', 'PINY2', 'DUMMY', 'DUMMY'] for i1 in range(165): # [-2..162] for i2 in range(4): # [1..4] inputs = inputs_all outputs = [] match i2: case 0 | 1 : # right, top inputs += inputs_right_top inputs += [ 'DUMMY', 'DUMMY', 'DUMMY' ,'DUMMY'] outputs += outputs_right_top case 2: # left inputs += inputs_left_bot inputs += [ 'DUMMY', 'DUMMY', 'DUMMY' ,'DUMMY'] outputs += outputs_left_bot case 3: # bottom inputs += inputs_left_bot + inputs_bot outputs += outputs_left_bot for i3 in range(24): # [1..24] for i4 in range(8): # [1..8] d = timing_data.Edge_del_arr[i1][i2][i3][i4] if d.rise.min == 123456: # not connected continue name = f"edge_xy{i1-2}_s{i2+1}_{inputs[i3]}_{outputs[i4]}" val[name] = convert_delay(d) inputs = [ 'CLOCK0','CLOCK1','CLOCK2','CLOCK3','OUT1','OUT2','OUT3','OUT4','GPIO_IN','RESET','DDR'] outputs = [ 'IN1','IN2','GPIO_OUT','GPIO_EN' ] for i1 in range(11): # [1..11] for i2 in range(4): # [1..4] d = timing_data.IO_SEL_del_arr[i1][i2] if d.rise.min == 123456: # not connected continue name = f"io_sel_{inputs[i1]}_{outputs[i2]}" val[name] = convert_delay(d) inputs = [ 'CLK0','CLK1','CLK2','CLK3','SER_CLK','SPI_CLK','JTAG_CLK'] outputs = [ 'CLK_REF0','CLK_REF1','CLK_REF2','CLK_REF3' ] for i1 in range(7): # [1..7] for i2 in range(4): # [1..4] d = timing_data.CLKIN_del_arr[i1][i2] if d.rise.min == 123456: # not connected continue name = f"clkin_{inputs[i1]}_{outputs[i2]}" val[name] = convert_delay(d) inputs = [ 'CLK0_0','CLK90_0','CLK180_0','CLK270_0','CLK_REF_OUT0', 'CLK0_1','CLK90_1','CLK180_1','CLK270_1','CLK_REF_OUT1', 'CLK0_2','CLK90_2','CLK180_2','CLK270_2','CLK_REF_OUT2', 'CLK0_3','CLK90_3','CLK180_3','CLK270_3','CLK_REF_OUT3', 'USR_GLB0','USR_GLB1','USR_GLB2','USR_GLB3', 'USR_FB0', 'USR_FB1', 'USR_FB2', 'USR_FB3' ] outputs = [ 'GLB0','GLB1','GLB2','GLB3', 'CLK_FB0','CLK_FB1','CLK_FB2','CLK_FB3'] for i1 in range(28): # [1..28] for i2 in range(8): # [1..8] d = timing_data.GLBOUT_del_arr[i1][i2] if d.rise.min == 123456: # not connected continue name = f"glbout_{inputs[i1]}_{outputs[i2]}" val[name] = convert_delay(d) # All feedback delays calculated are same, we just take one val["glbout_FEEDBACK_delay"] = val["glbout_CLK0_0_CLK_FB0"] - val["glbout_CLK0_0_GLB0"] inputs = ['clk_ref_i','clock_core0_i','adpll_enable_i','adpll_status_read_i','locked_steady_reset_i','autn_en_i','reset_n_i'] outputs = ['clk_core0_o','clk_core90_o','clk_core180_o','clk_core270_o', 'pll_locked_o', 'pll_locked_steady_o'] for i1 in range(7): # [1..7] for i2 in range(6): # [1..6] d = timing_data.PLL_del_arr[i1][i2] if d.rise.min == 123456: # not connected continue name = f"pll_{inputs[i1]}_{outputs[i2]}" val[name] = convert_delay(d) for i in range(1,15): item = timing_data.FPGA_ram_del_1.del_entry[i] name = "RAM_NOECC_" match item.key: case 1: name += f"IOPATH_{i}" case 2: name += f"SETUPHOLD_{i-3}" case 4: name += "WIDTH" val[name] = convert_ram_delay(timing_data.FPGA_ram_del_1.del_entry[i]) val["RAM_NOECC_IOPATH_4"] = Timing(TimingDelay(0,0,0), TimingDelay(0,0,0)) for i in range(1,16): item = timing_data.FPGA_ram_del_2.del_entry[i] name = "RAM_ECC_" match item.key: case 1: name += f"IOPATH_{i}" case 2: name += f"SETUPHOLD_{i-4}" case 4: name += "WIDTH" val[name] = convert_ram_delay(timing_data.FPGA_ram_del_2.del_entry[i]) for i in range(1,16): item = timing_data.FPGA_ram_del_3.del_entry[i] name = "RAM_REG_" match item.key: case 1: name += f"IOPATH_{i}" case 2: name += f"SETUPHOLD_{i-4}" case 4: name += "WIDTH" val[name] = convert_ram_delay(timing_data.FPGA_ram_del_3.del_entry[i]) #val["del_rec_0"] = convert_delay(timing_data.timing_delays.del_rec_0.val) val["del_min_route_SB"] = convert_delay(timing_data.timing_delays.del_min_route_SB.val) val["del_violation_common"] = convert_delay_val(timing_data.timing_delays.del_violation_common.val) val["del_dummy"] = convert_delay(timing_data.timing_delays.del_dummy.val) val["del_Hold_D_L"] = convert_delay_val(timing_data.timing_delays.del_Hold_D_L.val) val["del_Setup_D_L"] = convert_delay_val(timing_data.timing_delays.del_Setup_D_L.val) val["del_Hold_RAM"] = convert_delay_val(timing_data.timing_delays.del_Hold_RAM.val) val["del_Setup_RAM"] = convert_delay_val(timing_data.timing_delays.del_Setup_RAM.val) val["del_Hold_SN_RN"] = convert_delay_val(timing_data.timing_delays.del_Hold_SN_RN.val) val["del_Setup_SN_RN"] = convert_delay_val(timing_data.timing_delays.del_Setup_SN_RN.val) val["del_Hold_RN_SN"] = convert_delay_val(timing_data.timing_delays.del_Hold_RN_SN.val) val["del_Setup_RN_SN"] = convert_delay_val(timing_data.timing_delays.del_Setup_RN_SN.val) val["del_bot_couty2"] = convert_delay(timing_data.timing_delays.del_bot_couty2.val) val["del_bot_glb_couty2"] = convert_delay(timing_data.timing_delays.del_bot_glb_couty2.val) val["del_bot_SB_couty2"] = convert_delay(timing_data.timing_delays.del_bot_SB_couty2.val) val["del_bot_pouty2"] = convert_delay(timing_data.timing_delays.del_bot_pouty2.val) val["del_bot_glb_pouty2"] = convert_delay(timing_data.timing_delays.del_bot_glb_pouty2.val) val["del_bot_SB_pouty2"] = convert_delay(timing_data.timing_delays.del_bot_SB_pouty2.val) val["del_left_couty2"] = convert_delay(timing_data.timing_delays.del_left_couty2.val) val["del_left_glb_couty2"] = convert_delay(timing_data.timing_delays.del_left_glb_couty2.val) val["del_left_SB_couty2"] = convert_delay(timing_data.timing_delays.del_left_SB_couty2.val) val["del_left_pouty2"] = convert_delay(timing_data.timing_delays.del_left_pouty2.val) val["del_left_glb_pouty2"] = convert_delay(timing_data.timing_delays.del_left_glb_pouty2.val) val["del_left_SB_pouty2"] = convert_delay(timing_data.timing_delays.del_left_SB_pouty2.val) val["del_CPE_CP_Q"] = convert_delay(timing_data.timing_delays.del_CPE_CP_Q.val) val["del_CPE_S_Q"] = convert_delay(timing_data.timing_delays.del_CPE_S_Q.val) val["del_CPE_R_Q"] = convert_delay(timing_data.timing_delays.del_CPE_R_Q.val) val["del_CPE_D_Q"] = convert_delay(timing_data.timing_delays.del_CPE_D_Q.val) val["del_RAM_CLK_DO"] = convert_delay(timing_data.timing_delays.del_RAM_CLK_DO.val) val["del_GLBOUT_sb_big"] = convert_delay(timing_data.timing_delays.del_GLBOUT_sb_big.val) val["del_sb_drv"] = convert_delay(timing_data.timing_delays.del_sb_drv.val) val["del_CP_carry_path"] = convert_delay(timing_data.timing_delays.del_CP_carry_path.val) val["del_CP_prop_path"] = convert_delay(timing_data.timing_delays.del_CP_prop_path.val) val["del_special_RAM_I"] = convert_delay(timing_data.timing_delays.del_special_RAM_I.val) val["del_RAMO_xOBF"] = convert_delay(timing_data.timing_delays.del_RAMO_xOBF.val) val["del_GLBOUT_IO_SEL"] = convert_delay(timing_data.timing_delays.del_GLBOUT_IO_SEL.val) val["del_IO_SEL_Q_out"] = convert_delay(timing_data.timing_delays.del_IO_SEL_Q_out.val) val["del_IO_SEL_Q_in"] = convert_delay(timing_data.timing_delays.del_IO_SEL_Q_in.val) val["in_delayline_per_stage"] = convert_delay(timing_data.timing_delays.in_delayline_per_stage.val) val["out_delayline_per_stage"] = convert_delay(timing_data.timing_delays.out_delayline_per_stage.val) val["del_IBF"] = convert_delay(timing_data.timing_delays.del_IBF.val) val["del_OBF"] = convert_delay(timing_data.timing_delays.del_OBF.val) val["del_r_OBF"] = convert_delay(timing_data.timing_delays.del_r_OBF.val) val["del_TOBF_ctrl"] = convert_delay(timing_data.timing_delays.del_TOBF_ctrl.val) val["del_LVDS_IBF"] = convert_delay(timing_data.timing_delays.del_LVDS_IBF.val) val["del_LVDS_OBF"] = convert_delay(timing_data.timing_delays.del_LVDS_OBF.val) val["del_ddel_LVDS_r_OBFummy"] = convert_delay(timing_data.timing_delays.del_LVDS_r_OBF.val) val["del_LVDS_TOBF_ctrl"] = convert_delay(timing_data.timing_delays.del_LVDS_TOBF_ctrl.val) val["del_CP_clkin"] = convert_delay(timing_data.timing_delays.del_CP_clkin.val) val["del_CP_enin"] = convert_delay(timing_data.timing_delays.del_CP_enin.val) val["del_D2D"] = Timing(TimingDelay(1000,1000,1000), TimingDelay(1000,1000,1000)) #val["del_preplace"] = convert_delay(timing_data.timing_delays.del_preplace.val) cnt_comb_cy1 = 1 cnt_comb_py1 = 1 for i1 in range(42): # [1..42] d = timing_data.timing_delays.del_CPE_timing_mod[i1] if d.name == "": # not used continue if d.name == "comb12_compout_COUTY": if cnt_comb_cy1 == 1: d.name = "comb12_compout_COUTY1" cnt_comb_cy1 = 2 else: d.name = "comb12_compout_COUTY2" cnt_comb_cy1 = 1 if d.name == "comb12_compout_POUTY": if cnt_comb_py1 == 1: d.name = "comb12_compout_POUTY1" cnt_comb_py1 = 2 else: d.name = "comb12_compout_POUTY2" cnt_comb_py1 = 1 val[d.name] = convert_delay(d.val) return val prjpeppercorn-1.12/gatemate/die.py000066400000000000000000007233421514752025000172440ustar00rootroot00000000000000# # prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools # # Copyright (C) 2024 The Project Peppercorn Authors. # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # import re from enum import Enum from dataclasses import dataclass PLL_X_POS = 33 PLL_Y_POS = 131 SERDES_X_POS = 1 SERDES_Y_POS = 121 CTRL_X_POS = -2 CTRL_Y_POS = -2 RAM_INPUT = 0 RAM_OUTPUT = 1 def max_row(): return 131 def max_col(): return 163 def num_rows(): return max_row() + 3 def num_cols(): return max_col() + 3 def is_sb(x,y): if (x>=-1 and x<=162 and y>=-1 and y<=130): return (x+1) % 2 == (y+1) % 2 return False def is_sb_big(x,y): if (x>=-1 and x<=162 and y>=-1 and y<=130): if (x+1) % 2 == 1 and (y+1) % 2 == 1: return False if (x+1) % 4 == (y+1) % 4 else True if (x+1) % 2 == 0 and (y+1) % 2 == 0: return False if (x+1) % 4 != (y+1) % 4 else True return False def is_sb_sml(x,y): if (x>=-1 and x<=162 and y>=-1 and y<=130): if (x+1) % 2 == 1 and (y+1) % 2 == 1: return True if (x+1) % 4 == (y+1) % 4 else False if (x+1) % 2 == 0 and (y+1) % 2 == 0: return True if (x+1) % 4 != (y+1) % 4 else False return False def get_sb_type(x,y): return "SB_BIG" if is_sb_big(x,y) else "SB_SML" def is_cpe(x,y): return x>=1 and x<=160 and y>=1 and y<=128 def is_outmux(x,y): return is_cpe(x,y) and (x+1) % 2 == (y+1) % 2 def is_edge_left(x,y): return x==-2 and y>=1 and y<=128 def is_edge_right(x,y): return x==max_col() and y>=1 and y<=128 def is_edge_bottom(x,y): return y==-2 and x>=1 and x<=160 def is_edge_top(x,y): return y==max_row() and x>=28 and x<=160 def is_edge_io(x,y): if (y==-2 and x>=5 and x<=40): # IO Bank S3/WA return True if (y==-2 and x>=57 and x<=92): # IO Bank S1/WB return True if (y==-2 and x>=101 and x<=136): # IO Bank S2/WC return True if (x==-2 and y>=25 and y<=60): # IO Bank W1/SA return True if (x==-2 and y>=69 and y<=104): # IO Bank W2/SB return True if (x==max_col() and y>=25 and y<=60): # IO Bank E1/NA return True if (x==max_col() and y>=69 and y<=104): # IO Bank E2/NB return True if (y==max_row() and x>=57 and x<=92): # IO Bank N1/EA return True if (y==max_row() and x>=101 and x<=136): # IO Bank N2/EB return True def is_ram_u(x,y): return x in [33,65,97,129] and y in [1,17,33,49,65,81,97,113] def is_ram_l(x,y): return x in [33,65,97,129] and y in [1+8,17+8,33+8,49+8,65+8,81+8,97+8,113+8] def get_full_tile_loc_str(x,y): tile_x = 1 # ((x-1)+16) % 8 + 1 tile_y = 1 # ((y-1)+16) % 8 + 1 tile = 1 # ((((x+16-1) // 8)+2) % 4) + 1 return f"t{tile}_x{tile_x}_y{tile_y}" def get_tile_loc_str(x,y): tile_x = 1 # ((x-1)+16) % 8 + 1 tile_y = 1 # ((y-1)+16) % 8 + 1 return f"x{tile_x}_y{tile_y}" @dataclass class IOName: bank : str port : str num : int def get_io_name(x,y): if (y==-2 and x>=5 and x<=40): # IO Bank S3/WA x-=5 return IOName("S3", "A" if x % 4==0 else "B", x//4) if (y==-2 and x>=57 and x<=92): # IO Bank S1/WB x-=57 return IOName("S1", "A" if x % 4==0 else "B", x//4) if (y==-2 and x>=101 and x<=136): # IO Bank S2/WC x-=101 return IOName("S2", "A" if x % 4==0 else "B", x//4) if (x==-2 and y>=25 and y<=60): # IO Bank W1/SA y-=25 return IOName("W1", "A" if y % 4==0 else "B", y//4) if (x==-2 and y>=69 and y<=104): # IO Bank W2/SB y-=69 return IOName("W2", "A" if y % 4==0 else "B", y//4) if (x==max_col() and y>=25 and y<=60): # IO Bank E1/NA y-=25 return IOName("E1", "A" if y % 4==0 else "B", y//4) if (x==max_col() and y>=69 and y<=104): # IO Bank E2/NB y-=69 return IOName("E2", "A" if y % 4==0 else "B", y//4) if (y==max_row() and x>=57 and x<=92): # IO Bank N1/EA x-=57 return IOName("N1", "A" if x % 4==0 else "B", x//4) if (y==max_row() and x>=101 and x<=136): # IO Bank N2/EB x-=101 return IOName("N2", "A" if x % 4==0 else "B", x//4) def is_gpio(x,y): if is_edge_io(x,y): if (y==-2 or y==max_row()): return x % 2==1 if (x==-2 or x==max_col()): return y % 2==1 return False def is_pll(x,y): return x==PLL_X_POS and y==PLL_Y_POS def is_serdes(x,y): return x==SERDES_X_POS and y==SERDES_Y_POS def is_cfg_ctrl(x,y): return x==CTRL_X_POS and y==CTRL_Y_POS def base_loc(x,y): return (((x-1) & ~1) + 1, ((y-1) & ~1) + 1) class PinType(Enum): INPUT = 0 OUTPUT = 1 INOUT = 2 @dataclass(eq=True, order=True) class Primitive: name : str type : str z : int @dataclass(eq=True, order=True) class Pin: name : str dir : PinType wire_type : str use_alias_conn: bool = False @dataclass(eq=True, order=True) class PinConstr: name : str rel_x : int rel_y : int output: int pin_num : int @dataclass(eq=True, order=True) class Group: name : str type : str @dataclass(eq=True, order=True) class Endpoint: name : str type : str @dataclass(eq=True, order=True) class MUX: src : str dst : str name : str bits : int value : int invert: bool visible: bool config: bool delay: str block: int resource : int @dataclass class Location: x : int y : int z : int @dataclass(eq=True, order=True) class Connection: x : int y : int name : str delay: str endpoint: bool @dataclass(eq=True, order=True) class TileInfo: die : int bit_x : int bit_y : int tile_x : int tile_y : int prim_index : int RAM_HALF_PINS = [ Pin("CLKA[0]", PinType.INPUT,"RAM_WIRE", True), #Pin("CLKA[1]", PinType.INPUT,"RAM_WIRE", True), Pin("ENA[0]", PinType.INPUT,"RAM_WIRE", True), #Pin("ENA[1]", PinType.INPUT,"RAM_WIRE", True), Pin("GLWEA[0]", PinType.INPUT,"RAM_WIRE", True), #Pin("GLWEA[1]", PinType.INPUT,"RAM_WIRE", True), Pin("CLKB[0]", PinType.INPUT,"RAM_WIRE", True), #Pin("CLKB[1]", PinType.INPUT,"RAM_WIRE", True), Pin("ENB[0]", PinType.INPUT,"RAM_WIRE", True), #Pin("ENB[1]", PinType.INPUT,"RAM_WIRE", True), Pin("GLWEB[0]", PinType.INPUT,"RAM_WIRE", True), #Pin("GLWEB[1]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[0]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[1]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[2]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[3]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[4]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[5]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[6]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[7]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[8]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[9]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[10]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[11]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[12]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[13]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[14]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[15]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[16]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[17]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[18]", PinType.INPUT,"RAM_WIRE", True), Pin("WEA[19]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[0]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[1]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[2]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[3]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[4]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[5]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[6]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[7]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[8]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[9]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[10]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[11]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[12]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[13]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[14]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[15]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[16]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[17]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[18]", PinType.INPUT,"RAM_WIRE", True), Pin("WEB[19]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[0]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[1]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[2]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[3]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[4]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[5]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[6]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[7]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[8]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[9]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[10]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[11]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[12]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[13]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[14]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRA0[15]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[0]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[1]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[2]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[3]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[4]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[5]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[6]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[7]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[8]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[9]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[10]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[11]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[12]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[13]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[14]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRA0X[15]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[0]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[1]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[2]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[3]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[4]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[5]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[6]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[7]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[8]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[9]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[10]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[11]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[12]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[13]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[14]", PinType.INPUT,"RAM_WIRE", True), Pin("ADDRB0[15]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[0]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[1]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[2]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[3]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[4]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[5]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[6]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[7]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[8]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[9]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[10]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[11]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[12]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[13]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[14]", PinType.INPUT,"RAM_WIRE", True), #Pin("ADDRB0X[15]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[0]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[1]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[2]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[3]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[4]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[5]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[6]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[7]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[8]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[9]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[10]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[11]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[12]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[13]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[14]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[15]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[16]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[17]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[18]", PinType.INPUT,"RAM_WIRE", True), Pin("DIA[19]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[0]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[1]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[2]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[3]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[4]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[5]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[6]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[7]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[8]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[9]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[10]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[11]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[12]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[13]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[14]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[15]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[16]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[17]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[18]", PinType.INPUT,"RAM_WIRE", True), Pin("DIB[19]", PinType.INPUT,"RAM_WIRE", True), Pin("DOA[0]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[0]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[1]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[1]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[2]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[2]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[3]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[3]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[4]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[4]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[5]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[5]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[6]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[6]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[7]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[7]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[8]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[8]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[9]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[9]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[10]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[10]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[11]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[11]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[12]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[12]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[13]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[13]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[14]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[14]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[15]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[15]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[16]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[16]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[17]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[17]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOA[18]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[18]", PinType.OUTPUT,"RAM_WIRE, True), Pin("DOA[19]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOAX[19]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[0]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[0]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[1]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[1]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[2]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[2]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[3]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[3]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[4]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[4]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[5]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[5]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[6]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[6]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[7]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[7]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[8]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[8]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[9]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[9]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[10]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[10]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[11]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[11]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[12]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[12]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[13]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[13]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[14]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[14]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[15]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[15]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[16]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[16]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[17]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[17]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[18]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[18]", PinType.OUTPUT,"RAM_WIRE", True), Pin("DOB[19]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("DOBX[19]", PinType.OUTPUT,"RAM_WIRE", True), Pin("ECC1B_ERRA[0]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("ECC1B_ERRA[2]", PinType.OUTPUT,"RAM_WIRE", True), Pin("ECC1B_ERRB[0]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("ECC1B_ERRB[2]", PinType.OUTPUT,"RAM_WIRE", True), Pin("ECC2B_ERRA[0]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("ECC2B_ERRA[2]", PinType.OUTPUT,"RAM_WIRE", True), Pin("ECC2B_ERRB[0]", PinType.OUTPUT,"RAM_WIRE", True), #Pin("ECC2B_ERRB[2]", PinType.OUTPUT,"RAM_WIRE", True), Pin("CLOCK1", PinType.INPUT,"RAM_WIRE", True), Pin("CLOCK2", PinType.INPUT,"RAM_WIRE", True), Pin("CLOCK3", PinType.INPUT,"RAM_WIRE", True), Pin("CLOCK4", PinType.INPUT,"RAM_WIRE", True), ] PRIMITIVES_PINS = { "CPE_LT_U": [ # LUT2 first level Pin("D0_00" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_00" ,PinType.INPUT, "CPE_WIRE", True), Pin("D0_01" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_01" ,PinType.INPUT, "CPE_WIRE", True), # LUT2 2nd level Pin("D0_10" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_10" ,PinType.INPUT, "CPE_WIRE", True), # regular inputs Pin("IN1" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN2" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN3" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN4" ,PinType.INPUT, "CPE_WIRE", True), Pin("OUT" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("CPOUT" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("PINY1" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINX" ,PinType.INPUT, "CPE_WIRE", True), ], "CPE_FF_U": [ Pin("DIN" ,PinType.INPUT, "CPE_WIRE", True), Pin("CLK_INT",PinType.INPUT, "CPE_WIRE", True), Pin("EN_INT" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINY2", PinType.INPUT, "CPE_WIRE", True), Pin("PINY2", PinType.INPUT, "CPE_WIRE", True), Pin("CLK" ,PinType.INPUT, "CPE_WIRE", True), Pin("EN" ,PinType.INPUT, "CPE_WIRE", True), Pin("SR" ,PinType.INPUT, "CPE_WIRE", True), Pin("DOUT" ,PinType.OUTPUT, "CPE_WIRE", True), ], "CPE_RAMIO_U": [ Pin("RAM_I" ,PinType.INPUT, "CPE_WIRE", True), Pin("I" ,PinType.INPUT, "CPE_WIRE", True), Pin("OUT" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("RAM_O" ,PinType.OUTPUT, "CPE_WIRE", True), ], "CPE_LT_L": [ # LUT2 first level Pin("D0_00" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_00" ,PinType.INPUT, "CPE_WIRE", True), Pin("D0_01" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_01" ,PinType.INPUT, "CPE_WIRE", True), # LUT2 2nd level Pin("D0_10" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_10" ,PinType.INPUT, "CPE_WIRE", True), # LUT2 3rd level input Pin("COMBIN" ,PinType.INPUT, "CPE_WIRE", True), # regular inputs Pin("IN1" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN2" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN3" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN4" ,PinType.INPUT, "CPE_WIRE", True), # outputs Pin("OUT" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("CPOUT" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("CINX" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINX" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINY1" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINY1" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINY2" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINY2" ,PinType.INPUT, "CPE_WIRE", True), Pin("COUTX" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTX" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("COUTY1" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTY1" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("COUTY2" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTY2" ,PinType.OUTPUT, "CPE_WIRE", True), ], "CPE_FF_L": [ Pin("DIN" ,PinType.INPUT, "CPE_WIRE", True), Pin("CLK_INT",PinType.INPUT, "CPE_WIRE", True), Pin("EN_INT" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINY2", PinType.INPUT, "CPE_WIRE", True), Pin("PINY2", PinType.INPUT, "CPE_WIRE", True), Pin("CLK" ,PinType.INPUT, "CPE_WIRE", True), Pin("EN" ,PinType.INPUT, "CPE_WIRE", True), Pin("SR" ,PinType.INPUT, "CPE_WIRE", True), Pin("DOUT" ,PinType.OUTPUT, "CPE_WIRE", True), ], "CPE_RAMIO_L": [ Pin("RAM_I" ,PinType.INPUT, "CPE_WIRE", True), Pin("I" ,PinType.INPUT, "CPE_WIRE", True), Pin("OUT" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("RAM_O" ,PinType.OUTPUT, "CPE_WIRE", True), ], "CPE_BRIDGE": [ Pin("IN1" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN2" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN3" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN4" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN5" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN6" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN7" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN8" ,PinType.INPUT, "CPE_WIRE", True), Pin("MUXOUT" ,PinType.OUTPUT, "CPE_WIRE", True), ], "CPE_LT_FULL": [ Pin("D0_00" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_00" ,PinType.INPUT, "CPE_WIRE", True), Pin("D0_01" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_01" ,PinType.INPUT, "CPE_WIRE", True), Pin("D0_02" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_02" ,PinType.INPUT, "CPE_WIRE", True), Pin("D0_03" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_03" ,PinType.INPUT, "CPE_WIRE", True), Pin("D0_10" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_10" ,PinType.INPUT, "CPE_WIRE", True), Pin("D0_11" ,PinType.INPUT, "CPE_WIRE", True), Pin("D1_11" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN1" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN2" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN3" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN4" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN5" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN6" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN7" ,PinType.INPUT, "CPE_WIRE", True), Pin("IN8" ,PinType.INPUT, "CPE_WIRE", True), Pin("OUT1" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("OUT2" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("CPOUT1" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("CPOUT2" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("MUXOUT" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("CINX" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINX" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINY1" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINY1" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINY2" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINY2" ,PinType.INPUT, "CPE_WIRE", True), Pin("COUTX" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTX" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("COUTY1" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTY1" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("COUTY2" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTY2" ,PinType.OUTPUT, "CPE_WIRE", True), # For MX8 Pin("CLK" ,PinType.INPUT, "CPE_WIRE", True), Pin("EN" ,PinType.INPUT, "CPE_WIRE", True), Pin("SR" ,PinType.INPUT, "CPE_WIRE", True), ], "CPE_COMP": [ Pin("COMB1" ,PinType.INPUT, "CPE_WIRE", True), Pin("COMB2" ,PinType.INPUT, "CPE_WIRE", True), Pin("COMPOUT",PinType.OUTPUT, "CPE_WIRE", True), ], "CPE_CPLINES": [ Pin("OUT1" ,PinType.INPUT, "CPE_WIRE", True), Pin("OUT2" ,PinType.INPUT, "CPE_WIRE", True), Pin("COMPOUT",PinType.INPUT, "CPE_WIRE", True), Pin("CINX" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINX" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINY1" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINY1" ,PinType.INPUT, "CPE_WIRE", True), Pin("CINY2" ,PinType.INPUT, "CPE_WIRE", True), Pin("PINY2" ,PinType.INPUT, "CPE_WIRE", True), Pin("COUTX" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTX" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("COUTY1" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTY1" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("COUTY2" ,PinType.OUTPUT, "CPE_WIRE", True), Pin("POUTY2" ,PinType.OUTPUT, "CPE_WIRE", True), ], "IOSEL" : [ Pin("GPIO_OUT", PinType.OUTPUT,"GPIO_WIRE"), Pin("GPIO_EN" , PinType.OUTPUT,"GPIO_WIRE"), Pin("GPIO_IN" , PinType.INPUT, "GPIO_WIRE"), Pin("IN1" , PinType.OUTPUT,"GPIO_WIRE"), Pin("IN2" , PinType.OUTPUT,"GPIO_WIRE"), Pin("OUT1" , PinType.INPUT, "GPIO_WIRE"), Pin("OUT2" , PinType.INPUT, "GPIO_WIRE"), Pin("OUT3" , PinType.INPUT, "GPIO_WIRE"), Pin("OUT4" , PinType.INPUT, "GPIO_WIRE"), Pin("DDR" , PinType.INPUT, "GPIO_WIRE"), # Reset is global but no control over it #Pin("RESET" , PinType.INPUT, "GPIO_WIRE"), Pin("CLOCK1", PinType.INPUT, "GPIO_WIRE"), Pin("CLOCK2", PinType.INPUT, "GPIO_WIRE"), Pin("CLOCK3", PinType.INPUT, "GPIO_WIRE"), Pin("CLOCK4", PinType.INPUT, "GPIO_WIRE"), ], "GPIO" : [ Pin("Y", PinType.INPUT, "GPIO_WIRE"), Pin("T", PinType.INPUT, "GPIO_WIRE"), Pin("A", PinType.OUTPUT,"GPIO_WIRE"), # PAD wires Pin("I", PinType.INPUT, "GPIO_WIRE"), Pin("O", PinType.OUTPUT,"GPIO_WIRE"), Pin("IO", PinType.INOUT, "GPIO_WIRE"), # LVDS PAD wires Pin("I_P", PinType.INPUT, "GPIO_WIRE"), Pin("I_N", PinType.INPUT, "GPIO_WIRE"), Pin("O_P", PinType.OUTPUT,"GPIO_WIRE"), Pin("O_N", PinType.OUTPUT,"GPIO_WIRE"), Pin("IO_P", PinType.INOUT, "GPIO_WIRE"), Pin("IO_N", PinType.INOUT, "GPIO_WIRE"), ], "CLKIN" : [ Pin("CLK0" , PinType.INPUT, "CLKIN_WIRE"), Pin("CLK1" , PinType.INPUT, "CLKIN_WIRE"), Pin("CLK2" , PinType.INPUT, "CLKIN_WIRE"), Pin("CLK3" , PinType.INPUT, "CLKIN_WIRE"), Pin("SER_CLK" , PinType.INPUT, "CLKIN_WIRE"), Pin("CLK_REF0" , PinType.OUTPUT,"CLKIN_WIRE"), Pin("CLK_REF1" , PinType.OUTPUT,"CLKIN_WIRE"), Pin("CLK_REF2" , PinType.OUTPUT,"CLKIN_WIRE"), Pin("CLK_REF3" , PinType.OUTPUT,"CLKIN_WIRE"), ], "GLBOUT" : [ Pin("CLK0_0" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK90_0" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK180_0" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK270_0" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK_REF_OUT0" , PinType.INPUT, "GLBOUT_WIRE"), Pin("USR_GLB0" , PinType.INPUT, "GLBOUT_WIRE"), Pin("USR_FB0" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK_FB0" , PinType.OUTPUT,"GLBOUT_WIRE"), Pin("GLB0" , PinType.OUTPUT,"GLBOUT_WIRE"), Pin("CLK0_1" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK90_1" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK180_1" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK270_1" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK_REF_OUT1" , PinType.INPUT, "GLBOUT_WIRE"), Pin("USR_GLB1" , PinType.INPUT, "GLBOUT_WIRE"), Pin("USR_FB1" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK_FB1" , PinType.OUTPUT,"GLBOUT_WIRE"), Pin("GLB1" , PinType.OUTPUT,"GLBOUT_WIRE"), Pin("CLK0_2" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK90_2" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK180_2" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK270_2" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK_REF_OUT2" , PinType.INPUT, "GLBOUT_WIRE"), Pin("USR_GLB2" , PinType.INPUT, "GLBOUT_WIRE"), Pin("USR_FB2" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK_FB2" , PinType.OUTPUT,"GLBOUT_WIRE"), Pin("GLB2" , PinType.OUTPUT,"GLBOUT_WIRE"), Pin("CLK0_3" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK90_3" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK180_3" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK270_3" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK_REF_OUT3" , PinType.INPUT, "GLBOUT_WIRE"), Pin("USR_GLB3" , PinType.INPUT, "GLBOUT_WIRE"), Pin("USR_FB3" , PinType.INPUT, "GLBOUT_WIRE"), Pin("CLK_FB3" , PinType.OUTPUT,"GLBOUT_WIRE"), Pin("GLB3" , PinType.OUTPUT,"GLBOUT_WIRE"), ], "PLL" : [ Pin("CLK_REF", PinType.INPUT, "PLL_WIRE"), Pin("USR_CLK_REF", PinType.INPUT, "PLL_WIRE"), Pin("USR_SEL_A_B", PinType.INPUT, "PLL_WIRE"), Pin("CLK_FEEDBACK", PinType.INPUT, "PLL_WIRE"), Pin("USR_LOCKED_STDY_RST", PinType.INPUT, "PLL_WIRE"), Pin("CLK0", PinType.OUTPUT,"PLL_WIRE"), Pin("CLK90", PinType.OUTPUT,"PLL_WIRE"), Pin("CLK180", PinType.OUTPUT,"PLL_WIRE"), Pin("CLK270", PinType.OUTPUT,"PLL_WIRE"), Pin("CLK_REF_OUT", PinType.OUTPUT,"PLL_WIRE"), Pin("USR_PLL_LOCKED_STDY", PinType.OUTPUT,"PLL_WIRE"), Pin("USR_PLL_LOCKED", PinType.OUTPUT,"PLL_WIRE"), ], "USR_RSTN" : [ Pin("USR_RSTN", PinType.OUTPUT,"USR_RSTN_WIRE"), ], "CFG_CTRL" : [ Pin("DATA[7]", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("DATA[6]", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("DATA[5]", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("DATA[4]", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("DATA[3]", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("DATA[2]", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("DATA[1]", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("DATA[0]", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("CLK", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("EN", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("VALID", PinType.INPUT,"CFG_CTRL_WIRE"), Pin("RECFG", PinType.INPUT,"CFG_CTRL_WIRE"), ], "RAM" : [ Pin("C_ADDRA[0]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRA[1]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRA[2]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRA[3]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRA[4]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRA[5]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRA[6]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRA[7]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRB[0]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRB[1]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRB[2]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRB[3]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRB[4]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRB[5]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRB[6]", PinType.INPUT,"RAM_WIRE"), Pin("C_ADDRB[7]", PinType.INPUT,"RAM_WIRE"), Pin("CLKA[0]", PinType.INPUT,"RAM_WIRE"), Pin("CLKA[1]", PinType.INPUT,"RAM_WIRE"), Pin("ENA[0]", PinType.INPUT,"RAM_WIRE"), Pin("ENA[1]", PinType.INPUT,"RAM_WIRE"), Pin("GLWEA[0]", PinType.INPUT,"RAM_WIRE"), Pin("GLWEA[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[0]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[2]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[4]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[5]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[6]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[7]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[8]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[9]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[10]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[11]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[12]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[13]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[14]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0[15]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[0]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[2]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[4]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[5]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[6]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[7]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[8]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[9]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[10]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[11]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[12]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[13]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[14]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA0X[15]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[0]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[1]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[2]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[3]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[4]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[5]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[6]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[7]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[8]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[9]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[10]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[11]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[12]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[13]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[14]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[15]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[16]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[17]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[18]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[19]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[0]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[1]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[2]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[3]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[4]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[5]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[6]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[7]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[8]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[9]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[10]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[11]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[12]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[13]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[14]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[15]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[16]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[17]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[18]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[19]", PinType.INPUT,"RAM_WIRE"), Pin("CLKA[2]", PinType.INPUT,"RAM_WIRE"), Pin("CLKA[3]", PinType.INPUT,"RAM_WIRE"), Pin("ENA[2]", PinType.INPUT,"RAM_WIRE"), Pin("ENA[3]", PinType.INPUT,"RAM_WIRE"), Pin("GLWEA[2]", PinType.INPUT,"RAM_WIRE"), Pin("GLWEA[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[0]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[2]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[4]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[5]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[6]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[7]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[8]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[9]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[10]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[11]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[12]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[13]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[14]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1[15]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[0]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[2]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[4]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[5]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[6]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[7]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[8]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[9]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[10]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[11]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[12]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[13]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[14]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRA1X[15]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[20]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[21]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[22]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[23]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[24]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[25]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[26]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[27]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[28]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[29]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[30]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[31]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[32]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[33]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[34]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[35]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[36]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[37]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[38]", PinType.INPUT,"RAM_WIRE"), Pin("DIA[39]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[20]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[21]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[22]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[23]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[24]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[25]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[26]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[27]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[28]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[29]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[30]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[31]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[32]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[33]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[34]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[35]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[36]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[37]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[38]", PinType.INPUT,"RAM_WIRE"), Pin("WEA[39]", PinType.INPUT,"RAM_WIRE"), Pin("CLKB[0]", PinType.INPUT,"RAM_WIRE"), Pin("CLKB[1]", PinType.INPUT,"RAM_WIRE"), Pin("ENB[0]", PinType.INPUT,"RAM_WIRE"), Pin("ENB[1]", PinType.INPUT,"RAM_WIRE"), Pin("GLWEB[0]", PinType.INPUT,"RAM_WIRE"), Pin("GLWEB[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[0]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[2]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[4]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[5]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[6]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[7]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[8]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[9]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[10]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[11]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[12]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[13]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[14]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0[15]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[0]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[2]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[4]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[5]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[6]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[7]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[8]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[9]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[10]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[11]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[12]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[13]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[14]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB0X[15]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[0]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[1]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[2]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[3]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[4]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[5]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[6]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[7]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[8]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[9]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[10]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[11]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[12]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[13]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[14]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[15]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[16]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[17]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[18]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[19]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[0]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[1]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[2]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[3]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[4]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[5]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[6]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[7]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[8]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[9]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[10]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[11]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[12]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[13]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[14]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[15]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[16]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[17]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[18]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[19]", PinType.INPUT,"RAM_WIRE"), Pin("CLKB[2]", PinType.INPUT,"RAM_WIRE"), Pin("CLKB[3]", PinType.INPUT,"RAM_WIRE"), Pin("ENB[2]", PinType.INPUT,"RAM_WIRE"), Pin("ENB[3]", PinType.INPUT,"RAM_WIRE"), Pin("GLWEB[2]", PinType.INPUT,"RAM_WIRE"), Pin("GLWEB[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[0]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[2]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[4]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[5]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[6]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[7]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[8]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[9]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[10]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[11]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[12]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[13]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[14]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1[15]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[0]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[1]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[2]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[3]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[4]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[5]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[6]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[7]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[8]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[9]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[10]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[11]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[12]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[13]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[14]", PinType.INPUT,"RAM_WIRE"), Pin("ADDRB1X[15]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[20]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[21]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[22]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[23]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[24]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[25]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[26]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[27]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[28]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[29]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[30]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[31]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[32]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[33]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[34]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[35]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[36]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[37]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[38]", PinType.INPUT,"RAM_WIRE"), Pin("DIB[39]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[20]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[21]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[22]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[23]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[24]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[25]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[26]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[27]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[28]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[29]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[30]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[31]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[32]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[33]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[34]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[35]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[36]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[37]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[38]", PinType.INPUT,"RAM_WIRE"), Pin("WEB[39]", PinType.INPUT,"RAM_WIRE"), Pin("F_RSTN", PinType.INPUT,"RAM_WIRE"), Pin("DOA[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[5]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[5]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[6]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[6]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[7]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[7]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[8]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[8]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[9]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[9]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[10]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[10]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[11]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[11]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[12]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[12]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[13]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[13]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[14]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[14]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[15]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[15]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[16]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[16]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[17]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[17]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[18]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[18]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[19]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[19]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[20]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[20]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[21]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[21]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[22]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[22]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[23]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[23]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[24]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[24]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[25]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[25]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[26]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[26]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[27]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[27]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[28]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[28]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[29]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[29]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[30]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[30]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[31]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[31]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[32]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[32]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[33]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[33]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[34]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[34]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[35]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[35]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[36]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[36]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[37]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[37]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[38]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[38]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOA[39]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOAX[39]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCKA[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCKA[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCKA[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCKA[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[5]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[5]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[6]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[6]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[7]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[7]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[8]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[8]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[9]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[9]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[10]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[10]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[11]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[11]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[12]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[12]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[13]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[13]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[14]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[14]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[15]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[15]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[16]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[16]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[17]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[17]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[18]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[18]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[19]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[19]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[20]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[20]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[21]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[21]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[22]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[22]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[23]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[23]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[24]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[24]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[25]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[25]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[26]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[26]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[27]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[27]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[28]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[28]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[29]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[29]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[30]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[30]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[31]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[31]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[32]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[32]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[33]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[33]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[34]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[34]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[35]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[35]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[36]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[36]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[37]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[37]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[38]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[38]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOB[39]", PinType.OUTPUT,"RAM_WIRE"), Pin("DOBX[39]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCKB[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCKB[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCKB[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCKB[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC1B_ERRA[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC1B_ERRA[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC1B_ERRA[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC1B_ERRA[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC1B_ERRB[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC1B_ERRB[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC1B_ERRB[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC1B_ERRB[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC2B_ERRA[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC2B_ERRA[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC2B_ERRA[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC2B_ERRA[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC2B_ERRB[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC2B_ERRB[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC2B_ERRB[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("ECC2B_ERRB[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("F_FULL[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("F_FULL[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("F_EMPTY[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("F_EMPTY[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("F_AL_FULL[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("F_AL_FULL[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("F_AL_EMPTY[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("F_AL_EMPTY[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ERR[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ERR[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ERR[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ERR[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[5]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[5]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[6]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[6]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[7]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[7]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[8]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[8]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[9]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[9]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[10]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[10]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[11]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[11]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[12]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[12]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[13]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[13]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[14]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[14]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDR[15]", PinType.OUTPUT,"RAM_WIRE"), Pin("FWR_ADDRX[15]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[0]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[1]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[2]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[3]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[4]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[5]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[5]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[6]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[6]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[7]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[7]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[8]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[8]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[9]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[9]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[10]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[10]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[11]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[11]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[12]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[12]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[13]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[13]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[14]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[14]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDR[15]", PinType.OUTPUT,"RAM_WIRE"), Pin("FRD_ADDRX[15]", PinType.OUTPUT,"RAM_WIRE"), Pin("CLOCK1", PinType.INPUT,"RAM_WIRE"), Pin("CLOCK2", PinType.INPUT,"RAM_WIRE"), Pin("CLOCK3", PinType.INPUT,"RAM_WIRE"), Pin("CLOCK4", PinType.INPUT,"RAM_WIRE"), ], "RAM_HALF_L" : RAM_HALF_PINS, "SERDES" : [ Pin("TX_DETECT_RX_I", PinType.INPUT,"SERDES_WIRE"), Pin("PLL_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_CLK_I", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CLK_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_CLK_I", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_WE_I", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_EN_I", PinType.INPUT,"SERDES_WIRE"), Pin("TX_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("TX_PCS_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("TX_PMA_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("TX_PRBS_FORCE_ERR_I", PinType.INPUT,"SERDES_WIRE"), Pin("TX_POLARITY_I", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_EN_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_PMA_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_EQA_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_CDR_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_PCS_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_BUF_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_PRBS_CNT_RESET_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_EN_EI_DETECTOR_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_COMMA_DETECT_EN_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_SLIDE_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_POLARITY_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_EN_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_MCOMMA_ALIGN_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_PCOMMA_ALIGN_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_NOT_IN_TABLE_O[7]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_NOT_IN_TABLE_O[6]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_NOT_IN_TABLE_O[5]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_NOT_IN_TABLE_O[4]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_NOT_IN_TABLE_O[3]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_NOT_IN_TABLE_O[2]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_NOT_IN_TABLE_O[1]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_NOT_IN_TABLE_O[0]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_COMMA_O[7]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_COMMA_O[6]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_COMMA_O[5]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_COMMA_O[4]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_COMMA_O[3]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_COMMA_O[2]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_COMMA_O[1]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_COMMA_O[0]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_ADDR_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_ADDR_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_ADDR_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_ADDR_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_ADDR_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_ADDR_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_ADDR_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_ADDR_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_IS_K_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_IS_K_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_IS_K_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_IS_K_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_IS_K_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_IS_K_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_IS_K_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_IS_K_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_BYPASS_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_BYPASS_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_BYPASS_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_BYPASS_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_BYPASS_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_BYPASS_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_BYPASS_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_8B10B_BYPASS_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_BYPASS_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_BYPASS_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_BYPASS_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_BYPASS_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_BYPASS_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_BYPASS_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_BYPASS_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_8B10B_BYPASS_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPMODE_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPMODE_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPMODE_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPMODE_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPMODE_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPMODE_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPMODE_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPMODE_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPVAL_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPVAL_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPVAL_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPVAL_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPVAL_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPVAL_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPVAL_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_CHAR_DISPVAL_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[63]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[62]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[61]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[60]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[59]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[58]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[57]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[56]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[55]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[54]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[53]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[52]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[51]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[50]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[49]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[48]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[47]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[46]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[45]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[44]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[43]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[42]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[41]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[40]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[39]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[38]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[37]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[36]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[35]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[34]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[33]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[32]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[31]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[30]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[29]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[28]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[27]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[26]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[25]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[24]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[23]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[22]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[21]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[20]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[19]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[18]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[17]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[16]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[15]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[14]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[13]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[12]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[11]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[10]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[9]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[8]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_DATA_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[15]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[14]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[13]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[12]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[11]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[10]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[9]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[8]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[7]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[6]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[5]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[4]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[3]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[2]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[1]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DO_O[0]", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[15]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[14]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[13]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[12]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[11]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[10]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[9]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[8]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_DI_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[15]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[14]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[13]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[12]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[11]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[10]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[9]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[8]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[7]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[6]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[5]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[4]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[3]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("REGFILE_MASK_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_K_O[7]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_K_O[6]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_K_O[5]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_K_O[4]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_K_O[3]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_K_O[2]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_K_O[1]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CHAR_IS_K_O[0]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DISP_ERR_O[7]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DISP_ERR_O[6]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DISP_ERR_O[5]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DISP_ERR_O[4]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DISP_ERR_O[3]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DISP_ERR_O[2]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DISP_ERR_O[1]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DISP_ERR_O[0]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[63]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[62]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[61]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[60]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[59]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[58]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[57]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[56]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[55]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[54]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[53]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[52]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[51]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[50]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[49]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[48]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[47]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[46]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[45]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[44]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[43]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[42]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[41]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[40]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[39]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[38]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[37]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[36]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[35]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[34]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[33]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[32]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[31]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[30]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[29]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[28]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[27]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[26]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[25]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[24]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[23]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[22]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[21]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[20]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[19]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[18]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[17]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[16]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[15]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[14]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[13]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[12]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[11]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[10]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[9]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[8]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[7]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[6]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[5]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[4]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[3]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[2]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[1]", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_DATA_O[0]", PinType.OUTPUT,"SERDES_WIRE"), Pin("TX_DETECT_RX_DONE_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("TX_DETECT_RX_PRESENT_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_CLK_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("PLL_CLK_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("TX_BUF_ERR_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("TX_RESET_DONE_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("REGFILE_RDY_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_PRBS_ERR_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_BUF_ERR_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_BYTE_IS_ALIGNED_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_BYTE_REALIGN_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_RESET_DONE_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("RX_EI_EN_O", PinType.OUTPUT,"SERDES_WIRE"), Pin("LOOPBACK_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("LOOPBACK_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("LOOPBACK_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_PRBS_SEL_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_PRBS_SEL_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_PRBS_SEL_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_PRBS_SEL_I[2]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_PRBS_SEL_I[1]", PinType.INPUT,"SERDES_WIRE"), Pin("RX_PRBS_SEL_I[0]", PinType.INPUT,"SERDES_WIRE"), Pin("TX_POWER_DOWN_N_I", PinType.INPUT,"SERDES_WIRE"), Pin("RX_POWER_DOWN_N_I", PinType.INPUT,"SERDES_WIRE"), Pin("TX_ELEC_IDLE_I", PinType.INPUT,"SERDES_WIRE"), ], } def get_groups_for_type(type): groups = [] def create_group(name, type): groups.append(Group(name,type)) if "CPE" in type: # CPE for p in range(1,13): create_group(f"IM_P{p:02d}", "IM") if "OM" in type and p>=9: create_group(f"OM_P{p:02d}", "OM") if "SB_BIG" in type: # SB_BIG for p in range(1,13): create_group(f"SB_BIG_P{p:02d}", "SB_BIG") if "SB_SML" in type: # SB_SML for p in range(1,13): create_group(f"SB_SML_P{p:02d}", "SB_SML") #if "GPIO" in type: # # GPIO if "IOES" in type: # IOES create_group("IOES", "IOES") if "LES" in type: # LES create_group("LES", "LES") if "RES" in type: # RES create_group("RES", "RES") if "TES" in type: # TES create_group("TES", "TES") if "BES" in type: # BES create_group("BES", "BES") return groups def get_primitives_for_type(type): primitives = [] if "CPE" in type: primitives.append(Primitive("CPE_LT_U","CPE_LT_U",0)) primitives.append(Primitive("CPE_LT_L","CPE_LT_L",1)) primitives.append(Primitive("CPE_FF_U","CPE_FF_U",2)) primitives.append(Primitive("CPE_FF_L","CPE_FF_L",3)) primitives.append(Primitive("CPE_RAMIO_U","CPE_RAMIO_U",4)) primitives.append(Primitive("CPE_RAMIO_L","CPE_RAMIO_L",5)) primitives.append(Primitive("CPE_COMP","CPE_COMP",6)) primitives.append(Primitive("CPE_CPLINES","CPE_CPLINES",7)) primitives.append(Primitive("CPE_LT_FULL","CPE_LT_FULL",8)) primitives.append(Primitive("CPE_BRIDGE","CPE_BRIDGE",9)) if "RAM_U" in type: primitives.append(Primitive("RAM","RAM",10)) if "RAM_L" in type: primitives.append(Primitive("RAM_HALF_L","RAM_HALF_L",11)) if "SERDES" in type: primitives.append(Primitive("SERDES","SERDES",10)) if "GPIO" in type: primitives.append(Primitive("GPIO","GPIO",0)) primitives.append(Primitive("IOSEL","IOSEL",1)) if "PLL" in type: primitives.append(Primitive("CLKIN","CLKIN",0)) primitives.append(Primitive("GLBOUT","GLBOUT",1)) primitives.append(Primitive("PLL0","PLL",2)) primitives.append(Primitive("PLL1","PLL",3)) primitives.append(Primitive("PLL2","PLL",4)) primitives.append(Primitive("PLL3","PLL",5)) if "CFG_CTRL" in type: primitives.append(Primitive("CFG_CTRL","CFG_CTRL",10)) primitives.append(Primitive("USR_RSTN","USR_RSTN",11)) return primitives def get_primitive_pins(bel): return PRIMITIVES_PINS[bel] def get_pins_constraint(type_name, prim_name, prim_type): val = [] if prim_type=="USR_RSTN": val.append(PinConstr("USR_RSTN", -CTRL_X_POS+1, -CTRL_Y_POS+66, RAM_INPUT, 2)) elif prim_type=="CFG_CTRL": val.append(PinConstr("DATA[7]", -CTRL_X_POS+1, -CTRL_Y_POS+16, RAM_OUTPUT, 1)) val.append(PinConstr("DATA[6]", -CTRL_X_POS+1, -CTRL_Y_POS+15, RAM_OUTPUT, 1)) val.append(PinConstr("DATA[5]", -CTRL_X_POS+1, -CTRL_Y_POS+14, RAM_OUTPUT, 1)) val.append(PinConstr("DATA[4]", -CTRL_X_POS+1, -CTRL_Y_POS+13, RAM_OUTPUT, 1)) val.append(PinConstr("DATA[3]", -CTRL_X_POS+1, -CTRL_Y_POS+12, RAM_OUTPUT, 1)) val.append(PinConstr("DATA[2]", -CTRL_X_POS+1, -CTRL_Y_POS+11, RAM_OUTPUT, 1)) val.append(PinConstr("DATA[1]", -CTRL_X_POS+1, -CTRL_Y_POS+10, RAM_OUTPUT, 1)) val.append(PinConstr("DATA[0]", -CTRL_X_POS+1, -CTRL_Y_POS+ 9, RAM_OUTPUT, 1)) val.append(PinConstr("CLK",-CTRL_X_POS+1, -CTRL_Y_POS+6, RAM_OUTPUT, 1)) val.append(PinConstr("EN",-CTRL_X_POS+1, -CTRL_Y_POS+7, RAM_OUTPUT, 1)) val.append(PinConstr("VALID",-CTRL_X_POS+1, -CTRL_Y_POS+8, RAM_OUTPUT, 1)) val.append(PinConstr("RECFG",-CTRL_X_POS+1, -CTRL_Y_POS+5, RAM_OUTPUT, 1)) elif prim_type=="RAM": val.append(PinConstr("C_ADDRA[0]", -3, 2, RAM_OUTPUT, 1)) val.append(PinConstr("C_ADDRA[1]", -3, 2, RAM_OUTPUT, 2)) val.append(PinConstr("C_ADDRA[2]", -3, 3, RAM_OUTPUT, 1)) val.append(PinConstr("C_ADDRA[3]", -3, 3, RAM_OUTPUT, 2)) val.append(PinConstr("C_ADDRA[4]", -3, 4, RAM_OUTPUT, 1)) val.append(PinConstr("C_ADDRA[5]", -3, 4, RAM_OUTPUT, 2)) val.append(PinConstr("C_ADDRA[6]", -3, 5, RAM_OUTPUT, 1)) val.append(PinConstr("C_ADDRA[7]", -3, 5, RAM_OUTPUT, 2)) val.append(PinConstr("C_ADDRB[0]", 2, 2, RAM_OUTPUT, 1)) val.append(PinConstr("C_ADDRB[1]", 2, 2, RAM_OUTPUT, 2)) val.append(PinConstr("C_ADDRB[2]", 2, 3, RAM_OUTPUT, 1)) val.append(PinConstr("C_ADDRB[3]", 2, 3, RAM_OUTPUT, 2)) val.append(PinConstr("C_ADDRB[4]", 2, 4, RAM_OUTPUT, 1)) val.append(PinConstr("C_ADDRB[5]", 2, 4, RAM_OUTPUT, 2)) val.append(PinConstr("C_ADDRB[6]", 2, 5, RAM_OUTPUT, 1)) val.append(PinConstr("C_ADDRB[7]", 2, 5, RAM_OUTPUT, 2)) val.append(PinConstr("CLKA[0]", -6, 0, RAM_OUTPUT, 1)) val.append(PinConstr("CLKA[1]", -3, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ENA[0]", -6, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ENA[1]", -3, 1, RAM_OUTPUT, 1)) val.append(PinConstr("GLWEA[0]", -6, 0, RAM_OUTPUT, 2)) val.append(PinConstr("GLWEA[1]", -3, 0, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[0]", -5, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[1]", -5, 0, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[2]", -5, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[3]", -5, 1, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[4]", -5, 2, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[5]", -5, 2, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[6]", -5, 3, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[7]", -5, 3, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[8]", -5, 4, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[9]", -5, 4, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[10]", -5, 5, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[11]", -5, 5, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[12]", -5, 6, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[13]", -5, 6, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[14]", -5, 7, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[15]", -5, 7, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0X[0]", -5, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[1]", -4, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[2]", -5, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[3]", -4, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[4]", -5, 2, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[5]", -4, 2, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[6]", -5, 3, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[7]", -4, 3, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[8]", -5, 4, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[9]", -4, 4, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[10]", -5, 5, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[11]", -4, 5, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[12]", -6, 6, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[13]", -5, 6, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[14]", -6, 7, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0X[15]", -5, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[0]", -1, 0, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[1]", -1, 0, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[2]", -1, 1, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[3]", -1, 1, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[4]", -1, 2, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[5]", -1, 2, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[6]", -1, 3, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[7]", -1, 3, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[8]", -1, 4, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[9]", -1, 4, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[10]", -1, 5, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[11]", -1, 5, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[12]", -1, 6, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[13]", -1, 6, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[14]", -1, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[15]", -1, 7, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[16]", -3, 6, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[17]", -3, 6, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[18]", -3, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[19]", -3, 7, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[0]", -2, 0, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[1]", -2, 0, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[2]", -2, 1, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[3]", -2, 1, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[4]", -2, 2, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[5]", -2, 2, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[6]", -2, 3, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[7]", -2, 3, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[8]", -2, 4, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[9]", -2, 4, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[10]", -2, 5, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[11]", -2, 5, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[12]", -2, 6, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[13]", -2, 6, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[14]", -2, 7, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[15]", -2, 7, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[16]", -4, 6, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[17]", -4, 6, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[18]", -4, 7, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[19]", -4, 7, RAM_OUTPUT, 2)) val.append(PinConstr("CLKA[2]", -6, 8, RAM_OUTPUT, 1)) val.append(PinConstr("CLKA[3]", -3, 8, RAM_OUTPUT, 1)) val.append(PinConstr("ENA[2]", -6, 9, RAM_OUTPUT, 1)) val.append(PinConstr("ENA[3]", -3, 9, RAM_OUTPUT, 1)) val.append(PinConstr("GLWEA[2]", -6, 8, RAM_OUTPUT, 2)) val.append(PinConstr("GLWEA[3]", -3, 8, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1[0]", -5, 8, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1[1]", -5, 8, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1[2]", -5, 9, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1[3]", -5, 9, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1[4]", -5, 10, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1[5]", -5, 10, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1[6]", -5, 11, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1[7]", -5, 11, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1[8]", -5, 12, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1[9]", -5, 12, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1[10]", -5, 13, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1[11]", -5, 13, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1[12]", -5, 14, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1[13]", -5, 14, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1[14]", -5, 15, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1[15]", -5, 15, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA1X[0]", -5, 8, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[1]", -4, 8, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[2]", -5, 9, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[3]", -4, 9, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[4]", -5, 10, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[5]", -4, 10, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[6]", -5, 11, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[7]", -4, 11, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[8]", -5, 12, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[9]", -4, 12, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[10]", -5, 13, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[11]", -4, 13, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[12]", -6, 14, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[13]", -5, 14, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[14]", -6, 15, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA1X[15]", -5, 15, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[20]", -1, 8, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[21]", -1, 8, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[22]", -1, 9, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[23]", -1, 9, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[24]", -1, 10, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[25]", -1, 10, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[26]", -1, 11, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[27]", -1, 11, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[28]", -1, 12, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[29]", -1, 12, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[30]", -1, 13, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[31]", -1, 13, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[32]", -1, 14, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[33]", -1, 14, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[34]", -1, 15, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[35]", -1, 15, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[36]", -3, 14, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[37]", -3, 14, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[38]", -3, 15, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[39]", -3, 15, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[20]", -2, 8, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[21]", -2, 8, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[22]", -2, 9, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[23]", -2, 9, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[24]", -2, 10, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[25]", -2, 10, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[26]", -2, 11, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[27]", -2, 11, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[28]", -2, 12, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[29]", -2, 12, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[30]", -2, 13, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[31]", -2, 13, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[32]", -2, 14, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[33]", -2, 14, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[34]", -2, 15, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[35]", -2, 15, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[36]", -4, 14, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[37]", -4, 14, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[38]", -4, 15, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[39]", -4, 15, RAM_OUTPUT, 2)) val.append(PinConstr("CLKB[0]", 2, 0, RAM_OUTPUT, 1)) val.append(PinConstr("CLKB[1]", 5, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ENB[0]", 2, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ENB[1]", 5, 1, RAM_OUTPUT, 1)) val.append(PinConstr("GLWEB[0]", 2, 0, RAM_OUTPUT, 2)) val.append(PinConstr("GLWEB[1]", 5, 0, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[0]", 4, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[1]", 4, 0, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[2]", 4, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[3]", 4, 1, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[4]", 4, 2, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[5]", 4, 2, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[6]", 4, 3, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[7]", 4, 3, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[8]", 4, 4, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[9]", 4, 4, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[10]", 4, 5, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[11]", 4, 5, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[12]", 4, 6, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[13]", 4, 6, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[14]", 4, 7, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[15]", 4, 7, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0X[0]", 3, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[1]", 4, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[2]", 3, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[3]", 4, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[4]", 3, 2, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[5]", 4, 2, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[6]", 3, 3, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[7]", 4, 3, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[8]", 3, 4, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[9]", 4, 4, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[10]", 3, 5, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[11]", 4, 5, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[12]", 4, 6, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[13]", 5, 6, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[14]", 4, 7, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0X[15]", 5, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[0]", 1, 0, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[1]", 1, 0, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[2]", 1, 1, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[3]", 1, 1, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[4]", 1, 2, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[5]", 1, 2, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[6]", 1, 3, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[7]", 1, 3, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[8]", 1, 4, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[9]", 1, 4, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[10]", 1, 5, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[11]", 1, 5, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[12]", 1, 6, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[13]", 1, 6, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[14]", 1, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[15]", 1, 7, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[16]", 3, 6, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[17]", 3, 6, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[18]", 3, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[19]", 3, 7, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[0]", 0, 0, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[1]", 0, 0, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[2]", 0, 1, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[3]", 0, 1, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[4]", 0, 2, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[5]", 0, 2, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[6]", 0, 3, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[7]", 0, 3, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[8]", 0, 4, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[9]", 0, 4, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[10]", 0, 5, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[11]", 0, 5, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[12]", 0, 6, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[13]", 0, 6, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[14]", 0, 7, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[15]", 0, 7, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[16]", 2, 6, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[17]", 2, 6, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[18]", 2, 7, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[19]", 2, 7, RAM_OUTPUT, 2)) val.append(PinConstr("CLKB[2]", 2, 8, RAM_OUTPUT, 1)) val.append(PinConstr("CLKB[3]", 5, 8, RAM_OUTPUT, 1)) val.append(PinConstr("ENB[2]", 2, 9, RAM_OUTPUT, 1)) val.append(PinConstr("ENB[3]", 5, 9, RAM_OUTPUT, 1)) val.append(PinConstr("GLWEB[2]", 2, 8, RAM_OUTPUT, 2)) val.append(PinConstr("GLWEB[3]", 5, 8, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1[0]", 4, 8, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1[1]", 4, 8, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1[2]", 4, 9, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1[3]", 4, 9, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1[4]", 4, 10, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1[5]", 4, 10, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1[6]", 4, 11, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1[7]", 4, 11, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1[8]", 4, 12, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1[9]", 4, 12, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1[10]", 4, 13, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1[11]", 4, 13, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1[12]", 4, 14, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1[13]", 4, 14, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1[14]", 4, 15, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1[15]", 4, 15, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB1X[0]", 3, 8, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[1]", 4, 8, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[2]", 3, 9, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[3]", 4, 9, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[4]", 3, 10, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[5]", 4, 10, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[6]", 3, 11, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[7]", 4, 11, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[8]", 3, 12, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[9]", 4, 12, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[10]", 3, 13, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[11]", 4, 13, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[12]", 4, 14, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[13]", 5, 14, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[14]", 4, 15, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB1X[15]", 5, 15, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[20]", 1, 8, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[21]", 1, 8, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[22]", 1, 9, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[23]", 1, 9, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[24]", 1, 10, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[25]", 1, 10, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[26]", 1, 11, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[27]", 1, 11, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[28]", 1, 12, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[29]", 1, 12, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[30]", 1, 13, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[31]", 1, 13, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[32]", 1, 14, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[33]", 1, 14, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[34]", 1, 15, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[35]", 1, 15, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[36]", 3, 14, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[37]", 3, 14, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[38]", 3, 15, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[39]", 3, 15, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[20]", 0, 8, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[21]", 0, 8, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[22]", 0, 9, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[23]", 0, 9, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[24]", 0, 10, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[25]", 0, 10, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[26]", 0, 11, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[27]", 0, 11, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[28]", 0, 12, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[29]", 0, 12, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[30]", 0, 13, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[31]", 0, 13, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[32]", 0, 14, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[33]", 0, 14, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[34]", 0, 15, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[35]", 0, 15, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[36]", 2, 14, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[37]", 2, 14, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[38]", 2, 15, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[39]", 2, 15, RAM_OUTPUT, 2)) val.append(PinConstr("F_RSTN", -6, 2, RAM_OUTPUT, 2)) val.append(PinConstr("DOA[0]", -1, 0, RAM_INPUT, 1)) val.append(PinConstr("DOAX[0]", -2, 0, RAM_INPUT, 2)) val.append(PinConstr("DOA[1]", -1, 0, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[1]", -1, 0, RAM_INPUT, 2)) val.append(PinConstr("DOA[2]", -1, 1, RAM_INPUT, 1)) val.append(PinConstr("DOAX[2]", -2, 1, RAM_INPUT, 2)) val.append(PinConstr("DOA[3]", -1, 1, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[3]", -1, 1, RAM_INPUT, 2)) val.append(PinConstr("DOA[4]", -1, 2, RAM_INPUT, 1)) val.append(PinConstr("DOAX[4]", -2, 2, RAM_INPUT, 2)) val.append(PinConstr("DOA[5]", -1, 2, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[5]", -1, 2, RAM_INPUT, 2)) val.append(PinConstr("DOA[6]", -1, 3, RAM_INPUT, 1)) val.append(PinConstr("DOAX[6]", -2, 3, RAM_INPUT, 2)) val.append(PinConstr("DOA[7]", -1, 3, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[7]", -1, 3, RAM_INPUT, 2)) val.append(PinConstr("DOA[8]", -1, 4, RAM_INPUT, 1)) val.append(PinConstr("DOAX[8]", -2, 4, RAM_INPUT, 2)) val.append(PinConstr("DOA[9]", -1, 4, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[9]", -1, 4, RAM_INPUT, 2)) val.append(PinConstr("DOA[10]", -1, 5, RAM_INPUT, 1)) val.append(PinConstr("DOAX[10]", -2, 5, RAM_INPUT, 2)) val.append(PinConstr("DOA[11]", -1, 5, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[11]", -1, 5, RAM_INPUT, 2)) val.append(PinConstr("DOA[12]", -1, 6, RAM_INPUT, 1)) val.append(PinConstr("DOAX[12]", -2, 6, RAM_INPUT, 2)) val.append(PinConstr("DOA[13]", -1, 6, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[13]", -1, 6, RAM_INPUT, 2)) val.append(PinConstr("DOA[14]", -1, 7, RAM_INPUT, 1)) val.append(PinConstr("DOAX[14]", -2, 7, RAM_INPUT, 2)) val.append(PinConstr("DOA[15]", -1, 7, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[15]", -1, 7, RAM_INPUT, 2)) val.append(PinConstr("DOA[16]", -3, 6, RAM_INPUT, 1)) val.append(PinConstr("DOAX[16]", -4, 6, RAM_INPUT, 2)) val.append(PinConstr("DOA[17]", -3, 6, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[17]", -3, 6, RAM_INPUT, 2)) val.append(PinConstr("DOA[18]", -3, 7, RAM_INPUT, 1)) val.append(PinConstr("DOAX[18]", -4, 7, RAM_INPUT, 2)) val.append(PinConstr("DOA[19]", -3, 7, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[19]", -3, 7, RAM_INPUT, 2)) val.append(PinConstr("DOA[20]", -1, 8, RAM_INPUT, 1)) val.append(PinConstr("DOAX[20]", -2, 8, RAM_INPUT, 2)) val.append(PinConstr("DOA[21]", -1, 8, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[21]", -1, 8, RAM_INPUT, 2)) val.append(PinConstr("DOA[22]", -1, 9, RAM_INPUT, 1)) val.append(PinConstr("DOAX[22]", -2, 9, RAM_INPUT, 2)) val.append(PinConstr("DOA[23]", -1, 9, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[23]", -1, 9, RAM_INPUT, 2)) val.append(PinConstr("DOA[24]", -1, 10, RAM_INPUT, 1)) val.append(PinConstr("DOAX[24]", -2, 10, RAM_INPUT, 2)) val.append(PinConstr("DOA[25]", -1, 10, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[25]", -1, 10, RAM_INPUT, 2)) val.append(PinConstr("DOA[26]", -1, 11, RAM_INPUT, 1)) val.append(PinConstr("DOAX[26]", -2, 11, RAM_INPUT, 2)) val.append(PinConstr("DOA[27]", -1, 11, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[27]", -1, 11, RAM_INPUT, 2)) val.append(PinConstr("DOA[28]", -1, 12, RAM_INPUT, 1)) val.append(PinConstr("DOAX[28]", -2, 12, RAM_INPUT, 2)) val.append(PinConstr("DOA[29]", -1, 12, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[29]", -1, 12, RAM_INPUT, 2)) val.append(PinConstr("DOA[30]", -1, 13, RAM_INPUT, 1)) val.append(PinConstr("DOAX[30]", -2, 13, RAM_INPUT, 2)) val.append(PinConstr("DOA[31]", -1, 13, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[31]", -1, 13, RAM_INPUT, 2)) val.append(PinConstr("DOA[32]", -1, 14, RAM_INPUT, 1)) val.append(PinConstr("DOAX[32]", -2, 14, RAM_INPUT, 2)) val.append(PinConstr("DOA[33]", -1, 14, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[33]", -1, 14, RAM_INPUT, 2)) val.append(PinConstr("DOA[34]", -1, 15, RAM_INPUT, 1)) val.append(PinConstr("DOAX[34]", -2, 15, RAM_INPUT, 2)) val.append(PinConstr("DOA[35]", -1, 15, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[35]", -1, 15, RAM_INPUT, 2)) val.append(PinConstr("DOA[36]", -3, 14, RAM_INPUT, 1)) val.append(PinConstr("DOAX[36]", -4, 14, RAM_INPUT, 2)) val.append(PinConstr("DOA[37]", -3, 14, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[37]", -3, 14, RAM_INPUT, 2)) val.append(PinConstr("DOA[38]", -3, 15, RAM_INPUT, 1)) val.append(PinConstr("DOAX[38]", -4, 15, RAM_INPUT, 2)) val.append(PinConstr("DOA[39]", -3, 15, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[39]", -3, 15, RAM_INPUT, 2)) val.append(PinConstr("CLOCKA[1]", -3, 10, RAM_INPUT, 1)) val.append(PinConstr("CLOCKA[2]", -3, 11, RAM_INPUT, 1)) val.append(PinConstr("CLOCKA[3]", -3, 12, RAM_INPUT, 1)) val.append(PinConstr("CLOCKA[4]", -3, 13, RAM_INPUT, 1)) val.append(PinConstr("DOB[0]", 1, 0, RAM_INPUT, 1)) val.append(PinConstr("DOBX[0]", 0, 0, RAM_INPUT, 2)) val.append(PinConstr("DOB[1]", 1, 0, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[1]", 1, 0, RAM_INPUT, 2)) val.append(PinConstr("DOB[2]", 1, 1, RAM_INPUT, 1)) val.append(PinConstr("DOBX[2]", 0, 1, RAM_INPUT, 2)) val.append(PinConstr("DOB[3]", 1, 1, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[3]", 1, 1, RAM_INPUT, 2)) val.append(PinConstr("DOB[4]", 1, 2, RAM_INPUT, 1)) val.append(PinConstr("DOBX[4]", 0, 2, RAM_INPUT, 2)) val.append(PinConstr("DOB[5]", 1, 2, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[5]", 1, 2, RAM_INPUT, 2)) val.append(PinConstr("DOB[6]", 1, 3, RAM_INPUT, 1)) val.append(PinConstr("DOBX[6]", 0, 3, RAM_INPUT, 2)) val.append(PinConstr("DOB[7]", 1, 3, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[7]", 1, 3, RAM_INPUT, 2)) val.append(PinConstr("DOB[8]", 1, 4, RAM_INPUT, 1)) val.append(PinConstr("DOBX[8]", 0, 4, RAM_INPUT, 2)) val.append(PinConstr("DOB[9]", 1, 4, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[9]", 1, 4, RAM_INPUT, 2)) val.append(PinConstr("DOB[10]", 1, 5, RAM_INPUT, 1)) val.append(PinConstr("DOBX[10]", 0, 5, RAM_INPUT, 2)) val.append(PinConstr("DOB[11]", 1, 5, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[11]", 1, 5, RAM_INPUT, 2)) val.append(PinConstr("DOB[12]", 1, 6, RAM_INPUT, 1)) val.append(PinConstr("DOBX[12]", 0, 6, RAM_INPUT, 2)) val.append(PinConstr("DOB[13]", 1, 6, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[13]", 1, 6, RAM_INPUT, 2)) val.append(PinConstr("DOB[14]", 1, 7, RAM_INPUT, 1)) val.append(PinConstr("DOBX[14]", 0, 7, RAM_INPUT, 2)) val.append(PinConstr("DOB[15]", 1, 7, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[15]", 1, 7, RAM_INPUT, 2)) val.append(PinConstr("DOB[16]", 3, 6, RAM_INPUT, 1)) val.append(PinConstr("DOBX[16]", 2, 6, RAM_INPUT, 2)) val.append(PinConstr("DOB[17]", 3, 6, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[17]", 3, 6, RAM_INPUT, 2)) val.append(PinConstr("DOB[18]", 3, 7, RAM_INPUT, 1)) val.append(PinConstr("DOBX[18]", 2, 7, RAM_INPUT, 2)) val.append(PinConstr("DOB[19]", 3, 7, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[19]", 3, 7, RAM_INPUT, 2)) val.append(PinConstr("DOB[20]", 1, 8, RAM_INPUT, 1)) val.append(PinConstr("DOBX[20]", 0, 8, RAM_INPUT, 2)) val.append(PinConstr("DOB[21]", 1, 8, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[21]", 1, 8, RAM_INPUT, 2)) val.append(PinConstr("DOB[22]", 1, 9, RAM_INPUT, 1)) val.append(PinConstr("DOBX[22]", 0, 9, RAM_INPUT, 2)) val.append(PinConstr("DOB[23]", 1, 9, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[23]", 1, 9, RAM_INPUT, 2)) val.append(PinConstr("DOB[24]", 1, 10, RAM_INPUT, 1)) val.append(PinConstr("DOBX[24]", 0, 10, RAM_INPUT, 2)) val.append(PinConstr("DOB[25]", 1, 10, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[25]", 1, 10, RAM_INPUT, 2)) val.append(PinConstr("DOB[26]", 1, 11, RAM_INPUT, 1)) val.append(PinConstr("DOBX[26]", 0, 11, RAM_INPUT, 2)) val.append(PinConstr("DOB[27]", 1, 11, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[27]", 1, 11, RAM_INPUT, 2)) val.append(PinConstr("DOB[28]", 1, 12, RAM_INPUT, 1)) val.append(PinConstr("DOBX[28]", 0, 12, RAM_INPUT, 2)) val.append(PinConstr("DOB[29]", 1, 12, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[29]", 1, 12, RAM_INPUT, 2)) val.append(PinConstr("DOB[30]", 1, 13, RAM_INPUT, 1)) val.append(PinConstr("DOBX[30]", 0, 13, RAM_INPUT, 2)) val.append(PinConstr("DOB[31]", 1, 13, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[31]", 1, 13, RAM_INPUT, 2)) val.append(PinConstr("DOB[32]", 1, 14, RAM_INPUT, 1)) val.append(PinConstr("DOBX[32]", 0, 14, RAM_INPUT, 2)) val.append(PinConstr("DOB[33]", 1, 14, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[33]", 1, 14, RAM_INPUT, 2)) val.append(PinConstr("DOB[34]", 1, 15, RAM_INPUT, 1)) val.append(PinConstr("DOBX[34]", 0, 15, RAM_INPUT, 2)) val.append(PinConstr("DOB[35]", 1, 15, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[35]", 1, 15, RAM_INPUT, 2)) val.append(PinConstr("DOB[36]", 3, 14, RAM_INPUT, 1)) val.append(PinConstr("DOBX[36]", 2, 14, RAM_INPUT, 2)) val.append(PinConstr("DOB[37]", 3, 14, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[37]", 3, 14, RAM_INPUT, 2)) val.append(PinConstr("DOB[38]", 3, 15, RAM_INPUT, 1)) val.append(PinConstr("DOBX[38]", 2, 15, RAM_INPUT, 2)) val.append(PinConstr("DOB[39]", 3, 15, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[39]", 3, 15, RAM_INPUT, 2)) val.append(PinConstr("CLOCKB[1]", 2, 10, RAM_INPUT, 2)) val.append(PinConstr("CLOCKB[2]", 2, 11, RAM_INPUT, 2)) val.append(PinConstr("CLOCKB[3]", 2, 12, RAM_INPUT, 2)) val.append(PinConstr("CLOCKB[4]", 2, 13, RAM_INPUT, 2)) val.append(PinConstr("ECC1B_ERRA[0]", -4, 0, RAM_INPUT, 1)) val.append(PinConstr("ECC1B_ERRA[1]", -4, 8, RAM_INPUT, 1)) val.append(PinConstr("ECC1B_ERRA[2]", 5, 0, RAM_INPUT, 1)) val.append(PinConstr("ECC1B_ERRA[3]", 5, 8, RAM_INPUT, 1)) val.append(PinConstr("ECC1B_ERRB[0]", -4, 1, RAM_INPUT, 1)) val.append(PinConstr("ECC1B_ERRB[1]", -4, 9, RAM_INPUT, 1)) val.append(PinConstr("ECC1B_ERRB[2]", 5, 1, RAM_INPUT, 1)) val.append(PinConstr("ECC1B_ERRB[3]", 5, 9, RAM_INPUT, 1)) val.append(PinConstr("ECC2B_ERRA[0]", -4, 0, RAM_INPUT, 2)) val.append(PinConstr("ECC2B_ERRA[1]", -4, 8, RAM_INPUT, 2)) val.append(PinConstr("ECC2B_ERRA[2]", 5, 0, RAM_INPUT, 2)) val.append(PinConstr("ECC2B_ERRA[3]", 5, 8, RAM_INPUT, 2)) val.append(PinConstr("ECC2B_ERRB[0]", -4, 1, RAM_INPUT, 2)) val.append(PinConstr("ECC2B_ERRB[1]", -4, 9, RAM_INPUT, 2)) val.append(PinConstr("ECC2B_ERRB[2]", 5, 1, RAM_INPUT, 2)) val.append(PinConstr("ECC2B_ERRB[3]", 5, 9, RAM_INPUT, 2)) val.append(PinConstr("F_FULL[0]", -4, 10, RAM_INPUT, 2)) val.append(PinConstr("F_FULL[1]", -4, 12, RAM_INPUT, 2)) val.append(PinConstr("F_EMPTY[0]", -4, 10, RAM_INPUT, 1)) val.append(PinConstr("F_EMPTY[1]", -4, 13, RAM_INPUT, 2)) val.append(PinConstr("F_AL_FULL[0]", -4, 11, RAM_INPUT, 2)) val.append(PinConstr("F_AL_FULL[1]", -4, 12, RAM_INPUT, 1)) val.append(PinConstr("F_AL_EMPTY[0]", -4, 11, RAM_INPUT, 1)) val.append(PinConstr("F_AL_EMPTY[1]", -4, 13, RAM_INPUT, 1)) val.append(PinConstr("FWR_ERR[0]", -4, 4, RAM_INPUT, 1)) val.append(PinConstr("FWR_ERR[1]", -4, 5, RAM_INPUT, 1)) val.append(PinConstr("FRD_ERR[0]", -4, 4, RAM_INPUT, 2)) val.append(PinConstr("FRD_ERR[1]", -4, 5, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDR[0]", -6, 8, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDRX[0]", -5, 8, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDR[1]", -6, 8, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDRX[1]", -5, 8, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDR[2]", -6, 9, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDRX[2]", -5, 9, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDR[3]", -6, 9, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDRX[3]", -5, 9, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDR[4]", -6, 10, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDRX[4]", -5, 10, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDR[5]", -6, 10, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDRX[5]", -5, 10, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDR[6]", -6, 11, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDRX[6]", -5, 11, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDR[7]", -6, 11, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDRX[7]", -5, 11, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDR[8]", -6, 12, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDRX[8]", -5, 12, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDR[9]", -6, 12, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDRX[9]", -5, 12, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDR[10]", -6, 13, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDRX[10]", -5, 13, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDR[11]", -6, 13, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDRX[11]", -5, 13, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDR[12]", -6, 14, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDRX[12]", -5, 14, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDR[13]", -6, 14, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDRX[13]", -5, 14, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDR[14]", -6, 15, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDRX[14]", -5, 15, RAM_INPUT, 1)) val.append(PinConstr("FWR_ADDR[15]", -6, 15, RAM_INPUT, 2)) val.append(PinConstr("FWR_ADDRX[15]", -5, 15, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDR[0]", -6, 0, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDRX[0]", -5, 0, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDR[1]", -6, 0, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDRX[1]", -5, 0, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDR[2]", -6, 1, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDRX[2]", -5, 1, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDR[3]", -6, 1, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDRX[3]", -5, 1, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDR[4]", -6, 2, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDRX[4]", -5, 2, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDR[5]", -6, 2, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDRX[5]", -5, 2, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDR[6]", -6, 3, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDRX[6]", -5, 3, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDR[7]", -6, 3, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDRX[7]", -5, 3, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDR[8]", -6, 4, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDRX[8]", -5, 4, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDR[9]", -6, 4, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDRX[9]", -5, 4, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDR[10]", -6, 5, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDRX[10]", -5, 5, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDR[11]", -6, 5, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDRX[11]", -5, 5, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDR[12]", -6, 6, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDRX[12]", -5, 6, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDR[13]", -6, 6, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDRX[13]", -5, 6, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDR[14]", -6, 7, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDRX[14]", -5, 7, RAM_INPUT, 1)) val.append(PinConstr("FRD_ADDR[15]", -6, 7, RAM_INPUT, 2)) val.append(PinConstr("FRD_ADDRX[15]", -5, 7, RAM_INPUT, 2)) elif prim_type == "RAM_HALF_L": val.append(PinConstr("CLKA[0]", -6, 0, RAM_OUTPUT, 1)) #val.append(PinConstr("CLKA[1]", -3, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ENA[0]", -6, 1, RAM_OUTPUT, 1)) #val.append(PinConstr("ENA[1]", -3, 1, RAM_OUTPUT, 1)) val.append(PinConstr("GLWEA[0]", -6, 0, RAM_OUTPUT, 2)) #val.append(PinConstr("GLWEA[1]", -3, 0, RAM_OUTPUT, 2)) val.append(PinConstr("CLKB[0]", 2, 0, RAM_OUTPUT, 1)) #val.append(PinConstr("CLKB[1]", 5, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ENB[0]", 2, 1, RAM_OUTPUT, 1)) #val.append(PinConstr("ENB[1]", 5, 1, RAM_OUTPUT, 1)) val.append(PinConstr("GLWEB[0]", 2, 0, RAM_OUTPUT, 2)) #val.append(PinConstr("GLWEB[1]", 5, 0, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[0]", -2, 0, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[1]", -2, 0, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[2]", -2, 1, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[3]", -2, 1, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[4]", -2, 2, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[5]", -2, 2, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[6]", -2, 3, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[7]", -2, 3, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[8]", -2, 4, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[9]", -2, 4, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[10]", -2, 5, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[11]", -2, 5, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[12]", -2, 6, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[13]", -2, 6, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[14]", -2, 7, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[15]", -2, 7, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[16]", -4, 6, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[17]", -4, 6, RAM_OUTPUT, 2)) val.append(PinConstr("WEA[18]", -4, 7, RAM_OUTPUT, 1)) val.append(PinConstr("WEA[19]", -4, 7, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[0]", 0, 0, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[1]", 0, 0, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[2]", 0, 1, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[3]", 0, 1, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[4]", 0, 2, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[5]", 0, 2, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[6]", 0, 3, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[7]", 0, 3, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[8]", 0, 4, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[9]", 0, 4, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[10]", 0, 5, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[11]", 0, 5, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[12]", 0, 6, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[13]", 0, 6, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[14]", 0, 7, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[15]", 0, 7, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[16]", 2, 6, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[17]", 2, 6, RAM_OUTPUT, 2)) val.append(PinConstr("WEB[18]", 2, 7, RAM_OUTPUT, 1)) val.append(PinConstr("WEB[19]", 2, 7, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[0]", -5, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[1]", -5, 0, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[2]", -5, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[3]", -5, 1, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[4]", -5, 2, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[5]", -5, 2, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[6]", -5, 3, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[7]", -5, 3, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[8]", -5, 4, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[9]", -5, 4, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[10]", -5, 5, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[11]", -5, 5, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[12]", -5, 6, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[13]", -5, 6, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRA0[14]", -5, 7, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRA0[15]", -5, 7, RAM_OUTPUT, 2)) #val.append(PinConstr("ADDRA0X[0]", -5, 0, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[1]", -4, 0, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[2]", -5, 1, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[3]", -4, 1, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[4]", -5, 2, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[5]", -4, 2, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[6]", -5, 3, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[7]", -4, 3, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[8]", -5, 4, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[9]", -4, 4, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[10]", -5, 5, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[11]", -4, 5, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[12]", -6, 6, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[13]", -5, 6, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[14]", -6, 7, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRA0X[15]", -5, 7, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[0]", 4, 0, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[1]", 4, 0, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[2]", 4, 1, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[3]", 4, 1, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[4]", 4, 2, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[5]", 4, 2, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[6]", 4, 3, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[7]", 4, 3, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[8]", 4, 4, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[9]", 4, 4, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[10]", 4, 5, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[11]", 4, 5, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[12]", 4, 6, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[13]", 4, 6, RAM_OUTPUT, 2)) val.append(PinConstr("ADDRB0[14]", 4, 7, RAM_OUTPUT, 1)) val.append(PinConstr("ADDRB0[15]", 4, 7, RAM_OUTPUT, 2)) #val.append(PinConstr("ADDRB0X[0]", 3, 0, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[1]", 4, 0, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[2]", 3, 1, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[3]", 4, 1, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[4]", 3, 2, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[5]", 4, 2, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[6]", 3, 3, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[7]", 4, 3, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[8]", 3, 4, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[9]", 4, 4, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[10]", 3, 5, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[11]", 4, 5, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[12]", 4, 6, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[13]", 5, 6, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[14]", 4, 7, RAM_OUTPUT, 1)) #val.append(PinConstr("ADDRB0X[15]", 5, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[0]", -1, 0, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[1]", -1, 0, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[2]", -1, 1, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[3]", -1, 1, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[4]", -1, 2, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[5]", -1, 2, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[6]", -1, 3, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[7]", -1, 3, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[8]", -1, 4, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[9]", -1, 4, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[10]", -1, 5, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[11]", -1, 5, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[12]", -1, 6, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[13]", -1, 6, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[14]", -1, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[15]", -1, 7, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[16]", -3, 6, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[17]", -3, 6, RAM_OUTPUT, 2)) val.append(PinConstr("DIA[18]", -3, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIA[19]", -3, 7, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[0]", 1, 0, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[1]", 1, 0, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[2]", 1, 1, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[3]", 1, 1, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[4]", 1, 2, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[5]", 1, 2, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[6]", 1, 3, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[7]", 1, 3, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[8]", 1, 4, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[9]", 1, 4, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[10]", 1, 5, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[11]", 1, 5, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[12]", 1, 6, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[13]", 1, 6, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[14]", 1, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[15]", 1, 7, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[16]", 3, 6, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[17]", 3, 6, RAM_OUTPUT, 2)) val.append(PinConstr("DIB[18]", 3, 7, RAM_OUTPUT, 1)) val.append(PinConstr("DIB[19]", 3, 7, RAM_OUTPUT, 2)) val.append(PinConstr("DOA[0]", -1, 0, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[0]", -2, 0, RAM_INPUT, 2)) val.append(PinConstr("DOA[1]", -1, 0, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[1]", -1, 0, RAM_INPUT, 2)) val.append(PinConstr("DOA[2]", -1, 1, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[2]", -2, 1, RAM_INPUT, 2)) val.append(PinConstr("DOA[3]", -1, 1, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[3]", -1, 1, RAM_INPUT, 2)) val.append(PinConstr("DOA[4]", -1, 2, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[4]", -2, 2, RAM_INPUT, 2)) val.append(PinConstr("DOA[5]", -1, 2, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[5]", -1, 2, RAM_INPUT, 2)) val.append(PinConstr("DOA[6]", -1, 3, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[6]", -2, 3, RAM_INPUT, 2)) val.append(PinConstr("DOA[7]", -1, 3, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[7]", -1, 3, RAM_INPUT, 2)) val.append(PinConstr("DOA[8]", -1, 4, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[8]", -2, 4, RAM_INPUT, 2)) val.append(PinConstr("DOA[9]", -1, 4, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[9]", -1, 4, RAM_INPUT, 2)) val.append(PinConstr("DOA[10]", -1, 5, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[10]", -2, 5, RAM_INPUT, 2)) val.append(PinConstr("DOA[11]", -1, 5, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[11]", -1, 5, RAM_INPUT, 2)) val.append(PinConstr("DOA[12]", -1, 6, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[12]", -2, 6, RAM_INPUT, 2)) val.append(PinConstr("DOA[13]", -1, 6, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[13]", -1, 6, RAM_INPUT, 2)) val.append(PinConstr("DOA[14]", -1, 7, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[14]", -2, 7, RAM_INPUT, 2)) val.append(PinConstr("DOA[15]", -1, 7, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[15]", -1, 7, RAM_INPUT, 2)) val.append(PinConstr("DOA[16]", -3, 6, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[16]", -4, 6, RAM_INPUT, 2)) val.append(PinConstr("DOA[17]", -3, 6, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[17]", -3, 6, RAM_INPUT, 2)) val.append(PinConstr("DOA[18]", -3, 7, RAM_INPUT, 1)) #val.append(PinConstr("DOAX[18]", -4, 7, RAM_INPUT, 2)) val.append(PinConstr("DOA[19]", -3, 7, RAM_INPUT, 2)) # val.append(PinConstr("DOAX[19]", -3, 7, RAM_INPUT, 2)) val.append(PinConstr("DOB[0]", 1, 0, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[0]", 0, 0, RAM_INPUT, 2)) val.append(PinConstr("DOB[1]", 1, 0, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[1]", 1, 0, RAM_INPUT, 2)) val.append(PinConstr("DOB[2]", 1, 1, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[2]", 0, 1, RAM_INPUT, 2)) val.append(PinConstr("DOB[3]", 1, 1, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[3]", 1, 1, RAM_INPUT, 2)) val.append(PinConstr("DOB[4]", 1, 2, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[4]", 0, 2, RAM_INPUT, 2)) val.append(PinConstr("DOB[5]", 1, 2, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[5]", 1, 2, RAM_INPUT, 2)) val.append(PinConstr("DOB[6]", 1, 3, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[6]", 0, 3, RAM_INPUT, 2)) val.append(PinConstr("DOB[7]", 1, 3, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[7]", 1, 3, RAM_INPUT, 2)) val.append(PinConstr("DOB[8]", 1, 4, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[8]", 0, 4, RAM_INPUT, 2)) val.append(PinConstr("DOB[9]", 1, 4, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[9]", 1, 4, RAM_INPUT, 2)) val.append(PinConstr("DOB[10]", 1, 5, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[10]", 0, 5, RAM_INPUT, 2)) val.append(PinConstr("DOB[11]", 1, 5, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[11]", 1, 5, RAM_INPUT, 2)) val.append(PinConstr("DOB[12]", 1, 6, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[12]", 0, 6, RAM_INPUT, 2)) val.append(PinConstr("DOB[13]", 1, 6, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[13]", 1, 6, RAM_INPUT, 2)) val.append(PinConstr("DOB[14]", 1, 7, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[14]", 0, 7, RAM_INPUT, 2)) val.append(PinConstr("DOB[15]", 1, 7, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[15]", 1, 7, RAM_INPUT, 2)) val.append(PinConstr("DOB[16]", 3, 6, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[16]", 2, 6, RAM_INPUT, 2)) val.append(PinConstr("DOB[17]", 3, 6, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[17]", 3, 6, RAM_INPUT, 2)) val.append(PinConstr("DOB[18]", 3, 7, RAM_INPUT, 1)) #val.append(PinConstr("DOBX[18]", 2, 7, RAM_INPUT, 2)) val.append(PinConstr("DOB[19]", 3, 7, RAM_INPUT, 2)) # val.append(PinConstr("DOBX[19]", 3, 7, RAM_INPUT, 2)) val.append(PinConstr("ECC1B_ERRA[0]", -4, 0, RAM_INPUT, 1)) #val.append(PinConstr("ECC1B_ERRA[2]", 5, 0, RAM_INPUT, 1)) val.append(PinConstr("ECC1B_ERRB[0]", -4, 1, RAM_INPUT, 1)) #val.append(PinConstr("ECC1B_ERRB[2]", 5, 1, RAM_INPUT, 1)) val.append(PinConstr("ECC2B_ERRA[0]", -4, 0, RAM_INPUT, 2)) #val.append(PinConstr("ECC2B_ERRA[2]", 5, 0, RAM_INPUT, 2)) val.append(PinConstr("ECC2B_ERRB[0]", -4, 1, RAM_INPUT, 2)) #val.append(PinConstr("ECC2B_ERRB[2]", 5, 1, RAM_INPUT, 2)) elif prim_type=="SERDES": val.append(PinConstr("TX_DETECT_RX_I", 6, 6, RAM_OUTPUT, 1)) val.append(PinConstr("PLL_RESET_I", 6, 5, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_CLK_I", 6, 5, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CLK_I", 6, 4, RAM_OUTPUT, 2)) val.append(PinConstr("RX_CLK_I", 6, 4, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_WE_I", 6, 3, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_EN_I", 6, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_RESET_I", 6, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_PCS_RESET_I", 6, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_PMA_RESET_I", 6, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_PRBS_FORCE_ERR_I", 6, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_POLARITY_I", 6, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_8B10B_EN_I", 6, 0, RAM_OUTPUT, 1)) val.append(PinConstr("RX_RESET_I", 7, 6, RAM_OUTPUT, 2)) val.append(PinConstr("RX_PMA_RESET_I", 7, 6, RAM_OUTPUT, 1)) val.append(PinConstr("RX_EQA_RESET_I", 7, 5, RAM_OUTPUT, 2)) val.append(PinConstr("RX_CDR_RESET_I", 7, 5, RAM_OUTPUT, 1)) val.append(PinConstr("RX_PCS_RESET_I", 7, 4, RAM_OUTPUT, 2)) val.append(PinConstr("RX_BUF_RESET_I", 7, 4, RAM_OUTPUT, 1)) val.append(PinConstr("RX_PRBS_CNT_RESET_I", 7, 3, RAM_OUTPUT, 2)) val.append(PinConstr("RX_EN_EI_DETECTOR_I", 7, 3, RAM_OUTPUT, 1)) val.append(PinConstr("RX_COMMA_DETECT_EN_I", 7, 2, RAM_OUTPUT, 2)) val.append(PinConstr("RX_SLIDE_I", 7, 2, RAM_OUTPUT, 1)) val.append(PinConstr("RX_POLARITY_I", 7, 1, RAM_OUTPUT, 2)) val.append(PinConstr("RX_8B10B_EN_I", 7, 1, RAM_OUTPUT, 1)) val.append(PinConstr("RX_MCOMMA_ALIGN_I", 7, 0, RAM_OUTPUT, 2)) val.append(PinConstr("RX_PCOMMA_ALIGN_I", 7, 0, RAM_OUTPUT, 1)) val.append(PinConstr("RX_NOT_IN_TABLE_O[7]", 8, 7, RAM_INPUT, 1)) val.append(PinConstr("RX_NOT_IN_TABLE_O[6]", 8, 7, RAM_INPUT, 2)) val.append(PinConstr("RX_NOT_IN_TABLE_O[5]", 9, 7, RAM_INPUT, 1)) val.append(PinConstr("RX_NOT_IN_TABLE_O[4]", 9, 7, RAM_INPUT, 2)) val.append(PinConstr("RX_NOT_IN_TABLE_O[3]", 10, 7, RAM_INPUT, 1)) val.append(PinConstr("RX_NOT_IN_TABLE_O[2]", 10, 7, RAM_INPUT, 2)) val.append(PinConstr("RX_NOT_IN_TABLE_O[1]", 11, 7, RAM_INPUT, 1)) val.append(PinConstr("RX_NOT_IN_TABLE_O[0]", 11, 7, RAM_INPUT, 2)) val.append(PinConstr("RX_CHAR_IS_COMMA_O[7]", 12, 7, RAM_INPUT, 1)) val.append(PinConstr("RX_CHAR_IS_COMMA_O[6]", 12, 7, RAM_INPUT, 2)) val.append(PinConstr("RX_CHAR_IS_COMMA_O[5]", 13, 7, RAM_INPUT, 1)) val.append(PinConstr("RX_CHAR_IS_COMMA_O[4]", 13, 7, RAM_INPUT, 2)) val.append(PinConstr("RX_CHAR_IS_COMMA_O[3]", 14, 7, RAM_INPUT, 1)) val.append(PinConstr("RX_CHAR_IS_COMMA_O[2]", 14, 7, RAM_INPUT, 2)) val.append(PinConstr("RX_CHAR_IS_COMMA_O[1]", 15, 7, RAM_INPUT, 1)) val.append(PinConstr("RX_CHAR_IS_COMMA_O[0]", 15, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_ADDR_I[7]", 8, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_ADDR_I[6]", 8, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_ADDR_I[5]", 9, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_ADDR_I[4]", 9, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_ADDR_I[3]", 10, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_ADDR_I[2]", 10, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_ADDR_I[1]", 11, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_ADDR_I[0]", 11, 6, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_IS_K_I[7]", 12, 6, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_IS_K_I[6]", 12, 6, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_IS_K_I[5]", 13, 6, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_IS_K_I[4]", 13, 6, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_IS_K_I[3]", 14, 6, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_IS_K_I[2]", 14, 6, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_IS_K_I[1]", 15, 6, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_IS_K_I[0]", 15, 6, RAM_OUTPUT, 2)) val.append(PinConstr("TX_8B10B_BYPASS_I[7]", 8, 5, RAM_OUTPUT, 1)) val.append(PinConstr("TX_8B10B_BYPASS_I[6]", 8, 5, RAM_OUTPUT, 2)) val.append(PinConstr("TX_8B10B_BYPASS_I[5]", 9, 5, RAM_OUTPUT, 1)) val.append(PinConstr("TX_8B10B_BYPASS_I[4]", 9, 5, RAM_OUTPUT, 2)) val.append(PinConstr("TX_8B10B_BYPASS_I[3]", 10, 5, RAM_OUTPUT, 1)) val.append(PinConstr("TX_8B10B_BYPASS_I[2]", 10, 5, RAM_OUTPUT, 2)) val.append(PinConstr("TX_8B10B_BYPASS_I[1]", 11, 5, RAM_OUTPUT, 1)) val.append(PinConstr("TX_8B10B_BYPASS_I[0]", 11, 5, RAM_OUTPUT, 2)) val.append(PinConstr("RX_8B10B_BYPASS_I[7]", 12, 5, RAM_OUTPUT, 1)) val.append(PinConstr("RX_8B10B_BYPASS_I[6]", 12, 5, RAM_OUTPUT, 2)) val.append(PinConstr("RX_8B10B_BYPASS_I[5]", 13, 5, RAM_OUTPUT, 1)) val.append(PinConstr("RX_8B10B_BYPASS_I[4]", 13, 5, RAM_OUTPUT, 2)) val.append(PinConstr("RX_8B10B_BYPASS_I[3]", 14, 5, RAM_OUTPUT, 1)) val.append(PinConstr("RX_8B10B_BYPASS_I[2]", 14, 5, RAM_OUTPUT, 2)) val.append(PinConstr("RX_8B10B_BYPASS_I[1]", 15, 5, RAM_OUTPUT, 1)) val.append(PinConstr("RX_8B10B_BYPASS_I[0]", 15, 5, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_DISPMODE_I[7]", 8, 4, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_DISPMODE_I[6]", 8, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_DISPMODE_I[5]", 9, 4, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_DISPMODE_I[4]", 9, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_DISPMODE_I[3]", 10, 4, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_DISPMODE_I[2]", 10, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_DISPMODE_I[1]", 11, 4, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_DISPMODE_I[0]", 11, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_DISPVAL_I[7]", 12, 4, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_DISPVAL_I[6]", 12, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_DISPVAL_I[5]", 13, 4, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_DISPVAL_I[4]", 13, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_DISPVAL_I[3]", 14, 4, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_DISPVAL_I[2]", 14, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_CHAR_DISPVAL_I[1]", 15, 4, RAM_OUTPUT, 1)) val.append(PinConstr("TX_CHAR_DISPVAL_I[0]", 15, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[63]", 8, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[62]", 8, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[61]", 9, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[60]", 9, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[59]", 10, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[58]", 10, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[57]", 11, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[56]", 11, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[55]", 12, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[54]", 12, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[53]", 13, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[52]", 13, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[51]", 14, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[50]", 14, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[49]", 15, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[48]", 15, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[47]", 8, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[46]", 8, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[45]", 9, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[44]", 9, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[43]", 10, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[42]", 10, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[41]", 11, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[40]", 11, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[39]", 12, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[38]", 12, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[37]", 13, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[36]", 13, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[35]", 14, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[34]", 14, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[33]", 15, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[32]", 15, 2, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[31]", 8, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[30]", 8, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[29]", 9, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[28]", 9, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[27]", 10, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[26]", 10, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[25]", 11, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[24]", 11, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[23]", 12, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[22]", 12, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[21]", 13, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[20]", 13, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[19]", 14, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[18]", 14, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[17]", 15, 1, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[16]", 15, 1, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[15]", 8, 0, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[14]", 8, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[13]", 9, 0, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[12]", 9, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[11]", 10, 0, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[10]", 10, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[9]", 11, 0, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[8]", 11, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[7]", 12, 0, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[6]", 12, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[5]", 13, 0, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[4]", 13, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[3]", 14, 0, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[2]", 14, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_DATA_I[1]", 15, 0, RAM_OUTPUT, 1)) val.append(PinConstr("TX_DATA_I[0]", 15, 0, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_DO_O[15]", 16, 7, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_DO_O[14]", 16, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_DO_O[13]", 17, 7, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_DO_O[12]", 17, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_DO_O[11]", 18, 7, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_DO_O[10]", 18, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_DO_O[9]", 19, 7, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_DO_O[8]", 19, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_DO_O[7]", 20, 7, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_DO_O[6]", 20, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_DO_O[5]", 21, 7, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_DO_O[4]", 21, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_DO_O[3]", 22, 7, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_DO_O[2]", 22, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_DO_O[1]", 23, 7, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_DO_O[0]", 23, 7, RAM_INPUT, 2)) val.append(PinConstr("REGFILE_DI_I[15]", 16, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_DI_I[14]", 16, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_DI_I[13]", 17, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_DI_I[12]", 17, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_DI_I[11]", 18, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_DI_I[10]", 18, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_DI_I[9]", 19, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_DI_I[8]", 19, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_DI_I[7]", 20, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_DI_I[6]", 20, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_DI_I[5]", 21, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_DI_I[4]", 21, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_DI_I[3]", 22, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_DI_I[2]", 22, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_DI_I[1]", 23, 6, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_DI_I[0]", 23, 6, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_MASK_I[15]", 16, 5, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_MASK_I[14]", 16, 5, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_MASK_I[13]", 17, 5, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_MASK_I[12]", 17, 5, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_MASK_I[11]", 18, 5, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_MASK_I[10]", 18, 5, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_MASK_I[9]", 19, 5, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_MASK_I[8]", 19, 5, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_MASK_I[7]", 20, 5, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_MASK_I[6]", 20, 5, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_MASK_I[5]", 21, 5, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_MASK_I[4]", 21, 5, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_MASK_I[3]", 22, 5, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_MASK_I[2]", 22, 5, RAM_OUTPUT, 2)) val.append(PinConstr("REGFILE_MASK_I[1]", 23, 5, RAM_OUTPUT, 1)) val.append(PinConstr("REGFILE_MASK_I[0]", 23, 5, RAM_OUTPUT, 2)) val.append(PinConstr("RX_CHAR_IS_K_O[7]", 16, 4, RAM_INPUT, 1)) val.append(PinConstr("RX_CHAR_IS_K_O[6]", 16, 4, RAM_INPUT, 2)) val.append(PinConstr("RX_CHAR_IS_K_O[5]", 17, 4, RAM_INPUT, 1)) val.append(PinConstr("RX_CHAR_IS_K_O[4]", 17, 4, RAM_INPUT, 2)) val.append(PinConstr("RX_CHAR_IS_K_O[3]", 18, 4, RAM_INPUT, 1)) val.append(PinConstr("RX_CHAR_IS_K_O[2]", 18, 4, RAM_INPUT, 2)) val.append(PinConstr("RX_CHAR_IS_K_O[1]", 19, 4, RAM_INPUT, 1)) val.append(PinConstr("RX_CHAR_IS_K_O[0]", 19, 4, RAM_INPUT, 2)) val.append(PinConstr("RX_DISP_ERR_O[7]", 20, 4, RAM_INPUT, 1)) val.append(PinConstr("RX_DISP_ERR_O[6]", 20, 4, RAM_INPUT, 2)) val.append(PinConstr("RX_DISP_ERR_O[5]", 21, 4, RAM_INPUT, 1)) val.append(PinConstr("RX_DISP_ERR_O[4]", 21, 4, RAM_INPUT, 2)) val.append(PinConstr("RX_DISP_ERR_O[3]", 22, 4, RAM_INPUT, 1)) val.append(PinConstr("RX_DISP_ERR_O[2]", 22, 4, RAM_INPUT, 2)) val.append(PinConstr("RX_DISP_ERR_O[1]", 23, 4, RAM_INPUT, 1)) val.append(PinConstr("RX_DISP_ERR_O[0]", 23, 4, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[63]", 16, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[62]", 16, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[61]", 17, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[60]", 17, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[59]", 18, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[58]", 18, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[57]", 19, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[56]", 19, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[55]", 20, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[54]", 20, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[53]", 21, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[52]", 21, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[51]", 22, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[50]", 22, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[49]", 23, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[48]", 23, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[47]", 16, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[46]", 16, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[45]", 17, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[44]", 17, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[43]", 18, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[42]", 18, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[41]", 19, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[40]", 19, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[39]", 20, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[38]", 20, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[37]", 21, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[36]", 21, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[35]", 22, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[34]", 22, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[33]", 23, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[32]", 23, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[31]", 16, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[30]", 16, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[29]", 17, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[28]", 17, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[27]", 18, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[26]", 18, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[25]", 19, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[24]", 19, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[23]", 20, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[22]", 20, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[21]", 21, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[20]", 21, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[19]", 22, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[18]", 22, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[17]", 23, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[16]", 23, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[15]", 16, 0, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[14]", 16, 0, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[13]", 17, 0, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[12]", 17, 0, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[11]", 18, 0, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[10]", 18, 0, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[9]", 19, 0, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[8]", 19, 0, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[7]", 20, 0, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[6]", 20, 0, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[5]", 21, 0, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[4]", 21, 0, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[3]", 22, 0, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[2]", 22, 0, RAM_INPUT, 2)) val.append(PinConstr("RX_DATA_O[1]", 23, 0, RAM_INPUT, 1)) val.append(PinConstr("RX_DATA_O[0]", 23, 0, RAM_INPUT, 2)) val.append(PinConstr("TX_DETECT_RX_DONE_O", 24, 6, RAM_INPUT, 2)) val.append(PinConstr("TX_DETECT_RX_PRESENT_O", 24, 6, RAM_INPUT, 1)) val.append(PinConstr("RX_CLK_O", 24, 5, RAM_INPUT, 2)) val.append(PinConstr("PLL_CLK_O", 24, 5, RAM_INPUT, 1)) val.append(PinConstr("TX_BUF_ERR_O", 24, 4, RAM_INPUT, 2)) val.append(PinConstr("TX_RESET_DONE_O", 24, 4, RAM_INPUT, 1)) val.append(PinConstr("REGFILE_RDY_O", 24, 3, RAM_INPUT, 2)) val.append(PinConstr("RX_PRBS_ERR_O", 24, 3, RAM_INPUT, 1)) val.append(PinConstr("RX_BUF_ERR_O", 24, 2, RAM_INPUT, 2)) val.append(PinConstr("RX_BYTE_IS_ALIGNED_O", 24, 2, RAM_INPUT, 1)) val.append(PinConstr("RX_BYTE_REALIGN_O", 24, 1, RAM_INPUT, 2)) val.append(PinConstr("RX_RESET_DONE_O", 24, 1, RAM_INPUT, 1)) val.append(PinConstr("RX_EI_EN_O", 24, 0, RAM_INPUT, 2)) val.append(PinConstr("LOOPBACK_I[2]", 25, 5, RAM_OUTPUT, 1)) val.append(PinConstr("LOOPBACK_I[1]", 25, 5, RAM_OUTPUT, 2)) val.append(PinConstr("LOOPBACK_I[0]", 25, 4, RAM_OUTPUT, 2)) val.append(PinConstr("TX_PRBS_SEL_I[2]", 25, 3, RAM_OUTPUT, 1)) val.append(PinConstr("TX_PRBS_SEL_I[1]", 25, 3, RAM_OUTPUT, 2)) val.append(PinConstr("TX_PRBS_SEL_I[0]", 25, 2, RAM_OUTPUT, 2)) val.append(PinConstr("RX_PRBS_SEL_I[2]", 25, 1, RAM_OUTPUT, 1)) val.append(PinConstr("RX_PRBS_SEL_I[1]", 25, 1, RAM_OUTPUT, 2)) val.append(PinConstr("RX_PRBS_SEL_I[0]", 25, 0, RAM_OUTPUT, 2)) val.append(PinConstr("TX_POWER_DOWN_N_I", 25, 4, RAM_OUTPUT, 1)) val.append(PinConstr("RX_POWER_DOWN_N_I", 25, 2, RAM_OUTPUT, 1)) val.append(PinConstr("TX_ELEC_IDLE_I", 25, 0, RAM_OUTPUT, 1)) elif prim_type=="IOSEL": if "LES" in type_name: val.append(PinConstr("OUT4", 3, 1, RAM_OUTPUT, 2)) val.append(PinConstr("OUT3", 3, 1, RAM_OUTPUT, 1)) val.append(PinConstr("OUT2", 3, 0, RAM_OUTPUT, 2)) val.append(PinConstr("OUT1", 3, 0, RAM_OUTPUT, 1)) if "RES" in type_name: val.append(PinConstr("OUT1", -3, 0, RAM_OUTPUT, 1)) val.append(PinConstr("OUT2", -3, 0, RAM_OUTPUT, 2)) val.append(PinConstr("OUT3", -3, 1, RAM_OUTPUT, 1)) val.append(PinConstr("OUT4", -3, 1, RAM_OUTPUT, 2)) if "TES" in type_name: val.append(PinConstr("OUT1", 0, -3, RAM_OUTPUT, 1)) val.append(PinConstr("OUT2", 0, -3, RAM_OUTPUT, 2)) val.append(PinConstr("OUT3", 1, -3, RAM_OUTPUT, 1)) val.append(PinConstr("OUT4", 1, -3, RAM_OUTPUT, 2)) if "BES" in type_name: val.append(PinConstr("OUT4", 1, 3, RAM_OUTPUT, 2)) val.append(PinConstr("OUT3", 1, 3, RAM_OUTPUT, 1)) val.append(PinConstr("OUT2", 0, 3, RAM_OUTPUT, 2)) val.append(PinConstr("OUT1", 0, 3, RAM_OUTPUT, 1)) elif prim_type=="PLL": pll_num = int(prim_name[3]) val.append(PinConstr("USR_CLK_REF", -PLL_X_POS+1, -PLL_Y_POS+124 - pll_num, RAM_OUTPUT, 1)) val.append(PinConstr("USR_LOCKED_STDY_RST", -PLL_X_POS+1, -PLL_Y_POS+120 - pll_num, RAM_OUTPUT, 1)) val.append(PinConstr("USR_SEL_A_B", -PLL_X_POS+1, -PLL_Y_POS+116 - pll_num, RAM_OUTPUT, 1)) val.append(PinConstr("USR_PLL_LOCKED", -PLL_X_POS+1, -PLL_Y_POS+128 - pll_num, RAM_INPUT, 2)) val.append(PinConstr("USR_PLL_LOCKED_STDY", -PLL_X_POS+1, -PLL_Y_POS+124 - pll_num, RAM_INPUT, 2)) val.append(PinConstr("CLK0", -PLL_X_POS+39 + pll_num * 4, -PLL_Y_POS+128, RAM_INPUT, 1)) val.append(PinConstr("CLK90", -PLL_X_POS+40 + pll_num * 4, -PLL_Y_POS+128, RAM_INPUT, 1)) val.append(PinConstr("CLK180", -PLL_X_POS+41 + pll_num * 4, -PLL_Y_POS+128, RAM_INPUT, 1)) val.append(PinConstr("CLK270", -PLL_X_POS+42 + pll_num * 4, -PLL_Y_POS+128, RAM_INPUT, 1)) elif prim_type=="GLBOUT": val.append(PinConstr("USR_GLB0", -PLL_X_POS+1, -PLL_Y_POS+128, RAM_OUTPUT, 1)) val.append(PinConstr("USR_GLB1", -PLL_X_POS+1, -PLL_Y_POS+127, RAM_OUTPUT, 1)) val.append(PinConstr("USR_GLB2", -PLL_X_POS+1, -PLL_Y_POS+126, RAM_OUTPUT, 1)) val.append(PinConstr("USR_GLB3", -PLL_X_POS+1, -PLL_Y_POS+125, RAM_OUTPUT, 1)) val.append(PinConstr("USR_FB0", -PLL_X_POS+1, -PLL_Y_POS+128, RAM_OUTPUT, 2)) val.append(PinConstr("USR_FB1", -PLL_X_POS+1, -PLL_Y_POS+127, RAM_OUTPUT, 2)) val.append(PinConstr("USR_FB2", -PLL_X_POS+1, -PLL_Y_POS+126, RAM_OUTPUT, 2)) val.append(PinConstr("USR_FB3", -PLL_X_POS+1, -PLL_Y_POS+125, RAM_OUTPUT, 2)) return val def get_pin_connection_name(prim, pin): if prim.type == "CPE_LT_U": match pin.name: case "OUT": return "CPE.COMBOUT2_int" case "CPOUT": return "CPE.CPOUT2_int" case "D0_00": return "CPE.D0_00_int" case "D1_00": return "CPE.D1_00_int" case "D0_01": return "CPE.D0_01_int" case "D1_01": return "CPE.D1_01_int" case "D0_10": return "CPE.D0_10_int" case "D1_10": return "CPE.D1_10_int" case "IN1": return "CPE.IN1_int" case "IN2": return "CPE.IN2_int" case "IN3": return "CPE.IN3_int" case "IN4": return "CPE.IN4_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_FF_U": match pin.name: case "DIN": return "CPE.DIN2_int" case "DOUT": return "CPE.DOUT2_int" case "CLK_INT": return "CPE.CLK_int" case "EN_INT": return "CPE.EN_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_RAMIO_U": match pin.name: case "OUT": return "CPE.OUT2" case "RAM_O": return "CPE.RAM_O2" case "RAM_I": return "CPE.RAM_I2" case "I": return "CPE.OUT2_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_LT_L": match pin.name: case "OUT": return "CPE.COMBOUT1_int" case "CPOUT": return "CPE.CPOUT1_int" case "D0_00": return "CPE.D0_02_int" case "D1_00": return "CPE.D1_02_int" case "D0_01": return "CPE.D0_03_int" case "D1_01": return "CPE.D1_03_int" case "D0_10": return "CPE.D0_11_int" case "D1_10": return "CPE.D1_11_int" case "IN1": return "CPE.IN5_int" case "IN2": return "CPE.IN6_int" case "IN3": return "CPE.IN7_int" case "IN4": return "CPE.IN8_int" case "COMBIN": return "CPE.COMBIN_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_LT_FULL": match pin.name: case "D0_00": return "CPE.D0_00_int" case "D1_00": return "CPE.D1_00_int" case "D0_01": return "CPE.D0_01_int" case "D1_01": return "CPE.D1_01_int" case "D0_10": return "CPE.D0_10_int" case "D1_10": return "CPE.D1_10_int" case "D0_02": return "CPE.D0_02_int" case "D1_02": return "CPE.D1_02_int" case "D0_03": return "CPE.D0_03_int" case "D1_03": return "CPE.D1_03_int" case "D0_11": return "CPE.D0_11_int" case "D1_11": return "CPE.D1_11_int" case "OUT1": return "CPE.COMBOUT1_int" case "OUT2": return "CPE.COMBOUT2_int" case "CPOUT1": return "CPE.CPOUT1_int" case "CPOUT2": return "CPE.CPOUT2_int" case "MUXOUT": return "CPE.MUXOUT_int" case "IN1": return "CPE.IN1_int" case "IN2": return "CPE.IN2_int" case "IN3": return "CPE.IN3_int" case "IN4": return "CPE.IN4_int" case "IN5": return "CPE.IN5_int" case "IN6": return "CPE.IN6_int" case "IN7": return "CPE.IN7_int" case "IN8": return "CPE.IN8_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_BRIDGE": match pin.name: case "MUXOUT": return "CPE.MUXOUT_int" case "IN1": return "CPE.IN1_int" case "IN2": return "CPE.IN2_int" case "IN3": return "CPE.IN3_int" case "IN4": return "CPE.IN4_int" case "IN5": return "CPE.IN5_int" case "IN6": return "CPE.IN6_int" case "IN7": return "CPE.IN7_int" case "IN8": return "CPE.IN8_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_FF_L": match pin.name: case "DIN": return "CPE.DIN1_int" case "DOUT": return "CPE.DOUT1_int" case "CLK_INT": return "CPE.CLK_int" case "EN_INT": return "CPE.EN_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_RAMIO_L": match pin.name: case "OUT": return "CPE.OUT1" case "RAM_O": return "CPE.RAM_O1" case "RAM_I": return "CPE.RAM_I1" case "I": return "CPE.OUT1_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_COMP": match pin.name: case "COMB1": return "CPE.COMBIN1_int" case "COMB2": return "CPE.COMBIN2_int" case "COMPOUT": return "CPE.COMPOUT_int" case _: return f"CPE.{pin.name}" elif prim.type == "CPE_CPLINES": match pin.name: case "OUT1": return "CPE.OUT1_IN_int" case "OUT2": return "CPE.OUT2_IN_int" case "COMPOUT": return "CPE.COMPOUT_IN_int" case _: return f"CPE.{pin.name}" elif prim.type == "RAM_HALF_L": match = re.match(r"([A-Za-z0-9_]+)\[(\d+)\]$", pin.name.strip()) if not match: return f"RAM.{pin.name}" base, index = match.group(1), int(match.group(2)) if base in ("CLKA", "CLKB", "ENA", "ENB", "GLWEA", "GLWEB"): return f"RAM.{base}[{index + 2}]" elif base in ("ADDRA0"): return f"RAM.ADDRA1[{index}]" elif base in ("ADDRB0"): return f"RAM.ADDRB1[{index}]" elif base in ("ECC1B_ERRA", "ECC1B_ERRB", "ECC2B_ERRA", "ECC2B_ERRB"): return f"RAM.{base}[{index + 1}]" elif base in ("WEA", "WEB", "DIA", "DIB", "DOA", "DOB"): return f"RAM.{base}[{index + 20}]" else: return f"RAM.{pin.name}" return f"{prim.name}.{pin.name}" def get_endpoints_for_type(type): wires = [] def create_wire(name, type): wires.append(Endpoint(name,type)) for prim in get_primitives_for_type(type): for pin in get_primitive_pins(prim.type): if not pin.use_alias_conn: create_wire(f"{prim.name}.{pin.name}", type=f"{pin.wire_type}") if "CPE" in type: create_wire("CPE.RAM_I1" , type="CPE_WIRE_L") create_wire("CPE.RAM_I2" , type="CPE_WIRE_L") create_wire("CPE.IN1" , type="CPE_WIRE_L") create_wire("CPE.IN2" , type="CPE_WIRE_L") create_wire("CPE.IN3" , type="CPE_WIRE_L") create_wire("CPE.IN4" , type="CPE_WIRE_L") create_wire("CPE.IN5" , type="CPE_WIRE_L") create_wire("CPE.IN6" , type="CPE_WIRE_L") create_wire("CPE.IN7" , type="CPE_WIRE_L") create_wire("CPE.IN8" , type="CPE_WIRE_L") create_wire("CPE.D0_00_int", type="CPE_WIRE_INT") create_wire("CPE.D1_00_int", type="CPE_WIRE_INT") create_wire("CPE.D0_01_int", type="CPE_WIRE_INT") create_wire("CPE.D1_01_int", type="CPE_WIRE_INT") create_wire("CPE.D0_10_int", type="CPE_WIRE_INT") create_wire("CPE.D1_10_int", type="CPE_WIRE_INT") create_wire("CPE.D0_02_int", type="CPE_WIRE_INT") create_wire("CPE.D1_02_int", type="CPE_WIRE_INT") create_wire("CPE.D0_03_int", type="CPE_WIRE_INT") create_wire("CPE.D1_03_int", type="CPE_WIRE_INT") create_wire("CPE.D0_11_int", type="CPE_WIRE_INT") create_wire("CPE.D1_11_int", type="CPE_WIRE_INT") create_wire("CPE.IN1_int", type="CPE_WIRE_INT") create_wire("CPE.IN2_int", type="CPE_WIRE_INT") create_wire("CPE.IN3_int", type="CPE_WIRE_INT") create_wire("CPE.IN4_int", type="CPE_WIRE_INT") create_wire("CPE.IN5_int", type="CPE_WIRE_INT") create_wire("CPE.IN6_int", type="CPE_WIRE_INT") create_wire("CPE.IN7_int", type="CPE_WIRE_INT") create_wire("CPE.IN8_int", type="CPE_WIRE_INT") create_wire("CPE.TI2_int", type="CPE_WIRE_INT") create_wire("CPE.TI4_int", type="CPE_WIRE_INT") create_wire("CPE.TI6_int", type="CPE_WIRE_INT") create_wire("CPE.TI8_int", type="CPE_WIRE_INT") create_wire("CPE.OUT1_int", type="CPE_WIRE_INT") create_wire("CPE.OUT2_int", type="CPE_WIRE_INT") create_wire("CPE.COMBOUT1_int", type="CPE_WIRE_INT") create_wire("CPE.COMBOUT2_int", type="CPE_WIRE_INT") create_wire("CPE.COMBIN1_int", type="CPE_WIRE_INT") create_wire("CPE.COMBIN2_int", type="CPE_WIRE_INT") create_wire("CPE.MUXOUT_int", type="CPE_WIRE_INT") create_wire("CPE.COMPOUT_int", type="CPE_WIRE_INT") create_wire("CPE.OUT1_IN_int", type="CPE_WIRE_INT") create_wire("CPE.OUT2_IN_int", type="CPE_WIRE_INT") create_wire("CPE.COMPOUT_IN_int", type="CPE_WIRE_INT") create_wire("CPE.CPOUT1_int", type="CPE_WIRE_INT") create_wire("CPE.CPOUT2_int", type="CPE_WIRE_INT") create_wire("CPE.COMBIN_int", type="CPE_WIRE_INT") create_wire("CPE.DIN1_int", type="CPE_WIRE_INT") create_wire("CPE.DIN2_int", type="CPE_WIRE_INT") create_wire("CPE.DOUT1_int", type="CPE_WIRE_INT") create_wire("CPE.DOUT2_int", type="CPE_WIRE_INT") create_wire("CPE.CLK" , type="CPE_WIRE_L") create_wire("CPE.EN" , type="CPE_WIRE_L") create_wire("CPE.CLK_int", type="CPE_WIRE_INT") create_wire("CPE.EN_int" , type="CPE_WIRE_INT") create_wire("CPE.SR" , type="CPE_WIRE_L") create_wire("CPE.OUT1" , type="CPE_WIRE_B") create_wire("CPE.OUT2" , type="CPE_WIRE_B") create_wire("CPE.RAM_O1" , type="CPE_WIRE_B") create_wire("CPE.RAM_O2" , type="CPE_WIRE_B") create_wire("CPE.CINX" , type="CPE_WIRE_L") create_wire("CPE.PINX" , type="CPE_WIRE_L") create_wire("CPE.CINY1" , type="CPE_WIRE_B") create_wire("CPE.PINY1" , type="CPE_WIRE_B") create_wire("CPE.CINY2" , type="CPE_WIRE_B") create_wire("CPE.PINY2" , type="CPE_WIRE_B") create_wire("CPE.COUTX" , type="CPE_WIRE_B") create_wire("CPE.POUTX" , type="CPE_WIRE_B") create_wire("CPE.COUTY1" , type="CPE_WIRE_T") create_wire("CPE.POUTY1" , type="CPE_WIRE_T") create_wire("CPE.COUTY2" , type="CPE_WIRE_T") create_wire("CPE.POUTY2" , type="CPE_WIRE_T") create_wire("CPE.CX_OUT" , type="CPE_WIRE_INT") create_wire("CPE.CY1_OUT", type="CPE_WIRE_INT") create_wire("CPE.CY2_OUT", type="CPE_WIRE_INT") create_wire("CPE.PX_OUT" , type="CPE_WIRE_INT") create_wire("CPE.PY1_OUT", type="CPE_WIRE_INT") create_wire("CPE.PY2_OUT", type="CPE_WIRE_INT") create_wire("CPE.CX_OUT2" , type="CPE_WIRE_INT") create_wire("CPE.CY1_OUT2", type="CPE_WIRE_INT") create_wire("CPE.CY2_OUT2", type="CPE_WIRE_INT") create_wire("CPE.PX_OUT2" , type="CPE_WIRE_INT") create_wire("CPE.PY1_OUT2", type="CPE_WIRE_INT") create_wire("CPE.PY2_OUT2", type="CPE_WIRE_INT") create_wire("CPE.CX_VAL" , type="CPE_WIRE_INT") create_wire("CPE.CY1_VAL", type="CPE_WIRE_INT") create_wire("CPE.CY2_VAL", type="CPE_WIRE_INT") create_wire("CPE.PX_VAL" , type="CPE_WIRE_INT") create_wire("CPE.PY1_VAL", type="CPE_WIRE_INT") create_wire("CPE.PY2_VAL", type="CPE_WIRE_INT") create_wire("CPE.CIY12" , type="CPE_WIRE_INT") create_wire("CPE.PIY12", type="CPE_WIRE_INT") for p in range(1,13): plane = f"{p:02d}" for i in range(8): create_wire(f"IM.P{plane}.D{i}", type="IM_WIRE") create_wire(f"IM.P{plane}.Y", type="IM_WIRE") if "OM" in type and p>=9: for i in range(4): create_wire(f"OM.P{plane}.D{i}", type="OM_WIRE") create_wire(f"OM.P{plane}.Y", type="OM_WIRE") if "RAM_L" in type: create_wire("RAM.CLKA[2]" , type="RAM_WIRE") create_wire("RAM.CLKB[2]" , type="RAM_WIRE") create_wire("RAM.ENA[2]" , type="RAM_WIRE") create_wire("RAM.ENB[2]" , type="RAM_WIRE") create_wire("RAM.GLWEA[2]" , type="RAM_WIRE") create_wire("RAM.GLWEB[2]" , type="RAM_WIRE") for i in range(0,16+1): create_wire(f"RAM.ADDRA1[{i}]" , type="RAM_WIRE") create_wire(f"RAM.ADDRB1[{i}]" , type="RAM_WIRE") for i in range(20,40): create_wire(f"RAM.WEA[{i}]" , type="RAM_WIRE") create_wire(f"RAM.WEB[{i}]" , type="RAM_WIRE") create_wire(f"RAM.DIA[{i}]" , type="RAM_WIRE") create_wire(f"RAM.DIB[{i}]" , type="RAM_WIRE") create_wire(f"RAM.DOA[{i}]" , type="RAM_WIRE") create_wire(f"RAM.DOB[{i}]" , type="RAM_WIRE") for i in range(1,5): create_wire(f"RAM.CLOCK{i}" , type="RAM_WIRE") create_wire("RAM.ECC1B_ERRA[1]" , type="RAM_WIRE") create_wire("RAM.ECC1B_ERRB[1]" , type="RAM_WIRE") create_wire("RAM.ECC2B_ERRA[1]" , type="RAM_WIRE") create_wire("RAM.ECC2B_ERRB[1]" , type="RAM_WIRE") if "SB_BIG" in type: for p in range(1,13): plane = f"{p:02d}" create_wire(f"SB_BIG.P{plane}.D0", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.D0_IO", type="SB_BIG_WIRE") for i in range(1,5): create_wire(f"SB_BIG.P{plane}.D2_{i}", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.D2_{i}_D2D", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.D3_{i}", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.D4_{i}", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.D5_{i}", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.D6_{i}", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.D7_{i}", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.D7_{i}_CLK", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.Y{i}", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.YDIAG", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.X34", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.X14", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.X12", type="SB_BIG_WIRE") create_wire(f"SB_BIG.P{plane}.X23", type="SB_BIG_WIRE") for i in range(1,5): create_wire(f"SB_DRIVE.P{plane}.D{i}.IN", type="SB_DRIVE_WIRE") create_wire(f"SB_DRIVE.P{plane}.D{i}.OUT", type="SB_DRIVE_WIRE") create_wire(f"SB_DRIVE.P{plane}.D{i}.OUT_NOINV", type="SB_DRIVE_INT_WIRE") if "SB_SML" in type: for p in range(1,13): plane = f"{p:02d}" create_wire(f"SB_SML.P{plane}.D0", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.D0_IO", type="SB_SML_WIRE") for i in range(1,5): create_wire(f"SB_SML.P{plane}.D2_{i}", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.D2_{i}_D2D", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.D3_{i}", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.Y{i}", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.Y{i}_int", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.YDIAG", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.YDIAG_int", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.X34", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.X14", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.X12", type="SB_SML_WIRE") create_wire(f"SB_SML.P{plane}.X23", type="SB_SML_WIRE") if "IOES" in type: create_wire("IOES.IO_IN1", type="IOES_WIRE") create_wire("IOES.IO_IN2", type="IOES_WIRE") for p in range(1,13): plane = f"{p:02d}" create_wire(f"IOES.SB_IN_{plane}", type="IOES_WIRE") create_wire(f"IOES.ALTIN_{plane}", type="IOES_WIRE") if "LES" in type: for p in range(1,9): create_wire(f"LES.SB_Y3.P{p}", type="LES_WIRE") create_wire(f"LES.MDIE1.P{p}", type="LES_WIRE") for i in range(4): create_wire(f"LES.CLOCK{i}", type="LES_WIRE") create_wire("LES.CPE_CINX", type="LES_WIRE") create_wire("LES.CPE_PINX", type="LES_WIRE") # Internal wires create_wire("LES.SB_Y3_SEL1_int", type="LES_INT_WIRE") create_wire("LES.MDIE1_SEL1_int", type="LES_INT_WIRE") create_wire("LES.CLOCK_SEL1_int", type="LES_INT_WIRE") create_wire("LES.SB_Y3_SEL2_int", type="LES_INT_WIRE") create_wire("LES.MDIE1_SEL2_int", type="LES_INT_WIRE") create_wire("LES.CLOCK_SEL2_int", type="LES_INT_WIRE") if "BES" in type: for p in range(1,9): create_wire(f"BES.SB_Y4.P{p}", type="BES_WIRE") create_wire(f"BES.MDIE2.P{p}", type="BES_WIRE") for i in range(4): create_wire(f"BES.CLOCK{i}", type="BES_WIRE") create_wire("BES.P_CINY1", type="BES_WIRE") create_wire("BES.P_PINY1", type="BES_WIRE") create_wire("BES.P_CINY2", type="BES_WIRE") create_wire("BES.P_PINY2", type="BES_WIRE") create_wire("BES.CPE_CINY1", type="BES_WIRE") create_wire("BES.CPE_PINY1", type="BES_WIRE") create_wire("BES.CPE_CINY2", type="BES_WIRE") create_wire("BES.CPE_PINY2", type="BES_WIRE") # Internal wires create_wire("BES.SB_Y4_SEL1_int", type="BES_INT_WIRE") create_wire("BES.MDIE2_SEL1_int", type="BES_INT_WIRE") create_wire("BES.CLOCK_SEL1_int", type="BES_INT_WIRE") create_wire("BES.SB_Y4_SEL2_int", type="BES_INT_WIRE") create_wire("BES.MDIE2_SEL2_int", type="BES_INT_WIRE") create_wire("BES.CLOCK_SEL2_int", type="BES_INT_WIRE") create_wire("BES.SB_Y4_SEL3_int", type="BES_INT_WIRE") create_wire("BES.MDIE2_SEL3_int", type="BES_INT_WIRE") create_wire("BES.CLOCK_SEL3_int", type="BES_INT_WIRE") create_wire("BES.SB_Y4_SEL4_int", type="BES_INT_WIRE") create_wire("BES.MDIE2_SEL4_int", type="BES_INT_WIRE") create_wire("BES.CLOCK_SEL4_int", type="BES_INT_WIRE") create_wire("BES.CPE_CINY1_int", type="BES_INT_WIRE") create_wire("BES.CPE_PINY1_int", type="BES_INT_WIRE") create_wire("BES.CPE_CINY2_int", type="BES_INT_WIRE") create_wire("BES.CPE_PINY2_int", type="BES_INT_WIRE") if "RES" in type: create_wire("RES.CPE_RAM_O1", type="RES_WIRE") create_wire("RES.CPE_RAM_O2", type="RES_WIRE") create_wire("RES.CPE_COUTX", type="RES_WIRE") create_wire("RES.CPE_POUTX", type="RES_WIRE") for p in range(1,9): create_wire(f"RES.SB_Y1.P{p}", type="RES_WIRE") create_wire(f"RES.MDIE1.P{p}", type="RES_WIRE") for i in range(4): create_wire(f"RES.CLOCK{i}", type="RES_WIRE") # Internal wires create_wire("RES.SIG_SEL1_int", type="RES_INT_WIRE") create_wire("RES.SIG_SEL2_int", type="RES_INT_WIRE") create_wire("RES.SIG_SEL3_int", type="RES_INT_WIRE") create_wire("RES.SIG_SEL4_int", type="RES_INT_WIRE") if "TES" in type: create_wire("TES.CPE_RAM_O1", type="TES_WIRE") create_wire("TES.CPE_RAM_O2", type="TES_WIRE") create_wire("TES.CPE_COUTY1", type="TES_WIRE") create_wire("TES.CPE_POUTY1", type="TES_WIRE") create_wire("TES.CPE_COUTY2", type="TES_WIRE") create_wire("TES.CPE_POUTY2", type="TES_WIRE") for p in range(1,9): create_wire(f"TES.SB_Y2.P{p}", type="TES_WIRE") create_wire(f"TES.MDIE2.P{p}", type="TES_WIRE") for i in range(4): create_wire(f"TES.CLOCK{i}", type="TES_WIRE") # Internal wires create_wire("TES.SIG_SEL1_int", type="TES_INT_WIRE") create_wire("TES.SIG_SEL2_int", type="TES_INT_WIRE") create_wire("TES.SIG_SEL3_int", type="TES_INT_WIRE") create_wire("TES.SIG_SEL4_int", type="TES_INT_WIRE") return wires C_SELX = 1 << 0 C_SELY1 = 1 << 1 C_SELY2 = 1 << 2 C_SEL_C = 1 << 3 C_SEL_P = 1 << 4 C_Y12 = 1 << 5 C_CX_I = 1 << 6 C_CY1_I = 1 << 7 C_CY2_I = 1 << 8 C_PX_I = 1 << 9 C_PY1_I = 1 << 10 C_PY2_I = 1 << 11 IS_MULT = 1 << 29 IS_ADDF = 1 << 30 IS_COMP = 1 << 31 def get_mux_connections_for_type(type): muxes = [] def create_mux(src, dst, bits, value, invert, name = None, visible = True, config = False, delay = "del_dummy", block = 0, resource = 0): name = dst if name is None else name muxes.append(MUX(src, dst, name, bits, value, invert, visible, config, delay, block, resource)) def create_direct(src,dst, delay = "del_dummy"): create_mux(src,dst,0,0,False, None, visible=False, delay = delay) if "CPE" in type: # CPE for i in range(1,9): create_direct(f"CPE.IN{i}", f"CPE.IN{i}_int", delay="del_dummy") create_mux("CPE.IN2_int", "CPE.TI2_int", 1, 0, False, "C_I1", False, delay="del_dummy") create_mux("CPE.IN4_int", "CPE.TI4_int", 1, 0, False, "C_I2", False, delay="del_dummy") create_mux("CPE.IN6_int", "CPE.TI6_int", 1, 0, False, "C_I3", False, delay="del_dummy") create_mux("CPE.IN8_int", "CPE.TI8_int", 1, 0, False, "C_I4", False, delay="del_dummy") create_mux("CPE.PINY1", "CPE.TI2_int", 1, 1, False, "C_I1", False, delay="PINY1_IN2_6") create_mux("CPE.CINX", "CPE.TI4_int", 1, 1, False, "C_I2", False, delay="CINX_IN4") create_mux("CPE.PINY1", "CPE.TI6_int", 1, 1, False, "C_I3", False, delay="PINY1_IN2_6") create_mux("CPE.PINX", "CPE.TI8_int", 1, 1, False, "C_I4", False, delay="PINX_IN8") create_mux("CPE.IN1_int", "CPE.D0_00_int", 1, 0, False, "LUT2_00", False, delay="del_dummy") create_mux("CPE.TI2_int", "CPE.D1_00_int", 1, 0, False, "LUT2_00", False, delay="del_dummy") create_mux("CPE.TI2_int", "CPE.D0_00_int", 1, 1, False, "LUT2_00", False, delay="del_dummy") create_mux("CPE.IN1_int", "CPE.D1_00_int", 1, 1, False, "LUT2_00", False, delay="del_dummy") create_mux("CPE.IN3_int", "CPE.D0_01_int", 1, 0, False, "LUT2_01", False, delay="del_dummy") create_mux("CPE.TI4_int", "CPE.D1_01_int", 1, 0, False, "LUT2_01", False, delay="del_dummy") create_mux("CPE.TI4_int", "CPE.D0_01_int", 1, 1, False, "LUT2_01", False, delay="del_dummy") create_mux("CPE.IN3_int", "CPE.D1_01_int", 1, 1, False, "LUT2_01", False, delay="del_dummy") create_mux("CPE.D0_00_int", "CPE.D0_10_int", 1, 0, False, "LUT2_10", False, delay="del_dummy") create_mux("CPE.D0_01_int", "CPE.D1_10_int", 1, 0, False, "LUT2_10", False, delay="del_dummy") create_mux("CPE.D0_01_int", "CPE.D0_10_int", 1, 1, False, "LUT2_10", False, delay="del_dummy") create_mux("CPE.D0_00_int", "CPE.D1_10_int", 1, 1, False, "LUT2_10", False, delay="del_dummy") create_mux("CPE.IN5_int", "CPE.D0_02_int", 1, 0, False, "LUT2_02", False, delay="del_dummy") create_mux("CPE.TI6_int", "CPE.D1_02_int", 1, 0, False, "LUT2_02", False, delay="del_dummy") create_mux("CPE.TI6_int", "CPE.D0_02_int", 1, 1, False, "LUT2_02", False, delay="del_dummy") create_mux("CPE.IN5_int", "CPE.D1_02_int", 1, 1, False, "LUT2_02", False, delay="del_dummy") create_mux("CPE.IN7_int", "CPE.D0_03_int", 1, 0, False, "LUT2_03", False, delay="del_dummy") create_mux("CPE.TI8_int", "CPE.D1_03_int", 1, 0, False, "LUT2_03", False, delay="del_dummy") create_mux("CPE.TI8_int", "CPE.D0_03_int", 1, 1, False, "LUT2_03", False, delay="del_dummy") create_mux("CPE.IN7_int", "CPE.D1_03_int", 1, 1, False, "LUT2_03", False, delay="del_dummy") create_mux("CPE.D0_02_int", "CPE.D0_11_int", 1, 0, False, "LUT2_11", False, delay="del_dummy") create_mux("CPE.D0_03_int", "CPE.D1_11_int", 1, 0, False, "LUT2_11", False, delay="del_dummy") create_mux("CPE.D0_03_int", "CPE.D0_11_int", 1, 1, False, "LUT2_11", False, delay="del_dummy") create_mux("CPE.D0_02_int", "CPE.D1_11_int", 1, 1, False, "LUT2_11", False, delay="del_dummy") create_mux("CPE.CLK", "CPE.CLK_int", 1, 0, False, "C_CLKSEL", False, delay="del_dummy") create_mux("CPE.CINY2", "CPE.CLK_int", 1, 1, False, "C_CLKSEL", False, delay="del_dummy") create_mux("CPE.EN", "CPE.EN_int", 1, 0, False, "C_ENSEL", False, delay="del_dummy") create_mux("CPE.PINY2", "CPE.EN_int", 1, 1, False, "C_ENSEL", False, delay="del_dummy") create_mux("CPE.CINX", "CPE.COUTX", 1, 0, False, "CPE.C_CX_I", True, delay="_ROUTING_CINX_COUTX", resource=C_CX_I, block=IS_MULT | IS_ADDF) create_mux("CPE.CINY1", "CPE.COUTY1", 1, 0, False, "CPE.C_CY1_I", True, delay="_ROUTING_CINY1_COUTY1", resource=C_CY1_I, block=IS_ADDF) create_mux("CPE.CINY2", "CPE.COUTY2", 1, 0, False, "CPE.C_CY2_I", True, delay="_ROUTING_CINY2_COUTY2", resource=C_CY2_I, block=IS_MULT) create_mux("CPE.PINX", "CPE.POUTX", 1, 0, False, "CPE.C_PX_I", True, delay="_ROUTING_PINX_POUTX", resource=C_PX_I, block=IS_MULT | IS_COMP) create_mux("CPE.PINY1", "CPE.POUTY1", 1, 0, False, "CPE.C_PY1_I", True, delay="_ROUTING_PINY1_POUTY1", resource=C_PY1_I, block=IS_COMP) create_mux("CPE.PINY2", "CPE.POUTY2", 1, 0, False, "CPE.C_PY2_I", True, delay="_ROUTING_PINY2_POUTY2", resource=C_PY2_I, block=IS_MULT) create_mux("CPE.OUT1_IN_int", "CPE.CX_OUT", 1, 0, False, "CPE.C_SELX", True, delay="comb12_COUTX", resource=C_SELX) create_mux("CPE.OUT2_IN_int", "CPE.CX_OUT", 1, 1, False, "CPE.C_SELX", True, delay="comb12_COUTX", resource=C_SELX) create_mux("CPE.OUT1_IN_int", "CPE.CY1_OUT", 1, 1, False, "CPE.C_SELY1", True, delay="comb12_COUTY1", resource=C_SELY1) create_mux("CPE.OUT2_IN_int", "CPE.CY1_OUT", 1, 0, False, "CPE.C_SELY1", True, delay="comb12_COUTY1", resource=C_SELY1) create_mux("CPE.OUT1_IN_int", "CPE.CY2_OUT", 1, 0, False, "CPE.C_SELY2", True, delay="comb12_COUTY2", resource=C_SELY2) create_mux("CPE.OUT2_IN_int", "CPE.CY2_OUT", 1, 1, False, "CPE.C_SELY2", True, delay="comb12_COUTY2", resource=C_SELY2) create_mux("CPE.OUT1_IN_int", "CPE.PX_OUT", 1, 1, False, "CPE.C_SELX", True, delay="comb12_POUTX", resource=C_SELX) create_mux("CPE.OUT2_IN_int", "CPE.PX_OUT", 1, 0, False, "CPE.C_SELX", True, delay="comb12_POUTX", resource=C_SELX) create_mux("CPE.OUT1_IN_int", "CPE.PY1_OUT", 1, 0, False, "CPE.C_SELY1", True, delay="comb12_POUTY1", resource=C_SELY1) create_mux("CPE.OUT2_IN_int", "CPE.PY1_OUT", 1, 1, False, "CPE.C_SELY1", True, delay="comb12_POUTY1", resource=C_SELY1) create_mux("CPE.OUT1_IN_int", "CPE.PY2_OUT", 1, 1, False, "CPE.C_SELY2", True, delay="comb12_POUTY2", resource=C_SELY2) create_mux("CPE.OUT2_IN_int", "CPE.PY2_OUT", 1, 0, False, "CPE.C_SELY2", True, delay="comb12_POUTY2", resource=C_SELY2) create_mux("CPE.CINY1", "CPE.CIY12", 1, 0, False, "CPE.C_Y12", True, delay="_ROUTING_CINY1_COUTX", resource=C_Y12) create_mux("CPE.CINY2", "CPE.CIY12", 1, 1, False, "CPE.C_Y12", True, delay="_ROUTING_CINY2_COUTX", resource=C_Y12) create_mux("CPE.PINY1", "CPE.PIY12", 1, 0, False, "CPE.C_Y12", True, delay="_ROUTING_PINY1_POUTX", resource=C_Y12) create_mux("CPE.PINY2", "CPE.PIY12", 1, 1, False, "CPE.C_Y12", True, delay="_ROUTING_PINY1_POUTX", resource=C_Y12) # No data in timing info for this create_mux("CPE.CIY12", "CPE.CX_OUT2", 1, 1, False, "CPE.C_SELX", True, delay="del_dummy", resource=C_SELX) create_mux("CPE.COMPOUT_IN_int", "CPE.CX_OUT2", 1, 0, False, "CPE.C_SELX", True, delay="comb12_compout_COUTX", resource=C_SELX) create_mux("CPE.CINX", "CPE.CY1_OUT2", 1, 1, False, "CPE.C_SELY1", True, delay="_ROUTING_CINX_COUTY1", resource=C_SELY1) create_mux("CPE.COMPOUT_IN_int", "CPE.CY1_OUT2", 1, 0, False, "CPE.C_SELY1", True, delay="comb12_compout_COUTY1", resource=C_SELY1) create_mux("CPE.CINX", "CPE.CY2_OUT2", 1, 1, False, "CPE.C_SELY2", True, delay="_ROUTING_CINX_COUTY2", resource=C_SELY2) create_mux("CPE.COMPOUT_IN_int", "CPE.CY2_OUT2", 1, 0, False, "CPE.C_SELY2", True, delay="comb12_compout_COUTY2", resource=C_SELY2) create_mux("CPE.PIY12", "CPE.PX_OUT2", 1, 1, False, "CPE.C_SELX", True, delay="del_dummy", resource=C_SELX) create_mux("CPE.COMPOUT_IN_int", "CPE.PX_OUT2", 1, 0, False, "CPE.C_SELX", True, delay="comb12_compout_POUTX", resource=C_SELX) create_mux("CPE.PINX", "CPE.PY1_OUT2", 1, 1, False, "CPE.C_SELY1", True, delay="_ROUTING_PINX_POUTY1", resource=C_SELY1) create_mux("CPE.COMPOUT_IN_int", "CPE.PY1_OUT2", 1, 0, False, "CPE.C_SELY1", True, delay="comb12_compout_POUTY1", resource=C_SELY1) create_mux("CPE.PINX", "CPE.PY2_OUT2", 1, 1, False, "CPE.C_SELY2", True, delay="_ROUTING_PINX_POUTY2", resource=C_SELY2) create_mux("CPE.COMPOUT_IN_int", "CPE.PY2_OUT2", 1, 0, False, "CPE.C_SELY2", True, delay="comb12_compout_POUTY2", resource=C_SELY2) create_mux("CPE.CX_OUT", "CPE.CX_VAL", 1, 0, False, "CPE.C_SEL_C", True, delay="del_dummy", resource=C_SEL_C) create_mux("CPE.CY1_OUT", "CPE.CY1_VAL", 1, 0, False, "CPE.C_SEL_C", True, delay="del_dummy", resource=C_SEL_C) create_mux("CPE.CY2_OUT", "CPE.CY2_VAL", 1, 0, False, "CPE.C_SEL_C", True, delay="del_dummy", resource=C_SEL_C) create_mux("CPE.PX_OUT", "CPE.PX_VAL", 1, 0, False, "CPE.C_SEL_P", True, delay="del_dummy", resource=C_SEL_P) create_mux("CPE.PY1_OUT", "CPE.PY1_VAL", 1, 0, False, "CPE.C_SEL_P", True, delay="del_dummy", resource=C_SEL_P) create_mux("CPE.PY2_OUT", "CPE.PY2_VAL", 1, 0, False, "CPE.C_SEL_P", True, delay="del_dummy", resource=C_SEL_P) create_mux("CPE.CX_OUT2", "CPE.CX_VAL", 1, 1, False, "CPE.C_SEL_C", True, delay="del_dummy", resource=C_SEL_C) create_mux("CPE.CY1_OUT2", "CPE.CY1_VAL", 1, 1, False, "CPE.C_SEL_C", True, delay="del_dummy", resource=C_SEL_C) create_mux("CPE.CY2_OUT2", "CPE.CY2_VAL", 1, 1, False, "CPE.C_SEL_C", True, delay="del_dummy", resource=C_SEL_C) create_mux("CPE.PX_OUT2", "CPE.PX_VAL", 1, 1, False, "CPE.C_SEL_P", True, delay="del_dummy", resource=C_SEL_P) create_mux("CPE.PY1_OUT2", "CPE.PY1_VAL", 1, 1, False, "CPE.C_SEL_P", True, delay="del_dummy", resource=C_SEL_P) create_mux("CPE.PY2_OUT2", "CPE.PY2_VAL", 1, 1, False, "CPE.C_SEL_P", True, delay="del_dummy", resource=C_SEL_P) create_mux("CPE.CX_VAL", "CPE.COUTX", 1, 1, False, "CPE.C_CX_I", True, delay="del_dummy", resource=C_CX_I, block=IS_MULT | IS_ADDF) create_mux("CPE.CY1_VAL", "CPE.COUTY1", 1, 1, False, "CPE.C_CY1_I", True, delay="del_dummy", resource=C_CY1_I, block=IS_ADDF) create_mux("CPE.CY2_VAL", "CPE.COUTY2", 1, 1, False, "CPE.C_CY2_I", True, delay="del_dummy", resource=C_CY2_I, block=IS_MULT) create_mux("CPE.PX_VAL", "CPE.POUTX", 1, 1, False, "CPE.C_PX_I", True, delay="del_dummy", resource=C_PX_I, block=IS_MULT | IS_COMP) create_mux("CPE.PY1_VAL", "CPE.POUTY1", 1, 1, False, "CPE.C_PY1_I", True, delay="del_dummy", resource=C_PY1_I, block=IS_COMP) create_mux("CPE.PY2_VAL", "CPE.POUTY2", 1, 1, False, "CPE.C_PY2_I", True, delay="del_dummy", resource=C_PY2_I, block=IS_MULT) for p in range(1,13): plane = f"{p:02d}" for i in range(8): create_mux(f"IM.P{plane}.D{i}", f"IM.P{plane}.Y", 3, i, True, f"IM.P{plane}", delay = f"im_x1_y1_p{p}_d{i}_path2") if "OM" in type and p>=9: for i in range(4): create_mux(f"OM.P{plane}.D{i}", f"OM.P{plane}.Y", 2, i, True, f"OM.P{plane}", delay = f"om_x1_y1_p{p}_d{i}") for i in range(1,9): create_mux(f"CPE.IN{i}_int", "CPE.MUXOUT_int", 3, i-1, False, "CPE.C_SN", True, delay=f"_MX8_IN{i}_OUT1") create_direct("IM.P01.Y","CPE.IN1") create_direct("IM.P02.Y","CPE.IN2") create_direct("IM.P03.Y","CPE.IN3") create_direct("IM.P04.Y","CPE.IN4") create_direct("IM.P05.Y","CPE.IN5") create_direct("IM.P06.Y","CPE.IN6") create_direct("IM.P07.Y","CPE.IN7") create_direct("IM.P08.Y","CPE.IN8") create_direct("IM.P09.Y","CPE.CLK") create_direct("IM.P10.Y","CPE.EN") create_direct("IM.P11.Y","CPE.SR") for p in range(1,13): plane = f"{p:02d}" # D6 and D7 are from alternate planes alt = f"{alt_plane(0,p):02d}" create_direct(f"IM.P{alt}.Y", f"IM.P{plane}.D6", f"im_x1_y1_p{p}_d6_path1") alt = f"{alt_plane(1,p):02d}" create_direct(f"IM.P{alt}.Y", f"IM.P{plane}.D7", f"im_x1_y1_p{p}_d7_path1") create_mux("CPE.DOUT1_int", "CPE.OUT1_int", 2, 0, False, "CPE.C_O1", delay="del_dummy") create_mux("CPE.MUXOUT_int", "CPE.OUT1_int", 2, 1, False, "CPE.C_O1", delay="del_dummy") create_mux("CPE.CPOUT1_int", "CPE.OUT1_int", 2, 2, False, "CPE.C_O1", delay="del_dummy") create_mux("CPE.COMBOUT1_int", "CPE.OUT1_int", 2, 3, False, "CPE.C_O1", delay="del_dummy") create_direct("CPE.COMBOUT1_int", "CPE.DIN1_int", delay="del_dummy") create_mux("CPE.DOUT2_int", "CPE.OUT2_int", 2, 0, False, "CPE.C_O2", delay="del_dummy") create_mux("CPE.MUXOUT_int", "CPE.OUT2_int", 2, 1, False, "CPE.C_O2", delay="del_dummy") create_mux("CPE.CPOUT2_int", "CPE.OUT2_int", 2, 2, False, "CPE.C_O2", delay="del_dummy") create_mux("CPE.COMBOUT2_int", "CPE.OUT2_int", 2, 3, False, "CPE.C_O2", delay="del_dummy") create_mux("CPE.MUXOUT_int", "CPE.DIN2_int", 1, 1, False, "CPE.C_BR", delay="del_dummy") create_mux("CPE.COMBOUT1_int", "CPE.DIN2_int", 1, 0, False, "CPE.C_2D_IN", delay="del_dummy") create_mux("CPE.COMBOUT2_int", "CPE.DIN2_int", 1, 1, False, "CPE.C_2D_IN", delay="del_dummy") # Virtual connections create_direct("CPE.COMBOUT1_int", "CPE.COMBIN1_int", delay="del_dummy") create_direct("CPE.COMBOUT2_int", "CPE.COMBIN2_int", delay="del_dummy") create_direct("CPE.OUT1", "CPE.OUT1_IN_int", delay="del_dummy") create_direct("CPE.OUT2", "CPE.OUT2_IN_int", delay="del_dummy") create_direct("CPE.COMPOUT_int", "CPE.COMPOUT_IN_int", delay="del_dummy") create_direct("CPE.OUT1_int", "CPE.OUT1", delay="del_dummy") create_direct("CPE.OUT2_int", "CPE.OUT2", delay="del_dummy") # Connecting upper and lower L2T4 create_direct("CPE.COMBOUT2_int", "CPE.COMBIN_int", delay="del_dummy") if "SB_BIG" in type: # SB_BIG for p in range(1,13): delay = "sb_del_t1_x1_y1" plane = f"{p:02d}" # Per Y output mux for i in range(1,5): create_mux(f"SB_BIG.P{plane}.D0", f"SB_BIG.P{plane}.Y{i}", 3, 0, True, delay=f"{delay}_p{p}_d{i}_s0") create_mux(f"SB_BIG.P{plane}.YDIAG", f"SB_BIG.P{plane}.Y{i}", 3, 1, True, delay=f"{delay}_p{p}_d{i}_s1") create_mux(f"SB_BIG.P{plane}.D2_{i}", f"SB_BIG.P{plane}.Y{i}", 3, 2, True, delay=f"{delay}_p{p}_d{i}_s2") create_mux(f"SB_BIG.P{plane}.D3_{i}", f"SB_BIG.P{plane}.Y{i}", 3, 3, True, delay=f"{delay}_p{p}_d{i}_s3") create_mux(f"SB_BIG.P{plane}.D4_{i}", f"SB_BIG.P{plane}.Y{i}", 3, 4, True, delay=f"{delay}_p{p}_d{i}_s4") create_mux(f"SB_BIG.P{plane}.D5_{i}", f"SB_BIG.P{plane}.Y{i}", 3, 5, True, delay=f"{delay}_p{p}_d{i}_s5") create_mux(f"SB_BIG.P{plane}.D6_{i}", f"SB_BIG.P{plane}.Y{i}", 3, 6, True, delay=f"{delay}_p{p}_d{i}_s6") create_mux(f"SB_BIG.P{plane}.D7_{i}", f"SB_BIG.P{plane}.Y{i}", 3, 7, True, delay=f"{delay}_p{p}_d{i}_s7") # YDIAG output mux create_mux(f"SB_BIG.P{plane}.Y1", f"SB_BIG.P{plane}.YDIAG", 3, 0, True, delay=f"{delay}_p{p}_d0_s0") create_mux(f"SB_BIG.P{plane}.Y2", f"SB_BIG.P{plane}.YDIAG", 3, 1, True, delay=f"{delay}_p{p}_d0_s1") create_mux(f"SB_BIG.P{plane}.Y3", f"SB_BIG.P{plane}.YDIAG", 3, 2, True, delay=f"{delay}_p{p}_d0_s2") create_mux(f"SB_BIG.P{plane}.Y4", f"SB_BIG.P{plane}.YDIAG", 3, 3, True, delay=f"{delay}_p{p}_d0_s3") create_mux(f"SB_BIG.P{plane}.X34", f"SB_BIG.P{plane}.YDIAG", 3, 4, True, delay=f"{delay}_p{p}_d0_s4") create_mux(f"SB_BIG.P{plane}.X14", f"SB_BIG.P{plane}.YDIAG", 3, 5, True, delay=f"{delay}_p{p}_d0_s5") create_mux(f"SB_BIG.P{plane}.X12", f"SB_BIG.P{plane}.YDIAG", 3, 6, True, delay=f"{delay}_p{p}_d0_s6") create_mux(f"SB_BIG.P{plane}.X23", f"SB_BIG.P{plane}.YDIAG", 3, 7, True, delay=f"{delay}_p{p}_d0_s7") for i in range(1,5): create_mux(f"SB_DRIVE.P{plane}.D{i}.IN", f"SB_DRIVE.P{plane}.D{i}.OUT", 1, 1, True, f"SB_DRIVE.P{plane}.D{i}", delay="del_sb_drv") create_mux(f"SB_DRIVE.P{plane}.D{i}.IN", f"SB_DRIVE.P{plane}.D{i}.OUT_NOINV", 1, 1, False, f"SB_DRIVE.P{plane}.D{i}", delay="del_sb_drv") create_direct(f"SB_BIG.P{plane}.Y{i}", f"SB_DRIVE.P{plane}.D{i}.IN",delay="del_dummy") create_direct(f"SB_BIG.P{plane}.D0_IO", f"SB_BIG.P{plane}.D0",delay="del_dummy") for i in range(1,5): create_direct(f"SB_BIG.P{plane}.D7_{i}_CLK", f"SB_BIG.P{plane}.D7_{i}",delay="del_dummy") create_direct(f"SB_BIG.P{plane}.D2_{i}_D2D", f"SB_BIG.P{plane}.D2_{i}",delay="del_dummy") if "SB_SML" in type: # SB_SML for p in range(1,13): delay = "sb_del_t1_x2_y2" plane = f"{p:02d}" # Per Y output mux for i in range(1,5): create_mux(f"SB_SML.P{plane}.D0", f"SB_SML.P{plane}.Y{i}_int", 2, 0, False, f"SB_SML.P{plane}.Y{i}", delay=f"{delay}_p{p}_d{i}_s0") create_mux(f"SB_SML.P{plane}.YDIAG_int",f"SB_SML.P{plane}.Y{i}_int", 2, 1, False, f"SB_SML.P{plane}.Y{i}", delay=f"{delay}_p{p}_d{i}_s1") create_mux(f"SB_SML.P{plane}.D2_{i}", f"SB_SML.P{plane}.Y{i}_int", 2, 2, False, f"SB_SML.P{plane}.Y{i}", delay=f"{delay}_p{p}_d{i}_s2") create_mux(f"SB_SML.P{plane}.D3_{i}", f"SB_SML.P{plane}.Y{i}_int", 2, 3, False, f"SB_SML.P{plane}.Y{i}", delay=f"{delay}_p{p}_d{i}_s3") # YDIAG output mux create_mux(f"SB_SML.P{plane}.Y1_int", f"SB_SML.P{plane}.YDIAG_int", 3, 0, False, f"SB_SML.P{plane}.YDIAG", delay=f"{delay}_p{p}_d0_s0") create_mux(f"SB_SML.P{plane}.Y2_int", f"SB_SML.P{plane}.YDIAG_int", 3, 1, False, f"SB_SML.P{plane}.YDIAG", delay=f"{delay}_p{p}_d0_s1") create_mux(f"SB_SML.P{plane}.Y3_int", f"SB_SML.P{plane}.YDIAG_int", 3, 2, False, f"SB_SML.P{plane}.YDIAG", delay=f"{delay}_p{p}_d0_s2") create_mux(f"SB_SML.P{plane}.Y4_int", f"SB_SML.P{plane}.YDIAG_int", 3, 3, False, f"SB_SML.P{plane}.YDIAG", delay=f"{delay}_p{p}_d0_s3") create_mux(f"SB_SML.P{plane}.X34", f"SB_SML.P{plane}.YDIAG_int", 3, 4, False, f"SB_SML.P{plane}.YDIAG", delay=f"{delay}_p{p}_d0_s4") create_mux(f"SB_SML.P{plane}.X14", f"SB_SML.P{plane}.YDIAG_int", 3, 5, False, f"SB_SML.P{plane}.YDIAG", delay=f"{delay}_p{p}_d0_s5") create_mux(f"SB_SML.P{plane}.X12", f"SB_SML.P{plane}.YDIAG_int", 3, 6, False, f"SB_SML.P{plane}.YDIAG", delay=f"{delay}_p{p}_d0_s6") create_mux(f"SB_SML.P{plane}.X23", f"SB_SML.P{plane}.YDIAG_int", 3, 7, False, f"SB_SML.P{plane}.YDIAG", delay=f"{delay}_p{p}_d0_s7") create_mux(f"SB_SML.P{plane}.Y1_int", f"SB_SML.P{plane}.Y1", 1, 1, True, f"SB_SML.P{plane}.Y1_INT", False) create_mux(f"SB_SML.P{plane}.Y2_int", f"SB_SML.P{plane}.Y2", 1, 1, True, f"SB_SML.P{plane}.Y2_INT", False) create_mux(f"SB_SML.P{plane}.Y3_int", f"SB_SML.P{plane}.Y3", 1, 1, True, f"SB_SML.P{plane}.Y3_INT", False) create_mux(f"SB_SML.P{plane}.Y4_int", f"SB_SML.P{plane}.Y4", 1, 1, True, f"SB_SML.P{plane}.Y4_INT", False) create_mux(f"SB_SML.P{plane}.YDIAG_int", f"SB_SML.P{plane}.YDIAG", 1, 1, True, f"SB_SML.P{plane}.YDIAG_INT", False) for i in range(1,5): create_direct(f"SB_SML.P{plane}.D2_{i}_D2D", f"SB_SML.P{plane}.D2_{i}",delay="del_dummy") create_direct(f"SB_SML.P{plane}.D0_IO", f"SB_SML.P{plane}.D0",delay="del_dummy") if "GPIO" in type: # GPIO create_direct("IOSEL.GPIO_OUT", "GPIO.A", delay="del_dummy") create_direct("IOSEL.GPIO_EN", "GPIO.T", delay="del_dummy") create_direct("GPIO.Y", "IOSEL.GPIO_IN", delay="del_dummy") if "IOES" in type: # IOES for p in range(1,13): plane = f"{p:02d}" io_in = 1 if p % 2 else 2 create_mux(f"IOES.IO_IN{io_in}", f"IOES.SB_IN_{plane}", 1, 0, False) create_mux(f"IOES.ALTIN_{plane}", f"IOES.SB_IN_{plane}", 1, 1, False) if "LES" in type: for p in range(1,9): create_mux(f"LES.SB_Y3.P{p}", "LES.SB_Y3_SEL1_int", 3, p-1, False, "LES.SB_Y3_SEL1", delay="del_dummy") create_mux(f"LES.MDIE1.P{p}", "LES.MDIE1_SEL1_int", 3, p-1, False, "LES.MDIE1_SEL1", delay="del_dummy") create_mux(f"LES.SB_Y3.P{p}", "LES.SB_Y3_SEL2_int", 3, p-1, False, "LES.SB_Y3_SEL2", delay="del_dummy") create_mux(f"LES.MDIE1.P{p}", "LES.MDIE1_SEL2_int", 3, p-1, False, "LES.MDIE1_SEL2", delay="del_dummy") for i in range(4): create_mux(f"LES.CLOCK{i}", "LES.CLOCK_SEL1_int", 2, i, False, "LES.CLOCK_SEL1", delay="del_dummy") create_mux(f"LES.CLOCK{i}", "LES.CLOCK_SEL2_int", 2, i, False, "LES.CLOCK_SEL2", delay="del_dummy") # Note there is error in schematics create_mux("LES.SB_Y3_SEL1_int", "LES.CPE_CINX", 2, 1, False, "LES.CINX_SEL", delay="del_left_SB_couty2") create_mux("LES.MDIE1_SEL1_int", "LES.CPE_CINX", 2, 2, False, "LES.CINX_SEL", delay="del_left_couty2") create_mux("LES.CLOCK_SEL1_int", "LES.CPE_CINX", 2, 3, False, "LES.CINX_SEL", delay="del_left_glb_couty2") create_mux("LES.SB_Y3_SEL2_int", "LES.CPE_PINX", 2, 1, False, "LES.PINX_SEL", delay="del_left_SB_pouty2") create_mux("LES.MDIE1_SEL2_int", "LES.CPE_PINX", 2, 2, False, "LES.PINX_SEL", delay="del_left_pouty2") create_mux("LES.CLOCK_SEL2_int", "LES.CPE_PINX", 2, 3, False, "LES.PINX_SEL", delay="del_left_glb_pouty2") if "BES" in type: for p in range(1,9): create_mux(f"BES.SB_Y4.P{p}", "BES.SB_Y4_SEL1_int", 3, p-1, False, "BES.SB_Y4_SEL1", delay="del_dummy") create_mux(f"BES.MDIE2.P{p}", "BES.MDIE2_SEL1_int", 3, p-1, False, "BES.MDIE2_SEL1", delay="del_dummy") create_mux(f"BES.SB_Y4.P{p}", "BES.SB_Y4_SEL2_int", 3, p-1, False, "BES.SB_Y4_SEL2", delay="del_dummy") create_mux(f"BES.MDIE2.P{p}", "BES.MDIE2_SEL2_int", 3, p-1, False, "BES.MDIE2_SEL2", delay="del_dummy") create_mux(f"BES.SB_Y4.P{p}", "BES.SB_Y4_SEL3_int", 3, p-1, False, "BES.SB_Y4_SEL3", delay="del_dummy") create_mux(f"BES.MDIE2.P{p}", "BES.MDIE2_SEL3_int", 3, p-1, False, "BES.MDIE2_SEL3", delay="del_dummy") create_mux(f"BES.SB_Y4.P{p}", "BES.SB_Y4_SEL4_int", 3, p-1, False, "BES.SB_Y4_SEL4", delay="del_dummy") create_mux(f"BES.MDIE2.P{p}", "BES.MDIE2_SEL4_int", 3, p-1, False, "BES.MDIE2_SEL4", delay="del_dummy") for i in range(4): create_mux(f"BES.CLOCK{i}", "BES.CLOCK_SEL1_int", 2, i, False, "BES.CLOCK_SEL1", delay="del_dummy") create_mux(f"BES.CLOCK{i}", "BES.CLOCK_SEL2_int", 2, i, False, "BES.CLOCK_SEL2", delay="del_dummy") create_mux(f"BES.CLOCK{i}", "BES.CLOCK_SEL3_int", 2, i, False, "BES.CLOCK_SEL3", delay="del_dummy") create_mux(f"BES.CLOCK{i}", "BES.CLOCK_SEL4_int", 2, i, False, "BES.CLOCK_SEL4", delay="del_dummy") create_mux("BES.SB_Y4_SEL1_int", "BES.CPE_CINY1_int", 2, 1, False, "BES.CINY1_SEL", delay="del_bot_SB_couty2") create_mux("BES.MDIE2_SEL1_int", "BES.CPE_CINY1_int", 2, 2, False, "BES.CINY1_SEL", delay="del_bot_couty2") create_mux("BES.CLOCK_SEL1_int", "BES.CPE_CINY1_int", 2, 3, False, "BES.CINY1_SEL", delay="del_bot_glb_couty2") create_mux("BES.SB_Y4_SEL2_int", "BES.CPE_PINY1_int", 2, 1, False, "BES.PINY1_SEL", delay="del_bot_SB_pouty2") create_mux("BES.MDIE2_SEL2_int", "BES.CPE_PINY1_int", 2, 2, False, "BES.PINY1_SEL", delay="del_bot_pouty2") create_mux("BES.CLOCK_SEL2_int", "BES.CPE_PINY1_int", 2, 3, False, "BES.PINY1_SEL", delay="del_bot_glb_pouty2") create_mux("BES.SB_Y4_SEL3_int", "BES.CPE_CINY2_int", 2, 1, False, "BES.CINY2_SEL", delay="del_bot_SB_couty2") create_mux("BES.MDIE2_SEL3_int", "BES.CPE_CINY2_int", 2, 2, False, "BES.CINY2_SEL", delay="del_bot_couty2") create_mux("BES.CLOCK_SEL3_int", "BES.CPE_CINY2_int", 2, 3, False, "BES.CINY2_SEL", delay="del_bot_glb_couty2") create_mux("BES.SB_Y4_SEL4_int", "BES.CPE_PINY2_int", 2, 1, False, "BES.PINY2_SEL", delay="del_bot_SB_pouty2") create_mux("BES.MDIE2_SEL4_int", "BES.CPE_PINY2_int", 2, 2, False, "BES.PINY2_SEL", delay="del_bot_pouty2") create_mux("BES.CLOCK_SEL4_int", "BES.CPE_PINY2_int", 2, 3, False, "BES.PINY2_SEL", delay="del_bot_glb_pouty2") create_mux("BES.CPE_CINY1_int", "BES.CPE_CINY1", 1, 0, False, "BES.P_CINY1", delay="del_dummy") create_mux("BES.P_CINY1", "BES.CPE_CINY1", 1, 1, False, "BES.P_CINY1", delay="del_dummy") create_mux("BES.CPE_PINY1_int", "BES.CPE_PINY1", 1, 0, False, "BES.P_PINY1", delay="del_dummy") create_mux("BES.P_PINY1", "BES.CPE_PINY1", 1, 1, False, "BES.P_PINY1", delay="del_dummy") create_mux("BES.CPE_CINY2_int", "BES.CPE_CINY2", 1, 0, False, "BES.P_CINY2", delay="del_dummy") create_mux("BES.P_CINY2", "BES.CPE_CINY2", 1, 1, False, "BES.P_CINY2", delay="del_dummy") create_mux("BES.CPE_PINY2_int", "BES.CPE_PINY2", 1, 0, False, "BES.P_PINY2", delay="del_dummy") create_mux("BES.P_PINY2", "BES.CPE_PINY2", 1, 1, False, "BES.P_PINY2", delay="del_dummy") if "RES" in type: for sel in range(4): create_mux("RES.CPE_RAM_O1", f"RES.SIG_SEL{sel+1}_int", 3, 0, False, f"RES.SIG_SEL{sel+1}", delay="del_dummy") create_mux("RES.CPE_RAM_O2", f"RES.SIG_SEL{sel+1}_int", 3, 1, False, f"RES.SIG_SEL{sel+1}", delay="del_dummy") create_mux("RES.CPE_COUTX", f"RES.SIG_SEL{sel+1}_int", 3, 2, False, f"RES.SIG_SEL{sel+1}", delay="del_dummy") create_mux("RES.CPE_POUTX", f"RES.SIG_SEL{sel+1}_int", 3, 3, False, f"RES.SIG_SEL{sel+1}", delay="del_dummy") for i in range(4): create_mux(f"RES.CLOCK{i}", f"RES.SIG_SEL{sel+1}_int", 3, 4 + i, False, f"RES.SIG_SEL{sel+1}", delay="del_dummy") for p in range(1,9): create_mux(f"RES.SB_Y1.P{p}", f"RES.MDIE1.P{p}", 1, 0, False, f"RES.SEL_MDIE{p}", delay="del_dummy") sel = ((p - 1) & 3) + 1 create_mux(f"RES.SIG_SEL{sel}_int", f"RES.MDIE1.P{p}", 1, 1, False, f"RES.SEL_MDIE{p}", delay="del_dummy") if "TES" in type: for sel in range(4): create_mux("TES.CPE_RAM_O1", f"TES.SIG_SEL{sel+1}_int", 3, 0, False, f"TES.SIG_SEL{sel+1}", delay="del_dummy") create_mux("TES.CPE_RAM_O2", f"TES.SIG_SEL{sel+1}_int", 3, 1, False, f"TES.SIG_SEL{sel+1}", delay="del_dummy") create_mux("TES.CPE_COUTY1", f"TES.SIG_SEL{sel+1}_int", 3, 2, False, f"TES.SIG_SEL{sel+1}", delay="del_dummy") create_mux("TES.CPE_POUTY1", f"TES.SIG_SEL{sel+1}_int", 3, 3, False, f"TES.SIG_SEL{sel+1}", delay="del_dummy") create_mux("TES.CPE_COUTY2", f"TES.SIG_SEL{sel+1}_int", 3, 4, False, f"TES.SIG_SEL{sel+1}", delay="del_dummy") create_mux("TES.CPE_POUTY2", f"TES.SIG_SEL{sel+1}_int", 3, 5, False, f"TES.SIG_SEL{sel+1}", delay="del_dummy") clk = 0 if sel < 2 else 2 create_mux(f"TES.CLOCK{clk+0}", f"TES.SIG_SEL{sel+1}_int", 3, 6, False, f"TES.SIG_SEL{sel+1}", delay="del_dummy") create_mux(f"TES.CLOCK{clk+1}", f"TES.SIG_SEL{sel+1}_int", 3, 7, False, f"TES.SIG_SEL{sel+1}", delay="del_dummy") for p in range(1,9): create_mux(f"TES.SB_Y2.P{p}", f"TES.MDIE2.P{p}", 1, 0, False, f"TES.SEL_MDIE{p}", delay="del_dummy") sel = ((p - 1) & 3) + 1 create_mux(f"TES.SIG_SEL{sel}_int", f"TES.MDIE2.P{p}", 1, 1, False, f"TES.SEL_MDIE{p}", delay="del_dummy") if "PLL" in type: for i in range(0,4): create_direct(f"CLKIN.CLK_REF{i}", f"PLL{i}.CLK_REF", delay="del_dummy") create_direct(f"PLL{i}.CLK0", f"GLBOUT.CLK0_{i}", delay="del_dummy") create_direct(f"PLL{i}.CLK90", f"GLBOUT.CLK90_{i}", delay="del_dummy") create_direct(f"PLL{i}.CLK180", f"GLBOUT.CLK180_{i}", delay="del_dummy") create_direct(f"PLL{i}.CLK270", f"GLBOUT.CLK270_{i}", delay="del_dummy") create_direct(f"PLL{i}.CLK_REF_OUT", f"GLBOUT.CLK_REF_OUT{i}", delay="del_dummy") create_direct(f"GLBOUT.CLK_FB{i}", f"PLL{i}.CLK_FEEDBACK", delay="del_dummy") create_mux(f"CLKIN.CLK_REF{i}", f"GLBOUT.CLK_REF_OUT{i}", 1, 0, False, f"PLL{i}.USR_CLK_OUT", config=True, delay="del_dummy") create_mux(f"PLL{i}.USR_CLK_REF", f"GLBOUT.CLK_REF_OUT{i}", 1, 1, False, f"PLL{i}.USR_CLK_OUT", config=True, delay="del_dummy") return muxes def get_tile_types(x,y): val = list() if is_cpe(x,y): val.append("CPE") val.append("IM") if is_outmux(x,y): val.append("OM") if is_sb_big(x,y): val.append("SB_BIG") if is_sb_sml(x,y): val.append("SB_SML") if is_gpio(x,y): val.append("GPIO") if is_edge_io(x,y): val.append("IOES") if is_edge_top(x,y): val.append("TES") if is_edge_bottom(x,y): val.append("BES") if is_edge_left(x,y): val.append("LES") if is_edge_right(x,y): val.append("RES") if is_pll(x,y): val.append("PLL") if is_serdes(x,y): val.append("SERDES") if is_cfg_ctrl(x,y): val.append("CFG_CTRL") if is_ram_u(x,y): val.append("RAM_U") if is_ram_l(x,y): val.append("RAM_L") return val def get_tile_type(x,y): val = get_tile_types(x,y) if not val: val.append("NONE") return "_".join(val) def get_tile_type_list(): tt = set() for y in range(-2, max_row()+1): for x in range(-2, max_col()+1): tt.add(get_tile_type(x,y)) return tt def get_bitstream_tile(x, y): # Edge blocks are bit bigger if x == -2: x += 1 if x == max_col(): x -= 1 if y == -2: y += 1 if y == max_row(): y -= 1 return (x + 1) // 2, (y + 1) // 2 def get_tile_info(d,x,y): bx, by = get_bitstream_tile(x,y) pos = 0 if is_cpe(x,y): pos = ((x+1) % 2) * 2 + ((y+1) % 2) + 1 if is_edge_top(x,y): pos = (x - 1) % 2 + 1 if is_edge_bottom(x,y): pos = (x - 1) % 2 + 1 if is_edge_left(x,y): pos = (y - 1) % 2 + 1 if is_edge_right(x,y): pos = (y - 1) % 2 + 1 tile_x = ((x-1)+16) % 8 tile_y = ((y-1)+16) % 8 return TileInfo(d, bx, by, tile_x, tile_y, pos) def alt_plane(dir,plane): alt = [[5, 6, 7, 8, 1, 2, 3, 4,11,12, 9,10], [9,10,11,12, 9,10,11,12,12,11,10, 9]] return alt[dir][plane-1] def prev_plane(p): return (p-2) % 12 + 1 def next_plane(p): return p % 12 + 1 class Die: def __init__(self, name : str, die_x : int, die_y : int): self.name = name self.die_x = die_x self.die_y = die_y self.debug_conn = False self.offset_x = die_x * num_cols() self.offset_y = die_y * num_rows() self.io_pad_names = dict() self.gpio_to_loc = dict() self.conn = dict() self.rev_conn = dict() self.ddr_i = dict() for y in range(-2, max_row()+1): for x in range(-2, max_col()+1): if is_gpio(x,y): io = get_io_name(x,y) if io.bank not in self.io_pad_names: self.io_pad_names[io.bank] = dict() if io.port not in self.io_pad_names[io.bank]: self.io_pad_names[io.bank][io.port] = dict() if io.num not in self.io_pad_names[io.bank][io.port]: self.io_pad_names[io.bank][io.port][io.num] = dict() self.gpio_to_loc[f"GPIO_{io.bank}_{io.port}[{io.num}]"] = Location(x, y, 0) self.io_pad_names[io.bank][io.port][io.num] = Location(x, y, 0) def create_conn(self, src_x,src_y, src, dst_x, dst_y, dst, delay="del_dummy"): key_val = f"{src_x + self.offset_x}/{src_y + self.offset_y}/{src}" key = Connection(src_x + self.offset_x, src_y + self.offset_y, src, "" , False) item = Connection(dst_x + self.offset_x, dst_y + self.offset_y, dst, delay, True) if key_val not in self.conn: self.conn[key_val] = list() self.conn[key_val].append(key) self.conn[key_val].append(item) if "CPE.RAM_I" in dst: rev_key_val = f"{dst_x + self.offset_x}/{dst_y + self.offset_y}/{dst}" if rev_key_val not in self.rev_conn: self.rev_conn[rev_key_val] = list() self.rev_conn[rev_key_val].append(item) self.rev_conn[rev_key_val].append(key) if self.debug_conn: print(f"({src_x + self.offset_x},{src_y}) {src} => ({dst_x + self.offset_x},{dst_y + self.offset_y}) {dst}") def get_connections_for(self, src_x,src_y, src): key_val = f"{src_x + self.offset_x}/{src_y + self.offset_y}/{src}" if key_val in self.conn: return self.conn[key_val] return list() def get_connections_to(self, dst_x, dst_y, dst): rev_key_val = f"{dst_x + self.offset_x}/{dst_y + self.offset_y}/{dst}" if rev_key_val in self.rev_conn: return self.rev_conn[rev_key_val] return list() def create_cpe(self, x,y): if is_cpe(x,y-1): self.create_conn(x,y-1,"CPE.COUTY1", x,y,"CPE.CINY1") self.create_conn(x,y-1,"CPE.COUTY2", x,y,"CPE.CINY2") self.create_conn(x,y-1,"CPE.POUTY1", x,y,"CPE.PINY1") self.create_conn(x,y-1,"CPE.POUTY2", x,y,"CPE.PINY2") if is_cpe(x-1,y): self.create_conn(x-1,y,"CPE.COUTX", x,y,"CPE.CINX") self.create_conn(x-1,y,"CPE.POUTX", x,y,"CPE.PINX") def create_inmux(self, x,y): for p in range(1,13): plane = f"{p:02d}" # D0 - D3 are from nearby SBs offset = 2 if is_sb(x,y) else 1 self.create_conn(x-offset,y,f"{get_sb_type(x-offset,y)}.P{plane}.Y1", x,y,f"IM.P{plane}.D0", f"im_x1_y1_p{p}_d0_path1") self.create_conn(x,y-offset,f"{get_sb_type(x,y-offset)}.P{plane}.Y2", x,y,f"IM.P{plane}.D1", f"im_x1_y1_p{p}_d1_path1") self.create_conn(x+offset,y,f"{get_sb_type(x+offset,y)}.P{plane}.Y3", x,y,f"IM.P{plane}.D2", f"im_x1_y1_p{p}_d2_path1") self.create_conn(x,y+offset,f"{get_sb_type(x,y+offset)}.P{plane}.Y4", x,y,f"IM.P{plane}.D3", f"im_x1_y1_p{p}_d3_path1") # D4 and D5 are from diagonal INMUX if is_cpe(x-1,y-1): self.create_conn(x-1,y-1,f"IM.P{plane}.Y", x,y,f"IM.P{plane}.D4", f"im_x1_y1_p{p}_d4_path1") if is_cpe(x+1,y+1): self.create_conn(x+1,y+1,f"IM.P{plane}.Y", x,y,f"IM.P{plane}.D5", f"im_x1_y1_p{p}_d5_path1") def create_sb(self, x,y): x_0,y_0 = base_loc(x,y) sb_type = get_sb_type(x,y) for p in range(1,13): plane = f"{p:02d}" # Handling input D0 if is_cpe(x,y): # Core section SBs are connected to CPE if p < 9: # planes 1..8 x_cpe = x_0 + (1 if (p-1) & 2 else 0) y_cpe = y_0 + (1 if (p-1) & 1 else 0) # alternate patterns for lower-left SB(1,1) and upper-right SB(2,2) out = [ 2, 1, 2, 1, 1, 2, 1, 2] if x & 1 else [ 1, 2, 1, 2, 2, 1, 2, 1] self.create_conn(x_cpe,y_cpe,f"CPE.OUT{out[p-1]}", x,y,f"{sb_type}.P{plane}.D0") else: # planes 9..12 self.create_conn(x,y,f"OM.P{plane}.Y", x,y,f"{sb_type}.P{plane}.D0") # Handling GPIO connections is done in create_io # Handling inputs D2_* till D7_* distances = [2, 4, 8, 12, 16, 20] if is_sb_big(x,y) else [2, 4] for i,distance in enumerate(distances): for direction in range(4): sb_x, sb_y = x, y match direction: case 0 : sb_x -= distance case 1 : sb_y -= distance case 2 : sb_x += distance case 3 : sb_y += distance if is_sb(sb_x,sb_y): src = f"{get_sb_type(sb_x,sb_y)}.P{plane}.Y{direction+1}" # Long distance signals are coming from SB_DRIVE if distance > 4: t1x, t1y = (sb_x+16-1) // 8, (sb_y+16-1) // 8 t2x, t2y = (x+16-1) // 8, (y+16-1) // 8 # depending on distance there are additional inverters # that signal is passing through each 8x8 tile dist = abs(t1x-t2x) + abs(t1y-t2y) if dist % 2 == 1: src = f"SB_DRIVE.P{plane}.D{direction+1}.OUT" else: src = f"SB_DRIVE.P{plane}.D{direction+1}.OUT_NOINV" self.create_conn(sb_x,sb_y, src, x,y,f"{get_sb_type(x,y)}.P{plane}.D{i+2}_{direction+1}") # Diagonal inputs # X12 and X34 on edges are unconnected if is_sb(x-1,y-1): self.create_conn(x-1,y-1,f"{get_sb_type(x-1,y-1)}.P{plane}.YDIAG", x,y,f"{get_sb_type(x,y)}.P{plane}.X12") if is_sb(x+1,y+1): self.create_conn(x+1,y+1,f"{get_sb_type(x+1,y+1)}.P{plane}.YDIAG", x,y,f"{get_sb_type(x,y)}.P{plane}.X34") self.create_conn(x,y,f"{get_sb_type(x,y)}.P{prev_plane(p):02d}.YDIAG", x,y,f"{get_sb_type(x,y)}.P{plane}.X14") self.create_conn(x,y,f"{get_sb_type(x,y)}.P{next_plane(p):02d}.YDIAG", x,y,f"{get_sb_type(x,y)}.P{plane}.X23") def create_outmux(self, x,y): x_0,y_0 = base_loc(x,y) for p in range(9,13): plane = f"{p:02d}" # alternating patters depending of plane and outmux position outputs = [2, 2, 1, 1] if p % 2 == x & 1 else [1, 1, 2, 2] self.create_conn(x_0, y_0, f"CPE.OUT{outputs[0]}", x,y, f"OM.P{plane}.D0") self.create_conn(x_0, y_0+1, f"CPE.OUT{outputs[1]}", x,y, f"OM.P{plane}.D1") self.create_conn(x_0+1, y_0, f"CPE.OUT{outputs[2]}", x,y, f"OM.P{plane}.D2") self.create_conn(x_0+1, y_0+1, f"CPE.OUT{outputs[3]}", x,y, f"OM.P{plane}.D3") def get_pin_real_name(self, prim_name, pin): prim_type = prim_name num = 0 if prim_name.startswith("PLL"): num = int(prim_name[3]) + 2 prim_type = "PLL" prim = Primitive(prim_name, prim_type, num) return get_pin_connection_name(prim, Pin(pin,PinType.INPUT,"",False)) def create_ram_io_conn(self, prim_name, prim_type, loc_x, loc_y): for c in get_pins_constraint(get_tile_type(loc_x,loc_y),prim_name, prim_type): name = self.get_pin_real_name(prim_name, c.name) if c.output == RAM_OUTPUT: self.create_conn(loc_x + c.rel_x, loc_y + c.rel_y, f"CPE.RAM_O{c.pin_num}", loc_x, loc_y, f"{name}") else: self.create_conn(loc_x, loc_y, f"{name}", loc_x + c.rel_x, loc_y + c.rel_y, f"CPE.RAM_I{c.pin_num}", delay="del_special_RAM_I") def create_io(self, x,y): cpe_x, cpe_y = gpio_x, gpio_y = sb_x, sb_y = x, y alt = False if is_edge_left(sb_x,sb_y): output = "Y3" cpe_x += 3 if is_sb(sb_x+1,sb_y): sb_x += 1 else: sb_x += 2 gpio_y -= 1 alt = True elif is_edge_right(sb_x,sb_y): output = "Y1" cpe_x -= 3 if is_sb(sb_x-1,sb_y): sb_x -= 1 gpio_y -= 1 alt = True else: sb_x -= 2 elif is_edge_bottom(sb_x,sb_y): output = "Y4" cpe_y += 3 if is_sb(sb_x,sb_y+1): sb_y += 1 else: sb_y += 2 gpio_x -= 1 alt = True else: output = "Y2" cpe_y -= 3 if is_sb(sb_x,sb_y-1): sb_y -= 1 gpio_x -= 1 alt = True else: sb_y -= 2 for p in range(1,13): plane = f"{p:02d}" self.create_conn(sb_x,sb_y,f"{get_sb_type(sb_x,sb_y)}.P{plane}.{output}", x,y, f"IOES.ALTIN_{plane}") self.create_conn(x,y, f"IOES.SB_IN_{plane}", sb_x,sb_y,f"{get_sb_type(sb_x,sb_y)}.P{plane}.D0_IO") self.create_conn(gpio_x,gpio_y,"IOSEL.IN1", x,y, "IOES.IO_IN1") self.create_conn(gpio_x,gpio_y,"IOSEL.IN2", x,y, "IOES.IO_IN2") if not alt: self.create_ram_io_conn("IOSEL", "IOSEL", x, y) self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB0", gpio_x, gpio_y, "IOSEL.CLOCK1", "del_GLBOUT_IO_SEL") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB1", gpio_x, gpio_y, "IOSEL.CLOCK2", "del_GLBOUT_IO_SEL") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB2", gpio_x, gpio_y, "IOSEL.CLOCK3", "del_GLBOUT_IO_SEL") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB3", gpio_x, gpio_y, "IOSEL.CLOCK4", "del_GLBOUT_IO_SEL") def create_pll(self): # GPIO_W2_A[8] CLK0 # GPIO_W2_A[7] CLK1 # GPIO_W2_A[6] CLK2 # GPIO_W2_A[5] CLK3 # SER_CLK SER_CLK # GPIO_S3_B[8] SPI_CLK # GPIO_S3_A[5] JTAG_CLK loc = self.gpio_to_loc["GPIO_W2_A[8]"] self.create_conn(loc.x, loc.y, "IOSEL.IN1", PLL_X_POS, PLL_Y_POS, "CLKIN.CLK0") loc = self.gpio_to_loc["GPIO_W2_A[7]"] self.create_conn(loc.x, loc.y, "IOSEL.IN1", PLL_X_POS, PLL_Y_POS, "CLKIN.CLK1") loc = self.gpio_to_loc["GPIO_W2_A[6]"] self.create_conn(loc.x, loc.y, "IOSEL.IN1", PLL_X_POS, PLL_Y_POS, "CLKIN.CLK2") loc = self.gpio_to_loc["GPIO_W2_A[5]"] self.create_conn(loc.x, loc.y, "IOSEL.IN1", PLL_X_POS, PLL_Y_POS, "CLKIN.CLK3") self.create_ram_io_conn("GLBOUT", "GLBOUT", PLL_X_POS, PLL_Y_POS) self.create_ram_io_conn("PLL0", "PLL", PLL_X_POS, PLL_Y_POS) self.create_ram_io_conn("PLL1", "PLL", PLL_X_POS, PLL_Y_POS) self.create_ram_io_conn("PLL2", "PLL", PLL_X_POS, PLL_Y_POS) self.create_ram_io_conn("PLL3", "PLL", PLL_X_POS, PLL_Y_POS) def global_mesh(self): def global_mesh_conn(x,y,inp): for p in range(1,13): plane = f"{p:02d}" if is_sb_big(x,y): # Clock#1: p1, p5,p9 # Clock#2: p2, p6,p10 # Clock#3: p3, p7,p11 # Clock#4: p4, p8,p12 self.create_conn(PLL_X_POS, PLL_Y_POS, f"GLBOUT.GLB{(p-1) & 3}", x,y,f"SB_BIG.P{plane}.{inp}_CLK", "del_GLBOUT_sb_big") # Connecting Global Mesh signals to Switch Boxes # Left edge for y in range(0,130+1): x = 2 - (y % 4) global_mesh_conn(x,y,"D7_1") global_mesh_conn(-1,-1,"D7_1") # Bottom edge for x in range(0,162+1): y = 2 - (x % 4) global_mesh_conn(x,y,"D7_2") global_mesh_conn(-1,-1,"D7_2") # Right edge for y in range(0,130+1): x = 2 - (y % 4) + 160 global_mesh_conn(x,y,"D7_3") global_mesh_conn(159,-1,"D7_3") # Top edge for x in range(0,162+1): y = 2 - (x % 4) + 128 global_mesh_conn(x,y,"D7_4") global_mesh_conn(-1,127,"D7_4") # Connecting Global Mesh signals to CPEs #for m in range (0,3+1): # for n in range (0,7+1): # x0 = 33 + m * 32 # y0 = 1 + n * 16 # self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB0", x0 - 3, y0 + 10 , "CPE.RAM_I1") # self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB1", x0 - 3, y0 + 11 , "CPE.RAM_I1") # self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB2", x0 - 3, y0 + 12 , "CPE.RAM_I1") # self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB3", x0 - 3, y0 + 13 , "CPE.RAM_I1") # # self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB0", x0 + 2, y0 + 10 , "CPE.RAM_I2") # self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB1", x0 + 2, y0 + 11 , "CPE.RAM_I2") # self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB2", x0 + 2, y0 + 12 , "CPE.RAM_I2") # self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB3", x0 + 2, y0 + 13 , "CPE.RAM_I2") def edge_select(self): # Left edge for y in range(1,128+1): self.create_conn(-2, y, "LES.CPE_CINX", 1, y ,"CPE.CINX") self.create_conn(-2, y, "LES.CPE_PINX", 1, y ,"CPE.PINX") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB0", -2, y, "LES.CLOCK0") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB1", -2, y, "LES.CLOCK1") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB2", -2, y, "LES.CLOCK2") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB3", -2, y, "LES.CLOCK3") for p in range(1,9): plane = f"{p:02d}" sb_x = -1 if y % 2==1 else 0 self.create_conn(sb_x, y, f"{get_sb_type(sb_x,y)}.P{plane}.Y3", -2, y, f"LES.SB_Y3.P{p}") # Bottom edge for x in range(1,160+1): self.create_conn(x, -2, "BES.CPE_CINY1", x, 1 ,"CPE.CINY1") self.create_conn(x, -2, "BES.CPE_PINY1", x, 1 ,"CPE.PINY1") self.create_conn(x, -2, "BES.CPE_CINY2", x, 1 ,"CPE.CINY2") self.create_conn(x, -2, "BES.CPE_PINY2", x, 1 ,"CPE.PINY2") if x>1: self.create_conn(x-1, -2, "BES.CPE_CINY1", x, -2 ,"BES.P_CINY1") self.create_conn(x-1, -2, "BES.CPE_PINY1", x, -2 ,"BES.P_PINY1") self.create_conn(x-1, -2, "BES.CPE_CINY2", x, -2 ,"BES.P_CINY2") self.create_conn(x-1, -2, "BES.CPE_PINY2", x, -2 ,"BES.P_PINY2") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB0", x, -2, "BES.CLOCK0") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB1", x, -2, "BES.CLOCK1") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB2", x, -2, "BES.CLOCK2") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB3", x, -2, "BES.CLOCK3") for p in range(1,9): plane = f"{p:02d}" sb_y = -1 if x % 2==1 else 0 self.create_conn(x, sb_y, f"{get_sb_type(x,sb_y)}.P{plane}.Y4", x, -2, f"BES.SB_Y4.P{p}") # Right edge for y in range(1,128+1): self.create_conn(160, y, "CPE.RAM_O1", 163, y ,"RES.CPE_RAM_O1") self.create_conn(160, y, "CPE.RAM_O2", 163, y ,"RES.CPE_RAM_O2") self.create_conn(160, y, "CPE.COUTX", 163, y ,"RES.CPE_COUTX") self.create_conn(160, y, "CPE.POUTX", 163, y ,"RES.CPE_POUTX") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB0", 163, y, "RES.CLOCK0") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB1", 163, y, "RES.CLOCK1") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB2", 163, y, "RES.CLOCK2") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB3", 163, y, "RES.CLOCK3") for p in range(1,9): plane = f"{p:02d}" sb_x = 161 if y % 2==1 else 162 self.create_conn(sb_x, y, f"{get_sb_type(sb_x,y)}.P{plane}.Y1", 163, y, f"RES.SB_Y1.P{p}") # Top edge for x in range(28,160+1): self.create_conn(x, 128 ,"CPE.RAM_O1", x, 131, "TES.CPE_RAM_O1") self.create_conn(x, 128 ,"CPE.RAM_O2", x, 131, "TES.CPE_RAM_O2") self.create_conn(x, 128 ,"CPE.COUTY1", x, 131, "TES.CPE_COUTY1") self.create_conn(x, 128 ,"CPE.POUTY1", x, 131, "TES.CPE_POUTY1") self.create_conn(x, 128 ,"CPE.COUTY2", x, 131, "TES.CPE_COUTY2") self.create_conn(x, 128 ,"CPE.POUTY2", x, 131, "TES.CPE_POUTY2") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB0", x, 131, "TES.CLOCK0") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB1", x, 131, "TES.CLOCK1") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB2", x, 131, "TES.CLOCK2") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB3", x, 131, "TES.CLOCK3") for p in range(1,9): plane = f"{p:02d}" sb_y = 129 if x % 2==1 else 130 self.create_conn(x, sb_y, f"{get_sb_type(x,sb_y)}.P{plane}.Y2", x, 131, f"TES.SB_Y2.P{p}") def connect_ddr_i(self, x, y, out, bank): for port in ['A','B']: for num in range(0,9): loc = self.io_pad_names[bank][port][num] self.create_conn(x, y , f"CPE.RAM_O{out}", loc.x, loc.y, "IOSEL.DDR") self.ddr_i[bank] = Location(x+self.offset_x,y+self.offset_y,2-out) def misc_connections(self): self.create_ram_io_conn("CFG_CTRL", "CFG_CTRL", CTRL_X_POS, CTRL_Y_POS) self.create_ram_io_conn("USR_RSTN", "USR_RSTN", CTRL_X_POS, CTRL_Y_POS) self.connect_ddr_i(97,128,1,'N1') self.connect_ddr_i(97,128,2,'N2') self.connect_ddr_i(160,65,1,'E1') self.connect_ddr_i(160,65,2,'E2') self.connect_ddr_i(1,65,1,'W1') self.connect_ddr_i(1,65,2,'W2') self.connect_ddr_i(97,1,1,'S1') self.connect_ddr_i(97,1,2,'S2') self.connect_ddr_i(49,1,1,'S3') def create_serdes(self, x, y): self.create_ram_io_conn("SERDES", "SERDES", x, y) def create_ram(self, x, y): self.create_ram_io_conn("RAM", "RAM", x, y) # No actuall need for connections to RAMI/O # for halfs, they create conflicts and we # later anyway merge to full RAM self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB0", x, y, "RAM.CLOCK1") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB1", x, y, "RAM.CLOCK2") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB2", x, y, "RAM.CLOCK3") self.create_conn(PLL_X_POS, PLL_Y_POS, "GLBOUT.GLB3", x, y, "RAM.CLOCK4") def create_in_die_connections(self, conn): self.conn = conn for y in range(-2, max_row()+1): for x in range(-2, max_col()+1): if is_cpe(x,y): self.create_cpe(x,y) self.create_inmux(x,y) if is_outmux(x,y): self.create_outmux(x,y) if is_sb(x,y): self.create_sb(x,y) if is_edge_io(x,y): self.create_io(x,y) if is_ram_u(x,y): self.create_ram(x,y) if is_serdes(x,y): self.create_serdes(x,y) self.create_pll() self.global_mesh() self.edge_select() self.misc_connections() prjpeppercorn-1.12/gatemate/timing.py000066400000000000000000000500021514752025000177540ustar00rootroot00000000000000# # prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools # # Copyright (C) 2024 The Project Peppercorn Authors. # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # import zlib import struct from dataclasses import dataclass from typing import List @dataclass class T_delay_tri: min: int typ: int max: int @staticmethod def from_bytes(data: bytes) -> 'T_delay_tri': min_val, typ_val, max_val = struct.unpack('<3i', data) return T_delay_tri(min_val, typ_val, max_val) @dataclass class T_delay: rise: T_delay_tri fall: T_delay_tri @staticmethod def from_bytes(data: bytes) -> 'T_delay': rise = T_delay_tri.from_bytes(data[:12]) fall = T_delay_tri.from_bytes(data[12:24]) return T_delay(rise, fall) @dataclass class Tpin_pair: i: int o_or_clk: int # Represents either 'o' or 'clk' depending on the boolean case @dataclass class Tentry_rec: pins: Tpin_pair entry_no: int @dataclass class Tdel_entry: key: int edge1: int edge2: int time1: T_delay_tri time2: T_delay_tri @dataclass class TRAM_del_rec: iopath: List[Tentry_rec] setuphold: List[Tentry_rec] width: List[Tentry_rec] del_entry: List[Tdel_entry] @dataclass class Tdel_rec: val: T_delay conf_mux: int name: str x: int y: int plane: int dir: int inv: int cnt: int con_type: int @staticmethod def from_bytes(data: memoryview, offset: int) -> ('Tdel_rec', int): val = T_delay.from_bytes(data[offset:offset + 24]) offset += 24 conf_mux = struct.unpack_from(' ('Tdel_rec_tri', int): val = T_delay_tri.from_bytes(mv[offset:offset+12]) offset += 12 conf_mux = struct.unpack_from(' (List, int): SB_del_tile_arr = [] for i1 in range(4): # [1..4] level1 = [] for i2 in range(8): # [1..8] level2 = [] for i3 in range(4): # [1..4] level3 = [] for i4 in range(12): # [1..12] level4 = [] for i5 in range(5): # [0..4] level5 = [] for i6 in range(8): # [0..7] chunk = mv[offset:offset + 24] if len(chunk) < 24: raise EOFError("Unexpected end of data") delay = T_delay.from_bytes(chunk) offset += 24 level5.append(delay) level4.append(level5) level3.append(level4) level2.append(level3) level1.append(level2) SB_del_tile_arr.append(level1) return SB_del_tile_arr, offset @dataclass class ExtraTimingDelays: skew_report_del: int fix_skew_del: int del_rec_0: Tdel_rec del_min_route_SB: Tdel_rec del_violation_common: Tdel_rec_tri del_dummy: Tdel_rec del_Hold_D_L: Tdel_rec_tri del_Hold_RAM: Tdel_rec_tri del_Setup_D_L: Tdel_rec_tri del_Setup_RAM: Tdel_rec_tri del_Hold_SN_RN: Tdel_rec_tri del_Setup_SN_RN: Tdel_rec_tri del_Hold_RN_SN: Tdel_rec_tri del_Setup_RN_SN: Tdel_rec_tri del_bot_couty2: Tdel_rec del_bot_glb_couty2: Tdel_rec del_bot_SB_couty2: Tdel_rec del_bot_pouty2: Tdel_rec del_bot_glb_pouty2: Tdel_rec del_bot_SB_pouty2: Tdel_rec del_left_couty2: Tdel_rec del_left_glb_couty2: Tdel_rec del_left_SB_couty2: Tdel_rec del_left_pouty2: Tdel_rec del_left_glb_pouty2: Tdel_rec del_left_SB_pouty2: Tdel_rec del_inp: List[Tdel_rec] del_CPE_out_mux: List[Tdel_rec] del_CPE_CP_Q: Tdel_rec del_CPE_S_Q: Tdel_rec del_CPE_R_Q: Tdel_rec del_CPE_D_Q: Tdel_rec del_RAM_CLK_DO: Tdel_rec del_GLBOUT_sb_big: Tdel_rec del_sb_drv: Tdel_rec del_CP_carry_path: Tdel_rec del_CP_prop_path: Tdel_rec del_special_RAM_I: Tdel_rec del_RAMO_xOBF: Tdel_rec del_GLBOUT_IO_SEL: Tdel_rec del_IO_SEL_Q_out: Tdel_rec del_IO_SEL_Q_in: Tdel_rec in_delayline_per_stage: Tdel_rec out_delayline_per_stage: Tdel_rec del_IBF: Tdel_rec del_OBF: Tdel_rec del_r_OBF: Tdel_rec del_TOBF_ctrl: Tdel_rec del_LVDS_IBF: Tdel_rec del_LVDS_OBF: Tdel_rec del_LVDS_r_OBF: Tdel_rec del_LVDS_TOBF_ctrl: Tdel_rec del_CP_clkin: Tdel_rec del_CP_enin: Tdel_rec del_preplace: Tdel_rec del_CPE_timing_mod: List[Tdel_rec] @staticmethod def from_bytes(mv: memoryview, offset: int) -> ('ExtraTimingDelays', int): skew_report_del, fix_skew_del = struct.unpack_from('<2i', mv, offset) offset += 8 del_rec_0, offset = Tdel_rec.from_bytes(mv, offset) del_min_route_SB, offset = Tdel_rec.from_bytes(mv, offset) del_violation_common, offset = Tdel_rec_tri.from_bytes(mv, offset) del_dummy, offset = Tdel_rec.from_bytes(mv, offset) del_Hold_D_L, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Hold_RAM, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Setup_D_L, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Setup_RAM, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Hold_SN_RN, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Setup_SN_RN, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Hold_RN_SN, offset = Tdel_rec_tri.from_bytes(mv, offset) del_Setup_RN_SN, offset = Tdel_rec_tri.from_bytes(mv, offset) del_bot_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_glb_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_SB_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_glb_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_bot_SB_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_glb_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_SB_couty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_glb_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_left_SB_pouty2, offset = Tdel_rec.from_bytes(mv, offset) del_inp = [] for _ in range(8): rec, offset = Tdel_rec.from_bytes(mv, offset) del_inp.append(rec) del_CPE_out_mux = [] for _ in range(4): rec, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_out_mux.append(rec) del_CPE_CP_Q, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_S_Q, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_R_Q, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_D_Q, offset = Tdel_rec.from_bytes(mv, offset) del_RAM_CLK_DO, offset = Tdel_rec.from_bytes(mv, offset) del_GLBOUT_sb_big, offset = Tdel_rec.from_bytes(mv, offset) del_sb_drv, offset = Tdel_rec.from_bytes(mv, offset) del_CP_carry_path, offset = Tdel_rec.from_bytes(mv, offset) del_CP_prop_path, offset = Tdel_rec.from_bytes(mv, offset) del_special_RAM_I, offset = Tdel_rec.from_bytes(mv, offset) del_RAMO_xOBF, offset = Tdel_rec.from_bytes(mv, offset) del_GLBOUT_IO_SEL, offset = Tdel_rec.from_bytes(mv, offset) del_IO_SEL_Q_out, offset = Tdel_rec.from_bytes(mv, offset) del_IO_SEL_Q_in, offset = Tdel_rec.from_bytes(mv, offset) in_delayline_per_stage, offset = Tdel_rec.from_bytes(mv, offset) out_delayline_per_stage, offset = Tdel_rec.from_bytes(mv, offset) del_IBF, offset = Tdel_rec.from_bytes(mv, offset) del_OBF, offset = Tdel_rec.from_bytes(mv, offset) del_r_OBF, offset = Tdel_rec.from_bytes(mv, offset) del_TOBF_ctrl, offset = Tdel_rec.from_bytes(mv, offset) del_LVDS_IBF, offset = Tdel_rec.from_bytes(mv, offset) del_LVDS_OBF, offset = Tdel_rec.from_bytes(mv, offset) del_LVDS_r_OBF, offset = Tdel_rec.from_bytes(mv, offset) del_LVDS_TOBF_ctrl, offset = Tdel_rec.from_bytes(mv, offset) del_CP_clkin, offset = Tdel_rec.from_bytes(mv, offset) del_CP_enin, offset = Tdel_rec.from_bytes(mv, offset) del_preplace, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_timing_mod = [] for _ in range(42): rec, offset = Tdel_rec.from_bytes(mv, offset) del_CPE_timing_mod.append(rec) return ExtraTimingDelays( skew_report_del, fix_skew_del, del_rec_0, del_min_route_SB, del_violation_common, del_dummy, del_Hold_D_L, del_Hold_RAM, del_Setup_D_L, del_Setup_RAM, del_Hold_SN_RN, del_Setup_SN_RN, del_Hold_RN_SN, del_Setup_RN_SN, del_bot_couty2, del_bot_glb_couty2, del_bot_SB_couty2, del_bot_pouty2, del_bot_glb_pouty2, del_bot_SB_pouty2, del_left_couty2, del_left_glb_couty2, del_left_SB_couty2, del_left_pouty2, del_left_glb_pouty2, del_left_SB_pouty2, del_inp, del_CPE_out_mux, del_CPE_CP_Q, del_CPE_S_Q, del_CPE_R_Q, del_CPE_D_Q, del_RAM_CLK_DO, del_GLBOUT_sb_big, del_sb_drv, del_CP_carry_path, del_CP_prop_path, del_special_RAM_I, del_RAMO_xOBF, del_GLBOUT_IO_SEL, del_IO_SEL_Q_out, del_IO_SEL_Q_in, in_delayline_per_stage, out_delayline_per_stage, del_IBF, del_OBF, del_r_OBF, del_TOBF_ctrl, del_LVDS_IBF, del_LVDS_OBF, del_LVDS_r_OBF, del_LVDS_TOBF_ctrl, del_CP_clkin, del_CP_enin, del_preplace, del_CPE_timing_mod ), offset def read_IM_del_tile_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(2): # [1..2] level1 = [] for i2 in range(8): # [1..8] level2 = [] for i3 in range(8): # [1..8] level3 = [] for i4 in range(12): # [1..12] level4 = [] for i5 in range(8): # [0..7] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level4.append(delay) level3.append(level4) level2.append(level3) level1.append(level2) result.append(level1) return result, offset def read_OM_del_tile_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(8): # [1..8] level1 = [] for i2 in range(8): # [1..8] level2 = [] for i3 in range(4): # [9..12] level3 = [] for i4 in range(4): # [0..3] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level3.append(delay) level2.append(level3) level1.append(level2) result.append(level1) return result, offset def read_CPE_del_tile_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(10): # [0..9] level1 = [] for i2 in range(19): # [1..19] level2 = [] for i3 in range(10): # [1..10] rec, offset = Tdel_rec.from_bytes(mv, offset) level2.append(rec) level1.append(level2) result.append(level1) return result, offset def read_SB_del_rim_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(165): # [-2..162] level1 = [] for i2 in range(4): # [1..4] level2 = [] for i3 in range(12): # [1..12] level3 = [] for i4 in range(5): # [0..4] level4 = [] for i5 in range(8): # [0..7] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level4.append(delay) level3.append(level4) level2.append(level3) level1.append(level2) result.append(level1) return result, offset def read_Edge_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(165): # [-2..162] level1 = [] for i2 in range(4): # [1..4] level2 = [] for i3 in range(24): # [1..24] level3 = [] for i4 in range(8): # [1..8] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level3.append(delay) level2.append(level3) level1.append(level2) result.append(level1) return result, offset def read_IO_SEL_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(11): # [1..11] level1 = [] for i2 in range(4): # [1..4] delay = T_delay.from_bytes(mv[offset:offset+24]) offset += 24 level1.append(delay) result.append(level1) return result, offset def read_CLKIN_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(7): level1 = [] for i2 in range(4): delay = T_delay.from_bytes(mv[offset:offset + 24]) offset += 24 level1.append(delay) result.append(level1) return result, offset def read_GLBOUT_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(28): level1 = [] for i2 in range(8): delay = T_delay.from_bytes(mv[offset:offset + 24]) offset += 24 level1.append(delay) result.append(level1) return result, offset def read_PLL_del_arr_from_bytes(mv: memoryview, offset: int) -> (List, int): result = [] for i1 in range(7): level1 = [] for i2 in range(6): delay = T_delay.from_bytes(mv[offset:offset + 24]) offset += 24 level1.append(delay) result.append(level1) return result, offset def read_Tentry_rec_from_bytes(data: memoryview, offset: int) -> ('Tentry_rec', int): pins_i, pins_val, entry_no = struct.unpack_from('<3h', data, offset) return Tentry_rec(Tpin_pair(pins_i, pins_val), entry_no), offset + 6 def read_Tdel_entry_from_bytes(data: memoryview, offset: int) -> ('Tdel_entry', int): key, edge1, edge2 = struct.unpack_from('<3i', data, offset) time1 = T_delay_tri.from_bytes(data[offset + 12:offset + 24]) time2 = T_delay_tri.from_bytes(data[offset + 24:offset + 36]) return Tdel_entry(key, edge1, edge2, time1, time2), offset + 36 def read_TRAM_del_rec_from_bytes(mv: memoryview, offset: int) -> (TRAM_del_rec, int): iopath = [] for _ in range(3001): entry, offset = read_Tentry_rec_from_bytes(mv, offset) iopath.append(entry) setuphold = [] for _ in range(8001): entry, offset = read_Tentry_rec_from_bytes(mv, offset) setuphold.append(entry) width = [] for _ in range(51): entry, offset = read_Tentry_rec_from_bytes(mv, offset) width.append(entry) del_entry = [] offset += 2 # alignment added for _ in range(101): entry, offset = read_Tdel_entry_from_bytes(mv, offset) del_entry.append(entry) return TRAM_del_rec(iopath, setuphold, width, del_entry), offset def read_IO_SEL_io_coef_from_bytes(mv: memoryview, offset: int) -> (list, int): result = [] for i1 in range(4): # [1..4] row = [] for i2 in range(27): # [1..27] value = struct.unpack_from(' 'Tdel_all_rec': offset = 0 sb_del_tile_arr, offset = read_SB_del_tile_arr_from_bytes(data, offset) im, offset = read_IM_del_tile_arr_from_bytes(data, offset) om, offset = read_OM_del_tile_arr_from_bytes(data, offset) cpe, offset = read_CPE_del_tile_arr_from_bytes(data, offset) sb_del_rim, offset = read_SB_del_rim_arr_from_bytes(data, offset) edge, offset = read_Edge_del_arr_from_bytes(data, offset) io_sel, offset = read_IO_SEL_del_arr_from_bytes(data, offset) clkin, offset = read_CLKIN_del_arr_from_bytes(data, offset) glbout, offset = read_GLBOUT_del_arr_from_bytes(data, offset) pll_del, offset = read_PLL_del_arr_from_bytes(data, offset) fpga_ram_del_1, offset = read_TRAM_del_rec_from_bytes(data, offset) fpga_ram_del_2, offset = read_TRAM_del_rec_from_bytes(data, offset) fpga_ram_del_3, offset = read_TRAM_del_rec_from_bytes(data, offset) io_sel_coef, offset = read_IO_SEL_io_coef_from_bytes(data, offset) timing_delays, offset = ExtraTimingDelays.from_bytes(data, offset) return Tdel_all_rec(sb_del_tile_arr, im, om, cpe, sb_del_rim, edge, io_sel, clkin, glbout, pll_del, fpga_ram_del_1, fpga_ram_del_2, fpga_ram_del_3,io_sel_coef, timing_delays) def decompress_timing(input_path) -> 'Tdel_all_rec': with open(input_path, 'rb') as f_in: compressed_data = f_in.read() try: decompressed_data = zlib.decompress(compressed_data) except zlib.error as e: print(f"Decompression failed: {e}") return return Tdel_all_rec.from_bytes(decompressed_data) # Example usage #decompress_timing("cc_best_eco_dly.dly") #decompress_timing("cc_best_lpr_dly.dly") #decompress_timing("cc_best_spd_dly.dly") # #decompress_timing("cc_typ_eco_dly.dly") #decompress_timing("cc_typ_lpr_dly.dly") #decompress_timing("cc_typ_spd_dly.dly") # #decompress_timing("cc_worst_eco_dly.dly") #decompress_timing("cc_worst_lpr_dly.dly") #decompress_timing("cc_worst_spd_dly.dly") prjpeppercorn-1.12/libgm/000077500000000000000000000000001514752025000154215ustar00rootroot00000000000000prjpeppercorn-1.12/libgm/.clang-format000066400000000000000000000047541514752025000200060ustar00rootroot00000000000000--- Language: Cpp # BasedOnStyle: LLVM AccessModifierOffset: -2 AlignAfterOpenBracket: Align AlignConsecutiveAssignments: false AlignConsecutiveDeclarations: false AlignEscapedNewlinesLeft: false AlignOperands: true AlignTrailingComments: true AllowAllParametersOfDeclarationOnNextLine: true AllowShortBlocksOnASingleLine: false AllowShortCaseLabelsOnASingleLine: false AllowShortFunctionsOnASingleLine: All AllowShortIfStatementsOnASingleLine: false AllowShortLoopsOnASingleLine: false AlwaysBreakAfterDefinitionReturnType: None AlwaysBreakAfterReturnType: None AlwaysBreakBeforeMultilineStrings: false AlwaysBreakTemplateDeclarations: false BinPackArguments: true BinPackParameters: true BraceWrapping: AfterClass: true AfterControlStatement: false AfterEnum: true AfterFunction: true AfterNamespace: false AfterObjCDeclaration: false AfterStruct: true AfterUnion: true BeforeCatch: false BeforeElse: false IndentBraces: false BreakBeforeBinaryOperators: None BreakBeforeBraces: Custom BreakBeforeTernaryOperators: true BreakConstructorInitializersBeforeComma: false ColumnLimit: 120 CommentPragmas: '^ IWYU pragma:' ConstructorInitializerAllOnOneLineOrOnePerLine: false ConstructorInitializerIndentWidth: 8 ContinuationIndentWidth: 8 Cpp11BracedListStyle: true DerivePointerAlignment: false DisableFormat: false ExperimentalAutoDetectBinPacking: false ForEachMacros: [ foreach, Q_FOREACH, BOOST_FOREACH ] IncludeCategories: - Regex: '<.*>' Priority: 1 - Regex: '.*' Priority: 2 IndentCaseLabels: false IndentWidth: 4 IndentWrappedFunctionNames: false KeepEmptyLinesAtTheStartOfBlocks: true MacroBlockBegin: '' MacroBlockEnd: '' MaxEmptyLinesToKeep: 1 NamespaceIndentation: None ObjCBlockIndentWidth: 4 ObjCSpaceAfterProperty: false ObjCSpaceBeforeProtocolList: true PenaltyBreakBeforeFirstCallParameter: 19 PenaltyBreakComment: 300 PenaltyBreakFirstLessLess: 120 PenaltyBreakString: 1000 PenaltyExcessCharacter: 1000000 PenaltyReturnTypeOnItsOwnLine: 60 PointerAlignment: Right ReflowComments: true SortIncludes: true SpaceAfterCStyleCast: false SpaceBeforeAssignmentOperators: true SpaceBeforeParens: ControlStatements SpaceInEmptyParentheses: false SpacesBeforeTrailingComments: 1 SpacesInAngles: false SpacesInContainerLiterals: true SpacesInCStyleCastParentheses: false SpacesInParentheses: false SpacesInSquareBrackets: false Standard: Cpp11 TabWidth: 8 UseTab: Never ... prjpeppercorn-1.12/libgm/.gitignore000066400000000000000000000003211514752025000174050ustar00rootroot00000000000000Makefile cmake_install.cmake compile_commands.json *.o CMakeFiles CMakeScripts CTestTestfile.cmake CMakeCache.txt *.bit *.cfg *.so *.dll *.a install_manifest.txt *~ generated/ .vscode/ # Linux gmunpack gmpack prjpeppercorn-1.12/libgm/CMakeLists.txt000066400000000000000000000117131514752025000201640ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.13) project(libgatemate) cmake_policy(SET CMP0167 NEW) option(BUILD_SHARED "Build shared GateMate library" OFF) option(STATIC_BUILD "Create static build of GateMate tools" ON) set(PROGRAM_PREFIX "" CACHE STRING "Name prefix for executables") set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) if (MSVC) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -bigobj -EHsc") else() set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -pedantic -Wextra -O3") endif() set(CMAKE_DEFIN) set(link_param "") if (STATIC_BUILD) set(Boost_USE_STATIC_LIBS ON) if(MSVC) add_definitions(-DBOOST_PYTHON_STATIC_LIB) set(CMAKE_CXX_FLAGS_RELEASE "/MT") set(CMAKE_CXX_FLAGS_DEBUG "/MTd") elseif (NOT APPLE) set(link_param "-static") endif() else() if(MSVC) set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON) endif() endif() if (WASI) add_definitions( -DBOOST_EXCEPTION_DISABLE -DBOOST_NO_EXCEPTIONS -DBOOST_SP_NO_ATOMIC_ACCESS -DBOOST_AC_DISABLE_THREADS -DBOOST_NO_CXX11_HDR_MUTEX -DBOOST_NO_CXX11_HDR_ATOMIC ) endif() set(boost_libs program_options) find_package(Boost REQUIRED COMPONENTS ${boost_libs}) find_package(Git) include_directories(include/ ${Boost_INCLUDE_DIRS}) aux_source_directory(include/ INCLUDE_FILES) aux_source_directory(src/ SOURCE_FILES) if (BUILD_SHARED) add_library(gatemate SHARED ${INCLUDE_FILES} ${SOURCE_FILES}) else() add_library(gatemate STATIC ${INCLUDE_FILES} ${SOURCE_FILES}) endif() target_link_libraries(gatemate LINK_PUBLIC ${Boost_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT}) include(GNUInstallDirs) file(RELATIVE_PATH GATEMATE_RPATH_LIBDIR /${CMAKE_INSTALL_BINDIR} /${CMAKE_INSTALL_LIBDIR}) file(RELATIVE_PATH GATEMATE_RPATH_DATADIR /${CMAKE_INSTALL_BINDIR} /${CMAKE_INSTALL_DATADIR}) function(setup_rpath name) if(APPLE) set_target_properties(${name} PROPERTIES BUILD_WITH_INSTALL_RPATH ON INSTALL_RPATH "@loader_path/${GATEMATE_RPATH_LIBDIR}/${PROGRAM_PREFIX}gatemate" INSTALL_NAME_DIR "@rpath") elseif(UNIX) set_target_properties(${name} PROPERTIES BUILD_WITH_INSTALL_RPATH ON INSTALL_RPATH "\$ORIGIN/${GATEMATE_RPATH_LIBDIR}/${PROGRAM_PREFIX}gatemate") endif() endfunction() # Avoid perturbing build if git version hasn't changed file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/generated") set(LAST_GIT_VERSION "") if (NOT DEFINED CURRENT_GIT_VERSION) execute_process(COMMAND git describe --tags OUTPUT_VARIABLE CURRENT_GIT_VERSION WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}) endif() string(STRIP "${CURRENT_GIT_VERSION}" CURRENT_GIT_VERSION) if (EXISTS "${CMAKE_BINARY_DIR}/generated/last_git_version") file(READ "${CMAKE_BINARY_DIR}/generated/last_git_version" LAST_GIT_VERSION) endif() if (NOT ("${LAST_GIT_VERSION}" STREQUAL "${CURRENT_GIT_VERSION}") OR NOT GIT_EXECUTABLE) configure_file( ${CMAKE_SOURCE_DIR}/tools/version.cpp.in ${CMAKE_BINARY_DIR}/generated/version.cpp ) endif() file(WRITE "${CMAKE_BINARY_DIR}/generated/last_git_version" CURRENT_GIT_VERSION) add_executable(${PROGRAM_PREFIX}gmunpack ${INCLUDE_FILES} tools/gmunpack.cpp "${CMAKE_BINARY_DIR}/generated/version.cpp") target_include_directories(${PROGRAM_PREFIX}gmunpack PRIVATE tools) target_compile_definitions(${PROGRAM_PREFIX}gmunpack PRIVATE GATEMATE_RPATH_DATADIR="${GATEMATE_RPATH_DATADIR}" GATEMATE_PREFIX="${CMAKE_INSTALL_PREFIX}" GATEMATE_PROGRAM_PREFIX="${PROGRAM_PREFIX}") target_link_libraries(${PROGRAM_PREFIX}gmunpack gatemate ${Boost_LIBRARIES} ${CMAKE_DL_LIBS} ${link_param}) setup_rpath(${PROGRAM_PREFIX}gmunpack) add_executable(${PROGRAM_PREFIX}gmpack ${INCLUDE_FILES} tools/gmpack.cpp "${CMAKE_BINARY_DIR}/generated/version.cpp") target_include_directories(${PROGRAM_PREFIX}gmpack PRIVATE tools) target_compile_definitions(${PROGRAM_PREFIX}gmpack PRIVATE GATEMATE_RPATH_DATADIR="${GATEMATE_RPATH_DATADIR}" GATEMATE_PREFIX="${CMAKE_INSTALL_PREFIX}" GATEMATE_PROGRAM_PREFIX="${PROGRAM_PREFIX}") target_link_libraries(${PROGRAM_PREFIX}gmpack gatemate ${Boost_LIBRARIES} ${CMAKE_DL_LIBS} ${link_param}) setup_rpath(${PROGRAM_PREFIX}gmpack) if (WASI) foreach (tool gmunpack gmpack) # set(CMAKE_EXECUTABLE_SUFFIX) breaks CMake tests for some reason set_property(TARGET ${PROGRAM_PREFIX}${tool} PROPERTY SUFFIX ".wasm") endforeach() endif() if (BUILD_SHARED) install(TARGETS gatemate ${PROGRAM_PREFIX}gmunpack ${PROGRAM_PREFIX}gmpack LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}/${PROGRAM_PREFIX}gatemate RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) else() install(TARGETS ${PROGRAM_PREFIX}gmunpack ${PROGRAM_PREFIX}gmpack RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}) endif() file(GLOB_RECURSE CLANGFORMAT_FILES *.cpp *.hpp) add_custom_target( clangformat COMMAND clang-format -style=file -i ${CLANGFORMAT_FILES} )prjpeppercorn-1.12/libgm/include/000077500000000000000000000000001514752025000170445ustar00rootroot00000000000000prjpeppercorn-1.12/libgm/include/Bitstream.hpp000066400000000000000000000036701514752025000215150ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #ifndef LIBGATEMATE_BITSTREAM_HPP #define LIBGATEMATE_BITSTREAM_HPP #include #include #include #include #include #include #include namespace GateMate { class Chip; class Bitstream { public: static Bitstream read(std::istream &in); // Serialise a Chip back to a bitstream static Bitstream serialise_chip(const Chip &chip, const std::map options); // Deserialise a bitstream to a Chip Chip deserialise_chip(); void write_bit(std::ostream &out); int determine_size(int *max_die_x, int *max_die_y); private: Bitstream(const std::vector &data); // Bitstream raw data std::vector data; }; class BitstreamParseError : std::runtime_error { public: explicit BitstreamParseError(const std::string &desc); BitstreamParseError(const std::string &desc, size_t offset); const char *what() const noexcept override; private: std::string desc; int offset; }; } // namespace GateMate #endif // LIBGATEMATE_BITSTREAM_HPP prjpeppercorn-1.12/libgm/include/Chip.hpp000066400000000000000000000025711514752025000204450ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #ifndef LIBGATEMATE_CHIP_HPP #define LIBGATEMATE_CHIP_HPP #include #include #include "Die.hpp" namespace GateMate { class Chip { public: explicit Chip(std::string name); explicit Chip(int num); int get_max_die() const; std::string get_name() const; const Die &get_die(int num) const { return dies.at(num); } Die &get_die(int num) { return dies.at(num); } private: int die_num; std::vector dies; }; } // namespace GateMate #endif // LIBGATEMATE_CHIP_HPP prjpeppercorn-1.12/libgm/include/ChipConfig.hpp000066400000000000000000000041431514752025000215700ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #ifndef LIBGATEMATE_CHIPCONFIG_HPP #define LIBGATEMATE_CHIPCONFIG_HPP #include #include #include #include #include "TileConfig.hpp" namespace GateMate { class Chip; struct CfgLoc { int die; int x; int y; inline bool operator==(const CfgLoc &other) const { return other.die == die && other.x == x && other.y == y; } inline bool operator!=(const CfgLoc &other) const { return other.die != die || x != other.x || y == other.y; } inline bool operator<(const CfgLoc &other) const { return die < other.die || ((die == other.die && y < other.y) || (die == other.die && y == other.y && x < other.x)); } }; class ChipConfig { public: std::string chip_name; std::string chip_package; std::map tiles; std::map brams; std::map serdes; std::map configs; // Block RAM initialisation std::map> bram_data; std::string to_string() const; static ChipConfig from_string(const std::string &config); Chip to_chip() const; static ChipConfig from_chip(const Chip &chip); }; } // namespace GateMate #endif // LIBGATEMATE_CHIPCONFIG_HPP prjpeppercorn-1.12/libgm/include/Die.hpp000066400000000000000000000103411514752025000202550ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #ifndef LIBGATEMATE_DIE_HPP #define LIBGATEMATE_DIE_HPP #include #include #include #include namespace GateMate { class Die { public: static constexpr int MAX_ROWS = 66; static constexpr int MAX_COLS = 82; static constexpr int MAX_RAM = 32; static constexpr int MAX_RAM_ROWS = 8; static constexpr int MAX_RAM_COLS = 4; static constexpr int LATCH_BLOCK_SIZE = 112 + 1; // Added one more byte for FF_INIT static constexpr int RAM_BLOCK_SIZE = 27; static constexpr int MEMORY_SIZE = 5120; static constexpr int MAX_PLL = 4; static constexpr int PLL_CFG_SIZE = 12; static constexpr int CLKIN_CFG_SIZE = 4; static constexpr int GLBOUT_CFG_SIZE = 8; static constexpr int STATUS_CFG_SIZE = 12; static constexpr int STATUS_CFG_START = PLL_CFG_SIZE * MAX_PLL * 2 + CLKIN_CFG_SIZE + GLBOUT_CFG_SIZE; static constexpr int DIE_CONFIG_SIZE = STATUS_CFG_START + STATUS_CFG_SIZE + 1; static constexpr int FF_INIT_RESET = 2; static constexpr int FF_INIT_SET = 3; static constexpr int SERDES_CFG_SIZE = 186; public: explicit Die(); // Get max row and column int get_max_row() const { return MAX_ROWS; } int get_max_col() const { return MAX_COLS; } int get_max_ram_row() const { return MAX_RAM_ROWS; } int get_max_ram_col() const { return MAX_RAM_COLS; } bool is_latch_empty(int x, int y) const; bool is_cpe_empty(int x, int y) const; bool is_ram_empty(int x, int y) const; bool is_ram_data_empty(int x, int y) const; bool is_pll_cfg_empty(int index) const; bool is_clkin_cfg_empty() const; bool is_glbout_cfg_empty() const; bool is_status_cfg_empty() const; bool is_using_cfg_gpios() const; bool is_serdes_cfg_empty() const; uint8_t get_d2d_config() const; void write_latch(int x, int y, const std::vector &data); void write_ram(int x, int y, const std::vector &data); void write_ram_data(int x, int y, const std::vector &data, uint16_t addr); void write_pll_select(uint8_t select, const std::vector &data); void write_d2d_config(uint8_t data); void write_die_cfg(const std::vector &data) { die_cfg = data; } void write_serdes_cfg(const std::vector &data) { serdes_cfg = data; } void write_ff_init(int x, int y, uint8_t data); void write_status(const std::vector &data); const std::vector get_latch_config(int x, int y) const { return latch.at(std::make_pair(x, y)); } const std::vector get_ram_config(int x, int y) const { return ram.at(std::make_pair(x, y)); } const std::vector get_ram_data(int x, int y) const { return ram_data.at(std::make_pair(x, y)); } const std::vector get_serdes_config() const { return serdes_cfg; } const std::vector get_die_config() const { return die_cfg; } private: std::map, std::vector> latch; // Config latches std::map, std::vector> ram; // Config RAM std::map, std::vector> ram_data; // RAM data content FRAM std::vector serdes_cfg; // Config for SERDES std::vector die_cfg; // Config for all PLLs, CLKIN and GLBOUT }; } // namespace GateMate #endif // LIBGATEMATE_DIE_HPP prjpeppercorn-1.12/libgm/include/TileBitDatabase.hpp000066400000000000000000000061411514752025000225400ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #ifndef LIBGATEMATE_TILEBITDATABASE_HPP #define LIBGATEMATE_TILEBITDATABASE_HPP #include #include #include #include #include "TileConfig.hpp" namespace GateMate { struct WordSettingBits { int start; int end; std::vector get_value(const std::vector &tile) const; void set_value(std::vector &tile, const std::vector &value) const; inline bool operator==(const WordSettingBits &other) const { return (start == other.start) && (end == other.end); } }; class BaseBitDatabase { public: BaseBitDatabase(int num_bits); virtual ~BaseBitDatabase(); TileConfig data_to_config(const std::vector &data); std::vector config_to_data(const TileConfig &cfg); protected: void add_word_settings(const std::string &name, int start, int len); void add_unknowns(); std::vector bits_to_bytes(std::vector &bits); int num_bits; std::map words; std::vector known_bits; }; class TileBitDatabase : public BaseBitDatabase { public: TileBitDatabase(const int x, const int y); private: void add_sb_big(int index, int start); void add_sb_sml(int index, int start); void add_sb_drive(int index, int start); void add_cpe(int index, int start); void add_ff_init(int index, int start); void add_inmux(int index, int plane, int start); void add_outmux(int index, int plane, int start); void add_gpio(int start); void add_edge_io(int index, int start); void add_right_edge(int index, int start); void add_left_edge(int index, int start); void add_top_edge(int index, int start); void add_bottom_edge(int index, int start); }; class RamBitDatabase : public BaseBitDatabase { public: RamBitDatabase(); }; class SerdesBitDatabase : public BaseBitDatabase { public: SerdesBitDatabase(); }; class ConfigBitDatabase : public BaseBitDatabase { public: ConfigBitDatabase(); private: void add_pll_cfg(int index, char cfg, int start); }; class DatabaseConflictError : public std::runtime_error { public: explicit DatabaseConflictError(const std::string &desc); }; } // namespace GateMate #endif // LIBGATEMATE_TILEBITDATABASE_HPP prjpeppercorn-1.12/libgm/include/TileConfig.hpp000066400000000000000000000035051514752025000216030ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #ifndef LIBGATEMATE_TILECONFIG_HPP #define LIBGATEMATE_TILECONFIG_HPP #include #include #include #include #include namespace GateMate { struct ConfigWord { std::string name; std::vector value; inline bool operator==(const ConfigWord &other) const { return other.name == name && other.value == value; } }; std::ostream &operator<<(std::ostream &out, const ConfigWord &cw); std::istream &operator>>(std::istream &in, ConfigWord &cw); struct TileConfig { std::vector cwords; int total_known_bits = 0; void add_word(const std::string &name, const std::vector &value); std::string to_string() const; static TileConfig from_string(const std::string &str); bool empty() const; }; std::ostream &operator<<(std::ostream &out, const TileConfig &tc); std::istream &operator>>(std::istream &in, TileConfig &ce); } // namespace GateMate #endif // LIBGATEMATE_TILECONFIG_HPP prjpeppercorn-1.12/libgm/include/Util.hpp000066400000000000000000000070711514752025000204770ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #ifndef LIBGATEMATE_UTIL_HPP #define LIBGATEMATE_UTIL_HPP #include #include #include #include #include #include #include namespace GateMate { enum class VerbosityLevel { ERROR, NOTE, DEBUG, }; extern VerbosityLevel verbosity; inline std::string uint32_to_hexstr(uint32_t val) { std::ostringstream os; os << "0x" << std::hex << std::setw(8) << std::setfill('0') << val; return os.str(); } // Hex is not allowed in JSON, to avoid an ugly decimal integer use a string // instead But we need to parse this back to a uint32_t inline uint32_t parse_uint32(std::string str) { return uint32_t(strtoul(str.c_str(), nullptr, 0)); } inline std::string to_string(const std::vector &bv) { std::ostringstream os; for (auto it = bv.rbegin(); it != bv.rend(); ++it) os << (*it ? '1' : '0'); return os.str(); } inline std::istream &operator>>(std::istream &in, std::vector &bv) { bv.clear(); std::string s; in >> s; for (auto it = s.rbegin(); it != s.rend(); ++it) { char c = *it; assert((c == '0') || (c == '1')); bv.push_back((c == '1')); } return in; } // Skip whitespace, optionally including newlines inline void skip_blank(std::istream &in, bool nl = false) { int c = in.peek(); while (in && (((c == ' ') || (c == '\t')) || (nl && ((c == '\n') || (c == '\r'))))) { in.get(); c = in.peek(); } } // Return true if end of line (or file) inline bool skip_check_eol(std::istream &in) { skip_blank(in, false); if (!in) return false; int c = in.peek(); // Comments count as end of line if (c == '#') { in.get(); c = in.peek(); while (in && c != EOF && c != '\n') { in.get(); c = in.peek(); } return true; } return (c == EOF || c == '\n'); } // Skip past blank lines and comments inline void skip(std::istream &in) { skip_blank(in, true); while (in && (in.peek() == '#')) { // Skip comment line skip_check_eol(in); skip_blank(in, true); } } // Return true if at the end of a record (or file) inline bool skip_check_eor(std::istream &in) { skip(in); int c = in.peek(); return (c == EOF || c == '.'); } // Return true if at the end of file inline bool skip_check_eof(std::istream &in) { skip(in); int c = in.peek(); return (c == EOF); } std::string stringf(const char *fmt, ...); std::string vstringf(const char *fmt, va_list ap); } // namespace GateMate #define fmt(x) (static_cast(std::ostringstream() << x).str()) #define UNUSED(x) (void)(x) #endif // LIBGATEMATE_UTIL_HPP prjpeppercorn-1.12/libgm/src/000077500000000000000000000000001514752025000162105ustar00rootroot00000000000000prjpeppercorn-1.12/libgm/src/Bitstream.cpp000066400000000000000000001176131514752025000206570ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include "Bitstream.hpp" #include #include #include #include "Chip.hpp" #include "Util.hpp" namespace GateMate { static constexpr const uint8_t CMD_PLL = 0xc1; static constexpr const uint8_t CMD_CFGMODE = 0xc2; static constexpr const uint8_t CMD_CFGRST = 0xc3; static constexpr const uint8_t CMD_FLASH = 0xc5; static constexpr const uint8_t CMD_DLXP = 0xc6; // static constexpr const uint8_t CMD_DLYP = 0xc7; // static constexpr const uint8_t CMD_LXLYS = 0xc8; static constexpr const uint8_t CMD_ACLCU = 0xc9; static constexpr const uint8_t CMD_DLCU = 0xca; static constexpr const uint8_t CMD_DRXP = 0xcc; // static constexpr const uint8_t CMD_RXRYS = 0xce; static constexpr const uint8_t CMD_FRAM = 0xd2; static constexpr const uint8_t CMD_SERDES = 0xd7; // static constexpr const uint8_t CMD_D2D = 0xd8; // static constexpr const uint8_t CMD_PATH = 0xd9; static constexpr const uint8_t CMD_JUMP = 0xda; static constexpr const uint8_t CMD_CHG_STATUS = 0xdb; static constexpr const uint8_t CMD_WAIT_PLL = 0xdc; // static constexpr const uint8_t CMD_SPLL = 0xdd; static constexpr const uint8_t CMD_SLAVE_MODE = 0xde; static constexpr const uint8_t CFG_NONE = 0x00; static constexpr const uint8_t CFG_DONE = 0x01; static constexpr const uint8_t CFG_STOP = 0x02; static constexpr const uint8_t CFG_RECONFIG = 0x04; static constexpr const uint8_t CFG_CPE_CFG = 0x08; static constexpr const uint8_t CFG_CPE_RESET = 0x10; static constexpr const uint8_t CFG_FILL_RAM = 0x20; static constexpr const uint8_t CFG_SERDES = 0x40; // PLL register A static constexpr const uint8_t CFG_PLL_RST_N = 0x01; static constexpr const uint8_t CFG_PLL_EN = 0x02; static constexpr const uint8_t CFG_PLL_AUTN = 0x04; // only available for PLL0 static constexpr const uint8_t CFG_SET_SEL = 0x08; static constexpr const uint8_t CFG_USR_SET = 0x10; static constexpr const uint8_t CFG_USR_CLK_REF = 0x20; static constexpr const uint8_t CFG_CLK_OUT_EN = 0x40; static constexpr const uint8_t CFG_LOCK_REQ = 0x80; // PLL register B static constexpr const uint8_t CFG_AUTN_CT_I = 0x01; // only available for PLL0 static constexpr const uint8_t CFG_CLK180_DOUB = 0x08; static constexpr const uint8_t CFG_CLK270_DOUB = 0x10; static constexpr const uint8_t CFG_USR_CLK_OUT = 0x80; static const std::vector> crc_modes = { {"check", 0x00}, // Check CRC {"ignore", 0x01}, // Ignore added CRC {"unused", 0x02} // CRC is unused }; static const std::vector>> spi_modes = { {"single", {}}, // Single SPI mode {"dual", {0x50, 0x21, 0x18, 0x3B}}, // Dual SPI mode {"quad", {0xF0, 0x23, 0x18, 0x6B}} // Quad SPI mode }; static const uint16_t crc_table_x25[256] = { 0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf, 0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7, 0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e, 0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876, 0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd, 0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5, 0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c, 0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974, 0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb, 0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3, 0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a, 0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72, 0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9, 0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1, 0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738, 0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70, 0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7, 0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff, 0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036, 0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e, 0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5, 0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd, 0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134, 0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c, 0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3, 0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb, 0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232, 0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a, 0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1, 0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9, 0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330, 0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78}; class Crc16 { public: uint16_t crc16 = 0xFFFF; void update_crc16(uint8_t val) { crc16 = (crc16 >> 8) ^ crc_table_x25[(crc16 & 0xFF) ^ val]; } uint16_t get_crc16() { return crc16 ^ 0xFFFF; } void reset_crc16() { crc16 = 0xFFFF; } }; // The BitstreamReadWriter class stores state (including CRC16) whilst reading // the bitstream class BitstreamReadWriter { public: BitstreamReadWriter() : data(), iter(data.begin()) {}; BitstreamReadWriter(const std::vector &data) : data(data), iter(this->data.begin()) {}; std::vector data; std::vector::iterator iter; bool crc_unused = false; Crc16 crc16; // Return a single byte and update CRC inline uint8_t get_byte() { assert(iter < data.end()); uint8_t val = *(iter++); crc16.update_crc16(val); return val; } // Read a little endian uint16 from the bitstream and update CRC uint16_t get_uint16() { uint8_t tmp[2]; get_bytes(tmp, 2); return (tmp[0] << 8UL) | (tmp[1]); } // Read a little endian uint32 from the bitstream and update CRC uint32_t get_uint32() { uint8_t tmp[4]; get_bytes(tmp, 4); return (tmp[0] << 24UL) | (tmp[1] << 16UL) | (tmp[2] << 8UL) | (tmp[3]); } // CRC is in big endian order uint16_t get_crc() { uint8_t tmp[2]; get_bytes(tmp, 2); return (tmp[1] << 8UL) | (tmp[0]); } // The command opcode is a byte so this works like get_byte inline uint8_t get_command_opcode() { assert(iter < data.end()); uint8_t val = *(iter++); crc16.update_crc16(val); return val; } // Write a single byte and update CRC inline void write_byte(uint8_t b) { data.push_back(b); crc16.update_crc16(b); } // Copy multiple bytes into an OutputIterator and update CRC template void get_bytes(T out, size_t count) { for (size_t i = 0; i < count; i++) { *out = get_byte(); ++out; } } void get_vector(std::vector &out, size_t count) { for (size_t i = 0; i < count; i++) { out.push_back(get_byte()); } } // Write multiple bytes from an InputIterator and update CRC template void write_bytes(T in, size_t count) { for (size_t i = 0; i < count; i++) write_byte(*(in++)); } void write_bytes(std::vector in) { for (auto val : in) write_byte(val); } // Skip over bytes while updating CRC void skip_bytes(size_t count) { for (size_t i = 0; i < count; i++) get_byte(); } // Write a little endian uint16_t into the bitstream void write_uint16(uint16_t val) { write_byte(uint8_t((val >> 8UL) & 0xFF)); write_byte(uint8_t(val & 0xFF)); } // Write a little endian uint32_t into the bitstream void write_uint32(uint32_t val) { write_byte(uint8_t((val >> 24UL) & 0xFF)); write_byte(uint8_t((val >> 16UL) & 0xFF)); write_byte(uint8_t((val >> 8UL) & 0xFF)); write_byte(uint8_t(val & 0xFF)); } // Get the offset into the bitstream size_t get_offset() { return size_t(distance(data.begin(), iter)); } void set_crc_unused(bool val) { crc_unused = val; } bool get_crc_unused() { return crc_unused; } // Insert the calculated CRC16 into the bitstream void insert_crc16() { if (crc_unused) return; uint16_t actual_crc = crc16.get_crc16(); write_byte(uint8_t((actual_crc) & 0xFF)); write_byte(uint8_t((actual_crc >> 8) & 0xFF)); } bool is_end() { return (iter >= data.end()); } const std::vector &get() { return data; }; void write_nops(size_t count) { for (size_t i = 0; i < count; i++) write_byte(0); } // Writing commands void write_header(uint8_t cmd, uint16_t len) { crc16.reset_crc16(); write_byte(cmd); if (cmd == CMD_FRAM) write_uint16(len); else write_byte(len & 0xff); insert_crc16(); } void write_cmd_path(uint8_t data) { write_header(CMD_PATH, 1); write_byte(data); insert_crc16(); write_nops(4); write_byte(0x33); write_nops(4); } void write_cmd_jump(uint32_t addr) { write_header(CMD_JUMP, 4); write_byte(uint8_t(addr & 0xFF)); write_byte(uint8_t((addr >> 8UL) & 0xFF)); write_byte(uint8_t((addr >> 16UL) & 0xFF)); write_byte(uint8_t((addr >> 24UL) & 0xFF)); insert_crc16(); write_nops(2); } void write_cmd_cfgmode(uint8_t crcmode, std::vector spimode) { write_header(CMD_CFGMODE, spimode.size() > 0 ? 6 : 2); write_byte(0xFF); // crc retries write_byte(crcmode); // crc error behaviour if (spimode.size() > 0) { write_byte(spimode[0]); // spi io width write_byte(spimode[1]); // spi dummy cycles write_byte(spimode[2]); // flash address field length write_byte(spimode[3]); // flash READ command } insert_crc16(); write_nops(4); if (crcmode == 0x02) { crc_unused = true; } } void write_cmd_spll(uint8_t data) { write_header(CMD_SPLL, 1); write_byte(data); insert_crc16(); } void write_cmd_wait_pll(uint8_t data) { write_header(CMD_WAIT_PLL, 1); write_byte(data); insert_crc16(); } void write_cmd_cfgrst(uint8_t data) { write_header(CMD_CFGRST, 1); write_byte(data); insert_crc16(); } void write_cmd_slave_mode(uint8_t data) { write_header(CMD_SLAVE_MODE, 1); write_byte(data); insert_crc16(); write_nops(3); } void write_cmd_d2d(uint8_t data) { write_header(CMD_D2D, 1); write_byte(data); insert_crc16(); } void write_cmd_rxrys(uint8_t x_ram_sel, uint8_t y_ram_sel) { write_header(CMD_RXRYS, 2); write_byte(x_ram_sel); write_byte(y_ram_sel); insert_crc16(); } void write_cmd_lxlys(uint8_t x_sel, uint8_t y_sel) { write_header(CMD_LXLYS, 2); write_byte(x_sel); write_byte(y_sel); insert_crc16(); } void write_cmd_aclcu(uint16_t data) { write_header(CMD_ACLCU, 2); write_uint16(data); insert_crc16(); } void write_cmd_pll(int index, std::vector data, int size) { write_header(CMD_PLL, size); for (int i = 0; i < Die::PLL_CFG_SIZE; i++) write_byte(data[i + index * Die::PLL_CFG_SIZE]); int pos = Die::PLL_CFG_SIZE * Die::MAX_PLL * 2; for (int i = pos; i < pos + size - Die::PLL_CFG_SIZE; i++) write_byte(data[i]); insert_crc16(); write_nops(6); } void write_cmd_chg_status(uint8_t data) { write_header(CMD_CHG_STATUS, 1); write_byte(data); insert_crc16(); write_nops(4); write_byte(0x33); write_nops(4); } void write_cmd_chg_status(uint8_t cfg, uint8_t next_mode, std::vector data) { write_header(CMD_CHG_STATUS, 12); write_byte(cfg); write_byte(next_mode); for (int i = 2; i < 12; i++) write_byte(data[Die::STATUS_CFG_START + i]); insert_crc16(); write_nops(4); write_byte(0x33); write_nops(4); } }; void check_crc(BitstreamReadWriter &rd) { if (rd.get_crc_unused()) return; uint16_t actual_crc = rd.crc16.get_crc16(); uint16_t exp_crc = rd.get_crc(); // crc if (actual_crc != exp_crc) { std::ostringstream err; err << "crc fail, calculated 0x" << std::hex << actual_crc << " but expecting 0x" << exp_crc; throw BitstreamParseError(err.str()); } } #define BITSTREAM_DEBUG(x) \ if (verbosity >= VerbosityLevel::DEBUG) \ std::cerr << "bitstream: " << x << std::endl #define BITSTREAM_NOTE(x) \ if (verbosity >= VerbosityLevel::NOTE) \ std::cerr << "bitstream: " << x << std::endl #define BITSTREAM_FATAL(x, pos) \ { \ std::ostringstream ss; \ ss << x; \ throw BitstreamParseError(ss.str(), pos); \ } Bitstream::Bitstream(const std::vector &data) : data(data) {} Bitstream Bitstream::read(std::istream &in) { std::vector bytes; in.seekg(0, in.end); size_t length = size_t(in.tellg()); in.seekg(0, in.beg); bytes.resize(length); in.read(reinterpret_cast(&(bytes[0])), length); return Bitstream(bytes); } int Bitstream::determine_size(int *max_die_x, int *max_die_y) { BitstreamReadWriter rd(data); int die_x = 0; int die_y = 0; while (!rd.is_end()) { rd.crc16.reset_crc16(); uint8_t cmd = rd.get_command_opcode(); uint16_t length = (cmd == CMD_FRAM) ? rd.get_uint16() : rd.get_byte(); std::vector block; switch (cmd) { case CMD_DLCU: case CMD_FRAM: case CMD_FLASH: case CMD_SERDES: case CMD_PLL: case CMD_CHG_STATUS: case CMD_SLAVE_MODE: case CMD_CFGMODE: case CMD_SPLL: case CMD_LXLYS: case CMD_ACLCU: case CMD_RXRYS: case CMD_D2D: case CMD_CFGRST: case CMD_JUMP: // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); // Check data CRC check_crc(rd); // Set CRC flag if (cmd == CMD_CFGMODE) rd.set_crc_unused(block[1] == 0x02); // Skip bytes if (cmd == CMD_SLAVE_MODE) rd.skip_bytes(3); if (cmd == CMD_CFGMODE) rd.skip_bytes(4); if (cmd == CMD_PLL) rd.skip_bytes(6); if (cmd == CMD_CHG_STATUS) rd.skip_bytes(9); if (cmd == CMD_JUMP) rd.skip_bytes(2); break; case CMD_PATH: // Check header CRC check_crc(rd); // Read data block switch (rd.get_byte()) { case 0x01: // reset die_x = 0; die_y = 0; break; case 0x02: // top die_y += 1; break; case 0x04: // right die_x += 1; break; case 0x08: // TODO : forward break; case 0x10: // prog *max_die_x = std::max(*max_die_x, die_x); *max_die_y = std::max(*max_die_y, die_y); break; default: break; } // Check data CRC check_crc(rd); // Skip bytes rd.skip_bytes(9); break; default: BITSTREAM_FATAL("Unhandled command 0x" << std::hex << std::setw(2) << std::setfill('0') << int(cmd), rd.get_offset()); break; } } return (*max_die_x + 1) * (*max_die_y + 1); } Chip Bitstream::deserialise_chip() { std::cerr << "bitstream size: " << data.size() * 8 << " bits" << std::endl; int max_die_x = 0; int max_die_y = 0; int max_dies = determine_size(&max_die_x, &max_die_y); Chip chip(max_dies); Die *die = &chip.get_die(0); BitstreamReadWriter rd(data); bool is_block_ram = false; uint8_t x_pos = 0, y_pos = 0; uint8_t pll_select = 0x0f; uint16_t aclcu = 0; int die_x = 0; int die_y = 0; std::map, int> tile_iteration; while (!rd.is_end()) { rd.crc16.reset_crc16(); uint8_t cmd = rd.get_command_opcode(); uint16_t length = (cmd == CMD_FRAM) ? rd.get_uint16() : rd.get_byte(); std::vector block; switch (cmd) { case CMD_DLCU: BITSTREAM_DEBUG("CMD_DLCU"); // if (length>112) // BITSTREAM_FATAL("DLCU data longer than expected", rd.get_offset()); if (is_block_ram) { if (length > 27) BITSTREAM_FATAL("RAM configuration must be up to 27 bytes", rd.get_offset()); } else { if (length > 112) BITSTREAM_FATAL("Tile configuration must be up to 112 bytes", rd.get_offset()); } // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); // Check data CRC check_crc(rd); if (is_block_ram) die->write_ram(x_pos, y_pos, block); else { int iteration = -1; if (tile_iteration.count(std::make_pair(x_pos, y_pos))) iteration = tile_iteration[std::make_pair(x_pos, y_pos)]; tile_iteration[std::make_pair(x_pos, y_pos)] = ++iteration; if (iteration != 0) BITSTREAM_DEBUG("iteration " << (iteration + 1)); // Detection of FF initialization is possible on // last iteration if (iteration == 2) { std::vector data = die->get_latch_config(x_pos, y_pos); // Make sure we have CPE data // even if uninitialized block.resize(40, 0x00); uint8_t val = 0x00; for (int i = 0; i < 4; i++) { uint8_t v = block[i * 10 + 8] ^ data[i * 10 + 8]; if (v & 0x30) val |= Die::FF_INIT_RESET << (i * 2); else if (v & 0xc0) val |= Die::FF_INIT_SET << (i * 2); else if (v != 0x00) BITSTREAM_FATAL(stringf("Unknown CPE state %d on pos 0x%02x,0x%02x\n", v, x_pos, y_pos), rd.get_offset()); } die->write_ff_init(x_pos, y_pos, val); } die->write_latch(x_pos, y_pos, block); } break; case CMD_PATH: BITSTREAM_DEBUG("CMD_PATH"); tile_iteration.clear(); if (length != 1) BITSTREAM_FATAL("PATH data must be one byte long", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block switch (rd.get_byte()) { case 0x01: // reset die_x = 0; die_y = 0; break; case 0x02: // top die_y += 1; break; case 0x04: // right die_x += 1; break; case 0x08: // TODO : forward break; case 0x10: // prog die = &chip.get_die(die_x * (max_die_y + 1) + die_y); break; default: break; } // Check data CRC check_crc(rd); // Skip bytes rd.skip_bytes(9); break; case CMD_D2D: BITSTREAM_DEBUG("CMD_D2D"); if (length != 1) BITSTREAM_FATAL("CMD_D2D data must be one byte long", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block die->write_d2d_config(rd.get_byte()); // Check data CRC check_crc(rd); break; case CMD_SPLL: BITSTREAM_DEBUG("CMD_SPLL"); if (length != 1) BITSTREAM_FATAL("SPLL data must be one byte long", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block pll_select = rd.get_byte(); // Check data CRC check_crc(rd); break; case CMD_PLL: BITSTREAM_DEBUG("CMD_PLL"); if (length < 12) BITSTREAM_FATAL("PLL data smaller than expected", rd.get_offset()); if (length > 24) BITSTREAM_FATAL("PLL data longer than expected", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); die->write_pll_select(pll_select, block); // Check data CRC check_crc(rd); // Skip bytes rd.skip_bytes(6); break; case CMD_LXLYS: if (length != 2) BITSTREAM_FATAL("LXLYS data must be two bytes long", rd.get_offset()); // Check header CRC check_crc(rd); BITSTREAM_DEBUG("CMD_LXLYS"); is_block_ram = false; x_pos = rd.get_byte(); if (x_pos > 81) BITSTREAM_FATAL("Tile column (X) must be in range 0-81, current value " << x_pos, rd.get_offset()); y_pos = rd.get_byte(); if (y_pos > 65) BITSTREAM_FATAL("Tile row (Y) must be in range 0-65, current value " << y_pos, rd.get_offset()); // Check data CRC check_crc(rd); break; case CMD_ACLCU: BITSTREAM_DEBUG("CMD_ACLCU"); if (length != 2) BITSTREAM_FATAL("ACLCU data must be two bytes long", rd.get_offset()); // Check header CRC check_crc(rd); aclcu = rd.get_uint16(); // Check data CRC check_crc(rd); break; case CMD_RXRYS: BITSTREAM_DEBUG("CMD_RXRYS"); if (length != 2) BITSTREAM_FATAL("RXRYS data must be two bytes long", rd.get_offset()); // Check header CRC check_crc(rd); is_block_ram = true; x_pos = rd.get_byte(); if (x_pos > 3) BITSTREAM_FATAL("RAM column (X) must be in range 0-3, current value " << x_pos, rd.get_offset()); y_pos = rd.get_byte(); if (y_pos > 7) BITSTREAM_FATAL("RAM row (Y) must be in range 0-7, current value " << y_pos, rd.get_offset()); // Check data CRC check_crc(rd); break; case CMD_FRAM: BITSTREAM_DEBUG("CMD_FRAM"); if (length > 5120) BITSTREAM_FATAL("FRAM data longer than expected", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); // Check data CRC check_crc(rd); die->write_ram_data(x_pos, y_pos, block, aclcu); break; case CMD_CHG_STATUS: BITSTREAM_DEBUG("CMD_CHG_STATUS"); if (length > 12) BITSTREAM_FATAL("CHG_STATUS data longer than expected", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); die->write_status(block); // Check data CRC check_crc(rd); // Skip bytes rd.skip_bytes(9); break; case CMD_SLAVE_MODE: BITSTREAM_DEBUG("CMD_SLAVE_MODE"); if (length > 1) BITSTREAM_FATAL("SLAVE_MODE must be one byte long", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_byte(); // Check data CRC check_crc(rd); // Skip bytes rd.skip_bytes(3); break; case CMD_FLASH: BITSTREAM_DEBUG("CMD_FLASH"); if (length > 11) BITSTREAM_FATAL("FLASH data longer than expected", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); // Check data CRC check_crc(rd); break; case CMD_CFGMODE: BITSTREAM_DEBUG("CMD_CFGMODE"); if (length > 20) BITSTREAM_FATAL("CFGMODE data longer than expected", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); // Check data CRC check_crc(rd); rd.set_crc_unused(block[1] == 0x02); // Skip bytes rd.skip_bytes(4); break; case CMD_SERDES: BITSTREAM_DEBUG("CMD_SERDES"); if (length != 186) BITSTREAM_FATAL("SERDES data does not match size", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); die->write_serdes_cfg(block); // Check data CRC check_crc(rd); break; case CMD_CFGRST: BITSTREAM_DEBUG("CMD_CFGRST"); if (length > 1) BITSTREAM_FATAL("CFGRST data longer than expected", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); // Check data CRC check_crc(rd); break; case CMD_JUMP: BITSTREAM_DEBUG("CMD_JUMP"); if (length > 4) BITSTREAM_FATAL("JUMP addr longer than expected", rd.get_offset()); // Check header CRC check_crc(rd); // Read data block rd.get_vector(block, length); // Check data CRC check_crc(rd); // Skip bytes rd.skip_bytes(2); break; default: BITSTREAM_FATAL("Unhandled command 0x" << std::hex << std::setw(2) << std::setfill('0') << int(cmd), rd.get_offset()); break; } } return chip; } bool is_edge_location(int x, int y) { return ((x == 0) || (x == Die::MAX_COLS - 1) || (y == 0) || (y == Die::MAX_ROWS - 1)); } Bitstream Bitstream::serialise_chip(const Chip &chip, const std::map options) { BitstreamReadWriter wr; for (int d = chip.get_max_die() - 1; d >= 0; d--) { auto &die = chip.get_die(d); if (chip.get_max_die() != 1) { wr.write_cmd_path(0x01); // Need to reset PATH switch (chip.get_max_die()) { case 2: // CCGM1A2 switch (d) { case 0: // 1A break; case 1: // 1B wr.write_cmd_path(0x02); // top break; } break; case 4: // CCGM1A4 switch (d) { case 0: // 1A break; case 1: // 1B wr.write_cmd_path(0x02); // top break; case 2: // 2A wr.write_cmd_path(0x04); // _right break; case 3: // 2B wr.write_cmd_path(0x02); // top wr.write_cmd_path(0x04); // _right break; } break; default: throw BitstreamParseError("Unsupported number of dies.\n"); } } wr.write_cmd_path(0x10); if (options.count("reset") && !options.count("background")) { wr.write_cmd_cfgrst(0x00); } bool change_crc = false; auto crcmode = crc_modes.begin(); if (options.count("crcmode")) { change_crc = true; crcmode = find_if(crc_modes.begin(), crc_modes.end(), [&](const std::pair &fp) { return fp.first == options.at("crcmode"); }); if (crcmode == crc_modes.end()) { throw std::runtime_error("bad crcmode option " + options.at("crcmode")); } } bool change_spi = false; auto spimode = spi_modes.begin(); if (options.count("spimode")) { change_spi = true; spimode = find_if(spi_modes.begin(), spi_modes.end(), [&](const std::pair> &fp) { return fp.first == options.at("spimode"); }); if (spimode == spi_modes.end()) { throw std::runtime_error("bad spimode option " + options.at("spimode")); } } if (change_crc || change_spi) { wr.write_cmd_cfgmode(uint8_t(crcmode->second), std::vector(spimode->second)); } uint8_t d2d = die.get_d2d_config(); if (d2d) wr.write_cmd_d2d(d2d); // PLL setup std::vector die_config = die.get_die_config(); bool pll_written = false; for (int i = 0; i < Die::MAX_PLL; i++) { bool cfg_a = !die.is_pll_cfg_empty(i * 2 + 0); bool cfg_b = !die.is_pll_cfg_empty(i * 2 + 1); int size = Die::PLL_CFG_SIZE; if (!die.is_clkin_cfg_empty()) size = Die::PLL_CFG_SIZE + Die::CLKIN_CFG_SIZE; if (!die.is_glbout_cfg_empty()) size = Die::PLL_CFG_SIZE + Die::CLKIN_CFG_SIZE + Die::GLBOUT_CFG_SIZE; if (cfg_a || cfg_b) { wr.write_cmd_spll(1 << i); wr.write_cmd_pll(i * 2, die_config, size); if (cfg_b) { wr.write_cmd_spll(1 << i | 1 << (i + 4)); wr.write_cmd_pll(i * 2 + 1, die_config, size); } pll_written = true; } } if (!pll_written) { int size = Die::PLL_CFG_SIZE; if (!die.is_clkin_cfg_empty()) size = Die::PLL_CFG_SIZE + Die::CLKIN_CFG_SIZE; if (!die.is_glbout_cfg_empty()) size = Die::PLL_CFG_SIZE + Die::CLKIN_CFG_SIZE + Die::GLBOUT_CFG_SIZE; // Since it is not possible to skip writing to PLL configuration // we overwrite B configuration of last PLL with all zeros in this case. // This is needed for reconfigurable bitstreams not to affect PLL of bootloader. wr.write_cmd_spll(0x80); wr.write_cmd_pll(0, die_config, size); } // Write RAM configuration bool ram_used = false; for (int y = Die::MAX_RAM_ROWS - 1; y >= 0; y--) { for (int x = Die::MAX_RAM_COLS - 1; x >= 0; x--) { // Empty configuration is skipped if (die.is_ram_empty(x, y)) continue; std::vector data = std::vector(die.get_ram_config(x, y)); wr.write_cmd_rxrys(x, y); wr.write_header(CMD_DLCU, data.size()); wr.write_bytes(data); wr.insert_crc16(); ram_used = true; } } // Write RAM contents if (ram_used) { wr.write_cmd_chg_status(CFG_FILL_RAM); for (int y = Die::MAX_RAM_ROWS - 1; y >= 0; y--) { for (int x = Die::MAX_RAM_COLS - 1; x >= 0; x--) { // Empty configuration is skipped if (die.is_ram_data_empty(x, y)) continue; std::vector data = std::vector(die.get_ram_data(x, y)); wr.write_cmd_rxrys(x, y); wr.write_cmd_aclcu(0); wr.write_header(CMD_FRAM, data.size()); wr.write_bytes(data); wr.insert_crc16(); ram_used = true; } } wr.write_cmd_chg_status(CFG_NONE); } // Write latch configuration int scrubaddr = 0; for (int iteration = 0; iteration < 3; iteration++) { for (int y = 0; y < Die::MAX_ROWS; y++) { for (int x = 0; x < Die::MAX_COLS; x++) { // Empty configuration is skipped if (die.is_latch_empty(x, y)) continue; // Only tiles with CPE can have multiple iterations if (iteration != 0 && is_edge_location(x, y)) continue; // If CPE empty skip other iterations if (iteration != 0 && die.is_cpe_empty(x, y)) continue; if (iteration == 1 && scrubaddr == 0) scrubaddr = wr.data.size(); std::vector data = std::vector(die.get_latch_config(x, y)); uint8_t ff_init = data.back(); data.pop_back(); if (!is_edge_location(x, y)) { if (iteration == 0) { // First iteration does not setup CPE at all std::fill(data.begin(), data.begin() + 40, 0); // Empty configuration is skipped if (std::all_of(data.begin(), data.end(), [](uint8_t i) { return i == 0; })) continue; } // 2nd iteration with no changes if no FF initialization if (iteration == 1 && ff_init) { // Only CPE data is exported data.resize(40); // Set initial FFs states for (int i = 0; i < 4; i++) { uint8_t ff = (ff_init >> (i * 2)) & 0x03; if (ff == Die::FF_INIT_RESET) data[i * 10 + 8] &= 0x30 ^ 0xff; else if (ff == Die::FF_INIT_SET) data[i * 10 + 8] &= 0xc0 ^ 0xff; } } // 3rd iteration only if there was FF initialization if (iteration == 2) { if (!ff_init) continue; // Only CPE data is exported data.resize(40); } } // minimize output auto rit = std::find_if(data.rbegin(), data.rend(), [](uint8_t val) { return val != 0; }); data.erase(rit.base(), end(data)); wr.write_cmd_lxlys(x, y); wr.write_header(CMD_DLCU, data.size()); wr.write_bytes(data); wr.insert_crc16(); } } } uint8_t cfg_stat = CFG_CPE_RESET; uint8_t cfg_mode = 0x1F; // unused mode enforces controller to stop // Only for die 0 if (d == 0) { // Write change status if (die.is_using_cfg_gpios()) wr.write_cmd_chg_status(CFG_DONE); cfg_stat |= CFG_DONE; if (!options.count("background")) { cfg_stat |= CFG_STOP; } if (options.count("bootaddr")) { cfg_stat |= CFG_RECONFIG; } if (options.count("reconfig")) { cfg_stat |= CFG_CPE_CFG; } if (options.count("bootaddr") || options.count("background")) { cfg_mode = 0x10; // active spi // Enable autonomous clock if PLL not enabled if (die.is_pll_cfg_empty(0)) { die_config[Die::STATUS_CFG_START + 2 + 2] |= CFG_PLL_AUTN; die_config[Die::STATUS_CFG_START + 2 + 3] |= CFG_AUTN_CT_I; } } } if (!die.is_serdes_cfg_empty()) { cfg_stat |= CFG_SERDES; wr.write_header(CMD_SERDES, die.get_serdes_config().size()); wr.write_bytes(die.get_serdes_config()); wr.insert_crc16(); } wr.write_cmd_chg_status(cfg_stat, cfg_mode, die_config); if (d == 0) { if (options.count("bootaddr") && !options.count("background")) { uint32_t bootaddr = std::strtoul(options.at("bootaddr").c_str(), nullptr, 0); wr.write_cmd_cfgrst(0x00); wr.write_cmd_jump(bootaddr); } if (options.count("background") && !options.count("bootaddr")) { wr.write_cmd_jump(scrubaddr); } } } return Bitstream(wr.get()); } void Bitstream::write_bit(std::ostream &out) { // Dump raw bitstream out.write(reinterpret_cast(&(data[0])), data.size()); } BitstreamParseError::BitstreamParseError(const std::string &desc) : runtime_error(desc.c_str()), desc(desc), offset(-1) { } BitstreamParseError::BitstreamParseError(const std::string &desc, size_t offset) : runtime_error(desc.c_str()), desc(desc), offset(int(offset)) { } const char *BitstreamParseError::what() const noexcept { std::ostringstream ss; ss << "Bitstream Parse Error: "; ss << desc; if (offset != -1) ss << " [at 0x" << std::hex << std::setw(8) << std::setfill('0') << offset << "]"; return strdup(ss.str().c_str()); } } // namespace GateMate prjpeppercorn-1.12/libgm/src/Chip.cpp000066400000000000000000000032521514752025000176010ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include "Chip.hpp" #include "Util.hpp" namespace GateMate { Chip::Chip(std::string name) { const std::string prefix = "CCGM1A"; if (name.rfind(prefix, 0) == 0) { std::string numberPart = name.substr(prefix.size()); if (!numberPart.empty() && std::all_of(numberPart.begin(), numberPart.end(), ::isdigit)) { int num = std::stoi(numberPart); *this = Chip(num); return; } else { throw std::invalid_argument("Invalid format after CCGM1A"); } } die_num = -1; } Chip::Chip(int num) : die_num(num) { Die die; for (int i = 0; i < num; i++) dies.push_back(die); } int Chip::get_max_die() const { return die_num; } std::string Chip::get_name() const { return stringf("CCGM1A%d", die_num); } } // namespace GateMate prjpeppercorn-1.12/libgm/src/ChipConfig.cpp000066400000000000000000000161621514752025000207330ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include "ChipConfig.hpp" #include #include #include #include "Chip.hpp" #include "TileBitDatabase.hpp" #include "Util.hpp" namespace GateMate { std::string ChipConfig::to_string() const { std::stringstream ss; ss << ".device " << chip_name << std::endl << std::endl; for (const auto &config : configs) { if (!config.second.empty()) { ss << ".config " << config.first << " " << std::endl; ss << config.second; ss << std::endl; } } for (const auto &ser : serdes) { if (!ser.second.empty()) { ss << ".serdes " << ser.first << " " << std::endl; ss << ser.second; ss << std::endl; } } for (const auto &tile : tiles) { if (!tile.second.empty()) { ss << ".tile " << tile.first.die << " " << tile.first.x << " " << tile.first.y << std::endl; ss << tile.second; ss << std::endl; } } for (const auto &bram : brams) { if (!bram.second.empty()) { ss << ".bram " << bram.first.die << " " << bram.first.x << " " << bram.first.y << std::endl; ss << bram.second; ss << std::endl; } } for (const auto &bram : bram_data) { if (!bram.second.empty()) { ss << ".bram_init " << bram.first.die << " " << bram.first.x << " " << bram.first.y << std::endl; std::ios_base::fmtflags f(ss.flags()); for (size_t i = 0; i < bram.second.size(); i++) { ss << std::setw(2) << std::setfill('0') << std::hex << (int)bram.second.at(i); if (i % 40 == 39) ss << std::endl; else ss << " "; } ss.flags(f); ss << std::endl; } } return ss.str(); } ChipConfig ChipConfig::from_string(const std::string &config) { std::stringstream ss(config); ChipConfig cc; while (!skip_check_eof(ss)) { std::string verb; ss >> verb; if (verb == ".device") { ss >> cc.chip_name; } else if (verb == ".config") { int die; ss >> die; TileConfig tc; ss >> tc; cc.configs.emplace(die, tc); } else if (verb == ".serdes") { int die; ss >> die; TileConfig tc; ss >> tc; cc.serdes.emplace(die, tc); } else if (verb == ".tile") { CfgLoc loc; ss >> loc.die; ss >> loc.x; ss >> loc.y; TileConfig tc; ss >> tc; cc.tiles.emplace(loc, tc); } else if (verb == ".bram") { CfgLoc loc; ss >> loc.die; ss >> loc.x; ss >> loc.y; TileConfig tc; ss >> tc; cc.brams.emplace(loc, tc); } else if (verb == ".bram_init") { CfgLoc loc; ss >> loc.die; ss >> loc.x; ss >> loc.y; std::ios_base::fmtflags f(ss.flags()); while (!skip_check_eor(ss)) { uint16_t value; ss >> std::hex >> value; cc.bram_data[loc].push_back(value); } ss.flags(f); } else { throw std::runtime_error("unrecognised config entry " + verb); } } return cc; } Chip ChipConfig::to_chip() const { Chip chip(chip_name); for (int d = 0; d < chip.get_max_die(); d++) { auto &die = chip.get_die(d); CfgLoc loc; loc.die = d; for (int y = 0; y < die.get_max_row(); y++) { loc.y = y; for (int x = 0; x < die.get_max_col(); x++) { loc.x = x; if (tiles.count(loc)) { TileBitDatabase db(x, y); const TileConfig &cfg = tiles.at(loc); die.write_latch(x, y, db.config_to_data(cfg)); } } } RamBitDatabase ram_db; for (int y = 0; y < die.get_max_ram_row(); y++) { loc.y = y; for (int x = 0; x < die.get_max_ram_col(); x++) { loc.x = x; if (brams.count(loc)) { const TileConfig &cfg = brams.at(loc); die.write_ram(x, y, ram_db.config_to_data(cfg)); } if (bram_data.count(loc)) die.write_ram_data(x, y, bram_data.at(loc), 0); } } ConfigBitDatabase cfg_db; if (configs.count(d)) { const TileConfig &cfg = configs.at(d); die.write_die_cfg(cfg_db.config_to_data(cfg)); } SerdesBitDatabase ser_db; if (serdes.count(d)) { const TileConfig &cfg = serdes.at(d); die.write_serdes_cfg(ser_db.config_to_data(cfg)); } } return chip; } ChipConfig ChipConfig::from_chip(const Chip &chip) { ChipConfig cc; cc.chip_name = chip.get_name(); for (int d = 0; d < chip.get_max_die(); d++) { auto &die = chip.get_die(d); CfgLoc loc; loc.die = d; for (int y = 0; y < die.get_max_row(); y++) { loc.y = y; for (int x = 0; x < die.get_max_col(); x++) { loc.x = x; TileBitDatabase db(x, y); if (!die.is_latch_empty(x, y)) cc.tiles.emplace(loc, db.data_to_config(die.get_latch_config(x, y))); } } RamBitDatabase ram_db; for (int y = 0; y < die.get_max_ram_row(); y++) { loc.y = y; for (int x = 0; x < die.get_max_ram_col(); x++) { loc.x = x; if (!die.is_ram_empty(x, y)) { cc.brams.emplace(loc, ram_db.data_to_config(die.get_ram_config(x, y))); if (!die.is_ram_data_empty(x, y)) { cc.bram_data.emplace(loc, die.get_ram_data(x, y)); } } } } ConfigBitDatabase cfg_db; cc.configs.emplace(d, cfg_db.data_to_config(die.get_die_config())); SerdesBitDatabase ser_db; cc.serdes.emplace(d, ser_db.data_to_config(die.get_serdes_config())); } return cc; } } // namespace GateMate prjpeppercorn-1.12/libgm/src/Die.cpp000066400000000000000000000121341514752025000174160ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include "Die.hpp" #include "Util.hpp" namespace GateMate { Die::Die() { for (int y = 0; y < MAX_ROWS; y++) { for (int x = 0; x < MAX_COLS; x++) { latch[std::make_pair(x, y)] = std::vector(); latch[std::make_pair(x, y)].reserve(LATCH_BLOCK_SIZE); } } for (int y = 0; y < MAX_RAM_ROWS; y++) { for (int x = 0; x < MAX_RAM_COLS; x++) { ram[std::make_pair(x, y)] = std::vector(); ram[std::make_pair(x, y)].reserve(RAM_BLOCK_SIZE); ram_data[std::make_pair(x, y)] = std::vector(); } } serdes_cfg = std::vector(SERDES_CFG_SIZE, 0x00); die_cfg = std::vector(DIE_CONFIG_SIZE, 0x00); } bool Die::is_latch_empty(int x, int y) const { return latch.at(std::make_pair(x, y)).empty(); } bool Die::is_cpe_empty(int x, int y) const { auto &block = latch.at(std::make_pair(x, y)); for (int i = 0; i < 40; i++) if (block[i] != 0x00) return false; return true; } bool Die::is_ram_empty(int x, int y) const { return ram.at(std::make_pair(x, y)).empty(); } bool Die::is_ram_data_empty(int x, int y) const { return ram_data.at(std::make_pair(x, y)).empty(); } bool Die::is_pll_cfg_empty(int index) const { int pos = index * PLL_CFG_SIZE; for (int i = 0; i < PLL_CFG_SIZE; i++) if (die_cfg[i + pos] != 0x00) return false; return true; } bool Die::is_clkin_cfg_empty() const { int pos = PLL_CFG_SIZE * MAX_PLL * 2; for (int i = 0; i < CLKIN_CFG_SIZE; i++) if (die_cfg[i + pos] != 0x00) return false; return true; } bool Die::is_glbout_cfg_empty() const { int pos = PLL_CFG_SIZE * MAX_PLL * 2 + CLKIN_CFG_SIZE; for (int i = 0; i < GLBOUT_CFG_SIZE; i++) if (die_cfg[i + pos] != 0x00) return false; return true; } bool Die::is_status_cfg_empty() const { int pos = STATUS_CFG_START; // First two bytes contain status change commands for (int i = 2; i < STATUS_CFG_SIZE; i++) if (die_cfg[i + pos] != 0x00) return false; return true; } bool Die::is_serdes_cfg_empty() const { for (int i = 0; i < SERDES_CFG_SIZE; i++) if (serdes_cfg[i] != 0x00) return false; return true; } bool Die::is_using_cfg_gpios() const { return die_cfg[STATUS_CFG_START + 2] & 0x08; } uint8_t Die::get_d2d_config() const { return die_cfg[DIE_CONFIG_SIZE - 1]; } void Die::write_latch(int x, int y, const std::vector &data) { int pos = 0; auto &block = latch.at(std::make_pair(x, y)); block.resize(LATCH_BLOCK_SIZE, 0x00); for (auto d : data) block[pos++] = d; } void Die::write_ff_init(int x, int y, uint8_t data) { auto &block = latch.at(std::make_pair(x, y)); block.resize(LATCH_BLOCK_SIZE, 0x00); block[LATCH_BLOCK_SIZE - 1] = data; } void Die::write_ram(int x, int y, const std::vector &data) { int pos = 0; auto &block = ram.at(std::make_pair(x, y)); block.resize(RAM_BLOCK_SIZE, 0x00); for (auto d : data) block[pos++] = d; } void Die::write_ram_data(int x, int y, const std::vector &data, uint16_t addr) { int pos = addr; auto &block = ram_data.at(std::make_pair(x, y)); block.resize(MEMORY_SIZE, 0x00); for (auto d : data) block[pos++] = d; } void Die::write_status(const std::vector &data) { int pos = STATUS_CFG_START; for (auto d : data) die_cfg[pos++] = d; // Clean command bits, we do not wish this exported pos = STATUS_CFG_START; die_cfg[pos++] = 0x00; die_cfg[pos++] = 0x00; } void Die::write_pll_select(uint8_t select, const std::vector &data) { for (int i = 0; i < MAX_PLL; i++) { if (select & (1 << i)) { int pos = i * 2 * PLL_CFG_SIZE; if (select & (1 << (i + 4))) { pos += PLL_CFG_SIZE; } for (size_t j = 0; j < PLL_CFG_SIZE; j++) die_cfg[pos++] = data[j]; } } int pos = PLL_CFG_SIZE * MAX_PLL * 2; // start after PLL data; for (size_t j = PLL_CFG_SIZE; j < data.size(); j++) die_cfg[pos++] = data[j]; } void Die::write_d2d_config(uint8_t data) { die_cfg[DIE_CONFIG_SIZE - 1] = data; } } // namespace GateMate prjpeppercorn-1.12/libgm/src/TileBitDatabase.cpp000066400000000000000000001222421514752025000217000ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include "TileBitDatabase.hpp" #include #include #include #include "Chip.hpp" #include "ChipConfig.hpp" #include "Util.hpp" namespace GateMate { std::vector data_bytes_to_array(const std::vector &data, size_t count) { std::vector result(count * 8); for (size_t j = 0; j < count; j++) { uint8_t val = data[j]; for (size_t i = 0; i < 8; i++) { uint8_t temp = 1 << i; if (val & temp) result[j * 8 + i] = true; else result[j * 8 + i] = false; } } return result; } bool is_array_empty(std::vector &array) { for (bool val : array) if (val) return false; return true; } BaseBitDatabase::BaseBitDatabase(int num_bits) : num_bits(num_bits), known_bits(num_bits, false) {} BaseBitDatabase::~BaseBitDatabase() {} void BaseBitDatabase::add_word_settings(const std::string &name, int start, int len) { if (words.find(name) != words.end()) throw DatabaseConflictError(fmt("word " << name << " already exists in DB")); for (int i = start; i < start + len; i++) { if (known_bits[i]) throw DatabaseConflictError(fmt("bit " << i << " for word " << name << " already mapped")); known_bits[i] = true; } words[name] = {start, start + len}; } void BaseBitDatabase::add_unknowns() { for (int i = 0; i < num_bits; i++) { if (!known_bits[i]) words[stringf("UNKNOWN_%03d", i)] = {i, i + 1}; } } std::vector BaseBitDatabase::bits_to_bytes(std::vector &bits) { std::vector val; size_t pos = 0; for (size_t j = 0; j < bits.size() / 8; j++) { uint8_t data = 0; for (int i = 0; i < 8; i++) { data >>= 1; data |= bits[pos] ? 0x80 : 0x00; pos++; } val.push_back(data); } return val; } std::vector BaseBitDatabase::config_to_data(const TileConfig &cfg) { std::vector tile(num_bits, false); for (auto &w : cfg.cwords) { if (words.count(w.name)) { words[w.name].set_value(tile, w.value); } else { throw std::runtime_error(fmt("unknown word " << w.name << " found while converting data")); } } return bits_to_bytes(tile); } TileConfig BaseBitDatabase::data_to_config(const std::vector &data) { TileConfig cfg; std::vector d = data_bytes_to_array(data, num_bits * 8); for (auto &w : words) { auto val = w.second.get_value(d); if (is_array_empty(val)) continue; cfg.add_word(w.first, val); } return cfg; } void TileBitDatabase::add_sb_big(int index, int start) { add_word_settings(stringf("SB_BIG.P%02d.YDIAG", index), start + 0, 3); add_word_settings(stringf("SB_BIG.P%02d.Y1", index), start + 3, 3); add_word_settings(stringf("SB_BIG.P%02d.Y2", index), start + 6, 3); add_word_settings(stringf("SB_BIG.P%02d.Y3", index), start + 9, 3); add_word_settings(stringf("SB_BIG.P%02d.Y4", index), start + 12, 3); } void TileBitDatabase::add_sb_sml(int index, int start) { add_word_settings(stringf("SB_SML.P%02d.YDIAG", index), start + 0, 3); add_word_settings(stringf("SB_SML.P%02d.Y1", index), start + 3, 2); add_word_settings(stringf("SB_SML.P%02d.Y2", index), start + 5, 2); add_word_settings(stringf("SB_SML.P%02d.Y3", index), start + 7, 2); add_word_settings(stringf("SB_SML.P%02d.Y4", index), start + 9, 2); } void TileBitDatabase::add_sb_drive(int index, int start) { for (int i = 0; i < 4; i++) add_word_settings(stringf("SB_DRIVE.P%02d.D%d", index, i + 1), start + i, 1); } void TileBitDatabase::add_cpe(int index, int start) { add_word_settings(stringf("CPE%d.INIT_L00", index), start + 0, 4); add_word_settings(stringf("CPE%d.INIT_L01", index), start + 4, 4); add_word_settings(stringf("CPE%d.INIT_L02", index), start + 8, 4); add_word_settings(stringf("CPE%d.INIT_L03", index), start + 12, 4); add_word_settings(stringf("CPE%d.INIT_L10", index), start + 16, 4); add_word_settings(stringf("CPE%d.INIT_L11", index), start + 20, 4); add_word_settings(stringf("CPE%d.INIT_L20", index), start + 24, 4); add_word_settings(stringf("CPE%d.INIT_L30", index), start + 28, 4); add_word_settings(stringf("CPE%d.C_I1", index), start + 32, 1); add_word_settings(stringf("CPE%d.C_I2", index), start + 33, 1); add_word_settings(stringf("CPE%d.C_I3", index), start + 34, 1); add_word_settings(stringf("CPE%d.C_I4", index), start + 35, 1); add_word_settings(stringf("CPE%d.C_FUNCTION", index), start + 36, 3); add_word_settings(stringf("CPE%d.C_COMP", index), start + 39, 1); add_word_settings(stringf("CPE%d.C_COMP_I", index), start + 40, 1); add_word_settings(stringf("CPE%d.C_HORIZ", index), start + 41, 1); add_word_settings(stringf("CPE%d.C_SELX", index), start + 42, 1); add_word_settings(stringf("CPE%d.C_SELY1", index), start + 43, 1); add_word_settings(stringf("CPE%d.C_SELY2", index), start + 44, 1); add_word_settings(stringf("CPE%d.C_SEL_C", index), start + 45, 1); add_word_settings(stringf("CPE%d.C_SEL_P", index), start + 46, 1); add_word_settings(stringf("CPE%d.C_Y12", index), start + 47, 1); add_word_settings(stringf("CPE%d.C_CX_I", index), start + 48, 1); add_word_settings(stringf("CPE%d.C_CY1_I", index), start + 49, 1); add_word_settings(stringf("CPE%d.C_CY2_I", index), start + 50, 1); add_word_settings(stringf("CPE%d.C_PX_I", index), start + 51, 1); add_word_settings(stringf("CPE%d.C_PY1_I", index), start + 52, 1); add_word_settings(stringf("CPE%d.C_PY2_I", index), start + 53, 1); add_word_settings(stringf("CPE%d.C_C_P", index), start + 54, 1); add_word_settings(stringf("CPE%d.C_2D_IN", index), start + 55, 1); add_word_settings(stringf("CPE%d.C_SN", index), start + 56, 3); add_word_settings(stringf("CPE%d.C_O1", index), start + 59, 2); add_word_settings(stringf("CPE%d.C_O2", index), start + 61, 2); add_word_settings(stringf("CPE%d.C_BR", index), start + 63, 1); add_word_settings(stringf("CPE%d.C_CPE_CLK", index), start + 64, 2); add_word_settings(stringf("CPE%d.C_CPE_EN", index), start + 66, 2); add_word_settings(stringf("CPE%d.C_CPE_RES", index), start + 68, 2); add_word_settings(stringf("CPE%d.C_CPE_SET", index), start + 70, 2); add_word_settings(stringf("CPE%d.C_RAM_I1", index), start + 72, 1); add_word_settings(stringf("CPE%d.C_RAM_I2", index), start + 73, 1); add_word_settings(stringf("CPE%d.C_RAM_O1", index), start + 74, 1); add_word_settings(stringf("CPE%d.C_RAM_O2", index), start + 75, 1); add_word_settings(stringf("CPE%d.C_L_D", index), start + 76, 1); add_word_settings(stringf("CPE%d.C_EN_SR", index), start + 77, 1); add_word_settings(stringf("CPE%d.C_CLKSEL", index), start + 78, 1); add_word_settings(stringf("CPE%d.C_ENSEL", index), start + 79, 1); } void TileBitDatabase::add_ff_init(int index, int start) { add_word_settings(stringf("CPE%d.FF_INIT", index), start, 2); } void TileBitDatabase::add_inmux(int index, int plane, int start) { add_word_settings(stringf("IM%d.P%02d", index, plane), start, 3); } void TileBitDatabase::add_outmux(int index, int plane, int start) { add_word_settings(stringf("OM%d.P%02d", index, plane), start, 2); } void TileBitDatabase::add_gpio(int start) { add_word_settings("GPIO.OPEN_DRAIN", start + 0, 1); add_word_settings("GPIO.SLEW", start + 1, 1); add_word_settings("GPIO.DRIVE", start + 2, 2); add_word_settings("GPIO.INPUT_ENABLE", start + 4, 1); add_word_settings("GPIO.PULLDOWN", start + 5, 1); add_word_settings("GPIO.PULLUP", start + 6, 1); add_word_settings("GPIO.SCHMITT_TRIGGER", start + 7, 1); add_word_settings("GPIO.OUT_SIGNAL", start + 8, 1); add_word_settings("GPIO.OUT1_4", start + 9, 1); add_word_settings("GPIO.OUT2_3", start + 10, 1); add_word_settings("GPIO.OUT23_14_SEL", start + 11, 1); add_word_settings("GPIO.USE_CFG_BIT", start + 12, 1); // Use bit 9 for clock, error in silicon add_word_settings("GPIO.USE_DDR", start + 13, 1); add_word_settings("GPIO.SEL_IN_CLOCK", start + 14, 1); // Use clock signals for IN CLK add_word_settings("GPIO.SEL_OUT_CLOCK", start + 15, 1); // Use clock signals for OUT CLK add_word_settings("GPIO.OE_ENABLE", start + 16, 1); add_word_settings("GPIO.OE_SIGNAL", start + 17, 2); // 0 is constant 1 // 19 unused add_word_settings("GPIO.OUT1_FF", start + 20, 1); add_word_settings("GPIO.OUT2_FF", start + 21, 1); add_word_settings("GPIO.IN1_FF", start + 22, 1); add_word_settings("GPIO.IN2_FF", start + 23, 1); add_word_settings("GPIO.OUT_CLOCK", start + 24, 2); add_word_settings("GPIO.INV_OUT1_CLOCK", start + 26, 1); add_word_settings("GPIO.INV_OUT2_CLOCK", start + 27, 1); add_word_settings("GPIO.IN_CLOCK", start + 28, 2); add_word_settings("GPIO.INV_IN1_CLOCK", start + 30, 1); add_word_settings("GPIO.INV_IN2_CLOCK", start + 31, 1); add_word_settings("GPIO.DELAY_OBF", start + 32, 16); add_word_settings("GPIO.DELAY_IBF", start + 48, 16); add_word_settings("GPIO.LVDS_EN", start + 64, 1); add_word_settings("GPIO.LVDS_BOOST", start + 65, 1); add_word_settings("GPIO.LVDS_IE", start + 66, 1); add_word_settings("GPIO.LVDS_RTERM", start + 67, 1); } void TileBitDatabase::add_edge_io(int index, int start) { for (int i = 0; i < 12; i++) add_word_settings(stringf("IOES%d.SB_IN_%02d", index, i + 1), start + i, 1); } void TileBitDatabase::add_right_edge(int index, int start) { add_word_settings(stringf("RES%d.SEL_MDIE1", index), start + 0, 1); add_word_settings(stringf("RES%d.SEL_MDIE2", index), start + 1, 1); add_word_settings(stringf("RES%d.SEL_MDIE3", index), start + 2, 1); add_word_settings(stringf("RES%d.SEL_MDIE4", index), start + 3, 1); add_word_settings(stringf("RES%d.SEL_MDIE5", index), start + 4, 1); add_word_settings(stringf("RES%d.SEL_MDIE6", index), start + 5, 1); add_word_settings(stringf("RES%d.SEL_MDIE7", index), start + 6, 1); add_word_settings(stringf("RES%d.SEL_MDIE8", index), start + 7, 1); add_word_settings(stringf("RES%d.SIG_SEL1", index), start + 8, 3); add_word_settings(stringf("RES%d.SIG_SEL2", index), start + 11, 3); add_word_settings(stringf("RES%d.SIG_SEL3", index), start + 14, 3); add_word_settings(stringf("RES%d.SIG_SEL4", index), start + 17, 3); } void TileBitDatabase::add_left_edge(int index, int start) { add_word_settings(stringf("LES%d.SB_Y3_SEL1", index), start + 0, 3); add_word_settings(stringf("LES%d.MDIE1_SEL1", index), start + 3, 3); add_word_settings(stringf("LES%d.CLOCK_SEL1", index), start + 6, 2); add_word_settings(stringf("LES%d.SB_Y3_SEL2", index), start + 8, 3); add_word_settings(stringf("LES%d.MDIE1_SEL2", index), start + 11, 3); add_word_settings(stringf("LES%d.CLOCK_SEL2", index), start + 14, 2); add_word_settings(stringf("LES%d.CINX_CONST", index), start + 16, 1); add_word_settings(stringf("LES%d.CINX_SEL", index), start + 17, 2); add_word_settings(stringf("LES%d.PINX_CONST", index), start + 19, 1); add_word_settings(stringf("LES%d.PINX_SEL", index), start + 20, 2); } void TileBitDatabase::add_top_edge(int index, int start) { add_word_settings(stringf("TES%d.SEL_MDIE1", index), start + 0, 1); add_word_settings(stringf("TES%d.SEL_MDIE2", index), start + 1, 1); add_word_settings(stringf("TES%d.SEL_MDIE3", index), start + 2, 1); add_word_settings(stringf("TES%d.SEL_MDIE4", index), start + 3, 1); add_word_settings(stringf("TES%d.SEL_MDIE5", index), start + 4, 1); add_word_settings(stringf("TES%d.SEL_MDIE6", index), start + 5, 1); add_word_settings(stringf("TES%d.SEL_MDIE7", index), start + 6, 1); add_word_settings(stringf("TES%d.SEL_MDIE8", index), start + 7, 1); add_word_settings(stringf("TES%d.SIG_SEL1", index), start + 8, 3); add_word_settings(stringf("TES%d.SIG_SEL2", index), start + 11, 3); add_word_settings(stringf("TES%d.SIG_SEL3", index), start + 14, 3); add_word_settings(stringf("TES%d.SIG_SEL4", index), start + 17, 3); } void TileBitDatabase::add_bottom_edge(int index, int start) { add_word_settings(stringf("BES%d.SB_Y4_SEL1", index), start + 0, 3); add_word_settings(stringf("BES%d.MDIE2_SEL1", index), start + 3, 3); add_word_settings(stringf("BES%d.CLOCK_SEL1", index), start + 6, 2); add_word_settings(stringf("BES%d.SB_Y4_SEL2", index), start + 8, 3); add_word_settings(stringf("BES%d.MDIE2_SEL2", index), start + 11, 3); add_word_settings(stringf("BES%d.CLOCK_SEL2", index), start + 14, 2); add_word_settings(stringf("BES%d.SB_Y4_SEL3", index), start + 16, 3); add_word_settings(stringf("BES%d.MDIE2_SEL3", index), start + 19, 3); add_word_settings(stringf("BES%d.CLOCK_SEL3", index), start + 22, 2); add_word_settings(stringf("BES%d.SB_Y4_SEL4", index), start + 24, 3); add_word_settings(stringf("BES%d.MDIE2_SEL4", index), start + 27, 3); add_word_settings(stringf("BES%d.CLOCK_SEL4", index), start + 30, 2); add_word_settings(stringf("BES%d.CINY1_CONST", index), start + 32, 1); add_word_settings(stringf("BES%d.CINY1_SEL", index), start + 33, 2); add_word_settings(stringf("BES%d.PINY1_CONST", index), start + 35, 1); add_word_settings(stringf("BES%d.PINY1_SEL", index), start + 36, 2); add_word_settings(stringf("BES%d.CINY2_CONST", index), start + 38, 1); add_word_settings(stringf("BES%d.CINY2_SEL", index), start + 39, 2); add_word_settings(stringf("BES%d.PINY2_CONST", index), start + 41, 1); add_word_settings(stringf("BES%d.PINY2_SEL", index), start + 42, 2); add_word_settings(stringf("BES%d.P_CINY1", index), start + 44, 1); add_word_settings(stringf("BES%d.P_PINY1", index), start + 45, 1); add_word_settings(stringf("BES%d.P_CINY2", index), start + 46, 1); add_word_settings(stringf("BES%d.P_PINY2", index), start + 47, 1); } TileBitDatabase::TileBitDatabase(const int x, const int y) : BaseBitDatabase(Die::LATCH_BLOCK_SIZE * 8) { bool is_core = false; if (y == 0) { add_bottom_edge(1, 13 * 8); add_bottom_edge(2, 19 * 8); } else if (x == 0) { add_left_edge(1, 13 * 8); add_left_edge(2, 16 * 8); } else if (y == 66 - 1) { add_top_edge(1, 13 * 8); add_top_edge(2, 16 * 8); } else if (x == 82 - 1) { add_right_edge(1, 13 * 8); add_right_edge(2, 16 * 8); } else { is_core = true; for (int i = 0; i < 4; i++) { add_cpe(i + 1, 10 * i * 8); add_ff_init(i + 1, (Die::LATCH_BLOCK_SIZE - 1) * 8 + i * 2); } int pos = 40; for (int i = 0; i < 4; i++) { for (int j = 0; j < 6; j++) { add_inmux(i + 1, j * 2 + 1, pos * 8); add_inmux(i + 1, j * 2 + 2, pos * 8 + 3); pos++; } } for (int i = 0; i < 2; i++) { pos = 54 + i * 6; for (int j = 9; j <= 12; j++) { add_outmux(i ? 4 : 1, j, pos * 8 + 6); pos++; } } } if (!is_core) { add_gpio(0); add_edge_io(1, 9 * 8); add_edge_io(2, 11 * 8); } int pos = 64; // All tiles have switch boxes // 64 SB_BIG plane 1 // 65 SB_BIG plane 1 // 66 SB_DRIVE plane 2,1 // 67 SB_BIG plane 2 // 68 SB_BIG plane 2 // repeated to cover all 12 planes for (int i = 0; i < 6; i++) { add_sb_big(i * 2 + 1, pos * 8); add_sb_drive(i * 2 + 1, (pos + 2) * 8); add_sb_drive(i * 2 + 2, (pos + 2) * 8 + 4); add_sb_big(i * 2 + 2, (pos + 3) * 8); pos += 5; } // 94 SB_SML plane 1 // 95 SB_SML plane 2,1 // 96 SB_SML plane 2 // repeated to cover all 12 planes for (int i = 0; i < 6; i++) { add_sb_sml(i * 2 + 1, pos * 8); add_sb_sml(i * 2 + 2, (pos + 1) * 8 + 4); pos += 3; } add_unknowns(); } SerdesBitDatabase::SerdesBitDatabase() : BaseBitDatabase(Die::SERDES_CFG_SIZE * 8) { add_word_settings("RX_BUF_RESET_TIME", (0x00 << 4) + 0, 5); add_word_settings("RX_PCS_RESET_TIME", (0x00 << 4) + 5, 5); add_word_settings("RX_RESET_TIMER_PRESC", (0x00 << 4) + 10, 5); add_word_settings("RX_RESET_DONE_GATE", (0x00 << 4) + 15, 1); add_word_settings("RX_CDR_RESET_TIME", (0x01 << 4) + 0, 5); add_word_settings("RX_EQA_RESET_TIME", (0x01 << 4) + 5, 5); add_word_settings("RX_PMA_RESET_TIME", (0x01 << 4) + 10, 5); add_word_settings("RX_WAIT_CDR_LOCK", (0x01 << 4) + 15, 1); add_word_settings("RX_CALIB_EN", (0x02 << 4) + 0, 1); add_word_settings("RX_CALIB_DONE", (0x02 << 4) + 1, 1); add_word_settings("RX_CALIB_OVR", (0x02 << 4) + 2, 1); add_word_settings("RX_CALIB_VAL", (0x02 << 4) + 3, 4); add_word_settings("RX_CALIB_CAL", (0x02 << 4) + 7, 4); add_word_settings("RX_RTERM_VCMSEL", (0x02 << 4) + 11, 3); add_word_settings("RX_RTERM_PD", (0x02 << 4) + 14, 1); add_word_settings("RX_EQA_CKP_LF", (0x03 << 4) + 0, 8); add_word_settings("RX_EQA_CKP_HF", (0x03 << 4) + 8, 8); add_word_settings("RX_EQA_CKP_OFFSET", (0x04 << 4) + 0, 8); add_word_settings("RX_EN_EQA", (0x04 << 4) + 8, 1); add_word_settings("RX_EQA_LOCK_CFG", (0x04 << 4) + 9, 4); add_word_settings("RX_EQA_LOCKED", (0x04 << 4) + 13, 1); add_word_settings("RX_TH_MON1", (0x05 << 4) + 0, 5); add_word_settings("RX_EN_EQA_EXT_VALUE_0", (0x05 << 4) + 5, 1); add_word_settings("RX_TH_MON2", (0x05 << 4) + 6, 5); add_word_settings("RX_EN_EQA_EXT_VALUE_1", (0x05 << 4) + 11, 1); add_word_settings("RX_TAPW", (0x06 << 4) + 0, 5); add_word_settings("RX_EN_EQA_EXT_VALUE_2", (0x06 << 4) + 5, 1); add_word_settings("RX_AFE_OFFSET", (0x06 << 4) + 6, 5); add_word_settings("RX_EN_EQA_EXT_VALUE_3", (0x06 << 4) + 11, 1); add_word_settings("RX_EQA_TAPW", (0x07 << 4) + 0, 5); add_word_settings("RX_TH_MON", (0x07 << 4) + 5, 5); add_word_settings("RX_OFFSET", (0x07 << 4) + 10, 4); add_word_settings("RX_EQA_CONFIG", (0x08 << 4) + 0, 16); add_word_settings("RX_AFE_PEAK", (0x09 << 4) + 0, 5); add_word_settings("RX_AFE_GAIN", (0x09 << 4) + 5, 4); add_word_settings("RX_AFE_VCMSEL", (0x09 << 4) + 9, 3); add_word_settings("RX_CDR_CKP", (0x0a << 4) + 0, 8); add_word_settings("RX_CDR_CKI", (0x0a << 4) + 8, 8); add_word_settings("RX_CDR_LOCK_CFG", (0x0b << 4) + 0, 8); add_word_settings("RX_CDR_TRANS_TH", (0x0b << 4) + 8, 7); add_word_settings("RX_CDR_LOCKED", (0x0b << 4) + 15, 1); add_word_settings("RX_CDR_FREQ_ACC_VAL", (0x0c << 4) + 0, 15); add_word_settings("RX_CDR_PHASE_ACC_VAL", (0x0d << 4) + 0, 16); add_word_settings("RX_CDR_FREQ_ACC", (0x0e << 4) + 0, 15); add_word_settings("RX_CDR_PHASE_ACC", (0x0f << 4) + 0, 16); add_word_settings("RX_CDR_SET_ACC_CONFIG", (0x10 << 4) + 0, 2); add_word_settings("RX_CDR_FORCE_LOCK", (0x10 << 4) + 2, 1); add_word_settings("RX_ALIGN_MCOMMA_VALUE", (0x11 << 4) + 0, 10); add_word_settings("RX_MCOMMA_ALIGN_OVR", (0x11 << 4) + 10, 1); add_word_settings("RX_MCOMMA_ALIGN", (0x11 << 4) + 11, 1); add_word_settings("RX_ALIGN_PCOMMA_VALUE", (0x12 << 4) + 0, 10); add_word_settings("RX_PCOMMA_ALIGN_OVR", (0x12 << 4) + 10, 1); add_word_settings("RX_PCOMMA_ALIGN", (0x12 << 4) + 11, 1); add_word_settings("RX_ALIGN_COMMA_WORD", (0x12 << 4) + 12, 2); add_word_settings("RX_ALIGN_COMMA_ENABLE", (0x13 << 4) + 0, 10); add_word_settings("RX_SLIDE_MODE", (0x13 << 4) + 10, 2); add_word_settings("RX_COMMA_DETECT_EN_OVR", (0x13 << 4) + 12, 1); add_word_settings("RX_COMMA_DETECT_EN", (0x13 << 4) + 13, 1); add_word_settings("RX_SLIDE", (0x13 << 4) + 14, 2); add_word_settings("RX_EYE_MEAS_EN", (0x14 << 4) + 0, 1); add_word_settings("RX_EYE_MEAS_CFG", (0x14 << 4) + 1, 15); add_word_settings("RX_MON_PH_OFFSET", (0x15 << 4) + 0, 6); add_word_settings("RX_EYE_MEAS_CORRECT_11S", (0x16 << 4) + 0, 16); add_word_settings("RX_EYE_MEAS_WRONG_11S", (0x17 << 4) + 0, 16); add_word_settings("RX_EYE_MEAS_CORRECT_00S", (0x18 << 4) + 0, 16); add_word_settings("RX_EYE_MEAS_WRONG_00S", (0x19 << 4) + 0, 16); add_word_settings("RX_EYE_MEAS_CORRECT_001S", (0x1a << 4) + 0, 16); add_word_settings("RX_EYE_MEAS_WRONG_001S", (0x1b << 4) + 0, 16); add_word_settings("RX_EYE_MEAS_CORRECT_110S", (0x1c << 4) + 0, 16); add_word_settings("RX_EYE_MEAS_WRONG_110S", (0x1d << 4) + 0, 16); add_word_settings("RX_EI_BIAS", (0x1e << 4) + 0, 4); add_word_settings("RX_EI_BW_SEL", (0x1e << 4) + 4, 4); add_word_settings("RX_EN_EI_DETECTOR_OVR", (0x1e << 4) + 8, 1); add_word_settings("RX_EN_EI_DETECTOR", (0x1e << 4) + 9, 1); add_word_settings("RX_EI_EN", (0x1e << 4) + 10, 1); add_word_settings("RX_PRBS_ERR_CNT", (0x1f << 4) + 0, 15); add_word_settings("RX_PRBS_LOCKED", (0x1f << 4) + 15, 1); add_word_settings("RX_DATA_SEL", (0x20 << 4) + 0, 1); add_word_settings("RX_DATA", (0x20 << 4) + 1, 15 + 16 * 4); add_word_settings("RX_BUF_BYPASS", (0x25 << 4) + 0, 1); add_word_settings("RX_CLKCOR_USE", (0x25 << 4) + 1, 1); add_word_settings("RX_CLKCOR_MIN_LAT", (0x25 << 4) + 2, 6); add_word_settings("RX_CLKCOR_MAX_LAT", (0x25 << 4) + 8, 6); add_word_settings("RX_CLKCOR_SEQ_1_0", (0x26 << 4) + 0, 10); add_word_settings("RX_CLKCOR_SEQ_1_1", (0x27 << 4) + 0, 10); add_word_settings("RX_CLKCOR_SEQ_1_2", (0x28 << 4) + 0, 10); add_word_settings("RX_CLKCOR_SEQ_1_3", (0x29 << 4) + 0, 10); add_word_settings("RX_PMA_LOOPBACK", (0x2a << 4) + 0, 1); add_word_settings("RX_PCS_LOOPBACK", (0x2a << 4) + 1, 1); add_word_settings("RX_DATAPATH_SEL", (0x2a << 4) + 2, 2); add_word_settings("RX_PRBS_OVR", (0x2a << 4) + 4, 1); add_word_settings("RX_PRBS_SEL", (0x2a << 4) + 5, 3); add_word_settings("RX_LOOPBACK_OVR", (0x2a << 4) + 8, 1); add_word_settings("RX_PRBS_CNT_RESET", (0x2a << 4) + 9, 1); add_word_settings("RX_POWER_DOWN_OVR", (0x2a << 4) + 10, 1); add_word_settings("RX_POWER_DOWN_N", (0x2a << 4) + 11, 1); add_word_settings("RX_PRESENT", (0x2a << 4) + 12, 1); add_word_settings("RX_DETECT_DONE", (0x2a << 4) + 13, 1); add_word_settings("RX_BUF_ERR", (0x2a << 4) + 14, 1); add_word_settings("RX_RESET_OVR", (0x2b << 4) + 0, 1); add_word_settings("RX_RESET", (0x2b << 4) + 1, 1); add_word_settings("RX_PMA_RESET_OVR", (0x2b << 4) + 2, 1); add_word_settings("RX_PMA_RESET", (0x2b << 4) + 3, 1); add_word_settings("RX_EQA_RESET_OVR", (0x2b << 4) + 4, 1); add_word_settings("RX_EQA_RESET", (0x2b << 4) + 5, 1); add_word_settings("RX_CDR_RESET_OVR", (0x2b << 4) + 6, 1); add_word_settings("RX_CDR_RESET", (0x2b << 4) + 7, 1); add_word_settings("RX_PCS_RESET_OVR", (0x2b << 4) + 8, 1); add_word_settings("RX_PCS_RESET", (0x2b << 4) + 9, 1); add_word_settings("RX_BUF_RESET_OVR", (0x2b << 4) + 10, 1); add_word_settings("RX_BUF_RESET", (0x2b << 4) + 11, 1); add_word_settings("RX_POLARITY_OVR", (0x2b << 4) + 12, 1); add_word_settings("RX_POLARITY", (0x2b << 4) + 13, 1); add_word_settings("RX_8B10B_EN_OVR", (0x2b << 4) + 14, 1); add_word_settings("RX_8B10B_EN", (0x2b << 4) + 15, 1); add_word_settings("RX_8B10B_BYPASS", (0x2c << 4) + 0, 8); add_word_settings("RX_BYTE_IS_ALIGNED", (0x2c << 4) + 8, 1); add_word_settings("RX_BYTE_REALIGN", (0x2c << 4) + 9, 1); add_word_settings("RX_RESET_DONE", (0x2c << 4) + 10, 1); add_word_settings("RX_DBG_EN", (0x2d << 4) + 0, 1); add_word_settings("RX_DBG_SEL", (0x2d << 4) + 1, 4); add_word_settings("RX_DBG_MODE", (0x2d << 4) + 5, 1); add_word_settings("RX_DBG_SRAM_DELAY", (0x2d << 4) + 6, 6); add_word_settings("RX_DBG_ADDR", (0x2e << 4) + 0, 10); add_word_settings("RX_DBG_RE", (0x2e << 4) + 10, 1); add_word_settings("RX_DBG_WE", (0x2e << 4) + 11, 1); add_word_settings("RX_DBG_DATA", (0x2e << 4) + 12, 20); add_word_settings("TX_SEL_PRE", (0x30 << 4) + 0, 5); add_word_settings("TX_SEL_POST", (0x30 << 4) + 5, 5); add_word_settings("TX_AMP", (0x30 << 4) + 10, 5); add_word_settings("TX_BRANCH_EN_PRE", (0x31 << 4) + 0, 5); add_word_settings("TX_BRANCH_EN_MAIN", (0x31 << 4) + 5, 6); add_word_settings("TX_BRANCH_EN_POST", (0x31 << 4) + 11, 5); add_word_settings("TX_TAIL_CASCODE", (0x32 << 4) + 0, 3); add_word_settings("TX_DC_ENABLE", (0x32 << 4) + 3, 7); add_word_settings("TX_DC_OFFSET", (0x32 << 4) + 10, 5); add_word_settings("TX_CM_RAISE", (0x33 << 4) + 0, 5); add_word_settings("TX_CM_THRESHOLD_0", (0x33 << 4) + 5, 5); add_word_settings("TX_CM_THRESHOLD_1", (0x33 << 4) + 10, 5); add_word_settings("TX_SEL_PRE_EI", (0x34 << 4) + 0, 5); add_word_settings("TX_SEL_POST_EI", (0x34 << 4) + 5, 5); add_word_settings("TX_AMP_EI", (0x34 << 4) + 10, 5); add_word_settings("TX_BRANCH_EN_PRE_EI", (0x35 << 4) + 0, 5); add_word_settings("TX_BRANCH_EN_MAIN_EI", (0x35 << 4) + 5, 6); add_word_settings("TX_BRANCH_EN_POST_EI", (0x35 << 4) + 11, 5); add_word_settings("TX_TAIL_CASCODE_EI", (0x36 << 4) + 0, 3); add_word_settings("TX_DC_ENABLE_EI", (0x36 << 4) + 3, 7); add_word_settings("TX_DC_OFFSET_EI", (0x36 << 4) + 10, 5); add_word_settings("TX_CM_RAISE_EI", (0x37 << 4) + 0, 5); add_word_settings("TX_CM_THRESHOLD_0_EI", (0x37 << 4) + 5, 5); add_word_settings("TX_CM_THRESHOLD_1_EI", (0x37 << 4) + 10, 5); add_word_settings("TX_SEL_PRE_RXDET", (0x38 << 4) + 0, 5); add_word_settings("TX_SEL_POST_RXDET", (0x38 << 4) + 5, 5); add_word_settings("TX_AMP_RXDET", (0x38 << 4) + 10, 5); add_word_settings("TX_BRANCH_EN_PRE_RXDET", (0x39 << 4) + 0, 5); add_word_settings("TX_BRANCH_EN_MAIN_RXDET", (0x39 << 4) + 5, 6); add_word_settings("TX_BRANCH_EN_POST_RXDET", (0x39 << 4) + 11, 5); add_word_settings("TX_TAIL_CASCODE_RXDET", (0x3a << 4) + 0, 3); add_word_settings("TX_DC_ENABLE_RXDET", (0x3a << 4) + 3, 7); add_word_settings("TX_DC_OFFSET_RXDET", (0x3a << 4) + 10, 5); add_word_settings("TX_CM_RAISE_RXDET", (0x3b << 4) + 0, 5); add_word_settings("TX_CM_THRESHOLD_0_RXDET", (0x3b << 4) + 5, 5); add_word_settings("TX_CM_THRESHOLD_1_RXDET", (0x3b << 4) + 10, 5); add_word_settings("TX_CALIB_EN", (0x3c << 4) + 0, 1); add_word_settings("TX_CALIB_DONE", (0x3c << 4) + 1, 1); add_word_settings("TX_CALIB_OVR", (0x3c << 4) + 2, 1); add_word_settings("TX_CALIB_VAL", (0x3c << 4) + 3, 4); add_word_settings("TX_CALIB_CAL", (0x3c << 4) + 7, 4); add_word_settings("TX_CM_REG_KI", (0x3d << 4) + 0, 8); add_word_settings("TX_CM_SAR_EN", (0x3d << 4) + 8, 1); add_word_settings("TX_CM_REG_EN", (0x3d << 4) + 9, 1); add_word_settings("TX_CM_SAR_RESULT_0", (0x3e << 4) + 0, 5); add_word_settings("TX_CM_SAR_RESULT_1", (0x3e << 4) + 5, 5); add_word_settings("TX_PMA_RESET_TIME", (0x3f << 4) + 0, 5); add_word_settings("TX_PCS_RESET_TIME", (0x3f << 4) + 5, 5); add_word_settings("TX_PCS_RESET_OVR", (0x3f << 4) + 10, 1); add_word_settings("TX_PCS_RESET", (0x3f << 4) + 11, 1); add_word_settings("TX_PMA_RESET_OVR", (0x3f << 4) + 12, 1); add_word_settings("TX_PMA_RESET", (0x3f << 4) + 13, 1); add_word_settings("TX_RESET_OVR", (0x3f << 4) + 14, 1); add_word_settings("TX_RESET", (0x3f << 4) + 15, 1); add_word_settings("TX_PMA_LOOPBACK", (0x40 << 4) + 0, 2); add_word_settings("TX_PCS_LOOPBACK", (0x40 << 4) + 2, 1); add_word_settings("TX_DATAPATH_SEL", (0x40 << 4) + 3, 2); add_word_settings("TX_PRBS_OVR", (0x40 << 4) + 5, 1); add_word_settings("TX_PRBS_SEL", (0x40 << 4) + 6, 3); add_word_settings("TX_PRBS_FORCE_ERR", (0x40 << 4) + 9, 1); add_word_settings("TX_LOOPBACK_OVR", (0x40 << 4) + 10, 1); add_word_settings("TX_POWER_DOWN_OVR", (0x40 << 4) + 11, 1); add_word_settings("TX_POWER_DOWN_N", (0x40 << 4) + 12, 1); add_word_settings("TX_ELEC_IDLE_OVR", (0x41 << 4) + 0, 1); add_word_settings("TX_ELEC_IDLE", (0x41 << 4) + 1, 1); add_word_settings("TX_DETECT_RX_OVR", (0x41 << 4) + 2, 1); add_word_settings("TX_DETECT_RX", (0x41 << 4) + 3, 1); add_word_settings("TX_POLARITY_OVR", (0x41 << 4) + 4, 1); add_word_settings("TX_POLARITY", (0x41 << 4) + 5, 1); add_word_settings("TX_8B10B_EN_OVR", (0x41 << 4) + 6, 1); add_word_settings("TX_8B10B_EN", (0x41 << 4) + 7, 1); add_word_settings("TX_DATA_OVR", (0x41 << 4) + 8, 1); add_word_settings("TX_DATA_CNT", (0x41 << 4) + 9, 3); add_word_settings("TX_DATA_VALID", (0x41 << 4) + 12, 1); add_word_settings("TX_BUF_ERR", (0x41 << 4) + 13, 1); add_word_settings("TX_RESET_DONE", (0x41 << 4) + 14, 1); add_word_settings("TX_DATA", (0x42 << 4) + 0, 16); add_word_settings("PLL_EN_ADPLL_CTRL", (0x50 << 4) + 0, 1); add_word_settings("PLL_CONFIG_SEL", (0x50 << 4) + 1, 1); add_word_settings("PLL_SET_OP_LOCK", (0x50 << 4) + 2, 1); add_word_settings("PLL_ENFORCE_LOCK", (0x50 << 4) + 3, 1); add_word_settings("PLL_DISABLE_LOCK", (0x50 << 4) + 4, 1); add_word_settings("PLL_LOCK_WINDOW", (0x50 << 4) + 5, 1); add_word_settings("PLL_FAST_LOCK", (0x50 << 4) + 6, 1); add_word_settings("PLL_SYNC_BYPASS", (0x50 << 4) + 7, 1); add_word_settings("PLL_PFD_SELECT", (0x50 << 4) + 8, 1); add_word_settings("PLL_REF_BYPASS", (0x50 << 4) + 9, 1); add_word_settings("PLL_REF_SEL", (0x50 << 4) + 10, 1); add_word_settings("PLL_REF_RTERM", (0x50 << 4) + 11, 1); add_word_settings("PLL_FCNTRL", (0x51 << 4) + 0, 6); add_word_settings("PLL_MAIN_DIVSEL", (0x51 << 4) + 6, 6); add_word_settings("PLL_OUT_DIVSEL", (0x51 << 4) + 12, 2); add_word_settings("PLL_CI", (0x52 << 4) + 0, 5); add_word_settings("PLL_CP", (0x52 << 4) + 5, 10); add_word_settings("PLL_AO", (0x53 << 4) + 0, 4); add_word_settings("PLL_SCAP", (0x53 << 4) + 4, 3); add_word_settings("PLL_FILTER_SHIFT", (0x53 << 4) + 7, 2); add_word_settings("PLL_SAR_LIMIT", (0x53 << 4) + 9, 3); add_word_settings("PLL_FT", (0x54 << 4) + 0, 11); add_word_settings("PLL_OPEN_LOOP", (0x54 << 4) + 11, 1); add_word_settings("PLL_SCAP_AUTO_CAL", (0x54 << 4) + 12, 1); add_word_settings("PLL_LOCKED", (0x55 << 4) + 0, 1); add_word_settings("PLL_CAP_FT_OF", (0x55 << 4) + 1, 1); add_word_settings("PLL_CAP_FT_UF", (0x55 << 4) + 2, 1); add_word_settings("PLL_CAP_FT", (0x55 << 4) + 3, 10); add_word_settings("PLL_CAP_STATE", (0x55 << 4) + 13, 2); add_word_settings("PLL_SYNC_VALUE", (0x56 << 4) + 0, 8); add_word_settings("PLL_BISC_MODE", (0x57 << 4) + 0, 3); add_word_settings("PLL_BISC_TIMER_MAX", (0x57 << 4) + 3, 4); add_word_settings("PLL_BISC_OPT_DET_IND", (0x57 << 4) + 7, 1); add_word_settings("PLL_BISC_PFD_SEL", (0x57 << 4) + 8, 1); add_word_settings("PLL_BISC_DLY_DIR", (0x57 << 4) + 9, 1); add_word_settings("PLL_BISC_COR_DLY", (0x57 << 4) + 10, 3); add_word_settings("PLL_BISC_CAL_SIGN", (0x57 << 4) + 13, 1); add_word_settings("PLL_BISC_CAL_AUTO", (0x57 << 4) + 14, 1); add_word_settings("PLL_BISC_CP_MIN", (0x58 << 4) + 0, 5); add_word_settings("PLL_BISC_CP_MAX", (0x58 << 4) + 5, 5); add_word_settings("PLL_BISC_CP_START", (0x58 << 4) + 10, 5); add_word_settings("PLL_BISC_DLY_PFD_MON_REF", (0x59 << 4) + 0, 5); add_word_settings("PLL_BISC_DLY_PFD_MON_DIV", (0x59 << 4) + 5, 5); add_word_settings("PLL_BISC_TIMER_DONE", (0x5a << 4) + 0, 1); add_word_settings("PLL_BISC_CP", (0x5a << 4) + 1, 7); add_word_settings("PLL_BISC_CO", (0x5b << 4) + 0, 16); add_word_settings("SERDES_ENABLE", (0x5c << 4) + 0, 1); add_word_settings("SERDES_AUTO_INIT", (0x5c << 4) + 1, 1); add_word_settings("SERDES_TESTMODE", (0x5c << 4) + 2, 1); } RamBitDatabase::RamBitDatabase() : BaseBitDatabase(Die::RAM_BLOCK_SIZE * 8) { add_word_settings("RAM_cfg_forward_a_addr", 0 * 8, 8); add_word_settings("RAM_cfg_forward_b_addr", 1 * 8, 8); add_word_settings("RAM_cfg_forward_a0_clk", 2 * 8, 8); add_word_settings("RAM_cfg_forward_a0_en", 3 * 8, 8); add_word_settings("RAM_cfg_forward_a0_we", 4 * 8, 8); add_word_settings("RAM_cfg_forward_a1_clk", 5 * 8, 8); add_word_settings("RAM_cfg_forward_a1_en", 6 * 8, 8); add_word_settings("RAM_cfg_forward_a1_we", 7 * 8, 8); add_word_settings("RAM_cfg_forward_b0_clk", 8 * 8, 8); add_word_settings("RAM_cfg_forward_b0_en", 9 * 8, 8); add_word_settings("RAM_cfg_forward_b0_we", 10 * 8, 8); add_word_settings("RAM_cfg_forward_b1_clk", 11 * 8, 8); add_word_settings("RAM_cfg_forward_b1_en", 12 * 8, 8); add_word_settings("RAM_cfg_forward_b1_we", 13 * 8, 8); add_word_settings("RAM_cfg_sram_mode", 14 * 8, 2); add_word_settings("RAM_cfg_input_config_a0", 14 * 8 + 2, 3); add_word_settings("RAM_cfg_input_config_a1", 14 * 8 + 5, 3); add_word_settings("RAM_cfg_input_config_b0", 15 * 8 + 1, 3); add_word_settings("RAM_cfg_input_config_b1", 15 * 8 + 4, 3); add_word_settings("RAM_cfg_output_config_a0", 15 * 8 + 7, 3); add_word_settings("RAM_cfg_output_config_a1", 16 * 8 + 2, 3); add_word_settings("RAM_cfg_output_config_b0", 16 * 8 + 5, 3); add_word_settings("RAM_cfg_output_config_b1", 17 * 8, 3); add_word_settings("RAM_cfg_a0_writemode", 18 * 8 + 0, 1); add_word_settings("RAM_cfg_a1_writemode", 18 * 8 + 1, 1); add_word_settings("RAM_cfg_b0_writemode", 18 * 8 + 2, 1); add_word_settings("RAM_cfg_b1_writemode", 18 * 8 + 3, 1); add_word_settings("RAM_cfg_a0_set_outputreg", 18 * 8 + 4, 1); add_word_settings("RAM_cfg_a1_set_outputreg", 18 * 8 + 5, 1); add_word_settings("RAM_cfg_b0_set_outputreg", 18 * 8 + 6, 1); add_word_settings("RAM_cfg_b1_set_outputreg", 18 * 8 + 7, 1); add_word_settings("RAM_cfg_inversion_a0", 19 * 8, 3); add_word_settings("RAM_cfg_inversion_a1", 19 * 8 + 3, 3); add_word_settings("RAM_cfg_inversion_b0", 19 * 8 + 6, 3); add_word_settings("RAM_cfg_inversion_b1", 20 * 8 + 1, 3); add_word_settings("RAM_cfg_ecc_enable", 20 * 8 + 4, 2); add_word_settings("RAM_cfg_dyn_stat_select", 20 * 8 + 6, 2); add_word_settings("RAM_cfg_almost_empty_offset", 21 * 8, 15); add_word_settings("RAM_cfg_fifo_sync_enable", 22 * 8 + 7, 1); add_word_settings("RAM_cfg_almost_full_offset", 23 * 8, 15); add_word_settings("RAM_cfg_fifo_async_enable", 24 * 8 + 7, 1); add_word_settings("RAM_cfg_sram_delay", 25 * 8, 6); add_word_settings("RAM_cfg_datbm_sel", 26 * 8, 4); add_word_settings("RAM_cfg_cascade_enable", 26 * 8 + 4, 2); add_unknowns(); } void ConfigBitDatabase::add_pll_cfg(int index, char cfg, int start) { add_word_settings(stringf("PLL%d.CFG_%c_CI_FILTER_CONST", index, cfg), start + 0, 5); add_word_settings(stringf("PLL%d.CFG_%c_CP_FILTER_CONST", index, cfg), start + 5, 5); add_word_settings(stringf("PLL%d.CFG_%c_N1", index, cfg), start + 10, 6); add_word_settings(stringf("PLL%d.CFG_%c_N2", index, cfg), start + 16, 10); add_word_settings(stringf("PLL%d.CFG_%c_M1", index, cfg), start + 26, 6); add_word_settings(stringf("PLL%d.CFG_%c_M2", index, cfg), start + 32, 10); add_word_settings(stringf("PLL%d.CFG_%c_K", index, cfg), start + 42, 12); add_word_settings(stringf("PLL%d.CFG_%c_FB_PATH", index, cfg), start + 54, 1); add_word_settings(stringf("PLL%d.CFG_%c_FINE_TUNE", index, cfg), start + 55, 11); add_word_settings(stringf("PLL%d.CFG_%c_COARSE_TUNE", index, cfg), start + 66, 3); add_word_settings(stringf("PLL%d.CFG_%c_AO_SW", index, cfg), start + 69, 5); add_word_settings(stringf("PLL%d.CFG_%c_OPEN_LOOP", index, cfg), start + 74, 1); add_word_settings(stringf("PLL%d.CFG_%c_ENFORCE_LOCK", index, cfg), start + 75, 1); add_word_settings(stringf("PLL%d.CFG_%c_PFD_SEL", index, cfg), start + 76, 1); add_word_settings(stringf("PLL%d.CFG_%c_LOCK_DETECT_WIN", index, cfg), start + 77, 1); add_word_settings(stringf("PLL%d.CFG_%c_SYNC_BYPASS", index, cfg), start + 78, 1); add_word_settings(stringf("PLL%d.CFG_%c_FILTER_SHIFT", index, cfg), start + 79, 2); add_word_settings(stringf("PLL%d.CFG_%c_FAST_LOCK", index, cfg), start + 81, 1); add_word_settings(stringf("PLL%d.CFG_%c_SAR_LIMIT", index, cfg), start + 82, 3); add_word_settings(stringf("PLL%d.CFG_%c_OP_LOCK", index, cfg), start + 85, 1); add_word_settings(stringf("PLL%d.CFG_%c_PDIV1_SEL", index, cfg), start + 86, 1); add_word_settings(stringf("PLL%d.CFG_%c_PDIV0_MUX", index, cfg), start + 87, 1); add_word_settings(stringf("PLL%d.CFG_%c_EN_COARSE_TUNE", index, cfg), start + 88, 1); add_word_settings(stringf("PLL%d.CFG_%c_EN_USR_CFG", index, cfg), start + 89, 1); add_word_settings(stringf("PLL%d.CFG_%c_PLL_EN_SEL", index, cfg), start + 90, 1); } ConfigBitDatabase::ConfigBitDatabase() : BaseBitDatabase(Die::DIE_CONFIG_SIZE * 8) { int pos = 0; for (int i = 0; i < 4; i++) { add_pll_cfg(i, 'A', pos); pos += 96; add_pll_cfg(i, 'B', pos); pos += 96; } // CLKIN matrix add_word_settings("CLKIN.REF0", pos + 0, 3); add_word_settings("CLKIN.REF0_INV", pos + 3, 1); add_word_settings("CLKIN.REF1", pos + 8, 3); add_word_settings("CLKIN.REF1_INV", pos + 8 + 3, 1); add_word_settings("CLKIN.REF2", pos + 16, 3); add_word_settings("CLKIN.REF2_INV", pos + 16 + 3, 1); add_word_settings("CLKIN.REF3", pos + 24, 3); add_word_settings("CLKIN.REF3_INV", pos + 24 + 3, 1); pos += 32; // GLBOUT matrix add_word_settings("GLBOUT.GLB0_CFG", pos + 0, 3); add_word_settings("GLBOUT.USR_GLB0_EN", pos + 3, 1); add_word_settings("GLBOUT.GLB0_EN", pos + 4, 1); // bits 5-7 not used add_word_settings("GLBOUT.FB0_CFG", pos + 8, 2); add_word_settings("GLBOUT.USR_FB0_EN", pos + 10, 1); // bits 11-15 not used add_word_settings("GLBOUT.GLB1_CFG", pos + 16, 3); add_word_settings("GLBOUT.USR_GLB1_EN", pos + 19, 1); add_word_settings("GLBOUT.GLB1_EN", pos + 20, 1); // bits 21-23 not used add_word_settings("GLBOUT.FB1_CFG", pos + 24, 2); add_word_settings("GLBOUT.USR_FB1_EN", pos + 26, 1); // bits 27-31 not used add_word_settings("GLBOUT.GLB2_CFG", pos + 32, 3); add_word_settings("GLBOUT.USR_GLB2_EN", pos + 35, 1); add_word_settings("GLBOUT.GLB2_EN", pos + 36, 1); // bits 37-39 not used add_word_settings("GLBOUT.FB2_CFG", pos + 40, 2); add_word_settings("GLBOUT.USR_FB2_EN", pos + 42, 1); // bits 43-47 not used add_word_settings("GLBOUT.GLB3_CFG", pos + 48, 3); add_word_settings("GLBOUT.USR_GLB3_EN", pos + 51, 1); add_word_settings("GLBOUT.GLB3_EN", pos + 52, 1); // bits 53-55 not used add_word_settings("GLBOUT.FB3_CFG", pos + 56, 2); add_word_settings("GLBOUT.USR_FB3_EN", pos + 58, 1); // bits 59-63 not used pos = Die::STATUS_CFG_START * 8; add_word_settings("GPIO.BANK_S1", pos + 16, 1); add_word_settings("GPIO.BANK_S2", pos + 17, 1); add_word_settings("GPIO.BANK_CFG", pos + 19, 1); add_word_settings("GPIO.BANK_E1", pos + 20, 1); add_word_settings("GPIO.BANK_E2", pos + 21, 1); add_word_settings("GPIO.BANK_N1", pos + 24, 1); add_word_settings("GPIO.BANK_N2", pos + 25, 1); add_word_settings("GPIO.BANK_W1", pos + 28, 1); add_word_settings("GPIO.BANK_W2", pos + 29, 1); pos += 32; for (int i = 0; i < Die::MAX_PLL; i++) { add_word_settings(stringf("PLL%d.PLL_RST", i), pos + 0, 1); add_word_settings(stringf("PLL%d.PLL_EN", i), pos + 1, 1); add_word_settings(stringf("PLL%d.PLL_AUTN", i), pos + 2, 1); add_word_settings(stringf("PLL%d.SET_SEL", i), pos + 3, 1); add_word_settings(stringf("PLL%d.USR_SET", i), pos + 4, 1); add_word_settings(stringf("PLL%d.USR_CLK_REF", i), pos + 5, 1); add_word_settings(stringf("PLL%d.CLK_OUT_EN", i), pos + 6, 1); add_word_settings(stringf("PLL%d.LOCK_REQ", i), pos + 7, 1); add_word_settings(stringf("PLL%d.AUTN_CT_I", i), pos + 8 + 0, 3); add_word_settings(stringf("PLL%d.CLK180_DOUB", i), pos + 8 + 3, 1); add_word_settings(stringf("PLL%d.CLK270_DOUB", i), pos + 8 + 4, 1); // bits 6 and 7 are unused add_word_settings(stringf("PLL%d.USR_CLK_OUT", i), pos + 8 + 7, 1); pos += 16; } add_word_settings("D2D.N", pos + 0, 1); add_word_settings("D2D.E", pos + 1, 1); add_word_settings("D2D.S", pos + 2, 1); add_word_settings("D2D.W", pos + 3, 1); add_unknowns(); } std::vector WordSettingBits::get_value(const std::vector &tile) const { std::vector val; for (int i = start; i < end; i++) val.push_back(tile[i]); return val; } void WordSettingBits::set_value(std::vector &tile, const std::vector &value) const { for (int i = start; i < end; i++) tile[i] = value[i - start]; } DatabaseConflictError::DatabaseConflictError(const std::string &desc) : runtime_error(desc) {} } // namespace GateMate prjpeppercorn-1.12/libgm/src/TileConfig.cpp000066400000000000000000000040371514752025000207430ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include "TileConfig.hpp" #include #include #include "Util.hpp" namespace GateMate { std::ostream &operator<<(std::ostream &out, const ConfigWord &cw) { out << cw.name << " " << to_string(cw.value) << std::endl; return out; } std::istream &operator>>(std::istream &in, ConfigWord &cw) { in >> cw.name; in >> cw.value; return in; } std::ostream &operator<<(std::ostream &out, const TileConfig &tc) { for (const auto &cword : tc.cwords) out << cword; return out; } std::istream &operator>>(std::istream &in, TileConfig &tc) { tc.cwords.clear(); while (!skip_check_eor(in)) { ConfigWord w; in >> w; tc.cwords.push_back(w); } return in; } void TileConfig::add_word(const std::string &name, const std::vector &value) { cwords.push_back({name, value}); } std::string TileConfig::to_string() const { std::stringstream ss; ss << *this; return ss.str(); } TileConfig TileConfig::from_string(const std::string &str) { std::stringstream ss(str); TileConfig tc; ss >> tc; return tc; } bool TileConfig::empty() const { return cwords.empty(); } } // namespace GateMate prjpeppercorn-1.12/libgm/src/Util.cpp000066400000000000000000000034101514752025000176270ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include "Util.hpp" #include #include namespace GateMate { VerbosityLevel verbosity = VerbosityLevel::DEBUG; std::string stringf(const char *fmt, ...) { std::string string; va_list ap; va_start(ap, fmt); string = vstringf(fmt, ap); va_end(ap); return string; } std::string vstringf(const char *fmt, va_list ap) { std::string string; char *str = NULL; #if defined(_WIN32) || defined(__CYGWIN__) int sz = 64 + strlen(fmt); while (1) { va_list apc; va_copy(apc, ap); str = (char *)realloc(str, sz); int rc = vsnprintf(str, sz, fmt, apc); va_end(apc); if (rc >= 0 && rc < sz) break; sz *= 2; } #else if (vasprintf(&str, fmt, ap) < 0) str = NULL; #endif if (str != NULL) { string = str; free(str); } return string; } } // namespace GateMate prjpeppercorn-1.12/libgm/tools/000077500000000000000000000000001514752025000165615ustar00rootroot00000000000000prjpeppercorn-1.12/libgm/tools/gmpack.cpp000066400000000000000000000113441514752025000205320ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include #include #include #include #include #include #include #include "Bitstream.hpp" #include "Chip.hpp" #include "ChipConfig.hpp" #include "version.hpp" int main(int argc, char *argv[]) { using namespace GateMate; namespace po = boost::program_options; po::options_description options("Allowed options"); options.add_options()("help,h", "show help"); options.add_options()("verbose,v", "verbose output"); options.add_options()("reset", "reset all configuration latches with CMD_CFGRST"); options.add_options()("crcmode", po::value(), "CRC error behaviour (check, ignore, unused)"); options.add_options()("spimode", po::value(), "SPI Mode to use (single, dual, quad)"); options.add_options()("reconfig", "enable reconfiguration in bitstream"); options.add_options()("background", "enable background reconfiguration in bitstream"); options.add_options()("bootaddr", po::value(), "boot address for secondary bitstream"); po::positional_options_description pos; options.add_options()("input", po::value()->required(), "input textual configuration"); pos.add("input", 1); options.add_options()("bit", po::value(), "output bitstream file"); pos.add("bit", 1); po::variables_map vm; try { po::parsed_options parsed = po::command_line_parser(argc, argv).options(options).positional(pos).run(); po::store(parsed, vm); po::notify(vm); } catch (po::required_option &e) { std::cerr << "Error: input file is mandatory." << std::endl << std::endl; goto help; } catch (std::exception &e) { std::cerr << "Error: " << e.what() << std::endl << std::endl; goto help; } if (vm.count("help")) { help: std::filesystem::path path(argv[0]); std::cerr << "Open Source Tools for GateMate FPGAs Version " << git_describe_str << std::endl; std::cerr << "Copyright (C) 2024 The Project Peppercorn Authors" << std::endl; std::cerr << std::endl; std::cerr << path.stem().c_str() << ": GateMate bitstream packer" << std::endl; std::cerr << std::endl; std::cerr << "Usage: " << argv[0] << " input.config [output.bit] [options]" << std::endl; std::cerr << std::endl; std::cerr << options << std::endl; return vm.count("help") ? 0 : 1; } std::ifstream config_file(vm["input"].as()); if (!config_file) { std::cerr << "Failed to open input file" << std::endl; return 1; } std::map bitopts; if (vm.count("reset")) { bitopts["reset"] = "yes"; } if (vm.count("crcmode")) { bitopts["crcmode"] = vm["crcmode"].as(); } if (vm.count("spimode")) { bitopts["spimode"] = vm["spimode"].as(); } if (vm.count("reconfig")) { bitopts["reconfig"] = "yes"; } if (vm.count("background")) { bitopts["background"] = "yes"; } if (vm.count("bootaddr")) { bitopts["bootaddr"] = std::to_string(vm["bootaddr"].as()); } std::string textcfg((std::istreambuf_iterator(config_file)), std::istreambuf_iterator()); ChipConfig cc; try { cc = ChipConfig::from_string(textcfg); } catch (std::runtime_error &e) { std::cerr << "Failed to process input config: " << e.what() << std::endl; return 1; } Chip c = cc.to_chip(); Bitstream b = Bitstream::serialise_chip(c, bitopts); if (vm.count("bit")) { std::ofstream bit_file(vm["bit"].as(), std::ios::binary); if (!bit_file) { std::cerr << "Failed to open output file" << std::endl; return 1; } b.write_bit(bit_file); } return 0; } prjpeppercorn-1.12/libgm/tools/gmunpack.cpp000066400000000000000000000071321514752025000210750ustar00rootroot00000000000000/* * prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools * * Copyright (C) 2024 The Project Peppercorn Authors. * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #include #include #include #include #include #include #include "Bitstream.hpp" #include "Chip.hpp" #include "ChipConfig.hpp" #include "version.hpp" int main(int argc, char *argv[]) { using namespace GateMate; namespace po = boost::program_options; po::options_description options("Allowed options"); options.add_options()("help,h", "show help"); options.add_options()("verbose,v", "verbose output"); po::positional_options_description pos; options.add_options()("input", po::value()->required(), "input bitstream file"); pos.add("input", 1); options.add_options()("textcfg", po::value()->required(), "output textual configuration"); pos.add("textcfg", 1); po::variables_map vm; try { po::parsed_options parsed = po::command_line_parser(argc, argv).options(options).positional(pos).run(); po::store(parsed, vm); po::notify(vm); } catch (po::required_option &e) { std::cerr << "Error: input file is mandatory." << std::endl << std::endl; goto help; } catch (std::exception &e) { std::cerr << "Error: " << e.what() << std::endl << std::endl; goto help; } if (vm.count("help")) { help: std::filesystem::path path(argv[0]); std::cerr << "Open Source Tools for GateMate FPGAs Version " << git_describe_str << std::endl; std::cerr << "Copyright (C) 2024 The Project Peppercorn Authors" << std::endl; std::cerr << std::endl; std::cerr << path.stem().c_str() << ": GateMate bitstream to text config converter" << std::endl; std::cerr << std::endl; std::cerr << "Usage: " << argv[0] << " input.bit [output.config] [options]" << std::endl; std::cerr << std::endl; std::cerr << options << std::endl; return vm.count("help") ? 0 : 1; } std::ifstream bit_file(vm["input"].as(), std::ios::binary); if (!bit_file) { std::cerr << "Failed to open input file" << std::endl; return 1; } try { Chip c = Bitstream::read(bit_file).deserialise_chip(); ChipConfig cc = ChipConfig::from_chip(c); std::ofstream out_file(vm["textcfg"].as()); if (!out_file) { std::cerr << "Failed to open output file" << std::endl; return 1; } out_file << cc.to_string(); return 0; } catch (BitstreamParseError &e) { std::cerr << "Failed to process input bitstream: " << e.what() << std::endl; return 1; } catch (std::runtime_error &e) { std::cerr << "Failed to process input bitstream: " << e.what() << std::endl; return 1; } } prjpeppercorn-1.12/libgm/tools/version.cpp.in000066400000000000000000000001251514752025000213550ustar00rootroot00000000000000#include "version.hpp" const std::string git_describe_str = "@CURRENT_GIT_VERSION@"; prjpeppercorn-1.12/libgm/tools/version.hpp000066400000000000000000000001501514752025000207530ustar00rootroot00000000000000#ifndef VERSION_H #define VERSION_H #include extern const std::string git_describe_str; #endif prjpeppercorn-1.12/schematics/000077500000000000000000000000001514752025000164525ustar00rootroot00000000000000prjpeppercorn-1.12/schematics/cpe/000077500000000000000000000000001514752025000172215ustar00rootroot00000000000000prjpeppercorn-1.12/schematics/cpe/cpe.kicad_sch000077500000000000000000032250041514752025000216330ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "9f0f286e-766f-42c5-a606-2ea7b7c2c18b") (paper "A3") (title_block (title "Cologne Processing Element") (date "2025-07-07") (rev "5") (company "YosysHQ") ) (lib_symbols (symbol "AND_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_1_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_10" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_10_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_11" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_11_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_12" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_12_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_13" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_13_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_2_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_3_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_4_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_5" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_5_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_6" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_6_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_7" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_7_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_8" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_8_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_9" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_9_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AO21_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_1_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AO21_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_2_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AO21_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_3_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AO21_4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_4_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AO21_5" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_5_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_1_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_2_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_2_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_3_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_3_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_4_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_4_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_1_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_2_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_2_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_3_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_3_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_4_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_4_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_5" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_5_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_5_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_6" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_6_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_6_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_7" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_7_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_7_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_8" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_8_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_8_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OR_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_1_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OR_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_2_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OR_4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_4_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OR_5" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_5_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OR_7" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_7_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR3_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR3_1_0_1" (arc (start -3.048 3.81) (mid 0.5351 3.0623) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.6095 -2.8827) (end -2.794 -3.556) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "XOR3_1_1_1" (arc (start -3.81 3.81) (mid -2.464 2.0874) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.9759 0.0685) (mid -2.4353 -2.0687) (end -3.7813 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.0193 3.7913) (mid -1.6733 2.0687) (end -1.2139 -0.0685) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2139 0.0685) (mid -1.6733 -2.0687) (end -3.0193 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_2_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_3_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_4_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_5" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_5_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_6" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_6_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_7" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_7_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:AND" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:AO21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:CONFIG" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 2.54 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "CONFIG_0_1" (rectangle (start -5.08 1.27) (end 5.08 -1.27) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "CONFIG_1_1" (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:C_FUNCTION" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C_FUNCTION" (at 0.254 7.874 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_FUNCTION_0_1" (rectangle (start -6.35 6.35) (end 6.35 -8.89) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "C_FUNCTION_1_1" (pin output line (at 8.89 5.08 180) (length 2.54) (name "C_MULT" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "C_MX4" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 0 180) (length 2.54) (name "C_EN_CIN" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 -2.54 180) (length 2.54) (name "C_ADDF" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 -5.08 180) (length 2.54) (name "C_ADDF2" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 -7.62 180) (length 2.54) (name "C_ADDCIN" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:DFF" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "FF" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "DFF_0_1" (rectangle (start -6.35 6.35) (end 6.35 -6.35) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "DFF_1_1" (pin input clock (at -8.89 5.08 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "C" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -8.89 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "E" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -8.89 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at -8.89 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at -8.89 -5.08 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "R" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Q" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:DLT" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "LT" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "DLT_0_1" (rectangle (start -6.35 6.35) (end 6.35 -6.35) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "DLT_1_1" (pin input line (at -8.89 5.08 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "G" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -8.89 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "E" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -8.89 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at -8.89 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at -8.89 -5.08 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "R" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Q" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:FA" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "FA_0_1" (rectangle (start -2.54 2.54) (end 2.54 -2.54) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "FA_1_1" (text "+" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "A" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "B" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "CO" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 -5.08 90) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "CI" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT1_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 0.762) (end -1.524 0.254) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.254) (end -1.524 -0.762) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT1_1_1" (pin input line (at -5.08 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2 with C_I mux" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX invert/mask" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX invert/mask_0_1" (rectangle (start -3.81 5.08) (end 3.81 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.302 -5.588) (xy -3.302 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.302 -5.588) (xy 4.318 -5.588) (xy 4.318 4.572) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 3.048) (xy -1.778 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 3.048) (xy -1.016 3.048) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 2.54) (xy -3.302 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 1.27) (xy -3.302 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 0) (xy -3.302 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.508) (xy -1.27 -0.508) (xy -1.778 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0.762 1.27) (mid 0.1142 -0.0398) (end -1.27 -0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start -1.016 3.048) (mid 0.2412 2.5272) (end 0.762 1.27) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0.762 4.064) (mid 1.3933 2.54) (end 0.762 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 1.27 4.064) (mid 1.9012 2.54) (end 1.27 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.016 3.81) (xy -3.302 3.81) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 3.302 2.54) (mid 2.6016 1.3572) (end 1.27 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 1.27 4.064) (mid 2.6016 3.7228) (end 3.3018 2.5398) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 4.318 4.572) (xy 3.81 4.572) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX invert/mask_1_1" (text "C" (at -3.048 4.318 0) (effects (font (size 0.75 0.75) ) ) ) (text "E" (at -3.048 3.048 0) (effects (font (size 0.75 0.75) ) ) ) (text "X" (at -3.048 1.778 0) (effects (font (size 0.75 0.75) ) ) ) (text "M" (at -3.048 0.508 0) (effects (font (size 0.75 0.75) ) ) ) (text "(x4)" (at 3.556 -6.604 0) (effects (font (size 1 1) ) ) ) (pin input line (at -6.35 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "E" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 3.81 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 1.27 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 -1.27 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 -3.81 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2_0_1" (polyline (pts (xy -2.54 -2.54) (xy -2.54 2.54) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2 (conceptual)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2 (conceptual)_1_1" (polyline (pts (xy -2.54 -2.54) (xy -2.54 2.54) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2B_0_1" (polyline (pts (xy -5.08 2.54) (xy -5.08 -2.54) (xy 5.08 -1.27) (xy 5.08 1.27) (xy -5.08 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2B_1_1" (pin input line (at -7.62 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4_0_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX4_1_1" (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX4 (conceptual)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4 (conceptual)_1_1" (polyline (pts (xy -5.08 -5.08) (xy -5.08 5.08) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -5.08 -5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -7.62 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 6.35 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX4 (conceptual) (upside down)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 5.588 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4 (conceptual) (upside down)_1_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 7.62 2.54) (xy 7.62 -2.54) (xy -2.54 -5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 -7.62 90) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 -6.35 90) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 10.16 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX8" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 1.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX8_0_1" (polyline (pts (xy -2.54 -10.16) (xy -2.54 10.16) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -2.54 -10.16) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX8_1_1" (pin input line (at -5.08 8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D5" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D6" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D7" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 12.7 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 10.16 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S2" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:NAND" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NAND_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:NOT" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:OA21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OA21_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 5.08) (mid 3.4857 3.9653) (end 3.81 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 2.54) (mid 3.5375 1.0887) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 4.971 0.4809) (end 2.5398 0.0002) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.5398 5.0798) (mid 4.9709 4.599) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:OR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XNOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XNOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XOR3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR3_0_1" (arc (start -3.048 3.81) (mid 0.5351 3.0623) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.6095 -2.8827) (end -2.794 -3.556) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "XOR3_1_1" (arc (start -3.81 3.81) (mid -2.464 2.0874) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.9759 0.0685) (mid -2.4353 -2.0687) (end -3.7813 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.0193 3.7913) (mid -1.6733 2.0687) (end -1.2139 -0.0685) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2139 0.0685) (mid -1.6733 -2.0687) (end -3.0193 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (rectangle (start 215.9 223.266) (end 246.38 246.38) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 23e2f808-0d22-4a09-906e-852cfb199a97) ) (rectangle (start 215.9 205.74) (end 246.38 219.202) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 34223f28-a848-4b75-ab34-391958ebf8cc) ) (rectangle (start 12.7 50.8) (end 147.066 230.886) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 5192388f-1f6a-472f-b884-2802a39853b8) ) (rectangle (start 330.2 50.8) (end 390.906 223.52) (stroke (width 0) (type default) ) (fill (type none) ) (uuid d444cb42-998c-47f5-b297-bdf808fbe420) ) (rectangle (start 154.94 50.8) (end 309.372 152.654) (stroke (width 0) (type default) ) (fill (type none) ) (uuid d9643f9e-6a73-4ad1-b3cf-8b7737488d8f) ) (rectangle (start 215.9 190.5) (end 246.38 203.2) (stroke (width 0) (type default) ) (fill (type none) ) (uuid e0d1fd18-38bf-4826-90a5-1599a32c2d3c) ) (text "C_L_D" (exclude_from_sim no) (at 241.3 105.664 0) (effects (font (size 1.27 1.27) ) ) (uuid "0164df3c-3385-464b-a371-6731f85f17ba") ) (text "C_R" (exclude_from_sim no) (at 185.42 91.948 0) (effects (font (size 1.27 1.27) ) ) (uuid "01f512e1-fd72-48d2-bf40-33d692595a60") ) (text "C_Y12" (exclude_from_sim no) (at 355.6 85.344 0) (effects (font (size 1.27 1.27) ) ) (uuid "098fe286-c7f2-4545-9d26-4f6e886f154d") ) (text "C_SELX" (exclude_from_sim no) (at 336.55 157.734 0) (effects (font (size 1 1) ) ) (uuid "0a02cf64-b982-440f-8346-b4d3eb411a30") ) (text "L00" (exclude_from_sim no) (at 30.48 77.724 0) (effects (font (size 1.27 1.27) ) ) (uuid "0f11b300-4d65-4122-9bd8-68b3c632301e") ) (text "MUX4b" (exclude_from_sim no) (at 43.18 137.16 0) (effects (font (size 1.27 1.27) ) ) (uuid "14318a55-a872-4a75-8dc6-dc0c58ae5c90") ) (text "C_PY1_I" (exclude_from_sim no) (at 368.3 174.244 0) (effects (font (size 1.27 1.27) ) ) (uuid "14a1f5f8-9860-45e4-931a-5730410465b1") ) (text "In multiplier mode,\nthe LUTs should be set up as:\nL10 = (A[1] & B[0]) ^ SI[1]\nL11 = (A[0] & B[0]) ^ SI[0]" (exclude_from_sim no) (at 57.15 159.004 0) (effects (font (size 1.27 1.27) ) ) (uuid "150332c5-ea70-4510-94cf-69a669adcc7d") ) (text "D LATCH" (exclude_from_sim no) (at 224.79 91.44 0) (effects (font (size 1.27 1.27) ) ) (uuid "16e8c2dd-0234-434e-b328-56fb082a5f62") ) (text "C_SN[0]" (exclude_from_sim no) (at 26.67 175.514 0) (effects (font (size 1 1) ) ) (uuid "17d31f77-cc32-43c8-9aca-dbe0be6c3a58") ) (text "C_SELY1" (exclude_from_sim no) (at 336.55 186.944 0) (effects (font (size 1 1) ) ) (uuid "194e341c-6ac6-4446-844e-dd92045b8f20") ) (text "C_I2" (exclude_from_sim no) (at 25.4 89.154 0) (effects (font (size 1.27 1.27) ) ) (uuid "1aad5126-7799-4d7b-babb-cda8ad3cfda9") ) (text "C = L10\nX = L11" (exclude_from_sim no) (at 30.48 64.262 0) (effects (font (size 1 1) ) ) (uuid "1b8a4096-7b5f-45d3-9674-5f6edeb3ab49") ) (text "C_FUNCTION=\n0: (none)\n1; \"C_ADDF\": C_ADDF, C_ADDCIN\n2; \"C_ADDF2\": C_ADDF, C_ADDF2, C_ADDCIN\n3; \"C_MULT\": C_MULT, C_ADDF, C_ADDF2, C_ADDCIN\n4; \"C_MX4\": C_MX4\n5; \"C_EN_CIN\": C_EN_CIN\n6; \"C_CONCAT\": C_ADDF\n7; \"C_ADDCIN\": C_ADDCIN" (exclude_from_sim no) (at 47.752 36.83 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "1fa9241d-d7f0-4e8c-a209-30223160859e") ) (text "C_2D_IN" (exclude_from_sim no) (at 177.8 132.334 0) (effects (font (size 1 1) ) ) (uuid "1fc4ea99-595c-4f8b-905a-0feec334a802") ) (text "C_COMP" (exclude_from_sim no) (at 336.55 179.324 0) (effects (font (size 1 1) ) ) (uuid "218421b9-3fea-4995-8f68-b59b3b1a3dfd") ) (text "C_HORIZ" (exclude_from_sim no) (at 336.55 181.864 0) (effects (font (size 1 1) ) ) (uuid "29a15f1a-46f5-475c-bcff-58a9d5fe19ed") ) (text "C_O1[0]" (exclude_from_sim no) (at 274.32 101.854 0) (effects (font (size 1.27 1.27) ) ) (uuid "2c90543f-c1fa-4ad9-b087-c076c7fb81bc") ) (text "C_I1" (exclude_from_sim no) (at 25.4 76.454 0) (effects (font (size 1.27 1.27) ) ) (uuid "2e774f55-4e5e-4925-a420-fec8d5050246") ) (text "C_RAM_O1\n" (exclude_from_sim no) (at 287.02 114.554 0) (effects (font (size 1.27 1.27) ) ) (uuid "333b8194-5c04-4d11-8de1-f7bd79cf467f") ) (text "C_RAMI2" (exclude_from_sim no) (at 302.514 141.224 0) (effects (font (size 1.27 1.27) ) ) (uuid "3d300d51-38b9-44e2-9456-dc79e9ea2d93") ) (text "C_EN" (exclude_from_sim no) (at 170.18 82.042 0) (effects (font (size 1.27 1.27) ) ) (uuid "3f3b2a3f-dceb-49b5-9fa3-24e82a955fd8") ) (text "C_BR" (exclude_from_sim no) (at 98.806 203.454 0) (effects (font (size 1.27 1.27) ) ) (uuid "4057b396-8332-4163-86ea-97a97cce548c") ) (text "C_SELY2" (exclude_from_sim no) (at 336.55 119.634 0) (effects (font (size 1 1) ) ) (uuid "443e30c7-4683-4077-a2be-411ba4ddc413") ) (text "C_SEL_P" (exclude_from_sim no) (at 336.55 155.194 0) (effects (font (size 1 1) ) ) (uuid "48c83cb3-b431-42f6-ae66-7516ddda5798") ) (text "This diagram is intended to be functionally correct, but when given a choice between ease of understanding\nand physical accuracy, I always chose the former.\n\nDashed symbols represent where I'm describing something physically inaccurate.\n- Hannah Ravensloft" (exclude_from_sim no) (at 300.482 254 0) (effects (font (size 1.27 1.27) ) (justify left top) ) (uuid "491c254f-3f5f-4d07-852e-55c13b734f9a") ) (text "C_COMP" (exclude_from_sim no) (at 336.55 140.97 0) (effects (font (size 1 1) ) ) (uuid "49b44ef1-4ab8-4666-bc8e-f62edfe6815c") ) (text "C_C_P" (exclude_from_sim no) (at 251.714 63.754 0) (effects (font (size 1.27 1.27) ) ) (uuid "4a20ae2f-d514-4782-8195-d3f1e0e284c7") ) (text "C_HORIZ" (exclude_from_sim no) (at 27.686 124.714 0) (effects (font (size 1.27 1.27) ) ) (uuid "4f1ce138-c086-4870-a9eb-974365904397") ) (text "C_2D_IN" (exclude_from_sim no) (at 68.58 207.264 0) (effects (font (size 1 1) ) ) (uuid "52e2b236-6603-471e-8779-eeaae19074bd") ) (text "LUT2 WITH C_I MUX" (exclude_from_sim no) (at 231.14 208.534 0) (effects (font (size 1.27 1.27) ) ) (uuid "58601fc5-1322-4154-9597-6d8c029d1237") ) (text "LUT2" (exclude_from_sim no) (at 231.14 191.77 0) (effects (font (size 1.27 1.27) ) ) (uuid "592adedf-6049-4203-b6bc-335d3cd16463") ) (text "C_I3" (exclude_from_sim no) (at 25.4 101.854 0) (effects (font (size 1.27 1.27) ) ) (uuid "601209ef-b2a1-421c-9156-53eb1b50d87e") ) (text "C_O2[0]" (exclude_from_sim no) (at 274.32 134.874 0) (effects (font (size 1.27 1.27) ) ) (uuid "62ec438c-fdb9-475c-b78d-801ac6b832e7") ) (text "C_ENSEL" (exclude_from_sim no) (at 179.07 82.804 0) (effects (font (size 1 1) ) ) (uuid "65d82ff9-10eb-4ad3-8c76-e7a21b77fcad") ) (text "Because of the inverted D input,\nthe SET/RST signals go to the\nR/S ports of the flops and\nlatches respectively." (exclude_from_sim no) (at 227.33 79.756 0) (effects (font (size 1.27 1.27) ) ) (uuid "6657b4af-3da6-45e8-8994-e23915d97bf8") ) (text "C_CLK" (exclude_from_sim no) (at 170.18 71.374 0) (effects (font (size 1 1) ) ) (uuid "68dd41f6-00ff-47db-9c86-e98d94475cb0") ) (text "L20" (exclude_from_sim no) (at 99.06 104.394 0) (effects (font (size 1.27 1.27) ) ) (uuid "69bbb9a8-9a4f-447e-83bb-cd06492eda6f") ) (text "C_CLK" (exclude_from_sim no) (at 25.4 203.454 0) (effects (font (size 1 1) ) ) (uuid "6b871c03-e83f-41de-9a44-ac8d3207d708") ) (text "MUX4 INPUT INVERSION\nAND MASKING" (exclude_from_sim no) (at 231.394 226.314 0) (effects (font (size 1.27 1.27) ) ) (uuid "728b04ea-0140-477a-85f4-78ca1e481cd1") ) (text "C_CY2_I" (exclude_from_sim no) (at 367.03 117.094 0) (effects (font (size 1.27 1.27) ) ) (uuid "73853691-b7f2-40c5-8aeb-c9a0b063ac24") ) (text "C_Y12" (exclude_from_sim no) (at 350.52 171.704 0) (effects (font (size 1.27 1.27) ) ) (uuid "848100ff-5b5d-4b85-9332-6f7e5d4c8e0c") ) (text "L02" (exclude_from_sim no) (at 30.48 103.124 0) (effects (font (size 1.27 1.27) ) ) (uuid "8a87f480-0798-4839-a686-eba696122112") ) (text "C_CX_I" (exclude_from_sim no) (at 336.55 66.294 0) (effects (font (size 1 1) ) ) (uuid "8ff8f03e-c19a-4651-be65-9ed75069f14a") ) (text "C_CLKSEL" (exclude_from_sim no) (at 179.07 72.644 0) (effects (font (size 1 1) ) ) (uuid "91445006-c245-479d-8197-4172bd6cf2e3") ) (text "C_SEL_C" (exclude_from_sim no) (at 336.55 68.834 0) (effects (font (size 1 1) ) ) (uuid "949bc0b6-3248-4540-a7ad-0b4bcf391f04") ) (text "C_CLKSEL" (exclude_from_sim no) (at 34.29 204.724 0) (effects (font (size 1 1) ) ) (uuid "95599988-4064-451b-acfc-48659aa82787") ) (text "C_PX_I" (exclude_from_sim no) (at 336.55 152.654 0) (effects (font (size 1 1) ) ) (uuid "97abbefe-1e94-4ac0-a58d-187bae43a690") ) (text "C_SN[2]" (exclude_from_sim no) (at 26.67 170.434 0) (effects (font (size 1 1) ) ) (uuid "97df9cf1-743f-4739-877a-fd47c54d1283") ) (text "C_BR" (exclude_from_sim no) (at 98.806 193.294 0) (effects (font (size 1.27 1.27) ) ) (uuid "986a1e47-cd84-4e16-8f61-5149c6eec5fb") ) (text "SYMBOL LEGEND" (exclude_from_sim no) (at 231.14 185.674 0) (effects (font (size 1.27 1.27) ) ) (uuid "98e06da0-1198-4619-b017-7033f8353935") ) (text "C_COMP_I" (exclude_from_sim no) (at 373.38 162.814 0) (effects (font (size 1.27 1.27) ) ) (uuid "99b6407b-9ac3-4df4-a0b8-a55f742917eb") ) (text "C_EN" (exclude_from_sim no) (at 25.4 193.802 0) (effects (font (size 1.27 1.27) ) ) (uuid "9dd9812e-0a28-49d9-993a-ee75d4d4d968") ) (text "C_SELY1" (exclude_from_sim no) (at 336.55 100.584 0) (effects (font (size 1 1) ) ) (uuid "9e191ea6-8cc1-494d-939d-c9ef1de022e7") ) (text "C_R" (exclude_from_sim no) (at 25.4 183.388 0) (effects (font (size 1.27 1.27) ) ) (uuid "9ea31464-1e10-4ed2-bef5-85fc0a115774") ) (text "L03" (exclude_from_sim no) (at 30.48 115.824 0) (effects (font (size 1.27 1.27) ) ) (uuid "a1e000ca-4487-4b55-b99b-6032c298f5c9") ) (text "C_EN_SR" (exclude_from_sim no) (at 172.72 96.774 0) (effects (font (size 1.27 1.27) ) ) (uuid "a26bc271-1d34-4b2b-a291-9020f6891c8f") ) (text "C_RAMI1" (exclude_from_sim no) (at 302.006 108.204 0) (effects (font (size 1.27 1.27) ) ) (uuid "a509d996-b2ec-4715-997c-79132afbc777") ) (text "PROPAGATE" (exclude_from_sim no) (at 140.97 77.978 0) (effects (font (size 1.27 1.27) ) ) (uuid "a68854e0-59ad-4d4a-a901-0ac76e1749e1") ) (text "D FLIP FLOP" (exclude_from_sim no) (at 224.79 106.68 0) (effects (font (size 1.27 1.27) ) ) (uuid "a720b461-0483-4226-badf-e4cbb9c35f99") ) (text "C_SEL_P" (exclude_from_sim no) (at 336.55 184.404 0) (effects (font (size 1 1) ) ) (uuid "ad956325-12b2-4c37-af2f-49bb93bc8220") ) (text "SEQUENTIAL LOGIC" (exclude_from_sim no) (at 299.72 151.384 0) (effects (font (size 1.27 1.27) ) ) (uuid "aed34ca7-becd-4272-9df7-1c090e99ee33") ) (text "C_SEL_P" (exclude_from_sim no) (at 336.55 203.454 0) (effects (font (size 1 1) ) ) (uuid "b00bd420-c46e-4640-b960-947c66689548") ) (text "C_L_D" (exclude_from_sim no) (at 241.3 138.684 0) (effects (font (size 1.27 1.27) ) ) (uuid "b31231dd-d6f0-470b-af2a-c3bf8d7e8f33") ) (text "L10" (exclude_from_sim no) (at 63.5 89.154 0) (effects (font (size 1.27 1.27) ) ) (uuid "b404cdd8-9b3e-4c26-933c-a9583cd38d13") ) (text "MUX4a" (exclude_from_sim no) (at 48.26 61.214 0) (effects (font (size 1.27 1.27) ) ) (uuid "ba55d24b-a8d1-48b4-8402-8b169cace1cd") ) (text "C_SEL_C" (exclude_from_sim no) (at 336.55 117.094 0) (effects (font (size 1 1) ) ) (uuid "bb971507-bb9d-48d2-82ee-284fdff3ff57") ) (text "C_I4" (exclude_from_sim no) (at 25.4 114.554 0) (effects (font (size 1.27 1.27) ) ) (uuid "bf6efa09-22bc-4118-9823-973d264ee7b0") ) (text "C_RAM_O2" (exclude_from_sim no) (at 287.02 147.574 0) (effects (font (size 1.27 1.27) ) ) (uuid "c1cb4017-a053-4b6f-9f08-4415ac31fdbb") ) (text "GENERATE" (exclude_from_sim no) (at 141.986 114.554 0) (effects (font (size 1.27 1.27) ) ) (uuid "c20f2d8d-2bd7-4250-aaed-2869f565373a") ) (text "L11" (exclude_from_sim no) (at 63.5 104.394 0) (effects (font (size 1.27 1.27) ) ) (uuid "c59cbefe-4c6a-4202-af6f-1a2c825ce4e4") ) (text "C_HORIZ" (exclude_from_sim no) (at 219.71 70.104 0) (effects (font (size 1.27 1.27) ) ) (uuid "ccd2ec81-c8b8-4cca-a104-a26e1e3766a9") ) (text "L01" (exclude_from_sim no) (at 30.48 90.424 0) (effects (font (size 1.27 1.27) ) ) (uuid "d08fe5f8-0c12-4096-ac79-5df95def021a") ) (text "C_ENSEL" (exclude_from_sim no) (at 34.29 194.564 0) (effects (font (size 1 1) ) ) (uuid "d2384115-10f3-4f9c-97bc-bce24c158efd") ) (text "COMBINATIONAL LOGIC" (exclude_from_sim no) (at 134.112 230.124 0) (effects (font (size 1.27 1.27) ) ) (uuid "d4777ca7-f33d-49fa-9ad5-2dcc3fc9760a") ) (text "D FLIP FLOP" (exclude_from_sim no) (at 225.044 139.7 0) (effects (font (size 1.27 1.27) ) ) (uuid "d49b59b9-b139-484b-b2a8-451f5cf4de80") ) (text "C_C_P" (exclude_from_sim no) (at 251.714 56.134 0) (effects (font (size 1.27 1.27) ) ) (uuid "d77eaa3b-b331-4fda-8ee4-603b4fe9993a") ) (text "C_CY1_I" (exclude_from_sim no) (at 369.824 87.884 0) (effects (font (size 1.27 1.27) ) ) (uuid "d88a40e5-0b1b-468f-8256-7c56e4b69e30") ) (text "C_BR" (exclude_from_sim no) (at 177.8 129.794 0) (effects (font (size 1.27 1.27) ) ) (uuid "d927ab6f-b2d1-41b9-947b-4dc6c05f68bb") ) (text "C_SN[1]" (exclude_from_sim no) (at 26.67 172.974 0) (effects (font (size 1 1) ) ) (uuid "d934f2b0-50ab-4ad8-97b3-588b83c9a85c") ) (text "C_S" (exclude_from_sim no) (at 185.42 99.568 0) (effects (font (size 1.27 1.27) ) ) (uuid "dbe62ee1-9ef1-4168-b7b8-26a2611d8d43") ) (text "C = L11\nX = L10" (exclude_from_sim no) (at 27.94 140.208 0) (effects (font (size 1 1) ) ) (uuid "dc83a431-cbbc-40ab-96c9-299f2a7982dd") ) (text "C_COMP_I" (exclude_from_sim no) (at 356.87 197.104 0) (effects (font (size 1.27 1.27) ) ) (uuid "de1985be-9a4f-47f1-9922-d194dfc491b1") ) (text "C_PY2_I" (exclude_from_sim no) (at 369.316 203.454 0) (effects (font (size 1.27 1.27) ) ) (uuid "e0bb3a91-b754-443a-aa92-282c95a6ba17") ) (text "C_SELY2" (exclude_from_sim no) (at 336.55 205.994 0) (effects (font (size 1 1) ) ) (uuid "e3e0904c-1c0b-44c0-8653-2e7b0cc999c1") ) (text "C_SEL_C" (exclude_from_sim no) (at 336.55 98.044 0) (effects (font (size 1 1) ) ) (uuid "e7dd417d-51b6-4d16-a53b-633409ad4951") ) (text "CARRY/PROPAGATE LINES" (exclude_from_sim no) (at 378.46 222.504 0) (effects (font (size 1.27 1.27) ) ) (uuid "ead5db60-fad0-4d45-9714-5da0f47b9745") ) (text "C_HORIZ" (exclude_from_sim no) (at 336.55 95.504 0) (effects (font (size 1 1) ) ) (uuid "ed04e91b-5a40-4c96-bc40-f33bc8efbfae") ) (text "C_O1[1]" (exclude_from_sim no) (at 274.32 99.314 0) (effects (font (size 1.27 1.27) ) ) (uuid "edd01012-5cad-42b3-a381-508bc42ae7c7") ) (text "C_O2[1]" (exclude_from_sim no) (at 274.32 132.334 0) (effects (font (size 1.27 1.27) ) ) (uuid "f1117918-9f9e-421b-9f19-487d2b237272") ) (text "C_HORIZ" (exclude_from_sim no) (at 336.55 143.764 0) (effects (font (size 1 1) ) ) (uuid "f11cb4b3-a294-4627-9787-565b3f73da2f") ) (text "D LATCH" (exclude_from_sim no) (at 224.79 124.46 0) (effects (font (size 1.27 1.27) ) ) (uuid "f63deee9-32e8-4e5e-95c5-cb9ee4a62c51") ) (text "C_BR" (exclude_from_sim no) (at 98.806 183.134 0) (effects (font (size 1.27 1.27) ) ) (uuid "f669fc07-0321-4240-abaa-b29f3567ef15") ) (text "C_HORIZ" (exclude_from_sim no) (at 336.55 57.404 0) (effects (font (size 1 1) ) ) (uuid "fb08d326-37cc-4ddf-bfbc-3921a60397aa") ) (text "C_SELX" (exclude_from_sim no) (at 336.55 71.374 0) (effects (font (size 1 1) ) ) (uuid "ff0a0553-53c2-4b8f-b768-632ee934d149") ) (junction (at 351.79 66.04) (diameter 0) (color 0 0 0 0) (uuid "0280e48d-4579-470c-ac30-b99536547b74") ) (junction (at 172.72 140.97) (diameter 0) (color 0 0 0 0) (uuid "0846e553-9a11-42a7-9295-33b7158346c5") ) (junction (at 78.74 153.67) (diameter 0) (color 0 0 0 0) (uuid "0aa44827-de73-45b0-a0b3-c39fd423279c") ) (junction (at 45.72 116.84) (diameter 0) (color 0 0 0 0) (uuid "0e836b3a-fa98-4604-931c-ec7ae5c4fd26") ) (junction (at 205.74 127) (diameter 0) (color 0 0 0 0) (uuid "0f54e9dd-05e4-4b7c-b34d-e7d83c9e2fab") ) (junction (at 213.36 106.68) (diameter 0) (color 0 0 0 0) (uuid "0fb714df-ab28-42e0-a550-8c884cfa902a") ) (junction (at 203.2 111.76) (diameter 0) (color 0 0 0 0) (uuid "13091fa9-a772-4369-a7fa-cf627324404e") ) (junction (at 71.12 85.09) (diameter 0) (color 0 0 0 0) (uuid "141e2813-64d3-44d1-86fd-4e3c2958d1a5") ) (junction (at 43.18 83.82) (diameter 0) (color 0 0 0 0) (uuid "1ca99fc7-72b3-4815-8e3d-f04d42ba9ba8") ) (junction (at 369.57 123.19) (diameter 0) (color 0 0 0 0) (uuid "1da57b7a-753f-4078-8df0-0bef00206688") ) (junction (at 48.26 111.76) (diameter 0) (color 0 0 0 0) (uuid "1e82fba1-e806-44e0-baf1-0b3cde3a97fa") ) (junction (at 71.12 76.2) (diameter 0) (color 0 0 0 0) (uuid "1f9ceb82-1b96-44b6-bb7a-6c33d573c318") ) (junction (at 71.12 105.41) (diameter 0) (color 0 0 0 0) (uuid "23ed58b1-42ba-4d92-8b5f-05a649a4b700") ) (junction (at 73.66 100.33) (diameter 0) (color 0 0 0 0) (uuid "264d4d60-9087-4fe3-b93d-900c082e675b") ) (junction (at 45.72 109.22) (diameter 0) (color 0 0 0 0) (uuid "273252aa-aa40-48b0-aa0c-513af70cdc89") ) (junction (at 210.82 101.6) (diameter 0) (color 0 0 0 0) (uuid "32a47909-2357-4d05-ae54-7d359aead426") ) (junction (at 203.2 129.54) (diameter 0) (color 0 0 0 0) (uuid "3a5d1f7d-be1f-48a2-a4b9-7dbdebdff750") ) (junction (at 369.57 180.34) (diameter 0) (color 0 0 0 0) (uuid "3f4843b2-8777-40d9-a610-91c74b33723d") ) (junction (at 48.26 124.46) (diameter 0) (color 0 0 0 0) (uuid "3f5c83b0-b02a-4e73-9a85-6ff64e58f538") ) (junction (at 48.26 119.38) (diameter 0) (color 0 0 0 0) (uuid "40f34b6b-9f6a-44f1-b2f3-0f2cc3dc5e86") ) (junction (at 213.36 139.7) (diameter 0) (color 0 0 0 0) (uuid "42c94e57-322d-4ad5-ae47-5c713ff26ffe") ) (junction (at 203.2 96.52) (diameter 0) (color 0 0 0 0) (uuid "43a7fe3b-7577-4715-aeec-65f800f39c3e") ) (junction (at 68.58 170.18) (diameter 0) (color 0 0 0 0) (uuid "4da69f45-2ad1-49f8-90a6-54e13606195b") ) (junction (at 106.68 147.32) (diameter 0) (color 0 0 0 0) (uuid "5cba8217-39d3-408d-8de0-4e878a956e40") ) (junction (at 208.28 121.92) (diameter 0) (color 0 0 0 0) (uuid "65da7bf4-54a5-4f0b-a040-abace786f7c6") ) (junction (at 294.64 142.24) (diameter 0) (color 0 0 0 0) (uuid "6afb27c1-0f73-4b7d-ace0-b0e619db0d51") ) (junction (at 109.22 162.56) (diameter 0) (color 0 0 0 0) (uuid "6b5ceb66-b9c9-4cbe-bfa1-3a18ad9b4d9b") ) (junction (at 43.18 114.3) (diameter 0) (color 0 0 0 0) (uuid "7362fddd-c130-420c-946c-d7a7a2472d37") ) (junction (at 88.9 88.9) (diameter 0) (color 0 0 0 0) (uuid "7e4e9026-250e-43bb-a425-aa07f6783b75") ) (junction (at 116.84 144.78) (diameter 0) (color 0 0 0 0) (uuid "7f346cf5-7a79-4c8b-85bb-4ee7bd73811f") ) (junction (at 369.57 93.98) (diameter 0) (color 0 0 0 0) (uuid "8a531d68-682f-494b-a113-c50108c38ed9") ) (junction (at 243.84 62.23) (diameter 0) (color 0 0 0 0) (uuid "8ae9154c-f64b-4246-a3e9-8f1dd0908584") ) (junction (at 124.46 101.6) (diameter 0) (color 0 0 0 0) (uuid "8b098efe-c12e-4f9f-abb3-19d3384dc038") ) (junction (at 205.74 93.98) (diameter 0) (color 0 0 0 0) (uuid "8b2c65aa-521e-4d0d-b439-71d52ab97621") ) (junction (at 241.3 54.61) (diameter 0) (color 0 0 0 0) (uuid "8c4e62dc-ffa8-4979-ae5f-d35929e560da") ) (junction (at 351.79 152.4) (diameter 0) (color 0 0 0 0) (uuid "8cd8a0d1-61a4-4e88-b24e-628372d20d8e") ) (junction (at 236.22 67.31) (diameter 0) (color 0 0 0 0) (uuid "90839b1d-6b0a-4c81-9660-babaeb51618f") ) (junction (at 294.64 109.22) (diameter 0) (color 0 0 0 0) (uuid "928acc3a-062f-424a-b288-738f16deb577") ) (junction (at 93.98 83.82) (diameter 0) (color 0 0 0 0) (uuid "92b9d8df-03e1-4139-96a8-749159db8cea") ) (junction (at 81.28 116.84) (diameter 0) (color 0 0 0 0) (uuid "98cba5b0-c0ec-4405-8a1d-7c1c50e21897") ) (junction (at 116.84 162.56) (diameter 0) (color 0 0 0 0) (uuid "9af576d4-6ceb-4517-b767-5a97c6294c8f") ) (junction (at 205.74 109.22) (diameter 0) (color 0 0 0 0) (uuid "9c8804ae-f1ea-4d0f-8462-8a01b0559aaa") ) (junction (at 50.8 101.6) (diameter 0) (color 0 0 0 0) (uuid "9f9c3f1d-98ac-47a2-bd20-06209452a654") ) (junction (at 210.82 86.36) (diameter 0) (color 0 0 0 0) (uuid "a213e93d-c11b-4511-827a-8bd3982e35f0") ) (junction (at 106.68 153.67) (diameter 0) (color 0 0 0 0) (uuid "aa4c35d4-a00e-4856-a00e-76fd4f761f77") ) (junction (at 73.66 78.74) (diameter 0) (color 0 0 0 0) (uuid "aca5434d-bb18-4118-813f-9c3eccfb0eb0") ) (junction (at 63.5 175.26) (diameter 0) (color 0 0 0 0) (uuid "b082e255-036a-4826-91ab-ed0f8d4339ca") ) (junction (at 66.04 172.72) (diameter 0) (color 0 0 0 0) (uuid "b967b863-501e-4ca4-92c8-fc6fad05669f") ) (junction (at 48.26 99.06) (diameter 0) (color 0 0 0 0) (uuid "c192f752-8c5f-4f6b-a84f-eba02c32b431") ) (junction (at 208.28 88.9) (diameter 0) (color 0 0 0 0) (uuid "c68c910f-98b2-448b-9e59-cd38bbd4492d") ) (junction (at 40.64 124.46) (diameter 0) (color 0 0 0 0) (uuid "ca9bcc5a-baf6-4fd0-9c58-020f4e574250") ) (junction (at 208.28 104.14) (diameter 0) (color 0 0 0 0) (uuid "cb2ef060-ed3b-49c9-9969-1d6e8c14276f") ) (junction (at 95.25 119.38) (diameter 0) (color 0 0 0 0) (uuid "cb67d65c-77cc-4ea5-9ae5-9c63e8b0dee8") ) (junction (at 106.68 167.64) (diameter 0) (color 0 0 0 0) (uuid "db61bc56-149d-4458-ad96-e18a94cf4fc2") ) (junction (at 121.92 85.09) (diameter 0) (color 0 0 0 0) (uuid "dd9f6cbf-bb19-4576-aa6c-8872f87a0d50") ) (junction (at 124.46 160.02) (diameter 0) (color 0 0 0 0) (uuid "e233f06e-90be-4035-90e4-b7e33f32598e") ) (junction (at 210.82 119.38) (diameter 0) (color 0 0 0 0) (uuid "e79710f5-ca7d-4786-be46-de65853ccf87") ) (junction (at 45.72 86.36) (diameter 0) (color 0 0 0 0) (uuid "ea25e937-4023-45ed-a113-24eaa1c3bd5b") ) (junction (at 43.18 106.68) (diameter 0) (color 0 0 0 0) (uuid "eca2feba-b8e3-4968-abe1-2b7f1c6abc34") ) (junction (at 106.68 120.65) (diameter 0) (color 0 0 0 0) (uuid "f5fb4720-b215-40dc-88d0-f924de31e7ea") ) (no_connect (at 76.2 176.53) (uuid "c0008a24-99bb-47b5-b189-ed6d31d5309e") ) (wire (pts (xy 344.17 71.12) (xy 368.3 71.12) ) (stroke (width 0) (type default) ) (uuid "00bc1e8f-979f-41ee-84d5-411036eec908") ) (wire (pts (xy 88.9 71.12) (xy 88.9 74.93) ) (stroke (width 0) (type default) ) (uuid "00de7a5d-026b-47bf-8f45-3fc110a47bfb") ) (wire (pts (xy 210.82 86.36) (xy 210.82 68.58) ) (stroke (width 0) (type default) ) (uuid "012e3744-e64d-46c4-84c0-92d66378df1e") ) (wire (pts (xy 157.48 140.97) (xy 172.72 140.97) ) (stroke (width 0) (type default) ) (uuid "01e61557-e286-49d4-b987-03bb491f4fed") ) (wire (pts (xy 180.34 140.97) (xy 172.72 140.97) ) (stroke (width 0) (type default) ) (uuid "02029df3-7a9b-40e9-8a50-293b9eaa16c4") ) (wire (pts (xy 78.74 162.56) (xy 86.36 162.56) ) (stroke (width 0) (type default) ) (uuid "02548ec6-22c0-465e-9694-1353f6707f57") ) (wire (pts (xy 116.84 85.09) (xy 121.92 85.09) ) (stroke (width 0) (type default) ) (uuid "03395186-affd-4d4d-bda2-66fbe7efb14d") ) (wire (pts (xy 111.76 182.88) (xy 111.76 210.82) ) (stroke (width 0) (type default) ) (uuid "033b3400-2dd0-465a-aef7-d8f30cdd4ec8") ) (wire (pts (xy 208.28 78.74) (xy 208.28 88.9) ) (stroke (width 0) (type default) ) (uuid "0430bc75-4f07-4d6c-b195-a3a8a4c785a2") ) (wire (pts (xy 34.29 138.43) (xy 35.56 138.43) ) (stroke (width 0) (type default) ) (uuid "04341c58-77bf-4fb4-817a-12a6ea620c3b") ) (wire (pts (xy 109.22 165.1) (xy 109.22 162.56) ) (stroke (width 0) (type default) ) (uuid "046f992c-4a99-4cf3-878d-8ba2248e7aba") ) (wire (pts (xy 281.94 99.06) (xy 284.48 99.06) ) (stroke (width 0) (type default) ) (uuid "055f9852-c43e-40c8-953e-5b3164ec5938") ) (wire (pts (xy 20.32 140.97) (xy 21.59 140.97) ) (stroke (width 0) (type default) ) (uuid "0561e9d7-0e61-4a44-add1-71db3c981690") ) (wire (pts (xy 116.84 162.56) (xy 127 162.56) ) (stroke (width 0) (type default) ) (uuid "06935144-9b00-4af8-bd66-c089af044169") ) (wire (pts (xy 190.5 88.9) (xy 205.74 88.9) ) (stroke (width 0) (type default) ) (uuid "07124786-ee53-4f55-996a-c5321b085d6a") ) (wire (pts (xy 20.32 133.35) (xy 21.59 133.35) ) (stroke (width 0) (type default) ) (uuid "07b8e291-75d8-44e5-b883-69e6d57eaffa") ) (wire (pts (xy 36.83 59.69) (xy 40.64 59.69) ) (stroke (width 0) (type default) ) (uuid "07f4f761-49ee-49ea-bc53-b3c8a49a8c4d") ) (wire (pts (xy 266.7 107.95) (xy 276.86 107.95) ) (stroke (width 0) (type default) ) (uuid "0803dc40-e96a-47b0-aa61-f19fd25ac741") ) (wire (pts (xy 157.48 135.89) (xy 180.34 135.89) ) (stroke (width 0) (type default) ) (uuid "0807c699-4b74-4bfb-a376-33617cfbaf75") ) (wire (pts (xy 369.57 180.34) (xy 369.57 190.5) ) (stroke (width 0) (type default) ) (uuid "09056558-18fe-41fe-beda-d5d48f6e19b2") ) (wire (pts (xy 124.46 144.78) (xy 124.46 160.02) ) (stroke (width 0) (type default) ) (uuid "093b9e79-4691-4cfe-8b21-d4491b7bf488") ) (wire (pts (xy 78.74 144.78) (xy 106.68 144.78) ) (stroke (width 0) (type default) ) (uuid "099d4d86-708c-4f31-bc31-e16713fa422b") ) (wire (pts (xy 43.18 83.82) (xy 58.42 83.82) ) (stroke (width 0) (type default) ) (uuid "09ece085-0e6a-4785-afdf-de7d375caec5") ) (wire (pts (xy 363.22 144.78) (xy 375.92 144.78) ) (stroke (width 0) (type default) ) (uuid "0a307d13-9380-4bb4-8b03-7f1d9ba51c95") ) (wire (pts (xy 63.5 175.26) (xy 83.82 175.26) ) (stroke (width 0) (type default) ) (uuid "0a7db7cb-3c28-45ea-a62c-3418e68d759d") ) (wire (pts (xy 34.29 133.35) (xy 35.56 133.35) ) (stroke (width 0) (type default) ) (uuid "0b14e8b6-43b4-44c0-8527-b332ffa31d52") ) (wire (pts (xy 344.17 154.94) (xy 365.76 154.94) ) (stroke (width 0) (type default) ) (uuid "0b77bb1a-de0a-4b27-bfd7-f101566d36a0") ) (wire (pts (xy 83.82 137.16) (xy 50.8 137.16) ) (stroke (width 0) (type default) ) (uuid "0be08550-cba6-4b8d-9178-f890b04c1b11") ) (wire (pts (xy 35.56 120.65) (xy 38.1 120.65) ) (stroke (width 0) (type default) ) (uuid "0cad6289-f719-4882-b33c-15b0af3627e2") ) (wire (pts (xy 203.2 111.76) (xy 203.2 129.54) ) (stroke (width 0) (type default) ) (uuid "0d2404e9-595d-4efd-b4b6-9a63724cd2ae") ) (wire (pts (xy 233.68 91.44) (xy 233.68 104.14) ) (stroke (width 0) (type default) ) (uuid "0d27b65c-ff47-4513-aebd-3e5f154eb851") ) (wire (pts (xy 34.29 170.18) (xy 68.58 170.18) ) (stroke (width 0) (type default) ) (uuid "0ea798e1-8cf4-4b46-b306-80622ba35f8f") ) (wire (pts (xy 20.32 214.63) (xy 101.6 214.63) ) (stroke (width 0) (type default) ) (uuid "1006448b-a683-4ddd-8d25-5146b77cfc29") ) (wire (pts (xy 375.92 173.99) (xy 375.92 175.26) ) (stroke (width 0) (type default) ) (uuid "109b3a0d-a410-4227-a0da-29a4f494d2e7") ) (wire (pts (xy 379.73 64.77) (xy 386.08 64.77) ) (stroke (width 0) (type default) ) (uuid "10c73f41-e277-405a-a4ba-e26480f1c9f5") ) (wire (pts (xy 20.32 209.55) (xy 101.6 209.55) ) (stroke (width 0) (type default) ) (uuid "12a03682-db04-485f-ab05-bf55a4c84daa") ) (wire (pts (xy 351.79 66.04) (xy 351.79 60.96) ) (stroke (width 0) (type default) ) (uuid "12b2f907-c185-4b20-a5d1-b619d29873f4") ) (wire (pts (xy 106.68 120.65) (xy 106.68 142.24) ) (stroke (width 0) (type default) ) (uuid "13705b6b-e972-45af-b380-11f829fa29e9") ) (wire (pts (xy 81.28 181.61) (xy 91.44 181.61) ) (stroke (width 0) (type default) ) (uuid "1420c4b8-9d21-4f8c-943e-bbda02c14c49") ) (wire (pts (xy 93.98 83.82) (xy 106.68 83.82) ) (stroke (width 0) (type default) ) (uuid "156dcd80-ec51-45de-add2-354f4e5ffc78") ) (wire (pts (xy 205.74 93.98) (xy 205.74 109.22) ) (stroke (width 0) (type default) ) (uuid "15f92883-5c30-49ba-b9ce-56dd65932a54") ) (wire (pts (xy 351.79 147.32) (xy 351.79 152.4) ) (stroke (width 0) (type default) ) (uuid "1668e5a7-5d10-47e1-a756-f751cee3e3e7") ) (wire (pts (xy 386.08 64.77) (xy 386.08 72.39) ) (stroke (width 0) (type default) ) (uuid "16effaec-69c4-4260-84e9-4dd90df83857") ) (wire (pts (xy 121.92 167.64) (xy 127 167.64) ) (stroke (width 0) (type default) ) (uuid "17038f61-10cb-4aa6-b55c-868268eede08") ) (wire (pts (xy 210.82 119.38) (xy 215.9 119.38) ) (stroke (width 0) (type default) ) (uuid "1774cd9a-ef92-4969-91cd-cf3c0bf29e72") ) (wire (pts (xy 259.08 63.5) (xy 261.62 63.5) ) (stroke (width 0) (type default) ) (uuid "1a797fdb-c5fa-4452-9b0d-284bc6ec7a70") ) (wire (pts (xy 67.31 114.3) (xy 67.31 118.11) ) (stroke (width 0) (type default) ) (uuid "1b331224-1f00-4ce0-8f40-ef1f1f27e261") ) (wire (pts (xy 71.12 76.2) (xy 71.12 85.09) ) (stroke (width 0) (type default) ) (uuid "1bb10b00-76b7-41ce-bb42-ea1d0380ffa2") ) (wire (pts (xy 344.17 179.07) (xy 351.79 179.07) ) (stroke (width 0) (type default) ) (uuid "1d040234-0fa2-483d-a631-bf2046308a46") ) (wire (pts (xy 360.68 93.98) (xy 369.57 93.98) ) (stroke (width 0) (type default) ) (uuid "1d435a92-1503-40d7-a897-bc6d9b5758df") ) (wire (pts (xy 64.77 109.22) (xy 66.04 109.22) ) (stroke (width 0) (type default) ) (uuid "1dfbc450-ebd0-4781-ba96-23fbd8b677a6") ) (wire (pts (xy 351.79 194.31) (xy 364.49 194.31) ) (stroke (width 0) (type default) ) (uuid "1e9f7f3e-3f14-4d13-be16-f770f8fb7dec") ) (wire (pts (xy 96.52 162.56) (xy 109.22 162.56) ) (stroke (width 0) (type default) ) (uuid "1ea788e7-2ac7-4aca-ba64-e0bb38aae0ac") ) (wire (pts (xy 48.26 111.76) (xy 48.26 119.38) ) (stroke (width 0) (type default) ) (uuid "1f16a159-e8e3-44f8-80f7-b132f057ca78") ) (wire (pts (xy 332.74 54.61) (xy 351.79 54.61) ) (stroke (width 0) (type default) ) (uuid "1f54bf6f-5260-4638-8e7d-630f688b349a") ) (wire (pts (xy 36.83 57.15) (xy 40.64 57.15) ) (stroke (width 0) (type default) ) (uuid "1f775d1b-2113-4f84-a603-0feacce6aa3b") ) (wire (pts (xy 386.08 205.74) (xy 386.08 209.55) ) (stroke (width 0) (type default) ) (uuid "1f9d927c-4784-48e7-8e7a-b973f1ee759b") ) (wire (pts (xy 48.26 99.06) (xy 48.26 111.76) ) (stroke (width 0) (type default) ) (uuid "1fb6c920-aa7d-4251-ab51-18b3479f79be") ) (wire (pts (xy 100.33 113.03) (xy 149.86 113.03) ) (stroke (width 0) (type default) ) (uuid "21fbfcdb-3477-4570-b8d6-ce76c90fe8ca") ) (wire (pts (xy 195.58 80.01) (xy 195.58 83.82) ) (stroke (width 0) (type default) ) (uuid "22f8e8e0-f346-42b7-8f3f-0a11719d8f37") ) (wire (pts (xy 85.09 124.46) (xy 95.25 124.46) ) (stroke (width 0) (type default) ) (uuid "2362e6d8-5040-4d81-a756-608862ad8d82") ) (wire (pts (xy 34.29 135.89) (xy 35.56 135.89) ) (stroke (width 0) (type default) ) (uuid "23bbc0b4-b31c-4dbe-848b-729a5d264b1e") ) (wire (pts (xy 339.09 170.18) (xy 342.9 170.18) ) (stroke (width 0) (type default) ) (uuid "23e0853e-b36e-4072-babd-bc2762b4cbb5") ) (wire (pts (xy 45.72 86.36) (xy 45.72 109.22) ) (stroke (width 0) (type default) ) (uuid "24376e55-757f-437b-90f5-4e8a5e83b859") ) (wire (pts (xy 20.32 217.17) (xy 101.6 217.17) ) (stroke (width 0) (type default) ) (uuid "248df86c-e7a7-4ced-85b4-a66a04499be7") ) (wire (pts (xy 213.36 106.68) (xy 213.36 91.44) ) (stroke (width 0) (type default) ) (uuid "25211ebb-8a44-4856-9424-740377d03a7e") ) (wire (pts (xy 331.47 106.68) (xy 346.71 106.68) ) (stroke (width 0) (type default) ) (uuid "25757d4a-5721-498f-ad88-c930ecc5ebc8") ) (wire (pts (xy 111.76 158.75) (xy 106.68 158.75) ) (stroke (width 0) (type default) ) (uuid "258edb36-88e5-4bd6-8121-aa6bf038860a") ) (wire (pts (xy 50.8 67.31) (xy 50.8 101.6) ) (stroke (width 0) (type default) ) (uuid "25b0df69-f3e5-4fbb-9858-5aeb2007154e") ) (wire (pts (xy 231.14 53.34) (xy 165.1 53.34) ) (stroke (width 0) (type default) ) (uuid "25e063ff-4562-4113-850f-c6da3accb3a1") ) (wire (pts (xy 63.5 203.2) (xy 71.12 203.2) ) (stroke (width 0) (type default) ) (uuid "2689e438-aa79-4c6b-8c6a-be79cf9c00ed") ) (wire (pts (xy 20.32 138.43) (xy 21.59 138.43) ) (stroke (width 0) (type default) ) (uuid "26c8fc78-8e6c-4376-913c-c9e9789eb592") ) (wire (pts (xy 71.12 76.2) (xy 80.01 76.2) ) (stroke (width 0) (type default) ) (uuid "282d10aa-2ae7-4633-9ed9-45634aff36fa") ) (wire (pts (xy 205.74 109.22) (xy 215.9 109.22) ) (stroke (width 0) (type default) ) (uuid "285db2ca-b0cd-4088-a4cd-0c57c0c6bd07") ) (wire (pts (xy 85.09 119.38) (xy 95.25 119.38) ) (stroke (width 0) (type default) ) (uuid "289f3e40-c22b-4c25-bb19-d2d2fe85a5d9") ) (wire (pts (xy 210.82 119.38) (xy 210.82 134.62) ) (stroke (width 0) (type default) ) (uuid "28eb7a57-b660-4c12-b735-93f0fd8e04e6") ) (wire (pts (xy 93.98 83.82) (xy 93.98 99.06) ) (stroke (width 0) (type default) ) (uuid "2945a56f-a7cc-453f-b2ae-158ad4a8cfde") ) (wire (pts (xy 116.84 144.78) (xy 116.84 147.32) ) (stroke (width 0) (type default) ) (uuid "296a8693-7b3c-475a-862a-fec85338b9fd") ) (wire (pts (xy 121.92 157.48) (xy 121.92 167.64) ) (stroke (width 0) (type default) ) (uuid "29ee0403-5564-45ee-a88d-2d8ff99589ff") ) (wire (pts (xy 351.79 152.4) (xy 370.84 152.4) ) (stroke (width 0) (type default) ) (uuid "2d785c4d-33d1-46ad-a6e5-6589d2ab21d7") ) (wire (pts (xy 106.68 167.64) (xy 109.22 167.64) ) (stroke (width 0) (type default) ) (uuid "2eafd8f8-9930-4a45-a638-c8854d3ba858") ) (wire (pts (xy 281.94 132.08) (xy 284.48 132.08) ) (stroke (width 0) (type default) ) (uuid "3042a87d-02db-4189-a3ed-a234f551079c") ) (wire (pts (xy 266.7 140.97) (xy 276.86 140.97) ) (stroke (width 0) (type default) ) (uuid "3063336e-3ace-4aeb-851f-5ca0ec694091") ) (wire (pts (xy 369.57 180.34) (xy 373.38 180.34) ) (stroke (width 0) (type default) ) (uuid "320613f6-e51a-44f0-aeed-7c6b54ae7558") ) (wire (pts (xy 83.82 102.87) (xy 83.82 137.16) ) (stroke (width 0) (type default) ) (uuid "340bbac8-c7fa-4f29-bde1-c36552eee471") ) (wire (pts (xy 48.26 127) (xy 95.25 127) ) (stroke (width 0) (type default) ) (uuid "34d9ff3d-93f6-469f-8317-f714d82c49ca") ) (wire (pts (xy 66.04 124.46) (xy 48.26 124.46) ) (stroke (width 0) (type default) ) (uuid "358d0c74-ea38-4df4-8790-4c793e5d42bd") ) (wire (pts (xy 36.83 62.23) (xy 40.64 62.23) ) (stroke (width 0) (type default) ) (uuid "35dcb44a-59c2-47c0-b0d3-ba39f110c320") ) (wire (pts (xy 205.74 127) (xy 205.74 142.24) ) (stroke (width 0) (type default) ) (uuid "35fdf1e6-576e-4cee-a0fa-e902049dc8b4") ) (wire (pts (xy 190.5 96.52) (xy 203.2 96.52) ) (stroke (width 0) (type default) ) (uuid "370c300f-379c-4dac-8fa4-5b71f80a4ef8") ) (wire (pts (xy 76.2 121.92) (xy 95.25 121.92) ) (stroke (width 0) (type default) ) (uuid "37415d06-a4c9-4ee6-8a8d-1d05891000d5") ) (wire (pts (xy 73.66 78.74) (xy 73.66 72.39) ) (stroke (width 0) (type default) ) (uuid "3866abba-ba03-4c7f-bb4e-d6f2cca4c78c") ) (wire (pts (xy 210.82 86.36) (xy 215.9 86.36) ) (stroke (width 0) (type default) ) (uuid "38e9d4b4-b3cd-4011-8805-ef5f8a520fb9") ) (wire (pts (xy 20.32 224.79) (xy 101.6 224.79) ) (stroke (width 0) (type default) ) (uuid "39100afd-cdec-4da5-914c-2b6023678946") ) (wire (pts (xy 205.74 127) (xy 215.9 127) ) (stroke (width 0) (type default) ) (uuid "3a69f850-87bd-4a58-a540-139bdd04ef3c") ) (wire (pts (xy 386.08 176.53) (xy 386.08 191.77) ) (stroke (width 0) (type default) ) (uuid "3a7c0d9b-528f-441d-a15e-6dcbaf3da73a") ) (wire (pts (xy 264.16 55.88) (xy 264.16 110.49) ) (stroke (width 0) (type default) ) (uuid "3aef9803-a3d1-4ecd-abb6-93728797a951") ) (wire (pts (xy 137.16 166.37) (xy 149.86 166.37) ) (stroke (width 0) (type default) ) (uuid "3b238a15-5882-4cd3-91e9-ef62e4eaa5d8") ) (wire (pts (xy 109.22 125.73) (xy 104.14 125.73) ) (stroke (width 0) (type default) ) (uuid "3b2d145e-eba9-4014-a851-1514384500d1") ) (wire (pts (xy 210.82 86.36) (xy 210.82 101.6) ) (stroke (width 0) (type default) ) (uuid "3b952716-2278-4cb4-afda-b9eebaeba34d") ) (wire (pts (xy 96.52 71.12) (xy 96.52 68.58) ) (stroke (width 0) (type default) ) (uuid "3ba6e347-8823-4cfa-9cb1-aa1663676bb3") ) (wire (pts (xy 215.9 96.52) (xy 203.2 96.52) ) (stroke (width 0) (type default) ) (uuid "3ba80d1a-9c95-485f-ba4c-3b62d4f84d0f") ) (wire (pts (xy 48.26 121.92) (xy 48.26 119.38) ) (stroke (width 0) (type default) ) (uuid "3d4b8d98-26ac-4fb5-8f02-76492983f159") ) (wire (pts (xy 20.32 212.09) (xy 101.6 212.09) ) (stroke (width 0) (type default) ) (uuid "3dda307b-0313-43f5-af50-f34ad31abe2b") ) (wire (pts (xy 349.25 184.15) (xy 349.25 189.23) ) (stroke (width 0) (type default) ) (uuid "3e551216-c282-491f-8000-9f96cb632237") ) (wire (pts (xy 106.68 203.2) (xy 106.68 205.74) ) (stroke (width 0) (type default) ) (uuid "401511e9-f3ea-4753-a8d1-2edbb809e5ac") ) (wire (pts (xy 185.42 129.54) (xy 187.96 129.54) ) (stroke (width 0) (type default) ) (uuid "411e7f39-510f-4647-8e07-9611654b65ae") ) (wire (pts (xy 104.14 120.65) (xy 106.68 120.65) ) (stroke (width 0) (type default) ) (uuid "413afe6e-ec17-4b55-b640-d5ecb8edfc13") ) (wire (pts (xy 35.56 86.36) (xy 45.72 86.36) ) (stroke (width 0) (type default) ) (uuid "41c00748-d0db-431d-995c-01f9d0154950") ) (wire (pts (xy 208.28 104.14) (xy 215.9 104.14) ) (stroke (width 0) (type default) ) (uuid "42aaa236-b1e3-499b-ba68-6ad0b089d2aa") ) (wire (pts (xy 43.18 83.82) (xy 43.18 106.68) ) (stroke (width 0) (type default) ) (uuid "4393db68-5638-4d5f-a660-fb3837fed94b") ) (wire (pts (xy 358.14 168.91) (xy 358.14 171.45) ) (stroke (width 0) (type default) ) (uuid "45ceb043-e0df-425c-b355-f8bb583ce45e") ) (wire (pts (xy 344.17 186.69) (xy 346.71 186.69) ) (stroke (width 0) (type default) ) (uuid "45e7f385-c6a6-499a-9ee3-b85cd4f643ab") ) (wire (pts (xy 64.77 107.95) (xy 63.5 107.95) ) (stroke (width 0) (type default) ) (uuid "45e8e4a5-47f2-4620-b3a1-ea823f222da3") ) (wire (pts (xy 50.8 191.77) (xy 50.8 195.58) ) (stroke (width 0) (type default) ) (uuid "45f2558b-92b1-4e1d-b4ac-7f582df3f921") ) (wire (pts (xy 106.68 153.67) (xy 106.68 156.21) ) (stroke (width 0) (type default) ) (uuid "4778cbfc-64b3-40f3-9618-671662122938") ) (wire (pts (xy 303.53 146.05) (xy 309.88 146.05) ) (stroke (width 0) (type default) ) (uuid "47e83dc5-61e3-4a27-b8c9-19eb0d178a92") ) (wire (pts (xy 374.65 128.27) (xy 381 128.27) ) (stroke (width 0) (type default) ) (uuid "47f01b28-be29-49b0-926f-13a05684dbd9") ) (wire (pts (xy 331.47 190.5) (xy 341.63 190.5) ) (stroke (width 0) (type default) ) (uuid "48252fe7-355d-4d1e-aff6-879292f41ab2") ) (wire (pts (xy 20.32 148.59) (xy 35.56 148.59) ) (stroke (width 0) (type default) ) (uuid "48b1550d-72e2-431a-8f10-0b3cffec91ca") ) (wire (pts (xy 344.17 143.51) (xy 351.79 143.51) ) (stroke (width 0) (type default) ) (uuid "48c1fadf-2b5a-457b-87c0-66b64821fc43") ) (wire (pts (xy 205.74 142.24) (xy 215.9 142.24) ) (stroke (width 0) (type default) ) (uuid "497651fd-a248-4ddb-b0f0-2e54f7965eb1") ) (wire (pts (xy 24.13 53.34) (xy 30.48 53.34) ) (stroke (width 0) (type default) ) (uuid "49ee4548-686b-4b28-b516-94aae928e3c8") ) (wire (pts (xy 71.12 182.88) (xy 68.58 182.88) ) (stroke (width 0) (type default) ) (uuid "4a0926a3-f015-47d5-b529-276ffc44e605") ) (wire (pts (xy 106.68 151.13) (xy 111.76 151.13) ) (stroke (width 0) (type default) ) (uuid "4a36148e-5205-4786-a883-045adb028215") ) (wire (pts (xy 48.26 111.76) (xy 66.04 111.76) ) (stroke (width 0) (type default) ) (uuid "4d0b0ebd-3deb-4623-8aae-fea1f7c6c287") ) (wire (pts (xy 88.9 184.15) (xy 91.44 184.15) ) (stroke (width 0) (type default) ) (uuid "4d1551be-b0d6-4501-9f70-234adcd35c1c") ) (wire (pts (xy 215.9 73.66) (xy 227.33 73.66) ) (stroke (width 0) (type default) ) (uuid "4dd5ab3f-a8aa-43b2-a9b6-222bbb1d6002") ) (wire (pts (xy 374.65 109.22) (xy 381 109.22) ) (stroke (width 0) (type default) ) (uuid "4dfcdd94-5c0f-46a5-8ccd-c9d7b1edccd6") ) (wire (pts (xy 373.38 76.2) (xy 381 76.2) ) (stroke (width 0) (type default) ) (uuid "4eae3b2c-5b82-4458-9591-a5da88176fc6") ) (wire (pts (xy 241.3 54.61) (xy 243.84 54.61) ) (stroke (width 0) (type default) ) (uuid "4f5ff001-bffa-4122-9e4a-2a20cc5b2606") ) (wire (pts (xy 236.22 59.69) (xy 236.22 67.31) ) (stroke (width 0) (type default) ) (uuid "5110aeb2-471e-498a-b818-922b1a257c5e") ) (wire (pts (xy 109.22 193.04) (xy 106.68 193.04) ) (stroke (width 0) (type default) ) (uuid "513d6bc2-9739-42f0-ae91-c3b631529ed6") ) (wire (pts (xy 95.25 118.11) (xy 95.25 119.38) ) (stroke (width 0) (type default) ) (uuid "519f94b7-668c-4879-b952-4b593dd8f2aa") ) (wire (pts (xy 101.6 76.2) (xy 149.86 76.2) ) (stroke (width 0) (type default) ) (uuid "51cf4b84-591c-49ad-99c9-6c5cf2fa3bb7") ) (wire (pts (xy 303.53 113.03) (xy 309.88 113.03) ) (stroke (width 0) (type default) ) (uuid "5297923d-f5d0-454b-9c49-cd968cba6e25") ) (wire (pts (xy 48.26 68.58) (xy 48.26 99.06) ) (stroke (width 0) (type default) ) (uuid "52ec9a3a-3839-4716-9b0c-afd408f9d64d") ) (wire (pts (xy 331.47 109.22) (xy 346.71 109.22) ) (stroke (width 0) (type default) ) (uuid "53427058-0e00-4bb1-bab4-9a9c221c77dd") ) (wire (pts (xy 360.68 142.24) (xy 375.92 142.24) ) (stroke (width 0) (type default) ) (uuid "54731fb0-a5f5-472d-ba30-5703fdf76f10") ) (wire (pts (xy 35.56 83.82) (xy 35.56 73.66) ) (stroke (width 0) (type default) ) (uuid "5532ed2d-ad1e-4ae8-b1d4-407c2c2da97a") ) (wire (pts (xy 114.3 228.6) (xy 149.86 228.6) ) (stroke (width 0) (type default) ) (uuid "55b12ca0-0f67-49f7-b8f4-6449956ca4be") ) (wire (pts (xy 377.19 87.63) (xy 377.19 88.9) ) (stroke (width 0) (type default) ) (uuid "56082381-e078-4b48-a6b7-f08b9984720f") ) (wire (pts (xy 73.66 100.33) (xy 73.66 78.74) ) (stroke (width 0) (type default) ) (uuid "562ded59-3dba-4553-bdfd-62f0f189a4f5") ) (wire (pts (xy 344.17 68.58) (xy 370.84 68.58) ) (stroke (width 0) (type default) ) (uuid "57a0cd05-66bb-42a1-9e38-63e3f714d7fc") ) (wire (pts (xy 50.8 201.93) (xy 50.8 205.74) ) (stroke (width 0) (type default) ) (uuid "58a607de-07b0-4b36-afd8-435814d7e37b") ) (wire (pts (xy 369.57 93.98) (xy 369.57 104.14) ) (stroke (width 0) (type default) ) (uuid "59a035f5-3ded-40d8-b9fd-3f6c961a8215") ) (wire (pts (xy 331.47 195.58) (xy 341.63 195.58) ) (stroke (width 0) (type default) ) (uuid "5a462067-061e-41b4-ae3a-8aa6737928be") ) (wire (pts (xy 344.17 184.15) (xy 349.25 184.15) ) (stroke (width 0) (type default) ) (uuid "5a4f0638-bddb-4875-9cc6-10a675a613ff") ) (wire (pts (xy 68.58 170.18) (xy 88.9 170.18) ) (stroke (width 0) (type default) ) (uuid "5a89a226-06a4-4fd4-913b-92b02b373249") ) (wire (pts (xy 205.74 88.9) (xy 205.74 93.98) ) (stroke (width 0) (type default) ) (uuid "5ac713c7-e944-4d56-b19f-7c86c0418ffb") ) (wire (pts (xy 388.62 59.69) (xy 388.62 74.93) ) (stroke (width 0) (type default) ) (uuid "5b1c312a-fd8c-4aeb-bae4-f8ac96c3f66f") ) (wire (pts (xy 374.65 195.58) (xy 381 195.58) ) (stroke (width 0) (type default) ) (uuid "5c6cc841-df07-44c6-b86b-8bc74035018c") ) (wire (pts (xy 119.38 170.18) (xy 149.86 170.18) ) (stroke (width 0) (type default) ) (uuid "5d27d342-a004-4dd6-9fe3-50cd9c929541") ) (wire (pts (xy 20.32 59.69) (xy 24.13 59.69) ) (stroke (width 0) (type default) ) (uuid "5d9bbc12-ced7-405e-b778-f531493d61e8") ) (wire (pts (xy 34.29 140.97) (xy 35.56 140.97) ) (stroke (width 0) (type default) ) (uuid "5da23856-8a89-4e89-be9b-0b4e53ff5a8c") ) (wire (pts (xy 344.17 152.4) (xy 351.79 152.4) ) (stroke (width 0) (type default) ) (uuid "5e851f0b-6f54-41e3-8896-eb57816dcdcd") ) (wire (pts (xy 88.9 170.18) (xy 88.9 184.15) ) (stroke (width 0) (type default) ) (uuid "5f4017e2-40d8-47a7-95ac-11337ff1de57") ) (wire (pts (xy 331.47 166.37) (xy 358.14 166.37) ) (stroke (width 0) (type default) ) (uuid "5fc566f6-031e-4336-834b-946c2a8ef712") ) (wire (pts (xy 106.68 156.21) (xy 111.76 156.21) ) (stroke (width 0) (type default) ) (uuid "606c41fd-ec7a-493f-a02b-bf2592a8b45b") ) (wire (pts (xy 30.48 180.34) (xy 71.12 180.34) ) (stroke (width 0) (type default) ) (uuid "624af396-eb82-40a1-a6ea-c4bb4ccc65c9") ) (wire (pts (xy 363.22 82.55) (xy 363.22 85.09) ) (stroke (width 0) (type default) ) (uuid "62585074-93bd-4bc2-a0a8-e5f839e3a7c5") ) (wire (pts (xy 203.2 111.76) (xy 215.9 111.76) ) (stroke (width 0) (type default) ) (uuid "62a444e6-7507-449e-83a8-4e9a50cb1293") ) (wire (pts (xy 109.22 193.04) (xy 109.22 208.28) ) (stroke (width 0) (type default) ) (uuid "64800ca1-4715-4890-87f6-5b7d6390af9f") ) (wire (pts (xy 294.64 109.22) (xy 294.64 111.76) ) (stroke (width 0) (type default) ) (uuid "659b599c-cd06-4e15-9f0c-8eb5d1abb821") ) (wire (pts (xy 38.1 114.3) (xy 38.1 120.65) ) (stroke (width 0) (type default) ) (uuid "659fcbb7-cd9d-4e18-b6f0-2be3852336f6") ) (wire (pts (xy 360.68 180.34) (xy 369.57 180.34) ) (stroke (width 0) (type default) ) (uuid "65ddc673-d017-48a9-a09e-fe7322d39379") ) (wire (pts (xy 134.62 105.41) (xy 149.86 105.41) ) (stroke (width 0) (type default) ) (uuid "6657d6c7-6997-4d3d-9957-63410ae1dc90") ) (wire (pts (xy 20.32 72.39) (xy 25.4 72.39) ) (stroke (width 0) (type default) ) (uuid "670aa469-5f3c-4929-819b-8f218e229ac7") ) (wire (pts (xy 386.08 119.38) (xy 386.08 124.46) ) (stroke (width 0) (type default) ) (uuid "692a4d00-df12-493b-a3d5-2071916a14e9") ) (wire (pts (xy 264.16 110.49) (xy 276.86 110.49) ) (stroke (width 0) (type default) ) (uuid "6a1d385d-37d6-45c0-ac4f-9cc82f40f777") ) (wire (pts (xy 116.84 144.78) (xy 124.46 144.78) ) (stroke (width 0) (type default) ) (uuid "6a5cb669-3061-4335-9321-de86da141514") ) (wire (pts (xy 35.56 99.06) (xy 48.26 99.06) ) (stroke (width 0) (type default) ) (uuid "6b091e90-5e37-4605-b0c0-a493883d0751") ) (wire (pts (xy 208.28 88.9) (xy 208.28 104.14) ) (stroke (width 0) (type default) ) (uuid "6b32b0c9-5a17-456b-ba31-23b1ef1e6404") ) (wire (pts (xy 331.47 74.93) (xy 363.22 74.93) ) (stroke (width 0) (type default) ) (uuid "6c2809d5-43be-4f46-a582-ff8c7f041424") ) (wire (pts (xy 35.56 124.46) (xy 40.64 124.46) ) (stroke (width 0) (type default) ) (uuid "6c78fab3-b92c-400a-a1dc-94dd2b3c3b6f") ) (wire (pts (xy 165.1 88.9) (xy 180.34 88.9) ) (stroke (width 0) (type default) ) (uuid "6d6ad953-e279-44e8-9e22-cdafc2e1ce88") ) (wire (pts (xy 48.26 124.46) (xy 48.26 127) ) (stroke (width 0) (type default) ) (uuid "70974761-6caa-463e-aa27-766321e1dce6") ) (wire (pts (xy 175.26 78.74) (xy 175.26 77.47) ) (stroke (width 0) (type default) ) (uuid "70ed0e29-f79a-4314-9d6f-5e300b3848e5") ) (wire (pts (xy 203.2 129.54) (xy 203.2 144.78) ) (stroke (width 0) (type default) ) (uuid "714623a1-8be8-4c61-b611-0a83a2948c40") ) (wire (pts (xy 71.12 69.85) (xy 71.12 76.2) ) (stroke (width 0) (type default) ) (uuid "72a8ef18-e50e-49dc-8a51-5ecf35f52c1b") ) (wire (pts (xy 198.12 106.68) (xy 213.36 106.68) ) (stroke (width 0) (type default) ) (uuid "73d2ba24-7ec3-4194-b8ac-0d1539ee1a49") ) (wire (pts (xy 203.2 96.52) (xy 203.2 111.76) ) (stroke (width 0) (type default) ) (uuid "7437374b-c346-4512-9a19-349df9a646d9") ) (wire (pts (xy 91.44 77.47) (xy 88.9 77.47) ) (stroke (width 0) (type default) ) (uuid "743bd715-faae-4453-a68d-f3a2c2712775") ) (wire (pts (xy 68.58 60.96) (xy 55.88 60.96) ) (stroke (width 0) (type default) ) (uuid "74e37745-9d7d-4331-bb91-340a3d01b4a9") ) (wire (pts (xy 386.08 151.13) (xy 386.08 158.75) ) (stroke (width 0) (type default) ) (uuid "757c480d-feba-439f-b353-cddbc057f6f7") ) (wire (pts (xy 331.47 77.47) (xy 363.22 77.47) ) (stroke (width 0) (type default) ) (uuid "75a72e32-5df8-4530-a334-1348660e208c") ) (wire (pts (xy 369.57 93.98) (xy 373.38 93.98) ) (stroke (width 0) (type default) ) (uuid "75dd487c-b9db-481e-b195-b2640bff57dc") ) (wire (pts (xy 88.9 74.93) (xy 91.44 74.93) ) (stroke (width 0) (type default) ) (uuid "76a837d7-cf51-4759-99f1-98a810971ec2") ) (wire (pts (xy 35.56 83.82) (xy 43.18 83.82) ) (stroke (width 0) (type default) ) (uuid "76cf9408-1142-46cb-a6bf-628b62a6dec9") ) (wire (pts (xy 119.38 101.6) (xy 124.46 101.6) ) (stroke (width 0) (type default) ) (uuid "77189a07-e250-43b1-be4f-c78aa8b1cfe1") ) (wire (pts (xy 331.47 193.04) (xy 341.63 193.04) ) (stroke (width 0) (type default) ) (uuid "778084de-2f72-45b7-84f1-7e51946f7641") ) (wire (pts (xy 236.22 67.31) (xy 236.22 71.12) ) (stroke (width 0) (type default) ) (uuid "7843d01f-7d1b-43f9-831b-6a2a18030d26") ) (wire (pts (xy 43.18 106.68) (xy 54.61 106.68) ) (stroke (width 0) (type default) ) (uuid "785410f1-6e25-49a7-824d-2ec41f1a6881") ) (wire (pts (xy 76.2 123.19) (xy 76.2 121.92) ) (stroke (width 0) (type default) ) (uuid "78d9fdae-d529-4be2-9949-4919274001e7") ) (wire (pts (xy 35.56 41.91) (xy 45.72 41.91) ) (stroke (width 0) (type default) ) (uuid "79a20085-1765-4ef6-9b04-f48099d5cbf2") ) (wire (pts (xy 351.79 66.04) (xy 370.84 66.04) ) (stroke (width 0) (type default) ) (uuid "7a1e7288-52a1-4847-954c-6d0bed585014") ) (wire (pts (xy 386.08 90.17) (xy 386.08 105.41) ) (stroke (width 0) (type default) ) (uuid "7bc26938-2778-416b-8543-09767c7c4f2e") ) (wire (pts (xy 45.72 116.84) (xy 45.72 130.81) ) (stroke (width 0) (type default) ) (uuid "7ccd0ecc-8df6-46ac-acf4-131f5c4959e2") ) (wire (pts (xy 81.28 191.77) (xy 91.44 191.77) ) (stroke (width 0) (type default) ) (uuid "7cea834e-852a-4d70-9434-bdfd22684375") ) (wire (pts (xy 377.19 116.84) (xy 377.19 118.11) ) (stroke (width 0) (type default) ) (uuid "7cfc900f-8bb7-4706-b66b-8f3c2260a651") ) (wire (pts (xy 344.17 157.48) (xy 363.22 157.48) ) (stroke (width 0) (type default) ) (uuid "7cff67d6-99e7-49a2-a17f-4fa826ba4274") ) (wire (pts (xy 80.01 88.9) (xy 88.9 88.9) ) (stroke (width 0) (type default) ) (uuid "800324cb-6115-418a-9eba-81a0294d2707") ) (wire (pts (xy 81.28 201.93) (xy 91.44 201.93) ) (stroke (width 0) (type default) ) (uuid "802e1c21-90fa-4fc6-bf7e-bc924ba27a19") ) (wire (pts (xy 71.12 85.09) (xy 83.82 85.09) ) (stroke (width 0) (type default) ) (uuid "80387580-05a5-4373-9e5d-7c52ff5d7e26") ) (wire (pts (xy 205.74 78.74) (xy 208.28 78.74) ) (stroke (width 0) (type default) ) (uuid "80a10f4f-15df-486a-8e23-4e72c0bd81da") ) (wire (pts (xy 40.64 114.3) (xy 40.64 124.46) ) (stroke (width 0) (type default) ) (uuid "8218da42-5320-459f-95ba-650728a900e9") ) (wire (pts (xy 109.22 102.87) (xy 109.22 125.73) ) (stroke (width 0) (type default) ) (uuid "829dcfdd-fdbf-4603-928f-4692ee4b21c7") ) (wire (pts (xy 124.46 160.02) (xy 124.46 165.1) ) (stroke (width 0) (type default) ) (uuid "83c4d89a-e91d-419d-9a45-93ec157c2216") ) (wire (pts (xy 30.48 190.5) (xy 30.48 189.23) ) (stroke (width 0) (type default) ) (uuid "85196638-2895-457d-ad2c-1257dba47e47") ) (wire (pts (xy 354.33 116.84) (xy 354.33 121.92) ) (stroke (width 0) (type default) ) (uuid "8561015a-eb87-400d-a1e6-7d9c580afb1b") ) (wire (pts (xy 241.3 64.77) (xy 243.84 64.77) ) (stroke (width 0) (type default) ) (uuid "86369846-b508-43bf-91e8-90d3b0c86a3c") ) (wire (pts (xy 83.82 82.55) (xy 68.58 82.55) ) (stroke (width 0) (type default) ) (uuid "867e0e78-8c74-46cc-8bfa-3a143ea77a71") ) (wire (pts (xy 35.56 110.49) (xy 35.56 111.76) ) (stroke (width 0) (type default) ) (uuid "86fe6715-9e4e-432a-bc4e-933da5549ffc") ) (wire (pts (xy 344.17 100.33) (xy 351.79 100.33) ) (stroke (width 0) (type default) ) (uuid "87646780-4be1-4939-8eff-d4e0ad810a2b") ) (wire (pts (xy 353.06 213.36) (xy 381 213.36) ) (stroke (width 0) (type default) ) (uuid "87d6db0c-752f-481f-b7f4-296af20c3c59") ) (wire (pts (xy 91.44 194.31) (xy 86.36 194.31) ) (stroke (width 0) (type default) ) (uuid "894833b6-20fb-47da-bc73-101a7beb21bf") ) (wire (pts (xy 233.68 124.46) (xy 233.68 137.16) ) (stroke (width 0) (type default) ) (uuid "89acbb4d-c3c2-40e1-aab6-22e75cbf8217") ) (wire (pts (xy 187.96 129.54) (xy 187.96 134.62) ) (stroke (width 0) (type default) ) (uuid "89ee32ba-b1d0-48de-990b-609cb414d52b") ) (wire (pts (xy 356.87 110.49) (xy 364.49 110.49) ) (stroke (width 0) (type default) ) (uuid "8aca3b98-d572-4081-9ca5-d55efd1ac483") ) (wire (pts (xy 124.46 101.6) (xy 149.86 101.6) ) (stroke (width 0) (type default) ) (uuid "8b5761c1-5552-43bb-90dd-6a5ef859194c") ) (wire (pts (xy 34.29 172.72) (xy 66.04 172.72) ) (stroke (width 0) (type default) ) (uuid "8c31d827-aaf3-4151-933d-daa64a9f6a05") ) (wire (pts (xy 243.84 57.15) (xy 243.84 62.23) ) (stroke (width 0) (type default) ) (uuid "8d06e786-9a95-4cb7-8c99-39c30208e60a") ) (wire (pts (xy 20.32 97.79) (xy 25.4 97.79) ) (stroke (width 0) (type default) ) (uuid "8d858c27-e0a8-4fa8-84f5-69eae5384288") ) (wire (pts (xy 165.1 74.93) (xy 186.69 74.93) ) (stroke (width 0) (type default) ) (uuid "8d8ecac4-c252-4c8b-b922-3ad6f9d0c525") ) (wire (pts (xy 30.48 189.23) (xy 50.8 189.23) ) (stroke (width 0) (type default) ) (uuid "8e673122-e1f8-403e-9456-f4e3b9b83076") ) (wire (pts (xy 370.84 68.58) (xy 370.84 73.66) ) (stroke (width 0) (type default) ) (uuid "8f199092-50e5-4836-aaa6-6248df3b6b6a") ) (wire (pts (xy 331.47 123.19) (xy 346.71 123.19) ) (stroke (width 0) (type default) ) (uuid "8ff8a2b4-d5c4-4db5-8d9c-c01200138d79") ) (wire (pts (xy 60.96 190.5) (xy 71.12 190.5) ) (stroke (width 0) (type default) ) (uuid "9082d47c-1bae-475b-ae8f-65e6a12fcf8b") ) (wire (pts (xy 44.45 153.67) (xy 78.74 153.67) ) (stroke (width 0) (type default) ) (uuid "90fffb75-199e-4190-8ec4-e94637f5c3c7") ) (wire (pts (xy 106.68 153.67) (xy 111.76 153.67) ) (stroke (width 0) (type default) ) (uuid "911ff783-225e-4690-8bcd-7c2b9d1e8603") ) (wire (pts (xy 114.3 228.6) (xy 114.3 218.44) ) (stroke (width 0) (type default) ) (uuid "912251b3-45fd-433f-a080-f90ff026a43f") ) (wire (pts (xy 261.62 63.5) (xy 261.62 143.51) ) (stroke (width 0) (type default) ) (uuid "91c27d2d-105a-4d44-a632-eb203a0cf9d8") ) (wire (pts (xy 337.82 130.81) (xy 346.71 130.81) ) (stroke (width 0) (type default) ) (uuid "935849f2-faed-46e0-b2aa-3c68822acd89") ) (wire (pts (xy 121.92 85.09) (xy 149.86 85.09) ) (stroke (width 0) (type default) ) (uuid "94048633-00ec-42c0-827e-d22c738fa41a") ) (wire (pts (xy 195.58 69.85) (xy 195.58 73.66) ) (stroke (width 0) (type default) ) (uuid "945c16e8-2867-4734-a5d4-45e5a89e06d5") ) (wire (pts (xy 369.57 123.19) (xy 373.38 123.19) ) (stroke (width 0) (type default) ) (uuid "952f692c-a638-4e43-af2e-87f0bb25b710") ) (wire (pts (xy 20.32 167.64) (xy 106.68 167.64) ) (stroke (width 0) (type default) ) (uuid "95ddf6a0-4ba5-4463-b75a-80cfd49cbf98") ) (wire (pts (xy 365.76 91.44) (xy 373.38 91.44) ) (stroke (width 0) (type default) ) (uuid "96262ca4-a0dc-446c-91e1-ddb6e49d98de") ) (wire (pts (xy 68.58 82.55) (xy 68.58 60.96) ) (stroke (width 0) (type default) ) (uuid "964c253e-3f6d-4145-bec6-63987428705b") ) (wire (pts (xy 363.22 58.42) (xy 375.92 58.42) ) (stroke (width 0) (type default) ) (uuid "98244ea6-93af-44a3-a3ce-b993fd6ef4bb") ) (wire (pts (xy 78.74 105.41) (xy 78.74 144.78) ) (stroke (width 0) (type default) ) (uuid "987c297a-f6ab-4668-a2eb-3e9c4bbae5ba") ) (wire (pts (xy 205.74 109.22) (xy 205.74 127) ) (stroke (width 0) (type default) ) (uuid "98dc44ee-1e1f-4cf7-b842-cfd167857f1f") ) (wire (pts (xy 359.41 147.32) (xy 379.73 147.32) ) (stroke (width 0) (type default) ) (uuid "991f661a-c727-4278-88f7-74e0529cd964") ) (wire (pts (xy 375.92 175.26) (xy 377.19 175.26) ) (stroke (width 0) (type default) ) (uuid "993c2a3e-bc74-4dd2-b505-9bc7093073d4") ) (wire (pts (xy 215.9 124.46) (xy 213.36 124.46) ) (stroke (width 0) (type default) ) (uuid "9a07aac7-c667-4731-a13c-222295df6a76") ) (wire (pts (xy 337.82 217.17) (xy 342.9 217.17) ) (stroke (width 0) (type default) ) (uuid "9b2d2d93-16f4-4365-abd7-1396be93fba3") ) (wire (pts (xy 363.22 149.86) (xy 370.84 149.86) ) (stroke (width 0) (type default) ) (uuid "9b83783e-fa76-4795-9b6d-85806650978f") ) (wire (pts (xy 111.76 182.88) (xy 106.68 182.88) ) (stroke (width 0) (type default) ) (uuid "9bbbb78e-6faa-409b-a586-e20a368aebd2") ) (wire (pts (xy 344.17 205.74) (xy 347.98 205.74) ) (stroke (width 0) (type default) ) (uuid "9be72927-90a1-47ac-8d0b-824998b8510a") ) (wire (pts (xy 20.32 154.94) (xy 35.56 154.94) ) (stroke (width 0) (type default) ) (uuid "9cc099d3-b606-4140-bb61-206ff65f45a1") ) (wire (pts (xy 78.74 153.67) (xy 78.74 162.56) ) (stroke (width 0) (type default) ) (uuid "9e0540c1-c45c-427b-8904-4fcb4409cfa6") ) (wire (pts (xy 332.74 92.71) (xy 351.79 92.71) ) (stroke (width 0) (type default) ) (uuid "9ed8fcdc-01c9-45a8-bd40-b9d93957b209") ) (wire (pts (xy 175.26 68.58) (xy 175.26 67.31) ) (stroke (width 0) (type default) ) (uuid "9f230968-88a7-4495-b888-aa2184a532b8") ) (wire (pts (xy 88.9 88.9) (xy 88.9 96.52) ) (stroke (width 0) (type default) ) (uuid "9fcc206a-459a-4252-8661-07d997c79c60") ) (wire (pts (xy 36.83 64.77) (xy 40.64 64.77) ) (stroke (width 0) (type default) ) (uuid "a0206740-5561-4622-8a08-953c63ca14b5") ) (wire (pts (xy 63.5 175.26) (xy 63.5 203.2) ) (stroke (width 0) (type default) ) (uuid "a065e4c4-2355-40b9-aea6-b4e0fdf9aa80") ) (wire (pts (xy 344.17 116.84) (xy 354.33 116.84) ) (stroke (width 0) (type default) ) (uuid "a085f2d6-271c-431b-a5a0-36f3c8e68a14") ) (wire (pts (xy 106.68 158.75) (xy 106.68 167.64) ) (stroke (width 0) (type default) ) (uuid "a1f14d96-6833-48e6-bd26-3a6188f6be5f") ) (wire (pts (xy 34.29 175.26) (xy 63.5 175.26) ) (stroke (width 0) (type default) ) (uuid "a1ffdc5e-39c5-44fb-8b9a-25410743f6e9") ) (wire (pts (xy 20.32 207.01) (xy 41.91 207.01) ) (stroke (width 0) (type default) ) (uuid "a21bd661-426c-4cc8-9a4c-4f6b217914bc") ) (wire (pts (xy 20.32 85.09) (xy 25.4 85.09) ) (stroke (width 0) (type default) ) (uuid "a2ce5a2b-83cc-4cd9-b4de-f6f44acb60f7") ) (wire (pts (xy 135.89 161.29) (xy 149.86 161.29) ) (stroke (width 0) (type default) ) (uuid "a30484f7-d142-4d8b-9d4b-066f5beb4579") ) (wire (pts (xy 359.41 60.96) (xy 379.73 60.96) ) (stroke (width 0) (type default) ) (uuid "a3755343-fd1d-450e-86ec-9a4324ccd4ec") ) (wire (pts (xy 373.38 78.74) (xy 381 78.74) ) (stroke (width 0) (type default) ) (uuid "a3d8b3dd-08db-4d64-b882-2218195c1cd2") ) (wire (pts (xy 215.9 134.62) (xy 210.82 134.62) ) (stroke (width 0) (type default) ) (uuid "a443fa55-94fc-4e71-ba05-528c447f38bb") ) (wire (pts (xy 198.12 139.7) (xy 213.36 139.7) ) (stroke (width 0) (type default) ) (uuid "a49c4bdd-59a5-44a1-92af-befb5ac35f8d") ) (wire (pts (xy 377.19 203.2) (xy 377.19 204.47) ) (stroke (width 0) (type default) ) (uuid "a524f3bb-0bff-4b46-bb56-bf5b4a736e9c") ) (wire (pts (xy 48.26 119.38) (xy 58.42 119.38) ) (stroke (width 0) (type default) ) (uuid "a5261241-d174-4d16-a9b4-fd79a0f164f2") ) (wire (pts (xy 354.33 97.79) (xy 354.33 102.87) ) (stroke (width 0) (type default) ) (uuid "a5aead5c-add8-4cd8-8190-a43ce70d40d0") ) (wire (pts (xy 331.47 161.29) (xy 358.14 161.29) ) (stroke (width 0) (type default) ) (uuid "a69ab299-94f5-4bc1-bc8d-47eb06de140d") ) (wire (pts (xy 73.66 102.87) (xy 81.28 102.87) ) (stroke (width 0) (type default) ) (uuid "a7c8f9e2-c941-4f35-82a2-1887719d5881") ) (wire (pts (xy 259.08 55.88) (xy 264.16 55.88) ) (stroke (width 0) (type default) ) (uuid "a7e566b5-ffa1-4ac4-a351-5274ba2899af") ) (wire (pts (xy 20.32 64.77) (xy 24.13 64.77) ) (stroke (width 0) (type default) ) (uuid "a85f7779-f0b5-4646-9466-3e11bd08ba2b") ) (wire (pts (xy 350.52 203.2) (xy 344.17 203.2) ) (stroke (width 0) (type default) ) (uuid "a8e15a18-5dd4-44c8-a1a1-6017b4dc358f") ) (wire (pts (xy 106.68 120.65) (xy 106.68 86.36) ) (stroke (width 0) (type default) ) (uuid "ab1e2469-5847-4502-8c09-f2f9f7f07918") ) (wire (pts (xy 331.47 163.83) (xy 358.14 163.83) ) (stroke (width 0) (type default) ) (uuid "ab770e9e-411b-4773-96c3-a7969dbf4158") ) (wire (pts (xy 119.38 166.37) (xy 119.38 170.18) ) (stroke (width 0) (type default) ) (uuid "ab829eb7-78e9-4d67-993f-bf0013a105b5") ) (wire (pts (xy 339.09 172.72) (xy 342.9 172.72) ) (stroke (width 0) (type default) ) (uuid "ac2cf020-c59b-4ad6-9e52-9d769097af0f") ) (wire (pts (xy 213.36 91.44) (xy 215.9 91.44) ) (stroke (width 0) (type default) ) (uuid "ae509d16-e2b9-4237-8cf9-34c9c98caccf") ) (wire (pts (xy 284.48 132.08) (xy 284.48 137.16) ) (stroke (width 0) (type default) ) (uuid "aefd4b8f-0a8e-43f8-b84b-62e16bb20c05") ) (wire (pts (xy 208.28 104.14) (xy 208.28 121.92) ) (stroke (width 0) (type default) ) (uuid "af546012-873c-44a6-873f-aab419a9c638") ) (wire (pts (xy 205.74 93.98) (xy 215.9 93.98) ) (stroke (width 0) (type default) ) (uuid "b0aafbec-8c3d-46a8-8247-3b7156e57361") ) (wire (pts (xy 71.12 85.09) (xy 71.12 105.41) ) (stroke (width 0) (type default) ) (uuid "b11ce1cf-1933-4db6-ae13-0764f73cca70") ) (wire (pts (xy 210.82 101.6) (xy 215.9 101.6) ) (stroke (width 0) (type default) ) (uuid "b14a3333-7a43-458b-a3b8-997240e887f1") ) (wire (pts (xy 68.58 100.33) (xy 73.66 100.33) ) (stroke (width 0) (type default) ) (uuid "b177744a-ad16-4e3c-a3e1-59e7d8d3d7ce") ) (wire (pts (xy 373.38 83.82) (xy 381 83.82) ) (stroke (width 0) (type default) ) (uuid "b1c273e5-a95c-45b5-9f8e-a68710164abc") ) (wire (pts (xy 60.96 200.66) (xy 71.12 200.66) ) (stroke (width 0) (type default) ) (uuid "b1dd54a5-b457-4ffe-85eb-647548881b3d") ) (wire (pts (xy 287.02 109.22) (xy 294.64 109.22) ) (stroke (width 0) (type default) ) (uuid "b1fb678c-feed-40c2-b210-b59892153b9f") ) (wire (pts (xy 64.77 109.22) (xy 64.77 107.95) ) (stroke (width 0) (type default) ) (uuid "b36f187a-1efc-4ca6-a29b-896cfc52975a") ) (wire (pts (xy 35.56 34.29) (xy 45.72 34.29) ) (stroke (width 0) (type default) ) (uuid "b3ce63bf-b1e0-43f8-9426-a7b39e87a7f7") ) (wire (pts (xy 165.1 60.96) (xy 223.52 60.96) ) (stroke (width 0) (type default) ) (uuid "b3efcead-1873-4cb4-a09b-07f4366489bb") ) (wire (pts (xy 365.76 154.94) (xy 365.76 160.02) ) (stroke (width 0) (type default) ) (uuid "b40933b5-64d4-4570-9833-b5de56f23bf8") ) (wire (pts (xy 81.28 116.84) (xy 71.12 116.84) ) (stroke (width 0) (type default) ) (uuid "b4537b2f-3bb2-4a79-afd2-63d5b338b1b7") ) (wire (pts (xy 81.28 160.02) (xy 86.36 160.02) ) (stroke (width 0) (type default) ) (uuid "b48d012b-2405-477f-939a-dd9313d4aa89") ) (wire (pts (xy 20.32 196.85) (xy 41.91 196.85) ) (stroke (width 0) (type default) ) (uuid "b4c2804c-1073-48bc-b765-5f401c65f670") ) (wire (pts (xy 35.56 36.83) (xy 45.72 36.83) ) (stroke (width 0) (type default) ) (uuid "b57814ca-efb4-43bc-ac08-4791c9ada676") ) (wire (pts (xy 124.46 101.6) (xy 124.46 104.14) ) (stroke (width 0) (type default) ) (uuid "b64f1c6c-bb04-4d1c-b431-0dfa63e7ab7f") ) (wire (pts (xy 175.26 67.31) (xy 195.58 67.31) ) (stroke (width 0) (type default) ) (uuid "b6a62c2b-43f5-47ec-819f-be98a49fc534") ) (wire (pts (xy 20.32 110.49) (xy 25.4 110.49) ) (stroke (width 0) (type default) ) (uuid "b6b19679-e8cd-4237-8543-df9541deee3d") ) (wire (pts (xy 73.66 100.33) (xy 83.82 100.33) ) (stroke (width 0) (type default) ) (uuid "b6e3c428-106b-4d7c-a0a9-a1b2a9ded7ba") ) (wire (pts (xy 20.32 222.25) (xy 101.6 222.25) ) (stroke (width 0) (type default) ) (uuid "b70d6f8e-0937-4f2d-ad62-0fe386277b57") ) (wire (pts (xy 165.1 63.5) (xy 223.52 63.5) ) (stroke (width 0) (type default) ) (uuid "b720a180-4261-4300-902e-7026da0c587d") ) (wire (pts (xy 210.82 101.6) (xy 210.82 119.38) ) (stroke (width 0) (type default) ) (uuid "b8e6f89b-b576-4f9e-bbf7-ff938fb72f90") ) (wire (pts (xy 344.17 57.15) (xy 351.79 57.15) ) (stroke (width 0) (type default) ) (uuid "b902280e-2316-40f6-a84a-0a25ee46a439") ) (wire (pts (xy 43.18 106.68) (xy 43.18 114.3) ) (stroke (width 0) (type default) ) (uuid "b93263b5-78db-43fb-b14e-795817384696") ) (wire (pts (xy 256.54 105.41) (xy 276.86 105.41) ) (stroke (width 0) (type default) ) (uuid "ba2c6ed6-0e2f-4cec-861f-fded33d0f62c") ) (wire (pts (xy 86.36 172.72) (xy 66.04 172.72) ) (stroke (width 0) (type default) ) (uuid "ba2fbb91-8cf5-433a-866a-9ccf6fc69281") ) (wire (pts (xy 266.7 146.05) (xy 276.86 146.05) ) (stroke (width 0) (type default) ) (uuid "ba3f1438-e758-4a3c-a5ac-051aa90efaf2") ) (wire (pts (xy 360.68 55.88) (xy 375.92 55.88) ) (stroke (width 0) (type default) ) (uuid "ba8cbba9-f885-41dd-8e16-9e4e6b609d31") ) (wire (pts (xy 78.74 153.67) (xy 106.68 153.67) ) (stroke (width 0) (type default) ) (uuid "bc12a897-3019-4e70-94f7-b46e2c96652c") ) (wire (pts (xy 379.73 151.13) (xy 386.08 151.13) ) (stroke (width 0) (type default) ) (uuid "be893055-d4b0-4be1-8847-51d01165099e") ) (wire (pts (xy 45.72 116.84) (xy 54.61 116.84) ) (stroke (width 0) (type default) ) (uuid "bea027ae-a180-4087-bf8b-774641b341fa") ) (wire (pts (xy 68.58 85.09) (xy 71.12 85.09) ) (stroke (width 0) (type default) ) (uuid "beddf3e6-0237-49a1-8efe-3e82ab51747c") ) (wire (pts (xy 36.83 101.6) (xy 50.8 101.6) ) (stroke (width 0) (type default) ) (uuid "c2b4a540-c030-4b6a-b3b4-3987d5abb3b2") ) (wire (pts (xy 208.28 88.9) (xy 215.9 88.9) ) (stroke (width 0) (type default) ) (uuid "c2cb918f-2668-4166-b59a-2f55bf3587dc") ) (wire (pts (xy 374.65 116.84) (xy 377.19 116.84) ) (stroke (width 0) (type default) ) (uuid "c35f417e-0f52-4eec-a6c4-1de34b97ebe0") ) (wire (pts (xy 266.7 113.03) (xy 276.86 113.03) ) (stroke (width 0) (type default) ) (uuid "c38fd9f9-8824-4ecb-9cfa-6f6c22c23f34") ) (wire (pts (xy 233.68 62.23) (xy 243.84 62.23) ) (stroke (width 0) (type default) ) (uuid "c3d314f2-4633-4b1d-a510-3cffc66dcfc8") ) (wire (pts (xy 90.17 68.58) (xy 96.52 68.58) ) (stroke (width 0) (type default) ) (uuid "c3d84c78-c3cc-48a3-93c9-0ef186ecbcef") ) (wire (pts (xy 331.47 212.09) (xy 342.9 212.09) ) (stroke (width 0) (type default) ) (uuid "c42cd4fe-ee5e-4e2c-91ed-5a04d69c0f32") ) (wire (pts (xy 48.26 99.06) (xy 58.42 99.06) ) (stroke (width 0) (type default) ) (uuid "c57d03f2-659a-4b5c-8362-099d1e2f8459") ) (wire (pts (xy 205.74 68.58) (xy 210.82 68.58) ) (stroke (width 0) (type default) ) (uuid "c6100bac-4b37-45d9-9847-ec6686d8574c") ) (wire (pts (xy 363.22 177.8) (xy 373.38 177.8) ) (stroke (width 0) (type default) ) (uuid "c6126e7f-cece-4c3d-873e-f390fcbdc74f") ) (wire (pts (xy 66.04 193.04) (xy 71.12 193.04) ) (stroke (width 0) (type default) ) (uuid "c6ae37a2-9686-4662-9816-cc3dac3caa37") ) (wire (pts (xy 208.28 121.92) (xy 215.9 121.92) ) (stroke (width 0) (type default) ) (uuid "c6bda951-9a9a-4df4-a071-c2533b3d6207") ) (wire (pts (xy 236.22 67.31) (xy 228.6 67.31) ) (stroke (width 0) (type default) ) (uuid "c6fe6b61-22fe-4364-8c3c-df88b7f1df3e") ) (wire (pts (xy 175.26 77.47) (xy 195.58 77.47) ) (stroke (width 0) (type default) ) (uuid "c7b796e9-d982-4e58-9aca-43461bcc5651") ) (wire (pts (xy 45.72 86.36) (xy 58.42 86.36) ) (stroke (width 0) (type default) ) (uuid "c829e995-4d35-4bbc-b100-9d6cdc6970b1") ) (wire (pts (xy 356.87 127) (xy 364.49 127) ) (stroke (width 0) (type default) ) (uuid "c8785a5a-d931-4810-adc9-b90984e04789") ) (wire (pts (xy 30.48 200.66) (xy 30.48 199.39) ) (stroke (width 0) (type default) ) (uuid "c89e690e-9f9b-499b-a8d1-64e01b67562b") ) (wire (pts (xy 294.64 142.24) (xy 294.64 144.78) ) (stroke (width 0) (type default) ) (uuid "c9343a44-c080-4088-b79d-c3874150e096") ) (wire (pts (xy 331.47 125.73) (xy 346.71 125.73) ) (stroke (width 0) (type default) ) (uuid "c9d24eb7-3f9b-4105-a76f-9ba3245c0096") ) (wire (pts (xy 331.47 80.01) (xy 363.22 80.01) ) (stroke (width 0) (type default) ) (uuid "ca7fe932-fdc8-499c-b96f-9df281ad9358") ) (wire (pts (xy 124.46 165.1) (xy 127 165.1) ) (stroke (width 0) (type default) ) (uuid "cad3df7a-8bd1-4bb1-8f3b-62d3f0ad2158") ) (wire (pts (xy 43.18 114.3) (xy 54.61 114.3) ) (stroke (width 0) (type default) ) (uuid "cad71a54-249e-44eb-8932-b343eb756e76") ) (wire (pts (xy 213.36 106.68) (xy 215.9 106.68) ) (stroke (width 0) (type default) ) (uuid "cadae864-18c6-46ee-9219-bbec89f73cd6") ) (wire (pts (xy 86.36 194.31) (xy 86.36 172.72) ) (stroke (width 0) (type default) ) (uuid "cae5c631-7629-43e5-9b3a-ebf4af856f34") ) (wire (pts (xy 20.32 219.71) (xy 101.6 219.71) ) (stroke (width 0) (type default) ) (uuid "cb0f9934-66b9-474e-ba89-8aafc813b850") ) (wire (pts (xy 40.64 124.46) (xy 48.26 124.46) ) (stroke (width 0) (type default) ) (uuid "cb6e80a6-3eb0-479f-9d43-3c3a1760564d") ) (wire (pts (xy 213.36 124.46) (xy 213.36 139.7) ) (stroke (width 0) (type default) ) (uuid "cbb32830-3765-4a19-895c-bea77452bcdd") ) (wire (pts (xy 30.48 199.39) (xy 50.8 199.39) ) (stroke (width 0) (type default) ) (uuid "cbd23220-c2a6-4b20-b331-c55b0379e6f2") ) (wire (pts (xy 339.09 86.36) (xy 347.98 86.36) ) (stroke (width 0) (type default) ) (uuid "cbd39528-2176-424f-a0c0-beb0679b6b08") ) (wire (pts (xy 287.02 142.24) (xy 294.64 142.24) ) (stroke (width 0) (type default) ) (uuid "cd442458-6a8a-458a-b3ea-34a683f3f5a5") ) (wire (pts (xy 284.48 99.06) (xy 284.48 104.14) ) (stroke (width 0) (type default) ) (uuid "cd751c94-93f4-4137-b867-c428c333e385") ) (wire (pts (xy 337.82 111.76) (xy 346.71 111.76) ) (stroke (width 0) (type default) ) (uuid "cdc6b22c-3b70-49e8-b396-7eef212da2ad") ) (wire (pts (xy 76.2 110.49) (xy 76.2 111.76) ) (stroke (width 0) (type default) ) (uuid "ce296f85-b749-41cd-9018-f349486be2a2") ) (wire (pts (xy 261.62 143.51) (xy 276.86 143.51) ) (stroke (width 0) (type default) ) (uuid "ce6d7427-9235-4f2c-bcf7-f97f3b1803f9") ) (wire (pts (xy 45.72 109.22) (xy 45.72 116.84) ) (stroke (width 0) (type default) ) (uuid "ced7ef3d-9dd7-4c58-be23-cf6116075338") ) (wire (pts (xy 227.33 72.39) (xy 227.33 73.66) ) (stroke (width 0) (type default) ) (uuid "cf78a286-9f4d-4be3-9147-156ae2f65b23") ) (wire (pts (xy 231.14 55.88) (xy 165.1 55.88) ) (stroke (width 0) (type default) ) (uuid "cfa385e6-4ca4-4e66-a9ea-ec2111c07ec8") ) (wire (pts (xy 83.82 175.26) (xy 83.82 204.47) ) (stroke (width 0) (type default) ) (uuid "d0c334b3-d4e3-48a8-94a6-13832edd96f4") ) (wire (pts (xy 203.2 144.78) (xy 215.9 144.78) ) (stroke (width 0) (type default) ) (uuid "d1ea8605-3f5f-49e1-8a8c-354e0727a633") ) (wire (pts (xy 361.95 123.19) (xy 369.57 123.19) ) (stroke (width 0) (type default) ) (uuid "d41dba91-bd3a-42e0-b976-28c18ec4b783") ) (wire (pts (xy 331.47 209.55) (xy 342.9 209.55) ) (stroke (width 0) (type default) ) (uuid "d43aff96-41bc-49d7-b944-3ad8dc7ee4db") ) (wire (pts (xy 331.47 104.14) (xy 346.71 104.14) ) (stroke (width 0) (type default) ) (uuid "d489387c-ae7a-4d1a-98d7-b2a61d35fb3f") ) (wire (pts (xy 73.66 78.74) (xy 80.01 78.74) ) (stroke (width 0) (type default) ) (uuid "d518d346-fb2f-4d61-8a9e-9283b4c6a2b3") ) (wire (pts (xy 20.32 146.05) (xy 35.56 146.05) ) (stroke (width 0) (type default) ) (uuid "d569ead4-bc42-488e-84bb-23f3cfa9b29f") ) (wire (pts (xy 203.2 129.54) (xy 215.9 129.54) ) (stroke (width 0) (type default) ) (uuid "d5e5418b-b35d-4493-aaf7-71984d128c44") ) (wire (pts (xy 43.18 114.3) (xy 43.18 129.54) ) (stroke (width 0) (type default) ) (uuid "d600e609-d27d-45b4-a72b-8f80b863a8b9") ) (wire (pts (xy 208.28 137.16) (xy 215.9 137.16) ) (stroke (width 0) (type default) ) (uuid "d611780a-5668-4867-a3b5-1e4cf48f090e") ) (wire (pts (xy 20.32 62.23) (xy 24.13 62.23) ) (stroke (width 0) (type default) ) (uuid "d80cd5cd-e39e-4f6e-9f1d-75ff17c88a63") ) (wire (pts (xy 373.38 170.18) (xy 381 170.18) ) (stroke (width 0) (type default) ) (uuid "d8702856-4a2d-4006-8a7b-df01c5b5e6e7") ) (wire (pts (xy 368.3 165.1) (xy 381 165.1) ) (stroke (width 0) (type default) ) (uuid "d8a58d83-fe44-473e-a637-8f65e12e1851") ) (wire (pts (xy 21.59 129.54) (xy 27.94 129.54) ) (stroke (width 0) (type default) ) (uuid "d8e86c8c-6bf0-4dde-ba28-281832c98f69") ) (wire (pts (xy 35.56 44.45) (xy 45.72 44.45) ) (stroke (width 0) (type default) ) (uuid "d9668991-26dc-4f45-8c5d-51f746374ea1") ) (wire (pts (xy 106.68 147.32) (xy 106.68 151.13) ) (stroke (width 0) (type default) ) (uuid "da3940e3-64b6-42cc-99ae-488a01277cbc") ) (wire (pts (xy 20.32 57.15) (xy 24.13 57.15) ) (stroke (width 0) (type default) ) (uuid "db1a9bef-1f50-482b-80fc-baa91b8ea4a1") ) (wire (pts (xy 256.54 138.43) (xy 276.86 138.43) ) (stroke (width 0) (type default) ) (uuid "db7ff94b-c8da-4886-b217-4a9b51b02708") ) (wire (pts (xy 172.72 140.97) (xy 172.72 143.51) ) (stroke (width 0) (type default) ) (uuid "dbc24dbf-241b-418b-8073-db49c61dc0aa") ) (wire (pts (xy 20.32 165.1) (xy 86.36 165.1) ) (stroke (width 0) (type default) ) (uuid "de02f986-2f7c-481a-ba87-533f0702670c") ) (wire (pts (xy 361.95 120.65) (xy 373.38 120.65) ) (stroke (width 0) (type default) ) (uuid "de220a53-0e29-4ac9-baae-9b1aea7a8391") ) (wire (pts (xy 81.28 102.87) (xy 81.28 116.84) ) (stroke (width 0) (type default) ) (uuid "de2860d8-ab8c-4ee4-93f5-68b23df5bf42") ) (wire (pts (xy 339.09 83.82) (xy 347.98 83.82) ) (stroke (width 0) (type default) ) (uuid "def0c7b2-35e9-4fcd-a10a-c73dc3413ebf") ) (wire (pts (xy 50.8 101.6) (xy 58.42 101.6) ) (stroke (width 0) (type default) ) (uuid "df0c5fb3-2ff2-4929-b0f6-41fa75e01c7d") ) (wire (pts (xy 356.87 107.95) (xy 364.49 107.95) ) (stroke (width 0) (type default) ) (uuid "df2d2f32-ea2b-4809-9dfe-5b3ac74b4cbe") ) (wire (pts (xy 66.04 121.92) (xy 48.26 121.92) ) (stroke (width 0) (type default) ) (uuid "dfa0aa22-f15c-4e7c-9244-df4c542aa7df") ) (wire (pts (xy 241.3 54.61) (xy 241.3 64.77) ) (stroke (width 0) (type default) ) (uuid "dfb39c21-32df-46b3-976f-3bf37e837259") ) (wire (pts (xy 78.74 69.85) (xy 71.12 69.85) ) (stroke (width 0) (type default) ) (uuid "dfc5f491-102c-49a1-8413-bcab6e6366eb") ) (wire (pts (xy 157.48 138.43) (xy 180.34 138.43) ) (stroke (width 0) (type default) ) (uuid "e16421db-aa2c-45a2-8d95-915970a285d2") ) (wire (pts (xy 20.32 152.4) (xy 35.56 152.4) ) (stroke (width 0) (type default) ) (uuid "e18d6496-de5e-48b6-ba3e-39bd310ac871") ) (wire (pts (xy 213.36 139.7) (xy 215.9 139.7) ) (stroke (width 0) (type default) ) (uuid "e2a80df9-a1c4-4c96-be7c-c26f803e5f18") ) (wire (pts (xy 356.87 129.54) (xy 364.49 129.54) ) (stroke (width 0) (type default) ) (uuid "e2de4130-58fd-4c6f-ac0f-ea9d1d66d1f4") ) (wire (pts (xy 124.46 106.68) (xy 121.92 106.68) ) (stroke (width 0) (type default) ) (uuid "e3393f27-c9b7-448d-b429-705b661bef46") ) (wire (pts (xy 363.22 63.5) (xy 370.84 63.5) ) (stroke (width 0) (type default) ) (uuid "e4f09133-b5fe-4ac2-bac1-674bd9ff9032") ) (wire (pts (xy 157.48 106.68) (xy 190.5 106.68) ) (stroke (width 0) (type default) ) (uuid "e544c39e-e5b5-45ca-92c8-632fc179f189") ) (wire (pts (xy 66.04 172.72) (xy 66.04 193.04) ) (stroke (width 0) (type default) ) (uuid "e5cdbaaf-8e4e-407a-922d-e72b0ada7d75") ) (wire (pts (xy 350.52 208.28) (xy 350.52 203.2) ) (stroke (width 0) (type default) ) (uuid "e5d6662c-0a56-407d-8602-b0027489d745") ) (wire (pts (xy 81.28 116.84) (xy 81.28 160.02) ) (stroke (width 0) (type default) ) (uuid "e5f6d21b-052e-4f04-8424-98236744948b") ) (wire (pts (xy 344.17 119.38) (xy 351.79 119.38) ) (stroke (width 0) (type default) ) (uuid "e84178b5-5628-42b8-ad22-eee66e0a2501") ) (wire (pts (xy 364.49 207.01) (xy 377.19 207.01) ) (stroke (width 0) (type default) ) (uuid "e95ce4f3-c93c-4f36-9a6a-9715b8e2d7cb") ) (wire (pts (xy 67.31 114.3) (xy 90.17 114.3) ) (stroke (width 0) (type default) ) (uuid "eae5d11c-8d69-495c-875a-8fb4b74ffb5d") ) (wire (pts (xy 71.12 105.41) (xy 78.74 105.41) ) (stroke (width 0) (type default) ) (uuid "eaf8b4bd-e483-42dc-9fa3-61516e025db5") ) (wire (pts (xy 344.17 140.97) (xy 351.79 140.97) ) (stroke (width 0) (type default) ) (uuid "eb313c54-fd7f-4549-96d5-0f960e523f82") ) (wire (pts (xy 44.45 147.32) (xy 106.68 147.32) ) (stroke (width 0) (type default) ) (uuid "ebae3ba7-549b-466d-8822-2a576a2be0f3") ) (wire (pts (xy 109.22 162.56) (xy 116.84 162.56) ) (stroke (width 0) (type default) ) (uuid "ec7d6dc8-4fe1-456e-8f06-f43a94542a41") ) (wire (pts (xy 20.32 135.89) (xy 21.59 135.89) ) (stroke (width 0) (type default) ) (uuid "ee6b7132-46b4-4146-9e30-453f50fa0c9c") ) (wire (pts (xy 109.22 100.33) (xy 104.14 100.33) ) (stroke (width 0) (type default) ) (uuid "f06d9d03-c7dc-4792-b37d-f123ff4ae582") ) (wire (pts (xy 344.17 66.04) (xy 351.79 66.04) ) (stroke (width 0) (type default) ) (uuid "f0cac4b4-48d8-40b0-911f-7372b788381b") ) (wire (pts (xy 45.72 109.22) (xy 54.61 109.22) ) (stroke (width 0) (type default) ) (uuid "f0e1b31f-5433-4bd2-853f-fe4e1641d9c9") ) (wire (pts (xy 20.32 227.33) (xy 101.6 227.33) ) (stroke (width 0) (type default) ) (uuid "f18b3a30-2918-4141-b055-12994e181618") ) (wire (pts (xy 83.82 204.47) (xy 91.44 204.47) ) (stroke (width 0) (type default) ) (uuid "f26a2673-6a8e-4e7a-b03f-009225a0a948") ) (wire (pts (xy 121.92 106.68) (xy 121.92 85.09) ) (stroke (width 0) (type default) ) (uuid "f26ae89d-2a2e-424b-b77a-b69c38d0d73f") ) (wire (pts (xy 208.28 121.92) (xy 208.28 137.16) ) (stroke (width 0) (type default) ) (uuid "f4ce5b3f-d17d-4eb6-a145-b7904ea8973f") ) (wire (pts (xy 337.82 198.12) (xy 341.63 198.12) ) (stroke (width 0) (type default) ) (uuid "f6c1204a-7bf1-450e-9f84-51a2bbd8c92f") ) (wire (pts (xy 388.62 146.05) (xy 388.62 161.29) ) (stroke (width 0) (type default) ) (uuid "f72ce4aa-686c-47cb-a002-3b5ccdb7657c") ) (wire (pts (xy 344.17 97.79) (xy 354.33 97.79) ) (stroke (width 0) (type default) ) (uuid "f914a476-8113-4c48-805b-289d64fb4c4d") ) (wire (pts (xy 73.66 72.39) (xy 78.74 72.39) ) (stroke (width 0) (type default) ) (uuid "f92d3be5-ccfb-4970-82d8-454e2b96463f") ) (wire (pts (xy 331.47 128.27) (xy 346.71 128.27) ) (stroke (width 0) (type default) ) (uuid "f99c7ea0-ffb4-4012-9a8e-575d57e96951") ) (wire (pts (xy 121.92 152.4) (xy 149.86 152.4) ) (stroke (width 0) (type default) ) (uuid "f9aa4399-c4d4-465c-bef9-e0c6cc158a1c") ) (wire (pts (xy 76.2 111.76) (xy 90.17 111.76) ) (stroke (width 0) (type default) ) (uuid "fae90d6a-3b71-415a-ad5b-72522b7b95af") ) (wire (pts (xy 71.12 116.84) (xy 71.12 118.11) ) (stroke (width 0) (type default) ) (uuid "fb586bae-dcb4-45f8-a6df-3999a1583b19") ) (wire (pts (xy 73.66 100.33) (xy 73.66 102.87) ) (stroke (width 0) (type default) ) (uuid "fbbbaa0c-3ee2-4c11-b2c8-84ff48d013cb") ) (wire (pts (xy 165.1 85.09) (xy 186.69 85.09) ) (stroke (width 0) (type default) ) (uuid "fc490817-0e2e-45da-94d8-83ff167115f9") ) (wire (pts (xy 124.46 160.02) (xy 127 160.02) ) (stroke (width 0) (type default) ) (uuid "fcea170e-38f5-41f3-b99d-ec35efdf34a5") ) (wire (pts (xy 68.58 182.88) (xy 68.58 170.18) ) (stroke (width 0) (type default) ) (uuid "fde4da10-c61d-44a1-8a0b-1ae64f099c6d") ) (wire (pts (xy 331.47 214.63) (xy 342.9 214.63) ) (stroke (width 0) (type default) ) (uuid "fe8caec5-4370-446d-8cdb-7c9b1354ac30") ) (label "L00" (at 50.8 106.68 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "00660497-3b95-40cb-9524-a24320c4e8ed") ) (label "L11" (at 82.55 160.02 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "014fda3e-145b-40f9-8c4c-a2f2196ff985") ) (label "C_MX4" (at 21.59 129.54 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "02529df0-7b43-4cc3-8c7d-b7f8483b5621") ) (label "RST" (at 205.74 116.84 90) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "04b5f3e6-cf86-437b-9bc8-4b18eaca5b4e") ) (label "OUT1" (at 331.47 106.68 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "0598204b-c0fa-4633-8b65-bc2324b26b1d") ) (label "SET" (at 203.2 116.84 90) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "064d8f05-ecf0-4c79-8fe1-6b9b231ea5a6") ) (label "C_MX4" (at 45.72 34.29 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "07f44fbc-afae-46ac-ad7b-d837832a125d") ) (label "COMP_OUT" (at 331.47 128.27 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "0bdba7ff-d87c-4aef-9ef0-f12ff6215f50") ) (label "MUXOUT" (at 266.7 107.95 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "0c72508e-2870-4beb-be84-d768420c773c") ) (label "MULTO1" (at 146.05 170.18 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "10459c3a-e77c-4ea5-b35e-4e5a435b00ee") ) (label "OUT2" (at 331.47 77.47 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "1167ea42-7d62-45e3-aae6-3ef8756dab1e") ) (label "CADD_A" (at 356.87 110.49 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "1578adbf-d891-43da-a071-377f4a4784c8") ) (label "C_EN_CIN" (at 45.72 36.83 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "1ad94bc4-ea00-40dc-a347-8313f41023fe") ) (label "OUT1" (at 331.47 190.5 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "1b81e348-cd68-4147-b6f6-d21956f952df") ) (label "C_ADDF2" (at 45.72 41.91 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "1f069768-9f55-4c74-918e-3027cbc7a305") ) (label "L03" (at 50.8 90.17 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "1fb44a75-1e9e-4d2d-b83c-d254381396e9") ) (label "L10" (at 102.87 144.78 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "20b0b54d-5d86-4b41-927e-a769cf9619e2") ) (label "L01" (at 45.72 90.17 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "22fabd83-0041-4ad2-8e77-57bfd7c927a7") ) (label "COMP_OUT" (at 331.47 80.01 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "23da63e1-891a-4e79-b9a0-fbb4d618d20a") ) (label "L11" (at 76.2 72.39 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "24423c24-f0a5-4d56-8a70-030c62ddfdf4") ) (label "L01" (at 50.8 116.84 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "24928b4d-9cf2-463d-9952-6382fc9adf7f") ) (label "C_MULT" (at 363.22 63.5 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2643f97e-e9f7-46f5-9c59-14a591c7f60c") ) (label "C_ADDF2" (at 90.17 68.58 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2740ae35-3a78-4ef6-ba3a-9e989bfddad2") ) (label "CI_1" (at 21.59 167.64 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2a836db8-7693-4e3d-9473-e93fcd1658c0") ) (label "CADD_A" (at 373.38 76.2 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2bf61a83-617b-4294-a7f1-70f6e012833b") ) (label "L10" (at 71.12 90.17 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "2c8329a6-49a9-4bbf-9920-267fd00ed529") ) (label "OUT2" (at 331.47 161.29 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2d680e28-5385-4ff7-b2b0-202be050edb3") ) (label "CIN" (at 50.8 124.46 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2eba9c4e-a77e-4c35-ba63-d2020a6bedd4") ) (label "L02" (at 50.8 121.92 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "314c0aaf-7be0-45a6-b585-0fe9bfe16dc8") ) (label "C_ADDF" (at 332.74 54.61 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "33b146fc-b44e-457d-bfa5-ed577d27a36a") ) (label "L00" (at 50.8 114.3 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "33b834ff-ad88-44d2-acd5-7809f4c59d9e") ) (label "L10" (at 76.2 76.2 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "34adb217-c1d6-44ba-8918-966d0b9c9bb9") ) (label "COY2_a" (at 356.87 129.54 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3593f934-f43e-411c-869e-c54e11e3e325") ) (label "L10" (at 76.2 69.85 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "37a2d4a1-f5bf-4952-8814-74d001785534") ) (label "COMB1OUT" (at 266.7 113.03 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3c8f7950-c204-4be1-a6da-60d980d07c65") ) (label "C_ADDF" (at 332.74 92.71 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "427ace4e-b54f-46af-a8ea-39e174ef90e1") ) (label "OUT2" (at 331.47 193.04 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "43941ea3-657c-4861-8479-b53a37ba3718") ) (label "C_MULT" (at 364.49 207.01 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4555c81b-db19-4177-ad89-3a9bd2caa1c2") ) (label "C_MULT" (at 361.95 123.19 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4c4a8d6c-4625-4793-88da-b28f893165c7") ) (label "MULTO1" (at 373.38 170.18 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4c59128c-7e16-4868-8703-c96202a949ef") ) (label "COMP_OUT" (at 146.05 105.41 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "4e87164f-c05f-4185-ac31-92dd5942815b") ) (label "C_MULT" (at 363.22 149.86 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4fba6aae-604d-4205-99d4-e2de29ea5842") ) (label "MUXOUT" (at 146.05 228.6 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "552fb7ea-e7b4-4e59-b3b1-704a0d0a9ab4") ) (label "COMB2OUT" (at 157.48 138.43 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "562c6372-cde1-47fb-bdf2-e46a22b126e5") ) (label "C_MX4" (at 80.01 88.9 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "56f23b1e-7d7c-4823-b923-d1047209d04b") ) (label "L02" (at 48.26 90.17 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "586d9fe6-1d7d-40b8-95aa-cb258c6d140f") ) (label "CADD_S" (at 363.22 58.42 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5afe9992-38c0-4224-9b83-d1533470d7ab") ) (label "COMB2OUT" (at 266.7 146.05 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5b6bd7c0-cb4d-47a0-ba74-5d5e46cc1749") ) (label "L11" (at 76.2 78.74 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5c81ce2d-8391-4813-8643-e38c65a29b4e") ) (label "L02" (at 50.8 119.38 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "6683ee90-07dc-44e7-b6f2-b02cd7016e93") ) (label "CADD_A" (at 146.05 113.03 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "66aacc75-fbff-4e26-8035-5435834f3a4b") ) (label "CIN" (at 85.09 127 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "6b9b7d2c-b128-400e-b85c-cda40b04e4bf") ) (label "COMB1OUT" (at 157.48 106.68 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "6cdbeced-3afd-41c6-9300-54f4baa3ea86") ) (label "COMB1OUT" (at 146.05 101.6 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "7162b1aa-a260-4cad-b6d7-ddc55be1259c") ) (label "MULTO2" (at 146.05 166.37 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "7dc7d2fe-f40c-47db-ba45-967076bef001") ) (label "OUT1" (at 331.47 212.09 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7ddbbd60-513a-441f-bcf3-00f89b434bbf") ) (label "L11" (at 73.66 90.17 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "7e8cda78-c959-4599-b7be-19bbbd5a48bb") ) (label "C_ADDCIN" (at 85.09 124.46 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "847d6643-45c6-444b-8e87-539bb204a100") ) (label "A_0" (at 21.59 148.59 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "84f6b9a5-a7bd-40b1-9e1f-05c83791b659") ) (label "CIN" (at 50.8 127 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "86ccb44f-286f-4ba4-a2c7-cbdbe59f5ee6") ) (label "B_1" (at 21.59 146.05 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "89ed7763-334d-43ac-bc11-b8443ab372a8") ) (label "C_ADDCIN" (at 45.72 44.45 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "8c513f45-560a-4785-8944-ecba13cd2fc8") ) (label "C_ADDF2" (at 85.09 119.38 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "913260de-f401-4a4e-9269-42853e9bf2e1") ) (label "COMB1OUT" (at 157.48 135.89 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "91c93a5c-6107-4cd6-b851-1722bd17e52c") ) (label "EN" (at 208.28 116.84 90) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9357be2e-e11e-475c-b2e3-5e3040887738") ) (label "MULTO2" (at 373.38 83.82 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "983cee42-f39b-4215-b40c-6c1d9e343ac8") ) (label "COY2_a" (at 146.05 152.4 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "9b948c94-13ba-452e-98c8-c4b22cf06a5b") ) (label "COMP_OUT" (at 363.22 144.78 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9ef03d4e-9794-4c98-ae82-c59cbae4bb57") ) (label "COMP_OUT" (at 331.47 166.37 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a05b1ae0-e053-4dd5-92f3-c344db3c3975") ) (label "COMP_OUT" (at 331.47 214.63 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a7b5b18f-0c48-4a6e-9f27-816bd93c1593") ) (label "MUXOUT" (at 157.48 140.97 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a8365037-5430-402d-a32b-3a9b0941be4e") ) (label "OUT2" (at 331.47 125.73 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "aa6e6aa5-6bcb-4326-9523-7a7fe9098bfe") ) (label "A_-1" (at 21.59 154.94 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "aa98120a-cee5-473a-8bf0-a313c827ab7e") ) (label "OUT1" (at 331.47 163.83 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ab617c81-54d3-4528-a948-8c710a5e03ab") ) (label "OUT1" (at 331.47 74.93 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ac71675a-799a-4971-b772-992bff1b4414") ) (label "C_EN_CIN" (at 35.56 120.65 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "af143219-c274-499c-bab1-09763bf1dff7") ) (label "COMB2OUT" (at 146.05 85.09 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "b9033835-378c-4d38-a6b5-fb44949fe6a5") ) (label "COMP_OUT" (at 363.22 177.8 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ba71988e-a17e-48ee-bef4-87b78c84794a") ) (label "L02" (at 50.8 111.76 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c0ff617a-1dcc-4b88-8f93-675d4909f69e") ) (label "CADD_S" (at 146.05 76.2 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "c65a07de-3c1b-4a6d-82a5-2cf9d1fd4faa") ) (label "CADD_S" (at 365.76 91.44 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c72104ce-1093-48dd-8521-bbea577474aa") ) (label "L01" (at 50.8 109.22 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c87f0d23-985f-4960-98a0-5329efdf9263") ) (label "COMP_OUT" (at 331.47 109.22 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d1b28b93-1917-49b7-afd7-26ac6a94be3c") ) (label "OUT2" (at 331.47 104.14 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d322893f-d3c3-4ee8-9d53-414a71ca4c0d") ) (label "COY2_S" (at 146.05 161.29 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "d33e3832-6e0c-4796-a5c9-ebad47fc0afc") ) (label "CLK" (at 210.82 116.84 90) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "dc0f6540-e4bc-4451-9301-6a412b7a83ca") ) (label "C_MULT" (at 215.9 73.66 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "dd64f929-739f-4520-8b3b-5564ee65ace7") ) (label "L00" (at 43.18 90.17 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "dec9395e-2fd7-4549-829d-0fb504a281f6") ) (label "C_MX4" (at 24.13 53.34 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e00dfcf2-1b9a-4fe5-9ff7-90ab1a6b17fa") ) (label "COMP_OUT" (at 331.47 195.58 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e14483cc-6973-445b-ac2c-47bb0115ce59") ) (label "MUXOUT" (at 266.7 140.97 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e5afdd9f-7c1a-4b57-8009-6dbc1f18b27f") ) (label "OUT2" (at 331.47 209.55 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f5e497d0-c9ad-4664-81f5-5e5a3693afc6") ) (label "COY2_S" (at 361.95 120.65 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f6f17bac-ccd0-4fb7-8630-96d6997bd93d") ) (label "B_1" (at 21.59 152.4 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f91e2bbe-b962-4c22-aec5-9b07219f6cd7") ) (label "OUT1" (at 331.47 123.19 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f9ad9ab1-7313-4604-af86-c886da51219f") ) (label "CI_0" (at 21.59 165.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fb626d34-ebae-490b-b66b-acf79217d6da") ) (hierarchical_label "RAM_O1" (shape output) (at 309.88 113.03 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "039e624e-cb06-4c5f-8419-c77a85afc3de") ) (hierarchical_label "EN" (shape input) (at 165.1 78.74 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "044d4efa-0503-4af2-82c3-12dcd42c310e") ) (hierarchical_label "IN2" (shape input) (at 20.32 212.09 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "09434ad6-14e2-4e5b-816f-ff698cdbf63e") ) (hierarchical_label "IN5" (shape input) (at 20.32 148.59 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0eb4ced2-7900-4bc7-8cc2-99b4d3c3babe") ) (hierarchical_label "IN1" (shape input) (at 20.32 57.15 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0f722df5-b61c-4d3b-90bf-debc26f0eaec") ) (hierarchical_label "PINY2" (shape input) (at 165.1 85.09 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "121b0d5d-2965-47f6-9e54-bbaa7091f30f") ) (hierarchical_label "PINY1" (shape input) (at 381 198.12 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "12486b44-34b6-4397-a507-f848d77c5e56") ) (hierarchical_label "PINY2" (shape input) (at 381 215.9 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "133296a3-1314-4b74-afaf-5dcc35199e4b") ) (hierarchical_label "COUTY1" (shape input) (at 165.1 63.5 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "145b853d-21a4-403b-9309-3f21f06dc33c") ) (hierarchical_label "POUTY2" (shape output) (at 391.16 214.63 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "1bcb36cc-41a8-4a1e-a323-8beeba0066f3") ) (hierarchical_label "CINY1" (shape input) (at 20.32 165.1 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1d3b162e-e765-42bb-bc85-8e693668f97d") ) (hierarchical_label "COUTY1" (shape output) (at 391.16 110.49 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "22db8b4a-ae47-4265-a5a9-b9f2e0a54204") ) (hierarchical_label "IN3" (shape input) (at 20.32 62.23 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2381e667-247d-4208-9f0d-4a892803e600") ) (hierarchical_label "CINY2" (shape input) (at 339.09 86.36 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2755b585-bec2-4115-8994-c85ae34f1499") ) (hierarchical_label "IN8" (shape input) (at 20.32 140.97 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2aa1b176-f3f1-4d4d-9a64-4e64a4b94417") ) (hierarchical_label "POUTY1" (shape output) (at 391.16 196.85 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "2b165793-956b-417d-be32-f8c041675a08") ) (hierarchical_label "IN6" (shape input) (at 20.32 222.25 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2c922c49-dd89-4b14-82a6-02deddd01147") ) (hierarchical_label "IN7" (shape input) (at 20.32 138.43 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2cda4289-f5cf-475a-bc74-682e1576b3c3") ) (hierarchical_label "IN4" (shape input) (at 20.32 64.77 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "305d726f-e7ba-416d-8a9b-571899777ec2") ) (hierarchical_label "CLK" (shape input) (at 165.1 68.58 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "33350c86-6722-4e6f-a28e-e812f505f315") ) (hierarchical_label "IN5" (shape input) (at 20.32 97.79 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "33c94739-6413-4c24-97c8-10c330c7170b") ) (hierarchical_label "COUTX" (shape input) (at 165.1 60.96 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "33e11baf-ce7c-414a-ae32-785dc60ace83") ) (hierarchical_label "OUT1" (shape output) (at 309.88 107.95 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "351b397d-44f6-4679-8b66-53af348f7e10") ) (hierarchical_label "RAM_I1" (shape input) (at 294.64 106.68 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3858e855-41be-49c1-b5af-8ff3eb1c0ff6") ) (hierarchical_label "COUTY2" (shape output) (at 391.16 129.54 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "3cadfc82-129a-4585-b876-484a3cb109c6") ) (hierarchical_label "SR" (shape input) (at 165.1 88.9 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "41b75386-4fa5-4163-b235-f93e65572258") ) (hierarchical_label "IN1" (shape input) (at 20.32 72.39 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "421da82d-883a-424a-a9dd-10ebfa323eb8") ) (hierarchical_label "PINX" (shape input) (at 381 167.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "42e9cf6f-b20a-4e05-8149-de603d4ba381") ) (hierarchical_label "IN3" (shape input) (at 20.32 85.09 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "47325857-4936-4c9a-8a2d-f6a6792db8b9") ) (hierarchical_label "IN5" (shape input) (at 20.32 133.35 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "488ec4ad-dc78-4b06-a244-2850b35dcf20") ) (hierarchical_label "IN7" (shape input) (at 20.32 110.49 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4c80ddd8-118b-446a-9a01-70ed023866d4") ) (hierarchical_label "CINX" (shape input) (at 381 81.28 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4f4e53fd-d12f-41cb-bcb5-276c0ba74501") ) (hierarchical_label "PINY2" (shape input) (at 20.32 152.4 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "55b04a13-f940-4c4b-a490-fc0d2c414d98") ) (hierarchical_label "SR" (shape input) (at 20.32 180.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5622a74e-d6f9-46dd-8168-36a45d1b58ae") ) (hierarchical_label "PINY1" (shape input) (at 339.09 170.18 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5b2843a7-7112-4456-87d1-5f02711ed89a") ) (hierarchical_label "PINX" (shape input) (at 20.32 115.57 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "672cf7e0-e640-40ac-a069-93168422db3a") ) (hierarchical_label "IN5" (shape input) (at 20.32 219.71 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "69178618-73fa-4b1a-a2f8-beab70c1ae94") ) (hierarchical_label "PINY1" (shape input) (at 20.32 196.85 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6cd258ae-b104-4398-bd15-f92bc07f4f9b") ) (hierarchical_label "PINY1" (shape input) (at 20.32 77.47 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "72d906ab-635c-488b-a228-9d55baf96df6") ) (hierarchical_label "CINY1" (shape input) (at 381 111.76 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "74453ae9-7b44-44a8-a58c-ce93e7591421") ) (hierarchical_label "CINY2" (shape input) (at 20.32 167.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "77303aff-3674-4e00-85ee-25591139b842") ) (hierarchical_label "IN3" (shape input) (at 20.32 214.63 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "826ef969-f343-4e0c-8a1d-852434942ffe") ) (hierarchical_label "CINY1" (shape input) (at 20.32 123.19 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "82802695-80c8-4063-84a6-94dd95dee34b") ) (hierarchical_label "PINX" (shape input) (at 337.82 217.17 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8bdd5dc0-cfc2-4307-8e8e-f1e3c1dc1f93") ) (hierarchical_label "IN2" (shape input) (at 20.32 74.93 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "951b358e-6b16-4f43-8cdc-2ea8dc0eaed7") ) (hierarchical_label "PINY2" (shape input) (at 20.32 146.05 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9ea7e6fc-f711-4751-827d-caa863dcf84a") ) (hierarchical_label "CINX" (shape input) (at 337.82 111.76 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a3022e0a-6aa8-4d13-b6dc-b4332c16b610") ) (hierarchical_label "RAM_I2" (shape input) (at 294.64 139.7 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a35c3023-6ea9-4d74-a3a1-3ebaf0f5ffd2") ) (hierarchical_label "IN2" (shape input) (at 20.32 59.69 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a4e5dda4-8096-4007-8fe6-dfcd7c3a461a") ) (hierarchical_label "IN6" (shape input) (at 20.32 100.33 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a71a603c-f70f-4d0c-abb0-9a1796371b6b") ) (hierarchical_label "CLK" (shape input) (at 20.32 200.66 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ac0da8ce-3276-4ed8-b411-804a1b657cdc") ) (hierarchical_label "CINX" (shape input) (at 337.82 130.81 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b0c4bf0f-0a58-48f0-af0c-66636c0983ad") ) (hierarchical_label "IN1" (shape input) (at 20.32 209.55 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b164d6c1-c3af-4d2d-9b64-6c02127a4461") ) (hierarchical_label "IN8" (shape input) (at 20.32 154.94 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b1c0de29-40e0-42a4-8975-73dc360efdde") ) (hierarchical_label "PINX" (shape input) (at 337.82 198.12 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b4585191-3197-4b6c-9c96-255283af2bce") ) (hierarchical_label "POUTX" (shape output) (at 391.16 166.37 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "b6bca8e5-208f-4c72-9e96-90aa59c14765") ) (hierarchical_label "POUTX" (shape input) (at 165.1 53.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "baec25ac-cef0-4fb8-87a6-6ae06dc032ba") ) (hierarchical_label "CINY1" (shape input) (at 20.32 207.01 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c02c83a6-227d-4ac7-bf4e-aa05293facac") ) (hierarchical_label "COUTX" (shape output) (at 391.16 80.01 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "c3647411-2516-4c4a-8190-fdc8799292db") ) (hierarchical_label "CINY2" (shape input) (at 381 130.81 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c41f599a-d3ec-43d2-81e5-d0bc5c3924c9") ) (hierarchical_label "IN4" (shape input) (at 20.32 87.63 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ca4a82cf-517b-4647-a322-e03f6796f67d") ) (hierarchical_label "EN" (shape input) (at 20.32 190.5 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ce8d1a05-bbd5-4fce-9a76-5e9a87737961") ) (hierarchical_label "CINY1" (shape input) (at 339.09 83.82 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d12124a0-2f16-48cd-8b7a-61e245ebfaf4") ) (hierarchical_label "PINY1" (shape input) (at 20.32 102.87 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d3ec32fd-758a-4cfb-a9a2-19f4a24fe7b5") ) (hierarchical_label "RAM_O2" (shape output) (at 309.88 146.05 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d48a9942-693f-4546-abb2-2eb4341025e3") ) (hierarchical_label "IN8" (shape input) (at 20.32 227.33 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d9493335-9de4-414a-bbbf-935ed5649539") ) (hierarchical_label "IN4" (shape input) (at 20.32 217.17 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dccea847-dc80-43a8-812b-e14206a90b07") ) (hierarchical_label "PINY2" (shape input) (at 339.09 172.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e2242ebf-8fd2-4a15-ab0b-ed910cbab1e9") ) (hierarchical_label "IN7" (shape input) (at 20.32 224.79 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e8a2f340-4931-46cc-aff1-d0e7836f12c2") ) (hierarchical_label "IN8" (shape input) (at 20.32 113.03 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ec7622c4-c038-4a46-8ef1-4b18d6d3a9ed") ) (hierarchical_label "POUTY1" (shape input) (at 165.1 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "efc2aa2c-8726-491d-8bd6-9018f97281ef") ) (hierarchical_label "EN" (shape input) (at 165.1 95.25 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f02f3e71-d920-4d84-be37-e6c04e215f47") ) (hierarchical_label "SR" (shape input) (at 165.1 97.79 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f044d150-f857-40c4-87c3-506a216309cd") ) (hierarchical_label "CINX" (shape input) (at 20.32 125.73 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f3996e36-4db0-4a9c-89a5-dd2b42b8289d") ) (hierarchical_label "CINY2" (shape input) (at 165.1 74.93 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f5c95778-0888-4a9c-a30d-31a772e36a41") ) (hierarchical_label "CINX" (shape input) (at 20.32 90.17 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f7cf5715-332e-4766-a2d1-44df8b1312a2") ) (hierarchical_label "OUT2" (shape output) (at 309.88 140.97 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "fd23c644-dd2e-451d-8c90-dab987c12f35") ) (hierarchical_label "IN6" (shape input) (at 20.32 135.89 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fddd90bb-0ca5-4d1b-b2a9-9e65d1c11270") ) (symbol (lib_id "peppercorn:CONFIG") (at 373.38 162.56 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "02f3188d-6ba5-450e-b01f-4e3010b6acee") (property "Reference" "U?" (at 375.92 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 373.38 160.02 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 373.38 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 373.38 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 373.38 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "f41a5a1b-8d5c-4108-b718-83ddf70e1706") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1429") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U404") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U781") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U146") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1841") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U548") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1526") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1744") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U672") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1099") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U878") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U285") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1223") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1647") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1332") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:C_FUNCTION") (at 26.67 36.83 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "033d4bae-517d-4971-9acd-ec000e14b5e8") (property "Reference" "C_FUNCTION?" (at 26.67 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 26.67 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 26.67 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 26.67 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 26.67 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ba8e5a9b-cdb5-4515-af23-534497f5736d") ) (pin "" (uuid "45f8e7ad-8509-45a1-a42b-f6d8f7f1ea9f") ) (pin "" (uuid "df59b208-9c46-4c46-8be0-c386844a4f5e") ) (pin "" (uuid "5955ca7a-0da7-4bd6-97c8-62ec3f378923") ) (pin "" (uuid "e023e9f4-e2c3-4e2d-a8d9-07c6dc75f904") ) (pin "" (uuid "4d70a379-50d7-44ab-8218-b2b0b05b0fdd") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C_FUNCTION11") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C_FUNCTION3") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C_FUNCTION6") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C_FUNCTION1") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C_FUNCTION15") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C_FUNCTION4") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C_FUNCTION12") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C_FUNCTION14") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C_FUNCTION5") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C_FUNCTION8") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C_FUNCTION7") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C_FUNCTION?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C_FUNCTION2") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C_FUNCTION9") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C_FUNCTION13") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C_FUNCTION10") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 99.06 100.33 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "035943ce-d75e-49c6-8812-44a0c0618b87") (property "Reference" "L?" (at 99.06 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 99.06 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 99.06 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 99.06 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 99.06 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "593f4d6f-c557-4eb7-8a29-bb4fd3a8bc13") ) (pin "D1" (uuid "018b524f-b551-4823-9212-2be6662c6a16") ) (pin "D0" (uuid "e15a22df-800e-4da3-96ab-b00bf2015d23") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L296") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L76") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L154") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L7") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L352") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L126") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L310") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L338") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L140") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L254") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L168") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L62") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L268") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L324") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L282") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 179.07 72.39 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "059b8ddd-36f3-4c72-9858-a78fd6194e18") (property "Reference" "U81" (at 181.61 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 179.07 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 179.07 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 179.07 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 179.07 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "9a5215fa-83bc-477f-9d2c-37b4ea8d63cd") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1377") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U352") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U729") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U60") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1789") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U496") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1474") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1692") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U615") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1047") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U826") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U81") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U233") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1171") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1595") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1280") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_2") (lib_id "peppercorn:LUT2 with C_I mux") (at 30.48 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "090cb475-f869-4567-a88f-fac30608f40f") (property "Reference" "INIT_L?" (at 30.48 104.648 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 27.94 95.25 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 30.48 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 30.48 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "cc951d4b-0a2a-45da-a428-915b31d6d4db") ) (pin "Y" (uuid "8f8ba8dc-57f2-4b70-9f13-105820e4be11") ) (pin "D0" (uuid "1b5be9cf-18a2-4b87-8f31-a106f60e16d0") ) (pin "D0" (uuid "9e608f46-a612-4bfa-a784-c8f59386bd4f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "INIT_L152") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "INIT_L38") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "INIT_L77") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "INIT_L2") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "INIT_L164") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "INIT_L71") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "INIT_L155") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "INIT_L161") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "INIT_L74") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "INIT_L143") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "INIT_L80") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "INIT_L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "INIT_L35") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "INIT_L146") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "INIT_L158") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "INIT_L149") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XOR") (at 114.3 101.6 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0b36bba9-4b07-4e11-8c70-3cf6c4171592") (property "Reference" "U?" (at 113.9327 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 113.9327 97.79 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 114.3 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 114.3 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 114.3 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "8247da57-273f-4300-8c2d-ed689c216d00") ) (pin "" (uuid "1cccea30-355a-4992-847b-7ba010c27b25") ) (pin "" (uuid "dd13681a-2887-4b7a-afc2-5726a34bb6ff") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1370") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U345") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U722") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U44") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1782") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U489") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1467") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1685") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U608") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1040") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U819") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U226") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1164") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1588") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1273") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 186.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0b9259bd-d95b-4071-8128-0dda1674bc4b") (property "Reference" "U112" (at 339.09 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 184.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "b67dfb2a-5db4-44e4-b8ad-a36a15cbba06") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1415") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U390") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U767") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U132") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1827") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U534") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1512") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1730") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U658") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1085") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U864") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U112") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U271") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1209") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1633") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1318") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 386.08 129.54 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0d0ee0ee-7d66-4fe7-98b9-45021eab66e0") (property "Reference" "M?" (at 386.08 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 386.08 135.89 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 386.08 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 386.08 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 386.08 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "78dd2945-5316-4a36-a0bc-f0e4c41638b2") ) (pin "D1" (uuid "94aad6ff-5be2-4b38-b0d7-140aca37533e") ) (pin "D0" (uuid "10266975-2df8-4938-a125-83d4e3f36bc8") ) (pin "S" (uuid "af41a29e-d9dc-4474-a538-e4a7f0870b8a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M541") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M146") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M291") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M37") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M689") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M190") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M572") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M658") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M243") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M409") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M322") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M93") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M467") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M627") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M510") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 281.94 142.24 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0db623be-7f00-4e8e-b04a-d5be8d5bd9d6") (property "Reference" "M?" (at 281.94 149.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 281.94 151.13 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 281.94 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 281.94 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 281.94 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "f1a1858b-c52e-4551-8f98-d0a8da05c978") ) (pin "D1" (uuid "3eae639c-6975-4ac5-9d08-fbc8b0da6175") ) (pin "D2" (uuid "2ae3c181-b7b1-41c4-9531-9e29f7e9d05a") ) (pin "S0" (uuid "3509cd63-99a7-436c-ab46-ba667f916485") ) (pin "S1" (uuid "cedeab40-558c-461b-a517-e6e04d29eecb") ) (pin "Y" (uuid "59ce740b-5dce-4cf0-8cd3-20ffa3e7ef33") ) (pin "D3" (uuid "bd58bbe0-8b0f-4b90-8e1a-bc2600a12d29") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M529") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M134") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M279") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M23") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M677") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M178") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M560") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M646") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M231") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M397") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M310") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M81") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M455") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M615") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M498") (unit 1) ) ) ) ) (symbol (lib_name "AND_1") (lib_id "peppercorn:AND") (at 39.37 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0ec36138-c8db-4af2-b934-83e7928d6d5e") (property "Reference" "U?" (at 40.005 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 40.005 143.51 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 39.37 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 39.37 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 39.37 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "d7687788-2a9e-4559-80de-5e5481539553") ) (pin "" (uuid "7e079019-bc99-43d0-be41-13dd4a4e7171") ) (pin "" (uuid "b08f0ae7-f017-40a1-a03d-a0f0bf79b6f9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1351") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U326") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U703") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U16") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1763") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U299") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1448") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1666") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U589") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1021") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U800") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U207") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1145") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1569") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1254") (unit 1) ) ) ) ) (symbol (lib_name "AO21_1") (lib_id "peppercorn:AO21") (at 379.73 143.51 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0f1a381a-ee20-4c49-af9d-5571513206a8") (property "Reference" "U148" (at 382.2699 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 382.2699 139.7 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 379.73 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 379.73 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 379.73 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "b65066a2-baa8-4d4e-9dfb-e46c169c6eb0") ) (pin "" (uuid "455cd4d7-c0ac-46d7-b915-f3df000d41be") ) (pin "" (uuid "c24a891f-1381-4d29-8b2b-b4eefd9755c6") ) (pin "" (uuid "dd295e77-e7b8-4fef-b723-2c061f2fa7f8") ) (instances (project "" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U674") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U1109") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U406") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U1101") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U888") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U156") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U682") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U880") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U295") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U550") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U414") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U148") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U287") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U558") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U791") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U783") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_3") (lib_id "peppercorn:LUT2 with C_I mux") (at 30.48 111.76 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "10b645e2-9daf-4c88-a31f-163987553c07") (property "Reference" "INIT_L?" (at 30.48 117.602 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 27.94 107.95 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 30.48 111.76 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 111.76 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 30.48 111.76 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "722d92d3-68fe-4443-90e2-5705c4bfbef3") ) (pin "Y" (uuid "e7100a25-8bfd-4ace-82b1-23d1990253c7") ) (pin "D0" (uuid "2a20accf-56fb-47c8-996f-712e6c3a4adc") ) (pin "D0" (uuid "ac7928ef-b212-427f-b631-35821bcaa49a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "INIT_L153") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "INIT_L39") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "INIT_L78") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "INIT_L3") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "INIT_L165") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "INIT_L72") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "INIT_L156") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "INIT_L162") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "INIT_L75") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "INIT_L144") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "INIT_L81") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "INIT_L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "INIT_L36") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "INIT_L147") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "INIT_L159") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "INIT_L150") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 302.26 140.97 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "11eb1972-5066-4601-942a-52ec11ba5a73") (property "Reference" "C?" (at 302.26 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 302.26 137.16 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 302.26 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 302.26 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 302.26 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "5513cdfb-c6ae-4822-ae8b-2bd7d88947c7") ) (pin "D1" (uuid "3de94558-43ca-4060-bcbc-d949e50ac1d6") ) (pin "Y" (uuid "b092ec8e-b120-4187-96e5-5db1f508b3ce") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C166") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C44") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C89") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C15") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C218") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C63") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C179") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C205") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C76") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C127") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C102") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C31") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C140") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C192") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C153") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 34.29 194.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "143529fc-2268-423c-82b8-181adfd8996c") (property "Reference" "U23" (at 36.83 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 34.29 191.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 34.29 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 34.29 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 34.29 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "50b6aabf-dc2b-4214-bd87-979bd31f54ab") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1348") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U323") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U700") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U8") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1760") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U296") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1445") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1663") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U586") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1018") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U797") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U23") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U204") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1142") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1566") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1251") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 143.51 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "15aaddb3-58c3-4c50-a28f-ebfa14e795c6") (property "Reference" "U107" (at 339.09 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 140.97 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "0d135ea9-784d-4f33-94ad-66bf457c25e8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1407") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U382") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U759") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U124") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1819") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U526") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1504") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1722") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U645") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1077") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U856") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U107") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U263") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1201") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1625") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1310") (unit 1) ) ) ) ) (symbol (lib_name "OR_7") (lib_id "peppercorn:OR") (at 382.27 205.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1a243724-627d-4065-bb10-be8a553efa8e") (property "Reference" "U?" (at 381.2674 199.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 381.2674 201.93 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 382.27 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 382.27 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 382.27 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "91dafa40-35f3-44ac-959c-44ff0dec19bf") ) (pin "" (uuid "f0052022-5e17-4678-afe1-e8f7bfd94379") ) (pin "" (uuid "559ec05e-288c-42a8-8aad-ae06809e8099") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1437") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U412") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U789") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U154") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1849") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U556") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1534") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1752") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U680") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1107") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U886") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U293") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1231") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1655") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1340") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 281.94 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1b6a7791-2c75-457c-aeb9-0285139bdd72") (property "Reference" "M?" (at 281.94 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 281.94 118.11 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 281.94 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 281.94 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 281.94 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "61e9f68d-a98c-482a-b8f9-d90f111def21") ) (pin "S0" (uuid "d25f32b0-d543-4d5d-a2ca-1f49707e8ad4") ) (pin "D2" (uuid "3f4f650f-7465-41c7-b8cd-1b862e1bd844") ) (pin "D3" (uuid "5ee92360-4de3-46f6-bdcf-218801a36519") ) (pin "D1" (uuid "2296dfe7-f16f-48d8-be61-70055014eae2") ) (pin "S1" (uuid "73165da7-2910-4855-8719-225d1076f96d") ) (pin "D0" (uuid "ca6904f9-4245-461f-ab37-b40e1e2598dc") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M528") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M133") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M278") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M22") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M676") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M106") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M559") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M645") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M230") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M396") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M309") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M80") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M454") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M614") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M497") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 369.57 203.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1c66808a-8f70-4101-a253-4d600be37140") (property "Reference" "U?" (at 372.11 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 369.57 200.66 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 369.57 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 369.57 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 369.57 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "db0a91b6-7a5a-4129-9ef4-d6cd87baeabf") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1428") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U403") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U780") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U145") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1840") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U547") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1525") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1743") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U671") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1098") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U877") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U284") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1222") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1646") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1331") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2 (conceptual)") (at 88.9 101.6 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1ca06dee-76b0-41c4-a10e-be3782078e3e") (property "Reference" "M?" (at 88.9 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 88.9 107.95 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 88.9 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 88.9 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 88.9 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "7f96ea53-462a-477b-956d-8c9ce942b73b") ) (pin "S" (uuid "1b5d392c-5046-436d-ad25-b8f6e563a21c") ) (pin "D1" (uuid "0059e242-e855-437a-bd63-b24f797a0ee1") ) (pin "Y" (uuid "3a732b73-546d-4dde-9267-716cb4c8383f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M519") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M124") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M269") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M6") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M667") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M97") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M550") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M636") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M221") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M387") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M300") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M71") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M445") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M605") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M488") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 99.06 203.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1ee2569b-8737-4d41-a691-371ebf0d4082") (property "Reference" "C?" (at 99.06 207.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 99.06 199.39 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 99.06 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 99.06 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 99.06 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "f9cddff5-3d20-49b7-892b-b788ef721deb") ) (pin "D0" (uuid "6b47518d-d7c8-4fe9-a01d-1d44019570dc") ) (pin "Y" (uuid "db4de3c4-a46c-47de-a255-757731f21a14") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C159") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C37") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C82") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C4") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C211") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C56") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C172") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C198") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C69") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C120") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C95") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C24") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C133") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C185") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C146") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 367.03 116.84 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1f673467-0615-44e9-a4c6-10659363fdca") (property "Reference" "U?" (at 369.57 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 367.03 114.3 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 367.03 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 367.03 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 367.03 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "4593ec7c-7c5b-4e5b-9cb8-1ae09cf2720b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1425") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U400") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U777") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U142") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1837") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U544") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1522") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1740") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U668") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1095") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U874") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U281") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1219") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1643") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1328") (unit 1) ) ) ) ) (symbol (lib_name "NOT_7") (lib_id "peppercorn:NOT") (at 355.6 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1faa2735-5f3b-44b6-bb8e-f5510ad38c33") (property "Reference" "U?" (at 355.6 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 355.6 144.78 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 355.6 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 355.6 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 355.6 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "7ac339bc-9a1e-4baa-a0ca-c2d8dda2109a") ) (pin "" (uuid "286984b3-b159-4aac-a036-c73e09991535") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1420") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U395") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U772") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U137") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1832") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U539") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1517") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1735") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U663") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1090") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U869") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U276") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1214") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1638") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1323") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 63.5 85.09 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "20471143-f87c-4c33-8c7d-edd49694890b") (property "Reference" "L?" (at 63.5 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 63.5 81.28 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "64950944-1560-4a98-8f81-3efd2e60de55") ) (pin "Y" (uuid "cff45291-1280-40d6-a833-cb980cd41734") ) (pin "D0" (uuid "d1a063b9-8f8c-4da2-843e-a54a2c7b3751") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L294") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L74") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L152") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L5") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L350") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L124") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L308") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L336") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L138") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L252") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L166") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L60") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L266") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L322") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L280") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 236.22 54.61 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "22645a8e-1da1-4df5-8270-a35621521451") (property "Reference" "M?" (at 236.22 48.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 236.22 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 236.22 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 236.22 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 236.22 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "S" (uuid "c66bc0ac-867a-48a8-b26a-8ee478cd28f9") ) (pin "Y" (uuid "f6579153-963c-4f6e-a45a-8a00517c1696") ) (pin "D0" (uuid "33622637-dc60-47d7-a2a6-c0f89b54f03e") ) (pin "D1" (uuid "306d5a34-3df8-481a-a509-1849c98ce989") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M527") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M132") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M277") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M19") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M675") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M105") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M558") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M644") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M229") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M395") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M308") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M79") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M453") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M613") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M496") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 302.26 107.95 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "23f729d5-730b-4f68-b733-fdafec83db65") (property "Reference" "C?" (at 302.26 111.76 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 302.26 104.14 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 302.26 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 302.26 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 302.26 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "5705d1ec-1ef3-44dc-9b19-451547554187") ) (pin "D1" (uuid "f684f2e6-ce6b-41eb-948c-950960633926") ) (pin "Y" (uuid "da55c9a1-523a-4840-90ce-772d2b405323") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C165") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C43") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C88") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C14") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C217") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C62") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C178") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C204") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C75") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C126") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C101") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C30") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C139") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C191") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C152") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 71.12 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "24f99d8e-0206-4f43-aac2-e85ea5c31252") (property "Reference" "U?" (at 339.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 68.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "85365821-4371-48d2-bc47-36c5feb29fcd") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1401") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U376") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U753") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U106") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1813") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U520") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1498") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1716") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U639") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1071") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U850") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U257") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1195") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1619") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1304") (unit 1) ) ) ) ) (symbol (lib_name "AND_11") (lib_id "peppercorn:AND") (at 355.6 180.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "25c838bd-859f-4312-9af9-295fe7d1001e") (property "Reference" "U114" (at 356.235 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 356.235 176.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 355.6 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 355.6 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 355.6 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "580b189c-746c-4737-be9f-c84917dcdbe8") ) (pin "" (uuid "81a85c93-a174-44bb-8ae0-aa8cb1362b0d") ) (pin "" (uuid "afdb3f18-f07f-402c-822d-3d756bdb167f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1421") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U396") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U773") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U138") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1833") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U540") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1518") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1736") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U664") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1091") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U870") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U114") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U277") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1215") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1639") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1324") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2867841b-9f5b-4764-a4ba-841bcaad1d40") (property "Reference" "U40" (at 339.09 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 66.04 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "950fff3c-74c2-4e8a-817c-5db44a75b9e8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1400") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U375") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U752") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U105") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1812") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U519") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1497") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1715") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U638") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1070") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U849") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U40") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U256") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1194") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1618") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1303") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 369.57 128.27 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "28975adb-f8ee-4be7-97af-31b4cbdc2bc8") (property "Reference" "M?" (at 369.57 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 369.57 134.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 369.57 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 369.57 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 369.57 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "e9a61c37-a54a-4dbc-8749-83441866b984") ) (pin "D0" (uuid "92e01c76-aff0-4bcb-82d7-c205de08a3c7") ) (pin "S" (uuid "356d3a01-8862-41e0-a2f2-661b93543bd2") ) (pin "Y" (uuid "4d465344-837a-49d2-b50c-b5e5cc5a49a5") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M537") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M142") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M287") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M33") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M685") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M186") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M568") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M654") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M239") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M405") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M318") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M89") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M463") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M623") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M506") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 97.79 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "28d3b480-7549-4f59-acef-28ebef2def97") (property "Reference" "U68" (at 339.09 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 95.25 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "6369d79d-3c2a-4f0d-bb29-8c5eef67aff1") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1403") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U378") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U755") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U117") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1815") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U522") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1500") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1718") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U641") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1073") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U852") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U68") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U259") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1197") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1621") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1306") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 34.29 204.47 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "28eb740d-34f5-4dcc-b958-16fb601841f5") (property "Reference" "U22" (at 36.83 204.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 34.29 201.93 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 34.29 204.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 34.29 204.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 34.29 204.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "1558ac32-b191-49cf-98ae-07260770a745") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1349") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U324") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U701") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U9") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1761") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U297") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1446") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1664") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U587") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1019") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U798") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U22") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U205") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1143") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1567") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1252") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 157.48 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "29a14200-7769-410c-b997-b0a4bf5eb359") (property "Reference" "U101" (at 339.09 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 154.94 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "539643b0-589a-4baf-9c5a-808416e8e2a4") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1411") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U386") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U763") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U128") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1823") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U530") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1508") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1726") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U654") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1081") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U860") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U101") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U267") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1205") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1629") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1314") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:FA") (at 76.2 181.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2ec531b3-9db0-4694-83f0-2fb461c150e7") (property "Reference" "U?" (at 76.2 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 178.3649 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "CO" (uuid "8e5918d4-2f6a-4b92-b242-3d3c2973d805") ) (pin "A" (uuid "129f6b37-736f-4095-882f-eafcfb614340") ) (pin "CI" (uuid "a4e15946-0e3f-4f70-9f1a-c8cf7a85907a") ) (pin "S" (uuid "e891ef3e-6855-4b48-978c-b3989160d4a1") ) (pin "B" (uuid "e9e047f4-a85c-44dc-a58d-2aa6f8b6a54e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1360") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U335") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U712") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U28") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1772") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U479") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1457") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1675") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U598") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1030") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U809") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U216") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1154") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1578") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1263") (unit 1) ) ) ) ) (symbol (lib_name "AND_10") (lib_id "peppercorn:AND") (at 355.6 93.98 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "30c306a2-5a0b-44cb-9e54-ea04e0f50ef1") (property "Reference" "U?" (at 356.235 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 356.235 90.17 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 355.6 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 355.6 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 355.6 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "a8067790-d1c7-47d4-80e7-0f6dbbcaa60f") ) (pin "" (uuid "b226e01c-7573-4d42-bfb8-1f79a0df00e8") ) (pin "" (uuid "57763ed6-5e73-446f-acf4-f84cfdf0823c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1424") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U399") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U776") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U141") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1836") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U543") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1521") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1739") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U667") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1094") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U873") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U280") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1218") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1642") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1327") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 287.02 114.3 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "31290bcc-58c9-49b4-837f-3d4e7b989316") (property "Reference" "U?" (at 289.56 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 287.02 111.76 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 287.02 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 287.02 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 287.02 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "89d04700-4b5c-4cc2-bb15-245d7994fe20") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1394") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U369") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U746") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U96") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1806") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U513") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1491") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1709") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U632") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1064") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U843") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U250") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1188") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1612") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1297") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 26.67 175.26 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "316c4be2-8aaa-4f42-8392-cfa7cbc10b4b") (property "Reference" "U?" (at 26.67 175.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 26.67 172.72 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 26.67 175.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 26.67 175.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 26.67 175.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "6cba04e2-787a-45e1-8eb6-d8914e924c30") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1345") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U320") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U697") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U3") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1757") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U159") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1442") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1660") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U583") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1015") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U794") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U201") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1139") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1563") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1248") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 116.84 157.48 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "3350bc89-600a-478c-b80a-bb0818833b56") (property "Reference" "M?" (at 116.84 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 116.84 151.13 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 116.84 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 116.84 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 116.84 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "21364d49-358f-4ce3-9119-7a1f391a773d") ) (pin "S" (uuid "1788be42-3151-4229-93d7-b7122ba5aabd") ) (pin "Y" (uuid "c7b37c93-f435-491b-b4a3-6886fd8b4827") ) (pin "D1" (uuid "53ae7648-cfa1-49a6-9432-b330b9c01578") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M524") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M129") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M274") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M16") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M672") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M102") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M555") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M641") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M226") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M392") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M305") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M76") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M450") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M610") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M493") (unit 1) ) ) ) ) (symbol (lib_name "AND_7") (lib_id "peppercorn:AND") (at 190.5 83.82 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "35b03140-ed72-48b4-9e5c-a6ccd153847b") (property "Reference" "U82" (at 191.135 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 191.135 80.01 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 190.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 190.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 190.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "fef98f02-beb0-4e8b-b031-4d7624475d3e") ) (pin "" (uuid "bce895ea-3579-4a09-95a1-d1cc57028c1f") ) (pin "" (uuid "0e724eb8-d684-439a-9304-4669888ff162") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1380") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U355") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U732") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U70") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1792") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U499") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1477") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1695") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U618") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1050") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U829") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U82") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U236") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1174") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1598") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1283") (unit 1) ) ) ) ) (symbol (lib_name "AND_4") (lib_id "peppercorn:AND") (at 45.72 205.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "39dfbb51-5d3a-45fd-aa3e-ff6b4838421a") (property "Reference" "U67" (at 46.355 199.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 46.355 201.93 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 45.72 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 45.72 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 45.72 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "5f587946-c2e6-4961-a1ac-6a2b16ff641a") ) (pin "" (uuid "2d67c6fa-2df8-4a90-bfdc-9b38fdcc8579") ) (pin "" (uuid "3b4bb0d8-8512-4957-8c20-8eb2f6bf2403") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1354") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U329") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U706") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U19") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1766") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U302") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1451") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1669") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U592") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1024") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U803") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U67") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U210") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1148") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1572") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1257") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 68.58 207.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3b8cea7f-835b-4ce8-8ceb-855d40e9d9aa") (property "Reference" "U?" (at 68.58 207.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 204.47 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 207.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 207.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 207.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "814fc952-f348-42d0-8d65-1b3e28f6af1a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1359") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U334") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U711") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U27") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1771") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U478") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1456") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1674") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U597") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1029") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U808") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U215") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1153") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1577") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1262") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 99.06 193.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3b8fc4e2-1043-473b-8b3c-25cf747a0381") (property "Reference" "C?" (at 99.06 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 99.06 189.23 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 99.06 193.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 99.06 193.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 99.06 193.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "bc2f7326-f3b6-44a7-9ac2-841f59325200") ) (pin "D0" (uuid "bc8e4025-1ec2-4cc7-bc6f-8765f91424f0") ) (pin "Y" (uuid "db500acc-7d86-4770-9eee-19e4abe27550") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C158") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C36") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C81") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C3") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C210") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C55") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C171") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C197") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C68") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C119") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C94") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C23") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C132") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C184") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C145") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 203.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3eec2226-d64d-46b4-ac91-a824b3e1152d") (property "Reference" "U120" (at 339.09 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 200.66 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 203.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "de1d0aa9-7746-4e73-abe4-1ad8b2f3971c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1416") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U391") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U768") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U133") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1828") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U535") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1513") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1731") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U659") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1086") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U865") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U120") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U272") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1210") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1634") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1319") (unit 1) ) ) ) ) (symbol (lib_name "OR_1") (lib_id "peppercorn:OR") (at 375.92 64.77 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "400e4510-b83c-4cfd-a78f-2a6ec4d781b4") (property "Reference" "U?" (at 374.9174 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 374.9174 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 375.92 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 375.92 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 375.92 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "5ebde0e0-0005-45d9-83b1-3728eff54eb8") ) (pin "" (uuid "f398e994-8654-4276-9231-440d8a88a7fc") ) (pin "" (uuid "469227a7-70ee-4f5e-88ce-8663e4a9b841") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1432") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U407") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U784") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U149") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1844") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U551") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1529") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1747") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U675") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1102") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U881") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U288") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1226") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1650") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1335") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 181.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "40a43e7d-b60b-4b1f-8606-17325dc14fbc") (property "Reference" "U110" (at 339.09 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 179.07 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "8db99585-096e-4c78-92b8-53e48feab7aa") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1413") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U388") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U765") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U130") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1825") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U532") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1510") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1728") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U656") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1083") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U862") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U110") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U269") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1207") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1631") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1316") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4 (conceptual)") (at 43.18 137.16 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "410a575b-39bd-4528-b15d-cbe2a53b0beb") (property "Reference" "M?" (at 43.18 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 43.18 146.05 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 43.18 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 43.18 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 43.18 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "0b32a31a-36fa-47e3-9663-7a2d0bc3d55d") ) (pin "S0" (uuid "aa0ceeae-5ac9-4bcf-8847-5fa934f213de") ) (pin "D3" (uuid "9c4c2dce-3932-4ac1-90df-b0afae8151cf") ) (pin "D2" (uuid "9f7075b0-965b-4a68-a1b6-c6d5a44f9745") ) (pin "D1" (uuid "59cdfb1c-5ecd-41e2-875a-e3547e761488") ) (pin "S1" (uuid "c61d99ea-8eb5-4f46-b922-0f4d3595dcb3") ) (pin "Y" (uuid "d9eaf873-4e35-43be-8d3e-22f1bbfa4787") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M514") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M119") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M264") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M1") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M662") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M41") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M545") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M631") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M216") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M382") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M295") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M66") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M440") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M600") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M483") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 152.4 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "464f8c03-4abf-4aa1-9870-d17f2a79264a") (property "Reference" "U103" (at 339.09 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 149.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c02bf36d-b30f-4d68-9a10-ef195059a936") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1409") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U384") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U761") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U126") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1821") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U528") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1506") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1724") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U647") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1079") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U858") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U103") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U265") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1203") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1627") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1312") (unit 1) ) ) ) ) (symbol (lib_name "AO21_2") (lib_id "peppercorn:AO21") (at 379.73 57.15 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4e53ab05-dc0d-4e42-8466-4d974b2a9750") (property "Reference" "U147" (at 382.2699 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 382.2699 53.34 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 379.73 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 379.73 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 379.73 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "b50b2092-e60d-4289-83e2-e0008f6bea64") ) (pin "" (uuid "fdba4a8b-ecfd-4fc8-ada9-ffa8054e69ad") ) (pin "" (uuid "068dbc85-a876-4ff0-95dc-5fbc90ce53db") ) (pin "" (uuid "0a40cfa9-c237-404a-a167-661cd7095b08") ) (instances (project "" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U673") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U1108") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U405") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U1100") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U887") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U155") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U681") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U879") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U294") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U549") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U413") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U147") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U286") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U557") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U790") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U782") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:FA") (at 76.2 191.77 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4f0d1e57-bfe2-4237-b0cc-8f4051bfbe65") (property "Reference" "U?" (at 76.2 191.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 188.5249 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 191.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 191.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 191.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "CO" (uuid "6c7bcd5f-59f4-43f8-8817-5703b5e5d41c") ) (pin "A" (uuid "2483970a-9fcd-4ad4-9bb5-20541903f676") ) (pin "CI" (uuid "9c27cf58-523d-494f-95d1-75ab56f2c6f5") ) (pin "S" (uuid "140f7d73-6d6f-45c0-a853-257c9a44eab8") ) (pin "B" (uuid "b2bec7a0-132a-4149-9599-3fb41d165989") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1361") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U336") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U713") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U29") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1773") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U480") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1458") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1676") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U599") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1031") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U810") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U217") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1155") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1579") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1264") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 228.6 62.23 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "511d95e5-2efc-4abc-8895-cffaf71b3258") (property "Reference" "M?" (at 228.6 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 228.6 58.42 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 228.6 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 228.6 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 228.6 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "S" (uuid "c898da24-6865-457c-9fc6-52a71a49cf67") ) (pin "D1" (uuid "ef1dbb79-4128-4ce1-bee0-224f9a37f3a9") ) (pin "Y" (uuid "c49ec4c0-d699-4150-93a2-4fdf7a48c275") ) (pin "D0" (uuid "ac1fcd63-0dfc-4fbb-bcb2-9f32e5b348ca") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M526") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M131") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M276") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M18") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M674") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M104") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M557") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M643") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M228") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M394") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M307") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M78") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M452") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M612") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M495") (unit 1) ) ) ) ) (symbol (lib_name "AND_5") (lib_id "peppercorn:AND") (at 45.72 195.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "53be5079-2ebe-405d-b0d2-87ed10885e3a") (property "Reference" "U24" (at 46.355 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 46.355 191.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 45.72 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 45.72 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 45.72 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "b208d28c-4027-43bb-ab13-a2caed22a858") ) (pin "" (uuid "0fcd42f0-2a95-48fe-8b43-e0056c443f8a") ) (pin "" (uuid "7b99ab10-c563-41f1-ad1b-1f1769a3a56c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1353") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U328") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U705") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U18") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1765") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U301") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1450") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1668") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U591") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1023") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U802") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U24") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U209") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1147") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1571") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1256") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 386.08 214.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "561dcf16-702b-4fa4-99ae-f88102581d3b") (property "Reference" "M?" (at 386.08 219.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 386.08 220.98 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 386.08 214.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 386.08 214.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 386.08 214.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "S" (uuid "14688246-1e45-4337-abee-01270fa0744d") ) (pin "Y" (uuid "febdc012-21a8-4b7f-b382-97cbd8e74877") ) (pin "D0" (uuid "dcc16cd7-a1f7-4fa5-8b5a-429a7be38f7f") ) (pin "D1" (uuid "72175827-fc52-4ab0-8a47-e1b79ff7b6ce") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M544") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M149") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M294") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M40") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M692") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M193") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M575") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M661") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M246") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M412") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M325") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M96") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M470") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M630") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M513") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 172.72 96.52 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5699ba2d-e9c1-4512-b758-a615e7fddf8b") (property "Reference" "C?" (at 172.72 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 172.72 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 172.72 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 172.72 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 172.72 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "69dbf591-17ba-4487-9398-21272fbaae5f") ) (pin "D0" (uuid "ac588600-d74b-4dfa-b8d5-451e99003808") ) (pin "D1" (uuid "552483ae-4421-4f7d-91c9-f75e1c11ac06") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C160") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C38") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C83") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C8") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C212") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C57") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C173") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C199") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C70") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C121") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C96") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C25") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C134") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C186") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C147") (unit 1) ) ) ) ) (symbol (lib_name "OR_4") (lib_id "peppercorn:OR") (at 232.41 71.12 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "569b7e06-1909-41bf-a78b-cabb2143283f") (property "Reference" "U?" (at 231.4074 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 231.4074 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 232.41 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 232.41 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 232.41 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "8bb052e6-5577-41c5-bbea-96bfa2a57d07") ) (pin "" (uuid "65d85648-cc81-4757-8cbc-a0268629e92c") ) (pin "" (uuid "5ea35fd8-7d32-4baf-870e-1eeb46b8bf9d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1387") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U362") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U739") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U89") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1799") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U506") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1484") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1702") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U625") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1057") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U836") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U243") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1181") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1605") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1290") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:OA21") (at 39.37 110.49 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "579828ac-e949-46ad-bff5-d2c6ea2b6e0a") (property "Reference" "U?" (at 30.48 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 43.18 107.95 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 39.37 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 39.37 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 39.37 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "06a6b0af-fe96-4c24-8024-800308f583ee") ) (pin "" (uuid "1648a775-23e1-4c6c-bc7a-4548e2a135cf") ) (pin "" (uuid "dd0dd594-7807-4152-b78e-3d1fb625ff14") ) (pin "" (uuid "36c0f793-5fbf-4a02-8776-580fb185238d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1350") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U325") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U702") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U15") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1762") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U298") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1447") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1665") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U588") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1020") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U799") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U206") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1144") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1568") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1253") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 219.71 69.85 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5b466740-0575-4d35-b638-469cdc730bb8") (property "Reference" "U?" (at 222.25 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 219.71 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 219.71 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 219.71 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 219.71 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "abfc05cf-e444-45dd-b643-6fa39fff2269") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1385") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U360") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U737") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U85") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1797") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U504") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1482") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1700") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U623") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1055") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U834") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U241") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1179") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1603") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1288") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT1") (at 170.18 78.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5bcd8ea7-3593-42da-a45d-88ccc7c9a5e9") (property "Reference" "L30" (at 170.18 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 170.18 74.93 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 170.18 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 170.18 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 170.18 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D" (uuid "b8759b41-3c4b-4d95-ad9e-0a87ad3372d7") ) (pin "Y" (uuid "39891810-0452-4ed6-a174-94aa2f310a05") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L299") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L79") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L157") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L33") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L355") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L129") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L313") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L341") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L143") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L257") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L171") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L30") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L65") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L271") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L327") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L285") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 356.87 196.85 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5c95043d-4c50-48f2-a79a-5362dbf999e5") (property "Reference" "U109" (at 359.41 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 356.87 194.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 356.87 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 356.87 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 356.87 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "edb02839-784f-433c-bc34-3ed168cc8797") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1423") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U398") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U775") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U140") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1835") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U542") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1520") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1738") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U666") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1093") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U872") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U109") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U279") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1217") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1641") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1326") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 129.54 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5cdb23cf-ee71-4a24-a959-846faa7b7e14") (property "Reference" "L?" (at 129.54 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 129.54 101.6 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 129.54 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 129.54 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 129.54 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "05314c7e-fa8b-4e4b-9ece-68e36b4e9abf") ) (pin "Y" (uuid "8f5af36d-c491-472f-ab7f-55c93de9217d") ) (pin "D1" (uuid "4c12772e-7019-463c-956a-0076333590c8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L297") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L77") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L155") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L28") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L353") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L127") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L311") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L339") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L141") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L255") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L169") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L63") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L269") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L325") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L283") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 274.32 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5e1a52b3-861f-443c-87c1-6c05083030e4") (property "Reference" "U?" (at 276.86 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 274.32 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 274.32 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 274.32 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 274.32 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "20cb784d-ec1a-492c-a674-d319b65027c3") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1390") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U365") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U742") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U92") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1802") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U509") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1487") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1705") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U628") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1060") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U839") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U246") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1184") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1608") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1293") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XOR3") (at 111.76 144.78 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5fec8c78-9016-4f24-8b81-04669236a79a") (property "Reference" "U?" (at 111.125 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 111.125 139.7 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 111.76 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 111.76 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 111.76 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "fd79bf54-46c8-42b4-b9c6-3bd1b0abc587") ) (pin "" (uuid "5470e712-1904-44c4-9acd-6df1cf158e05") ) (pin "" (uuid "4a17809b-8241-4d56-9583-aca0f72d2c90") ) (pin "" (uuid "0b2f24ef-8e4a-40bd-b330-44ac37bf451a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1369") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U344") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U721") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U41") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1781") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U488") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1466") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1684") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U607") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1039") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U818") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U225") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1163") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1587") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1272") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "610683f7-812f-4c17-83ef-af8e7ba5b42c") (property "Reference" "U73" (at 339.09 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "4f4d7beb-a5da-4e0d-85f9-4bbe72890e5d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1402") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U377") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U754") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U116") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1814") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U521") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1499") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1717") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U640") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1072") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U851") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U73") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U258") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1196") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1620") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1305") (unit 1) ) ) ) ) (symbol (lib_name "XOR_4") (lib_id "peppercorn:XOR") (at 55.88 200.66 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "620d81d4-3d61-4934-8338-5bf2f9d612ce") (property "Reference" "U77" (at 55.5127 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 55.5127 196.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 55.88 200.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 55.88 200.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 55.88 200.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "e3599329-1c94-481c-b917-dc7dd686a81c") ) (pin "" (uuid "a3a15935-91c6-47b0-af95-d40f384ee40f") ) (pin "" (uuid "d1ae4ac0-7c7c-4c5d-9961-4d4379710344") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1356") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U331") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U708") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U21") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1768") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U304") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1453") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1671") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U594") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1026") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U805") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U77") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U212") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1150") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1574") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1259") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT1") (at 170.18 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "62923834-4e8c-400b-9f4e-0448726a5898") (property "Reference" "L31" (at 170.18 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 170.18 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 170.18 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 170.18 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 170.18 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D" (uuid "5e3da1f5-c807-4564-9dec-234d8fbd098b") ) (pin "Y" (uuid "cc0647c5-f13a-4c10-8a0c-e8462d8ef171") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L298") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L78") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L156") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L32") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L354") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L128") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L312") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L340") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L142") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L256") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L170") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L31") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L64") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L270") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L326") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L284") (unit 1) ) ) ) ) (symbol (lib_name "XOR_2") (lib_id "peppercorn:XOR") (at 132.08 166.37 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "62e55615-11c4-42e5-af7f-f727ac48a26c") (property "Reference" "U?" (at 131.7127 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 131.7127 162.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 132.08 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 132.08 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 132.08 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "96df1a63-5c12-4da2-a76c-4d187c5698b8") ) (pin "" (uuid "e8137286-b75a-4be3-9c79-39ab6137fc7d") ) (pin "" (uuid "c22de921-10db-471a-a87a-75837314f05d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1373") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U348") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U725") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U50") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1785") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U492") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1470") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1688") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U611") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1043") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U822") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U229") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1167") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1591") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1276") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 185.42 139.7 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "658cc4cf-2e14-49b2-b708-4be6b6ae83ef") (property "Reference" "M?" (at 185.42 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 185.42 148.59 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 185.42 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 185.42 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 185.42 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "S1" (uuid "56da6386-639a-4105-b58e-0e982c14b768") ) (pin "D3" (uuid "99703d62-8aa8-4319-a7c7-5bc1903bb2f7") ) (pin "S0" (uuid "7dce380c-bce0-4209-8e24-130c590c4fb9") ) (pin "D0" (uuid "7c4ca2a0-cd2b-4896-8558-722f8cf32a8b") ) (pin "Y" (uuid "7838ca92-9bbf-4305-ae7b-c854077d1e9b") ) (pin "D2" (uuid "78393d1b-d150-4b4e-b41f-6e92804bb1c2") ) (pin "D1" (uuid "89ef1afc-8cf9-4f84-a2c5-deef6dfdf514") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M525") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M130") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M275") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M17") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M673") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M103") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M556") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M642") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M227") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M393") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M306") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M77") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M451") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M611") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M494") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 351.79 127 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "688a4fe2-679b-42a5-b6b8-06f1f195c271") (property "Reference" "M?" (at 351.79 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 351.79 135.89 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 351.79 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 351.79 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 351.79 127 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "S0" (uuid "0ea368fa-b4a5-4027-90d7-45b6dd0925f5") ) (pin "D0" (uuid "5fea8a5f-204a-4b4e-b839-1ac2a4bfd4bf") ) (pin "D1" (uuid "9a1a9def-4aff-41a3-9805-d9e495795f97") ) (pin "D2" (uuid "f22d7bc0-8cc5-417b-934c-b31f8c48a357") ) (pin "D3" (uuid "5d89cb56-c3a6-47dc-be0b-9ebbd66a376b") ) (pin "Y" (uuid "0c43e8de-6b1f-4ae7-bb45-3fb05fa6d8ce") ) (pin "S1" (uuid "07304fdd-5e4b-4558-acbf-6f4c0d39a250") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M533") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M138") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M283") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M27") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M681") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M182") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M564") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M650") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M235") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M401") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M314") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M85") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M459") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M619") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M502") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 287.02 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6ae4ba0d-4837-440b-84e3-71b67578f5f2") (property "Reference" "U?" (at 289.56 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 287.02 144.78 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 287.02 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 287.02 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 287.02 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "89fc9a4f-edcf-4221-9210-cf33fd5d84ea") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1395") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U370") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U747") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U97") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1807") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U514") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1492") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1710") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U633") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1065") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U844") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U251") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1189") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1613") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1298") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XNOR") (at 83.82 71.12 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6bcbb9fd-3edc-4379-b31b-4a5135c7fb30") (property "Reference" "U?" (at 83.4527 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 83.4527 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 83.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 83.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 83.82 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "8730b8b2-b391-4781-aebb-0f352e3b1680") ) (pin "" (uuid "7850fb6e-051a-4fb8-ae2d-3c37e5defe0a") ) (pin "" (uuid "1631bea3-a827-4d6e-8dc5-667fea6c670f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1363") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U338") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U715") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U31") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1775") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U482") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1460") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1678") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U601") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1033") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U812") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U219") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1157") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1581") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1266") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 386.08 166.37 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6df7f2a3-6ee2-40cf-94b5-3576cd7fbb08") (property "Reference" "M?" (at 386.08 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 386.08 175.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 386.08 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 386.08 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 386.08 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "S0" (uuid "ee953c4e-d4c9-464a-9c59-9bf0d9a88166") ) (pin "D3" (uuid "e477585d-1e37-4c48-a4dd-60c2734eced7") ) (pin "D1" (uuid "e7838ee2-3ae7-45d2-94e5-262fdd0bc392") ) (pin "S1" (uuid "ea4f3372-0502-4ea0-88e0-dd4afb02e3f7") ) (pin "Y" (uuid "1b9e935b-86e0-4266-8cb6-0b3b5bffc5b3") ) (pin "D0" (uuid "b51c6180-730b-45d9-87b9-30335d829d09") ) (pin "D2" (uuid "3eb04b91-c506-4b26-a59a-c243947d9ee9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M542") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M147") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M292") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M38") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M690") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M191") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M573") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M659") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M244") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M410") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M323") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M94") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M468") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M628") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M511") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 251.46 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "6ea219e1-66a5-4f08-812f-87ed7e611602") (property "Reference" "C?" (at 251.46 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 251.46 59.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 251.46 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 251.46 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 251.46 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "b3d2ed3c-b4ef-4ac8-bda7-965c2a423024") ) (pin "Y" (uuid "1cc81b07-5219-4526-977b-3c6fe25a6c51") ) (pin "D1" (uuid "b493cf37-2ee0-4c2e-8873-338ede8d7ffe") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C164") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C42") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C87") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C13") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C216") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C61") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C177") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C203") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C74") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C125") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C100") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C29") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C138") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C190") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C151") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX invert/mask") (at 30.48 60.96 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7113d6c4-d2e7-422c-a42d-78b570f43a78") (property "Reference" "U?" (at 30.48 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 31.1706 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 30.48 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "3" (uuid "3ba22450-1b05-41c0-8ff2-ad9608c47d34") ) (pin "4" (uuid "93563527-725a-4053-9020-666955970259") ) (pin "1" (uuid "e15e278f-9e07-43ce-90a6-a7bb212180f0") ) (pin "M4" (uuid "89107e32-e276-4ca2-99fc-51bea909bed6") ) (pin "M3" (uuid "ec82a636-7e1f-42d4-8035-62b9c2347fc6") ) (pin "2" (uuid "791c0814-4b80-48eb-9cef-12d0ecd36b8d") ) (pin "M2" (uuid "7b3a6d40-137c-4256-ae84-f165e1612275") ) (pin "M1" (uuid "9e25d138-9a47-4903-8bf9-4acd77209752") ) (pin "E" (uuid "0cac59b2-c001-45c2-a403-29b36900e956") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1347") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U322") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U699") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U5") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1759") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U161") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1444") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1662") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U585") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1017") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U796") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U203") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1141") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1565") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1250") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 346.71 194.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "72ba2220-d0cc-425b-b888-f759c131082e") (property "Reference" "M?" (at 346.71 201.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 346.71 203.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 346.71 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 346.71 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 346.71 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "fbcdc8d0-376f-414a-b9d8-09a3eb2115d3") ) (pin "S0" (uuid "8bc420c2-c2c2-4471-bea3-91c632b9c4e6") ) (pin "Y" (uuid "491c3fd7-90e7-4f90-95f8-1a1cc5954e2e") ) (pin "D0" (uuid "9f191f4c-a432-4547-a057-d6e2e7bfa134") ) (pin "D1" (uuid "c355e0fc-7061-499d-936e-9d5a69d189d8") ) (pin "D3" (uuid "492cb16f-416c-499c-bf24-7b289fbb3bd8") ) (pin "S1" (uuid "2e6ec925-dcfd-4752-b118-0d1825e5a104") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M530") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M135") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M280") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M24") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M678") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M179") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M561") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M647") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M232") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M398") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M311") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M82") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M456") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M616") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M499") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 154.94 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "737f77c9-2a70-4b2c-8209-28c75ce04cb8") (property "Reference" "U100" (at 339.09 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 152.4 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c97cb17d-0b64-4815-a0f0-591a2c8d56dd") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1410") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U385") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U762") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U127") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1822") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U529") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1507") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1725") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U648") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1080") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U859") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U100") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U266") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1204") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1628") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1313") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 205.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7485cf9a-6ad6-4be8-ad14-5f4d3bfa95fa") (property "Reference" "U121" (at 339.09 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 203.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 205.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "b4a3bee7-38af-45ee-a33d-5b6437ecaf11") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1417") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U392") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U769") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U134") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1829") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U536") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1514") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1732") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U660") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1087") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U866") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U121") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U273") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1211") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1635") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1320") (unit 1) ) ) ) ) (symbol (lib_name "NOT_5") (lib_id "peppercorn:NOT") (at 355.6 60.96 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7661c928-8305-41fb-aacd-5a40989c0a75") (property "Reference" "U?" (at 355.6 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 355.6 57.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 355.6 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 355.6 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 355.6 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "b204c0c3-7125-448e-8bdc-0b09ca5c6df2") ) (pin "" (uuid "934c5013-1c29-4d57-a84a-56100616b1d0") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1422") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U397") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U774") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U139") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1834") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U541") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1519") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1737") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U665") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1092") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U871") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U278") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1216") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1640") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1325") (unit 1) ) ) ) ) (symbol (lib_name "XOR_3") (lib_id "peppercorn:XOR") (at 114.3 166.37 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "771fbc59-7814-4bbe-8f01-bbdf334089e2") (property "Reference" "U?" (at 113.9327 160.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 113.9327 162.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 114.3 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 114.3 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 114.3 166.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "0353dcc4-d4f4-41f2-a5d4-396b6b7ea30e") ) (pin "" (uuid "44cae606-2753-444b-a307-b0eaedd1bf27") ) (pin "" (uuid "85eccd7a-cf01-4335-98ee-06d03b68a6c4") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1371") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U346") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U723") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U45") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1783") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U490") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1468") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1686") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U609") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1041") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U820") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U227") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1165") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1589") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1274") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 177.8 132.08 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "77853f51-3a1e-416e-9674-4a53b4a2bc95") (property "Reference" "U?" (at 180.34 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 177.8 129.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 177.8 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 177.8 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 177.8 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "a6760431-6c53-46da-8eb4-e246eeb01f2a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1376") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U351") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U728") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U57") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1788") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U495") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1473") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1691") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U614") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1046") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U825") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U232") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1170") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1594") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1279") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 184.15 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "78fc9e40-c357-4b8b-96e2-1b385a6d52ad") (property "Reference" "U111" (at 339.09 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 181.61 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "8145fa0f-fb93-45c2-8ccc-22fdb0cde64a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1414") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U389") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U766") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U131") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1826") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U533") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1511") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1729") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U657") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1084") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U863") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U111") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U270") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1208") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1632") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1317") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 99.06 182.88 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "79c6a1b7-0567-4dcc-b005-414b6737c53f") (property "Reference" "C?" (at 99.06 186.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 99.06 179.07 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 99.06 182.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 99.06 182.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 99.06 182.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "ee015e49-8311-4c9f-9681-206c0f20c349") ) (pin "D0" (uuid "593b257b-1428-47e9-8c55-aab88b275c6d") ) (pin "Y" (uuid "b0128238-c3d9-4841-982f-402daae5b4f5") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C157") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C35") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C80") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C2") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C209") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C54") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C170") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C196") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C67") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C118") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C93") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C22") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C131") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C183") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C144") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:NAND") (at 83.82 77.47 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7a96e0e7-7d5e-4525-8ba1-585fb2efac0d") (property "Reference" "U?" (at 84.455 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 84.455 73.66 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 83.82 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 83.82 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 83.82 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "7aa4ea27-cebf-4d90-a273-d93de65fd2b6") ) (pin "" (uuid "72ad92ec-0601-4ba0-8ae2-4c0634f715ff") ) (pin "" (uuid "21a3c77d-11be-406d-b755-ec09927a2356") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1364") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U339") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U716") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U32") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1776") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U483") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1461") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1679") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U602") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1034") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U813") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U220") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1158") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1582") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1267") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT1") (at 25.4 190.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7b2f1b06-aee7-4175-b08f-135212bdc02f") (property "Reference" "L?" (at 25.4 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 25.4 186.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 25.4 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 25.4 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 25.4 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D" (uuid "ed4abe54-8280-4be1-b901-adbae4427ff3") ) (pin "Y" (uuid "99399acb-59af-4d7a-8ded-5a2b1898eafa") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L291") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L71") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L149") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L2") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L347") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L121") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L305") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L333") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L135") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L249") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L163") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L57") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L263") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L319") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L277") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 119.38 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7b886f2c-9132-4ef0-bcb6-ac10ea6c8e53") (property "Reference" "U78" (at 339.09 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 116.84 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "46adcad6-2fc6-4523-8fa7-491f4572f710") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1406") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U381") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U758") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U123") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1818") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U525") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1503") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1721") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U644") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1076") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U855") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U78") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U262") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1200") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1624") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1309") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 63.5 100.33 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7bfdd882-6ca8-4a6a-9a81-2072c2a5465e") (property "Reference" "L?" (at 63.5 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 63.5 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "4c5e46a3-cfb1-4bdf-a369-77f411d5a47c") ) (pin "D1" (uuid "585a01c8-2d08-43ed-b9d9-622a43592295") ) (pin "D0" (uuid "de55271b-fe3c-4517-b835-4d998797910b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L295") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L75") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L153") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L6") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L351") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L125") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L309") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L337") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L139") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L253") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L167") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L61") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L267") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L323") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L281") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 57.15 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7e1b8ca6-8a59-4a5f-8ed8-684e616ba8d5") (property "Reference" "U?" (at 339.09 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 54.61 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 57.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "8178d8ca-4589-4718-ad68-e4e68ec269fa") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1398") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U373") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U750") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U102") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1810") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U517") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1495") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1713") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U636") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1068") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U847") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U254") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1192") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1616") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1301") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 241.3 138.43 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7fe4a645-250c-421e-88e8-f46c66dffa0c") (property "Reference" "C?" (at 241.3 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 241.3 134.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 241.3 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 241.3 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 241.3 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "a6071d46-063a-44b7-8efe-6ca24d762426") ) (pin "D0" (uuid "ceb81fdc-2175-4712-a86f-583c36ed95a8") ) (pin "Y" (uuid "e2e56502-3889-46de-8efe-033486ea99b1") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C162") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C40") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C85") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C10") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C214") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C59") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C175") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C201") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C72") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C123") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C98") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C27") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C136") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C188") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C149") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT1") (at 25.4 180.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8210d3b2-31af-4b75-8844-27aff607d34a") (property "Reference" "L?" (at 25.4 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 25.4 176.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 25.4 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 25.4 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 25.4 180.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D" (uuid "9b570ed2-5623-4a39-a8d2-18c0bd526de1") ) (pin "Y" (uuid "c3fa2257-5481-4096-b78f-003ba0d2e6fc") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L290") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L70") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L148") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L1") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L346") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L120") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L304") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L332") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L134") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L248") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L162") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L56") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L262") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L318") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L276") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 274.32 134.62 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "821fd429-ea9b-41b4-9371-1524e3c6255f") (property "Reference" "U?" (at 276.86 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 274.32 132.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 274.32 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 274.32 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 274.32 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ab4f3fa2-7a60-4dab-b979-04f43fe84e2f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1393") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U368") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U745") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U95") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1805") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U512") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1490") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1708") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U631") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1063") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U842") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U249") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1187") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1611") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1296") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX8") (at 106.68 218.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "83636e25-5cb9-4606-821f-2af6465b0454") (property "Reference" "M?" (at 107.95 231.14 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 107.95 232.41 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 106.68 218.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 106.68 218.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 106.68 218.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "9056a5f8-1129-42be-afc1-8866c9025f32") ) (pin "D6" (uuid "ec77f55b-2339-41af-8da5-f13b0eaafd6a") ) (pin "D4" (uuid "a4fec18b-281b-43f3-9e24-89d734e80497") ) (pin "D5" (uuid "328bfce1-70d0-40d3-be05-44f9e2c74813") ) (pin "D3" (uuid "f582efaa-b2e4-4339-9135-c9e99a240953") ) (pin "D1" (uuid "21adaf65-8397-46e5-b45b-10040ba6f839") ) (pin "Y" (uuid "2388d9a5-00b9-400c-ad56-fd0534d3aca5") ) (pin "D0" (uuid "232fada0-5261-4707-8ec0-d911acd84a49") ) (pin "D7" (uuid "2da90f94-4739-4397-bbb8-c16c9bdf37d3") ) (pin "S0" (uuid "1db0a55c-1783-4efb-bfab-706c73d5d6c8") ) (pin "S1" (uuid "7b2824bc-0c41-4508-b32b-532c4c1bd5f8") ) (pin "S2" (uuid "fe691cac-3c59-40f3-8330-982a8026362e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M522") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M127") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M272") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M9") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M670") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M100") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M553") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M639") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M224") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M390") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M303") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M74") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M448") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M608") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M491") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 368.3 78.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "84404c15-775f-4b6c-8219-37107f6d990e") (property "Reference" "M?" (at 368.3 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 368.3 87.63 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 368.3 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 368.3 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 368.3 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "11bb2fae-be45-41b9-bb1f-dd2b21bd6c53") ) (pin "D0" (uuid "1517bb90-9075-423f-a229-e33ac3f01610") ) (pin "S1" (uuid "30fc9720-4a18-411d-b66a-25c3103e383d") ) (pin "D2" (uuid "afb5da8f-5e68-4985-8d0d-9178298a980a") ) (pin "D3" (uuid "50c69a30-97a9-4e15-b198-6e69ea342396") ) (pin "S0" (uuid "fde0090f-40e1-484a-8401-1f6601aaa16b") ) (pin "Y" (uuid "3655ea93-de59-466f-85c8-593bdad70e3e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M535") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M140") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M285") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M29") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M683") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M184") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M566") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M652") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M237") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M403") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M316") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M87") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M461") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M621") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M504") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:AND") (at 99.06 125.73 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "86587291-9c56-450c-9555-19dbdc21a12f") (property "Reference" "U?" (at 99.695 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 99.695 121.92 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 99.06 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 99.06 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 99.06 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "abbbe37e-13aa-4159-a664-8e5b47a7328f") ) (pin "" (uuid "7303eb97-1344-476b-976f-a6099536c7ec") ) (pin "" (uuid "6cfcd125-f62c-482d-b875-2aa418bdcb37") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1367") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U342") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U719") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U35") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1779") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U486") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1464") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1682") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U605") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1037") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U816") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U223") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1161") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1585") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1270") (unit 1) ) ) ) ) (symbol (lib_name "AND_3") (lib_id "peppercorn:AND") (at 99.06 120.65 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "88772a92-aec4-4a27-a774-5837740fff3c") (property "Reference" "U?" (at 99.695 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 99.695 116.84 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 99.06 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 99.06 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 99.06 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "e38f2f8b-050a-4c67-ba69-745b839fa3c5") ) (pin "" (uuid "f0c522b4-c07e-4845-bbe5-2e2f443e5103") ) (pin "" (uuid "79422ced-6819-45da-b6a1-b88f791153d3") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1366") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U341") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U718") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U34") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1778") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U485") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1463") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1681") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U604") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1036") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U815") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U222") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1160") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1584") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1269") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:NOT") (at 252.73 138.43 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8d5a3483-3357-4ac5-9cad-ba4082bc106d") (property "Reference" "U?" (at 252.73 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 252.73 134.62 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 252.73 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 252.73 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 252.73 138.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "e960236a-16ea-4710-896e-1188416e4005") ) (pin "" (uuid "48cee4a0-7b4d-42e4-963c-7703cd1ff210") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1389") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U364") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U741") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U91") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1801") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U508") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1486") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1704") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U627") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1059") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U838") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U245") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1183") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1607") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1292") (unit 1) ) ) ) ) (symbol (lib_name "AO21_4") (lib_id "peppercorn:AO21") (at 377.19 121.92 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8deca138-afe5-4c4a-9206-59bec3db4879") (property "Reference" "U152" (at 379.7299 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 379.7299 115.57 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 377.19 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 377.19 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 377.19 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "af9407e0-d305-44dc-ba45-ecc2ecbbd941") ) (pin "" (uuid "cd96881d-e5e9-4abd-90c6-04b4a4593ff7") ) (pin "" (uuid "e4684447-ce80-4965-9181-07a3d1614d60") ) (pin "" (uuid "0d1d4579-28cc-4096-9aa6-0c329cf3dd17") ) (instances (project "" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1229") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U2138") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U678") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U1847") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1750") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U291") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1338") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1653") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U554") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U884") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U787") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U152") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U410") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1105") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1532") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1435") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2 (conceptual)") (at 71.12 110.49 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "90c954c5-b38e-45bb-a057-d9a8b59c354e") (property "Reference" "M?" (at 71.7551 114.3 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) (property "Value" "~" (at 71.12 114.3 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 71.12 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 71.12 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 71.12 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "91e49078-37c4-4dfa-ab74-16351cd009e0") ) (pin "D0" (uuid "b2661bec-56ad-4aa2-a635-956fdad532ca") ) (pin "D1" (uuid "c17e55a4-f0f5-4eef-adb4-06564f1501f9") ) (pin "S" (uuid "76de6a51-2446-461a-9d54-3aff11db20bc") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M516") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M121") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M266") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M3") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M664") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M43") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M547") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M633") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M218") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M384") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M297") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M68") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M442") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M602") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M485") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 231.14 195.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "911e40d1-a270-4ba0-b6f3-363d21ca8d92") (property "Reference" "L21" (at 231.14 189.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 231.14 191.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 231.14 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 231.14 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 231.14 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "9c5a9f5e-6d23-409d-ac4c-0b106efd3c0f") ) (pin "D0" (uuid "8261237a-c8b7-4b8b-8837-fde61df62648") ) (pin "Y" (uuid "5eb7341f-b089-4e68-b19a-b514afbb76c8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L302") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L82") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L160") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L36") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L358") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L132") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L316") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L344") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L146") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L260") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L174") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L21") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L68") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L274") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L330") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L288") (unit 1) ) ) ) ) (symbol (lib_name "NOT_6") (lib_id "peppercorn:NOT") (at 347.98 95.25 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "94437aea-30f4-4ee2-bc33-51c90e694474") (property "Reference" "U?" (at 347.98 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 347.98 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 347.98 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 347.98 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 347.98 95.25 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "1e2b6136-3d66-4dbd-96fd-3f01633844c1") ) (pin "" (uuid "f9e04815-3b19-430a-937a-6a405201998f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1419") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U394") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U771") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U136") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1831") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U538") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1516") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1734") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U662") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1089") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U868") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U275") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1213") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1637") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1322") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT1") (at 25.4 200.66 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "9914b4bf-7457-4030-86fd-2a0f239c27d8") (property "Reference" "L?" (at 25.4 194.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 25.4 196.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 25.4 200.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 25.4 200.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 25.4 200.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D" (uuid "33d2460a-65df-46fa-b336-65d74361a08a") ) (pin "Y" (uuid "8c64ef9a-4f32-42c6-8fc5-9d9950e32a19") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L292") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L72") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L150") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L3") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L348") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L122") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L306") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L334") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L136") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L250") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L164") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L58") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L264") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L320") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L278") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 27.94 124.46 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "993eec49-dc90-4c73-989f-2868dd931308") (property "Reference" "C?" (at 27.94 118.11 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 27.94 120.65 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 27.94 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 27.94 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 27.94 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "0bafcd20-c337-41c8-8f23-ba9c4bff74b9") ) (pin "D0" (uuid "cba13410-0548-451e-a636-30142525d666") ) (pin "Y" (uuid "6b6c75e6-e031-4f05-9ea2-b313c1155660") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C156") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C34") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C79") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C1") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C208") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C53") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C169") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C195") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C66") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C117") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C92") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C21") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C130") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C182") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C143") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 350.52 171.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "998750e8-b748-486b-9e94-031d6cc51470") (property "Reference" "C12" (at 350.52 175.26 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 350.52 167.64 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 350.52 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 350.52 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 350.52 171.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "86861831-ce9c-4f12-a1a5-b05c1211b719") ) (pin "D1" (uuid "44950366-6908-4186-ab77-85e2f81bd4f5") ) (pin "Y" (uuid "9990fd56-668a-4e85-ac6d-0ac1cc86fa0a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C167") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C45") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C90") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C16") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C219") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C64") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C180") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C206") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C77") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C128") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C103") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C12") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C32") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C141") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C193") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C154") (unit 1) ) ) ) ) (symbol (lib_name "AND_13") (lib_id "peppercorn:AND") (at 355.6 55.88 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "9b123425-8e6e-4ba1-b33e-b19adb18c8f2") (property "Reference" "U1224" (at 356.235 49.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 356.235 52.07 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 355.6 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 355.6 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 355.6 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ff786d89-d9ea-4fc4-bcf5-3ea28711afdd") ) (pin "" (uuid "2c48c4d5-de56-469a-a0a0-49cd043c8f1f") ) (pin "" (uuid "dc568daa-4f4c-451d-82aa-136dcc231e82") ) (instances (project "" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1648") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U2136") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U1430") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U2135") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1850") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U1232") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1656") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1842") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U1341") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1527") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U1438") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U1224") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U1333") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1535") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1753") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1745") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4 (conceptual) (upside down)") (at 45.72 60.96 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "9dc1e219-e2f6-4218-ad76-14547bc53604") (property "Reference" "M?" (at 48.26 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 48.26 54.61 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 45.72 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 45.72 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 45.72 60.96 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D3" (uuid "c5c6ae61-894c-4d12-a47f-e65d314351bf") ) (pin "D2" (uuid "6c5b15ac-7f35-482e-a84c-8d5655aa9e24") ) (pin "D0" (uuid "c7059f42-f732-485e-b92c-832074ef1949") ) (pin "S0" (uuid "4e22c484-7598-429f-a111-9112aaf28040") ) (pin "Y" (uuid "88b1619b-d0c5-4945-9216-2ce895915227") ) (pin "D1" (uuid "bc3daade-0464-444d-8060-dfc3813065ee") ) (pin "S1" (uuid "df208248-47e3-477d-990c-a8019cb300f9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M515") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M120") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M265") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M2") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M663") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M42") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M546") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M632") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M217") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M383") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M296") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M67") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M441") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M601") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M484") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 369.57 195.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a0d983a2-c972-4f0c-b4e1-cb08bde09486") (property "Reference" "M?" (at 369.57 200.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 369.57 201.93 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 369.57 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 369.57 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 369.57 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "de688495-d073-4338-88ae-4c4eac727eb5") ) (pin "S" (uuid "a061b929-30e6-49f9-8cb4-8dbff7614100") ) (pin "D1" (uuid "a30e5854-a06d-441d-a0bb-bd25c3894661") ) (pin "D0" (uuid "52558122-b419-4640-b29d-d138d4fac813") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M538") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M143") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M288") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M34") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M686") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M187") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M569") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M655") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M240") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M406") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M319") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M90") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M464") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M624") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M507") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 386.08 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a45941bf-e927-40c7-a937-ff5ed676b919") (property "Reference" "M?" (at 386.08 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 386.08 88.9 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 386.08 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 386.08 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 386.08 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "05937123-09f2-4631-9d47-0e36f65b8790") ) (pin "Y" (uuid "7ff215db-4254-459d-afd8-dc4b175f4d5f") ) (pin "D0" (uuid "8bbdc503-036f-4eea-a0c8-af3db7b3424b") ) (pin "D3" (uuid "5fb12de4-9e8d-4df3-acdc-ee7f10bfb5e6") ) (pin "S1" (uuid "ddbe60f2-4d09-4521-971e-4fbf72017966") ) (pin "S0" (uuid "cf6db981-b04e-48ad-8f96-3f5d061a1cbd") ) (pin "D1" (uuid "c19c7084-8c78-4685-b8a3-b97bc7385e94") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M539") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M144") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M289") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M35") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M687") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M188") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M570") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M656") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M241") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M407") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M320") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M91") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M465") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M625") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M508") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 274.32 101.6 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a534ca0e-5d57-41bd-a631-ad3ee988d84f") (property "Reference" "U?" (at 276.86 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 274.32 99.06 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 274.32 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 274.32 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 274.32 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "bb62bbae-3228-409d-bc2b-78472b6efec6") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1391") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U366") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U743") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U93") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1803") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U510") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1488") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1706") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U629") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1061") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U840") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U247") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1185") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1609") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1294") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 274.32 132.08 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a71d2b50-7447-4b02-b427-563701c24de1") (property "Reference" "U?" (at 276.86 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 274.32 129.54 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 274.32 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 274.32 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 274.32 132.08 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "51259236-9034-426c-a393-d4ad395c4fd5") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1392") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U367") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U744") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U94") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1804") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U511") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1489") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1707") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U630") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1062") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U841") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U248") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1186") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1610") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1295") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 95.25 113.03 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a9bdcd54-03b4-4a53-985b-21b1573ec63d") (property "Reference" "M?" (at 95.25 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 95.25 106.68 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 95.25 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 95.25 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 95.25 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "30e1a1ed-6612-4c08-9374-5894cc6e219d") ) (pin "S" (uuid "d77ebb58-4f7d-4c96-913d-185b5b011d6b") ) (pin "D1" (uuid "cbf027a8-9fb9-4215-a206-beea3cb302f9") ) (pin "Y" (uuid "99fc7059-b3c5-4062-87ed-ebc809180b8a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M520") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M125") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M270") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M7") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M668") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M98") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M551") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M637") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M222") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M388") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M301") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M72") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M446") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M606") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M489") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 363.22 165.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ab5b1ece-7d98-4734-a7cd-16a5fb16e440") (property "Reference" "M?" (at 363.22 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 363.22 173.99 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 363.22 165.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 363.22 165.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 363.22 165.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "S1" (uuid "64a2d6d4-9b16-4776-9aa9-21a054c5e05f") ) (pin "D0" (uuid "ab176bcb-3bf2-4cb4-b46c-44734a00d088") ) (pin "D2" (uuid "9e6ced76-4527-4f73-b753-a665c3a17c3a") ) (pin "Y" (uuid "da9ea644-e349-4c6d-a767-013261fb8619") ) (pin "S0" (uuid "b63b2978-ece8-428b-bb0b-67e970f318c7") ) (pin "D1" (uuid "3a685320-1c36-480b-a69c-10c18224a4b6") ) (pin "D3" (uuid "ceafb848-f1a8-4382-8650-ec7b72135313") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M534") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M139") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M284") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M28") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M682") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M183") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M565") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M651") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M236") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M402") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M315") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M86") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M460") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M620") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M503") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:AO21") (at 58.42 115.57 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "ab79a7c7-59df-465b-be0d-6f1cbcfd4708") (property "Reference" "U?" (at 60.9599 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 60.9599 121.92 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 58.42 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 58.42 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 58.42 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "8b49a098-cf2b-4011-ba9a-cd47d7159188") ) (pin "" (uuid "d8be6bae-ab89-495b-8bc1-3e0e0550369d") ) (pin "" (uuid "8a6d03be-f9c8-4c89-81fe-2e2f62628489") ) (pin "" (uuid "3a66aada-1183-45a5-92e4-60f48b434697") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1357") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U332") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U709") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U25") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1769") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U305") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1454") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1672") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U595") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1027") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U806") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U213") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1151") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1575") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1260") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 100.33 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ac2a7585-7a6e-4051-b33b-800a144d83a1") (property "Reference" "U69" (at 339.09 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 97.79 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "5eeea54a-b85b-4a9f-88f4-743e569c535f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1404") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U379") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U756") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U118") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1816") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U523") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1501") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1719") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U642") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1074") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U853") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U69") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U260") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1198") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1622") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1307") (unit 1) ) ) ) ) (symbol (lib_name "XOR_5") (lib_id "peppercorn:XOR") (at 55.88 190.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "acc0a5e6-9c4d-4a99-b3b7-d8c4b9173094") (property "Reference" "U79" (at 55.5127 184.15 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 55.5127 186.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 55.88 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 55.88 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 55.88 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "56a5d167-adbe-4eaf-9a3a-9bfb3d2a2449") ) (pin "" (uuid "96b5cbbb-fb63-4009-bd8e-685d0f45d7fd") ) (pin "" (uuid "9218e085-8abf-45a5-8bdc-6ce4086a07fb") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1355") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U330") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U707") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U20") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1767") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U303") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1452") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1670") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U593") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1025") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U804") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U79") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U211") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1149") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1573") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1258") (unit 1) ) ) ) ) (symbol (lib_name "AND_8") (lib_id "peppercorn:AND") (at 298.45 113.03 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ad537bde-6ee8-4021-8b1c-7c4ab04a24d3") (property "Reference" "U?" (at 299.085 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 299.085 109.22 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 298.45 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 298.45 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 298.45 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "22782f90-10b5-427d-9f3f-19b57d4b4710") ) (pin "" (uuid "75370f6c-78e9-40d8-bc80-d97769e8def0") ) (pin "" (uuid "3511c7db-3aff-4599-a77a-f2b96eff699b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1396") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U371") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U748") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U98") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1808") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U515") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1493") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1711") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U634") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1066") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U845") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U252") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1190") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1614") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1299") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 179.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "af1b655a-ec72-4a44-972d-c87f33a05fee") (property "Reference" "U115" (at 339.09 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 176.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "f80a77b8-fda0-4098-a4f3-309663ccabc7") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1412") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U387") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U764") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U129") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1824") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U531") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1509") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1727") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U655") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1082") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U861") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U115") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U268") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1206") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1630") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1315") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT1") (at 185.42 88.9 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b2251723-82da-47ce-ba41-26c59466afc3") (property "Reference" "L29" (at 185.42 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 185.42 85.09 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 185.42 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 185.42 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 185.42 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D" (uuid "c64e5310-3a4d-4023-9eff-c2dbc04b5347") ) (pin "Y" (uuid "d79dcef1-b7c7-4144-af12-1cbf338de1a0") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L300") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L80") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L158") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L34") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L356") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L130") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L314") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L342") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L144") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L258") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L172") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L29") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L66") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L272") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L328") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L286") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 351.79 107.95 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b2e1e4b7-7610-4bb8-a807-8aaf80bf00b0") (property "Reference" "M?" (at 351.79 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 351.79 116.84 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 351.79 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 351.79 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 351.79 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "9ebd2d1a-841b-4558-b429-44e02328981d") ) (pin "D0" (uuid "227fe0d7-8106-4b6a-9ff4-e427380b91f7") ) (pin "S1" (uuid "ff7ab847-f099-41cc-8217-6f14bb0d50a1") ) (pin "D3" (uuid "f168318f-5602-4858-befa-6febbebd3a20") ) (pin "S0" (uuid "23c31570-9868-4f00-83e9-d9b662f181f7") ) (pin "D1" (uuid "8ec2bd83-9ae6-498e-977e-8e63af3820b1") ) (pin "Y" (uuid "55d5bcb8-1876-4abe-85f0-2ea86d68c562") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M532") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M137") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M282") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M26") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M680") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M181") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M563") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M649") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M234") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M400") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M313") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M84") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M458") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M618") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M501") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2 (conceptual)") (at 71.12 123.19 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b5634b90-8f8f-430b-8036-6b7d3b13134f") (property "Reference" "M?" (at 71.12 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 71.12 127 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 71.12 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 71.12 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 71.12 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "d0cef79f-ab63-45c9-b093-f2cbb15a53ee") ) (pin "S" (uuid "13890145-7337-4e21-b020-bf3e782f629c") ) (pin "Y" (uuid "718fe63b-9580-4f84-a591-1861ed4c2a0a") ) (pin "D0" (uuid "36e27b3f-bd66-4351-8cca-7e8ce5513ab2") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M517") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M122") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M267") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M4") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M665") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M44") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M548") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M634") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M219") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M385") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M298") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M69") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M443") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M603") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M486") (unit 1) ) ) ) ) (symbol (lib_name "OR_2") (lib_id "peppercorn:OR") (at 132.08 161.29 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b9c35fda-e7a8-453a-a39b-035ec424ae2b") (property "Reference" "U?" (at 131.0774 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 131.0774 157.48 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 132.08 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 132.08 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 132.08 161.29 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "73d59b61-83b4-4920-95df-ee9a22a492f5") ) (pin "" (uuid "1659d59e-cc21-4816-a6b8-e6c248d28c69") ) (pin "" (uuid "e28c92b7-2386-4c94-80ab-a9af8047444b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1372") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U347") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U724") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U49") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1784") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U491") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1469") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1687") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U610") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1042") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U821") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U228") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1166") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1590") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1275") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:FA") (at 76.2 201.93 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ba6309a2-8058-4ace-85e1-2c18ef868901") (property "Reference" "U?" (at 76.2 201.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 198.6849 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 201.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 201.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 201.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "CO" (uuid "ea5b3ba9-5ab1-4425-a529-389b0bfe37ea") ) (pin "A" (uuid "6c4f6183-65ff-4929-8fb0-39913b1456bf") ) (pin "CI" (uuid "4f72433b-644c-41d6-bb9d-c8e6a31e731f") ) (pin "S" (uuid "748807ed-fadc-43cc-8d68-02dd4a412fec") ) (pin "B" (uuid "43dd725a-7882-4464-8e29-9cdf64f6c306") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1362") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U337") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U714") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U30") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1774") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U481") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1459") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1677") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U600") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1032") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U811") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U218") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1156") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1580") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1265") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_4") (lib_id "peppercorn:LUT2 with C_I mux") (at 231.14 213.36 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "bc790d18-1ef7-4864-801a-fbc39870a382") (property "Reference" "L22" (at 228.6 207.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 228.6 209.55 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 231.14 213.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 231.14 213.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 231.14 213.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "bea83d18-1fb9-45e6-a147-4a2aaaff9d21") ) (pin "D0" (uuid "482444cf-3fba-4420-97f3-05b62bfa1b41") ) (pin "D0" (uuid "e7764002-3a0c-4c22-9758-56419e302b75") ) (pin "Y" (uuid "1c243219-876a-4afe-a774-96248ea6608f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L303") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L83") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L161") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L37") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L359") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L133") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L317") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L345") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L147") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L261") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L175") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L22") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L69") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L275") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L331") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L289") (unit 1) ) ) ) ) (symbol (lib_name "AO21_3") (lib_id "peppercorn:AO21") (at 377.19 92.71 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "bfb0596d-97c5-4988-a136-ab467d401729") (property "Reference" "U151" (at 379.7299 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 379.7299 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 377.19 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 377.19 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 377.19 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "6ff16e30-7ac6-4d8a-9b68-3e7de5a063c4") ) (pin "" (uuid "b38d8187-25b8-4134-ac19-3e0fc7a6da36") ) (pin "" (uuid "0b933721-8efb-4cfb-a464-65a5f7b43c7d") ) (pin "" (uuid "d3346ff9-57c9-4195-8c8a-19674be5dd32") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1228") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U2137") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U677") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U1846") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1749") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U290") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1337") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1652") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U553") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U883") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U786") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U151") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U409") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1104") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1531") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1434") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2 with C_I mux") (at 30.48 73.66 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c4aa9061-27a5-4a54-9df3-33bac653e24e") (property "Reference" "L?" (at 27.94 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 27.94 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 30.48 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 30.48 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "d8b915ca-2634-4036-bebb-9703d4c9f97f") ) (pin "Y" (uuid "40d01323-a462-4713-b4be-068cd3fdc1a5") ) (pin "D0" (uuid "6db70c36-75c3-45b9-983a-ec2f4fceed89") ) (pin "D0" (uuid "91a17b48-aab9-4104-9de9-711cda673bf9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L293") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L73") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L151") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L4") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L349") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L123") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L307") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L335") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L137") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L251") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L165") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L59") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L265") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L321") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L279") (unit 1) ) ) ) ) (symbol (lib_name "XOR_6") (lib_id "peppercorn:XOR") (at 200.66 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c7d785dd-2a84-4173-9cac-bcdf72244567") (property "Reference" "U88" (at 200.2927 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 200.2927 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 200.66 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 200.66 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 200.66 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "20f46cc8-1d0a-46be-8736-fb64ec156468") ) (pin "" (uuid "38c0f1cd-7dfe-47b4-8194-53def72d8093") ) (pin "" (uuid "9b975e66-0bec-43fd-97cf-ff99d23056e5") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1383") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U358") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U735") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U75") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1795") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U502") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1480") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1698") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U621") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1053") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U832") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U88") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U239") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1177") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1601") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1286") (unit 1) ) ) ) ) (symbol (lib_name "XOR_1") (lib_id "peppercorn:XOR") (at 111.76 85.09 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c82602c7-6528-479d-a99b-d46c99396116") (property "Reference" "U?" (at 111.3927 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 111.3927 81.28 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 111.76 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 111.76 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 111.76 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "56880d87-dbe0-4a4e-9895-5d878c461bc2") ) (pin "" (uuid "10c9ca15-1155-4461-9160-5ff72cd25f7f") ) (pin "" (uuid "a710f6d9-db3f-4772-b938-386ec4a6b512") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1368") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U343") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U720") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U37") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1780") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U487") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1465") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1683") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U606") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1038") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U817") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U224") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1162") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1586") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1271") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2 (conceptual)") (at 88.9 83.82 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c9f920a0-f6d7-4a1a-a7c8-576a4a52ac4c") (property "Reference" "M?" (at 88.9 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 88.9 80.01 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 88.9 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 88.9 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 88.9 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "3af11dac-7edf-431d-9938-27b622275464") ) (pin "D0" (uuid "6c3335f9-986b-43ae-88c4-4d88791d6a07") ) (pin "S" (uuid "97063ba1-a785-4664-987c-33d85934b021") ) (pin "Y" (uuid "bbc863c2-e9fa-4207-b34b-7ca89c3fe50c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M518") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M123") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M268") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M5") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M666") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M45") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M549") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M635") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M220") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M386") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M299") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M70") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M444") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M604") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M487") (unit 1) ) ) ) ) (symbol (lib_name "NOT_1") (lib_id "peppercorn:NOT") (at 194.31 106.68 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ca0040f8-8194-444a-af02-3139325e16da") (property "Reference" "U?" (at 194.31 100.33 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 194.31 102.87 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 194.31 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 194.31 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 194.31 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "2084a7a0-85f8-4c74-b683-936a8113bdec") ) (pin "" (uuid "f28c8b5c-0705-479b-bdbc-f29321e37beb") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1381") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U356") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U733") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U72") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1793") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U500") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1478") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1696") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U619") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1051") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U830") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U237") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1175") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1599") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1284") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:DLT") (at 224.79 124.46 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "cbc348ba-f181-48fc-918b-16b66a9ed8f3") (property "Reference" "LT?" (at 224.79 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 224.79 116.84 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 224.79 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 224.79 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 224.79 124.46 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "R" (uuid "84806079-f35d-4083-a8c3-325944717903") ) (pin "Q" (uuid "f1774fa5-b2d9-456a-a74e-4f031a3956c6") ) (pin "G" (uuid "9da39f7e-6206-4eba-8ce3-2279a31d80a1") ) (pin "E" (uuid "520f4554-0379-4d02-be77-9c261c4fec28") ) (pin "D" (uuid "cdf27839-7172-4bb0-88a6-44d16eb54f2f") ) (pin "S" (uuid "bb3a9a77-cc1d-4770-8988-c47f0b527d7c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "LT22") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "LT6") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "LT12") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "LT2") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "LT30") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "LT8") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "LT24") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "LT28") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "LT10") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "LT16") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "LT14") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "LT?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "LT4") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "LT18") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "LT26") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "LT20") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX invert/mask") (at 231.14 236.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "cbc6815a-8716-4427-8e9f-8bc9871b5286") (property "Reference" "U122" (at 231.14 237.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 231.8306 245.11 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 231.14 236.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 231.14 236.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 231.14 236.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "2" (uuid "c1908c1b-fa76-427a-b4f8-820b14f4f672") ) (pin "E" (uuid "154eb98d-6eed-4c14-8c83-db39b8545464") ) (pin "M4" (uuid "a1383d6d-e40e-4093-b7e8-c6ab6272e91c") ) (pin "3" (uuid "3a5b87bb-772e-45bb-be7d-7394992a4a32") ) (pin "M3" (uuid "03e5f7b8-6c14-496f-94af-de7912ba0a23") ) (pin "M2" (uuid "25c44672-c205-4940-93c1-6116bbbe5079") ) (pin "1" (uuid "6029ba35-5939-489a-81f5-6a14dab8b753") ) (pin "M1" (uuid "cd8706ed-9b03-4779-a41a-4e0dc00a057f") ) (pin "4" (uuid "e57d9877-90f3-47d0-998f-da203307c476") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1386") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U361") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U738") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U86") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1798") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U505") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1483") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1701") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U624") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1056") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U835") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U122") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U242") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1180") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1604") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1289") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 386.08 110.49 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "cf0c95ec-984f-46ab-bff7-4763f2938b3e") (property "Reference" "M?" (at 386.08 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 386.08 116.84 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 386.08 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 386.08 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 386.08 110.49 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "S" (uuid "55fbb484-16ef-4b79-b80f-a6d45e5d0684") ) (pin "D1" (uuid "947e8f17-9bcc-4383-b8aa-19bcab3c33a5") ) (pin "D0" (uuid "d91df647-afc7-4769-aaa2-204cffbbd4b9") ) (pin "Y" (uuid "5f05947e-b060-4fb7-93a1-7e612f2ce5ba") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M540") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M145") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M290") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M36") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M688") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M189") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M571") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M657") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M242") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M408") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M321") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M92") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M466") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M626") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M509") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 26.67 170.18 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d06ff951-b446-411e-bdbc-e5cc31c79d1d") (property "Reference" "U?" (at 26.67 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 26.67 167.64 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 26.67 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 26.67 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 26.67 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "4a99d9a8-6ea5-411f-9adf-098e43f90b66") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1343") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U318") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U695") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U1") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1755") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U157") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1440") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1658") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U581") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1013") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U792") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U199") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1137") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1561") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1246") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 96.52 76.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d357854a-da79-47bd-9321-901d5bd09d69") (property "Reference" "M?" (at 96.52 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 96.52 82.55 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 96.52 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 96.52 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 96.52 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "b05415e8-14aa-40e7-99c4-e18ba0d34633") ) (pin "S" (uuid "ef3d7d52-ab20-466a-b091-bd822380c14a") ) (pin "D1" (uuid "30fe95d0-5a64-458b-86da-b1d6aa50dcad") ) (pin "Y" (uuid "cdb8160d-7efa-4718-8fc3-b917c8379017") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M521") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M126") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M271") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M8") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M669") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M99") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M552") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M638") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M223") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M389") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M302") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M73") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M447") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M607") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M490") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 369.57 87.63 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d3e6c9f7-bf88-4cc4-921e-b980cc4c0177") (property "Reference" "U?" (at 372.11 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 369.57 85.09 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 369.57 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 369.57 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 369.57 87.63 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c4071038-5641-4325-93ab-39a38adb6075") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1427") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U402") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U779") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U144") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1839") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U546") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1524") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1742") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U670") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1097") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U876") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U283") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1221") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1645") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1330") (unit 1) ) ) ) ) (symbol (lib_name "AND_2") (lib_id "peppercorn:AND") (at 39.37 153.67 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d45c0ca9-64c7-4dd0-ad22-84bec6beedac") (property "Reference" "U?" (at 40.005 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 40.005 149.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 39.37 153.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 39.37 153.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 39.37 153.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "3d4c0027-585c-420e-81c4-f99108ab60ee") ) (pin "" (uuid "9fccf994-846e-4dfb-a41e-ea08613a5860") ) (pin "" (uuid "28526361-45d2-4cff-9d04-75153fa78010") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1352") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U327") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U704") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U17") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1764") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U300") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1449") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1667") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U590") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1022") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U801") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U208") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1146") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1570") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1255") (unit 1) ) ) ) ) (symbol (lib_name "OR_5") (lib_id "peppercorn:OR") (at 375.92 151.13 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d4840a0c-2fa3-40b2-bfc8-0dc366a56fc7") (property "Reference" "U?" (at 374.9174 144.78 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 374.9174 147.32 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 375.92 151.13 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 375.92 151.13 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 375.92 151.13 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "577edc99-6f6a-4628-b958-124d1c2c18c9") ) (pin "" (uuid "04583d82-aa4d-4de5-bd60-13c1f3cc294e") ) (pin "" (uuid "a159a5b3-ac97-4317-b1ca-b176f0df638a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1433") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U408") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U785") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U150") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1845") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U552") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1530") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1748") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U676") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1103") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U882") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U289") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1227") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1651") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1336") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d4ec8676-64b7-4cc0-a98b-e6f36bfc2349") (property "Reference" "U?" (at 339.09 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 63.5 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "9bc902ba-67ea-420b-8899-29ace715ff8a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1399") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U374") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U751") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U104") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1811") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U518") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1496") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1714") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U637") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1069") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U848") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U255") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1193") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1617") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1302") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 140.97 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d50fbdbb-a1d5-4e58-a269-3c0fc0204d5a") (property "Reference" "U108" (at 339.09 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 138.43 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 140.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c3c8fb9c-4bc4-4a05-be13-47c4a0d64889") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1408") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U383") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U760") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U125") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1820") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U527") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1505") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1723") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U646") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1078") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U857") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U108") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U264") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1202") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1626") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1311") (unit 1) ) ) ) ) (symbol (lib_name "AO21_5") (lib_id "peppercorn:AO21") (at 377.19 179.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d554fa72-030c-495d-a964-6057840a9592") (property "Reference" "U153" (at 379.7299 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 379.7299 172.72 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 377.19 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 377.19 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 377.19 179.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "d98ab4d7-d3c3-4f85-96f9-cb4d10834131") ) (pin "" (uuid "76a2cee2-24a0-43c7-b142-5ba91178f944") ) (pin "" (uuid "5acfe785-f410-4590-8f9d-65b5e1692e6f") ) (pin "" (uuid "20152493-8366-40cc-a4ca-c20961871275") ) (instances (project "" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1230") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U2139") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U679") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U1848") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1751") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U292") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1339") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1654") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U555") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U885") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U788") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U153") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U411") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1106") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1533") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1436") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 369.57 109.22 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d7e1793e-b760-425b-a91e-dae3a2d537d0") (property "Reference" "M?" (at 369.57 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 369.57 115.57 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 369.57 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 369.57 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 369.57 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "8e03f0a6-b67a-4c05-a970-899345abde47") ) (pin "Y" (uuid "ab6bfeca-243c-4899-981a-87b0f4e1cc0a") ) (pin "S" (uuid "d29354ed-551b-4f9b-abfb-f31369185eeb") ) (pin "D0" (uuid "d2a6b9e4-fcc7-4396-8a4a-abb1c0198c0f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M536") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M141") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M286") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M32") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M684") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M185") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M567") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M653") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M238") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M404") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M317") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M88") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M462") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M622") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M505") (unit 1) ) ) ) ) (symbol (lib_name "AND_9") (lib_id "peppercorn:AND") (at 298.45 146.05 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d9afc74b-ce8c-4124-bf0e-4d23d3e34dcb") (property "Reference" "U?" (at 299.085 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 299.085 142.24 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 298.45 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 298.45 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 298.45 146.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c76d478e-e660-4593-8204-12d459a03953") ) (pin "" (uuid "33ec04d6-c78e-430a-b69c-85e392a64fda") ) (pin "" (uuid "9e869af3-390f-41d3-8d92-f142973f8263") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1397") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U372") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U749") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U99") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1809") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U516") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1494") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1712") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U635") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1067") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U846") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U253") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1191") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1615") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1300") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4") (at 347.98 213.36 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "df3a756d-e657-47e8-ae5f-428f965dcdb6") (property "Reference" "M?" (at 347.98 220.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 347.98 222.25 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 347.98 213.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 347.98 213.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 347.98 213.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "51b8eb7f-8ec2-4165-9f24-7991b38e3c0e") ) (pin "S0" (uuid "40550fed-b697-40fc-90e4-34c60bba0bb3") ) (pin "D2" (uuid "32085dfe-1470-4ae0-a3bb-af8f6ddcbbb3") ) (pin "D1" (uuid "86ad8580-f29e-4a6d-9e27-3883035a2c6a") ) (pin "D0" (uuid "d0648dd8-74ca-4a37-bb99-de8aaa75f644") ) (pin "S1" (uuid "584c33db-26cc-44a7-81d9-cd45d5b6407e") ) (pin "D3" (uuid "faf47646-f6d1-4aec-ba78-92fe5ac8f03e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M531") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M136") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M281") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M25") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M679") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M180") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M562") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M648") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M233") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M399") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M312") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M83") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M457") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M617") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M500") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 368.3 173.99 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "df3f54ec-1c5d-4ac8-b893-4fcba9a71627") (property "Reference" "U?" (at 370.84 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 368.3 171.45 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 368.3 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 368.3 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 368.3 173.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "2f4a2afa-8c7c-4c0e-91bd-80db8941957f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1426") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U401") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U778") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U143") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1838") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U545") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1523") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1741") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U669") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1096") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U875") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U282") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1220") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1644") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1329") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:DFF") (at 224.79 106.68 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "df91c97d-4e7b-4d91-a9fc-4b4c2989fcf1") (property "Reference" "FF?" (at 224.79 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 224.79 99.06 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 224.79 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 224.79 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 224.79 106.68 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Q" (uuid "3f988c48-b74d-460d-96dc-17b44d4a59b6") ) (pin "C" (uuid "3ee5fa28-d242-4cf6-a1bb-5bed59c05f2a") ) (pin "R" (uuid "f5651b4f-35c2-4df9-9472-0a70708db67f") ) (pin "S" (uuid "7dd7f081-c387-4a4b-bdd4-f8820dd7989a") ) (pin "E" (uuid "2357b88a-fbe4-46a8-b556-be72f2482b3f") ) (pin "D" (uuid "8538ef35-f5d5-4185-9c4e-3557f4dce998") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "FF21") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "FF5") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "FF11") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "FF1") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "FF29") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "FF7") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "FF23") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "FF27") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "FF9") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "FF15") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "FF13") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "FF?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "FF3") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "FF17") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "FF25") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "FF19") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 116.84 152.4 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e02bc466-f4b9-4587-8548-450221a7fe42") (property "Reference" "M?" (at 116.84 157.48 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 116.84 158.75 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 116.84 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 116.84 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 116.84 152.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "35c4d1af-7002-493c-bfaa-a04043a7b5e9") ) (pin "Y" (uuid "4c45dc33-012d-4436-a196-3ac75b161d4f") ) (pin "D1" (uuid "b57dcfa5-e9c9-42ff-8e24-9576f5e3cc70") ) (pin "S" (uuid "7d051e9d-e8d1-4ec5-8955-faa849345107") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M523") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M128") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M273") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M10") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M671") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M101") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M554") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M640") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M225") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M391") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M304") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M75") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M449") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M609") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M492") (unit 1) ) ) ) ) (symbol (lib_name "XOR_7") (lib_id "peppercorn:XOR") (at 200.66 78.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e10978e9-c0eb-4d2c-afcd-75ad083a531c") (property "Reference" "U87" (at 200.2927 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 200.2927 74.93 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 200.66 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 200.66 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 200.66 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "281216c5-c32e-40d0-b604-0eff27dc739a") ) (pin "" (uuid "3577bc58-23da-45f7-9bd1-5c4aa1c56f4f") ) (pin "" (uuid "b932ff2f-1517-4a69-b6c0-8d8054b27960") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1384") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U359") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U736") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U84") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1796") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U503") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1481") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1699") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U622") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1054") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U833") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U87") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U240") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1178") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1602") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1287") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 336.55 116.84 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e15e4b3f-6541-4c18-8bcb-0060cc2e48ab") (property "Reference" "U76" (at 339.09 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 336.55 114.3 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 336.55 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 336.55 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 336.55 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "b6399fe5-e83f-4113-a8cb-7d4a4d45a195") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1405") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U380") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U757") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U119") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1817") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U524") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1502") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1720") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U643") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1075") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U854") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U76") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U261") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1199") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1623") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1308") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:DFF") (at 224.79 139.7 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e3a068c9-dd2c-45d5-b5a8-eff49a40c2ec") (property "Reference" "FF?" (at 224.79 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 224.79 132.08 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 224.79 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 224.79 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 224.79 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Q" (uuid "4d5f92bd-0721-4da6-856e-c97731993535") ) (pin "C" (uuid "cb22f426-0726-45a6-ae0a-d6aa41233667") ) (pin "R" (uuid "021d0ee7-237d-443b-b32c-78ee007cd9b4") ) (pin "S" (uuid "888f0859-1d63-490c-9c74-9593df22490d") ) (pin "E" (uuid "74798860-0dc8-48e0-a6c8-8605f6b1cf92") ) (pin "D" (uuid "7bf79d21-9d57-4e71-8238-8767672da2c8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "FF22") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "FF6") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "FF12") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "FF2") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "FF30") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "FF8") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "FF24") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "FF28") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "FF10") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "FF16") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "FF14") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "FF?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "FF4") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "FF18") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "FF26") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "FF20") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 179.07 82.55 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e744fbba-2fbf-4167-ad13-5bf40b4fb9d5") (property "Reference" "U80" (at 181.61 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 179.07 80.01 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 179.07 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 179.07 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 179.07 82.55 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "5056f4cd-925e-4d89-a021-fa33b3441590") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1378") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U353") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U730") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U62") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1790") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U497") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1475") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1693") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U616") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1048") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U827") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U80") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U234") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1172") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1596") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1281") (unit 1) ) ) ) ) (symbol (lib_name "NOT_4") (lib_id "peppercorn:NOT") (at 252.73 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e87aa03c-02d1-4e5a-b0fc-5c1ab3088ce9") (property "Reference" "U?" (at 252.73 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 252.73 101.6 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 252.73 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 252.73 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 252.73 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ebbf0882-3a01-4a92-b346-5d681f9e8673") ) (pin "" (uuid "0e96a876-8ff0-4e0c-ab91-16ed8f1fd8c9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1388") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U363") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U740") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U90") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1800") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U507") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1485") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1703") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U626") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1058") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U837") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U244") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1182") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1606") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1291") (unit 1) ) ) ) ) (symbol (lib_name "XOR3_1") (lib_id "peppercorn:XOR3") (at 91.44 162.56 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e980ba5e-b171-4302-bc7e-3725a35e6a21") (property "Reference" "U?" (at 90.805 154.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.805 157.48 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 91.44 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 91.44 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 91.44 162.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "eadda3b7-349f-4da5-b4fd-b580abeb2dd6") ) (pin "" (uuid "717c4cb4-3c65-4d63-abbe-9eba857a0f35") ) (pin "" (uuid "48eab728-637e-4be2-97cf-03ec39e16d4e") ) (pin "" (uuid "4e187958-dfca-4281-96d2-b8c9d3325f9e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1365") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U340") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U717") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U33") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1777") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U484") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1462") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1680") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U603") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1035") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U814") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U221") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1159") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1583") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1268") (unit 1) ) ) ) ) (symbol (lib_name "NOT_3") (lib_id "peppercorn:NOT") (at 194.31 139.7 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ea8ed7cd-31ee-4a9b-b44b-f863777e50dc") (property "Reference" "U?" (at 194.31 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 194.31 135.89 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 194.31 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 194.31 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 194.31 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "875bb38d-9f26-4a9b-a561-973562c71880") ) (pin "" (uuid "ec63c282-a484-4efd-be08-21e2f73e315e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1382") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U357") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U734") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U74") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1794") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U501") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1479") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1697") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U620") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1052") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U831") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U238") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1176") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1600") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1285") (unit 1) ) ) ) ) (symbol (lib_name "AND_12") (lib_id "peppercorn:AND") (at 355.6 142.24 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "eaed899f-e505-4584-9caa-4ff0d465bbbb") (property "Reference" "U1225" (at 356.235 135.89 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 356.235 138.43 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 355.6 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 355.6 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 355.6 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "1d762142-7c02-422d-bd45-3756fb258260") ) (pin "" (uuid "15e04946-7477-4036-8c23-423de0da84ab") ) (pin "" (uuid "3dde2585-0d44-48f7-923b-2f45e8eca02f") ) (instances (project "" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1649") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U2134") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U1431") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U2133") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1851") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U1233") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1657") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1843") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U1342") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1528") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U1439") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U1225") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U1334") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1536") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1754") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1746") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 355.6 85.09 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ebd1ad57-a5ed-45da-ae98-ac2aeaa61c2b") (property "Reference" "C?" (at 355.6 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 355.6 81.28 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 355.6 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 355.6 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 355.6 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "2930296e-bb09-4ef8-9efc-c5f5a3633362") ) (pin "D1" (uuid "7a01cfdf-ae24-4a78-8135-009052923b1b") ) (pin "Y" (uuid "3b805eab-0452-416a-bcb2-f5d7fe21d604") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C168") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C46") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C91") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C17") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C220") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C65") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C181") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C207") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C78") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C129") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C104") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C33") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C142") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C194") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C155") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT1") (at 185.42 96.52 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ec109406-92ed-4d34-b7db-54115dc9f91f") (property "Reference" "L?" (at 185.42 90.17 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 185.42 92.71 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 185.42 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 185.42 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 185.42 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D" (uuid "d6a67765-9e42-4185-a712-c0e53a0b1c42") ) (pin "Y" (uuid "3fe46968-aece-4b23-a334-9e7e31ccfce6") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "L301") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "L81") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "L159") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "L35") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "L357") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "L131") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "L315") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "L343") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "L145") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "L259") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "L173") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "L67") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "L273") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "L329") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "L287") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 177.8 129.54 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ef035c22-cdaa-4384-95f4-8d9a7ee27c11") (property "Reference" "U?" (at 180.34 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 177.8 127 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 177.8 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 177.8 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 177.8 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "4000d19a-5ae0-4537-9fea-e021283985cf") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1375") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U350") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U727") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U55") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1787") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U494") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1472") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1690") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U613") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1045") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U824") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U231") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1169") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1593") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1278") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:DLT") (at 224.79 91.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "efbb9a5e-92e4-42f0-bf69-6fc94b39f52a") (property "Reference" "LT?" (at 224.79 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 224.79 83.82 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 224.79 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 224.79 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 224.79 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "R" (uuid "51b658a9-c30b-48ec-9b15-5efcb6269d7a") ) (pin "Q" (uuid "539034e0-4e85-4b36-9033-0f6c28037a31") ) (pin "G" (uuid "e24b8856-d957-45d1-8b17-b06985c505ca") ) (pin "E" (uuid "a8a87ab0-8fc4-43c0-b097-cc4820cfe9f8") ) (pin "D" (uuid "185aee2f-a5b7-45c8-a2a9-d079bf32c48b") ) (pin "S" (uuid "a98a196d-ccb7-4929-8a49-c7aed3fbe659") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "LT21") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "LT5") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "LT11") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "LT1") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "LT29") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "LT7") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "LT23") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "LT27") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "LT9") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "LT15") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "LT13") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "LT?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "LT3") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "LT17") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "LT25") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "LT19") (unit 1) ) ) ) ) (symbol (lib_name "NOT_8") (lib_id "peppercorn:NOT") (at 347.98 181.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f02fd995-6101-4323-aceb-1fd81eab2d91") (property "Reference" "U113" (at 347.98 176.53 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 347.98 179.07 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 347.98 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 347.98 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 347.98 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "6395d8a6-8d96-4464-b5e8-f0531cadb2ae") ) (pin "" (uuid "b3735f1f-4411-4f33-aff6-951ff71ed792") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1418") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U393") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U770") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U135") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1830") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U537") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1515") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1733") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U661") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1088") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U867") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U113") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U274") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1212") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1636") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1321") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:CONFIG") (at 26.67 172.72 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f09b834c-fb7a-4b99-86fe-435d1f607718") (property "Reference" "U?" (at 26.67 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 26.67 170.18 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 26.67 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 26.67 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 26.67 172.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "a672cf3a-21ab-484d-928f-38bd40b8d5d2") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1344") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U319") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U696") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U2") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1756") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U158") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1441") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1659") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U582") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1014") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U793") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U200") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1138") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1562") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1247") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX invert/mask") (at 27.94 137.16 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f11c30a9-e2f5-4714-a9bf-a08a8b979357") (property "Reference" "U?" (at 27.94 139.7 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 28.6306 146.05 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 27.94 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 27.94 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 27.94 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "3" (uuid "7a779f5f-1478-4487-9b0e-61cb0baa7fbd") ) (pin "4" (uuid "a816386d-7a92-423d-97b3-acf217c1c09b") ) (pin "1" (uuid "d9c2259a-96b5-4c7b-95c6-146e49f3a3fa") ) (pin "2" (uuid "f5811958-af36-4b69-9360-04010a4991b2") ) (pin "M2" (uuid "187b9307-493c-49fa-9a01-019b3161cabd") ) (pin "M4" (uuid "4f15d74a-6fcb-4f68-94f6-f7aaec8dbf80") ) (pin "E" (uuid "836e5484-793b-4dc8-bbd7-c0b4ae2a2fa0") ) (pin "M1" (uuid "3e9e1c92-3bba-4a74-b320-c1dda10baffa") ) (pin "M3" (uuid "6b73d70f-2610-46d0-a667-74196f53af47") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1346") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U321") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U698") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U4") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1758") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U160") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1443") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1661") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U584") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1016") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U795") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U202") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1140") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1564") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1249") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_1") (lib_id "peppercorn:LUT2 with C_I mux") (at 30.48 86.36 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "f295c942-a31b-47d5-ba58-88e4b6fea7d2") (property "Reference" "INIT_L?" (at 30.48 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 27.94 82.55 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 30.48 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 30.48 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 30.48 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "2f39eccb-8c4c-477e-9511-42e6589dcbe0") ) (pin "Y" (uuid "c4f1ac28-45f4-40e0-a5b3-fb7764abaab5") ) (pin "D0" (uuid "2edca865-3cdc-4c7b-8739-3373adb50d0e") ) (pin "D0" (uuid "01ce40d5-0f70-402b-8338-c0513a559081") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "INIT_L151") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "INIT_L37") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "INIT_L76") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "INIT_L1") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "INIT_L163") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "INIT_L70") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "INIT_L154") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "INIT_L160") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "INIT_L73") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "INIT_L142") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "INIT_L79") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "INIT_L?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "INIT_L34") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "INIT_L145") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "INIT_L157") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "INIT_L148") (unit 1) ) ) ) ) (symbol (lib_name "NOT_2") (lib_id "peppercorn:NOT") (at 176.53 143.51 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f79e9916-51d7-457d-9ac2-21c06547310a") (property "Reference" "U?" (at 176.53 137.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 176.53 139.7 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 176.53 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 176.53 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 176.53 143.51 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "f4f71abd-52df-4137-b635-baab8767f048") ) (pin "" (uuid "85817760-3679-4b19-93e2-ca561a2e5551") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1374") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U349") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U726") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U51") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1786") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U493") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1471") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1689") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U612") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1044") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U823") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U230") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1168") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1592") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1277") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 386.08 196.85 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f950fe6d-db1d-466f-9282-226d8e6aa7ca") (property "Reference" "M?" (at 386.08 201.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 386.08 203.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 386.08 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 386.08 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 386.08 196.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "8c89799d-af7e-41f5-8d81-40a52659c416") ) (pin "D1" (uuid "4852a702-32db-43e2-a48e-57ac4ee3a1cd") ) (pin "Y" (uuid "102ecb67-2ce0-4ef5-bc3f-731947599550") ) (pin "S" (uuid "53da773a-5158-4a36-b93d-e11ca149670e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "M543") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "M148") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "M293") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "M39") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "M691") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "M192") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "M574") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "M660") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "M245") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "M411") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "M324") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "M95") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "M469") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "M629") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "M512") (unit 1) ) ) ) ) (symbol (lib_name "AND_6") (lib_id "peppercorn:AND") (at 190.5 73.66 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fb003f7a-4089-4076-bcd2-d147e5fb4b4c") (property "Reference" "U83" (at 191.135 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 191.135 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 190.5 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 190.5 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 190.5 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "0924439e-9808-4020-892e-32b2d95cef1d") ) (pin "" (uuid "15352e3c-eb8c-4675-832f-95af30d6e67b") ) (pin "" (uuid "2ff4be1b-e7e2-4ef9-b117-982d1f301999") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1379") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U354") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U731") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U63") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1791") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U498") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1476") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1694") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U617") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1049") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U828") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U83") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U235") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1173") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1597") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1282") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:OR") (at 59.69 107.95 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fb271d8a-21de-4fe3-a4de-50fa4af51f95") (property "Reference" "U?" (at 58.6874 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 58.6874 104.14 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 59.69 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 59.69 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 59.69 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "aec0204a-f3ab-4788-9da3-428cbd5019b4") ) (pin "" (uuid "ff83de33-be43-4ae8-8882-f399edc4ddd6") ) (pin "" (uuid "aad14c46-0dac-4249-997b-fb9d6cfc3b6b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "U1358") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "U333") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "U710") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "U26") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "U1770") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "U477") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "U1455") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "U1673") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "U596") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "U1028") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "U807") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "U214") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "U1152") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "U1576") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "U1261") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 241.3 105.41 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fb51aa44-2af2-4506-b1fb-b7ef8110837f") (property "Reference" "C?" (at 241.3 101.6 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 241.3 101.6 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 241.3 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 241.3 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 241.3 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "e8c026b9-2509-4728-9b14-742041ef20fa") ) (pin "D0" (uuid "95a11c7e-2c8e-4330-871a-e3beba009611") ) (pin "Y" (uuid "0ce69c9b-80ab-4400-8311-41136593e457") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C161") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C39") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C84") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C9") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C213") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C58") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C174") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C200") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C71") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C122") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C97") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C26") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C135") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C187") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C148") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 251.46 55.88 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fe590678-c80b-4083-bce4-b095c14a36c4") (property "Reference" "C?" (at 251.46 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 251.46 52.07 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 251.46 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 251.46 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 251.46 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "408da89f-4b3c-403d-bdb3-3c4e097a5680") ) (pin "Y" (uuid "0090fa5b-3fcd-4744-881c-6a9f7974e796") ) (pin "D1" (uuid "8c1f862f-3d95-4651-af89-c16e5e03900e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (reference "C163") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (reference "C41") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (reference "C86") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (reference "C11") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (reference "C215") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (reference "C60") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (reference "C176") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (reference "C202") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (reference "C73") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (reference "C124") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (reference "C99") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (reference "C?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (reference "C28") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (reference "C137") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (reference "C189") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (reference "C150") (unit 1) ) ) ) ) (sheet (at 114.3 200.66) (size 12.7 3.81) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7") (property "Sheetname" "C_FUNCTION=4" (at 114.3 199.9484 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe_comb_mux4.kicad_sch" (at 114.3 205.0546 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (page "6") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (page "13") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (page "22") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (page "28") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (page "20") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (page "40") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (page "46") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (page "52") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (page "65") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (page "71") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (page "77") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (page "83") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (page "89") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (page "95") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (page "101") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (page "107") ) ) ) ) (sheet (at 114.3 210.82) (size 12.7 3.81) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "2f1e56f5-88a6-4944-a409-72559104271f") (property "Sheetname" "C_FUNCTION=5" (at 114.3 210.1084 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe_comb_en_cin.kicad_sch" (at 114.3 215.2146 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (page "7") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (page "14") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (page "23") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (page "29") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (page "35") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (page "41") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (page "47") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (page "53") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (page "66") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (page "72") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (page "78") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (page "84") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (page "90") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (page "96") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (page "102") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (page "108") ) ) ) ) (sheet (at 114.3 172.72) (size 12.7 3.81) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf") (property "Sheetname" "C_FUNCTION=0 or 6" (at 114.3 172.0084 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe_comb.kicad_sch" (at 114.3 177.1146 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (page "3") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (page "15") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (page "24") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (page "30") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (page "36") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (page "42") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (page "48") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (page "54") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (page "67") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (page "73") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (page "79") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (page "85") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (page "91") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (page "97") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (page "103") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (page "109") ) ) ) ) (sheet (at 114.3 190.5) (size 12.7 3.81) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "7c694198-71e0-4b5f-9d71-f88a52a590d9") (property "Sheetname" "C_FUNCTION=2 or 3" (at 114.3 189.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe_comb_addf2.kicad_sch" (at 114.3 194.8946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (page "5") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (page "16") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (page "25") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (page "31") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (page "37") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (page "43") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (page "49") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (page "55") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (page "68") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (page "74") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (page "80") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (page "86") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (page "92") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (page "98") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (page "104") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (page "110") ) ) ) ) (sheet (at 114.3 181.61) (size 12.7 3.81) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "c7e1e454-4a3a-497b-82a6-da398b72cabb") (property "Sheetname" "C_FUNCTION=1 or 7" (at 114.3 180.8984 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe_comb_addcin.kicad_sch" (at 114.3 186.0046 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b" (page "4") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc" (page "17") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4" (page "26") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4" (page "32") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743" (page "38") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98" (page "44") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7" (page "50") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2" (page "56") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b" (page "69") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0" (page "75") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba" (page "81") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d" (page "87") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164" (page "93") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296" (page "99") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec" (page "105") ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7" (page "111") ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/cpe.pdf000066400000000000000000075427601514752025000205100ustar00rootroot00000000000000%PDF-1.5 % 5 0 obj << /Length 6 0 R /Filter /FlateDecode >> stream xuyK;c&;KlYѶlڶhsl, s9U}A]ȜyHL aӗ!x~/o?% _-Ia s9NZ]NӿIaN;_yO8×?>i1%Eh~dm]e4=y Ky s\k=K2˲'bGsUoq2M?Ʃ7sOeh;~mo=0[=no?@q-lM*r a߶1No[ަc o[\T*8\)-/>uWuK?!# -#k__/(RDz {؜_u >J_>۶GS1q~/ceL?>dc#bRm~|b^Ͽ//16_~__~/yu_FiüM(y>Dz! ipk sOR8/ʒ`tgGyvL71op=~bO]&?k8d*e~偯7 ^ԩ wtAԒqy {JOT:nwN((O1G^թ'sfR3^(1{3ژx;%sNuOlƂ>oE|5U򀙔{XkgumQCp#rְPGFv%k-w4K-ՖڮxwJnW[;fWz;-fW;тjʝHŒS5ʝ -ƹh)9F*Na/E(  8.Kb|@1Ҟ=a,xU]6a,xQQu~:,M=5)޺lwv)E-jwZ.K/e_ٴ%QhFyQ{xb;j; z;Jbv܉TSDwz ^>Ƕ`?}3cjPxOS/1My $zN7[Vܷ9 xHq|4qngloʫ:ZzEȇzWܞ8UZ0ڎ;%TZ+ h>F#ՔWҞƒS^it(/5A(o1ʫ:bQcR{ Nai1(qrӘO<?}+^i aJ< _{jT9o,xU5fSܹo3˥Z[Ь}^#Bq^:o[kW075Ν>g95ۇ>qJ9]0.m$9K|?}hN\Q;hs-DU=s ;mP>3͖S3g8[0Pk8qjʫzk󢞆 3*^;jh1Ν}⵽NrI:߾Vaãl ܑgZ9:^ xU훨v<%wܹof%o\;\oʋ:q5\?+^؎֬lvL4wj8T;jQ)m)Ԛ)1ʋ:ٟ_xUOK?|ӕS(4x{)i݌<}}Gy3Þأ4{{u .[;/,fױo;!?'}']Nu0UuE:w۾]>[ي)mZ5 7Ech]w;ҳۡn}l;_2_اf~c.},ltӿe`3ܱOr}r>]5/wY/wӿe\3ܱrm}@ɍ:M^4,'&'n>e,N } m (dB[Ͻ"& }hoKdI M';Phg; M^+;Rhri@ IBSfe ΌrB[/fжv6Πڸ>rffe(6]sj3=6l)lwr 5ƩdShkPjs]9JBm-^N js9B((@) B a b7N!PI(DW| 5D(ϾUK巳%26w,coU9LDvrPjsv@0KQ Jc`q s*PCvf q\9Ni 9z"Va Bi1ˆ'ZŎ>Et"AO;cP ?_ǚo(:Ү:(ڕPCvuE)]Q JB!Bc  ZQPB$0 #j#л]|5˄Z RR Rg PZ;YRj#M)]PjA9JBm*WN jn9B((4K)WB a bWJ!PI(DW| 5D(3,w;v>.3vY`\ieSjpiJm.XS iN 9lM$> 9`掂R +Jm,؊P J;P AJN)]OP }P#Qjs39%rjPiBm,'%FPZxB =Чi[柷3e狲=sʖDz6784Og kiʖA 1jsaa 1j`a 1 }Όo2evWe)Y))=uՏ}&+; sj\a 1j3\9JBmv+,-6?8ٝ)(UҚ6Bis>{cL}ty&SloJm*;(9`FiJErPʮT9%6)Jm'k`s 5dNAiBi͞S!OZ 6$rJK=N;ej˾mee@6#6t}ڑ"?b6P_?g'9ә>{QvV)k]n%h.'([fRK RG RO]VS. '6+p5J396$f=rJKͶ5DkJAiBiR!;R b' $KK(DYY]e^2!]'P̾+KdGWNm';r i|@ilN}j3[,O^06SC//4PZ9yr) F<6/$#rJK̓6*\Bil)F*fU)D*  5D(Ͻ8 v&>5ҳ[vzd wܳOra/wӿI6g_ا9Q/wӿ=t xA/žARe=O:5ЧN=okݘ6~xO tNdlYƉ-<|dqO2-ted4)p딖ҬLM̖>`(&oJ2i= {)e A)6cNi 5[IN 5Ze;TN4"afzP>P2 oKK|+ 0}lcT:ZGsOR!mΔg3zj&u_05a3(*蛫-m9ڮW(5TNUGOm Rj#/}V:c*e#pggrq4AǠٗ M02Zr)1Ӿw8O}3hgqj rE^g&zV+ͽAgb=G<1i~:2 gaՆ+Hf˙NnEzj0Ԭɖ[i_d:j!f vG͚tCkҎZey߽]:cnP|u)Fml mi)P2<0ZjFoGɨI%FbWF*Xbt=)4o6L#ii}xY@_iIբ |e}v YfuGoa}qz3upg %ّ(iӨ-o1|}OaxB\sqgtƴ][_iR7':4x]3M%rsDӵ?jB7InN)Δ.q<✯JuȾ7nۛ_ͣ{xy|o~_7ͯ!~1~ywmoGo `?"x?t~~>J?b+>Wi]m|K<ПZH3>WViZ!G|xUO-_qGm+VKn8(f9(-f(b-(3FcÂ>()wV8 rNm%Xh&Xg8 anρ|{ùɏD̡ ϱIC+iO}0_☣Wx$-$)[?e~GW밄y>S0o@{d-ʜVp҂anVt2t~)(QGP(?FybB -NUVߔP&HPчt5([z}{Ӫ΅oyiQpz-[SITѢY׎ТQ^iG;uK(Bi1%'n %B6[NjMVA%v4Y\Z\b-y",p UfFit;>F>Q7\3=O2Xe:JB2'=V2N ZӹqZPP¨(!F0VA%OXZBrK@wjPTB$Zơ58O?<1*-U9ik)#ҚVo5!rӧ'/}4%^#8L9i˾i4aĚ6w~xWk Aߺ׏_yxnnߺrGL%:̾ujOUk1mA\|l~ )X*nC5}ʳtO9kON~w͋VrGxMFN)^/ixl^soBrc6mJBr+a$(yZ99afsӪ~Ohχ,N JeBij(룐N 5Z#PxB!PI(D<ЧGBN{| m+ |)u KwӢ̹77qdgZ߾Vg%(G*\}g*vhB(GB2׈ фP(m)rJPufL Zb۱/Sǹ+-QCA'-uz( ?PZ1PhH@%}PڸY/(寝M^BURT ч%"kPe*~n1a>+C>GhUC5 };}Ҏ^_sIaf(sn#lFr>?}=Ѫ g8ٌVvΕRPB_aJkJ Vc"cЧ/}]󥜙#D Zc|9lBr\aBAG(#P!eB`&)FCv:>bZiGrzxM>ŝ|>eip~ڎGAe~lp1{KZ?Ki_Ǵ8)?O>}|ai:=]-St/Po?I)(v)p ܏;m(PW{>VH`"q93eel;7oPZkF>ŝ|>UibpvϩdU,3/Eȝk ״5DiU}#SCeqˋUЪ S>mV5^/F)(KꝮBimjȎ B؞M)D*  ojn͝6U~ؿO8yoz롉Ķ}ˁҢL%o>QZ6E$,6U94ٵ{?RP\( Q 5dZ%\ߍqZ<{BiyǾ{B=mP13KSTMX)v!BB7)ppBcig̾=S{=>kbjGk2wT]\ i.[>H(\Eeʚݞ㄀i=A<\ǡТiWpgm$%z izWL4m%q9qV-Z%=2ٜ:Vt=W9u(4+o{4 o<t ˎj<۾{ 3OP{<׭cZ=)NBdrZ;;aiUWҧQ<ڜVr~*89)֜ jȜZż;)D* +-+JS'}_#>mr 9$)#lcPyS!&Oq'OU=++m}Ы_úל:;lVt&hopZK3yS8L =5>:.;XÞsQL ,n!?ej[JrNں(zuK)'8.?Yq]c۳h\꠆-5rӢ\,Ъ Ş*L9!)*Uڞi.wgJʘfc -qyQeZ)2J2{1(iupkc*9)(!B2Zùe( OBk$KT=Ъ\u;=ЪL}lBAP(]S 5(9W)D* sO!⡆^fZsp!6xse?9|Pp9v,ga2SeMً\m^!h H xT|iiv.oS딃ZMƦ+[E$^sZ^KVe⚄>ŝ|>ui[[fϬv6\S1\ss00˥U_CQ&FΣmJӪth Õ*0\2z!Fr9_ĸe*U]ӧOq'OY4`rbziXa$0Z|͹&Oq'OQwpo>G._w0 7?7??>GwO-sf?_m{ex*Eǹeq 1$0\ea?m:J{}8ӄKSfuu5Du.ȼk)#JuVyӹ/}-Y}jO4R"?҆D8< ^( * }ڶZ\'*Ł~k#1O/G;u}3c 1 qur>ӧKkڳoxqjpMFk)#)K7GTپұq8exJsʹ {/OFZQZ%qWC }lF( t'k,m_6kzڭߴt֌כNi =rf %b_!j'*$iKKhUΧ-}*/B!PI(D-Ք6ejӉF%E9y[Vt~ ΂Bim_jOJUPIӶ5+tͫJU:S?ryB khR@xaMqJ26#ТәC%qVqLQr<2hQ99JBkFuh3鸛+Q{vvvFJ1D(* B$81ӧ/(81䌯C ]^٥G"QPB$0 H`jЧwlOB2 %U ;%*˫"̀| H JG(F<*8=򅭲e -us= -|K1hU_Jy$Q6[eˠn{Ϝq\ؾgOgLiQ֤$* lNi ʭq튑QPbݦy}}/T#O6>zSGSv7Sڎ٧$yp//%٩([5s͖Yޯ9@e.WŖe \<R}DiUgI的>ŝ|>eiq[ֹ/LAi澟Js"ЪLcSҧU9\#Fr=PZQh+B$ѧ/(;#34޽O ;{IhQ.|KQZcy3 r E%PZ蟌-h7FAY2MGP(-CB 5SCfBă:9 3:jZeM[уH`(̥( -+QCVry03Zv03 J( B8(D* Үby)g(~{k١܇ !nl%'0\ˢѢ1nh%-PZXS3 5&UsE%Uy&O%?%0b 5PhP2 o|qtlohQ=NЪWҧU9{&-h/#}Biav`jۓPh!B!PIv36Zp\;lFri.[ZFr>{VҜAƺ)ԭep]~Ü5?w?yW4.ۙ*Kw?Dv⩟(\g)_= o-t-`Jǡ')Yܫ1su?127*֪m.m+ o/$GS 7!N[9~BǭP(Ǩ-N`,sj+s盤c +F ߪ c_27\An}~=ؾ5-Q8O&~"/i_03e[cwxb^eؾ ۷utiF-Xfl#066B-Oh|,3}jvv.(?8n?$~|:n!6BNHv-ubv ۷xؾ3Ũ6 A1$Fe ef~[ë+g0vxZ|g0w ^<3\GI<:f7ģc>/ (_ݿ{ѱƖrqSݑKeK͖ykF8!?-iyMsҗ07_=~|\aJ?Ou~u7o]4y~xIU¦^z}O?V2ו=|:ljb _ z J^vve{??4q)]/b G ۸-|(si?4SuE7u.4yGM[\gPuYeotJ懌;4 }ȿ߰ͧeJr\Þ'pgcs"S-NctzI},Β%hsN.%E?{i<留M?gžuh9|z&{i ftF>I=mm0C,sm]%GW:l(p~ ۨ66Taa234,^~Mxic6 ~zܑݻ_6pvu5G(~j amU lˌc[W{m`8bu n1i~Ry^DZ-ɝw]brю!㼭Nǜ8zeh5Nr\gg~3;n̮Ք_;NN]Q\O8PW Wǫ+~p&B5Tfq?񇡮+{]>teBrE /6.&ϳ3Q\W#8qEq6)6m.O`[f\rlʋMF^24 ߍ᪍goF-ö^L2l ?Uڹ, jb-L1lU5s(nbAqіyͼ$E;w=-U͡Pf[@]1\K7@1l^l4̡[?ۺ6]@J%/(N-jKфKqծg.gB1ޯY|v` Ƶal*i`,Zk`Y>wqWqӏdmʈ۴)#nFܦMq26mmʈ۴)#nFܦMq26mmˆ 4:4:f4:&MZayZєFs #+3hH#ѶN4~YWqF3MqMq66emڈ۔i#nSFܦMq66emڈ}&0mgmʈ۴ #λ.ֈqck1ޯ66emڈۄֈakyu0ޯ66emڈ۔!i#nSFܦJ#nSFvc#΋ \FGk%8-۴)#nFܦMq26mmʈ۴)#&66emڈ۔i#nSFܦMq66ay10҈þ:g)#nFܦMq26mmʈ۴)#nFܦMq26mmʈ۴ #΋XFˆsd -l_j ~h gnxgoEM[Q Z\#Q eƽ%6: Xf*rSLK waZ"dVe|״~ӃQQQQQQQQQQQQQQQQQ6-7eZnڴܔiirSMM6-7eZnڴܔii2*rӦLM2-7mZnʴܴi)rӦL˨M˨L˨M˨L˨M˨L˨M˨L˨M˨L˨M˨ǨMKݴi)rӦeTeԦeTMM6-7eZnڴܔiat#}jºbcsGKqնn.n OpaQlBxEqmƵrXfmFeFmFe^WQ7וoTo1iwS M6x7eFmFeFmFeFmFeFmFeFmFeFTooTooTooTooT M6x7enݔiwS ި Me'-8i]W흗nS.OZB]Ek3|VfY6ge >k3|VfMl >+3|fY2gm _(3|fE2gm >+3|fY2gm >+3|fY2m/ _>+3|'xguw'xguw'xuw'xuw'xuw1O+ Ew0x2x2x'mN;)w I2x'mN;)w I2xgm;+w Y2xgm;+w Y2xgm;+w Y2x'mN;)w I2x'mN;)v;kwV Y6xge;kwV Y6xgeN;iwR I6xge;kwV Y6xge;kwV I6x'eN;iuR I ޛJwRtc)w Y2xgm;)w I2x'mN;)&6&eN;iwR I6x'e;kwV Y6x'eN;iwR I6x'eN;iwR I6xge;γ:<γ:<γ:<γ:<γ:<γ:<γ:<Γ:<Γ:<Γ:<'eOpVfۘ;f㯇^JS1^vO5zўMX^Mn{6M`w xqզXݎ;ڸj^˼Mӣ[c]N18.-M$ǟ4^5HwAy⪝5 1% n]6vؖ9A3pl*8m Aklhas ۾9iBbK6&)ڮؾ@q2KZj.;Z;nPeb+')ܹ).)_w [W?MxZv 1ɰgRl7(؀b ')u?UH+Oa9 ҝ' ? }~u5)쨴Џbڝ>2xZ R\S7>Hqv[m vKql#m]9}bFJkO寜MW|{pц.p 60=sō : _01bšb[fgA+g̡ض3Qlc(~sn W\E6mp ^l0ZIm+2l ?ՀT[7NEjwAΑQ\]#kzr}f)Wmv.hns(Ũb[fg@+gضpJ<#ػ͓IԎrMq50U#l#v\^èŘdؖ ۺ(VjO77݃8S`p)1Le4Y@?ơ-mXq?7a/S&.ӯ~~㴄ԉ1oWJ/t[Ɯ13>w WmJzfx.d G1FOKqՆi vdC&QYNS0>wۈ]2\]B=3 h<Z jnd2+Ս'rEm}#6:<o WvŇzp<.K|:╙am݇~i5z.U;`9mD1h1&2N{e1g♯⹃NGiwj5'6(u/mSWu62eY6js,? }~u}!&[koױ)ίwڈd9_ W~ꬽ)MmWm;ص7Ǩkov C9a GqcSU|jS'B2\iZNc9-߼V=unxv Vz)[W (]@]1=Cm0>PW0p mh~wpNXÎ6R0cjYdt]mdZ1ݹP3Ʊ:2\ Uu#l?C1&)2mB+GcA?c7jSW֬7nuU۔٩g6NPeff[bם5c9v3^Z]|h6jC$8 Ǩu,P<䕹PWch#[q d?mЍs;Iipm&5q*!:v^Z~16f3Xh)R\Al]ͬ k bFm }).jێK1ܯӾ~ЌiMp.rgkn3U 66(ڮsm')F-C(¸g!6p|ieArp)ϴ)^=3\f/p664̥dsPN995{a~wkxʿ~oh}aJxQ:ֽ nMa j;ly5?[Gm,#P=Znyb_Og!GhO xmp=Og2T7efq9[S K^/-T`0l:Z-^ZOeh.`m]QXW)6B-Oh|,35]CwJbNI0Qvю:D4ol͋R84dxq#w]>t(m߮2}1tbl0uenC+ˁ o̓NR|\hB۾Wx^°Fm޵G=mFc]AQF⪍+9b>;UW^6b c1&ƺ¾0W?U}zk=m,6`j`2\Ӏy⪕>Eybbi͛^]1|M8_M -ᕙ&BGySkM+mנԵs ^ jm `V cQ0/ˠ2*ǨOVPe^XW$U?F@-N_0f9qլ76j!)V۷(vvO2\?Q-!Mo^`jۍ 8/0uFb Ԋ &c7mjC]:gS=xb¯ejLqC50;NRZgv16je:ԚK5{c,O;ZVˌ}a+ ca (t}牙=Or/hˠejWqժ=;x}bBLRe9b+l_ (@=UtXffa< tH( Oyp iE=GU׺j9L䐮sҲz\s>'w{ep9U?|u><]iKx0]OgjY&ϵ:uߵCMk)c;7CQ޵CՆ0sM,xU葩N,sK3ӱL6w(c\ ]~l(/O2}9pz~sqE,E|1:ST𪾾G;E|x4Gbz2)d2c hr xbf2рjʫ[rʋ[kWeU(w-;%Hܩ5%?e=C{:<΂Wuߞ&U}}cٍʋ:^_Yv#ޮ,jʫ0[rʫֲ[kޏz</}۴g67_?=&x*E!Gu.SAjƫ~rKNyQ7b25.]t&|Oɀ&6wJ;fX0YMw%DKEbT{'@5'SױDWuמ6Ud yGp;{?El~%z"ՔWuXrʫ:U}e1q[rGBSrTʝZ^Bb0qPĨSn)k/<ƹQq5kS (n)+n{S^}{BQ1)wJ}rְS<OqzWrΫWkPHQCp"s֠p-?e=%?a~tڻ6U=6ns ^u:SyO>ϓ)9E=wՔWvߺ q~WnoΫ:e7E=gTW޼g蔜^;o5ֹZa[jO ^z̞ww bWuݪ)pD}9-x-y?Z~ea;mصPΝ[EpְS-;тjʝ %oYcdjŎLT>Z8w՛OymwįqNSS%7mje6ܹ6D N9}ߔ|Syylg)oݔ%ρqNyU5U(l2QR;%Hܩ5ʝs'ZPM#JQt^u%"Pr7PEq^g~|g*E E R9wK8wJ=s`ti18wՔc:%o>܌zpmʋڬ$AMyU30w6\5c;%>9 ULf5O,9Uݭ(v˹bʍg{jUۍ5ʟoCS^X˒$)}Wl ty--6ui[UT3Ts|6a~fvJS%N=Toܹ68&׷ۻMS[:Z=8My}yUuT㺅sG k&Νzs`6i1c;тjʟP}y}bb(cWuS_ȼk3^Wֵ #{Z!wPd'3C9wJjʝC漪9w9UΝús&tC5^/ݬ[Lf]zʛE'Z(?>˻j7̯U ^%u>{%%;jK8wJs NBb8QD )w"Ֆ|fk۰tqL"A ^Hw}$8|yeTs۽NY]vjϷ_vDdڬzwJrli1T+F|t/xUor@5졔;jTʝۙHp0R)wZ bs'ZPQy" k1FΫ=yDo|un[|:9NH҅7ꑫU1-spX2V&ⳤChpIA~}Ϝ?rv?yUes^7t'݇OWIcy3uy0~M/5>^̹SrN9sp-Z&RXrʟCչb)/xsQwyoʫoʫ5p5|s(wj-~ιbs{ss'Z@=\{CSh%7j~suQH5%C:5Yp=_*ƹw6%ϟ%=S0{f)c}Sfl;i6sG> CεC0Ꞇ8s^fΝ }v3ȝOP\˖Rt KڮMa|.!,<_ƬE5GMyUz W^5Eק` "k5Nٙ\p*Bp'ZPY'oypwXh{~~҉ʫSʫouN5NN7bǵ>5E:甜^P(ꮏaQ^~EwrGJSr%;=rpt)ǭ^1D:n :X34ܨͨ}UUݷY5 ܷY5&2}Zba\c?߆ZtB\򧼯]ͨhJY|9/1e>yUwu yUwyQO],sGm]][GYp֬-b;2DTTkdk6_RHMaSjܙ΂Wu?sG ?NaSk0*rFjGx-."ժJNyU6U1l1ʫzhQcR{ Na]n.A|z+˕Ľ^Y0QxeT+o{eE,J,xeQze++7^Y^YʢWWo(xE,J,xeQze++7^Y^YʢWWo(xE,J,xeQze++7^Y^YʢWWo(xE,J,xeQze++7^Y^YʢWWo(xE,J,xeQze++7^Y~UʢWvwmE,J"xeQze++7^Y^YʢWWo(xE,J,xeQze++7^M:QwzU64ܨmD*帏w"r羿ԊFr}CN<ʝx;N|vAN<ȝxى7; wf'N<ă܉x;pr'nvAN<ȝxى7; wf'N<ă܉x;pr'nvAN<ȝxى7; wf'N<ă܉x;pr'nvAN<ȝxى7; wf'N<ă܉x;pr'nvAN<ȝxى7; wf'n8ă܉ݵN<ȝxى 7; wf'N<ă܉x;pr'nvAN<ȝxى7; wf'NϿ:Wq-ӌ:#7tϸ?Ƿzhpة5nl~m3c>r]pǺ'zdLc^l~}cÒ`CT&{kRhEÃ͢\쯳OcԹOv1w\#9.=5#=tWJޯvK~Z .WZ cĕhQ"•H~uX4J,(>mۘHh~\{tm`oz]o /-O+ߕR5m\MVk潅0Zl\>=.TGr|+CZfb6>ٵqk&~WD{un{#{̂{-갗Z+ch~qy|jG>ZlAK̂- >20B]yZv5Zl~CB|[;޿m#]T&~.wO*%7q]7˳rWyOv=+lԺ=k,6L[s8_P(Ovf]/bظy3%&֒Ҷ:'•g]mt?c֟m7^{oUʖkZE4``u^kmmV6>"`uo V6TWj GWZ +тJǖǵ6VE -c&-|:y86>Fyvnmto=6G;-gQk'[Ԛ+l顭%mzl|NJo虤O>f ƕCڸRk6Mр%7k5l\i1c"%$&erL6>٢X&>C?^rtbn4]7}&".1uJoHlx>\̹!O+}dٲ=M|9rzWm,qNɖ`::\aZ[1+-}g&>؉La/Xjm;Gb56^>uu9~ѿM[icSK6@߷jJ]BUvYMl-6{ :&:4diֳq}ȿ ڳMF}피oMJih|㮛>"-sW]G>(?`[`n &ZkXk&۸R>OqL\5&Mр%76 L\c(?Uqz*z .y*kXksao*K}ٸlWj m7^{ot\N^\m\y6c6>l z{;%6iW\X_ħ%\‡8M|Z"z FedQJn/;ƴSkqn 8ƒdHZ3isd}ɮOZrmOZ&γlP5:Mmٲ+g[)y-\0ImL秒w=[kgwyྮ|ICN,B/xYٽ.𩳁+φ&g"MF}피Tu H}pnP&>b>fќJƧyϑS푺%)+n/RrX+ڸRk0۸bL\d #J1Zf"> جg[48vZk"mⓝmH&5KZ_WZqؿM\)9oso5h+.cRm\)9d6eUkmkdU-ڲnYDa&jtR_ 95L|QM|Ūb'[S׹Ƨݪzֱ6ظ†ƕ\bJbJfJ ĕHŒ˹fCfۺf:d6D!5TeU&>$28 hƕCn`Jl&>BoKпm\cWJƕZjJ!ĕhWK8">f-5Kd`;AUQrTj #ĕLdJa{g .-fJ oXrSQ!]GOT|iiֺ[6Y뵛Թ+uDv>j?2`Z2.ǿ(?g崎?Fg5::?gOJ8GblpP[N p l~:*\ =]|Xfr^am9i/_ #w9uX\+c]-'jh9ˋFYJ]1peCMl9]mY2pVo/@|_\Q&<9Fr2.ЏLj9F˩X{Hܠg^,cru|aΕ1 9\>Ys| 2Wk7By_^Jߝaet}C8._@mz\Xs\3H .XCmxpľ6ﻜׄoNNk$> sp#ԡ\c҆W6ܹzX#0rXE%0" hgylИ\.quVSIcÜbÃ+vlxp8̡6ua,faual#bR6cc_J w25 GF&p: 9"wD r@d9"wD r@d5"CY/Ȅȴ2%2%~Eӳ~-YssO?_~>/Ēkw5df @?6`ﶙךw_H6<[E\ v6~;w._pEPPs:\9-ȆƆ cטa}m&|Ƈ2 ue wG6ms+ B]IX79\Qfg!PO- n:.PmJn&KC$&]ۓsiLEb \b7hGoriz_v3mj؄_~/?\1}ɿqH-,1sVx@[$7\>wܴe[nyZe\xTk7By_^Muwb=m~`|Z.[<"IO #޷ݍ/_εZpMxTʄ۟Ϡ2a׆}NO0A6 ߠ&|蕺2ax̆zuއlzwlC^W6|^ن[&|c/He.qM|c56lj} }yxy]pWlG6<٥\ z2tkc=KYKl419ClVO-Gkc[4 2s;fxa"`&<"蠮LxD׫Dmxpل)[ӎճ #9HeY,s >8 Z{ޗ6Z,u*#0bKj^O^J>%݂О_Ap. w㦎6]gև_{ }yS cDi_~l75 4~dÃ~ІգOt}s9]~?a'cu c] cA?2a n-ss]̃XuNbx U\tmCxO]Q c0 9ܕzEavM- cن.VWr]aڰ- ُ$)UZ(W&ܹ{Ӹ&`=[0~@z.ǿ=O?nvs:Ci.||\i9\uh6PyB{O/?ҾގEedYEKn❝]JQVy* '8 TGɎ W؇'VJ^vQ5R+gSsY2dr.gW)y==Uc TyvcOv|9dƕ>g2*V0%f<f}.~vf{cRV\uݗ[l6ԚOv|}>oNǨxڻŌ-&>^8d_[c[D6cKT츿j&>rdUԚv##[-bVr}֚;}Q~}uf:%q彗UGU1TS.b].mލʋ/_,ov*o W鄑 # FFG'T'NN0R0::a:attHu脑  &&G'LT'LNN0Q09:a:artHu脉  &&G'LT'LNN0R0::a:attHu脑 # FEG'脉 # F&G'LT'LNN0Q0::a:attHu脉  &FG'T'NV0R0::lFFO:artDu脉  FFG'T'NN0R0::a:- # FFG'T'NN0Q09:a:artDu脑 # FFG'T'NN0R0::a:attHu脉 # (bK^rlr5llއʵy('5V9 ٜ#W\6%lGH%{+%_ߦFFr4Qu5Qu5u5|V] _ T] u5Pu58jjp@ਫQWUWG] T]u5Ru5:jjtH訫QW#UWFG]T]u5Ru5:jjtHਫQWUWG] T] u5P}48*gGG]T]u5Pu5:jjtH訫V"l|*dXk&>٫c *ڬOGPG0>k6~C5Gvpd8l﫚WJjѤՅg3M:8lIIOett4H5hґjѤ#դIIGT&&M:PM:8t-jѤդIIGT&&M:RM::ttt4H5hҁjѤդIIGT&&M:PM:8ttp4@5hґjѤդ] ԻjxW#Fǻw5:HKT]T] ?B]ݿI]2NQWwSuuw՝T]uu;UWwG]ݩ;NਫQWUWG] T] u5Pu58NਫQWUWG] T] ;NQWwSuuw՝T]uuu5Pu58NQWwG] T] u5Puuw@ਫQWUWG] T] u5Puuw՝T]uu(;UWwG]ݩ?zN˨u5Pu58jjp@QWwSuuw՝T]uu-;UWwG]ݩ;NQWwSu58jjp@ਫT]uu;UWwG]ݩ;NQWwSuuw՝QWUWT] 7Pop:~ o8~u78@ݩww;uwK;դw:s4PM:PMzIM:|դ7Gި&9F5Ѥ7Io&QMzs4jқIoTMzhդwGީ&;N5ѤwI&SMzw4jһITMzh;դwGީ&;N5ѤwI&SMzs4jқIoTMzhդ7Gި&9FUѤ9{w4j^U]&>ټ"eEѶ."Ēd=oCqdo8{O-aڸRrT~Gs FO؝S(vz BS(vB9PlTMzhդ7G5jқ2RMzw4jһITMzhդ7Gި&9F5Ѥ7Io&QMڋjқIoTMzhդ7Gި&;N5ѤwI&SMzs4jқIoTMzhդ7Gި&9F5Ѥ7Io&QMzw4jһIoTFݨww;uwq}wFST]ݩuu;I]*9uO;L]8hV'J5+^M:&:vpuUQnWWᨺ*pU+nT]uu樫UW7G]ݨ9FQW7n\]8znT]uu樫UW7G]ݨ932*p(ljT]8؉RuU7%³\h곹6먫UW7G]ݨ9FQW7nQuusՍnT]uucه*p(CmU%Rm\)9WW> E{uՍnT]uucBGuPO՞ߔߦ*U=Um7^{oR/樫UW7G]ݨ9UeqUCɕơִhi4Z-VE–UWW R5}Tk1W\]hnT]uu樫SWZA]UF&uUuUTuUc8ZMULQL\fuuU59ߍ:~7Q8~7Fݨwsunwc_eePremz+%JoωmM|Q9z=Ӥ7IR}7M}V3~iѤդI7I7GnTn&ݨ&MQM9tts4F5hҍi5i+J>פ"pMZ`0MZcs5i,r44i&(\VB4\pMZ5i#9tts4F5hҍjѤդI7I7GnTn&(LVEf LVA֞M{h2פ]D5i,\Z,פJ9tts4F5hҍj [LТmpvRr0X56~vĚ,Ygw` ; ֪–uJ~sFtLo=+*fW4ic/+–Z{sF(*QU77GoTQ%9J~J~sF(*QSH5qe+KjToߨ%Q%9J~J~sF(*QU77GoLע\9J~cJ–kc>iqPz IC>JAgZ+}='&t4GI#ji4/IWIWGT&]&]MRM:ttu4J5hҕjѤ+դIWI7GnTn&ݨ&MQM9tts4F5hҍjѤ+դI7I7GnTn&ݨ&MQM9ttu4J5hҕjѤ+դIWIWGT&]\MI7I7GnTn&ݨ&MQM9tts4F5hҍjѤդIWIWGT&]&]MQM9tts4F5hҍjѤդI7I7GnT&]&]MRM:ttutJ5hҕ&]M{6פ+դ2RM9tts4F5hҍjѤ+դIWIWGT&]&]MRMڋJ5hҕjѤ+դIWIWGTn&ݨ&MQM9ttu4J5hҕjѤ+դIWIWGT&]&]MRM:tts4F5hҕjҍa#J/qpf}8\+Gqw9֚֊Rwyu啺˫.]^]^_VFF}^%>/뭌Xس.}恮c}C]edS^_]KL 6>7~:tl|a辰8Ql\ca•<_p`ƕ]>i|`Ɏ-uQ4gGO߰l058<ôdXkD0sIxk:ı`x.$b_D%Z$xTlه^bKS kulq0ٸRk0dsm}<~܂6qdc bIa|o&uƱqlq%Z`\q%Z`Lq5mF{FKȮ2֖^" %&~S~b8?牷݃lz{;%_V\K1Dm|=;y6>r~^{#;\fXrc6ƱpqT{Ľ-&>EDOv oc7+b-"{Y#+l,lKZÑƱpTql-|&>|j/['s5F+lTǒ+ı֔jb`7:nMvc-b7kU1Ucb-[dڸްNKf!<ʕ$1) F(סlz{;%_Fť䅯l|]&>-=jjD5TlظƱ 6`SƱŔ87q%RMFn+%Rj6>ؑGOvoZ\3OuNrL]g`W08W6ca8FklCFyoW6>٢adkjH5q,KLkM;撣;$;gVZiZx$7O&|h^6O/jZFPտ~?Un|L|?_TΞ7g ?̲3(k-)}XozvmOvl%ny8<ך߆*%XkvO˕A4(l\hXr/,֚OvL[đDcɕH5q5ưckɛ%`^}` Ti1oh4Zj~jM|wȗ&>5\$,ku~.:ZuHG>Yb6>ٲm>ўk8Na{mC 4gݝÎzgdsIHo;;K֗)a)c'[}4_d<ҙ'v=n:+%^bXkJ8k&ѢE+ %6AREʳt|s*OvF:76XAM|߆zlf^s |Gbc-8ut1\N^sbd{d:7q|o}S݁-P\)<-TƠM|n$X-H`-v{h#Od ']nh4|9G_).'kfwQrۄRr|i-Δu>'{&-fH=ߏC3hI 6#S u ĹD|ot%cԚZh\ƕg˔1i%|{wU,϶}SvmoT~e5rjhPZ8r6>^_*+{g{l16m\)96&-ohQ؍-ky&켌6>g<uDqdcG<7lsĽ|6:2L\a뿞D}8:8L6-MѠ';EdQoc6!ZlKjXk6-MѠ'[Xk&>fJA+UcK T5^-Efɾ\spD%7ySjV|vw\#d\ٞ`[d\YW6>؉l|&}#Z+lX#8lT!%XkhbUIh(a] "uڿ[ىLcM6>c_~N6y&N;'ZkJ/1ɖ#WKLK]G%RMK汬p`"9un-Wk{da];d5l\aƱkeXzyl#׵ qpdr~~GbڞDq\rR&>RenOep|5Z,vy 9 Oן6vOwW_xw?=Bx~C ؖF2;ML` b .g4/Tc_q0j܍ w<>[cx_rhlx[*q|v||מm7^{o]ՠyONڞh|~`[8Om9\&l|/fz-eKk5&x5=햏HZq ƕwL~bJAqŐm7,3cUVk&C\Nu2qź| VoᅠXeNZMmsGH}{?Tek 0WbJMF}Ky~7~\m~3ޟ$^< W=1/Rrh1Wj Zo"0*dW:Ÿf%76Z3ɮϯ3qbJ1RM\5%&k6~q [agkU-&>ٲM|O6>|`6vzh=YVk&~?E6akԒĬٗ=d_[3IfkszL٩oHc_q,9D6>-׏ C۱-fOsR-\y&>2!L|e$B8X3q,k&>?J|E+%v:hʺ%k,oo{ϖ%O|/x{}_?ǒ {IcK_NlO׏gK|CuS}uv>>ǒKo;Iu㳱d_%ڳ-F}KֳD0-?>W祱2OXCil|Ƶc6!q0"۸RkNqŠٸ-6F"2|AamwuM<ŸVoVk4b'GaN֖^Tj5q6qؿMi3h뮃+n['ڸRrPm\ 2/-lzɪ$3QQGU6/l#˕&ĚOX\b-tKL\a\bJq.hjKfJ -%/rrVd֒5Sl'wXgjjO m-#qsnSc+lsWJ+#MAD/ZTGda,Aqzl\)9Wj {+-lWJ^%2k:11llZTZTG9T9rTj "ƕLdJa{bk6D #uX"Kn**7@qUb0:dy Kn'*+%BZ@-||P\:m??Oiߓ_b3Wl~ݚ}cXᅮrO_ lmps߉­&7TƐm;}>x1$Uv{L\)yX߷qz+-mDD Tˉk6%RmnS"3{0{O{ѐ< Wq=Qƕc•ZI WZl;&Y.Ѱ;f~j ۿh+%v8̥a?Q8!BK~48B=K ѕҕj+/cBW^h|Dj5Lgc-V%muW9MV ZMV?VZW}ܸlXrrrی-&[2A}5ه`ySӞ9#[k6>~1$m+ʘj{/M+s %+==Z Y j3+\n{\tDT? _A^ҷ_sg?Ov_sm-G(S8Pų/۶L#<#~^e#6븉v62;m|z1>:tkƧhKo}Qlb7Ǐ>~Mx#vhmJ3kFWw mU6~ZiK,ʌo]uK,_kl Wĕh)u+l(y?RkG%Eܽ(|e1֎t,)W\M\)y)clqs D&-#U)cDa {) uݖjA3f~;娄3Iy]'u[9țF,h\3 v=3D6nupۉ.918'5BkCɎjNtr>uRkVKp*GǒU9"8ZX#cU9"8F FxOb}gib"?Qk`u6>1ַ)Ovyv Gcj {+J{ 6D_jluVrA/Xk$4 WE òYĺA_,ocr}??L_qn\"n9>jg<\*O%s%D_?>W%D՘w5;ym=lU Ē|/J bF o4}Q΅VTKl 8xjq~LsWJJPX%}DXd_mǔ-G{G6E\ővG}E-vc{/}<ǖ3{nb;‘3W$K:VIe@_~c|Jw_X*8*u,UDZTc:JKq,UXcRRqK:X*ԱTR8 u,DZTc8%ԃ,g{ѱMKJ8~ʚkMTWW•Z+p *3ѩԚZ*תPUqVz㵪kUU^x*Z/Z굪MEBVzZ/ZoZʎ*=CVZeʎ*SUvVzkUU^x ZkUת8^BVZ*Cg1{{]Ma V6xl~Ky]R%W"j籄ץC lϽH6D*Ԛ+-f K6TKx ZY.2ue%K,;.L]bqeˎK,SXv\bIJ%X.2u%VK|KPX.B]b~]ǻ'պ/sEIK,QXr\bĒK%X.uE%K,:.H]bqEK,RXt\bĢkj%vyDpظC+.1tK+.1TWཱqཱq Rm\iVphj7t;bMqJ [%ߖ-:HmEo-R[tmۢo["E-:HmEo-R[R[lMߖ-~u[[>9V?[5֨9Fm5om3>F60 2|(RciAke㳽/iP=g^m66_R_c*5vQ_5OEgm&McMq$HIUWJ~i%_}Vw3oEqLeμЙט3{ 3Fgk,%vPg^@_μ)/}3/s+ԙWg^μ8 uǙW38μByqeˎ3/Sg^vy:ԙg^μ8xf-uZxTTn⸥J/-UTn⸥ uK-U[8nBRqKUꖪ[RTuR㖪-UTn긥5WFL%_|W,6[ŻR:B,q`)PKq,:X`)RK8X uR8B,qT`_`RRK@_ɬ,`K8X2ud%;L,q$`I%QKr,:X`IK8Xx&Up$$ծ(^mW_5ּӋ!U 9L]qd*H QWAr\ *HUWA u$U 9D]q$*H QWAr\ *HUU qE3ud*HGh_*H*hUPWA`>q *uTUP:J]qT*hQWAs\ *hUWA u4UPŎ'/砬Ux ;6#7mNo;t9;/mtѝFwzk\Nn73g7ӝfӛLwzӛNovvz3MNo;Mt79;&g7ѝ&ӛ^I 8qMx㳕h1q* .&$DI/_=%9$zKrI/9%_sK*OmJ*XK_u4$ѐ!9D q4dhȎ!SGCv :җ:u4dYhD ?B !QGCu ~{PGC8*u4TP:J q44hhQGCs :hhGC>y rVĕhgd˳e{l\aI&=Sg*={:gTzLsΞi=39{ѳgsLg4FϞYPWJjJA/iԹNΝ8w*uTǹSs:ΝJ;qTܩsRNu;:wܩԹSNΝ8wu/u4iԹӨsL1ΝI˜;!)ԹSNΝ8w uǹSs8ΝB;qdɎs'SNv;:wԹNΝ8wx"[Eƚ #ѹgc8ގso,OQι7{so2=&;dzMvνܛ{79&sosMdܛ,P]z{cJ/qνԡZ8 ueǡC-;LjqePˎC-SZvj:ԲPԡZ82ueǡC-;LjqeP_Pԡ: u>PPԡVZ`PZqj:ԊP+ԡVZ8 uUǡVC:JjqUPCRZuj:jH,気{݊<j6Ѣ<'[wٸ†\ =s8gzNq)̝ꜹS;9s3wsNgT̝JܩΙ;-6"ƕZ^R:NBqbĬR'fR'fNJ:1KʾN1Nϝ]Ήqb&L3Q'fr:1Lԉ'fN81#ubFlj3:NHqbFČ3R'ftDW"&D*:MNV6g=+%q%ShJ@ٸA~=puqq츝w;;NFqy7^P&"ƕZmJaq78nQqsǍ:8nqq8u7qܨ9Fq78>AǗ:8>V?|R2q>8+uWq\:JqW8RqqDž:8.q\q8 uq\8c9+}wvAwW#u"O1Ryk輵- vlwc6т-fi]w.8 u^8Bqg~Q2aEHqְbC8Lqg/Pg}Rg}B:swևOig}8#uGY>:HqG>Pg}p:Yg}8uY#}mA5y,FVy_ 5PjpW_ԿjW#/_ܡJ@WwQP ղQW6:pԿz8ՃWυ|Ml_% #qh 2/( kʳWۉ؂J2;A]b;Kp\buK.q%v8.%v0k#6X٘Kl%@_.\bzok%X.u5%֨K9.F]bqUKRXu\bĪ%VX.x";WT0䭮6‹Q:^Fb4ŨR/Fuz1ŨԋQ/F^x1*bTNjQ:^JbTŨR/Fuz1ŨԋQԋQrEb4ŨNjQŋ#9^T?Db$H#Q/Frz1Hԋ/F^x12bdNj#;^LbdCw6%R^Vg+{t3;;xfg3xf㙿t3Lw<3L?|sT^o8a+[9͵VW/z}tl-жs6Z/{;m.lxl#elyg{±V&>U k%M|n|5E-Oe3Uʃm}9Dc#[i1ǒW7ޱ=uRMۆQtʶ ?Bn<3/ k|?uчʖ|/Awv_<~Gd]/jl^pOE8W++$WY3q;|/gJ𭞉+-f⃝kyjUMJn7;O(+gEưOxv8k%`mW7)@Z,+h<ZhkρmD>5DZNogگ]Q][vj~buw6Ek l>g~rqyq彿T=VRU&q{oHqFco s`WRsJ*PooDwJU•gg 6B?}+ ǒf7>!gvt髌E+ɾ8]ThJM\vvp+Mk?ڧ\+,i.^X?l}cjApl-r%z_!o?<[{{ O6q׵=[Ovj)_gKG\ac&%G#cƱjh-J/1ˁtfe^5=dyn/e ОPbi?hqbZq4EjpK5Oݢooij`+l&%mXkؿm[L[8FKy[G_ămჽjlWaׅ-c &>>'!R<y9㾤Wڻl[_Co sh\)yq^ Z:j]jdk}sh)Wĕgc8jl z{}ЖE=mE|[}ĸ6TM|sѵ\vt{Gi(6>DĒZ[`DYLg\y f"WgAL6OT#2mwXj]gvjj}ӹHqϤyR\)y<5bRk¶qŠdosUm|Z~~PpY͈s a/+lX+ڸRrM\5Xyظb{?yz|T+Jvk58Oc̘ m|Lm⃝+Rm<WlP&<"5H N{}qm(WXrD^4}{kAg_ɖ3: ,y| ZڸN˳E>2Dv뒵l|رl|s{W[;ظ†ƕjJjJA/q%Zm7D,̿h(-SV=6~^,߽Ƽ1=k'[&9DjZpYkiY '[1m|?=ϯThW0:ظRrl\5m|C_m|Ae®{ӿm~X;WV67d6!qпm\5&~]`gs]3ONs%6~?!HCm|NuDuQĕCٸRk-6~'#}L3~e’6~?9c6!Zl\)9F+ĕ =%9 aecXh5Z$݄rya*sϻޒRdOv{=S[1m-UY6̂6hp {;8<֐Ou(i^hxX?_~/?a} OzǫcյltvyOf`[-b/#$_Ir8=@cϖh T\&qxvl6okL]=g_}Ҟm7^{o=ɿ0hTzݜ?FbZD&l|*$k/˅6q0(fmԚ+l6_(?4q֠ڸb6FIZ3q Gl\i},x^흟/ .Bk&~S~g >o*޲Vg}mWbJMF}K>>O{=r:]&>7>ZdvO06j/Rk0:l3dM|x=|{D8z _j]pDǖA/q`&qŐmJ`ɗ|%5^{jM|SkZ;u cOv}~EF+lL\)9̂6&&D M1jKU}(YMZ^XJ`/3M|K|'[ޡfKl\aC/qKl\55WZ <5 6P lb |UB6F'"F϶}7/yZ2ICKe]G}xo1h>ekKd-|73'9ZOZOrDh=j={øf-PSm\axnJa.q`KTgJΔΔ)Q)9:Zhh1&>鲉=oNɫ֒ $f5MgK|moY23/YPLKcmOuמm7^{orDjRg`'Mo-jnc6>b OȘ`6q +%ƕZ1ƕ>fJ oP1fAAJOKSk5#_悧^K=ĕ#ĕc6ɖB۸G m\)9(6(6M\%ZY-K(DzJ|LDv65%cZl%6a.q0ظRk8b0ٸ-6qTrYr6(jR"j&>Vn`ܿgʘj ƕCn`JlDflOm5qKl\56M\,yd"7c&>ئΦλQ*UH5q0ٸRk&ƚ+тla$bME(ULO{unwl|CP-||P-uhş-y~7:"K.Wl3V e-_ݢ8=v@[% \ :"r5a-RN>pP 0>\aX X8WoJy}[]6:(%0o̚8_t&&ݢ8SMpY Ay45msu[y:]\Fr&AL`Sc4>pMxp/B+e6νvԕ 4kL&e4a+ &|ctrY\&kxpѨƆ wnmĤ wn\pMxp/כ*e6{nLs9md]cxѢx!˝k]- p*}Wr/Z/tޯ/R&ܹrѳRf2\ ˕'ߛݹeF`,r:;7]I>hX!ցNv\Z䕏g+g,Z^O.//Z^F|y2edȗ-/#_^F|y2edȗ-/#_^F|y2edȗ-/#_^F|y2Oڎ#W)q>HI6? ?Lۘv@B.8˨1G"fĊx7`v/7BK!2222222222222222222222222&KZ{.\h'ֺ߻jcБ9r6C*e*+PLYL#g+u%gjlt®oZL_ӏ8UDZەmNhwj^Ӓ4> WmW <-nH?H`ljOjzczc(.LNkL&۝j7u>mf{9ڮ/ {)ZWv/.Qv^Wn?Hq}cl_wݾ4hnbrc]Wjֺڭ죆q6oj2@K'A)Z8~r\89F O`l0&96v5ZWk/a0F_ڭ+s bKh)A)Zt>(Zt>(F-f+v_Ql0m5W4OG9~Ϟxo _.؎=g&5 c79 39I~YMܧڎnNWQ pMWiMFu5}_)[{&Bv_̖rZ}|ͶSP6KkvOD௺ R ч%oOs @)&K>;ekwnA2ZS뀘T){ nS{E1hUw;gSPfZ>F Q& d˷|* +c4}RZ_*_lѪ|~@i}>JA#RheBM)_M(H%>XZFk2z)m~敌V 2ZU]eW(\YU&v]JF~VeB1J1R 3}"!FW}2ZiXڃ0n}_ߩZw;Z"+v^&65z߻Dtss=͢@)\ӻ֢~-k2SO#Of] ƓKYOhhd*c&F0W(~ UyfϗS'P JP C~F  d˷{2>,JZ6$RfCVe?֨$"902\8(ւQhVe~8RP&Z'P =¨Qx6Ob;"8U A$0z)%UCVy rkFaT| Q J6ców3Ҫ$SIc^e߮oW2Z{@%6FAߤ3ޞG?\{]gX7 :?j {?s{!=>^u`)͈NQۧGv|JO>Voc\8C9Hz#^cR(6?k|~pFj>~Ry9ļO22pȝKf^]f^cKkppAڬ19- /C5吁D-+AYY.ݑ@qly0(y0Z(ZBȾukv}ύb5ÖSD˺6Or;u?O_圣-)/m[OfyVpﯧxUw[jʫ$X𪮻>s9:珹VVro3y@sOj -O9{-yHp#1ZཙM붨uO:bi6}q^Qs^uCnjʛhrʫz79;Gcqqڬ6D AQ}j\)U^sh>?{x/IWޤK~o-MޅZlpM|̵KY+KXtQ<+/NU,mdPTdRT,YTKEV,ARKePTd6Xd6Xd6Xd6Xd6Xd6XґjPfYT 1AپrX ԔcRkc^ "@]V֊3چ#38RS5Q)JL&kA&kA&kʠ֪Z2*֪ j~h&ktV~ZZ冀d:Z7zFZZUZZUZZUZZUZmZMZmZMZmZMZmZMZmZMZm"WϔA m~q}5j8b j8os] *8"zk~PMyS.2h9ABq*8Z -w5WlUb۠JlUbJlUbJlUbJlUbJlUbJlUbJlUbJlUbJlUb۠JlUbd&6Y%o/ݺV%e2[d2[d2[d2[d2[dXTeY%UbYVAXUbyP%eXTeY%Ub:RǚHUug8PMyP%RUbP{yP%y΃C AAr65f2'TX-^3mYַA}"ۖA}"-6U]L˰(t.RS~rP-) `S,Q`S,xu[g Aܠi[0 ܠi4JpܲmY_~Բ~e},\e},\֏~e,\֏~e} }t}8baǴs71o"qe@].\$?"q|iH-Wġ PhP(?֞}l8>O.}o)S$7t^3$7t7l8/@Q0\@8bSogc)ǛBcyGcxGj(yA #gҭ[r-{n@`L&/oㇼR1ouWo;vXS~>53#C-APBy0bkWzeQ25.Q),&j8 X};].Y)Pު_~h1CsYyqFbku`&-϶½mvjQݹǽ/vWݲG^8p-Ƿ?WTp^f?sH\Mgo׹-tyv|Ͷ9)*x@} eڪ_^O˽A+$_s޻[ep?Q>}ްMZ_~Z]n;cveZ^?9>Yb5|U˔O>ڣQ}M}5אST)Z^z=5~K9{ GGcZ98?2oeymmwpv{v鈮=7hn%̒DroXY)oe%ߜ7ug@,GdVSh~Sq~S-9oqJ+-E0KڇWq$9j9|x?yl}_mw_am-8h>եsa?4wK9W/~O_,wl{} |Q^9C5M]]RfZR3gwJ Oz& *)%7IZ5n@υZcuǃcA-Wpmǽ`Ė%}5G-ZR?k|G U=vQOz/jʛzZ׫J~y,Xc/Kn5z+/GxLv9K]J5w^x0b7-ZܒPMy0K[Pp=lG6MFK1^.ʱ[grʛڌP5Yy3缽1jʛzw[z}NyrTSۛJv\R:P>uJq;d=#jʣYsٮ~ĮW[4b7-15܁w*rZ'7]/h9[^߯*Xu+cpq^xuT.]ok7UTs U]rjn|.̃`ɂ@ O5-ykf!gV h^-n>&ϏGOzH|d9wp/2fy軔,RSފIl^]D55o΃_)z f(FrkG<k#ZѼj,VBՊ*]woCS~.=7MCojo+dzf΃kcP^]ݺ#38b麻?#7sΫz?RS^uX㼩@}=M8Z^{z Vۈ)wz]6T6kauOTΡ?䬞KyŖs x"HMyU~wZ^2>yHyrX9z Vd΃ Ԍт-/Kږ??7Gc@Tb1\ySzV}EK^rh$s5"DK8oà^91\jq|,e#[8{tmkO6>-?l>3ֹT3~ؖ?; 3rass66>-1k~ wz8 x788j1Λ>͕~`MRBe[ʵMc+>Tc O\Q>osF=_Gkⴸ>2yR`{w]Ϋ?@.RSQ)og/,-sa8p -8Gl9hYg-;FbgIr0W8~]L874h9=MzwS޼G+)ojkgG٢MB9k 9}q䮽գw -frRDܶ [=w\A˷XT\5܂wcV/Eݿh۠׊ٽ߫-^}DgSk7/5ʃߍv1=>~-? FySkDf!~10ŜJD y]x㼩X=mw"uqǝ -,s Zv-fD0Tu ZNyUBAQ!Q1Z(ǖJ9Z0K(zOaZq7O2q67yES0R9o~#RS -mFyU/vA8h1w@mskukCP2g:ϡ|=3.oΛ? ΃ousG= ;;a?(m/xv wGYyfOO>a>aYyfOO>a>aY'\O |E'\O |E'\O |E''\>"}e.'\>"}e.'\>"}< ''0K0|,}< 'POHpYyf.p>2 .p>aYyf.p>2 .p>aYyfOO>''#G'\O |E'\O>a>aYyfOO>a>(Z ''0K0|,}< OHp OH0|,}< ''0K0|,}< ''0Kp OOj爹cٜ%75]/ 弪s(Oǧ9ƌsl9>q^:A8C)ZffjHwujsjUIi&鮦jjIi&鮦jjIyf恻jjYyf恻jjYyf恻jjYi&鮦jjIi&鮦?V灻jjIyf恻jjnn֛ՁpaQ޼پb ,Mm(o_'}X8c N?< 2\8oݻi,rWP ^T{ʳerՅ-'ޣrW-Ijy/恣-wIOz>wIj뾊;F ~H͹߻#j9~(8/Xt{w`ٖr ֌˽;0 ö.}M_[9][;t7+pPxf zߥ]:ߥ]:ߥ?]:ߥ]:ߥ]8aRN~0K x'N>pw'N>pw'N>pw'N>pw"3fs'N~.ꤣ;v wIOz>wIOz>wIOz>wIOztxEzeII']'].=}Iғ.=}Iғ.=}Iғ.=2.ғ.OHO |"=2VtxңkkOHO\FIOz>wIOztxEzeII']']ttxEzңh)ғ.OHO <"=2.ғ.=}Iғ.=2.ғ.OHO <"=2.ғ.OHO <"=}Iғt.1ǣY¹.~1xW-kwY]eu9抖AuyeP]^duyTY]^~huyN~^tw_ɟΛٻ}_O_M_7c#z-L?:+yU)oweWn 7y˫:Wo 7 =n G겼z8Vy=zXw<5x y0b`q^yyEy|c-q9,)V*]sƔcͷX9G α+ܖ8^[9 c[))Y-H+A̋c7C~pW%6گ--u`M弩=k9UY\-jQb)PS~cTʱq~sk Ay-r99?:XBufW,m"O|kSs{rq1/u*Ts} 弪?ySzsl91αpp#w`1Zz>_E}^qF UXhQf-qP&1Z(j@ Oc1o{ W&qpU5^̳^^g1ʛ?l 5F*`PPqĂՁ\:5G1ɓ5KkOrMc#K9~7=Y869#k&<MCAݪZ錋v)=xs6OkW5TΛZ?pw[@0k G,s1ZH!Y l3lkK=jTΫ:H弩qgjމ8oj.yU/vMw`59ǖc9arŚza#q?M3lΛ11ʛz^^-5F*`PY=-a_jnWSZu2G>h/%_^֯ӯV_U?}S8-YB9ZF9FK -OQDt|sKՁֵ)f49ws漩GjVlw V%\RN.~=G^σMyS>w>nWwPYզ׉l뾔0E׋5bٍKUbiVPΛzNhi w- ?5ƟvwDrʣ>{^GxmΛzNA,7LK*7-]{?oΛz0hw&Р,рς>ӔzZkw8\\]݃xCٽWyhF'ҝx)oR99o{=MmV9ԐsTαׂՁr`~Swz][kv:7ɫWf>rk} WdQ<׾'n UMWܧZ|Y?{󶣎%5q}w=Xql9c9XNjzxۉ̓yYv!r*TcojYrE")o{謇^^MmW=?8-c1R9^G,PShZNyS5{HۊX345vyf3q}˃>KjEDrO;;Zyd#s&ۦ;^jƛds9Eg{7vEz=jȑ9ǖoӵ+Q5–{ *r#OsE>Ihؒ9@$nɯz\9ا5l9Mm O클ugj osvD,Ἡ7yH[k*m&AS-G."OGjwmMm~ۏ:Uƚ!9^)o{7uk,@rly0K(o+Oc<\Us>D󦶙oΛڮ>w༩MNrαk\wk 8b8C}sH;pHHf0pe⼪a6uf\C9oj49>q BuǃÈqX9orwgl9w;7^˽[B8bjʃcRʃu󇜿T~LD Mmg\8oj;p^ջ88b`rvFs PM] 5a)opܟށ&TS{–S$8{U/^.{Grq_--GukU>D mpvz򦶑FySHXAQ-b0Z(ZK %y om[w)=hG*P%][ Khxm=Ե2ٟYWJ!hpźs09k漩$6>uWHE<&o!Ԕ7ɿaq>O~qcjx' ]گzM> MNAk,JyrTS7gW:pfGH΃yk65wv#jʣYmVx'dֳ Qm6m3M5ʛx/5K(ZݯcX8ݜDhf56Բi+Mnd7q%<+ Ք7D7UsGjs΃óAy1dj\Mc 7g=-YByk8C)F Ք-/%6K6>11Ϋq֮EE8E:Ů0C9-;AxSA:.QyŌHQX8ojs–Sx}>w[f qsy0kVUϘ#UOaOZ 0Ov>PU?_{;v#yOy% ԖԛSwۿTST+-P_ǕޥxՎnmؼ"ox?T!x{7ǖ)lnߝ:;jU\8C#Fyh6]w:^kz-Yb'9u5%%75]/qG)yc.Yrʛ/^yos#q2j)|q ^ե)-h|5/Iשv.#uϞ/WW _M2_M|5|5 $4WW _M2_M|5|5 $4WW _M2_M|5|5 $4WW _M2_M|5|5 $4WW _M2_M|5|5 $4WW _M2_M|5|5 $4WW _M2_M|5|5P&.|i@zG^.B΃Nq̼̭Tf^If^Wɼ_8 /_~%y%_O_>Mz/6/_=ϐ6vWk>|YۭD/<7)~ Ԍ7ݔa)j[Zw#͋_jƛڔ -nW#OH~3AFlsO DKDKfKgv`) ;n`s.oʛڎ'8(z 7\[(SܧEjΟiyQ9oizQqB#F@ yrT΃^Yy0bp(^x[aY&i ^Ջ) 3/ qNyUg3QMySZrk~]ۮ; "w,M7P5-ǕpU<1\)Ք[--X>uspmʛ)nʫ><@MySoݛ7ѹ9~E־K܉8~pf(Ay0bZL._1ʫzM^j+JyS]r0C)0C)Z3pQs5OfqRXJyJy z jƃhQū;Gp9 Mmk3s[|+9jǛVƆyUg> S^Ջyzy>P5yS| 8ojޟ6d5A˕#~W0bۻ;)o-8~7-7}-p~S-тjʃ -/WV?֖zůLy6߆H_]M,xk]yS$xW,s}cQ赹޿ױ-x9W&/!ǩ!G%kwh_a?(o{[/u̽}ҿן>~S7xw4۾gMr}ǣy7}}Y9ovǾEqNCojo+"xpm΃^kss{]kH>}yBRb5U 9Mmk5ʛ?׏k˒;H@A@-H<5ʃ ZPM#ZlԖ {ҽGZU5Λ;5ݔq>wzT5΃ <5X8F V&΃hA5AnՃkS^.5Mmrۗ67Y.c-9{߫\܊ j rʛdkGjrd?Xmsʛ:Msw}w;Z(g ΃kcyجxmw}w/1zcK˗ 7GzؑT͞pq~\c M}%J ow::_ujM+O~Vy7k- ?:輗gg3"?}M9]nNKs+Z8nV[{i)FNr1A{z^\+5nZko2v ]ǏkFز=4Nj愰-Bޠ_}O|lӹF0+_\s,DT o/mNQN +ʝ )0Ѭ.AnAKqvg$m'}EqvgRcD1j!6(6CLR}s⇚M sBw:UkОK*pvgAOj bK۟h)4ӠWmwFkW_.*~(FƳ=xVW? ~L9az變se?Uw;{EZ/mY;Imj73Z;~yjFK6Uw×v߻bߘH/$c> m;,_L/^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^d ^krOŕKDZ{㽑_v}ovBq92iRRL?<3z.ӟN?o׮~ӟ~/͗?rO/gKr}?}?*/VWmfe:]!Df/m fWm!9ޚejOhvcVc_M:1r QtlW&芎ImmuƤ:۠sq՚t \&pm*03Wn"0n /m6AZ⪽^_fUm Ũؠ 1I1q=㇚M V[:0/l3U?#Q׺m6S\!R\v}\QZg0(ƾK []wrGc9P{+[ F~8F >&9ƾsc#npPi8`|-t[ \sgon}/m iWmw }8Fn}q฾}0Z d8oLb=;̸}jF+>1+qc Ю*,Zٟ(HE׷ZqۋWmwOAWiœ㪵 9F-f_`|)~ ȍP>#fV#QcclI\W?mO$=KC哇@_Q\݁Q\oDŨ sb+| >h)~@Ar:vW9㪕)W|N>G \sQsʡ vWquV>phs 8F93]ll+_Z-ug&_6v ƈKqڣ~@{n }8Fk|h̏><p]Ӛqs<7wUu{ntO|Wz̗lvvg}foocA:6xsnC%ccdx]}6C?(cZtQ ?Qk6M3hQ~}Z/jUkb1ma/0Aq@KLqF@kҾ}zo Q08~vq;65g}~Kp*1.>{uw>o!A?S\ _ȝ )ZjT9hPc_AlPcX16@Kηj-<3f{]5f|9~}x~/ů2_Gclp\4cc1Aȯ9clbIls9-f_Zy-Ukogߏ86_}LR\oDz<@xGWmw49c}~1_91yD1h)~@6>6#;(1.{PWa}>jnJO G9A͠/U6yǨu mWcq@Kq0\~u|Îr\b׷-ůovůP/w_}cf_ q`ccL6msi1ZwLYu'hgX7aYM :'^uR`Ժxv+pcAK[÷X8n hm"0Wn cZ3mgPy__Nn}/(_Vgv֬W0)F-$fwO bb#WclVx> &~s\S/P=y-ůoI c?!s2?;e~?/$S"=t4;)v'ůtJQ םSQ۝\wNֺ;wȯc}wiup;~}II8;hAؑVgwwǀ!gNѝ2a3$j+W0M>33o;s Zw¤fwWBqf=Fn Z}^f;33+}a4F cal3$W8~ vGy4Н0)pӚ'[ ܴs>`js>djs>#-M>3j3M>3+0 è&]l v'}B_Y~1\izi펑 Wmw|f}$i穮yQR5y;F>c9/+O/xzi,tW?dݽJ/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/N/J/m%=q+"v}#p(PJʊ4T)SQ)ӯrȼC>e~)29cLGwj7X/pvǺ~b%9 Wmw\7iߟy78-6Cƾr c6 c(>+:&;L2QĤnft.9n~7m8nQ6Ic+IUC-M}M"#Q0ca+ { 5AZ{_p 7lqm}h 7Hh|nZ3W al3#p2Aug]}DyYp}.&a(F-fI`.Pc5A _7o/pvGg~z}<7js?AQpӾ0lʏA8F E 7(&ߋs}AQsal39 c_Z0 cla qe 7H Wmw:geiߧDmfiGӬ~sGQ aHHp{C$Ǘ}P7 ca|)ƾ ?` 7ŨGm|}x qe!Z@pޘx2782/0j!(6}b++qM1jWWb_O7hnQz#}i}nn~mia9!MkFRZ 8 c_2A_3Z@37 7m0Fbbl3$W0(1⇚v~uOTQp|rQbn8W 7hnM 0j1&6\` 8F0OG-:l!S]ծJ?Rܴ9⦕)r$E<,E>,yjwW|Nis Ł?Pc)kw7:$UWܽZS3Mk/ZRmv\ }cpep-)Z?(6 >8FV9v3_#vwS;4 7(h2ha2m90#}4z%ods@ salsc_x]/s M?x%~Ч~lX a=klI/M>F>_687 W?;*ޕSܴ})nZޙ5.\[mAlnΠe$O1^7(nZ cߠ /8Fn0ZqBKwb;v_sl\? 1I1jֺmhxN#}R^SZlsw8\w ߌ 7Ġ((F-$f c_ ?` Wmw|W ZAQcG{w%ƕWy펑pӾO^Wmw|f_Qs_kG+m&j>pn~_ڣ;F>h3M>)>gQ |t':y,榁ZVu_8M}N1j62}quj~cߨ~m;y( }pKK#,f%jbmfie{2ۼLv߻LI>v}V7c9ߋڵ/ؘ\&99nQ?3ܴfQq Ǩyc1'9~ =F>&MˆZXl3U[žbiLjabl0mƘd 8Fޓ&7_rs{P8F86{c+\Ea&5I_l389c0j166cL2}s>qmKZ/J:/rO?9 ےZ/]w?_o&cH]8mN7l_ඇDq;h4OumVx]w0mOGNp]}6w `?ϫ?C#0jӔڈuMO&xnh,Mècl;B`+  >@9EW Z{p8F !]7|[>)nͿOAf73ܡ(u!6(ƾRP?SWysy| oߧVEZ;+g,W 7ȣ%0jQc1&ƾ`X16PڜL~ߛ~򾢸icN[;]s 6(nU1I1ja.Pm9H1}q`͡c CLm󨭺fuZ5Ph3wsc(ŨfG5.emfi$@sQq Mi8 b}^AzO:cͷBx?O^b^6[76skIEb.xoCO^;yb~|/˰y聖ThQ|1PaM>=7(F-9c! vqp1ZteVva!܏(n1u ns˾@Ks_3ټV}eRONیZ0)n~yŨ^I(6CA1;\`#2_-6pcd Sԏ_/V`.2|s'#W ߑ}⪽^>  c@1 z0jƘ61j]z;bcϰz]󪞝Wt>)} $Ũx y;WRcQmK/Ł*cq.0}sb#*>ygikS6 Z*`U^W̾ èŘd 0&1c3A1,@ȑ6QXs%/^Z~a[u?h 4~&t^|,יF|nh>̭̩?_ߩ}`?y;8s6]pצ98cUKs\sVyqӖpu`s1yi nk}^ZQ1? cMMǤך`63IϗNg Wmѿkbp5}pW8ƾ:ܶ81aR)16@vu櫜nnn X(H>Sw&9gN2F^UFGU_`R :&&? gQiɱQ??e:5(~\״:ww]}66NIfQeWm@sm37?qߡ7mbw7{@Tox m*ɱe2ܴ]BIM{8jϜ> &N"86IW1#;c|3}Nl0\8 7T}Mw$M;vqvlON"8{d'/clDy5%jr63ܴ]#6^l0ZI8ƾ10# ?M|4˽LBqe঵fR`Gq7N(k&z'.<&YL\(~bi{ϻ.>{'mu͇#q|icX GKq3!47mߑ7mWWm - c@K1){L1FԱ!c<مuF/&Mbr#շW8iCvxNw(Ǩnv1<({1n~Աm\A7I_fV́9n~=biCvbabL2mƱ0V&> }(R(ꑄxTԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮR.J(ԮC.J(亲(ԮR*(ԮR*J(ԮR*J(ԮR*J(ԮR*J(ԮR*J(cyBBhWqnZkyCL2 ɴ 9Ƙ*!UΫJw !޾oJ7o:!TBxS M%ěN7o:!TBxS M%ěN7o:!TBxS M%ěN7o:!TBxS M%ěN7o:!TBxS M%ěN7o:!TBxS M%ěN7o:!TBxS M%ěN7o:!TBxS M%ěN7o:!TBxS M%ěN7n:!TBxr]o*!tBc M'ěJ7o*!tBx M'ěJ7o*!tBx M'ěJ7DmnڪfJ dw ki3ww3fG WmVs3W7UAtbajhMg`(8q0$0 ca:xmv> ă`GQxVpi M,,  CO6 -YR4T -) =}u -|dP;.v?_~_Kz\'&|uZϘia0 ĺ\'߿|#.6|禽|eztF^M7%&;.7uTImjzBv2Z㜧hQkڜiEl;[:Z[A  7u$KKp7~i Futr͛0:*&c_뼬3*W{q0ƆcL6p[<b@n Nu4v=-?dgw𳰕fŸ;ZQO[63ɫN>R=̹Gz3SHkjah|<{qRtg9ߋ.{Zk*U@nuu}݉-1&7{4B:֦Q{=sj8gG;@ v3Dbnf :G3z紙aMa>'Թ.Mtè ^w-G^qղSyYM;èu0)ƾgxPn>]K;}Ű̔7Co(&-~iij!]g^AZVU(: 0ܜfvQZ c_j~63ܴƾbqD1#G>L\ jf PPܴ}Zfv9n-i+v`%| ,Kqs6C1S-W v s~ O79Wmej$p}pUGbbl3$W8ƛ j38 /`>~W`BNG1r:`A1ޣoR76W {D1j!6(6cL2}c gsIq-=B]wW ~^NJ~D_W ~N'v??>?tFO&Rgyj |ZWS< =fVk|j7nRZnɻn.>{ue.37 |n>b Q*=8^ ?%jZR3{Z}+Wa_1Zcpa+ =B-fov)r誓~ ml匱p,G_-披Z47m6S4߻Z63ܴ}a_1l@׋n;$Zvkp%/Sx0j}4>82'`&\A{lϫXsZ ~tpݫ^,D6|b+x>SeAm׻Y!S(n9y޲BKp:T_棖]Pq,k\r f cq2ܴ YǨ÷c!w{Iz}eޡM-X0GwJVsukܸbj/ s2ܴd@q]s4(F-(6{b+|n0WclaIlj`9ː[X bleYLm?uoQ L1c_3vy,jnھX80~)vvB1W0){Z160L<} eju`QEٗYcabL2mw WxWQsoeAmf%@#F1B7P̳mie?S|[j hm@c? UάjMh/ Z]onS_[Nm v^RϾv8ԛQwÍQõtqfυ [ݐ=Pm6Q߽m{I[7u5n nVh6aߘ:?M_6ےfߎ嶎}q>x_`鸿">v5[ fzyU9˝yEيWpGmwiMpQ;w,NyBh@5MNMWu8nk7~15F N1R)wz G 9~-Xgn&xSl&xSZ~P^{?bq#.US8w[NyS{(c|QC1M<.Tϯkz (v=eVnΛZc)㼪~m9M}ϫwKxS154 ;-[ ^qե;-7#IW>O͌eK_>_M_&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_Mj4&9_ulX1fg^ =o|siEmswdp$9Jrn5r+13|eO~snG}_?oǿ뗴_o׏Iۗn\蓾Z.p/jmj[rʫ=ZQY:7ړVY=HV3oµe3FpOmvRiwBp׶_%:1ONhm O"ժQ-#1oH>GsΛzvz%Cs rsΝ^;bwXHĖSク^߻wrGBrTʝ^QBsMCߧڼK>Nn)okvQSq5s~)o F8i91ʝ^M>[()M=5O/ǽOrΛk?](}QCp"s`p1xplWwGl]e vyU/.ק"O5M}E5Mu5c=.ckO\PSKW;r"rw(g#rGOʝ㓉rHsL-nnG=R^{}ε)oOwS^ݙ$޺!7Uw|v[wԔ5/}9oԭ೅]g;jsΝ55Ν;j rʛzVg^S;#ܭX3 p?QMyS*E"Λ:uݏVpG ƹrxr?Nz6R쵕NMޏߜպiDn)oҭ9j{o6༩ng783M5F N~SoxGfwqkszp(;ƹhi9D*N(ܹc0_!yUxc'CS=FyS pmmCP1R)wZrpR1x:rjՔ?0ʉ2"cms:'⼩uNĹN˱wΉYw0wEڡs"ΛZD{jq1sa2RBk6Rj ^զg\gs&,r{BN'v˒ŞO cɾf܎P^O;œF\UO:$aQ^d|or|[PʛzSi9Pʝ^1FySkOxG(%{j;-wqpQ1G͸-C%G[h+;׶Azk3s[<'\3|jJYoΛzi{9,רoi9U ;o5a[j]70Z ^cQC$:jƫzf5NEE.1Z>AMyk8sΝm-7عޡ;-^MsB-y|$+ɔLc5!R9wDmcea>%7jo͹ƖwI x\S9U}mUS%^q^ݱ^q!R9wZs`r1TShS^S5= 1ԝX)?/5ʫ;ٽ6M>W3^i-XMƧD}ƪW1M=+5zV 7_׍1>QC2iPxUO%|}t#{p^i6QcS7NA-yn)`4`)kmFoΝ;o3p~H1RGnuw FyUaM=>PxUb 7nKaW3_=sG OΫz2O]o=<@C^چڍ-߬}IQ;׶ v3xO^]ݓwG;}RQsM=D=GpG;ܹvISSS^k7k;jߜ;-^Pʝ;j rW^Q͑u;wվ~'}k?m}7)C-7=0Hp-;!~E=Wϓ>}q>US^nSb~/tPsl%rTʝ^hܹcD܉TSH|ͨGz͵z{Wk7d/wS~܋HQ(i9PΝ^'NrTugrԃkS^f& jʛz|C)o_s;Q{s8V5{O&5l9M=̠(v˹s`_դY`8Xmsʛ}Pmw}w떗ElA/ ޱؽ}.Gn"\{}~|0J ߬}Woܹ6TL8o_O{6>uˏKEkǻߔjʟ_{c㼩y[8w0gi98wz ;w NF"Th1c7LîxVZWhpԌ??g#|Qr-~ grՔ;-ySnY犜;kj83s0o5{HC5([)9_q?nP~aj߳5ﴻ\ϾK8B{p]¹rxp>[(w>(wՔ;j[^ |eP3g*;v}+3hא2{} 9Fso)/LQ8i wz>~ϑQM{]>`,-6(5;BwUF_9?G똻{`t'q!]kySC9qA'&y|{X{>j^jƛ?"/KfQɜ;-8wz  (09>ȣM4lhl M"ժQ-#6G-MyS{Nι#p9wZcr0&;w,oX܉Pq|k46-?CoTyι&je^SY} f|ppڦב޵=iqlIal6t6; c9wx^P:ƙQt70M= ϹĬ6fysԔ7߇D>0}Awv"r;5&ܹcv!-.[gyH'Z(c%ʛ|G_:ByS}BySs-/5UwiyJwmyǝ^s;f?;'bkc$:jƫz/wim9MJ^1w@`'Z(w;-QBk8B)w>(VS3D˽@ښUMxNeg7xG̬QpwYɷqXzʋc(o^tMCOYSѴ3./{ySs^įe91yS} ySyU!`ŹU]ۊNj8܉86|-JyUoHdn|qD7-ySTQ۟s05x*r1MF q-Hj37SzySc Mq-;jTʝ(5IauB$^+;RV]DZYr,~W,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,ZYʒI,zUʒIlvm]+KV&$+iR+KV&$keiR+KV&$keiR+KV&$keiR+KV&$keiR+KV&$keiR+D*7LQچns9@Ry;\+&M2O2מP'_/g2(38ģ$2LTV1۲}g޵)=ky*|֋C͸\Qsy38C‰TΡv̸8wԺ2p2pteӕs q-:Ro8\Ȇ=(XHt+G'QT6|͙y6|ΨʆVapr6~W6\d6\&ppdEfe  I6\d6\&ppdEfe  I6\d6\&ppdEfe  I6\d6\&ppdEfe  I6\d6\&ppdEfe  I6\d6\&ppdEfe  I6\d6\&ppdEfe  I6\d6\&ppdEfe  I6\d6\&ppdEfe  I6\dFZ&ppdókllL"s2Ɇ̆$.2.llL"2Ɇ̆$.2.llL"2Ɇ̆$.2.lxN6<vqbvq̹sm9{jʱP[>^ۆ8%#iEu&TV}?36_?>9-#䋗?ۿğ;8ú\GۮX#ߴEn.gnuiDzb{S_eN;_5o弩oԌL#t<;jΛ:>–s^ظ}d˲>Ք;j%/;46j̢VrQSj}yy5>#{_>_jƛzzLޭfQ_Ǡ,;-ⷼN,Zǝ;F-N2D*|DxG}:zaV1֏x>YoKorƟuԔ?kM-sk,#c;V@O5c*z ;ySRcgh9w~7[uN"GOԦ׶JZ\ׇޝPqvG^c}ԂYrPT_O6hyBB8oΟ9Rw>ugO:-s;0nscuMyS/ٳQC1wh}2xkPh9MӾ8o;sw%Π)m-C4l%|pw}::~ۿ6>'-߇m#u0qC4y}}Z09oa|b f;js;Oʝ;r'ZPgˮk.r<3QxU_q|"sa| 7εײ}gTW5}>\5nQc,AQrx:p<8w)`4`)o;;5=u,g~M Qs?j sf^+lN!Ώ_EoxHD5U=p^uFu-$M=>QCp"s~s1TShS^S1ƹs`36R쵑y1ayS->k&~)oŵx=Ȭ8ތ3rQm>QF]kq>׶?BM^jʛ:z\wEY?j8jƝ߽ng\^R۶\g5786cLp6RuWu}G^jʫڌ@h9#k77O&jwZn^P;r'ZPMrʝQbz-ǵ u_^#/|_}ԞFڥw-PW]i}0r} 7&,<kz3~Q pmC ^_YvNzN εw8,r{צ!~ײ0y]lۋۚ/{H%;UyFsd]/5U]^tGM9,{F{D55oΝ_3 ʝ^JsPM[ND~:3IΝ;vgAg ~,>r-Sw'8899>~^98~rƹsmΝ^kss{r\['ͪmBނ;׆Mf!~>+p|#R;F ͎,ߔ7;k5?p՜7Ts4+;jxLqcl9M=D"͆r#ߡ7~[ݖS6 gnS=6 63'o"ߞ]{ cڌ?|mHṶLV?|Z`ޖd#6^*/:6_/@;z-'r8z{8vF[pq6>%8o5^S<>8okՖ9#U]s#ʧg穦%t뾂?;b?/FU}U_`ou?^5khE>Fr!կ㵂ڊjƝ8μs3r*;}|s^)8JoQ>e=)ƛ|ssՌ;c [N-tu1^;~%>_~.: vGz;guCs6! le\#7qTcY2 ifm֞+KN/V~xKmb(}޶ogU3nmi ^޴SS^e{oqR ^9?f97u~o^z),G^۟ljwԶr$8|#v[9n+GcM]cC61mq^t䚂79sqϺjʛ7ZNyU/(0U zr$8w[9[cv{f7ZwZ|[.U^ }~\f ~ L弪znwsm9| QwDxkކӹc7-P>aBc3sGJofTpʹs R9갾Ԕ7uxok?:9ܶ8/4ijj 2(mX)\J^vGfgkK#({쌶Qog__;]港{xox>fJI0sj/W5UWs]%5Ϋ:wF"D ǯUlCN5T3q7"y;-O}X?W(+aG MW\58ƜSDQˉZQ-_kR|2cymYw9j} ^;֏jsܞ-g[ٖ8Z$8w"zkNϭ=5M]{-[ιk;wsGmK;-M9 [&μ,yę3o8[ՙHg"yt˿ޙT[ϙi̋ҙ'μ(yq̋ҙ'μ(yq̋ҙ&μ ya ҙ&μ ya ҙ&μ yaӑT vKN-G=z`o u>˸UՃ[*HTtK[*HTtKʼn[*JTtKouK閊%in R7qK%閊T@閊Tn8qKE閊Tn8qKEJTn4qK%JTn4qK%JTn4qK>WQ{fZn|;u-,i`'(,q`'(,q`'(,q`'(,q`&$,[,I:Xt$`PbVmC t < rCT:X^e9t =(rH1qrL,t!,rH1qk zO1f_v25pؼT'W!]vV9 c*8 *8&C c*8 *8&C c*8 *8UpHW}S)mX*X~U M\i5'*HWA4q$*HWA4q$*WA(v9+0hJ/:+yқJo&қ'+Yo]r7˕,Wz_Ŝx^;g Wzd7ȕ0Y r7LVz\ ޠVzq.+v= sb0'[h9ޞNAq9b%8\ۋ*,D<5>rE5aoP/6/-ؼF#z%&6y¸3J/3:3:ʾOG!L A:h;ОEm`Hy-g Y:ѐPt4!IGC8t4!IGC8t4䉣!KGC8t4䉣!KGC8t4䉣!KGCN?f?C׉z5q>ʝhkS2/5d3iL{Ϥ3I='{dL=3yL{3Y='{d-;-H5%Y:wĹs'M;I:wĹs'M;I:wĹs'M;I:wĹs'M;I:wĹs'O;Y:w:wtdҹJK;_e6u'Ν(;q܉ҹ'Ν(;q܉ҹ'Ν;=Z;w(S;{g=RiK{{ usΝ.1Z8N0xj䵜r=5agp7wZkz%}o`hYz#qg}owWC 2(jqPʡ3838w|}ڡcPP1fZj0LhD#ڡdpyj浜4ӡf>2A4JZT_j8ԒtʼnC-?Q8qEPZ8qEPZ4q%PKZ4q%PKZ4q%PKG"bh͹nqjc8צ]qL95;qN{ɞ;Q&{$N칓;iN{ɞ;I&{$玡-;-H5%I:1ĉ3MQ:1ĉ3}3I'fN$qN5N̯}hvb=Qw.Nuʉk x mډi6^2qb,'fN2qb,'fN2qb,'Ԣ܁X۲TΛ:h^rq R9Gw;j3R-/̣ΔsbscNPn2qC2qbBg@זqk*ܱNܯܯC&ۡW&_L:hpNd܉Tg1͸3B "ݯe~-Z&עܯsp:o:ޑ>Zg q'R1Ƹ3JwF(ޱ;N\I坤;N\Q;N\Q;N\Q;N\Q;N\Q;N\Q㷺tyG4Iw.Ǭopyo?&.|A;L\A;L\A;N\Q;N\Q;T54H9FV=3EjϛzsTtr[[ ^htSԣccS7^:;NQ:=NQ:?L(0!ȯ,M7lroʝ;#T:Y>NA:Y>~>Jg}(ajw_ߵ_y/Y_&"e/Y_&"e/YOtg.YKg>qYOtgTTolXNu"st:.ĿKjWHjW_ݥhҿ1WW_]&e5:uW_]&EWue_]uWW_]'UW׉uu_]uWW_]EzfXݪp&,ε߶J:q-%L\bt-"]b%H2q-%L\bt-"]b%H2q-%N\bt[Kl.UĖ˿%Y~K,IMIJtK,KXIJtK,KXIJtK,IXĒtK,IXĒtK,IXtTWAa :ʹk^$iҋ'^,iHҋ&^$iHҋ&^$iHҋ&^$iHҋ&^$iHҋ&^$iHҋՋ#iYz1b?#(/F8CpGmWojC^ Z{1o/F^0b/F^0b/F^~(Rvp.xmgVxyƚZ zlZ  W<÷xgP+ڿW<1Ă/e3,%\U;6d܉u>s`; ɓ흲].Y9/#eT+WleC(aIQS|5m9M/fܐ7"!oCWpT;wrlyqZwG Nˍ \6raP$ \6ʍG/U:jʛ |DyS=WH;+$uo(wZ{9ʝ^Xϴ^q#TSQ׏e[_{a [> w[}*<Z9^F yT5 Tc9L5jQ+s❰]5:O.c^k_[7\f\+Ym];Sk sm۵㝱/9yX?TY]d=U,iU?RR{NQq)y9hGRPWcm_Lj@Tk u2~K4֐N:|T-{w})X z_I-|}Zϫw\ SY缩;fEK_vZNTó^I9mtL\8Z:z]BڿL[U/BOK_xƙz_;|a3/=~ nsx-)7ܭwe>JE9ҽ9;393wZθk#<#mcx|݁|DݖSQ?6Y2daO=/ dqcib33bFW6:Į; OWMajgZW>[yޡ́~֟jG6M%en^C͗eڪ߳{/ ;U޻ XeCAPX^e]7\ ׮Z5V^kyjhy^WS~/,kyqVos^{瀷f+xS_k x^ךxkx;jbrl99^C#2xj9F3J(86q^vwH{Ihhv>]{2B9ok9(9ViNq(zj[[nq7M],HvJ)ߔ;jߔcq|sscq 0JEd1 xߎuqG]n& ؛IOhReM OƘ%.wvIO?}3>Ӏ^o_ϢjtZL/{e;^sl~>/tIkm*vWEWxyS/m^fA(wsvIn;ڕYM{]LԌWo@OM'ݨXB5Mn[qϷsjZ?[>sp|\|zVZ|uǝn淼N-ǽZrw>h@&cm5rWh=wr-?f!~nvM^WHin^{u|T]{zQ;J8Z)Emp֎P9oVĖfwN9=(w~7)oN70g;-ǧ"Nrsr'ZVsƝ -F`C h5O0ySo^rGwr"sGϤ;<kj)̰9w1Λ:{ysbmF(Mw@qaȹr|S<8w؎#0UShl7.xp^cqyULMyU{_@y۪MOԻU}Nsm]F>]F*]ݓ5kebOd{m󦹖gcoMc߂E*F2\TDPxUy&)4Klq8ot/zs5<8wZPΝ^w(Q¹--o-#gKTCaWc?ƺϋ}z<5M=Ή;}z>avpCHМ;jx:pL;OEΛ:}yU>USڼ0wΝ>̂sG Y Na|sor0FU@5ma~nG86#T;;`(>)wZnNhwľ ??Qq.sQhi9F*N(ܹcm CߧzV]G˨2uľK~y&yOwb3prm_-/9o;ߊyOdΝ^55Ν(5%;w bvqG*sOo8 Leys=Bu8v-Ι`9 _yuǺ,o׎4 :X}Fb zx^^e-]KJӵ;ޖE8ڔ?z md9zՎJ^Qp69pצ!~W9wBkxmw}wk_#KiGMy[ G^qMĹҲsΝ!;O;籮u[)Ku[Vsczf(5xq1TSD <((Ι:Wl-ImSxr;j|:Pނ;OEʝ;OdʝhA5'彝sQq 6)=R%FmbmXv6gPS[~f0J8oK}sG s0J8wz bsA9G6рjNCBG6p[9(ϩZpƺMݕk3s[08B 'nl^9qR3܂_e7p#cz1MpuԌWuFrU9&CzI琵cR9dnxq;;jxs%;C֙IucRg:dԙޱE oCR^K]]ݓsͶ|Ԕ?n{6gƘU=ɾ wm r65Lܹc8(wՔ?01j%xSJO3Cژ=஗N{͌c\UJrTS7M=֨MZpG}m8 Ĺr[ 5[ ܹc%fu:}16P|E59i-WuWAMyS5ΫdL]yS ]¹w N]¹klܹc\܉TS||׌Am+1<4D*U[E=5MrZ1 ʹ8i9;Od2 TSԝmy"sX͹Ν(5;w Ք;т-Qb|o8(j{z\M-+WTJHi98wz 7X܉TSHĖӊ(θdO9oj'xV> ۲_5pϗgN\!^_~ﵻcIy[#Rz)r%;2df]J}$sW.U>=:i_S"]XMJAiŤZ̞B%.pWqB$D *?P~ FrQGiU#>ĜLiUio*{mg-Z{+CPQJ"!H&gNkIIN1ZXhU;q"QPB1 gzFpW`d3O/iݟŚ>Хٸ7 cmf:_:]PjpYᬲo™79'@=Y #@)((wvߧFB^}g5>׆ȄqKi}Os9Q;!a~EU&sH18VwN$0 yWޱ`ߪi,n%*^㶕@3!J/e|>J:G)Ο;zxS-9bx+fNe-ag^>+pQGTНp;a5>(9zNiU_>Y3Ҫ"#sKY퀨%Rv&_LJg_3KyMC[iUGXd!N/ezwӇ/ >Dd>gB $v;~fF)(ϔ飾!(,A'FAZS=%0VB$z9ec%=tȖvYֽ;,L:S SG9:gu,Jm-9R}ϼ( чe~)(Mk=hqt^g01l<Ҿ?K37Y[~J99:#k/}A6E凙Ȋsz)'kDO,[䍜^d V;ǺlӪ|>Evq JS)Զv7NmR©+pj#T9}ȬRe'^wrO6D!J/e=X'n)Q}%Uyfuӹ赖K 1=fVcSM~̩m-J<ߛ[m BkAo%+z=4mwLR_RT`\g*Qs~pmu U>|Fwpj{}rW8֚R9>JRΎѪ<3W5[ĴUǮ8_ W_*6MX[~UT ޏ/nv~fv󞽿zo(;Z\{:' xY^JB]:v{JB/eW:q۔^.c:sxoVڔʵmKնV延=Dj[xW(}@CD~3sd $vvkQ㶧l$xBkĿ ''*OI+ZF!roPGZr'xirH;؞?9y^kyW]}NG3̍3v> Z噇-:>#% 7aûO27ïu/XwQH7Jn$(IQt$FIҍ%I7Jn((QQtDFҍ%J7Jn((QQtڃ!Z]}1K~rW޳Ya;)ĐpZSe(Bz}KiUpoAk)=D)Đ+ҸQ8v.EwOTԎ2ow0| U)>gV8}tD'ruw?N*79}Zs!>ps!>psON">E:}p)SӧON">E:}T014; (NnſX% ^ JcRPZZ뵠zFpW62އDA2jMC/_RCK:/H_R"}IE%K*җT/H_R"}IE%K*җT/H_R"}IE%K*K*—THCK*HUqy_R _"|IYYudKҗ/)K_R,}IY%eKZ/iEKZ/iEKZ/i%}>F7BiHII(*/RCK*uCtPjEz %U9$FmsQCK-6Nqv9OZ* "]TYZjF"\TpQ-E27*|~|*(tQEᢊE*JU.(]TQtQE E*HU. ]TAtQ E*H;mN/٦vr>2˰r({L 0A8`tဉ&JL(0Q8`7:`pDr,L0O8`pD选g{(0Q8`tDဉ&JL$0I8`t$I&IL$0I8`tnm}{q8uht/P bp/$^½{! B( Qp/D^½{! B( Qp/D^½{! BFB$ IYf/v/_ɽp{afQ2jO& 5k%(@d½0PA8{C^8{C^8{Cn?@٭1d֏pֵ_y>VX?qQjW|C<b+χXy>!V|C<b+χXy>!V|C<b+χXy>q+χZ]9tk_y^~b9$WY]oLb9ɕ$V\yNb9ɕ$V\yNb9˕,V\yb9˕,V\yb9˕,V\yNj]A0+iXM3z]5OjaY&jaW X5b0UôkW 7ߴjhffFjaAjaAjsaNAV ͌vh䍜SsW`ȩr{[Jͪ!d(k:9}21NQ괖QC]gjÙLg@`#~w߃^oTc{ "^`j7;n~gf a%\vjwAv}o[6YV+ڜy~m~'VXNr;UXNr;$WXNr;$WXr;,WXr;,WXr;>}#[rv#VHk2Z.,fI1I1Y1Y1Y1Y1Y1#@)FC6pidH¥K# F.$\I4pi$H¥K# F.$\I4pi$H¥K# FFF.,\Y4YƫmEM. Y.(\Q4piD҈¥K# F.]ʥa<5\ƣo*ʥa<\ƣo9(x-~"[JKwkO̒#G2HMcvX] FA*Sjtz 22#nn_}TMUce ɠ$C3!(n18ׂPN(0չҪs- 5εo]k#޶uwkAPxu[b`o.ZDv"]OQ1 rgP`_(_"W,|_QE:PE>l"sPd. JЇϘ~EnRD[Dv³~B_.*ߐ]Ef-LSEf-"hE.Zdv"]Uf"hE.Zev*V]Uf"h]?}$޷ |vE}$3:ӟڰ4y"XY8Kcgi,U4Vy*XY8Kcgi, H(GE|į"+nYqȊ[eV"V;fŭ"+nYqȊ[g1ȊY{em*/IeŹs]"sxVQRYq,XIY6{mYqȊdV&6Mfm"+nYqȊdVMc&}۹`GQhr70s2|Qg4a1gP_ o MfsMfιv5MUU &37q8Gf9n>qYԻ\6ik1}W ^2gn"p8d3qԤ8//E]!}8t綺Bm"pY_8ߐqEa} yf"0Ɍ$28L"0Ɍ$28L"0ˌ,28"0ˌ,28"0ˌ,2s9_k2?U- 97  b l1]IQw^)C>狢 U( LE_YdfEcYdVf͙U6 M*Tf&dlP(>B Ad( 2͙e6gٜIfs&͙d6gٜIfs&͙d6gٜIfs&͙d6gٜIfs&͙d6gٜYfsf͙c6gٜYdsf͙g1~o͹|%Nٜȧ[e6*9W͹lUfs"sٜ\e6*9͹lEfs."sٜ\d6"9͹lEfs[ԙ[>UEE3l}x1gAQg-AJP`B~$C!SoEfVsEfsҚSv.]\vԻB^\ik|&(DBc7AA̙Ȕ]d*2eW)LEf."SvȔ]d"2e)LEf."SvȔ]d"2e)LEf."SvȔ]d"2e)LEe lȔ]~L ȔL[,GDMfDMfDMfDMfD"3e)LEd.2Sv̔]D"3e)>hEEߌ#X:Qwo=f9RGd9RGd9RtDœ]  LY3cTh"Ef."Svٹ]dF"2,|̶l oP+.( 5*D"o" yY7,Ed!/1 yYȋB^D}sg!/{e!7*7,Md!o2 yYțBD&7drYMf!7drYMf!7drYMf!f]1 14߮GQϜl2o&d&77M n"o}Ǽ&7(&lP=o}C`yY Y&d,2o0,2o0",2o",2o",磯 j1GE>/L"3}2'L,3}2'L,3}2'L,3}2'L,3})2ӧL3})"ӧL>3}/*鳊\$3}I2'L$3}I2'L$3}Ye*2}V鳊LUf"g>Ye*2}V飢Xy>L%CMw}Lx6U'6|k\_*W6ʵUͯrm~k\_*W6ʵUͯrm~k\_*W6ʵUͯqm~kZXkIͯ}|_߇::Q`YX`yvZhgy6k76k76k76k76kWڨ">_G3qOjC|5V_i7vi︚vi7vi˽}s}IŴ:-J$0/鬰0i~uUHfCO9ciQL+^qq,-ÙtK KrFrGj?v9/Oa 13E/d2t,2:< i.!9 8tKu6)9* ]aY=P(c~*XR*V<+iedֿg s6y~A*0ˤ0Μw:wC$舄2o^꙾?܊;wf>deYAMS5_hAl4N~,iYd?Lu V8wȭܕPcވa?i5TD]O%(O&(VPh؜ PowVtet5fkeUaUae)-"{[jWYcߜ_w4ji1Yd..uS<*d&O+u-ɩgiuZokgOmRße"bvo[io&3RwzezvE UӃy~TIvCcڶ>=o#A/Hn-9b2ep%#O GrLQ,CzG G1ԗC)kC)[R(##âHnIVޖ--{/t/`3e/0W#x1oJC˽6栅HPgLS$QRe=HPO'C}iROV R< #aUf#Y0Ie Pxd߳b.A&G(c~ Dl [ D쯳~o4Q_C=裏fO}'׽?|/22^W_VZ~WM}UBi3kQƷiQ13z;?2}33+U`(0c-9P}nj 55$8:f=O`ޗ1;}f%1'Je(TBB-E9RtP9w6a/`#l[}!( 'Cמ* zAg^Gd(D/m[z6CDQ! &C!D/<ԺTfzCq `3 o6%Bz&CbSt0繯xIAS>) OQ!CVqmk`2K;8L4Ќ:M() :N IЇxO*ݪ+,fVi[===ytl 11ڙ{An6(:sD&A;6#,-0ø .=0ø þ(:̏}o) cW}13{9,x&CM>񞲴m\ig up>4kOS\͂+\ Y~vlLEpt08x&AM>񞲴ffog23;q>`2ZH;Jp3W8:p#5GFjBiHQ!7qZ C!Ї/_F9 ܝh/]]ԐѦd`ΎE و2BiP(-OqK#Q`Ö ( u$G;Qh`2#ޮ̬'ؾ2cuX c0(ڙɬz&CsChgZ]xOQ`1PZ?SjBq d>,n]3ӹvuٺfx>v攒0:D>Tkz'GQ`(ϩ) 5GMVgd`.硷8jRO"0( OQ!( LB$@ixu03Y>N;&:GSev1} E= 1P`2 J<`V+T~GsrR3on):b5%[}֏9R,?.CI=os;tJy\t$ӗ+2wk=RW+=R7hNg~dq3dES;f6`O݋鬵 q=ҜU|X6wG.(s9 5TكVCB$T _UFc2<3Ϻuqk0(-C;l=L{2t0:d`rӕV\x}PC4B${0G!>ݔax5A;3o  0 `فYG;ӆYGfS) 5N(s"GОR ڙw%>:ۙH``ε4-.ѥ(0`ye m) 5׵2Z_KQEFL|! Aiz}zA 1t0~{ &DC ^Ph }fYnf3tnƐêdڹm(:܌nnnǂF+j >W} 1t0dC{̖.f5ݙ-'ȤhgԎEtE(:s`1䣏Q {zPCc([B$,2T5] Z YeU}_x@'G4<9Wt_^BiמPC~( D_gzKGcگ/-CSR9:s_Va` "c("PC2U:ޡgsG/\kxQg4vj{uo;wnӾ,iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii‰iiiTOOOI I I I I I I I I I IGF0+߼.EfϴXLv^b1lB6=%&ti~YGVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVԥU*u~ҥU*uiʠJ]Z.RVKԥU*uiJ]Z.RVKԥU*uiJ]Z.RVKԥ29kW L~㖡C=~KP!P1>+b&A[Bi03IqJ|*{\bBW믯˗{>ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ]r/B3r/B܋NE*"{ʽ^r/B܋PE*"{ʽ^r/B܋PE*"{ʽ^r'Ya1ȑfW^c 1ka?3(DC  VYR|VCPΏew(| }PP 133_g_Y Y Y gggBe3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3I]ڹhwO*0|G;ӌ-1 ЈYhkeXFLB#&ЈIj$4b1 FLB#&ЈIj$4b1 FLB#&ЈIj$4b1 FLB#&ЈIj$4b1 FLB#&ЈIj$4b1 FLB#&ЈIj$4b1 FLB#&ЈIj$4b1 FLB#&ЈIj$4b1 FLB#&ЈIj$4b1 FLB%ЈIjDLЈIj$fIj$4b1 FLB#&ЈIj$4b1 FLB#&ЈIj$4b1 Fчq.iv"ng`uLgԯ&wI'wI'wI'wILtb;'m$_HLxIxW6LQ{žO׷۹n[>kǿ??Vگ7f7X{ccm >Bޱ[l/اqe\zsN|_5mdקKI|_Qhg.+^:Emu{>G _Z{Z-m"mdHO9L})cP ~s$`-Ł㖡!hnsBkdKvB~.ЄB@ 1"}v{_"a}/Đ~iTkĜC×=ZꖡTPZ~ydd-ギX6N_?qaJo2.ž>a1*> 0!bn9 Ez"kikh_nzO}!5gPޟ {.V? B$X }4ai0 =#DEDzAZJC]oB&C- KP[?כyOqA|&C3oVa(0}+_HX{볷`4}b}(EqH('0{ĿnLA Pۺn6IPx=sB;s1FdC'S`7_95wlnkhvf nD&C;9^1Gsnf͌9 L73(>B Af( OB$1q(ڿLvt&A;^¨IQ`W̲Տ=dfA 1t0Mb(0(lB ф*d÷5Y7b 1>[BVImW{n仼3MFf.qw^;/`3 9-EӌQP>( GQ!ߞV&C ̹B 1PZwƐ j |܄9ꖡ9!2t0^ae[ޭR~ >/T>O/OoRQeZYմnt;H6KqK;.cfii v=Y+y2KpY*ě|=ei6McT9t0ZMc(0=>=T͛<a7rn"!Kb(0}(L"1C1Z }2TL- j\Ӽс*}b%gYDz{QbU}-r<̃eC'5`/՜QxB gr!)K!^˙!_$3wYD3 oKGV#ԭn "a ]99a{2t,wZ$`Rt0̗ۑsqKQ`1A292 9:ת5q ve8v-uP`B]1#bgD~ecL|&AM>񞲴mnWZqhꪷ}n?c)L iPCݤN֞ ۹?ėb>n-Z-) -EE35x&CM>񞲴FDglO؞j9Pt0hhFѱڿV}&ݨ) ̞b%0'J}-EU0" }S?#b@cF[LAYCwQCd`m5d">sE{E? ܿO7\/)[[( ʕPCw.!ň =%;O}` c(PC ̞t&CsC`y): XE1c(|(vssll>  &\Ro6t?/2棥-X13*6;an?z6xx4Z|ɶx&C韹'<-}|qJscZJ}Vus>pt0s<1{G=V|)oft7/ztao3{>JJ}N.w>ohgDo |4S3Hؚ~ӽ=trJ(Ԑ;*l;ض&C33 k5lZ* &DC} gCYwƥespt0M3/8:?\EC;-,O>v涼w Y߻ ky7oGB2qk#!M_h!09mzzoD<$fg|7+/3lpM79lpM79lpM79lpM79lpM79lpM79lpM79lpM79lpM79lpM79lpM79lpM79lpM79lw3"J1t7H{r?Oa`)!|Qۜ/3\g&:eM/˓2x~.E;s3Gs-IawehgrV7l6`&xOYD~@`r_9 Lxi<|[Ci:f%b(2n B,L; SMC Q▢#%-CM>/mO[.oL ϤC'Svek } [Q} 15|f+L6Gr9 c(DCUIQ`2˗v5!4X<1{\ᄡ (:=:  s(0}SJ{E|Ϧ(M( LҎr^iKk(Lvy&C|}i:W) L](J2[?M }2t0y(CfV3q+]"!>W}2t0ߧD$C'S6M;z|i-UdN),cs}4xAmg9?PZhuq( E<3oTn)}i:!hOv?`2t0g `_`wyc_`3R( L?7(χ( 5GjB@_a(D0K]>,+.3 ڙIEsnkdH}`ܮkD8PZ`2J'E3T9E3(( 5sZ ňwl U Y0>"vf{0:biT)ڙ=;y) cJ|(2 PZxB ^FQh` moڗ.mYY7w=RЋTEbF0e &DC@Q!>B(D0l yYM|Ϧ`~|-n[H< [BL,G_H*چ}|ù&K}[ܵg+,\Fo xp.hNjK;؇׷%0rݞXcNc])6r;QulTWsUy 2׳gbs?6b Ql0 2c_`0AcagC Hvwp% Jqen i70ps#2繏PW >\zϼEX|s$ wns'Rxp]ߣ~D;W$$Wu#Q(0ƺ0 )ؐ1\3qU깘$꘬*&kM5e>fP #2ÜXW0Qc4X|\Awk?Pf\9<) #cXf ƺ>ZWSf~O)U?y߃@)վlJ-ɔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjʔjڔjjڔjʔjڔx4262626262626262626262626tL"q-N!& b:I~[՟M 4 nJ@/ ; qՂ*A\ JW-U qՂ*A\ JW-U qՂ*A\ JW-U qՂ*A\ JW-U qՂ*A\ JW-U qՂ*A\ JW-U qՂ*A\ JW-U qՂ*A\ JW-U qՂ*A\ JW-U ⪄iՂ*A\ xU qUjA\ ZW%U qUjA\ ZW%U qUjA\ ZW%:&;k rnFaX :D\CBPfCD C Y5!0ra|07ɹw\M<Р22o`/;EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE̓̃̓J(h(VyPyPyPyPyPyPyPyPyPyPyPyPyPyPyPyPyPyPyPyPycR DY 1`H< +ǹ70&`c][<mH@lD`x`0K|]}QQAexex_6~+.O_7zR52˸c7x~^ ?\57mƕRD #&t\C ܦ[`Ko|TXf n yg`B=}~(Pf}-ו9qEl쳓w-sŤM5ND({3z:fQ 4\? c܎238ge֏u Ѹv\DQ1d?9(|p[04kLa|_o6i:>8@c)$|c/a,Ȃ_l>cÂcZbt=gbbDzm_ ?zA=n}s}Oh\2h##b-}~XEcNdz>`+ Wc}uM,p ue`_Wyn>ڐ'ܽ|NN:F ~2}}Lގk籭͍m׵?8+HqM;_{S΁so #28`+ 6` 65n49^mӾ r7;"'q0rn|n辡ơAUc7b5u`@a,3} c]Cal#2ef-륃bp]])_-alԖ!,ȧs7]W!޿[_0uwt% wLF(|p` Aa,3$})m\? >sƺbpFЏ/=rqe@+|CaC;; 23ʶ-[S;Cw8 /9|p qXG'w@0rc7Cc#c5l_t>+p"FF.}c0$ҽˮ@.1&~D` XW mێ/me漫3{?7_Yf.{t?=ǿVELm ~ـ%[/˽s?-X`ĭ;AykcK&!zn=s-6WRL엊2^SܗXc9H3tfK|p[f0r}lq|n==zq c]ad0r23\f~nTKMz6zӧeg[wKW~xD̑BzߟQf׾2OBlP KzO.9\Qsk\? }}uGȑl@g3?}|/Nĥ:(3iG~rF.efGF* >?4ۙ3\ȎNd7>8rH΀ KzO.sȗـ0^ա7Чsc3M̳k`Wݻ{_۹elAg W%w$)υs?E\? }}u'<>'OK5h_ iO-2 G>c_8'R?t}96T(ܞkq' : c]Lal#G @.tPo n'&s |z躺G.n܆I񉺲}aeA c2ˌw<0rZsIa,3hg c]Mɨ76p)lvᛲʖ}*+nO~7;xV.6Fh"wU`/P }XW)m\cl` .,1xp\ +k~Wn: F.$M0om+cl :,309ґ@< kSL >bŇ b?eWUoo??e^iǿԩ뮍4_9ow~0+7r/=9cGӹ롣 4{R L6 %;a)>طU#̎C~˙ "xPrĒZ; von<ۢ߻ mxϟ;/ݦT1R玭cFbv}]j٣Tc}:2a~JXq1+ ?C9`"e ~"~"\AYhAtraP|6 Z(~߇Bm۶;,T-N ZDr-~\>qa)~Fm0Z(1R){ ŃZJptC[fT7MAG[zvj f?ضE{t>:*t|8~j}pl?{}꽯JFEWq <#lS?& R9>ث%p}8xPrp9Z A,Ѣ#vcmzizUFtxnr`8&SX<Z #HѰ\DcDUz@)~ [1l1YaP<`cR<(9=4 5[G;q ^r lٚhitqh^(կ敵/{eʚڅW֤W.&v5镵 I]xeMze+k+k^Y^YʚڅW֤W.&v5镵 I]xeMze+k+k^Y^YʚڅW֤W.&v5镵 I]xeMze+k+k^Y^YʚڅW֤W.&v5镵 I]xeMze+k+k^Y^YʚڅW֤W.&v5镵 I]xeMze+zʚڅW֤.&v5镵 I]xeMze+k+k^Y^YʚڅW֤W.&v5镵 "R]٨J<`l s R):>TmY+N6ěTM*[(e%~/%^JJ%^/xJ^(*xPU*zīTBWR %^JJ%^/xJ^(*xPU*zīTBWR %^JJ%^/xJ^(*xPU*zīTBWR %^JJ%^/xJ^(*xPU*zīTBWR %^JJ%^/xJ^(*xPUzīTB_=[+*xPUzīTBWR %^JJ%^/xJ^(*xPU*zīTBWTdYaeYASC61{#(91s3 Ǭd0<`x(>I|UU://o_/{E¿(ҿ(EE//ʅQQ."r__ H\E¿(ҿ(EE//ʅQQ."r__ H\E¿(ҿ(EE//ʅQQ."r__ H\E¿(ҿ(EE//ʅQQ."r__ H\E¿(ҿ(EE//ʅQP."r_\=[E¿(R H\E¿(ҿ(EE//ʅQQ."r__ H\E¿ E fi;(Ef8AQ] <5T` ÃnZA-q*bgv1s?S}_k\y)y)d %K%_8/Y:/yyKKp^t^/,|d %K%_8/Y:/yyKKp^t^/,|d %K%_8/Y:/yyKKp^t^/,|d %K%_8/Y:/yyKKp^t^/,|d %K%_8/Y:/yyKGp^t^rld %K=/,|d %K%_8/Y:/yyKKp^t^/,|d "R=vsd^A)}3WA |ߦTY T,p-p.K 'ӅNR 5Nj8I5.pj8]$pPItTB 'ӅNR 5Nj8I5.pj8]$pPItTB 'ӅNR 5Nj8I5.pj8]$pPItTB 'ӅNR 5Nj8I5.pj8]$pPItTB 'ӅNR 5Nj8I5.p4]$pPWj8I5.p#]$pPItTB 'ӅNR 5Nj8I5.pj8]$pPIt/"5Pæp%87j7j>ŃgcPpTDzȁH2"]@$.r ́H9I@$s ED9""t١[<\$9b{ẃHI׹@들~?}>3BO㟗o8ce{2e:mKw>ׅD v7B3;᭘.p~UjKb3|(z݈񃽵8%`q\Kll.c ܢ7xov%O,^l-{/ﳟ6k9v#f69nl~g=AMCnZ0(DK "՗|31iZ0ZT75?#Ӟ7WuO"-.خ֖h~CNBCyqb^e0[hq(4?y{6h1l}AѲ;o;\s`mXk?m{#~g`[kֲ>0N6ÃgR?F'|Gvl?{}/JL{H ܱ b>/9:o ٽ~v/mb^AqLxPk8:PcFcb%mG=8!Z8"AA{sP&ٽ=#|rml?{}/JA#L2#`H\Kݦx3g!¾׋3:bS{Z{D5lJާvC ŃZJŐMFbkCTkk2Xtϱ`Z~%]˳)IcM] \*~%8EqN|Ͻ*mo_+{)"(<{ǫg/g:uxl.6 {_|$s A[>Z6uhXO8? z =9~ͨ%;HJƖ bKNm"kGBEFֽnn1Ia)~v;:x:/;f o_=Б {_%(kPË3Nmqk}Q9|clvH,C!^=ͦk0s rnM|ϽE R>.>Fs3M)0yj=Ronhxsύ!{ƒUk>{QxPrJ{N=1x˱f['ǃzxPk65v-lGĹkr, _$g=X`tr_Ȧ65l;OIK}s,Flp<(9|K8-Z 5тl%ߚeRo~ΔsђZH,kȦa#9d <`Cs<(9h#2Ǐ3sddS`Fd?0s-O{oS`]J#ʋ} 4Z%'' |s߽ѫt {(ǃ;ϝ#"iܶf)nG݌Go>_m_.k|]Wjv1_mr.MW|j69_m&b|]Wjv1_mr.MW|j69_m&b|]Wjv1_mr.MW|j69_m&b|]WjՀm6Ylb8m`.sbԿ9~trX{Sh8Mμ[]r̫*3/gm~??ۏ?W|RW?~_~['~?_՟iOp3fH9~i!>mɋJN' VTlsjH_Wyl)!8xPr8ÁAZ NBx-"Z5"R=,9H5NǩHtq.mO_w `Xg <`sǹZ-Ox`'Ȧf't{ΌFmˇxhxPrTA/>[c~E c JNNcOq)~?ض=!(1)ŃZM-S3| ~}^'CC9~YPkf̑ - j z ǃqUTE76qLSI7wv1`G |Ȧ^u|{l;;OQ{ z(6J#ŃZQAL ZMcyXqwMmޛm@69KNmNA} <`CYgPJ 88G<3jOXZxvҦdOuPP5?VPL{"۴w~Q"lsƱ?Sb-} 8|9D 5bG:Q\k?^?V؝3:q'͎znڿK?eir`yir<`cP<(97ŃZ[|{}V/*ew2/9%?ئ@q<`Cp<(9D*ǃZ^`g;ܳ=yjT?9[ھCP<`cR<(9=A3*?v6ۏJ'xPkb?M͝^l/?0K{ ǃCxPk0:pVw?Āw%W{~~݁MNw ~ <~ P%Aaxb8P<dS.n7 K>%G+೷:|9>އM};$5g["Aɡp<5Z `4`)>#>5Glq`3|/%w-glwp<`cS<(97ŃZXܵ)hS|SFZ cS mQT3[N.mG=d3|ݨ%6M|o{_G;XޞuXzC Gs8` tN?ճK r 'aD6|8>ۜd3?uJC`Pk?&(}xPryZJŐMF(nZ_tv~]!VfG[X#m?vZOWyDqN|Ͻ*koW+BφhxPkl?{}/J|O}]9ŏU==_9!(~rnxW7 <(9F*ŃZhxb0"s<dS%_|ͱ-ݳ=۾s)j{*zo;o_|ciTl%J=A`dx-Ȧ8FjPǎ1:(l76C)~앶s?xǃc+jw#qMF̠(,A,wyZ((~{=|6>޺iDJPPcH-f/GMy-"=_)iG%(WϞ.DŽq3)%ōcon7ŏ}=Kۃ>s*젏q`y 6̙8kj Z ŃhA6P<_0Pq`1=Ǯ_]k?+!`3y>CZ$<3s{(ǃ#Aɡs`iY}0oxPkzr-lGײ(|L0Z(~~fl߳5;'%k}K8[-xPk8P|+(;wIvͣ[ ow|{=V\wϫYc];?m6Ck|Rxp[-2Ss;kNmDaBlP 1Ia+ ~zpKtZ* hoNAΝ b;߬p)~?}yX[Nepv8M;m\i6'{JX⡝о?E`Nb_TZM;m)?H9!09n"0U8VE`lp<MF q傮 ZPfo&H>&sWf.3Ǧu ش.p¡6y+093XWX)o`'6-ŦuAeشc0겮(6t4Ȣ(F-XfI/Pm)Tk{km.e)6ta<8FmeuЋ2SlERlZ߀1(F-3XfGc]AkjQ+-|+hUfM;Қ̺_9&cqccLruFq:];ߝaA`Q|iv1):(h)6t ̾BmD=QKiK=1I1^ v :|{cBߧ cXW0Qmc,/y!B\yOg/Ki}EK.vgQfM;]HtU?HV`zn҅bB$ۗcNKiep.1jc=se1U+@K Li9uEB|$AֽϷ@Ǹ 058AKi]FOcbpl #fFm+=1U+⻛c *<:؟6t=ࢮ(6t &_ָ^,LiZ uK#v OÜcBlPe ڗ47(3=XfM+Ǧuۈccc86+oޟ;!{7Q-C瓧OuEi+"mD}bb,3Rm擡AK |uu\uWzʱi:cu Ǩs$PMS&)ZFmWquu ǦڰN(Sm=i׫W!&ZxhY`ɗgZ? eW umDiuRl;]yAٹ7Nx}A`,sc]/0j,H1 XWЏ(6>Yhus pR>H1a+Gca ( s=nA>M`|n6[xs+˼168^˱imUr1h)AC)2]+ZA mGپ# C+mKmm^>bN\  ޯ]PfMڗbBUŦu?jvc,3Ǧ \;pU6sGd)ZVz/2k9=b,3/XW1C#4>߭G/6cűbc?_(>ZBQlZ? Y,3ŦuK1jc=G( q`Oj>yysﵠSWvp/_:r_6^ȿr5pݝ:7:}{wGKNQ{7f+tHsWC W; lPϥ~g~.|23|]@`ozh~|lB^h)l+Mb19-0A@K L˜6._#0Qyվ83Ƕp*r9e*#$/0>7XWeb|ϋzM,|")6c\Ql҈8FmC`,3$XWc1c R|en~~pa8hmkXfx]qlRy6Ƕ5BIQX9ƺ}cl8pZ!&]P0R&sõ~Yx@e0kNy1>7zH7xs)+|]Ƙ̋)NW/G~s_lGv`6s82XWqlA|w086t9 8YW? }_r}ᜯ|>1ccش8nq1UU`l#R a~uo#;Tssby? >/w^h)~S|OF (~^Wi{cX^ `ccL2mϭ8mYMظokXmZ; l`|xf@IQY`,s uX{y,h)~za e@1UcV c{TޗCH @~2fشn>H1j!&)2wXWcŸc3A1I-Jxƾϱi_CsXE-s g-Ok4rWkky;2޿}|۸7R='vK#cqc;99Z}O='vפqc4yh6|NF eD" Dvn~UF q傮 Z},ɹC<{exhM^y-^M*~/Ŧu B<Џ(ƺ-96ts16v?wOX+cV1 Z+qk8s}Dži.e~g~.s]ievI- <^;ixn{k=Z~ޡֽ㻛cw_VguqVguqV_kl./}u"J}/C <}_ZMEHq!i}XD<ג}wHD0&c]Fa" 0hiv9̢}{K06(N M{K06(6H MRZQ{3se09ܪ+0UDm&/cl:6x m/lUfM{EfXW#h#M 16(F-$Xf c]A>75 㤏c[# j뮹DO`F=^;;B<8ϋq|?bs)2Ηs$/msBׂx,.ʹGUdIM*$C\9Ǩ FX` uabb}߃ǯ -Ű2Af@]U22 UBd@cCe d@ N Vbf7ZR4TFKWFKUPO-y,}5}?ӟڗs RĻbz.w],[A˜Y?"6G袖b3F# 616m*&=Wc=liD8>cYߍ\Wyn v;^YE=<> h#.[#/^9786mk.\w5`gekۢæpd0칐Ƭ cF[M%A; E 0t+[b_5_=۲r|_LԡkLCmg Rl2]omD1jcL=O.h'm5+Wrx0cӦ`+Mۦ{!68 ^FPW*k>-ZW^SϝZx\o}27׾!&=suƇ6xhDŽu-.j)y]A soMo{slZ8q1jܛc,3c]Aߧ/mjhrjO㭂B2bXW/{כoma+gvj몳ijc<ż AZVU8ZO5ǦYG6Xc]ߠun+Џ86l}C+|8شPT[bӖꎞj_j́px <6t՘]󔫦"tK_OOW =oϪړw_??>jgl=-?8x|SV W Ժ'ZGX-5h+G?\ ܣ>;f\o}2kl=kJ>i]}y~X<;GA-Ck3O>tPW6_}r)ƺ>H1h)AC)~~y% c]QЦ6pm4斏=f F ??=LMޟSf߾2sclpuM^]f5^\v7.escf2|S?3W>3T=z8Fw/g Sb)i>Zֽ4b?شi[ 9E7ؘ3l9gcԎǶvX8*cA?c bxw? u;cӎqjN˰}vuuAKiIr} ##a92C b^/s(8F.3c]M/U]whhxW|#;J/nZC;VZMºOǖ0*/1Ǩ1cc R1 eͯNX`gq1Uc96rXRlZ1N/a19bcl@ >[A?xhZV{ Nf?՚cAQ 1I19S8ƺ=b R|2S 0̑(" }_`z3ϗY`Ӫz&(j)rz1]O{V{tk=?77O'vTi'xTF]i)$)vZ8C`NGR|wʇn1iSFm8@`,s8C`pʇF16v2&ΧŸr`LrpcA;PvӾ|GE2H_Bm|1Cj)z?*Rn(ش4 Av|xRsYi~ec(<=nxh{}vAJxhk~zش}JD`𵅕 PZpl6jb#T}F>`C\qBtشE)`u3g'l槈~.e?dl@#w̎85a9S)1OqQW#Ơ ǨWy_j'liI׎^]? v.X_? l]|~RhGu1ɵqZ=&Zà}cC/bGºr9E)uNѮrvSs)J:(s)dNѮrLRpW9E)c9E;rvS6S$0j!oS$iUNC+sZS$uNѮrvS]*h9E)uNѮrsb247B_ r+!H`S$i.1cMqBKijec2W8Fm<%rbe]A2 <* 1J`1J`zDT,Tȃ}_A]/ %iU0n`UԮv<]A*jyP? ßA/:c?*SA*yPʃ:uԩNußk/_t:e,x͜TNvNh]k:iv{3}*qLivٖɅ5N\x_FF:YY0/)P#A#F"ӹ[rE? -2Sv]0e~|BKq_1"49#^6NxQ=_~6~с" Xz _%_ 1a<)=;TJ?\9ԲE2;aж]`(s--VF Y;.,M;_2l1|`)ƘWy| L1hcf9k߯OuS>ß\w}Q[=B8 AyT?.ƍϽJK16_.y\8QqU$0U<F-0` L/֟ W>UQwsUfo1wuQʨQP]˶s2Y&niۣSL48ߵǓ9aN~Y(evN:]r^ӭmEQvV>U Ч0YZ_N嵥yoovkcqޫkmcوBw|m",>?7헝je}cHYj)~zydEv棧E~-2~n;lPb(sR`xF 2R } M=xǼ,Vǔ=3X|GD:}c&^+{־Nu ښ Gkr,_M;y9~ZFhk2 RZCr uch[(H}'ï 6W,3[dFr[ )*~_hVB%L.0n V۟>y=|Nw}>Kq2~Ǣ鵖GǦ=8q߃c] F/pZotPc8nj>`pl}mT= job 3X!&x }A`l |<_QX0u:MaxhڧZQ۴yֿ|C`0g7FmXkeW`+ TD;oM(ߺ6AM:Fc]AlP|FMm-_Ӎ)i*9֤G6Xc]ž1Q9zfZq]Ɔ׆2{omnAe}ZMfobӦiU+LJmmzF1N.Զ[:l)_e}:?/dln'?~y~^eԉ-1ALM^cy]D)pL3Yh9o.>ñs: :ܣFsN1`C]q, :+Q/XqI1Uc4>G+ڔcN%x]^{.ͶO|mĸ83ϔGV9e+cțSsυؠ KM^YfGH6W?CtQ]G~oF-CkqWVS8F92㵥U c]žϱѵN{]i)66V"o8v=sW^huL~ XW1h)؀2aڼyUfE]UUWͿش"8ɱik7*&)F-}]1ucK1h)a2[:}Cۅ龣aѳX/t2sl) SBKS:-8FmI}1U|pl)~e:G pbx #q*ca (skgU=Sbx  *8t?z-L3Uu?3Ǩ|Y\Ǧ${cœOσ| |oc,sX utcE_bw.*iCKViF+M'i.{cX^ `cbAkyn)SRS>UIL{ZMVv+$Ǩ199ƺc,FnZM;1N/a19bcl@O|PNNMyԔ9b&JAn44Xv*׿ R"b" ѷP2"~QZFox̑eԬ7;v}w2j\;5!3AyCP:J }PCW kRZbwJo1J@F.so \}'3r}'۹FC -"ћ聏zfvA|RS to !R07I/ҽci5abt(/b0H"az .n~jԣL'GeV)bnR京uYq?)5aP nMNea[ t]C=UkŮ7r@8ӕ~ՅեՅեՅեՅեՅեՅեՅեՅեչUOt9 ^rQ9]Kϓ;] %* Jctut-J(x*B}( ~{{*QhTvtutututututututututututut)K;]tNWNWNWN♌ >N-;ՅեչӅ5Dip5hp5(Ntututu:utututg* k;]H`|twc9R]:]]8]]:]]8]]:]]8]]:]]8]]:]]8]:ptptptpt:w(x邈g=pW K K K K K K K Ksk ΡNBBwyDٔ/7jQsߎQI)gOVҌy!JoIQ٤CLݕ!J='w#Q(t.pKtKp.L6g* iL]]]]]]MMMMMMMMMM:pKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpKtKpK l"/ɼ+*/0g*/0RyMxM}uv_ *****************&&&&&&&&&&&&&*&&&&&&&&&&*************@l l l l l l l l l l l l l l l l l l l l l l җ —3X* 666666VVVVVVVVVVH l l l l l l l l l l2s&3'Ȝl2s&3'Ȝl2s&3'Ȝl2s*3'Ȝ2s*3'Ȝ?0s GT&&뻥# <[zHn!CtK-=[zHn!CtK-=[Z[Z[Z[Z[Z[Z[Z[Z[Z[Z[Z[Z[Z[zJ J J J J n!CpK-=[zn!C<*enin)(S@7/QSn >+vu*2jʹ^F-zͱQ8B/\i-G) 1p^!by̫g^>*Wϼ}g~n!CpKg*n=2VVVVVV-=[zHn!CtK-=[#n!CtK-=[zHninininininin!CtK-=[zHn!CtK-=[zHnininin!*3'9yCdNV9YEdUdNV9YE3'S / /]^ʜ, , , , , , , , , , , , , , , , , <x/^!Cz <x/^!CzEx <xH/^!Cx*!Cx <xH/^!Cx <xH/^`^`^`^`^`^`^`^`^`^`^!Cx <XXXX/WXX"  <xH/^!CxEzExEzExEzExEzExEzEx: <x/^!""""""""""""""""Cz2s̜JMzCxJM9J{k8z_Vp0&P PCqԔjt(ӈ2X%7% %;]dc4-OJC{@)DB(Hcp&{P6C>( j&?3_)Kg5Pƾ?:JJMeero(5{C^FiP^1 NCiPj#*ǵ=`{^g/"ѡ.Jb$0jʚ> IYE "ѡ30jR 84 ф*8Q"!Jo>VJB̫ (-T3&fRͽ!U5xC_ċH`}."PC^hhEf&FSv7H\14371JLԔC;㼯ٸgPzkH3_)KG0_ڪf5_IG%CSj+r^t(Ԕj@)(:PkD iXH4"n >Fo"2incLoҡ*(5>}I-Efx#Q:ō}-H)(㛗PZ|SjG0JC`Q"aCU?ZFE(wԔjJ)¨)CH`}."PC^)٧Xgӑ}ۏ4}0;݇? vϳoce?msQky2/yUמ?ӟ~S*#_?18Ӓ,r//wf/*ss1=e)c̊.|(5emȾ1R[l6+N Lci֎KI4F)mQC3r[*3F%{net(GI!FM۩Va4*1c4F<7_J]De鵚ʙa0z:"Hh˄]Qx@ɨ)[z;PZFnIMVk.궺W-¨ t(NJߍ uKi,i{~vʑkhw4+ўcZ!, DcLMBgoÞͨ)8d]-oU#QaԾPRjH[BnC1AbpQkQPc'Ҙrgsk(&VA%XZFM^}QCr+T)J5{َ5%*!n1ʓav_QɨS!f* tcT+2F}4 *2jytbP {̰vsJM9QSQK*u*m_洺gy皜r+2%Jό9"fR^*z25)ݷq:4Pil4F5y[Jo!ۼ9Ϥ樎JI),%GM狺eԔ$4NI0nQj2k3;JwpWrfОA{Rjʹ74NlO.:1-v|xK)X"RSM99xK)(xKi,- (-1`+79GOn8~Y_17JD?o~Rsڃx5?)EgU5'~'\ ^!a1H9N-ft4-vOvg:f]Y Jx}m s=WG{}̉ZpHg2zSv,YPX{1X~y( -?nѠYNjטڻ~CI+I>P2:PCޞ6R RQ(V%PZFm5|/jQTv`Ze1H_W{iXSM>!FoWc2z?۽x&7K>;?_ОY3!g2zSY}oTl6ޭ`q|B{RjmrL DU(B-{(5e{[) }ސPZFi<2l~Va Bi!gZ%CD|lV&gV愋H`Ԕ.3c ;RSw6C;RPBHe])zQC޷j->S`QZFmzP X]0^kVJ"a/آЛ%isO}ԡǐɩݒVQɨ)G+Z+©):59er sjN;ShW8H%_PF {vgL5TE s[g[?6 >NX2FdJ gB$(S=! JF1Sv?Op23x;Dk]Ԝ\Ĩdnr3Cam13jyc<1Q(-B e8D)D(+vwoc#MFr-g*ccBɨ)]|Ԕ#b̬>JAR(mSs 5GMJU8(}ŨI-FI쟔20(B3 5QhP2 Kxy*۽㒒R95X-sjPe2FPvjړQhCB$2Sw2y7pV+Xٔ>S_o(-F^Mԭ_P9s[}VK!S~_GW'3ULO?:lnw6bv={a8lٶߵ6>ILA߳x>]߻o>?T`b@J{?%FҔ(x<b֧}?(/v]gd>w|7ӗswB5xhR% lxh+FFmWeNP\vԧFn#?-Ŧ}_A*3C;]+M|pFbb,3$XW(zNc0\6o@}_2 ]$C}A}誮(*(Fm|J޷B]}' |_; VztxhU)6BO_-æ}_9?X`ԆX⏣xhE]G$re)O/KٶOC? 6=l_^?hzeS˦MM/^65lzzeS˦MM/^65lzzeS˦MM/^65lzzeS˦MM/^65lzzeS˦MM/^65lzzeS˦MM/^65lzzeS˦MM/Qf QF9U"krl#}ؾb08r>GP255+PM2_cs |Y?O?񭜯Oc>s2L3?e@࡝u ύش̍as߹L2S|< lZ׀$ M'8Fm'e,0Oxh :RlZtPfM~XŦ}Rj#Q A1bb+ cw7A^)aUfMG2/tm}Yª})6oWb,3#R|Fq{^뚇{>뢇E96"E]q|c2Ǩ19$XW/pm o޵vإx.pj'{ g <H1jSe1b+(61b Rki~(Ǩ19/XW186-7h|(3Ŧ-g +Z# mY%O'mB\׀ش'#}1qYd86mWQc,s|ruclc+M>TvUW}4rl_"Li =F96m>œc crZ оc]AR|FFs2<~̱ie_ش.cqccLruFq~Mus๥*h)Z=,j>Y bӾ_}OTclPZI(ƺ>H1QE'Cブu\uWzʱi:cu Ǩs$PMSJ딢@U\r±i:6S86cSNcw^wj}S-3Ǧ/a˜=c]AQlZݾ[n3ǜ$ 'S8^hC_ XWsmZ1Ƈ2+'Gmk3% Ŧ=Z/Re>H1#MOFZ} 7/Rexf Fec|B\[кqs=7M^\o}2W5ǫZn˱imUr{iB$9Fm|reXW)6qb R7Mwy¸Be1U1&9FmZ> ھyki˫fs`Q e½}yQtJKiג/FU]qcc_*A@K Lڇvk+AqmGݾ# C+U]Q)iq <^n0-ٝ7Fm/ύ#Aic)$zm>Iϥ~g~.s~_m2;h~|n`F-C{uEi]A]Q2ܷXW)6-7h|(3Ŷs uEB/(k,-:wI7,>-Hx~g~)oPB/0>7XWeb|M_6z^i)γU61&9Fm cc*}1h)2O``KІI_RlZe{r> P5A4j)AC)6B]QІ(Fq.^?y*(Lia:)+˜՛PVZʔQo:r\}L&Mp^gb=}!W'{؄ c|n(8nR|S?3W5 c6= WKq j)شc eɺe~5hL]PFC#A̠/Ǧwq/c]%Fxo#;m{|[Ͻtѕd羽i ]~ڲx/p^ c]A1WclbXÿ667:nasغ̒06=kCt!9~>qcxc]1y Z{ކzc9AB*c/Pu FU>ChX ϼj*nsG-U+8Wp5RZI1$F18CALR 0Α(}cӲP]χZ{ X c=w)wӥ=?ܹܵ/Ko;Ǹs畎cVM#qZ`Ӫ<ZyǬC+شm{ 5eشm=c}ZQ].*\^$0Q|L`crAWuLZtpg>W!=2S6_[clDm?&wm, 1j :eu܈o\_qs߫qmN7}^`s5C/{˽êʱi݋=9].L]ܙ39Cqg(/v{mooNәr~?AaRt}q!i}YD<ג}HD0&c]Fa" 0hiv̢}{Dp cb^- M*bb,a^\Yi'e7 u&cɋ0^C-CND2Slڣ/AúشAQl|'FclPZI(ƺ>H1}oj@I?Y~7Do<"Z'z[r?(N86o0oo,, 6 ~p8Ŧ KMOo9u̧# |i>-~-햵seplZW1&96mrQRѠ*cxccױ!c~gULR{`\3ϴoܵbߕ&&{jӤ$ˉiAiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiTiԉiT bԉiTiԉuebUbubUubUbubUbubUbubUbubUbubUbubUbubUbubUbubUbubcөrkRgtן ֿTzn<>23` ƺ/ߟ/`f|yh9uHs}&F= d`~.mTk6sܵ}&+CK1jm?o66ph6G6O}xj}^;guGSN8>y|e#oZ\cG6_0U3Vݾ`#+160&Ƙ4mKu۲~3a !1wVx;fN≯vQKa xm3N?1}71_s~\BeBhH࡭#vqEaL8{A;e϶Y }N7 [HP<c6XÛ 9# r=]bbۙZ6S|$0ԡ#|LfeurN(^M[QZ|좉'x$xkN'9M<hІ78z"{AX!ՌM_iK[>H_Z%1k{ 1A ^Au_3\l?uia(ھ8?ZpOڽC;_xh1{oQkca >8F0)mUFU*f!-]7緉av~} nncL_/k"zhS:W8(F6۹1]s81-|h3C/ƾѮmO;Coc126vkߵi}66Sw%tek^8y13clcc+; >⡝&7Ŏ#q㡝 Lqjd|n)ڴw]n4OhxsX}G1mJa(׍2e죴 οX{}m?W_x\kv?>GoІ|>.e]j ,oiˬ>KB^1=E̮m9K3^{5/us9{׽`ǹ.>{u~Q-a{v}A` u~߫,+ zFL` <|Mͽ.>{uޣy36Ѧ31dJ__cW#I6s|>< xvu Xh3C;kѕKWKֳk3T,_bB?~4Ș{7םxX.>{u4F3:r #6#u<}9םs |d7x6m()]9QY]ASG=dS+g|9~=|>tӰ ?wOx4otiXs]u7fJ`lOr}egq`QZt}2!6 5r]#[W6 >h)ڴ},äL_Ms! ԳcaRmK7tNqm3WW= r̅+7y4C{Oj[}ʍ+<>xZvڌظxh/p<^x8F/pm`ݠȮWclbIh|XUsҜ[ͱ$ǯGVzZ#9Lԡ[&=Ȯ^UC^ӻk9Cl画ޡWk6{TrsTNCZwF-&Z)MZ< ?p/O}n|rʇ*w[/(xC= nka`;jslNqQ9FEqg;2os{x\[n"mX9wFm"մ 9K.Xr~K88ڦyyx^]7-]n֖-Նީxװ͝su{>"jkya3-7jvVzw`7?6}tn_tFNt5t˖Vbt\㚗/g t쮍YKm >3<5rA?ԗslq"P_OW=AwZn ;f;#fw;т둩8דxh|9 Z(?ԗӇhPO}Bs>OqGmUi9OqDpgGp'Z֛h񡾞 최C}954p(?ԗShQcRg N 1\(u=-j}ήq:Qa:5r~FΝmv;t tqp6rvwmw}wߵܬq 9󡾞 xFO!R9?SAr>a%p}8wreΝ^7sg 9we6<".7Zd^OvMPk _pv!k*rFj:Gz-)"ժZN;l4p(?ԗChQcRg N M"#ĺlᕭө [jh^hկ故/{eʂWWn p镅,H,xeAze+ + 7^Y^YʂWWn p镅,H,xeAze+ + 7^Y^YʂWWn p镅,H,xeAze+ + 7^Y^YʂWWn p镅,H,xeAze+ + 7^Y^YʂWWn p镅,H*xeAze+ʂWn p镅,H,xeAze+ + 7^Y^YʂWWn p镅&RQ]تچs9@Ry;VLd&d}Ce&d&~L|r&~T&L|W7*3&_e&dכL|z2_o2UfM&L|W7*3&_e&dכL|z2_o2UfM&L|W7*3&_e&dכL|z2_o2UfM&L|W7*3&_e&dכL|z2_o2UfM&L|W7*3&_e&d̆כL|z][gכL|z2_o2UfM&L|W7*3&_e&dכL|z2_o2UfM&~r,ݞ\ډsʏ<]jOM9Vo8-+GVbqZY5;-9FPGi#+ V_ҡҿXe"(br_,ҿXnEˍHb/_,7"ƿX/br_,ҿXnEˍHb/_,7"ƿX/br_,ҿXnEˍHb/_,7"ƿX/br_,ҿXnEˍHb/_,7"ƿX/br_,ҿXnEˍHb/!,7"ƿ/_,7"ƿX/br_,ҿXnEˍHb/_,7"ƿX/&Ro2R)#u"r_ѿԌ^p0R)w[7;-w޺a5Ɲ[@ʼEqpZN96׾yYHoJe8/m~6弴M;/b5{%{ekOA)>cߕ =3φ!;aUZ6ܾ  7 lldMf&n2n7ppɆ̆M6d6n&v 7 lldMf&n2n7ppɆ̆M6d6n&v 7 lldMf&n2n7ppɆ̆M6d6n&v 7 lldMf&n2n7ppɆ̆M6d6n&v 7 lldMf&n2n7piɆ̆M6|wm 7 ldMf&n2n7ppɆ̆M6d6n&v 7 lldMf&n2n7M:r8U@dOnç;h{DSSB5yDt ZX@,2]+]d]d; 7ZV9KöG@P>M:7T>M>q}梍??/~>*O;_~_UaM y|鈇7=;+SpNP83]wiydRhRgGMyj:}ND~]#fPO9;>ww#=[|;-_rv[~N-=k wF cr'ZHe܉T;iZ1Z,ke`7Rgڿb?>{|?]/~S»k9O0+{5OsL~)Dj)GF,5>a_/è2wR;bZ?k?iFPk0̂-L#̣)D =euGⷜgt>]=鴜r͵rsmu|{15D꾎_j%;/'6 s~kkz)F Fu%A=S쵙^KS4|a4jƝk\>ƄJ/| mw}wߴNm#u QO{ h||}Z0?{Kvw/{Jk:PoʝhAukKZE:5Ռu߇_sG ;;8έ|fT5]qj"ǔYz%5<wZNĹ3bр-P˷^SmI#7wF,c0x7;Zc{*G qݿ^1HD5C}|ǎ?3I9ƹhi9D*Nxs)`4`)?^S9ƹ3b0t36S쵙}KgPO->|6Mbn4WeV9;ϹQZofwǺ ƺVbXFRS~rq+Zzw~w.{\M+3R.Xu-9ǵǨ}mW{C~aοöo7<_}a޳Wҿ|SOGU먂y?6xt8v-4.F}}訧ppmC¸i立Ug}] wݧw׾px]]7-sN9GYb,Y>x"qm)Q 3k᳼~]/5C= WzFk;jߜ;-ʝ^J3bр-|tx;Fqz}Lpgzz\ .L}gw~x|w)yXm炟_2^SsZ>핽ӫ8;׶"kڂ?iZ,3bYwmc|_]7-G3>61Z(?SxS~<6hWVEh9GG;jX[nrk=}ju=KݖS~ nS|ٻ o]{pε}:mLa][G&93מRM36_?"{+_rPsËU9 8w 9‚t߽6>oZTuz9oGχ⮚C=i`q~1ir~T{aH]z玺c=_t;9Έ܉TSH~Z-C}6^d)PMN2,O7_>J2.k1jOs]#Ro|931Ŀ[rQ6.hO%rZj'x-F{9*)[Žxes,saZ{R3]u#IA5'Z}s$]Ξ@.VdsŘtӟ56; -_\,0a;{xh;̫v0aXv7Cgyj GrZ{H0f{WqV=Ff  tVzmfxhaC[Ϸ]1b c1&ƾ¹CMЧQi͑Q61C[׳܋I[yC[:l vaCM èhS> XggwhNqxh79>\-~k3C;~{>y_ Cț==cGk/lߤʾ1=Yccڸ]1iSc~$;#3Ň:T-5py^֞$1b+{{CAZ5 !^_1|hgxc0j166cL2}sa#PP F;s,^>J{ !3C ~y+;1bCގ Ź}AQsal39 c_Z0 cla˙ Մm_Vs]ԑ{C>4k3Ç}CQ \/g5}exB$ǗC>Y7(>c(Ũ~ K18FemfоaGk}$qل*>UjkP|<} j>Ou1OC>uŀĜmfWc>H18FpcY2ӇoGٌW x>k3ÇO;m_av(YgOH6vOH1j1662}fN{GKx8#h3ŇV5a(F-fI`.Pc+j>{b \wK׍*jZ~rn8W 1|<ߞ6 cal3p2csSyQۼ8F9f3y=c~:sC7v06d Çv}5i >19 Î f' ƾy0%cۼ|@^Yύc8>˹.>{eW֫ϹF' о?/Cs~Si3C3_Q,g>+Ъ,0F k9Z\7#Nh~3FmnΠeh)}ZC;%"O1j>H1c_e 16P0_hK°n3faCLRڪ~47 ҷh\о?.)F-yq9)~ݳ2|h78}E^>Ũ sb+ >ҟ[;}Ű58F]fq5A Z˧ 2|hߟtX_wa>e8S~ 8W h j= 6S|h{;'bB?_~=vN44PKBRqs:k;Ck;Ũ~fی0UR<emfxhsgÎ֮>M{nNcrfmgoW m>1bNj y163|h0jOڜbxG{0)Zj?>6}{Q;FiyCvn^;Ҿ&]7(F  #G_]|Qq / ? rNY>uLjaԂB10&1g1claIl38vDI7x>c@{@;ǻQ/npi>G1^~N7Ͻ2P?SW9t3|C{ :9Qikp @w8Z6O }èK1~*c+  >]!N_1h8193~i6- N\Q?lw"xf~Ч~7ٌ3+u!6(ƾRP?SWy, ﰾi˗ǽxfN 0Ç͕ ?c1&ƾ`X16P\Np1{zh3绕(>oyaNlP|zIQ sbl3A`SckebiGǪm3.C;o@fw݋RZQmy}p Y9" Z0fu}Ű{Qq`/ZubC{]}6'3v=J-Ŭmsj]w&&OwC0b+;x]((>ɾ.x]}6oAL7ѽex7lO<|cgQ|h ūH9caE1}'^@wŨf/P}8F^1Z1&m26iՖt.fӖˇml/;;s|{7g:1jm t]c9~@˱5{8ƾsc# >y]gC}q<4ALp|Jsvu90j1&6{ W A\QZᙛØd`0)>K˟/PsV<'@e|g,p`g~]홣|Ͻnh]m7kww`gZ,Xj{Xaq<-i=z{vzn|CnYpqܵeYOr}}<c ƾI~ώcUdžIЖ'uqUb-'&)$cC9i~C;0LJ:{z=^`l W[ALRXm\]&&6CW <1b.gfèŘdیsa+ g/|qɗfϸˇ|NB֠_󆩗)LS\)bmA-6 .rtŰ2]1l{4BmMn2]1Urt0F-Cl1iɍ]ť`X61)>nQO0l!63 [kg8[4;nm mvCbal3jBx_M_Mn5xK9 0u;^!CӄvI>XiInBU$ El!}e 1TW[}$MZl#T(F>楀CA;lq^(>Yq~ʹQJt<63S< ׾ SR([4)7W { eߋM RmCLg*CL{I{Oab 1鴙a?S 1jMNUگ/p8Y+c? e 똰=ҾįojgȪ1glF<2o+b9cDb 3}/Ra9NYPK0s҉+FMcC7c\x;Ĺ@}`GNZ|xqu6p 9mK8{1̣ƞ=&^^[Q_υ4s}Ϊs #? ]~KnOa99A]T}N9A]T}N9A笺>gU9YU}ΪsVUU笺>gU9ϑ1`é!J J1G08q0Ժ6ʉIQ[`lsf 4cTd ɩ2 %Nz$5E)ZuMѪjV]Sk) (k)ZdMѪj,RpU5E)Zc=5E)A(78F-֍TU7"k8>㡕5E)kW]SUh5E)ZuMѪjV]S5|CLںF>wmh 8F)q|hs8ƘaOmL1$W0FpmymkLg@ ժVY^5/P1Aϋ2uP?3p:8>cX76:UAjuPZU*`?[A/:c?MAmjuPtԦ6]:MAm:ꠚj:ꠚj:ꠚ1tcRРnbB-XuA cԜPuPjN(6C W]fk)^L=l3Pյvڭk6UڭMn5]TVӵ[Mn5]TVӵ[Mn5]TVӵ[Mn5]TVӵ[Mn5]TVӵ[Mn5]TV[Mn5Yj6U~3}Vڭj݊Zωv+ڭj݊v+ڭj݊v+ڭjJv+ڭjJv+ڭjR49}ۓ8f.ÎnQ q[ڷAQ 1_1| ڷn1 1Թ1 qU_7O~ݮ͗bCͶXTYfQ՛%]oUYfI՛YoTYRfI՛iho\oVtXwwBh.uN9"Hv GZ{)AFy˙>H5T9]FQ؞1<(+Ri>J]zα{mfоتsÇ]oT#3F C#>7ٛ c}US:w:zWz2kuAuRuԫuRuԫuTuԫuTuҫuRuҫuRuҫuRutV굕a_ս#5k @| #wQIMv Z Z o/! r}+m[|׊[$ؖN’]=-e 3꺤E=a&EIOX.Kc>躏qƗ,X0q-ð;0&0UF-&0Kƾ’{qC &eAr i3ðOg%u7+aRwWM1F*~3$#~3_78$K|}vèGmi5gOSιxhO}?p|hϘ۾%$ c_E(!aJH6P0  a\1y\~V'7'm_v>Ftsw }5!Hدӵ<{T\uKcKƩEQy[/ =hй.u| Ƕy1{sp9Qϴ$ ]4jBFQyR?lsv~~B~,Rg8uz{MYZuʌ_OX6ލzi n2[^0h}1FsQmUC{=f.U,5#6.%NƘקӹ ֶ[g6M޸1ꧡA[]on q53P׽PR7\pKe fHG:iQǰ=bH<σ`A0j<6;y}8F1[%Pϗ763^ר:jEuE9j!d w3wsNeV:mZףWjO?ԪNNȗ:;/|6_6o"K-_YH1j:*e*1FQoДih,k/`tS:xk,kkj/Zy H*u}F9Zhx\-çg{Hu8>~tݩ@vϤ~8j8j_d  >f1QWpW7Y<(+g:|0:snA͹dy >;.I&=-ÇE~_u/ŧ5ؚke86 /0Fy` -o ;j \63|^{_YQaF=v92{a[~I5y{+\Ͻ~uI ]˿~[.<9R/9ލ>269ep~zmKKuXhǨ,b#\L+t_ylK`evr/"oZyOxpj FmY`lswܔJq w 18 >b#x \6x>ù?7=(FѱQTlbeWWKk3Ç:8F-Z{]T6<|80y%kN)>|gQ \z ?6?{g%|:O~xq 2|hs_o{0 caB`0G=aƷi/v Lp|WW ;ssʴN1 -o><##Q ~q)Afz洙bbY%7Wi#l2|h뻆+.|7g 0(ƾyD1 ux/xhK{-b@RP`|bB@1`M1}Hiƹmn?Urvu7W93CEЎ!#i|vXV;3x]ɦbl*&m+Wt~X{aM(><ԋIvSn}z)n@6(ya}m~}Q kfR}Aq`.PZtU 1AX76!U(>yf~":VC;md ~1 x꫑]/>\c9~~,cڹ1ٮ9c_ٵCχ͸r*1m1b c p|hIn|s A)~~1M3ϯ5Ũؠ 1I1q`m&SՎa8nlLZ[9Yױ: ŇV4Pp׆L&qͻQ|hK<ߨ{Ũ{f~a^lm6eѱ_⩮)ڧ?W_xZ~~O?kӷu\fRtbX:Q&eh'Ƕ$!\w3rsְl 0\7P?ze~Ч~nsʞa?|k_E]v n߄g{^Rs3zge(Cga_QZcwHƾ9H1j~c>˿^uaG9a~s_.Cڟg?dzڋ+!>[%u~ m;uFyqzb.Wx]}6no=~s~ƨm_/L;ZvLMQ'(>B1j{0{N1}scڬe^kW? pƇX/.4hnB1j6볙 WYk{mf,a}UT_ C{HX')>|űIQsal3(ƾµa#\c@- Xh(=>sӦmѢ56S|{=-CoSߥbBLRmWpOо_;p<~D>Ŏޏ(6ZG19Z16uʝ\ ^wf}nu>A2.~^~w+QҎ2"/P|h Gi7ow63|ռL1j7n:p_оp xLhol6Vmf溦u ?mަ~6mt?Osp~Gk S{].w6hëjg!s|h/7I?mGsLM078>=Yz㡝yIvo1c_{ 8F8@m^ :h*Mh}й.g+ࣖsl_sa]U1 caR|M3p~t fq}es:qP˰3̳uf)ث#$AO u60 >F(>ps_p_ p`+16P[x~d<6fm Sd=}gkwzxhOULJ^NRZgͰo X1Q}g? p`Rh^bl3`RcZ164L߽.>{u/8 xAq^A܏8 `\qܵ{ Ǩmh*6/37yAmk#^_Q< xcD1j!6(mvbbW\&7aNpu'|0|0͉#?^c. c!]>ѻՍp}\ý&8YA WqMqMqMqW[#+{ה״ה!ִה״ws]i5eĵEqNlP4ȸV҈q5eMqMqMqMqMqMqMqMqMqMq7є״ה״ה״ה״ׄ$hZJ#&8'6fcYqv? #{̛/38ZZ{ދrܵs>mxh_ur+h܊cch3VؘMcL˦L˦LK 7aZ LU2L˪M˪L˪M˪L˪M˪L˪M˪L˪M˪L˪M˪L˪M˪L˪M˪L˦M˦L˦M˦L˦M˦L˦M˦L˦M˦L˦M˦L˦M˪L˦M˦L˦M˦L˦M˦L˦M˦L˦M˦L˪M˪L˪M˪L˪M˪L˪M˪L˪M˪L˪M˪ǪMKmڴlʴlڴʴڴʴlڴlʴlڴlʴlڴlʴvi|y#b><}E03Kݬ[mYz/mbo1ڡ7=^j)sۼw龜D(iX{wmbŸaR<~6&)c;npa+16:ɱ+\9~?hW\~ ?۸*Ec^Af4yvUZ;GwO^: ]|5sc݃}myı+ 1{(=ƿqwWۋ ́cc-c!z㡝'w50&9ZkpZslۼ/vcW;451rbNLRP{Ԯ{9p1z1&9(c#̻p_:?ܦ=+)> 6g% ѧ7ag/]{x?ӿo~sl_sG֐N~R(1S{WxJب*6j>Mc%-C[Ţ6SדNsd1zhq<$349ߋ4lh{(A=2zk36S<c /Cޯ`lp c. ՌM_C^1^wO>'׽_Lu~߫ܮkcrieq(+Xoޛq4[࡝f-0٬C_ܧ/mjhj ˸?_4ڰj)fG&⬱߰_=z#w-]DXcwx}E8eWv/]st ms_`+ cZvm8(v]͞K5_8FƏ KcqƶAxGoT}]XMY-tWxhu6t0m>V࡝6_{wexhWwmR{3??1)"0j>ch3e6aln%0ƾ7?lЭqi#0s!H0&)yrs;2 b# BAv2HpLC=A;A_v2a|9i~/'x]3㴏y53C;/&68yr㡝n8v}v} c10F>s 3t>n 9H1j!&)6>qr meY֋w˨sWk&S|?J&}_ׯ]_O???^ R̓/%'XkXcbmqyY|6ϲd j}Tƣ;{t<&pU_]GXxճu)~߫܍g8sw_0o= e>b["z^w_2|=-]kǫtW_ekAq@KL8b߹޿qbG| 8Fq|NgzǷouz'(~Lq$†w]}~KΝѶ4=D1^bb+.>{e(.=^ Qg|9>B3z’W)Fmu՞v8ƾcum=ߖu 7Xh3ů⡭QZ c_\ȮW?}!U 6ctl:AnK82E9ZyksZ#s9x}+#&η8=-ůL8RCޏ8F*M[hs _.7I{R̅ oLc4AvUw2VKAqE^pu x}b}bl3(ƾuCvz1ht|UXˤfV|9$ůBю⡝3C+#zQNrZc;]`+r9WvrZc=c+_ql\q=Utfja< =Rvs*<~p E?W&-ãfג֜)r to5l$@RA-.A!pPR! 㷓?n̖8A"VtH}N'ł#gOC#LU־\.us_'zKυ]??/ωRϝ"wo?]N.=3Oz(!lIY6Dq\:g]}{7 ~_}gDO nLtíe&:7&:nEMth1t-1!R-C/Jwq֜V-:W"XrW=~\7vᮢV]}eqn<PrcDZb-Ǽn92kqc(Y zxql^H=X_OOa,y?x}.umWD度_D7[; }~gq2Z'?PZqmZsN/\ݸo~Nqz=[|n6ԚO:ȼ}}쾃_l.~ݖsno |}d<|p/%Y.ѡ֬hi4Z-bu4Db%wL -ٵ}=Oh1W7-%"ա֬^w{sê o t#OhsLFp/IvO`(O@prsup[rsr5w{=lkdZ;b+3AqBnP' B}˧5B7HBGw 8aQNN('l'l6 [ -}22Nh%'l6 k:pBSspF9a 8acШ5_Nh՚'jՍ8aQVN('l'9aEqB+Z\ ^sL4 !$k'l6 [ -rpF9a-rpF9a 8aQNN'" 9!rpF9a 8aQNN('l'l6 [ -qB+Z$gr9ㄆ[1It/f\_nb]}~}"ٜߑB6c1-auu78ftQՃUTRjt~ RZZ)]]րVJWk@W+5Jj jttR(]m]m6JW[@W-Fj jttQ(]m]m6JW[@W5Jj jttRZZ)]]րrw jttRZZ)]m]m6JW[@Wf#%'%Zsf/+ O#\}e㚯ߑXø*ϐ%qg{_iK\(y+e5`ҕrڌI׀IGLR&]#Ht tLLQ&&(I׀IWʤk+e5`ҕ20Jt-20Jt tLLR&]&])nnII7ʤ[e5`ҕ20Jt tLLR&]&])I׀IWʤk+e-`ҍ20Jt ֮VvkW+[j]f$|*U$UakW+S6JW7vutuN՝=;{@WwJW])]StuttRZZ)]]րVJWk@W+5՝Jj jttRZZ)]]])]StutuN՝=;{@WtRZStuttRZZ)]]]րVJWk@W+5Jj jttRtutuN՝= ;{@WwJ8k3t56;{(]]րVJWk@W+{@WwJW])]Stut5=;{@WwJW])]]րVJWk@W+{@WwJW])]StutuN՝=;5՝to VV+~+][JW`o+~k{w+~`NWߝݿߝ2RgVʤ+eoO2}](&Q&LzLz F02-`e[7ʤIoIo(&S&LzLzN02=`;e{wʤIoI)&S&LzLzN02-`e[7ʤIoIo(&Q&LzTy 4w)FL骫O7/y=4| ڞ>ܻ:>ݢC;r~衾 ycɱd #׍#`BPt=؅bP.;݅b v(&Q.LzLz ttmΤ7ʤ2R&LzLzN02-`e[7ʤIoIo(&Q&EF02-`e[7ʤIoI)&S&LzLz F02-`e[7ʤIoIo(&Q&LzLzN02=X[w+~`NWߝ݃;]}\)])]~ ~]n+~WJW׀]])]]Rtutu JՕ5+k@WWJWnn](]Qtutu FՍ-+[@W7JWnn](]Qtutu JՕ5+k@WWJW׀]])][@W7JWnn](]Qtutu FՍ-k@WWJW׀]])]]Rtutu FՍ-k@WWJW׀p]])]]]Օ5en](]Qtutu JՕ5+k@WWJW׀FѲRtutu JՕ5+[@W7JWnn](]]Rtutu JՕ5+k@WWJW׀]])]Qtutu Vnt-X[w+~`FWnߍ݂]+~Ww Vt]])^)uFF[0LP&LzLz B02%` eKʤI/I/^(^&P&LzLz J025`+ekWʤ׀II^(^&R&LzLz J025`+eKʤI/I/^(^&P&LzLz B0i^&R&LzLz J025`+ekWʤ׀II^)^&P&LzLz Bݱ{wt5ػc{w+ݻc XkwJX;Vwݱн;`ݱ{w,t% %K@Jk3$?6' %Kf)_R$$ HJI% %K@J//_(ɏe$ HBI% %K@J׀䯔_)_R$$ HBI% %K@J//_(_P$$ HBI^:%X'ukNz`JI:镮^:2RgII/.Ĥ:Bt tLLP&]&](..IIʤK e%`҅20B02%` eKʤI/I/^(^&P&LP&LzLz B02%` eKʤK e%`҅20Bt tLLP&]&](U.%` eKʤI/I/^(^&P&LzLz B020Bt tLLP&]&P&LzLz B02%` eKʤI/IIʤK e%`҅2pBt t\86c%`ѵ9.I2R&LzLz B020Bt tLLP&]&](..IGR(..IIʤK e%`҅2%` eKʤI/IIʤK e%`҅20Bt tLLP&]&](..I/^(^&](^ ]]| V/tu._%X]K|˗`uBW`uyK%X]^]WJ e\](_(//z|)isE{)j˷j$~4}Ge@>T薻o(y+6]nu4#psW#X}+_euk>{L=;=<{ҏCOU='H$:ةBu-甶qjա%?ܥo`]F]ǒvy2!R]߾m-nD knD f~C%tWkgW Viωž}}쾃*!8S7zķ2TקR+F.{O|>>{eD}ס֌^bKTe{ƽ->ܻ%W۬ՎWn->jGd_7ܐY:ܘ:Ԛ12:1*:D1]G^E%w泽Jg{U>\}yhquÍPr:ԚC]Z\NǭnrL3#&Tډ2ex>ݲE@_7Me2ΛIBPk4irv;wPr5*|í]}[i=jfD5֌HYn%?k@סNU/Nuh1+]ŊTW8~,3lkG0j#R}}>[m/3D>2Sׇ{c~ᆧCɍCC-f7x;קϰ}}EshquÍPr:ԚC3掀;;'^&VV/@|Hg9zeTRV(𾾆ZOꇯ]x{>8?yOO?}/?}rYg7g .ZlKgy, ̯őOYWvy^nOu]oy,ӐnWSzv{:Y(b:<պƲbcf]uli];DvNe%w[ Xk>zAbn#Z\KnDc>_ >Kd,{o[Feu׌bN%wyy zMOfެsO\Gj#Zl1;~\b>{uu߮>ݲ=]p{=_r<; m z/4E" Śjp~EL?-T_و_V]}wz`֚?nչG-})ھ>՜bn x`#Zv1G7R5J)Fo_-mG/U-T֤kmF悾n\;omrHzݧo\z=mZCvG܇{lךud,A>=YlEǒ@t5-f]`էF \r/p{[7ZLsvÙ}Zkޜ }[/bsVnW{Yѧ{}բ|}娧n_ǒc:cnWC4%wc&֚[n|h1c瘊5&jޒL>גu]m+"쒻w11;Za2ny"f0G&tY/z=}lnW{Jg{D"hX 7̑}Kߏ̒_u5xHtl1戎rQ}ϗ$9߅3\D?%U聏}):w閽fgO}c,y2b̄-ٮkmq[tއ*`޾>ݢA{:޷2U9xe>#}}hק[~=tnanO%L}}E ױp蜯%:Fa"4ӝ޻Y%w;]kj:/{e~Hc]ן^@M?~~fl:s{η?,b/˵c$s!,ZnW$Xך_KhԚn߾n?H$nP_7Z ݮ~hܷ|=j-wYJnX.qcy"ʌ5W q=^v;W\vj.W7F]NcK^Dz.wOGZ돝WĘק; $jO W7=~,7(9-wl}}Kn3_ *s5Wl1W7-n#ՍZ^Fwv fJ-vZ-{\A|>܍|pc6CXꏽS^_nW-Z~>1_7PzZYEԚv_U#ׂwN_{>eϒ8>ܵ׍}bxR;gߍֵ],Zv;wPGXjD˱HqʺոJyYƹRaL=hg;6"_n1n;7-yN2:s>?&ٜcDn[ωn\D7jMncD7ݮ~HĒWB%g=D,CO"Zim"ꯥ>ZSxط졮nݮn^"D78N׍k*It.OXX]%Ǝuyl1ܲ2o@NՂ硱r }zt\%nYFYFP"0-fKt$Bɳ|lb.ܛ3Jޮͥ=ݔZ})9 <$XkC}pCQrxQkޮnĚт`Xrܵj̸ #&Z_),:UnO&iuwlP7JK.rg}KS(n/?Bc5'w??]>|݋/2;N||wE,f)ʟU[_l3.Gn&mq R- %r^l2<`A὜r"wUV,$U"c$XWLdl#5 2x A^O*2bÕcÕr<"!6\yxeQEBd,sgJM"m&/D<6x%ܽr.QfWWF]~m{9ӈ WF/Ĥ+c/2AW6w6 O㤜)@8KWZܹWNR7'z<Dϗ~DoI.:H31q;+W9Ou]nYu#Yq=NBH+*RǤ/+ܽE-^ J}ˬ/c]i0F:}c#ؠ1 ^9UquVkܽ;ɝ|I<2`8|Md,3Jum1yldW"肘T^`eves`"GF<9peBL2+c]A\J7}M9J>*Q1KPׂRP*'(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J Ru)* J C TP0(U8* J RC TP0(U8* J RC TP0(U81  !!FFĝ{UE27`N 1x8qx+woPE+wo༎ so"jMDF{ +c]Awel#迮ƍJǫe(Hƕ,|y/(3Գ+wT#3ûU7˻\bº+ }~y#u|Oh__~.xX+tg }y,y9U^SevOY-E2/c]ٗ2x]AAO DLb͹'VWM4>x]yxH] m} ו]yx΃# 2z7eֹ/c]]V]gje/HV,j!3eass:Tf\rҏוWLFt\z.X*\e/cs`pel#=^2x]c,I̯V,&5Yen%ccɓI_~.AxX!Nų/?ܛXf=oe+=h#1+*z;lx\ŗ̺/2֕m^W؀2Wd"T4 J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡TaPp(U*J RA¡Tp] RC@P0(U8* J RC TP0(U8* J RC TP0(U8* JxLwBHѻ*q^jRcҕ!ƘteoZr^. qtB\SBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYByBYbyBYByB\&ę%ę'ę%'ę%ę'ę%ę'ę%ę'ę%ę'ę%ę'ę%ę'ę%ę'ę%ę'ę%ę'ę%ę'<&+r߶ҹ/ÛZgWsʰjʰZ"OUWx2zXfGܽ 29Ƿ< OÃ;A 1x8#n'Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$Gl4Gl$_k4Gl$Gl4Gd9b#9b9b#FsFrFsFrFsFrFsFrFsFrFsFrFsFrFsFrFsFrFsFrFsD}#^K?fqٸapMOU+Y굫TE7^J+ꝽگމC 3 Y>\pxQ]{I{p*cY6T#l~!֯y}U6>zs>sWӗ?8Xm2"@- ]yկEiw dyv%WQ[?|"їrF(}.ZחJ(/woB뺿 ^WFuY{._e^xIl͝Ȣו\i}+pj9~x=${䑥f/2U?q UWʕ160&=cRywMP"\|Q+&{gο;ìgW̩We*Ldz6Ά[2Q*&ǙunP:aύQ;|yxkJ3\yр}Y8F;0tFxwg0T06>p6ul\|sJd+6|yrkG5/όrHz]yfX̮߰lԳ5=)x]Wr#+WdܿTQ{53RxV./o u[/ Bl2/x{_xRU4ҭdon׬u/r:F`|g7e}ULJQϽWc]ȕO(^¢ו?p^pۗW_=޾^=e,3u}ߕ2x+7*xTAoS!x={u2/^[>6r1kXu+Gו+Ws_2XWzel#û]Wƺreϫsf{2RmdmޣUA|gwyݡܽ|;&AmL#_F _2e+ݾm^WCC]yxE熺reë/c~tTT<jKd,JD6*:6\{˖az]!a~.]U:GԲm?vO<~x?o?r;SǨ xWG?%WUS] ^P=wBqY']://'y})d6˹+Zs,[Z(WknkɁq͋;'-m5X u; ͥ!]^Vp^+$z*8>{2h`f?;y8;}EF y-3<*?W 5SUwPZO}Y|TtE|*={ytK犦:u{/rr;[W}|,1SN>p/lOYgė& ԑPCz'w%FTw̯DrU~pnk:vKnu+T lHz]o_lOOo{ pp^G0]ZW} J1n]zL|L(5tsJU==>4J` 5[WV Ի/]֟\#AjǾ}MGi ڵù4@\C"[<`/sU(-OOB<TU 5WU.9SPֻv*FЛ'Ⱦ"4thdTbSE}1:9!WN1Sc%}1_cBiPC0&x*\" O$Cْ"ӑp\FG>> h8=u1U]f|f,5 sjWңV5yeztջ?]jPZ 5{BS!UDzHxjw NON$C?h|l#2O'DBiU=7fzTpz]cwY|oS),>ןxu D;=6nVE_:/ѿ7W??M"rZ>7K???:qgp5-e"6 rYﱨ>ܥ/ߝߖ0}eݕeɏQrWt\,jkOw,[Ԗ&LgQK0p0n\mtԖ5L7ZLmt#Z Zvk" R[,߱N}u\XrWw]}E}tZ1pnabj+G,v.,גHU 㹯=pHU%CV.p|E_][|KO7k{;(ye-%ɒKR#jR˂},nv=.dڻy(T{;^T'O׍V[~Tn>͗dzV"X:UqXPf_֪[_l˃Oo2>%]Z1K'nWY0!t_O9ч[sn=!Qr=!QkINt,F[~ -5Շ}=͈WnQ->ݲ=L7jkb%W2ݨ5=!bzCt#Zr-z\h=} F]}g -O" R}}8uí.эkLt4&bnDKG*YYmHuރHiI-X?}}嘪nFaFFa4Re4 Z5Qj@]} ק[1l1WFHuuK\ݨ5+;;'X.Vlj++լJX)կʧYY^PVVVV(++++J ee%`eBYY XYPVVVV(++++J ee%`eBYY XYPVVVV(++++J ee%`eBYY XYPVVVV(++++J ee%`eBYY XYPVVVV(++++J U%`eڜJ %%`eBYY XYPVVVV(++++J ee%`eBYY XY޽Q3qýk+u:U}۪k* oOg{ef93sg 4A&i&Lu{$Ȕ_dJ(LE-E4XH__$/R/)DE E""Q~~(HH__$/R/)DE E""Q~~(HH__$/R/)DE E""Q~~(HH__$/R/)DE E""Q~~(HH__$/R/)DB E""6DDE E""Q~~(HH__$/R/)DE E"" #X+9/,#0bՑ׍ZHuum|uFɍn<ݨ5O7Z,s`Պ"t\aՑZ6(yI*%/듗4xYx9]b!zȐ58N\)2"dR"d,3E-BƺEFcBlKVlņ'|݊ O֤ O֌Š Otl@V^ VeXEXWۈ"!cld^GֹUfOT+OݭW2a}}{xZuz|]^u%jVnUŋEvzSCALyfجŔ *F(}danoBcmђh-vT#)h]]N^4JV]oucfk\է{jnԚ):Za;#S=;XJtYXk>r'FK^kR׵h[^nO7}vP}>ܣ۾}}쾃W:R {sZE4`pyTgݟSrqv-7}}E, 7}(9nnoW7ݕ-kmJLt{pym}pCn {;>tDn5ftXZsu ׍FF XrWrrQkns;si[7Zl6RW{7ovG jys* q~7"ݞ>ׇ{̨{;閣cn!Z|(9DF XrWn\r>FA;|X*֚ռO`3tcp~6M>Y[+{5Ѭ8dnwM2n]{k}e:<ݮ>q[p1m h_nO7{ϸ쓘duއ}f-u "$Xk>"[ZsuU38+m!wq_H{'wO_3-3|t]???//-Z+},c\+;K!>^ 9㺘P[^fK?P{G7EBT,ren X׽Mu]O2FX\xk!O5rKj1''Ï'cבwNJ]UW~+ :+OF/_W2z2z=eכw4wvC_^汈`z"ֳulcÓu~-}=yq5m{̮~>q{5`̞<נú־?zAWZlٓ.Y鵐ڪgOF/&GrlDF?S\?\WunC\m,D ѧKjMBq%_=fϗ YR޵wklwe.ϮXQZo]ד>tS.'7F->4tg ]yIΘL]=> :Wƺٕy2z=Aenx!Exql\ב[{^Wvm|z- H񁺒} c]ˌד=yz㝅(\5ϕ̐;2!iՕzF+}A& )U[qW>X^OdʕW'sʕ>Wo+ e+c]F0^2z=c,Iί,&=9DnbĤ+?iy=yAٕ_}}0-EgW2üݕ`uFy,z=yz\XWC@ueë*eXW]e/x'`9rCu=eg+c]anFd z!;ztf>P<2zZw^O~Ty|0ّUL*gVUs}A]N6VIGu.wësEItí%QrэZӻhT4է{5JÝb\}+T\pcQrTW7j {i}rY =Tz'OlOѧ| ~]e>-_3ܮ>eʹQrWvڨ5WC}o =toݞ B_7I:*tntU̫:3w|g?ܯ~z\w//7[.bםS=>Mk~e=}gjf]}p7*;ѧ[4<^nO"c[nэn|FȈnDK XXHn ~A[*=w}Gs_ncړ-bIFtí"#Qrs_7jMA;ýHDOkMvs׎Xk>rsh1W7-n#ՍZ^F>Ycg%w{瘯n7r@ۋ]rWnW0OlO5W7n"8c=k=ywt| bn!Z|(9D׍>}YczX-լg{>bg>ܫ؝=|}};-w1GOwW3J.kM/l1Wז#.]} ;2"Ս^-O!GW7J#-#тnW77푬U5Z=qmWnYp߮>tt]Ԡ>b:C# 7y]ɵ.tdw^5ҽ [:u޾nĚ-CK}D8Ԛ[n͸|h1hmrwHkJўv 1)Ҏ3@*nv%gF׍hAFcMXk-vZs;B;'#rtt~jS링O3f>rgn1Z\(9wlt{DO79j7_]r_nK|}E/u F!R}ݨ5%n|Nrau#aׇ;tZsuc|/-n1R](9W7j {-A*wD,9;7-Fc-ȁvnL=1Dn%:gg3ZhA5kl&O7ω|r׍9Q_NƇ՗T}y)gsOͩ8'V#2э3%nOwޮ>{|Y.v];ƒ~r^Bt亇ݨ5=:h1MF& XrFOU$pAismC]}I?DC](9PW7j Ow|c=}cu;PWC](n1W7Zp{-X%ZkKjx эkk2HqmO}g:"+5ˬTy{t}}}\34Jýns6֪^5@1jM߽}eޑ\}E$nO]j"h1O%Owp,9=}kB9;g%׼Favuplqu#ZFvoe葩(!c3cnkV1U2p/IQ>S>>)*O3l_7X,^sjr}}ƈoLOwz݉Uk>ldnT_7J׍ZF XrWQkn!#b-4kkb5|cpO>4[t{pէ[nwU{p"\}9D{J YnsOSWu:=}gJ%kׇ[Vn](9\]р%wYkn׍ -UTZjՇ(M閣=}ը%w|_i<|S}H;^0:pԍS`9otATe/Z<ʊn][zPk>KYknrC⨿ u +O_u!ԶO_Mm.Eݕ'#ѻ]Oו"l.]{/7}d/uot#ġg7}/O5Q*^1p-בS?0<X+Oka]y2z2Dpe+샞m^OCc=y~<}9ۨ+O6X0_6̯p'A7y)^r;gW^Ζ0ٓ>t_Qfվ21,ׅpe++ }~y'czl{=ۈgO^1C\y^hih _F>ȗuF0ƺ2z=Aeb~BXW]W@'CLehXf9u=yx< ex빨+Ge~砬 s ^OCc=yz\+O6z.F0>B H1#Xfz2+O~:WFo(N}pe,37\J1Fd/!ϔUǧ3g3 '>}MF0#_;9/Ou>Řd,~2Ƥ'cA\2z 3WA1!;;aJ@xz yc, zS Yd:OgC??ҏ!@?lcߟ T :wn3Pי<_Sx|fFbݥnqF2zuNUYG`=dž ^%+7}A^D+("27ⵦI[<=u9v!]8g+ ;ksS?כ|;뱋:M Q_鞇>ݘ{9WۗzOl'2zٛD2S?ua$Z#Wz|:uTU (݉ )SBo'}o4[\O{'y3⋵Nft#Qcd 7k'misD'}Eq';NƈbԂmPm 5AOx)A w@{];x: v~[i7R޵prmvolGe zg\e{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{Z%x=a+"ډ~.]߅2r~_Fz(ILIyE*))).~Hן7}̸??}ž ?߷ziV[0@ܴびkÉgZ{&{8xfv<ָwpxw]SpdžW_FmJ'}6c k؝]۵M:5vh3d`[hڳ]kЕ"kB֕!Y`+WG +#pfctkA)I_Qܵ1`c&)ƾ@1{PԺՎOLqxH`o<>i3];%=_+Q L1W0)~ A}L:j9>3h6sܵW{0Fc1jmpm61 u㇚v<BW^\M;]}wv8,b7m6wP|fWn| QܯkQk&6I1/v8t~2)F-}ͰP}k8FRZqBS@k!ؕŮ#'ץkmGiǣ9'Zv8efv8$sO"s0GN7Dr|9ڡ?wp3f?c_y?`wpd⤯(hmI`#W\xɼޮ@Rܵf]NF,f>'qGV,v1?9ƾv1vsUٕW+l];LVk8d~fv8"gAW>4qGPOqZlbl3/W0?`nȍPp{ho3]+]kݏǨ1$W~.pc+j]㨂>p(ڡld(﷭mbԂMRm@1Aq_??U)KvU]8㮕q ]+Q}$ϻS]) (2NkeDq|'q{XMrܴ:^Uܽg:_Ξ9h1C-0]Ǘ>Q@- ?S8h\ W~scZ6j'G7xdRܵÁ9HD fc_ ڕp1scmG~Et?շ_iw?5$r-я6m⋣{l {芲 ܿ>B#u=t=ޜ]77]dr]>sC-x>A{ ]k"0j~cqY`iWk(ZctW_`RcZ0fCI_Q<1r?Gx8߇Lg3_gLCg[lu;B` u9~6>@Y?Sܿa}-4RܴáE3{k}L=G`ԺC~6MR}A1_c9F-0:d+h~S4JWwRY+zb_ x~.pmsc+?91khl<׎mv.M>k3Է};_cfGx΀5-^KLq'y_4 gaowu~6>uo>d?|m0t u-6mF_5${' >Gq&,p]>sp>.dd/3-7y[yq׾ݞ9c1_91yD1h)~6/`]>rz]w8~}+|2|D_ O fRm{8Fm{7 1c_â1-œv,ϔE*p 6(~}f>R6팀]Qwsm/GM ?86WnPchmҷy`u1u8lc1bUΫWgtΞ9~}7 r$Ǩ1c_5{я-ůo: ur*ca.P} 8FUy7[9M6ڂ^K]*W}U1j:lblp}6I1+6@r&i HQ8>]^ <¶~^U?k)~}ޠ0p\#v̹}hs76>c~]No~C_/3 Kno?x_j-ڣ.  _T+x=^7x-upZ{1lەp4 kh13=m5}9WB0ޠ_Vӏ9m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V>m5V'c.Wse7ԪDKq?d~y瘴Lg< rWZ m>~]i7Rprmv96i:|i:6{^^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^f^x ^k|OʹvhߵkkwM:q}9d2ei\\_%#_:1:>:>:>:>:>:>:>:>:>:>:>:>:>:>:>q?@8bD3~olgkm_8F-M1ʗfgmv5(&m.vfJQ;ޮІ׍clsێ0Zkmsjka}wc֊~aqƹy(+'mq婖(yȓ6Sܵm._kcQm#)~Lӹ@1iA/U1`P,TE*UQ+7UT PPu,TE*UQ#A6CUTOu},SEU*TQӧʒ>UTO|,SE5*TQ˧R>UT򩲐Ou|,SE*TQç>UT𩲀O{,SE*TQ=UTpOu{,SE՞*TQʒ=UT쩲`Oz,SE*TQR=UTꩲPOuz,SE*TQ+=UT該@5Ey*TYpRgwwNSnXfTd{ϊOZ>Q|k!'#>S|b-ۍl֌%n7^8w[M{;[NyW7 }S~M}S~mيOW'-9F׎0>XS|b-vX[~n~s'F,յ սXGېO[n1DYcwv-oE"f!s}]=eVڍ.?W|kv*?=rv-?UTww}S_T|{P /W7u2߄/G Z@ K>&jO|Ou]_ށ"xW?A"|kI.dļ!ZP]%wٷ7k%O^NSmSmsԌOԇMvLܕP|k|2b|b-Zf-qfr%-TJkj3p(?աX 5Z*哖,|k8C)?uzOfAc^ͼcyݨ/9?vD依x\K%t[z}oCQ~zrm>uw-wkyM>}9^ /8?զOR9?R9dl >OԐ|r(s>5fs>1s'oE[*mmݮSKKݤnk `vSmg79?vMuO`'j|ry>5X9Z&-ZCmX❥z 唟ja ~T.2'jT'-YBp."#;u XǓA@q43(T~\Yr,\Yt+K2WnreIM,\Yɕ%+K7$se&Wd,ʒ̕\Yt+K2WnreIM,\Yɕ%+K7$se&Wd,ʒ̕\Yt+K2WnreIM,\Yɕ%+K7$se&Wd,ʒ̕\Yt+K2WnreIM,\Yɕ%+K7$se&Wd,ʒ̕\Yt+K2WnreIM,\Yɕ%J7$se&Wvwm+K2WnreIf M,\Yɕ%+K7$se&Wd,ʒ̕\Yt+K2WnreIM,\Yɕ%+K7KEVM'U]FE`c?T'}V\̛d$d}Ce$d$xr$~T$e$o"(#xGǛHQz8(,='-?r'A(37T/_ĿD"|9T"E_7 &d"/_Ep2nA/M"E_7 &d"/_Ep2nA/M"E_7 &d"/_Ep2nA/M"E_7 &d"/_Ep2nA/M"E_7 &d"/!Ep_7 p2nA/M"E_7 &d"/_Ep2nA/MRo"R5N,r11S3QYZ*'-|u&_0>3NvX/]ޏI)Ǽ˼y 2rCe%K3/~9K"RLca=8JGЩ.U`dfj1J&Z 1i6dwggla>;r\DV FLmidR`#R1m#j`̰ a>2 Q+(hQ2stL4 '8قo&ve&/rtJ&TI~e۳Ɉ.uCߛ6۵G3ۨG2qDKqqcMR 7G25b0Y&F ƾiqdR~Զ!mri;~0aW;=%,*N=islitz?oMZir`20-*0-:0-*(:0-*0-:0-*0-:0-*0-:0-*0-:0-*0-:0-*0-:0-*0-:0-*0-:0-*0-:0-*0-:069 L6gҞy< fW3-3lA Fp.(x_5J5vs s!2`fQͅN;cZ-ER4T-I- toD˧d }/_ÿO;\)kҎi]D)X]ryv@nK; ~)׾emgkO 8?\m^j{`gԜvRk'nSE,uzSMD }^R޻ov-^je-u]xLyT9姺P=6ZK6=O1= s'-oGx|^K$#+>15'2T'[FEO%ďZH~_L:2sʟk8k9:QSL;Ə~02o9>w #Cf#O^V O~l=T~?#eF3cFu N Zϩ#bP~lD^1GJkqmefgjKZ8-?=ZZ8?goS 'jʟp}km8vrmO2:1'jcN֒tej}fsG土4uއS>Z87,N7k^[5l%|=p\{[>}{~m>w7-x{K4@;1ր#FyW7:ys:+{O޻T[޽T'MZP˵eZAjϢ:5ՌwuCsqE|7ke{Q t}劜5^T[[^|9'-ՁIdPM[N^'FLOBo>Ǐ\]wK||iOo|Y"U{2$9?vsIR97C5l9~5gj?8̱bc,^-}6->{S~ג2U2Y^m,Ԏ7jݯ}]kzRS~sm8eIxvٜ9[&{3>DTwc8?ƎP?M唟jm竴sGs]ǷOZ^ȂɈs󉵤ksG^f`)?&^ #F6"Z 5Z*哖,|k8C)?wk{)&哿΂1-|?W6G=_|SGW{R ͖}-pݜvo0юvg)GTyvm㫹=xucy]ᇺOݯns{;M >v}QU'KsC/-]ymc+]>ubrA76z|q#Oz}<.uC_@gmጶdY>R||>4!LK:h3=.=SZX76mfԎF}𹯦=趣KTݯOfmfcOf0jWCŧ6>~SswS{Н&b?Mm[vf')ƾb#G m9g3 a!m<|}UU_qQ]GIO 9PϼdRm0/çx<*bcԶ4̖bl3c_ Y_gR< .W7<2)Y*U^o!gvp׶w3-çvtF(>ƟϽeW9ߓO  c@1 zE1jF6FbV6oWm˜̒mTͩ.S4:jRѪ_ZLu8q?yu#m.:G弫{_?eؿyW1{^Ur}j'-$d͈Y)?˰~rʻ:ag(?d(Z(-I,!Sa7PK}5OOWiMS}ϭ=R)/\'jO6|0i9姺  &FyWWQ>QdkZgx_Nϛc05GQDy̷ݧS륖9 ]/͓S~۷_}땗S]J,O|yםuiP'-woUyI_K#uW$t&鯦5I5I_M_M7jjWWӍn$t&鯦5I5I_M_M7jjWWӍn$t&鯦5I5I_M_M7jjWWӍn$t&鯦5Iu6>7#yΡ^_7z%r>Z'I+IJ+I+*Km~_O?=6OO_ԱW?Ucjîr4|yW[y~5W3~fߟM[NyW7*X?Smj-fK~oRUB|H8*cp>5du'ֲXmX~c^mg@Zv>k-ٹִwU?Ɩ|'j_-PI˽ >5_A#xWgcT/;Wk5O=FIR)'#D?}ݳĩz}4m9姺.8ך<wh}vSmyxS~xQ>QS>i91'-?S?}ۆs~Mt5ΟPFK|k|rT'ɈCߧ j+x['65΃4Ŝ\ 6Ou`Ϫ; TS~^mrk~}Q~^ۮT/ChbOg ڞ3W'-ǕIHdpE|b-|2媊hk^u+_yɵ)?նO)j{)?ղzԖ5T"?" ~-OH73dy:Cix/Ia9Cu'xk/⤀?N^|v9.'#l:[s7(fQeUڷ Oz lɈӟ󉵠zf)~T7߿o'@z['N99,h4i6UT[?{Oh-OZMp)܍N {)byq}9?zp~,|k|rT'ɈC]ug{VPF5]}.ON@Q~M=}1wk|FK|r%Oz g(a~TS@KĖ֊xQ';E$15x\OZ}NO-K"mM&138D<i9P'[.3pQkodR~Y\0C)g(^9F<35xg(%0C)|bOz X QWw|rm r~M76y_oMȎº渋jǛSmβ漫~GwSՋa~s>QcKQ56Tww;?XDxWoƫ\eD}MFjϖ[O-jx߁OZ'ɈBZPMd~Cwu h]iw9kk>YzQkKQ絫8ias>Qcvϩ31sλF|~0US~u'^㼫O`OZI |2bր-ק^|2'#Xq;[sCYbO^Ăj{4_a)?Ɩp)quQ'Q/JZxWWcKkj󬘨o=^ZnusO?OԺ' gIϒ`=giyWӀIq)ZTS@kS3>3p>1x -EK= nkw>]SmW=T3nՃS~-xS>Q>?2^y)hr/#xA~ZȂOԒzᙯ-oԾW_ ~ܮ<.S$WoYbacyW_ςѓlzgOT;{Dj>Q7OZs=Ozo'֒n%y[38Q32o9K]8?mFSm4`-O`A=|`p>5OF Vr:_R%|?]O+q=: }ʿ>)J1j]c&ƾB`X6PڜM)YfOzy_Q|j&@u ϯA0(6 >8FPZ&'m\uv12ܵ-ç)|,kҹ=3P7mぐB ۿ[dls?Yzv]M~wW=pl0,޼v8u!GAxu~6/&ϴl|>?Nh~~__<*.:}ŧp(/S'Ũ?bl3Wc_N1#6Pڼ{۰GڶNu >?ϖ}EY5-RV򉾲sai[/l'sbl3j6{(Fm{ge WxqPd.xj#ᙲ(_|6 ן̴ __ק?(!sbsbl3<(ƾua#\F@-hfsHx ֿZQ{Xu vձbg0/:I1j)6N1??X2|}{%a*cq.0}sb#Ԫ<|hE|ӹM徶`&7h~~Zr:f_U̾ èEd &1m*gnm0GTBZU@eڠ1gM*GәCßuRUiGG}S\O?:k d}4ԿyT[sm9 r7mYAi)nz?R/͹uwme=nNU?'wR=ףo09\fm0;}T`#whQۆImc?]sc&9nE$]{<8_gckӷZ3Gz2c_)vfw^WPqMrmDgWnliSس6Sܵ5ƈ W`3 Q 6I1W0)1OC-H~+ wf{F={6BbZϿ02Ox:BLDKPL{7 \&q@2ݞW2ڢ\&\&]Lr إ;mf=-}`ac/hGyi).Ĥ{t.W5vp^CqQܴ\͙mPmqu(q+5n<]qܴqrГu㮍GPI~n]T"47B Fb[_ׯ.Jr_m;,n*Rf)kxU=`f k۫gmX1oƥ--v8Z~Ae*}PYjT>(iYuqveMrA71-Ÿ QqIQpm{N8ƾ61Ѧ=TfC&~=h3Ű jV{wk{w+[YzVV{޻ޭnew+[YzVV{޻ޭnew+[YzVV{޻ޭ#new+Y .j֢n_%Yޭ[ǵnZw[E*jV{ڻUޭnw[[{nZwKU{nZwKKj__4s=Eғ9ƴ}2R<Ѻ[]-vHm>(&qݮDKqټ-&q`W.u?1S퀱fY^D~ڡgQD_sKvQܴiM; h)[]ޝsE,qDq"88FC}|sy=gsblU靨hJDUzyVzAuUuѫuUuѫuQuѫuQuիuUuիuUuիuUu^uNFǕj?Cs|B8ksVV&EE//) Tx[bv-{E[d(O˓6S ۛCP̾Tel6V,Ȱou7.1`,j:Ɨ,՟bqQK1X3Ũ(6w`=8FCMÂ4R Ocl3z~Um_jzj4i\I5n}W!_0ξlI@}}0hU!hKsX]ڻWR׹iDKqzvxǜS[H(ƾ~ ŨM~ EP}v q(np'6󘴙{më6ƸC2nȾK0M6vi{y]^v~Ё}#7~že[W yvl^[SusU5T^{`u)׭z|F`{7~חnKQg"aCޠ_nb WڤƵe`}}lwطOa3#ۊ- k`ʻQO-xݚWh;67Cm4iM&.v,_32mcmmz L1h}q,oE}w~CAV%o;eQSC1&?f𳞇)PO{fKLK1$#$(^#LK1$#$(y0 }èz cWhpF/%@o7gm=~g8gQ%*!: m/W)3~:v/צ{GG\<S~UNø0#e||mD㸗X`W=QpQv kDCc 3i>>?׶Zjlgw)3Yn/çV^Bك.c病5jm߱2R{dnk>ف(p׶I.Lv _gK~~渿0Z6\fmv}eqٮgL1cqg{zE1j;4&M<`+pcZ's9Ѯn*5#v}W皌Ũt\U,ڜڂt)6sܵ]" 1jG7mkj)}Š}Eqa/0 7mX C1j}1#< wHm,ibq׮\>S8~xcxcl8ƾ78F0)s-8|ߛϐ!npܴ!yF{i]Tu)n{)uZgZ;5:uMfeYdV6o3l+kW}B?5]=4㾁>4ܳM'6I1ޯ.ٶ\wiNMD8P^KqZMk[xsZpmAsc#?8F-0:hs{eqma_7O:}6+[OLqw}O⮵ 3&WM_qss~1Xr|R;/Ǩscl_s8ƾk]qi[LvZ ]ksc?{c_sZkpmc+ ?ܷuGCF+`kexAX(6Q}A?S8Z="kYaAm<0M3aMy1jmpm61 ㇚6xi3S۰ZgVx}tDw?LS,W{4?W_̵ؘKW??~qʷum [],cg+rNLkKjZ>M[쯻nצڣ){̮;0w=T.uC_xV~\Ws|jnA k^qo^+W/~rmnͧ~c_91h)~C)~>}}7+'dFǨ}㯝9i6g_}gץn3-mvk;}d6~"1^lb+.uC_iso:Qj秉N~z};Rܴ}M㮕Q'cJ}c_q#x~8RܵfԼ9w*jI;\\?S81-hf>۹` 9NuǺ6Sz,jS}ۇ_t_'9gf>f, :q`m?`}&v.Y ăfkaDKqʿEG$f<?S8a{LkUhG?pxu#~ʯa hncg;,Zl\Lץk u)]~oufZj ]QZXo]kW- 2_TߺLLku3ǨwY];Ǡp_ݝw%:78~\fKCgW~mϣ52uvs6?qo~Z p!1\rw\ᇺܯn}Y\wZU8~^sMkMFvrg֪_Csumٳ2P7mwl}4mpTЎNYj-ܴ:bP g Ŋ675O!~M#jzT]'Zv2Dܵ1cDܴGHy 'B`:'B`ls"ƾrdq# 0hǣ`|p6(nj ]{d6(Zӑ`w@{= Jn0ٝ .0s"1r΋hQۆ[ѡ˕]k]3۠`ca.P}sb#?Ԃ`I묅@tBvᦵ ܐw8Z;9z9l B<p}EqNKC'nmGư\&Z?׍ItIؕI6Qc}c+3hQۆIZ?хƎMRܴMZ}n!]k %9ZNgungʯuMn&Gmٕ1tZ`mk,pךycDqg%OlbԂMRm@1V~`x_,HߞI5T*;OJ%=0ZhЯJ_NJJ*)tR*TIRI'JJ%J*)tR*TIRI'JJ%J*)tR*TIRI'JJ%J*)tR*TIRI'JJ%J*)tR*TIRI'JJ%J*)tR*TIRI'JJ%J*)tR*TIRI'JJ%J*)tR*TIRI'JJ%J*)tR*TIRI'JJ%J*9tR*TIʤTRIRI%NJ%J:)TR*TRIRI%NJ%J:)TR*TRIRI%NJ%J:)TR*餔Inl):{vNI!Fvi38WC'@@GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGFGG\WQQQQQQQQQQQQQQQQQQQQQQQQ&Akb߶*L`xSLqUbv-`)w0 4"a~} 7Q4TɃ/<_N<*yt AɃA'J<*yt AɃA'J<*yt AɃA'J<*yt AɃA'J<*yt AɃA'J<*yt AɃA'J<*yt AɃA'J<*yt AɃA'J<*yt AɃA'J<*:yT ue AɃA%N<:yT APɃA%N<:yT APɃA%N<:ymRޮL6I1l5bHL CbĽ-0$ŨO<6' c_' E ~u6!0x6S Wߕ*TNCC*~G_w,?$Q+OwԪ@zdԅC]EP8r J0Z2B0**a(XmxuAuu %0DFPP|Z0zH2 QQ CƘ) u򤵌|CddTu)%0 J3Q x*oZf+ ,%ld@53]L>0%+&r}L[~Ud)ozrMFNS֮`4XB^0QI {apm>J]GK,W)(UFPhG =¨\[;QZ>5*pؐ Wxl Mi Hy,P(,߃S/{ ޢ&("!m(Jnþ_}u짓6>{.\8&u׮_ÿO_VPἽcioG#VXawK9Zvm\ּt?K;p3iy,.emGOt9r1lZQqזSqӶpZ:2RZuq@7Fw,ʩ]Q|W~Y:k-ܵU郐eAxb}YEpRh-3?۴pHj)>#7l3œ~v7{uNRܵp#Ũ6ס6Ro9R:{vзM Ww>*1/h\IZ ,v}J{d2Ϛez7m}^⇺ܯnn٤ӎ~Qܴ͡E-M8ku]k ca >8F0)F֍]W?S{6 7msya~ }^w-GGথUkl^kj⮵bԺCqך6C?Sܴ=A#i)躵L^9/u;[qF⦵5}~8_[xvoNOjm6q blӆ3RyOTMjKS ?W_xca_^}S7ғϷù/{.>ϰ՘Yߵβ&*}_kZWXΔSnVzx븯SfEϦO9PnrMFN>q5s3$mrn;X /&+G%ks;Ц)RT2Mz˾Bk'dv3 =QP2c e{QT<~)JB;_oE{!Nn9}{n,-q'Ϸ֌냣UW5%p =C'SCYJ O$NiWקvkw/зA,VF;eH:dm6݉ҮW0ZJL[JAeBkѾo4s)l;i-Q6NQPB߮bVhDifY}~Y&^ЇOܧl>ka~=jc,-z.ۭSٰf+5pMRzK6OC'S=;W /5BǓ{ggd+J2>`3Ҿ[=da}a1;)eCn(}BR+%ч/溼^IxK?(ʶcT$=TEqAhW.#}y&fqQ (']y<9iU p kRh\)sOA^I)Zs~+CƱOޠ 1ڔm_-DhW>!J}nh xJAxJ~zFaT:D)X(֚'@0bb|D:x^ؗ[J_YΘSPzZ}jJIi%]90I[yBkS =g0*d,Zv Fd@hS}"EDˋY`1 J>F@)ʳYK%o_Z3xx潚Ud,3Ү492ZJR-}HscʕǾ%Y_8.q9{h|>7|O?T|}o :lۿ8.޸thii*r@%Mbkii}fRΠ-5wwvk[A`V[GB`hl`k cF[aF`5JX ct⇟dkuu1@l3MnuRܴ _&0hƘڈCaq }[E`:m֮9[L:[4mv6YήhUسmhp}z6u{m>hhE>ץiNrܵ_g~vxne{ƾCxB_qܮ8(cνfܴ({[op}Eq>u~6ɂ#d0 7#v+؝mpܴ1~ 6qxk3Է⮵+v#AaۆyϮl@]kks(^55ps 4kLp|oԱ\^ r[ > WSAX@ߕK?(U".D\VqY%Ne:U".D\VqY%Ne:U"nщE%[T"nщE%[T"nщE%[T"nщqN-*DܢqN-*DܢqN-*u".D\։qY'Je*u".D\։iY'vщE%*u".DܢqJ-:DܢqJe*u".DܢqJ-:DܢqJe*u".X։qY'n+qY%ME%[T"nщE%[T".D\VqY%Ne:U".D\V*u".D\։qY'Je*DܢqN-*DܢqY'Je*u".D\։qY'Je*u".D\։qN-*D\V8кܓjΗ w-Voվ(MkAh3]J[Hgh؊cЂ1b+mؤ AN]IˬY%%\TrQIHZ&-ӏ=T2eRIˤI%-NZ&L:iT2eRIˤI%-NZ&L:iT2eVIˬY%-NZf:iU2eVIˬY%-NZ&:iU2eVIˬY%-NZf:iU2eRIˤI%-NZ&L:iT2eRIˤI%NZJmIˬY'-JZ&L*iu2eIˬY'-JZ&d<͈qOFA_Qk Od& im+ǠM:l `}|Ǭ:њ?ޥך9ϝW|x'@G/3^ ?I[Fٻ+ܪz+vrL7xDM x?.D7}fof fob&ob&ob~ob&ob&of fof &ob&ob&ob&obfoffvZ&rZ&vZ&rZfvZfrZfvZfrZfvZfrZtZ&$e&h~hZ~2 -#A2 -#A2 -#A2 -#A2L -A2L -A2L -A2L -#A2L -A2L -A2 -#A2 -#A2 -#A2x -161L-CH22-CD21L-CD22L-CD21L-CD21L-CD21L-#CH22-#CH22<-#CH -?.BH2~Z&ebhZ&edh ZFedh ZFedh Z~edh ZFedh ZFebhZ&ebhZFedh ZFedh ZFedh ZFedh Z&ebh Z&v&r&v&r&v&r&v&r&v&r&v&r&v&rFvFrFvFrFvFrtF.o"xӷio`o`o`o`Fod Fod Fod Fod Fod Fod o`o`o`F&V1M-j@KW^FsaOMTͮbsЗo9&6ʦf/6BkI;؁D:v |@c;@k`\o >xx#H72x#H70 x@70 x@70 x?ȍ@70 x@70 x@72x#H72x@70 x@70 x@70 x@70 x#H72 x#RRRR#R#R#R#R#R#RwRA@\H2 ?ZAor Z @K!k@t&֕5۴ٕ5 WB0\Z YcnEh)d ZZe hZe hZe hZ|`e hZe hZehy$AK!6y˺ JRzo&qZ hi,ɫ"dhZe`hZe`hZe`hZ1QZ YA_/6#4+UDe hZehiWp:TҮ|f0AKg*'}r%"hZe hZ6uݗu_mrcPna3ac imʕ5x܌+X&7$IehZe`hZARZ{/khis×59Znb]YCM]YCM_1re <Z+Y<+5+5+5+5+5+5+5+5+5+5+5+5+5+ծ|Yٮ}YR7sЕmѕ: SW.` xE~_yVq; ; ; ;xla8^![WGx7l7;6]ͮl!^+^{ -E+d; ; ; ;b52kc\nKsm Dk,'7^Wx"sP ; kc%ӄ#6cMn>>ٗq6|fH9ѠJhy%5W Jx]aE>'\pe x '7pz0 A0|0 A0|0 ?ȍA0|0 A0|0 0|l7N&>a >a >a >a Zb>X48x]_]3\3\%@WC9~w>xQ5۠xrvo'vo'vo'vo'v ; ; ;o'; ; ;o'vo'vo'v/`;`;`;`;vog vog;`;`;`;vog vog v@~p]o xw x΀ x;΀ x;΀ 7:΀ x;΀ x;w xw x;΀ x;΀ x;΀ x;΀ xvkagsyw]Wq|Y7mvev6}%I9NΝΝΝΝΝ;Ν`x'ލ >Cm._\1߄/y5ytD5kŗgqy>wb\}{7˚i{]W65l"=G3J;fc.2jc#ΓWeOt+V uudۯqa{m\peW6']ٌ+W6IO9ۜ벲ܐ7g)ڹ+vޯV8mv{c,Lwb~M?Lp[xc7SN#Yf|yŖٕﵱk+DV :J{ <`\חWl<}#Ì/XS67ʜwRmvu/k __^!Tl~]sa-(7B}%eW<.e{c}qYOI^3a'}*z~g~/yW[NJulcprHu{=}kܬ}yn"&^{7e޾l۬l}W6cd+ܰWu=ڟ_}QUu+aUW%5h뿶ם=Dt=&E͔m`8\^;dؓll/2_6cdc]߶ٕWlz v}ʛ欥>-1<Ѿ2Ě|n=7뺦NǺ:*b˫6ȗWy6V/6eWf|}ٌu|fW^Fhʕ7j#=Z#WB}%czg^=+؞.mmvuXO:}3Įocbq.f+V,Zx#֓WX|5[pm+?aWeױlB5MYFMlW׬70Fon3 v=$6溮|m{~MhBi|\oPm+eTrm|,l,EE/=}\__^溞|ߋmȜ\v|}y}UQ:֕WX yx,jIGlcu]˶˶zҗy67L+Lҙ6w`Jk`_Z {]O~i.bƺ<+Wr.〜tefʶf{S|ٶY3d_}uzHJ>C XW[3Z>N}1y:֕WBP+XP5W^7Wʶ@kʜgPWlsҾJ:&U,&Z{)rڴSoz[F羕y+5ZW~[wڊ}HCp_5H_5sUMyQ)P_5`"T<97֪kNfnI#UvrTji" fY;6:# isY+UMd2iez߶}}nf֚HXaoZH b6秫sNgߩ/r\̦O;ojL󼩯]_ˏ65o(C9W )M9|uNwZy~wE_SjETQ$|W5KWד&暞z_߉ﳥLߞc84jyί(}žj"<95kM©:#LC"ezSMjZ[WMYfTLXzZj.Cj#0jF%Igg1g8 asUo毪ue {Ŵ[O/|kx>:\|wbk]NǗ7}ϵxM>׊ [O]⎪sSQ,~w_5Y}մd2fT]UM&HOҭb=$#[Guk]umR|U"DLpյe|w}j"uƻiejzHlW5&j2Dz>3RtHԭeuOebtU+jZkJep7E7=֦"PCj#ՊUͨc?k.MyU"Sý[O/֎~]Vj뜲I樤c/\S25|uU]B/զ"y 6,sUZ驦z~sU2jZ jz( |ՌTj=t9*BO+0ܳf&dfH}jZjzdQ9&LOU~MkMOgH?"]BʊDGzꡳͿė'Ļa?3_Qc_{ao/?rKo0SW!>H֚⩦|ŪQ* dW5#1N@0=}RU}uU0Rfl\gOL_h7O8틋Vnz3)[;k|wbkxOHAVDJ#x&|=[ O%Hj7Vo&|c5 XMj7V3 ofxc5z 7k^3Wg!^"r+5_GzM|DU֪URU_5j2D,_Ydȫ "u& "Ͻg2SWr="Dgl"Oi: WMUQQ+_51}H䗍tNj9mZ+R{SWyQ^} j"MyixO5=dfQ13SopYpoqvAlF;ر`>6)]|N6Mۺ~6+z3U\SoK>ZyҪUkF\4+"ϽUW9tL,ѫW5=i❾jzH1V_5UM&D>)֚*j{mSgdk}- +Rdz">tUjZjzH\Ռɾ':b&DCS[+V"sŌ:5j j"MyixO5=dfY+uv:۽zJr.?g~E'mI?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?OGӁt?HLGӁt?|M?OGӡH:ПH:ПH:ПH:ПH:ПH0Ldso.տFm}+Z}j~d-ء.P{ui}.MS6K֥ ҆uia]ڠ.mX6K֥ ҆uia]ڠ.mX6K֥ ҆uia]ڠ.mX6K֥ ҆uia]ڠ.mX6K֥ ҆uia]ڠ.mX6K֥ ҆uia]ڠ.mX6K֥ ҆uia]ڠ.mX6K֥ ҆uia]ڠ.mX6K֥ ҆uia]ڠ.mX6֥ ҆u)_uiúAeа.mP6Kԥ uiúA]ڰ.mP6Kԥ uiúA]ڰ.mP6Kԥ R>yɚށK*MzZOf] :!D֚32JUMk(7TAޠro?r_T*{ʽb^rXW+V*{ʽb^rXW+V*{ʽb^rXW+V*{ʽb^rXW+V*{ʽb^rXW+V*{ʽb^rXW+V*{ʽb^rXW+V*{ʽb^rXW+V*{ʽb^rXW+V芕{ʽbפʽB^rP;U+T+ {ʽB^rPW+T+ {ʽB^rPW+T+ {5Czfjy7+wCka2vUC&G5٧[[4ׂ%L~0TE{_/G>[O#S:xzsUvT۷*B=]b=E̮KmiM/e} pCz$S}wDz|FJG c졶~_}|0Q9*Q~HM68P2 59&+mWwW/qkOWeHOCpz[5?{S^ Yޟг&Rg_7 }A6w~d*o[+2?-jzUWddi"g??7#fzHygk93'uFnkz ~'~'SeXE63rմ:#aC2vyze+%ze&R]մ<ٞjFOO5`";:݇z.|0CLȹ{~5]D9S/5h5=wUHx߂LMyY{SM]մVlW5=&jFDzMi!O;s6oՌJs\L| *D:ȵnW](5W\DLpUZ}jzHQ1zcmZ+;kn4}+4ӷBU0V 6Kyxz9MLU_w[[W5񜙦"ezS|Z͞=\uErZO]'؄sӷj"MV\w&W7WbWfk: ~'~'GEVh>Vu^Woek U吸x,[ ntJ9,7wjW5[WoӾkz ~'~'v>;r~OW}nB>7"=W\uEpY[ڎO;9/vU9M(6'մV\ߺ3Wbu֧e+Ms@^巙< _olcMkmlyfjglrCMIf.6MOEmy Bmv6Z/uF֎¶^[u6st\]$Mu]yO727*wg_*:z msW=)J/+W^Z+k*ڬ[o/}+6ޱ^דo>{^w7ڛ=J~Cu]yʵ+WET!YxX~V}% {Rʪ͛y˪h)e5FSh)Ighiڜz .Oe`hZe`hZe`hZe`h|h9' @K)6o/+hI_m&hic^ M" -A2 --7{tf=y/hiD%^nS-C@20 -CCחm,AK)6ojr4ue>ȍM!m>]_1reK$ -A2 --gg{/+h _Vr.ٕ֕ܵ++#We hZھRRRRRRRRRRRRRJݬ|YyeJAWm>W*L=;2\` > Yw|~YG+`;`;`;`;|{=^)[NWxwl7;6]6x7ൿWPJBZR6 ; ; ;/^#anb\wϾ4\ &@rr}%'^38 ;6V2M:ah:af_Vlʗo &8WQhy%ߠ#L^u^K;რ>p]`x0|7\^v.M0ܬ% 0|  0|  rc  0|  0|0|l7۹N&>a >a >a >aa.7h Cm._\1߄/y5y̹xk.Q/N|Db]y.Zb)~+xbciHyMl/nƾee'lH4_x7˚i{]W65l]yR2e*g+hjqn{3֓gl)dǜ K}ĺm]y )XO6uZj]Y6m ]ϲڧe뫳lƨv|Ӄoc]yņvZ^6u\yrBf\peflW}얊y]b^Qh]XOz, 'ٶW6}esҕټred.+ۋ ){ysbj5zϮ|߉ fW^7dq+ھgO4oI>1Z 7vs?t:XݟhȗWl9m+X9]^{ֱB4k_$p=p˺=+/ ƒe5:ӹ*7hc=֠ _^Q|'m]yp:|W|ħCm]yj n9Vu}yG259y<5z`s yw)+1,EfW^ `[N_B55ւr+DWRV}Uσo2_=);v⧲'}ry|uN ѬuXǖq|;FN7)XW^ۗ&br뵷/XqSko_z˶>˦we3Fv ;1~Uף[ՍPǺ=VuU"{/X3Vk{Yx޳_MKcRM8NFʕmuD6k=ɦf+se3F6֕ozm]yŦ׭`WjZjc߲#c-L6ݳQyk*t+Mp+n3|yʛGlcuniI_6}eחXWmv+n\y/1u jc]y/n/X9j.P-96V/6/w$ʦ&v+_^55GXo弪W|6Ǵb]ynN.mv{+;\yʛ lc\pef;\y@s؜tef+9|q33}_^ȇg_^rQחW+V,dsߗm~iɫ+cƯl+>ԃN=}<{?߫X6/؂tbUW$vdw+2Jјy=GƷ= pJqݭo\lbuk>0xʗuU_I^{wu^nl?JMG'+GGK57ΛcucJzz|xwb]y|tS>/X=}ٶy;q +۾sЗXW7mvudʱry׵+WĦ,-re;Fd?_/M񝋄I¹xo+W?ٕG-^]וo>{M8ֱH+W5ʶu]F?3ۜi"4Ώ݌/ߏ=7B5b 9BG=ï=ɶz|#_A:_^6֓FִٕF+z|7FlcMnmIW}e+1+_}kk`%1Mbe:b3vsߗm#98h+ߏ.yu15vmvuT >|~bMj|zgS[2K|?u:.֕W ]]yŞt~!fy4+2ĞefL5﷯ɶ&cu_]5lȕ +K:nʮͮber+N+XWllʕ׋7>wʶ:̜\$(8f7?hs~g~/sRYf.yߘqfRAը,~,&KR_)[$חu{^Pl7A*e<~,?6sձbY#_^vWȗWH>e2_mX_}דlH#_ab]fδCV^,}^zӤ }EuY6֕t_龒sa>`'/+6XWm6וTޗmt7ef͐}!+ U`b]y33oWR4ϔFk8qXW^kBWbB<\yŊ<\ƚ+6+sJA _ KV*t|lTjj:i.]NX8a+V&g_^q3:/XϾl۬lJc}yXXW~0[wX_ח7j˶f.+3]َueͽȹ g\< :֕W,Nsީf^/Xl۬)lʌ+1y67LlVδE7-5R'FD=}yŊi+o@?wgUXO^}%l=p\e~vHyy(ұFw?囇)/|>vx:S6%2)ڏzrNWĺ!p`JU#mmS)(WY͕m:ݗm_%uh/1惔ls#rn`Ny%esҗlN14!ciB~}5|̓mlVsms2dW|ϓE?I5sCO$9bϧo,_7+X1tj76+6ʶte;FfnH_9|ѳ)5tD8݈n~GcG&s%STn/&֕8o^h$d8DZ2 Y/{n/AK&!6NK&!ꝖLB6c-lrrsMcn}2aͭϓm/8.{z i+륋 t1}Ud'nkɦvz9Mnm=O˾E?S|N\+DW/ {e{Un3KUK# ®h5w_5ׯ,!z{v6͍ZXNmZGG׌|vTg=o_6yu-W eێܝ+6&|_=_69y3ŕMNnb=m+;lcU^|aN-Z)QIQYA1bSb"_]nc+1ۏg%Nƺ}!*{=|̪yJy01Jd ȦIM_%El@6c (aW/Ǻ\YLXW/]@6}elc՗AmV_O#S2qb0l9ܳY2C8}ٶ9wm>7O^s7^O^'d3l]uI6͇,*ׂfDsϙvɚI^ 5=1:ϣ8XQ=&G^}ÓM((WFѢxl9K'?999999999999999999999F$x&l96֕?+KS5ȦlNɶX=U3fOcCrRa7-6#پFƞFƞFΞNΞNΞNF!yyOo5UX!OQeOQ%OQeOQ%OQeOQ%OQeOQ%OQcOQ#OQcOQ#OQcOQ#OQcOQ#OQcOQ#OQK&'ooĕBо_S6ȗw\?ǗmN38kζٗmNeWz|j/6Lp6K jj샪䃪샪䃪샪䃪샪䃪샪䃪샪䃪샪䃪샪䃪샪jjjjjj䃪*}*礰*********** s2E:AXW>( reҞ_>(lcėmėm_e;FjC% )16}پޭLޭޭBޭޭBޭޭLޭޭLޭޭLޭޭLޭޭLޭޭLޭޭLޭޭLޭޭLޭޭLޭޭLޭޭLޭ, y yO!on{kjwkj ` ` ` `1x@yŒw \n|3Ig|}|}(x|y OSO ?ʛXeWƻcѦAIrW'u{y+>7W6yeuuR<`]Im> wmV^Dګ6?Sʹh7S?wo1<+u%՟fKT|߬fffffffffffffffffffffΞzm?1}\Su34TTTTTTTCb%_P%_P)q_P_P'_Pc_P럏555555555uuuuuuuuuuu^{?TtfW+se;nhhhhhhhhhhhhhhhhhh|.FJJJJJBBBBB b{ETZ4bOFW~H/ZyyX^h>{} g/^h>{} g/^h>{} g/^h>{} nXi>{)$a|>{}A{|Ky>{}N;wg>x}>}Ag>x}>}.:Cv?e~NC;:s?t~A^T7ZZm?VZi?~hC+V-Zh?~hC -Zh?~(db|0}s+pe]bpesDs? Q܏B~>й(tGs? Q܏B~>й(&֕mNs?<>~B W߯_y~J; W'~ߠ*~A{|å;w_i~?hG59)υPbX-.0ls\וWˢy#tHF:72A >ody#tF72A(Q/6eWz. ttttttttttttttttt yHoW_$W hWiWiWiWiWiWiWiWiWiWWWWWWWWWWWW4< WJ&'}U9ÕuMnSx9C9'9|IsN*sR霓T:9'9|IsN*sR霓眨tL:{Ή'۹T_U_5_5_5_U_U_U_U_U_U_U_U_U_U_U_U_U_U_U_U_U_U_U_U_U_U__U_UXEUU'UcU럏FFFFFNNNNN~ENs08V~CAʗMnocgw4:_*Wi|JU:|t:_*W|JU:|%eflJυN~~F~~F~~N~~N~N~N~?/[okofn00000000000s2*E sҗWlx=mrҗK}Ed9esҕm湲is6~3W6flnese6 bf"'7'I}Y6E/_TtTuNA`lVX9{|ls#Os=A3F·ɷٷɷٷɷYطYȷYطYȷYطYȷӷɷYКIb&f&opj}|WmmX#` ` ` ` }Wm^ٷy%}Wm^ٷy%}Wm^ӯI呓b씓`5ɓb\׹Ise}e}m/ۼ9_ȗmO^?ye|W^/ze|W^˾܁\!!+_Wm9˶ue;Ff?AAAAAAAAA+c䏽~?J+c"cwcy;c;c;c;c;c;c;c;c;c;cccccccccccc1'70'}yŖ&'}{О@W6>Fl|r=+[O]MO6cdsÕOOĞ?VYٗɍ~`=FRdr>d(?7krݔ[{I;<d; r#rcr'rgr'rcr#rcr#rcr#rcr#rcr#rcr#OJZz~$@;ju!z \==26:ΩUnnFs7_eC6!됍t:d#HlC6!ۯ! !! :d YYQkCV!+鐕uJ:deYYC6!鐍uF:dcXlC6!鐭 94cNp|69g^Fh LzN95|&u ^u%*ypʍF5m됍tg#Hwm6{+̕tv%}^IWKxBNpK8Qڃ6{+齍Jzoc~Hm6{:?\~LP[zo![H-{ 뽅zo!wcw#wcw#wcw#wcw#wcw#wc7d}=:h9eNz|]lllll^ i/BKaJe#FF`0^絗ǵF9u|=I{ KX^|ĢgJ?)awy/Wj7e  uP9'A5Y5I5Y5I5Y5I5Y5I5Y5I5Y5I5Y5I5Y5A*α?7A"Ns| ?tP4'A=H`ԃtPA=H`ԃtPA=H5X5H5X5H5X5H5X5H5X5H5X9bMo)'k8u&a&a&AkIIIIIIIIIIIIIIIIIIIIIIIR0H0Pv@4 $&A&a&AIYcΝ4 5 4 5 4 5 4 5 4 ʚ%M&AIIP$(k4 ʚ%M%'9Y9'Gd 4A;>`T}PJ*>`_ßG>xu7[~N=O"R~qpx m*wWۿ9ց;]&m{nӢm)z:{/`lSTGpJsUG&ϟˎ-on%|.;[gk9Sl^Nc>W_λPy!g~j5{i -w G!h-,yR e?X]>Rq ;X;B_PRGXj6%|./0SB,):0_:Xߎj83vT~JKD'>8QdS.hw]nǿe;~0>hA,gt c??6U-_.Է ם3~8Ŷ4z3NLCOp7W+|Įc<3Yg"V+=\9'x3%bƝk7vbe2?[Upӄ8XHvZLZ|XPo:o'>N}/p ﯹ]l LN0@% s Nsu}+8~ǜ\Wp_Ml }܍1? zI':NxR.kyzj=Ny*Wz[Pķ8~uN*)ea mu7q_3=몯?lrT5N  П`}o۷tChtdүJ߱xSx~o~zmQc>uocK;g/sc+g<:ݾ3LNN/?i9pM-J89Ijk8UpZ$y/X"ϯ'ѿ;V|c~t0mn{OjEt>r͸ٳ4*ӚMl F޿5|.o޿5XG5+8J=7slڿ%Ɯo Jmdrc [2˛1wͲ α[b.FZ_7} __>7?Oy_ub?N~Ͽ]_ϛS6}|xo'% ^`oyjFQM{Tgl"|ӿ(zJq=m1NGߗf7su|{._y~V{LJm[9vp>qRl Cs|K Vpg{(ϲkq]αƷm1{8smǼy q7W ͽ[Xg!7L>߻(|ݔ%}w ~ }~q}uSL+U.~HS%|ǁ^>v!7jHc75|6Y+|75|>>v~3r/N)|]VgڽCK8Ǧ3C 1g] JkW%sCS>Wp޿q̇?Ƈv?}v9Y§/~->BNk79Yg`9Y9V^g6vepxFq{֘5|~m` m^\ϔ|U96j89K8U<3p^`k3>-{!ݫٺP|n?bb>>uKUQ<_cGI繄ucN69('fg /㇍k>cK#j||)1"V?Rl (\ _glsޯ95߃5*k8Q 5s#Ŗ3%] :O0UjS]ɏ4~cq4Ck[g?1p瘓=nz8PgKx˭~ 1gN 繊Ϻ>co3X4Ŗpߡo ;Q~8opxfἾ_96~kpsܿ5*~c<39~wq ` ]h{~ӳp5L)5~C|76@Jc.wG~JQ ؘ5ǜr\Py]w:{?ĞS r]>u{[Wb`7>Zxpomv ǟ|7t]suulN#%;Ⱦ |n ?醾r3U obFGU'ꇕ~𤛼*g1KuKI7[OQVpnʍs[O/&Nkt-E7\?s}6%|u(U N{cQ<繊{5z}^|Ŗg/Ϣ )q^odW ( *s)5(Ŗp΍4|{bw n%|ϕ\ r[?~Ld|N;>Nv9Y96csu%(=cK8F-gN8Uv3u87o YL{!r|#6`cl &}:^3^gc1αq/ps 5*U 5,t bK6L6z0啃7ڦpnޯ3vv׭'W7ۃ<ٵY{ }7;oGon>-VL|ޗߢrF n >bon1ҙWītU:*yNJ3ֽssl|>ps|/p>ts:9N|Ng>2h.nrǜ,#/n[O/yUwJoBz8TvV}!1~_P]V}Tg\tC__?Tsn }Ėoju}Tgα^y^ys}T97Rl ?S1 FXTkyj\[g# K89Ŗpsڿ%|z7p5ch}q 1GN\ENۓGL^4F %|ƺH̫>bGLx/^ 5 5*=7J8Q|^p΍[)'ks6]l}UsU-3 C w~Np\y^y35rg[g鋕5Lo obY^͑[i[ޱ fY` ؔ%)5*o 5JyU97Rl ?Sҥ13 >c 's W s湂<8(^_M:|]%|]e?_V3Ȗqd^?s5ͯP['巜:E-Ec?ϔ>c߼wc3vY ~~:&-Ec?BcZp=Ky6\ sut_ڂu~x07V8.^،qp9kuC>;0X-w'W>ct]Hl-8>q>eoNc\=9 5'd[Nu7^wvc~c9iEK4K;5E9cWps >c,wl|.|>=޿cjα+ >c 'Uc?cwsU~\=8}>3v~?湄߱HnKc Y6ɍ>co߱"*3%Nzp=~&/oc89EK8&7rc]V3.EnX@Jcw'ϸ >ciFcsnTps Ns  -vQ=X ~Ǯ 9u/|.v9YG\Z lbKޡq%]iJF%bsn5cnu8W .yB cKg>c`sc?ͷU c?ͷU obӘU H{Cϳg(>qzA:tW҉2=1$XGe2A9@HAVf#Fj\}Xg=X)2lM \5f(}j4 0o rhɯMdƌϣgG3<_oun}:,DH,3ryץ,#9Yg M^qihG j4#P|53!GRydϊ\"sWlY9P[)oK6em=C ="eʣ3ݰJ\.+鏋5GvY7UʾMMphtlg\ zDwkx~wv)+)}2$UWܖ;}hW%Zʄ="W&/=J\=P.KDSdj46K4PLplҪsfBtO8 =#0PIR)2eBѦ8C9+ ;pO* Z능I3BȕWȾ)DH -3r9*#ґqUJ4FLp[0G/0C[&FDUtgZ8tr3g'MN% ɺ5YוȺ="3Ⱥ="#Ⱥ=#3ȺMӨFhö4CQPqU⫺Fc&WD*li^"W,_B;=J\yy[>1x(>3MgQS4ATT>_s *Fp'_OmMEQQ5zDUg$PQ5zDU)25FOs3A!gXk΄ TT@EITTȔ 5Ɠ䌯z#k*c3=##}ENj*FHj$*FcdʄYSQ}gMEy,GTTDE ge&QQ5zMPQm,n5w}-O~ij˗?]333|.- wc.#v8&ÿA>c?y)O6LcoN8UsC974K: >ӘK6z_k9=\GA-#vɈ[g9+s(yip+\ygιc~>[͘s2|s2 *.HR^|3L{2bK]>+vc.3ok3yqw9Yy1vYe.Ƙ9փʱ>7fx9o .{=1`<9fs6giKx׭'WǼj]>wQPxn|ƺEy'αsP1s;yBnkr/EnX@\g'Ʃ#ֿc٬ӳ\wh ?isCA=79]󹄏9$Gvn[g1}iJF%cSnNbFbA:/?n 5|9#9|cM?#t{oKn^GuĽv^;qNkgڙ{Ľv^;qNkgڙ{Ľv^;qNkgڙ{Ľv^;qNkgڙ{Ľv^;qNkgڙ{Ľv^;qNkgڙ{Ľv^;qNigc{Ľv^;qNkgڙ{Ľv^;qNkgڙ{Ľv^;qNktc鈝F5|rRMn~Jv%|JV1.U ?#7-Jy.)Wtd%݊gbMt  ߌ<~-oVvb1S}6\eK;4y33}Qboi7#OoZ~l C=End;ڟRxޔюD;ڝjKLyJvfJ|yȖ{8ͥhUg-|hOhSQ홁&I2o#_53l~ǂ g,|ƒ X 6d6qP/yBka܈?rr[vRɾsq6Y4 0|n^ g,slhdpsGy&#(rc[;߼@9&|nr(.8\vyw|N~CL_4yN7sU@2 8Msn18?N 8(?醾t<Ag,YX8KYrdlrC)7.g\ȱ`;Ls>c6svΉ9Y{=6?'Ѫw,XXE#߱`;t>cNsu^ YS'U sI߃h{`p^ufu;4s0th("Eh(]݌BCkءLAeCCq;4ERUChءiءiUء)3.&Ehx$NuS:hxυjgb}Vh(~e T;4ERChr87T7д*T5Д T3hWE\>W^##bMi̡2m&k.[{0n"+44h܌BCüJ44+̻Ds$tfth-elɾ M%?~l"*0Ⱥ|:?K4Owvx[t$UWj:YO/'v\WLP 5ʎSh(vNMT%4Zg0T!2 W.ʄ8zʌWG*5"*:x&:= *[܁92Q5CC1tzh(mB}5ʠ77P E̛UI1-Hi t+ʽ>L1n %FmmF˴Ni3Ѽhn_GJh^gBo" \EPyzDҫ~ 3r} [l[Ƞ4hQ_iw_qUᗷ55oY1h+#(8="DUDHT =#'MЩh hm+%ghWUAcV1r۟ᚫ6-vU"37ׄȜ}yr1҉5F+b(2 ҳDEn%3f?2+*&Nv8CgB_s[g" \@p'_O %zD:T|{̡="]ķCȠd4xb,8C92a k͙"ݓ&BEgBU4WBSdʄ MMWqrWv;I.[K5zF+&zFr̄ ="WXξ }E:X,3ҽhK\߼qJ\`iUJ4FLp" NC#6̐?H9Y)d|ŝ|c,BFuKDE~tJ4GSMѦ/="{eFyU } l ] L = ,  ݒ ̒ } l ] L = ,  ݑ ̑ } l ] L = ,  ݐ ̐ } ]9u`ll`ll`l~l`~l}l`}l|l`|l{l`{lzl`zlyl`ylxl`xlwl`wlvl`vlul`ultl`tlsl`slrl`rlql`qlpl`plol`olnl`nlml`ml0l`llkl`/|uM1_`hlYk`glfl`flel`eldl`dlcl`clbl`blal`al`l``l_l`_| =DbbCbbCbbCbbCbbCbbCbbCbbCbbCbbCbbCbbCbbCbbCb{bCwbsbCobkbCgbcbC_b[bCWbSbCObKbCGbCbmCL?A~ă#G<؏x`?A~ă#G<؏x`?A~ă#G<؏x`?A~ă#G<؏x`?A~ă#G<؏x`?A~ă#G<؏x`?A~ă#)<؏cُx`?A~ă#G<؏x`?A~#qKW)ޯ@m檆-@\Lp_r*66sXڂh7W%LvsU~ɇ(VyQnh{ ~ }~y̋JZf5,w6F?`/yp%o"1;Q:x?Q 5zEMvc.`vC5*K^E97ȭ(d8_Q MCy:AEEgN ۢ]np0.d Ml ͘k8m檆 fj8N0J1;tQAcֈ9'}NOB[c>p{"- [v4hniҠagKƖ}- Zv4hjiҠaGK, Yv4hfiҠa'KF}, Xv4hbiҠaK+ Wv4h^iػҠuaJƕ}+ Vv4hZiسҠeaJ* Uv4hViثҠݤaJDQ$4RiФҰGAJ * S4NiМҰ7AkJΔ) R4JiДҰ'AKJÎ ) Q4FiЌҰA+JN( A4Bi |MAI' {O49P*&vs>P*}%9FP,&hT M%҄oC.ᛑS.IYdb`4ϔ Wْ\w4L~Fc4-P5F3lv TN |w4P~Fc 5G4Q2jTHMԄ-TMBC=uD7PQBi^|Nj#j7VU ܫ ͫ | m \ M < -  ܪ ͪ | m \ M < -  ܩ ͩ | m \ M < -  ܨ ͨ ܤ 9BmhBmAmhAm@mh@m?mh?m>mh>m=mh=mb~3]՛ >b]ds js;gZg3B%,gZ:B,96Tt \= SNnb+8<~MR7>=\G*U~KuP p 5#1}TiF8uȱ~ c{ص''ii*|RNpsJS+ލ.179k]=k8o\_qŭ<)7jp>cu+I71MBcnQsX1j߿5cC(y^irn([%)?K]+_\^VyJ8Ǧ(<攓%*~}Rܰ8BU(g[)3ֿbn*tsN+[g1\}ij8ŦtoFaSũ\ׇB x#5|Ćo8>c?Iص9kxH5Ɯ5|z%caeοLCB'zR(yNp8Esm2B 0Wj4HSh;CHJ:4怄)ܼpUjU&BMVh3ucZM$?J'?eP2i9 B4 mdʾ BMdf wܬJHJL % :UDW^MYCt¨tMͮ_U T*H @EOQ S)H ?EݟOQ S)H ?EOQ S)H~ B?EOQ S)H~ ?E}OQݧ S)H} >E]OQէ S)H} OAħS)*|=zOAS)*{=ٞjOAS)*{z=ZOAS)*z:=&Dz:,BOAS)y<i2OAS)Dy<IE& OQ ST)x RR79*u_ U|R.G,E'TT KobiBnTP'VǬgě>n7.7.^ usp섷؁o3^A];@&%9$:8$:8vItpZ]rcD%1źd%1m]c>{c8fbo+p_7[±+qKs,vItp`ĸdvItpZ#.N!%1]w7c~1C|۱KbɇO:ʵA\ñK溴]Ml .1p8` Ǯy&$:8YKb܃ bcNR٬Q DžF b*]l Kn%|yUnrW%yUi9J\߅|F1cgxv-#9_\:J[O/yb>vy/p쒘B \ñ+d>pŎcƎGsC)7"vL9"7:Jn\±;fJ8vܬQ X(r ;J (BAsWȴ;J:8vcWGh;v|cGhp cM$sZW(48rnh̫5s2ƺdcgd ^S>;0wLoMF ~Ǯs)cC$>cA c=ZԡQρ=hsQρ=hsQρ=hsQρ=hsQρ=hsQB={9 s@Pz9 s@p=z49Ш@z49Ш@z49Ш@z49Шo@+s@p=z9 s@p=z49Ш@z49Ш@z49 s@PB={9 s@Pρ=hsQρ=hsQρƵz49Шsq.hs]ԕSB={hsQρ=hsQρ=hsQρ=ȍF=hsqρF=hsqρF=hs@PB=hsqρF=hsqρF=hsqρF=hsqρF={9Ш瀐V:YPZk{]_Ʃ`s ˪͹yC#t lsT#t랠"W~PMoܠgi9ԃԃ3 0?à 3 0?à 3 0? ` ` ` ` ` ` ` ` ` ` ` uI#7Q2=͓ fn#T#.inG^ZGnrb%Fj3gݿZ9z%?w+v3SD"zD5nN=owmD)NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN?NNr, '' '' '' '' '' '' '' '' '' '' '' ''&nZy@X6sU‘pU E-op(oppbIbɂIbbIbbIbbIbbIbbIbbIbbIbbIb 1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1d1$1Mŀ&?el'jؙO'v;N|bg>ؙO'v;N|bg>ؙO'v;N|bg>ؙO'v;N|bg>ؙO'v;N|bg>ؙO'v;N|bg>ؙO'v;qDe>تUgcNV:[u6dlتUgcNV:[u6dlتUgcNV:w.ZT޹hSzNE띋;w.ZT޹hSzg~SzNE띋;w;ԝyN|uSuSw";ԝyNQSDe>|)|'*|'*|'*|'*WA|2'*J|2'*J|2'*J|2'*J|2'*J|2'*J|2'*J|2'*J|2'*^tʺW%ݫUI{Uҽ*^tʺW%ݫUI{Uҽ*^tʺW%ݫW)Խqܫj̽qܫj̽qܫj̽qܫj̽qܫj̽qܫj̽qܫj̽qܫj̽qܫj̽qܫj̽qܫj̽qܫj̽qܫj̽+2jĽsFܫ1jĽsFܫ1jĽsFܫ1jĽsFܫ1jĽsFܫ1jĽsFܫ1jĽsFܫ1jĽsFܫ1jĽsF1jĽs|]^Wc~͈{5^WcՈ{5^WcՈ{5^WcՈ{5^WcՈ{ ^W#՘{5^W#՘{5^W#՘{5^W#՘{5^W#՘{5^W#՘{5^W#՘{5^W#՘{5^W#Xi4ri9FZNc-XiG)k:梫}ĭq/ti0{k:gf99^Zn+n%~FVY ]KEыͭ@/~27#a[xEn-rf..ٌği_37Vg"ۮXosf9SKcNo[G&n\G욝g؅x]096Wppz8 VSnĦVp y%lӘk>cc>bx%|ƺRxciipGONk-)7r߿+Í9U .4O#x̫s>cnz6ĖZn\ga|=XÛX89>bׯ5ǜbҔ;%|Ćsx&{zp߸<)+[f5L8s n?醾r<++sؕkύ>c"ļ#'N|p L y^irn([%)?K]X\^VyJ8Ǧ(<攓%*~}>ׯu 9%|wY̍>bWu%+ck0>cC_>bݡ/Q ؔuݽCss>bJؕݬs:;wv1/J T~Jxz3S OBx*(< ᩠T.S OBx*(< ᩠T.S OBx*(<ӎ~!<(<ӎ~!<(<SAiv iGiv iG\Or!<ʅTPx*SA\Or!<ʅTX:z!<~!<(<SA\OBxQx*SA\Or!<(<ӎ~!<(<ӎ~!<(<ӎS OBx*(< ᩠T.S OBx*(6 OBxzq ᩠T.BxQx/r!<ʅTPx*SA\Or!<ʅTPxz-S OBx*(< ᩠T.S O_O; OBx*(< ᩠T.S OBx*(< ᩠T.S O_Oh'L^W y>}z)ܕ0vo{I{wޝl{w;$A}3nc 8܍c?MQN>/zw:87;nj; {w:8tp ܀ޝ{{w1M;s>;{w1?~t I }0w[+qws,tp3Mtp^#ػ3]wݹ&3ػ"V9zwbSti7楘':P969YOZo|.|w=oj)c (7sU±fJ8/LgQe^tC__.p{,Q ގ9j8α؏y؏2Ed`?ʜnnFЏ27.+8vܜK8kT9Q:p~lVnS2Ab?J~Sñ.+89Yñ.c?ݘ+8UǞ5(Sn;Qԏ2Ů7ktsNcR±e>p[Y E㑓8P"%<ِ}tGf; 1+Dy7 D mEm3}?W 澧<#L&4oFfYAJCRlAZ-_{v#_9o#vmcg5'Q6yءܡ6ģCv%fv;ƣkn.r<9Zl37#GDʆ9hE4pwGrwv}#Qϩ+;3m$+7s s./F0"^mxd6#5#yF㛑#} " ,6K6"sc#1؈vl:6"s(ƌc#±1(D7 Bd0(D5 3BD0(D3 B$0(D1 3B0(D/ B0(D- 3BĢ0(D+ B0(D) 3BOl?'zG@u|(' |(' |(' |(' |(' |(' |(' |(' |(' |(' |(' |(' |(' q|"2(' B|0(' B|0(' B|0(' B|0(' B|0('XOHkT'4̹Q'sl k+͘KI򪆟MyUÛcps̫>w%6Qý qܫzu]^W.sBܫ0&Ľ sBܫ0*Ľ sBܫ0*Ľ sBܫ0*Ľ sBܫ0*Ľ^qܫ*̽ qܫ*̽ qܫ*̽ qܫ*̽ qܫ*̽ qܫ*̽ qܫ*̽ qܫ*̽ qܫb=*/piw 5|ҙ{o318psHbsX89>b=Ac./kO'?:[trlO'ןΦ?<:[trl麟O'f?~:[trl秳O'&?<~:[trlߧO'w>}:[trlקO'WΦ><}:[trlϧO'7f>|:[trlǧO'&><|:[trlɿ}O'={:[trlɷmO'מΦ=<{:[trlɯ]O'f=z:[trlɯMO'V7%EVGWY3zQyV7)[j|3T,ͬ]RO߲ܿeQ7nvGcKEndTh6Hy^gejыr]hN#/w{Y+3ܓ'Xos<b >oۍۤ?n&=p->rNhgŢ<t-ڸ?*q~~0_E0ϱs\uZ376sqs WhK{rCGtۘ<^vV_nz6GWhn%ӃȽ*Ó~#ۍ=n'qS_<鏛:I.נ9F'ǓDU'Mɓ."fn'qS<{I'Dި.hg%Ȗق]6T?Ozo7Г}@g*4۳hj1#鏛IQOƞzҿ]?n'qSg={In-w?:4[5pCG|̣#gO9uړso\?s=SϽE׻?Boc7EA̩U@Sۻlۻ4 {)lZ Aʴ쯑)&T IbN[d a>bNw.:ޝǛ_a7o:Wd5h :JeL :w}nXׯݽm>yMw9ia{e9ir}F+9o/LkTz7 Tzq5˷w{k0Áck0}d*^EΫ^<7oJven? fv;ϩ|{7n&~x9, r#?޽=oUU.:q7״c\F.kt529/~֫oH6Sn|Ο\z^\^cvTʮ\~}r_hZA*({۫e6S?s2H7o~ژSM;WMF.7h_P\'{w\s^w~)77b*쏷ٝPԓSR'ND Ls'=YS&ct;EMI8Ӿpv]N{pWgwgˆQd ҭDQ[ avd^xI0kzAzٝv"ٝCHzppv%.pvmzBTƐQavgpI0]D+$$鏛$o35Z%j1tJl  I"sqÀR, ܈(IO7QJ=4;tǍO>Q%oo#$k]DR [[깠Q3I7KSK\d8Կ0$=bGq`/d L< 8 5"z&itňe:'laIzpp_%4`"$NfwH WFkdkoWU-Ic}^Wؼo6/^AUxS1[k0m_x^>f쵷kP9>f^q̹ꊥkwNm]nݧ綠7^cN۫U.Wxm*m^}}wF&q>{b^߅fWck]>ZHekB.e;[Ur{q.}8㘓s \np5en\ SsvF8 ؜4'B@ls l{N.۹A>Ks2\v.As*۹Je;[ F8lh.;WEX*ZEŜE%7}8sWWc oc(s=`Z6+Ҳk7 ׋bNe'ث ^lG$e%e3W-sEU{ղύЛ~-{1EF݀atl8ftl7qj{jLկ#}2j_#bZA^wr^+`o^#wty sٰwi p5aQ̩l8fsٰ` re3Wwd*iΩ`6nsWfie4'w`ra6o\zͻ9ok_IB8#岏sT1aC1Վ$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'W]f'דIdz{=^Of'דIdz{=^Of'דI b'ד$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'ד$z2{=^Ob'ד+~cy5oLy/;_ʩӭ߽X3ث?ޟY9k9<Ol<Ol<Ol<Ol<Ol<Ol<Ol<Ol<Ol<Ol<Ol<Ol<Ol1<DUXXwl`\7R\븏Ҷ7A}ս{T:uPW]{T:qPAu^ս{T:uPAu^ս{T:uPkT:uPAu^ս{T:uPAu^ս{T:uPAu^ս{T:uPAu^ս{T:uP>A}G?~P>A}ѷG;EbFv#].fd1EbFv#].fd1EbFv#].fd1EbFv#].fd1EbFv#].fd1EbFv#].fd1EbFv#]Ĺ.fdeFv#].fd1EbFv#].>/>/>/byQ}_GQ\"x1OUKT~E{:yEs.o.ޭo.] {|{ I9޻d[GU[́Q r{5 b696]|Q>/t;^_|sp^%Md.ޭ9ߟsT{]so7冺^"7WAs*FU*{ScpR{]nd*sB*i>^\H߀_U|{tTzds#^LW{ss.^ϱ*ST5eu!*Mn|Y~0ʼThJ>KsZ^q/<wngw?nuL۔DXg͔Q\1SIz-ν6aARL5zd̻D.ԛq}WSvxQ+4\zKz[~(SS=ܹw=M3ro[plt\jC>UvrmSqo|.Lqqާ!Fْw;u\VW[}~MQ"Al=bGqllŹ}y?oT~S^1z+zp8߸~ʖK? ժ)V$q ǭ.Svs-}~ɖ;~Sq?k~N_T>[hNnVcϚy[siu$7An6o.TK;lLmv\6[ Bs=Ƽ`;5wn߹SNM;5wn߹SNM;5wn߹SNM;5wn߹SNM;5wn߹SNM;5wn߹SNM;5wn߹S~rM;7wjߩsM;7wy0fcvy0fcvy0fF΍;7wjdοˍ;7+wjdީs#{F΍;7wjdީs#{F΍;7wjdr;7wjdީs#{F΍;7wjdީs#{F΍;7wjdީs#{F΍;7wjdީs#{F΍;7wjdANANANANANANANANANAN?'/E'!/۽itxǽ L{by|Ϥ?@t?4tnЃmY=bO82l6T&"S[y |z~<תՇԃQY9eZ?#8k?k{qO}\۟T[[ۙ."K lI[}:xVWZnKIDv5-\b6Su6T<Vh\{Wpr=pl rWLହUo\e^WVmA[ELyD2\{dNǭ.TZ+gs-/n?gͼwXsόW{WЗ~u;ןȷJ'׃1;-;iACx x޵5ww ]+]Cx x޵5ww ]+]Cx x޵5ww ]+]Cx x޵5ww ]+]Cx x޵5ww ]+]Cx x޵5ww ]+]Cx x޵5oww ]+]Cx x޵5ww ]+]Cxjw򏨳ۻXwn419޽s2SۻD͆AMAޥR@1^ s%>F7! :dd|̩XSgZt1{Ț?\z>xS7~w-.frٝki~ F;" ^~ﮍ1/Wy3vlIWm˷cn^xSHSm`.mį\z٭\z\1;҂k_>"ȍTz經A̩|{uټJ۫.˫T6R*(72lױJvnvp:~7t@rW8_ B.^u8ޝNJ.{d}ew|n uM巽En8^6TПTzՃ_T^cv9\oZ<57| ^u='o~HW6d*{sꍌ9oAv*^Av(F=p7/e\M :Xdp_u 8Cpˮ\c7}?^)ujtaS.Ǐk _"ȷw7^UcNWՐ.Qo^iL].ȷw]*d5" _J@d_`A187+tsxuS?p]̩.>Eǫ*E+dM۫Ε{MU>fRٟ+S Fjd֫Vz[.j59ia{e9ir^|Ws.^֠TzU9o^f +Ap WՀLeZstͬFY*MWUS3y˷W]@WxM^岏U.w r#}ΫJE[Ǻ}l.?\yro:_9^Y|V5~-ǫ;Z۫.׫*Z^%^c8ϕ͍\kdrR_"7WAϩ|{ՍО\z^\^c9\B*i>a z jX|{UP˷W?m>׫]]N׫]7oؘS ;W F.7h2/e\MեfG˷;N.3ؘSn.o^Iux;.}v__Tv 沏 I3'4qxI'4mxI'4ixIs'4exI3'4axI'4]xpI'4Yx`Is'4UxPI3'4Qx@I'4Mx0I'4Ix Is'4ExI3'4AxI'4=xI'49xIs' 45xI3' 41xI' 4-xI' 4)xIs' 4%xI3'4!xI'4xpI3r'4xxIs'4xPx9ff~_ cӋ^/{]{^/{׋^/{׋^/{׋^/{׋^/{*7׋^/{׋^/{׋^/{׋^/{׋^/{׋^/{׋^/{׋^/{׋^/֫b//zw~rvy}7oGߨq}>}7o?){3L;{^;{^;{^;{^;{^;{^;{^;{^;{^;{^;{^;{^;{^;약^;{^;{^;{:<\s9;<\s9;<O;q<Ow'v≝Q'ؙ'v≝yb'ؙ'v≝yb'ؙ'v≝yb'ؙ'v≝yb'X<O;<O;<O;<O;<O;<O;<O;<O;<O;<O;<O;<O;<O;<O?'go 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y &8'y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 8'≃y 7'≃y".AoIZl={˳Н{n%gG#3/^gMtlt;* "O[H^:&ϵ#}qޠEpܹ~>+SqhFz^z{Kܯ\gZOI>[^֢ȗf+d |Locە/ޭSv|Oǽq~qސ}}VPpw۽謥>3rPSqo}-Z]TZ?{c/*I r^>u(oסv~ȯ <_}#^*ۭ_%q\|=5#=ܽ?kA uEo Ux^.T=38k~芥zْA>SSݟ`_n,1WL߯_wTzG%ol2Teǽj|՞ɝ\ݧ+ETlsnVcϚy[snHw EW Ioo9[߹D$;׃<_{_}?3%ţeAV&Z6A"wn TsǽuAeIܦ r ҃fVBzp_;Ie2lLEZ^>Th>sSvupܩ~EwܩY3n}҃Kଙ<҃+fjIŹoo|ms=pm2DS6Ǽ}."?SvOz֫߮\. mAnV 25Ճȝ[۞5orvO|lۭ>Sv|֙hs-.r=r\ rk\#Qdzw`ݽ#oȇ>.ۙ."Wvy>-TG*ǭaV\ܦ rFYsْ;+f3UgC-έWTZn7pW,˖\"wYϒT+[̳ĬPJݙrq뽃T#>SsvτTzO"OǭoR=pl[ ڳfq[EzT}JrqE*oa.T[czWǽs=r۽bbn uc(ޟס@RoknsI;ܙ~(T{笘m {&VwlE1VDn>zp@W{g>S#wUDo/[ꜛ<תrBsvW&DEӝ54+{%o^Sv+`D[g˵Tz\Kr-}Asw0eK;W#oȯCLqqu.ϯj7X%~$"n[$mzA"woTZ-E]zeC-ޭW<~ Zn7Xn-D35Y VIq6sVwTz%o^gej}ܹF{[uqnι=k׹c`7\Un<\ww^1}~[3BS=|~νz} o9w49?${~T? L{sy@b5? |TAV@"gV,\1MЃlE k*G֭W<~ڿŞιsSv;o;:koРn[z_c5[zpl9A8ګ׃ץ"7jmw?= Tw-ڙ(}ZF{j? \VjuխP\pw}Y۽YGTy?;Vr=r+AWJr=ܻcOrrmCLqqu>h}=*q+bk7VDn @ΚЃ+vWfΆ*[[P=ӽQQbn rgIq-YbVVmU/[EfL?nry{ #w?nV{&Rvԝ_T>[tl9nι[=kmͺϽz>gI?Ǎn"OǽTWqoAfz+~5 r+4׃hX . "l%ֱ{,ly3N_+V0D*VϵGtF{\g[M?&3tZ<ס{XQ1ԺFos:C S_YnA.8ס<\8G6t{/-$ǹdBs=r\Nd2Z:t>SMd'(~{[(l1Owchq#T53=oN2LqqΝe-z;cKoQ}ϵKO(.OAPЉ^F [adʆ*[b 2r2+UPЉf1 VI~ℂNT33PlٲO 6} fO`PЉoFg-݌Έ_n8 &t{_u{ q_;Ќv=R\;? S}[)nU[Zݙn;Fg߳B_ӺW/i~KqZ"/i=8k8W  [F-؝*/_ \ U@Rxܩnwo}s_z9~).Xc\1Rփl/޿EgKq{nR\6ooQa[|(6Ssqݑs=8n? :kVG_s2)T:Dg-׃gm;\Ѿ%Ưw|-og׎|: cfKPEϱ\r-'Qnzփ]~k ~+}E׻~![]aVtr~+b]>[Ldh.J뿿P׻nݙr~+T_25׻BwۯwzWxR~+b]>[^ _ Κypc:}{Wt^gz/|}w\so8zr=83y5(7»}TwZHѺ1;- #Oug-nGExNA5wZ;2lx3=X% DxV^w[w[%wZD.Xc zpi=wwxE#2FxWGxއE.[pn]t?=rVhkĂC?MEqL?o+qN۽WDު@Z k j=r[UJr=ߧH3o;x\vE=Xhw*u Z[h=s=p#z9"On` " [9+gnatrBzFDg9+"ES;ԃvGna&D&Ayk:C rAx0%3Ax0!Axx0Ahx0sAXx03AHx0A8x0 A(x0 sAx03Ax0Aw0Aw0~sAw0}3Av0e/Aw0{Aw0zsAw0y3Aw0xAxw0wAhw0vsAXw0u3AHw0tA8w0TA(w0-~ Dw/m f`;淃`z;f`r;涃`j;VAv0lAv0kAv0jsAv0i3Av0hAxv0gAhv0fsAXv0e3AHv0dA8v0cA(v0bsAv0a3Av0`Au0}_b:s/GNnzF۽rjsVV3v]Q~h@[1ps @[ps @ܶ r[ezpl?<2l6T&"S[y }|sn\>Tݫ8ǽ2:Tݢϊ;T]T=ܯTΚ=bvA8KEn2~{n&2޻\h+\EB^`Sve8Q+4V\f z[~r(SS=ܹPnsd/' X}ZC-~ȝ{/V"Oǭ3Z?nu=]z䶹A.r[Qf-DrsmCLqq>h}=*q+bwؠS=mgDnߨ@ΚЃ+vWfΆ*[[P=ӽ{{@nA]0׃%WgYZ@*2{gq뽃T}ZCNǭD.TjZnW,a[ ڳfq]GJgI?n|v0y?A[+^ rWvk~Vh?!1t]T4?Qkj #k HhwĜ_^x9z/GDۻoid5 lJ@ʔe\ {dd|̩2b5]̹^x|{?\z>xS2kg@v1u\5S& F͔'r{5b^*f,a%Igj+5s.^T#*o*{\s*^ۻ5ˁW>Av15_s2}λs׻\r#뷁7ޝl1Ig*o.R9ڼJeϫTdvצּv}l.?\Y ~7t@r> B.˷W]wg:~kJA1w\vƠP_T~ۋ_5hcNۻJW=5Jeu>fΕ_ xsA_#}6% ^u='o~Hwd*js.}U.jQ.;ˍN{n6_̹֫2/ֻO{5tï\寗qr5Ɯʷw~_˷w~_ˁruj@`*Lx >{Np>SK95_/rjo/qjo/qj׬U}̆Sϕ쮑rAv9xsnk ,2 /Ft1rjo/qj^ ^ {߃bvڜ |AvȲf]nx/ps8G9|~q>(qg?ީ76L8oӛRU狿OA??^7Kw W^d ^Az|{|{x5jr sc,#{wu +o:_9^k_^Az|{"{{ l ث9>7W^A^Az.7ڠ\N{5'ï`@/W#Z% % ׋W|{|{"{y]n.^{5{^A^Azy.^ {{{9}{5A}{d#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8GpH1Cp#8hH1p#8Gpn56j "wޭQm/G.y]&ǭGM-lnms5ޛ2YYS"H1Ap4c"H1b,X)"H1Ap,c"H1Ap,c"H1Ap,c"H1Ap,c"قc 8Ac 8Ac 8Ac 8Ac 8Ac 8Ac 8Ac 8Ac 8Ac 8Ac 8Ac 8Ac 8Ac 8A~Xv):jkGMۭF}ȝ{dQ~Uв^4,q%"O]ۗ=ЃfTWrAe2lLEZ^>Th/AvZ^q/+Sqfnz_c5 Aܗ^淯y_f<(&SMd޽o]FSq^;o*k "OǭW]Bs=rm,AnV AzsE{ֺ*W,o*Aْ{*Sv T:mVZGnkDr-ן4FْA޽dsmCLqqxcU_ӭ\ꊸvnU#w=-=ܽQzp\zpŎLPes<g[ %׃]zp$߸~,1+TւUdΔ[\y~w|Sq=<[Kw/sn.hϚyǵ׎ݮ*o~7\݆ySqE~{{\vAn[3Bs=uxx&A^׺_-0ݙnamy[P=+׵n!W%u ?*unZ"G!^zpk=ȖQd ؝*ADW ϵx=|ǽ7w[Hw[@%Z܈׵Dx=Xc ^zpk=wEClF^GϵGy+t;-^#Ou 3G+4#7u#^+taz1{*VG<IǭV;zpqoHSwrm9@pۙ."@Sp7fK[[r(rݢAփwsV٢Q\1ſ-"GȑCrn}~Yf#_1Q8}nyGzU9o9}WΪA0Eߖq_j}z=0Usm>t+s_>3G͑~Ssn鏛>7GΑo}:9҃ȝUs]??G׎AQ#tn 鏛>DGOё͇H"w=:{Vl-I:.ln,鏛>LGOӑ}\d>StPG/7|Ϊh?nL鏛>TGOՑuH:7}ۍ#ݻ}W>*~wu_>]G㦏ב~w~Gؑv?n;v62W/}geӧH"?uW9Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp6 w1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Yp';K1Ypӕ';K1Ypr8Yo';K1Wp';K1Yp';K1Yp';K1Yp';K1Yps-8Y΂,8Y΂,8Y΂,8Y΂,8Y΂,8Y΂,8Y΂,8Y΂,8Y΂[On=_W<^<^Oj'8SmkA9wP9[|zkt}\k}8j;oSvoUve\7ջŠ? ~k A{5U\r2l6T&"S[y |sn\>Tݫ8ǽ#Sv>+Sqf}=<׃KY zp,=^z}^;("_6SͿG6j"nok,\EBwN۽(Tz{_ =ܭ\kAzs$wd&۽ [rvȝ{Qu&\ǭ˵\6r=Z?{C\adzwHe\r{\m;x\vE;hych;v;loSvz rFzpl\b6Su6TzFOGOq跛GOq6##k欸+G%pSGO| o<yrBsvR-D4o7vo7q7=r\& h`GÁ;E+>*Mk]DN;>v~y`v~y`ێ=ܽQ]4Ü [f Ɓ?nn-4F3v/7 0Ɓ?nݝvq`v~y`i`Q7 8o}qoTv;@8Ǎ;@vi`; XvD>~d>dwOv&;ɓ~Tt77tgEnFdg';+fh7OvVz9OvVzpx[[OvVœ[œ}j.\';USN sG;lO.dgntn2y[&Ov("<׽{dgKg"Nvv&ޭœ]w%溛s=8n{x}_#R\hrg-T۝55 `ߒoobw 3k]D#wD [rM c&np$3D3.W3}+2yFT ULQEnotRMXnQEG3} ($]aB:yF݌ΔnFq-fGnFqu78<݌庛2\\3]ő[iFqޑ{/Q3UnFqx.7݌(Tw~\wz\8X>3ۜh3}~ lzȿ!䉦_*ocunnt*f׻'bNw{ nPQSNoF!_5G}̦dL"}n ΍aJ%4^.T~EfjzvEs*wOxS}2U콦Wd[GϕFf>7wWM1Q 6'?lϹ콃:'MPλz{ׂjqd.ލGs.5YMބF`>Wb8\ޑe\v~#v9oƓ7Я/Ǽ7wxsr<` W'y콦dًϕ 5: 7$ϩ|{7R ]#7ruϕݛ{[Z4 ^|{s*{I޽>Ps*^v*ޗkrC΍S?CW͹2/ƫWukt>NJx}֘* 9];^2 W;.G}M-;rռ€T%J"l l׏p cr)Nu][))%R}ǫHe#~϶p*TWr/RVax~ /q`;^-awZ#9}ǫ;FjNwZ-񅶐wl WGvw:zޢzӭװ6qW%WwHNꌱU;^-1WwewzײPSow^ 6yǫN*J.dvl-ys7x0qzzfE.T]M\ԛl\ԛlf/RxGr"kũ(U(SS=kۯ&/R˶{~!pt\xJQb]޼fMm6};poZHіG܋#/R-E~שj6ߔwE*%} 5U }ߔ/R~73ٸ~&_il/Ru%7q"UL\)1T-IYsEN{ e^%)J/vS/RN%I_B [YT]< .Oӿpyz/\< .Oӿpyz/\< .Oӿpyz/\< .Oӿpyz/\< .Oӿpyz/\< .Oӿpyz/\< .Oҿpy`pyzCTܘ6_HNGܘW*75M|g_PGygaGSM#9:Ӻ;lXah|.0wv3 vNY8!-q/f,'5&p-6tL2e cYw}x zm)>h;gǪԀn]*b<ˍ<lRn(ru4ȚFƓU&9٭guj-!cGZtJց6:L0 e49ݼ=͒R Gbk4O~Yju)#reF09y~׳Ag J0PLJjƖBZпkJZU0ѰS7y E{z4o_o^΍6,; $fOH:`~OOUߧ ѽp9qܶf3qXА`G%o#I,#U ǍQBnzYc(fYO$ 'PHX9tUI߷ؼ~[/ ,.3 ˤ@ޱlt;3/atܻzx;–̷Tׁee˛S;okC~dr ݈D҆ Ԭ)PYq_ {V"F@0 5P0j״? Q^??yLhPQPhn, P+(B ڼΏk<'mp/wt__ёcFF iIa[]]!o\qn;[d0w=g!n`L0Yu uE[$4Et ݰF^L/~m10m }QxSp[sȒ%Leid~,KHn) Uϻ겖U]%o;Q;44H!v]Hk iz :LO=o( >׷y~P#F6zʹ^7iς{z7׳K!tFN}J=Ҳ2i>%~f7fG#oQq!ҲwUU/x퍰I^ЍYe*6L̉rG.Rk9Bj;@i4RJ7>}z! vZ߽oaAqИ8<ңkJiYy!;sǮU=)a}Eͱѫ;л;}|EwX6#> zݲ'Wa ߗE۷h=}ׯuhY4NW98<-?V&[wSo mmCdw{őL#e |G9^eh 6=dyƢ4E.ik"%'$';+~by0cl<05uY߷nz}As_ՇZMn0F3QC+<>'CrqcwwYNhv6Dw)}{ܼOY(Z=Y[?qͲօ&= L' n^6=qRnB,UzD=$J$7$8͕\= -keeeVV;NyoZ߾X8Ov_kCTUWЩ+E$ ,Λѳ~H<WE.@}~BZ#ۆđvXZhY@,,]1<*y"YԪ7p'_z ygp:~݉熰yd ivX??p/Xs̗~7.j;O'R.׋,u͔Gv~Nl띆YIidIuFz.sg &6ObGU|C(iYR`%ŁZe0ZZl4}`/f.yqM=jFzD#KZ/,)FSD;K$Vf[FTR\.?~zW?P'??~Rj(6/#i7-ZDnvs>BL)/%1o/ٳ+)g?M¼t[V>e=&^Ç_i*YY߱kGI@l侴i@CWrcAp1X ++;MºM%ʞ[loz;NE݌.an۾Aa|}Lbl<|Ͻف=QpuhSXlXBpl5X=b-[HS>1dfeH/m{6uiy#vsGa>'8̊dxeoVӶmtwT/9gcVm~DzLlGQSm[ G?ٛ1lkڢ#xe^`&xeM,?((?m蹍vN6^٥?}=;Jn05~\,^6FIcG6h6壘Sob+]4vCSD]>ʎgK^EX쐗Xgy0%˃j`y{ lh#9nz*YW>r?{[pv|#-w-mM)+ʹuΎT\PdNѲl3sINThn;7M+{l!O%V+|3קw6^]Dx ekQImLk:&^ٛMqM9/76qd=Qb~ԏ+ıն2Oz&q15 q@Ki_i]ɗHuOa٨6ɀA.4PTnw7H:p:e8>Qվ'`1O0.<hk1mƔȔ 10m0t&nLy"F Sgm٨f jiFFu 鍋^&}L-Lq haoh!ݘzF5Skji٨n!6 #Tiǁj&+&-ս`Z43SGQ=ʳC՟QhaB˃:F S`)mtcn!L}0jZZ}njoWLmZ`)Ύ;L }(iM0i6+6П&멙Iz&y>sB'61)*2M0-lݘ}늍j^WlTK-ս`Z)OtR-Lq2`So)N?MT3NFzQBzQ+zִчk`haWD7<2'+& &3QB& #2平e w:6Z<VA-Lq`)ΡQLtc3hdhagDY38Y^QԚSDUVyrLݘ4F Sjo)NaQsjijojoWmZ9ȓOvМ9A2qJg̫> ymqZ wmZ pJKk2B'>>QG66[HڨC65ҙ˔(<+6}&Phf'k{0𪏅<V&yeetNq.%|f3OY>g >d X&xXxIXx Xw߁~<{f3OYӾg=|<{f3OYӽg=drO,;DO,;$rO,;O,;rO,;O,;rO,;O,;drO,;DO,;$r#O,;#Oߎ,{;r#Oݎ,s;#Oێ,k;r#Oَ,c;#O׎,[;dr#OՎ,S;D#Oӎ,K;$r#ON,C;ON,;;rON,3;ON,+;rON,#;ON,;drON,;DON, ;$rON,;ON,:rON,:ON,:rON,:ON,:drON,:DON,:$rON,:^'W/,z ˬ^xbV'U/,z) ˨^xBNl'S/,z ˤ^x"?I@9-m|M7D>ޞ|ضPö)ƢO_Eq7 J-&}`?ܸM_[rUeGmF_pQwp$O \[C\VL86Ns'a3oۆ$نۄA7i@rk {R*N? 6 \I~he|kGXC+ ҁ.O5OYϓ$w群#Kܯ~x y 2 2 2 2 w 2 W 2 7 2  2 2 2 2 2 w2 W2 72 2 2~ 2| 2z 2x w2v W2t 72r 2p 2n 2l 2j 2h w2f W2d 72b 2` 2^ 2\ 2Z 2X w2V W2T 72R 2P 2N 2L 2J 2H w2F W2D 72B 2@ 2> 2< 2: 28 w26 W24 722 20 2. 2, 2* 2( w2& W2$ 72" 2 2 2 2 2 w2 W2 72 2 2 2 2 2 w2 W2 72 2 3?3?3?3?{3?[3?;3?3?3?3?3?3?{_q-__ _____ٽ_٭.(N~s4VK"e\/"NV_EX K/( ï 2e2@׷_pp7+^o$bF  2& mߛ0Q~ @ re8JGf:0^oE4sa8ʆ+Wϯ:+bFVB`h:V:oa :\n!~hyWy҆aa_'m: F!0̱6`t>p7Hmz0`=S[`k/?>mmyY_ sq h/R4ħ/?|oYNb? 6(Jt?'l|w,:yIیzhδœ|4ˋ\߾@nې#eL GBSZڴ{fҲ/Q+Jj{k`ha5\Jc2L:^1Q`jM0Q--h7{.J,q)\Y9vۯG%`ZhaViC(ЍY&T42ԑD+6R;жl!5VacD Sj&LС G붝vl s|z>ɴœl6?JsF 08чj/4P+mAۚƌtdtdvs~æ<ڙZ:rCimk :Ҷ3Xzd(׶+M3\[Plgj5'he33RMlJ`ж&Z ǙD s:dIDJ۴P+I΋02lEC& M>jj)Ph[m(4(:)P+ȴPx"u:4~i-F e3XZL0댺/&Zaziَ@-Vlw=fBۮRZ+e+e+O-Li4tס%OLh[Bn!С+V3Zu-dsB;n%rd627On6zk٘ڐ7Q]EyWUV# ÚX2 \EEx^`z\ڹճwu3_E:"TpqADJ-S)aG6 2ow#p0὏#>5-#%?dj! 0}\Fg) c_q۱0mV&\z\ ܲ4ik;wN}Z\Ex Wnh5a>0ȬCN0Fk sп{(oGLrGWn]َNp UM)& \LdC[a0Qk/tdnʂucZ}G!Է#߲&\ub˵-6#ܦa3᝛kŹ݄Af\SL >ʄA7:\ FSUjNn@ԫnBe:{rab•[\Gxu\ ~ U_.s@ P7R<ʝ5mXZp ,Wn0LxNUkyÄAfL I># p-e^ؚ40[ñXh@Lx6Ivc]Bkm=ǵʭFMr-\wSrݶ^Y0p63a m:iG?t&\@2akG`f zU~>jdnw,po0,x?~WBg,p=l=̄w30pq-3a2CuƑn ׄQ'̣B!/WABDl_*_`0K/\̿TO7{yJ._b{(_.Qdm 휯o; Zh+;-$+" Z2r&!&CkLzE2QV & -^&hi TzyX1”ȴ”0L2GSkж -DWItk JF,q0 g,u= AӅ;c\2'õʕ-xJuQK`f727cue,Uk\ֽ\r\iЩ v`ׂPQ;&Mxʄc g6֖gg t$c!QMJE9QMm S4%0_B]+촁J(2Q \ 2`l+}\6紝2OI82wbwk֔I`vƠw0-e1hV0Lrekk{\&Ł1hȅ1h(3c[82a#Z0_&\5wW_ wQۀ8ۀп&|fφuʄ)!m5aHcp-rہ2[03)k#ҍzqayMR$:\F}6[J8w#F. G&maGȵt>lO,1a#_vz ?b%9]WRK>&k?Ko ۵Rrr-٩_*3Wϫ?/7-rih+՗C#BN)q9ˡlk[=i -Ηi!ZSDnrei%ywjfpӥȔ6l3ЇVi%[(6{52\1ahV}{D"˴j# Zh@`4S\VBiPfp6F^u|5GA\eZzRi^Ȑ:4mTe6s5MgD{>LVH3Yf d^yf螏h]@(0lbZڰMyJT̚&{4D& 3ヌ*V`0'4y)1X?M0e9Jk5CDC 9A Bm5m zE2 EU /pZiDDkuz]#1Q}?lL5MTK 3JlCX1Q+ȴP m&sBŘXi0h[8ԓBk|9kL65ʹ}ZZ Ukw,txPB=~W& H+5Z 2"0 CuRu~Gf{3lM`yK:\ c_Fuy"u҄MW+A}6+w& \#Q7L u҄:\ J:2[Εʂlؿ2Vwz򕓠uR+̵_֗82ao$:\ C[KOtrk{hH2a>2 2+V& Cȴ Q= 8_0}>p-teecy\ \9o~{p-xyW 5n940o2#D`x F.#qbV&Нxil⚑k2‚eĶ2axȄ a 3 C[X0a#7Lhuݿ )WnH}޹ra[Yp6 l+op-^@Mji纖4 2-rG:\ ~j ׄP/S|yi88~M0o0Ȍ C[_rl+5V+cЄAׂAf&|_&egz\̰2al+[0r-UzՀؿ-W9ffYA8LreNkPقwsLǽt0)/q(K!?}s_*b/ӯO|%Ic %UϼsDd5k,L-޹3m6r@~>L Q"&SsDqhaniiL E3I|Z/ (Du MέDkHdZh}CB%MSPZ kGp0 _ۅS mt#@bN z 87Sz;Iy`h߶d#ZE/2L\ `(0&Bu Adjk/h! l^S+z68S05g5*_D B{pDkxD{D &[Du BQZ L9,ZoMzEm"Y3dq -qj_i2A$&Zb8IR)멙MhM08B3[/?M֋rdZhm!Z(mH^v*MHQE i5#ք4H["ƊS됉jiWLTh^A>T_ZIDb` Y(0|k+z]'q4aB>-YDM/[LJ[O?4z v& L2Q--&&[Duƛ`CH6jºM G#hV8M0Q`jM0Q--h¶ЇjwO -,B[…5z ZD+Sx¡WLZLTK g@MT  #GȺ?%z ZVgRdZhi-̋RyK h%V+n7%z]DfxPomdW"Nx:\ oduq# .2#\-!Z8MׄwlXO2ރE$& 2c0gׂ;2[~wcA[Y0rFGjP1n,V7&xJ\ Y>pNNTxHm ,!0Ȭ!C[N0pm+C)]Gf,'KRًIU \g;W&5-Ƃ C};$;mQ!.;0+]DM\ ~ U_*s P0KpQ7Lx|e;QX=_0ra2a+±o &\Ł|\_Z~xEl;7_p# F.`hX`#L.ۀb3P@7LxOh] ut߻(;l;7_;քi,n$'k•Lȵm لw7LׄAfE`h+/Gr ׂ qy"C+Γ&\g FqY0捶AG+py9:4G-cwn1h|A@禾A+큻لw﬿&\aȅqd 39& m:i &﮷z\ ޹z'Rٱ,x}^Y0rQ7,dC[uƂCuƠ?F8_w?cy/?En&o[`y7Oqj{VEڶWd4P}9涩"CrLsa  ՑVBka-ag ^*6dZh OZ"<[BkȚ ^P`&X(H gB "QW(F ^Y3QJBߖ`Es^ÃLVGLT_P'0MPLy\z[a 00L2E8zK,Q, 5Qݶ0'&,%O\F_\&,td/dd/8+& L! iALݶ萅BB&ZF,h!⮏S+_QϋG;C-[E۵lm+z]vzumk5dMZCD8 0)C1%)6HL nM<#V4"I7/7[S \J m0"0ʬL#c[)Gj&0hM $;\ ޣQ+롡iPͦޣh|+`"B;\ vM}Uf v`2^Ε;Q+FnA eV+&RL^[ cAM[XMS-:i{䏸ǂ uum#D4sLs# 333_fׄwJa0rgTBAT7m\= meȅyÄ`{CFhvI& ׇvL_[Bkij}6WP1]ړYVG& ץv ץZfP,0rq,X0ʌcЂ`0rٜM\Ӫ78k'رfީ/:zxR^%n?U_܏bLoz =}C#nFF!S")?yy-"ײK\~9 ԯy~I|o*~~,@OvF |ZJTs_Sd<5kv9Ot<߻'sg Rm#}ng.r{.;kw9Ot<߻'sg RwhgJy[6|8 k-aؕd_jq~sG8V}^ zyOXvu>YA9$:VR!gơS55Щqqq8t8t8tjff:7NKsh|KJ[REQѼfd^L,3v.Gί]ļG*+rT-z7'Vdy]kU<*vw`,')'&ϥ;O ilsN9㳙9OO9v\ Y?aŎBVk0J4hw|6h!hl('O)33f\O! 3;>< y0|2~bQ\N!N%QlwGQnrgQlFQna( b]<1=fv<TxBl Osnjjbfxu.hOl=FFFFkdNNNNɟªw>m:'HH'H'Hڑ#####gHڑ#####]kG֎tҎtڎtҎtҎӤuc&M{:[{6Yl.']0|n~^v{c^xb"Oy endstream endobj 6 0 obj 364584 endobj 999 0 obj [7 0 R 8 0 R 9 0 R 10 0 R 11 0 R 12 0 R 13 0 R 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 51 0 R 52 0 R 53 0 R 54 0 R 55 0 R 56 0 R 57 0 R 58 0 R 59 0 R 60 0 R 61 0 R 62 0 R 63 0 R 64 0 R 65 0 R 66 0 R 67 0 R 68 0 R 69 0 R 70 0 R 71 0 R 72 0 R 73 0 R 74 0 R 75 0 R 76 0 R 77 0 R 78 0 R 79 0 R 80 0 R 81 0 R 82 0 R 83 0 R 84 0 R 85 0 R 86 0 R 87 0 R 88 0 R 89 0 R 90 0 R 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 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R 128 0 R 129 0 R 130 0 R 131 0 R 132 0 R 133 0 R 134 0 R 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 155 0 R 156 0 R 157 0 R 158 0 R 159 0 R 160 0 R 161 0 R 162 0 R 163 0 R 164 0 R 165 0 R 166 0 R 167 0 R 168 0 R 169 0 R 170 0 R 171 0 R 172 0 R 173 0 R 174 0 R 175 0 R 176 0 R 177 0 R 178 0 R 179 0 R 180 0 R 181 0 R 182 0 R 183 0 R 184 0 R 185 0 R 186 0 R 187 0 R 188 0 R 189 0 R 190 0 R 191 0 R 192 0 R 193 0 R 194 0 R 195 0 R 196 0 R 197 0 R 198 0 R 199 0 R 200 0 R 201 0 R 202 0 R 203 0 R 204 0 R 205 0 R 206 0 R 207 0 R 208 0 R 209 0 R 210 0 R 211 0 R 212 0 R 213 0 R 214 0 R 215 0 R 216 0 R 217 0 R 218 0 R 219 0 R 220 0 R 221 0 R 222 0 R 223 0 R 224 0 R 225 0 R 226 0 R 227 0 R 228 0 R 229 0 R 230 0 R 231 0 R 232 0 R 233 0 R 234 0 R 235 0 R 236 0 R 237 0 R 238 0 R 239 0 R 240 0 R 241 0 R 242 0 R 243 0 R 244 0 R 245 0 R 246 0 R 247 0 R 248 0 R 249 0 R 250 0 R 251 0 R 252 0 R 253 0 R 254 0 R 255 0 R 256 0 R 257 0 R 258 0 R 259 0 R 260 0 R 261 0 R 262 0 R 263 0 R 264 0 R 265 0 R 266 0 R 267 0 R 268 0 R 269 0 R 270 0 R 271 0 R 272 0 R 273 0 R 274 0 R 275 0 R 276 0 R 277 0 R 278 0 R 279 0 R 280 0 R 281 0 R 282 0 R 283 0 R 284 0 R 285 0 R 286 0 R 287 0 R 288 0 R 289 0 R 290 0 R 291 0 R 292 0 R 293 0 R 294 0 R 295 0 R 296 0 R 297 0 R 298 0 R 299 0 R 300 0 R 301 0 R 302 0 R 303 0 R 304 0 R 305 0 R 306 0 R 307 0 R 308 0 R 309 0 R 310 0 R 311 0 R 312 0 R 313 0 R 314 0 R 315 0 R 316 0 R 317 0 R 318 0 R 319 0 R 320 0 R 321 0 R 322 0 R 323 0 R 324 0 R 325 0 R 326 0 R 327 0 R 328 0 R 329 0 R 330 0 R 331 0 R 332 0 R 333 0 R 334 0 R 335 0 R 336 0 R 337 0 R 338 0 R 339 0 R 340 0 R 341 0 R 342 0 R 343 0 R 344 0 R 345 0 R 346 0 R 347 0 R 348 0 R 349 0 R 350 0 R 351 0 R 352 0 R 353 0 R 354 0 R 355 0 R 356 0 R 357 0 R 358 0 R 359 0 R 360 0 R 361 0 R 362 0 R 363 0 R 364 0 R 365 0 R 366 0 R 367 0 R 368 0 R 369 0 R 370 0 R 371 0 R 372 0 R 373 0 R 374 0 R 375 0 R 376 0 R 377 0 R 378 0 R 379 0 R 380 0 R 381 0 R 382 0 R 383 0 R 384 0 R 385 0 R 386 0 R 387 0 R 388 0 R 389 0 R 390 0 R 391 0 R 392 0 R 393 0 R 394 0 R 395 0 R 396 0 R 397 0 R 398 0 R 399 0 R 400 0 R 401 0 R 402 0 R 403 0 R 404 0 R 405 0 R 406 0 R 407 0 R 408 0 R 409 0 R 410 0 R 411 0 R 412 0 R 413 0 R 414 0 R 415 0 R 416 0 R 417 0 R 418 0 R 419 0 R 420 0 R 421 0 R 422 0 R 423 0 R 424 0 R 425 0 R 426 0 R 427 0 R 428 0 R 429 0 R 430 0 R 431 0 R 432 0 R 433 0 R 434 0 R 435 0 R 436 0 R 437 0 R 438 0 R 439 0 R 440 0 R 441 0 R 442 0 R 443 0 R 444 0 R 445 0 R 446 0 R 447 0 R 448 0 R 449 0 R 450 0 R 451 0 R 452 0 R 453 0 R 454 0 R 455 0 R 456 0 R 457 0 R 458 0 R 459 0 R 460 0 R 461 0 R 462 0 R 463 0 R 464 0 R 465 0 R 466 0 R 467 0 R 468 0 R 469 0 R 470 0 R 471 0 R 472 0 R 473 0 R 474 0 R 475 0 R 476 0 R 477 0 R 478 0 R 479 0 R 480 0 R 481 0 R 482 0 R 483 0 R 484 0 R 485 0 R 486 0 R 487 0 R 488 0 R 489 0 R 490 0 R 491 0 R 492 0 R 493 0 R 494 0 R 495 0 R 496 0 R 497 0 R 498 0 R 499 0 R 500 0 R 501 0 R 502 0 R 503 0 R 504 0 R 505 0 R 506 0 R 507 0 R 508 0 R 509 0 R 510 0 R 511 0 R 512 0 R 513 0 R 514 0 R 515 0 R 516 0 R 517 0 R 518 0 R 519 0 R 520 0 R 521 0 R 522 0 R 523 0 R 524 0 R 525 0 R 526 0 R 527 0 R 528 0 R 529 0 R 530 0 R 531 0 R 532 0 R 533 0 R 534 0 R 535 0 R 536 0 R 537 0 R 538 0 R 539 0 R 540 0 R 541 0 R 542 0 R 543 0 R 544 0 R 545 0 R 546 0 R 547 0 R 548 0 R 549 0 R 550 0 R 551 0 R 552 0 R 553 0 R 554 0 R 555 0 R 556 0 R 557 0 R 558 0 R 559 0 R 560 0 R 561 0 R 562 0 R 563 0 R 564 0 R 565 0 R 566 0 R 567 0 R 568 0 R 569 0 R 570 0 R 571 0 R 572 0 R 573 0 R 574 0 R 575 0 R 576 0 R 577 0 R 578 0 R 579 0 R 580 0 R 581 0 R 582 0 R 583 0 R 584 0 R 585 0 R 586 0 R 587 0 R 588 0 R 589 0 R 590 0 R 591 0 R 592 0 R 593 0 R 594 0 R 595 0 R 596 0 R 597 0 R 598 0 R 599 0 R 600 0 R 601 0 R 602 0 R 603 0 R 604 0 R 605 0 R 606 0 R 607 0 R 608 0 R 609 0 R 610 0 R 611 0 R 612 0 R 613 0 R 614 0 R 615 0 R 616 0 R 617 0 R 618 0 R 619 0 R 620 0 R 621 0 R 622 0 R 623 0 R 624 0 R 625 0 R 626 0 R 627 0 R 628 0 R 629 0 R 630 0 R 631 0 R 632 0 R 633 0 R 634 0 R 635 0 R 636 0 R 637 0 R 638 0 R 639 0 R 640 0 R 641 0 R 642 0 R 643 0 R 644 0 R 645 0 R 646 0 R 647 0 R 648 0 R 649 0 R 650 0 R 651 0 R 652 0 R 653 0 R 654 0 R 655 0 R 656 0 R 657 0 R 658 0 R 659 0 R 660 0 R 661 0 R 662 0 R 663 0 R 664 0 R 665 0 R 666 0 R 667 0 R 668 0 R 669 0 R 670 0 R 671 0 R 672 0 R 673 0 R 674 0 R 675 0 R 676 0 R 677 0 R 678 0 R 679 0 R 680 0 R 681 0 R 682 0 R 683 0 R 684 0 R 685 0 R 686 0 R 687 0 R 688 0 R 689 0 R 690 0 R 691 0 R 692 0 R 693 0 R 694 0 R 695 0 R 696 0 R 697 0 R 698 0 R 699 0 R 700 0 R 701 0 R 702 0 R 703 0 R 704 0 R 705 0 R 706 0 R 707 0 R 708 0 R 709 0 R 710 0 R 711 0 R 712 0 R 713 0 R 714 0 R 715 0 R 716 0 R 717 0 R 718 0 R 719 0 R 720 0 R 721 0 R 722 0 R 723 0 R 724 0 R 725 0 R 726 0 R 727 0 R 728 0 R 729 0 R 730 0 R 731 0 R 732 0 R 733 0 R 734 0 R 735 0 R 736 0 R 737 0 R 738 0 R 739 0 R 740 0 R 741 0 R 742 0 R 743 0 R 744 0 R 745 0 R 746 0 R 747 0 R 748 0 R 749 0 R 750 0 R 751 0 R 752 0 R 753 0 R 754 0 R 755 0 R 756 0 R 757 0 R 758 0 R 759 0 R 760 0 R 761 0 R 762 0 R 763 0 R 764 0 R 765 0 R 766 0 R 767 0 R 768 0 R 769 0 R 770 0 R 771 0 R 772 0 R 773 0 R 774 0 R 775 0 R 776 0 R 777 0 R 778 0 R 779 0 R 780 0 R 781 0 R 782 0 R 783 0 R 784 0 R 785 0 R 786 0 R 787 0 R 788 0 R 789 0 R 790 0 R 791 0 R 792 0 R 793 0 R 794 0 R 795 0 R 796 0 R 797 0 R 798 0 R 799 0 R 800 0 R 801 0 R 802 0 R 803 0 R 804 0 R 805 0 R 806 0 R 807 0 R 808 0 R 809 0 R 810 0 R 811 0 R 812 0 R 813 0 R 814 0 R 815 0 R 816 0 R 817 0 R 818 0 R 819 0 R 820 0 R 821 0 R 822 0 R 823 0 R 824 0 R 825 0 R 826 0 R 827 0 R 828 0 R 829 0 R 830 0 R 831 0 R 832 0 R 833 0 R 834 0 R 835 0 R 836 0 R 837 0 R 838 0 R 839 0 R 840 0 R 841 0 R 842 0 R 843 0 R 844 0 R 845 0 R 846 0 R 847 0 R 848 0 R 849 0 R 850 0 R 851 0 R 852 0 R 853 0 R 854 0 R 855 0 R 856 0 R 857 0 R 858 0 R 859 0 R 860 0 R 861 0 R 862 0 R 863 0 R 864 0 R 865 0 R 866 0 R 867 0 R 868 0 R 869 0 R 870 0 R 871 0 R 872 0 R 873 0 R 874 0 R 875 0 R 876 0 R 877 0 R 878 0 R 879 0 R 880 0 R 881 0 R 882 0 R 883 0 R 884 0 R 885 0 R 886 0 R 887 0 R 888 0 R 889 0 R 890 0 R 891 0 R 892 0 R 893 0 R 894 0 R 895 0 R 896 0 R 897 0 R 898 0 R 899 0 R 900 0 R 901 0 R 902 0 R 903 0 R 904 0 R 905 0 R 906 0 R 907 0 R 908 0 R 909 0 R 910 0 R 911 0 R 912 0 R 913 0 R 914 0 R 915 0 R 916 0 R 917 0 R 918 0 R 919 0 R 920 0 R 921 0 R 922 0 R 923 0 R 924 0 R 925 0 R 926 0 R 927 0 R 928 0 R 929 0 R 930 0 R 931 0 R 932 0 R 933 0 R 934 0 R 935 0 R 936 0 R 937 0 R 938 0 R 939 0 R 940 0 R 941 0 R 942 0 R 943 0 R 944 0 R 945 0 R 946 0 R 947 0 R 948 0 R 949 0 R 950 0 R 951 0 R 952 0 R 953 0 R 954 0 R 955 0 R 956 0 R 957 0 R 958 0 R 959 0 R 960 0 R 961 0 R 962 0 R 963 0 R 964 0 R 965 0 R 966 0 R 967 0 R 968 0 R 969 0 R 970 0 R 971 0 R 972 0 R 973 0 R 974 0 R 975 0 R 976 0 R 977 0 R 978 0 R 979 0 R 980 0 R 981 0 R 982 0 R 983 0 R 984 0 R 985 0 R 986 0 R 987 0 R 988 0 R 989 0 R 990 0 R 991 0 R 992 0 R 993 0 R 994 0 R 995 0 R 996 0 R 997 0 R 998 0 R] endobj 1000 0 obj << /Type /Page /Parent 1 0 R /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /Font 2 0 R /XObject 3 0 R >> /MediaBox [0 0 2383.92 1683.79] /Contents 5 0 R /Annots 999 0 R>> endobj 1001 0 obj <> endobj 1003 0 obj << /Length 1004 0 R /Filter /FlateDecode >> stream x۲ȕwϧؗE3p8lReSRwu *ZR&i+@"9^kaߔZ-ժƏ̙}mO|iqߖ(G2808}y^Ǽlɸ ۴L-=e2e _?~6t難}7?0Sw\ͯjh[iFk__/~>ibe G {KbXk~;{˂qZ}L۾rFT)*X]1בחt_Sj+:wi2O:Z:c==u?}˧= >}>͟ӧ1~oP&po.7o+_.9kYCL%2.b:.W68k9=?!u +5!Zs11lǚ5|*8< BMeZǐ[iO#5>=5=\mT!k˥њX^Lb76b Lko9 6VkN?=6=H+q҆ax6vcJ8k9 ^`B`-sYA`#̹AZ9')f-|>>OƗ>ҵllˏ矱uDzW^L@<^Ա eLA<2ԛ:sxG M!=^1Ufn.t8\;t:4Y]^ qxQW`v/q|{O@vN'ó:RLkWK^Ա󖘈\򢎥.Iw41[4DΙ*yԸHީ1|8to7[>Ӿ)N+I~+ixJh5xމG[ީ1e:-V¥&yRiQShމ3U^V"Fg,X=:Cw z3w zw zڣ-{/cˆe9VݶIACH8qa%I5u&!ߒJ%~crXR'qXrC xֵpu±S@8:ri5r| ܒp # V%8A%/| |-c9)!ZNB a3C؀646 oeN}fzJΝri P95ccg\i8ڀp uaS@8%!|~w9 ŔGtx`?wEA Gb?)!lb#!^; a3W au¦9) ls_u/KqB#! wb=@tbQb^~P03h')n)^S<.{Mq+&6"6wMI PSRMSp֔j$ RPD+(nwJHPԊXS~M8ZǛ V2KHPnV&oCj6[7PA~xc2lPQ+7 oَݐ,M)Z|JJ%qIq{TR(( NX 9EII(E'(gT+Kz:- ^'2R S/J,NHGRRCRG:R JRIJJA)8ZA)㹄VF())h9s=!zNlA=҇45轿?i]sZx85ݎTCeاLmq?d!Y٦.q9;,`| X*e|1δ[FK1)xmpAQJ0~yפyk}s 50oE{4rmF5x)EnkVt&]쩮uDqΓ N@S|X#tt 8c؉X.Ӻ0e9xDs͆J.{:Q`~vt +# K|W g|GSmlrE1Re`񨋪SuDK]VǺ6>w":>w 9s`hs$= Dp Ǜ;B9P.@86Pm*Q;ym8Gg=5]Z[a]O?ٚ4? ]v%s; T<$7W/38=Ʒu2sҪ%<5kU0s[jY*Xwm,+k+۰zeWaװcծb~:ڕ,0SBkY1}5+^Q\ϊK^^۟X/xUGT!S}m+Z7`$uHַ\%T{;q9hzДֹZXr0 ]沂5/čuAWggVb:OJJ\jhr ka01ú`m׸{umVY#Jf{X'UL+PN^.jºZs-x!ڍYIr`Z=spƙ9`Vei:•*Snꘃ)'{Z-pKٞ{_cq7Y+1f9i`Zws0f9`Lep:µ8SnບO/aVԢWl? rief꜃Y +m>)/JguTOJ]*2ZPZgiZ`}WU0Nћz̕bᅕv7⩆7_8E҇.< 7;`KWWFzcϲ/k*%RJAr}^؈7z[)hV{7Uqlx)-ʵ>vcM!iQufۧSRn+5eC)4m"R -Y֔jeGVPʄ&:e)9qaŧqiQƺ>ӢXlkt+4gx^xdE9?hZ9H^)E)(E9$hQ:y+()JѮGN JDPR*1VvYF`ʼnvWt6v6jEѢ )N&(k.WN JI0IJpfا{߹Yyj)-ʘu-JHЬgkEPRr)(ETB}RR뚢U(j;%(+}*JBPﵥkiXd~Gq)zr[4+`ӹs'o7Gٖkr&J%t-D;CLB&Ȗ%-ʰ3Ir~OX)hQzY9iu\-K)hQ{`#OY9IOPsHҜ kVhQ.Jƾg7a}vSТ\맟:)hQ2]:)hV:OS8] (R`/)eB'[C\kh-HYBPݕ;"hVi2AI'(E/(2AVe z:=MQc|:mY92YNw^k :Q XOpu(z"kEѢ1Sxgg-=-|OP%vZ!T+{݆~>-zM)J(c>AѬLfm1RТ<NXTB\JRRRO(EKOE艤( g 2K(zo |M{W\?)j,³JSѬgm[ErިU4+[Er}*JJ.[A)Zj+R Q&(JB٧(ee'WG٧YyE-ʩY7Z4oEII٧(E/(2AVe z:=ͥ\*&i^mfY]ߜ}˸E)ZxE)JB-[iJ_Wa7I;5kYvoź͊qx*Sh^Ih>k| u|6V|6_g%RC_uЕc z$Tp`E+ˎݞcɱ%eȽn=o5پ'{{=d4,}b=Ek)\3N!'xWIR1ܮw͇e;k[Ӎ8SyMksm,ViV{}z5v)-iMz>-}v4+c7%-ʵaþg'iQNn'%%2A)}HJ%KUPCV8LSxV)>Wv/l}V:ʆ;`Xwה4+VV Zxz6igdqOe-&e{TM$%%&RK;^hJ%:IVX)(g<}sɥZilKV}j; hV`;JArXz>m{SR Zqa& tfFRDJAV2RQcW:p?[c_SV=1R&|ٗm艿JhQn5=;y}&Ce\f6RЬ){ШFҢ\_&$-+4֔4+w½犢-=yT+R&p z:Y=&BG艿_*٧s'oO7,A,TceerK~tVsV\sD{YQx7l=Wk}ϧ{ӹܧ>zbQ Zns}OEz2ߧE=Z-PTTWCRfˊ9~)JBLѬܶg}_Y>ZV7-ʵ~2S+R4wPJOP*JJA):mO)㹄VF~pbZqR_OѢO;5t-F.>dua-[Ѭs%UttZEywe+XKhQfڊ-D(J%ę ( g >T.GwR Z攐E9=r\+ s&JJ>A)ZxA J-[i.eZے \)T_(Y tGMqW?-Y9ǺYkӲ51 .K+ǡ㣠aVqPTO1Ku iJw=#?87Os=%19nT,I>Erjwelc[^I'խӢ uS}S;6۫>x'چR maSA)XB5AҧԯJY٬u+4+yfe{?R ZŲW[٧Z׺ԉTB}RR뚣4)a# .!EY9[RG -P[k*JJs>=;y}z.sI+U(I\SP&YYWuXO)hVcuD+ оճ܃)J%mR>>AQjيR&RP>VPx(ύ?\'1;c6Yg}~N$fko/I2̵IqHwO$-ʣSzDRRWueC)Z|kER*!|ZRVVgMpI2axsI=#9둔z$z$Zs$-94~2mGmY LK5I(лfΝ>h;5:rZQ zRO(])pqo&JYJA2 7%O|a())T%g9EȅQQV zb]sZwٵOQVT+8fC_yq吠'*筠Yk z:w|sXmtMAΝ>hs0ƴ|{S12!'~;Y>u}sLV+Vot9/]g8gk*[EsJ;)-ʠ}$-9q}*J%DY-lE7QjsHЬg%NPB?;fC/L׽?to)ks\T[;딿PVI2_iw#{@^e'o{;y}ZSS#6xORIJ%k$Zw$L`}mx>C'PL_(٧s'o7Gٖ琠tM|CMR*5t-E;oe]nUp+𼥁$-TK]^SѬ7Cy >n~:s')+X-吢>drgR\9aj?qT)EY9]3B\wzTF9hfXE9<;|}R&Ģ}koUr+Z9G%$hVffqnSҢ<YˌۧE<}*JA)Zjfel$1[2^PC[Q Zq4GqihV6W("OonIŷQ$%%吢-孢EIEV}*郭ycV zb~q a;-[Тݲ%%OA)Z(J%'( I )e+hRZNYy}''DǾ>oH_~pVF_~C<ԯ*~?R ן\>ߜ/:|HꁋǣjXh>xbG8M}Zg&Jmܝk z:wtݟmʦgbŃN٦]]%]sǹ}pnwiR/ JArǞ,}Z.jHiS=P zhܭ$-ZC}S&$YN:Q Z{UJ+RpniE>l+Rb&呬Y-~(Z ꇢY J@}*Zc5ReIP)ZjeyAɫhɄVQ_:wJhy5Pwם4+>9}*^G+hQ2\TBa/qOhVQ]MѢ\kʣ7ELt<8էEWN} ׊Y9nRЬA*Z3R(C=Tε(^3AѢ}j ϸCN FW蚱 V [(-O94)!Ar uԩArPL>A}.貓Q:LЬcrZYFO)hQu嗢Y9>吤Y9ϞRЬ75)$-ʹ\i iQ@.j$-׊{l-e A)iVkgwfKh-ʥS Zs5룹V,;C2!}&e4ST4+q*ZsƑVѢ\6sFkJZJhmErX\G)(gKٞZҢ|^ d|a#une^lEKPG)CO6J ozʨ+er4+Snees[E {V&hQN ZJ(,P+SDuVRcAK}N9V zzh㿭s1y9X͊ʭ,DYe/jYUk z:wtݖDʴ>gs >۩OA2(\fe)Yl1!G+hQ^;(>-y͆vB5ah4FC,iVϧxiXҢkNўY%N>Y>x}>:JArzvݒԆOy]A}uwيӚi=ARB{3[Q&?-uzFR iQgMSR+{]Y>AѫyJA2vMEh軏>a S{9$OѬL\Q4)ס95Ht{O W((UѬ\;EO^tͰ>Yy RЬLW-ʱZwJHТ\fE|3^RB{AVk,{MJE95H*q-wUEKN8qC[_u4,#N ZG]\SЬL#<+9։VТ {](j\-UD+hViqJHФ܇RѬS]Or\~l-u=vOo]cjt;JA2>:YNiROhQ2(kS+Z{}S|>۩OA2琠YO5lV X q; ZyN Zs&zjEKc5Ks-[y4ٞ-D,!Er;׊YL>(t7_.K&m;-t erCl;ʆ^X˦4k^ʳkds̚ 0Sfj}Q>t)[Ӎv]kTU.|JRR}^u(iwrKO\. b-ʥ.wJHPRRTMުëmC JJAOkVҢꀒJHRRXGP/M`C9PL`zrHV e۹s'oϷGٖArkj(]3AP*!s'oO7mɅq$l-&0u2⹕}zY9e is֊\-eTB R`))e+=184IHٲ86p^_D+(~|3r>tt2A򭗡r)JJxE)ZneR qj{A)X)(eE;M{]"hk*1{;M9T҉V6T1JJJz(JR[QJڧT+ĺh-FBφc%%Zn/i=w'=W9o-ʹn٧s'oO7cG)ږ,2t[TOH4f,{EVYy<֜Qߧ())ohiL(Z9RТUD5=1K}*JJa(Jr J%DLQV J@nZ 0od{w mEѬE9xnePhVe+S}RtPJSP!E)X)ѦQ̄ѨfK/^llEr/uXJFgA;JA2wp)-d4^L6'R#o>!oI>ח?vٿ8%mk }Qk>秾eE pީUMz^Z5A]Z\S' 5.ڣ Զ4f:i1w1OBkeWV :Jp ME;MPΔx-N'@OJ5ԘG"Oj1i-+{cGh5: k}WG .y5,OGZ-Pq6 (-#peRNJ:y%qю")SO^jT?_*\jr6h{Q۞!㹶VaƬ1Ҹg\GZtx|9 s#>jIIZ 3gƬ:RcP sRc#*|Rs \++;Zg8N~O޻Jn">r^)\>8l|VhS^;Rc2F]=%>?s]9(VMzUnM- 1|]jGsYu>z1Ǜb |.u뛀TG|P_ԯsiKiƓC.ڡZovb?\R?%h1'%昏!\V_esnLcI*mcVFnsBYؽZW~%.ڽYU[sԎ$沢Yb#\ҘsZBMumcɟ4?LĬTHWKx'r8K@LiN?)qg~q1vϏos΢WV=%@\V ^Y)\bx}WV rY%:՚,.[_}8DOͿ?o}/[.oܫsu߆S~pi +C2aUu?^(M1t7CpkJb9}^Wa.0T^Y5J)pEVRsƽ.}nJMv)^)Z 9fI-(uDm_k\O=e; 锕E{C8g{pY~>I*\GJ=>o_iB1nj\Vh\hy9;Zv;U4>)qҸJc۾\VhuZ97(Kۂ4_-ոs-붐;5_@Qٔwzr5Xqk.o!oղ%1ZuگE;ճuk.[mOتq9s=ܹ_.lq_'qѮ3A~CbR[bNésqONYJ#KNZ-(L1KLJ]'a$f-)'%mT7$>y?ȿ_?^]WSmoi7Q>kOY_6,-ۖYi6|7o>U;eyiWTZӏ'A?߽iNo>Eד?'zEx i8!}e|;k:s[~:qB{~{s]+w_F]#Ƶt&|'>vYӤn4ݫRФDЉVѤ2Ẋe5ʵ~M%`jsܲI.܆ռ*)6 %RmZWFcVZM^&3Uv 8,koj\9bvX5ܬ.?ý\eXQڊUb I鋪׻dezz-[-YҬ պQRФL[S f3$MʭmT4)9ZEݨʵujEQTr&V>[+!6l%E%]s?-}7ָV$JScxME2euvT4)ף7vU4+> feێ)(iR[ޘ䧠-=%X+\3VQ>V**zB;4Wkv$[LrUR()q2H(VҤ f'iV]_JAQ"Py[-h7Kz0IVהfINfe;ƧR4+jݩEQə(F٧(g2)h61$E%_ܧǯRExKi~밶J:P~)sLz-4)v4+3{@^_1?uy2tQlMLk]_ȥѸ܆qo-hq$)6U.Piy_NvfRM:*SJHѬ#ZQ b}b q+B2=lgPiVր9hR6EhV>ݬLyo<(nSK&KVbC#.DŽ/ҾycLN1Wۏ]ͯٲXu^ڷ:mxw|`n^463%V4l+@yCY|_K)(]sz|hR_Sӹ7ܧXG#`]46Ҩqהxfu3N.IiRѼݖ-Y))EvoGT}Zu&e;s4+sHҬlV4*R JxGrGP3AR*!IVה2_Ұi(g"*Zwd N OEq߂3AѺoq;eWV(lEV7ٝ5)h|D{ה4 $Yi>y*ÈQRRsEQۊTB>%Z!'5E(R IJJ1JJ#ƣ]sG3ehV]jfO[MI -R A) ^K&}@z3u,xM˰Iz9$ 8+ʡ,w5i3aTEsߛxH(E }F~7W4eej=C)ZjJ%4o;%PR*J3u=Պatj%:h>1U[R|v$XVo/O\JZO//r/))")E2IOPj!E)H(eF;pg+Q0o-0eS'iRmRѬ筤Y9V7U[I2??˗8o%%%此-此TB R`IJ@JE)(4>(NQ9!Erkˀ3lՕ}fV?f>Eq!dSSJSQ!E)HEѦ9@蚆n|TtM8iTirIkJz:w']+afߜƄ[^ԧI/Zr}J퓗&ek4U4+1IJJ*<)~hN3;iIz״lIs'O? DkFʶeYbxMK!5t}a.jTmkDR& fe7{MAONpn{;ٷř-f.CJEr5Ph+f,n+fe@cIIcI)ZHJ%T+VL 3Ѯffet4)Go+iVz%$iRT4Pa\f)!+ZCJE)ZjfeFBvV$hqNR*!\{jRj PauFbTE2\Ic!Ia/iVo%%%RKJ%D}T+)J@JE)(Z{:hr&L%,;g4ʰ򴿯4)m~AJ[3}VRԒR a)iVcMV S'f OIY # I)ZxIIJJA)(ڣUB팄ڊIGJEқo }sg˛3[[SŧTBTRP)J@JEO/vWk'2Ϊeز%A*Wv,vgbwwIvgdvfw6w8,]ci(yh'ZE4j(+j(8Jqv5gWCvPqv52aw3aή=Jњv;ή1aV:FV,gW,펲g%aj(8>]k>ARpv~HRpv(gNkN(Jg4WjV.[II;ήXB;\+f'ZEϳTmY&G(uSB]>ŵ0E}rw)M<H̔RdwzY(ebi<~sYi[ m0Oe-G-6b[1e@SRV*zb]-5R v8n8b~8n1[aHo9njHtf3<@|:2[ m[VL`'Wp1Z;I3ARLq L-3Ap1LS}J t=!* {R<:()w-2ij;n} v-2~[IO)[ƙ`Av2AQp ]SPp (N$%meie.!E-[ E)xQjJJ2޲mtAvJHQ(/N* {j jJq @o v-[[Cz-5+hmO-i`QŸ́ݽ=h>IY\SP(oNC\esbU4+|;%hR(%;* qUqӸtagpEӬl [Iںh+!Ach%Şk6V}F*>6 )[yo*&"h Nm6|J\+qhR6ocuӍvu>II5%J3E/EIxI)Z;HJ%IVHJEO/voǷ FҬ4m-)!wܷ8em~ Ao[hY(EKSѤl"qD/E)Z'HJ%tT+T2@/3NbƮNzSq&H nG!ESqfe;Ƨ>^QRR(EK}TB'(B T]i.@OѤl|#;JEzP)#,}=hqL-)ZiGT4+ 5%=1K}JJt TWK[X+T2ݖ>wpjWc6uV)7g͙-o ^>ORR Q}*B99CY9>_Z38m) Ö-iVOVH NRm^>e|[zL~,m c>x?Wؿd^uNlIŸ"C8&28P0)N)O,ǶPxi/2ǶP0Z&϶PRzERmTBmT+m ڶ2޳-hM;lbI"ȶ(-)"|ۊemPXG٘0϶P-2}a־}`[`[Q* EhۢN ) CZQݧaRqJJJ϶K}كkER0D(tAN'ZE?%!~ JJJ϶6϶ <"| rlbzw3AuR{EiGm^#Ƕ32϶yEmBBG(pJ F@}PiǶPRzERm& <"lOnhۢRQ0D(uJHQ0Ԋl(L=y|mbWPF5f34Oc'o5hQ96j2[}feaiVƞfk<_єE4:ʆRX+R q^ 5rZ|xmT/tU~~*S )z5^ԊLPSJ2^QjeN lURF`(1jzi C揊3VѬ|^ e4>WH:sOIy屣T4GMV$}׹)0$))ESR*!l^rV&o5ZYĜ ×2 7k8@2hXQ $]mi(]s4 ;Tt FۺD2q d|/8u dp \8@28u dp vV&)JG(:@28u dp \8@28nT dp kqLdp \8@ҿ:@2q dp :@2q dp :@ɽ <HR|u 5QN u dp \8@28u dp \8@28u dp \8@28u dp \Ƞ }J Q*u dp \8@28u dp \8@28u dp \8@28u VL(E:@2q dp :@2q d\`Os828u dp \8@28u dp \Ƞ ;`dp v]SPp(E:@2q dp dHRju dp \Ƞ=hSB`G(28u dp \8@28u dp \H':ڞZ;@rlᚖʌkbp=!ZFxIё V*NOSEsߛtR}@i R(+FR$BIVH(e<G*VZW6EQ[K;CG}9\gTB\*(JR2TG)|,~2eV eI:HRѬl𧼕4+"[IѹVRRbJJbJJ%D( g 'EGljEA+G/ZE2rk 4+MYiKO;9t"a+(+>S>-iƁ{ME!ZVι o%=WkBs{'|MAONpnNo2ےg7峞k6>9 ggd<܉akZ qOE>ʶk z:w]Z'Ⱦe˓Xw$8#Ţ"iV6^\V$͎fv\'huRQ*!rTjjں(=1( 30rV4+1-)kJ'dxvr+S(7=_R|eiAk5hYXQ*?pRRQxrxetXFzʹN&Hd۵$4+Z;hxI񒒒Kh_-r.Uj!I!:JEO/<Y؎YQ&ِMz٧hTL'82VoLҬ4fTc$e%y JZR*!5%H=}sucה,(+YXQ2^Q(N+SjR&'m^i+f'ڶؓXЬf3C̖7V()YXQTjCB&tκ/VfsV,#gaE}rPfObll͚'+nivVcrYx8 w,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qppg(g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qpp,g: Y8qppg(g: Y8qpp9 5tMѦQgiVVrU ]~E܀>2-z*JJ%RK Il򋔊;5GhV6/r )^\+͙())h)V( z:= ǝ:q;upܩNwSǝ:q;upܩNwSǝ:q;upܩNwSǝ:q;upܩNwSǝ:q;upܩNwSǝƓC]&ObAK$\PӬlxIꇦL)))cZQ3.ڛ3>3>>3>5mz6gPt xMYy>x'{|I9SWc Yc˶x>b };* nRϸT+xV>R ls7my>5=qϷG}#s| kz> <\m}Vc&'ey>Q=q̡<2gPRz>R8f-g3gigݾ]]]wSQ G=q>xM㓽y>4OHg63#Fhţ<3N%d3#F[x!3nSƛkz>㔷jȎ֛d3<<p{5>3Nyۖg 6o8g͙ )s&HJJg3c&2|1L};* ݝR;()=q3NgViNʖ8n8eB;]]]wUy ))=qV,8}-aw}wg|w}w3Nj nTl]3>3>MN|ơxueԲG/u^yn>mM;5G4+'_Sӹ7ܧy~wsS|o締/u緢xڊ}rcoAIɞ߂RGPGܹkV*zb~w;CGo3{Qx g(ٻѢh]gn [w)Fu{{w1_@I)ZJ$Z!8qJ,FٓLP4{~;{fb)Z͝o'ׁhߙ;2>asASmr5+hz's!8g ւOK^RѬt,iz^ۗ)}VR^S\+HfM5%=1K}JJaHJbK%DLRV*J@nĭ mmEѤ4kT4+gw<;>!)JJ>E)ZƂTB}bp)JgE{5jgU2W4+'EhSVҬlOR]vW` W`^W͋6Ћ!:zYd`S Vmh{XCd`7/ h==C<=CV<=C)v7^O)(egGњvz^Oiga[3jwsyz@{5 C^G(uU :%(ujEQRz6xtJme+))==,t,׊`a։VQM(N=?%K:~ J 6x>m<>mxzsf6( (Zӎ<=aGfe) (gG(qJ t} ^i@PRzzR& <=lOnhRQD(XuJHQԊ (L<e)@2~k2_ 8$%gxcGx@ƪ XpQ)X'ZEh+!)X{ )Od%;JE̮';`G!MIɦ}Rl'()J¦}R&i}l'(ev(q(19P&2J>sMǡӋuZi'l%/RQ%%mh#~hCS:K~GHy)id.+#8jήA ɗ @Ӭlb$OE)ZPJWk2^RV:}/h>h_fL5cIvGzTs'oO/yԵbOK%M%J4;x=YԒ})Ҩ0 0xdܺ@p'鉿_0|>h=Fmen[h%Rž"Eo`(搉7ƘrQZ:m ؛HJ>ARxwMAONpn;[6o=AҤ4gQHhhVcH >V$} GHJJHJDR*!v]kۊ 7/v5`6,çI4+4g%hRzp6Wo]Sۧ-OEy0$e%xIJ<[R*!XjRzj VZFOazzzYَ4+.9xI)Z%>Y_Y_Y_<6ff:66'iRFRѬ4y+iVuJJ[I)ZSKJ%Vڑ:)Mʱ]^Sۧ-fXB$Za 'uHx?(7Td }sf;[ޜf%%e->$TksHQVzOF5jvgU2lْf;^蕭>w4vVP,vߖ-^hZO<yp;|ǹy52׿Οfbu9%Pw|Qtњxז9im$!ڒe8bVᤍ]Ik̯uc8kc#1s;tpn{= &x ''qɧfA-c=\wG=>cIpϐ{17*,EJsm{=ثsn~n67l~N$;,Il[ Nڐ}N[Wc䂜j;8i8EG*u5f-o>2RGk/SOM %^Zv3 6du'힒=ot'a;`Y⬵ue%q֮+nIZ̫INN@JZn|cE'=Bͺ}Δs2߇u-;G;7ڙN$||OF;5đIL#6vLWpҮvϚz1K|cgюY1K4ڑ8kю-v$i#1v$:Ĝ0bI9 Z'52NZx=B;ډ}x8Hm :OizK.HHp+1k nBZp]ä5#9׽yq$Ҏ*RLf 'i8 sXD%?0~_`yMd4*0{4)S3KKQkWhT?;4)۹OAM2% gIvE<5e}iJOS*!xiJOM)v7vC&v74F+x<'ޛuS;m~g3ha3(;⩷Vì}- ,lPMֹryWb,A~i@RI ;!4J+\ iYaPkYB;.dNg`Z-LH4qB1NH4:Ɯ{gɩ&dg$;,I '$h`,%vE ~F {Hv+ol4z$;?^cŷ$<#qTH+S SX^s2 ]Y 9f쌼Ipܙ9&´Y5Ҳ-.I1&\VI0-H̹]&v?'qtgbFFFf?(:7FXIKN%|xiטy]hcdn$c4y0:F(G&i$q֚- %iD*1:œ櫟uQ98< n>kGwn>kn>kLKgws̘sYa>ku1熛hWf&pef'oKAFޟ㉗ Ivm5gIҜcp[ҤleRѨ[vS=h%MmR B.)B.)B.)+a\RW%rIVpYRʄmkw*mNc؎hp?=I|07N ;z@矶uj0`FJ+Oy4N*ZZJ>d8 %Γ?^_g_K^bsY^b#K̹1$OV|Zzy{{{{{{y:T<3m[߷^ngXo'ggGlT d4.f~LHf1K\@jҖYt{_ZYUm0L{gz%'?8%昧o1i A r װ+~xmU~|3vUfجES09B>v:g8NH;QT0鞝 Q,I)' b=tKAݫw;3{y&\q TT3mC4#lF1cpyl he,Up4-u3,g5 ]eQ*ZwuZ:4~ɭ2m*Zw]EYɊR(m+JBR&Ln&x79lw+孤TJ^J' ^JJ-:om<4Ǜu2ެ֖;f'7ȶNkk* RQ%D(wSQ8!Ea[EYbXR4e>w!S׻ deG(ew5;Ty;O&D<%2II[vJ3c_ӯ~/׏cx`0 kUٮGӨڝ$fSӨ;)%M1&gF+iT[]Iv&RȠ4)C>M&QjJQjJBG)tR@ף)ef v74F+:cڶnG0 ;W^i֨0տ,JKҏe iZT_N24)*JERG ! E4GvJI5h:``{7(!IфŝZ ֊=``6:/ Z^-pؚ6vP8OmtJ.* 8I8wc8kMEkfŮ XًXtpGK s0IuĮ sn~nkII\t4ή P]w>bNȮGBZ36Vn$Kv [iV5B\ZYs̴^!1(u4u:.asP7f˒G;B;C$f-3(e9#5~#젢0k7g$)v }J|R+=f=]eJii~`!IsdwN'@$uJm`*gra}|gZg€rzBZqaEŐVzKZ²aKpvm߶N\!*,JѨ~c޽'s< ho/_>M2U,LAP}MNmd]E4&ڶ u ׳ߞP{d ,d&IzR|u`}wa:\?Ӈ,a7(gߓλԿ=xOD{'')FdUVF=~0ƃa=N:b z=QK`.aKq<{ni@sj鰂ul3؂ڗzӱto/w5+bz0:uMp~z9@V1\Wv&(-0F7q zyyz|YS{wH -ז[\ e4ٻN:а?s3Xipa|Bɰ+ą6GS\XWlsn01xĿh@4B[x1g"I04G&TvC b#+ ƄX&X5FK dqOpVzn=X !Dz7[2JϿ7H>rKcMʐXߒniTwx^/Ito,<]J[PWujf^'cş1F:9sKs"DXCY1GJ_n 0/ 4tь~<J-f&̻!Sw&Þ_wxؚ? />Co:zA dq l]̻Y@T(UDˮm JD+˕J *VUKG4p L EEY_A`@T㣤AxQۊo[ #BtO#+Df2}ʂ IwIXP!}RAċj9jqoK8 `NkAɁլhbR,J0j`Az]hΜsU<u|.j:]уr{Auƈaw*~(ew;`x s:Osp /?y !ɀiafݗ}0DpLTP^(VSewvP*(Q:.2B¯*(R6usNE*먠 *z ;Y *FV*aS9)Br;{|N~Gw tL$se\PA<)$e& 9]+|,1q&H])5ٗ JTݡyh(9?U(ax}9?U(|真*J9秊"%~r~<秊ޞSESEWB|l 5sgï+ ^ V܍iHNSG4mLHI~c)ߩ'%l%EC>v+&zDy{{>RAQȽ^)ZRCw|ey}f$cf魙ޝɘٜ٘ɜɘٜ٘I&oq"$r*W4(vݓUQc[ EJ y;+ PG>uVTRQG̔%{O\=Ih#;⻺######## qz|R2D8c;RCOŜs6ٸEb#傊b#TA~\ɖFeX3ҧ#{OG)%(URQBzus!Q1BǞKGWⱎkTseUSuC@0@ 1bl7N&Nc`aϹQZl' /x% ~4ȶc0q[jlT)}#XUG?(VʴiÔJ[ %z,gBkܮ?M|Y=|x~Zc/TYT/U{Cg}c}w2`-i5h)܍zf;}iL{ۣdlO&/uf5nsqz:>yXà]4V ,yw€l8[6L5k-rU18{I&hʤ 3mt6VӀveB7̴{Xa<.mrcwӀ%L gˆ;jɓX̴\JvGG̴w'`I+eRe\`9Vrj䑜a)+-U5H$GLI6Imd$ɶI-$&ILl$2Imd$ɶI-$&ILl$2Imd$ɶI-$&-RKewxfVByITʤ M]0Z0:Lo:L%[&K&[&K&[&K&[&K&[&K&[&K&[&K&[&K&[&K&[&K&[2)Uڪ6 +Mʳ :C5XP-= vW,, S>Ɇ>OYZ:,#tDkF{#ZKGh-^:tD{#ZKGh-^:tD{#ZKG[&mLؤGy(bxU`tUB Ǹ_+!*,iXpOX=)3(vhvVn,s~kE -u^j03T2ɋCiʫ B%-H:kS] LKm$7 ր6]i07`\p#3m?YsJ+4ioh`~ LZft]Kg*0BntpG007aEf<ժ ϴ L]3LcLMГG*,i1ЫO ,,F[}=?$د`G!^jj߫B6j8 y5, ]'BʱRa%TX)R6TG]&N94XJ%P+CG ,eÅ-sK, 9L=y>'O *fcםli;fK}|,w}KY*,iISRa]a& 32XThWVv}`]‡`]i0.va& 3bfa 0.:+ LIva 3hhW}'L;9V*̴KZa6쳜 ۖ0gvP,Y;KsZ> -3m2 C5X/.Y{ON`S"~NTߊ^Z]rT"@ҳSL x/rsq 9gZA?Z LҵB1G,&ڥnGU/擽n֩AL8>Yv)%S C3}jY/@')BVAc.BwIib *r&U):̴?Yvr<;x좽/0Y=RǟXSܼw=vP80њ:L'4oLz` iW#buD%qݩòa1VW:,x]!L@v*IHTa^KLTa]~Tq.pg2_:b X#Bewcn<2B6J?N۟3r0V̴<<`]]$lh2r.h9Gs_?,[I-$IVkv Mo$2Im$$II,$&ILh$2ImD$I-$&ILh$2ImD$IbʤMg߮h LΤMZhLPR&UX~i|FIoٮЍ6M:\96\ciH'TXҦzy]ѩ|0n{-3z0Ԫ0n{Vvޓ}`]Xi0n{G̴(\vދ3zw:0izoY4iZ&zOYvIcLMГG*,i.f ,|̅u]Ql7ZoRn~b.ֹS/jh 0l`2* bHz(^:܀@B4bc>5$i%ϗ{ؓ+ׯ5 {y_v4ԫ!BJ ވm1T*#Ӡ496Q0ޒ衹`%)4TW~6V3d~bq:֔E _aEoz$Qb# 4f@O?8a7@sBC{,ٸF6%R’-ɗX0}rC#7;پRC.F \}Ӣ&$׬Wy. jАĒIf,  =6B?{\ -tn N>Z (8a4Tvq2E+?[ hǭs~LBhh`K@Cj!}~!L5KOv=J8NI/ͮp ,=ȧD>-mr^!wrA0g/$r8.ό7=Z-3b? VnŞBCI[[̛x-p$[{<1v6qPgxrtډ\`~s7A:q hhn~+PfbQe)+?iҰہmuXwm\?Ы>h{v^~>4dzֳ>{gX oN :zm &Z6ByK&?*Ti۽|-*(*wˡ4&ustn,u_}_Wʷrz_#-lDvx`]k0ޗOcL## fI64XJ`g94X`BzϖI$Bkl$)IRlX&IMb$6Ied$ɖIm$[&IMl$6Ied$ɖIm$[&IMS&hץRЮZﭶB8:̴m}h5io>k0>BOcDo'i0>B=Epa}ȵDnM3#HDo>k08OcLMP# >BtZ8iW9ۅv!1ݮ<<(o"SB}Va]Eڅd$8ytX!vlGο=@|lAC GI9r~O^x\/0dw}xv;ݕ۳/!S.g;Ȼ]xY1Oi+P<,p{z S/.ݭ0k槆  ta) g'(sHaE!Jw4n(ӹE] a+}>z#qL~ =ult"Dl:@~ y\"I&=9C=A/5q߂o rp(P-2O ,$$l`3J`*s$*r B#輤rJԐ\-ӭ%MnCMx\tcˍmrc G7ƂÌ Í7 \n, G7э.h.7/pcˍFln,X`rxtcr/7p/-@-r(iܴƗ/mDFlgxtӢMFEM8r\i>fizf=~ *Ňwo\y~A[3g dmHgwP&>7.=kV G <8ㅎt(axnH,A 2}LCT0&01 1*wV4ws)B w%6u o> :^]RQ5)ӾH;V@.0k+#2fU! ;h(C.",h P$[*Jwp!a`ߠd0U΍xrr $~K*wX^QT xcK ܙHnFwRI+yNL9W Z(I ?JrҺG$e-s7 9%T2@^rK=OCj%3a1z3pxǯ(ɀ͏K&|xu\yCp*3I=i lA収”j؉Zp3r [؍R Z,4`KSdEIS4QИ)gV OU*MnN͠ܜG6wVxVnP6TXVB1àk1uy'3y;:Quou)HÔ=y[ %OoO[?x^tgUU*SnYm،ʔ|Vy*SnY]fUZ2>W2jŪLGX)7XF32 /.]i_CA檇LY1t' +Y5Eqa>+D(*bj=uXʔ ,ƪYRL'Rjɤ]r*>YϊOcg'iYMI64XJ`g94X`BzXf IRݧ}TI,&ILf$2Im4$IR-&ILj$2ImT$IR-&ILj$LVൠm0޻͙MBӺITʤ }է}WRG{QmuXLѳaaaaaaaaaaaaaaaaaaaaա)vVZZ ,P^ϺO,v,}`S;C;3T] 賜G*Llhs%#^th|{4b-^:t{(Q쥣XKGl-^:td{ґ#[KGl-^:td{0e2zpzp.hMz,'ZKG~P ,0z"ǥcXITaIp{ ,pO%gC[Ct>kX*ϱe=Wo-m]x~KwYm_pZx벦Kp֦VѩpVa]J~Z0. a]J*0.%LʱRa&#²b.0=O-ņhza^*xOcGU~K٨Ta)M} zzYNY5Xv#k ~vɽSY+ c`#XƙBLJZ sAY̶̶̖̖k0.vXi0Ѯv4i Dv 0TiՄ ¤W OvwO L}Va]+fm ^%0UXY΅m%k O}>iAbQ T*El5isUH#a5X/.YG䲚C RΰR, $nPH(PNuӑ#+&љCC2pc!%][RC]u+z_&z9̚52kzoì뵧j?P{ -YU{jBO|5Ъ=g=%S|qjOmY?h՞Z>˱V {˱V9 ȤM)mr7aT~fMU/YSanV9 >aVz9 >ar|ì07,Dg9̧>kYi4,# >aVMz9 >ah&V9 >an.aʹԻ|US5,-4V|| Z0r,|΅a֘r5( Oì00{rb0fuM/Y]anY@0Nrkˇ>YSZ)s g^?<~^R'U~_>5 _ԟ,1UJ:lw8' _`|O O~66ԾbilC3 >m6; >c:K>׿`/;oߎܿYy6q vl{QWNq*w,Z՗/Vύ춦׭fl:"rH~)뉱m(QF.~2HZϊuTR':*z{$s‘OGO#% IHr }͔fHr ~QDTGrRPGQ@GEox:zP8)}͐2|wR.PFHCr++J~A4TP P[!zezrEl 047 F7`'aOӞ=L{"7 o޴'aOxӞ=M{7 o޴'aOxӞORkI2IYwVSn!Ui#i Tun˿NӵUo9m};EU%":kҩT(NYSQ\fM EfJ_3oiө(Q~ڑ*Jd ^VQFWs/Pѓ+R!}.9[pJf/wRnV譆jP\ZJIPA)OCEok9Bri954eOGBg9Y/> v d12MBLoqhk^oZ=St)):pb zHFo$U>|_@"x|A7 tÿ`M/ W1ݿ`{g _ ntÿAr}r9}ο/ABJU|]wÿA7 {)!\)Yr?pJ܏sS =F(588% 0lCs'lS =κ0!~J8%P[lCr)ن\q)نS2SuN!dh9x> =cҷfmqNS ==O6TPZd*zkm9B:%Г+:%ҷYdBVd a48wzg]:%ҷ:%N,[[dbfk[nܺu_mtK3 gΰ'iO8Þp=[n޺u֭nݸu[7nݺy֍[n޺u֭nݸu歛!})IKjr[ ]<OCϛ)}*U>ov ؾƃTq ޹[[pef[J8a_W/N5)vÇQ(Q'*ʇI}9;:fx> lvPl4嚫X^sMP1^!(:EV9EGYk%"KVEr*0sbsj]e-B)p>v-4~7R*g%SL>Q܂Y)q91s˔b)q\07fe99y+eXM?y ,ŕ19%uJD4#%sz옚#ϤR Ȏҕg̹3;04&͔.99=%K0Y12&S*e99=uJ W_;b`SK;g b[BdfLy(_Z)ԦuXN^#.+h1 y48,1q*}&C06$-.l(}KZj(KVLfрL']19t2>QbNm ``n`p F[D\kQ'0QrWmJ%װZl<9}^_ O|muN7._+P/}-FOsW{a߷"ǥj&k~tEKL׸l\T(5cEVQ\ bnaJ EʥCo5(YW7 gV:`5;N1{gֲ&Mk_xc6(ֲÿIaЀ;5.u0 P*@jc鱞zH١F_ _|jO!/ςQ극6eP=Q!)qnhp@.Zk0 W}r 2MyR1#pa8Xp09;Sn2p/ XJUQ.f Y2Tf U9d+T%2Uc` RAk)'z zR4ԮAݵ9BR4TPS4h *FH)JVS݆s/"{w߮\ݸuo/ ~-e[Ygݛh]EeօrA?yP*(R.EA7U(յU)Jw9j(QFHCr) %ʻ;Т((2 2ABEo5T̲llllC6lj'vg+[r}V z*qW*|;u:ڱr(RnvP4z74z81B'Dq'T(W;*JF:t"fVSQlTP45]74]75]74]n㊆ smWQ[!dܱGyޞ_>UE2_T 䧆w~߮?랜  qwvz_2r΁nj/uLisZډO: 1:KWss;QuJٞ譊"L5IhIϯQǓQþO]XrNn۶dּJQLKVvD%(R%d;bu(k^GcS jh\9n0h F 5P 55s 5N!]cq̾L1԰[j`͈q䴜95bAS 5nPC P#khrfƌ93bp޻8bSiJEjẍQ#>bC O19C @1Q1B10#:e:bPˆ:Tg[ƻ8Z s 5jRQ{PPyCP#M$7CbSxd֯T5U 64 'ӔXd{Ƙu3t(hc[{:KP\zDy"Ж ̣aUfTCmc3ED ׁO%kև `}Ϟuؿ=xO{'')FdUVF|h r=ၖwM)&sBKf{E:{Yy0d BGz.ih$x0ݧUۼecN)6G|-ygJT0ܗ'*Dɡbok vwSįOǝ5RVs}v[}xۉ_}ƴ8mSS lq>G6‘ 9+P'nI%[J|E}yOE2{hpe4M%aKZ[Lm7:Ao(HӺRlξz#R)xu1X3 nn:6oz` Xۂ4sTAoZ [M5Bd9Ss8ͥwxyHOuz'7rD)%aDB[FܲZo.n{)pYr]ix4Ż`@%Fv(QÀt:]4ID H˕㡷Jr6AvRA3.֠TPkjJʲ{m鷎dZP<ĕPqR9փ$,>IBEo5GITwu۪/{jWTV<ƍI rLWDiŤ(YlPփ vxhҼΜsLPt$\ܧr&nNOԃ 1qDhH?pJRӚp5_As;5 {\( 7U(C ހхqO k %n>h2:((=lNJ%J 1RAyhVɔ*(aeP.m?|킊h Br;{|]G2wF;)TP.OeJ秊"eǽ4'SE9?UT**F蜟**rOpO8똟gOUܱnǝ Ji_3C ]-ND|SAayO:S%Eg@+&r(Q+BSVQ]iHSVQfCCV7CCCCCCCȫž ږg~#%WȨS~ײzPlkfӳJn{)SяC3OJ#OKU闌kRTܹ5ƿsXC #cF{ P */R ϔ\8\FB e(g!?'=w.Gp%>AZB h#t3F STݜ nM*5@Kማ0X|*B@(BK}vCoLS2SNBL%͖F)W7to0C**&bK߱ZDRpG@ɘ o<41d`CQpG121t,5Fb@ϩuHA9zCh^QutdƔ)ֱ4;"s`N>%O-ᘇDLj#N HxS@jlyJ!&C2Ei,+IJLdi'`Env>i3B*pH 3Gt;2)<'ryKߒ%bH;Xfv2`KJŸRT(.*vÔJF22wܰ=Ǟhdرc^~쉙0^~_(/R~,;v^b(R.(5)"k,Dyʼnn4':K;Xp>ttѓ+8S+40$sҺ *~> ,\5Cl,|Dq#3lZG%f3q *z{9B8ѓ+R!}+dHA?\J>VC.0BJ\\P?H J!}*z+$^CLCOșy0φ=žo]{"D1bŰ'iOÞ(=Q {"D6lٰ'iOdÞȦ= {"D6lٰ'iOX')5\u;)Ր.GP#i݀chAqDKw/K 1\ 퀗#.Y y@gr:KM.VmIGX݅TEr@Dyz譆]a4)\\PGm+DylDyliHLd)5(\O KMj(Q5FHCr'W4TP-%O *z{H*LlWMþҌK=*ijCͺֆ:sMK=s5Vʔ;zT#ԣʕA8u_lA,R% uFAr8XF)5̇6TQkު(R.Do*9z+R_ V#w~٢TU:O{zaMth*gi*fUe5hW ,CDkOo 9Nț7,!S|O!:%\y>k)?~(=  .#x s-eOى|h?+.?ǜmRnOZ06:t}J&e(S?7N,tyy7~60ɛ=ڥJk+MLkE$f Z4 pT%Mva]ꒊ>0ѮuK.5x }\4dYp\44.N'sf̨ >g(ԇ -# L6`)J4g1ocYPG>IuVÞ&L10P΁Y?#,ч 4f>/ ݚpDQ|8Ó-s0^kaCf|͇|$H2kP2I Ŭc.{Flg=۽f|@;iϖC)wѽΨz3`*87ٓ:L%],gLۮ>k0VFGH(p9;}ֽg7+,yQ-@=AKH.2*Gg)>e<๴O;a<'<0"j/c{|0[lcj$?lX!;QSڃB^~W 0rT)w?r2tq:!u | Hvb_NݍܰK[9 u9.Vœ-R1dPc%"rk5XvAk5fMal-MnRNJamOnƓ۫O.Y 5[!߲5POpx5Aw(Q.NEr Es*k(쭆gst*_v ߪ@o@S5S57:/GR-NۃrXb+&3i(R.ΑCf"QfDyk"(R.ή%<*)L:*z{89BgP\I" i!c{ Z-OC [JJi4(qi4(7+| ͟zX )ݵ[\ s-Z̵ kA0ׂ`\ xs-Z͵k7o\ xs-Z͵>okghg'cd@CϵRAϵ@ʐՋlz> MAEo)h *u!)5܋jWWbQ[땈+?e3%;Ƹdpp2TTPbൈ~AwAHd=[GݭHdxPABEo5T̲llllCkφ*Yy+[wrd*~9":ҩ#U(1OʥHqRCrJ'GHCɵy$W4(;.ÞPQ\tc%E#Sw(Rv\:s(Q.RAreJ.#D+*(ϵ]EEoo;1w?;1z+zb'er9Ӧ}eN ]EO;oן͍u W%Vߜc%,k;c\Wʔ;[B{|˚ck5QŬYD3E5t5T( C*k׸'jYO|<&=kDk,k#3-X׈iθϸF85ְ5ְ5²5x5x5t5ִ5q9qkkdk\#Caӷ55r57F#F,55!hk,qk,3qGº|u/=9O3qGWհk{k\㙭n\TkTkTk|譆q8^_ӟkLV\cטd5&;1YqɎkLV\c<[B?)b yB^,!/Kȋ-g<}'K'<[Bm!ϖg[ȳ%l y<[BF^W'EWӹo&׹D|j̓-qs+-i2XЮ!'ȿq A5"u>Ș;-+x}6&Cpa@ߐP 5<ؒ )bsViLBd'FjsB,{*kC7<2;Kg1Nc|oCX4wG" 0[rb.y疈YǨ:q*Y ;'Nl`> 6}A-lRrM&S[˴s.:p?];MKس'4)PvzQ3r+0>~uLΙHH "G6RK "Q,W'O Dxy3̴Ct t0 f:$u&¹u+C 8זs\06}H'n3-y_ቃHٿC?N=1a(Ǜc9ZUȑZae\%+ɓ}xЅ-  s_E26>1GJ%RAv0r0"e[cT3>SjmA)|ʟzb`ߩ+F*)_x,3xEspֶ~Nry*Sl&(sQN)Ŕ)]#H AXJ)5ٗ JT]o0x((9?U(aw}9?U(WD p真*wŜVHOTQs~s~9?UTH9?U㔯c~Փ?}Kq͜F?^|mxlxe‡6L뫂@W˭S64;Q`p Kn~ +&OWAR&LtQ&[9ޜQɚIњQɚIg. [FryQ8  ~ ť@kk룟twN# ~z#Y,UPN~yUԭ|W/fܔCЕCV7CЕCCԕCCЕCCԕC0B⌕C+P 4PgW<&]81.ge<鎤*xHا)UC6t8,r" /&2ܔו%V7וXXЕוXXЕB$#tC_߅+nvj8Yu,Ȯ"[.ejޥx!#$ٱ4=nK˚beǖ>P&e]ʥ?9; xzdۊ֛ϋHgFܸ͏rDU3|W T(-ę[EwZK$]`O[;WJ샵 N(1l(ZS:')j Jۙ[E9:qLs3(ɠgoE&%~.(&dvR'[ҔZ)[CiJeo~WsJ J=@=GHQQAyfWQ3:sūJQe[+譊 O(#leg:0ɼu {폎x/b-qǸt9ərME2k)sΩ_6-9T(%,PK޽?ρ3c}I>3Ufr.C.Mˍ||scF> >9ld O}3 y:!O? O y]<W1O蔏/xEfshhb $8؝P'C<<{O3昔<3G2c" 3yr֪L_h }<2$h3}yrZb_\؋6ӗ5N3{9 v^R;;BOej?I0 ,ws)Uwsbg 6CᲉ:ΏL%Z$-W zH誛ψ:<|ܻ+ɲXz}jogZj.ޔ͆x8p2"2"G$H.V"7u (a@>=ϳ//``L<Sg?'+Ǘ"_T܎6ٶ||5~mœp#tzm֠R%ĀW}FǶO%8d?SG 72)rcs5 %08?|a*QdOW* %]l(╏fCIt4JxP3MBteCIt4eCIl4btLF?ƒ7tLE3Xʆ.hʆ.L4eCID4Ht)Jt):^(+gÎ3aw%+KϬK$YSYVY3*|\ZϔKqih>R.WƥJ4&__+|[N)[[ 0 6>V~H>eij9>Ëٶ I燆ZA#Űu\?0a>DGϘpί 5^; ACu iP2+uh y"zȵx*zHspm!d,=]xvoq ۹ aݍiG3|0 kG3Q4 a:a<8bATG D+~x\+,XGA#|x7ʌ^65s/5fQDɌh1Š8N(#n"P {:O/UxpD-[ghMi1u3h ZvK`FՎeaݎex  z~,G2(帣p]Z#XkʠGWK#Vzz"|G!8όࡋA~OqwWORs|PBKWC -_ʊo IV #\AɊ>`ȭWX%^l`+pYC ,lb+RPRc gf~3P>Xl~pnT۷r"{|A5S2a䒉ׂK֜(֍lxrvst\݆_;u#u#6u#e%׍lXב\7a '7kXU~čO0r&8\u@M/F3](QË SMb᜞I-0rŔMxr1%~\r1f F.~i#Ϧ,ڒLfѩ$=%Iy2Q`M*2Á&Dsoyt~7?DE:%nabg-btZ{ wXOh}p']qpo!+b( 鈷Ϩ+bo'G0YB.!st]KY1Ί!M:ĜHW1[. +b="]aY/gc\QCWs.9.v]< xy+QWYG؋'/v9HQ7^1_7uw#['aXIXE=V(2wgd3Q`zd3Q`7Z(2/l+/l~9s{|T}7H?nC ǽ1ZeAT!_Sb8W$VBf[Βc'dU$PpN5[ =?;cZlZ }.! J7)<:uQUBACj%~@'(*SZxUBUAuTA*(psi輸*(&Ė!ǜjRʖQz;0tˠfB6*ԐQiݦ(*UATЮp (*UfZTZ XvkBe;.8+=!ޗc(P h;~[7^_ml%W~p'm1gBW1xdW{f~ôPdfb(0+S|FI*_"Ql|FߙQUB/٨qF9/ (2yw_ưQ`>LDd/٨m L /}FjSpQq~Ȧa!>rŊ#l@"~4D Ŋ#wԞUqLrF[kXCt3t0o"`n~C9Ǒ8| \;MpyO!{ 寓Çgj}':߉?9{X:o;Śm;el`ͶlgeO4%1n {;D18}]!q쾀c{juۃYw_lHX\(\(o| )MpȥLͳ# &< ~GRgwD> fw;G."І6L"x*п6Fe umT֊x1%zd2yPdRAJBIۊ E&,'Xb*Pex %[Z-B{KLcX1r=u8qc*O'&{.VdYʬWUe&ɠ30qDaoa DyH֚(0ILAegC$S\bpr<)c܌[OK׿iP0}Iؘ./ͿݷA'[6<  I! ο"@ΐ$yQreK1UHqdl /iձCUL0iX|G' *b76e(𗊹vƓmPV=MN c?)1d,L86z+$X^YxM-Ymx((xkoaᥩ;{\ՖzK UU%p5iVm{KS̒ Oxf;i[sZ7\ NYШWB1xT%‡I+Ge{#D<*,{_@“zI(lp e,~UO8K.|'ak9u|"u_ gh+OVhy6:1ZgXu^VhR0NĐZg̣OVhPuo+xuƓZ'uFײB';Ē1$ Z}sZg<:o F3;3ic1N i։{/#ekB<+sZLjV &uj-9 ~t+Q9 &uT:V0Yo &u8@ξ]Fh,db . }: hOwNjF5BQ(ᰗ9Oz[_PQ/XC~8% NOSf r"*YUB/ՉPuEBh8y8 *h8='mAA5gr'+kSNϘ+6;^1+YuyEz 拆W7xi_18Xy_,¿;^8r4(ԯk'uUliЄ0=geڊ*++TTxs[ `IƯVVxVXXm$87}e?oV_XcЎ'"&xyp;Y9 v8޶rBj[`^jGelme U'=c!gۆObVB6Lȩ+#xR7RvRц!CJ ;ƛ)v3+',d o>i^YaǓmpSbs+/,er[a7X6ߺZŮev6{<<]ÂSm_찣s}]C b=sך}ggo?޾Y)ܻ Riх? hU}cKͰݏ&m0n,&m+g2-{k-5A9 g^׫=lGz!!>pаB L2Qdn1OeL3]󼁉`&kn ("+"j8vhZFU |g6jEĜQ |Gy4/Z Es`⤸*O US0뮺]uWJV?]G+C h 㘪 aoUfY\f1T1T{(U:U;]U@1]Z?x0-TفQB,T:LWv5JYf:CjPUBjPU+߷P (ZN$ (iibrkЕ1Pdf]:QmTY+rۨ*!qYqFH)a $!-NӐ+&%}ZQ MTY+«ۨ*!=-4PU+z7P+R B k9(6(T1(T2(T1(T2(T6(6(1(2(1(2(6(A8B&}*y~h儨leYU'B5CuDulu4fZT\U5. *mRYVՉXfFFZ*!=4PU+z81P 7{Lm۩h~17}Wڥo3qD\ΰQ`R '6xtlC|"hf9OIN@N &dFye/;6Qe|ۨ*"}BdnFчioڊ*! E&IkBSy*kY-{pkE2mSt ePhbA䢶Q qCD&j&_L E&P Cn ɛ<dދy;Eĭѽ~8fp.݃=Q`DžCܭMX\Yq, Xk$n%,?#ݜ껽91.=r̽ٻv~`n+sv&0DI;0-$D@ErH6̫g76 L2[jȉiZ1QUBB٨D'_ &)qc"cqSBLVTX(2/p ,TY';='ӣwWOtGOtWOtGOtWOtGOtWOtGOtWOtGOtWOtGOtWOtGOtWOtGOtWOtGOtWOtGOtWOާt̓Lڗifs\mߒ7ggw(nM8PǶSq$6q?NGFDsolF=Ë"Oj$+\'b)|MpS.\ҧNj1cZcZ(2PĽpg"JySB 17(njBΜJ;*Qd^ (xVE&y=4zDAqӓiȄ(8@I>XkȼHޔ"@Y+* xN*Εt뛢ƝO?d%jgI &ԝ33+MյbKՏnFm *\l$` 6m(rf2MZDI)k?ATTy=h_s{lk=c|=$X=x&$EwlQUE+c}gw{;.t|FJ;1e$'o LrS6 Lr~n`|jȼf۽Y":'Y@LbZbZk 6uukm¹fE:EgL"8BIN;(k? \%v7pI2O:7YOM-6l1c <_̰Q`orFs7䦂"xS֚(07W7E8 KqV`3Wsb}ۃYw_߲Ŋ_Z47"^ g|%gË|cg@F{Ë|jcbb(lx1PCt6(=:^ETrASϺg ǀ/ J+٧_O >@sN0P~a(~a~~F6:_QWr,_7:uX ?Uw <3fsE59"-~B=fB l'Oٝ'-'-'-'-6O l<1b`f-6O l<1b`ĀgsEh?9_$yl$\Y63=t9ss)i7=3, zfZ(0i;ɢ3Qd(2I[IlIKQ䝚*kEflTJ]JOH4*CTjP U*PYBYݲ-i>L+W`ôliaA:L&0lR[aZMrV5ôUom;LPqv`aZôuVZKjkMTU~*80{y88`ȯbakSf-&u.g* L?~[;&& L!F]Wn LZ &N Tz"&Zj$79j)VLTY+"ڨ*!FUȻ6֕E+{N.>%#u `YyqLW؊oU]*fqäjߜjVdywTpDYU`\ўo*Zb_QkTJPD[fʱBj|PUBjLPU+jP v U #3ވܸ$:竄 W#ޏXPw}}oa yM' =Cipx<ش(knjjm/wL E~IM;b㺢q L0Qd^ѸyU̘XUUFqDU BUEO(mM EfoP~ՑnY0/"kj8qaZ!umT =(zBnk*~oP(;;>BٯAa5(XaB)|l {& leT'B5CpDplp4ip箒I5UsW*/mRYՉXfFFZ*!=4PU+z81P 6{Lm۩h~17}W5j,\Q`R '6xDlp%'N6L5ocCc wZ(0q7&k6+^갪<Qe|ۨ*"}BdnFчk-B*k-TUBL[G׊* U*[6-֊leF |ۆH\>aY0w -6麿oo$x=i$񅴵wH!igmt{Rd)w1yjx*n~5+|VR#5=#O4C rܤ_Ĥr3VVNiaƿA_?rFoau YA=,[>Ǵ* E{nX|{ʴ{d;O7L( kFw" ku;`ĝ#۶>Valy>mE (Av=ղEm;ǵ{R37J廒/G`g_j8: <|& DM$'{$R^ udt_8gg)hJ L;l4a4 +Շ}Ǯ`ICa@2⮫#SdYohK\qF#+`s/{tmu!-ߐrdqUՀGg;wձ4(?:o/Rm8h.̊8K@S[}AZ7h9rܱIQ9EѶѩluvk+xD9Z^qr]L&$ ;L fq>fBuFenf?KN3 x7{LNa? ۻ/Juc2d\FaZ(0.(2I`FI6 Lr(6|FҚmT֊Fod|xrrj`|gFI]\Qd2lT1U%U֊Q6*K+Y6*kE{_w/$\By])! E&m+V,$ UL}Uot+PY+e[|GKfGz~BOwvztWO4GO4WO4GO4WO4GO4WO4GOTWOTGOTWOTGOTWOTGOTWOTGOTWOTGOTWOTGOTWOxާt̓Lڗifs\mߒ`7ggw>#u;;'Pt]VngGµҞqߕcMq0]W2Qń`dWF=eol@133}JR,C{>HNy4$ (0It. (ʇNlam>w5oZc;Rxl}w>Z.> +a1%VCkkʼZ Vڍk^n8ypxg{ ;VtDޒ>N[9T贲UCDI*3(0ɑ?fdZ(2ImnA)-b=`dgWCnkm)wz_J U$=Ec}|# "??y#`I1F LQ&vôP`K+6 Lr_ flc$vFy ڨfTU֊ 96JH\lQU+b*O'xHN3.hƙ<ٴR` 2 'IퟘBk*>+B#.")Lt5Q d5Hj$UeNeʦ8ilc;= 9Km-0}(w9 AtV6 L+ L"{f$](0i]ڨfraZ{k.vomT )fF'FϜLzFC=壽B]LASQdrgcl3yULqFܑ?dVn;G~qO1i8lm"%dȤmEՊ",WiOPTgZ*J覕Ym_NO-DwD> {螞O1Nw=P5Zzzr莞讞莞讞莞讞莞讞莞讞莞讞O3'/|~YEYӶ_X ] ΊKpWyU_VyjWyjVyl*fVyl*WWy؁Dx;/OK3տl}|l~UGߞ.%dãsL&WQ`ʹP`WFI+&Le:&=R/٨f&GMTWgVd. #㙓I`҇r> fw;Gsd&-E&-wyDm"\%dtX(2(/(2(/(2(/ә(0(/(2^Z(2e:]BLeXbʫ&}_sh7]_~տJe~ c:='Fc+~$3I=鶓3T$jKRߚi"*rTlLRP5/I=CEּ$ L'I=C^z3TՊ v;*+kY;z%IFλ$~2I}vz*vyi'ue:S_IR/b_򆱦|2I}+vZO{;'CE*~xI*]IRP0KRP/I=C5IRPe$ U%gz}O%)|ǰ|-__2||ĐV|g0^![r$-2I(s3I}^$7L )ؙ=*$v"6%gKRPUB^zZԷl'"$ i[3K$gKRPUB^zZԷl'aZc6kPHbPHdPHbPHdPHlPlPbPdPbPdPlPBt M>~|VKR slr4irNR?0'I=CK^zJe$ L'I=C^z3TՊ^IR/&,I&,IsgԏI[Էb'W I!@"I8٨HRǼRdI K~;-T}W5!P%gKR/&ߢ $b/KR/X*+kYkԫ ^ ü$=^z}/lZ;I^*x{zX$I[3T$Uvz$^YK6/I^nayŘ1G|ӫ1i{R=u{2jb\ ;I':'{ũ739X)bc{tlOپjB5 ^f_t싞}ѱ/dW1s@`c{xj^;WC1}vw›c D'"@to_E`to|EWdFIﮉɆ">{6 LvGO٨f-U֊U"&86Z7>d_¿|Lbpci )! i ojB4몵 UL}Uot+PY+e[|+h~Čz";b$ﵣףz"9z"z"9z"z"9z"z"9z"z":z"z":z"z":z"z":z"z":z"z":z"z>ͤcdҾL3msx>R{hzhMdO}۞=EnO.=]tzt6ۜns{6ۜns{6ۜns{6O3Y+*yRI*[ Şn?:0-T(*g1Q TΜ6=[3P佫Jku[PL%N,iOPemyEg, ScAzv,^ktǂ 6w,؜`sǂ 6w,؜ cApƂ ;g,X cApƂ ;x 8=@dsP+*ǂʱ@5t~Fe iPԫhիhJHlC3-TE*]5[c5y5)U̽~6%)ȴQ`CӓQd^!'wR&94~ôPd^oPd^oJBIԊ":4ޠaQMס#6xרlP/ɴPd^ LrhZ EuH,ZP,!.&EskbsM~RFd=Nj19dH̷NM3!j=8F "بPmdÃ6$ Gm$iDIuBhrd'9KX/_u??l__m(\pp1;Σ+[ǟOFߺo_\X@_6kNvvr:};⼁(0٩F@mTNlTBb*Cq?x u?h1YdbF쌾 {;i?{{e(n8cg(Ffg(f{䔑.C1$j23_3 5c_싎}?5;C1vFblsl ŭlb\)4Cӭu/ CEus2 2TQ"GP6NFA8NFA*k U%ed/ C' 0S2jx0ߪ2o 02V ŭ{*2PP٣2Kkibm n/W!}?4_Iݲ+!{ '-H8k> b@J C^B-'9 Ioa[\7DzN|2A_,8^4d(m( YeΟO0:a0? E-=Opx:ߋQߌUrQUP=guox0F]~/XG8 ; > OgVǏ/3&J3&k4_.tz;hgA镂X/WA`QxR4f~3&X˜_1&wlqUxe"Z'I}cB?{8 9E+|+Z{lazNs$ce_, BAMxƸ3X ?oV_`!!i=kM6GgZ-kVglm1 OTQY}WnR&lӬaBĶ~)["Gq J!+P9itx!N9bb5yV!N!N!NoV_8Oq8oZ8F8Lq:*g2騚C)NǓC)N!*2),.qZ8Y8P,S60ptT!NB)NϪ2hy2i1Aq:!N4it4C)NGS=ie2)4%N uLq:H8SBfpySxi8ѕC1qޜG\7G\mmLil$8m<6.dlxE%? o$H6 L"?oPd^ U.W~$u '{J=u{؉`vj`N)Ni?==l.N%JmON۾\ۣc{zv6*m3I۾%{;ؗ=cK'Ża`kW#ޝP NaWs=cr 'OR睞/l[_`@hL &=ES'E&[쉍"WqFIO(UqF5|Qe8d'U"N>٨z}I7J'dY(0}>z36LZ\"y&?j)ڨVٵQUB✰ZQcu\O>rLrM"U+LrG{*> U*PUBYղ-i3z";z"BOwvqz yI2l7[zVZ{>R{I=5KEVO7J.o>I]"=\ةfjwr}8I]=I]?zXd?F8ag8a@JWqXFIJ+kMt.&;U28l,m6y{]NTYݫ<}G~LdaZ(0?0LWMWO0qDIS]2LLTYۄ*3QYB UfVrD'H6xd!2{> fw;GV)&&LZ(2gy*fs{UV`ư0LT֊x2/_I&Y1By)PdҶjBy)OPTgZ*KH2 [~9=ͷ0==>' R*뵓ףz";z"z";z"z";z"z";z"z"9z"z"9z"z"9z"z"9z"z"9z"z"9z"z>ͤcdҾL3msx>R{߹?{t=]|t5KNOܞ.9=]r{tENOݞ.:=]t{tENOݞ.:=]t{:4rg*dR_iPgtHm/wL 3 mYLҳ53gkwQin+ L},TY[^Q3l ƂXy 3Dw,Xݱ :cAtǂ;lXc;lXc;lXc;x޷=@pzeɤ3M X n*C*{׭gtw=ߍ%BSV*!fV7BK ʹP9Zd =6rg S#W~v ^\3rmȵ9#\3rmȵ9#WpG\3rw ܑ+8#WpG\3rwO3iH ]6Oh^i CN^au^<9:u n^'N{1;CEwaf:C^PQB4u*je`NP ̿'xw>bq:~KQRZ'XXv T~Z ,T(P4:CFg*!O+git񬮋rԿF7Ph؝ѲbOѲ{7Z2T#r`hP5x%CѲ;ewG-3ZvwhѲ;ewG-=FW>\kP#*{:}*{:}L*k9"57>dV'X;rI&ڑ7B~wUJD&Wt~hKz+wWui]k*m@km}ZyL4GO(rG{V4o,pHwHwHwHwHwHwHwHsHsHsHsHsHsHsHsHsHsHsHsHs}R>SBeO#8=ODẁ< ?iK0s`}u(60L u)ULP*DPcKڃA0 :l;^L E&ĝ݇=aY4P`v;"sG3VZ(2GK+鮄,eV,-QF]C\8s2 G4PdŽ.q1  dZ(2G^ 4Z EfُH7%dd-P֊*fg7|$Vy-TyO"?RƦ xfyVV=zm*QHr1QŔ=~I{dj0I&:S2]#LmDIGʹPdF[k$#.! &atX(2dOg$#L"0I& L$9(2s4P`F[k$=.! E&kV,T1cZwY gY*k*!U̶?Фv$2P ro**LUSYk/aHw}+/o*H&/E˳ߪ&]^k2'S^Kry d%/L@*SmTKee91; O&"1v{Qe?ۨ*!1QU+bm If$cWi}& y"֎"k"ldCبb6YmTȼmVzB>D>Hkm"%dȤmEՊ"Ԟ`B-TjejEl rzoIj ''Dzwnrk'GOHHHHHHHHHHHHHHHHHHHHpOtKG'}fF+.Sj}\y>Ry`nrx=[6H-gQttDžp+ \r}`LhnY&{;q0 %cf-6wRv]aZ(2 P7Z(2 P7%d ZPd^F]weȼ.X _Qd^/Q(tu:,;_^&몍.!E&kVLT2GبVzC+ǍE['euʧR>-~mюn L_ma9oLC>>- %2.c_%FaZ Jh3 Lrye`,ɴP/g2- LrEYJ867_nbs6nbs7k]n'bsv9 fw;G L0QdrIM3EUƷmTY+S:,&H}>Z7>d_¿|LZ EpSBLVTX(29'Xb*Pex %[Z-B[¼XE =Q˛7y]i&$eٜo6o$]ƍYܻ츲+K=/t"f F 59@!)4[K)e-SPi;ևP;6}*xf:Ck7c(!7vm^61jq݆n 1Bt0߆^LQsD`^ۿ"t0M!3Euͨ t06$FmB3EŦ'ymLQqZݺ!2 0uC֦6Ukua?)#n+΋RpZDΰ~3:"gؼ aI)<חZIPLQWhguCpm.Lk[ 'Lkߕ_Up%[˖OPaպc\S_(*>{k].6"UȆ&].i-].!b Gűإ>9֎.IprZM!TE7P&][bex4LgK3y:v'w㭱8ѩpDO8' Gz=qP=q=qP=q=qP=q=qP=q=qP=q=qP=q=qP=`KÔ`K,n [XBE醇@u1{VW@P](Tgu1 EY]A[9u;Յ<だul܉=:οaEd._0Ցn:RdwSjVyJYvJ Yf`IYb^QqL)//%@F|IDҳ0[]/ a?'/]=˛z]s a)2 j0 =B;sĞu掩y-2U߂!|%Q3*fGZ¡lR;&@?M"t0/հuOiw*sw^c[~w%ԇ?L Lފa`o5PL>{U:{՜!j{džP=g}ݪazB6gV)j*Pd^)ǬR5=dV)Q/5pPK` j:Sz?̿qњmA=\uM{獿wrJ[9?ϻci%9F/s?W{\>WZKtk,9r3sc٣cr]w5uQF Ӈ+FMkՅ5=dBͨpF%6kô@`mֆi~H觶iu3F-s=Qڴ!ZP3*v谄&m5ZBB9EN8uQa7ǿ, uYZXZX(PɢPߠI{ɥ~Ӡ,q"B315JlUazr!T O{Ɖ 2RCV}Xbqӿ_(E&t7=MZS71ڙR' "N%vf, )憙NvXFu67}yg0izƨ顤mߕ[谡5Ӹ`D[ZbzymmFi,͙-g/mKٵwZ޸Z8[RVqN͈\TE*vg2:׶禵LqFִ]uCwM=uwR{~=-g9j甂S>'ߓ{6'2>$1V}Q˙ݓ}yΚTؿ[~}}/y>u[9{m_`c\mSkt{^DǫsL*ΌӹGL a"3EUTDR QYKLfʙe9֪sR/85^p0j,᠖0Ef![>vfW`w`.!jj+ *QCjfTUb}X-ŭO1E>+?rCL9W̨ t0wʍ% 0!ԴXÔkfJ_f?jݯLJ*__C*7ebjZxG)u23Ά,+oZa~$AU~?XsT/192޶*ߴ=rM:D3z~3]VopY/Xn& ?Wt$D DS.D D;sQ@D-S3I=ds)D%L @_yZ_%ַ+t)8w]~Xz݆a2{5ե {\x Q=**>9觲/n})L)M!t0\1XB XBMk#Teգbg6B?`ODE=+Gz=Q(DO' BDz"=DOd'2LDz"=DOd'Y\4S2,䙅- %cGZCO\ l3;ú:C4.=+RB@:9ADZYڻ}_a}M795XCILvf$ Icܘ#0#Yt+g%&G±k-B!%®ڙ,me87ۍ BI2f_wbMzQHǝ ebk^o; :6=6{,+-j˕]k:='B`.3P B 3Eϰc ԴVYk=%Bc!/Q%mIa732֣V5>aJQׇhgXyl!:䃈G])b妵LIWjJZKUºWÆOBT7C_:7߿'jO~{ZRe}eDxs)=߳AX![1]6}tG۾5Kŵ4ؿ[ľ׾BWHT-^jFkn}?+mpt~;8v?&Ƌ֗oW7^ `0!kU!x/|[<'7!؋Q_֪!hxu;U_08-.qׯQ&8xbFۋvVb;UoOApVbUq&jnf A5*39^3ۇ忕u0(ދ߲͸#P!PS5Uy@5f"޶o/]s弤~qrG`)2:nT )f )JUΔާ*Q\FMk[èFT0-AgbXdJmH [k}Qx?R`~WXF1jJbԴV)nJcTJoyM-JZf.ڴ)!+fT:bP4ևPZc=dgBؙOiJNs"gт8P/F @KVL +)u23eM ^\%y^apLz\8'h':֟i-D;SW0}yq|vۿk{yYW_3벊P"x`3#1kvf"f$f̿o'ĕWjGx| 1cp{ ?t P{ Jc+[ ?x Ǔx{ N p91p<91Oxr 1@r%c8x>O1p<91@xr 1O8ΛΛ1wDy x-wy x-w1xv c8gp<>1xv c83xv c8gp<>1xv c8N`p>1qX 7c88i&<ŀgbc1X 8&ŀcba1pX 8&ŀcbؙcp>1xv c8cp>u 'c8 p{r"c8ÉN$p"=1HDr 'c8 N p=1@r 'c8 N p=ì/ЃÉN$p"=1HDr 'c8 N p=1@r 'c8 N p=1n} N p=1@r 'c8 N p=1HDr 'c8É:1c8p91@z 'c8p/ÉNp"91HDz 'c8É/ 2ro+C;OwbluyOl樆-VܰUUpNk֪|>;늙kPmdW^Ja:ڎ"ކWlkzO.e_(Wע`2U@ZRע`ԌӱwK8%03LH M>vfW 0ۃ~BsLPzN >5b[o/n})tKoz)7P4ևPZc5=dfBͨOiFKz=ߡ'«Y[v =P=TO'@D z"P=TO'@D z"P=TO' Sy)}eB{BCj~׬zT_Ry|H~mZgW5]xϣ1jZ=}SA֕hg [kYct0ίH!ڙjkoZjkoz)jkoFyncx`^]kK]iU[ak-kvd"t0;&@;S޴yղBszTm,1[-u{#'wwX g~ORajM}dgQ/ w+i_z[-tB%H4}Fu) ޞLpɗ`^ArZvbHwX6($yD[F >vs^h8|ď>$Ə'G&pc&Hzirj>m^*66nj{Z>ئ:E~럴l45'{W̳'N6cضY lJE lH lmAmr+In6YM! IwVv/jL-Lo\\ekrD\;\}!}gdkE]/ m5givf' 7/I1:M3}9NᡅoLv84cm""3 :G'Zls|L!v8&@,!P G`^Ǎyd\xTtk'nme9Q=Mި"tXxhX|Y@q`ЎP=?mk}!j?dGQ`7Le K{Cq,jF0~ Lkj,B? |^X V{UQaOhtAg- j Դ%jN5x9JsME`Tu:b V,R&B*شjozjoFjo,!K=T2Zpo_%+ c8~ig䉌ckycG޼c3S|&B|L-F;sBtF3>=:UY8&FMkU;R<1jFEUatXBz [㱍uev;UڦU^Z"¨nW1{HWƨ谄0-^%{!VќG/oزlwXw,v'0v>oC1p~d{v1p"z's8i-Bǐ_MG#9'Gj+w_ԞwOJOo I9>Ma4rk'GM֑jm~zcGOg [' Zhe s~2A)N/gwxXY'>'ߛԔty/|ro IJ y~]%MΚQJ8ox;c~c8ozg9퓑ޠ9-Oʴ{fd$kN˘?l&kN˘9-cz洋wO֜Vao/<:"߬"|#n_ɚ퓑3Znɚ#Y[Lkdf%>ff[fd$kGd-p9ܒ5ɚrnɚ}´[w3YY-Yɚzaw-Y6ɚ;7d'>3Y/p3Y}rKng~ɚ}߬]oɚd68#YYSLlܒ5ɚmnɚd64dMgf19LlsK~&k%kOFf[dMgf[fdhɚc[f? =lޓ5ɚmޒ5['sޓ5'#YM[f뺑٦-YuﴴzOOd~65ͷgdPɚퟤlɚdPɚEoɚݨdfxi.Kdn7ܓ5WTr0)@_Xo.~sXAS~s=Tdf?]'!zOT#F۳nL.c3ߪ}I4F; 87E`f~IVFi{QZiZFiJ6ǯiߥ\ tK6iZFCVq%N[itZFiǭVq,GnF8N6?#N]Hqb28! )NeHq:-..q:*8V!鴊*8m,لJVqڬDf'JFi?f9J6QYr8N[b8%Ni78m(qڟ>8m+qgT*N4:-N(qڇF~vm`8mðq}=w8mW~&i8@Vqڦ*NU黊mB+q>Yi[*N;gkq:]ũ:NQũY}G#ޑ~8m?i X*qbqJ.1ԴVMkĩi*q8I<`pR&;%([[bL6E`^7=sŌ BSiP4ևPZc5=dfBͨOiULDOwgVGTOd'2LD&z"S=TOd'2LD&z"S=TOd'2L>ÔkfJ_f%`0R>z8=S=m-Lհ`L~uF $lBqw:vE`^JBhg3x6,Lo1:&VXY61:], F;3v46=6o9W;&@;SlmZ6=\fjfc$r\"xpExU OJkbÓ+3\Ou%^W{U oU 6u*M_Y]a3F:AA`cGAmr"_Ʈj(J]{OuVkÖNضYt!C!#k6+jM¸6#xrȮYkK+p= /? ̶-~ZA9z!:yr klG: +Wb\:;J!ӣ\q8uzbضY`&+uv)f[8mP\`Jl[MVf"jÓ+AxrU[d\C`fC`W*vMVf6M.F\}k3'W7}ɕȎ'W茍m rM"ض۾svG'sH!S†II_DfGIjMxqU{H^ kHsl*Q:+ra"^AxpE^ՎɽewmF^B!xr}٠|<׾lEk_6&Ȳ :{n\ik3''wfl:c8?)JS)Y}۶)Fl*ЬAde?7.}H2 wQ;ZIVXjw($vov0<"ʛ- OqE^M!<?WiX9Y``ެwY׃ 雵>|,e do ެX6do ߎA߬xeo lL߬}^`;Fzm6Mp0;&L,ցA  d\_`f_`W4ؿvh2 M`Q]_!Xwc`-M.~;Π~;A~; {RT&I[盃' <`Ƀ' <`Ƀ' <`Ƀ' <`Ƀ' <`Ƀ' ,~^[ڀ_OnjGAop>Ж|ÝR6wJ[ mzD`h?g47Fu4߿O1]0'.}w kI:[n-_ټ]7>?hgR,KS{U}G9Z7~ ŵi[\oXmF\.!{LkqOZ?Ǯ]ý-gep6ԟr8zQ/nVԷWʝDKُ./L_&@gMSDk~p:߇Y_tCi:y^5*o}>vJ=vLTؽM[bms_~9B){eM*6opn% j2ߟrag?Lm/m0۹6?Og}8#hYQEO}wbߝ5ĘNr.'{qϳ~r9m.=Fj`mW]8g)>9l8'>m1W7 /J="7D* 07W뷼3' :O86Cx^m*B>\_3sUOrw)۹j{k ,@Y\`};W\ oZeoma@Ym[,V^e< Аg>_~ JݬYn`g(ˎ@۬eVW=:]Ó+u%" OcaxU۝mձ0lJW°#] 6n&-w v%$66&+eW AE 1< [.ʈaf] ötJ 16YM.p6lRs屿Mqe8^_un|plp|plp|plp|pl8qK/[:tl8qK/&?pÕ/ J ,;.ұ+7|s6}I[&`Mp6=1Jty76)_g6\Mlsm)|?&8z o){E~|-הi)AKq@xr e <=^Av\OUdfOUdW\Qd7Fܫ>H|]“{]U“{cUPUa1VOUd 6#xrRB.Ԍ-הm WUR,a\S va*Aڳa7*:f[k ַ1B]SmTfݖlrihaW  na@ڤ"f9LO&'OW[`+CSxl ҄W ZKF[$42R³ƶH0O,w5.pߞnm m@m >8J%_Y>dlsn~^Sm_sg8y|et֊joElo۟_-) ю~vbs6AZפ}iEo_DN'bL\:{1joG11sԛr*ZոV>D7k~72}fXgw?eir&܉.n%kq o^JvB:ZY( Aɺ -WWi%S$ܫdJU% ("xr)6#xr)B)1B^%SjܫdJUB0u0X-Y-X~I=xu!> M⊗:~K+S[ uykRYD+] .j.ć.ćGfL=8~_/Oo(KNKTueƒ&{ <ye+A<ͻ@3(#qC3("iCt0E IZvЛ־ˬǽ92_W\VjET7Q FY%4I!ic, W?'''h:b~?i OZO/76;?\^ڴtɡo$G?Zgk%OFϔs~k~5OB쿮ϙ[|;Su{[K}r|G1CِIRmx紿 9 k~GN}2;s)}RF1)>™wEa"Z3Z8K4EaOtR\7s8fyUX qa[nV̓\?\?]?L~)5n^sWl};千yjXԗ,?O'ddf酼+Lrv80a"31`^6Kf]{)d}F-s=̀QZuQQg0j,᠖0cC"ic}JG9`~WG"1:ex0j* $ FM!5b[o/n})nZlz)>G!3jFl~O7Zj =^ z@9TGWe.\G'B36E}ޞL6fK{ymQB3** |tj=7,w%ړ^]:8qF] .[ Y:ius[^]:iwCݡcqw;t:Mn0Jk1XlTƞߨoTll}+[nvMQmT`t[ɥQA۾Jf#؎QRe0lm#Z6isv&'d~t8MUQVlMxu$'e;Y-!lF@4H!H0O,w\ 7\OÛ6#xr.W!xr.F@xr.F AxrFAxp.FAxrqRĆWIDIDIDIDH5LV`bAMkY5= L,V`X2\`Oև LlZP! QAJ*XB 0ַ0+0af<]`$';D~kGTOd'2LD&z"S=TOd'2LD&z"S=TOd'2L>V`0/ˬajح8>jY c}NpP`w( T0^`o((XPU`aĂK{L ZYB¶i dY<!/8:M/ gJI%?wo?S.g34~?x?VWo.:xK[SiǼ$,7,ؐe}Cc1ʏoí~<☏텾_so>V]r-@mu#u[ ywˬ E%Ʃ!"'Oyf|y%<uZWv\n2'RQW'^j7 FF]Jðm t u؎ vmڤ}]%mmlƒMBxrm+xr m%Ob*mÖl۬6lJm؎I[8mڮ&5]t6#xr ᙳ!t3“+ݎ g"m3'W;Wei`5¶v.,JάYV-FIpf=kԡ^ע&}rb \Ixqn{yecɘՠzo\8Tݡ8@}c^VWW'à3uɫC+q. %3w%-q<"i3Wdٛ69IT+U^~ky^yTrt{^]B=}'APʝp UyumB[yVsϫkwϫs=pϫs=}yu.3Εs\yuMtzGչRRoEյ>_yu{#FnF^1죿Sގ=n}pϫ}pϫMJ3nVW7}pϫ=Zrϫc>3yuQQ~Vq*vyuw ae>W/uDe]uOT 6w&vwk -e]Z8yZijuO^sX*< -WҨ[˶{ՙ6-n&u9O/Tp^*f'95a!Y#* kq]XJT*QIkfq\3V,bLq`}Dhg̮3>1: hH@3U )֝^ȈQT jZnĨ!Ĩn&Ĩ4Ob)^uS7ևά*>Qa'DSXp Q,*DMk}= գbc!~*֧V릵ڦ:rQA`^Zac 5Lc}55PCv!T$骓#z½COṿS=቞TOx'< O'zQ=ሞpTO8' G#zQ=ሞpTO8',Sy)}eBt7ևP#!ɌNF$ܽ;({W߬t8Q G 47;QeWI7.}(kk VQ/o UJΰjAUhg [C(mSԻ\3+c[ .Yqު?zc7#5c9ڎVoRA釣j?r3iGhm~^z0Y[z_4>85*׏mmY=tt۔ʆ5V̱=ULmnr/Y^9A7/mV^f)1yXce>k{%[rJ{  pRd%-GxAVV:)Ռu> lqw8*ymo#g} yn.Vg-gh!Bޚs\y$gYcoB>\jrwEv{Zڥl+9gg9wo[dνg <\.ܫ5߽zg7#.x5崲}|ZNkooQ|_JC־v9r6lٶ2һ1\ֱOob#0rVv|e&(WI\w\ww'r]N ; +N.W$PI\wӻ@w'rMN N ޝ|7; +nzw(W$PI\['zIYIYI[w']ޝ<; `oN_ޝm; <[mywxުW; YIjޝIޝe~Y(mPpϦnE> T_!o|?ۮjj ]즭W%1 57s?y(靾_ɞȏ~,;ԞćGz1){zBB= _~rS{oͱ?Wb7hMhOh}>_3h}SG_7+ppB_ ,q+e[e)c.EgPq'KW}d)ge_-#+^WgMڿOxbO%Db~ O;R^g[Zٳ-FII@R+{詄V )׫\6zUU ׫"Jϸ*-?˪*J*򪴊*J*򪴊"J*-򪴈"J*-򪴈"J*-򪴈"JRUWU^UzUUWU^zUUWE^zUUWE^zUUWE^zU땶"\t*H׫"\t*H׫"\t*H׫"\tJ׫*\\6~zbWzD"E'XO(b=&\Olb=&\Olb=&\Olb=M^mjWp*׫"]pڤ&\Ϲ^mj)W^zUUQWE^zU~UF׫*\tJ׫*\tJ׫*\w%j˙s 9t6M~e>wW3 ~m,wL[5y-,,23-1Z5!t0qԚUK6'Z0XC]ŅFq&0&3 ih. lg6QdW6i5v8`: A2>b3 uU0&I3"9rKkOKk×ּèEdˌ}aIdh~gK"X䟲$7OF,$ԒdKM-I6$ԒdKM-I^d$zIՒ$%IVK$Y-I^d$zIՒ$%ɉNDwٜlaJ'60_{äSb$MOY YY YY YY II II II II II II I&'Z7J,UĞCiev,23 ;< ;4@ Q (&cԶ;>B2/Rgl+Rge)ufef)ufueN3k#/Rgo|S1 ×Ns& _&߲9|i:S-W;ά _;{ͬfm0j1Xf N[cR<U2> mFd =cVqzj23c,8c1s FWщM&]&Yƺl[ cH0Fd Ma Xf=N5N=N5N_ѻ`ec[_q"oak/ml$ŧ `_Z7(>v]82|iMKkօb=jօ6bҚuK/YnҚ1k%ŧ֮ 7XQ|ix7|%4ݤ _Z3MpF c/:S'[1Q#Wޙwc×ĸڗak5z0e `։99h7 V~׼7O*QypO]cwDi@ĥBFa+[_/}8)3W(sYկeUT. w沪*UչeUu.rYU˪\VU粪*U dg1#7#pXUȏ@F Fe6V<+3ȡ?ȷ/76i#/ioioia0"#9 F^d=,"#a]XoZ{ח|-m&&/'MfM^F՚̢ J5#p/Kf ui)OL5kr(sM?NWO?ж-e[*͈7҈??󨁒S#hLq炩0\Ňv]py?_e3M~d&&eԶG+;l'nO-×vogaNˏLtMZ/aSj'~;˼c]nSY]mt?Ogmd0FӶѢ]Yk&;t*ߴsgG#w:6^oe#әj{;|Xf׎, jy:T6B*/kH fb檶2WsU1Q[y]g:<|U|w}dc$ٍ{ i~c!DaN0Vo^ 6vڋGk:ۋݟQ_ڜ{ɺ}99yb@'ڰc]5>Fq1FӶтm8k&Ak:Y\}׽Gݲ2S|i㜸ۗKo,قݹa5 b+7(6Jx H4+3×vn+/TF-XfI/0Puc]~^@35=9i >z,j,G½0IOڏcYzvhrQzcsXŗ*Fl:{Q7Pzk+Q_mtI</9feneߗ={R9jY#̴[ޓ1Kov6Y_QwsoyUqiB }v2[쏤f7I?!+j)>ѽ3Vze8gef8'0#r8Oha(s]a3$;{9 mTWrl}`UL'ef8v^]p⸟⸏/q{9 a(3_pܠڨ1W'Z~bVf>fVW Ӭ62OlaI_`:(IC{/79 A$q52^2\MŠEۨΞ{ʹf/uDjפ /{Mln"P)@_2|i>Ys(ǘs@N ?&v>V`.~'0ע_?IQ}j G܆r:հTOE G{^ݢڻ̯ɳ&GCMrҕn_vڰRߧbܬX\  _xqtumoQy|vշ.1zج3[ :Dnm[PZ,',][8z2 P[dh nrpBa7) 1{þ˘ v dJG!<Ɖig{k.fă!ה5^(?1%Aq_V-Ʒu׎:u$~ԑԑEGZǏ::H#{naԪ/쨘1<X^':ÑLbW%wؑyBa07X/aNalXVѠc0 >zP;%B|;m<. Kڅ2>jj5.|]`4]u g,qc0~/ UhÐ}C>/jh_о}C>/jh_] hg0 C‡;[f=^?~b3}q G-×58>l;EQ82cuaU`h#1Dە]uiWݞGh]u{/>֕]{;ef|`[LJ0L}Kkfw >j#u(,3×n`ܠڍ"6q eq6Nmb CO-mov7tzghbGhN}ied=&Q򊑛Qr"0j Zb\R5 Z;EVD1Q+#dws#a,HP`}E,[ﯝ_q;=s]ECRGzgn{k3|:DCMsʾX)cޅs}sJ e/8;(D]u׺j:2#.uI#P\?ud.'#[NG?&EXɠ?1yG~HaԅXN8'ԡ0eFCtab|O|~7| {Yn1)LuƋ cb$aPZ"׾6(w;ڗapie;u%å9mtpi3- ﳺb8>è6\d4IW2\A=Ae4''3`8>ٟ$Lp|?+3('mD1je4 d5/ءJ >B@hx0v]I6~׾P|a(é} 1{a@Zoto'vn'`Ghpw9uO ]l' I4$}Ґʮ,cY ǨRegc]{Z6Fm}§Lw<&M;vE1&Mkw}; în]Q;3j/<9]i9{:ޯeVf/S|j>aϩv _Zk)F-`Qe3bl(]㣖S;K{Ӻb6bh c&ƺ¾CuK{ܱڨڷSF:شE4(l+Nt(':I$uh:ID[PFkc%$\Qb5s:ü |}74R|jcVޛK{`a9~Ċ,1 Ǩ82oLc-nmb #}Ƒqw5;VoZsl1&v][ ]}w>y;Zg]Aw30*5w2G>2ݠ-2sԺ!Imb;_޹1޲|j~^gX{7ֿg#y/Ql|>x=zvAJe#MJ3p =9Xϗ (=I+ *qR4PR9'EN%28=SV@陑BYҵXHA驼Pa{R[ȃi,SPkhIW(5*aLpmJFO+gePn5詼I0h Ң1k-ч聗Є^fsz(k14!I=& Z߉c&JF 7v,2z*{Y 1z*xhTbN8g!#fgHPژ(䡳6bd4J4cv'hQ~fV8Pz*u~NܢyƯfU}5Ѳ|G bJO)TjS }J)xJ!ejm)~BN)XXȋX/Gj4ΰ aX/ ` F]lwc91%5b@5bv<(( Q00!xK%DޗXNg"LUD^vg03^  6B(''zPYU ldgC%;:PΆNv6T ldgC%;:YWκNvUudg]%;:aYW>dg]%;:YWκNv6Tu rV2aPk _߽g/< {\?]:w&F~Й:k/)KBpL1)3WO0('IUƣlT0 e$UajTahIR6fQ$`, &IUYb j-@ ;h-~7M9@LbY!! ÿ~>1+s&\b A]ۦ%{eJ c'ef{ޗ; G66<ʌ$ŧv3ndD?և7&fc.GCc,@V︕kWJJ`80suISAwF@vF@x4{16zlQG}ۓ8fۓh1'?Af =d8fiwL?sc(3 ?s mok9@M|v Qk!"^A;dVDM{8CdEg"w.}a<r5"+"rlL˵qӿϗWKWb+> nF K[ٷ7~B4{CiSLJ詼,P8=f9 ) K 0KiĠVYxKi$a ) ?)-ߏv^t.`Z T&4(wnfJ&J?7i}[_E.0xE"82Zoq7 83NZǝr p׸{vg:qӠqqӠqq2x}'ܟ|(ɇ'ܟ|(ɇ'ܟ|(ɇ'ܟ|(ɇx`,x}v`l5.)׸׸^|׸ipg=ƒ; o/_r2xɴ?x<9(19ND;Ɵ7; Π&:P4FnF7B\iP`ԉ}x۶(b*1b!j1U;s/pC | { {|&㺾8}M&㺊LG>&ɸ&x8f=2LǬ;Tوw2;Za(*3; uLC2`d\WAdl]13Uf2Zd&cM\5lēR Uf2d\WA,M } >ŗ>~+ =Mϴ Z4K{/G&ŏz2^Q1+O0kM2 e^?wG,\H*>mڶqm#9TC~~Fs=}Xi͟왕Qu*txm:;Th~1Yye:Y?<|ϚrG@0~:}r2O2O'^l,9uXN8Q"ПH0e&2_y:y-뎉 y+cf8lŻW;#oiΈ:(Fࡻ|G!6ϑi; )00Jz< vXx}C#A᡻Mw<7| _[]Y:o5(w03z0FC;`Z4{Yxy':]r6x]'5uA:5Vׁ+#ϰ>|E;0P( ; u ?EV[Hg Vb|&;De *M?@7AATzDe *Q?ATzu2'b? *%NNy\[k˔Mcv)f%%Q #fOc62|iYB,q|iP8Bq8Fm G19*ma f gBU\=vO 6lBhM뻶"hMkwQgS0jn&lP O a:-#޾Z1?2+3ŗ֎W)>c 7!8ءRƎc,s 1U s1Qmo|2|j}'23|i=.\ƴ>&٬F-XfI/0P5Xc?uap{ KJK}~<׿'v+8▄tq\Uz]>FQ/X9Yb,3Vc],I1QmEeQdgef8&&uE񥽷6`c&)ƺ¾Cuз81@-Ǘ5`kmP|i{bǝLp--wY]1|im0j6=LXW\1^]6:/Uޗ@M=I-K{/fefY+(tށwWVcaI#3L X/\mU6G[P~j!+Zm]b*?L(E q< ]WcqT!?~O(u' YO(`03t` ce c;a cG]҅Ŗ_:$u!kQuSo=ԋG=bcM&;vM u+ԡPBU12Q) WC] .#_KįP#oo'^uNBIA?A?kz> 9IA?OBF^$`l1 9]LB^;GRG'^$琘Bx$&XN'?v ҽI(jJG'IA? ]OBeQd f$-wLBeI\Ync( #> 9;{#鸗q!\bS$%[Ngof/~" tn+a3Vf/l#BGژ_]_1Ygm*kcYژuƬ6f1Ygm*kcYژuƬ6f1ڸڸڸڸڸڸژŰ*kMem:kcVY71YgmTƬ6fqRf0fs)՜فwkR|i}n˧9Ye"TA DU&-ogҫ#BK__դp/\VgPz(Ͱ(=6* =2z(͡B~JOk<;u(=&mrP'XPk(:V9JMF2(FIVϪJsT҆Tޫr{#8iNciRkJc8D#5*=wpIi=i=vVa4*Ec4Z</b 78OZ,DT,,Pn2C) I9j۬=vVa4*p-0۝f K0ڽGҲ7M vssKci77%wT$rфSi5wOm\~\qISl"eyFs^~9Y M\ӛ皀T)Ҟ81z*m+RFϞ7=NAY⚀Q(mpj(8q (Ke6ԕ e{ieì'x00 &XC%1oAi_}Jkh=k^Fi7:&wZNJeK詼o qLg}(epJA.WBK0ncJOy([s^%[yhY~q';'ĝ}Cl.{ _UsrxԶ~ =2|i23|j`K{Gn%/⼗Q68peO ƺ,869Fh6Z gtM$hc~@'K1ee_&eWؾ_;n8!@ ǨY82C n0^G-çDOKk;7×*F ma,3$XW~Ժ.A?i,_Z׀! ǧVσE̓Ā$çvqfZ/\oިgRW_Z;@QZ9FBm@]yzH68j\pW>>jҥzp Y#}1(G*Q?(UE<ݦԘ1l :ںŤ Ŕ] ML34A #THV&DzN$w0S$w0֋HV`l,iC6YSdFdg}֜{c]BO4/ =ƜNJcFK@}q۳IKh.,0=_Йw؞FeצxhR[8&ضF%Ҽt2^LjäUJFci5C{C{c%6ޓ•Syއ#4XkS= dX eT}켳b|k hF86V8ԐeUId8Zg_-_"~{Ʉ;]Z~3U9t%CVQg"p0cn+!`VC[x C99$ R!`h:x Cs{^\TK]a SsOlTW0Uɪ,g,*`Y2Xx e&AQ&gar`b0L^SuELΣylbrͿ#9dtEHg_,<ŢD?e|+sJt\pI:2.\T(+ЙQW*W*W*W*W*W*c0 ]r^҅mJշtJtZ\:}Rpe.R0ZRteTJC{B|h|h=tK/RFF AgU>Dy=AWk/cZ9 o( ]. QrGG z#5U5U~VՑZGjUU~VՑZGj rF;c0KkC;D }M( vE( tNa5jR__mAz㯶U8wE 5C9 v `G F]lwc91%5O, ?Үܚ ?.ߞ?n8"\] \]-ŗѝ"8!b8ڡBFme䀣8}w8c-`8®,5C=Z+$f2'~\2'ԕ2'_]5+yxw9Nr9sLDs8~]NUhN'gnCDC =_ʉEx{Vb$1^PrPCnJãU(exvQ!Ix{̐b-BiJ(!":SPPU˲0WDh90(` gh}rx{MXC0&P[-h Q"Q$yCԿ%_֪X^o]}k\Z,~Zrevcoem/ٻqG̓{q1ymh[96Pۓ+6h@0h'ߵ=ü|a(K\4m6p4mwz۰.5@g~B 5Ӹ:z)ܔP~BM 5'ԔP~BM 5'ԔP~BM 5'ԔP~BM 5'ԔP~BM 5'ԔP~BM 5'ԔP~BM 5'ԔP~BM 5'ԾOq?Ɲ$~B /F_1wͶG@GvѧFxtUsRQ8 ]Q26k># j{CmWP{CmWW{CmW^{CmWe{CmWlY 1L,'`_6v ѡhߓu6}PPԐPu|mjm|mPoЎ!f=Co)ăXN;J5`(֋x0`ԉCrCCC87 a֗?~ |c׻ >ӻ 6j<٥]D<$H2<u :3UC9<; 0}Б:Cgx@!:Xθc0K\1!T=c05!J m}`3PN4&<:lvlu"L4 ~x$r?Lq{͘I:tdu',C9+w J~VD|]ojo?~.@ ➼; Ӟ 51;,o)=s$PXZFO  71p|~TP):SZXpk(CoFcdh%d! QimKhL!= `E ,SdB Y2@)L!E $S$B IH2@)L!D $S$B IH2@)L!D ,SdB Y2@)L!E $S$B IH2@)L!D $S$B IH2@)L!D ,SdB I2@)L!E )H!EŒH!D =OLZyH-}⍉=)(Pm*/9(ƄSkOR&Z/9SkJ8fҚd6'>b,sؾ u 6 hMF|3匮i5v,3d5{j A|c ղm|S k.y8yCdڣ:,'ViވmP|ieZ52|jͶwVf/55g/9,5P`,3w^3d˜aX-?X@?3To?}oﱽ0F驼"t>P pdTv=8}ztT*)*!(P=QhE)XB}5i}QimJ##pn' "'*=AmpA((qKLe߆Ҳ7ͪKq wNOp=q4Fr/xv~W )(:S(b/KwCyҗxM葕vEW2VX+:ͫ\+weE}޼`H_]+;{=p.𩠸p,ⅆ%yZR'3-tnVf`ׇ] -:A<ѪԖ?AmB`xy)0Q^ j+?AmY L0I'-B,=h8AA;Y6OPg5,3ÿf0)=kW'eN{JA/8͟ ZZ4L"rT@ߒu-RȺ.#i KaH;>RuJGCɠ`HvRAпT(>Ƨ+JZKCTp0C Jah$^'rċӅr2а.s'{~9.YtI_yUOHo%JsMʹ ZdVf/}37(~@F 7(FmV2ASM2 estg2]%*OhuYZm۬Uf6k)3뺱ԥu-ݎx`ߵF]婃}C' /qcI$2t`ꪠFۘ"S7E}AAwm^w."h?sy~yߋpMgu?[~ fO6ƶv+f?OvlRmc=RmlheΣԧQ|jl9p^f淪K.0|jSz_];5ӒxZ/m?CһKZrk Fނ?y>egǏc]tN`l@;62mjۨѮUmQ:Yv񦭶R~컋myı>e_mZ%˱^Op;jE|ê{=}^3L _>NڈSĞ)Q|imB0nPeb+')6bUۆIԪ~ahMsSܴ=7e]sWܵ=we]sWܵ=we]sWܵ=weMsSܴ=7eEŷվڼC[\^|T2w)>nC-×.()>"ES𥵋ڏbDnLl0#rKx.62~.ñ.nm}c_}75Κ<8}5]} FmyvZ XW0/PmT|نa ̟~۾>/"WO_?s#i^q=Ks& .(%H8wwG/ZQFQο< ec2jk14'Z/=5VW _{ZèE` / $ŗi>XfVf/=}Kh#A; k`f=w#֕M"o nE{72 _ʊߛRyyilYUƛK{vVva1pu+l>H19hjr^,rW9k R,ѿnۨ861䛌FZNJ0rz*i6tC>C7pzF:j܁~'gc?VBL詼Ii=Ub 1z*[ˏsvY'BiT efJr4*_EmeTzOaB8fk(,c9=SP%;k(pk6 ͲdWY,DŽ,ƄǨPCJkU(eJci(5Cg83R^CJbaL]p%(=NCi.'JFOci=RCJ7^Va4*&jȲ,i+K?eE5^f a\ԚΓa4v$uLJxuO enfSyo#q ʰ4v_ gNc mq4!J%l-n}MF2(Mf{RZFϭ+mlOF&ǥ 'Jci2kFc8fJ3bi=&Ҏ*,XZ>Fc 3=̎aF7 3ӹcv(=7f9d4*|36gw&3d{'p|f(,79ntZFfjȄJʂV!Ʃ$$k3mU6cMjOJc{n̟Sp)X^1w?Jrc#ƹ-wf"׃ lSiav4"R` @$odTR1ҎqΦq.bv偵 `4 -֨dL1` K4xPC> Οh!xF>#1X'Pz*]uҟRKT]G&eS+ JOZPz(ZIQz*ҨDK;;1֐eH?cnQ7:]u)#4,ܟ'UF]xDa,gxIayݫjwqTUr2]%yV[~P1}x۱hrFt]l`]# suU7Pxl0}'/o {Cxp|CFK{TKvfefzsL( 008Q:v\E.Ǩ}56 uU'o6QmUFoZ/Lp|'WF|#)328Qڍ.֏b(3_pܠڨTFqr?2N HPW _Z;`1Z dj~ @k!Mֽ|bТM&eIURc]r jIŤ})R[z _4^ab_ʌ>PW%ܦ mT`[9;1yi}6+/}l?+OvN+/H Q 3Pf(bh#s(~Ɵh> _`ϰӺb'6bh C'60դ/0Pu{)Һ)>M(r]G{ιu,ŧo衮nP6bhhĀּrn"$o&kMß?F&h8 >!agZc̓YqZlEp f>6fg/MsZcx2&gM6[\c0v[8`icW5ЏYtLeӦklI26'Ztqτvľ@}Kk 8Q uc,F8S 1I`Zُ!9/Ҟ)Ҟ)Ҟ)~Sp{R3Ũ{ʌL1d=Fs=ƟGeCڳnϚ pN؞؞؞ ;}^}~IOx$'?I>Ox$'?gI>W,g?Y<|,g?IW!JtkH(V?l! qE,Cd Y8H2A! qD$C$ I8H2A!%$ I8H2A! qD$C$ Y82A! qE$C$ I8H2A! qD$C$ I8H2A! qD,Cd I8ȿCVQW[YġجulJmgJBऴ#V8u4L:^58u8uJ[ġPCE: Rš` UZB3%`UBi]?*ei(9tp :iOFn_QP&qh(6C[蟮Vqh cB#X#kUڢP'e4Njp:iFAC[W"m\Tqh z VL++=kO:^'dmzh3qhh8¹pG)*šPUUC[>9d1dmbFVR UzhR"mww -VġġPM: 5C۸z}:ц6jSAXJ@i[Jwn"*oM~' &=4,M)(8#/OGqm`GqVYDh8ppȇ5Di8X̟rG|y8ꠊ#hbe%q$ ō8O)đd"M87)ZaP$'4,NZ՛gUI%Y#I!~7Mb$KaWuPwy}<44*c¼{EJfM4*-o2z*|8=K{;p̯8.;WjhVTPCVb Q shᰐZ?}u~%m5c^}?Zދ~2r &Kf,'F2~ӰK8`)L{)Cyls{M~ZSܖn3~-Z|Mmqѳx-.ǑZi.9)-]\4jSٶǘY0 ZBЈ}͔\yhB -8`Y  }%U KX"vb Qx(-ˠ C4g3헮S3m3m3mO\g.g.f.g.f.g.f.g.f.gZ;lY<B$u!Kc Ai;'+f[s6o8( GxAa=w%GIr: c> C,b ݥN:.+9p&:}^ KзߎF!_>x׌36$6c|}<.P>OfoʞAdG!=K({7奔[mrnDsn$rnՕܪUܪu-b{`eޯ&mD5/"'L5'Q|imB0nPeb+')6bUۆIԪ~ahMsSܴ=7e]sWܵ=we]sWܵ=we]sWܵ=weMsSܴ=7eE۳^w"LܧtܱզRR|jDZ/]P@=S|j}EL~_Z Oq8ƺ~D1Q8 s׶֦qKk6Y0LD`,s>H0 cU_a7eB(}}_ov˜fXJ񩵛c8ŗlfZON𩵛;ŗuuŗ aQ !XfXQuF`\mjۨѮUmQ:Ε-.f ]A_e׹/V vs62|i"ۈSk7h_ZN~D b¸A1+`g6Vm&QUkM6mMsܔ=wm]sܕ=wm]sܕ=wm]sܕ=7mMsܔ=mv_¾~ a#q>-|4lHXf{7 n[YK߿v_mB٦N`Z;R|iMꙖSkSN𩵩_Z"6D5i^a0SuF0QQmhW誶ɨuƎef fOa H|ٙ<>;Y7=#׽=Ͼ0j09,A8~zػN} d|1^؟AfZ/ ;Y]1|iNgF Θ#k@2Z͖Τ;h~t}m%|it4-ֹ$~Ba7M4urIxO%y( ~qCÿGk .q28z  c;D?\cWך cl(';ej:MӠ3L1"8j>'5 k7 8ACPxȑaSu( Ma8'_ձ2C)K_Gn+)VZ*FšɘQ阌c*FO9Ѩ=;ھ1o1t- NO SiÈ#Do8eU9҆qS0sp *NVi 1/Tzw7 ƸXChl*ƈh Q(-Xf=+3çx8c1tŗӷ%px19pux86%mTm5ڕ5m2jc~@'Av:0,3ŗ^MOLq 4i_/ލg!րXfc]A1Ѫ(rZ/}6+31جfm0j62M2u}Ob96_㰴W$ cMK1j1Tɤ*.: WF𥽏 'K^ W; GXf)ƺoo86o~8F@[x_w ݗl#;Į(Į(,Y/'ŗV$Ũb,3 c]|D1Ѫ(rZ_n__{:+/}?k#Q0ma+ ?T} uf)\,q|i]cm4g69srKz+/TF-971MԕӦQk_?KHvO\,-3Y,FUgTLSJBe-{m?J<^zj;Q*)=Y8`TEhGꫣ<1"'q@) m1Z6ihp,Ki`2RxE?ʙEn}w?uOquyj٥qY5+^FiPbR( iVouIiP7S;֑h4q/*\(P@Ǎ9MJK<,)y2Rz*Đ8Rz(=!xK)(xKi(-*8Q,ablk_mr5Dhx,-ߏZBܹzҞi%Ng? JpY>I_} ⲃSE;/-IY3Z\3\'+dc]U\#Sۨ⺓hWGj }aVfU\-78ݮU]"E,3çv2C2|ipcԆ2/ñfa6^u5لt-×kS4b]1|im0j6e$ñf}]1 |Wd|y~Y5.Q;MR[AX þyK{TNl62 ugx _Zp6"11~\V]UD{KqKql_8,0F"+0ƈ(u5YRP}g8mn]99ÉKk¦քm6I6I6I-&ɢmWoeFm/汍-0k_/n_5sOFZKk'X#QZm&kBc]M2cڗGhl}ߤ _ۙ`RW?/lZaԂmP nr?W于K+ד"ױ_Z~8jgejmu+?=]UIyW1$oU 4>~&y[_}-]9Z h)=Rz*͖p$Pa2z(PcxWNO9،Ae9=Rc([NA9H)P(V})Kj!k_UZ_P:2(>zKk]XAV߹RP~eo:) =n2zԐ= dTںbT J&v((0 ( BqR*-rLjI#zbvrvn4 JǴ2Nbssݖ7#f{u[޺-|o %8 ;аѰsl[ۢm{붨u[޺-jon[ۢm{붨u[޺-UZ[ϔܽO-9v7קȡ= $#TJUʲTl lذa?{Opŵ=w"MxҚ~u{k2{u]q5D[cw0MÊT5*)u8lOJ-R[^F!cϦjoG[#w#m -AY[{eE*zn"Jn*Jn*Jn*H-nZNìFg۪>rb.~:P#rCn䛌6eJe3%M9-5)-]9-q JjC)"֚cn~7L~f^01y~oo3|#?8&;[ 6{C~Q ȯŧvx`)}y{ޯ?}gZO55muF?i#Q39U7 Z6ID;> 5ߒ#((>{n oR|}}>$Xfxb+GcFqAۆ׎/TL^ԘçvpèE`ˌ60~?Pٽ_?>?.C -çVUɔw-çv\֭2;,_̿56.a g}j'{zo^b˿ޚh[ZG­s38X)><_쯈Z=7EM ;[>a@2F_NZTѮ\d\!e,]_{Wڔ2S2[%6:iѮM2sue :6\6.-ꤍ+R(Z_; -R|jT"I1/V3ᓫW3Af^ z5j&LPW3Af^ z5j&LPW3Af^ z5j&LPW3Af^ z5j&LPW3Af^ z5j&LPW3Af^ z5j&LPW3Af^ z5j&L}&2.&}sUA~ǪB8țܵC*Y>=-, +èwjcW.T'}b,[Rcys^1"eo#5cOkE*ŧLS-];\p8ͅTP|jɿ\ۧA8>נO1j}^? 1UiF96*>(`%H(`t3-&ef;Yi1y1wY{)aAz;k_w-O "Sr|j/!3~h >c1m{L/]7e:NR|j efԚ6bԶlàEt-à|w8'1<k`:k!s v,$?Pڟ4sBr#>eɰ?IN00ʹ'T:)3i0NJ'4&E~519PWi!H6R?ٝj 0)34%x2fYfOu:)3ӝ̾})'4GQʌb+7(6ܑ%1֙Ɵh23| S;*F ma(&~8o#3j-!QnGy"uqOK1h#95$6u]E5E3S{`MڗceLiJA}b(3C]EF?1Dk*T84D,m!jbWavEq׮WdԎ A1ja|ʌPW8Q mc-;f23|j]>NwF ma(&k^AyZӀ⮭r}E:V;Mc)ZbԚAڈaТm={X& 'ԕ+ݼ #'E?oLq׎/mx^2gefr@_n`Ц] eN?7O X毺 Nϕ*ё9`3+3ޏ(se02V%A\Zse09J+2(J+6Qft ԎydQ\(|r>Wm <:(MڗbXse0jϕP } A\xe?HvXsef@R>WXW2+H+l#F0B+#J+ 6 "ϕoj]AUj]5E3Hr/i2>S| m>WLyTF>WCse0F>W93+Į(Kb75 Q+}`|6 SA\|d!H+sLs`oseGºIfm0jX(}&Ao <)+ϕGmTf6Y9T5+&ֱn֕9H>WFG+nbԕd?FW3n=gɊyi6fduS9eق9}$Ӯ4؜v嘥)MfP2ڕcf(-Mi4C 1ڕ&ӷoFrl`NrlbNdiv91Kb31sڔ&K3(1K3Ѯ"C 1ڔ&c2 t9҂KhYw `Cӻ}٘=NQ**7lK%D~oet4֗ðlUs쭜6Ӯc( m,-M9,79Ӯ}TJ:J8ýJ)(kBi۳B n)VoxR P%gC}i}NilJ#x#6oIiSi4)w𛌂 e9eL:afS;nNM3/KVC{!Y羘hGWHUr_䤽J*ګ4*ҨJ*ګ4*ҨJUΜs䨼J*ʫ4jҨJ*ʫ4jҨJ*ʫ4iҤJ*Mʫ4iҤJ*ʫ4jҨJ*ʫ4jҨJ*ʫ4jҨJ*ʫ4jҨJ*Mʫ4iҨJ'97F@1wPk\{G&bFCƜWo4|?_sdun>i U=~ijA>*ӎy}(6S\pL9PS ]9?PڔCd)G T2ڕfDe+Mb+lFAm2;95JFA 객(jMþL֍ܟX{?|=5Xȴȅ;/Bp5M{cװp07Prz(8:& ^.iWmkI0iS{Xo^ z8 NFr-ϛѦǬ`iJ*< 6T4e5-kQP7Q~1v[c͸X2Sv-i(ѱZaZp*++e--82bӮlپ 8{SP:'KNns)Ԑ+B*L[i ^9Z&ѦF}ؕ5m)};ic|=V!LjҮm9߹~3+{WK[K7pD{]Poj`vEڨn 2Gug0UP7pcFʹ [YYbߢڈaԮm*8ISEa_`oѠZ h@ugnba7+3nVW [Y1ڢn6uue`QuSN>A1wL˰O;+3>M LSu5\eP5Jk0yUu u'}b,y`hp S;~%u[˩6πԗ+1)mp~AiW^Цkyⴴ6p`Ys+}%]p0KSPzD\8R@PoXZFwsM6p@+Mi]{Rڕ圞tnsB Vq҇kkT2ڕ!̤6e0#!Fr/U%Xh}Bg!z \YAM*}]++&^ ֗eYCY`ٌ'[J%삚SԗlJ} eS*e[* VaWV,ئN&6DiW^5hC tK8DiW-RPR_Z)5 U`46e0c/-]\vXC>5U%Xh}Bg!z \B/{wNiWskO]NYȝk;ײ&]ivҾJ3^Va+ƫ9o +"r=5dW:iwzu ZMݧa }C?t kFr%KhWqKpChS7G;vmPkG;rG;BiM;PCvV%i o",6 e'U5*< KK?+`>4P R!?&P d ikP2ڕÄe)3b+ZQP%0 cj,ч4Ga)SѦsMFAQd ~.?QJ(|?fFUmJ9d1diYHJ!Gq?)'О1 Jw)vm\Ҭ7J|6m J6b<1^U4HfJ{icXR [9q5[U~R"9ƃ,œM)(:t#-OTGnmb #I7z5#IT2ܰC>!F" \ՑS$:(H[h@g`3>`b8ag0+3>`VW XY1 MfB0)Yd/n2h IEkW< L_Ku@`_&W^q}d,?uz5ٛ?N7|?8K 3x?np o`oa69'p)iXJrzd)-UʶRڕJ*rJ؞R J?&P PC~ZfFe}xֲ"tf7h>Rڕn))DfaYmvkR!B`L0K[&8qd)ӸuKiWsG>l j)Ey)g(Ԑ+BxJ] W)uopL+/ .)}xW_S 7JO) ^-a\E`񮴿ዂe̢]c8/Wj2fZ!];+ǧv0ܵcƓI1K D.iD.0j]̛Pfxqc+xch#xc xcə` 23,5ҁǼCMySeYMpо !Y1jePIej2n0 m465֍?2|jP23ܵ HPW qP6bh C'60դ/0P3/62g1IOtwmKw-dYE~mzZwa^Ll]qec]AԚ]ǜƜ3}Aep&ZO0c_}c 0چ(mcSpMHCuop@[ٰ.̽m+vhW!)e2$bh&ei?~TU?ښv0+O8¼O1jaln p|hb ?|O wmnRfOa}zZfuE82Z ̓0դ/0Pݮ ŧ4_oPܵŧVq6urBk$6˵ŧV )6^^A6}]0}kٞ?哇1w:&ѭliF3q΄:TRڕ_?癏 !r\}`)(}z0J}iBS_C 1[%A>F%$Fk_)(Ѧ>\?Jbn0]1?՜1f'=]p/~2顒ѧ{ R ]9Ir$B}ia}VفQo h}>e\ְ2LnM4,-gbYmvfiYmvfiYmvݚz[Z_vK-1i:]tݼRYx1JCmB$B}le%^brb>NGHV!YudUUGHV!YtdQEGH!YtdQEGH!_ڊ,:Bɢ#$,:Bɢ#$,:Bɪ#$:Bɪ#$,:Bɢ#$,:Bɢ#$,:Bɢ#$,:Bɢ#$:Bɪ#$A|SK@i ~L˰iVfF.BM-z`(sKL+]csC4Bx[Ѥ)MhRC݁ā.p$?TE4.>`"PڲhRCAhRC}iEDkh]D4U I bC+MCi)uѤGJKKhW(KFqo{|ʽE(([B`VqR;Q21NJh9Ō4}8I0 JF}i5C@}myM*ZJ ՟f!_Q=ǜkiŌveڦ$yx.3%.&tRZF]*>{{s1gze}JOF}iaΦఄ5ԉQ -"40ߤJNL5)u1f 1~ePZ9S!Sh)XBP U9i(-ߏN<<8:uqOcar8}t+w)ec߬>*)m0ڴoOJrB+GҮlJAGJ~jȏBR -AY(E_H,6 -n* n* n* n"n3[j]NEw9uߔ#u#fzWn&;G6eU)m|MF2_7%MY춓2ڕcu]ye=9r JoS(ٛXknån~ 3׹ ˭{eUn-|fazQ6xxen.f[bl-pK;vS(0miG+6e8F,JrҮF,Jrtfh9u5tX=Ե܊Rg W(}X) m KhWhVCv :iF9O,QP1J;xF] MzU&=чi~Sm|]E9|f_o=hZWidP2_QT|wfH C (G5 7J6`$A{1u;u/NT2]WuQVa+ 6礆JxM=QaCP9߬7kz":0"%xJA݂( MǨ!+VԽ8Q2ڕebiwDlFA /-Z}_ +Q%_=фRM|L0Np`W nABiN蚆s9N!iQ ^ ܵC&5`%k˲Ya^:p+*DS{p#0jXfw$0֕ QmoWm^k:n8pÆt7U!xVfv7ee^SѹX]Q^2ˌa+76 xe oVf S;*F ma,3$XW~zjW3ֹ6g]Ew4.è\M?SWj[ME-çJ88i_6/S{'!,0j/Peyb+ 0{I` fVY\=\`yHr:+Ox`bWww2^Q|jNJD`0>Seyb+(6 ܘc wm17S{]S{ڈaԢm0eFd AOm1{ -tO |jMwm+O\Qܵz\޹$kSkh#QaۆĀ^A -6T[y2i[(i 3vz__>?< Yނ6eJCP=cn(ڔ)>log}}W2ڕ`5`Pڕ7˱ߕ6C5]ml G7;6eY۱8Lhoip2ڕy';!F^c0 P%Tb_>Sc'(Pގij(JY ,!1N,a`}d,J(2!FgC0# ZBG,kc_cW_e; 9mFr]4 ;9cwP:-ya(46p%A?]9=QڔCjIi5aȮBiS䇢+ b)lԗCQk2P[b)z( eDrx\*-M9MJSZѮ\6 D)(s Q_C3Q*.̴5*mr,-M]9*,Q_Z>F} 3=ew㽳8IC rPrm27|sddmrlV~<.(uh};2 [FٗQDmf +hwV,Voyַ ۤmvi}]Z.oַ ۍ}ybYCeJ\}V)z, ۓR gI\P Jps)(53U=}֖ Ѯס`2iFA /-Z}F+)JҴ[IQ:9F](RҞ/S(J֤+R4{$$D >,K[<Ǽeܬc)b*ރ ,7&C&St^O:l]7:Yn5n yʯJ1kZ zؼ W ^TK55x5 z8/GqZm1Gqu> G0FѶQ˛S- ?d@$L<0'eUf߾/BRZ?wpeK1cF@eؿ&9+3+f@bԎ èE`ˌ60~9u FvT[r|xELK1jɫ&ƺh:(j>WhԤ})<^)>$è@1}|F>Rc Ԛ{3?Ӑ l#+DibWk6+vB&ŧvH Q 3Xf(ƺblȍ9Qp3xC>WH֬>W̬F-XfI/0P]k͓͙Skп"MqVu]It2obSkh#Q {vM h,J9x*vJMiS'XuI}\N{ Vw 3$+ᙒ3f39)-]*^!033p`>=z]u7ĈQP')u=j(vu DB3Z"vР0N ;۟S2|  ̒z'kXWNAeػ2<|>&WUw͛f_ihжlkܱNq+ c.O)(0C+/mZR68S,bb>fd+iWi7mgmYYpiEXp\giYXpgi[;\S=LM %]i~&kw2ڔfބe+/WI{2ڕc݂ 1ڔC2 J+z(Ůf#Ůef#f#! 'ZOIIIତkCe)7 ջu9şPxQhGK(\،"+GQt,KEi$SZמ`þ\>Q(B (JL[яՏXZF=XC> /U%XPZ>F}&hmU/QTg~Sgk =8-<oMG(]oud+qTZi2Rڕ);V)(BiMioLG)3Ա,cy;(տ22S©nJK10Q_iav(ydaf55dFjE "J!fBiB?q+ҭ)RdZuow {懘>0Z\nZCb027t")ni/)%)N7$v-w;m6j.+n]iW^K66>jfNANӆS!)G8K\_1JB26 e+شI 1ڕ*v~XcJ 1 =чi~31\3m^?7ޚ PBD1PW[Hf6j7D^a<+}F-PM2 u5 ?TվUO<GP|jC6(>îm3:wxje(֙g4r7+}6F{BDwH:ʻ6~`E6 o=R|j{7&)F-mI1Ԥ FA Aۆ׎523|jY]1|jI1Z h c]a_`:vPFy87pZ?,guY2|-~SSO6u SMmlS`>)Xէ`UU} V)Xէ`UU} V)Xէ`UU} V)Xէ`UU} V)Xէ`UU} V)ئO6u SMmlS`UUu V)XU`UUu V)XU`UUu V)XU`UUu V)XU`>)ئO:C=q9苃}4({eek2)3çv 8N\ àM`(s!gTu`,Uc3#WwY"uYيrQ+?!ljg_ռjg09XWA 6٧s+aa<+! FV~hPY&Meþ:(ޠZ`"ZW~۠د&6I_ʹ ߬ ߬,Г6bE6wú2OЎIEkWs]R?? uαrR{Ϛ=;F!G&E7N<0j4^_lߵ?wLh䵿eWv?7U=K2Q.vwҠ|Ftak':Zϴgek |C*ֈkq؊bBZ 2 u m-F RR RN C_2S,AZ3F6Nk1[4O1׌Êc>wðb)HmyoB9w n~/ǠM|kbMyX1dEf<䬮va6eaT&6UbT&a|)J8 r2>sZtg[N&u2鬓IeL:dRY':TɤN&u2鬓IeL*$سI玌*hS#J<ߵSzsRݽklsNV"pܵ8>ۑ3-];Y9)3];A'RN8>I8HqZXcS e)Dch#8lN;V$]S{cw2829c;Yͭ 1zr57J,Npڷ@n߰(ybGGڱ}RZ7(2xE1CL1&~(=Q#&)(S+MҞ)>Ҟ)>Ҟ)F-3PfgО)6B{lcbQ35wZs+mik4׸~>2o |4歁2J+2 wm4 /˱jݶgqxoE-wUû})nZ^QܵW穖3jwRfA1.00Q  b&L<C(AFp&Z/@9~N ӭYzwsỹlXܳq}x7"e ϧh-A|B.MǓLRZ2wwOW+]kv)F-(S ec+c96c I`)S\=eUsUi{ޔ=ڞweϻ]yWk{ޕ=ڞweϻ]yS\=WeEsMva.t B걽ָT'vRܴÃ3-eyрkG882C߯j[ 3X/Uʧ6??׿5F:y ĉ a3-glB<)3g<\&Cx}^l1j!"bnC]I;FuN0F 6ZQu Ў>)3Ø"}+!nH1=gUf߾Cyl 8P eK1C"ȏW'Z!ä qf@bԎ èE`F`B A/cZz61teH[Kîm(/ȱҮzi/w{^)/δs3f((gZ3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3m3mY:Il8QڔҮ{!JҌQU(}XG)[ ~((҂3 5Qhٌ>HֳsֳIJ\J\&Mr=z6l$׳Ig\&Mr=z6l$׳Ig\&Mr=z6l$׳Ig\&Mr=z6l$׳Ig\&Mr=z6l$׳Iga41es0#&4&;:˩_ai#1}f @)(iPzep,axs2&0 2X^~ 7siF܍Cgr]Qt4 pOXSx6Ǡyweجzos#]fJCUP6yE~t -d(yxg%ZG9&J7[ AEOgzEj F2A9JZ( m@,- `|%k#ٙӮ_ssKJR!]L) lK(!")MCi}~G'?־ki%^&^ ugkh _%2)33];|X ];L0hʁ! ^|mwkNqn2ܵg?2|jI>nҎ `aFY6ʸǺ2h623|jFޕ㦭 ?ǧv+:1j}PC%8B{.ʞGEoQqqŧvgh#Q A1mbI_`:]gŧ4')qAVhwNh>f23ܵc,⤮>fP6bۨbN\1j eӏ$&?xԸlq<1S,WδcWOЉgZv<w̪6 ;feg;ffa_% k2þٚmTͰ*0TK 23pu87)2S|j,3]2ݯ8F_q<6W?\ϴ a3+>㠂m0j6e$þf}q۴ b-)ѱkTCRӎ1Ó~OpSOLm7n{4Rp쵇$2O}vxB}bcQ;d?VƵYdac .]k2|jEwލS;.Tލֿx@1ync]˫ cXGiKSpmrܫNç,d0v {laؗy61j62h2S|8a_Oy¦6uM'lOy¦6qPvy`0G'gMA5󄩖`<[ Xfsh |5X2K㱯  $w7.àžeb7 `!k?{˳ŏ9{"{8 kcqeڏ<`(3מFPW wsF jeӵ4 hf@h}m5Svx *R+UƚQמၗBsB&/ ueWR^ UB KCUTॡ` AZ܃>x9)-.pRCPI0''((U%X) 7u/zWг9しMJ]웄ˉ2/D5QBU(uh R^ Uɘ(]uCWaI R&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU&XEU]EU]EU]EU]EU]EͿY̗YδR)g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,g,f,Ӈf>4Y2}hCLE,Ӈf(Y2}hCLE,Ӈf>4Y2}hCLE,Ӈf>4Y2}hCLE,Ӈf>4Y2}hCLEEӇ.X.r=+r="׳X.r="׳X.r="׳X.r="׳X.r="׳X.r="׳X.r="׳X.r="׳X.r="׳X.r="׳X.2}"҇.2}"҇.2}"҇.2}"҇.2}"҇.2}"҇.2}"ЋLLL|kU[2Z̷֪VE*Uo|kU[2Z̷֪VE*Uo|kU[2Z̷֪VE*Uo|kU[2Z̷֪VE*USeִ*R[2Z%?52ߟn-sBp5MY/h\zYNr?F=[fdrmllTeniW?O7Ӯܷp_kcv*)cw2ڔ[Ѯl>JhSU| 1ڕmuN 6 Zcf=Ҭ uJWVbݗҮM%6!7rڕc6 t 9ҺPCn"J}YD,rL(bL(v5hWv ((҂1 5CSYƑ28DiWscMya<,ѮW3c)b }6y}iʣm]i *[B |vZ nVW[~ KZ\=rv|zC?1_rn cIkB?O(׾||x=ҦRihcGqhS6֏N%]淾+ )$+crh;؞?+ mʣkRy-;ShS;̔\7)-]ccoѱ] `}` UXB%5Q:3)q?)@>BO'54Ph[V(XBNbb %`PZFA 1 =Zчi&ɾg F}݆EK kHA3ڔlpm1\lFrKoGMo6!FţQ˰5ĨMU=P(^ ơI`pO~?_0W)(VاZ\LVHyO) Y>^GѫW SF`jqW7vi`(2gb) 6*`mS- ?a*2oÅͬ ?R^ee^y1VV$0j#,eˌa+76 T=23ܵ HPW qP6bh c&ƺ¾CuЏ4?XF3i3 ὁwF-Q6L]n5 ا,_O'\GQ }b,3c]%blRTc$Rߠŧ-5+vxwg2^Q|jNJD`0>Seyb+(6 |-ek +aVW uF ma,3$XW~zjk>ha(>}:6ŧV(Zw.j\\RܵvCu5 èE0mnb@ۧ~z8+=v=ݭJat=&6qO{Mmnt=&6qO{Mmnt=&6qO{Mmnt=&6qO{Mmnt=&6qO{Mmnt=&7}aiufXdQ}FȖ'B:js7_ᶍn}ӳld)퍣/-0&+Nҗ<;r%wq+~4q2 U>;qwճg>U<;nv|{ώϴ ggef?;>+6Y>;1+>+xv|(ggef?}@ L<;n:qQ+7ʼg Z`EQ[QԸQ`Ǻ2.Fg6L|vl4eq  \0^OI۠?;>I3-Yώatmώmr3,u5̙]$zzfW]gvEqfW]gvEqfW]gvEqfW]gvEqfW]gvEqfW]gvEqfW]gvEqfW]gvEqfW]gvEqfW]gvEqfW]gvE㩭򢾴!֦MJ;R_CpFo8ˢ[Qz2{gc0G*,)YyMZ`4!ZşRS #(%`PZFA 1 =Zчi~m\O~o2Y2Yw-ARʹwf wVk%Od@ŧvH)U ށbԂ#Xfw (6)6j4mkc~@'ZnH!A]M}R|jw@ QZ b+7(6 xe I`$+O8`1Z h c]a_`:v|8o } ?-mcN2ǞI` O|3|jF= wm?jS-];\$P'3ŧ9q96 AŨu)c2üOq^!L̨]Q){.f!nc1A<*&ԎƎY wDpLXfSW>nwD1a,3j2|D+(hڛb,3ec]TcI_wm'G_߭ coL܇}N;6g;ɻ9ae|f}_a{҂؋);org52Zc;iLT{*uRfثf-0^社czbsDft{}i;V}M,{k 6rcM|絹Ǵ}j;kI/ZTbgma̳n$_*Vرl}c7 mYOhq^mu˦")syq]1Ճ^Yƚvȣ=ٶcK/.BߴOYLi|)#)SP^RsgNf{Kj7r4gۺvp[w/)/! !ÉK!wraTV񥲾8g]Tsƫ~corg&KSV~bn,-[En5kwnfٲ91JEocö ^\}zV ҫnFId>ȯ-{m5GfW^L]@O5+8{b٫;MkjY#\g55"Ziayw3WćL?>Znǟ{y/^6߹R-jZ^܏qkዻ$ybc3y/OKD]{~ߗ%M덿Irc;mMkƋcZS!^=+Tf{*9e:نT[G/%t|Q|9J˝$/~?[_ UwkJ}L7~A A_L7^km-&.꒸=7:!h ?;k.!s8(,Wp! Wݽwn߸w0\ s!eˬ$qnlDPYB.ZBIZ̼؛"T&7ng˫6dvXi~l澴9+O\ds6JkɲN~g9Wo}vS;^;ɰz7~'{^[2}^yq-Y|q1,xsc:؋> ._}k#|^Or 7Se}k9L7ΧzDz/}%q{{qm6Et5|_*\sy~jϕi5]m.g.ge>/9{eww&Q3] }9L(e՜k^Ѥ,oҫA̟_RU_w~/xcI}H~_hrWԭ.#.S=A*7ZnsTp~qVٟM$o$Q"Šv۟JVѝIC|>«Ir>(NSqKr?ܗFXc./=wFtLF&<3ݙ,=)izczkfa{|i"9nK^z008kIOkK7i"nHƞ9 sزJ:TQҦ8hd]̈́iQiq]XYwrPձ|Y_]vQru*977>2>7'—#{ũ=__w#ӥj.re_6ʽz痪8{KqֽFs-ʍs.^t |_6{yʁ 6dȼ{\Z}ƫ}v {1B"r[ԈyT]'!_opT0Ǣm}f|jJba<ë/KFk)sY S/L޲P{,` Ln5j8}g/hdzx ΗoG_}(,m1jZİrcȼwvnk)"dec"}aodwڌTI/'go'ZDžfo̚L~FSHox'4˾lm̝sXZos⎆^L^o ^l7z[o\\xWl6V~1zkɆ%soLw\"K~%>YifÞ b5S7,i{j`?HؗWn;"=/q2WOO:BOBz9A;+7>mo3ZvpM8:x%>?\S]8T_. ؋ܦ"'6RDzjo%s~I;/9-⦹Wo;7/Ͷxo:7;AC-k};qepJ5Ou`a7p(_uu!߿+?"W}!|ﯧӞG _=UPcږ~O-p=__owf[uf^g=J -O->KQgmaj [/meYf6z0-.[)C:FV]OmWD[WWW cse_}Zc]f8qiՀJ\wF("?1`I2}:QoЖc -oڸc(I{  Zg6 8Zw &2s,G໖S{+-6nC)zNG 62ZQŎ9ca I`|ZO"efkU]1|j;rg6bh c&ƺ¾CuScx:c =Xp~BEԶlm0)>8)~@EfoOޮ(2Úb+(6۠m>P]YіT3ܵUSS-0Quڣs;[ce?: ]{I?zL]pצ\BQ;weԦc<֮|j-q5oO-ߎ cJ}5+󀱮J<mަu5`lr~Qр6l]6 ر ?.k~G̽,|ԸN~{^M/wMڜb۠aM[Zz,޵QB(3]{^<2ILڗS{λ}OڗTd[%g<`棷-Zcaܠ-ŏ}|봮m0hˢlr6hWUmr69޾OlS+mT$$Ũ 6I1$Fhɪm̃Nk!?6 6Y[Áw[5C-ҎB.]kelҏ(>y 5G?\FI?Џ(2C? F`mD:]mmzVeUdU6kܕM&we]ؤHIQ 6I1mrW6kܕM&weUۤ[xjզƫ*~_Fl_Q= n`O1Qm ek:5]/0m#Q0ma+ ?T}֣G鈴 }c}Sko Ǖ|דySk6~^`ca^ plgm{=8̀9{8{Ӹzx"a}?G{geԶ>xWNwmRa(2H0P|jFsQOX=3fAq]|h F-/{6/a ;~1~9v{V _v5 ھ&l6q#/͞kqK2Z1/l:Sr0cQWj̮l@yn:cwYv5g"[kŚA*)ڮ**JڮRuWK=,3]ɀbJm|sqlԚŗ9>fj#@-\Oڶ,і>B%:l%;0~kC}o$j %?23|jnq]~-~-EȖD"~1֕rm6j4mkc~@'1z3x8/Ѝ؏?TO/m|LQXHi8MVu ӮLW.©mn<:Ad;gNrg?2 jҮ\@ QڕcN_C- m]Բ?O- ?Ho1,߾,86oCJT,KNoֶ@I94#5JGAgp] 9=m: {:GO3aC'?sp[s\lVZJA9T׹uo{Qi|>pL1\SmmTmhtUۤc23N!ЃҺٛu]?@;B_pMp׶Fx?i>xRW?\<>Wi;Ũ7n̘a+p\)F6kDk!د4`wَIVs8I5ۣC:.5|n cy0 ccmG}sIa: f!^23|Ny{^˖:ݿBГ y<:<& Җ D$DJ3c53bqjoudj+32WKwїگė_;ZEaVKWoQ}c}!'f!l/jd|;ކ{v;C6dib?ִaWmlCEZe|RKc 1^fnKfR|ގ6B>> 3eJ/wɔ]. \+ou,i]BL4-Ӳش.Ͷg—-tTS\BGD5-y"w)-1LsYQ\Gu,1ƞƎ~n}f_(SzwY 0eJ.cy@Liw5ewl>\3ks-#Tėwڑ{Pq=WFqY)|h=x:gx:ӎ$-sxcbHbWT^[Pm.Lf~Ï=}sޞ)L/|ia~iF5ҕԅz[}GR^O9ZyK3__Җc/K3%K3cY/uT:ҌK3O c[٬ YҌ_? ZL-Fl4wwڑĦ)GV륙Y%! _mmFdh/(6'\V%::U/~I/ )|щ9߯=q/pTlV%Tm_:qCbNEZ-l^K=÷Xֲɻ~1Niً9sQ߫ iUwkz¨|wgoݹ&t6k;D+Mg2?j <ϔ]M(*|2>i=-7$Ԍx%qGqRb%z>0Lot6uZfO|F]Y,G+?&U[¢[ɍbIXum Xt˚ة`յA}qn%a 'Jnr )0t%;OKIr`b$ |^RV)bKX+45OX=T=]g@-3UY{R*JYi]m|kUhȎJAQY x/\g0IDN)r ")=ԔC;jM2@SԲG7ZݜSRTr({P6Mgmu>i_hdkwwmgeEi"mWXț&_ ǓD*|if9?oMs4Ҷ筳i"pG˛&{gD`*i"04|clL>*Lmc/ld{gm=<> Y]i0:H{a*|ip J|i8oHov_QM;Z4mle47M|cr?i"p<7tbė2oM_{gD7M&ΦTV{gD`i"77MбyY27֪4='FÝMI Ш["7^SU܏ {=Whc0-N~ĖjKs?9+/m%ŎǨdـʊۑTG/HLo~N[KEl|j\ד~-KXu񥾂s$+:w TV%1]BIx+%$]̕d)Px \;!) { g7nz6Ofހ? So7lg 3ۀ?mr~ ul܀_d~:$ 7;:_ u6dL7dL7dL7dL7dL7dL7dL7dL7dL7dL7dL7dL7dL7O: u6AoSJP+4 RQa]ow(mހ|3lxg|,L6 xVgq{w.ZԔ-KHRۀ߽=u/hU掵r~r$}nْriM=$ZP(XQ, MQHURH=u?9ɹssٽVa<3سYa<8΀dٹ΀l漦:hs[z3`*-=0і |cKuL>:;=Ya G#7;Hb<3*g;mPb<#xϣF u6:JuRۏ  ֗sYN̑H f uL6o΀\'ōP [z?*LmaKuos=rG(9n?̵[z7jKuw̞ vKuR0=IW;ٳٝ뤶nvJbyd:}u\瑝<#Vړm=Vړm=Vړm=Vړm=Vړm=Vړm=Vړm=Vړm=Vړm=Vړm=Vړm=Vړm=Vړm=VړsGzHu#9y:\瑞Lj:6K|iሙ͗|v藯͗k%foql77vJ;ݞ$iu< 2kOw8P*lZ^U҆ZMk{6+|i=+\+iy?~%hZufjsYQۂ{O68;۬4L R&vi_`3s$iWWY;oqEHcVˊthWZ/m{g—7n.+M;u0k7f'ⶠ+k6 PGousvkѽĬ%3X7ZMg>:+ėxG9YKmAbdˊ–}aoM' =YE>]s~g9~?~`2>um>L:Laqj*?H&X*R"\kzJAnϒ*jvWx!?XRS̐,)ǖ0,#Z+(+a+JRv`IV je;I6XǓm9ml=sQ`$a\`Iy.X Gxo*2IIe+ !\  "˕m~QPR72}?d>79**fGc'5}^\ =Sia IY 3fd+J%VR*5OX/di+!ԉ^OO+ EZR ajZ ǣ;*mAC5;_h"))wJB{HXvtձVQR7[{2̟6.s5ܾ' [|­H V]{3N=C؝9-_4lpUm￲ ;ܾ -nR۷z8V+k2wX' 5ک oٝK?- ^-5˚=^4{-v¯$௮xRrڣMr%~p;E%~[-D#Zŏძ0tX͆h]CghUNGۅg2kʱBn:*/UEMYW*UEZZQJVaZu Eh-EQ>R*JkF6#ZY|*Lv5ܱ}5L/)UZ֌>5X+iU\Gvڧ/)SQVbT(OEV%OV(y JOsoE_؎h*EIIv_8(5@K9i&(l7y1`k \BJq4O|5BD}o'{uⱇe%;*J⺣TBXRຣW%f賾VQX_- }OӺܲCR QSj5='(y<;~e=Cn͍bBM%%NE_h)R+v#[>EI]KCˆ(Ϭ<^]^N-c1LbNkQ(wGK2ZM;% vhkrsn8/m]Cj|iqGy?eL}5G̽h17Kb}J}cЯS[ج NJsA>rFFh˹mUآnwk%GK㲒ش$sKGoBĬ0Nb۠TV%CTG!Nbv]Z2j#m}Ch7}RaӞS[R|WaIZ/mhĦ>QI|iCv$1k܎$7 F7&YMm s7(>o]7Jv͵7u_ߊ'-=%OH$n"۪kb;')h'I V_$\ ؉J/JI/I~:N_~=\tܞۓƖd5弻(zt]E+a Yh qP(4CIPAP. z Vk^ʔ=^ؔȎ+Jk]z/ہ3VaM/pWGxF4m-nS?F} 쾃DPRxs<zrġ7<')IF5oxNRK7\3}[˴Z[()v{G(Y;Gkr&tJ(^OJJ0w~{&~r;%$)~IM9= OR=^R*!leR`˖D;]B-{\h)/o*zJbv+}k4I[ط&/VP$%k ֮ )Y o3 8{ ;Zy?߷~ܧ?{}QOsmU|_~>2/D}O>2bO|-]?Y|Y\󵥲mijʹ*ڕԷRPS˻C+޾?JAY9L_mQ/vGسQ*mz2JѪhxVn[hUZeGzJEQx +5e5u/b,[)(>lϺX&\';,'8Jp?,Y b m9\B˵-;x *!x_eh |}oVGo#42EM<͵2b[)()l%k::%( *%}a]2x&AR5x_2x*Z܎Q*j1VҪu{$IM?A{AIId-F0IZ!W<п:o&Oڊ )hUi I I)ggK(z|]'%kI(YKSQSϰIIY?q_#Q:JRSJh?JT+T=bZ I F>ZκSuI֊UiW^ mvU~gTԔxHR.[WdYhU[-! NEҭvϬwԔY$))la\/jB'U9VKj/ ޞ97J[SO(JLeQ))>5%k4ZQjS5Y)[RwДjzsd K(0,bIijJo-UX)EǾtЯDFLRS$lIM8FIw2x|35v}RQSR*0/ZQز%%k"t/8fcjM_XdUyxR$Z7yvd8bDe=~+mR:JE2ExIMc1ijA4%%1jJb2%ʔ+SүrǶ")y)EckmnHeOVѪtQvNeVq]SSSļE+ώIJCo)HbPL=㐢3oCO6TFm%P>?RgSs{MMo J~WP+1i}F=~3C2DTOIlF')ۋ~kɯ?DRRb.6nQ]D]J KIRѪP ⭤5IIcIZIJ%VR!Et֮5@G57Ja }{þLҪoW7z+YGuԔgl[}SՊPӲ׺*p_J`T+r;6NEPcX$em5ufQ \Y}Vy%55o`a׳G퐊/~sԮ%g_/>_O}wCӭp|?q$uZ\K}t[±~^>p: uh9\J=[h;t9uO)jN? kܧIep A/OQ`7%(=5?P/KV ZK9jOXju/{JAߧ{ZElơZU>sNSv',.{VR(Z˵({X+Tu*9z_ReveKW(gώu}3}VeT*Zd ,CSҵƗӞSx+%e)/S:J֞e;uKN<`Lߩ(@6Sv*c60VuBCVgn~_=B<*=#k%|tV*}ҟ))ecL8Ũ))2IV%O ?M}G V.ѥu+ aHjJWz4uwx0$%%0$%kq!)0$ZaOPԔxOF{8LmEQSz/iaHJJ&( EjE͇$1'jHc$0V&1Y$\JEk/`^RVB&)\%}QG<;QSx >IY OR"XB46k==}=z|oF:ҏo1HJx+))N|LTֽi[QzjJFI26?%5l )wPBo홌oO +}NHaMz;q|+sYOAQTRԔqXBZ8(z+}QEk)(Pz>PB17'MbSӪ YTgZMMOMBϫ)*l㙣><}SQSLO*[Eru)}Ӫlm(!^w>h-+Ek1jj |qL))KHb9KO(Y [M`|) )e ObS\+e!s(J3dgIZe(XBO0td-5BjezRQS|MxI"j4e%o%/) +EO khmPMߧxޙx8_N[h>YK%tlm(/8$}sSԔ. #;a& =F0EQ-[Q+b qVkۧ Em[3x4oIM$5emގ'HJIZIl}As}*j>5)7/Ԕ`ZEM㩄ʐmM(*EkbWk#sO&{Fv s=XSRSֳ{)!IMNJT'+cD5MX=1|<.>$)i[IQImERڧXB$}A)ZK%_n;*j'5}kR9z4׊dOPeSK=^Qnex\/֧xgOW.F(IjٌԔcBw*֗]I~,GQ\%ʚ򼵀LRS'ĶJEg@)sSgֺ߲o%}nHJ!IZI$Za/kV}9C%(+aVROXAC`,a{}N{xNs>O?q~q[ԧ>CSO}3Db-S􉣚>iۧ>7>p|q'$IK='zL}ix^1$g+=o)CNK{Rh]Jt$CNrkMj]p>;~+}AKRPRa{Q:J֖@eR M\uvSBR'(Juڦ֝m_HϽ?G>߽Jzg=V jE/TԔƆzFN`5ew77jc{[O?c+Ek*w딐X+Crd=^R=FLRSNم,E_'}xGIqHRcTBo%ZY j>4T<ݦ_6bemvbv$+x *5ގIjGw=^RSfIILRTB%ZARV*C;܈}sI)gHe)GwPSQR)J֒*J%DmE;OEMyX)=3[VQSm%)}kZQ }R +SWCg;Z "eOc;XK))}k@ԔK&kcK&6*k#}JlPG)'w8}HRS;{;YDz+v2@,!EMT+d-t$Zmyp yj=Eߎpv% #9d-EEe+JBJE!N0ҭ^R_&)w =^RR'HJb")/(wOI-ϑRQSn`Y)OS )j],ZQ }R +B4Ww8/YJ<@O84o.΢a\ڡHZOԔ5;IiQ_(!qg*6ho}v ltG3Ї$5/Iwת3,sȰԔ;qHSS!x&)5Оw`ky-OMؐؐ&wVSSMII>(YK({X+TuM*jťS )ʸ) 1;yu:~=#ijc;IiY/uV&)P2III_y?<*jOO 451iJJkjJbJ[/(wn+aP)kt ճVQSv@{֊DO%SJ<^Qy%}%-~zƾa}{t 9MާgR jG[w,ځZcIj2 ORS#S}}R I>(zBEckkNsY}d=Z5rV*j "k5Rܱ畔C~)$ZIJEHVnL뷚K}*JKJRRJbߞDPT<Q IjRzw}SPS'NIzRQ;䴻3i A˞,}h-+%k1Ijs@e>sQ:JbLcX+T=s=< 8˜ s芼OQSqxE|DcJjch")*l-m%0Fb3N7#YX)lI#шQRS aHJJy%%kq4.)yX+'RQ>uf]wwb8kͿgNkSo/ְ_18)NL)AMvʭ[u]9Ek#[QUi;$em/jJv[) kdzX(z锐T+T=suCpϏB}|!Z^!O^_dS~')`mfy_=Q |4Rw6 .!En+i=znnԲ{Kt]]ikا( y T[O {=lPtlVw6ۓRwώe޷u_ز%ZQs'u Z6ٮӢH-))ɇ%kV"OPjZE٣ e%ْR{p ǐ#I;8R&#줡JJ$%kvdZGVZSPSuGKϖ񒒵$–-) )GMb]}Fߌ-;WIRS1>Y+=Iv0ZEMG&FI-T`Ԕ.␤Ķ")Y))ՊT+TuM*jXBOIV0ޞ> =!}>oo6ODUJJb))ՊwOE>OI_%JJxEZjeR QVjI4 uM֪loFF`O(!Mg O״*dESRB֔%M iJQSSRz0YW]i俿IJEU(WA))!iJR[QJ" ;)}a]z gTB2j4Z^>z˜Qs䷊C1~FB~)Ȏ␢%%[EZzFe@ާgtP'rL_hQ$Ega F0IߧLh>I Ew24E %F[{OxJ{ o6O< |L }֎絸V T+1;4xߔ~I=,g;c+ JJb4ՊGrYG)IMH $ZqOQC2YAӔ#s)Մ{HOI_Wl'YX+%_;klC@)+/i_bc};fSYq;7Pf>3j/~,agl~^>%r>?/VZڬ]gi4QN-4Qs3j-M|f7(eGa'>o|i _mu'>_鹂 _)NҎQskFQIl3_JuDmAbOvs[`~Q#;s.wo@v{" 𥭕KܳYkP=;~^L.{tf*eqCa#W Y]Iz6+|i3++Ib{FWG }Ca}Ra.+n ؖwuhQQ $6xwtWK?ϊwėǨ& w4)Vm~_b.& s<)}cNeF_~Iqݘ_7 <Κ¦0MlsRW+뽵ج𥝟\u@/~*=Fn-M&w Tj@vYS|c='{Z-tlVle{ Jj lV{Vnf|픕ė8c(`Oa۠TV(Lunmw{Sgn&=y0O^otBicMџG~Oq=f=cGO0lVsVJ/2{2{h1 jL{:74'`1hf1, ȟ}OI#=˜icLH+C%Ff=i~O\Vi~X i~O;R`0tbĘ+S`0蔠f=c0՘P0=LU˜o_T=vL{z4rtz6+L1~twBq'tĘ;_:Կt_y'{j—v~fqĘI|Q(w 0:x\'1 7:mAa19cw c e6]=K?W*La N/]]WG,}3+;II*Gw4O>RRSq[ V jzK=>ZKonV Zc=bg ϗRQR糦Q:JNeiIZGe?)!GV[;(y”zxߙq7jZIM ੄$5ZԔS{ӚFloɒMI'iUL>TԔZ=ܽ\ק+M[W9~f%7>Wp WB P/?+_]u^Fhcjme WBsP/ܖ΅WBhy%T`yPV^ hP76^ } s[`UsP_σvVp-DH7V4jAn]OHٙ% m3KC#}9,q{,(syv]v$5B=xH J|i&Z%o:D;Z% 6wfsYufs,Qvy(WcG'H|֞8R ~wfw$ݱ~1AsbP.J%z(w+!>%JST>ƌsLeqeӊo+uv%ʭ&(5e}{t8kjv kL6wگTV0Q'^Y*|ig$سYK¦|P:Tʪ~e /: g~0ش뤮iUشke]I>g>LYenA Wԯėg/^ i5f-f%p\c霏SGoc'i{Xܰ''D6c;3lIGz{Srgg'rlckZcRѪcbԔ9uMsѴ*њV`׷F)+ASv8DES,ASk T4EOŞy)Lic7E%ׇ3vQgD 汤T*:A|Z/6\s eW# K;>$iU@SҪ>JEMuk$5e]W-)YN4$Ek)jJ%DZR$EO`UdzKǹyO t# oHYF{?MçvK~ݟ|`qѿU`?]RS6x'WѪtRQSmŎVIi IM.y٦r$e%dHJR R''@H=>Tz&k}a;` |m~ضE j+2ssntߌi%lk\V[YeԔm͝[lWnْd-F0I0jJJ2Q> S M߽7ݛ Kz@!@!wBѱVQ Kz@׬7}z@Y恒Yo(P֛J恒''޼T<>Ў|_uoOEIh;ֺߌ,ͱV|(~SR%['s˖Io$ړbd9FXYo:zB}ߥ7߶an3߶eo ?;֖YPVePtrnU9k5ز˟niUceMASSn-zcӔkJ1hJ%tЦ)é OV*UԔ6ƫ45~ \)o{MY/0є4K4Z84%OK4%cd/lGpJ $m9?wmVejR/nidkZoa R]ݒVB+ӔPR] f`^NEIImMJp{9;T*UT*j>MMymWViZqJSV4%k*M jJhj_BSQSֶbWq״*Ca*M_pዦDS)DjMVe+jx{P(yf;إZ6 jJmJ>AZ^K>AV^=3O8pΏAP}UIwX;|nyr[V5%G̚{1kJ%-[R^% )邚)EGkugN8 w on_V/OAtFw3.ҒԔ-΅tuo\%iUPǶ›rTSv$IV쇦 S }ggnuԔm%$)2T+$%%zd-zTB$Z-+4H0:JA?'qHQSqHQSqHQSVOqHQRRR8(!EV()J00yRZ)CRԔ/E?,ž()%kV( lE_Iz|ZF5nH=coos*HSqЀyh 0 Xx0sTQZWM5>'􌿩hUn-AVRSέHs=fӄէFO|ꛟ/ωO}q|pF]=SRR'ejcO2URs^,6Fx:o^n_W(Qܲh5gtepQgOʵ*;iI}SQilΞuijɕ:?o;q<==vǣ}rY:PdXBrq` IjJ_XB6e|sq>6y |LST2|t-RₔU7-_8HJIM6ZIM5eOEM5E ߚ+k%BJX++k!A__'VE7.!EM.ZQ*Å OQ=^Q,!nebpVDobUwؗbհ?9|/@?_em V|tCҪǻXhU*CW$5䋤l# 33]9I|GR =a92Oȼ{ɗ=8ͨ2ڞSNEQGPڠ ,WB a jJ?6 )]"IjxeMI9#?M$BjeԚ'lz /*(E]=#FRQ5EQWKjJw=^ST.g|YS2M/k=A5+ć\",>ϗNKjJw0 kESTRћXB;HJZU+>jb}*}(XhU#Uܲ5e[>^PSS '1!TBЯhJ} 8z e̺oW?~xzzw\ܗ~/׫J2Epˢ[/u7oi/)2PaqIKޫ=4%*JbTBpT+'F5O U Al eN4}O/))G(J֎8RKhq(2Q7ݦOwz(Vgh $}6,T뚱}8$iUR8V%%kwJ{$IM9kEPv}Hx +5$Ų))'EjIId-Hb Q/(+i?߲8\wi0'OԔphUpyDQSR8R4EkGh) MaaTԦ~|F* N )jʖөEQɞ(Zާ({xOE^.S9>r ))*1e-hqg7en-ľ`)07VeZVe$RO!c[ԔOI-S)+OIKbX+ow9%sr[=/iVQS RkJJOEwrnW84s*WlE%lE_`)gɎ ,W7ݜɿSRT7-ezAJQ*Z 5%Gq'FMIMG8jJJh+5%)) !Io}%-S wҴs1Wo_򙬹vsO˿~^}~_ꧏj^̗Z+JѪ<[\-_;SKQ˚j9-MII9rn32+lye+z[aed}~+ʥ]ZW~:JEgѱVѪB` )jʹEII>t!)zB1*H_%:v>BFP[(c߬o46\ ޔVȰl"˕lϽ=%$))g,IX ֞{J9L-l:^2, jʶR\q+na̡t>Q{㹆cTBT+s u6z(y))􍢦Ն55e42^tʲq5F*jJ%TB^D3V%%-'3Q9mK(2RFk2v<Ee`2ikoN17dܧ-;7(5Fyl--7_ofXBT[o!^`(5*o*jIR*jԶul[JSRRb))YTB䷊R'(J@ʣ-bӶ2'meQՔKo8IRSIRSIRR<[Sv:M::J%4e:`\rj=AkY2Em2N_-[>Wu}jJ7kNRSSbn\Kc׾Wee# =edm͉_vX(P~e+!GVjVj?z(y”zB}Q lO{Tnn5UG#MEI37ٍcq%4nԾZqVe(wR*jnVg5kGڡt+{RPRR}*JܯƽgTB4Z9^8jFffAISSҷ2x_}+}O#5w5S>)Y[smm/hY(RPLP|ȍY(y4/n]Wq )5e;>$iUNQSS #FMMَ=IJ>IZ1jJ%#FMV畔5f-N0ٌ .TV#K0w$=cl|和-tl$c%[.rIǖK2\ұ和-tl$c%[.rIǖK2\ұ和-tl&c5[rMǖk2\ӱ嚌-tl&c5[rMǖK2\ұ和-tl$c%[.rIǖK2\ұ和-tl$c%[.rIǖK2\ұ和-tl&c5[rMǖk2\ӱ嚌-tl&c5[rMǖK2\ұ和-tlfc5[rǖk6\嚍-|lfc5[rǖK6\咍-|l$c-k|/,7w5<,hAAKak7Ӻnn &Wj٩-Ki-DAdhoVJv襽vD 5\hDAZQP NAkSWl*/юKleqpgGkm{.x&*aqяpl{\&\n0>Sm\|}N_X+6|MӪۨq×45ek=U. X)[#U9YݶBԔ͡SSv)1TS|NSzNRRPxV#|ooDnk"u>XY\XiZijvD5%%\)Y iJ%1ASS2!Mrh3ɎRQTj/al+Hb٢koajJJ2YSLK㭦|^B#Xs(&5RQS/AS*%}%%,hֲ)%Ğ( { wY'8ױ~ש~WOg*Vx;JER7ZWEҝ(+ _UԔmX _UԔ=L_EkGzUQ,^Uke_EO2#Nr.ͨT2ݩ13;E%}20V;HY:وR箽kiclg# '}6,)JJzUQ^UJ^Uj^U<^ۙEbkJzU=rnGNX7CD_EyõOᮽR'ڊ׃!>'~ޤOMj&zQQThx&}%4IbGV+ϛhzzVQS#.!EGJN(JEZ>E}%-ݝxGMQS%OwⳣTN#TԔL h5%%y‘Ą`(( (ywyukI_џ_3RTmRF17mѫ5JLDG))Hl)۪Ja=hJ%M9M4ZWkJe3(}IZS}2>IMy/,=>II')Y')zT+Cb]5P}qhIВơ%CKq̣iUuN}*J)4%k8ԔJhcXMVƴV &&Uvd;*jʥR;()%k"W@SCrelM(5e;%5eKV/iUξb %/) FjIH;K[Wk4S|z]]y&C7}a܃C{))k+*yHDRSr_\w2Hoee}єTB;HJ= c #PЧZEMF1GSRb}JJMͷ@&K =$OErJ]M{ޮJ={(=7_ofZ(`=˫v$WqJNM1 ;%-Š^KۂU9U90pl|CMMNNo)[|/,FEMҥw~U H)[lXhUV5eujEQT'|1PCJ8x`!0Vぅs Ve(=PNw`e)\A̫Դ*w {l:Mt/Rjjʶݳ6zeOP)iUm\RR PMI '4%ko:ݍtJQPj/8ۋex.?˟~OÁFՂ2[4ūtuAh~U;.36Ii}cWpgӏA ?`Ӯ34*"Uc f1yg)VDRbsfH061dG0Y5hs7g~f:Zzn-l({7NԇҸ+zHwQ\V[ݟGX[ks WM[ rfV-EFM=OmqJp.V]C6B,+MeZ][G}cuo?OR9kLZ(U;uicw%8=U;k=%6mfЇ&شAવ}]}hY }hfCe}h?J0䓬,Ӹ.㚾;|D6HکDӤ2ji}?JlR:ڝrָjx}RcJX[0kc(ts4X1X_Xj2,iÄJbӎef\nIZ fI-H=>4ŸB; |ly"/ /a軿:ɲ A_N2>9gGf0.c{MA쭑6,k$شhb[x6 8D &R?ߔ`y9?#`*es :Z9<ə`eO}:k%6zƴEu1ohkoy ۠TG%~eހ7ٟB/?u`q?p¯}On {x=TV*~i1vC]T|M`MDL F}>g99*0kYi&aBLfqy>)+0^%|cbM n?Aj%6m-zҵYЉ87kj~%~ݛu ]شu1ڮ}YK,1+1՞P 6KlIvlu se|`Js).\Cg/ZJ54)،s MsO-hlښlQS-\Ccb?1Ls h154&ߠ/t:k|y?s_=kOOWw'~}|{>?_etGi{Ϗ0AᲤZ)o6ݳ : kwea^ݭAޣꬤBso+1hGM:a*|`YŲz𾒐WYKOT:̫puq=^`^e*~i~|a=wz{g ]!FH0Șսh> _YNwx(lZSO&ViXlĔ8ees/cӆ5v3zk5oTyFN0 *TV'LuŎϽ:|c{'Y+1Y6e1Vbư{g.ud(mVKְShG9Ε<)+9~n]mBI+3C|WcӆۂƖ۠lV5h!h6cӘʊbTG5&`9lgZ.|rSD;MƖs, gȟ5&`{g1?_aq;e}c)Qζjqix먍g~5~+i|]_ ھ]I:U 5B9/K\ոjdqc GD:Z6dWmcش!cƦ q;Z+fC5[c#3hLAYcɎ6Dgg%~a#ybM*-q}ek\5 yc{׸ueqw].iqJlXW׾-hl56m_lws4f1iLeE1Vc#oOJҦ(Oj\ۘƦMY㪝Rش?klԟ5h5fџ5"֘Yc I_^-8vǓ[۷Qg{a48j㻬h1Wc+-h\cpvl6/};Z941v7'%~e{}7kGǞKWsv}fkױ'ğVOo1<*U +q7شrjmW64n+M;>O]Yۑl3_8nHLuJb Ovrᘰ^+7%9+tـ]Sp)ѴL` j6m7[&_2{x3#" 9k}{Q+1ig7[^>cswST칛zxi;_,k//<_]?o/7lN~bnzӸAt 8wS5n.:mJL7M,ue4nbMyuqLY;c-mqon\r|C=k6GY55ļ=_Ϟc}Xک/g%fUnf.W=AͰ Bڎ0p{'I+1{'%}rr^aCn@{kL{׏_Kh]qC9l/Nl0U`n#S̾1Ǿn}B%}wcq;g>[$f}>v+y;/l#r=c-7/VbS1XИS jL{)5nh!h6cӘ sF5fc}CGX}6/v 6M?k{џ5=)s9"N?2П56B֘}}#Iy?vQn>D{'y7{=شclvk@ohlZY c4FO0LY :z~^6(oh߫iù{>{?f7@Ҙ\1f#z*l_]Gm$qֺg`X+i,q wklz9468VѸEmƱ\W8&Ԙ277|cwvY❂ _& TQ cQ7O~)^IH7mQα֗;wZƶ?9;Ʀ= ~lA}b_rl3:0jm]c>'I9ւOks9ϱ?ϑ?ϱ?ϑ?/?/?/?/?/?/?/?/?ϱ?ϑ?ϱ?ϑ?ksMdqcǓs8Qn_|b@2cQh}~bƦu\{]&{ځ (^MNXp dĦu #M׭7bи|1یyr20?kms3Us,d8g" ~aacoDWqmjlAX u3Jl{[w04׸1یNc+̱sanߢ}[9l?Ysm?oڟG7sMsMsʟz0 `+s?}}#IЎ {Oq}2}"IGx=}?:Gw łĦu\ ĦubfM>}Wo@f-|k 0LcGtcil3j{Ah}~ u Ӎ|[tt0h0߫q7 ՕĦu6k~YcӺ/hlG7 juF4fߘcyr[> Zh;X{!|R+7߱Ünf62X4Vnc&pOI+q,ؾM14Z 9ŠƦu틱qC 9Gcs\Wc56ܮ1FF蓤k'؟ȟ؟ȟ؟ȟ؟ȟ؟ȟ؟ȟ؟ȟ؟ȟ؟ȟ؟ȟПQ?&p|qBbg+udYۻ^}56g+M qß5nh!4f1~5¼1+77|=X ` Ac)SO xhM՘PtF,߇M?+OO_v_,ҋcΖ/;_9N?=__]̄`װqln1iMם5y[oo{R?%[&iUY;n-¦l8-ok^6WϿΥ_uUan}Cbzsxdtו ^{>zu]8&_c:? ak^)XmXmrޣ |p9yj=$;cI?oOVb:6KLql1y@x~|׼Rt-7ޟ6ǘii^)Pc~cyj oo@,x[cDsvYbR _[XRXROXWz[omr])pֺ\ĬC؎w$``:N9G}~`gj^h1-(6٬1=MuiͺViZA ZYK;ڵޢzZ9GMޯ\A0˕x~~gƄXwkxRc+*W=AsINOANOF>w*lOSa,XTczƋƢ7WSFXTc+jm:77V+5i$hap6KSXtg? h`q,}DWc?ƚ?M4}8~Ai]`>lWokiIM0, )'wyl#Y~5GTn;U %9gs=1;dn^m ۓ:f|974'\C`70Xq, p1ooW'A띝lx "1WXSu;I3ј͎3FV]il]ר5ڗ)L:ACBƂq156k_}Z9͘41v77B$mG[<٢9Ζb9[9E<jm4;i'OfӉkJL'fy՛d4~d{8uqt?P>Ɖ7ޟ6GoM+u0v ;iolo@,xbDsvYb:c4ϱp3XWc:/jƯ1r%f-~v~֟&-`(aҺ݁~̀;1 a<~~b/BFCQk]N>|tQ~x?Nqݘ+s\.74溢r%ޣlOGz ŌFimvGɸ}%6m}Rb{ >BcM[O -l3U4±Fk̾žs,8$hd8V'a2ch4V)9 ~s*)h1k1Ϡ1Cn0h&UI4VHZR;4VDZi=몘g /|x5)gO˗֗ʿu4759ƁWf070u[dcTnwk(vKk=Hy)L7VbZs$5O4VVkel2[6WjӪ soVbIYc)$%nscƴ=Kmi!0~5f)$f\}F6ү˓|ZuKV>a 9>`ZcĴ6KLk2w4:kLk95.7ޟGm\ֺpy]`^>2Ck]¼.܇~'IAhļ. >º0gXo)#ztjQu`r7ǣ߫1iU|о?NCNc[CJLk m, 56mQ;^JYd3g(?kLmDNcЇ1'Q뜝mx :% wXWSԗM .W=Ack`e`ј172\}6!>hlpukhlp1ݴJ}Ʀ 86hТ_mE}TWԇjLmD5&dmqRq41ȨMc0Is8Iksq.xql9)xH[N9hq4&-;s 8q)hc8شo,јa9YۇsMq46m8Ѹ1LYc+SQӘ|ba75;;<sd9x6ow{>hLZ,m2%{]cR槿?C_'_+QH7 dW$jAI6ׁ32Qx`Gs&VzQhjXApC(|xfk%\CGvnI11گyyZ+̟56]<_aWJL6FaW+9^&:ޥ#7V7 s`xZuR 9yQUx~G~od3|=NZI[}oT>TRz/j lJEKqZE|̻-``1nා36_#%/8s_!R!ۻ Ԕ!}r.YkSȳ6klоЯW1wk. +9z%!)g)IQF~S>W4򛢦|BM> AhZVQPaYlr_ GC0Xc>'Ixnh{JAm6 ƪt#?(zm z\{wM[nDƬ]c{wqnCz+ZN,1bS0D@fwY}}Uףϰ'3R1՗77o ;-d^b6Bb n.b=W2h=$mrˌS8yXŒ^S2݃_Qkq U4jj4ɯz.Irt>~KK)uaYIMش.E`?1kљ4f՘a?1OxPcŃ3v >lJeܠf {hW2}:4*J vR1rs; Vc{ۏ8 46s ?M^cbјm41'WI8K ~FESхoo tILƶ+c`ڏ56mXcXc+cI؏=5<{{ Tqq|sE~g1KhX}Rc^%׊JgVHkf;zױsCʹ/$VvL;HKlRQr$+q=~Xjck#{mвd8 ovYjPt~~g`l:҅M{AH)N?wv yӔvRQ B*J;AԿY RQUqopr6-v*r8JJ[MY[Vj(֔Z%#;!2Z )x_)>T>M*c%5aۇ˚!pȇ{>z?|:v*~J?՟/$&TUR*j kԔ=^enOlIIDR3TC5%VL-)yBzB}Xћ9[IrVRSF~+3m 6~MߦoSI[IUo%%OBOl?zZIᦌ'|R*z rT]$H=[L>)15XQTjr*%OH'@r}^}t8c;.P ӵEIIe>R,<\ mlrs W$5eCTt~3u PM`.V"$2݃_ Mn6 OnOI39𹺥6LUԔ=$ `0$R^0+_ JJ )>BiV{d1h0RU\Hnי_ØW\H~-?%}P eCTUF5s6=񒚲i2I[4Fl")YLR!̚R`f] 2RBݴ.h| Fþ췒2[I3DEjVRj%Xm݅y*~h<$)_Be*z݃s>P*j7=$Y)=ЍTiYARvxljXQTjr*%OH'@r}ƚG8z[a {e,V߹(P洽Ɵrj1Yywіt -DZ䧿Ǐo'"WuY=,yׁ 4+i45ewhk)cX)-?6X^JAߪ_N/SQS.gZEYLEk7N>M09$ߺ55j*G;2EOi_X=Ut8::#͹.e KQ,w?0S^1>n{BIjg_K)hX+)mF|*y%0ᶇSQVb|*r|*5( { e5ǓGty,yKw W;ss8)kiJ9{X;IG[<>-}Z{A?~˟LJr'kb.a2khrs|gCH*sV1ϻSy7;XY3.SQ+s祩iY9b[3t0L\5%e7ah-Hb Jž(z+!ӎ,ЊfE]$٩7{7Ѯ5AoVf#[AXYfqKs8J|,= ,a\YSA叴uG1q}ĸy,P|*jʹ% B(+1>%k)>TZ<^Q2E@)y:V_Y;?#[_)|ڵt |GkNI2=_iW))c;%45|ŝrr1|mRPTՏkS+kO6a5eb6M(V$JAuO)Ѩ!EM9T9ZErEQާ(Z(G*يA8 ܸ2g\{y4+\;3_uqRЬ4 k5!kaY-8ödMM}/MYĚ tɚb -0 [e=a"OXʿJAZEwԸV[uucVm=ڳٶw0?4+]IjUi))ҔQS! r?bs4gymd0EQ~^BJIMg%ź%sad- Z4|+ߞs('Lch`t^ާhV.Kݡ%%lPeRk=AQlEPlK.zqm缣1ywUy9X4+y⮩)[JA~9V}ɘ`ף_55b=Cr7%kaףTCQSj؝)yДǣGh8ޕ<مyznذVQSNO56RQS}4UԔρF*Zn{f0EYwiJb|Jj/Erd-)gKJǨ=-ݻXY)6Ze~/)m:G믎2Zu_W̷2vߍl%+P >h|Zk(ņ) + SVQާ()WG.Z%]_w뽋_wp^g;iC旎?w_w짔˽NjK?{ں|ɟ=;.MMu;=$#\P*jNlY,΃L)7ԔϹa?҇d-єjkJ;5%OXBOX'8ZBJh; m3TY+)2ferB{JjmhJJ8{)Y))e0EUU|mMJErx hX)إRԔuVQ }R +X>Vq,VB|nϹۮn*tIPRy,MҬ2/Ԕc5ӔkJpӧTC(jA2&r CKЇPYgqOMnԔciJ'򚒵O5ћ{GkkRx,VzM/))*.̷B>ϙ[*sze*je>s{סr3\?'ZH94)#",9P*j,*gI0ԔuèFSRb_&)Y 7MGZe[<z*PZEr>ү5jHQSiF(JJEZ>E݃4د*Jϯ|=ARRRs.t|*G*PUkkTVs{!̩kk=t%!*SQR6Lo|xzΑ7򹄍=^R0$5e)fdof0I0kJJ2B>$iVh@k5sgQ5ewhEII(YKާ(y{5F^BJEsv4шlEM; \`*j>wK+ܚrMLRVꇤd-|=ДjbEQjOEht}+HJJlOIwrۓިŧoOoyIQCfe^<*ƖRP{meҵ5xYirpLRSF{*J|CQ3TC5%VL-)yzk ΧZEw#Xck쥝{i`/Sv N^)K;{i`/Sv N^)K;{i`/m Ҧ`/m Ҧ`/m Ҧ`/m Ҧ`/m Ҧ`/m Ҧ`/m N^)K;{ip/쥝½Sv N^)K;{ip/쥝½Sv N)K)S6{iS6{iS6{iS6{iS6{iS6{iS6{ip/쥝½Sv N^)K;{iS6{iS6{iS6{iS6{iS6{iS6{ip/쥝½Sv N^鯲 m|T]xLpjlGkz(I=嚇p4+?.SRTֿ(3IY3WɚpU)DdM;y污TԔυ kŵ ֐|zF(JQeHUa 9>TUV|d:+zʺ=2en~iV#\_խ}=8X uJA1 4+RS}ۺ$(k"[Rl[I3qqP?y@}Ɨ./??W>8u C.ÛG0e/pP}M;-MK-E;6+lqczw=Cv~\ =B6 pC/0 n .0\1` r!쓬UcmVx +r6#ٛ6/*=xɿw Om>͐A.W*h"qy'@1{!_H+{1U)~ϘF@I. b% ^}m6ze¦=\z\,B pC xiTڨS & IL> LаY /4s-nuͨ1)~'( zɳ i.g7nfM[ڈ_v/ůEKnį -Ưd3ǯTWSq,HL1(1dC0Bfw 2ߩzs XcHk'-URQ\W gmFr\M[wV E:YbV56WuL`6͜7$.nͬ-O57,-QԗePn ʋYGkR@Zy{mYp6e=K+ټې0)ép^ihk.u5oS=#gOvcf'F=;H6;~kQlϭ=R6Wش|hWM&6H%y֭ME{gԥشн1WdZlRzVs7^f_t[6Wj6ZWZZN*][G.;9Nލ~f_U<0y2yW X0op شy sG m݀ ҽ|д+A8.6es0ꭣ˗NT/U$.qzYk"1ki"1Lc8*mĹ]a *6 0"Y m vJ6K\G?oCoH\JlqqYaXT}Jɾm+7_(_I6vfu h!1ki!1L h 1kn7kdtƐO6 &O6xiigStKpf ssf-Q|E*'\C;*}PE}onF=KZ1{P(<[c;i.1KnV }-F]9i%6EYZE'OF$1ki-1یs]Q_&qVҾuRL77`L|0)Fhhf ' r5؟zD9Gb.E;W; G?C7+l8y W Vi.Z7$.ںTit:9X>fm<>7o8E['$.6׍ϿWad9 2k6 P*\nFuiHaֲOΑO$ł\W svb5>۬pupCsXh2^'=<ǹnrs$.X[+iTfvj_YlsrbAAcsY-h]e΋穑Fh#I6A=5$f-%fiYb+I8f`mcӑyuwJ9+5>k6mG>)q=j>TbRސmzVWbnV@"y\UW 7؇JmD}2G>YCϠWbXO׵bAa],qѺl3g؟68R}s0NG6>vI[9(wS4tE{ Γ hT 1^ZZ|:%۬p <܈#MkrGHbHb+IwjIMg?K yyHfMupm0k7f'XPۈcP= Тrx7AwN:L~%is 6ߑv^I4' >)q|^IYK>)1L>)1FW o4|Rl7nM6Ǟs[-GҪgvok$f-$f9UhƦiԕ -̭46¹|:;U9%kXO`/Ʀ͋Mr )emc?k;AA.OrܚKj\yKD*G?#-5\.7.Z8$.zLHJbRm|%1Ǿ;5E+}6Om,~~'B+2j#YK!1L>)1łFޣ={!}|Gm: 9;]d鹘Ƣ׽=оr 846|q=+lE8ݩ]"\ >6q42׳l3kf9.rc3Y4fiMFb+߮1knAM72F6ͦIIc)ý͖dEK fI۰9!~'k`"isij.ah{C7xm|c6JyބNWbaw*\16ĦF#I\LbҘPbƢs]Q$1oV᝜m\؞Zp;iԇ}Caֲo(6o(uըgwjn_vBشy JѸh9Ju%qKm$1k7$f'%溢Xۈ{(QȾ0s^7s*luW mZy M0i{nX+M\W 1ȕ56m^ܒg.ƥwuy>)imqɩUl܀bP ܾ s]q)mh_wj|YuΎu%qCs:h'Bs¦,qц+6_Il1_IZ%f)OJu>9+ S0Zwr:9gqݸ8rN :6 K'.6]uA,ł{Iq /wupo^m]ׂ?n|CbӺ k6mdqƸ;}?>F)\b2qi&@\ E1KSS̻MR1_ilڼ\tA*lZؾS}qMR!5.cs_f}f1K̿ǢmݱLcJb_(~%6Zٯf`mc!1DZX&u Ӱ՝a֘}=\}gaLAuUشy@q6ʟy$'$*WaӺ$Zpv֜]㢭0'%f-G s]q)mڨ6+\y{RF4:?|cvsE+å 4(Y᢭WbR=>7an6>ʕش% {%.:S=Klw sĦ͋+R ͔%.ct_EYbff s]>dH+q#0Oڞ1wko Mk|>Uh\!q[u 6o/Ĭl3$WۈUx'#m8!mui~A o7mVشCXUTVRWǠԇY`gI۫&9`ޗ`J\9_ݗ7`JlTwWbQWs]q)S#o(lZHp\ B6+l(W=As\ַ] \4E*lZѝڨ\Fvp qs:y'Ƭؗm#1:8f`;9ۜw`__-u#VusIM44&mzVWan#֮_7f7nRyF4^Sݧ_9ȹknG,iدȯV7(\'qц9VbRnm>Eb+k7xFsUxgE7<,q<Ը,1ͯMq=OUcoٯ$.Zyiu-o=ؗ/kz*n|p[4w"1M]GX4uGcXT㢍MGcQY1یyCc+nAEXqIEE5nh!im.u.7o"ObHpѺugm VF  s]O*m4>ۼo[o7 s?$5RKR]I\G$6m=EulVhkǡTCノ buijrh}R XƜ#1kf} MA#VlhՕ -('=d.ZsiZPܠHaӎѷr6S x{i\06SK\n3)ƾĬŽ= s]Xp#(z;ԳhIi}&E: -2o(Z\Ԙm>~ucd s]_)\(5IaJ 4nh)?+6s @ep]4kf G}[8c}"8شCibŠE1%f-l3׳\WԾs6Xۄ7fupCFsN8`]Cu%fV(KZuMc+ wj)OX`>^NSSqոhGKl#YK!1>9P QVQ k29о$ža{N5\3|-}6'h>@[uP67(E뜎mشu?PFZK]}<٬p15ԳlÐsR޴{@N⢭Hbچ2*\lִY̓Ĭz-Xr lx*\u6|68 mNH#mP܏`_&1km[b+I($fhh&l؜=wuB).MIis'\F>pѦm$f- fg}6b;5;6]\W 78ۈts^߰ur]9y#o 햹fPhk%'PYu OqFb*\Ǡy,c_bN1%f-Gʹ*1ĥAk.ces*NC - f#86bls!jTnq>ΙbA= ܜI\8VbxC+67G6αWu}ʷڅsIfn_f+MO0k[l3X8*mDZ5cdp9"mIM;(#M1E{so<٬pF/Ҧ0kmOsߵ#y/Ϳ/~?\Eߟ_*/:B{ڏ˯^(}gR?c^=Y+_*_({c/_)7hrw߽=eGQ+zZxN\,i\S,y$k+ܥh+x7{).M]ZMK ]] bl+ L67 ͵QV1y:yif:{Z |+j\auFU 5數{ux[-iE;Vi iojƂY{56w/Mmn;S9fz0J8rp8Ulh6>SW}v~Ӓ}̗V-imV`n}0\Jf#W Tڨ o4 O̓_ZSrQ~S5HisS*\k5U߫i'5q v|TcAccPc+}(hL*>61=Gm )?G+}u6W¦KǂE;tϋ ۬03Ǒx?Z}7?_pN:9K+pdC:w9K+96}xb 3m߫i(*\.0%.K4_и<)1|L@-+us K| Uش khP$qCNbTW$6jh&h؜8^/WQ,԰QjNc=2u>UnM'\{>{CTb|%i m$.ںӠE=_9IZ}f%8ڈh)!#9k؜O\_w7<)qIFvjjش ީ+zوAVa |籊ĬŵMf3HuEcXp#`msnk=x$.Z76ܗBpf)%.#KQIlELN̏FK جUhs򾞖k (o9lnh&~pѺΙJaRK6SKuE+1knOFߞ^xشV͍p? ߐh$z]Y:Mk|uu4c_bj#9o4 t m|u}(s)^Wu)wU ThN9 $'f-l3TWUڨWZSԇ:cS \/_rk}E[/2O*l6,qaI\a/q1}O9orkȾ )乞Xh]_)lZ j_YuAFڭA?K\*lzҰYa.a$qˆͮ'es>jh`|lnđ¦$YKgf?KuEc`Xp#p<׭gX5YشVaڂy 6E{IαK8V4Vm,1ǾFs$&hh6o9+ 9<ד6+q +p톋XWb+_ri)m=.׳\{\yl~C%.ڰߗشcKlxFu}+vX ml.iߗK6S/1sv }pv%9%.ZR)LF쯮ۀXp }Ru.(\Mk=B͑Au1B!qa[4ly݀߰ՕuF m Pg3ǑE7ƑĬ\'1LNb+WsVF,`*cgkMոhFE{ Fy<)AɱSٺyx6TZ6#v/x8Ҹl3 Ԙ cPFyu>i*lZ{^M1N} -e/hLuEF lsI ǑĦUhD1(imu>eKk2mWs JZIf\јѾ S_IL*5l|]|4nLt Cub_bӖ31lEs& E?<^ϥ5Y`gɡTϛ(~.tߠ֊_p*Z_f_m!i`c674lhҿW mdF|Cb|Rb+xڲ'm-¦I9(OZuTW p-qCK0Lcoh,qi:VcowrAZ%&9GaFSڨU|mmKϾ8Rش6bE߷UbPa.n2A10k7&0U}6jh\hm$Օ -_imD9gχ 4{;TWc~ƟJ _ 0$nuEm y3zmѱOJlN4"\ 4HagKq_hBMmi'v |c>_WU?K\}w#$f-dsïjF ;6~f˄upCYbn#ǯ=u+Nzʀ> v O<)1^Fdm\Ru/HZK6SH;Oł f+rF)Z fI0Qܵ_/ pZgPܗrQ*\U4JᬵZE:+=EviڋwK6$6PVaN7f5>mW6~"#-͓7Y᢭ ׳¬z^=WM[[ܾ 6oF+qѺ %f-׳ds}jFxg%6m\_O%r]I_bn#/y}S7rZ<׸~P K4\h]"$msp%pѺA+mX|~+S'_~SWFx}{Z>UTkro~B4<j_J?Il륉?Ӻ=/okyW]p] D׶O遍kk\m_NZ)oZj\┆:ri6ݙt~Ce.@; 8z]tinhzѥ}0-o64m01l.kmUXp#0%kF*L7 ߉|Cb7<赩}0<麬esȯ$.mE[O+wr Z~Uᆖl3:8*mZ7fS,8qYY٬ټE֍ZzcUs=n'׃s{uF 'D_O6h|O~2͍<5<1kٯfٯBИۈ lEb:YupC }F/ sF{ eɆ?+\ƘZg5F,(\؞׫O_j^j|? a̠1k՘m|0FG oVaIOukW?7 sIM[Y}RbDZs]QΑQ$VCDyo7c5q(%nh1K67Y`+#X0ۼVOvpF򄁽Z˳Uټ(_#M; MAAz; |CbYa+j_X;~@]GupC}Fs9X}a.~DupVϣ7HaӺZMfM+YKv8gs^)%.p"I̿KN x"x+qy-bnnҷ-E:H,qѺH#s-a߽E-[۷1HLsgl ¦gSڵmo5LLP`ސW F s]o(mZI ۳{TW70fИ cd_ĺعEq#'WxRA-Ƭl3s$b (8f dX?I>'65.zG>)i #IZ\ s]q*mZwjw|mv>+Z#ImDcѭmo,Ʀ]c^#ǎQYsl3~ӘHFﴯiP"qCKj`Aep/z4k(h4=~kشڵh\u8Α|ބ1(1k'}`s`OToJb hMf(yH~%q aß%.6s-mq-zFXΉ\oH\+[6|RbNO"ZK]}rgUFgfџ]bg\ZCش.p lmǯ\8DŽ}Ccӆ:6u m=ט\卾h& {k\2%ƺE[ i Y X^kM['†VaD6u#Zm$pYtͺO09E[Op1kqή1ی\W sqP} sͽ='}r,:gieĦ'f]Il~6h;ףymn@OJZfA(%6#1k&l؜W=MsM.:HE[=qI ۛ}36Mld*\ݏ s=S9_0|c\E;;E wԗI\}R͋ף 6m(Eq4\G go8 `/cZbAbnɯ.ڴ> g C?K\J\XaHbols{'ױQ,H6vWf#Ns$f-%fi,1%6bXfW4>0OZ:F >Uo(\u?>0^ϧVa+%BY;}GƦuHar]|0dԧF ;5>,qNu%qC+1+۲uȯ$s,(\bkA}6wce>}O߿OuxfGicc?%_O՗~to?_?O_O?'nKO_~͗쥢?~^{%+^^=ü[<4?7Z .liӴ]}ʽa,A,wgj\ǠD0mV/E;0罴6omVWy#ϵaes{cwb1섲K+0Zʨ7. Yс斶ltt\ a s]a jmZptjk^,I}NxM$%IMͮp.˳ߵشr{#-۬pF6rQ\z!;Zl<5~%zms8@|@.J, Q"+bÒ;4^US笵߽ s7n.Xn @gvuμR<ޛf_LѲubB?RyOjexhekG wJԮM{g26k֣M+gͨel#;q`=v=l#`M ;sGHA E\ߢVCܔs]~]ۋ>ms~v0X4ξ( >{ՠUǗᮕEL-C+ EϯO-C+x>֟ZБNj3+g 8 c_9<[9,p>$A֧mk}̷Ɨh¦;Fn&yzCwg8:ݺ/Vc;lvt}zX6]J9VyYX˭sjn2B/4~EB3uEVЌq4v dJjKK.nxishJ9,[3I=(ӝ:i>3ʖN>)p8lLS;딯8\>^E GjJ.|祐OO_Zg7 )m>:% lY}T#4L5K+WW>RڕuGTڔ[sQ2ڔi2ڕu 7ߧ>P JӷHJe0; UrziS<ѮܯjOIhSv+_2ڕ0*F%TnWB6f\b)eZ%]i-]) -MkeGNRWZgiWʱڔ[k%(=t봖Qۜe2Y9{ 3)RwP J-3贖0s{VWaѮWDJw[A)jzȱ޶0P2 uy]yXy&|wƭxSl}˲k;*v~}zJB07"\(J9?Eq* Ji%r'8eۉ8ZG)ٔ¨I)X*G~hiy XRڔmo>`Qe鄜¨!ޑ!͠ʪIQڕз6ZFRzq<~fRΤNJ2MR$*Ѧ\T|k[hWhZF RP5Rh--C0¨чLk**4H¨wңq߫ÌQڕ`ܤj'PZEZWF??}-9=z5=ןBϨ'|#Ϣ>#~ǖVCSk .=BJI0}<W-9zCUhtՄzJXRҦaܽظa(r^s* iukZbrQS+UEQ ڕ-|[:v%S-b(ʻ>ZFm߶Z:CYZj;hSf2CK}hv]q bZ (X0*daZhW޷9=(*%SFn|жQj6ZKp;x+)Tڕ/BiSnamAwOGhW78e%Mj+0BU%]Zž/Ae˄!PYm z({wm_VhSD/)EOF5] =d])Qdܾ&ϻ$adKW=džEBkB)](QA%` KOcXiK?,LsӦwiGhSٙYiW7Y,zq 5S!3W8"WP2ڕr2Ӈ38EeBkn 2sSP2 fv\lRڕAiOv6*i>Lo }kVV(mJq7NREQ J;?)B1 =6J{ʴVhWnw:ў2}szѮFQP%dǛ1 =(])}3L|+x*yZb6N+<'-b)7/lk$PSbZ;3-fϤ+8*Z%K[}O[c3 FҦs{JF{va2ڕd+?D)(Zk-CS bJ@ɨ>hV綪nRε}qy&Bk) IjѮ-t6e/Ѧd6 e JM NkʶZΊD)({Z+BdF>XCk{~CRp b$=%<|m洧JGhOTeҮT6mRTG)~zFѮDe%!B2R)ž5oYSd(,ة ƳYo6e=ބҮ\Df}+e՞RPHn'C`C¨2 JFlkkWlՁҮ\mҦL5Hh6eѮLו^kUoͨP %ZOF-mu|<ZS =d(Q%h&mߡطmgyOFǞQ2ڕ$ʻ,c [J͕R!!FַW 1Vb2JQi-Z`BdF%n}]yu!xJW,)ۻ8d?Z=l F)@ղԫ{O9(?樂Ou =r-~Vry[zX9#G⤹d#B2-V) XLjϔ58R2|&])ꕥ{(T[+>A/!BL;CNJrgSN*Ѯ,Sr,SIhWnC~[ ]SIh?#j]Vt!*זy~Bvg`k%=xԎ@zΨHj- c_Цΰv8o=hW8*vƅU1j[Ϩ!eQ#4硬I|j_<+_sW5W[iW%+_YdLTHXۉߩ$UníՌ ]k5BiW. JRy8Zejy] ԶV$JmI[J%U{NƾR˷=FQk3*Q^1LQzeZ,~TsQľeaYV=z;gYg(o4n9JuǩvfTTrOJGQ[oͨ,Y-+l&=UT8qM)ZiO8J1([Jr =dg])*:JBmekl-7qZ;)=$ lJxhvXZY+Ы~sh߈MQ?ޡɨm}wzF\AƨxT2jm[˨[!FRF6zj!FQth֡k:SڕCk)jE?S JkxRj{lҫin)ʃ/Z%+e+ھ:`}v]v]ZkcJZn`~ffUWȘR҇i(S֡jRj+Rj몃Rj몃Rڕ8$fR_8K!QK>}9J[-Q{{FR҃U1j[Ϩ!eQ#4x}I[IUcA*gڗn`vx2zU?/^q1jC4NUBdLm-DlJ3j-mч/0f~fmf<)uznl֌%LR˪,*mݡ%|_)JsRh]W(=oQIii62+ Sڕ2'cM(]y),cz!JaTvRoVɨxl-ώ Y'ڗ;0OMô}=z\1x)=hW;aV=JYVfTjI [W*?% t܀7:0 ~4 4io=io=WI}M}@[xɜah\UOhV)7r1JH)M]}@%iZ/*)kTE;U  ])?,lQ )|C*x{MPIPm eٴeK?`Z6j,0JR~w"LԦ&($w'AMPP.qG)(ZgRHL2p'mPPHUw1'UQP$Q j'48 j0m: }˨MPҗg老+՚m^Vu3Ӯ&>lz{7'oUOywG)(v:zh(}ZKa vTE!F{LB)$sZK(Zzf0*0}@S5)R}4PP4Pc*,RHO)Z&9؄SHvKM洑14Q ZkBYPI($Ak8!FAi Zrj@lJ!QH\kJA!sWX$s JBkZ&ڹQkdlZ(-j(O 6(*N&ZF`B,cFf6`}*]&@ QJgWTzQphW8IvSHY(hRPȘRh0(DYM)$3 `C4P_Qif~fmf<)it >RpJF! m JRiWJAi ZP =d")\;?) Sj!&VIMoB)*Z ,/}`0* '6 CkyvITifT隰R SSj@AYw\w2ڕ=o)JrJԬPc>l*>JSS =dWJaTDX)}Be22j蝷:e,QP1 '>Y( lFdkjRƷ5ouQ~Lk^л}AjN۷uB+ŽT[ևg-ΝnP#q-[8C6]pwm63ƨֹd'Xc]cXSzflwz(x jrmj>Cwcy`u^':Μ|['E=ZeY_\9/ԨlG~PJϤ+{qw/u~8ֶw>%6Cw8t]I˨e:Z.}[JGe[;CR+u{R;m}ګe _&-tΦcw˼]{X4v!]ۮ;{2c_9o>9o>m8o>M:o>\p|Jf5ɜ7擯r : ⊮`d1Q|$y){9bl3+a#~ࣖ᡽ͼ63<"D}0D1Z h c_\`MgD31[XSܚ߀#Zq3^m9>m;}ELct|;Hv3mƈa+1ˆa ."vaQ(e"Q]bs+t?Zӗ_nۭ=׿t/ulmޠ)(d){-RsWr(;Y`zSӦlu럽~jSӮl6KGSI(*-w*oj[[ym`k%=tY}d!IԖu#Hj-AZBd}"~':d*n7ݷͿTCeZrgn)|&MYUN;=?9~p' ~#{7/w3+ls02 V~zZmΩfmEy mߢ`.wGy ;(/Xa}`m_0 V؎>Q^6+lm2lfm^x^ ,yD9 \WgRlslC[WrWdQ^Ž6 VۼEy c_sW; >`9=`uu|6Q^6p*Q^Ž6 Vضٙ۾rvE15Q^Gyh"/س+~CZ2l=2"k3V9H-3%K:,*J*mK*}F!,-y4¶ܧs(eF[_QMFUFQ6aiT4* 5{X}iQ6DiTϮDRQcF+Q񹢼fAQͲ\4*h?zI>/ڌw0p8/1YaNtL|WKZ63<.Y:C_i_v2mƯ c_uqm8_ Ft\63I_׫gu}+RH|0v\9@ 9H s`mfؾ8⡝K܍ ;Zg" b+r0~eméH0ڤ%L2͘+疼tµZ6oR<{&gp WpaG ;\ cqa+bȩI0چ~N՜}Duw y9lu/cU}St  ]=>N˻(du 6|]́dХ*T]i¦K3Aa7 5&(4e~ qf]B31Q:]C;|該ͺľ-;dZ\)Z8O"&lO4]r_YP*j)>sv7u)*)J9fH8mY1VN*؞w* zmPj[k]Ԏu>XҮә6v_Ȍ=DiWhGRKԶRC`>8ƳHӣr0~y)PUe2J6nQ*mfhpԜ>LmmLžMJMd{Ω!QAK`Z*Ȇ\YKX da*x0J3sy;+Y8'a2 JXovB;mSygi_AiW+6k6+ŭ~s1Ҧ7&;P}*e2<3`M~foL|}T`n6 a]Q!3 :pʗ=g|Zp;0^}q]0#QV9joKz@9鯃R׭?t MMܗDiWޅ-=%rkik)ʻgI*]9_brڔ[+:l9)*u&NP6GS9'N%dsSk}PkZJfes,a2e칱QVQUTSݦl.:2ڕ{ѦlU2ڕwEv]V[Fr=`RԶ'✎cԶR2OFig)UUm v]c]yiS.w"ONQ} EBv_GޕHupצ|%yZGؔh䶙ᡕ$J8JF>QᴖvtnP}0.f+k6'd8FԶ6uFx3B;*;{{~tzѦ>oZ牱hy&d\o׍sOYyf[fY }GJsu3ۃk}<]9]Wԃ%pڔzmJFRZ&ѮfSڕ)5C6>4)(>=O:pj-Goھ'Z3wL"7ͫZ;[0 *EVc"ve^f̒ҮNVVMMJ=TG(;i-]y:=hSAgTY$ZKWK@,SliJQb$")`6 `+/9Q2ڕwZFNW}p* ;`SPz)6ѦG$qQ ]:X73.7}0Ì ۃce 3*lZA9 zmÌ ۃe 3*l$5<̨3* mNaFRxQafTl#LaFJcOaFld)vY([sM0y!P1Amj jpѪImSC垮Wۭfg(nSmF-65ڤr*656Aq H]|WBs3ZR w1?z?^.ҫ^"H< X?a1}Vw%X wm?C{[Ԅڻ?Î 3mB c_a!~q=h5 [L_]mj;Iy5BX%΅M [_p8V gxj>2c+9 amcm./֎;9fLzq67Ǩe/j@ʿ+V}1xh3]-];{K^Z5v.Pܵ0gR<͉/Ŏ(ƾK1v6jlڕ4ۤ*c63If䢑E#袑_4FR|H.IE#)h$袑_4FR|H.IE#)h$袑_4Fr|H.E#9h$袑_4Fr|H.E#)h$袑_4Fr|H.E#9h$袑_4FR|H.IE#)h$袑_4FR|H.IE#)h$袑_4Fr|H.E#9h$袑_4Fr|H.E#9h$袑_4Fr|H.E#9h$袑_4FR|H / / 9h$GV_amJ3ã}7( 0~/ڤO ]r`{?MK8ᦎOo?ծز폕mzm }:V?Si??Ԫ5?Wy}ua^})]2Oï]¤˲ݽn>tkWG,3/ezjZSFZ^7>@omN[PRޗY|GۉKYj~ŖR;t@imO'aLiI[tl_t[Kq|`.`t8vEu[u&)Fq`lq`+8FSMO˰}" -I/w ׶+`"TM?^饽a ﰥKέ5k,ˤ#sں*Õ4꘾02]p'ЦQ|ckԶ&U܆㮝9ܲkq 1m3C{+=H]ݾbkn1<-=h~xhӵܾMжueouQ*wיt- 1ܵK\6S7-ž|;ŰmPhos&u&W c_M1j^Qfls1-Ye@r6Zq.@)98~S'QcacUYN&l,UƚT _ogU9f)F-$?Q QܵrQÏ!QH~IHO?ӡ<8$IQH$E!IC$)IRqHF!$kqHF!$kqHF!$kqHڤK%hs5znF\CM2 ԱIPp%pɟ~CY^;\#wp5rK.;\"wp%rK.;\"w0IG<DZ`1"4ǞPdu:Zi3:ohLfg1<>ϊŽm0mh阿dP3qit,ұK-Kt,ұK-st1K-st1K-st1K-I&︇)rSVQaX:<-t8v0y3 C_960j{c{c_916)_g-㴙aX*m_@ڮ2 t c7D(G;J"C{g߹ZGN}絙᡽ݼb{c0j1oal3-6^(o_a|na2"hxag<0-[ žb};ømlml\I('A`+Le(Ù62`m \63s0~2G~2~2G~zcS[&lXLU>L4d*RbBHB]+a0rGqʸ2Lǖ ;g: S>W\ _q3%:Q3%:Q3%:Q3%:Q3%:Q>v#Gg:HV@+-+M,ޞ%VN;-ujZYpY3Ǣ* mߴ29/,W( Dqתf`Yw:hEʃffVC{ٲRpTY֧%M/駅SsܵaImV n 8ZimB]ۍ_ټl 8lB0Fl)s vhpUxMRܵkh(<ۜ0V xhDQkOpm C_M6c#I6<"a;6 ZUЊZN_1Ys;?|jVYsm9;o[{uѷ=ֽGߺ[}o{9=MM͵}}͵vAOw~rܵ{q.SF;wYpmWmq}e^1Fh/w䦮R4_p9Z9DVb1j]cU[c_٫81B"T?ŶamRwlj&638*IVnLf'-r &63Ɲ98aQH!$kQH!$K,QH!$K,QH!$K,QH!$K6hՙp򌃳tDϭ=Ȟ &W${_qg iw8;|Kg:u͡p%rK.;\"w8p9rsα;#w8p9rsCtbE0Di=3<ܡt fMiq 7y3$њ3CypתCh c")Z:/Y:޻N{}{i/st1GK/st1GK/StL1EK/StL1EK/StL1EK/MNqS0 :% KcW 6sc+&Fq`lq`+8F9\&ա '!v63 K/w:ܨ`IUr޺|T}]M Ǩ]Lh7kU,\I$Y⮕wᡍr9Z}]+1bxhE]σ_Ⱦ[V%D(V&B%[㡅dd%k\e6Uxhm#Qk96\Pڢ-4ys9/1QK0F90saF}0v#qMA"؈ѹZcQ W>8Fٜm.m \63s0~2G~2~2G~x#g:ӱcf[u )F-$?Q Qܵ/`< ]ᡕg} <}pת8F < ! C+B(DʳQܵ:ކ~؂kwAے-ű5!cm5l5ql(66BD$CӞM2ܵ[l[dbW&㡕`kfr<`ͦ Ǩ96ۂkc_قkMnMb۰6;6i"!k3C{y}ycemaԢM2mƹ0Aqp3!$˗$ߦ=5I($YdB5I($YdB5I($YdB5I($YdB5I($YdB5IbD\*A+skl5gZ$JdoHfF _Ye[?rFZ׎m, E|em+ <_P9c[~bm *glKX9Ca[9Q m (m16Sl+g@_RztK0aϯoϝ n⮕뒣ex|)@STHx|qGTUM7 )C_UHƨB&`5ڤ/5`WUٱIǦSl[dX(Z9pUkS)F-a )C_UHȱ-I9]F|EwЊx+V##V,m0ZI8r 0Fg97B$KB /C$5Ij8$QHR㐤F!IC$%IJ8$)QHR␤D!IC$%IJ8$ mʥ9=\#{Qd\c }r9rKaʺrhz;,;,;,;,;,;,;,;̱;̑;̱;̑;̱;̑;̱;̑;̱;̑;̱;̑;̱; m*2X(ͱg;O8zZi3T7C -;o;Z[߀bh3c c"-K Lxґ#GKG-9^:rtxHґ#EKG-)^:RtxHґ#EKG&w)AR!ðtxZapap P }$èu>mv>}|#(;ؤο`xq0,YmWYzIҮ 8վ6I 68F1jhkImC_} }2)FD-8 ̱̱̑̑|AQ[&l,,UƼ&|z},M.˹T!lPFA(DqyX!xh2)kH_1_63<`uz;+Oe)l-뀑e)l-K5 - ,Lk3ֲ/ZY,k5G5ǖ5G5ǖ5G5ǖ5G5ǖ5G5ȲaRR㬽YV][w/MM~ơj2Qܵt ܠ(f:Suj 63ܵݲV>q*0EJ`Y//]S[ncvwlδ0yh=؏gyf|bWl9Zy`8cDp ~%⮕_ڲ_Įzն<p 4wmxfUslVα(8ZyHҖkա_["cGkһ86)c_))mLm63w٤:k+Fq`T>Nl.]+S'{qHybV|q6Soݦwn+?[U=`tWa{W5 bŶf1^hkxkE-3-k,k-k,k-k,k-k,k-k,kemem?\- PUe - PUe - gUe - ۜb(2}̲^ ?DzvJv|e╬R5Jx]+޹h-w.ը3cxhEՊ!#E-҇p X 7姮\j)S ?Cg{zyRjMT.EեfYkdYO3-DUb*eزJdY%YV-DU>fY9,+LʑeزrdY9YV-+GcʑeYV,+}e/Yr`u?vYWgQl_6Sl_Y}c]w₩_SmmWkהkʳjbYv:f@SO\[OXS}Þkxa؏Vư+[~Lv&j7.V&}#+:Oƌ',/+?r5B+ͬ {I1`?W~"د~0KҙKpIoJީK`kvV\[sw%Q5\[w(غy.\(؏$ sE]5.ll\6LzL'w\6sc,zdVd-of>=(7bݟ-7QV/ﺬ|\>sCCCCCCCCv?fR}5fۇ!{iyi?znsPF{Jrt󎐖ϵtI_.O Y'# <2d܎+B֋1#xreD;]*m6!ZO'sgjڞЙ5OzV\OTO:T~r~h֡'^u1'~ǰ+cدu1ecAeqss~>,~A~mxvφlAܳU ٔBxrjE{vZOj5WlZ#?ggc+C=;[UOO٪޲a? )a,~rVK.'c{6Z\AAqt=K+ݘ^^ W 3Z!:?C?u?oaj50tvn~~".tO3'Y9U/{Ǖ˾ UW+1~ݘJ,T/wV?DEV/^vU976kY9tU9tQ9WV4vbTp?1d|S>kQ G)#cjx8>Źm(n?zd\7ȸnO/OOOQ-R-`[>E ʗOco=WcF-|II|NRg#Oڳ|JY/?%Ȁ_ҺILVcxrw`re?~re3'WUc[ٶ;m.ʧ}ݵ'7+l ?]/t3q[ w z7q[ ? ws%`؏ :?}aFx]lxL` _% v.dwZ+a7W~rd {n3Wcn=1h!ɤ\\at\&g5f?"\!tjQy@zD vs؃vk~0KRKRnqIJtzTTTTTTTP\pt\~qynL_2`J2`&kIo8$UJpzCLoZg2 l1p*ÓDB+&UO_hŤ(`xr_XpŘ\!xr_k'W/$su'W/$se'W/$*2! ?2a&nj'W/B6[#{n1 c.T܎ܖez􆒲L3H*'wVw켡h8*2L7UEBoEF+Na[dtEFWcF-2.=@pV gn/ȗK.Ř!l. b 칅=Usf6~쨯sٖ~8;wYwP;&:p`j75t&\ڄO.kBQZ7oz 'rSϱ+߾}oa>Ƿİ}3-7*sA&þgcZ,,֚ѸF)WȒal<%*&Y2mBaX2\ `?Ȓa*dX5 ,V^66.T&7Ucr ۷+L& >G!t}ds칑Qs`s*9 k/j7.~Ln}jҫB}Z#$l s3{eR *9~/(}߃j {~#7l]\xK[G.Ib.I.Ib.I.Ib.I.Ib.I.Ib.I.Ib.I.Ib.I.Ib.I.Ib.I.Ib.I. ɍ\}c㹍sc,dN.d?yc4X sZw) }N˝Q}F(ؾiecsl|>G}Ί`>g5f9B}Z#9#oQ}s}dsl(as^p\91#ؾuY!q(؍l?ycS{9>,|}*oQ(?D9\;C9 /{)c1LqCr`:d#jd>"fdH"҇T:>tM6)=ct2d8!FxcԍdcΐgǨ]/}H\ aKePb3*!N+nU:\HBIBh#ΐew6BD\''NLS""S""S""S""Q""Q""Q""Q""Q""Q""QIgJgRyf#٨6"">Z85]$.ޡ[."5tjD4].MKDE"tjH4].MDE"tjH4]Ig]n$%K"tj͊P{E=$Z=9EZgjQ;ZW:"Nіx؂p-oق-l7R[-Db "؂HmA$ P[-b ؂@mA P[-b L-S ڂxBծkZ҇PQ4(@ (@ݪfӆg"ԞEhjmkk#krmoYژ+ rj\Z@,F-F,F-F,F-F,F-F,F-F,F-F,F->ϔjۣ1݇`"Blr~gu$:\1üu⎵No:S:ϑuZg#ZgZg#ZgZg#ZgZgZ0D(莸3P$ZGnL(PܙQY#ZGF|9I`ҷ`vcr[ʌy5x!_\0jb5^bj<#1P7Z+ѝīyg>xօDzZ;eZwegYK:QkPg T?ZNeֲk٩Zvj-;ZNeֲk٩dיdQkDB4t^j5>:#,dvU$ ZN-eJZv3$~^]QOj5t9>5?ku @{~U4≴;<'Diiiiiiiiiiiiia=]qNj5]zGkU@c*v+c _^yi"_&4˗8&kkQnjiUfS;Q3 |1:m%1:dIbt0y]y]BS] B'|s{u>y1:ۑ}l)ft2i>R_LxmgNv`"t2'BdhWK /uu1ִͺy7ې|5Cu P' 2:vg#NuB'̍NkBnUꬃN$Z1f؝P*F5[@$uuFP }Bu_!H·^^Ro|']y|gm5zyuLO@ac}oML߲\oׅLSh:3F_q~U:֟d ?.[)4R~DgeAt2.[0:5]GB'S@*uLAԍIј? suhaskZ ,Wf֮'B[+m2M] sUV==L$k VAac+DSZd5:D'SXdDSZDd GBSZ*LaatLaaծLaaL"LaaL0~L !t2PǴnNߩO1iO1u-n-_cKb ԍ{⇨>ex۟nu:޴c^кWb΢Nܡ?['.gQ-`*&"q~STsOT>R!V eΞv~`mnct0Eݶflnct2;=?Zh_m$_ؓ}WZG 8w~=fiƯ]g0w0:yseWLfT}`T10}ހNkD4zD"DD"DD"DD"DD"DD"DD"DD"DD"DD"D>Tm#r+^,VGzC;/7u:Rpmi.wD|3 ZbyoF,Ì'NiL0r`:y& # &B'LYy&,f)F<F=0:N0r`)ϕL?~`4h:gjb:jUAe7vb׸=(WQ+׈?FAIۃsMszIhkdߔwfqC^=;^9T}3Q~I+h8*ʏ xLNfW?Z%{gH;}/w~R1 a5_؝΅9,Ţ\!L.demv Fem. F/ÏY˭ :/7~eԗ/oG.w޵N=0qT:)N`{gg0:Џ)W-@o[g2 {Ùd*d,T,Tqv2wЏ&ЍZfa!^,<~ vۗd*-59lF2 jd*d*d*3IfBhYfB BUa uQI`B2 mw3 ~ df݌.8;CLf7{&},Ұ&{,`JÚ!#Od1LaXh!:˙rOdk rY 3{)թg"t0 wLi6l.F'S* a3Ũ1u3d.FݪQ' &}nd;|G6`v|v4K dߔf7ޟ_bB! &_hB! &_hB! G $;B'Hu!EuH duD3v:9u z,?x~rˍ|] ~(q lB7@! P(tʏ6%mzˉ|9h$W7U GFƨthH<Ǩ\*r\_VraXtYȗˏ" ,lbk#a6hk#a6hk#a'aqXm3vHh; cLɁ0BMf0BM`,P:KRg0BhYKnXKnUXKN6* L~Ʋ۸ܱemnK Xv3¯0Mr 3Iڰ=0bv1:bt\1$f6RICkO{+YAiA!k t0œ>c6-@dlfΜ KYLP7f6jf5lkXIp "OxdH<_HBSDSӏ1:rw$S?ƨc6na"F 5$fU׉^@Z9x-B_\gBZ B_\Ok:>:G.CYFhD'DßxuxןL3œبDۙ?vOm'DD'DD'DD'DD'DD'DD'D>ϔ62.F~QmDnE!Z/}u~@vr5ұF#tl4AHDZHGkַNPI,n^Atd9cf:At0EJϓT2FЇGF5UV*C3yEH_,cTW@c$SS˞ɲ-5WZKЩaէg"v;B粋+!Bj5Lqzim Bh}C!gSVq:Iب$0";4H __[m_5_qaƁ}&yooxߜxE|~DO﨟sI ǜщgT;{~t_ʊOW-{A\gz򁙒3=yȝ. QnjIZ- Q7CNq!ԭ C`tJB9#SLe:O?iE!2mgb3M9dru3u<@$3uoFBTF!QH($a2 QhBF!Q(ĵQ(;|ҷJGwiÞerJD z]-STɟ]j64BgAgF]n![oN$0/4DU8S=]:olug=@&Ey /){d3*RYY^!'BsZ{pXwӯ~9,uL0Fku3T !aݕE蔡,P芉P'nu{BMŪ 1$ ԍIBotU.;wPwPwPwP 5RyAʗN~5h/j@M+ T5}:!Ry$ t0Eb̂L90 3O?0 y~M}Lt:!B=>Bmjg(U vURj%!& L0}*dy7L%:Q4iu53L1FxDZ/d#_\,S$.FȧK!ǑUAqZ.$nNjg2U;i"~:![k4:''''''''"'"'"'"'"'"'"'"'"'"'"'"'"'yy)ug6m#r+R҇P#!W DӅ;4]xKw5]`F5]$.RMTE"th@5] .PM Tth@5] .PM T1L˭$yI[NML-B)&@)@=SkWY䌓-$n'^Flv-޲][HmA P[-b ؂ڂ؂ڂ؂ڂ؂ڂ؂ڂ؂ڂ؂&}-S7@ &@-2P] 0jgKBGFhu3huR'OP{Eyv\Ig :TWg^󈙉f-V<1Yc1cƴ=nb akLф椛ct2&ct0Ey6^y6^BS4^ B'lB}u~u~bt2&#zWdMGLLфZ D'Shd& :B-Lh:BBdhWi<:W;[{"G~[0L#Z ,Wf֮'B!*6WiJUmnsnsv"~k񪺫*Uw}Gk _Ct0E5!L7DSRy2:2^FpxjlT}?(c*̇#<͕}+xғ77o_}#.^7P*L?c*>c` z(Ct0r=!:b"t0UG}s͗ۋ6Wʛyn%q{[!~mMx|z~3|m߿mo۫<#gxTKiUcMYu)^-BGKjIY3)6-FSirQȝV__BPa*D BPa*D BH ҏ1¿Uf\ RV(D\V(+ F+M{fEah?) [IM+5L\05/P;֌̊֌̊֌®5GE y`(BMɏYQXҮ55㢰55㢰U!VVnUXQؚqQؚ \XgxV֍VS7΢5ᢰ55Ү FP&j[, k hH*ݵ`"Ȋ*Ԕ:0RVV`"+ Pa"+ P$EaFˊ*+ P*(B$lTUn_ _ gI_w̙ ~}s~cE7Hl7=sº|u &BMS5WԍVR=0RV;\VɊ*ԍU!VVnUXQXF*Ԕ<=0RV' }XfEaꙤ(BhYQXbEaV5oTN* [ve6c6a6c6a6i_(4 >o(^4FaQP|΢uEaƊ:¨7tg =0RVXQXZrcEaꙤ(BhYQXbEaVU5=p@TEa; [ּV!{mґ@QSv⢰ 5Ea (y4Utw"ԔYu5ҮǨHQX:&+ P7ZVo5AU`tD[V֍VV͐JncEaݪ(uÊ:ΖUEa}ה;[ӓx#vn&O\h?VcDNy醊nZoa?H ?:OvM5YOxߞg7q{dbn֏E㙠8m,v^l$v%h}cNb 7YCa ۮC #D _}2o mXַ[&ֵ=eۭB` ){xLN(G?n(TY>&L -[?u%] NqI>FSbV܅+l~N).~Lᨥuy-Xj=B|]NIEX7)*I-LQˆɔo*at27Sq )*7qègj nF 5Sq vUQ+ +7FD2LQɐǾ>f׉WL9$F'SI+Ĩcju50jgzZ⥯k!>|qLQt1ZNYl1CLWܪ t2Pt҇P7Z'3wB4Jz?Q?]_k4:''''''''*'*'*'*'*'*'*'*'*'*'*'*'*'yy)ug6m#r+*/VGzC;/Ai3u aPe6;&a,CX̲g63~S͜˨.J2*˨.J2*˨D/J? 2*p, ˨/"2*˨/"2*˨/"2*˨/"2*˨/"2*(&g? 2*qo2*˨H."2*mU׬jڡUM; VUUj,Ϊ*醊QcU`XcUUUЇꡖﳪ&!bU!PkVUzNJXUj: tZz+_H+C(*~$Da|9,Ggl1nquAOa11=0:с2̳с5-LтhDd-Ed-3-<[_:y :0y :0 )Z(~2:g )Z-F<[,fv]:f9QSnFUMZvI70rxS!bҏ4fmjad{2_}2o0ri.=|=`ϗϳ#KԆڟad9F6Ub7Z0c_&Ǿ|DZ/F.Wȱc_!ǾB} =rؗɱ/c_&ǾL}2=erؗɱ/c_&ǾL}L2 F.4\H0r!aBȅ3 #gF4I90r&aLș3 #gF4I90r&ad.}3 #gF4I90r&aLș3 #gF4I0r!aBȅˏȅF.,GJJJJJJJBBBBBBBBBBBBB &} #F.$\i0raJȅ # #;0r"aDȉ #'FN4H90r"aDȉ #'FN4H90r"aDȉ #'FN4H90r"aDȉ #'FN4H90r"aDȉ #'FN? #gFw˭aBȅ #F.$\n #Ä.P˸;F's]1:.̞pwNfy{Nl^/\鸠p˝|_r!ctZkg(޻@z2v +D's//ւ3^@[ r^h:5xuk~Ejw|UBt!cd d6F'}/oW7@Ix6x: >nCEݞ]%;B`qƙ:5NU% b5 ɗ/ % rIַǩWT e~_\̇`fYCtw#wh:"Fdu-oJBEY)LkrC9 8AˈdzDSK=_fL).rTb{ZAaeڤc3M7,V vUmNIh"1j%ގ#^Q&$$2$42yɸ!L&`t0Eb3riT4n@~9F1F7!PTW"clWf^5`1Z p®/lS]m_y/=DiC$y=DiC$y=Dy#!ޚICy=DICQFo#!ܚHCy=HCy=HCy=HCyd/@4!@{4!@{4!@{4!@{4!𣼇o8yDICy=DICy=DICy=DICy=DICy=DICy=DICy=D~C{H$!ѼD{H$!ѼD{H$!ѼD{H$!ѼD{H$!ѼD{H$!ѼD{H$!ѼD{H$!(a^(}+HyiyFjvFYރB==(ԍ=(#y 5^AYރBW0qރBW`"x" !Ū $$" J_"ҧ @#o 6(!pGC5!@{4!@{4!@{4!@{4!@{4!@{4!@{4!H"{4!H"{4!xGCz:~89x<d8D3vty:,?x:~:~`8Y|]Kv||KPde PdeMT6+RLQ{m)kmv@t0e5?ZN̶]i1N|5BmSMm;_#7&*Si3xp4LƦ`tLac0:-DSvjbZ?&Ȋn]uLQi|D`v"d_mN)v`vgFhMEzn0jWv)"O;dHt.YHBSDDj{o`t2弛cF'SI>tb1́n&Q;C FxDZ/d#_\,StKYyvXB'S*Z.$nNjg2U;i"}ÍډitOdOdOdOdOdOdOdO$O$O$O$O$O$O$O$O$O$O$O$O$O0Li,S2l7FVYHB҇Pw^p5]$.ޡ[."5tjD4].MKDE"tjH4].MDE"tjH4]Ig]n$%K"tju`"Ԟ(hjO1ɟjONџZbԎxіx؂p-x+/?ӻ HmA$ R[-Db "؂@mA P[-b ؂@mA P[-0 \lDl_Lyb.2Pk LZ[eVt҇PQ4(@ (@ݪfӆg"ԞEhjmLXLPw5P+?UdƎxp`gnb-!!@3H)Їh(r1:"?V̳VLъsDd8EdB39[q.Vy<:Z|1:gF򈞪 ̳ɪ `hũdDd8WL^y/fv]:f/` ԍIb7X7뮲1~ ɜxV3$P*u.Cnw6BNT'th괦!:MV:8ID:SKO nu2-?]ŪIiƌQ'}P'nuPW+T$|u声w^)//]kRj}`b&s5^D; :re#!:bn,DSq;Տ)8?C)~\Ɵd ?.} )[~\61:B-Lh:BBdhWim;Dh+;O'یavnLџS!:GCJ;/׈skLZ5}a}EpZa]TײO&MQ]]YDi=8,Ί*U_x,^3t_qÀF*)=0R\WDnjBU-+P7CBMq 5QL:fL\\wD){`Bܲ uɊ*3Iq]Ѳ u3Ċ*AbUpq]ǼTFtO euS':+P[ uLV\WnBmΊ*Ԗ문BmΊ*Ԗ문cByu:+fH문[D%!IHT>5V\I,y?\\8d ueYq]F*Ԕq]0\nx&+fUdU:XM;+P7CBݪ u:/V\׍V4+f(UT;roqBZ\⺅-nu a -[HqBR\⺅-n!u -[HqBR\⺅-n!u -n!u -[HqŠ뎷⨸.5TqE?_\8X\75\\1jʸ.5cx\X7*ohXq]F*1Yq]Ѳ u3Ċ*ԭ +PSHq]ұC*Ԕ=U4+P$ujGYq]ꬸBtV\DUV-MeiT*K+≇gkBt0E랪=xdBt2Ž-DSVtvqR!d~oF&v8At0en3 :ZYLсԏ)YQVcWrM´Eaډ0Tv"L;Ni'´Saډ0?N ± 3­0sTaZح@` Cv`AtިBdG f΍[3'_*d~@OUg+**L4]`Z)jZ,LQG̅2D'S3'L!9'LQe{ Q4)u F ]nUl"D$lT9CdHT]HBQJ_''*p':}49ˤ3@\$%@1Z`ԍ֦@͐MÁ['}HZJ>%_\ STK[yVTYB'S*La-$ 1!ԍIxfthlF',k)LQvaDdeEdB` UAdeP=*y+4y]hlFSL5v #Ct0C~m|5'_Տyo pv; ƀ_N3q >G7JMߙFY߷;S)w/nJ /F'SܔBt0=^-LlB؟4XQ=Q<] S g"t0۸D'Sʾ=yBt2ۓ'DS'{@3Mn6Q7C6Q*6Q' &})Vd|KBSD=@^NwUd*4l:CԍF!f@ԭNOF%H/.})c~L3ɔ{ŭ B'SZK' uL'}uuP7Cn!ԭ}Msݟğw(Jk7'''''''''''''''''''''9y)ug6m#r+oJ!H/}u{u+.=\UڧC}Us33u(Mws6iCJ{DS2̦#`PLN`HwUFޮAp660GkM o x<BYo*3P3PopjpBiJ4svsvsvsv*s*v*s*v*s*v*s*v*s*v*s*v*s94^'5{g) ^h3ڿotJ Æ?v4aSݥDaoR~ }fCԼ43Ct4ڧLӀn7D uvUmi Q+ "OT IKBgЇJ_''xj} T7!FmۖuLbԍֶnCԮNOm +}gʽvEdJB'S*5Pt҇P7Z'3wB4ȝH* $$.4zt$.z׭4frvK~+").46LfYW}n>+ߐLy>dȡQ˙3ntǧP:bDl?Ib6 z<ϤONYޏzn27a(w9/.(}X_VS]pPZuZquCIu2 .PS]FUch!j˸^z ^;~ ^ ~kuugj/5Wy|`5B꺳 5oQ#5BhkpbVWJ>Vɐ82-B:>q4<0R]F^KYu1%.PdeF˪(.P*>\];eE !z-UA(:&.OUqUqL;.v64Fv?o.S;TXuǔ2٨6"q!}:2N2u'e2ueΪ(1Yu2.2.2.2.2.2.2UA.s5.PS]Hu2F(TQ28cVL2"kYBMŪ VhuT~R]P];Ԏx*ؓ.~Sиg:&Z;$gFS>*)Yy``j< Jh!:ɉԭ'{[ǰ=}:C+']JԘ-̈́7>ٶd &C )d? -̤JuD=Ӵ¨d20jW%ٖc`KaA$ɔyVd捗>f׉ l[At2ۆZL%DӶVmQ;C6]/}H\ aKel?ZN03ɔ{ŭ B'SXK/ uL'}uuP;C~!Ԯ}MsݟğwWW@4zD!DD!DD!DD!DD&DD&DD&DD&DD&DD&D>ϔ62.F~QmDn/}u:IByiKu,nǠ$|Dgǁ εY{{L:Q:`чOARbt2@FSLN(^y3Ū t2@quT?aN(>0$dӁY+~2:gx`@b30!NځvUE1F[SU'\)+D$ fm\d1~S&;FIf#S!{SSlja`|c5Ʉd@-DSEzOEz/vQ*/JW/Ҙ^qTY#&+a$E0:Fb"0Wq-#3{쫸[vUlZI%c0 dFFNc0:F'7¨caxlGzl1U׉BG}gF';dGLRW=2q9 W>w6}5uO|ڕitO4O4O4O4O4O4O4OTOTOTOTOTOTOTOTOTOTOTOTOTO0L\I2l7FUG¨Ց^p$w^ #w\@cCad2)Yý02D,!AR wd@q` {&B'Sh:"Pg)~U:"Pm)I!:"Pm`)!:"P`t0e؏)~:jUAc02DhuM\?Fl>F鐮ƬMddߔavG9}poF>~{ժiY¡ast=z1&"&ldf^dEdcȏN7Sժ./}ԘϠ˲&L1ծ kT/hD%-hoFzK4[hDIo{KzK[{K4\ hDý%-pozK4[ hDý%-pozK4[ hDý%-oDc%-Xo{K4[hDc%-Xo{K4[hDc%-Xo{Kp9ý%-pozK4[ hDý%-pozK4[ hDý%OzK4[[[U3{K4[hDc%-Xo{K4[hDc%-Xo{K4[`rzK4[ hDý%-pozK4[D#% %ڽ%hoFzK4[hD%-hoFzK4[hD%-hoFzK4[G7[hD#%-HoF{K4[hD#%-HoF{K4[hD#%>[hD#%-HoF{K4[hD#%-HoF{K4[D#%%ڭ%-hoFzK4[B# L.42B# L.42B# L.4O.4"ab ϖ0a$H8X #Fb1c0"aDÈ8Y #Fd1c0"aDÈ8Y Yd/4HB# /4HB# /4"ЈB# /4"ЈB# /4"ЈB# /4E|مF]hD|مF]hD|مF]hD|؅F]h$|~r3np­(i D D D D D D D              9 B# .4ЈB# .4"B# D.4  DBʙ^hdrF&^hdrF&^h$rF"^h$rF"^h$rF"^h0K4ɅF\hdzɅF\h$zȅF\h$zȅF\h$zȅF\h$zȅD.4HB# D.4HB# D.4HB# D.42B# L.4.4"Јw\h[/4HB# D/4HV 7_hV @5[pW5FM+wQӊ ՊFFJ7P?HC5tɃW%qLRCu5c bFMd`IJ'7f7p+hU&{1C]j_XC^H~a0֊I{ށQ;Cbp=hD%Dßb0 FSQQQRRRRRRRI_eQ QmDn+ZYY+'}?y -MZ1~g+q+Y+q+Y+q+Y+q+Y+q+Y+q+b53Pӊa*5ZgZǭZgZǭZgZǭZgċ*Y+&@M+hj,fbU꘬CC?i*n ZCk=V 7eZ0r/U$ ;))Ň%dXY )n̠^\ #w ޱ|}:H0Lb sdJ/dJ@)߯&s샨gcDh9AP0>U Q' &}_&y YϖJ_'ҧ s A4i͒ A1 Bԍ6%D $['}HPhB!Fg_tEd0!N+nU:Z:I@c:Cxr nUFh_յ0r#F/n2He'''''''''''''''''9:]^y[@~QmDnUIB҇PwkadU$pC!Z2Q>ț:tu0Y J`WLvG8i9ұ.B~c˨.%|G:]<XY^^tF:v˕|^1tgF1Z,L}F;=F!sBw]saeNh1:2'ԍ`~/p,꒖eJ/X ff#0:u!:u :4u :,^a]szq!Fk]s9DݪXN6* L|=XHnp^ :܃ B@;Dw`%Bx FkJu3dYuH>+}z7* ϣ/.}da 7ZN,fbU:̅:>:G!Vl>ODO;PډhDDDDDDDDDDDDDDDDDDDDD *}>DVׯcLsQ#AC}o il꺚Ow]M"sCIRdmv]Ec'Bf<)=9a}L:"'t>ْr xm;] YT PΎ)1f S;0[sٳPw^-DC!ݰުC_~l?d CWS`j _q::_H+FgEӑY0:eEy,!aP{vڞy:+Iś1"ցқ#bHXcD1"i5Fr9٘X_Q=3j5Ft; vֽk]i .@D߉P7C.@ݪǣ„粐>ZƏV3oVo귀[d-b~ XE"o˦p3n0BZ* 4q!NӎlMQuWT?96P_y*X::ATՇ"GH;~-^t*_]0o&L)E7D-Bj o-.D- Nn?ßTLS=DouOLyڰz>StuWA҇yjI#GtNQˇIedH-DS:= чn Q4^Ѻc/Dz g{!F{؛Woxǖz.m)9H'[û=An)DŽR\Q+\Q;C\QǴBs!D ٓDݪN>DŽn0sV0_q䲛mq'NjwpHCQ|p{{,P;-gtׂc}] :}%<Iu`=NRy2:h:5N`s6!ANHa׿ɗ/'m}~++}!ek0XQ_j֋> oHRv񑍛DRo(%ah{Y?Ic*Vd3y]U|i.Edz܍%ɼB\6~nZƭbժ7Vڸ6nʠqM6MqMxq-Ua(5AV,vu֌xreIk2Vi'Wt\QBlʶ1#es'WmPFX_zu [󫪀ݺ^.' 5s%`FD>\otu+{ަxL6:%ȤTq{~k4ۏ? ˆiON`/``z0=Y,LOmJѸmuG?7+{|1NmŹ\@\!O܇Ź`~r>,Axr_"{x1f?/\'W5B+\?/,+tVq.'WŹ~~r[q/^pEM2^{!I%YȲ1vo6:4ogE"2 Fv.QevQ5B[ Fլ;sHآOė}&;d?XkCs#dC5+:4n#B> U֪P5BjY-avQD68n>N>n>N>n>N>n>N>n>N>n>N>n>N>n>N>n>N>n>N>n>F矝B=Չ[Vx> 9RG*?,y,NG!JMܴz 7.fDR`W}}6l_ӒF:Slth: }lth:|ltN3՚۱/ٝ|6{c_lcgؗ>\7Sv s;Z|`PHQݳgg/X&c6{4zqWw:5=4F=6:46=6:4&=6:4=64Uy6{Ty1PͳZvgi'OO_F OOOOOOOOOOOOOOOOOOOOOѧ4ggt~{smu7g;GPedRctdz7[AbWmg ݓ|ٮt@**J@JGU:vky-C[k[CYVf}D({UuüdjK87bS|mt6C՚Nf}ye&wx6^f}+up#>﬩bF3CNyV;PWVPt٨*wd=^czmұ}3WP}\h{|gW:+Y_ì!/ 7̫t>'Q5B^C2SBv|"9DD>?Z0zv'Od7N>|";Dv'Od7N>|";Dv'Od7pϫt(Me٫t(muJ>΂٫t~J$?XdW:t+{WUuOi`LSJy~S`fY63 l9\632 7`2alJ( 5 FUxل.+z(l5닷{nDIbrPĤӏӋI~akbè'mMgluEnnlX֭Ɏ kakcjlMlXCL^L͹l{Ĥgnm.?뱲`Hϑ.jذ`c҂z-X5hj־{$z)IHJ#o5` ]S$OI$?%I^J$y)IS$OID?%^J$z)IS$OID?%qcAW4`R=l}Ջg^:yI VTmo6`t<: #:L?Oѣa0t=:>FOa0t<: >Oa0t䃮l9gZ"`ue*K{g F:lEYG] V'-XЀ -< AWҰ+֑Xz 6I_!_:J֑u\󖩿uo#[Go:Js_uA:mvcUux !NdžOG•.;_ooOqe; _`?x:SLZ}(gz{xۻIvyҵd[ow~o?ǮLw-oH`Pz  .c#֗(ԀnOoڣ.Q'|e]Z gEÁQwi@GÁ.kz2Xׂ۬Ѕt_hwx]o;Z=Uبj ZS} ּqqz\m`ͱz,Xs# {ӋG-&QEA cUڷ`=G){#(ǗԺׂق,>O'ϓ-66&7/ ~6/|ڶRRi k]2JB&L#FƇq0 >/OWPIg?'!Ik缑<R>_1<;J]S| ΣkC,#=fuңt :rۓqGS:|a9]C,;|/?FJIr88ϓ[`=xL/Ⱦ3q:3/Ȇ)}ްI~C,qUq!ITs5Ps%lNz$QoJd5B& yZzΗ+^5JIEJJȯ8c{!`ޏ0l8FRq4Yg41^g#)8[/8u~i᭗ޫtM~EWjc_hoL FI9E{M|>4nGSuw^u-|i2ېTffƇy0 >LƇa01>L\_pM/hk}Akb̟/8S/8S/2]Ϝyc|},"Lix>o<g=hW[X|#|#p$y-5sy?_05ה׀C_RoґQO=+tMu-|=xBqu!TX| pbh;C(H>Ces I_I_'ADA\DF {<_ +, y~bx<_ Z$ײxe뻯g ^nQ"{=EzLoA݂x=zv C*lgY?obrxN0Q&qֳHF&֬骳Mw$6  2 n דpppspnbdp^6OE4tJHW0M'lS$JI4)<]~-X|ɯ@~DQ:°} W>†S$$5ɯ~#[H} endstream endobj 1004 0 obj 297992 endobj 1768 0 obj [1005 0 R 1006 0 R 1007 0 R 1008 0 R 1009 0 R 1010 0 R 1011 0 R 1012 0 R 1013 0 R 1014 0 R 1015 0 R 1016 0 R 1017 0 R 1018 0 R 1019 0 R 1020 0 R 1021 0 R 1022 0 R 1023 0 R 1024 0 R 1025 0 R 1026 0 R 1027 0 R 1028 0 R 1029 0 R 1030 0 R 1031 0 R 1032 0 R 1033 0 R 1034 0 R 1035 0 R 1036 0 R 1037 0 R 1038 0 R 1039 0 R 1040 0 R 1041 0 R 1042 0 R 1043 0 R 1044 0 R 1045 0 R 1046 0 R 1047 0 R 1048 0 R 1049 0 R 1050 0 R 1051 0 R 1052 0 R 1053 0 R 1054 0 R 1055 0 R 1056 0 R 1057 0 R 1058 0 R 1059 0 R 1060 0 R 1061 0 R 1062 0 R 1063 0 R 1064 0 R 1065 0 R 1066 0 R 1067 0 R 1068 0 R 1069 0 R 1070 0 R 1071 0 R 1072 0 R 1073 0 R 1074 0 R 1075 0 R 1076 0 R 1077 0 R 1078 0 R 1079 0 R 1080 0 R 1081 0 R 1082 0 R 1083 0 R 1084 0 R 1085 0 R 1086 0 R 1087 0 R 1088 0 R 1089 0 R 1090 0 R 1091 0 R 1092 0 R 1093 0 R 1094 0 R 1095 0 R 1096 0 R 1097 0 R 1098 0 R 1099 0 R 1100 0 R 1101 0 R 1102 0 R 1103 0 R 1104 0 R 1105 0 R 1106 0 R 1107 0 R 1108 0 R 1109 0 R 1110 0 R 1111 0 R 1112 0 R 1113 0 R 1114 0 R 1115 0 R 1116 0 R 1117 0 R 1118 0 R 1119 0 R 1120 0 R 1121 0 R 1122 0 R 1123 0 R 1124 0 R 1125 0 R 1126 0 R 1127 0 R 1128 0 R 1129 0 R 1130 0 R 1131 0 R 1132 0 R 1133 0 R 1134 0 R 1135 0 R 1136 0 R 1137 0 R 1138 0 R 1139 0 R 1140 0 R 1141 0 R 1142 0 R 1143 0 R 1144 0 R 1145 0 R 1146 0 R 1147 0 R 1148 0 R 1149 0 R 1150 0 R 1151 0 R 1152 0 R 1153 0 R 1154 0 R 1155 0 R 1156 0 R 1157 0 R 1158 0 R 1159 0 R 1160 0 R 1161 0 R 1162 0 R 1163 0 R 1164 0 R 1165 0 R 1166 0 R 1167 0 R 1168 0 R 1169 0 R 1170 0 R 1171 0 R 1172 0 R 1173 0 R 1174 0 R 1175 0 R 1176 0 R 1177 0 R 1178 0 R 1179 0 R 1180 0 R 1181 0 R 1182 0 R 1183 0 R 1184 0 R 1185 0 R 1186 0 R 1187 0 R 1188 0 R 1189 0 R 1190 0 R 1191 0 R 1192 0 R 1193 0 R 1194 0 R 1195 0 R 1196 0 R 1197 0 R 1198 0 R 1199 0 R 1200 0 R 1201 0 R 1202 0 R 1203 0 R 1204 0 R 1205 0 R 1206 0 R 1207 0 R 1208 0 R 1209 0 R 1210 0 R 1211 0 R 1212 0 R 1213 0 R 1214 0 R 1215 0 R 1216 0 R 1217 0 R 1218 0 R 1219 0 R 1220 0 R 1221 0 R 1222 0 R 1223 0 R 1224 0 R 1225 0 R 1226 0 R 1227 0 R 1228 0 R 1229 0 R 1230 0 R 1231 0 R 1232 0 R 1233 0 R 1234 0 R 1235 0 R 1236 0 R 1237 0 R 1238 0 R 1239 0 R 1240 0 R 1241 0 R 1242 0 R 1243 0 R 1244 0 R 1245 0 R 1246 0 R 1247 0 R 1248 0 R 1249 0 R 1250 0 R 1251 0 R 1252 0 R 1253 0 R 1254 0 R 1255 0 R 1256 0 R 1257 0 R 1258 0 R 1259 0 R 1260 0 R 1261 0 R 1262 0 R 1263 0 R 1264 0 R 1265 0 R 1266 0 R 1267 0 R 1268 0 R 1269 0 R 1270 0 R 1271 0 R 1272 0 R 1273 0 R 1274 0 R 1275 0 R 1276 0 R 1277 0 R 1278 0 R 1279 0 R 1280 0 R 1281 0 R 1282 0 R 1283 0 R 1284 0 R 1285 0 R 1286 0 R 1287 0 R 1288 0 R 1289 0 R 1290 0 R 1291 0 R 1292 0 R 1293 0 R 1294 0 R 1295 0 R 1296 0 R 1297 0 R 1298 0 R 1299 0 R 1300 0 R 1301 0 R 1302 0 R 1303 0 R 1304 0 R 1305 0 R 1306 0 R 1307 0 R 1308 0 R 1309 0 R 1310 0 R 1311 0 R 1312 0 R 1313 0 R 1314 0 R 1315 0 R 1316 0 R 1317 0 R 1318 0 R 1319 0 R 1320 0 R 1321 0 R 1322 0 R 1323 0 R 1324 0 R 1325 0 R 1326 0 R 1327 0 R 1328 0 R 1329 0 R 1330 0 R 1331 0 R 1332 0 R 1333 0 R 1334 0 R 1335 0 R 1336 0 R 1337 0 R 1338 0 R 1339 0 R 1340 0 R 1341 0 R 1342 0 R 1343 0 R 1344 0 R 1345 0 R 1346 0 R 1347 0 R 1348 0 R 1349 0 R 1350 0 R 1351 0 R 1352 0 R 1353 0 R 1354 0 R 1355 0 R 1356 0 R 1357 0 R 1358 0 R 1359 0 R 1360 0 R 1361 0 R 1362 0 R 1363 0 R 1364 0 R 1365 0 R 1366 0 R 1367 0 R 1368 0 R 1369 0 R 1370 0 R 1371 0 R 1372 0 R 1373 0 R 1374 0 R 1375 0 R 1376 0 R 1377 0 R 1378 0 R 1379 0 R 1380 0 R 1381 0 R 1382 0 R 1383 0 R 1384 0 R 1385 0 R 1386 0 R 1387 0 R 1388 0 R 1389 0 R 1390 0 R 1391 0 R 1392 0 R 1393 0 R 1394 0 R 1395 0 R 1396 0 R 1397 0 R 1398 0 R 1399 0 R 1400 0 R 1401 0 R 1402 0 R 1403 0 R 1404 0 R 1405 0 R 1406 0 R 1407 0 R 1408 0 R 1409 0 R 1410 0 R 1411 0 R 1412 0 R 1413 0 R 1414 0 R 1415 0 R 1416 0 R 1417 0 R 1418 0 R 1419 0 R 1420 0 R 1421 0 R 1422 0 R 1423 0 R 1424 0 R 1425 0 R 1426 0 R 1427 0 R 1428 0 R 1429 0 R 1430 0 R 1431 0 R 1432 0 R 1433 0 R 1434 0 R 1435 0 R 1436 0 R 1437 0 R 1438 0 R 1439 0 R 1440 0 R 1441 0 R 1442 0 R 1443 0 R 1444 0 R 1445 0 R 1446 0 R 1447 0 R 1448 0 R 1449 0 R 1450 0 R 1451 0 R 1452 0 R 1453 0 R 1454 0 R 1455 0 R 1456 0 R 1457 0 R 1458 0 R 1459 0 R 1460 0 R 1461 0 R 1462 0 R 1463 0 R 1464 0 R 1465 0 R 1466 0 R 1467 0 R 1468 0 R 1469 0 R 1470 0 R 1471 0 R 1472 0 R 1473 0 R 1474 0 R 1475 0 R 1476 0 R 1477 0 R 1478 0 R 1479 0 R 1480 0 R 1481 0 R 1482 0 R 1483 0 R 1484 0 R 1485 0 R 1486 0 R 1487 0 R 1488 0 R 1489 0 R 1490 0 R 1491 0 R 1492 0 R 1493 0 R 1494 0 R 1495 0 R 1496 0 R 1497 0 R 1498 0 R 1499 0 R 1500 0 R 1501 0 R 1502 0 R 1503 0 R 1504 0 R 1505 0 R 1506 0 R 1507 0 R 1508 0 R 1509 0 R 1510 0 R 1511 0 R 1512 0 R 1513 0 R 1514 0 R 1515 0 R 1516 0 R 1517 0 R 1518 0 R 1519 0 R 1520 0 R 1521 0 R 1522 0 R 1523 0 R 1524 0 R 1525 0 R 1526 0 R 1527 0 R 1528 0 R 1529 0 R 1530 0 R 1531 0 R 1532 0 R 1533 0 R 1534 0 R 1535 0 R 1536 0 R 1537 0 R 1538 0 R 1539 0 R 1540 0 R 1541 0 R 1542 0 R 1543 0 R 1544 0 R 1545 0 R 1546 0 R 1547 0 R 1548 0 R 1549 0 R 1550 0 R 1551 0 R 1552 0 R 1553 0 R 1554 0 R 1555 0 R 1556 0 R 1557 0 R 1558 0 R 1559 0 R 1560 0 R 1561 0 R 1562 0 R 1563 0 R 1564 0 R 1565 0 R 1566 0 R 1567 0 R 1568 0 R 1569 0 R 1570 0 R 1571 0 R 1572 0 R 1573 0 R 1574 0 R 1575 0 R 1576 0 R 1577 0 R 1578 0 R 1579 0 R 1580 0 R 1581 0 R 1582 0 R 1583 0 R 1584 0 R 1585 0 R 1586 0 R 1587 0 R 1588 0 R 1589 0 R 1590 0 R 1591 0 R 1592 0 R 1593 0 R 1594 0 R 1595 0 R 1596 0 R 1597 0 R 1598 0 R 1599 0 R 1600 0 R 1601 0 R 1602 0 R 1603 0 R 1604 0 R 1605 0 R 1606 0 R 1607 0 R 1608 0 R 1609 0 R 1610 0 R 1611 0 R 1612 0 R 1613 0 R 1614 0 R 1615 0 R 1616 0 R 1617 0 R 1618 0 R 1619 0 R 1620 0 R 1621 0 R 1622 0 R 1623 0 R 1624 0 R 1625 0 R 1626 0 R 1627 0 R 1628 0 R 1629 0 R 1630 0 R 1631 0 R 1632 0 R 1633 0 R 1634 0 R 1635 0 R 1636 0 R 1637 0 R 1638 0 R 1639 0 R 1640 0 R 1641 0 R 1642 0 R 1643 0 R 1644 0 R 1645 0 R 1646 0 R 1647 0 R 1648 0 R 1649 0 R 1650 0 R 1651 0 R 1652 0 R 1653 0 R 1654 0 R 1655 0 R 1656 0 R 1657 0 R 1658 0 R 1659 0 R 1660 0 R 1661 0 R 1662 0 R 1663 0 R 1664 0 R 1665 0 R 1666 0 R 1667 0 R 1668 0 R 1669 0 R 1670 0 R 1671 0 R 1672 0 R 1673 0 R 1674 0 R 1675 0 R 1676 0 R 1677 0 R 1678 0 R 1679 0 R 1680 0 R 1681 0 R 1682 0 R 1683 0 R 1684 0 R 1685 0 R 1686 0 R 1687 0 R 1688 0 R 1689 0 R 1690 0 R 1691 0 R 1692 0 R 1693 0 R 1694 0 R 1695 0 R 1696 0 R 1697 0 R 1698 0 R 1699 0 R 1700 0 R 1701 0 R 1702 0 R 1703 0 R 1704 0 R 1705 0 R 1706 0 R 1707 0 R 1708 0 R 1709 0 R 1710 0 R 1711 0 R 1712 0 R 1713 0 R 1714 0 R 1715 0 R 1716 0 R 1717 0 R 1718 0 R 1719 0 R 1720 0 R 1721 0 R 1722 0 R 1723 0 R 1724 0 R 1725 0 R 1726 0 R 1727 0 R 1728 0 R 1729 0 R 1730 0 R 1731 0 R 1732 0 R 1733 0 R 1734 0 R 1735 0 R 1736 0 R 1737 0 R 1738 0 R 1739 0 R 1740 0 R 1741 0 R 1742 0 R 1743 0 R 1744 0 R 1745 0 R 1746 0 R 1747 0 R 1748 0 R 1749 0 R 1750 0 R 1751 0 R 1752 0 R 1753 0 R 1754 0 R 1755 0 R 1756 0 R 1757 0 R 1758 0 R 1759 0 R 1760 0 R 1761 0 R 1762 0 R 1763 0 R 1764 0 R 1765 0 R 1766 0 R 1767 0 R] endobj 1769 0 obj << /Type /Page /Parent 1 0 R /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /Font 2 0 R /XObject 3 0 R >> /MediaBox [0 0 1190.52 841.896] /Contents 1003 0 R /Annots 1768 0 R>> endobj 1770 0 obj <> endobj 1773 0 obj <> endobj 1775 0 obj <> endobj 1777 0 obj <> endobj 1779 0 obj <> endobj 1781 0 obj <> endobj 1783 0 obj <> endobj 1785 0 obj <> endobj 1787 0 obj <> endobj 1789 0 obj <> endobj 1791 0 obj <> endobj 1793 0 obj <> endobj 1795 0 obj <> endobj 1797 0 obj <> endobj 1799 0 obj <> endobj 1801 0 obj <> endobj 1803 0 obj <> endobj 1805 0 obj <> endobj 1807 0 obj <> endobj 1809 0 obj <> endobj 1811 0 obj <> endobj 1813 0 obj <> endobj 1815 0 obj <> endobj 1817 0 obj <> endobj 1819 0 obj <> endobj 1821 0 obj <> endobj 1823 0 obj <> endobj 1825 0 obj <> endobj 1827 0 obj <> endobj 1829 0 obj <> endobj 1831 0 obj <> endobj 1833 0 obj <> endobj 1835 0 obj <> endobj 1837 0 obj <> endobj 1839 0 obj <> endobj 1841 0 obj <> endobj 1843 0 obj <> endobj 1845 0 obj <> endobj 1847 0 obj <> endobj 1849 0 obj <> endobj 1851 0 obj <> endobj 1853 0 obj <> endobj 1855 0 obj <> endobj 1857 0 obj <> endobj 1859 0 obj <> endobj 1861 0 obj <> endobj 1863 0 obj <> endobj 1865 0 obj <> endobj 1867 0 obj <> endobj 1869 0 obj <> endobj 1871 0 obj <> endobj 1873 0 obj <> endobj 1875 0 obj <> endobj 1877 0 obj <> endobj 1879 0 obj <> endobj 1881 0 obj <> endobj 1883 0 obj <> endobj 1885 0 obj <> endobj 1887 0 obj <> endobj 1889 0 obj <> endobj 1891 0 obj <> endobj 1893 0 obj <> endobj 1895 0 obj <> endobj 1897 0 obj <> endobj 1899 0 obj <> endobj 1901 0 obj <> endobj 1903 0 obj <> endobj 1905 0 obj <> endobj 1907 0 obj <> endobj 1909 0 obj <> endobj 1911 0 obj <> endobj 1913 0 obj <> endobj 1915 0 obj <> endobj 1917 0 obj <> endobj 1919 0 obj <> endobj 1921 0 obj <> endobj 1923 0 obj <> endobj 1925 0 obj <> endobj 1927 0 obj <> endobj 1930 0 obj <> endobj 1932 0 obj <> endobj 1934 0 obj <> endobj 1936 0 obj <> endobj 1938 0 obj <> endobj 1940 0 obj <> endobj 1942 0 obj <> endobj 1944 0 obj <> endobj 1946 0 obj <> endobj 1948 0 obj <> endobj 1950 0 obj <> endobj 1952 0 obj <> endobj 1954 0 obj <> endobj 1956 0 obj <> endobj 1958 0 obj <> endobj 1960 0 obj <> endobj 1962 0 obj <> endobj 1964 0 obj <> endobj 1966 0 obj <> endobj 1968 0 obj <> endobj 1970 0 obj <> endobj 1972 0 obj <> endobj 1974 0 obj <> endobj 1976 0 obj <> endobj 1978 0 obj <> endobj 1980 0 obj <> endobj 1982 0 obj <> endobj 1984 0 obj <> endobj 1986 0 obj <> endobj 1988 0 obj <> endobj 1990 0 obj <> endobj 1992 0 obj <> endobj 1994 0 obj <> endobj 1996 0 obj <> endobj 1998 0 obj <> endobj 2000 0 obj <> endobj 2002 0 obj <> endobj 2004 0 obj <> endobj 2006 0 obj <> endobj 2008 0 obj <> endobj 2010 0 obj <> endobj 2012 0 obj <> endobj 2014 0 obj <> endobj 2016 0 obj <> endobj 2018 0 obj <> endobj 2020 0 obj <> endobj 2022 0 obj <> endobj 2024 0 obj <> endobj 2026 0 obj <> endobj 2028 0 obj <> endobj 2030 0 obj <> endobj 2032 0 obj <> endobj 2034 0 obj <> endobj 2036 0 obj <> endobj 2038 0 obj <> endobj 2040 0 obj <> endobj 2042 0 obj <> endobj 2044 0 obj <> endobj 2046 0 obj <> endobj 2048 0 obj <> endobj 2050 0 obj <> endobj 2052 0 obj <> endobj 2054 0 obj <> endobj 2056 0 obj <> endobj 2058 0 obj <> endobj 2060 0 obj <> endobj 2062 0 obj <> endobj 2064 0 obj <> endobj 2066 0 obj <> endobj 2068 0 obj <> endobj 2070 0 obj <> endobj 2072 0 obj <> endobj 2074 0 obj <> endobj 2076 0 obj <> endobj 2078 0 obj <> endobj 2080 0 obj <> endobj 2082 0 obj <> endobj 2084 0 obj <> endobj 2086 0 obj <> endobj 2088 0 obj <> endobj 2090 0 obj <> endobj 2092 0 obj <> endobj 2094 0 obj <> endobj 2096 0 obj <> endobj 2098 0 obj <> endobj 2100 0 obj <> endobj 2102 0 obj <> endobj 2104 0 obj <> endobj 2106 0 obj <> endobj 2108 0 obj <> endobj 2110 0 obj <> endobj 2112 0 obj <> endobj 2114 0 obj <> endobj 2116 0 obj <> endobj 2118 0 obj <> endobj 2120 0 obj <> endobj 2122 0 obj <> endobj 2124 0 obj <> endobj 2126 0 obj <> endobj 2128 0 obj <> endobj 2130 0 obj <> endobj 2132 0 obj <> endobj 2134 0 obj <> endobj 2136 0 obj <> endobj 2138 0 obj <> endobj 2140 0 obj <> endobj 2142 0 obj <> endobj 2144 0 obj <> endobj 2146 0 obj <> endobj 2148 0 obj <> endobj 2150 0 obj <> endobj 2152 0 obj <> endobj 2154 0 obj <> endobj 2156 0 obj <> endobj 2158 0 obj <> endobj 2160 0 obj <> endobj 2162 0 obj <> endobj 2164 0 obj <> endobj 2166 0 obj <> endobj 2168 0 obj <> endobj 2170 0 obj <> endobj 2172 0 obj <> endobj 2174 0 obj <> endobj 2176 0 obj <> endobj 2178 0 obj <> endobj 2180 0 obj <> endobj 2182 0 obj <> endobj 2184 0 obj <> endobj 2186 0 obj <> endobj 2188 0 obj <> endobj 2190 0 obj <> endobj 2192 0 obj <> endobj 2194 0 obj <> endobj 2196 0 obj <> endobj 2198 0 obj <> endobj 2200 0 obj <> endobj 2202 0 obj <> endobj 2204 0 obj <> endobj 2206 0 obj <> endobj 2208 0 obj <> endobj 2210 0 obj <> endobj 2212 0 obj <> endobj 2214 0 obj <> endobj 2216 0 obj <> endobj 2218 0 obj <> endobj 2220 0 obj <> endobj 2222 0 obj <> endobj 2224 0 obj <> endobj 2226 0 obj <> endobj 2228 0 obj <> endobj 2230 0 obj <> endobj 2232 0 obj <> endobj 2234 0 obj <> endobj 2236 0 obj <> endobj 2238 0 obj <> endobj 2240 0 obj <> endobj 2242 0 obj <> endobj 2244 0 obj <> endobj 2246 0 obj <> endobj 2248 0 obj <> endobj 2250 0 obj <> endobj 2252 0 obj <> endobj 2254 0 obj <> endobj 2256 0 obj << /Length 2257 0 R /Filter /FlateDecode >> stream xA-=n%_29^H-i,OX֨V8 ѸeK=VxH&^UW b{7O!AA`y,K޾-?~||_,#-yLuPS_[]ZVyϷ}Km]ow֜b 5tBnbźnB* ^1o#ƃ^7Yfl֭1>O8;1^6cs>Ju}0^6[H #j^gBaa)37ҡFnĨ5`hD>-BٻDնRGwzl5[u{~좷fwJy]pJ Y mHQ Õ6|;8U#Ӂ-J<>~ Z h1~<#ЦeFVl}#[Z5g;YleeuԪV7,-Nތ#۱`e`;U5<:gxv1P|XS GnMNGTyjөr*݃ʍuqLek#dΔ(p#t9K7ϕtY>PeV=A*׮rZ>ܺZ.?ëQnde~H{׬}ZK7G7NS8tGPs5p~H$cK?SNϯTBK@場|PD\z^S25j Aq~7tzf3/Mvת]5?j_61=ڼǨ#DGwJ51jUQ ʍQ+ Q6p P㼑@gWj(DQí1j$dWQ Fn=j4Jv|νg9ɏCxrN{+HLw^q)v~}n̷T8鏿uͺ$^"#('m3$2$~@q?_ұ5@J@e}0KepًCFe-*[ǣK}\tl=Ba LN[DrN_hP-x sa(Fzj,K@c~HcI2>-:*:$ҍSCe[qa6P˓=ʟ-7@SOno ]̏d; 4jl9>/ M󸝺V9ewa߸\[@G&pQf5=:Bs m<"چ@_͜b(:YG#.#P.(9by!܀@'BpjdVrdeu?drn=C7>Z ^k>TC%qz~+nwL aP#!.xP1j4kx<_sOsC==}^u&p2ǢST{.$jfyΆfˆ?oG6?nip pVvͬ;lgw{C;[mi-韴m(m8XrmU[7?fk+[OU[}#c\{?k+=tMnquס2E"!z&d6\iK [Zu`˳::pE荬WOf pC`C74ci\iK؁զ؁mΛcGle6]?u,ϳ.ϳ0]lG:peC̤{N?{0B;vJ˦j4[î`˳R;V;#eu`jV'ohlǂO3~V{Y~f{VyK4cf_wEv`ͷk1pֺ75j#QͯތcTKIo1Fo15Bo1tt+2y=m3NҌ}c ;*7܏wvO}U%+dcI]g n= QwG ]}nx XX-0]:l.D\V(tt]shW|:j>Ptf<PIWwY>P%]r@F<+y`֗}Y&o{yޝ!,teOQAPЉ GkI\۴X: l+:j:5BPj=CZ' ]w\hAj~ DFX5^i.8[=>qlwol gZ.{|&>7ꏙʶnF+72-yxWy62?OxY>̪ع-=i+.~[YؗriOJ>OMx}q~ -O ] í K@ۮAIs۝c!Х~؃,tG?25^&\:@Z?X+LTHu,YꁣOJ{Oγ'n܏~Jq ˴JU5S ̸EmgM3|fTH2-O>+Y7߻ o3<[3gmt,t"v_M(t1^[J=/!hiAj:  TG8BIJ0t|*U2|]y \XBAbN|j{Z.FAPk#qd!oAe7]%f~Sg$qO=>qnç8 j/La-nAzhE`KkwuqBw9EɅsˬtz< Pr@Z=TꙢ[ҭЅB\.qtK̃tZ4z @-3[>R\+D~7>+p'n׭؟?eo9 {GU I^2U:w^t)U xw*=O_7>_P7Y>w]y_z\k&U xx}Rʏ\p%5 k;{J>KKxl$(_)Z)sa/S2?>4'󃨡{?RP-/&5JvޣW&h2H>En_'=Z(5PPF~%@+{oPmboP#!}5b)}mhLs#!Z+BMo(s CzF*=&ʶ ']t-״zЧ~R붅&@NKͭҡIfD> o{q]Zo'6I*$c T6Y^Ȏ|Ә\؞!/{7rw8+,3\4 /rcv  (tb uK\zCХ^$ qtrn5 \~H%jE5!U88Rݝ矖̿݃.d7txI.rEA_LE`Z C#/ N^>L?P)ߴ|&>O6VU],'zE .YLWjC0BG{/tf:'S&5\LPSu..+:!P-{?PV7>+~"QOKb'n›n>i~G o3= Tgtcnˡ~?dhu> Pn+_Rw:Zq;A.^Gm/V@#ь# ]N5W;=n5>GvjF;Sϑhx/99ISNO9A veЇ;@a!sRޣrɺF?;XV}8QCF0jU#5RG51j4RhB/6{%|u>[R^7ѧӒiwss!ok5=tZ=mwWS֬}S?ڛ[JJ놥hv1Z)׼@TF 5j5cFBf|"e~o{oS봑Ph'=](sZyI9Ns˧v&bk6Paf!R+R]7hvbՅvf93z};*ls VhWĕB %PF+e% G`.ʰ]~*| R B fDhфm gwsB 2'B2<ˀh2&-wv6AhZF+~Śu@ VoZ)Cތ^{ճ}jPR歾t@+%+xdP Pí]!Hj@M[M5w3VQVB5Lʻ7Pԁ#M7#+?}cck~?h=g]ݵP; ]y&Kw~Qѭ{XC~;&O}óKHLw:gX67s>D`;{v<>wZ9ZyʁH ={U`{s.'{4D,z:.Kw\4z(Я1Z]LoSR1C`::fa 待6rA`ڷz ]݃5IOcK?H:zm8I= Bw4+טW,wt>?t*yO/P$^c. oTߑ%upUMkϣ_79|ưv;Y3n C`qޛ~@`qZ:ʡ푻B03"=0  f#~o=ϫ o"ۇ1}`eHXEY,{f"'%g|θ2c- kT>Xr~!pMXblڇBC][c%k24ux@`gJg?3"PO.x}M=< Qd;KhJ3}|ݛ&¬gsyjO m==3 ݱxC1+i83_#k*C`[{v<>KA2au:mWJ%@  <=>qlǧ$=OT=CбܧCr|V5"EbfD%hʬ,t[?4~!,=['cg!c@͸E`X3*Xs~vmI K.X#i@s"~`c`K]]<@r0vK?=}m_3|"  cUC`鿣/f߿SWt ]Ε׷z>CI7' ݾAFfF`i_.GCwtqAL!PF_X֞bKշ4l4KշgS׌ jq'V,|.޹`3Cf>C`[Id3rQu ^C`KdPXe빓-^/_e_q) ַ2+BWY`dnilPv} h빌-kni>!Xs;UQ~U/G~`s_v~S˺=PK^ʲ'Kթ^r`˗Ҿ 4tg.GEɕe@eٟRRoƅ@Џz(trmк};u Df._!myH R/,ty9_Ucz B'7L+!~G@ۖ^cB.~G`id Κk +ό#>t_‘~T{د,B'ɁrG@]HV,tͅdn P}' ~-qf<s(`:z1BCgJ;3|FUŘ=/:v0N{ZX2ZA`pm}#K[V,tQCC9,.-2 qr`[#0_A`M0i铎  boo>wӿD"iuϣ >fL\ŮG]N=c J7dryF(݁fr `.7߻ osv)A$v-bT\wͤsAMWӏ=fjlBK#-3hBxr+j:=Tjs\8BCZ'Kڙx\[2u?HaslO@T:6V_T4 :nw>qnolzX wj݃O܄-tzT?L/!@Ko- ݶޱ)ǀ\:=G*9n5<@OJ ٷێPMg1}A&Ƈ7-) mX_z0Bw]]5z@MO=-u?y >m74uU~%ӕ$Ѕ|]"]@Mj>x`T]k`"-\]@ڮ Ǖ␊&PFhX0J_$hA=F?xVtT*^#P$Ja%/ɘyNϻ|yZ.Z?A~7t|*U|%>U󣞆;Kd5;~G`*t@-+{PUS5RMV0P¶^.9' ]uZ.,tW{t4z@-O>t),9A'pDwk?`;z =(t;C' ~8@Mgӯh`KkM/&za? Tkp'5g6ZOx^ONs6j@_t,UC%@`˃Q͟UJ IϟtzDSϟr'u?}wg3'9H>)y,=T4|m={79|*͟59Azj.VqdyMߋ{Us\{Ĺsx+'^NV k'n›ܷiֳRtC`{:5KBw4{09 fJz1'5\z@z< PS3_ٺGH!,t[~"-(tD`x6Ob*$7j> 5f1$[,j> Z.Re2c ^k=BZy~~8pt#LY{2#Kzfc ">Kik֛>(GM7tzFSr@Z )',c?rI'zA[`t*.j=AP)SٻrQ  0Э+o!T*a5 Tz A-5 P3_~JTߌ^WSKB;V=Xo]j`8SzAͧ!bPSsI7μ%]| q B .9' DI$_~[ oB5 ]X&yރZJޕ|TOه' +VMka_??wHvc__՟o_/ofAǾY@OfQ` (O{CPU+x 6E= E 0JR2 1j}*FQ#nJSJ)q>FU`Fg"T] S>N}*JQC<v?,! 6镃z›^PUaF C`3'L#v1}UWIAT=~./_S`P.=%@U}Ge =k1L Qu=B!^pũF !n!HHkDMJ>u_nHRH5B4kupXk&e Z}okwU9nɍ"P^AhB!􊦄SD-[^1z}3hIK?PH=O^ygLD /XhIO=(CiK%R嬸OV[:|O%Vi$C|ӌ o";q;z/c|L$(-qUJ W0ђʛ`rg;J$Ol]7"u{V;@&Ix[ĥ 3ߣrY| QK}9}6DXc GG>K P[>8{^I( 6c[Ky؃J[ywNJ<]I='@Pj;[3Vj$[^ў%MД~4)<[n`?7UϷ5Z hsya=tm[r U!vhDPk7#vЭVWfz*(J۴'_VB5ʒ[=x>Y{(Kv;!8DUXJǸ"PpYh\㣸͗{%zv^TsihM{~\gC ='@PDU( %BKz+ -yZ(^%Wj(&$jjM_F5;Oz6c>`s`TpPtCP*Ehd#U%ϺU2gjĨWAn*Q#! bZW0j4-BJ7"ǑZE*|T1'b#F'LSb}@͔3f(sv[u %BRJuk\z1T}-{'35[=@HH`5gM>u_J eڳnZ(7 NBJ@*^ B n!Hh<>7b~K 5l*w˟]'ʎW~o+5 %:ؾ?!Z(yohBbP=û9¨TQz5*FBʎǨ=Ahx>~YJr͎ZgWZv 5Fj5P#!3jzŌl>e|{ua Hau I@kDK<+MT'5 DAW{ eP"T(_C#!}Nt PM@hB#o!tF`5е[)gLkŒβ5gt?!Z(:K:QpfEPe{֔ljr60mvCv;th܆3:ӟ5zApGD eN(=V *k"Z %BZ4-ah APY D Apw:5Q+z6CP}vhDԽr'5)nLZN㜉%?߿S+0W䬳[ړGﮇOtڮ=!Qzir(Z(yx*UZղF R]&_rieij(je坿P#c-o$4O-ws-eJZJkL[/gh|DKrPm@PjMVkDC}:#] Z;kH%J+EDhkrVB-ZTVF PK5ۼ\+7Pލq2\ ^T'%@ZK(CQ^&53DMJM0 ,ʃ83cֵ_{%DŠxk\XRh\c5d>> B12R[5IWo$r1hl,%B %34C-uyCjVC5ҳ DuYJLeT3ADCjVl W %B&nsBƏgYBaa%ⱲfuLɛ%YNuF R?[rr QS3>!Z(+tMWނF P7CV#۸^GǶ-ua`-sD xjn"cQ-m]e%4O%w-_W-%BZnNJB _izhB6ڇOAN/+s.wxg W5 J<7s?ʈ3&3龼9|u(ȿן?_D޻W}|7cۀ񘰄0c{2SoK 3&sHJlY'AtnG-_1$ox`FC2A\ŴtvM==錅|ʍn2RE;mB-8 Q%@ 0B)-)H9s_%B Bx `y-#%k?HQ+۞1/F&e5>KP/F*}}~ڧ)%3M;<z !Pc B ҏn4hB5V%dGBuؑЧ3|a'cO'‡Dpfѱ'kODǞ={"Dtѱ'kODǞ={"Dp'kOǞ=i<=s] ofWoy7ozڇPθ-wt;=K;Es}sN{=]'-公o=pJv{eV*7W$5y}j~$4J eu.ƮJ,VB)&Z %B eyoEh덄*Koz28aK``Pd >rr-bԈx~zF PU8tDh %@RnZ(B 4u Pf0jU:ɕҌ<6X-0#!5,t`zZfJ?FY"9dHnCYmF(#Řm<836J$ri{T(0wiWJ!\7S(!Z($[ :C/r3/Ц4 lX;\'$KmE˃ݷi+M~}=Ћ^'- `;N|wi=䴇>ٞI6\ G1f }Ӽ/6;ޗ>hq56Ζ,>9ßߌ]yo<`^9Un^*U-x}E~ ~IX?x]hWXR9FK IS"T(!c_2nyv=k-qYèPWJʯQCܒbTK_WHu15vO<ѡF*}}9'k|B9i|jB9j:èTܒ:ĨSP^ڷ;7>M99pByo$B9+-vFj(!Tsk5ZBv!T}:3wEhǮ͉D 5'1'5'1'5'1'5'1'5'1'5'1'5'1'kNDǜ9s"Dt̉YqӔTf)mvv8>EhBu;ijQmʷn_6ѭ8ӥqڦuCT(G qd=AP#5k]hFMֺQgg:J=ATsLQ-g:^Izք{iCAlBڷ;7Yt-f*3rLmBPjsۤMtj %-}}&y4Akd.ڧ)'#pB9FB-X1B9Vj(!Tsk5ZBv!T}:3w&8U iˏXiR0=-|k9DFaC"#X_q##jQb jV/WRD C*%Bn})-WB3gDFՉ8ȈGFȈ 2"mHk"Ȉ契< d$y]dDZ,/lgy]dDZqdDpdDQȈ{}qd##px]dDZq^c82Baoq[OEF##ʔ \0cr]rG~Q$<& UJ*yZ UzGeL:`s2&PzG] Z սxG5a2\[iCFoowopP8b s"#&T7~9j(Ȉ .^dĄj -^dĄ^Y}c_/^dѾQ|[pd UZ7B5M@"#^dQaF(Ջ0#48Ȉ "#8 5'ǜX\sbq̉5'ǜX\sbq̉5'ǜX\sbq̉5''2p##'2p##'2p##'2p##qp}5aoDFMMHFFM͋Pu~CPu/EpdĄsȈ U9EFL"#&Tsz%z{e"#&TkEFڷzgFFx"# jhho^dĄXƜȈ Ug]_NdĄJ/2bB51ZB1WV/2hߴI"#M沫}+FBU7Pp 5^dѾ͋0?`"#(yfdݑћ1##o5Cd?>2BgEF GF0DFL`̉P1c"#4c*2pUiOFv^)5C'Ot|za{Ӟ$x]tJ38>cuON2/>C2S]~(98_tTTz6`~@a} EE8-&_po8 7{'(LJFr2f0Z(ǻ yaPwn%èPN %èKQmd5 W¼Ǩфj}`̹5Q]yB9i3h:~ J}#5Q#00jzhhO_)r!d$B9+-c 5Fj5P#!3jzŌl>2ι{ž̳693:9999999999}r\4唑7)>9jBM;;o8c] _.nM{OmL'Lw{ܦs]J}s)"2ޔ +=.ÎQB|ByF xRs Lhy@mq~63X5Z}S̎č߁MVBy+3jO͑$DlD,3yrll'|',ֶZf3#dK}*oo ~=?Í׹$$o>:Ǧ;izR$3FJãaOP|_ ߑmGC ya67y"+~en9X$^fmM'eFJYD<9'钿c}!濨"ۼo sYbYCnwJX61xEYޙvjXb=giaX,MWrkmoĭ'RjSyYي':[4~M8(O84 \O s՟냼(}I_AoM#ZOVtF45fiQCxC̃U[DܩCjMk};tHhDȸUHby7/ΛvEFjzQ(f^d(Uj^cuьڰPьJ%^4R^߼oZQ֩V۠ "5D{Q!;Ub*3~MNc'm-6ո s8P8 UW mBWV=)'o"Sy=ג9sghZObXsR`QF@< 1Yd9\X悸[QvtTZʐAܴ-=yův_XދV^8DeR=I[xn•- P N)Ԏ mޤ 1L=fG?#ɠ[s:rR&%vvmd1UynGta5Oq |m{/[_|,k{6:,jޅhZT>ɧA6r*_lk<'}F书L _mSI(meԱc0x! Lysz{v1; ߭tpR~R²T&:mIJ8x/Y{ [&ex?l`?Ψ*͏rtixdFq)3RZkTF5DR.ʨ?Byz-B 8jXOɥTLNTLN*eUӋ UL/2^[e09U &`zaTL/2*USe09USe09U &`r &`r VLNTLN*ɩ2*ɩ2^Xe09USe09USe0`r WTLNUVLNVLNVLNVLNVLNVLNVLNVLNVLNVLNVLNVtϭ*ɭ2*ɭ2*ɭ2*ɭ2*ɭ2*ɭ2*ɭ2*ɭ2*ɭ2*ɭ2*ohSe0USe0USe0USe0USe0USe0USe0USe0USe0}`r /2`ބNVLNVLNVLNVLNVLNVLNVLNVLNVLNVtϭ2*ɭ2*ɭ2*ɭ2*ɭ2*SUSe0}EUS-USe0USe0USe0USe0USe0USe0USe0USe0USe0USe0U]s%`r &`r &`r &`r &`r &`r &`r &`r &`r &`r &TLnTLnTLnTLnTLnTLnTLnTLnTL2*+ /2*ɭ2*ɭ2* Xe09U[e09U[e09U[e09U[e09UӗW"x/^Sy*jƲ;p %`jv-Xbpupc~RykI 7)pl-ܘpcr{pnL3i 7=X ,'-ܘ%}.|hh 7#~[qaG{ 7,~r7Jn,-ܸ6\n,oE[ 7B -n19%-MN lrK`S&69%-MN lrK`S&69%-MN lrK`S sJ`[&6%)Mn lrJ`[&6%)Mn lrJ`ӧJ`S6}i lrJ`[&6}} l%)Mn lrJ`[&6%)MO ]k/y71ڄ8;?XTSWR()]!Jq '{ +r>)ѥ5^%hR;VM`CJ$gB÷ZX ;Fa%#x%=Řړ% }(@{R$CĚm+8 ^SI IBҖK?5bv-)v-)5z)MOr }+P~H FfKz5'临Ϊ*Ʋƛ؅*ړ&xlw>p*El07!mUFK묮tJq);^32o~st}*YMKc)})}RQt-C0*cb0*c{-B >Yui@fl_ʶ[Z>EVʖ^Jabi^rW6ʖw]l+[>m_m_敍*jewm_VC+۾`eK뼲oUliW镍ʖ¼Wʖ^x\[4l)+$W6^-zecW+[^9!5'Ϟן&Vy{g+ۜz^پ$ }mye:kNQ+NBQYnW::v\txڌV;wtZJp^~x~ΘS0g1}/B9CP"T(aPUU-`Ѫ* pt~NJu^QͭωQ-!WtAjM0uy!t4R^dC9č!T(wWvG3bPN9{1Z(GT'5[ ZB:$FuXFTk>nEh[n$B9+-˰6PCi[ WFәiD{^i'W?F$C{;&,Ey G<}]x7Ya ZR DwT&6OJ eR@Gm&R\k#QI!*[>Xu%B %,[JV)$PE'B)Ֆr@2-{m -b IRj;)*"}6tDhLpC P {)$,-tVB-ԽPCH̍wjUzVZט=cAH fLwfdv?ą.PK]<m$bl0t Frl :|{h,!)ܰH5]gB~RR\FIجk IVȊѲ򓚭p?Fj 3[ap?򓚭p?زgB$/~f+e+l1l'3[aXYy[N9=Ve] kYaVXN|RZOEg*d3[g«lCw~.[!mMٕ$}d+8 fIVX52ԲgB~RgH-[~f+'KhzQl0RZQoV.Դ"|FEDVZQF 4Vl%5\d9CVOZB)_23[!d+^IkzҲ, y}>Jg3[_3d+CbP Q*rB9#"P /D/8e۹2R(KL&dc+=9r|6Ӿ'2;b4DDno᭞Ro^F<ɽ6#\djOT "%k/D/^-a(&R}SQBF?N.,-{ L쒀N,شIo[Ig+i MLrKfԨ7~ C- AŲǮ}I$5KeJC`PI*]Z)ז:ߞlIP~*< Ftnc rV]{kn+Q4-r*zںGzu^oGMSoJncSfݕSI wJ#42YuqCYCU5wM" e\:/>DS7:;;LVzD<9r{RNajMN9V,!{kS0y]$#d9ʓts#<[G+̳\xe*bޚE9lFJR\wWWO5ʴrr'-W.p2λ+[4$Ɉ[q?˲/lXyoZ/?)'?i[֞ >O Xy[b伭u1{9m㼭ri;Z]y[ 8ok9ZV pqJtmy[)yI XVA٬]ef,fzoY(f#}כk$u޼#=xʖ2~ރ;qE֮b-!׷xeB-z Q`T(;H~~ Q)ZF8 ?֙B Bs-D8ƙ=Zn1tq$e|be|*OT~ĤH\'.Û#2>գ2>狮2>ccTƧ|Ԇe|p2>Uc*䱌1t;?O2>)H\Ƈ2>#3aS@'SSoMe|٪O /𓩌3u.OTn*.#عOLOLt\G:s.#O2>?) H9|.S?,e|R5\'f]G"c2>12>1ЖT9n@\Ƈ2>2>12>d*#^c)A4 \GMs~T*p72>ڟ:2>eRe|z.#9񙧎9.3kƄDLLA3_SGV TGe|s`P:e|0Z/2>JF /S]jiK.)~d5Y_y~.i !%Ywqڳ=ӞxN9F,bl.qiɑQ-{tx>ov`Wm>UIkӖ\};.{wtaOR"Qiۑ_h8 S %Br| rBRF P|" p,\Õ6Jap+m56^ 6M&xg(F7ڇvowoZ2_tw͜/ c;ϾN%eJ/Fcp5 p^1ڷ;7up5Aiߤ_) - !Pc B uFj(!pk4FBf!}:3ͻO.1H 4="?ګ3=:cO=:cO=:cO=:cO=:cO=jT 8y!nTNyQ9c6[+1X~LJnqۘIRzmLwaǨP4=pOsPBP^4-Τky@U^5C/=`#l's"?Oi=iO|yQvG{)ukَ>k}?r#"|PTWs‚y r)}y%by: UJ"c}BP#fٿOڅSj(n y 5'hBp5>#kth,ݗCڷ;7(Ly*d_yJ<`B y yjz;07up5}<[*O΍<7PJ/)J<}^R]]Kdt'-][zIі"[-%E~R-%Enb޷I޷YT5{z^R'5{z^R'5{z^R*tfz^R'z^RI" f[K,]R/OSQKuEH2e:ZsIԮ,"I9咢D%{r^R$6jJ弤N޷)n5{z^R'5{Z/)]%Eyd[KRظd[KTS$}Iѵ^Rl뼤KyIS/)n%EцiO%H2 ~^R$+&_KM.QT/)n%EzIq;/)rWKyIQjȗKyILQ]RZ_Kxv^Rm8/)Sǻ.)ʼu]DiCW{lˋOk^⩠D0{PIgb&ȥ;&,Ks-0!P1_۷BgA CA[xinDhqsa.'hza>~ a _1B8 =)VfM7B.]a\T&0" ʃ+a>ʸk޻>~dW~Լ;k԰ ӑͫl(t<yQK14/d$޲v.yAg\<\!AewMc}})s:Y=A.lVKZ!c#PIÖ&Ue̶Z.5o}ol 21|˂j߸5WyiM7AG%lfIjy@ݾ}G9s?=~y{OK+i8+M7A.ܫO{| 2$  5/mk^oT8; 'OZaq!8x)^&%~K8y^bq4t|jytC@5WeAp17jrQl7&<&oLx$g[&"%g[1j'g[1}Vk#҃`M`Mzn%Jw+aV[ {Jػ:⽂!No+q~oc { 'z[qR-Wtd@U C)&p /cRhSՂ0 YA<],;^woy{[w<5^'p^,/y55'Ugu2C;6[vl_mn{ ]P'f#HT=v{n(Q'tv ]"|B7n't jlnu?nuN˴ x\CtO,~o=={&{&gyVz=#gyVh\o@u-뙄gw=LgIL3Y'P,j+3kl[aaE|=,:^Z%}2$>$t8wrI|oDЕg.OΓDΓ- 3DcN5@gw'P]O?ńńbbDDz7PyS"P:6XKn ӍU ݰW(tpY N@@Sm "!AA/:򋎪S L[IgJ鰕txVҁiyqg>W0W/WYMU`$]Ap idS!r)dӒT~[vr i9紜@-紜@ޔtTܔ|Ź)2>禄9-uOdӒpqNK3{9-'Pu9-'PsZN 3/y~3/ϼx~o+`?mg^̋X;5 z61R7>c\|H6|HJ!SSK@;[busUlPvnOsnOӹ?Z.έ @έ//SlPߠñAٹ7Aέ%rnk>+SJ\$Vh Ebվ)l({)3N9X9dD-QLQk YAI{GjT ҫ,ggb"z.{2J!}ێ,;n8 ]Bzlw{ 3g^GRDRk>Oګ!QE2.2ٝ{Ycn.w, άuzan#إnuXgG^`{bm -3\Үu+ھbLeʔ#xدXuKpYvkVAnt2js3a"o - -\~AD>-6YffyxLh@o4s3ڙMpvioT 5=l ޵gvH{O6準4NQHۂVL:vv)y}5v'ۇț Q5{td"0i_1J#a"ڪW},'#4zVzJ=>՚` DJ&L62贕lzh6B̶VZf.s 5L}ZG!gŮl>vN~N~N˘iiii7ndNv;FvnVyVϊμb;B5UD{oi;k֒{î[[ykJ~~Ъv&}Lf ژ>Z1jU>4F& AM@pLws{[1L91 SS#1ژѻG%̞Pm-0ڙ?Z IjS6!6f:?N7>vfkm̒K ΀׫&B3Y#Ό֡ Icagu;iۊ[~f׾g̪B|f^jؙ+^+n]6>v標Xpcުr2jc3iU fZOgEjkO5A3G4"1JB;tfVjFj5ڇP3BF$+pgqTRiF;ۺ^GLeT+;5iVjBhgcN5˄W\g1\=,r&DvJ&a\)+z0W\RgճLjWH Qv̬@T1mHOfF9y`ބ9sfF9 TzUS˶î@旕z5̅zծ^)QꙵQ+MNENay#PMfWh DFh}37GUhW LvftW Lv'Z6f6!9>\Z=1jҽĨɸ'FK;BD0Ǖa̽^J0ܾWD}[qW]Qxi\ǤF8I2efҕWuhvsF{^5C~8$o" 3vڥo&#ṔX_Wl߿;oLlzŸ^uX>̋Nc&[ :=F S'BHz!jF"TDZUV-)SgȍZb3{EE!P3:Cf>u2D-SڵR!jFg"IdVsnܟ! xޭύ6#z:nܝ!Dhv؝!Dy_tz'Oݻ{W]5]#w+/xҝs0z0GHw¨޻6Z޶emtbLweՖYw>.!H.ٕHcl+޻t%rl]ڝ̊{akxhi>a7i&[GVNFޥaTg^,wdq&BUu\X{\p{\X{\p{\X{\p{\X{\p{\X{\p{\X{\p{\X{\p{\X{\pDUݓB( BUDj,hc*N 5aΘ9wN+-DU!p;+UV jZ jQ3BzÅ^5&y_jb.^hiڙ^B Bd 5L}5G!jfI,ͯTY^gϫ,*zNʤsZYH=gsZYH=gsZYH=gsZYH=gsZYH=gsZYH=gsZYH=gsZYH=gsZYH=gsZYH=&Rhb,:hg7#=: 5zԟn86ema_Ig<-Rf_I'xHltQUxc!h37]Elin4a.i@Fe#]D$}Q )3MH:?e"TGɭ7C =;B}TYAhg˰M@aCjFhcLW_0[dV01(U3DhGhD^#뿆ygu+/?㝆 DɉbwYA JCμ+gL6 L&"3r"6Pz,ph#μ /*&0j*FZQ=BJU9՚S1ox+-Bj] {^eQi7"P4)μ Ӫ0j*)ZZ>GYvh#lkDhg}iژqXvڙYAaM@jBYG蓬,Y)Һ1Ze  F3α=iтtPbD]v( ڙw>jSpji:cTYmLa15)ĚdGZih>Bh q`2evȀ Fi Ov\+f\&J'DWC1D0ڙD0ژhF;hF-SCH!s!t18DxV;+]3ۆ>Ov&L泭n}00ڙ㞣<@0ukeRaTޑ0g'Bj&hf6MEhg+(4!vYAaM@jBYG蓬tӞF;S̘jq Lr.hcza10ڙhgi5A{J/K36,fFlZ$fyAZ7R4QU6f׷QY[gL^}VZvlm̱[b3>DQD*dQ=Bf ATk1 7aTkOӟj4^I;*q>O{o<}lkW]h 2@ rwϚ9 '"3L݁~~q= ,yBfT)Fͬd}'P j{)i#-Bze}2|D@`sFGrmѨn)3UDqԳμFo1ڙKk F3(B Si¨!"YJzN07ۍmzmz[[B0BHk-To BTo3ۍI6ZN]ḠuyLHo43 _IU"3_Fhg NU"0w9!jU5#d Bͬ6pӒnѧ69dF}jV%LuV jFHxY10zꆉPwpP+_/q|o#: Qa$R,7$GXmLGOklLvf>GV߾þhgVnIv"L6fMMyL6fZ͘\ 7l!3;3M؀~͘RI!1F;,$^F8WNXeu![Ymy?7V2efcK;4_+ƨyOFD3F^}9.:> μT>m̱|Vg :_bHN5#N5o^ j4SMPkEe1WVZv2ߌB;n:v؊hB hBFjFȬ2Y1+Obi~%z]^,@uTL_"_\EBU߄μiz^i3̻u1BltiJ>j ; Gys] P=+Δ"Tkc)goES#g Ou]|]`E^d4~(囼'B{v/|ĜgLi'L^WGP26 X;3ܬv8biu D-zVS~P V$y\ݨnDo3LP-Xo+VLL5\ch!ճbTo3ۍZ&o$T~^dQz_qyܕuқn(QU }Atۋez_n{QzŢɞw#wfLnizE Qտ.\OyzB0Ug#cIr=gm/I9יjBfLϤ۞VLgnTڍH; U&P3j 'PÌ^oWmϬO1t36al#L̵',s؊U&#P3o2+5̍t3 ɤ۞>1t3V陧gEbah#s7e^u.FU2AT̳Q ^~J@iHA ,Fymh&X5HRK2ա LEmfl#eV^ ^j 鶧7v\\Y'5!wVa ,S#K{w6=u~*N+wd],lB\=I/9e<:+_A 4+wOg^r&BUU&#Pn2+5̍3 ɤ>13VW%u%@M%5 FU/ CCtHW#MF(@OJtJޛ2%g4A%g7dȿvdg!I|dg!I|dg!I|dg!I|dg!I|dg!I|dg!I|dg!I|dg!I|dg!I|dg!I|{ՓI3KèeQc`5v( Pc 5v0j쐑B^vVՄhkT'ƚԌ7fV|COfe@&j3L7"Ԭ23B5+ B{#W7؃K ڙwv7=C?DDh›k f"3r&Q34է5i!jFV !jF(5ModMTTY_jf:mES#Ŕý~0i!ڙCf#-Dub3̡ A0 P#^5#LodYtVtqmkCAkڙ5 WҘ5FX2O>CuՊDbF^z}gsw٫&1ژm܏3ۛ40̘=՝hgѫ2j72@zφSK&Rʹ[Sg}s> ~>Pi|מG79ّ/=' o|N=[.uz%z~I86I>TISFsq[8nD 7@b} 7bG(~U-c[LOЇ|0b(}q?-~z}4¸mHt{/bY[z(57'Jl}s9j~͓#hG^?_R=Ho/;$"߷$ ¾r?:saWizsb EG`/k}9;g~޸ztsҏTl_>eq >O2o}NL9_gw+9_}S7Aϑ%>c8*Κ#Xo|qD|Tݟ5ωD~o,{=dY̿~y{-d~f䇼ss/A]ex%+kZKLz)?kMiZn'}wkÀQLKP-'q3w+̒gB3r$-)\|2ڥMywؙUY: %c`[` ƬI[)Dhg}>;XO{~"/aG܄9FVd~T#NP5BU3vV#mT3+U` DRfL6uz"-B;X勤F^6q2+m̵\ŝM@aChoZ ˹TL*4F;sXA-"64-]lEhg ,.Ǟv0ڙ֕,>maTAkm!jjKƨ6(7z탨co!ژRR>6LES%+eĎ<ǃeg6fw )D;>NXi.&Fs|.4\Hs!B‚U܊@U9-,,PdgiYY1`gu-`TiҾ J'"T >|.4\pپS7rn=!ڙs1{&@UsD NE Y !{RZ:AHkAYc5!CYD,"j'YDf1fYDdyEq}&DUQ ,H*w!YDL?3mdV6>+8^hijB> BU(n 5L}5G!jf^I,7+ӫ`e"f&)hl"f&)hl"f&)hl"f&)hl"f&)hl"f&)hl"f&)hl"f&)hl"&hW*6s1LvGeu*'-D{o _}?xߟ ۺ:JbX&@3s:CFߋ`3}Όgu8Fj!]aTJyUtLy/Oiڙ 9O08")pqQ0dl+{2_3ggg{˶ QŜ<3ǡ\^J]:uSRjgu"-BZ.!!a>7GKٙv1 s&Dhf>}7a"1p۠v>ѧ-1jG~P#ڑ0jF-BͬM@܆e)Tޠk<DڟIvjGaw2tv#6a +%gʼn5uj*yjI㥙)/8o?'=e bx ,){μGbFhg޻}ŤehgޫeĨa&i1jMWG,YҾahan{z^oŒD"վHoڷۨmD6}ѾjFoڷۨmD6}ѾjF/2+n ,b Cء":Ct?Y 7z>!j{m&5u !ε5xuj0Oc0HszV YaP#>2'Y;S܌Yg )l~Ovx'mYU>gL͊US!jF()iSEb"C!9_d,t06'"uZPZ?op.O>?|BD%w ?Zn6|u)AhglT,M'K<;iڙ=6>~xs3&_Øߴ-JG[#(]ZQŭ @K95N??-oX!%\'` > :TB~&U Y⣩iXFJa1sqR,LZvfFR퀕GG?-|N/g.y ڵ;~ ''Mlφg+U 9*T*- =nQ&"3{!3ǵbf9VjFP=Bv!Tϊ]}Ky?_'ܫ'=P""P""P""P""P""P""P"SSSSie=O[іٽ_}Q{Nn:۱]w͋7O*oCzޮ|qqIگ}X_C'k|]7q=õH=\˭zxb_EZn=y^A7vuЋm?|C;~vum7q=/\rn\_n{}9/ׁuOˍ-r}^_n-:yz + ⽢x(+⽢x(+ ⽂x6i绮6^ب4Cn^mOƾq>͋n?ĺ'kwou?oB.{?.ɾ>^+.kuKxc!{ˉˉˉˉˉˉˉˉˉˉˉ}rZw+u:RݗK|~ށu:~u|sy\|) endstream endobj 2257 0 obj 43007 endobj 2408 0 obj [2258 0 R 2259 0 R 2260 0 R 2261 0 R 2262 0 R 2263 0 R 2264 0 R 2265 0 R 2266 0 R 2267 0 R 2268 0 R 2269 0 R 2270 0 R 2271 0 R 2272 0 R 2273 0 R 2274 0 R 2275 0 R 2276 0 R 2277 0 R 2278 0 R 2279 0 R 2280 0 R 2281 0 R 2282 0 R 2283 0 R 2284 0 R 2285 0 R 2286 0 R 2287 0 R 2288 0 R 2289 0 R 2290 0 R 2291 0 R 2292 0 R 2293 0 R 2294 0 R 2295 0 R 2296 0 R 2297 0 R 2298 0 R 2299 0 R 2300 0 R 2301 0 R 2302 0 R 2303 0 R 2304 0 R 2305 0 R 2306 0 R 2307 0 R 2308 0 R 2309 0 R 2310 0 R 2311 0 R 2312 0 R 2313 0 R 2314 0 R 2315 0 R 2316 0 R 2317 0 R 2318 0 R 2319 0 R 2320 0 R 2321 0 R 2322 0 R 2323 0 R 2324 0 R 2325 0 R 2326 0 R 2327 0 R 2328 0 R 2329 0 R 2330 0 R 2331 0 R 2332 0 R 2333 0 R 2334 0 R 2335 0 R 2336 0 R 2337 0 R 2338 0 R 2339 0 R 2340 0 R 2341 0 R 2342 0 R 2343 0 R 2344 0 R 2345 0 R 2346 0 R 2347 0 R 2348 0 R 2349 0 R 2350 0 R 2351 0 R 2352 0 R 2353 0 R 2354 0 R 2355 0 R 2356 0 R 2357 0 R 2358 0 R 2359 0 R 2360 0 R 2361 0 R 2362 0 R 2363 0 R 2364 0 R 2365 0 R 2366 0 R 2367 0 R 2368 0 R 2369 0 R 2370 0 R 2371 0 R 2372 0 R 2373 0 R 2374 0 R 2375 0 R 2376 0 R 2377 0 R 2378 0 R 2379 0 R 2380 0 R 2381 0 R 2382 0 R 2383 0 R 2384 0 R 2385 0 R 2386 0 R 2387 0 R 2388 0 R 2389 0 R 2390 0 R 2391 0 R 2392 0 R 2393 0 R 2394 0 R 2395 0 R 2396 0 R 2397 0 R 2398 0 R 2399 0 R 2400 0 R 2401 0 R 2402 0 R 2403 0 R 2404 0 R 2405 0 R 2406 0 R 2407 0 R] endobj 2409 0 obj << /Type /Page /Parent 1 0 R /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /Font 2 0 R /XObject 3 0 R >> /MediaBox [0 0 841.896 595.296] /Contents 2256 0 R /Annots 2408 0 R>> endobj 2410 0 obj <> endobj 2413 0 obj <> endobj 2415 0 obj <> endobj 2417 0 obj <> endobj 2419 0 obj <> endobj 2421 0 obj <> endobj 2423 0 obj <> endobj 2425 0 obj <> endobj 2427 0 obj <> endobj 2429 0 obj <> endobj 2431 0 obj <> endobj 2433 0 obj <> endobj 2435 0 obj <> endobj 2437 0 obj <> endobj 2439 0 obj <> endobj 2441 0 obj <> endobj 2443 0 obj <> endobj 2445 0 obj <> endobj 2447 0 obj <> endobj 2450 0 obj <> endobj 2452 0 obj <> endobj 2454 0 obj <> endobj 2456 0 obj <> endobj 2458 0 obj <> endobj 2460 0 obj <> endobj 2462 0 obj <> endobj 2464 0 obj <> endobj 2466 0 obj <> endobj 2468 0 obj <> endobj 2470 0 obj <> endobj 2472 0 obj <> endobj 2474 0 obj <> endobj 2476 0 obj <> endobj 2478 0 obj <> endobj 2480 0 obj <> endobj 2482 0 obj <> endobj 2484 0 obj <> endobj 2486 0 obj << /Length 2487 0 R /Filter /FlateDecode >> stream x_-qOqm3pUDJrǒ,ѕR)B21nˡ|13`>﹢VYi4 p囓oTܑo-o(m9TV)Ucݖۿ_ukyyηyoEuƿco~[אB#6t`ؖP*6=Ԁ٢弅oG)_aOo,VbWumq˚j38yF@YgJXWWUS3'֠~%'[\{ж=|kTO>;ciTF1o}KWST?1Vqb[kyĥ?o]w)~~[|~۟'eG.[Zs}ڮc->=BLկ͘WUbXZGژ~Gcxr2 ڤMŹ993dX|e"f_^뚜:%lUGŖhNa橒T׿:8ژ[xgV;Qanehd0sVILI,.4N&ALJP{oNfybU:F\}(ټcq]odjj*”9Įͳ.O&C3U3 ڤ]ݣN G3uc7n'JCնVЀ*RݼouP%OCL4TUcpTmpwL s!vw26 n-uH͉w:"[uXK `[]yaHgL?\q>&fX53)ޙ./j"HMl&#QMQmږ5W8 ¬M+sT9& fq!C_w2zWbhc֑Vb99Q!U Ucw[ ׷w7Jk<㣍f^Mbfv᝻_Ex=]0$qz`h ;7GW Xsg,πwno_#Unp݁Íױ(. nƾt[C#36b6`-3um`T4`m`m7/h]1XAh7- ̰2 EԂz.~rtMW') [(GAXCJAX.<$B@XELA_ wv>NAlw# ڙh?/r^Yܴŵ 9+sy䑢ʃݝ JZ05Z7GU2EqIP\my!MT1sTI JCZ7*KL*+x!9[ecf{IBqp\QDc zseSpsb[Z{^=:G}EsUR"-b͐"kdHt%K-_g%<V^t_:=Vj _Ԩ9:Eay15]RYMٻ( U6< :_măG@乭t&Zo@ԋsi>Mu.?ڌ46IʫݰEc $a}6xj>$@ы춄jK[goaC_j_Ty։rUʫ( qLx ^*fal#K ~e mm.V(1Pr!Q_o@Vm V703=Lvr2 ]e\uA !7?~kL$ ۉQeY(-V1pn!ϼ'pu* G -BϬB&pR=ֶn$5`΁f^OÅ_R2ln~m!Ku1\_Q[{?j+-$-CE#uh=S*pk;&9ZIMv xƾ-&05`-3L| X &z͑YW2S7\+.Nh Gsse8!6`gn_ wM?*ud~ZOc&˳7;ynb55`jk;JG-I~HffgOfSShFQh޹5T=r4Tڀo= 06`+Vn# &.u_23:ُjϞ{Og㙧D3&|w\c㈦&&p*&L9d%s'E)6G~eRfTc3ORʼԨD+wWoHe鍝S 3Tjdu䒵KV^q۬1Px> TgƏ2< oq}Η{b#`㭽_\-WƘ{b_Is=tfhq %iaYNbݰ3ۮ>MPc-< 6^UoЗ =(<<ke;‹z5wFįz{T<^(p=F'Qx5sQ/Rb;(]#y`|ɏ hgٹ+G~w(x򘖦ڝMN9'QODGq9|#$ h'6^n" QN/D(;#  M$` ovRW2d+~; j{!쓀z~^W 7~:Yv' EO /~!GJXn\nF+'2N?/k߻֯?]?WEzq5[b9%H3i&XykvLD_=su| a}`}.JV$(>>1 l27^>C:Iq]kB y}lGsӿ݃“#9 (<njrF`؎`yǰL[l<׶]3y؏rVW6.SRUh F/v@lwki=v$GevBՁBz4CQEA(?@m'5Wͼ[9Wf_| r*QN'(_.QNIjS];ʮ-pma׳jw o]yޒÝ(;{UqH=x`-f D^LSNA^3 hg(wUkX{k?ez$OE;[)ʮG#`ㅾG'ϒ3w@ B}2Px- w_< o*8“=_2J߰R~(' D8@lOb+;#Gu]V5mpr 4rJsMw>'}-zi}}d^%j7TeWMSreTt;P |#UC;ӳnw>'}~iujDeY|>6^1Px!\SJK l'Z*?@Ibא|GA l<3Dx@lG K G'wՁz!`㭽n"M3쌀8c L{Z酀؏T;lmW~t_*QOxg^CN>>'}`wV'k g o(BK|_~+2Pxr2㼑@ D`3팁^'igsvpBsRjJ?*ZRU~C;c ʩ욀Տ-܅X_X![wc쌀kiM|Ox,9qO{O@y_YW7eH+  .VApk)u+eSgW՛K.}/~C[_:X^IlrKAu{R[+ Fs02GlsI>ݺo}/}+E;;s3jn*G'j/Es}K9J:iTi(yVі@Pe dQ I#+I;,Hu2 ga1ثL% [?v2QԭBP%v(H;JCZE3 Ķ1hye1/TJM氯Hܲǻ> 3sµn[p!,E58Gkeehcwi|k҂ M:P^4IЧ%NK}v”nrܖ$r,ZCo3}^/2_ &]GJζmK}sO}{()-sh^d O.%((x0wDo 6^`'/yr^ uHGBZ:V `/b7 D9% Q/xPx0s[5hJ!M me# O!M'ϒ}} )[fi?d~>5 nՊG^ga‹_t6^;S&~('3^TAUr־ݥB@Ńqxvqo Kw2>h l˒?{sM4} D?3JOL**[b2+j|`/گRw.v/\[U~m[K-FG ^vUwW_g=9R޲ʭǞڼlב9a6sڃ쪼;זsaiݙz'ɼGwźpˌzsYqs i#UBG`kU ٝ4q aVb7@'>U[Aw5<߽}_|؞ T!pTi|%m)(l}t[~(9﫵pA)6f\jfZ BG暶.mɟa9m KJg5 L ݙG8K&&ptgnWCF,I;3 nJZ҃xLhc˕?Ll*i7ahRIEҝTI[#yI824!̭9q]q;Stp^r| A-GSAn 3VY{OL>Ѿm̸itAwfWx&bIP%4U Y4n=,^kA).8o>'ݍا$EO6argu-⒚׿{a% 埼[ƌwJ^A߽Qz|6-;k˲64]#;w[۫Oy%xNjym gHy@1K̻/3~+{?\QimB=TSV׏[I3/lܭx`+4{^h`׎Ҽr B^^{ޡUϸz!`]Wv_|vWQD}[(GΠ  ^<0?R_|yw9z AjgL4 GْZN6^=Z/l/DۏJ_aejz)" OjgL}B#‹gY־ˇWkH]pg_SN&ggr3,[OjQVxWVxڙ<ch l<דd`+P䷭dx/ 3p?7W0}Uz&݃>Eͼ{p/2(g1֫ >cylX,9W.gܹ݆ٙv]UJN k?+x lGm} lc`.va8@> lLM 4ұ7} \{C$*j|r-JrPN9(rvO>wdki;#\CR:a^q%Op) +c`x=Yr/q:-We k C cgSO /~%仞An'[< ].셁w],셁 ޷`]5>侈xWa {pڥ6ғ3d`+Q]d5]3p/ /Rv akf=xpd}הi6UF lh><^#ҳpYrΩ^ NzȠ l \?Er#=(Z+V!i%'>}C?ߗB[u9I}{_N[_jV“ZGG~'ԧ@#`뺣SIKT_K9g+WVWGΑ[ݵ^d~5ݵ5 #_ʒxu&?`џQPxu l<ɲa;PB_ZuE wRp(]eKlW+-=]ەE[B7 oY!@vDlwe\j;#`][]ɻX ɍ"^e~~y2?橪x578=nRPx>0獜oEj^WZN6^鹢8g/hǞ:a2eg>~?Lt;PxrGƻh}Px%ڐ,Wj)E+yZ[/X^dZpȝG@Ix.)o\d%8`} ? p^L}Wk6B}3 O)>)<6S_%.ѶTzB+O^Jf-/-)OnKJN _1Gо'Svʾ1?vY߮zsM5P=OGž^I}5 /l~}ANx;gpu} zmA%oSȫ 9ڪݣlߠB/@,6v-:'iYrJ*$)'gS}zG 9w؏x[.팁uvM  O!I= j[8څ&{*'xW0G}W<^^RTS!s=0PxrSʓk@@뛔 ,?S1B/Dlk( 0>P l^!]6{ W~w6\H(Ő |#oY]C"K ^z lCL(P]5O0pXO0oC8Rًun5W%xgeY!!h %egeٮqzO2ҕ@`I@E\Ӽw]^aKXRBdw(BkPxI$'9w 8I8i^[KV7(%>!U2B" $iBLRaTzU̓ k6 q݃|Uzy҇'ϐs)tB5|nT ",k"o//O8x`;ueifp6jyrcF9G vP<>il%]^~vsHq -ݲ~yca텀OxOR{'rB {Z/SN@ԋ~=r.9ksZ3@}2PxB's({a~Ppݢ}ԻѼD9zvg Ab+`J(*7gK7V9qM(9JPָKk7\{jw6UGv@Q/o~G@3%ĸDŽW(>W8#`㭽wQqQNzQG'4wz! 0c uk*%Dkm~ Ge yyiud=rTO)(u<=ZW#Ww O6ZN6^8q|g T;5 堬|A|Ur2LxVd P)^zpvAΰkIB@kۍo,i}a':#'('O^2A ݵ݃hgJ:<@\.?C0.F~6A؏x}@Mc]3p?%+\_oCc ʩxD9 QיkmgD3hg D#  O0%%ܫsgAzyA%~Cb x#‹gYץFH7Y^5~lln? a yrLi9)x!^0Ϗ(ח@PŶ ruu7K:;o^+(pݸrN NBqX_}) >\W??L ^jXgU1jr K%#^`"5 6u9 lQyOPx vPG')"~HgxaXc`+q]BȐeeE.z#yyD9U# ʩ/\pFA:QNX ֳ(<]:X^nB??`/麣B [Ap/dD9 $&gpQٮ. DkzQ/]vǁy#R+835KdPR b쌁‹k?˥ylk(d`+%g D'QNwzA?< O gdLqQNk^1Ar\|H( |lQ쌀('y^A ݑ'*(>Aa[6g^ 4ߍ«dulJZ>* ST U╴ }b?8,([<v^b_~^m2QpF2c!s^]3K3 3;m퇩\ g(ژh;U{QvmE721!Wbhc~M0T1%Yf3':N=YULxgvrQ4abU8VHvOj'n m:ľ(-Cs FAO}{9ژ۰ G5s9QJC0 rT +U얡╴ }b?Q0WuswN_SҖm=+)0dgx9cìm'dh;huKn|fVjhc1pT1aJZ&UBFQ*5)ĶVLR[lJZGZ4vK.lm]0T1%0TIJC4zqMZUffsUrSm UL*gL Ϯ 8vːF߹nK!wReAچ(ڏcz̦NX7[]t{v~ =&Dm۸;5GULXK娒#)* GwC dhcxICJƼnC3/ú9 CSYC4,UЛPi*5^q̜1u}w=)ژuhC=%-C۝nT\hLr/c)-^U~lT1Ws SjG/wAkNaBOiF?ݛCQxOd#Y8S]DS܋dOu9oL&Aq[&Aۍc{qUASiJj;4T\w|}k?R+w*ڒk&C[JtֱKPCmmVb%PTIGQ!xVQ=OIƾ kom[/ItdhK2^{!6f6y댱xP%7zJldhcWPI'Ze UyǼP%& UBFQ*Pe JZ# Y8!W!71)ڒCn=/> ژZk&'` =Hl^t}Rz! 1%kG3ژ~YQT3QTI~JCM(RkI]33][E5Eس)4ބU[ҎGL3sjHv׺YǵuZQFHyIvV3)Dl ItW:OȃIPa(7~neh m):|<Ese=ObS]\샌vDQCw}']-C%8f2VKP+ZC m%_Z,g+c{w'PiWpëV mqs.NsRu"JN Ϙ,2r|Rfm^/R5חzM e~NXX5&O굲!K}ȷ-~oo)y$y cJD`'|{=>=n=b`댱}Xvgh!쓎${ bas|ΐ77coo~67!2p_0cs{쉏UrP +qeJ+eK+TTd?v㮴-wuCwUUnZ~I2Mv۝}f2T/[Q1_Q1_QTGZQT1Q((Q-g,1Abm} f6/7 tm2!hc+EeCtbc1{߇e6._Ȇ=~LIS'ob/EK`x27b2p_jȾ|L=i= Ӓl\5ŒӢ5iΫdkW]ӴfΫ 渶q1ͫd氚UcyU2*iüJQ0qT:9,a5->ʆՏc0i}ٰaZ<hcN9p1ǶN:G3k#U҆y=JCQ*a}S[%Me[0iژ*ύژc_Qδ%0T11TI,JC1T }59F<"w/v4٤z؉\zR)_BkLW!TXIӦ0QCeLJtoE p4R_䞟eѵ.%:핧,|q{Կܞ`ȝE&.r_<7-Qښu(uZìl Gx75k=ȵfz!7A,N緣 bmtk 򷓿*srh%m6)+xnlcm݁K]uek_ai5j>>Z {鬧U׉I.%QLa2rbe;-_}V d&_,>:_4r}K;XX mוa''O,OHy3WW+Iݱ8b/_.ȳ:/qs3'>6W_T{YSJBV9Lhc^&bsQaJ.Q{gg2TeWHƔ#k:l(LT_ZVGTr1Au1Au1AuH{P]gGP-AaTGPTWAm"zu§T_/H T/ΠSTގAu {P3?\rջrd+Ar!zW2 "ATgP=4ǂeT]Anye Cڃ2ۃ2vT$b[*|{V VuE*֏(xP*ZP]iK- /-V#TNҢ#iA4TKc63_Bk3‚(CڃTǿ9/l=s#T˻OZ:a]RWö1AuezgP=Msaۃ4GP-V&T_ZPTfmAum#P k3AuյZW;5hmcZFwr%>=素v#J(G7=K kG=ꪺT_aigP]յVAttkc:j= ?Mɿ8j1*#ETqoHgP=7! ^~˓'g}⛆Tr7 iLS'E=y y,Gs::rT1!JZ57sTlXU1O/9Giژ9!6WT01SUP!ZEl> OYx%~A9;|ތ'Ox3FŜGexffXCN[CGjc7f/W[Tn{3@0TgYlS͞NJ0<ЧLcE+2~Hsr6՗Wȩ0ǚ/+TsTƚ/+ds1/JZIW]h";]BN-UmsvL4ʾgP,.U/e;V$$x|9~-- )e Pw-C{FwI_mߘ_d5HopxHUAKk1lgVyҞ tԶv%Zs߄ =/{3)9SCIF[Zڶ q̩QZ⋋zIM~9_#!8;9%UThnlQb/o%/G;x)&6F?JE1]ѷjr$IKeW^RWyVNhR3DQb?-١l1Yv B$Qnkv![Rov͕Cfە([]46P/yU\Yv{:2p(V$SRex*_]Rx6F{nUno0yj DR'uaTF~Tѯ*Ow,pW/lg{Ck7w7D-fi)3mA$qIRN=Il:n-ֶq/[k:|90K;[Zz̐/2IZ̺l/vOKɥ߫),FHZ׼ت_'R)(]cMXɖ6DrIXٲ.raRN +ժPj[Զq\,bjR{hDj_o9@coJJG=:t^^cSLIKX뷂$ؼt2US ٓ'Mߑ {ՓLaoeq\gU.4Ǿݮ/+Cmt82ܠl IWldh%58lבY}}*0cZ/Ej{ǫQ\WX \$F CES> s>X`-!"A5K< |`!"AFjS0wQN;4P0kM{B7L^rڇRU8 ;c%Ga7NU(jULkQf&=Y fl}=3䏏rP iyA~ө蘣h&C9IxM0EsHOxdGt mțCs+Uژm ULe} Ei35{CUtf4~޳; ‰}睌iˡD4‰h'ND#f8p"D4‰h'ND#f8p"D0‰`'NX֧㐇ѕifs3v3v<7jQPθm'ïb_=]e>a;E9Zf2TcQ1Q1^QTGQT1QM(J(Q-3(84,sg kc0i}ٰ10hcN a$EsL ]).SMS5pZ@Qlm}ٰi-K@e9JZ6+ 11ǾZ9jg(jH2bЧi^ODc4YۙOıJ˻rߐX1%1K0tq]>ugZQ%WfFh1Au9*̱u9*[pc s1:,JZ sҲ̈hdFD#3"32#eFOʌ?)3"~nfD42#'fFD#3"~bfD42#'fFD#3"~bfD42#̈hdFǑFfD42#̈ȌFfD42#'fFD#3"Ȍ̈hdFD#3"3#?#3" 2#fFDco:ȌffD42#̈hfFD#3"ȌffD42#̈hfFD#3"ȌffD42#aZ7̈hfFD#3"ȌffD42#̈hfFD#3"ȌffD42#̈hfFD#3"ȌẍhfFD#3"ȌffD42#̈hfFD#3"ȌffD42#̈̈hdF/Ȍ_pȌffD42#̈hfFD#3"ȌffD42#̈hfFD#3"ȌffD42#aZ̈hfFD#3"ȌffD42#̈̈hdFįȌ_hfFD#3"ȌffD42#̈hfFD#3"ȌffD42#̈hfFD#3"Ȍffi}t42#̈hfFD#3"ȌffD42#̈hfFD#3"ȌffD42#̈hfFD#332#̈hfFD#3"ȌffD42#̈hfFD#3"ȌffD42#2#"3"~ifD42#̈hfFD#3"~}fDȌffD42#̈hfFD#3"Ȍ,2#<ό*JSgdFȌX>-3R&I͌F&LodǑpOg|odF,Ff72#?13ȌpFf32#'fFx#Ȍ !32#'fF8#3ȌpFfodFȌpV XLV72፭ onexc+Û[V72፭ onexc+Ù[pV32ጭ gneX̽iodFx33̌Ff73#odFx33̌Ff33#gdF833̌pFfm}Ȍpff32#gfF8#3›Ȍff72#ofFx#3›ȌɌpf%503B 'N83pF8p3 g 'N83pF8ppBn)Ą*f "7pbB&R`Y 33#nʹͰ1Ȍpff32#܇2#"3mf733b12#33b12#33b12#33b12#33b12#33b12#33b12#ofFx#3›Ȍffe}ܛ^̈̌Ẍ̌Ẍ̌Ẍ̌Ẍ̌Ẍ̌XofFx#3›Ȍff72#odFx33̌FfbfF,FfbfF,FfbfF,FfbfF,FfbfF,FfodFȌ_ofFx#3›Ȍ_̈ȌẌȌẌȌẌȌẌȌXdF43b.lrNOX޻gȓ`'}QH4{yyn Z _ 66k'l|'l"O"OجE<\I"O2yȓEd,$sDzd+Bc(NX_6of3 3 g6g6k(l|($k($gg3lX3R7ڗm}HPXCaU g,a¬=#e}ϟl%L#cbsVt򺝮[Iʫ|,ԼP\ևDhOAUfQr(j%PmTCoxruyT/[sQ/^ۡTpmXiv/V^FS*MtAN >QIJOgd3r!آzL}SA? }r=}*ZP7#6/'U),6^ 8Ad+F$k4?OLKD˘#/h'V'rvsu=":# oKזwWr,xE(:?Znxrqs Z8I) PK&Z|m B,an}Gik,CcH%1g1s䌹&9Hc&XKnfHu:H\,Gl^D1&p^Wth穒bB{ȽXh{V{V88)9)8bNX!7:g,"@@ԋ7:b h(9wcosWl_*JW+]z ҽQH(Vx(VxeA<+F(V~r;C)˽<VHy(w+<S#Q)S˨4yS*޼nAAS~ B ݫT<򫒓ܫ@X^V@Ńvg ʉv@ 5pOpۄhװBAGIAY 8+W\g 8+\sx?pvqL8h!3(Kz[4v'Pf@AS#k{a yt'N?VjB܉'Nӏ>q޹ ~pZNK|wb2\pZMHxcW'9 N'@7)o@p8:"H@HI@ԋ1F)!Sr2/&kB˽hgS-?ޟcǝu?ڠL|2YoP&k2 dmP&A 7('nP&A. jlP7(]yY㷻jkwei~9RoJ*{G_÷5)TG]t1bK"N!GjDRkT^lzg21] d2 *eK972T>׮j瞫;CTK=j L6Z\^L`T1S6Vj/ NU#HΐЀV p] lZB+ɦ }b?xHETfu v;aJ\gX;שŰQT1G?313k,3Wf6<3Gfxf 3ixf699Q!Ui lU-3C?ϼ&O=3`(mZgfߙ9b<3xύ+0&6STPTy"07WP}c21Ӕr{*; m̭7D0ahZP/(867<{&AGS*1TIgp'* `5]d,a5-B53vC;i*̘G[wbhc4gw* m̵EXCSYC4zCUЧi8KP_6o5}EsRI;fU߹Նw{iz]JnGzⷘe-zHݧe+˪mߌEoGQa.f O=ҮFO#-`0^rT˫H OiwHQaZ#-GimLc M`5ZVY 樃Rey)Ј{p56YEk/O_#yMqKhvW,>yQa.ՋqY,]CIPa[ mLfw Nƌ2܈ULv਒Ui7GUG%d2h_ٴ>`N6e,݄j(zVqwn!m^'ehcNb{21sgy1w2 1Ԙ=9JZ?4|CUfZ1ژ62TqJC m`0T1%0TIJC4z`cɃͭ2c6syޮ✃Pa5 UL: ,!R|Bb23ژ;q,hck [U6GRTҭBPaޤޤoHdӆ9zqU񓢪=a9/sTysJCQiݗ{J|Y)>u>MfftUm֩qEŷU &lV}'C+XyQCs0fsT1SsTI GrTj ֊PaѾ mx-yh 11LjG CSYC4,O6t, 6bsQaNsS610W#0p1HiDoULe `9@6F㠡 Lf{R>y[bLNc07amI0rLS!C b~'CJRI{%mbwnc~5BƼ|(ڤ|(߉|fdXl6dddddddA}' 廊0@رkX1Hhc^i46敊[s^/`U4b9 (VHGUx(e6 ayq\S2TJC mL+2,wPG%0T11PԐe V=O'}JtiGG_dtfb2/wak\f0zx9ж}=dhc;--C9N]36氐$56n0T1=. 3TI GQCb7WJ_de?(&L"6ӊE`scn QbF,20Ҫ^L(Dr"V,2JZ+P!+P*V,2Vx,rLڍ FC U ō%0T1XDY$(t`"Mzbճ4g&cmBk0FV((h}UҢSTi{EU`Ϧմ=jZJP}!B}* 7PTP%x* ^P*z~BЧi~T$L.^{?@ŐX~P+A ddUSwLI(-CBR(*f]uaHQt **P%-SPV*ZEUXblZ?s$x%-C؏T=mjO8Pq%&]umo(Rxo%X}'`d;j7L+M7:, ImQ-GSD⣢ GሂŲTTI@CT-VQ,a5->},°ʹͰlm6춘v[ -niۭwRT1:Pam1v[L-naٴlf٭mGXES]@:X(]4nPtdh;1JX9jOfbyp6C3*iaQ!WZrYT ;dW)6ud3aI>Ѧ!E5srTI-Ti}{^V|T̸`B\|X\B;&A, R3.+P(g\V0p@Ō &T1qY*i㲂 E -qYb,qY%,ֵַXWe(hZZe3.+PLi7Cq(2ߴ'Cʁ$ ULg\V0( E iPlo]!֚P(#-C Wܴ Cs1.+P0ʣ!m }=P]9Rff1N 3.+P\X\%XV:: *f\V0P]e+QL(JqYCT(\Vp*B7LÛiմ!cWO*[ &TYb\V0i\V0LҐ7.+ݗ{/+cid%}}X @ |HmiQ(mf &iTLix"4d獌ԕv lҮ9ra-+)voƕs+H`ǚkBdri $tz(CgT)4ʓ#Nf`*gN CIa4sȚP!k߈=K`C9=+Б}+(CgT z,k?#\Suյz{# ׿O[Pl |2* NMf|j'}iFnRMn|Ľ<"#{s+~Å6>2o*~okg;{%vG<66cPY8}s؋z d6>uGw>/so7<}Qz:'Jq&>Dvܚ)ә7?)>!n_ {}U {C ~[Fo/ym=-<}U߆F=>wׅ׹QOfJ#]&ii ZSMw?nc ̯3i. v0;*]砕srcLa֎mLgSHmLi!ژNheu~gF}KuQܶ;kwiT6Q|'Dh;^gx"1~&'BjIO6wc41Ghv{WOhy{3FM@AE]糴mLcr!1$ B+턒& 41!4I4,Ch<z'v8#v[3΀8nm=wL (4F̸he:# mL>Rbs&@Өly9L;Md^눑ڙM̰$c4I[ 7L;4P-s;=d8*F&Ha ~+35>K{G 8 Ǯ*&DZOA[ϴd&B+.?F+SͶ.3ژR6)x694Nghb%Q=lD${ ʤz"zj Qx=K{C=_b'Ò{3{ޡ)c487F 2C}S;whb2C=C=4*=Ф jvDo&K |=ΣdϚd}^枏,qfCKɚ dr1  {Ұghb&;$ CBP;$~/I&e!1z:"u|=u#l97ByҍM?F{6Fph8)px0iu# č0P7@u# č0P7@u# č0P7@u# č0P7@u# č0P7@s#%yrEF=qI8vY77l}~hG@H9_eN#.Ϙӿ/E]G{`QXV%(6auMk㖙ѵ":zkmHaѢ"1kdQɢ"4I,*BS%8*m@&ha.ZLF"&z.g:y-<,4;f-܎:>8m:fjs:Cy$L6x DhevB1Y&@39MF;CA4JNL6ܟ̛\CmL3Ө@41&@4ICNf>j/ʼҚyybMV&)fU m:'K {= k䉫=DSE4*I4!1oDnLʠzԄRlHnï& fd~`R{s)gOܜ~gIx"h`j<NVgns5'4Xny5z0ڤ a7rv)=!ZˠѓƼN= mim-] 0 1zH1aT$14!޽~L{-K4Cm VVi4'N :LH I/@4$H60!%D9 @c+ИPd.w}N'^&+&L$BH I/$BH I/$BH I/$BH I/$BH I/$BH I/$BH I/$BH I/$BH I/$BH +NCھoŭEhHPF~ rk>YwaxrSR=Aidk J.( J.( J.( J.( J.( J.( J.( J.( J.( J.(Jz> I @CBhHxԱC I:vB9@SNM;4iBP`vGGZN*tFa&f>&i#4PeMkN,ߌɃ'Oz^@Bm̱4:0_5w2Yp)F+sɦiDw9F^55hbM҆OM=>`4JJgѠ )F$_tGZ6 J(@40;͎/CEon Cfj1;3w/Ofuu3i1Lm*IyS?ۍJJj[ ݯvE=å-@l ƟIi|}cP;Tq봉a0.CWU\W0ژ.~`{O%&fH($/"4P[QIФ 9Q&TbZvttM"IYv,6)eI0]BF4X鬔^[V3å =,g: p|m=tJۙvme߿է?'VTxn.^Yfk!3r~^*u>MގhU%>>5Ni|x-\vryqm0u<~d?JC5~`mLƳ?㽎S˾1^e9#5;=Ngpvz8;=NggxZ~߭~mG>&;|'{d~Sv=|WOYvCu>.M}.^<96Ntt׃we9㒳=z endstream endobj 2487 0 obj 33358 endobj 2579 0 obj [2488 0 R 2489 0 R 2490 0 R 2491 0 R 2492 0 R 2493 0 R 2494 0 R 2495 0 R 2496 0 R 2497 0 R 2498 0 R 2499 0 R 2500 0 R 2501 0 R 2502 0 R 2503 0 R 2504 0 R 2505 0 R 2506 0 R 2507 0 R 2508 0 R 2509 0 R 2510 0 R 2511 0 R 2512 0 R 2513 0 R 2514 0 R 2515 0 R 2516 0 R 2517 0 R 2518 0 R 2519 0 R 2520 0 R 2521 0 R 2522 0 R 2523 0 R 2524 0 R 2525 0 R 2526 0 R 2527 0 R 2528 0 R 2529 0 R 2530 0 R 2531 0 R 2532 0 R 2533 0 R 2534 0 R 2535 0 R 2536 0 R 2537 0 R 2538 0 R 2539 0 R 2540 0 R 2541 0 R 2542 0 R 2543 0 R 2544 0 R 2545 0 R 2546 0 R 2547 0 R 2548 0 R 2549 0 R 2550 0 R 2551 0 R 2552 0 R 2553 0 R 2554 0 R 2555 0 R 2556 0 R 2557 0 R 2558 0 R 2559 0 R 2560 0 R 2561 0 R 2562 0 R 2563 0 R 2564 0 R 2565 0 R 2566 0 R 2567 0 R 2568 0 R 2569 0 R 2570 0 R 2571 0 R 2572 0 R 2573 0 R 2574 0 R 2575 0 R 2576 0 R 2577 0 R 2578 0 R] endobj 2580 0 obj << /Type /Page /Parent 1 0 R /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /Font 2 0 R /XObject 3 0 R >> /MediaBox [0 0 841.896 595.296] /Contents 2486 0 R /Annots 2579 0 R>> endobj 2581 0 obj <> endobj 2584 0 obj <> endobj 2586 0 obj <> endobj 2588 0 obj <> endobj 2590 0 obj <> endobj 2592 0 obj <> endobj 2594 0 obj <> endobj 2596 0 obj <> endobj 2598 0 obj <> endobj 2600 0 obj <> endobj 2602 0 obj <> endobj 2604 0 obj <> endobj 2606 0 obj <> endobj 2608 0 obj <> endobj 2610 0 obj <> endobj 2613 0 obj <> endobj 2615 0 obj <> endobj 2617 0 obj <> endobj 2619 0 obj <> endobj 2621 0 obj <> endobj 2623 0 obj <> endobj 2625 0 obj <> endobj 2627 0 obj <> endobj 2629 0 obj <> endobj 2631 0 obj <> endobj 2633 0 obj <> endobj 2635 0 obj << /Length 2636 0 R /Filter /FlateDecode >> stream x]-=nv?\&Z] i$9ˊ_\)<:gV&/l6 4p{}T)Ywg?hd nmFw/67_`ǟmgdvHTc)6[_[|#ۗHۗ?i~ӗ??+BC7ކ8RBj <B[yFWw5GގĖ:/*26^O|G >/8w=mDί]QFSv]@]_6"nuQc속+FHi&b9vu{qPRQw^9lԚȭbz痀L)ǟ ,$Qb-i߶H{c)~?Rx|_߿/~qQ!ʃ#k+F򆍅}+>2 rǜPfD<)vLei<Mna2mTg#|f'$C|oo` 8W.uTf9BAI772@wS(sS*i-p\->Ag(3Y N*P5Uf';i'fs.FIKm30ҷ"M^C-ZIm#]lyR8}i,mlqUħ> !05m8XAJx42#5y353i 'uA/nwvA./.Ӗ%?gRe&%psgF]v9FI%Bylۃ>}ЧlwBLҒQnfoUL1{ۨVM6ZḢ6zEL64A1-TiBٛ]"zU)ڣ{y,%bynV6ܸxD7n6 #d fnx!ެNmqsx;5WL2 s=p5w}$6ܒѢTJe`6}Vܸh}# \1g;Y|)XI }$uCs-X82`=t[Y3:^@o]@o]@o]obop'lkT/&!}= Wpƾ}M'x#8-0 $|a^w{w֕>\P.`&(g4@M_]9SeLь H<[&(Ŀ;- &(}xwխ(u7gt|3(7{P1pD"zte$3) ݴJ^8҈',\Ex<qmLIGQ[Z `6a;9;7hJmāx&PʹNn@. D{x4w4@0ӢY"!= <5oB%$]¥GFb=׃li }nMM`'S]:XlXpܴ>aK p]7ax6}fEicؠ'5Vx9"/ -us !XuWG.[ .`\AuY`RN"? F RQy<ܴ~~ў)|ϛ~@ggRC: ǃ o Sä"0iȄ Jz Cy41V^p TƺK~up&=a_s(fM*#0EpԛŒ.g lYdgۺ%YછpRvM|}bVNo^ЮKZ%?J}YK:B[G-mGxXܒ uQK\m4w_KoL-3B.tqqj W&u-c[R-xXsŢׁbׁ5=G.dy2h+\:S)Zpvb+|]|39+Yn+Hv7Hby ryĂybu`9ׁ Cx5C?(2l}s%KQhn\4U{ZJ; w3kŒځu[e>KVֺ!ukz,h-ُYj3^lʳ.VL-t;W o_4v`;jRw"FS,mT+6*[I.mT\ۨĶѧkm8I5*VQ?qt6P +tec8wl0tV,x!=C xq^b\/3@1.aGͥo ԓw2 8b:\U~Bk!Mǟ>`l}j<Vn[,ǙW>m ^l1hX+o|^Ig2y3D` (yH|ʃ.yu|dnw>W9rlEPj %mHTx yvAQ':x#/1ccMyiL%e ߖk <9,PʉS7A.t)72^[w(LAJN|Q˃,~~Hm2/ÃƩ?F o?Fށ-xy0&a]b.ĥpHngċ{ yeTu?w2/gEke@+&( "ǻ~~W<z&L1oXniě:FB_[J=@ɓBūuz =K6B.^[SR2/}<|گ[;Bi0<$^*(;Gsr}f̃A d16*)9 yW.ȼ4j~0@ɓM rJ{e(=3@rgpJVbr~> xǗ5SRgH<.z>W9rP!bjZ "~ǭ2puqk;9@QݹdF <9,P)(E~zfߵ܃OJ 3@%].H/ PYSvQe?qkO{ i` ->- r\ky~''{{oI,wq|ޛ"Y&ΝWD.ToMAu23so՛[&ڷץǕX 6:/ _>*n[Bkn Ku-g>Mpl;I( {76f+,Tm)gOz;LT1>oHvBU Q{ޣW&T2*٣rX!=ɼGiLeTLm̘G:2N=W TI[i'T>U}5PfeܴjyǼP+7i_CAvKKǻ>%fۖ9>hݎkzkOyW%2>W|>7fi-mfM UTg3 ɷ'-v_K]0ն@h!W(hq+̄d~՘О!moOo7j'pgRS3$P<~~0@|~~''}c*)9tnw-P>Ov4vP߇PUZ ӕ xHWΔJܴ@ɓJ9|f]T3Z%2/..x;fd"l- e7 |[J@QD?+|YεWi ϓn] iWϕ# TgTtc+.4Neh2t>X =/O;] VJ;m0cHTn}V|{\׸<{cC<}OtjFS[&6h59I2g.{P]7掍6~Xa6ژ)s2F.ef͟]G,ܜQa#6#6ZHlڨnJ4@iiK ^\7`OyW}ژyoyoVZ T=S!بjgޣOM==i }ϐew Us6fΛgzj! m8N-d̤Le&U1m)BdI2HFSUBU 9BUmJ4@ii Tij!ea=Ɨ5Q yżAp.'8M'oF6f9E6i+~[$بzJW{D},kE ƬWj! e&*mL"4ژX|2efWTYQ͔bJZ5kZ(kջ9BY-p{ɬG3;6fgDp3X(3mlbImг.E*6~ŷ*!Uj5Lcy3V TL# TIVtZHk^A64A3 TiXG2P5D)Xt߯H,:c/ -4;~{/]ϣ"g4ٹw| 2oqݕ /{K5D W)ӈ`r`] yסc~xzի@.}R2Eѧ],Xūv@~^>˞26>U>{vՌx@Բ4 [-2] y8Zs }*x;m/ z`Vi~>Wri;IY`kn,1 iϑ30Luў|=G'lx:RzmD bé`~''~F>1Pp5E_vO $^ԣxRn[4%yVSRc Ӂ I}@.Ge5,wѼorXSAkP+iۏG\;U;;f|UU8ۡY#\? lt<m;fyuwUϛAn[yۡ`#^w*q M} 6ki䤀n4aFk}2JyԲ/% d^i j^vYrw>WyrqD5sd{|q=O-y0m~7@>*].9g&*S4 fGRKL?gc+A?;\lj 44ony гs*U d`9  y])+&ȼr}wG{ƭrYʈbTrF=uOc~<;kGpw3@Q^Q y0~Z R.xȼ<*@<OO d x>Vg~8<$9Mv)' 8rEa? $^(#Z2 3A~oMyh 4A~4\%= xַ&TY 8<3@Q Wr &.ȼ*I r?QCW킖x"{s%ǻ2Ji#Sʔ7 zeve[ILNpS,%Y (?:<$^V_CO 4e[/ad ^9\SmDWP$Uc.93@QA^Miܞa<p{+O?0T?X ?pn%:xȼ45Z (J;h_>ra.t3Ok<|گs?i~Y y) J,x|zJ"zf]:S]?B̓HRFH O!e4A͑W= q4͸t$^+JLx =o<d޵) x_/kK&Hm/g  Iҵ$i̫f /3W<$^Nõ4@q 1.ȼc ~0@<ȼ8Hgy7j6@mEǑ>!Ƽa﮼DS]/Y{^WSșh斍g$'Vi~H<1Mx0My0xZ_ Pm%~wv1ƻv?; &VW7߾+8:b6_OO/owjVOoJQ<Gmҿy=_h, ўT\2+{PJ>h[T<~oJK:ϲggM%O? rRrNl9,PSt6Bt䕲g(Wy׾.9s>iJ? pԂnK݃O~**eTl{iϑ\?\F4d{Z B<d^ wt=Pb-{,:j rMSvn;?-)n>Oȹ_!y_gI)"#_ds^gQ[[}#oBol}^gsO?dqf _?G@{Ȫg]mTY Yqr&HrW9LyW!9Ly J_LP)A" ǃ~W<| UrJf/3$!&ͮsn yq g+~$BrE?N7gRN9,yq!!&(ybRN1A.¯a^ c2Y+$\!}-U3(w}cwHk <9_[S(Ew  x(LIg0>{##R?czf\-\K{ɳ@#w\K{9YI@)w-P-qr _Bttn[|ôPN "OcZH [pn7v2J&]NζQŤSmTI[Q!F U-!:-4Wpu*&G mum[ ia$hOӕ[4P/uyÜP%~䵅,T"7-4W2 ^Pք=_sbZx%-I &[d>ZL=gKOS c(Pٮ7Qom(s9WDE BEMTRcQoR/b*P%! U-$5DU(>e_+i-Tߴj"RƒnW r gɝaL*=7zk"1Fo-T譅* U*MPBJ,TdSDmCRj[U6c1޳lI{B F!e1ޚ(NYeS1t+XӨy#>]g i){oiOM=]ZKȯgb3-7' cG tblr'gH_i^ F㮯jh?Mqw4P>;7Z(z61v(s6}8GGoMT3vߎemPslT\#F2Q}iJ㕴HyezVTz`JZ :B8N\yO ef<]=-M>?DS &UcBU DUHϒ*MӈϤ])-8PjzW9ߚbJ3ѧG23ZL=ك Iy-S1LIk"EW}&:[poMT=!mLVSb"P05-d=e U:=T2:Pݣc(1uij=7L n7Zh;<=]LaDk{D9oV^2Qs*ij!&zE~yMTi&O1-TiBrI;3.ҙ)Mal,XI_ԖL+XY1B&qfgxdi3ёltھrmnՁLusQƎ3cZ% &vV)fMӪCHK'ŴPD&k\YDG3c):lTI+gU-$g0U"gM}ʾVL =ƚMIkgᮅ,_ozBSi*iYj!tF=sb>sPY;\k*z&gM^ag׎~?׻//+;Bx'+&z.WiOwŴvl|ec'ʄr@LʹPNYyv(iM^o"[D"WLT1&VjoWȶЧ3{@gt~4PNd B9 ])1,p}paouj U0H;j997-4+e.j23]F(~T#:@RK(P,)U3^QL Uh.d1gH+a #IML$|!oT-kh IHs>es3q$p ;" Yi a:@<^mħ35>MQL%fƉaNǨ&iWrLis*xƭvFe ŰOn}vzk n*VKkrPfL+J,Tl}=Lo*}ㇽV '݊z9ў+8>z7P=Xob:{PAܦJoϟ1hB7?Ck}H;\ w++s~F1_R9xD]P%BwmW<rfoWҁ-v |>q@?_h ڡ+vi[mWv_Wr~|I-SrkIVǖ GXv'|~($B ̪d?zo×!7YG¦r]~DvN_ggq[ި_ {̝t*E9"9}QPu*#1kR74Ra¾S9;wo:.3W%!Ze5сW==~.^=5l[xtzuګq| H:?an.{FZ38y*[N[oGp谗CZA jeu/^q^A[RRI LrzGdԘրgWQcwxcj zX/^Wvەz"G@^ hm׌B[4pz~u; hu4tHi~jjEMflg-ɏ7h*]t08]&Kᮬ'Tm]P(ғgl*S76y<5p|t-d.9[p6X&nrߝb߄<<_>'?UWI~VUkErQ>P};}dw*iq'Y'Ӻ\ucV7`@[0jU\;O2t:6xSۇΟosl/akQ)R8#cRˡ6JXnRL %&jùE,ƴPfX"TGSg(3(E,:@Iؽ~ARLT1iq1Q)m< Z-0:Q+q}>F&5>ͬqT:DN^F,}}lC5k\43g4PfΚ@LU--ب6sQB>{= GЌ^ڷ;7S藯}IQ{VÍ2J>޴2s+W,pch*> jPBzY=-4o6SrDz=kO$gFϮ={"Dvٱ'kOdǞȮ={"Dvٱ'kO$ǞH={"Dri͓3hO)\4Pb}I[<52n%lJjĄc_0-ydHǩ#অ,=)7b̬VsmyxmP(Bi$;{)4PbRNOw]t1-i_c(1ZwHk,i! e2eXbֲ]ڨVhW'LT^iF1Mt4aF&׃zf>wo[-B~ͻ6L#,BT(4J"z;\u^s ըՀd(j6%&mڍil>Kfyi̼*-jiMa2\ЋBۅ^%o%o\zq.yYg %/K^p.yYg %oqYw[%oqYwi_quBׅ \:8.tp]uBׅ .ЋB/ .ЋB/ ׾ЋB/ .ЋB/ \:8.tp]uBׅ \:8.t =;D {" ={3kOǞ(=Q{Dqű'kOǞ(=Q{Dqٱ'kOdǞȮ={"}ugDž]zv\uDž^\zq\uDž^>BDž^?ÅBDž :.tp\qBDž :.tp\qBDž :.tp\qBDž :.tp\qBDž :.tp\!zq\3\S]qׅ^zq]qwQ =׽8#n.tNvMTgy ]H8ɕ&*]RM/۲\5; 6F5{']LYq{ٔEK;{>/J\yF9hnJiغQf^mua̼?-KsZ+_U̲|mTIוFUukJ )R:4yHoBڷ;7yQKV2sկh̜V_*fY6ͫFU OlW-}\Mڷ藯}9yeoPf^^PfcE22n4BSi*i[j!5,Ttfo1V{"8D {"I_g'cOמ=\{"8Dp'cOמ=\{"8Dp'cOמ=\{>Ŝy9eYgVWoF,TΑZ,Tg}'=m֒)|'?hcMA.Z5IQŌFRm7m̼|u%5QbN2Hk̼|7-dĜ|7b̼|׫FyQV?2#m|ƴPf^;sHk̼|7-d\F U̸zmTII~urB32ɓ}_O:6ëˍ٫buy̾kczϜP᛾ ޓMPagaAt@΍?c'Ҟ~\ :$gvQo!Ot:"Ho~ Ag(DB~^'BI dv+tf,.8$/8'i>v^&c]ơB4;dsv\P AG{7nt^ɧO,iIqs?R cp~u .'8NSt\;T#&:%~'4@R .= 筣Iw*TrPyI7@T)5cl}r}-ߧԓ9xft=6ų^X|S 7,.q6S@PyL~e$Qk I#"otm~rTɹrnZY^8EHXg ֣ hQoZa W PM<{g;Jӎ#Cv%> < Lwe<%Ni[.6`&:vAtT҄} `QħȐ/C㘪X,LȚpܔG:54!:g?t߈[wI>iD5$:kiFcM/o:iEЊ;NZQGC@׊oZ1AmgPB;6sgPg3(QK3(AW3(AzrA JԓqZ_;<ΠD=9Ϡv%^9ϠvNi8Tq6X;Ϡv%%Kv%^9Ϡv%z}Πs3(y%3(YUk;q׮JgPbgPv%vN;3()Zj;<3(k3(k;<3(kxpv%!Y ApA7w"A9Ϡ JGe_ ΠazAY8L3(k;yemgP@=Ϡ J83(qZ]4|73(qgPB;gPB;܋TbA JWΠ$cigP}3(mgP.u+M&|xwo6;,0AI!ite ) sDy2IhƩb*/S%t䍴 J%gny{%ОS;v/?v5)/|\<%~@ZF~Ό}9Ov'}?e) ͉VaًFՖ/ّ|L-~ LmH&1#_ˎ|C|3FS,=,9Ǐɾ U*PBjY5-4Y3ZY83zqŵ'cOמ(=Q\{8Dqŵ'cOמ(=Q\{8Dqŵ'cOמpO1odsfV\Jk9Rk|cZK^ꔈYڜ٫ǹIΑ9D`^1uNSk̻6̹ |Fuަ͖f]=<(1*%U(9*%U(3*%JZmΤkfF ^ -92xE^3:=:iጼN{g5-:iN{gu{u<##y "yjguyT{u<#SxF^#yMȡ]T2o{|`koˑה")N1symmNE^߄-Iڮ;4G^yE^ǣE^cq55)-=E^o-; 8֤G^S)G4n-l~\kTyר0-z;#ISkR}F^7=y=)ofӼ+;pF^zyMpk"yWZu8#)t=1#Ix$35k:<#yG^3E^y_-򚶨[5^RYz@lE^og-`klyxE^og56]kjpMkk۞qg>yE^yjg5Ӗy*G^3:ጼn) t匼Fa[u<#Sfjm񌼦(Mz5^ }&XuQe}hxn{#FlחFy&y؄-z;#Jk6 uF=XMY˝s;oΝ6x?̋D=Y):~1KFuMZ[L3Qf^Ո桍s^iL %[}#2V~1p]nCC{;^3рvUy+{nI%7p0N{i tY$ǿ7 8 ~7[+/t|XglQuߛ1_zdW>2nf wF,sL8ڻqӾQTT%3Z!6:R,z@o!;vA8,sG27?sGb'w+=w4S!ƍ-wY;M/l];R™;s)I[rG(h#"Q19w3w:*ߜ#ԙ<+;#l JB;WzH{y}rGoRrGJ8=jif^#Vc,zH,-wQ7rGwbrGkzH,-wosGbi#rG PdrGcz5/ȱz^|^0@;#xhl#Aa9w3w_sGzxasG 玔trGpܑJ4׵ПrGé2-w3w$;Rҙ;S#TET;#Mڔ¾r.y-s~*=yH>JO'}!ˈ*=&̲v#U *=&JL{yEƴPfD-T~RH_;5#}ܧHqy^;>gY} ';?>v%W";bk^6|ywdώc۹#ڹ#+&ڶ.wD#_ˎ||v..͹@`ɑ=~Lv;w$䎬&P #d|bfdAb玠(1e;btrGl^*,a^!,a^ysGD}\MO1Z۹#6Jվ>/wF(3ULyFsG/wFR|L/wF(3e;b(sGDQf玈vW#gpcOϰ'{:kgF/=Q{Dqű'kOǞ(=Q{Dqű'kOǞ(=Q{Dq);eYgVWo^9Rk;"#O9{3sGnqO6r#a#Ĝ%;b(3mΤ;2@|~?Ox<m}/؇OxllPX-,>,{qmwdώh!vٶZ`/8O~O_K`,{rT~!1WPU BJ1gbuTs *Vh9ULoJZo^ 4!iU:4yoBFvG&6jNcXPGrT1Uz ZXP+~Ҿ ~״B'禅,TxozBF,T1}<~ 5ʖvȶf7Hcl1h3zp'cOמ=\{"8Dp'cOמ=\{"8Dp'cOמpPy. ~bVWoF,TΑPڷG؜X#}?V~y?@]~z @ yH~${? =ZZ~~@.`y=I%+ۊ{7t>AaH>>5^$qyٿZӣsll/|yﳴMCcWҊYFіoKv8o}iA;dbosD-}lNܫ-PV`k?=ǿrRtfb_fs(VVF怯mYN\(13ʹPbam\3nr=(3`ş2s v q](1V׃*涺lTJFe mzQ+h/&xڧsԡ9d]kswowoqu(3\6Y3LQVJicuۨlm_6*{Ekh7:dO_I&PfNa,XQb̜&Xb*P)x -G^#BLM%bD>9w2I;ބcNl99cNl99cNl99mN3'Tb9WPKsbA&,4Ӿ>ЯYgVWos> U}*'-m'cu?EyE&S ,~_0`Ĝ2ʹPbsY32sˢ5e4Ek&JyFr3QŔ3JiLTP3^ r3Q r;Ff6lH b}JվѾҤ3Qf.)He欙t5QŔ沉Ji4MTPowoY$&H[eW$s1•W-d̜NJ eԚ`BZ-Te*{El }:37"o;UD3%ȈPP(i̙bHwmLsߧ|s3%o^kAuVMs.dM\(7(3\H%sΔ##ru"#Rt;2"ep< N= 2zNK9ysvTɳ҅Q='ςJI< *\5Tv,bzN҂'Np<:y<kth2ioBčM;jgb&WohAꗳg-=-ޞт^oHi)>nPi! 07b!Z=# )ޞ gF3R#ۚi޾gTs|9Q>wϨxkNcNkNcNkNcNkNcNkNcNkNcNkNcNל(9Q\s8Dq͉5'<+QqgT=NB7g#)޺g.lOOdLOǣ}HgN>e|}'WǃYPA,,(vhiMTx? 'g;˛>a=|2WydOҖ|` %O(Ӌ'KO,Y`:|Tg1>Y@>Y@>8|zd>`=|Ng\L 'SO>Ik Fqd:鐇OM>zdh'sZY><|m 9|TGΝs'3|eqOB> >|w$IRxI-'C^'ػ%y%;yWu֗u‹(EyEu /̃'^Y)/|Oya^'8y'Nxa^'8y,N^gq:yM7 N^'08Guu'Np:Y^ N^'"qOp:fqqש^zqqש^zqqש^zqqש^zqqש^zq7Np:7Np:7Np:7u'y,n^gq:YN_Yܼu78y,N^'yu N^'yu N^'yuGKv̉ D=z\]9kNǜ(9QsDq̉1'kNǜ(9QsDq̉1'kNdǜȮ9s"愧}ۣWy*bVWo˙Tn^gq:YNp:3:s:ɬn^gu:YuV'yn^gu:YuV'ܼNp:'ܼNp:̺uV7:yN^gu:YݼuV7:yN^'yu N^'yu N^}u N^'yu N^gu:YݼuV7:yN^gu:Y?ψ+W'毸1ʼn+W~`_qbW'毸1ʼn+n_qbJg NT.Nkp*^+*^*^Ë*^Ë*^Ë*^k+^S^XŠTV558x Nkp*^ +^ST558x Nkxakp*^SŠT58x /x NkxEkp*^'Tϭx Nap+^S܊T58x Nkp+^S܊T58x Nkp+^S܊T⵫}nap*^[V5x nkp*^[V5x nkp*^[VWϩx nkp*^[V5x nkp*^[V5x x]*^ϭx]oBw 5x nkp*^[V5x nkp*^uq*^uq*^uq*^ⵧ}ŭx]ŭx]V5x nkp*^Ç*^S>5|nkpj[V5x nkp*^[V5x nkp*^[V5]skS܊T58x Nkp+^S܊T58x Nkp+^S܊T58}Nkp+^S܊T58x Nkp+^S܊T58x NkPkp*^gTOx Nkp+^S܊Tϯx ?58x Nkp+^S܊T58!jH r5g`^,ܮ_,C+$b>=Grp10zVռAܵ+ǍRs|GVcw<jgH]s%7zskbjo랹"T;&y33 ҹ w( LJJq.Gѣ]~bs|Ng~>чi3ڄm{o;~̚Wph/Z!ZÑە Tl|QJROSd +>Ft)Uhj1siT;wxWSG|K77-7%Zط|;þsL/#dkFHFH:a!\u3B0BRiFH܌x!!2B"!2Bfaģ!q!L0Bcď!)8wos+Xw4B`8И"Ud#$g-/h| w|Jn,d;I#B {WyB/NZ e) 9UU NUUp+˪‹‹‹kSU^XUªTUVU**8UU NUUp SUTU**8UU NUUxaUUpSUªTU*8UU / NUUxEUUp'TUϭ N]KpSUܪTU*8UU NUUpSUܪTU*8UU NUUpSUܪTU}n]Kp[UVU*UU nUUp[UVU*UU nUUp[UVUWϩ nUUp[UVU*UU nUUp[UVU*UU  NUUUU!{kN8UU NUUpSUܪTU*8UU NUUpSUܪTU*8UU NUUpVU*UU nUUp[UVU*|*8UU3VU%UU nUUp[UVU*UU nUUp[UVU*UU nUUp[U>%8UU NUUpSUܪTU*8UU NUUpSUܪTU*8UU NUUpSU+TU*8UU NUUpSUܪTU*8UU NUUpSUܪTUUU*|FUUԪTU*8UU NUUSUܪTU*8UU NUUpSUUIKd gxᏨ9yuP+K9Z_v ')'4o.Σ-RV1NGD/}'"OW>U< $^-#"ΝgM6N[~`w&9W/qݲ*ˀtFC [R$j <].kՊ}l#[/bשؙ:7v=9/:Q75v7:a+}[0 Ko5rq6H&R;ggꢿqMeONA@T,{V[1_?jGIε\yO.ۑMo}ǪSp [ o[rcME}ڻMvhڻjih'w zo4`'꾮W-]")@V"% (ڑK=?E uCd@u) m7 u#(3zny\u BJ\h(+`Q _@bB lhRФdC&%=4)D_PTR MlhR NbBmz)iM@3j_Ӕ؎>3ҝe=b+,KC>< )8S[!%^=lrX@HWLTzJ QZ%r*!Q _"ʆ b:=X!ƪk6Xc͆b/bzqDcM7F9㷼;a'u8sCpfq4'榸3ğcP ۩`<8E 0n3ܐ>` }83@ÙSzՇ3&gf.NAUD;CSYLπm(Ԏ$D]tR^v?)۱6kScm;֦lڤwMَIXkޱ6pڤwMz[ZtXqn8*GyOkΣT7\3IQ{ML8 jf4:#Ө7H:Y'@sқurf"Sv}꤯OS'}}]:SI_J 9:gzu(Ao֡v$׵?Y'@^o Q7Nψve\xPcYg1;B:#dT. b;8C@ެX7렟&7_g3GH'}1ՔQѨ//~Ny>S38EyGW;E)<rB82q+#SMfZnG;²LI՜-_ίr:[r+~s8rG ˏޔlsNӳ8:[ő:$yWjѯ\>GESsr`YN̲ʝ;1PeMvbUļ weMvb6wbwT5ى ꒝e;1މ K3@d'fYN̲Ye-;U,kr'fYE/lewt:KʖI^&-2iˤ%[&-zpeҢBS{dMN/9MY|Gg&g}hSY.gNQRmoVsh`lṯ{}(f'_R'b[7_x9;>?ctɎ3n vU8޺ Oƽ7@,d qohg2 %{u$S-٩\uY_0;Rmrw?xfdxIgFǬό6;323#,\=g}{B#/ |(5hS%Œ\c s{(vn5ް"Ē>6~˕Q̌ ˨Wf+̨Wflef+3c23ꕙ1[̘̌zefVfF23f+3^Q̨̌Wflef+3c23ꕙ1[̘̌zefVfF23f+3^Q̌/\̨_RonNVfwWfR0_c~߅ב~iv̵|y_S5pNDmyEی0FomeOGY9o[EVm[(z/s߽Y?4P j[7r_i[Iw}>b.aۧP-ز]^w ַqfѼ,#mlZд)/Vnr=:R-oo##ӱrH[t.o[eRѦBй"]UyTԔ[Q/n6AsΡw[?5SPSN86,oC))8ֶqoQ*j%Tqmc' G ڔs6$S*jםMZEMѥoI] )jerkVŶž$Q{FxEmhw%(`V%OؒշdR*JO*JJHQjT+>H'~`?Qb(qk(S̶k=ű^Q\l)Z(S,eF(q(qzcLYe((S1%Q됍=ee6JJ6JJF>{S+%2GKF}ac=T~'~Ɓ[=Q֥&DOw\#}_{m5o7$30-|P6͛is%2qX(F"VXrFcs 80%ۆت̒ofN{Bfmʥ:{[FfIM9㫤6h+,]S:ΘQH%4cF!)ʌ sAԖ~lVҦ샵PrX1Fw-uRPRһd-OI0&HJ2q(5E0E[LQSKLѦ\BZ M#i6#OgS٢>}c2+9ac 6e+}曊6~IӝRQS0.wVMY_rl< MY'U4%kϖs8WoOQs6al%lᛁMM[=lpѴ)Oc)e:lb[2kT+T~ERS8XR{$IJZkJBJE!ݎ3v/؎E­v`FӦX_m*@æ&lѴ)86eGSS&q–`QhR++ʐ(}-o6ݔXB@S,!VO0Mzu k sr_ҁYIJʊJIr-R|M2*+(ѓf4O0)N|+ \BcR+cZ+ZfԬ$߹<\MZ+~M'&gG'&Ž0]zb%nRP[u~lw­uk.:H5}JwGn%%AP}R |IVL 5<+݉dWޗ-FkrܔqU~P`_~g ~SQSM*!IM7ݔ6WIM=uxGRR VS϶IJ%g$Z')y˜zm/R*jJUѸrHjrfO3p]hWTBn>heܩe+H"(]k-]Vm,IsI(twJA!1VQHF6kB4Y($]Kҵ@IkY(PJk'tv<>KЎt 6,]۔2] R *n+:)zm`e [IwL_Ui=3i=zTS2l4tYJ 6y'ƵTK&VNijJS'4i[ddK!~5? iMI Rяpcf|PXM.&UpMZ*x;çѢs9'QZbڢ)]hjJ7f0Դ)(VSRB|ՔѺTB0C) H4%OSO6ZEMOQ )jVZՊ'%%yd-yTBZ#4ޓi?eC\&|9{ZP7/QXM/pQWRe{s %RZQԔ.+RԬuKHQ?l;n})vR ,%*ӭ/%Rҭ/%Rҭ/%Rҭ/%Rҭ/%RhKh7)+sq[kj+Cq[5%%XiJ%T+jJ0RPې}U7Aq )j+CEq{$S%WJZT+Բ}$ϻ|O[>mw/ͶӖ ,iJʊYЦtw<(56MSS^ 6ˊJSS^F%kJJ4() DfMooݸZEeU7%)zS+nHcJs'}hLbߘ>IM~I55kCnj_S?W=z2Rr>ʍ] &6˶caZRS3-+JA/9[); Դ):ф,55uAiJ⢗TB&) NpKJPSOC޿j} >M*vKӯ7%֝˾VQSk>5e]WԶŚ>(ʘ ġPפTԔkm. kEQR'(J֒)J%D#i\CYsulEiڔvo*JJVwGKR45&er.W',)YْR a)CZ)h&d=>鑢ԇP8OIl%e%l呔 l2J7II}e{a:1 zmwjl+=rY]oo5߉w uvu,l9͛ߩ)iS6ϴr[BEsGRR0`b#)ޜ#)ʘ mkR*ڔ/VQS .!EM3EII(YKާ(ye_ MMj, 6e'HjdԡiSIiSNIV)LJSS&ٛ$O#;cgPB9,}-S}-Sk/)`p+M9xS\f*/ڔig45NO}ijJSӴ)óQRѦ OURQO<Y)\TB=Ƶ(yy’x"N/SmZb }cb=o*dzb+RZ6Պ$p44Ek?M)Mӊi E0"D1A?iE4d~Z" ~Z1]b K ӊ#E"HD>jJjJGJ"4YVvD%VKVԑܚ /̖ܚ:ɭCzk*5QBiSfLYMM䳚6ejڔY>gjj$ԔI>)yy’xBjJB)=g|6;f'C؝gRѧZv%YhT+:Ցeǧ_%o҃’rbd>xB;AIc_Ib_Ic_C&MY GVQ 71SRƹH\d|i.'H"}i.'H"}i.'H"}i.'H"}i.'H"}i.'H"}i.'H"}i.'H"}i.'H"}i.'H"}i.'H"}i.(@a))lGkJJE$m c.")k zwIM9FmOջRPIPIPIPqKHQ&\+#e JœTBsJ/Ȝ^{ݚJ䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J䚬J{ S@ط SZ}&/Lijʟ S2=?&crL1=?&crL1=?&crL1=?&crL1=?&crL_W`4)mJw1[+)CԔbH $%%zd-zTB$Z-)y˜z^kLURԔP7(^ ()%kV( lEI|v峛E2+ \峁BsT2%lm,g qkI>(dӒ峁2g%k|6P*, j%g%OSOrNF7* M ) M( Y'(J,% d,y|(,V=geY%~MI׻seORnt#׊ϲ'HxYSΦk<=5y%kǟK.Rmw/_k;C|W`:MSK.^siS7%=Sţ,)Jj҂qWI]418b+)7SѦtGonr[owIX+)}` Ijr.mpH JEISư$7!dBQMXYAvF9b]ힹ18/)/lK$5u p12IͿIH '#RQS^ycM.)!EMy]vS+rw뗾Y8jvk|Ǎ6o(ڔ֝gd;zFQ{sQ*jJw'=[hS;ԔVn45{/'EI7r)Psb#b(zB?fkM޿X(z<[Q?K5gt.1 ^w*jo/ oF֏MߩZѴ)5!Ԕ׀ڊ3Og$%kqYR,!}b`=OGB..okk귫۾VRSf~+)3跒跒b J~&~[S.Ŵ.v~/!b]2(X%wiC⿼44MUK[ 紦{3góa6帍_'ҝ=Q ڔ:lѨVQ;ynGB O}ָl}8X))Dd- 5ỦT+tMQz USeiV#:OMʨ ,W+IJʟMdV-|pR^;:>vf~XQ%|x7* 3=.=}̥ऊH̏g+JJzJXQvIE*MJBOC+JPSOswJAZE؎!%'L\w3.9/M`5U7k΍RQ_*zf~VQS^[f~TZQ)) MJTQJ!Vj>VIvIvI~[]S]]S]]S]]淒ФJkkkkkk5ۚmﶦn4Nzn7oDNȕQiEMKV<2;|TZQR./IZ$FS*!j+R̰5URk{nTIq&&(jkfc5U4kJؚ*)YSR aj4Ɂ鹵M.+fk5eSQS!;0ԔpQSۧXBZ8$5+5ZEOp )jiV%%yh-{XB> 1&bt˔>D@{ʼn!b'| g+\Ω})}Oi CM}JjӠ>Fqj;h&d=>鑢%ӽ>%%i?MYqr[CGMh߲C].`aKpzPQaԓC::=7֎T0ԔiJD=Z}&EkYv1Qk'M}* ;n&vR)gFSRˢ=tSXBt^Rf:Tqk5e9߹)!EMsBEII(Zާ({MԔpB\Ѧ 8 2iڔcij Iާ)\SSS&dOc$Fﱄ<ƟNն7O/_wRe]Cק;t}]Cק;t}]Cק;t}]Cק;t}]Cק;t}]Cק;t}]Cק;t}]Cק;t}]Cק;t}]Cק;t}n~3dgv7{T}nF02Ǎrб/gvC$w`ɻٻ»71AQHo/JUxŖ L~y[[r߉l?Շl}`N(!ۤ֘Xn};cM_}l#6W׃x0B?X\Xw|[P?g!ߺՏ/D>5 Sf"mwJm^g+>o;bN bI ;s棁6߉st/qt\^58(~{=d-_\nṄ2O q')sGO!i3n|ixA8v2>Ǐ~)O}~r<!>I_w'~g}uP蹒OuIx_{yO4K>9&}8n3w^8ܦ!0o?<_d 3t/N~Ә~6/]^ןB~x%^>ѿ:c{w/?&%zm~r|O}|b>96&Hq\)~煿Gy:'5/;ɸ$}g^}B}Rnߓ|{a'=H_,_w}hNg$}Fyc=nQk~ ;vm=[;ӷ}_.u)KctASS>ڍ8++mW RѦ0ZEM97;Ԕù{~nkXwM9lE=dugwX%T^/e^`--Mw~K~i2M~W׹?O~w/O|迸YmƆ:-4mʡOmlVkxRѦ* V*ڔ!Ւld[3V)몖y]7 RЦdi+%ؕehEL8[)OqʚKSeqNkS%<גz*O>m-ֽkgfG7*:˰UnGnM=3eVKHMY78gHYzIקVzjǨ])hS+~cM׈␤Mўf(ݔaԔ5cE%$)kމjERT'Vwz+{onA+5]W4ahڔ풵6kCASѦ"*[+iSKԴ)%Ԕ jb/)b`)z’z_K}>MJvu> pB&@FֆC0?PFGMvܤoRѦ)[|$5M}v)Ek)H%DLR9Ps C+dM2}RKHRSvuT+=AROR,!xII |J i90*%E%}x_2uqH z%HaQ`֊M1^ҦL{H5$mJ uKƷbT[*]tŬFV+!ˢZQ%e Ș}$}_Ϳ _T[eҪVTB\7)&H%Tgjzn3`'k2ǞJ p8jڔ! e汷ْ*a,)%mJ>߅اiScH}4mJ]}Ƃ j%9X+4EOSOȼߎ!RlgB)|sH=~H<~ EҾ/fh}&VxI擟|SѦlc+ݔS˷_ZIMo/PNiSV9ZS[lۚnύ*֢5/]zhl_ՋܛzCÏ?v 6w_iqe??}`;A{+z2p_ums郥|Wc,Tz]f̂g41*#A+, *=1lѴ)hi2cT)NShSں4+mJ*Jeۢ]sP͒LmG{@SQiTӦq蒿#%_;SkX6:o{~*/~-ru]gW ڔ~=x|4RQR.tlֿQ:J.zlQ*C{5Zqs/)}ğ^')ZKdJb_( bRRvsb lo2z6'JEߩ)}a)-g$%%lIqgb Qk T] +(#X+K$mJʤ,i[Y}lI_UI.[E2Dq>IM{exIILRSQ,!OEPy@}T)ǃ2x| kERR'H֒I%D/) E0II wN->b2&FMH:>_̬"o{_b/JEq*+nn`[Ԕnfۧl 㐤h->M0jLSV< kPrC;B&.c:{M88eOPKSRV*= %$)*u m5J[ύ~mVҦ+8䷒d-iJ%"JTw}j4E%{h-2Ee+B!&1m$5[eMWwJzڜޝRs -h")ZJEZCڞv `K 5%k1&HJ%1ARR*O}w@ƶ j:h]]4v)ߒRѦ ԔhV1M8L۟;R֧RQRq{BqtV-I))ZKJ;|.gG}\$],kx` xks5%mPzT)xo%=wS~~ܾyLRF˒b QkORV* k` |&=e$ob89rME/ߙZd5MNXlC+o$))a̫)Y c^M`) )E1:%)SQT)DRcYcCM<qE;hJJhIS,! bP=%oKڜ~OҦJE2ිY]9y緊䷊VQVQ,!EV$EO`}h{Ps$m uMާ)OѦy̐{^IQI9h-{XB\bRu ` KHRTRo/)'f5s2F K((cL}5q$5yq*ڔ-F m"Y\,d͍rotD$=Rز%5e>_̬9˸v9v弹+2~9%I?o~O?w_rĹCͲ1>?|?Aʡ-?` ۏ廟_}?ڊ-u>dƿ?~WeYӰNoMlaa~^wz12{dZ֌glܵN؆a[ &ed_ZX;MiڭKۢ>6eam}+m6HZ۾QJj%ԮovkbY=kY̆XRVB%x⳥5T*ڔv)Z; `άە|HQ|HQ*!!EVP))"˰/S:J24LCD)[T+6?JEV>%%kI(Y-[Ҧ-Mϟ-[RRq8QOQ*y)Gs)!GVH(yv47#Q2ak}k7}$ ~gjCKn_Y 3 MM)"ͮqhLS K($oR}Jڔ>^7}$ ~gjm2 6?@1^SSό1^SRBה)FMIX䷊6?JEfekmTBfZ }R +JBSGPJ$mlV@jV*ڔѧZE_u&v>#(D)Fq$oRԔ~䗼;skcZ/ZQbe>4&LIL($`bdmY7|Q*! 8JE>O8?II1AR㐤TBZ!eOio?cMP9dǣ9M鯹ߩ(^KFY'yĖ-)YYTB$Z))y)}KfֶXqgMIJEgk5e`w$%kHJ%sII,wR*&kū%%;hJwF%h&5d$5;He+y~Dx!T+WX"X,(+=y)3XR\QSʷư_եLRRb))Y/)zd5kլIVT,8*z^mw*!EZQ }R +JBLGΨy0OMX}HӦ"5s -P`~g?TԮKMⶤ.nKz^MM:f56U>'>ԧ>'>gf1jڔYƨ))l`mCuHɠ{x+ŋ0jj~gO񊦤UJ}HRRꚬU)C%$))a) W[Ca Cc6XuMJEQgw&{Cyhz>^}iJJ4%k1OJVQl+'R'S'D 9p,)~:457}$ߙ[믙ZhC%ɇJ6iSX]עxxIR<vWL>*؈JHҦYhԔ+}b6[II1^RI/j|HQR*@"kE_ }(R0@(^ޗ%m+KV虔5c ŹT,[I9wyxAyV&)Y))֧,Vb}V"+KZER<.kiEII(YKާ(yT+$}$-y^Ա>=>ӤT)cJE2z&xMrj>IM)1>2>IZ>I$Z!R<>пڵ3 Kմ)XӦ̲qMJK+2hm>. T%SY;II ' 5%kqfIR*!) )%׽=0X[ִ)Owe><-]Wߦvqr(mJeQ]%z+%=.!=.2gkC V IR=zn65 eOMZ5( y Hv!Ȱ)c~T)Ӿl}:ڳƨmJ;%=><DLRڧd-OI?^PSzAM/jc/8]l%|=2ϨV$5/wI2E[EwrTs]73]yuW9"))1jIԌ`Joc^(wR*&kLR>%Z84II3h>%y0IVH(y<ġK#l8k&Om2K`f~Zw{ЍVanul¦ Ja:RI6CtJ06H+*lش٩$f-_ R?ܻ}RbӶxd8j6YbӚ㴋;Fu66 :Rش6&qUY[oӞ o?q`&+ 1LmPb.+jsVa ybNx; s ZAM*ھ{Yے޾uSV"ڕaVbGpe O*0۞ mNկĦmkǫ%Wr.-GvŎ Ħ ZMk ԎQݕO{JbRm#1UQ*g6m\V +-7b2Rz tW ??+Զx?E7O-4/G/ֳ ~ݿ|ChGO[OO_>"xO?˿׿V?ySsusc7ǯگSϰG^^3}þ{ڰuoHz7w llP+Ks Mnc?Q*)ǭ*cJIMMv|NJA3I\y*%XdT͍R \Ϲ)!GVJ9bnjѦ\6g,7)OCZ,[y v)K{Cml=狟JEK=w A7JGu9W+nuKnc%)JVyRQxvl>-juЌcM9_ϲ(mJg*zM5esvW JJl+R m^yLܔT+TuM*jJ_\BcT+Sw>X919e1Qm%0!IMy=~+iS/")NR&PaɛZ<R=mw=7Zm9))NRR%hE[I#Ij!o H~ڹ@ i0z#קM9KlYNhSNף7*j/ڜBvKi8Xf6lmjQzjJWۀޕCTeƼOҦ56cHڔ޿Xh+zzP1_µY}>c'$mz=2II#IZHJ%DSQ!AH(OvXVz&=Az=j'iSֶŒ;M\c׃nHj^lܫ?@*)}/Dx+)xIV(Ð=Fz(O>aV^`K ʥc# /z]8JyPgP,- !m0sTm ukES{(G[Mq:,?5%k!i%OS%PK VѦ /MzAII!SK=^GM9=x=uL)=x=gTs[IXz0g))ч,l2b Qk=AQR'L5R%|tJkڔi.I.<$[IMy=I#:M2iJJ!IZl+R ISlْ'RZ;=a.W $=AR{=ARR'HJ֢'HJ%DeSҦ\o6e+VѦ 9>QEII(YKާ(yT+}$-pﺨ3\ke =AR{J4zM9HYhS#kmJۦFRRb0~ִx=$5eC~+iS|HR mQ y¿SQ&6eo*H~53M8vqBS{zVI4ޮn6x]vcm(/ NCRQ>c$)N%54JJJ%%k1ÐJ{IV%O eҗY_V;>"y=)y0M?_c}6ehڔFU]7#O$=Y="*);cu$ק*xZ3ګ(Td}M[kjJR}ʀSQOEXhi,!IY?5Z: 6F跒ڣm[췒2]S*!E硬TYMY(YKLQ*!jيR2&)&SگLu*"#ԔV&iS[;IKEQ"k 3*#CsOQ}Jj]r}Jj +Ymz]y}bR6k'،~ קML%%kI(Y-[ҦKeKJJ؍)YKާ(`RRQxhe5X+67lIq41!IMy]ȳC>ĜZRlI0&HJqHRR*G֮F~φ'iS# k[IMy]~+=s[II~+)Y~+)yBrGV ur.YȰiڔYNY$eP/!k5e2ezAM&B5%%􂚒R Kr'S=_wRR{]0HJjJXBڳY׍\+=AROR*!xIVIHZ٬530oXS d)[;:oR"MY$mORS^w IJJ>IZ>I$Z!RH=ORS^w]Iڔ*?I OROR*!>IVЇ$%O }dm mTFs2;dPJM+jb}.qFֆ@ϚƄOEZ>E2a&BRRJd-IIJ%eRRRx{[>0<)OM-x@S{@eY#IjϽcčl߆_BmERVy|;_)$%%gKJ%DQSQ!AP&3ѿ t"& C[m FJE흹d{\N1A+Mgd8DJE\l6eس}ľPRBIGj޸} cyrR{y7 X/U?8DM$aW_›:rn= (|'TV?_Au$1k)Y8FQ|ˊ|cb*glsY)|+1~HM7oe?_֤Қ&hH|OBږ`B`RsYOJuDmAb J #JoDHHp|]Jߕ[=_ *Fi[Gw\^YaRx ~*6GXVZ/S$]$O$o#A_{s,NΪqڬϡYiQlش)KZ%fY;v4ghc|9v 7ZS$:>trE]%%%:gڶ}\K,p=\V\G ?h*lZR#Vh-,x!EmPb.+js69W:mz_N:\O=}Ȁ_?gzC__w}O׿:u }W׿):^>Ǐuooo~NLY`cwZq2n(5ei])hSụؽY|&}-)j/kdT`8u(lۜ1چ!75{tm<6e{X)[5-Tt^{ptKkE;yM2c+=>;=ԔŽ8N>jގV$%%zh-yXBb`>}Q{BPB>Ї=^j;Z+޼ee;+gTnu0<+o'EnhS/SGKw*k9Ve+*yx|!ƃsueKzuh"ϵvr;E0IIQSRZXBԲ%}@'(JcšĄ5VM3)CZ }b KBlMxJ:֧g(V|k`OP)O)ڔ#Gk55`))l.e`mVBq:~%SSL跚6e;I>XaHz&v#O|bHڔAӦ-X+vkeaΩC}K doX(PʛdwWBRRQ=! =R!֊g")*13~'bơ!CC$ *^ʝ }9 j+T)gwa8uy*|]y(l G1M4=^;G$0FҴ)Cqi51"|30QrͥH[MMYo M)yxgVѦ=1xC%/eSu}NEU%V*z`klxMZRJRԔx'`ԔJJb+)RRRxy$Ƨ38AՊ{kg'Hjo9[Ewr Qϻ 0Izv7-ܾ SҦ֮4m0: kzk>%}/V[IMe5R#CZI_ʀPP쭆ڊ+{zEFe+iSZ$k%m:Rgt#š}O"V)}cDMw:S {ڇA[x\dƚ6eLR*J(2VR*[hew V= ZI7mYTB>߭rV[~gl+񒢵쓶-n=CsM$%%:4%k_єJRRRx?sGOcOЗ=_O:JOQ{[i6Or[Qx[JEe/ZI2;FIIe;H}w=+W|ZO)bJVM:ȻoJzԲnS*jo+nS)Im$%%֧h-XB\+bR5[)k֖ޕ8$) 笝G`K((C_mofa5=^H!]49r6ŋ;-1.WO6?dRd$mJ;jffIӦ;IJiJ߄ M"/蛊>_3z\T}~3iv-1&sYr3íRYd/{]!ҔgIS"XB$Zᶢ(z+}6WSl*JE[)IzsԆ}Me:ՍR A&Պ{#/3)M%0.Ӕ$Ek)LI e1AQV*@>QiкeݥJ`3Դ)c_qHgqHR\;в%EI7)$m1IJJl+}b )BJIPdKHRRXPS5ZIZ6kEѦw1RѦ7@wBorVeh-lIM0-))aESOR*!%Z!‹C5(_P~%0I2;z6{OR\%+$JH^ٽrg^< YhSWX{݌U0o2d;G ;rlp`|n2ޠ|bLhu -| B~Y UꦎtOpT:kiw'RY N{ݔ"Fmhd0K0&tU/i68XKlZύV!ӝ7$0!`.+n 7ZL7 ǁh1HL6s&n(LutU|m[QB2GQn>W {%6m^cVΣpfwΫЯ$f-sXO-,36']9Il{)Jl6`Fe%1^Ծnޡٕqپ!_~k~7_3kAcq2t<_ï2㵗CG .ݵJ?kM]ǹ\Y>}9ˀ0>߾:sqol ^+RT[JAKi;rMGMx|SGKwwh3.@|t;vJArvA6euYhS[)qiKj+EH(!k%5ea *!IrpǨXhS[)q*[IQIe5.ZH3(PcT.noH)iSrDzԔvwvmFRQ(VQSz/XFvj{x%ĄȰekj$Ӵ)\SS{w |cpV*ھg)ZEόp )jW'cMQާ)Z){X+IkVR۷,!II VSːx_`8eWVmJ%m]3GqД0)Z(z+%Ck]4728dso3"Ķ >$]=^0o%K lvѷuv@ PcX+tv4V$%%OIZOI>%}@Y2VQSE%])Z }b +BOGӷ^Piˎ6P6el C6eZErqWv#òeK2 MJiZEkw )%׳zZIn@)*loml+umF)]^g[Yaִ)C,MQe(Z(PVBR5Y+]),(!II YRlVZ%1c^B^ %4?V,j-%\Zo%m`[)CfGSQlQs?M%H%]tBe+iSO(m]WBmERS>[Ӧ5(iJJ4Ek1KOR!IX(yY[\ 735kVo;ێX].[Z+)U;HJ*[8.= gM>IYb]c )j_.ƾ'P`8g 4ZQsI" )ˋ%OT]6G)]^.wx+))1JRK"X+$EO`eg5|3Z[Cρߔ)Ukx*RCA*jJ1b&)*)jJR[KgMzPTu*jJS )JJuHJ5jִI[YӬfMf5](GqHRRs$%%[IZb %5ydԱk6*]=!2l+]tMAsԴ.R)-{c~ǯ[h-OEZj]#Iܚ9JOl))JNI7( *5%A|(2]gV4mXc4mekmJnmPS*j%.Y+)-+kԵY3Y+iS%'%~ )*LTZOekj[)m6o-MY d-+R a/'$;)%O@kݯCQV$m]JEfWp+Ԕ!߆V&)*$Eklk i>$=JHQRb+) F $٬9ý_ wJڔVҦlvf7ϷI=mVQ*[]%P-)6k 5>SRRb")ZK%$)׊(wGWk%T)g6.;gRԔaHJJIZ>I%ZSGJ-r~{BP5P}*ڔ5)jJZE5ҕs;+'PLvkJ߄ME/yw*kWVe+*yx|\\ͺds5]MDRfgv$%%FMIZjْb Q^\s4$1JڔqJHRSkERR'H֒I%D/) $_ԵR|OQB@=83v=$u _Ʈ]6dCF6 6}.v)TD}숵r9E뭨ȬU11$5eZH+nU[=!>HJֲlZz3ʇú=KpCq+)ӏ8gR$R`;FC]v06>>+}nHծ[90[lc6H.0iך4Ec Z=l=[W$1<)1FC7Ctlhz`l$ć6o]W~(H+k{CkPKdsC0WWAZ0ILZ^$f?z$1/)5 \86e%11!0_I:%vm=j;wEN*/hWՉEmhGoaGol|5V!&m\$ᄰ|]8+k"Uxny&6vmlbnKL6<y4hTX7|yWyh ʤTTsdzć64?x!1ٌR|#];^n ;ϑxg+Z B6+ 9i?Wa=ʹ?̴ӫ[O鍎JcG߿qi\_uٟ~o{·.ݧzeǷ.nԍcϟ~u>h]z~gko>] 칧o!>7.Llbq e t;zeb_Tz=\?V**疄U}\_}o%ueZ+, C2')5v.Zsq|bJJ֒+`;EPtx{<{JaK6|/l k%Mϻ,eCҨRQi6B? >k;}mx<Uk 9/27]SR$pRQ^SIJv>DRIJJC8%%Ѩ(JBJE7kVQ{gzHRRbKJ3{}pzgJ/1!I]*~SJ}B+}r 5CKpJEG>?gAAWmwՆq<zP2Rكr U묫/(^wym뚁2vBk*w,P>>C&OIMYŭ̳!2M]?.}*.q]< ()qHJžZSxMiTpHJ@JE7/i+}NrƐ,гC.ԕ+V^MZ!OIiTHc]GX;!EI {MiT`o2S 9؎lOso91S'F1$w(n%. 6护tP Z6eb 2ԓԔSI))Go>rZEѷ OIMP0>C|[I]犤Q< ) )pZE]%%[IiT0NK X|~rզ"J VJBDIAH3[RWjOK3ݸ! Ҩ`"bs (QYBg E])fése.\̕,r)֕euɷ2{Ԕ)cKJJe8p<%xNr>+5eiVQ$QERDbFEQRR$(JR)JWF3[1)SLVެ㹦&k#Tgk#ORﵑ $uR0$%k1$%aIJB1(E)CkG~҉J`ԔN 4ueuq) jJJUZSW4%o˚ҨRQxx.S\uyWC+cL?wS))㾥[P*jʸISFzХs%mw0W$uk*ukcL,MSkSSlMC5%Q"DkE eLO$tMAMYeb-{#މ)tR?sMMZR*J"a h JJ*()y2IiTH(Ez5vFERWFS$(ꝵb^蓔ieMP+JSҭg1 Z fE޵,4F޵JS Vv)}[2YeOIMYjj|F/+Cwe28%%%fIZ`0m~Д"ENѝa<9ԻERQZ8FLYsd-VQ4*Ttñ#ͿN%%>HJOtKCKf/Ś=Ő}f[I]xJj.U;kmUѷ)zBSCE̿R )JJ<(y0$QA)#Z(TjI]r1K7Blڥq))4ue4{Ӕ{Ӕݛ!CnzTR~6~dg(dkueRԔs(ţ())%k)%Q+JDҭG/G8,cȿj5OMM1j{]xP <C\Bic#aCA)-(a-(ϢԕZ04%%55%k1IJQQFn8d eCv5Ҩm*'Ce3l ȷz:|!fr e@Y9bhIPf'f0&}rJʩDCSH_4ue,IGTt+YZ;9{(=,2E'kԔw%܃I8p'))q))YLRf0IiTh(JJI7/ֿixTIerNl^SPc>U4>C6nM+ŗ=eMUuFS8?%5sW3\$%%,iJDRiJBJE)q*乒|"+}]GERT=LUЮ4UؚڔAAdW)rܓ]|IOL临HJJ\Z$%kqi4rW"oX(yj$j Jbܛ5F%P?+"!QRQxV ўܯ_g]ȟBA^׽V6(ءL4gd!IT i[J1+2>;2Q+3^+K9(P+W$5ex^~ZJEزVQWZn>ZR^Q #Jj%Q>򭦠kvi]IZYWI{5\BBZ5Kiԕ$iԔ jJ*)yVAMiT`]"B5Rēn8`-[1-\?X$k9n2beR!k}|-_ۆo%5,.pMp4()-ηG@Z&0I YS-uC+_{7UԔ%5e1*"AQOQE[1Pf͡ȚCiR* J> }2HxyWT3#%k%L(?4QS=R*ʸj/g\зxo"))aO)Y xMCbN)ժ|(5{I{%V-4{hMϼCk+xMI7x~^d-]Sѭϯ6ϲe5qIJk*wYX>zb555e}zP*jj\SRPR$&FL£ŭLOyh P6S.CI)yY?d=iyYL#JIAٸzj+RbǴ}_Z@|oICPt+fam3JEMY3(2dW3]~vOo7VWge\e5AoΫ *Tq;q;$2PhjV7>;hP)KCk%P?n4uex#BzmT Jʱ[<@Zx))ZKg|}|2XRBKJfm>8Eހ0CTߧ"/">*z7;h)!ڛHB')F+(2"SO*rBexː2tM`zúZ5݊;,M:ϲ9~C,L24DOROR. >]-<IFQqc++_y/)*)IR=D)վ,AMڡ4r*9JHU[;)I)pfKJч;)II;)IZ\%%-V/4֨L RExI]"f_̖$EkiT$EQ$HiE[4^ L*M]]ue-֕8Ek9Eq+BZҭǗOyEe ԕOԘ24УQ }05845eh:P*z}h=+㬧QQ }8QYVƳ+c ͽ`'>uh /Cz˔/>df{ͳuYj4%-xIz%hE7~ ԿIE ̸o1'Y2}Yi&ٮ}SS2ʚ}5 TB:5UJrIJ+24jXSX¶!IMg*l2[IQISN֎*;|yL-)>2̧hv1Gl[X|y'TԔi'")*iE~*WXr~*WXr~*WX'5XJ;X8YҔ 'Ki[q'_qsΚ)PZcH^vJEqG-^$uen;wIGRTғh->IC4%Q))F+Ck.[:RQS5賚(v՞tM ̚K5rﳲvїsUO$x^YsRQSլޘ_jDh-e͵xr]Lςn0lO{!EI EjJEvG|HA}8--g>; |w|5n٬kC6/NqYzo\gWg.ݧO}=ݍ ޺?o?~a{~o b޻UhK/e?ǯ>,|߻WS]O*Mz{Mi=^ϗy级|!5#cKl+wy>o&RR jq]xJEM9kJECzZEɷ8&d}[ƮW_TԔje ðo֮PP*j~7sM5E%Őh-!IqTXc*.𐢤|t}lۧ)ͱVc(1&Ychk9n%5eͳmC)+wԕٟyg^%ԕ<>GxRST kR=Dq+) I1X(EZ;6쁈9?kʣ0ǐLcMJEZ[!}V)ʰBRM$Ek9ExJJE7:_!IIVRO̷K}QCKgg.}ȤWԔx46"^RW>³([IM9Owjηh-[IC\Q#RjbFLS? jJ5ԕq隊nŝ|>KkW{p\Ym{c)) IJEM2͡,;/Әْ2(ْfh-lIC4W$Q")F+ Z[_s$d맦ܟ˴))PSSꮱRQS>B/x(En44EkY(ZSSWԔ[kJ~HS:ͽ4*T"}#9/(PGEQ +i)'+P5TԔSJEs9ROY")*)kvELP=D') +`ZE]gyHQRгpC9֤Ԕ)2I)J/)Pwo2ʸ{{ݛ!g7ysERV*Jч] 0I]*Q4W"⇔ZEtQHq++<¸8}C}U;zEPUԫH!I]GERTR$HRIWGVIb5;gbVC*YHu+ks]Iu*5eO[IM)5x,wc7˝Xrg<;|2>h)JيMEQXb7>؍n|J 53EeܟYtM8Ԕi隊nŝ|}V[W=q+ڟmN+)5kU9CS8%ueQ8%E%lIZْxO4W$H`YXW7h-ee GZIqJEq)P"ARWښ}"^Rf!ْP6#RkfvB[L$C5vVQW ,)*LR护!kMYc*jJ!EI'xI5a =4eLS+z[Mv*uCYVί~ڨ_L |?<jjʔaǨ[QSORꬹtUԕap]Ԕ)Z)*q=D]M;E_w5K7JTÇ:l1MRԔkͣ(*9Ek9Eq+YVV{̚| i3OIMs1Đ,3B\V-x(K%g2*ާIMYْ\ybX]-e E e E ՎQSSV;FM;Acz@Ҏr WX)}~)+~*S^sZEMjɷ|;M]g(K:wvDЫ\s թLxVQ->,>5+k(]SRS}(%#aX}pCd mCzÙ"AROR)rU=*XɒtMEQSS]SѭbɷE]ߑ45e)՟~=:h8?^SS5E%5Ek1i™) MMYF_WD_>ę-+4fIQILR!Ԓ\ѿ]fYϼS,~wԔo:)\<Vh-+Eki~Jj[Ӕs0MCp) )^?}u*<ѨHMC̫)'+otLe\%k++NVɗﳴv(rP愡 9QklI]"lIQIkК-)zr~uMJED*&JRԕHPS=( e0Ib}GB`ḷ̌2V'ܚ:Ԕc~JEFiVQwvה['uuL/`ךz$ ;+VRWVYs.<3$E%IZ s"%PNGbHRV*#aZG RPԕqgijʔ4M7߮zF@NXÂVRS ,=HP#t$%%IZ+($5P Ij>t=cK%sB7zRq}׈@ILRICHs3;5( h?aZu =̴ohk׮"Ι] P`_k{vA^`>B֊bZ5ѳ =x|%&-ΡFNi$vǕ͵s) MC4:bi{#͘ش^3+s]ksKJ=[וص6G^.ylgٸn$>UU+k֭L,k}^Y+|QgXORtXE?Gذ9a҆>7KsPbצUxnً_K0; |hCIwI;xΞEeuUb8mƔ} A¤#1WbAiX+6K|hM]?|%1kYPji=(URQo1ec}*B&V*j4d[*^Ǩk>wϖtMI]is(III1:Ds͕)y!gfh+yHRo4ݢ9$dexTyJP?/:rݧte Ԕi5݊;Sї};vB[CIQhJEM9Ə:Hj4?P*ʸ@T J~PJb<3[Rb$RQ>vQ벵ɫ*fFq)))>8*hm1E;_l")]sRdͥ\,]>>($;վo-o-o-o;ْڎzF6$%k1kJJL-) I1X̛>uhҵqMA5P:>5\CZLO{rh-OEZr^eZ$%KtC(Y?醵xxuig8*Ԕ#q@J;?S}+O"`%+!45e̫)')>4debLAFlM隰jʸSk*w9a)=J_0qԕ)2))a֔5[SxI7;ǭ^W?oRRSv'Y+) ԕ'H蓔</) e0Ib) J[SofTpkj5gO1Jjʴý$}h XW*amCzc$z;|++9YsXBT sd-愡X0'H1(F+Ckǔr$Ch{NRQSOWc!EMcZwTtIs%1^?#er\*yL5SRoRRQPzAk%B_ Mi׌SR&2I].^Sѭ/gmmДFNV?G:2}r Y)n%B%gMY5%k,MC<*ҟ4T34w40JiYRVBKJ,<3[RR*JZkp9wHZVmTf-DDfXI ̾b? n][TAfm9®fUWHarl(6sL*̾⹠0:ު z۰A?0]W]:uķY |& 4Q~eZ|}Vi*^7]^ |h}E]v9P3&Am߅"lĮg{zĬez=Ξ7$>1S'%f)?K̾uօ4<$vK4 mkB_ {kOWUć6$Ĭؐm}sAaFPx&>f(nHb&kص~)%>Z *!i؜ oHa*|oLf6‡6>T<f9(̾\'1X)6Zir@nƨCCދJׅi |huުm>^Ly4MߩS\pZVY"!]|5M}mqV`ܗm/14F<$hh(i-pZņFL*Z? FUxnK=]k[O=]WV?|闏w{Nw~Woƴ{~7Oz+jkAm~>~i}ׯ]?mʕ޻/>i]?}߿_vw7Џ/ͮ<=އW~wf/,)C J]ǚRQSʻPP*W~FJA]*/>>NJ eh2Lolm!T=)2? >J 2ܿ#s$DA|OW/MV(_sOyYaھded [I)P-]_o12RW&KRPS¸SRhAP* mZIɷ>e?GEka~kT[s>[sHBa\&z Q1%E%ǐh-ǐ!EqTH)cMJWw2Pro&mw+DP۱ۣ%ǭWô,3ǭ\Ć2PV^IC<*J72 n%O񊒵4%VFE6cN^R6CsEһqVP*J24f LQTR$HֲoExJ"Xב֦")JJ\$Ql2"xK(ZB[ @RWJi yg,)'*dmЪ|p\3f yfKjPaW XT[ o?8=}Qʰ7e(I3[Ro<NsERo<*P*ꍧZE9e/˔4E%v~xIQE~gSE|Ԕ55E%4EkUSƐ8*b$R ⋬B!wTv*_6Y@:dZSS}10%de(NC2(X5kYٍVɗﳴ Eo6G(IC2E&!IQIyHR!ْnw[IfW`R*ͮ^e*z5: 7<+_e(*9Ek9Eq+BLҭGkP3/(i6`$Hj}KOث^Ԕ)ZEM7QRToІ#a-]JEfWWF%L1q++i ))q~J餦!<ہ@JE}t(')+!n%%kqHJ9yh(sPIY줎ssڵ<ʼ"c)8Czct@('*cqM̷K(9^ҫYTԔ2tݛh->IC}⨰R ƚUn w4yHQR¯^Ҩ.u 0#e5>5[RWo%dBp k5e(>GJ2Ü4YTnls=󊤮|I7>̕ }jjP1TԔlMM*K֔_5EajjPŦTU[~!t(9AS!xEiTH(EZۅA]护LUTԔb+2I]QɳLRTR$HֲoExJ"Xב֦")JJX?5Qla}>K>CKx^ɌbHRWrJzb犤xuC3X yHRW꣱$\_Mf_hJӏ87GʾMCYFPyT'G{Y~3+_Nӫ= vR<($Q#RcMuƐ?{eI]JjJW!I>YiyuFfx>>21Zy%_Ԕ6gx*j4I)S!k%b6 %Tc}(H}ij坋71!EZIC ⨰R ƚUjs{FRFZzfM2s>)5eT%כJjJחɸKJaHR=Dq+) I1X(EX=i@S(0ybֺpqpP&?5|#[%-k۞">1W Z[wya LZ ͍xT|՘ a&.VMSA0]`n/s @c$"F}Wk]x)-u:3i.HZ_)* dĮփ-vUiT`Ҳeq*|Q- ݽv%8%>qd3"T`U |Q(صi xԇE)fyt*_u諼lEw Ԧg_8pEؘ Zӈӵ-qbRṯ0/k(}1Ĥ7wW9=ćCۇIw]ksc4{z[P(j(T^ƳĤ3T9gsP圡9CsYc5-bb$f-Ljֲfm:=@_I|Q_nz -S a<1A_FPl/klֲ WXoif?SLJK+iX+1~. :8Ǥ¯6\==k6fm:Ĝ#1iy:_UaJbצ kvm>d">¤E?c*8=wo ZU >gï"o]km>W.?|?|ڿ,|ʿF<ߺN<{otu~#_u -i; ތ3t ԭ#$TޟOL!zqeFJIMn'ўC)PzzRQW~SߟJAI9=@=m_Aް6Pо\?4<(ʞ3(E*%0} [;?1m(ueڸ %ԌT{ڸTԔ=*T%d-OIM9. s JEIoO@a?IlX(yh|U^W@iTH(E@y}$yD*\I /Ӝ=Czw2n"\2zv;"GjeД3xHRS>CUz򐤦CnVQF*xr PYٳSOq/"NzwBv*(qvt补}$wu0)$5:8xJ]7B]pV*>yf )YKJEZ\$ue"IJJ\$%kqE<늤4*T"W ]T 24g͵̚k52kE\PϞz/8ZEJ;fII ze+#+TԔiH)zgE%tigAM]`,))YPSv 4Qה"bꍃ21\A[BxVRvI))PSRWx*e֜PᖢORRbKJ,<3[R&R$RR>6޲23DaTK+l8z<˹*/V>[IMJ}2 %%%2IZOIC8nzTxSxXTߧQQ }(Q &VKgF+oVRLRQP5. n\SS*>I])9>3>IZ>IC}ҨP )J@JE1D<]ijt'C:qԔjb~-2'Ś=V42>?YMZ8є<'.ҨRQx8bK[624jʰo[MIeъ$)㈱RQW t]x\B_iCl'~h87ԔkVM u{d [Y֕9: yt>ԻUPRR )Y))yS ^ zkRQS&kuessiEII(YKѧ(y"^QCn <{S`_V23L,i6`$HuERS-2yUԕDb#))iT*e9˖b-)Cz<JIMi{_{,Zg2}ѷ|>x}o<Ț#fO 4ue jϊ)'*geb3)}21OM ;hdMߕ))SdRQP d[\.Om53j{jMx~+Yު[Tt+YZ̫`eOӇgZsH)z9ARWZo3{]ֈd-iJSM}TW7qk)o1_F 55e%>IZ&"e`NFz'ck}MP,aJjg[JEWjN)+ӈAԻ=蓔8%%kIGSf0IiT0kJJ@JE1123ْ2 Ɛǭ!5s8ڴ6y(WQTSԕ OII o]jJZ&)y2IiTP))Erᔑ ZwogvdKwfϘGGl|j'I|j8NzvNm1}E!1khfxږf-1`/T`l3+Wo44j@*|F8->#+/S X#YK!11077}_h56wom]oݨuY^[O>>Ѝ]ӧhX. O_f7~>/?gr ذ/KԔ};3YP*>9}Zw^s@6RR6/\'ncz}+z6pBqv8t  Sq轎(gzدOԕ6ױհ?JAU8hus6{hV>8S1dFFyHReUԬ]V+I,_x}>B8RJj.T#k%%N6r pT"ck2ta}2护Uzbֵ)Ԕϖ%E%vj RFRDJE#U_FIBS>I]iuG;r?>r|tk{ݛ!!EqT(n%H`Y (U8;::$FZRfOAFI_4DP;<+3Ckkt9zq@]\Sӭ/痬BMhjb$hP ޿+F&!MQyHS!ٚnw[EM9QTԔKxO*j5ԣe)PGEQTr$(r)WG3[1_CyT40$5ei>IM9^=T;Ř&kjS5E%O0}fʔau9^RSv_Sѭ4A]3+E+D&+XgeI]uQԕqmŬ))*)SK )zf8*<ˊlƚR~vȮCzG8֤T;bk}2+)*)JֲoExJJE7:_!EQ͚xi<*/gb}Yg؇!ITkITJEM9;lLQ))*ɷExǝC~N}չ71ْ2Tl"w c('+P Ee1IJ]& [q'_qsx9#IMy+Z+zߜ $^=.$ue !`\#E|gW)(JPqMAWOD)) +5e7R/CFELR4?%~OHrWy2PC.+P4*T#}k8*2TBQ"y]UԕCddkP0?(GϏ)N4w܉c ah=屄yT}*P]lL{BxcPFه,{?`'F2xBUTFse}febfk:k㩨w ՂX{( "k%%¾osz\31O?{22[I]SJ]ZEMkT=ƚU| }nԔCCLOIM ))ISvOm5 <7M}TbLRQ?jgM 5e%dMIZC( E6I~g ds^S4EaNGeHP#n`m-隒z/1^ zt](*=B=̷h-IC4?%Qa5[)=k-)J̷xb/ KԔPzϓPjVQW".GEQ#AQE8*Tt&k%q6$E%ŭ4vN'3s zC25m*%5e{7VRW(Ƭ`fˌk~}U zi 𫗦}})'C9 eKjJߟ]RQP2tcԕ"R%E%%Eki7.)z槤8*$H`e5EkG7 53;ѷ2ԔqҟQQ駰WEДw<0W$u=I_\{ĽIQIsERSRĽQ!?"1M**"8*"AROQG8*"I3y<,v5StIg.j{BV*J~k%%b Ŋ4Ϭ̳lV#vv㹔؍/n|)vKocNԔ)GaN$Eki<%EQ IBq+)FG}h횯]Ӫה;T/鉄|wg$E%=EJ\Q=&樂t&k%ue}$E%HJ &F@9ˉmJEMOq*jILRW[Lh--8tQ(F+vN/֌&;*5B'9GbgTfT}בp m ^[Mgfl‡vϱ)g_U~`8} L6*0 o8TشO vUרUlƉBص6?5FcCbcRbixJUdKU 7Ak>fQԂ+,mq%1id3YbUc|1jhph󐂎|%1i<9jod dW} ųGߦ8$enc_&GRlH|h_r)i <6mTYkmVLmJ(~3HZ5 @ʅ>qѠy$1iq0#W5 o8lĮz|%1i9?KK ̴ˏl*aʌ4v٬*lشlص͜3MZmLp}iv/VW$^v_7$v-tw9摞$&_,1i*0Heot#uJ'ϟ[u=úwVSjyVj57o2_q;lw:>q! !jJAMk5zo7UԕP=>r*uN';֫ȩԔ}u։:ُW=2PﻫH@C*IaT'4*B$쬈D!JE!*y4buwgϰ{><ӐrG{K1i]DƳ?\Y7͕݅qVF;r~[ Rn:}N"e:t:t,XӱHcN"Ne:t:t*TөHSN"Ne:t:t*TөHSN"Ne:t:t*TӱHcN"}Ԗ,8ܻlOI]܏k )#aIE"+wIII')Y/)yg4*8%݊LsD_ڥH7P価}2E $%ue;^%\X57 zJָZYqBfk)lbK2Ί5.QX5Zj5.QRVk\dm%JָDiT5.QƵE܆|J =$)<*Jő ))5/Sq,ZpfLs7!exNP jxNyHQWyHQWHyH-<()))JRR OQ"^Q2EiThf+/uZNiI˝d,OKX$b'9;ɱINr,vcX$b'9;ɱINr,vcX$b'9;ɱINr,vcX$b'9;ɱINr,vcX$b'9;ɱINr,vMIuƪ!(7k*M$Vڱ}c"eܗf")Y;o&e )Y;%v#w^ ΓG)G\{JMQۗeq;y~ԕ)G5ݕ)+%ueZZI]b+>MMyRSV٧)Y Xjj2L1(ZK.iT#<2㩨+~SQW(Tԕy-ה]?hJ>ESP}8*=)FB# Ce\ZE]{HQW] L;!EIIѧ(YK(zg8*<݊Lo 5㻀?o?S>Euf IM^bo LRWvu;8ԕݏΰrlJJZkC9ŗ^ VWICS̆Q }B w w XDXFXD\F\D\F\D\F\D\F\D\F\D\F\D\F\D\F\DXEڅ3a<2EZ<yh")Ӊ8욒C~?ZSP{IiTrTrNcMJEM~&kue =mGERRVSһ\tME]btq2DSWF>M]9)n5%嘿є>`uДFV$M)2  4Y+N phJJOE>IH٤һ9SPWH𭤦|&oz ~u*Y)u=XZBpW򚕲6{(۳ENrA;o<ș^ o;giz~5$j~+-.]SRǞ!USK)D}+* n9*WM$Nlp ͏WJM|}0P *=Cęa6xj%]s*jxh 5&F:BvQ+k5_mXy(rUP5-Z>zCbk*\;JE}^3uESW*]-{o5%3?kJ>1HQŭ4* R$r/<y?Ev*_}pC5i1ǃreڪ*YXCT.ydz$} ւ o~N^>sJ'=IMAIEs0W* $הԕ5ukKK/<?X;WG45e.)M]4qԕM]˘ ^ єQ4KF i seER|O2~LRԕ@0%%Ed-E,SF1݊LZ{I]b5Rk\_q^u% kwQyZ]3C}Jjn7 k*>m)5GqѰVQWN9+Q)}޲VPS25<)sdRQWJZE]3 VQRo&H9w> ԕ1&BZ/c je k%)u=N*J7esӧY=w7|MI]9O<*ֲr:FB=BSM+ec.=w7`l݆uk#ARORz[ԕ"EMa0RэjZ_Tt+Y[Kl@feʷ#5\'RPS ^$ueaq*uezoNwW@Z}pfKJSRV9a`1]3e7V Gx¬))*i~p(#]Ǯl"Fr4uk wYY;Zym'XHjч*%}Һ#~6OQRVR!b]~G5Z+)ioaixHRR.jlPJ7Dԕwj{%!IIq+)YsEROIiT0'HJ@bEͼymZ'rZlIZ!OEiTHc]GXX|Y-)JJ|FFߍ)AIJ{:🊌yf߸62] M{o&-WV!?}Ǿguٿ!5]}ʣrZ޺?i~v_?~٥+/ǟ>~6Kͫ~˿@ſL>ߧ7Jb/p]M#*^?j?=3[*==IuwHMw]7snԕӽzeϩWr<ۨ2C nLRFC+ӳzo=Svh=^JA])THXqvRQW> 9d^4'̧2|QګK7*1ߒRQWՊfD 2IILRVPIiTH(F[[0U蹒VRWxMҷkT@S> ` Jgg%6T<$)gT{ԕi yHRTe)RtS$HLYJE]WZE.|ARԕqѨ(Jg]ױW5K$E}j\p_-B`i'x UyoAc!xQٞ{`2 渼顇ژ^Z s|bTzh/}з^W;F|3 VCfuLu_\ڣ$H}ږyx l׿a};vr1:k.rڙ R]:~3 *Mm#+h[gT;rd!5g i0yVCBC QiJK畧QQ(hjtH2 ژ3T*LuGTq&0} iA =VPlOeM* ?\7֠qc:򿪰q#Ci3} +יmҶ[mQ0JSOnT(*̬PTCgt&AKၩPHr'GRkBΛPGoWw举s[G%x輕^VFQym}ЗE{hW1B;g1-VC2 -E8 VfnGwbn*g0ķvT{Ϗ'E{{MJ6&Ê.N05x(2RC(*Lufkn!" ieSTzH'xֲ)*nDEe0<|Ut&A/hP`}2kB7a( x0OOƃ b0ub(0VNgx S/-Eﻢ8kKA2!(0}dLQGlQAg!~Aw_qZvIQN65 ˖xK݊Ldhck-X;lze +w?;PV( yC~IQoM0)*L8q?): E<5EAZ2By?DQ IP!Lƃ:agm'1ΝGOMї{k}m箿 o|jȬ9 EEZ%~Noe= Ùwf^#g24.)| 4} +vW^@o~.K2Яe_y? {e)G_̩1, gclx)^pL!suLU虖Qmeei,(,U%hGak\S%|qԗ(zH4:i R)_iD1P65BZjPP_~ulX~Q_x,Ҩ/3Ket%iSz`*@Q!QY?BAv4A/(k,Ps}k `TrL 5C@j-A[a(0o ԀYtkg0[&E  )///r؄X "c"E5iRz-E}Q(e/b(27(HT2У ֲ)Qo +< +59<*,(0> lf{M 9hB_ڲXm|k =}dLQ` 8i)/8/r//(0* 0*R4!iB&A}!JP_=P_XP_̉P`1g(XCaT ) !2/r8ObN&y) ҂e( IP_Lƃ:a Οϼe܃YtVN $3Ggye:Oї+(0(H=5E@Q?#Q4!`me{݋>@Z`! 3Zה&0} iA|2¨e3xbkp=o 8?pfY)ow0׭=XFS2G^~}5lρG RȤhc.8t}.d21&CAZ6|auSyceP{ݳ}Fn Lov6 ]`Tƹs¬#6}lFQanyߜhcvcx|b2%S mG/!=IPyzh6Kﳋ( 0ov} RTX@QTaT(*#j@Q`z(H5C( -Ӝ׾z7P5Ҙ9Ѳ*L$HhuEmwuE۠(0Ulc\5:0Mun49InC]>(7<ֿLOLs? *G/%fS)Fo όu 5iѯXS +c( X6C_y?AB;9^9Oof;LOy,'OptNþ|@n ީJB[2ie3?8To&;hjyrY\Tg;hcӱtp17u=JPa^A_kҩb#0__MoǤa?d[3m FlKdAjGi K Wu,//w `M0/qw;,0N6fƌv;9*ov wv;v;w;w;gg PRUy*EQa#76FT>AZ s /(Sәa_^_^5y e-vuyl2^Y9ژz++G_S&SMT;^Z6G}״moSdV̿}u٥tC!B&CC>IQa*>DQa*>DQI{dyO=) 'E|ޓ0*>IQЄjB}Ի^jCs o OfCQatJkEQ`3~ǎC~0*}[}fK N~zOe0U{ԶPa5c(H P!2¨e3x'QNGOaj;(ʙ-VGE`nϨcF/U~D>.zKm3{T˓תq17o'QՊt&C9Oקk92JJҲ|}RPab VǸzr~aT*1ST󝹨mByrlAZ64:}] p}I;&eyM~m<C/k P`1nN\ s vե\Ҽ(ɦ`b~Nm]"2z2w"E*~tfUͮ@ܞES%Kv,HyIQaD1JKTid= [Tf/SQYlܩwbK-+8ژ*`21첏T4i SҙgE:D-8 .8ꥭ]q!eG.85W&rhf/!|>JIE}[}* z&8*L6ѳDDG9!Gu KMrԏ jh"W}R2TcC  S͖ &hC =VP?*h }xb'yidȣD 5'jO a H?1 ژ*Q -C9=Pa P`6Qv{/l*٩:g0rWiSoݑ3휴9uWid2z2wBl:,lJ\aY>\%1;4QF`Ik -E}K޲/˾˾i%\`We_ }%\`We_ }%\`We_ }%\`ٗe_}9\`ٗe_}9\EڗD^ %L# \4r %L# \4r %L# \4r 9L# 4r9L# 4rȱ 4r9L# 4r%L# \4r %L# \4r %L# \F.A,L|htʗ{E9k֥]waiStp= ykO.K)9hW2J]I+v%ծdڕLkWRJ]I+v}ZKmeGu=użitSD.^Z/ϧ* ^oVix_=SY񔜟jF5~QߨoT7f7f7\Ee]W]d㓽])߅5O]❲uO.K)9?e_m9z:<N]n'atDoz8W,'O)~x]OYƤg tW~aٷwZx4BV<%p^=l;ŗΜzxa"Oc)axoVTo~]?lNwpK zv]po᩷K$k_dxa_dxד%Y:־Km_o~¾6G]ONh锯c"OݾSwwf}g4|yJOk?U/l?u K>^ͫ>/;!v*똿+Zuu_翕}cyJϴ+u=u=[%NN촡+> /MediaBox [0 0 841.896 595.296] /Contents 2635 0 R /Annots 2811 0 R>> endobj 2813 0 obj <> endobj 2816 0 obj <> endobj 2818 0 obj <> endobj 2820 0 obj <> endobj 2822 0 obj <> endobj 2824 0 obj <> endobj 2826 0 obj <> endobj 2828 0 obj <> endobj 2830 0 obj <> endobj 2832 0 obj <> endobj 2834 0 obj <> endobj 2836 0 obj <> endobj 2838 0 obj <> endobj 2840 0 obj <> endobj 2842 0 obj <> endobj 2844 0 obj <> endobj 2846 0 obj <> endobj 2848 0 obj <> endobj 2850 0 obj <> endobj 2852 0 obj <> endobj 2854 0 obj <> endobj 2857 0 obj <> endobj 2859 0 obj <> endobj 2861 0 obj <> endobj 2863 0 obj <> endobj 2865 0 obj <> endobj 2867 0 obj <> endobj 2869 0 obj <> endobj 2871 0 obj <> endobj 2873 0 obj <> endobj 2875 0 obj <> endobj 2877 0 obj <> endobj 2879 0 obj <> endobj 2881 0 obj <> endobj 2883 0 obj <> endobj 2885 0 obj <> endobj 2887 0 obj <> endobj 2889 0 obj <> endobj 2891 0 obj <> endobj 2893 0 obj <> endobj 2895 0 obj <> endobj 2897 0 obj <> endobj 2899 0 obj <> endobj 2901 0 obj << /Length 2902 0 R /Filter /FlateDecode >> stream xM5=r_,\(|T) r8NJ!)rr0hrl^QHknUu޾ݭ847ca?_w??O?3-B\R$B[ٿ\䟌-m1?~wςMѧ&s~L#nq ̈́`n⣏??9n3>9f~PG".&m6yp|O39|[SBk*l u#EuK`3<:c7²܄kV/hnUE};ݢ ʙR=_D9Og{gݚ6Q')g3uS;xauqbW Rlf"X.egf$oQNt݅b9A]# lJ9 ۺ.߱X}vSge t-]wt}~銈 \}vSmnl+-? lޡ} lJaRI@B@؄ELA] .`(cG@3!'Q.Oka7mNJEq{N-}x(p`䨐TQ+ @Q`w/%(q^AqgW*`9*QBR*z7 ML +רxBsGLmEB;s˿m+-ϝG[6@;A_8=y?'ԝqݳvw4Y%)b8>d9I 12@A~ikz;e~䗶}^Zw~Kj5{ۭѦ7$m΅[! /6&CAqr iv7;ЄG@䙴q iNT'^9.XtrPjouE$`a̢1xyB<%oc`ivYo]<څ؞[3sўO.oϧ[d W6..[E M󸝺x`m/awψ-P±?u,gk:ybU`b;7;JG % z+Zf-M,G,xfWKihY,e%˶e>%K݀eKX)3b}R{,؞g^͘X8+qv  oM,uG,uLXs8GpAQ\s5+:Ayv cm8I1*W-QW@`溹ٱ$?2C[X`Ll:+x ,<[@+[rL%XXyKq͚[昘N5XymZ,{l ]|6V(ଢ଼$ J=w7AywQr1y+qbL.y,ЛWXyy/C]/D9(I@@@3r K'eBNL*e56G~jo7Gvw(Xy15LK;%cG= ~6<|_%WEʏǂE +/4Cv(' b=# ]+$`--P o~=26: oB;'}ot(N@l>'}o7G}qu8R\Șrp؁W^/d%O?nO8-=r3.lg^pp4CkVɄ-6i8oZμL[2XP0fWڰ Vn5M^$sk?S %ÿ ysަM[B<3.yު|<`[;v92%ռK9eu]m[֋N@Sr ;Ay7h'MNoB;q9'ۓWp #`~sCXxs1b +okVN0y8?0y.8O3Bx*:N@}5m?prTr&\^ݷ6KX R /^<[}cLT͒'|%EwM//c+Mw&Cwfj+f̏wl5ΗQT0ڎ/*Hv@E -w^W&Th`req@,gQ9UaCzԯyVI\B ``tg:z̧v2QBP!m1h!}"c_Ki Z{:-DPџW̎^ =`;xG fm1mp޻[YEL2O22߳-+_|CSPN} -$Iл%NMmvDrCYȥX(+Pb[5#9VZKG"Mgd3BBm>%ay21' 6 ,R$>PZcb+gc7+/B 17@G h_9a:s:*Xyw8- \+yN53M 8gˊLᨐG8*Zv9*z9*4A2 *OJVl{*v} Stg]|绥@A;! .yޕ/ywj҆rwʙ xkpe&v=&hϥ:mÓC^]Ɗ&&Cw#e!}k;S92m3m2֟ Pi3S-̫lѝW!-AwrFbhe.GlB8 G%{BZ1>Z5a˾f OLW6BZL1{ǺP0͖+&AwfFb^aheVy; i&ݙk)uBZݙK[_^㓠{ LQ̐⭪Н> *r|TH+V -$W B$B.5*4^A(^y(w]{)KqCĝ3Rn3kS5%I6]~z&6cɎy-쓯ş'Z'__~wnxݿǟwooƻ'o~HPiֲZ:Bzj%*_`$o-Wx,m{b]4R޳ ș D[%`]?s>$g`mIy5xir<06Z=L,-۳߷ۡ0P̧zSĻ]P*qy sz7]^[,$~܂bez5.vĎk1)+/rva`=dMm /څ}-2NJw wkx``rԞ&yw,$`m@V +om5KWG[;X4vZNi/%8 B+2i`R? Xy>?Sܖv>: ۳m~'`sk}Ox9bˆw&n!n< y,A[jBNVi2!Z|jVx+/"1ϞB_Xϵ&[+Kq]>~voX3k<%$M΅˙S~]3s^NjS3 @=B|+Ϸy} <Ď4/]b`K ڞ1G ;%aXm\1ԏ/g!EmA9K.י2Y6'}mw[Zx~`X# ^m <^,[oe`ڠK[@x[XeGhXyL ,@q.]JHy4!FϽ6г4ky,؏x``rb<0i<;+簠g ,hGX!b%ل r=~4!څ۶ v㡬"a֗풽v٧mGŸ``mٞ,9 Xx@4me^9=h-vͺXxp:mi},+kqsʋ[| V^4u-+)CM)`<3 ^+#`%[<v!`v*>5)UB X/-$1xC7ab.BXO^KrŅG<M;WD]Zў ,|Xy}WH5 ܉w ʋ-IA".QN vAd b J(gk=~g`M ZwdZ;@.=;45 vgI~ +W@@~' ).B w>v^\ ُ 8C w4Y)Xy[KS]q&$`}w"OlKSrⰵBi?c"˅ %k=%]RNV^~WykT,\nu<Zx-$f[]؞DZJ  ]6F5Xx%|[V^jwJ9 XxKhJkVDI@lOkiv|k =x#/׷oo}Uxg -y|E~`)ijT;˹}Z¶"?!78e^!J|qs}@뵶xirZݟe% kڗj Xyr%+x` %w)<)r?OAl) ߑ;i5 BZ5(XQ5Ap!4+Z2`.ϐu,Rx" "d’7('v*.<65΁VgVaOd $EmigR_XxkZDy<zkVmjf ^3D{@l1 ߑ@3ӹἯQN}C,E ׻vpN8"<[oRy D9e A~X{\ߺ@;;?"B "(~ӷp<0^?k$+Q5Xy& KGDQN vG@b JBε>Br f  <(d`s[Ֆ}ׯ<V^=AlOг*-JCM~a)i??LB{ Cs*5sɶ;''yv&C!oX[ђA3 `Z4C 2 i:hrUoRn[=یũtGkۚy4-C!dO8zGNTP“Br{B -97-ދ^Ъ O0*4^H[Ա(F;d}3GQȇ:D"@%G+Ӵ[-L mlLC9&IKMQq`2ꤍ(䏕[ 2LC  bh!^Lޱ bdŒDQ+zyreBMpPq>wn e(d]-C!oBo*W*PBB*zc_lΔ-DQnm+$ы*'m+yg u@(eƾp1*S0i[R荻p izǧiKJ^wK4~j)*) CE w2|;SvL*Wr9+emG=~#_R(ZK`dR2]IZ̷.eh- $iM(dkdgYLdQTHmZgSTP EEBpDQ}IPBZqᚷ;N5+ kpdh-mw NNeކ58'PT0OVB{KQ+DQ niq}' QCo~*[ &jE(2cAM336Bښ|g i yIQeB, {KQk7&UwRW愉^a(dVh65(*[(7>CcҚt}aPr dP. 썫yQ2mssQW?DQOQ!-jEE ST μ㓢BBㅴ 8B?!mo3(&lOlY8LryEdS2Ȝ1)jɏz.dv?oa޶زĮ=+Ã9l+a wWz)#`imMՀ^g,襃I4ذ1Q`^d=n'`b6 -zBzv=~ k5Юf:$̐` Q2vߘ &jE}-OQ+bd3#t6x$h zKv &Ck9e 12c?:~H;i9L im.PBɷHҋ+[̕LVҏ^q0 zG-ZS^1;*քЂQT`2Th6EL+.JX[>cL5ߦ6K=Vi.yқlCoG҃@ad;Dbh ]3}Q! <;a(Z[v vBZC-ք5dhåE%E8)*Z EE&C&iK05~Ą?3ZLvɎIٶ3:s;R\H[s` 3v/\~mLkGbdS0L)m5鳡յ3?4.5y>?JsFh8¬r\[]LVf΃힮IZo\8\&A Yʝu`2T0UCt9GQڰ!QlPn?#d (JX:^QԄQ&h'ɵNx͠DP܉Aq'Nŝ;w"DP܉Aq'Nŝ;w«W ^q'Nh'㔇єIfRޙTM&/bPl[wiE prg K-Q%99ԄFFMB]ha)`(JQ[((JDKGQԄjid KchaB9i&Q3u`LQ6NQlbH[ɫ }j2''\HB q^ahe >R-$GCWf]4'rDWuM-'w"}w+f9,d)ԝ3i}qi<]{-?G]w>K!a~Hw^eāV;!ck ^ٙ -Gpf7S̞.ha_kF`tAvO<'HqyS0x3 SMx=ItJ-yͧ}=(m|~UdcO79Z](1"_|gY@E}L=q}%?(Wa2vY]W.ٲ {a>l \Lqdha;.W3!?q2y9feh%`yBZ?qTw8*zeWi`kWCDž10WUVE]%9ig:0pTHZ= ^ڷ*7jhߤ_sqwy.Z9+ ̾ > i3Te "F6CyϪ{'O'jŢ՟?T"(DPA'O՟?T"(DPA'O՟?T"(DP Us92L;I!B6RjCw 3|iei"KW }MT` {e<vwy8;S{p O9f8(315$;1V(c;G sؼѲ0OT&E+Ki)o&~K噒a㙒aS2%)i_)^)i_h_)i^$ymU2 3 Yh_)i1/|yaU2%)iLIdJfJZ%S(Fɔ4J}aU2hLILIg)i^)iLIdJZ%S(慙VɔȔ4Jj󵙒F .jjUR`6X% VImjjUR`6X% FIm0jjQR`6hg\5dJZ5S*V͔JU3%)iLIdJZ5S*V͔JQ3%)iLIdJ5S(F͔4J}Fɔ4jQ2%)iLIfJ%SҪVɔjU2%)iLIfJZ%SҪVɔɔVNjS܉}idwt՝0;aTw(Q Fu'N՝0;aTw(Q ݉iĄB eLq'&z%kNL(h¤_B4`ϔ`&Iۤ iLIdJ5S(CVɔ_)i6S*jN͔tJS3%)LIdJ:5S)N͔tJS3%)LIdJZ5S*V͔JU3%)iLIMLIfJ:%SҩNɔtjS2%)LIfJ:%SҩNɔjU2%)iLIfJZ%SҪVɔԵ*V͔JU3%)iLIdJ:5S)N͔tJS3%)LIdJ:5S)CVɔ_)i4S*V͔JU3%)i>S}cS2%)LIfJ:%SҩNɔtjS2%WgJ"q3Fym#iq9I07/Vda ܧ/Ln<͢ha9هXQ2/haKư`(%E.(Э(j[5MдO2D^hC sUoUopsFʜ4BV標RT0(J٦(C+RVEƾ!AtCN_H.E 12DZ"z M`` c(J+5Br1{ElK%OXş_OO?<,O8şp?©S N'O8şp?©S V'OXş?aª}9ymd&IۤpwG&KgKg=u瞵tF5YYYYYYYYYYYYYi'5C/iL%+ nKgy &CqE!e(b\WNV*u娐Vf[P֬z炸}\ Z ⦍Fu.0\`Թ(sQF 2u.0\`Թ(sQ炸isA\7m. qsAܴ@Ӿ d,qlCq.`C EjJAdWb-$Z"v h>B\Ca-rd(E.e(yޚV3>|d-̍ĶC8q&[ne-f%j-u xf,ͭNE`u nb KILvU ٫Ar"OXm$hafoY]WLVfoG iZy^rB -̐Gj5ȯz[V`2}/ay+ϴ$heyT0L$ha0fޙ <5bI\)eheVcbheN#{l3 k~gux].bxV4ӕW-4+IPԄ(c(fpd3md2-h5e 1TXj+ ЄUфogQP18*整5b^P1;]xjvPa5 i*lߪھU}jV&9?1ck/N^^|{TI4syԀGQ9[$ E8dhej*ݎ~l!lj^ahe~ E+spS2G9q |5VeZ:X:Z:X:+,+ E)JG6Nf3u{])]H LoҭF{TVfXMM?ڇ3΁3ngƻeROs:`Xn lpΟ3wKxe`"xg)ܙ)B9ZC{Ps}>ɳ:V_-ha1{01w }OA`|dKsy#=q889a"9\0Z>heE`,6, M ˦eM.X h22o(L\ uh]E`t's]KrS~aG?ߞG/^5?٪]IK8aɖW--ͺ1Ͽ(MO|=x;!N^Ur?Z'P؅S#>枧sRhk[j-yk%k\v閣ߎ}95WmR6GuZuر2TR^7]}َc5͟R1K7wrtے&W-zoGvOQL1oz|Y^T1 jvl!{&[b~]<[nePMGsd?~C2ۡ)k~br7a)١KYlVf=gվ+W8U];5GUz6dօh rɞ{B,1U}D(KS0kUpƲIE+3~XXN&A+l0K&A=-OBZVv>~$he:Bܚ q~p0 [1!/qۑYBƭN iKԶ -T\U (b[1WF5!;yPF0}LKizqTS]=6 8\5i#a֬7Wwtr؅ip0Lǧ: ̀PaȀBťysCS֘ ,eG)ETdq'G eQFLjAw4fD`24'N Yʁt=_*,W9e_}?/~7,K=pW!@Ʋ;<R2}9*XY~O=Lgq^.&75Kքrw}]ڠh|oQs*yPL=ӗBI [NM̬ M-HJr|RT2a|RTH㓢p|RT O MI;ϷwL_;YI#!u8 k Q0Sl6o[ޣhannPdnf%Z3,1&1!-E+si?/Vi (~ȰȰ_12ّaԑᔑaՑaԑᔑ!.Nv0PmRZf:9%W -LoD w+HOQɄDz i1I?d/5(}4~F+lSzyvvXvXvvvXvXv]cEcm>Ffhw}a4EvH&Cv)(b5EE a5Ei0(kb +`("u\hAב2my4ztxe _peh鞻2IKT-n4K7^pK'g)Jľ1b^tmCcq>`G\|n O'%uSfwHcČe3rs.sDflx޹AwuW67WlnQ[l]L  Sb̜0hݻ CheJXXS5W+<d?+ż]Y\Rvp={ 'U9mA-KaqR Ka imhq1(Ka,W,!RxyhH ( )ԛuHa+y!%!%VE%+D"E)VEi BbEQjy'řQHKQ4B _B s+Gs  ii\8QwoSӧ$.&߯N͞`_BR΋D*E ٶIt ur4K ]Y 4&S0 Gl^rO#Œ=QJbJ<}"ζ?Ǟ^"ycL$3=:+{OP'{=3~l1n6r\(ئn>&FTr/e >&_P |~|c ,aۂ/3G>sž#߆[ާZfK;|2bQ00ۻ/ -^E+#lR20 Up{ @QIDhC;ã#,ʝםdO_8i3%w 49ԄFFMB]ha)`(JQ[((JDKGQԄjid Kch SoUottI3he+Ee]tb E\P{EjߪhߴH^5M@eU99BZVbhecE CSl)5)(xb QP9zW,ͻF8e6ħӖϸN܆j>\ !E3w׉a9nN<|qd<[̱UXpaxq ##Zp)-Ekhy{<2o<2oJdQ"#+"#"#""#̋1J$}a$U" ##=c1/JdS"#aDF%2(F/JU"a_a"Q"# ##aDF%2¼02*F90_pa62(V=ʰQU2raգ eX(*GV=ʰQU2raգ e((GF=0QQ2raԣ Mz6mFFX%2ªVjdU"#aFFX%2ªV0jdQ"#aFF%2¨Fе(F0JdQ##aDFX52*VJdU##aDFX52*#~>ߝۗFFM3;aw¨Q Fq'Nŝ0;aw¨Q ~܉ ʘNL(JŝPi}uNqL;I1F0jdQ"#̇"#a"2~mdUΦFF8%2©NpjdS"#FF8%2©NjdU"#aFFX%2ªYl)NpJdS##DF852)NpJdS##aDFX52*VJdU##kU"#aFFX%2ªVpjdS"#FF8%2©NpjdS"#܇"#a"2~idU"#aFFX%2~}dDF852)NpJdS##DFoe+ aB{~B2>k.>a Xw郅֧5Q磱9}/PK:·pK1 /z֗z֗z֗z֗z֗z: /{ Rh=B~/zuZOк ^hS/BZ{ z^h=Bn: O?=SwvZ{tZ{ z^h=B~/zuZOguZOк к к ^h} ^h}ο9 /{ /{ /{ /z֗z֋SQڗBZ{ z^h=B~/zuZOguZOк ^hS/BZz}[,BZR/BZ{ z^h=B{K>]8LZ?m1{Y R|5B>k^к O/>w\h}Xh}6 T,NQ zBnjqȝUh ӧZ? 5jĤFt7NZN 'ZC%P;b!础vZhwٰ]Qș%8yWiѣ,PB ҊB -$ 93T(P 3C_Xh= #ZC( ̹\ra(.&CPJ=r܆ Pg hIEheBr|R2{qr9>)ZCAt9>)*0>)*IQB8>)*z'E&B.2HZCÄeGLgha(NN]Ӝ'h eg.Cteј RI]hME;.6 # OmԑᔑaՑaԑᔑ!&*Me K i$[٫]H 2%z;PɄrle4(&aav|~vXvXvvvXvXv]cEcm>FP8ELY(QTL (2E.)EQZJQl!#$"u\hAב2meFK7n.~~^MtFt[i.n33Mjs` z)Zq/.' O/ .1, Z1,N22-͍a>zd}g5 k~ֽ^J])Zü,|x550^h}V (#jKAYǡ°dR2-9?b)L;7\ ST2a)LQ!-9.Dmg/_ԧZrQR7CJV(PRIQRbHQTRBh!\!RbHQV)-$\^1f`7}D;CqfebPV+V^h}y4br4 cX8݃ 'V6к /N#\RQ\MJGq8EK[)(heR22{u!mtO?˿'ҊKr!j-~ XU?G\xF~Ǔٵ?`{ m* S,ڹFm͜#+ȃmdWLR /[,\g=;}c`湬Yr2J;X#l,APz۪uLK5s}-l^w o67OZ9 XxGLZ-D]:tinSO:ר+/]͗N*>1&HQ_zz$ R| 2_:Yŗٗxg_Z8RN>b -Yŗ@/=/-(|i8NmNnafT1߲!=gK66!i o"5V V EÉ3zǗgg0|Yae -+ _V.+LtB|Yt;f O?Ob*ϋo[͵ ?˶]TpK3--GXYrR0QW[9:(Xxݪd(MwPh D1).0%S'i>Niz6[IuAN aN8M7Y(h[on x8+,IN c*e*|&U߸I1UԎ"?z]1*c*1M*II5eM*.U6TTlRM M D9M vQ6&A٤=@pݭIrΪMȏ"?3S!+i~shZдCӢyhZB"MZhZiQ M<4-jiE-4-дEдCӢyhZB"MZYiohhZB"MZhZiQ M<4-jiE-4-дEдCӢyhZB"M/ M<4-3Ӑ;4ܻ^Q[Fy|o (k}c13# 9.CV`Jg_Z;4vC}Ƙ@)k D95b(k ~Psz)x*5Q_F7t"ߵ  :#7Q3ґ7x|CG35O,rO,jXX<=yb{bQ" =1>X#*=1eɄO'-q67xnOfHLoxfL% ̬"01X 3Hde a ʉ!c)ρS! xFA0QwT%9G.hLӄ~ ͳ َhtOzts=Z[)y0uXL^qA?|ij݁golyOFWLGy-7xtZԘQc^GGy 9?0<>2Y6 |H}{(o> 1h8@;p QoXC(G``Q0 >@S>@leh8@$b#s 41b#G(QׯHf }$b?} 708R&yZjFV3fƚm+ROͫyw+t8K;!y hЋs3V"w *RT0Ow*6V]I;i ?bedhez˜-ȵӰpY2g67[ &E s][Ki)ZKVһ(ZoMT秋^[ &jE-dۏ8,Z>ʢFوXFe#*F٦Me:6e([QlUF٪Ue:Ve([QlUF٦Me:6>ʄQOQe8zW]e!*/-9ʤMH8uXi|?3 | ez&A?b>&祯cBVVWw}ܐqtߌ.GpGP h-*cwaZ0wuhadZސ<ؙ L}I´7 L wZdp\z0 Z&muLVf-l(~Uߘ"k6*My("x%퀊?|^Ѐ^s+U ЄUՄthԯU>`N:-evI|X: 芶|! aCi`!1R֍ݙV3t!N7kWTdd䡲.~(u_\Skڭd&Y)؞rۯck%'oźS)()i{g[JGZꟊ('(J2y(5)5尺9hU9KRԔ!`(JJEZ>EC>h=d*?w4gyފe%eJEr|MEIWi|ǒ͔{?\i)K=%5&er/'))u}GSK(Yf< k|(UrUf=&{ɈdKc>c|㧤Ԟ붼Ʌ՞r,2)ȲBf_)ygo>,Q;c< 3H57V ӵJf_Lt sk֚t2+Vẹ~CE5%%djMZhJ|)ʘ mhkR*Z/VQS5P(JJEZ>EC>hʾc0'hjbqiU)FLVV04)hjd&)ٛH+xqC]lI.cnIܒ,,ْ 6&BFTK)(l~5U6Gdɷ ]%(l,lIJ>ْ -@CØlIRNoI0dӁb ن8)}L–daɖ$]sM]kݖZZEaўbidK2PRvɖdh-OECV鳍bCY(l5U6R6()dK"ѧ(z#^Gic[e-SB{ɖdظ2:-’-@ak2IacORT ޒ 3C?%-V I eM<)Fɘ($JJ7&[R ɖdL$徒lIJ-Iɾں-8-,D n"(jMӪԔIiZS}>.EmIF1Ch-+ݖl%h-iOI3 Maf5K6ma,MSHbV:Eo<P6* ۠ ) [VQCiKS=#遴,0Ii 46m9$M[^,mنrs-۰v-$a*FƑHrӶt!Pr]o }YRLjo/w{C^UOR,Zmִ۟*T(:RR޴*ǡ? _JEM9]:™lMMCRЪ,]b}a[=Vҭo$j)쮀kX) {HQS|_ǣno} k 2F_gPUhײQж-MU4mLV#a[ڲ6"S>V**=(ljEIlxlƾ(q-َrˆW*Lʮ^?a/SԔp,g+j[}hkyHQCs$iub)ل[EQRԳ%kTmSZGC.cϜgNgΜ 4!UVe6sԔISS&3'M29iZISkd椩)LfNRQ$I$d3'MZ5E@SlhM1XgN1Z=s=gNwUIg8F h4r\NSPk~=)$=FS(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(dK(bώk5SQRNYpgr4I7C;)ʰB*9>a.}KV[ߒUdտ-YoKV[ߒUdտ-YoKV[ߒUdտ-YoKV[ߒUdտ-YoKV[ߒUdտ-YoKV[ߒU8/.MUtݧ*zJyh &(塙2f R"ZE)Şͭ(f5UWC )J)JoM)pLR>R*JO*J<(ljEIlb.[@^͂Uxu 9 :eٳ"_q?u{:GBc _>/J8O:M_>yx:>~Vž~]ϲ/ mPb_]mu~[o~V~?1uOl!iGO6Y}ZDu>:㮯3~b~t]'ϐxl^*ަ$_ϟ~+ l*M>`^km# q:]g|=}ud~+ǹe[~|uz>ϟ6ձ tuK[>or8u|zN'%/m|x?qldqu퓍 q=|fdzH> Knq*aJԝ]|DeAz x~E>o+N}do(J=l(o󛽓k:\=")m_-C)){/9_=ڷj䴖K/ߪP:J&v}ZGCDZ]*:jG)4 4n$n~AJje?dIjj+5ZERSwyWII')Y/)y{*س%}$ ~?=ž]\y wT*,Ij_%Jsߜ9}s4I$WKySv-u,kX}l߱ )Y i^?v.FW`=NR[ 1n~SNv?vT )b&ԔVώ{f'w.,8ɻW7SQ;g<^PJEMy*z[=)l]U%%_}0av=(ƐUV.Tzݸ/կzco>=2swҗ?ǻЂCz %礓JCSۮ{Sh@RJj*ֲ6x(ܞ ?%J7*Loy*ee C-MɷR{q) )%%5J/=k# <-IуqH6X jKe`S,S777yJ fW~ϿK)&cS)hUnkbOa jjI-))(%eE)J}Pd!I}_DIjJwtϛ/lqT{|ip|j5w/~Dz:L#>Xݣ/>F=`#uHjg~S]G \7_SRRvt,HX%5役V %=_;7yKZnq]C) k=_v[=)F(JJ!P#aw3CB _%{Q-=}▱Vj{n#!2mc8,7񱃦~AJM=@ <1>\Ԕ=ґ=C)(){|(YEEC>TZR$P+J!Bܓ{z1UBܓC{zqO!!=9BܓC{zqO!!=9BܓC{zqO!!=9BܓC{zqO!!=9BܓC{zqO!!=9H$/H)$MiԎ/;Jb{㊚2}^tp 'w/qKr\~Il[Kz~I/A%9h_Kz~I/A%9h_Kz~I/A%9h_Kz~I/A%9h_Kz~I/A%9h8~a(RP;_:k!E|#) yHQ8FCd-!ECV<(E”Fv||Mir Uf; ) 4ZEQ'5"AQRR)JR+J^( |##4?L<G#,<}VUfChU-VQS 55{wkʚV_pXSRޒd*IC#,$V'~b$S sL!X(F<[ScJ`L)y10Ɣ>ScJ`L)y10Ɣ>ScJ`L)y10Ɣ>ScJ`L)y10Ɣ>ScJ`p6S6}o}-=[QR QuAa0HJZ`"))ys'Cs$iu~MFAC(lz4U1=$sPzkӋm:gBxl(kZEqܥ]Х]Х]Х]Х]Х]Х]Х]Х]Х]e8$am#`ćmϰxBÀ.&Űu}Mmy}l(ON[/ϗ4LH~9mXkWq{Um׮Zu-p𨬿y6\ݢLӪ)Ʋn=P*ZzEvChU܎U*~"l[IGf4JS^f=T*j{Zg*UMI9veQv-73ghX)zh? y.[xYS5"ךF*}L>ׅE[..mOa^bg̔B_JE9NVvkC9mYYצ& +=5|B:Vޕ> V(XjF(o@V UY}ZIQokCr#CU$E%EZӳ\ 14#JJƕŔ9CjI]VҪ #)2ǼNV0VqFAIIh-h[I14ZCiV#:FSjfh6*HY *=#&XV8l-UY쭺d*mPߡ')d7a*%e\`JGZ&(IzI#uYGjYhUL|k!iUv}ҋ[EQRR$(r)W@S(YsOäTx=|u*>EG8cԡ=#!9>M5 cX9>^S1[>;}~udz zC5)$E5%}$w̭*2꟒Veϻ2-UYGl\SQTR$,zn45vq+iUƕI250 UZEMDhZaZEQTR zi6Y.OUR&3Xg[$!P~ik;w׹+&NX_O~ѵuoyNҵ񋖘^>pI]?)U&6LW=h\=JTV;:t: )320V!alpVDӪ!~5U|(M b?rShU֥O^R*j/sZEɷvUK{*k:<ao=ckehV?5>xԔu1Q4#/gjsVh-cݱT265lnR*Zus <-+eG4%e^m dam  4V5VVҫ+\d/+cWCrh-e5}$Va d7@؈eoVJEok}JjJb%JC'))gK֎KYASNSe0IU(kJJE)Z PPB"AQSp(e_ٺhZ +Xuuqx||iU,ѧ) ))ib{j~[ӏT*cģVeOjEII(Zѧ(z#^Ql`>x+=d >crHIYϓvД +MMyo\SGr'_Qe5Ao ZvvHvW$5e)iUIIyHRr!ʷbp/Krf чֆGОvT,C1$iU&Uiٱ8$aׂٚ[ECԞbRu hm/򐢨ƿ()''G-m '>I2).ԔAŭĬ))Y CUVqGXux C>0Jpt񒢵$EQϖ[I6 mMֆG񁑇$5{4޸vb<z| TBG?)HֲRQx\򐤤\d-IC$V!4I\ lt+=CF*AI>Q}ځIwVQK?%%%+=DyHRCCОG:VzF㊤v#UZhUXhUFo1v ^3Q"~Œz m{UXiUWXzY*62fF:S585aQӪ wNqW"^}CҴ*ՕUR*Zp,[), VW|;5Rd1ahj*1#>Fo%5b*} CSR CSGMC8"i1(F+ +- 5'?O@eCDSSwZE2д*~V*j -F|7= 90QHjJbݧK+Wo%$g"y(AOR| ůX@RG[ kHh*ҽ*j/ )Z_Q $zuq Jj}+)*ɷ[o*8FH 2̇ 'HZjuT&kUَnz|zSª s *V"as|+aWƕ=d~OF=dճ2D<(U?b%z(3֔kAIM2tMEɝ|>3k.ي$[``f{ 6m`f ~jVL &1&|}=FgL*1I6zól5vLډ$\׿:6VeCkي:+)¤ŹZf(gp U߰Y5Jbs³j\jP Er 9J1$)EE/NW_ K-STwrA|hUU"aUIj6|o%bSY:np'سLx}ۜǎ0jIM_E#hUCJJʺxz(ՏƾMt*k լ8*}|5}$w̬ma("kFs\cږ]c\*{F{Jj&h!UYaBZEMYN CRRo:"Y2n%xVeՔZLG=NV?JEf#T9Ijˢ5ь'))=%%k1$%Q(JBJEd/Ze$%eWK(2TnX"P`@\sxVRSVk냁[Ek:O8R>[+iU$+oc_l&t5OI2ER*Z6>=[RSÞ-)+a )Y;5:J¸Zŕee+[C)es–hICRRQvOF=ԁmgQR&$55}$w̭ i6ٓlRO 2IM^&)Y#![Ew[E]2ijXմ*H!MMY'HДӔ<) OMI'k%J$+J'ߧVb8Ԕ4EĞ-)YIC$V))E)}`|sfv]T5]MR*ZuT@bZE2`at$%kHJ9'$>ZEf[R) :c(2P1,a&LRS"[I<+*j_ue(YOˀcfe`[~E+=JQif,iUfƒ}rMfMIKžp\Ԕ>_X&))qň<&5լɬ~*fJE8[)}o )je\MnEII(YKѧ(y"^Qje>xY3*#H4v SRS\ 1$>2Vn͕fe߂˕pqMIhZ6fKjEӲwOF=5j$%%mbhObhOchObhOg{2ctƸ'3{ y$hZY{jj%VV'zESRo5%k=5%A iJBJ=C[Ve%%W4V'RAcٚVehkR*Z@ E5zY hjJ?r|HSRLS 0n%V")E)~Z;y_(n=އ0Ek%:q RJZ+'O))#AR+SIJJxIZegKJ )EŐ}l7[QC,P>R7/烵맮‡RG=w=_xVJRѪ]$jOIMLJRVB/炚p +*JEL+5}``8L-)y"^QjR*J>orkKUٹTZ52EII(YK(ySRjR&1:6zHRRzERj&}o7W,bHRSrZyK%WDDs>E x(0򐤦t!IZaTCvW&#isRZyKW`)#wgfeY!"kF+*TQ*gWSҪ\]V*Z1*jJW򭤤D泚X<9Ԕv c?v*]AҪtP*jC]b6x(fx'*>I)}.|+)'%5nDIIxIZP\ILZ,u\ʟuZM k6J 6z#_IZ+f% GsV5>۬im?M_)ZsQ-ثLvn;|V`?[A{XDH7Y'' X`ߚUՇU7m ת\k$f}f)HlZ4}Y;Y*um 1 &ۈs_8xЁc#`o .bfui#M[W;(,SrĬ%?٘kn?T܏$~j$Ħ 0/h?z\yN ox2#V]߾PP}뭻.}y7׮Jm˚]\H9.m?^FWڕ_7/o_k_^B-wRsr ^6v_}GʷR󶖞|T}mٮͳ UJ6Veݲ;RQSA [C)(2HS(*~Vz|Kl}-*x,[SV* >Jފ<]͑ U9Hs$HJIZIC[EwjOIl(JWaGgchEQɑ(Zѧ(z#^Qlʷ>x< g`_PVBoH*cLCIZPgChUƘFk5e- p>}Jcg#!|V*݇"}=RѪ m))')C_e4@AZSQfqMG\ٍ#/gj6!IMyÝiZΪRЪ}w˲n(')')7WRXPnfIJ`5%EQ~>ptP*UaUJ 5<)kYnjEQɑ(Zѧ(z#^Qle>x~F=4v_%5G%> g|2ς p0kjJCZi|_t}Rgs)#>ACV{ՖUim}<*]RQ]a[Ț୅H+ܞh  +rq+iU+W$E%Őh-!IUXښU*]%e_~JGU:"yo?^cs+CVXN+n%J+a/UxVҪtsKjLE*m $Ekw=3 MUp)FžF!4PcWϲ QwiVRfjmfW2qMEɝ>3k(f(De+K/Eد,~pbg)tVQS/#$)*ٷYFUTs {巡T,1~|+Yb %5o1XgkJ\gk:[SbP IJE)͕HްfV+ZWօ*ݻ gYȷo10DNgo,+QHj̎Sѳ8b[E>IYk#g=aƸwrhϽs/KV{g0VqoH·X2Xd8fkjʻeVkݻT*C$桻 [+)FIoط2̕`f)]z fN|14dMMgdbt[+9Aҳm%oENCd0')J&^D{J^&) +}@[үHCvy4V]}vU0f?RIZ6fA{o) .H#n%=uhާ@oI=VW: 4H["^RV&s_dZ%FJ UfY #AQ"ARVSR+{Wi(= :45XK1$iUq+))d[̚R{b֔[R :W  (jd$%شٞsMgU }lVش $ ?~zB-t;{|_>t\5:ȾwNtgY]|] ~s]4m7W%~/^C]UjGW/شwfڥwcސѕc=~lVhؘ\mVLg2ـfI0iqE`lL,1ǕTcl]=6W8(]~VY.ײYaӺ-Wy~L19gٕ1(@n#s~~ H~Kte:7k6l >+1$&nRIbmp5_+]EJidV<ѳRѪ=[U8Ǽt5P)Uj<RVS-)%ybԔe>B#JJJws^SRSz}JZʼǛ[EzWRg4e~Te~A%dqݦVݣuׂrqJGک^hX(yh 9JBJE9녎t]o&oeVeQ{T*-GobP$H8_#ARV.9赔7%k:ְQƐUFߐD߳*6Őy5bQVbU (y*T"|(F|`1̇bi!ڃq;^6{^wYYM1'HzVp>k|PN 0$V!e2^6%l <(+aDZsߜD_`ˢ2ЬS9JZj~T&9Cz%P Z}8 JJJ$%k am\F`JJ}ERR*G.a#!0%Y.aJZbǑHV*Zk"[5ckSR։ Us}#^R{!ْRP$(J@JE1Zb$s5\"W?[z T*Qqȵ zܧ}e_O7>%}XzVeilOIMC/iU^&))gKJb6<LRjE)H ݺp!M5&qԒDzv'LNJJEG+5ea;UZ <))aN)YK(yOSjR*&k+g!EYWRc ~?&IjU7HU$jyGSYY<ְg+ˇ?%%kI(Y=[ҳyhzfMZ>ECߧ) )切^6WADiG55eVeWoC2>P`rCs7\oJAziXhUT;3v [%2f1FT!I2؞Ve$Ǐ2&ʘec2m $ZX1zSׂVZPSSõg3XUXwy cٔΌdf<&v>+)'?5=kП/SSRSSG$IC?%VR"Vb|sX70隳}K<c(0IjJ6^+ _%eOPZҪ_[*=%t,[l 3)VQ-5X#aE*U[?I$/ RJzփ-W$%%Ɛd-!IUHۚU*Y*{HQVIRj\ Z]2 =ivV+V}>GUi_쬅g+cʽ _HSҪY9T*gKZ6*QϖԞ=V!lkVSSiس5Vw!cHSS/b iJ%\VeTԾ) zM_CbHQO6s*TmM*jJMS򐤬^&) CsPcȻѿJYktvՍV IZhkX+iU/RѪLlX3[EQM$=q~Q񒒇*T#z}`dCa{FfyQ)jN klEo'ԏ(vZE/ \~l()ѷS2:L&uI2[JjJt}r_ͅk>_hӖRQVe/Ui ؅Ք )Y +WMC$V35*%}`|K &8Et߁H*W)$%%Fd-F!;oϱRQLGJz~^_ihZ *#ARORF*}$=yMu`lr%J  Vei>IYYY)wiV#))ѷ^=Xˮյt<ִ*m @)45kkګ+p3t5쇦t)#/Mr|`x&BӪ_3]~%eiHm `B$6i$ZMk?ym,1slXG}%klZ gZ4GJaJaņFUA6+|ՌWo'm',jIj-g QIu+-mgƊ~gݥjj=T,aiA#?Yɹ}*k˵k\QS֕j]SGr'_Z65WUSDK][cOUs{*Z[}&+J U:C+=ںvg?k>Um}畬T*ѷϓ>s-jJb>]RPR.P:֖+*{aM}7*Cb$4OP>v9 5wnu4fPzjJw*U:CdkJVeh1VQ-Dއq%w=8}3k+w_ҕIɾDtp#M&i2Ed|9)~.VǬɦޒA(دy*P ZARѪrR.ݡ*~ܗ:?r(=ZJGڲ2=O,7uV**~4Oe{4SvW".wӢЏ@Y|B>xͨ3 5C)=k*jzɇcHRַ5ƭxs|C~^~C_3-=Dp'W#&Tný0M> Aaij;)hQG dԔwIJRЪ{B7|mT*Ϛ0jhZ[eGF )֒i5AU\nU{=5x/'=5jOEM^MC)()Y2JGڲ;iX(zhtsEf#4HhĐV JJ~4Cx"k=זV~{*1k}eK$%%vچ){*Zz20UYrtþ")gτZ\Xߧ,w*ƭ\#{!$5 ⡥CރRP!g{O"/R*jʱw*jwC־*rt$HJJ>IZxICV#4xV e]|*⻣R{gҬjҬ|>5!Ұ׺rٷ4䲗sO2*)K09`.w_u옣י`sqUdk%%1G>)绦JqĔ5ن+*(,7gks/ؑCrr$5;zHROOtמU/>.VYu𴰰iaT6Uv.yVݥϪYu>g]KUw.yVݥϪYu>g]KUw.yVݥϪYu=w:0zVU}D}Jjڛl]SЪ\'W w k5[E<`7^SV牚س%ʘзcE1 B# ~t'_>`b?l#eGįd.ex|Xاv]Y-|\S=L^PSdDJZ2Y[J#6a˼l~)ei)c;jn|Ӫ˼M[}n=*87;|v+w(õ9^Ԕ.M^W~ݤۺSII׷CJGy_J[eޖ< >8c:\P ݈>E퍵4$%kbט5eim'T jJܦ:QvmM况m߬*}[}1$+>Ty [)L= mWU5,9%%Eh-G!ebpVdO'd:1ӉDtbz:ĜN'd:1Ӊ9NtbNs:ĜN'd:1Ӊ9NLtbJS:ĔN'd:1Ӊ,X-?i˟ږ V*j[$uL')ƚ-SĚKGFZ1IJJt f:IC f:IUtb$,[ YOg0OQ[JoKOWI.FJJ;a8u8]]p.)zhe*}[}aei2LZEq=)}_VQ9%%Eh-G!ebpVdw'0g|bQ30ݛ|~`:1BKY_Z{ ôz>NܧUY݈I*j?;s4)?^OOn<7]}u.;U_5,x[t>f*] 5E@#$4T pZ!g)G\!իJjEQ>U7X(9~tezFK=cxgIҞ1$=O{F!C3z0k*Κ:JjkͻMC)5 k]7*>0\VQVި)Y˻Z{Z (Zʏ.O;rjѧOrG.};$wtyČIČxJ+]{ZY*bO)/s󒒇xPPTvWhAQP{bp )sF sVQ̑etX!M/feO2]fNge2]LLˌ=!|Z=ЊRGM4P~1J'qW*ûRŁۏ7`}wG@z?Dd븇6^q;w72 %\sL{ΞmF&OQK_}͍m,j]_7(,*5]ҍ˴k9Y/?Ś?Kk,cPą޼eKI,ܗ.TJIM ZIOh),.%e%,%%kq._ `RxNO]ꥥ.9&VԺq')v)RJ]Vb QR%E%%Eki()z\bt[`>RJ##Y+)d+D^[!~d=.> /MediaBox [0 0 841.896 595.296] /Contents 2901 0 R /Annots 2987 0 R>> endobj 2989 0 obj <> endobj 2992 0 obj <> endobj 2994 0 obj <> endobj 2996 0 obj <> endobj 2998 0 obj <> endobj 3000 0 obj <> endobj 3002 0 obj <> endobj 3004 0 obj <> endobj 3006 0 obj <> endobj 3008 0 obj <> endobj 3010 0 obj <> endobj 3012 0 obj <> endobj 3014 0 obj <> endobj 3016 0 obj <> endobj 3018 0 obj <> endobj 3020 0 obj <> endobj 3022 0 obj <> endobj 3024 0 obj <> endobj 3026 0 obj <> endobj 3028 0 obj <> endobj 3030 0 obj <> endobj 3033 0 obj <> endobj 3035 0 obj <> endobj 3037 0 obj <> endobj 3039 0 obj <> endobj 3041 0 obj <> endobj 3043 0 obj <> endobj 3045 0 obj <> endobj 3047 0 obj <> endobj 3049 0 obj <> endobj 3051 0 obj << /Length 3052 0 R /Filter /FlateDecode >> stream xѲ-qίm*EAlQcJ[1p8t%ifv#QU(`e<﹊P}k#+L` <~So_6y7d Uy&Yd1o9&s)i;QSNço?,fss":OaLQ|$q-`x㚱G~W/Z^Ig]ǟ;79?g󚪪PG_u$wàQ{i*\D{/K0u1co<$MràڼE(z>ly_XX4)eCZaMKZY}o~ۿ?~C4}B??_}|?/+$r[Y%B+ $k=qʝ0{Luh+fft'xS#փI"[mPl Gw%bN7a|w4n1/q6i6#ccIaɒd?up0x˿v;G9M&CĦc -LYO7:ؙ-̵5qM Q#ṃ6 JUfasH i q=摁1~`isS]^:S@yFQejb[\)L T$hvnyp0S3PeyM$P/4Ԡ9i>b66HA *S?,Pe.JZѦAC41o2nR&q|0λ(2z+Ƭ is^SXu0J EGFani1f5^icR4C~M".+Qֺp--F;r0s_f#o\Q&̇UfڛnU0L*s.}en4+:baQ#-M5W`਱d>#-CٻDm]iGt+Y0[0e-jrƝ[Tx]p  wx;ƍVl02 wo{w`Gwpᦩ-1:+3 Wv]1xfH,}`˅9ہ̰R8ՕI>UсmX.M^#۱`u`;no Ao.nwo[s[ǃü LB& gdPp}{+>Y@pT_3 EK5X~4{u1S#/ aYm!}MAZ!k$ DSO7TKyCs+&2m "l(gw<`l@X /}h <m :MR1ijNM!x!6BAIŲqDL:gjtD^Xo߳]_^o%Ȕx'h) Dsi\@ 4Mx_`_=}9c32e({F:yeXdj*/r}#`yD+'SFȸ2KJs 4r^H.l@˜ 4 Ü-ЀKgR͋~o@3# 5; 9G yYo*MxoY%B$ yqKbXVjt;_u2 W-$CCYt`o!:a]cZ%IJ1 X<ꩻbW[VBv6-d"TהV/|}f֖6߼P%6{a_>V,sMmmn~VcMOͭ|ֺ1[=/՞?&jeH^Z :SVn2]޸K [.lz _ͯoS>u-)f\plu1e]N [=æ؁m؁/؁/ъ`wop_f ?v`wي:0pu=KdiffgMf3[hF1h޸Us4Vځ/ , 2Öځ`[`6`&/cd_f,{O%1qv촖;\qo6+|;0ڎـ;0n9j(ʋqpCQܔs-;6Iy[#}#OҌe^͏3u-ZTHٳsJ%3oڬ1Py! ;[ ;%XXxSd5Fw ^ǚKAəay r1Q/Q b~oLcg7>uP]x,=PXC;T !<*磸lPyTN^|Ϋ^D9 (*/?c퓀3぀(g:ـ9gҀG@c8O(*eBeb9w{?SҴLSȩ[? Ou!^J[Yp̩nֱ &>ЃО갊%[)SW`uhOx9&Eiÿ M!M7%9*.x,a8/xנScx!'R14DZ,N)! o-c D#y*kDdHKb?]3횁hgw ]9 xb:[By!,("uzRTQPyZ<@y+-ͼL/r6o溄,㝀(4sy3QNMi % ҏwb?]|6é8n~cL3PySnG@KeRյ]Rw5Xxr򞦛$NA^p3bPi1VaޝTM|=%t?v@x`D1y`g2ԔKc O#`zo#‹TO@B}2Py% w lX77?kr“ZkAZ<@@M^pf 'ߍMpD]rkvh$~m<ȶw '}ZO[SlH X.T=0㖁zkS- /nG(;|_6#=뢽k?s䔐~r4[-*kXxk6@xn)q^b`5̃ D&v5wD9q 5CĬG ~q@iJ0<,T @@@y^ ~7<p ]Ǒyo,f珮3?i3*O4orӴG;ϑSv 04p\a-7A{h\e`I. ,xӎ[*O -3< D9q@ ;n)vA.C7  o8C]h]ΐ <3Ʈ z1㈀fΧ_\f-+dq7'tL{ɩW\sD{/IS} {Sf^zfӹ ̀ӥa{#E=5G?g7ՇAT]~ݷ!K׳v:yjID\Շ){sN-|\u_0 z/_ǖ faЍ9V6̏w"e~5yG5$_H۠FC&kK0̨Ww^gitk_-xάLm<;s\+5jWj ihZAMX&AVZ΅jgDM3tg6;W[r #2ӰԜp/hMwsMCjnz_520u?-Mޝ/ywZZNfdiXCl;_]Phft+znf 첄+ -)39ds>Tow1\ai2@/xΚ6 T>K ([0wVc7 OC 1yZ׀('06 ~HCBZ)Tc`I]Α t\S8;2w /x'rj>^PXK][-hF&Mm a`B{:~ )_|5xyrfnUd '823%;w0Cym-Ng-Pyiɔ)d pd ʉQ/ `xC9 XxS=z!:@, >GwK h ,T%?{}u4=w^L{Ox\9給7al׍TN2u>0P rܕhRwZqAϣ,m}D3<9OQt~GBq7f矆q}K}W33 08 |c#!|fwypt-/+KƜ+y51zYqtg5g9j6Q#-$phv9jz9j,2 jJJ,Ul%j\ڼFΗ;_--gkC5mBG.ڼFΗ;=iU q;(ENS}[)9ֽt vY\IVm\fwfs:s ៣˙ )59ywFץn?l=׻ˈ"ݘb4~1K5Ɣ&_HKЍVWi8Zy+_s P#Z,aͫ&re5,yc-7˚ho96R8fEcbqѹ~6ף]͛=/鞇f"Uj5 l'ce'3@WuGu|.cLnA,r ɶG;ϑ3N @qkf?#do ,GNjG@=&\(}FNP3-3 ,"0tX,TZ'cMR0rjg,tl x_s`e示 frP CC|enlOb}u-,Ej6㏁ 4T@#`y|hI“s+ /!\ݳ['n'-7׃#+'7 g}3xήak* g g[}N-:Iˠ{8ꅂ[;+kZX3R/*rsG›) : gЄSg<^ i{Xx9TP T|>~ | 3 B{R|džq]`uKu ^x/Xx*v4h՗;!}U]a8a!o5 s.+'zqyw8X2FN\ZYu~!?o]GaeԴe}TޒjH꓀zoxruM9O#`pPžRhcR+:eFqi=j/X%pB;vqGA#șp?qJ} KCs㈁ gG ,?3*Oix);y$ Cq#OS$+5 ,^nZQ/FN*/=[39 wbG;7GRGuL#'q;oM YhA n흮0^7)t|y^Te[Q ,9Py'#>|T}.Z{D8/1Pӣ䚗㝁 *O=oyTm+<*x,-hXxggTa7^ ,rƺbKu s { XXxaE{|ôyhgnJuOg_x̑y''#''V[^qs'ECGʬIUDh(}/Jz!`GV/̼u T^jqeQU%*R_zԎ-v1Py|nMM^3n_b5So{ds-yo뷿o7}[ { k!sZ"Ӽ<YE^ eЩA{TsּSH[T.;zvp5x9r>#_pc7ؽiq澯D~v?նc{y}xRkyw^Xxc-wz! p1Իra+g^p1x5rK6ԗa^u{^0r)էgAk/O$`l۫\w '}t9zi@l;Q/k?s}8*@}2Py2#`Jw n-u {aVH5O4 9׀(';Q/ ~yG;9 {v:(G~IsN#'=o~G@5#`ᥚbwެa쌁Cf ʉ㈁ ~yG@3#ʹ7Xcpd pd ʉ'Q/82 ߭]hgFμ<X///@gmn t!$#` 1p+\fg D D9q1㖁G;tW" ~,A:^7/g\hڄȰX sax ,SI0r2p+` '@1yej/c4e &%]=ɴR7g{(' o Wk>P0p+9fc pd ʉ4Q/`욀cL \^A{>L^=/`Α#a#)g#C q:;[]#`I͝G@iPyI›`e @0K=3 'qb3P?+{!ːGwtYBq[t^ vҷc׽0w'-كݸ]VQ` 㝂Z9Ǿcș׽MVx~uZ~[c,tx``g| " OP'p<0xSB9p!C6[n4!$7o*oM Xr!qk v7+WhݣWOUwZ[Ӝ^]g}폏uUnZW~կ~׿_ӷ7S80-j ӊ֣}ϚzK&/ --J<P} )Wa+=cp5Ҧ{FCz P^=b 2;3&#-ȳνn 5i"GhH^XS}BZW6AZ-=/޿hwK^񝯗,5mP!&CΗ;=i2I}}fη2Uz켞 {%U~{QGλlR0b<s2<9W9lBs0]9րo)j`}5.)j4-}WpDQc G>$x#-C8pϫq>^cfeh=a2>C-?pqdhĉMp)-CFBC Ɤ^aaKh wvlhݔ -G \'u!}ni|W8/\HRK"z &Cs{(-C VA =WAܜu*QWAia5 G%e>dx#-C8`\:f]uiZ c̶`=fM*VWВ?48ꖢoℜp0ᬃFZM(j43EMI;a2t{vR=[bhXҧW.zi,FZc} 52л3Ri=O^1ُ1k 5Lfv!ߋ WqFҞ-LQ\HP&Us$B|!-Cw!ZpE xiaQ!(jzGE%&Cij,5Z%Rs4f8Ruzp3q7MY(y鏡>L#z|w~uObtڔfw'-Nh7G26׬IQ IH\_X&5L!id:+/4Ԡw{+zAK\X`2$k=H3R0|~ j{ClP0(jE루ZΫD|'?~W?y/Kb| $yCKv[;M0i'{w;'~|dIm;-9c[h #{tdO_d~6>#_䋎|]5N |.lrd'{׎/{C;eycƕj\:/:~vFLjLe5=社Tc p$6W.*sL ,/mu1ZR<8'v&A s)ӑ3 L=dzO!Xda5j k?AbUjP+ZNQc k i3hȌ2^1#wgyMx'O'CDxԟΌ\"8Dp'Oן?\"8Dp'Oן?\"8Dp'\3vCf;Y9v;;v;s>tfe[upfϚQڪȫg|DĵdNy<1z;qՍ)lHUsy M]?. IQZOs*Z1cy %NsTkAgl|Zy yYi)~y@g$yN=sRz<I1{g<%?w|OzD{Ry@޻eOy@)ёyIx ގmcրOȗ<#ReJ%1 ٟw?Gи@ߓ|y@^H*ٿw(. bƜ{4Pgٿw(³O;0{i{ y5;XZg}^DP罰>Bxv<0۹,y9v;;vD/8G&yy<<ٜ2t(d9P81(mRt"098a0X?]M*ͽ,#LΘ;9$OzONGӔy^8=lȗ@|;Sߚ{&z" zGdr\TB ]aGaC& `sT}X=p00o8Zmv7UfwG sCEiڇ8Jkz(JZGpWѻc39ŵű.?AVfg}`Zf5̡`sMk4(j(-}+ھ!|Cf200C +WZ푃>+vd34!;܉8擌~Ҏބq'N$ǝH;w"Dr܉q'N$ǝH;w"Dt܉q'NDǝ;YeK2۩2gٵٱXC"byIF~M8M&Ͼqy&WUfkPefƙٞ Q0S5*f(j8Q(("8Q-3(8zw,sc P[c2ZFY&-4 \W&Ei]t^ַ8er[2|":FC -v^ahajZg(jȎ2bؑл3ӼʟH|@NyHmfC9oȌRHm`8-.3RW7f|@fD]%>23V is `V>׀r5ugFp02#3#D4r؏y$^,bn*SAfoymԿ6ߌMRE0HaKMZC(Y(+,۟InYgIssJ۟Slc8䟊9ʢMI,m*޺ /c'߈Xf(O$q]ҏο>|D^My06y=**Ϧ">,WuQo$O-]=/:-oޙ}GaywŢ-/hsEG7n#@4îPg(O|֧r7[xI)GMa, ɖwM7ytM,sc I %ФYo*^mCkKYF1]wtA#:p0]c@![6(ò[^wMK2LSaM64/󺉟 YPefV~Y(m w*<f6NkiPN}%Y>ג( Y٩/RdlhaJ})=Qe{<ʜ녴 -̱lɚ$k)N8ɚdMyZ<)YS)OJ֔&k)OL'YS)N<1YSdMyb8ɚ$k)N<1YSdMq5I'YS)N8ɚ$k5I'YSdMyb8ɚ$k)N<1YSdMyF8ɚɚɚˉ)Nɚ$k)Nɚ$k)Nɚ$k)Nɚ$k)Nɚ$kZ.'Nɚ$k)Nɚ$k)Nɚ$k)Nɚ$k)Nɚ$k)N $k)Nɚ$k)Nɚ$k)Nɚ$k)Nɚ$kʻ5I֔H֔M֔M;$k)Nɚ$k)Nɚ$k)Nɚ$k)Nɚ$k)Nɚɚ$k)Nɚ$k)Nɚ$kʻ5I֔H֔M']NdMq5M'YSdMq5M'YSdMq5M'YSdMq5M'YSdMq5M'YSdMt9q5M'YSdMq5M'YSdMq5M'YSdMq5M'YSdMq5M'YSdMq5_>'YSdMq5M'YSdMq5M'YSdMq5M'YSdMq5M'YSޕ)N|D|h8ɚ&k)n8ɚɚ5I7YSdMq5I7YSdMq5I֔O܎gg-g-;Iß韵yߩ&|OzD{;?kӝ^c)-oݲ'GG3/.ё=OvE Y݆=kzpK|ё]Y1[c/">69?kx~"iZ?iZ>Yi7:.&GrT޳-LY G=kQÄk9jk9j4Ps \CQc k &/*͘SQe.-yZp0g-8Zγ5Lx̀FZx@FChGM[n˷>`zZp0g-8Zγ-LY >c,?k:0?kz7#?kg{"9D?kəѓO$ǟH?"Dr'O$ǟH?"Dr'O$ǟH?"k}ɟ2˜6gngng-8s>|#D7Npn?Y8'&z =Y kß×{"Y8xZpT޳G yւ[0_سWJƕWJi?k18ZgYg$“$g- Dx3y"c{up=:PC{{up=:Pzp{zp{=܇Epγ}"8ZYk18Z >k18Z78Z >k18Z Epγ}"8ZYk18Z z"8Zx"|yX`tg-FYybtg-FYybtg-FYybtg-Epy"ZY>kY_pg-FYybtg-FYybtg-FYybtg-Epy"ZY>kg-| γ}"8ZYk1:Z>k1:Z>k1:Zz"8Zx"|y"ZY>kg-?k1~g-FY}btg-FY}btg-FYQ|fD̈>."@a3#=3yą-5{3838{gFqgFqΌόřEΌ3(ޙQ~fta}c}m_wfd/]HP]hp s+ ŀK0X_+ou0{gFfz3#3L3#ugFɛ]w¹;uG^˺{Ywt.eѹ;uG^˺{Ywt.eѹ;uG^Z_rόsf3ό.vv9>E;32~̨ߘO۰ކ۰{VtnÊmXѹ +~mX ކ۰{VtnÊmXѹ +aE6ކ۰/ #NKr_S"NE>Eq_ĩ~Eq_ĩ~Eq_ĩ~Eq_ĩ~Eq_ĩ~Eq_\sĩ~Eq_ĩ~Eq_ĩ~Eq_ĩ~Eq_ĩ~Eq_ĩ~yq_ĩ~Eq_ĩ~Eq_ĩ~Eq_ĩ~EyW8///T["N/TW~Eq_ĭ~Eq_ĭ~H+xCI?g{ayL0kׯ9{+>b_cxsCƘn"=ƥ7Z s q>Vg _xMz*3&=y{*/y*{*.3QpcW Bh0&^$ 4 ^`[HA9Y~rza`~`A3D;c 횁3·8 D`6qNQNt"z137"?A9;u+K7Tgr1Ќ?tr {Od߮9;w#Uzs%ܹI\<\\ wHA p"o@l, "D@rJB8;g_3٩9^Ms"ϛl)9НsD5bI@38y;$|r>{řKO)L1.\\Κɥ_<-t o |y[ [ ^n]w[[i(9E^ْXͤII,IIl^_AAӸtc/ D97 ww.lOT9ʗr^(^*GW9W(Q*GUU9 rQxxU«ūr^(^*GW9W(rQxxU«ūr^(^*GW9W(Q*GUU9 rQxXxU`o "ȗ/Y-I)I$$DK/xKaKocrJ;i)I8&$9&ZS-I)I$g$w S-IiN$IA'$9R"AG^0AidFXC.Ff8 LO5K5m"Eof/z7{Eًf/^|f/^;:˳ً/nߎSt_c%;dLaV9dIoX,?|.>|1y)_t-X MNؐ2ԋ"91/bMpiZ9geT!hehaSm;"Usݯݘ -TZ/ݙ5LlHeNb66/MEW;AnQp5m(^JKX\KXZZ\fgFZqyeݙ2z#&9ΎKEjNIꑔne&A 3^1Hk'C̜P++0u}m -qnrQZ*3ch4+ 5Lc 5cѐxޝXk7c>ki4ƛ=sEzE 5L43Xn<.4HBY|c206q-haqa}58ϷW56υ?'EQWLw6Yd-Yz+Y\Bf;-59/lP˜p%yvrFCQݗGvB㞱?KøN7d[\(2Z':pH.dƿN4fYXEGqN3V8Lo!f;/šQÄFZM8j4-GMLnv}m Ueeha o5l=+ 5Lc 5cѐxޝX!е 08Z]~GM(ZήʜʌWt<)q0%;;{s덃: IJX I3$74$1'$١:QWLBBZBMh! w;YHC!1'$١diG'$١qrB$;-a7zqlmJPIf I6gWّ ]HP]'C!{ IvaNHCQZ;>sCW(6PזP]HP]hX$%Xc(jZ) !ɫ^!(.lHL M4$i'EMNHCNHC- Iv+NHCDݗGvC6c`%xoUXG ӱ>*3:{5Q0h qgC*CQZlBFWE2B8:Q98A[Xzy{(jW$b/n,k/e(A/4P^ C stZy15d-wg+CO5G!hk-xd ^0'ua i#셆"5ED~D&0k4b|RC?g?q{^NV0}'4ol9v:tex{;a%~O;i'<qG=#]8ډ};af{G OlgtN7_S{T 5+A.MC\2 qҭQ˯j0)ZiKR&NI\ZX.V)L*3 ss1mu)V^0Hb:n6P(aP^ya5]K[]]]ֱVi)ZhafUp+-147%P0(jE2^Mѻ3l7m ˲.v6Ih0L*3z -֦-EvSߥ%hacwIP!zɅ0dv7#-C00N}kÌShfc2)Ll3<8X+UrhNYx׿75vhubsCoi1`V%uX?- M5{ޮޭRPo@ӹwp,5NZ/zo?}o~p{}>:FT)L*=VO&\;Yj`eufn)sav:L] G Sռ%6;G>$259}b8lLwYVIQe"'%BZkgMZ qltEfvZB{̘. 5mư6ThEi\dW|' Nnej,X兑PecS/d2KG ]y|%nc20g}m`6v^#u!m -8̶z_hA)ķ -JV}Nn^P"}Eil2;s_3'P{2`-IZ4;̴٣G6&5m@lgj&CΗkgvۤ2Ð (Zy(j8QH3Eph|'2̲Sw(L3Q5sEQCfN(e2-KX| ŌsTFI{ndha3*X!D8ZnG~'Ew"ST~ԐVb4$Mafhav} 6DQePNnffwe2;QTMOBECZ_HP[5۲4IIQeޘ%4n)ZKDN;V(LkC Eim05d,+P(PR(n)fVCE)j=ƵIC0)26ZJT &C٤]H<5mRfd̵p%-A\I4h);u/ w[bX9@E&v | ̬ZD/9+NgQo(-eE 3uwcCKh. Ufo -E QCUfkӦW(jh EiQ5d,+v1ٔfYK蘠v4dhaCFZRճ2^C]vVUfF|d2l-krfu'cs^WbܫJPe6b(2O5 xcC1sE paOQCE Kn/:gԕصL*Iql.[ha,^a%P5GQԐxbwgnvn2? CܹM,-v$h}-̶(jh}EiQ5d+Ɔ(pa}Di(u;/#-CL_sIRߍ2U{Q0ц(jL2 jOQ핮?IҟM38zG+1;t(y!;1{0)`LhGv{ JQ<IQeK;jh}Ei͊DQԐObXb(Ze:{oggW=42;[Sqs>*/#-Ck4ja2cF8VK\z,aq,`lXW;t*W׏_?~mcP(Z,c4:zyl:g{ֱ:g]=yWgϻ6 (2M?[K~k^QzL8/얣!)%ElG6ZTo3l1havZCUZ72˺RoC&CyHKQ[+[~bzfo)R}Qe}6lǑF|3"5íD7́7ncpu[/ͳ23p='Ł FW%P"qF .@f<\98n Ɓ- G=lu 7lrl!TPgdVOqG޸m'۠pz)6{V.ktMH;m\w޸϶A^_ћ7Fyc6:m T\pSȌ˶]ua kϣBy…y-VW ޸:Ȏm1rm0|a 6 6}d: ߽qzBMvm…녱pu]8/75\noFfn0?†k@o X. L;pzp޸M'X–k/̐VWƟ?qd .nSkI ߍy†kFf;(lteoћ7wa Cq|7?l 7qA^W)o=]H!|˷I;FMbRg vVѮ1MR)cnEII(YKѧ(y"^Qje>)S%JE 'R )%mwCveCYSRVB$HJZ"AQR*z`|km Y3Ɛ DOJE_ vMRѦlK`6g+[^DMZR*Jbϖ)cm`ْNkJbIJ*T"z8 }arpncZ Uu`C[h\`̾2PZ,U802 f!̾|j0k 6AHM6}ܷ6wm!?s> }z (C8h"WWAx ~_U?.RY86ژn _\#nl_Wu3 kǔэ)}ajC)rl3a f_qRۈJOZYԹ-2+͐*cՔ?=W%0ɑ/Ր ~^SC-YM@cĬ%?1_a͐+2 |_ dT=ވ{]zcbrΓ9/fʱ_ ] KZX6yv ?KmZƧ5RWLh%9HE.5Ĥy/uAHr}U+O>\_x?ܿ|buٗwO=߿Rޥ>?ϟ[:Tel募{O_?s_ƸNﳋ{׵}ѿo5c][Ewe.GVQ}lEssݮ R+#P){KSJAC{$e =#e:k+ZǵMT ڕR2OMYCm`VѦ\CiRSy#xhT+CUצS)h} |Zf> (*c3C))zS[s_BkV*-H*ڕ.w{ijEQɑ(Zѧ(z#^Ql󐤇遏:CQa$MҦ¡7@$hڔn\ѴjOR~?CiVѮ ,pJ|*E%S^iWR)V a&pK[hW5ط|;yBvýSԹ$6[XiWQPӦ={#o~OVi&9gVyU)$m2}LT*kJJQp VS{Jګ~Vqב0VҮ#$IQ1(Z1g gRښUWO2xHRRuF(0^LP"P{OҦCrV*ڔSJq+iW8Ӵ)p55E%o5Ek)H["^RV*z@| Q_Wq52$}JE{m6Bu IֲRQ]*Ӹ")):x |ORjϡ^Ho3PlV*J9(Jd}R|0?v~'iW$E%!lmf @Qg%_Szfٮ<3^6T>g*z7&ϧlg&e 'K}7M{eӳ5mUKPzb"Y+iW,7MQImRҦ)i%j'sfn 'hJh-!!WYmMJڕq0ӔZW S_?B\whSڸLod[Ie6|N7q+)+:[Svn =ĭho֞RѮ 5VqQ4%%Ed-2ECس%V!&detKS+0OH"^Ҧ#$2IͲ*IQϖߓk،ʶ"鶏w*ڕ/~{Ӵ)cPNW$EkqE)zOѧhS^ڌNh*Ԓve !I{PZERTR$HRI[{遏zs (2;}||ݧ)oFĐ]*zġn0)**Ho%dc[R^65ƐMigR̤^RSQ*T&k%!II+IUpƸKade-ER*fdu )%m5GL-iW4:HJ$Ek)kJU[S[RR>v7G_5cyV>I25FM"U)J/Z=)~CmVR-}0s=y6e{*ڔq iWYMN$Ek)'H^( lI1XI/v'_ZҴ)KJEr `iڕayHST CS}(zSSlV*z@[H@kp{HQRLSjPbLSN8`Nд+CBM9lM9ꏬL=<.2IZn4Iڕsh-!nOEol=ԬchxV^El"~N1")*)$Ek)$EQKBcϊhHOѾj8b$DFr!E{%c7O+s$lIhS+m4kƸ+Cw[I20n%E%fV[IC ffV詭Y(EZsCm}!I25)v} qř~3}}(zSRlV*z@[H@ksIJJj') |!Qq)ڔ[(NA$)*1ɟYX2 ]CQzlTeu5Jw h~hM R Igd3Ɣ*F~.0/X5F0H0N.MZU_ S#61@gīnFq0O0%>$~ho^k\^o9)Nu emJR׏yݩ?ח~:'[Ak :,\hTnswXFe`LIr~*Tt Oz>z>{t\CK{fG֮{OI3YˀRѮæ'/IJA\<E_&?vvѯt;?rNIŦbi鴘tZl:-&NIզji鴚tZm:&VNIզji鴚tZm:&VNIզji鴚tZm:-&NI1sSҮܮb=SО_ nBVѮ|V'w_SVس%mʜзAn Anbr;-f[ 5Ckb ŮY3f(fP욡5Ckb ŮY3f(fP욡5Ckb ŮY3;-f[ 5}S+=`=Q0(A#^R6N6NGа(yx |:=DORlʷԓie*9z{lU۪͟?U5nU9bfU5ۭYoU3%vۛުJ~ܪJs=grjZeh{zHRܠ I&s}=}÷|ScZKSRbwArBu/V z*!sI_8#+\fM3в@RRּ)Y[`IZxIC$V-a2#R~WM&LErqOҦ,6}bs_1/3,&)YHҦUYb~XŪ,Vgj>UYb~XŪ,Vgj>UYb~XŪ,Vgj>UYb~ܪ)CedLErs I `8n%,e!w62}ÉeПQ}F8+8QLf'SACvef3=0+P)iW% X+iWA6eZ)Y UVGSc<j6erT+ӒSѮ,8]cNjJg{MC3|[e 71$?чʸTckʐCve\XR(ڔi1K())%k)Eq/S[{4Bnڮ"m!?˿߿e-K.rpuhپ I0VϦ߅o>fWkXh_5˺/rv廼p-hWY*%%%ki-(yrbT^ P Vd1X(F<[Zn{_&rF_^MZnBNuUd8D ]9v̤g1s.KJI25~U)ve}tCOă㒒$EQ[5)%E@lMCve*#AR^(0=ў5Dʼ9}pNEr^522~MY5˺Q*ڔ}mMNP+WBqU<+)))TM=8KJ/) E L m.}#F9叽6=RYxأ~٨WG5==Qaj{TsأG5==Qaj{TsأG5==Qaj{TsأG5==Qaj{TsأG5==Qaj{Tsأny1Kæ‘<(CQ<()))JRRIKZ~mY>ZuzXUҥ(V*ڔ,9[<ۧO]BBhUWѮ ?NS\)I9U]^U%PvMø)Ekί4[)zhdzrP*g=&KU"Hő࢏~$ѧhSn66}qfpK/]"s?~K)hWZʦK)()y[7Ý2Pv7F:1~ fEѷm}C_>PWl]ɑWU0Xr$(JJ>EZxECVឭa27O'ΆӉ~Ĺ.tbtb]BӉL';tbӉL';tbӉL';tbӉAO'M'L'V9L'HHEFĄNe7]h̉nRLtN㯾p'{b@f V*8:@+75Iτ&CgF0IJJt#f:IC#f:IUFtb$}8!SqPEf/N'Iz.FJJ_p*))q,)Z;]RЈIU86}iHKe}LpVQR+c_VQq$(JJ>EZxECVឭa2W'J3i>Q%eZDWǶV{ӣK  r߿.%CYk 7ن},|;lÙ.Qe sg~\:9IRЦhChSC?U+c䱵_쯩ONW//?/ _p8\j7Wqڍlvp58\68,a|ߍbU/}~K__W헾jU/}~K__8,v㰘b78,v㰘b7]uSalVqXalVqXalVqXalqXalqXơb68,f؍b68,fڍj68fڍj68fڍj68lw8,Kv:QtD1ӉbL'N3(v:QtD1ӉbL';XtbӉL';Xtb }8$emrqMX؍b68,fj68w㰚nfp8\j6Wqnfp8\j68fڍj68fڍC}nݬfp8\j6Wqnfp8\j68fڍj68fڍj6}UqXa5nVqXa58\j7Wqڍlvp58\68c~׍j68fڍj6a9l.Ϸ>f>CΖi?_z{> /MediaBox [0 0 841.896 595.296] /Contents 3051 0 R /Annots 3103 0 R>> endobj 3105 0 obj <> endobj 3108 0 obj <> endobj 3110 0 obj <> endobj 3112 0 obj <> endobj 3114 0 obj <> endobj 3116 0 obj <> endobj 3118 0 obj <> endobj 3120 0 obj <> endobj 3122 0 obj <> endobj 3124 0 obj <> endobj 3126 0 obj <> endobj 3128 0 obj <> endobj 3130 0 obj <> endobj 3132 0 obj <> endobj 3134 0 obj <> endobj 3137 0 obj <> endobj 3139 0 obj <> endobj 3141 0 obj <> endobj 3143 0 obj <> endobj 3145 0 obj <> endobj 3147 0 obj <> endobj 3149 0 obj <> endobj 3151 0 obj <> endobj 3153 0 obj <> endobj 3155 0 obj << /Length 3156 0 R /Filter /FlateDecode >> stream xM-;r6_qҀ·glDwHIS-sa6-kn{* Wusazk Hd&2͹qiޑ/ܗ?½r Uc*yql\_n쩸/ۖw_?ݗ_,n9| `Gķb/[V|H!}bŷ8jaˏ 䯿:}K_?Zm οorׇ:v5SeuqׇԖv+I޵),)m+_NcA=b嶃r~R~y˛XDƿo6 /칫_˟?o_ֶ^柾l_mo_OH]y+5'_Ӷ-BLMX-6Ym1ZsҞB9h1u!u$mo[Wncnـ e{ۇ|W}e>-4+\Pm:Ƿ; կ4B(q4!Q <)hi}GAfSЮ;h I@+?G/ڗZs[±pX瞣6Rk{8)ja;-Cjc:AzmۗTvrM#Qc`EM~Ov}:.eD{ߎFCa#j۰n}pJ24MPNGkv~|-mz@;Ndb88'΋si}?vۡK-8L6<"hx0ț c`#l]}_.o2+ ~Na=Hb^&Ʒ&úo5چ;}oa:l{[3?I74 Rhw_C5L"RӶM2!kg8*FAXuۋeWzWӠxYUB䎓\%Vg3ZTdM:ƶWG`댴]O݅[翦vdGHuge˲!T7ᚣZ,N}]iMO:>" Ï=Vsm`ޏm;w?S|q㭀=u+;B]3L3t|6+\2aWwn<>KW5^W8W+{k> +{$3#`o 8e[Nb hyhqNtNuAhfYѰKq[;<+Ѷrջ+dցfSpܫ Qо>| Á<v^O{G>NK8/x8?<)hi Юx3K $煀[:ήg&fsVyuϢEO|pґ#Wio~ugQ>֝v^yWqnq"]طqr~0HGl,#`հ#3kIn?0`8x1 {@{@;Nk84? ;8-Ϗ/[fگUqy{@<^SLy͇:xGKg730/켴)paY@;Nhu@V`r R{G71x|;:̌}mx-oe`Sb`)hv::qFS6/>B]֮0<;]a[^>^bY9c b:@v?0fD xhҀ$`muBK:p!<3q\ #u}KW!w^ :/2NC3)g0hg.;Nv^慀! Ywq 5:}b<@+r=v]!Yva0Юԃ\xr$k}dׁgםv grM쿯ÞLۗnm>3[߻zoo|ߗo~opKn-#C>dƽLUZ+T.]Gp$ĴVG_`kk7C󔄻y}%헂yeNpLqk_'ƹtx 0:0|LOg{^;ܳWub-qM5<$)İ/uxbgSesu {UFb^&Юkur@+gȻ\8 x3[QYfH9o/=6+?WQJ=S@2rS=#{1M\) h <q `Oi-8{t3DN@# ȵg{ls0@v.{mK?#p5;$٤>x噤1i v֮0΋ ` V8s?>yY~-POș/krIx?^8JhyWq3n =7! w1p`A^='hy>0ЎMyvv|2Ю;o\N_#a\Mtp$|g_gGB sD =xWü_s"ط W8d>1IPOOkpk_'ƙfɻj4p=^cգi2;/Hi/sA2z89`h#v^5 %7#J0Nl煀Fu{~V^~!$3v^I_'v/TfX³ -;oo^p2pQWJط ydFZ ~y@VhQrfx.]<O|^8x u:Zΐ*AZ3q\ #u}KW!w^޻x3? rF gGvf|2?}+3ߤxf83[Wۗ?}s/Y#a?~3QhseyKkj*<~x;!GR'͛;,sj^「 &AoMJ#HҳYw&C|,앴ޘEQ`r|R`N(!b 3jyª$$hu1) =דyf85r{σI;s?kB>E>(0qU g/N(JAaUIЛ]k-A3 g+ªijʃ9}׀o>vft}s;'O.ݙS<喡70Zf7gW1Lě|{~h -sZL> 3 zo-F|8z&Ufn持fyޙJK9zm*H|*gDMk>HC}y_hZ#ExW*?GIu 켶;S@;&Sp>vM[̈́ h6c]NA M 8Rym@ Mx3k(8vv^lVuM_8ֽyr R!یsryσu Ixk_\Ԛ&#f擁7V2>x9_xG <TIYi/_à)*-AqZ}@;/<8 8xWy! c]dvo,o\}<+|y-n43 <7 _}?9\S/G,ٟM̺2<`؟y yj^8??Fi=U}Kv=K5rcួ^moW3+\0\{ujo?(q.rjgaӤpFkU8 3d>'sV$s$FF/쯢<3ћxoyo]yP 4x5zo-FGGyfl,Md蝙dcxޙqe95უ0ZQ!ћw+ ~zZVdt0|35&s l~ϣŪ Ѣf%*z;w6AA2vI(0O`(Ca"1V CAIP>-AAq WDI (0C(L{ fGt7na٥gǮg %!M*s@3g){}}Px3ΫZ!蘄wf>3?a:[u%G4emh zg#83'CiW0Z+ P9B fND-s$蝙32з ̩#<[ޙ#Gq,gΫ)(0Q E%鏰^!( OfG02 z%`ƜwW\AfW&(0qF 0C(}U? $(H^FAq ̬ʻK93m}Hyȗܦies;Ad7x%7Gym狏.s).Ͽ//뛌?Ѽ\gNjO׿//ӿ~ORtP'943HGO8fnRjȫ6_<5ϛ8r8/ŬkpLkI ~&̓6>Fw^?>}?o}>:.+GGW/kp/GR,q^#y?gy8NޓDn^9 X=#0/ ێpwNK2Ay{ue#$|'q^8xeRp_=>y̝Wz6k,/兀[>JQ> 8x!_'YaׯӤ$>g#\wq֣DGg?׌3PeKe'Gz ]:Z{\3pң< GGn;>84uܟ / AQ<~M3K4 g :L/U8xx7kp?Hic9 &o?])85v哀~i'v_x]_bZ:^?^<N3p# !;>q /:\Z32Y_z@Y7W8 + |;/2\>{ < 1f>sԻ0zD13rg1xo~beGvR;q>}>?o+<1Y <@y} ^U<-y6<v^NG=- u,`o8x-@O0p$#܏O=`8֯}}+uf15-<^۱jyϔ0 8x(.qza#煀ʑЇ<yq |·rV`g:/Mhq#k ^ۚ}Qzl\W˲y?'(ymWzכTݝrfr ^<(8x]qƷmDz&"!/l嚀G'Gp6}K@6FNc嚁qtMem[98;/M2r8Ck)WQ*:G;c-\=^/wGK}k_'ƹums|}fTQW{ &՗cOC<~wke_G}v!fW煀)8/<h>8'΋G <8 8#煀[׏vS>1Q|P^x3? I߷Ӭ쭍2yϻo~b{lJjaO:|2O~7#vXyaਏݎOhy"yhqNo8#su͈DopQ^&򤜭akyzvG@vyWqrqΐ՟MTs>,͠Yy8>J?8z>m~c@/5x~\-h <q#ShyOf1΋1Юh~7CV/tb>l8x[ʃw ~%!qxqPfY}@;Nh;:~!]w)JsI% yfKG ;T=Z!RO^(F1|2Ў b Gh<;x3"a- r@;/v1ЮhݎNws[8'a?0p9EGCr ^V޾}D@9# rF@V^hxQ9 1Y?:͐ݷ YEp~ڽE3 GzRpK9Ck8נO#gﺦe\2]ӲxٿQ9_z=_%x~ƯҷQ-ړߓnas4=_!ǣ~ۚzd9ݎKޗܙ 5٪][8:hs8 ~]tCGa,7rf(m UIaCܡaiY#i<5sPܯ\At.˭mfyᐣ0\3PUS~*:$S 0ڮ~ fyOcYY飨dFhmm#W?a)~`-GWL|x]6Z9N`2Cm[8 L!hA 3d%*dͮ5&bLc( r;zyuߥQ?nG@Bnj/䖡&Bn LXhA 3PXˤͮ-EN(2RV_8{Fw|!+feY6-E`(Je f9Lz#b _4MH*x&CoM=}F9֞L+ g2&S$G_J9w]#E3!{}{=HtDPPt0l&=RFk喢0CvPo{@{^0 L{J 0z#߯>3Ean)JQ`2EavgSfj^#A50%/_HC |dI^=7&jqnxF Wh|h\0't0:G3EQhݰtTڜW2)r#s$ s'0z=rQb  Qt0+׮3&8W};< ͉o(yxvFIgqQlh6(̐`hʍZGgL2ެ&CZkOQXOS@QݟЛػ_Z̢0C 6Q_Pz^Nu1Cz^.VeBGji> 2:az(E-E3JfYې+(0$PFk0CV) ;71@ͧ3IБ. Lb`&|~\`V 헌<_vBar8l MXz&#nX:`fvCb( Ca( 0 DbJ3njw1):RKa-G.As;?lZE1f6G:?zt!Rwd` !f=AQFQFkEa6Hd2tg:@Qf!"!hΦ(̐&U&CA`9)Vg ΐw%{Tpܮg6[8k:3HM`3S8zOΦhg[`Rt0fKgۃI MQ>?!sC6lGdHlNg=h0?z8N(0SԎvw0283U ghFofQn:$Id[-C^b`LX$A;{w(z;s-t-1F{*ѵ~롳giuM6?cG?اM9Z2u槞+| م?a+_eҾܾ<*=oڼ:s`q7C |>/Ư񛜑6if5s?{ NGj?2o^N_A5ĽT1o%>?7: K8vfG/ly;٣Ae\0jNe9,s4UrF {9Q "lA [P^U[Pn,a E؂"mAH[P-(a E؂"mAH[P-(a E؂"m> VFjm 1j2.9oi(HCQ4h1FP!V+ mo:m\0j"eyvg\3,W~rW-W#K˕rea\YX,-W+K˕rea\YX,-W+K˕rea\R0^37472I^w߉ZgF;.+2ߧu:3NzIWN랤IB$u:Ij$NZ' IB$u:Ij$NZ' IB$u:Ij)}uJRnY$@ I`$zGP &'''''''''''''''P> ]>z2~/YB_Ei-QZ(e2 kZFi-QZ(e2 kZFi-QZ(eRJѭ e)}YHBj5]ZMPP L!(j5(C UACPk\ȗv B*U^]&x3ρ-.hyIP>+G̪  ቄ<'-                    'sY#w(} .y~ctGN(=wPi3\GvsAvޙ꙽b8lTũ*gfU\1m3s羙:3vT0SGΜޖܙ s/_97~RU\7έRs\Š罣* ls|d*&?]dMe08ڙ`23'mGvrt0}mn'G;sGW(0Qs8 3dª? ^J>`N6Aj chg)}EHt6ϒHgڜ?9 LS Q pfD"8 W-k$[KKaNѵ2t0s 1t0<= I`(0A g(2ªfMhojE3V]F/ҟ(Ÿ(ҟ(Ÿ(ҟ(Ÿ(ҟ(Ÿ(ҟ(Ÿ(ҟ(Ÿ(ҟ(Ÿ(ҟ(Ÿ(ҟ(Ÿ(ҟ(Ÿ(ҟYː3,v\HCDc(;VM˟򏮊[) YRetYh,5].KMRetYh,5].KMRetYh,5>`λ<[/iLj+[Mw~a`2Ԟ(p 5ړSAjWha03$0FMϰGWŭ;.ݘ-H$i Iڂ$lA [-H$i Iڂ$lA [-H$i I)}RX5JC9Ad\0 jmCvc(01FP-F 3Q4ªxeͧ d2ԞEp 6rϰ\GWŭ! rEi\QZ(,W+ rEi\QZ(,W+ rEi\QZ.)}U\ &cWmhgeWj N ~tUܺA{Z' Bu:Aj NZ' Bu:Aj NZ' Bu֙Gkd(IMBnge(<$6^A7jd2}ta-[uKk酵Zza-^XK/Kk酵Zza-^XK/Kk酵Zza-Rne(KBo(} cACct(} &FyD!ª!\^Z.\KZK;{i e*ʂIOje<@z\Vy^$(HģMPe﬊[=]x"gx"[.l.=]x"Dvم'KOd.=]x"Dvم'KOd.=]x"Dv'sY#w(} n7%.11#uGڻت8_ 7 uޙSU|!Uq='m̪\t&sYN-ԙq3uf̩mϝ+p^x_:UWDyWD/{Ya!"Ψ?3j '"Ψm8&vEQ`:qFhN]g^UWq/+.c*C| ̅1~!}EH܏p+#Am\í]yf2ޜP;n1Ma -&]"o^ "NKeνq =qj{0FI`(0AjGP;CjWw6CoBӼ&3-nAޔF.]'vOŸإ? b.]'vOŸؤ? b&M'6O(䝠h=l,vόP" }  M>Cӹ䔬IM MIM MIM MIM MIM MIM MIM M礦sB9tNj:'4NI2mbPjMĵ;T6y&P2Ԟb6<Ԟ6<v( C}( u;X-lAw Zv\j7J[-p8a N'mI[-p8a ۂX-XP3C `Aͪ4)`A$Īl ^˖9Djm 1jWffȩ[EM\ jF"nZP3CP*2Ps`2ԜE.FPc`g\3,W?[Ъr-#ZPr-(e؟XZP`*˵vEZ",WU*ri!sW-hŊmᨹ :YhZ-h]۬]j"NZS)Bu:Ej"NZS)Bdu:Yj,NZ' Q҇ٿ*F KBngRe(<$&^0zGP sG.|tٗ.G/L+= =K= =K= =K=LZ2J|.= k>Z:))}%e2KkZfa-YX,e2KkZfa-IX$e2IkLZ*KG2e!}ӷ c(h:!(h:JPth j szjG06^2P*( +Ie|%i-hg3T* =MAz?z?c^^IP+}{?у&(OnA&\x"3<:~[ЪIIIIIIIIIIIIIQw.9rP{Ka?Fw[P|^wt Z5/]1{U<ϸb?@Y,(̐s+|ܚ۰| c]]-ͧ]U!sRvUez bO r.FAv1 Q]bd (.FAv1 Q]bd (.FAv1 Q]m*-`gUq Uq jrk>#: (ܧV]jQ(ȎBAt P(DG ; Q(ȎBAt P(DG ; Q(ȎBAt >@$v+[PxI#2[P nG߄I}>&}M7;;;;;;;;ک8d.{EThGK~jUJ_Ik)z.s)KA\ R=dϥ z.s)KA\ 璗=e%/z.ysɋK^\Rw\,oTUHߢTU܂SUq }뽝*o8_yU*W^w!C 5r! 5˞K}`PY `UAz"Wٷ+8^d0c^UqWLhSUqW`=Uq^C˗OExCZ^򲇖=E-/{hyCZ^򲇖=E-/{hyCZ^򲇖s yTU0gV*~|U\?* sULDSU|Uq!xU\H*.$^ WŅ``KN`Z,EkBZDq,AWbx>?YmقUon ̹<U?=dU?bQ??$U?FaAU(PP3 U_fj'䢟NPSu!}EHw%dQLȢ*nAmDU܂3Q0C^T-(Uq }Z{) YyЋHf}Pju$JC=wT]h34KQ.dmnNs5tttttttttttttttt2XKUqmUxOT!Zjw+Ts>3hjO1{Uq0CeiQUq M*#%07a ϰwmb7nlȌr`ze```````````````@{k`uQޭ ļ%Q\0 jmCvݒ<0CQuҷ`Aub=(} UQu }i"S,eyvg\3,?8't %9kA'-Irr9a\NX.'-Irr9a\NX.{ϫ{(\w9m]q3j;N[*:~ /~*uUiP 2s&UZgAmUZgAmUZgAm~UZgA΂hYP!uVEiP 2RKWUqU]܋+v֩IUīPj+jRUqL|t2GͫAL U> )$~w[LyU'dz,Zϰe̪P*Za-e20g[,Zi-EZ"eֲkY,Zi-EZ"eֲk)ҧ|t,/ jPj5]ɪ*"PP FEU܂ں$!ªxQ24ۦ"-W]v .B*U^]&xS+ҷ̻JUqL%U{e餪 -(~GU\ɟ3B KO$ OD ٪eddddddddddddddd\ Cs?+>ZMg:a^]qw8*g9g?MI?iU\DU܂5Uqx*F;2Th64ߟ~?5y!X,4k]Huod|5%EwKb{F޵y ߧllCtvvŚf8>9\]0ڙ%mSV`23 #eg> ̦M2uo͉m$`< ĽiNԶLӈ,GaMN(̐[?>\Ui["#̾]ʌZI %AI0)Җ'ھmqgmL#C}+-E;.1]1:%>Ћ23übܙ E ?E+ou.' {c=0>+I -2}z ͻaûv(ڙM;˽mq~ EI1fIqU(:M-=2R<'0CVQm&ކCp9jGV/F;v@QԮ HE; &hz32mg^EMoiO-DmVWlMEUh.K/~~7*/U%i-svڴoFrf:M(oFrfIxk3\śQX\Iξ>t&ȐߕQt0w!}a!͸ }f40`L%Es2i CUAǛNN2Ժ8C ) Ci Ea8jc(J6)EAP>+b(2X?`${x[5MVz ٞ/4E3g*jMZW6IW2gGP벃=&4o)Ls(6AF Pa~˾ZT[.]vѱgAQPx\,T]P]0jÆ }AC.q&\5w**TQѪ U)**V:ILX(JEm+晠L928 7`2Ը[e.\<0K&J+++v yA SԮ -C$ Vp 34 n傁3awL[SԸWL E{0C*nmʊ+x[۽AQqk+}˼[#LhjgpMJŢ*uy)n>*n]Dȸuqks."n]dܺuq"Eƭ[."n]dܺuq"Eƭ['%?h"jȜ%h޼NNwkY1˜cTEĨQ*2FUDU1*i9GQ*2FUDU1"cTEĨQ*2FUD|`Uq(U1cTdG*d \yª #up 8CWWWWWWWWWWWWWWWWWWWW'"  7Nbūū?KοV1.^r&\5PL4Lx j䔋ijp8j)oA\*oAa*[P %AI_!Mh.E͇ [gP\iZ&ȴ(YPdfQb\IAaA4:M N-qP(j &Ct1Z7ƙ@(2dor@&B 8)94Ƹd1:ܭe2.E\,˸Xq,bYŲe2.E\,˸Xq,bYŲe2.E\,˸Xq,bRݲ2@*r9E-r[ "wJRZP2E,.X\,cqYⲌe2E,.X\,cqYⲌ_Zs $>-"2E,.X\,cqYⲌe2E,.X\,cqYⲌe2E,.X\,cqYⲈeoe?$ T?$ ,K( 0,K( Ȳ$ ,K( Ȳ$ ,K( Ȳ$ ,K( H$ Y-/V̤pT ^!jTF8tC7DM6DM6DM6DM6DM6DM6DM6DP':8Tf Is]d"J̥7^.~d o\T rq+}+Ԏ֩r3TeeƎ%Bj?hj*N9u&͛ls6ls6ls6ls6ls6ls6ls6N9uͩmNhs*/LlsDS'ۜ:}`M9T+S9ԉ6vH/9$YuH@"ߑH@R">$E~ )IH@R">$Y~ җU44\s[>Q4wfmNmNԎ6WtA2DQ*( _y hj4e٧PX eWed?6MJT6P*%{}9`2J^!(]9Z&ڜ,>fU4@[>ϭE~n-sk[Z">ϭE~n-sk[ܚ,>L3Y~nsk[ܚ?sk[9>ŊϭY|n-?=kXEjuQ$G"?(L"?(L"?(L"?(L"?oRdËXiJEmcQ9GesiQ9Get+4(ӜHs294(ӜHs294(ӜHs29s4(ҜHeHs"94bNE'?+;YYsD)?+;YN|Vvge'?+;YN|VvQ*xUDd1%}\?& QF9Ӵְ;8WIP4.$'A'> :IЉON~tⓠ$'A'> :IЉ{'*NUث8>Mv-g*OUثyy'h6^/ LE LѿhAa+K}W+CxT _&OVq fmrvf7WMF=?s,1~ַgb[oWJ.%Rߚ쩯f5.:ꝩ\ʧ6Kg.{`6e{Fl[ I[u+G;m6l;st0M]牢 Q`o0ZMpfxU1GA%}LBnے޳6=,[ʏs҂=}ϽL:G{?{&VH|?gR3>] &CKpt/'E;sH}`n'EYp0Z?) 3d'EaU(HBJ|i;b]-AoVa 4Oӆd(a7*~ ixc!9XX7 s)w}|P eG]RvHe e]RvHe e]RvHe e]RvHe e]RvHe e]R@飨)k+&Rv_SdW -]\P!_Jߊ UfHҷλ/hoɶ]ȜB|Fȴ/Pega]}vega>"#1Eg΄//Q~3͊^Ž^Ž^Ž^Ž^Ž^Ž^Ž^Ž^Ž^Ž^iS΄9&♓:vN_:s|}}ߡνҋ5չ@~Q\=^e@zy@zy@zy@zy@zy@zy@zy@zy@zy>uMQԪs>jRP(jN!(}fu渌'[oosS~DªQwkeh>yy$2gRQm: es7ʂ{=w.sb }˼8w.kE-0ʢ,Y -([/U:U8U:U8U:U8CqDjL8ISn>5ѷn_p^v >* -e+3݈M}283t0ϠnYـYM1P``(ֺ!EaUP2$!HIPҧ0k>ŪF%7L(5Ӯ$)8𩂢LmpñW F(r (P"ª(rҷu]&}Yz1ZŠbXB L>hA 3*XLЛ4d#O9s[KWgHbkt<V*$3:hg9'I^0:c~k9 :9:R(į &C',k ɔ&a0CJP`QM(VL:Ss}b2t0}yzet%+:fZr.fhŚ^^ۇ(֔bŚ2W˯bgN5ee hlo`.XLFVR-23޳|7b|ioDX~C ?!/ n n n n n n n n n!/neRrPPsrp!/!/!/       xPwqO¼Cȋ;cudOϮWl9+Smkd]<8Vq !GP{9jկQ9"sPqJP{x,2\RD|W}3,Y]wm)˳KΣ1%%xu "v,r}#D)'H9G>RNr}#D)'H9G>RV)0šh>RNr}#D)'H9G}`)'H9+Jb}OoJ׮ f&d&M:0p`6l٤ f&M:0p`6l٤ f&M:0p`6HSG9*W[W-Iz`Ά````````@C C e/1a6a]+iC{.K#eW!9B%.۰㬘3=A6U9j.Ww$Ya k#撔&'6MFr,6͖dnHʤgV,f>YNFx{:U.ݯ8@ _[z]轷"{xռ,} ~ I }$̊ d{0%3hlޒF(]%Bd5b(OPC Q^Coz.S$~_}U/|7z~_}S&YIYI=IF{246Z].sHן(i*8)ۗjW */}[D/͊G8+QLL4UфXPqkW8+)=9QV4Q(}|s+0AZ!hXYT#Q?6MiiiiiiiiiiiBTNoL⥬\{UeR,ܳxy2=8Uƹ"}qs_e*n@3%.~5-4ZXgno-{ʰO[ȁ meӾ,""~=ϵ:ۺ5_?N}'7qwU}{oge'gm{Y{B/Էuߣ2gYE;E;ک<G}t}s;* sηsn_ |L:%NK?mq_w_H_y8B{J_f'*{K7o 7g'[XvJBb~uB_7nm4>? &Ym~}}~Xn>zdCꁰOǷS"B}xv{W}^/_׎ߚ}O,{w;8?vO o筟7|?mܛ=W͸zxBo???lo4da|9Ss}ٿ ygZe՞ΗMgVZyٛocf|`.{tOT_7u=-H9&-nKr |Yx#RyYwR_\_Nrw9\oϹA^Ӏ8.q1 C^Ù%̃a2ʝZw ޼*܇\[#?ruy{YcSeJsr'Qoc}ܺtwmjO r_vޝxٷ&vП|mחc]nd^ڦ}\VWtuk项#+pZ{Ʒr슻;a$M*G]nS$Ysn?&7-f')܎^gqN0 =]1168.~R~9<;A\/Q/ D^/+9b??(vqXby9JO ^øPQ杂O3 ﬿:}q!?4C(vȜ.Mg*B?x]ZfΟ% rܭ݅(!o[j8$8K:  I9E(*+GqVpyp W݆Mlb./Gb=$vX/un#Gw=/*F Ɩph!Wrg%.O&ݒ7/]nJk3hV/擡𫸁1>n^IЛNLC y{vtب鯾u!w7MXqcvUz쫡ou_%K ?)z =' |C /y;uo7< iEp~aC'kBo<&CwyrA'KydPOGy)-JG3+4n؞anZ:h V:C'=$Me K-z 7ZpfhܥFh R FPԃ h`{%/]D CNɁa(R8$+~@Zn alz[Aꑡ8+qy25a h@Њ Z|2~5KAļE /TM.E66j﷙Ox8նυ$RQ}Oуط72")GIC cA2oN=-$ zI5{W5h!$)fWE&,RIz %|)!{=qw8W^Mql3UFѣͽ;mNk|#E }- 2B$CMK JI]ВW5듢w\=$w"0q}R4Hh-OI0+>)4ao\7[Et3A2'CwO"<94́w/3v%y>A=_wZ㞻Q{:4+PhL &w0W <.R֌7w\ڛ(7H{3ioܼ$\{3kL?1Jg;6uP -Dž{Y׏'@R{O@ڛu.7bw9C.g "wܼd)r&R F%q\I 5qQ;y,ZN3ðB`OY/UIyBKB @>|!Ӿl c V0h%%[T𛾀BA 灁8.E<瀾ء}0hPU)־` kʁDe- Mėw޺;X=y 6iI^5oiI3QcqCЇ9 #sttg\ n$q@24P nfeQ\/R- 3 _ u揄L,~8K<͌mUFуf6QlQ%Y md(]r1aX=$ϸ>)zq듡t b}24H۰>F( PMX&j\I:zCҮ@24H□;-q3o{\_^ضO6}>#~w9D9@' ¸]GA(sMi#^P&Q++T _ϧ~8Waد)xßWȋx~v8 9z.g9ՅRؑ~9MA0ϻjz,5(4zp\灁(@'a\^s.VXCM2V6GIBA%)A™.$ Ye(d!»Ŭ0%&XEM0n0E!ƔMN3GdȌ[(P7Y?1묟( tA@} :WCIwYah ۠} ЛXW.kf뿾=^mrjq} [.G09z)~P2'}6Q!gqg%jAK$lmP@(zH ˍOI܇(z{Eq~KQSsu}Ô F#4Zv8B=$-B V6CCoQ(#> |OOUVE[I4{GwIOa Eɨ^5^9G[Uݦ#dM|ɻߩ{[VxoWo>E:WN>_ɕN*tr塓 \ydQN:YxdQN:YxdQN:YxdQN:YxdQN:YxdQ!N#GC' ,W|:^|zSTŧ'/>=UɋOOU|zSTŧ'/>=UɋOOU|z v ŧOoh)O+\HO^|9Z|zӓŧ(> BUd(>=y驊OO^|zbi[\]jCm:u3P> ` l=>M^9ƢNn @(FBA(~; (梳;< T r "١3to恁(A~ #⸠133zQq\硺@3OUySg8ř'/vPB IBB}9 `Q,3n_sKxs6¾=b/xX89P6(xDI>36rȾ0}a  @¼ca ޼*a]f5_(ً}lkϧ6? ZZv;@RαC.g˰a?aDž; {J~bd8ֱ^ut&7TN]in?(ʹ3v@QjU+M!~2 Y㥘KݘZG۫*l^h %7uKCd2{Ֆ8B9\m%Q$C~~=QHilBJ˰J8fsFr24Hehm24P2g%.O&fn> ¯D}U/TQC7}ݿ6nWo2aX #mC =ڣ nPUrފ GV۷Ao%5!4f%a(AlI } Q5U=.)FCœŮmN٦PBN{)6=V$N =찠BiT*;.[o5'MlSI^\ dU9To)K$CIw1" =$5DKC1L(z 9F(THy_:m<|)}M}V)ҌvͲ^u>6X4C&ͅ$CwI:güp< =$O6hGqqgeT5+ v$CI %M1<A/fA2hCCo1G(j]^Qݩ$CwI|!Cj&O{üCҮz(( I[h!(0+C\q}RtF3GI Go(fbo'_sG(Y {EM8c//${+,1eC&CX?P^ӷ}MkCz59kר~P7X4[hwd!ylm- = 3ll4 oMP'h:ACoNPL_⬤f5ud(e!yF]C=u1+ Az uEgMWcD*K t4qtۗLrp@]]]| ͊7[L^+tZeBR6oaZBRaǕMC`nX0 K=* h346 #L|Y &>C4AzЙxbg{w04zC&>C$ `3G(Y+o $CQcoMr ЛXY1)$d(QFHc!pJ4HQ4v w6ZSAìM`hЄ,na>.`8Ϡ} nH8W߻/q|<֧s{kߛ`{[<}#x^zCYk)˙3I]8R0GA''f o0=Ѹ9rV? rɏBA95f z@(xKczq uQ#(x GAEE?'Qa\(恂(NA'c30?kEC>.g[HNgw7.Cß+>;DL cxRi?c{!G!ur_UQȸBp3h"?8L p=1("?8\PԄ^E~p$zMeO¯e Wm&SF"FM6M~x8+Cj[IU) y*k6bq4|'>?5ϲ哬iivִsִ+ִsִ+ִst(tpt(tpt(tpt(tpt(tpt(tpt(tpt(tpt(tpt(tpt(tpt boK=P#Q2͛-?b)oC݊u+Vխx[PoC݊u+V<)GoC݊wu+V<ԭx[!nCފy+V b?ww:b?CVs;sۺ5|.g>"p܆skCȇp'~,5puyI9j?yrfPR!`[v2tsd8xnVick>v][ ahmnF(P7 MVlx CIarʬo' =$4HehmnF(p7 YQ3u Co_-4l@O¯Na1&ԽM1tc!1=۴bo"9o*_rq![Ūhm k; F04|s7i}))TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTyNuB15p>Χ,TC'F1yr#Xޮ۸RZ' @p(rPAO@"(r D=~2Džp[#####,########aUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa|]aanSqUpUrUpUrUpUrUpUrUpUrUpUrUpUrUpUrUpƳadQOۣz*i𨧡z*i򨧩&z*i򨧩&z*i򨧩&z*i򨧩&z*i򨧩&z*i򨧩rLȉdK1Hs"D!'!T9&ω4UNs"MiHSD<' b?CA}\MOb?Ug賩&>*l賩&>*l賩&>gSEM}6TgSEM}6egSFM}6egSFM}6egSFM}6egSFM}6egCF }6dgSFM}6egSFM}6egSFM}6egSFM}6egSFM}6e`SFM}6enSEM}6egSFM}6egSFM}6egSFM}6egSFM}6#=UJoOxKzˁ\9Ryl4}:2Z2GZ(n[iV 퍚VL,1poo>mF9nr5M0pk]c `@̴ ~퍁8.ܨ~yg ;n>oEb)˹)[ ۍ]G0D9BA'TJ XyX<ۛ G6\CC?)Y=q&7ƃ@Au@gAv8.1Ɨ1%?nz8r~[_P7Gql(lu}X 2$C[So;6Mxaqه;m{`Ž쨇_]dJR,^ן`+yٴ= .$zsCح8zHǃÆ}d{!"zP4~4Y w< li*d9zC݄QX*"]I0BP4JXم^U I%"{_R{/?|s uF2}W#+v]y]~]~]~]~]~]~]~]~]~]~]~]}}s?)^B_+͟q5rJ]h Ru"*HՅVd`B+HET 7jQA :DD9zoOz/0.a(x)wQA } zZTuĖ UZA*u$p_r UZA.T]hpnRaQooQoOT~z`\R`<$*H Rg~ RjY#Oqo%?: zoTJ0.Cß+[)oz+szx$嘷RO zo0sV VVM8r9 ?(cARy+ QJp(o%X0[ MVB 7I_LKr|q*(sn [ &½½0+˓ nQV KǹGO¯ opo6 z_ߩzk=P?bNF/aSdU@?CRgJ gȃe鋇u|=K- {sj(3 [YGݦ&Y(#_i.vw9sxizO`&XXyӕP;rTQw>2 d ?V}x˗nX@k@R5 }^+75C!΅$C!kORBzQ ih"Q ULP[9#ԇkP@k@'(qXz 5 q0Ư3΁ڛ>ɾDG Eƹ(ϹpϘ14H lP>cp1st éH>p!{c>p%OzQsT9*Mx}<24v*1sL'CQb5LsT瓡sT9m*𝪷3~e0۴>1:ןOCr̫6ބSzN EpQ=5QF(2C((>;^yM_5YY^{MV5YdU^{MV5YdU^{MV5YdU^{MV5YdU^{M65ٸdS^{M65ٸdU^{MVX;rk*ʽ&k*ƽ&k)ʽ&+2Fuy ~Rpb4L=;Ce, T d 0[M1ˍ3l9@g $3$M6@'21v?kKxڷI]Kڂw'1 0Ti2w ~"S@FA<)7JRPΐ2 |cP[Vt杁(^>@\Wa\:b CX -$xW}X㪼+> &>n &>n *> *> *> *> *> *> *> &>n &> O*>X> *> &>n &>n &>n *> *> ̴;\ßL\L[LA8̴ LUf3f6̴Ye<3mVi3LUf3f6̴Ye<3mVi3LUf3f6̴Ye<3mVi3LULՆyW>¸̃Ye`<kVX3U3f5 Yԫu":׫z@ywhȬ2@fr?lx3@f2 Ye<dV^~g̋ށYe4dOyȬ2@f2 Yd2d E,3@f2 Yd2d E,3@f2 `y2@=͒ Fn2d E,3@f2 Yd2d E,3@f2 Yd2d E6,3@f2 ME,3@f2 Yd2d ', Yd2d E,3@f2 Yd2d E,3@f2 Ydg3 Yf"d %cgYIj,,YET gR-JJJJJJJJJJJJJJJJJJJJJJJJJRY':36f=X~k %K1N(XّّّؑؑE##I##I##I##irIIY;8;;;$;;$;;$;;$;;$;;$;;$;;$;8;$;vd"ؑE#`GdG`GdG`GdG`GdG`GdG`GdG`GdG`GdG`GdG`GdG`*dG`GdGtIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIŽ13|/D -L,8D9\ ~dz_bIi<8Hwlw+|%7Gqh( CKMm Dp[UݦR&ן 9MNjv c!x9O3УMklrh}/=lw+Na+zH o =$n0 0  75Y 7ow$C$pe!iWC?3:E$Ɔ04IdBfaVC%4>v7vޥ@2/!v}K$Kv˷ k|-xɏ|ݿ?5\4͙ LI=6Ph{-1p3C1} wnU72L_@Ä ~&L_@3 Լ>M^O˙u揁(E@ga\RHM@T|2g~{A bNUsSĜ T1'/9UA bNUsSĜ T1'/9UAI b9hoqi(`) b [N^9ZsĜ 1( Bl  1J;y 9t7_c E9|3y}&/x6U MUl҂ga(WE<\T3ce{Q7S<ٔϦ(x6e) MYlgS<ٔϦ(x6e) MYlgS<ٔϦ(x6e) MYlgS<ٔ&/xv< l"ߵȂgS<Ǧ,x6E) 6UϦ,x6E FM6MN<lnԶY>B6 ! 2`QFQ Ϧ,x6E) MQl)·淧m/ k?5ޠ-7 8輸7p)o@ 8"x q\o@xyxyxDymo(o )x7}  ~oo1Axo$Ľ,R"/O B-$`/<ߖPVA/~.X@;c&E@a`$-=֭a8$$$8ߴ7mQM[8TRCO( /+L/Ɨ*(0"(0hT L G7M( 1?I7I7I7I7I7۬Pb>z *2Cs&AoK~;Uo;8s񝖿Iz+۴MMMMMML$-C$$82FIn$Qf eh/$.ńp=o,X\Nj0n o/X@_(}^ށ0{ /X@_~xze&^ށ(yzb? /X@ ;aV^ށ0AA_ O ۚ(~2= oҼK^;qP(Fd{27׾𼅪L)#{?zmsܖ ňv>m N1Roh*dO[M>nWt 9(@'&>b{QD&y?r>Q֮kxPp300m3W{($9 X"?^{z=ݺ]XOa<) ttA(]e<\H2OUQ(y].|Y e @* tcݰa VQۡaV( sEn0f]Gf9 !(+P:ش2h̢@wן" tcPDn0V٨y:0 t fI[UQ;욦1&ԽŲQ<ݸS_}MemBG"1 t_H2 t=P: #\14HD^ F(OYQeq}&\Br^7oIE84>_o:::F *sxgk 7Bs׈BA_ (r`P 3wo y@N9@(ø0F X~b2x8p' ;1 @Pp[+++++++++++++\P\\q\\\\\\\\\\\\\\\\\\\\\q\q\q\q\q\\\\\\\\\\\\\\\\\\\\\\\nSqCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCpCrCp,WOrp۹ƹ⦸ƹ⦸ƹ⮸ι⮸ι⮸ι⮸ι⮸ι⮸ι⮸ι⮸ι⮸ι⮸ι⮸ι⮸ιT{AZ@].bJQ?'w9Cudfn r_@'r L$z3 b?'j 8tN=NJ@{K% p=Ԏ\#Q-% K 8m/jށ{'[V3(lkhOƅy` paf ʁQz@E@EB9)GιιιιιH9ʅwŅw΅7ɅwwɅwwɅwwɅwwɅwwɅwwɅwwɅwwɅwwɅwwɅ77Ʌ77Ʌ7wɅwwɅwwɅwwɅwwɅwwɅwwɅwwɅwwɅwwɅwKwɅwwɅ6%%%%%%%%%%%%%%%%޿ ߾~9- 9|ގvOڵw؋/7\s<hpT}Cɖf3e/$zH% U.Y9+=$33s4q4@YYxMsHMd53d9n!304HM`hm> ЛXdˌߛݶG8%s:m(Cf|[.i oZsFIh-po #v Gì]봷8zP?,;dW&9zCGIs48•M0+ae3'3tmK'Ӈ=lel&Cwɱ$ao)zHsxI9"69ϵ"r΁Ow@w@"^ߝvpMmSP9\O z9 ?aU)POz4藆x 99?wE9} S5< 4א0~ba(QmCr֭s s ΃sOϽg.O, _Zz?2Cv.psn~p8r.Ys}{٢cEx$\O z03 L:_ IwXnGZXO/9$CCo0ΡaV:̵˝ ;VqJ(x3ny .̊@eϏ{Qsa}ڹ..|^y- !ė֗ ucwjiDc*J(*%O kੵa>;hmW+x N$ts Z;ֶ2t8@ϽV8@V9@-n@@`Qsԁ9PL΁:/u {$@kOҜqOy8rIFd&7l?CH;Z5RgEMqS~{uk^ zh cB7v aQp;- < 꽆~N4.]Vz.g>!1^eN q\[NL@k{ l| U5~} aP)s>(1U)rqr{#R ~)z@9W ⼣Qz 5 q~'i%?Tj\?#ad\;zci Xئe.$zGيKyxDrEgMWqĄYe] 0j;)zH抇+GI$Q(Õ8BxQ( vEMͶaD\uȤOYիXϿ/mG6wF;GmZ)Il m2%c抉:4okPhjm I[!۟ 9jܹb[BIS!Vbr(z Ob #,GìFCN3BXAIq.iޱV$9zCG$ކ8BᴟŽwW6CMP{V&z_\HBoŅ$CwI5WE!Z*#_xP4H< M$l2zk0BD0+!A JOۡ6 =y==m⹒UjcY2m=̻9Snχ=z_]rۡW =$7-9`.yhɫICҎ;O)r>)$q}R4'Eh\ HM7WzKt-Cwa' a>$cs]ݯ-֝m?/m8>Kzt?S1_~O{ K@}e#^iׯڿH nƩ]vgَ^033Uvz'?Lt1Oc#Oꝏ靰ao%er|Zv$CwIC9J2e.i 奦К} .gڶ//okKکwKsuV\}?ղ)Woo-Nn1w*5)˫嵭o]^,UjІRt4 h`yQt4 U乀.z],wW1 s fy {r/e'훡q;ʫr{ZKy<4EozH,1k% CIsZFM`h ۠ #VCìЛi>nO,žXÞX'ҳ"vE'iO,žX={b"E'iO,žX={b"E'iO,žX=!/H3%^%hKBoM1Ȩ} ߹H/ǰ;~NS;]~rkZjs($CaMm M9 ;CaڦCt jshFHt v:MX&( ~h%9 VA[;~t!PQ\pqcn1ap[#h+GCoZa.ii ]?a!΂gx,X= XCCCCCCCCCCCCCCCCCCCCCR:dw} 6c 0ς IYum_䫳a14HFE#hȢ4ʪNh>s۸d(E.zP

vruqr8S'Wyb_m^\p늻tx5#w.v͘خĮӾciO:]yoribiribiribiribiribiribiribiribiribiribirבw[С& J (CCA|MwEkI I I I I I I I I6:AF⴬qZ֧NiY~UiYiYiYiYiYiYiYiYiYiYiYiYiYiYiYiYiYiYiYiYi)OC]j_g>/=BP1w} ѧяDbhxO*O.t%OK=΅:d} ŝ|?5{Gnl̳X6re l >Ҟ3WIxak7aȰڰs.ib6Zqt4_? =$ϵ|[}7<5z=Q5uόv ?;2l6ɗ ,GwI7J2tyۋo=$Mto.iTG$ ah894a/HڼYC&BK}ChM숾=$fz_Cv @ 1GmaV }nW }Nͮ{C䷊#CҮ0+ =$M~ Az4a*chz;!ّa~bGҞžҞžҞžҞžҞžҞžҞžҞžҞžҞžҞ$홇v/]٥vu>;?w.v;]ّa^е.w.v.w.v.w.v.w.v.w.v.w.v.w.v.w.v.w.v.w.v.w:}AҮV`% =vBxe(bzoN=%۰VKBz~m,hqW\ɳɳɳɳɳɳɳɳɳɳɳ@jP|Ie/+Yp!IP< 1wW:h} E#hmdF(h %A.{P<>uO*N'Wّa~b[E&: t30uώ s[ļH틻-Pzۄ} ͠ E;5X^^^^^^^^^^^^^^^{udhоh4hlUwώ {*U8-WyZ\ir*NU8-WyZ\ir*NU8-WyZ\i)OC]j_g>1w5zw} ŝ.jCd!hm#"(5Qf%?œk'J:%֞y} ;]/v,*^s;]/Y/\-Wq(گQ2 SZ5Zy?~C(e5{SV8rν-Nkl yHs*Xf> V˹} .X%T0?1 ɀ,=&<xyXY+լ'^V`9O oq}eT @"H$R@"H$R@"H$R@"H$d@"H$ceeb˝>:g\peO\{e^{\Пx9&rjN4xgiaZ|fbiaZgi!fme!fme 3L^0lXjbW^+zZXjbW^+zZXjbW/=C&3&g f!3lLG0}C#f|a0Y& !:=HS2udz۟Jfv2 D"g)jWiazY&Ā(/̰;O:03̮~3а Б't> JF_\&3-WbϾ՟040M04= ۂe=3lL^0=;f4aY uay?e ։ـ6X'f 3Yub~gk|IfXw^ J,yGlƳgk%V uY \XZ|fbkYWYWY*WYӕOH~3~nϳN}. ".  ` V㙁6XMoa̐3l" 37j qMo7.b{Y7*W\!=zfXr\3xY0` PV+` PV+` PV+` PV s GfXÎm̰:+Ϟ_c~>3lutgf_) yJYg{W:uޱRƓ`53X QP:{ 9a+dnGwaka6!fifkղBOT˚di|UZV xbP-+V ղbP-+V ղbP-+V ղbP-+V Z#nbh[ zn>:g3EnϳΙFg5 ̰jz+ 37Ɛg5OEfbM+Werm_+Vyv Oe!D?̰ka3n<B0V. ghXG0],O %= jHd$'<Ͼ-D@" "ȂHd$ Y,D@" "ȂHd$ Y9}PdϳΙn6AU Է ?3|. >Wg ?Mf3gak^KVk6ĵrgl3̵kYZg=Zoz~?~jI\~[+{?OeckIe˃_~] _W55[Bw縪3#qFڹRf5X`y iy 1v ezCi"Q3p{-/M^^ly˯k~Z^^la 55Ȱs!mF6#qk\ekm7_colw_Pkuڮy~bn}9~~'Uv׸62=˶ZWIyka\gKu]JN!j]~gIl}p+lv~՞Wk;W;ٗ9qI}e9}LD^c\[_}Z۫uo&5ak}i~]??5}O;9운}Z6:Ǖ]X;jBwhfk}~~j\rTZOGߵs\َgrVWkkqwZ__OK8lOrZ>0lGnZakxz֮u~~>o,+7w޸lG.}8jyc q/WW0k\.L.*ݸJøvx_3j֗܍ǥGJ>uiw{X 1wZ:;K9yP~~.u;w]lGnoxF7xd endstream endobj 3156 0 obj 61769 endobj 3265 0 obj [3157 0 R 3158 0 R 3159 0 R 3160 0 R 3161 0 R 3162 0 R 3163 0 R 3164 0 R 3165 0 R 3166 0 R 3167 0 R 3168 0 R 3169 0 R 3170 0 R 3171 0 R 3172 0 R 3173 0 R 3174 0 R 3175 0 R 3176 0 R 3177 0 R 3178 0 R 3179 0 R 3180 0 R 3181 0 R 3182 0 R 3183 0 R 3184 0 R 3185 0 R 3186 0 R 3187 0 R 3188 0 R 3189 0 R 3190 0 R 3191 0 R 3192 0 R 3193 0 R 3194 0 R 3195 0 R 3196 0 R 3197 0 R 3198 0 R 3199 0 R 3200 0 R 3201 0 R 3202 0 R 3203 0 R 3204 0 R 3205 0 R 3206 0 R 3207 0 R 3208 0 R 3209 0 R 3210 0 R 3211 0 R 3212 0 R 3213 0 R 3214 0 R 3215 0 R 3216 0 R 3217 0 R 3218 0 R 3219 0 R 3220 0 R 3221 0 R 3222 0 R 3223 0 R 3224 0 R 3225 0 R 3226 0 R 3227 0 R 3228 0 R 3229 0 R 3230 0 R 3231 0 R 3232 0 R 3233 0 R 3234 0 R 3235 0 R 3236 0 R 3237 0 R 3238 0 R 3239 0 R 3240 0 R 3241 0 R 3242 0 R 3243 0 R 3244 0 R 3245 0 R 3246 0 R 3247 0 R 3248 0 R 3249 0 R 3250 0 R 3251 0 R 3252 0 R 3253 0 R 3254 0 R 3255 0 R 3256 0 R 3257 0 R 3258 0 R 3259 0 R 3260 0 R 3261 0 R 3262 0 R 3263 0 R 3264 0 R] endobj 3266 0 obj << /Type /Page /Parent 1 0 R /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /Font 2 0 R /XObject 3 0 R >> /MediaBox [0 0 841.896 595.296] /Contents 3155 0 R /Annots 3265 0 R>> endobj 3267 0 obj <> endobj 3270 0 obj <> endobj 3272 0 obj <> endobj 3274 0 obj <> endobj 3276 0 obj <> endobj 3278 0 obj <> endobj 3280 0 obj <> endobj 3282 0 obj <> endobj 3284 0 obj <> endobj 3286 0 obj <> endobj 3288 0 obj <> endobj 3290 0 obj <> endobj 3292 0 obj <> endobj 3294 0 obj <> endobj 3296 0 obj <> endobj 3298 0 obj <> endobj 3300 0 obj <> endobj 3302 0 obj <> endobj 3304 0 obj <> endobj 3306 0 obj <> endobj 3308 0 obj <> endobj 3310 0 obj <> endobj 3312 0 obj <> endobj 3314 0 obj <> endobj 3316 0 obj <> endobj 3318 0 obj <> endobj 3320 0 obj <> endobj 3322 0 obj <> endobj 3324 0 obj <> endobj 3326 0 obj <> endobj 3328 0 obj <> endobj 3330 0 obj <> endobj 3332 0 obj <> endobj 3334 0 obj <> endobj 3336 0 obj <> endobj 3339 0 obj <> endobj 3341 0 obj <> endobj 3343 0 obj <> endobj 3345 0 obj <> endobj 3347 0 obj <> endobj 3349 0 obj <> endobj 3351 0 obj <> endobj 3353 0 obj <> endobj 3355 0 obj <> endobj 3357 0 obj <> endobj 3359 0 obj << /Length 3360 0 R /Filter /FlateDecode >> stream x],;r>/W%/ +Vaѿu[-w5&eYbܗ?zOg? .?9p.eۺ棏_?Yuu:﫿y~Ԁ'Ug^NRzy]CϿ'75?uQzWaNݯ_0eww¶҅)ƅ~y˱ 貆g콿\fоߖ@hcQ |k=LTM$/viJP-4(I Oa[|>敉}bm-//W=j2b֛On[L6f&*3ڤܭ9F'SCExCJ̵}s@I%>/ z,. @iT`bh2g}b*2oU/JZQ>ik 2n4.Q2tdiVV-+6ϯau2ưR}αǛL60ŁICGb }JTds oװ%hc,G \6i{,C{l5Z) *ALVfvV\I;;B)^.F [$-&R=( &S}$BIn)~+##*-h -".O-Uѥ-ߖ ?K8 qo-^D~prkƶ 3ӀYf<~ps)aAÍqWwR:Y8ר)` e€X'cn0WH<s]1 9qߝRN{wJο;A9;GBx+]wk>T/Ht7A|{dT/c{k>™D0fUe_W]w5E,)s x!c-A2Oe9)2dD} hnME6Nߎ @$riX/U  ߗY#!}1S9\BRw BuD8[5-blf*_yKvyr.eJ~s_u9A.]S~YݗI]_Vw1}?t}ܶZŎ瞮%tGܗllI Bb =wW By%)@Hrh%<D9Hq`KǝxD=#9zc}8(nJR'QsQԢ{QP(Qt(1ajU(P5Jib)P6^H+Pq^@1z1*%&b`5J='PX4JL]̕k4{H1OH=‘y)Pq:8kH\PC&p֐(5n$Y2gGC`sY/݅?2 lQpn! .w|wg~w@;6pJGX{X[,{/mڃ m+w֜O ht~T[GAnK!˵G,@׀b 2L$\z e׀ 5Gkj d ɌW\pL\ h N\?q b؀/spl(UR0|&ܟ˳5l `BQN?Q:j/>vHҭVfk|~b6 h~pzhR(m܄E,3}aAj&0W<XfiP{,;؞gfg>Nq+q)6`\(6` upqk{ r`PQ 5z7t32K36:Ii-^<+>gM۩5hM Myɫ>;g((dk՝ ,b0S`-ZZj=xu {U'ۺQLɻ/R^vAų0yrՏ6R/>NY 8e J<o?Sb(Ƌ$x{bǸ`mϛY?rA<@s;AE&T[ocqXz [wVpo)ʧ\Ğyx_TBOL(g ħqW O8V ;J!}ƳlVޒe><lN?Gz&@Z/4@VwmB{'+bInO+7'g)0hxZz@z@#r]('򶶳q(Tr)=_R G"+Y]W|^C<6^(DLm\̎QN͸u:0[Ϭ~wQoܷ}?.ݯ~bo;*̰ S0.^g3oQl/l9[F^< W⧲_ b{i E{'x{/hOr.>vDy®@asyV`9 w V^W녜%`0ԋ3l)N$x^+y8rS6 K[;e.eqPz@3]$0Uh=<=2* `ʏ$Xy) a ^9|̿\(N.@xD9NbNvB#;!@x Kpqq IQ0A8o'pՇYAʔ>vܙ'[`^d2.l5=B &;@89D9q]Q w8}Q ;zrnwϹ vw[\%{:W?2$AwxS=ے^+?I'-'~%w9'Sy$('[Q`=.#L*rO,P p}P ʉ_pV qIx*UCudA}{qr ?ir|w '|,9SU 7XaCȏ] BC04oXy֟&"9f>߈ ٤g*SwI=h;.ڻ}q)8k rј'ƫ]v\xߧd>VgHvI\ D^=aB('Ʃ lH88Xyg*x*lu6/q pT ʉ_Hq܉'@3 5q8<|tO}~+/I9='| 9kCh*ֲ>Z[6^|h*r?CVWo|7*y8rbܯ@w8)ǝ*z</So_xLu8ΣΔ*A"L('_h ǁڄ iz(yҨ&4|\uGUNvHHd^Ozhcn_=s0`$"k<*%i. izO4*ǚhcӹ!2y4*W`-;//O\wq6zj9Yoz_%iژu?o6z7-fiA> PjOCܦ@Ɨ;-i{1gtx6iqb }07scFts0JߙΛC~2ԗ.o VkiOJA2:|y+TLW~iM;6y3KJ%za7('^^@N8P.A(K Jy/T ӥ ¡3 o>#AI/aU ^6 59F!s=o=b{4}K-\RڪYhП OU GT|xlyxs>(B KQ< D9ў)]8`mye18%k ey.Ei)@wIO6^ p{OYyOuZ_='|L9KO?Я[=޲#h4~[؇Ky;AC_JOy_#V^6l) MO<_yލ/ywYZϱXJmR]yލ/ywZ҆0[GVf9kBem>.KR;L4JBF<0&QL{\w/V~s Q(1i~*LC}Q*&0S}s%(2&9U1w3sa.qyh_dlp#>1GB΅#K}Hz|8Qντ4Yv3[~VQ)1Mr}0PqK =g;ֳJBPB&o=xcƏML>{i-Bs͛= >oBt+T(1YJҲ zH1WJSY{/d@_,@3E ,늞%&O~*zO4*'(4%+(i<@i7GCCo/ 3m*/s#e~+[qO./߾l=j˿?==?R[^/7/?|OIK>|.#tll/kn0k˱g''Ҷ%#}ޛrÐT5̼k'g[ l]w _>K,;m%VQZY;mg{gasKlKĻS*qy [{y{֋YN>{./uw} oC{_F} lOWD9 _ضXS(85w*`ž;K,5_LEAmrjyl^Br rߎ~`Ji`7,pǃWץjʸ4K=rlE3O6='|L9ַq~.R>'y#'!V3oS*FKm-6YFvkyKfVH%l-B\6}b o9]"kRwMSMz} 6^z$u l4*C XyÕ,oxԟ lrˎr^GxS`-=Fߧ*g>/`v`-}K!pwu%%\u[{k/`+/Ow>@qo ='ll7~/W`"A !r ֟:&"֛|}iqlۙ([{*u,ۣ Yl@IN[rPb9{rwl(C&k[P?C5XW% k6^趝o=S_+3o?CX݇VsU~@ylE$g*OĚTL୥/+ĒϪyOV^^Δ1'+AL \=nWe^] =\ ݅T`^CzhOYrֳ#G<sLp瓱l?6^,ҺKe:RƤg lW\ţyemss{0җb xy+o\o%x{\o%`># 6^eNIyZ'K=r;ǽ"iYcO[26W/`gʩ[UV;Kt'@O6lRڞ@V`ŭQ?( $l lN+}Z z!s +3FH<qp8|ߙuZO ~Q/`-_O?bay[y擑Wl٤ 彇N<xtx c$}>SH8 l؏Ӹ+hXyNx=S,,:~`3qP G[Δ[Spf`t8*؃"3ZxxG~c v!b`xnaN<6Pbf V9MkS`~O{hy0 6^<k~Y{Do*՗ qW`-g ՝V*ݑyơL~3+na51O / nIEfȞ)J~*BtJƯX=S`tT]Oͯ<̼$WQrB`{ zoI~*Pz@<V^>m lطZi+Ru[h_xy 69St'x{HvWmR UtLM_6y15?6y 4w69,d_xC 3t@9O6^:?[2OMә*A9kyޖ݅Xyq鷥<`eߏ.r{겷VK /k2e+^d3( Xy XyU|p?ɮ$>[w 6^ڋo(|[dS8xy l 98K '^Fߧy@䡞)A/hw_6~u{AwP D D9.)qw ⸓>#z=BN׋E{`;=>xb98￟"@}1x"#r "y3<c$R O"3x/hád8K^+ygɼy}/i/ `9x~`|E{]׿ϒ3/s?sL`}vϰ u3n G8#cY<?aS\rm='|,9Kźl /&Y ;ʋ9_ Lq|P`̟_@ߣ@#bW OwP%s{<<5Xy۹5Iߧ[ϭB 'o}QN L:@՗b(8OטsqF8dw*iXy{ӊyl-_r[Δ1kV^Lg Z('kb| Og(gZ\8RS(/y@䡞)D;@?8(ǝx*|3}iusGFυ3r #!۽5e;EfϥPNbT~+Sb{o.W>ٖ~k-|޶7ۜ??~OAfȪ.nK}}EûrzqQ \yTh\ztT(s./q|M{VNiFIڐ5J==44*e)6Mqʂ.ܴ}[B]o}~ozcLwzzxMĬgI5JҦR(P^JҨЯm3CLƓ*9~m> }#9c}Z_!ViG5sma:,O)C_BP[ecq+Zͱ`-D~Pf/Q-4JL!C BM( 1zDZ&i =PfŠ$QzG6QԄRv$Y$Z۬Gc**m/VP| %&BIZR)FXm&-h.D z+Qw7/zh+둚ÕwP$ژ5$Xo% :YPNbR[qoԅ mqem*n|҂O}DM+ 6z7 iI2#W{߶®yG ňJ>V8xdxT$6yc^c^Jz-DiT0hӄZWH^+]+t/Q1(11(I1D0( F}{). %'iy ~FA MPh}\yѦB{e)V#{>ct!Bb)doMf\I+^yR)Ye{>L6f|H+yD};͢^s* ̰*[VY BGatвSMkqoJS$-zmUĨCĬ.Jbt%Q!0$JBLƃoRVZdݳ4* })k/FEU0n[Ж i%ژ~%&I[/f C[.lBjBoxm}\^8^MϞ12gf}R侕('ڲYjSwK𝦴yAJqoSD3%4"IY$J߉ ǰj13zg@{e衴 U e )G^%*RS^^%JL&%iq-(eQ!W(i2%zGBi?ԄCCϼ 0' = 6fd"$ڪ?Ӧ3Kmߙ{S@oA9C4^YvPig_SYtOfFIZ& \%d55㱿C, mʣO(-o\Ą@$-ORTݘ_X>u/zh@ۨs m̭vbo` ZBL +'JҒ5Q(Z0ҨS $Xdb" ڵZ_xܣ?Et| ]ƌECm| ;$Qf(IvHChM$3aBx0 !QKI`$J̖(ZҨS $ #F~̜{hsЧѹ 6];t˯.V` 2w̖he6.O6;C%.@+sә?Է~k\|B[Y}<|hcn %&jDQՅȰ#=./]C#z~gUhӄt`BQoYZ\RhcL4A4I3{w$z7f3?{3܏:ss_&,xjy an%ًn4~ouO߿I'^/wcMX4\Y4e"gLW5k`$2X\pۯ*`} 4FbzVVL܍p[u[h p`O76i201Zc-ڗS3 \oA53Sᶂ)ʬOGMQ! BB:s@I rjzHn\ЀҨ]v%MLMڏ{BZԾdh_=US$O0mI3}?y0ژXuyBL>1k[)Rmyy=44*}оi7S@&y!B37|/zH96{-Pb)%W(2ҨVݰ4oqag ½O,ΰ'O8ӟp?L3 g'O8ӟp?L3 g'O8ӟp?L>bk2G[hs7v7?os•)m$kB;EzrnK7f` l>.,YZ̖P BaN̰t 8fM(؎nB^0,݄ӲtJZnB,K74*P҄K92*%MI^@[6K{SQ\HPb>(z(M:Mњ@9[W4WZ!m&(ݾX g饵`{u-HlLZ kA2ւdX $c-HZ kA2ւdX $c-HZ kA2ւduh} fkS)kjO2hzO,@IZ΢ zhQ٬o6. XBZ⚇=Օk`7v}2m| +ׯޱpz(%bn愱cn90앿`Zm9v|w֭Ɗ.;:׳gV߿%|Z5#2CPzuq`o? -ථ|<)W=^jTQ~5yY[FEjVFEjVFEjVFEjVFEjVFEjVFEjVFEjVFEj[Y'[I=ܡ\ KjP>W\ǻZ'ֹ %isJ=dP\5i4fj[_>}BZgZ窩,jQ:WM0aֹjҾI\5iֹjeS[if+KqOK{Z窣qSF4i=-Ѽ%Dh{ZqOK4i=-Ѽ%Dh{ZqOK4i=-Ѽ%D[b/U_nXIF+XIs 3nsUgyD4n ѸA"7HDh $yD4n ѸA"7HDh $yD4n ѸA"7Hgvƹjgvƹjgvƹjgfqڙ窝qڙ窝qڙ窝9\3U;\3U;T3vܷTh㎍wl窃qA0c#wl`ܱ;6qF0c#wl`ܱ;6qF0c#wl [, @:>j;9DeČ )PX .tH`]CUO(uo¬sJZ'z:WM7UMF7DLB,r!Btgvy:.ƹjgưW*U/\5ڟWsq fUo\u=kUo\$Uo\5K+Qܫ~̹mtJ|H6l.t{ث&/{[j[F/;| \ +V=1S9zll6N5ژohepI?G$-x/[4*9h4a35>b/аy} dj_2od?4ژf68kCQlRQҾdh4֛ }~!/w!Bsݹژ\QQhc^?kBIڧP4^C4JB3[wҼŗ o3 g M7 o'Oxӟ?M7 o'Oxӟ?M7 o'L#!se܍6wSowCo S(H>wsztaϰtޫi3tm3-fXʹta6mLKn3-fXʹta6mLKn3-fXʹta6ҙGqo%MI^@ѿbUhtC ňU(F1GkihM̜FIZ+ 1oϚPvw5ւ3ւ{U3n5fjZkjZkjZkjZkjZkjuh} ňỳBq-` !u]aZC} %&gJrMCE(fШ}cLb,*׼{ʵ++kg +b؎\cZ̕k1V\cZ̕k1V\cZ̕k1V\cZ̕k1V\cZ̕k1V\L|`Wb{,b,+n΅ӈYgXV:qƸ;88888888888888888888Vgt(z #T&iB1_xN :GwL>3}tgѝ;GwL>3}tgѝ_L.Po}֫ϟZNBWKZ-}֫S`}VKj鳵ZWKgZl>gkY>[zZ-}֫j^-}LMIvSvC S(X:zD`.O`.O\G$P\BiTx(\WLQՒM3qMnyy>853JsEA f?h|y:/O`<̗t0_|y:/O`<̗t0_|y:/OiSm6X/sGzmtBq-kĜnU^%nr^P!QҾ EibyQҾ߽u:it(3:FIQ6Zw np-'~mi:F_\q:~k5np-`  7֠B:p$Ҏw\IWcU~kد֪>aFY~+uڗ_۲rkY[}W]RoXx_꼲l볽s _U=VįCK܊?VŹďuokH4ZCMKVPE9*2wi>Ű"-D^mEܪ`E@žMVN+lE0]ȁov+lE`ȁD+=Vd~Y"KYeE-+ҎvU(Z_/4CԾH+-v+h݊Gk"!3ϧyba;HeziExnM"#nEjHص/R0ÊL(XVdBL!i_Nõ1^ nS}U͵3ri5'a\/Pp5V(8*)ЧstL}ѕS(1Cvawz%Rb%j_ЀҨxrJMMFutU7}m>I.X%",1Ɯ43[[h'S9!D AFIDN( jDI th/[%BZ6fXo7WC mqШ( MP(1IJҒ+zfBiThf+nXot|5Jǧ#ALyaO>l_Jo]u>/pK2Lg4U0PQVfvYF/mm-LOhcyDŽY,sQ%i>rHGeDQli}ܖ3En)23rex^xThc8&:$Q&TC U(1)PvLBH$:\rx>6fuS1LJZALIA}Sgw M9b[̄aׇ-D;䙾IgnwK'vALc鵼!y[m5ydmM:o;sy[B޶`FvB)?MyaSAsr6 DpI٪^_0JYfV$C.}K2%i h[{JG/4^(m3̷17ddӓ~ZP~LPyo * %9([-rKVP%Tn *mmAr:܂TnA[-rVPyTnfz>oCShC'Q * *]T(LC0mۭrDTX-rVPyTIF[A%h6^h@1diA%Tn^90c@eⱽ(x<$ .S]HPp> zh ɷdxLśPv7\< w %ixł{{6 }^ vf؝{8ۜmU8S? $ژgsXPfyT( \HP{e&X\+P( z#$BawS_` vbOmQń@Qڝ˃=Dx/)>Xf**0CߒF1R>Y3RHm1B}Ƭ+}LW]5=jKpޚ{X'SEYnrRwHZw+ހ5q ^| 03cPm5ZSo{5z ~M7X36ݿ X0x&_g3/fּXt8/els3f3gizqiSm.$14jͨyǤ B5ژ:‚ͩP,^ d(1\DIZHjzRQFI 3zMM?- ̴N&`Y6M{)Y}-۔he}FPL6fՒ̦% S9;O6fqK8?%JL%iq~JzDiTp~J40k|*߯VwiV bSO .:%koļ *ŗnH!nZtMrӢnZtFmKDtl mKS94ӌ]0 VeR(/BbgKĄ?h$J=Ζ@iT8hsJDd_ BZQ&cYF0:mC63|l G /]oo) 8is8BLgt9Ogt9Ogt9Ogt9Ogt9Ogt9Ogt9Oy-1Jr'4!d8>fNJZI3F$,a(:CI)KP,ruTP,uTPfbяBIZ*Q(^i@A xT'''KQr!bAr "Wg s,cuVTr ʅ͘U.4 mO\hB6l =d\v,`*0VJ;4зwE2 f,~oxt^yyyyyyyyyy-gI]<[K#98q,BirӖv|\$uT}B}s[JԾ0 _HPyz0\.ޘ~C[WܖoѺE~Dyd~-3 ƴ3 g"pg"7>2dles-lٌɖMlles-ld&[67ٲɖMlles-ldeɼL5&3gi_27ٲɖMlles-ld&[67ٲɖMlles-ld&[67ٲdկ&[Au&ד&zd^OIy=i6'ٸ4דfzדWE;3‹Ux_‹2_FB0 /#B0 /#B0 /#B0 /#B0 /#}֦LUI\[b$Mfq6eH1&֦ tp &K0$)sei zS9F؃#bf={0"{0"`D&fDO?d&Z{0"`F؃#bf={0"`F؃#bf={0"`F؃ڗbH(gbNq's?agԡiI'J=d=7c'& J'}S'iJ+( I;t? F~!$7dsEP/Q*x9ZE8WWV/ΕxqL$7E,MFo2xQě"^#u!B7}\o0E![f䋂/ /dAK.N<g;~v擦sS |0q] ΢`M߃,θ53\n ~zാmh}B;<>zk图z#Ǻu[KSx~j'{كm@{0͟=IN:t;N^2aa[>n3ڡX{&Q߶!|AѸ|v6}u~}[v>p] y|ǵoB^_|Ys)~7 ֻ71N@=}S;;ʏwvC<>hߢKAwkgTq6 qzM7|}\<<|܎3@Y>#;:\͟ڱ|:F<>8No5G'4{}֪fw=]7W_ſ?+lN>f[/6O~1:|?ݭ].ޖ["^Қf nMxᄘ&^=E=⤛ܾچV5UJKzsPN>^ȩ:eO.Vk_\!b;Ew2­#@mi+9\ܶp˭B~= qܑW&_=qָG=4D{Z6ذ`O[xkW7(R-s_o(\88kf;1 -Xy*r*g/ 5=GAqW ʉz@kka%-Kݳq 7ͿLA-Vh*.Sm< ۓ @r~܎7CM-nY͵W&j1c5{j1'5/J̶ԗ2/K%&(FIZX4J=FiT`(ؤ z0T=HҨ$)0f] h3m _pk7㸋\V mZFIm>STVd.o56_ufӖvYd8-heC8 m)0Wu6D~LV(.>ZISZ2fDI#V^I;Ck C{ꪇF-D+sZ;IthrlK1&[+=uO@zLX%J+Q!\%JB3[Be-/Qx$}J +_Żs>f{//y{Χ|S0:;i۞5nfN2㨙f*L6frvI;kF+sԽ6`vpC5JL4JB,Q!X4JQ5akgj0GWUhc?B4A$-iBHz7f{GSya%cBsXH$xLw4^oV32s4J҂Q!4JF7:=gm:4dw4ژC;4geiLC8%JB3[,`ٳNqHo s5ܦBsijSY3KV9sh%JL\W$JZ&Q!a5~w樀ƚ 04Iژc BIPOC j>Z4*3Ds1Xy%ژ r+I2M/5^j}VI=BI0-h˜cfN&,2'fFF }lgVT`s2DY&K$ vк91M&- QeZ΅"#Wu qe%z7c`g  ox).>!ʛP`;tY"/FAΘD/gqqW ;'5I{=qƿ+oG4~ D D9#R(%(P C 8|x -Ö.ɩ Ecph<wg ~!V]O(d֞TQe LXx@E8.FY6y}\tѦBmjs(;PPiXD&jpvh05J҂(` je5zVȂ6RiYI4AJOʹX㵱3Q1n-L2,63mjS,֦Fsrd$ZccQbIE/YC'kG5A ̜SxV M Ծؔz1=qĩlC.a5W+>ɉ~GW}Iޝ(^9/gFfo+H}'gUi=$%Xyi=lXI|?UxEVd V?}LvB(g%+a2q}V!1n,<<y<)g&~JF9aeOO2C(gq zy_iL30}O!V#MMvN-v;ȣ0~r+f_Lz=(ǨPk,yy[O`3І o"z&RԳ< 7w`;V0tLXN/PCa#g:!PbRP':!P!谇@qTpkm:J7fG`btF?X_h3DAĤU(I ^F(W( OO&;zEigGG;*eژ峏Mލ/ywZ.nZvxS U6*c4ah}g+ |~UNWj8ܝǛ m1mx-]1 + : Vdtd66XmБm"۠#`EAGllF+:Vdud66Xmԑm"Ԡ#ۯdd66XmБm"ۨ#`EAGъlllH3U,i #UO߉Oa@QN V^6!x`7% 6 k ie 0|'3 0aV! C2 0D3 C43 0D3 C03 03 C03 03 C03 AgaF!`daF!`daF!`daF!`daF!hdaF!`daF C02 0mZ`daF!hdaF!`daF!`dgR~-6vS܋ 3 /52 ۋd!%#Ð0ldR Cv2ÐaNfbd"3 y52 y C2Ða^fr02 9 CF!a0 3 M?Vƈ?O'0w͑9"6C(92G+%X3pB^ϳjaAOKVu׉K>ͣdKL<-/'^^R:'@&OF؟s [ Fdls"[bYVdls"tdf#ۼYmtd7+͛lfEyӑm^|ՊlgGaXR"۔td٦#6;٢QObEjE<ފlg[8S 9Xm:ъlӑ-BVdl/7|%e͘"tdKzk9F8,mۢmƢgb*Qoƫ%ژKR1L%Shc#~xRU%&^)QVC8W$J— (6P̎ NwɎd0_#ך}!7R…_fG~?'H߱jܳ-77B#[ KfGb%b] V_L*-ʫۺk;;D,D9Ց 8:qHH=#J $u˹D6$&H&pM?j=B.4P.dO V 뾎><2A**Ғ<Ek.'l) 7_2~k+ԟ#$zIu vS`93V/\N 05 Ş.|<| D('@|G8R ; 㡒 :<ۃDjgΌQ.xT%C V9Ϝ.`?$9OC$XxLh"? s >SO}g μ'1놔\6zmcR{ośS9w V9 k$8x`yx8%XxnHb >˜leNZ{Y.u>x^~?P@ߗ^Pxsjf][%I?%xI?%߇)ɞͩԦ+X^PI9 g1CB1(f.j y#1T(1P$- zk JB*pc0.j kҞ[1ThK 9CB1h;#P@IZ1( /kze#`U|km=<0ٌ>UȊ8mP6I2$*qx2=cHІȽ35 _ Cٖ6z_ߩCxݙǐm>"B)(f3}*ϾqQw!(;/x HРmH14PH|34X%$PcǧuWO+q^l)1ۙ%zǯ5"f<.273wp=öLy@ =Qr zr> 2?8ce'Xy2(cmS\Pr'T{ d,_[r NvP/NeCEQsk zs> 35@ g]JmL` 6ro$Ú١١AR1ULgRLg(37Ԋ c 1"GF GI1a@;Fr9$(3 I1𴶞F_b:oVL {2~U0at\6z_ߩ͙i*89l&&WƾL I6zt[t2b,GE>-MB㓢㓢㓢W㓢AR1q|z}ǧt]1q|z[' |O+sJMk9}[m]aK})?˿}:߽EyJZ?߾?׽!wOߏ4@m}.A`N [Tkyhh򢜃\Bc;]Crsͧ D92D!_Ohwݑޕs듰;\;w9g"a1pGA(zšIA1퐔hkZc.7? /ʵ~B]<#` [Cf 5o| zc*nr.1L@$\TLWk1Y3U1~U$ĵ'gB:v]1w8~&hM1kl;?W?/K$AǞ8ga. }I7K/ 6 04J"9A[8h衐ahJ1tdR3''E!EY*I;F OcQN"(#) YGL'A'σ IqZsmb6qr~.8 ~6+~&8^ιV/߿ ތw ,y\a{bտ,JVCo6]H2tH'=ت@ɳPV<9$!hk*IZ{u̠-CI!H*  Cz#pH6SΌVIj‡,*iq '(-EwISI!iG E$-E8V(z'EU xuvmK,sC U$'04h3&F\⬲G>;msr4B m Ij(:$OˆGo{#hDhl =DO`h iި8zAsXtq3Hʘڣ,3G}{N`?./jztrjVag(˝\ϪQWP|&e; mPp31 >CAy'd( ;C6jyW ϻ֓\V;WVOJJg]ԃ62ꟳgC㵸wP-dޯK˙\Ug?Tx6rRr~B Q8_=1j|ˎZ#|YcA5V^t*/$CC򂠡bAUɟ‚pyX9 ua賖)򂠏k[0&CwIˇG($C24h+/z(V^'CXyAW|\-wX`hO¯ >=^U/TKfЇ</|N"Fxtm+#ų'G*7/sWi8AaEJ^l=P+h8k|;1◟ϛ+^]]wū|W]w];w+|Wծ]qWw];w+|Wծ]qWw];w+|Wծ]1Lvͧf4 I ) 7QKc ރ w&ǰ(D8D=;~f2t@f'NtXUvDWىγ]e':Nt<;ѓىg'V<;UvBcWNt2;EvDى.]d'Nt2;EvDى.g'N";*N";evDى.]f'Nt";evDى.]f'Nt";evDى.2]f'NtmDى.]d'Nt2;EvDى.]d'Nt2;EvDىDybv?!;Z#;(f'Jىivt(g'N$H*;xv"Dىg'N$H*;xv"Dىg'N$H*;xv"D |9[j$H*xV#FYg5j$H*xV#FYg5j$H*xV#DYhV#FYUV#FRYijIe5j$HC1cTbއ~lX9/Eo!9(5f =Tc֑h3.8 㓠Q[w!7R05A]3&CoAM $*C$ J C⬹Y{z[GII Ot$,u:$ϧ6/ aՒ>˜06=g P~4Nʜ(sPV @Y2'eEʜ(sPV @Y2'eEʜTpPQ @E 'eE*'sr(sPV @Y 'eEʜT(sP#vQvȫ!K=i:(@ *leN lžA/=3d(M#|,QOEʜ%beEʜ+s"VQD"XE bI*"%R$"VD,XY beIʂ%+ "VD̉XY beIʂ%+ "VD,XY beIʂ%+ "VD,XY bI*U$"VD,XY EeIʂ%KXY$beAʒU+K"VD"XE$bA*UH"VD"XE$bAʒ+K"VD,XY$beAozZumUԼJ}en_4^ŜZ,Je۴/EII ߙd.iSǷ-:$ `Z=MɆox24h[PbM*e(Ze** QYQ[>ߞ}%_/ߞ@ &0Vah Рm|ЛWrWN헄JKu%H^6:4;l`Z@6ݯ٦ڂU>AqaҖ7x0J=Ȧ\ >hx Qp(7{ B`ޙ4oxNkx7<P8oxلQ2UJPvNW^Ca(Z%lO0\GIGm ٓlS}~Tsim!2=WZ/ I f3#%4̕ IBмa0tHmB|3Ѿ}N $cOРm =BPJ** QCxfԖ#=l/z4_XA2xC1'(Px4}7rj=٦œ8v'Pvt E)`dϥ5(CɅ$CGq/$:$g@u>–:C$ @B`3㓢zZaPx~0Pg }: 3BP0R2-8A'T IGmE$eoսhs*"<.o+n==e5?_ϗcO/|wV߿gRAf3t H {^5.U3dfPh!\I]tuTܙ nxIoeQ` CP``w݃ɻ{vo۽9wG~ D9ؕQ'&._d !\ 7mc&gbAOrϰ_xp)`\x'__3ƇD\h!)T+(?-rb{ p9 |N.F?~1C{ wa\pz@AGOlֹq@q.gA )rQ _Dǟjgq s(G@'{Pm?-dN }c.>w9> D9#' B`\GAg97\{g%Ԅ\`l$2<}\ $1 Ot7Iٞ<h7 ~ҳIiʙb2sx.g:܀U$'04hۯB3&F`12$H>G-%"!)v"<̓^p xw M~S%Ao6S~K]ҧP(:$E]ړA!mq(Po)V s%) R +/EjE=lOPsE@sZ_(v@3r}Z_+N'N]Ιh/ iuv(r3zz~I@[b !);ִA;zԓ $~1؁(㖁gƧ o|i/r~dwX}.ű=\,y %:'i(eȗ7ʼn$gJ<Z=msጿl_MM%2'^1+i$f# n4R8:$JW萬d!FI8hv')zh')2  bi\ո ݫOlB(34hWS4P W:4X%L*^ Iڮ\$0٦&5}Cel[]Mjwy7|Z6|NCt*_-_|+5G?GRY+۲mi MWD%??s}\=+Mfmu>O%۬ѷHqk:$IgHRtHK{%m╭6fHA \r9 {3Z͋{Uxy-{-y6.i/ % 4"CCܞF|[Mzq޼BzH24Hn}JҠ#(P6r!UZo{za'X/J чK.KV}6oC!I!<3oc!I!i=s*gm$hLK6vJҠo/(6-OF/zȢh}>k " K{JVzЖC<{CҎ`IZO`h P6zOL"OL[k'1O2D<1xb$I'&OL2D<1xb$I'&OL2D<1xb$ }2v.+J6M=P#14|gym3]zL淞&kItItItItItItItItItItItItItItItItItItItItItu^?>P2IfQ ]Lj{hu>kحk-NJ]GO`h+,Z>t>8f I¬ab-p(t0nX  3N kCZ UkCC*j-phEz>5uo ^yCa-$(>P]֡8 ,k]yCC-6xwŨ g! ȅ O/_9Mצy^;%~^3w^ ^۴絸絛ieeUڝk Np^٨-E6hHqf~XZ_[f,"͕3/$1ͪ8jU@b*fC1^\3СAR16 t(PS@Ub:==*s c( ^x*;u(F`u(F}uhTEmu(PSE4U_ں}ֿ5^_{-C1m6PcEwUkY}VU_>^_{-C!!B* $U}m> @׆Q]׆fꬽꬥ6QdYUgMV5QudYUgMV5QudYUgMV5QudYUgMV5QudYUgMV5Qudՙ> v.K5H6M9>T}m>_5U5UVTTYSUEMU5UUTUYSUEMU5UUTUYSUEMU5UUTUYSUEMU5UUTUYSUEMU5UUTUYSOvQ_e}m]vQ_e}m]vQ_e}m]vQ_e}m]vQ_+9} *ւkںѸʵ`k*ׂU\ Vr-XZʵ`k*ׂU\ Vr-XZʵ`k*ׂUE{Vq#*Y[Ru( v_U}m!;֡T}m>ZmU}CC}+d(ڠ/vQ_Q_Y_}Wymhӽ0}Q_[l)ؿ(x㯹oWߌwpǍ?M)k?J[ܰVaCߵ$?p_m跍NikkϿ x)wWr=~huyȝz~witG7 Lew{MGذCaܰw{myaSO|WJUj]U;vRw᷵U_u=W]:{mv|jW-~|rZ?t)v|}W&?o76/;om:6yC;ouC:4lҏՏ~?aa^Oa7?|7CC]`Luu{SzT6ܿkƣ^_r^oƳrF1_?qstdcذC珿)77y]9w>a㯣6Y/ݿ1>GtK^]{='wy%~9<ܐuߟs尿sz=V( endstream endobj 3360 0 obj 41041 endobj 3443 0 obj [3361 0 R 3362 0 R 3363 0 R 3364 0 R 3365 0 R 3366 0 R 3367 0 R 3368 0 R 3369 0 R 3370 0 R 3371 0 R 3372 0 R 3373 0 R 3374 0 R 3375 0 R 3376 0 R 3377 0 R 3378 0 R 3379 0 R 3380 0 R 3381 0 R 3382 0 R 3383 0 R 3384 0 R 3385 0 R 3386 0 R 3387 0 R 3388 0 R 3389 0 R 3390 0 R 3391 0 R 3392 0 R 3393 0 R 3394 0 R 3395 0 R 3396 0 R 3397 0 R 3398 0 R 3399 0 R 3400 0 R 3401 0 R 3402 0 R 3403 0 R 3404 0 R 3405 0 R 3406 0 R 3407 0 R 3408 0 R 3409 0 R 3410 0 R 3411 0 R 3412 0 R 3413 0 R 3414 0 R 3415 0 R 3416 0 R 3417 0 R 3418 0 R 3419 0 R 3420 0 R 3421 0 R 3422 0 R 3423 0 R 3424 0 R 3425 0 R 3426 0 R 3427 0 R 3428 0 R 3429 0 R 3430 0 R 3431 0 R 3432 0 R 3433 0 R 3434 0 R 3435 0 R 3436 0 R 3437 0 R 3438 0 R 3439 0 R 3440 0 R 3441 0 R 3442 0 R] endobj 3444 0 obj << /Type /Page /Parent 1 0 R /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /Font 2 0 R /XObject 3 0 R >> /MediaBox [0 0 841.896 595.296] /Contents 3359 0 R /Annots 3443 0 R>> endobj 3445 0 obj <> endobj 3448 0 obj <> endobj 3450 0 obj <> endobj 3452 0 obj <> endobj 3454 0 obj <> endobj 3456 0 obj <> endobj 3458 0 obj <> endobj 3460 0 obj <> endobj 3462 0 obj <> endobj 3464 0 obj <> endobj 3466 0 obj <> endobj 3468 0 obj <> endobj 3470 0 obj <> endobj 3472 0 obj <> endobj 3474 0 obj <> endobj 3476 0 obj <> endobj 3478 0 obj <> endobj 3480 0 obj <> endobj 3482 0 obj <> endobj 3485 0 obj <> endobj 3487 0 obj <> endobj 3489 0 obj <> endobj 3491 0 obj <> endobj 3493 0 obj <> endobj 3495 0 obj <> endobj 3497 0 obj <> endobj 3499 0 obj <> endobj 3501 0 obj <> endobj 3503 0 obj <> endobj 3505 0 obj << /Length 3506 0 R /Filter /FlateDecode >> stream xA,=rxKif"#EJu9LJyJIʲo7Y Eu,:^~ "",XG??Ϳ!ˏ'[Es$]AV?I[Z~QTM?$V#趮oyO,#{F][\Jaï2[WgRַz7p=7h;~G/W;{|[nRci?|'mm aM%o[Ϋ ۂOvXZ{}X__Wu>MݷM݄n'g#Igw? jyKṫm9U_Cok7#ToǏ?wuol=n%[ Tm#!V)6r ޹akcYF%鶔׃6f"9P'-6YZ#[~ 6Y[[k~=z`軓[wvt_=BńR&@ҏp]qs;WJ]gܹsKomコ<<᎖G`lvOK7n7?`&~Sou-i]};\'0r'0-c_I`#\F60΅x#E=m{?k7d}͐eJO>@~2aDeuK﷉`m,'-7]ʌS -_S.~CKĖΖ k.~kjy>b.>aIM`aR]|2b&2|b-vN昇Of Of-qK> g˲mk,6nSoQ͜=wv}OWAB#v#p'4\g/ xy]l`w%/voxlH{\c6v|k6o GĚ1wv6go9-w]{]5o: #3-''#fotN'D!OfImY|td>"m3OZn-Ozfz2 >dR.>%k.>0b>>ah.>0K\ s,b<:䡈w<;@pazwǣӿ<s0<`Op=_qa[_~>9CptH\ׁC/<ЃClkRݘ}ؚz>}1G9ۙ#1vĜC.x;.h6 ͱl/~L5+Md =hyƶ\жw?@sU489ѣ m ;&]ZYppdf74a߆-5٢6PN? uJ9:ig~ k0휃vpAs yh#`;D>4W?z!Vc~kA}?@b3:{ ֟{"p;ݰj MV\>;4ֿFMslz4_vA3~m;qA/߹3]Ў;]_|9|矋-E=.`{[vNw> 5v¨eڍIknOzAFdT(ָ~BsP|, 7+s,{Aq~-r7uvsƭu7ET0 \n3m6~r\fG6(.jH]nMj7&uP16!r8* L֢9(Z¨X72'槍. ݲ,CaO!qQ`ڬE6qQ!](\, ևuPx!YKPh-ZB;3ʾ]-K_ZViwݴq wݭ\8+foz0%vj)ٟ?%;m\c~ `;bBomg=hmVih̸7L̴f~CǚTB8G/M3ՊKF-ZY!Moi=\P o;zu7~`(yhyZUe@johmIsf%<+m6ĻU:`EZ/=Nxx3&ay%tvL~q@۟R-@;~>#TӒ}0MxhۙUmHK0ah |l5y|`ۇ'|X7ǥ*ju;W2&<U%l6^͍+eImG쁍A Z^Fe;Zlg~)L_:ЌC53qA3qI-ރΐƮ8 -7XCHyk O|7t6R?$t6C!Jlc <ǺB\Vc=cܩr.۸3vn>Fpm9-~y@:|MԷv4,C;=Ќ{oJ0,esNXw_=Uw:rܥ~X?& )Or~혓Nxx3M1o_{3)ԲOݜsuҪGxJr۲k^nX?ꉚ|kWoի^۬`:b::dbߴU[r&_U˩Yj=pEkZsW~<;lY!'0_ɭKjnS\")sffE`+Epo~Eݍuv?=0r:o`8uᣯ:Zq|zkm6bƾ2kc=#35~*:8İE`;aՋڻ*lu}Ko-eI6]NyZ/V\F`lYI#0YM#0]"0؆]#00.l#wF1e>FS#ׅzmL57[u7[끵7#׬l }e cd a|cYϮUOuaenfجf7hҍ _NƩ_J],l :֍]yc #]`N[< Cy%a=1 6\ <#V4>w{glǎ&2tgK2Q ۾ղ>3ۂcr;Af:mfL=wKDS`Q`%j0;Z>%lE K> C0uPξ&#;02~9GflSZy{0\΍:gQY{KrL=۵>imfTrev<9 tPh-ڐ:(0q8(6s&P&¨C7[e ֆ꧶< HL:ǝzSRi?=ݙz{]:('0R6,>3tgԭ'Afs5zAwDZC =0*tЛkht~Pd0*ʶ;OׇP6}nBЛU+3|J\&ty[kdz<CL7y{y1^ն[&xDnw7vo~/﯏w7Ѓ/Oi="~>ޞn,ZRkctIJW,\f}#' ~q-UE k%U5,k\Tgψq =Ggy'mmΧ)5ymWLGԼ8*3U!$GtЃY]48cѝ)P!TAwfjM.z0\E‰;(0q9(h(PG݇Iu( Z%;(X߄9GⱵzβ0mWWݎX١Sb]`Sm^Ewf}$2`𶻡ykgŶ8 >EtPh&.z0[YG5EiBkcBQ衴. LE7o]>6+`Tzu{TsXL*Oz0=؞sL>*ߙz0c~To'sL2d> E'8( !K@Akrn9Or:%7 7`6qzZ_1sx_Ѓ)籠3F[hma:Δp%M3> qуN=/}.z0pkܕCoZ =CaTn,Ao2ȹ#f-6,ЛULm}3荼{ޓv"㗵Sۈ+7=vgrBrt,?im^3k}AoW3{j3荼{ޓ6J S5DLz0[=НY?C\_<`7zMf;ӟuQh-|-{a,Pe3E d:Awf+zo@9LgIɨ8(0!z(<zAaTC`}2GⱇfJ QҞ(OHAӹ~CoWy3荼{ޓ6ųzռpf{ΔWڀy2=`>`f{e2=`n;|z(0ax(V"<z-AaT,abCsf[e<]3`&!=spT`.ת0ZAh =AaTpf;x;ISI+zsb}z#o䭕~֓ ݙ[:|D??TX_D}rM'975M8T)po?{B3؃C27ݿe9 n54!;WX= vQ=VԔ Н'L=uɾTοsr~US_bzvP`%˙0;Z=>imBII=( Z% H^Gvfn׃9Gwf^O;a:ά/sg:FQqPhsiBsPd:͎5As[3PdneOQI<{gv{/=ΣCwfZsط[Ƹ-[2v7Z=K-9z#o|wk }^Ch} =4y7y{Fdoح f{άO}H.k7mJc@v33/wK~H 5yMȃ|{|l46uK]']tgfU+.3vz8aO祹Rt8LuԄ١ZrQ!pQ ,NFCyg =V74\fm:ׯEEWaΘ -AM9(U(U+aC'Lg0|Q̶Ğ9G0*jϒϞ9GoM󞴵MvFv=7зz Cᙠ_Z֚j;sI z0/TxyEϝ9P&(0kz(4S =BQAXck`shLLPP&.i9?bom_& 3rЛU[ݙQQg:荼{ݭ=CL7y{s5y}2ƚgI$v&Ֆca-OmT[fuvfZAǒ+0{3mۊ]%`E`6Lfylу;aEMrE#. L{HEB. b,. L֖^*KpЛU>=Wa3荼{ݭڐ3E&Ϝ7&yOXDMꬻ؀}[dx,kz=J܏[ PrV𞺬 Ib[Ί,<6T4["˹]G\`n8S>=Z+ =CaTy(XYB̫,ꤵ3R9n9LVdT`g1%8(0ZC8Fgވ95!]rf;yG1K=RjwS<\Ct: AR=hAPxOHJx^Фp6,: =;3Թ1tgDЃb{ܖ )2EB&xFBk)u(ـ):0LݙW&>Cf{̗qL9<@DrPh-ڭp=Q頇%4_|\5a:Af پ`nl&OªB9( & L̕9 =0̨h zow~7`ZQ6??uz#m/u8;]=8mTSM5ۺB;dI>FYfiWݗ7rx8UUx4뽾@hs`j|uI=j%ty'm^gi;N4qmy|wLe9rSQkn9w-]L=z~`V`|@<.Uu0۩ZZ8OCQal9?XBtHgN&G˜z0k{g'=ǎ=!=y]>|nv!a{ͮ=*o" Af> :[ixxzѷ^ɭlD֖߯8u6fy!ݙC$L7y{n<.y5wa1=Ϟ9GoM󞬵z,nz."\[v598=yUy^Cj_ }̚,=>G'L=C-gnlkY飪'0K@k\bט M{C_0tgz'}3k6Y3_^0НBz|6NZ3jYk\>y'LݙKG:oOZ_l\_oSw޶mgv+:_:WydT} t{դS=[ݙ020SNC~K0~CwfLH3=!g|Om'XK.\ DYq68>`qb 3slu3h93A}dCzХz祖8?Ovpagv"k3gUs3uz O'&ty'mmw-m[Ÿ{ TYkA(0{V=ٿɣF=N^htP{k`x0?=Z\dY0*tЛkZ=yc 3]2 CaT%z̧ldWr67n]yu͓g:荼;lg]Iu(<-Az#o ݪxe#:Fv LW\`CoM~?imKC퀎jYh z0|3 &фGmp 'uP[lb L (k9zTt*5!=H݅U:Q:~{2o] zʟifY_lL7y{5hmZy{.L\Bk{ v@}<3z|sF=ZS%uk}=kOݙujutН8W<`犇w?3] Cy([Q` tЛ/lm[5K1z={=b_gl'Y\s=O9ŷE,sPh-2ZA5RXpQ`ܿ0;Z _ =ŹI(8;2,kNr2`ԌJl~h zV*"28!_¬=s`ʩHEs;0P`Ph-x0*<, և.k<3 Aہ%y\yttНES#<` Ckz\N9G5=0C Bk=zf¨Ls,[,-v6t2WcX~cmtVA$vg\kО}؞B{ay0mÃM0r=m`{߬*:i?;03d\[0,? <MN80F.|pYl|P~va|_A.|ڞ]cW2*T^#ng ۾*WA\oa|ݛ{}.;gm`#yw 9Y`>r^y3ɽ]nÓۅ& #ro6ta+.c׃6hRͽ-ʷtf\>ȅQ{ixnn5gwgs\>Y{W.|p '}ȅu6wa+9.c\c=^Wʃ'\8Fޞ1s{U; \Piz^2f\>'e'ȅ갹hypal3ؤ c_0r=m+ž #1yTHchW}5&(r֜9.|pKgG٭;m{~p[qn/\' §o Go UF/+]-ޗn"a#ISWEuK:7ÏqeY*?N,gYǩtj*ljIyV Ap:Q\x}yQɁ }|Y;o0Wƨn9N|ʚ'mzq.6#mÃh}sq`MljJṭ#Ŝq8U ׃^:8+>Jǃ\O`mpٜ4+g}7\=3㛮ϭΧ<ׁo`88=x½ 6`+uc4:0چm|vf g|ؒ3ԇ58>yCbM4 ~҇o۵5upezg\>1<_ O_0+ƾ>LJ11 ׃^Nj_ +pal3}ƾ>LJqhjKaN; ~ys{V{8wPÇǵ^[!ׁW5q梧6r2]g ^k_n&c?OׅS:΅nJ: F.6Տ4isC_z{ԛU L6\GH's. ʅn̗0r6\>ؤ v JZzj[m;Lo˩>:-=n|k|8:v?WǤ ֗ŰuZ+sׂҽQ?zCaG<ig_~Kz~ʚ@)틿_.f!oU3~+}mU\1*8azhcK&RG|0=tgYby;j1^wߙژ%G[kNkw"&{f jKsQCy9PQYہZK -Y0z կFsܘΌsxEwf凜>3\λL:. mw=K>.j{hmTˆC=jGE%LlAoƾYfǤ3Yb{C3;s9'Ph-XYvTpf{x}E9C DxE>>OytO$Xi>|bJ+''''''''''''''syzΗ!s9`˜az>>E=Koc?WxCn[QO tx@=] nn!nn!nn!nn!nn!nn!nY0Yn2!KrP_ݺ)0=~Q`k=~ZsPך"s>j[ sEs KPhmD[n,|(lqd6XXXXXXX  xTX,PdX0Z P*, TX,Pc }%0C/[f\ڮ x3X6ƻV,pBsQ`*BkqApAaT CͷȤjbs+ȕ_"Whw5U12\jcA+ȕi$re2\FL"W+ȕi$ree\U}߈TYJV zuz1c?bQu^G?uGq^'du2:zLR(:JR(:JR(:JRìO i2f.jB` .jklPi$GW+ѕJrt9]i$GW+ѕJrt9a`хDKyEEKhhT-FK%RiT-FK%Rh-FK!Rh-FK!Rh-FK!Rhd'4GEsQ3ZO' Fh&qPh-#rP^#Ԏ Z%4rYfo_Bm6#mq_hV`Geh&"6CO47;X#Ap8(XaEKRhˡCkeF/2Vt18-~˭y/]DJK PVHcW\غlJ/iiuj~_ݱ4R'zC /.+Ⱥt^he.?QG祏VfО;Zm΋@k_ݖ&&``i>[lˆ掠௘S*,_mՇFW7nD6pvM޹ hD{9fK+h65HJyABRWs^ u<YX:tdaӑ# OG?)e#H),)OEJaH)~"R CJӐRXRrR0+0H|ۄʭW <@6Nsb Vwzx Z;TfƜ^)ϛ0=sxJ!.Soe2vxL]&.Soe2v9r4 9tkbkP1i[z(6 _vѻm-mԭ9%x(6}&V @Z;8eƂLbA Xi,$d 2JcX4(JcX4(JcX4(Jc>`!`a9evEaCm,0!|ZZ+m =l Xm CCm{V0F.!K^䫵;hRF.%KiRF.%KhF.!KhF.!KhF.!Khbև_ɠ5[ٯs,w~EG#Vw:x Z;mbN#:B#:zDN^'I$u:zDN^'aև-CzM=`9z"9z9z"9z9z"9z9z"9z9z"9z9z"9z9z"9z9z7'LA?G-+ej"W4Z&-DDe"2hH4ZF-#DHe$2hI4ZF-#DH%HstkCJOuPtxACP<xAxAz ڐQAKP"\WҶ6EhC}܏4+2`4dh~~>im~؏52犃c8?ꎙF2Zo,L$L$L$L$L$L$L$LdF2f"D6l$h&LdF2f"D60>~C۞#| *U|Ƕ2}Vw⥛-:f f`km"W&{H9 < ^)(['` ܸ5pqӥup]x^szfnzV&ŕ(i]/v5"tݚvݭ&lw4zC~{vi7ywlx ]^-m-mlwKhcF"LD;v}1L De Qt70nxt7XL2pn`Iw& \t7pn`Iw& \t7pn`Iwr2Kw. Lt70nKw. Lt70nKw. L3dIw& \t7pn`Iw& \t7pn`)n#j"%D^mc$L|70n仁wª^Mj"W)HD &Rx5ª^Mj"W)HDy;,P=/r۳2{ zl҅}?魙0s%@)Jn[Ib%>3\jY;^KN }2W:Fy|zh%n'8\5t;B#lлDDQDI4y< DE.Y}璳[ฮ%Yl"{N;JM 9_nUXx_ο Y/r)lxKƥQ#_Pr>N*DɀgR1KԸ=IC~GqJ'ƻ}B *]xEUҢ q~]V[IUV[IUV[IUV[IU@R.ЪtT *] UJHU@R.ЪtT *@oX PʟX_&]YلJ+0*j`%`€BkY=XX~+@jV$ZWi DP_5 0*}#% +7F`e`0=O|[RJSY^{<:'HB 4RLTg*8S! -THeB 3RвLTe*(S!5 -THEB 2RrLzB[=_`bJ춯X ._>S /_ryi\QOG Z/V})K5_ )iŗL dZ%r/V{ɤK^2)iL dZ%2/Vya7aձ;r?B0_ |!w/a;A+T2Pd2jZ;+jKPhg dR&M/^3,dR&Ӣ7ԼɴM&o2-xILdR&b7ԺɴM&n2-tILdR&"7Ըɴ =B<Q5P0&̘jbĆɤIeO2ziѓLjdZ$'<ɤIN2viLjdZ$J':'ؐPb_VK`@3UKVdK:jA9]h.$G хBrt9]h.$G хWO j@kTNWrbFKR'ӊ<ɴO&x2ƓI1LkdR'J<ɴO&ex2“ILkdR' <ɴDstLOu{Pt ZOX9%V oX)J9B9u&6vT+6&Z}:;<#ϴʀL$L'37;1 q6C ?Er|?G h&BeZ(E,ʤbQ2WiLeZ(ZE*ʤRQ2SiLeZ(E(>WPgO~}-5Js]06 gv*~ؚz;I]2ň~@|h+CkO*\3[|l#'\iذM5\ ի81[G0=1;mu}tg^>ڪ>3ymMEm=ڊ>qGfGmZ>jGVRQk &ވe̴^第 R^hcn\tg^w|tgn4>3}FZC᣶6+vT\ZĆf[ekoZݙĤ|bF'6Ol$Xi>|bJ+'VO$Xi>|bJ9ļzΗ!s9`˜a>>E=T菞.O^W+G{ ֨[[[[[[[ tx@=] .PO tx@=>`fIeB6u]}&L_Z_1+~9r \qv&w!`yE,XZ?θF Ƃ@bA Xh,$,4,$,4,$,4,$,4,$,4,$,4,$,40[XXXl+jc6,#zŜQC`}. L\EsPh-9(9(Jbz_N2=~`k=ƼIϸTȵD|B[aFDFDFDFŏ\[ak+~ \[#VXڊ"VȵGȵ?rmE.f}U^o0v{G3#B:x Z?mfμV|3az(7:[V :zLN^'du2:zLN^'a֗ i2f.jN C3\ԬlwdZY=zh-G[s-}~0*,G?u"+w stT$Z+~BIDLe&2hI4Zf-FK%RiT-FK%RiT-FK%RiT-FKf}Js;h}.jvF\<qPTz:3= sDjkІ\Ԏ Zȥ4rYfo_Jm6#mq_iV`Geh&6CO47;X#Ap8(Xژz6FyN=;gg.ژaQ?ٺ }Q?ޣiBNA_Twl]zz6ToeToR, QۡZi|B9RWWFjM+(B߶6 B߶6 gnɿ:m iۯcnN_,m/g~6TY~= CMY=zf)zf)ꙥͯg6V,m~=zfi뙥3K_,mYzfic3KgFocw uOC=J)ۯSoN:m}jic_Ϳ:m_~6봱ۯ~=L~ ͯ&>iꟓPSs2*jN,Cnn ۯa0=Ot}Դ|b}E>2N'6Ol4H>|b#J+'VO4XI>|b%J+'VO4`ַۯ~ LvnʪP#Wv5X𞟹:+<]x)0[n%nn%nn%nn%.PO tx@=] .PO t:-P_kۮbe_Ck`k<4:)_O抇@'~ WĂ奷_F Ƃ@bA Xh,$,4,$,4,$,4,$,4,$,4,$,4,$,40[X`_b^io֛1Ƃ6υ-fy(0:ioK '-zPv?X_ۯe) Zb#W,/\Xk!kk!kk!kk#W,,rGXXŏ\ba+?r"W,~䊅EX \&_~=aǿ:vu,ױ|똉ɯ:_ƝyX|3az(7:^'ub!^'Sdu2:xLN&^'Sdu2:2lH ޯdvuKP^3:f?G0=rthmCrtc9z~3cs{( ⇱f_#/v5vOJ"ZKoDLe&2hI4Zf-FK%RiT-FK%RiT-FK%RiT-FKf}Js~=>%}NCӱۯcE&)oQۯۯ_OlC(lMJ#_OZ6B+~=&DԿ:*~Կzb} B/N/"e"R./r", t/_|yߗy`[4^r/"ߋHa^DE0/2Ƌ /Ĥj;) }YBL}*(:Y_iַsV`Czb}j+ԬW(L?ZPC+S)^B/n}aZ5;PC15;KP`2>X`c }e}oL34Oѭ+t^З<:'nUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnUnZ_` }`,0>0ڭv&G3 }!Ly*S*eaF=Qe Ue Qe Ue Qe Ue Qe Ue Qe Ue Qe Ue Qe Ue Qe Ue Qe Ue Qe UeR[B{mbCj`i CE` }hml(`D?$ ]BJFH`CC{>': c*U6i, :G:G!:G:G!:G:G!:Du9&sLT瘈1Qc":Du9&sLTȬou0Bs lܩ!D5h&9LTs0Qa"D5h&9LTs0Qa"D5hRSjB+I}SSSSSSSSSSSSSSSSO┨8}*N4 88%88%88%88%88%88%88%88%88%88j}TDTDTDTDTDR)Q+TqZU.֨#88%88%88%88%88%88%88%88%88%88j}TDTDTDTDTDTDTDTDTDTDR Q+TqZU6i, 88%88%88%88!88!88!88!88!88!88f}RX`8%88!88!88!88!88!88!88!88!88!88!88!8*N*N^ת$3AD'T'D'T'D'T'D'T'D'T'D'T'D'T'D'T'D'T'D'TGℨKℨKℨS8!8y*N^eNQ U Q U Q U Q U Q U Q U Q U Q U Q U Q UQ룪8!88!88!88!88!88!88!88!88!88!88!88!88!88!88!8*N*N^תDђKℨKℨKℨKℨKℨKℨKℨKℨKℨKQUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUUPUU|J'D'PkUqX,Q U Q U Q U Q U Q U Q U Q U Q U Q U Q UQ룪8!88!8*ɫ~}UT'D'T'D'T'D'W7┨┪┨┪┨┪┨┪┨tù6'q2'ӯqb8'q2u7N&sdnLÍiq2'Swd27N487N&rdzoLDoLDoLDoLDoLTpב~ۯ_~}m:ۯcwu4_8~ _o뭻z3_op6z#_o:~ב~ב~ב~ב~ב~ﹷ6&:!2䞨K#> b[6肿SMleVح`@' ܸB o8x^. we+0nsf  C`lY!0UO a51ݹi`]eOl҇w6;Zo?D; хx;FM`l 0bvP c6`5ؤkspf޹Ŭ\xȅwblÅ 6f . }sЅap9cc^S$$|pPӑ# OG,<YX:tdӑRX6RrRT'"<? )e!IH),)OAJaBdq2{6a3{lb>sqh. zx Z?TfƜ^)ϛ0=sxJ!.Soe2vxL]&.Soe2v9r4 9t Ew_w0=|vLZcgց/;E]}Զ抋6r9N,C3XՊq)4d 2ĂLcA& XI,P @I,P @I,P @I,P ) ˙-|. jc6(Hժ|XZ+m =l XV}m CCm{VM4F.!K^;hRF.%KiRF.%KhF.!KhF.!KhF.!Khb'f+c+EYݾ6fGIu:^'}Ɲz!^Guz!^Gu:xDN"^'QI$u:xDN"^'Qì/d,n]zg%]I6L4GO$GO4GO$GO4GO$GO4GO$GO4GO$GO4GO$GO4GO$GO4GOf`};(XrHe|E_}RdFDe2hhL$Z&-FHe2hi$ZF-#FHe2hidiwwE(Z$j=]=U.bvP`Y #5=QAKP"\WҶvжiV`Geh&m&ҷf?f?}ЌZ4ˋ6? ևsA1vP)Ld#Ldj7 h&I&i&I&i&I&i&I&Ld#F3d"D6l4H&Ld#F3d"Dmtаrm6~MQ2bOCE|)6<Ιns +evAF͠2(Nq˥k(^#pV;Mpl{I}q!~N7_pL0v>OyrxAʓKv9A',ɫLjk^YʓW?+Ky<9'?Ɂ<9)O,Oyr`)O~ʓKyrSXʓRj}msZQh}.jZh}.j>E+Ftj>}1݀O)݀ Zdtj{(0݀Q LBgot Ik=,LzCdT<,L,CDs`}C{d, `2l<|?B<:'r?S~&Le3gTb?S~&zL3gTR?S~&:Le&ˋXs\gX`@9/h}.j}r@N,X_! RfkQpL$*3gDTDTDTDTDTDTDT̬,7ц\W Mj(&nM64 (2@n@Mkq L,C)K+Қ_*f#JJJJJJJJJJJJJJJJJJJJ2 L 5 3X64̎ ̎X1vf@hπBD~gG_oIk=Ƽ÷J iKrwEJJJJJJJJJJJJJJJJJJJ &!9U&Psy"WrU^*SaN*******************R&6ԯ:r*@-Ez ȩ]h.$G хBrt9]h.$G хBrt91vODNkz@NW4Z9R99R99R99R99R99R99R99R99R99R99Dstrh}.jvF\< t .1&_ 49ML ib9M@nb j#v/*'nH/CsQgr@NT_( pm"WA g `kr$wqjq#ڸ5Ҹ=oZ58hk/uN YY<)_n;h?n?R5~6SzR;.=o=_ǥ'-=~' +q-;С$׫AEwTTt~Kp/ߴU I`?ۃ~○]-]ܸ.ҖpC%fuSO>ú!AKR=K k+S2|O3u7Qc;wjln~OnT,DKm( =vIEKֶq;X!b,FO76T)y{)r"$oMls9^&FOɛr"1Zh6EK#ˉh4J.'l @F`?$-CؐXBOIGs>,$㞲5zIˌ,FdzQѢm5GhM|FTs\OlHd_l}YqmzIR%y_+eVzI^WKPh,֧ТmxLyVVvKE??~ڸk7џXXџXXџXXџXhO4' D?hO4' Y_yYUIoڭo;>=ZBŷq{N;w [ÝNpk5t w;wt=p{N;wt=p#뫒ag/)Xfj v{BsDQUhbZ#GZ%Ѭm]+ =%7pb -z8 ?q,mm\q F< p<,xYgς             d} Y1/Ph> &gA!uIyY#TOEh-VMe*&2+;FThE gyikZ~[uށ''ׂ''ׂ''ׂ'עOuɵ}rNuktrC\렓kZ\':Z>A'YD_r[0Gbu=%}~mmuvqnvu]g"bߴC:]g8:8:8:8:d}U|&/B7%(45;&op"м/;E;enk}uW>Zf|baw`ݾ.b NKqO2گt8-OKt8-OK48- OK48- OK48- OK$3ѳ Z>'֧в杮ZBNWOEh[ )4Jʒw2<-y羡Wg%`$ޏe>qe ^e>URZhA _{[=HHok~,@O1D <CO1D M1?UCe"IRK c>C>c>C>c>C>a>A>a>A>a>A>a>A>a>A>a>A>a>)YDˎZU\'5&&;NƘaWqE[MS8* Rɠd8n&ˎIϼ3?;N,05555555555555555555EsU\48tfdfdfdfdfdfdfdfqR)hehӟʸ5ȸ?q;Nh 2n 3n 2n 3n 2n 3n 2n 3n 2n 3n 2n 3n 2n 3n 2n 3n 2n 3n 2n 3n06uLqdW^ť!{;N]Odqn;;:]g]g]g]g]g]g]g]g]g]g]g]g]g]g]g]g]g]g]g]U\vn;thfWq:th;|>zGw;|>zGw}_=d/zW8ONO} OeӲipZv<-;;;;;;;;;;;;;;d};]XthU\8^qRE^ťކIz)FFfWqņ :Nj4\;\~7exxBUdV\vLz"~W)jz\~WFjX+:NjX<+#?q2z"x"۟D?*.Kgz";x";z";x";z";x";z";x"z"x"z"x"z"x"z"x"z"x"z"x"z"d}sU83R#*wu ~{B-uLKDWqOw p*.p JGWqFӫqRUD]v ⊶\;sٲsWkjj:w|h/W|eǰ./븚GްDOɽ?ˏf $ޔW\嫤@/cm|^1[*)StzScwxN˟%Z$O=4<ܙ -nn+28bב3Zf%h,y\7m c{y ؏oKɀJ&:^:xmFnjy{9f֧;__SXD/ɻ>y$zJigIJ $rM֧D/ɰh,Тm^=%Gլ/ѢmÆIy6Զrn%/'~ZD7~IBKܭ/j1Ch۫8T)َX}%zIG/`$;M$zJ&[Ddj-ѢڎtILZFr?`Yv+b -H^U"< G+x^Sp}!aH_n,*BY~oe`{D,̈́POmvߎ`H KFNF/Ip5zISFdr5ZMF%w_eVӮb Er[W'9=%ɱ% F/Ip,5zIgl<^$Z$ϡѢmr!LZF(9\-KKhh -ݾ@OCWJB/{TFHdQ(Z$)h[,^e*Sh懤%Ӯv2B $OzJ-eVZ-2BeVγЧ-t:HA$-$Z'2B%Zf& } Y/B*+BdZ-BLeVl>-GHeYh̖ Ѣm>/wק5I5[d $~%-0Ct"u5zJЂ$%IobFd5ZMF%ZPeVݚ\7,M҂ +I ~5zJ_F ~wL҂obg_x#p#7ucaj]dCII{'H|XB/ɰF*Rd+BsDV/ SSuaj@S@4Th Žaj@Sw`4aj@$-R2B -@aj[lɀJ01Sc L hf%:BMaDR)Lh))"Iaj@yDKhK!0 L U S'T~YۈJ0u"յ"L);DSY-^UԀm)L h! SZflqZY_u߮߮a71BS@4V)DSWO|:Hh[Ccl-ТmD=tv AX.-֯                            ---/--------------------mzWS3&>ܾ 4a {н]_н]jн]ѽ]@tow8toW/; Un&*4m Aȸ@ȸ|{ȸ~8d\&d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1d\!d\1|[!d\1d\!|{:d\1doRȸBȸbȸӾbȸBȸbȸBȸbȸBȸbȸBȸbȸBȸbȸBȸbȸBȸbȸBȸbȸBȸbȸBȸbȈG u{@XBZCޡ 4ok SZ$Ӌamk(2B5dh2nh MXNhRhVKPhi-WhZ1FZ!F;gu _!_=o_7 |@a o7 |@a o7 |@a o7 |@a o7 |@a o7 |@a o7 |o@a ߤ@A 0oJ5  |@A 0o7  |@A 0o7  |@ n۷*F_)[BspROw3!FA B !w_/} 8xy\ȡwЁըKOhjo~$zIVhSv{9\c:N,W$=RKq_hgFc;F]nFG:Ah+Sr)K/WN~D/0w*HAErFeH4k4ϊk4[B I8N?{kτeN O/WVNmG} p.h}SO%Nv=h%Kqg ͒Q⯇m5T)y|\_ċ#"& 3C$nו-_oPjM>ᗼ;YhC.> Q-:|H{SF%gni;%Z$?\OYKeKWt tcYKc%+cŝO;57_ W_>dLd5|Ɏb>e"Ld6L 9IU|e:V9Iur:mm Ucf>eT _0 _mHas~lΪp9jUN.pjm% FWe|.kז>e5/ٸ9%]lCUؤe-HUYsT־!]dj] /R/$ ߛl=lpm'HIm1e^uG)_ALV§ASfH×ll>e]%% 'HȦ: WsjX: 9*,jmm2zc]xݮ'6SMj3E×l4ti]3TU6:gAu^:G&5\mmdWޱ$/Y5|uH—ltf&%\u.kAu\ r}!} u,G4u9H;d;Z}m0&?ApT0GjQ-9eGUe5ye G ਖ2ZrTjQ-8e G ਖ2ZrTj"{ މmH8ېp]&!LlC™g:&8WY䨖2ZpT@jQ-9eGƶLV,̻LJ™̑34 WY䨊MF*k!rTe I@}!U= ] gjQ-8e G 8lρHHw%w~/:Llr) Y g# gޥڤ3SmRÙg>'QUX!G:GQ{6& 0|7ƲN}I غڤ܃Cw@3[#B?oߊXJ|+z{m=%VJ|_/O0_ԷZ1'XcW٥ .:o#.c+6J|bUv[ח2&3ې{)!K6$#^ FWcSFXDEvIY\j+f%>Vp6̻܍n"+nXVg dߪJ?԰X[mHVpѹ kPeڗ6q\ 6nAfv5Ȯ~WWP%|ɆIXJ|{%PgU# ?s$K~^b4|@ocfb:uK>&5|F񱄯85('%>VpyKf%>Vpj.QmRO2؟oq*}|_V{8UW>D$q[f8u{6[ bßMVOũ*.'{aV’i8UR䛻`F/7rFcFdh6-#m5Zf%]jXBye>oazJw}%(| &K2W^Kb-*NEt2BBeVb -%W)y \&*| &#K2yVzIKPh,֧Тmx*LeVVv7/&,)WEueVݦ@/m^N^OJW]-%ZͫLeʖh ؇C<{?ه6]F#RռVzIm7_dmK)y & =%oe$zIG/]UjW)w+)BdMZM-#.5ZfحB%4,!v6䏷6$zJ6>^o D=%zILD/`h̞D,hIJ>Khh -ݾd<ϳ $w8=yVzI[KPh,֧Тmx*lё#oȝ)vg,&ow*bv{D,͈I]ܳ{9(1 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =rϐ3 =r*E I^j렭9=K4H\Qh,vТmY+ tY] -R6frϐKѾPLҐĴLb/"deĖ C)/;y s]$Z/>B̳r'* ZCր85$k ZCIdYkHedYkHdYkHdYkHdYkHdYkHd-Z_^#DYnY^{S2g"b@6c@wS:1Jǿ*_+5OQ:۪)*)DXM$IiD̔-Dlt(mՔζVtUS:[Uy%JH޻#DKw\)JX½JN@$Q:-2BDlt(mՔζ6M$ȃ MdHɬ(43KPh$JX_Ї(ba ),;Q:eeoe ;X ·mk!fZ$ˬ(h[i$ԕ@yyVL+ɡO[th",I4$uV$Z$KТm>/2+7QV/JX|MZVYoZ$,{|ЇrDOrqo>φ$3km&~b -D _,>eq'¿la#¿- M($"IeV_f%;ϊ&'C DhHH-!C8DN]eb$¿x5^M\GD6`D=>C9W9¸7\ g`}៵6Mϳ1"%D}ǀb>dw5eV_¿X|SO%N6zr'D;Th'gB}`@4Q |;*yO-2BD n\7|6ȸ80.wC-̖ DEVD9f MD[>Rhd/"Y/ -#T/Zf^XBThzɠ=hi>Ag'WR֌i:;cR_o_F77A nPotzݰF77A nPotzݰF77A nPotzݰF77A nPotzݰF77A nPotzݰF77A nPotzݰF77A nPotzݰF77Anrl0Az 7_o0Az 7_o0Az 7_o0Azu;M7_o0Az 7_o0A:͒Ѿ0A: cAz 7_o0joXxz ޠ5&C koPv ް57AA koPx ް57AA koPx ް57AWpHRz"ߌd&O9'XDTޘ Q7dBuԭ}-z/jѻRލ[nԢwݸEF-z7nѻQލ[nԢw]EJ-zWnѻRޕ[ԢwݸEF-z7nѻQލ[nԢwݸEF-zWnѻRޕ[Ԣw+]EJ-zWnѻRޕ[Ԣw+]EJ-zWnѻRޕ[ԢwݸEF-z7nѻQލ[nԢw+]EJ-z7nѻQލ[nԢwݸEJ-zWnѻRܕ[Ԣw|[Ԣw+CݸEF-z7nѻQލ[nԢw]EJ-zWnѻRޕ[Ԣw+]EJ-zWnы6a~]9N>[X %|j d%\W%̓PJ—l0ؼ4\esc5\* 9,bU|dtE|dyv&p+^vD>[Տ.?_Ql_>^{a?OP^m}9kg~3I^ '*^GQ5Y?K3Y2^OU2zz4Gȓ<+<9&HV3ۻ>Eҏ#=}Lx>_omq;''kqO8໶QdOGw2?͒cYuN"SO}$Y}=%BmMRh]qV~1Gn8S[q[Ŀ1˷<:ܛ$z5oWKPhz3?KPhzp4GNLIzТ-= h!z2+<*Z~5hz3VdMfEZ$yT=*ƀGUƝGv,|v8BS7'C}'є_gE@ɔѢm)dOPhіʾSDWq }/ywq%R' Mi쓵Д:` )]Hx\D`b E[z\2B eVqA0 -dD1CIZDj}-1z\ph/0dL-ܻ۾{w}}`pt͸;]r/' Mשmp .wK;U.tᗼ;Y>雛럒..H*rO:f#@R%Eu`)MErݶr"yCXei/2+yOe awK{D/[QvMPjK}fNFd>W$ZgDSeVj*ˆyñBgm}#x5SRW7,j6B}Nwv%HG/[Ddj$ZݦYV2SZf%[D%$ϐۦɃk&2tV紮_ֱC[l;:tu`ֱC[l;:tu`ֱC[l;:tu`ֱC[l;:tu`ֱC[l;:tu`ֱC[l;:tu`ֱC[l;:tu`ֱCnr*߼|MД:BSNcVY:gu؟ա?a_Т-崖SO7ZRz1MoBNCG?:tѱCG?:tѱCG?:tѱ#[_ZOWNkKGEz1:bt؋ѡc/F^z1:bt؋ѡc/F/\z1 4eOU3bto1Ћѿc|zl"f(*)D;3MTǁ1D3-DhKL@12+DX3e>o(%(4KPh:&Ds L@$3-12BD 3-413h&*4Rh:&DL,AEb}A"fŇ1 b0D̔vĮK2hdVfK$,)7_dm CɬOhIZDSz`4 @>)~D$-R 2B n\7>z%D1CI8ZDSXOw~ӇTߡ Ӂ_Ƥ.ÁȧW /)ĨMa>( h  mHRТ-~-#D_@ˬPb 9KPh 1&L,A)XBSv5~-hK_@Q2+XBCKЁLR)ĘhLFH)̊BS6I }(+ƀ¸SWViJw{hW%%j}'[='gMM''kzOfe~ݡH*4$š/):V ~M[$Z%! hі/eV(+v溡% n{PXOMw3IjCMwהh!1gԇnpǀnpql}{"OU31 䏽P@>cRo 탩yzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz+$%:,+}sEEحBe( !OY){BӃPl.z?#$ΊDd ZDէ-Rv0K( -W֊BLu}YQb; v<0|aa;ZazÇ; v<0|aaÇ; v<0|aaÇ; v<0|GÇ; v<0|aaÇ; v<0|aaÇ; v<0|aa‡; o0iA;ڇ{yaGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|aGÇ v4|daGÇ YM&=hÎ v4xaG v4xaG v4xaG v4xaG v4xaG v p/v2I4uh p/TsEE2e-@^ej /2+5纡%4Ig}9] Z!:(8ZBd>m+PYe#WU4}>T'Rϧڷ+ˇ5ʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂʂ 6XԽcS W;$zwlޡvǦwlޡ{Ǧwlޡ{Ǧwlޡ{Ǧwlޡ{Ǧwlޡ{Ǧl}-9"D9Mn' ʹCVX*#L,h%Z M7 }Ah m>{}_C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:C>:wC>:xG^MѡG^-tѡG^z}tѡG^z}tѡG^z}tѡG^z}tѡG^z}tWK޵:nЉx-,BRO{Nt/ұH"t/ұH"t/ұH"t/ұH9(I+ڏ6E:C1/ҡHn2h<>L}3E_d`E_d`E_d`E_d`E_d`E_d`E_d`E_d`E_d`E_d`E_d`E_d`E_d`E_d`E_dš[4B4B4zﳅ>&zΊDIR-AEȠm *- -13_~1zMI 7 /f`;/f`b/f`b/f`b/f`b/f`ba룇نEƃF'DԝZ;DIRIzV}=+PzVw8([_놖g}ҙhhf2B=ʍ XB$=+*=xVT,!ȑp`"NIl@WtـL;2mGL:]_poC: ױF/bNhj~ڭ3I^zILU)iz;wc^F/#~;~%~i`#z?h֖i4=g<+Ǩ]G%Xp*lU[>:Gܗn nV)%ywN~D/0w*3OErFeH4бVZyVܲF%TɰoGϞh;&3aod>S${l+'ұG} p.j}SO%Nvp8wmc4>WNj,Y9\>|I*<oD乲O lFOBO- Y[>ӸR%yz5-7m*h%gXD%TI+*X}&pn1qFⷭ[e!=",BĿ1oyokXj%FЃnMo "y I.UQX.*I[,ĕ)~ſtb4X&5Ft֐=(w%m:%Q @ GQ QX."S&}6ZcQۦq(~m\oo㷪=^g2'$I}0J'R/gMo* ZQB/r^$ncM&/x,mI*6Ð%yʙ-3[dXe̖hLD̖h|fKJ>$Z,2{p/C˒w.*Q>F\ىw uM~" s dbA;:˘OE~Vc?>=wE’i? $o/5r^xFO~NhH&TE۴5ZF(9y-KKȒ^!ې^\)8ԭJP286so=Ma΅4Z~gJ|z9m)SǗjcV$zI:^eH[fJshL5-ڦtJNFˬ$gVZBK6t*)S^jK2yzI^YQ)yX-AEXBZF2Y)+[Oi~H={-AW7_Dm%m %N}L[*SY-A})(K2t J !{51h6-#Yv+b -HkdNJvfG`֧K~*ShŸh-XN#X S|{_{Po`qPo`qPo`qPo`qPo`qPo`qPo`qPo`qPo`qPo`qPo`qPo`qPo`qPo`qPo`qn^qRbOʻ -,{B: oBIb 2Qjw8 2[|wj->55t;ѦAyKlJ 1votÝ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵ.s2Ǵr2G+&,2̑.s2̑.s2̑.s2̑.s2̑.s2J|h&,܈ܶFTIfbjLym)L@ym)",Kh[):'i_Ё r |2ȁ o'd5ddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAddHAd1cHAdW~'kOAAd!d@Ad!d@Ad!d@Ad!d@Ad!d@Ah}Hi XDrl$f20 0 0 0 0 0 0 0r6R8[ -(МTUh& +z 1 +n,殖/ᮎ?ɫ$*‰(j83H V)taE8QQ',V,X::VeEYA|VQ1 'dfN6$mH8S*KVnE[sD Wm4 MrMeN4l$ȣI8QV3ېp%dT`U`bڗR,s {f0۟%\KW=< $_u~GXdĀYKp`E4 Ăt*KLXYI)OAlXs8ĈMd'VuNlQg{'fߕ~PIQ|;1pc& tE8QOLY5ۯh euωJ_:VĘEqf՞7 I\x9m٤/mRÉ*NGp"&篆l 5\u,XUMu*6&m4IoALg 'o6V3xr I8Q3ېpoi\u.kAu\ fw摜x$!}E{jHn=P3 }Ks>_}nNuBSgos}n{Sssܜz\>79>7׽ͩ}^%ϋ zS"0CIܜz\>7Y{O;%l׵"ٻnuH4u079>7׽ͩ}nNuss}n{׵"g/}^$׻MSm<9yM1KPh>X|}^VYw}^ViJO2+zK){O''j{0}>Th]-Aw=%SPyj$Z%}nNuss}n{Wh@W$oWņ>]Ӌd`Ӯ)K-}g&)K7dbC $3=c*֧"2m&2BZfؐBSGBSG }fTUo{ٛ~^S| ˗д?vh p' MA?vh  h&vh$!E[ZFhY!!v(6t Vȃ"0CIM;3C@p-h=S)kE)kE)kE<8FhIZ%!evhZ,%ha&)NUh '#OfED;c@CYea܉v(+[4%/a܁v(*So* ߉ރm %50Th p%H4h )(DTFUhmvh!ZfhlqZY_ f&޲&֧+E3[[>pM@%Z$"ѢmZF-Ri0 -I=˴?@1!^aYQh"I&"YOEb -#TVBˬ qi>Iq"$Ø& ta2}Mʀ9(rP A2 e`ʀ9(rP A2 e`ʀ9(rP A2 e`ʀ9(rP A2 e`ʀ9(rP A2 e`ʀ9(rP A2 e`ʀ9(rP A2 e`ʀ9(rP A2 e`ʀ9(rP A2 e`ʀ|:e` rP A00e@9(sP A20e@9(sP A20e@9(sPj./%h 'vМP%3, YP͙$P-hѶ4f F6i_ۀAVǀ w޳?ϗPxy\~OcO0nY_G{bˏ?S֏= ֩/cOht)kv=;6|ɮUx|W~ x<[Eg[ p+{DW2G56r-1MVY Pu3/2{C%mD{`Yç솿W×=^.i^ _q0)DZ*UvE粎4\تp>"Mp*q~?LtN6i`g%jF*-ճqp;Yٹg|7Õm] ?s ;i~}d_Վ.GhW$ &klw%|ʶI7MP _.p CdϹMoݟsJ[Ϲ=fP*=7t7tuxCᆮ ]7tn:uxCᆮ ]7tn:uxCᆮ ]7tn:uxCᆮ ]7tn:uxCᆮ ]7tn:uxCᆮ ]7tn:uxCᆮ ]7tn:uxCᆮ ]7tn:uxCᆮ ]7tn:u-덿o:7醮 ]w$o:upC ]7to:upC ]7to:upCHlpW|MoKPh5U ޯ/;L2/;L2/;L2/;L:{"b}5E\ez;f;@@?C+N @8qıC   @8pñC?~8pñCǎ ?}8pñׇCN>|8pñLJC >{8pñCk=z8pñCKǎ =|ΕA:߁M&Bd[mZQ%VC+!2+@S Y2u;8 .xI5]!K!L0}`ak뫝vZ,` 3ʭC3^(-I;84Bq7 C(&;84@qıC'O;84>q{ıCǞ'-O;84D#%>HON4RʘIsM4R N4Ry@#Ky@#KY@#K9ND#ۚ>D#4D#4D#4 -AH3I&bBI2!&bf2+ MdZ$F*6F*6F*,;Heee7$)NuqF(rB:9WZ$F*viF*k%z@#Ɲh' ܇އ}S/u$Ƞ:+-D#HÈc@4R0D#,5HU2x5@#mMT|0ʓJ24,hb 24_dmwі0CIM#M$h D=$HѦDA Om&m-#D4RhKN4Rm}evنeN}Hvj_ MmMj'6іƽPm/"YjO*Sʌ4)hK^ILіH.2-Wmǫ=hӟh _h aZ t#c̘{a*} 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RȁT*r 9HE"RM"Pd@*r9@E"PT@*r9@E"PT@*r9@E"*1#FؐD34ȠdbY6ZU&F*C^R%Z$SFoaaD}>U6[db@ wLjUUXV;U h4Th5vTwJV@S*Y-T%+E[2BT%+eVJV@%[ZL,Ag5OK- K2Wg6RGETQhѶTRhRcFeVJ]Khh ^ݾ@eoaVV^Z!^aGM"TiZDd>mާ2BeUh+ ;M;-mdC$efWh6Ye MݎJ$*;u""Y޷~~ѹ"ѫݾ .h6!nYQhD&BShr *XBThVZ,B̳rV;U+PPŮ}72cM>ᗼ;Q5zX]M& M T]@S]UjUh*vyD}]>PY*vn\7>bWl{M J|K;U˾"DRFD[>S2BNHbW,>`T.GQbw8TŮX|wbW,>5UEJXU;iUe:t)]sW99999999999999999999999999999999999999999999999999999999999Mv{EȢ|S]BseIBI/+"\XDdWhѶ ʝ0{BX 2#YW|A֕c֕Cދc֕C֕c֕C֕c֕C֕c֕C֕c֕C֕c֕C֕c֕C֕c֕C֕c֕C֕c֕C֕c[e]9d]9f]9d]9f]9d]9f]9d]9f]9d]9f]9d]9f]9d]9f]9d]9f]9d]9f]9d]f]9d]9dV1 ǷSacÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: CÀ0: C0: hCITaHuTaHuPTaHuPTaHuPTaHuPTaHuPTZ_uu7ZmǛs^SpԺ )$ 6 ~d 'S&3zd2M$=e2O)~dFOS&3zd2S&3Ɍ2LfL?e6ņn(3[,0C|lzmr,ˇF ˇFLelÝ ͨ{7@MIuH4%q^ -%Y]EKe3Y) -s}UIU[vuJLfEyZ$)h[,^eYf^V)xLRa?C =%m.ޡKr]_ΈJqKqhFij@yYG<4-Yh w _U3#DJ6`E[N^xΔu;%zI1ȿSF(-Kdf4-kEyBowfFyV΂w~EdM7qm]d}&,sMg`w}?|smD:cwΘ{KY*3hmM>ᗼ;YM{|ߵw%|8<3]k4Kokly7P`=%UӁ|S亷-b"SrϪB/s>Џu%y#-K?5-D\ձ6$ѬmEo˧qN~$G[_>#73t||kj9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|k9sPϱ6j9sPͱ6Cm>|k9sPϱ6Cm>|k9sPϱ6Cm>|kJebi_\ Ϫ*4Wd Uશ ͕)(\-9PEZPFDz9Ts.Ts<ߝ98L%L'5vĵE8:3Y '2opN'sp%-Ug"\NJ9"-6}{Uf!DLlCÉ`؆5 '2|"\epՙױ"6.upƶ)3YÉt5# 'mbLJ?W89Nqt\Ram܉]i8 D֠pN>uNt_*K]'wޟwڟw>v:6<4(])Y- 7# WYb"i0ū6'xz'&& : Nl^@ϫI FWW[:eHre5(474/‰4;"Mjx" <_YGI)b99"sƶ6IE]u{ĶNmRI6id7znri8bLÉؚ\pչPpݻWzsvby5e,@d q2;꜌\_խ:נ4 ܙXX)Cqb I;It.1별,ڰvl$"f!((89 DZ k;u;uzC&oE^!9@0GPv8s/Ss9!;I$ 4N ;I$ 4N ;I$ 4N ;I$ 4N ;I$ L$GΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9 8st,YЙ3gAgΜ9!{PA 24 {PAIΜ=a[fj=aكfj=aكfj=aكfj=aكfj=aكfbC>C _>:~&$9 =.P`E =.P`E =.P`E =.P`c}̉coVCYS@~y־L ϡЂ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Pt i`CZ$Z-ؐl@4Ђ i`CZ-ؐl@ 6Ђ i`CZ-ؐl@ 6Ђ i`CZo#r1%3Qo3譵)PQ[Fj@#5+ Jb_~_~'W`USz=)iz"./OdݝM]gؽ@wkpc8VWp#pԍ {ewcdT wr; wYt^7$|f3pd >{NCqMPq9(]Up]g}%{nfc%.k7`?G=L7$eNJ89 DZ kPqڗ6.[>t.<3jW pn{}6{3{动ϥ+k:-# _[=޻1kW7|/u HdsWaJ-{~vli˚:KI wY8ቬ5` DZ򖰆}pԍuues]n.k6U%{O?5p,.kݝedw8 pc: f}^kkHh&iвg-;􋸄e.aPK(% s \B!.0PK(% s \B!.0PK(% s \B!.0PK(% s \B!.0PK(% s \B!.0PK(% s \B!.0PK(% s \B!.0PK(% s \B!.0PK(% s \B!.0PȦ/% s \B!.0Pn+% s \B!.0PK(% s \B!.0PK(% s \$ۋNtR× HÁK\B]cuRQ4: DZ:8G=N'b/gR͓_7q,P(Dq0HG!ׇ/ 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐnBr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9Cr2d 1$'CHNƐ !9CrPbHΐقT٧lCKs} YVF4NxL !0AxL (-S֯Q:7li(FS2%%%Gީvh|0&^cќ6i4H:JGnsh!Gh4̊h4hB 0Õj $؟ 풏+D%~yMPhg J[Gh4pi4̊;,54aCM؜%zI Jb2B fG.^& OAF(2Y +[7i^%&^RWmiyV]r()[A]r\th!wih/[$FȯlY I}Hݕ^%&>Л0B #4YR-_+ 풦MK>N=loR%zI & $JqhGQ풣~9 @d$C ~7Qh譣4FQ VA6>/Y7'ɺvq'qԿ,vjIfj1}%C"_~f%RuCEKZ"v$P*+5+K4HT4+s,hwf:H*4h_X+ ` @T*H(4R"A@#U*H 4R"TFH#U*Hh4R"TFH#U*Hh4R"TFH#E2h>J $Kr#h|xĻDLwcRiqh7cSa&0+^$4aCM_}4w[:Bq2BpgEhBd>WhDT*`r&Y[@2 dmdmn_۟B܈MQR̍4Yi67"ksdmnD܈MY&ks#67MN$ %@M4AhB9:s uknD܈MY&ks#67MFdmnmCMdLRVB9:u D3!6h"k*3NdmXj >b~7)f_$ ^`U#fuW<$ꈶx:H4{i %ӯ2;DpjR @IL!޼NFh&#[U wݤMK>N=$2DRF{Du{ir/7"rdRhr/&?Dɽ܈M{UhЄ 5/H6}3ɩ}u|<$%guW!:-e #OA2{ @ErOaV"E'PG#M$HIoz:RMHi1M#yLH鋅7G UM#J4RFu$ID#iTFJUHR%)UM#J4RFJhT5*Hji"9wa>z` uDH&(3MP#R%)UM#J4RFJhT5*Hj)UR4RjfuŤ u$dꈙɬ(ԑAMPh$)hHAVwV;MnRzRZ&u>EQF#khG-*) I |['HSj2+IFm"Pg2F퓨3SS%C>UmȧJ|ڐFI0SՆ|dȧ TɐOUUhЄ 5/{=7{yX$f9z6kF/I_|+ߋ1|RFXbLa}5FXc0 aFX#V+h0 aFX#V+h0 aFX#V+h0 aFX#V+h0 aFX#V+h0 aFX#V+h0 aFX#V+h0 aFX#V+h0 a FXA#$#V+p .h0 aFX#V+h0 aFX#V+h0 aFj_4nR~[~k̬p{hh3*9qAp"Poz 5N/aQ3kןٶ?wM;5ގ;zs_p/{A1  O޾DkY[LeUF *L$U91cPWĠA$1h-1h!c0+TǠAB1lP{`o[R~iW#J9t9e99c.D]Ms\fuC73+.\Qe iF! q$3АNYĠAoWAmp wbo+(+L$rǝZ.>ZQ$VQ*4*4U>0h|@G GDk&оB'HKtvI>Dn#[_La&0+A h 5i/>'iOe[vQ6BY+~Vj}L4AA2hBCo+4PXe V6XrfMƫj}uK5MKԾlO1SSfjjdԉBi3552SSfjjdLMM6SS#355mFfjjLth0R#35H6SS#355mFfjjL=10Sw[ +(8Bufj!$355mFfjjdB:iS7{;+(ԉBAwj:#,jDO،D$i3552SSfjjdԨ &{^OJZz+Ko@I:mC u&c<%F(hBd4SzTf@ìDcS H*ԙo*u[vIMDi1mLDAT `U4*D QEAT `U4*D QEAT `U4*D QEAT `U4*D QEAT `U4*D QEAT `T4*D "n QE•AT hU0*D QAT hU0*D QAT hU0*D}Tܟ7f*6SlY2[Š\f+\f/̖/_fs../././././././././././././././././././././././&]f \f ^f \' ^f \f ^f \f ^f \f ^f \f ^f \f ^f \f ^f \f ^f \f ^f \f ^f \f ^fQeVF7=\W)(fЄ$#LѨ (xQ(PEB/ ^ (xQ(PEB/ EM$)\AP+`h!FX#WD\t-}˗uvok{YA÷#ĬhK-Wj>Th<8VdIZqahII^cV]WBo2B 풗NdV$&(46hBWx J+g<$4>uo`)b=^a"0+w"DRN&U)ԭɬ(4HMPhm> Џy4ʑ.l|B;FiZ FI$BiZ i5KzbՠAҴ4Ҵ4i5hJjР 5=MPKB:ħMPKz5i5h4 4 #DiZ fҴ4h†Ӵ$NzPt2B uO'Plu 5hi oƀҴUfƝҴv5FH]= mK) fEaVF(̊Bo~yV|9[<>BD]8BueH4H4 '0B^%f%Mz3j4>MVYo$p(4P8fep}n>$i*GȮ#*gb^$zOabql~>Ǥav_8<̊UH4apɚ|ɽT9Hu' u)'gB]Zu''MQ!q zK F4 %zkzCM 2^TQ$0{D]虤@]Cui)0Bk(?Wl(Po}v)׾jV(%x*uyIV%>B1c/u׽\t;u@׽\t;u@׽\t;u@׽\t;u@׽\%pK躗u/^׽{ \%pK躗u/{ ]%tKທu/^B׽{ ]%tKw{w{wAxG ]%t;u@׽t;u@׽׽\t;u/d׽]p݋m&+u}Y;tu%Z4QNpE7 p8.ib6pwC%+P wJ;TݱpwC%+P wJ;TݱpwC%+P wJ;TݱpwC%+P wJ;TݱpwC%+P wJ;TݱpwC%+P wJ;TݱpwC%+P wJ;TݱpwC%=ֳO?8Otٗw&ϻKQ_}7H;ݱlwC krTCw;ݡ5twc jXCw;ݡ5twc jXCw;ݡ5twc jXC/>c>(OхOjة%뼆Al8$$)(&0B)LaVS>;j&E?>{P6E=y(Ѝ k? 46hBUh[;w PexJˆA /&fc_nO!f ľ})R0@Kؗ/c_ ľ})R0@Kؗ/c_ ľ})R0@Kؗ/c_ ľ})R0@Kؗ/c_ ľ})R0@Kؗ/c_ ľ})R0@Kؗ/c_ ľ})R0@Kؗ/c_ ľ})2MXq5DJG7KLVGy&)PG#AL<F( s^9C #Dae7܇C@IL!޼NUϽ{~ |'֞H^)^Ͻ{?~ s/^Ͻ{?~ s/^Ͻ{?~}A.t3V8G鉤B5Bou^H4H4 u#lO#f xgL3<򫉙 JMt:퓨'[o#ooXc^\q}JđJ N$J敊5ԕ?<1(hPWrĠXA$k4h-k4h!*h0+TѠAXcСB iX9cPѠX9cPѠ;Xαab4XAI]1D]8B IO 5~5.)6z/;cI<[' ueN-QW0jD]è}u%~+(  zK F54 kzkzCM  M$3Qo3譽 xSh|\'ڧߺ@vY 흽Ӆk/$b" +&b" +&b" +&b" +&b" +&b" +&b" +&b" +&b" +&b" +&b" +&b" +&b" +&b" +&b" +br|s9\ \IV[!aońVL[!aoń&%쭐b )S+&쭐b {+&쭐b {+&쭐b {+&쭐b {+&쭐b {+&Eo.comI} m7=:xHԧ$BI+$ $BI+$ $BI+$ $BIoH*4h_7FOL\!IpDA I//ן{N """""""""""""""""""""""""""""b[Xns+֟[܊V?bϭXns+֟[V?BϭPns+ԟ[ V?Bϭ@Xns+֟[܊p}bϭXns+֟[܊V?bϭXns+֟[܊V?bϭXns+֟[܊V?bϭXns+֟[^^Z^^^6^^^P\^^^^^^^^^^^^^^^^^^^^F|7xp2Jq^o MR\~ѕCo~Aqa6SK4HR\ACo).?b}2e#G,XF >b}2e#G,XF >b}2e#G,XF >b}2e#G,XF >b}2e#G,XF >b}2e#G,XF >b}2e#G,XF >b}2Mv1ꄉRİ cU3gu|<$ȃx:H4%LU'L/["f*c@dPX +,H&&&"aF? > 3f3N=i0aF? ~ 3f3g0aF? ~ 3f3g0aF? ~ YჰŨEv#ݓײD/I_)fi Z|@r_& P)@A P(@ P)@A P(@ P)@A P(@ P)@A P(@ P)@A P(@ P)@A P(@ P)@A P(@ P)@A P(@ P)@A P(@ P)@A P(@ P)@A P4.@ )@A Ia)@A P(@ P)@A P(@ P)@A P@PCC ֕1 ӡTDfPC IzPaw 5 #4M*j5bjO 5 5oǝB ۹P(I}B /+XRW)Ā*@]_"tr9)BH`R."t ] E)BH`R."t ] E)BH`R."t ] E)BH`R."t ] E)BH`R."t ] E)BH`u."t 6)E)BL@S."t ]0E)BL@S."t ]0E)BL@S."t ]0E(j_cw7gN!vqG zО\t\GI^e*Kvw\p7hDCoZQ%9>@DMPhm.(1H@__nrd3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6Lf3I$a6LnbAnV(\b ׭XF'Ou b@,@w}xN⹣AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iX%AUBT iXÄ́I'mXAq҆IdsoͽAfdsoۤ͝l 7 vl 7 {l 7 {l 7 {l 7 {l 7 {l}4Ca~29% P5]7A7Anp ox#mInq9o|ޤ|kK.W?rM7~W/s2ehrvkOūs5ǩ++% ƒJ|_\GyNʀM<-2zܽ&.ikB/~oM4A]r fƎߠ yrKIhߏYo4M$f` &}W%Yҝ-V]Ҝ+~%ǵfEdw` Az4^a*ShzKnpl;K404B$s:ό [m*K-I kE}íOY{D&>$ћׯ]}D$ .2[Ðh} w0M zРaVYl,: ٬#} _xɝΘ)|'{k2{KX۝ {|s6/(ܾLy?MSgcIMyAq1iSAlja[UnSR6z/wRoGcb%51MàDȍ(:Ā0h$àDy4Q BA&s0e'Pg\O4AΠhB0:1< $0h-Q #DMw0;+j2ƛ1 923d"v`Rd|H*ԙ7qhh3 3' uF礷 q'<=,7h$ܯ22ʶc@fM츓Yw0;,hоh 4h[zkݬC+q6?VrQ~,?ppQ/y~8돨YD한G^YD&Dѡ(ot#uH_帢vƘ@Z'Yl,w}v;%%r.yV$*Zw kEyto`Ph\9.P?BaKkžIv:Tw(Uwu#PgE5jBd>FWg%l`N~VFwߨ _63MK>[s8J‰$63?~=y&UQ?/+?W\1Bs )M &U+?W\!bs+?W\!bs+?W\!bs+?W\!bs+?W\!bs+?W\!bs+?W\!bs+?WhU(mJԙ767}7_&>:!ΊDq5AAtBCoBl$zKFgԊA?lS#P?h #P+DV@Z1Bj@M˗'iF_A`,+6: LI d4:O N¯r蜵)|'z;(Ή$h4]eaiPg]+iPg:^]i IFACo4h!2: fNM 3`LL4AμhBI5:3n u9c`t4Hi[2: FNq'`vWmt$̛IoL)ԙqYQ3' IFg>2:ƛ1 323dtv`vS7ySΆWq ]vf[sDr0o"6w3ͺ|=|p/m )Qւj#ʱ3VfJ8ʒqԹ@u,|?Aܙ}gNFI ڧ0B1 @ì,@ )4h|0XV!~UO{UO2;+sIyBoH42fޚ!=hO> Џg6dtz8@tzMpz8pz8O!_3}ҡs3D䈱dҹA =f mAyNTtɠܦ>(7mOs3oCf"Q=(7S}f2Nɠ3;Qn&zɃr3L#tPn&Y9(7A&)OzPn 9br3/D Tf2ht;WAArq$.q$AYc~<\5f֦@o%N9t֘$i<\ӟf֘}Ycӗӕ-HK6W.^'clt3-*cltM^쭩|^J ;]z˞A}ʼn.{U.vKnt3F=gP?+] 5!JY|uv$P} c} '&(WؚUU]c+Tc+>FM$g%`a5{P_!B}ʼn8+ U.&(4H6oOxL~VV v`jxMMC XU.%k![I˹ϋߤÈ[#%^&M85'vmtHНVVE!ZqV% Cᴗ} >$/Va}Vx #dV`'E6<>8kSوM=ic[cic"951Oh4)=}}g&ݓ%RxFh-]M?^x"[UnS^gm _ޚ3[_'_ݬ?|Lw)<&lIH0g Sx6H0f Sx6HQݫa Onܽl gCG)<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<l³a )<~714Bkdä q6L )Gmj7ņ8MrSla"8&la"8cR.S'ӟmi)Yl_vu>N+vCa?>ss=]j~l;[-KdӐL a[j:xN;t.}-mOkO&ևosݷGoܖji}3wW tT=--򽱳oR}fKZjD=76j)O;3Ҿ;?mK9Ӛ)סy}oSSGǡ#=44=WF,yN ,`Rzuw{5J]h?4979~yGaiAOfҢov^ 9Lon:f3AEx@Xncف۟p{,]nđۋo[Qۛ-G<9~mg}==xZM$So햩徹Le}3=hV/At ִok7n[e-/-m%Nr\yZ?- \Jg㙣Wh~)zas2|춯߹>|t&dz棾mDFv`7ghͯ'd1z3`d_[LGX=ç?O9>9?4`;ߤps{c4U v4[;T`Sع? 8J_u>A)PߟjP^W`z>r/tV9 >z˕fݾxil\+޲\M/.ڃrѾ}?UXgAdi+KzfKC/,m/y~T%yNTkD&Kr/kٱ=MR^2-{}2QtNKLގm:rHˑMfeD&(/ MћӯGXYnx~]I`D>.6 {5d[!$a:y~=llmFo/;۶pFMR_RO{/vJ_%%m; 4&~y}D/}ݞKr_jT"@{ DIWzl0õ%jB8pXl-&F);Km0I O z{m6B ]'z.0&kEA2Oކ=Aa>0+^%4!H* fG!N$%AvqyMh [  #V7?a>zI&ԡ:4F(Pb=H*:VuU'#( _chфM(jD{DR>V])N^vɇ H85$ CV0B^$fkD&]~&s~ZI~zNg;`q3Sh4xռPmn%:gkB{e_X¬(4H]SAF(h_w;^R7?׾풣NhtDìseKZ,ZIaB{y^c{IvIs9h5ޚ$.9Dh'DCo$0BAof%M~v}{D6_܉d1I xoq'[:W$3H*;<{hBZ%ٙ?ZhkE~H4P>S%NJ&7Ba%ϊBdSh VBo㸶Jaݬ$/|/T%y/*K'G$;Z1ǽ%yhY htkEGph !*Ѡ 5V2j4:zЛ_G)GBozI6yy%|BŌNvI3B ch'DCoZh!o#I4̊?$4K&>m!\o1jUJ4Hfg$;ZcIśݏB/BZ,/TORK:k/?p;{dnK=4koGs)\.j:̹;D^@wa6HK%g $5UR]<ޡK6I]2/=rMYAr uA #[7tYٽ&(4hBThо~^ <ʰ9I`^=;k(ɤ 6V;{ DR]2?<&c+8^jz-F+m<fE]2=5w*>cnl%3H26QRz}QR]2?|yIKևOIFII4A #t '#4}VPTho!py-D h??%FȯlY zk+yҰ|u̍!yh$aIK­l YeV`a Fhg H6]ve0B |;}yMt.ikBdNsfqBozIPtmk=kDYAR5=^IKnph\hDCo$0B~hI4hBW譽kZM87+jBdzxEMPhQ$&(46hBU͏{O}:.y<|o5%?F䨙nV4$&h4iF9hj+7|yq4KYRvI^};%%G2VuOxmFd{k0tr޲NSO̘[v%%(n.YqV$خie%=i>%%/kD=|\]SAҏDCo|J4!Y Uh/[q%y I>0+q9jjB=^gz}DDIv?xWz.y<+.>i/ o  ڧ0+A4!HV}Ozi$7IX>a~hlQ${k,i $/l)inAR]r<[@G/%4aGM f7q:Js%qzU͠ n5$1zЛ0B 풣fWh7)DWh $/VA=+%jқ -H\V7O??؜rqV~|#ayF-]S^n}]NN?޽_%$IMR=4T~y]B$~(>r Hwv@5q=@{h޷癤B n-*K^Yg#7٬(4HMPhm> 0+:̊_eb-ﻡ&!tȷiHh2!l7IގThN/uKno8ΊD%QRdג+^hDcKK>z\e ~eK4& #w0YkEA@v4`M6'yI<&S6@{^kҦBo%Nm b1 |JhB*Baoaގiwנ]` {D{`̸ӣ|E^4JIhm~LߤF(?r2Bf%H*4j:;`:d$%me{؇@-MR~(K3%CjIorzk$ފ}$U!{[raH4HDCo Ca®0+aVhЄ а>}o2jB&HKAdA$%`  ^$z5Aa ϧD{Q!>J*܆[v^q2B .fEA2hBCo)4PxYDoB#-O1.jBi} rCqTh̏tDZ Q(%$jaMvF}X[)_or}mvNVlY[WhmX Ck$$ [o;H4$fIj4jl_+ރh4H6}c|{.98g*4Hގv}ڀu$%%?oi=XH1pvٱn#[L4~wZ`풃\%ڋ AR]r[VMJ!Uh_a:7GMPh/eK[&gDlIfK4֟ #VBìDABo^|o_ÕXH$z:z} }y{wVڧPf!p")46hBTh/)ћkp 0BnhN`Ao6~mn2h/jB7 vQK|*4H5wj[w]b~eKKw_HKsS;dNm<}I%&%*+4ܲ| ~2܌gN !Rn]f C0I!tDI4ϧDV}Vu$ڃ΋rYɝZ7%'( o%F} $4!z^y_m<+f'a)K7ЦBo%'6o/5yZ-ۣv~./3z@2Vn6]8me%% zInmkD/ɫ:כM:I%]Y?<]ڪ_6Mo_+ƿ=f6z/;P#vHDZA2KK{s%zIOlIp ˡ,e|hUh姖h/9VK롿峏 Kr5A]r .iiD8c-Q'yD]oϵ2KԍPM$f%`u!ެ~$zm*V]Ҝ+~Uh4;^=M'QާP7BVnV&{BoӼj1J]s3;XX $ qhwgM4$>۰)4PozγC!tx:d82NMPhm> 0+n"\V#ѠnP&'Bd8yz;9yFhr*Tӄd3;=!=!$$}(}`Ag>4^ϟCoG.9jD5AQ QGM{98? %+9қAUzsf9xs;Jo~$j_oVQ u,~ 4zs{9!oae5tv4 u]о?e,P%8rKB,:r$)/:|&\&p`9Ё, X:$p`I%K, X:$p`I%K, X:$p`I%K, X:$p`I@Xt`9@Xt`9@Xt`9@Xt`9@Xt`9%K, X:$p`Ie '}mVoGwl # l#<4~ݏzݾޱ Nm~J~*JСF]Ҩ{. Q 輜\y1FƝχkzh:4>E MtH1xh4{h nuCF ~k}Vn%I࿨ћ}jvACoh6xɟsm[A?-uoֿ/^gKo{סd]eJX/iFOQ%xbF/G ]4w5IWXٮFr:5fhwWu3{.7B-WݾP#~K,A<ƒ=2J"qLV;[3`ta=BOVGmc\}K_v12$`]W۳vRǏ=W䕵I8c5稆3Y ǵ<afA'%|M4 wYO}( >~y̴Ofs/Y{)e^Y FaN*8_ GY_i8cg hqbNqk]÷^s/jLU>3ߋ}Ɇu`eYvw1d3~ j֭A wY{5( g4ʯ 9gn^'*_tC]t*膄/YQݐpJuC]^(} DZ{NQ7v _Y h}pŻNw]I>JtCQ6褄cZp%(} hC겇'nQ+V'k?qn}7j8~Oo>4|?NJl^c }{>iPE)?Mv~NQ8N5.{׏Yd ԛd%|&C@>KWBՓ}RQ֯A >/١xD'5ѝ NY b]j{lo׸9DY ~+ {8V'H^׾zA 0p#{yB?A0?A0(8730-(;zA}҂ag0p+{w0p\ t#[%/vE/>^U*>iʆ^a@,xALd%_g:8֯@ WSI7g?DX &/]>ݑD\G/Y 5= ԰dkPQ ^~@/$?CD){/ݐٟ膄GD7$=(^:^ & ^&g/ /._htU膄,zAtk]d "o!E/sƓ!n#agp^|KzAutqq #zA|.yA>$xALdG/?n7 cg"h9d藑kd-h˚Cï LeHʴw __oli|__Oo`ه^ỳbkjaN5zl$o@A:(mOA9I6%zYC(HJzj7zI^^^) sN+CA2{:Nai4JpPh/9 Pք&h3< $zJUSA1 {FۍFì8+vOs%%zI^ق^ c(~KwMR̊F_ M #>`vMطfga,ig/˭+}lu,y}7ut J"HpX.QnW=ks[G|}ׁD \Zg==(I},/2c9{p7ݗƫk9>p|gs;>lmDmt_ *ۺ*,''<^GDmyi_\/4/l_6kǯ6Op+c׶9}cc@ gB6Y2 3N)|Fs;)|C3:IӖ1<^-sk3E諽}ϓW,/~.,`pg`Wy~^s^9sǾy!s,}C7Y̿9Bhs I ع쓻~>C\H}VmTk_غ}ó`|S {C)m~}uf󂻯b~xUӷ=weО>m)|ը‡sXm{p9cak (7r> 9%O[3cg{R)m~e6ñ|^8Far}:mEs!9t9v7Ͻ0zFo9㋣ւq? t)L}Mq-f}|aq9|N_gMy6ik9|.fusT21c{_zs 6}XS8Q`p eu_lS8VM?{6[Y"w;ׂz)p +T8LgHȫs!Ou:m}Mñ;W>^u}h9|`o28*nNr\A<'fn|%m}ñ;Ww2&`;maoUw3}..D@R GR8*9*ĜF1qisQX< u]0F)mopls 0*WK.+f5 +}+ul\1pUu}{1ꎋVJ{jjE9|j>mMYG[.c}c>}þs!O[`)|N*nJg5RG[_pl s89(}ڛz|%p ?s>y4d|;_?۞^i'rˤ^|Ppy=ZWsz{Z- =΃̎Lɤ(%6M.]S07ϳ`ۇK>s9< i Jߑ(R6{}^s8Ql'A8}co,}#O[;^|ښ9V8¡ Hp#Q#7G~;Rv>`i;-ps?COp'S&ݴȂwޜ;2|-3w")l%3sF36u]7>q,>j|sI'U?v$@C. [}m;НKW!npr8F d3hϝy8yq,X|m~qcq; X}D>27OS980s6ɴo_غáap0s8Q9|C}υ6 ۜslpx`[mal9>m4qy<oO9Pp h6á_p9?ڦ\H&+7R^p á1/p諘R&h<&+g6w~:GD}S3k>6NbYܿeols}S8J<3}3'?Kra3,N98,X 6W>>9FQ63;`n3?w9|a'phs[~c ,E3o[Y_ڇK;Q"%hfN[3Ɩ}EM=,Po\ۖ3d vt^lT z94]2ON %>+Cs|{9zXN[{9,]Z*%GC`aT\ r?TFOHr=!EOK )zZrE:^&zXQe6fCzZle_樷AkľA}R}bk3{޾vpp9[[ǹ~[_usb3u99RC}>c9zX'J6wP7Gyxsޖ:\ܪ1GeuUiQCսbQ?*ePݑpUkj?=j446SŘ}xSk5c6[Z;AFgiaR9S?ÎR7?=vKI>bh>E=ICم㾒ͦmkvR=ߝ@GľZ`807u|\/Σx|ppݢP|`fv^G/ zy^n9l0F9|Dȯ6s#ī>m P95Mep R89>MW~<\7mM~{:_ ?4`m!}bN1 R)WbKv>s ?'Q/p(2QGyVAW6d68¡b|N0F1/&\1gzOV+ V>?g d Vv_K)/}3wlӺ* fCH4o׎ɟMo K /ӛ }tK7??&^M}EQ} wMKwOOw}5/X-sWr)Kt9zX9|`I9[cRQK u_CUxQq_ ~8E?o!Qi˼Ͱ(ߎ7[Dɻ i1EK{O;b),zװcKn2EwKCPޗ9LZws4}+G=’K9zȽ20*.jh =kV1l^k$KEK z\QMos٩J˽O)a9U㙣eb9zXos G2r"vsai?wWv),zez ={3=z ~[a\{^JhWکf Gβt>m.0Mrs֚9P}F03EGweB)zXư?͇MsN^ӀjuoV/9¿f6Bn#U0|?Xw3 kKڅ \kgymM. ^)| G |6pls/LWQ0H:!5{xeE6x{>m{ ‡}ADR8z p±V 1 Q}l9ͶOva׃N8΅ FTυAsaluA녡YҸ*jrf2h6 P? Yn1mS[|ښœ&/FAc!#Xa?R+d) !Kˡ6 p+W3(>}q.612v)#dO[ӑ2 .^ak!np7c\Wqop =?Ӆ#?uLOxe5LE{oO-PGm9>'IrqoLG s1^a)tK7s4 =ҥhp0C'޿ۦCN3W =1EspKcmڲ[ڃbm:6GKZ]a<ѫ2r}^W\R]=2wߥVW5`Z̥:i^xNv?d@e[whjOU6ĺ ϛybThؘ:yA5ϏKs>myt}n}5~UzeG[)cpW)ȿLꭋcKm.Gp8З2zy^n1 }wuwۇ`A: )|>jGۑR)|n*@G[?s8}%^5Ï)|Fݿ$+9Ç?9r#8{)mR89|/c_q¡>}M;%6\mn˴9}u'SК(a.ik?6čmSj'fjSmmJ&X!D6yñA$7m%_ݦ)|ښFHeE>myHp)m}͟ñ;W[_1.ol.^Y )|Eos XmTmc§mNFHh|2c\HWap0Sv.8+m=>PPͶp,LE_ xGp$5-}3wlIGqf iiFz_Wb9>&/C\X;y1؜RS:W_NWwvwvwvwvwvwvwvwvwvwvwvwvwv烥)WS' ՕXÎݝXL5{T}aZZLm aYo(y;Cdi+׋|HcWt~v߸Myyyyyyyyyyyyyyyyyyyyyyyyy=ryy_וٖȕq_ܛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛWڛWޛW#WޛWڛWޛ}qo^io^yo^io^yo^io^yo^io>{UϏHʱKMqbN}m_p+! 99c_]fpxn#OK9|6GpvW?sc־p?2~"R moi0tghýOrȸgz=9Lw9X~={^3C?I~I vdYO>ԧS|i@NrR orhhmC%|5Aèx ,/5"u t=2}24K!.P<EOHÇ_чW =,'mK3Ce0246d =/Eؗa~z J=q~Qv|闗 leznņ[J`9cl96k9}vϺvix%{foնenL )'G?Ux_?'v*>Bkg,JC 2{ ?GOWc6a91s4Xiֺ4Gè:v~<)5DOHr=!EOWj/ )zZ#9-եUQC!R{BC)2AJx+>fii"=,' )-om}{( c|~@y¤2CC~bfga)st zbR)z9-cjơqaj@j':I]6C?OzR//e2K 3Ɩ/eK=3[vZV/ezLL2x_?'v3񣲠-Cs)w,e ]i)5_tL|)ӕ2]41h!Z4 -e <2~<5zB9zBB=zBAu /evRƠ2=i)㣉NKXwZ8dR&D, xnqG%E݂$zBzK>L}&+R&۹ߕ2afg&!Z DJMӒz(E=Nhy%Ee&[IE4P?*1&d[\X ġAkoۆ1A,M [7Ҳ?O3㫆[a~8?ai___\*,M K_XTqi4U\*,M KSť2LK_ KSťTqi4U\*,M KSťTqi4U\*,M KSťTqi4U\*,M KSťTqi4U\*,M KSťTqi4U\*,M KSťTqi4U\*,M KSťTqi4U\*,M KSťTqi4&S٧ػ&ym2akƾak XniƥLݧ ||qu3_1*?=_""F+Q~Ba`x_7],\7?~ym6`ж狆+[=D7a`aWG=O miK}h`Wp#ZCX8"F:"N+s)|9 a(·aUuqhEaFk j1BuEuvo|iqi)®dv `i|6:#IiNk8ӀWRʯʂ}C۞EvݛcX n o.|4Rse1/'xK\r}95= fN?pl ao/G?U7.`9#= f1o.QC|/p,GW {/'9, 4k}sD>o.Hw̍uϮ9~ɂEГӭ oGNaNiuݷvNxu8WRԱM\IQ6s%E4稷Uw 6EOP ]\+β =-M_Pǯ=G%E|oTy_xۍ1g8wvO~baOgOE =,u=}ȹ[fi9~Y?h zZNcwўLrzVϯY~w E8 ~iBCk=^]vB}mEͨ=8zh]ʌzO+zy_3 RO_Gv? zZ~x)Lxfk2A^qD)WZt:Uk')[/zhFDSy/|(A?yEk3|/z(COyQrʖ24X{(β gv~@|=B=XTO,_'VXOlPOlXOlPOlXOlPOlXOlPOXOPOXOPOXOPOXOPOXOPOXOPOXOE9y9Ee( 12z_)hH@[/En!_HB[1ҭVt+D# nH@[0-t D#nH@[0-t}r_% UR*mn:Z&h8W4x|4O;*DT"HR%ҿZ4XtD:V"*HJc%ҡiX4DV" *HJa%ҠiX4DV" *y_}C}#]u"%vlZ'v[BVM ӞM>COMGTn+W`a%J,5pUJK)qc9zXN/N.,3hT%r}ߕ9zZNa9zDFK[Jhh+s'JOQ sC2},z_y_^i9;ʛL#Ghh{񔣾V+GKQ >οt[0{(COyQrʖ24X{(β gv~@|=@=X~xiB `ir#ˢ`k!0zR})K DHW~xia[ -t F"݂nHW0t#]HW0t#]HW0t#]HW0ґK;}d<3TI )zF&eElmUWk WN%4Z蚣aa9'WF d!i⥙q2h6b.( `.( 悒 d@y.A@F dP. d@y.A/ZP bڿP ,C)C;9z(z_-ACk[ =ߢ%h o^m\Xf[\6C] =̥KxiR%#\b$e.yAKd.̥3BR\ K1s)d.̥3BR\}LJ a^OqE}2G:'6t:Q4ҎmqǨuBQ: QG1(DQCu:DQCu:DQCu:DQǨcU,)Nh{OHQFzܽKP_ v;k5zCޱFPw;k5zCޱF~e5zV [wdK+̖el![v̖el![6̖ el [6̖ el [6̖ el [6̖} k^ҝ})vFhtHHjHbN`$hhm{w籎 /Ε +sK[T"JD~xiP.JA%ҰiP4DT" +`%"PV"`%"PV"`%"PV"`%B'}ȼ ޗ>gDOkb0r"A0$H!P}/6Qz՛%s3;FOBI>I>AI>I>AI>I>AI>I>AI>I>$$CO+' &(' '(' '(' '(' '(' '(' '(' '(' '(' '(' '(ɇއh|||||||||||||||||||||>oI H;$佒|RDz$%$%$%$%$%$%$%$%$%$%PO@OPO@OPO@OPO@OPO@O%' 'JB$%$%$%$%$%$%$%$%$%$%PO@OPO@OPO@OPO@OPO@OPO@OPO@OPO@OPO@OPO@O%' 'JIو$%$%$%$%$%$%$%$%$%$% G$$%$%$%$%$%$%$%$%$%$%$%$[|$;${%؁ $%$%$%$*JU(WA$_I|$*JU(WA$y_EI |%$*JUߒ W!W+W@A$_I|$*JU(WA$_I|$*JU(WA$_I|}(WA$_I|$*JU(WA$_I|$*JU(WA$_I|$*JU(WA$_I|$$*HwHJN %HU WQ$_EI |%*HU WQ$_EI |%*HU WQ%*HU WQ$_EI |%*HU WQ$_EI |%*HU WQ$_EI |%*HU WQ$_EI |%*HU WQ$_EI |%*HoIU䫍rV" WQ$_EI |%*HU WQ$_EI |%*HU WQ$_EI>> WQ$_$_II>y$$$$$$EoV*ɷx1"wؽyǵJr~'r*N/GOy/6CKkIIM>_q4nz[[nyKC>$l:;y^篛nkyV]op^5둎=˾u˾˾o9oD[N/Ck t u˾}xف(A[w$Jt Jt$Jt Jt$Jt Jt$Jt Jt$Jt Jt$Jt Jt$Jt Jt$Jt Jt$Jt Jt$Jt Jt$J}|h"]x_:߅)xoD[N+/+//J˾˾9DkN>z%eٿ|#뢵^<]POӅ'dh$e>"^`#eesoD 3;4'AG[}Б:ґ:Б:ґ:Б:ґ:Б:ґ:Б:ґ:Б:ґ:Б:ґ:Б:ґ:Б:ґ:Б:ґ"^9-D N/./C}\x Cj|j񲗜xy1W2ԑP:Ү|xـA_i6h6b.JGJJGJJGJJCJJCJJCJJCJJCJJCJJC y߅"/bnm䇺, P]۠cMm䇺//C%j#?k#?}}FV"PΡ Tӷ/RՀՐՀՐՀՐՀՐՀՐՀՐՀՐՀՐՀՐՀՐާtiN4''^6%eӜx;T*Io%^NQ$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $}mJ'e92ԽiCGZ;;RB͵4 k5::Z$Mc GZߪсAwh(^aCCCCCCCCCCCCCCCCCCCCCCCCCCCCCz_ }ehtDl= 2xxZNl P?*0sxy an9bT24Xb%rekXxy}F/,4x/\}  T"JDJlB+HJA%ҰiP4DT"@%"XT"@%"XT"@%"XT"y>W]#ec|x4'r5}w/ȉa/6Q~@ mx9B@@@@R`^Hh4{/#^x9rL1/o/E_/+ƮLtK#{lj/$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^o//;ԷˆˆˆˆˆˆˆˆˆˆK>5 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^xِxـxِxـxِxـxِxـxِxـxِxـxِxـxِxـxپEl@l ^/B ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^6 ^6$^!!!!!}xـxAl%^B }Hl@lHl@lHl@lHl@lHl@lHl@lHl@lHl@lHl@lHl@l"^ /Ky/RˆˆˆKARx)@$^ /KARx)@$^P Rx)@$^ /KARx)@$^ /KARx)@$^ /KRx) ^{;PK Rx)H ^ /K Rx)H ^ /K KARx)@o/⥼x)/KARx)@$^ /KARx)@$^ /KA%z/K Rx)H ^ /K Rx)H ^ /K Rx)H ^ /K Rx)"^ /Ky/R+̖@$^ /KARx)@$^ /KARx)@$^ /}H ^ /K Rx)H ^ /K Rx)H ^ /K Rx)H ^ /K Rx)H ^ /K Rx)H ^ʷKyRK\/KARx)@$^ /KARx)@$^ /KA%z/K|xI"(^x)@$^ /Ky?ˆˆˆˆ-'ҿClxM戗m"^6ClxM戗m"^6Cl座˗{e2[ֵb^5G@Kn^P6GOI:6EeZ&gڬ|22췮l^_. .&zƮK?_7an}6_iN5~LL8ȺbZ<[yKW5L:p)e'Pu=- Z<'y͋ěY.5RkZ5/uZ﷛FUWna9rb)]i9[i9V9zXNjFKRZRQC[ͭTs{& }RCRR|#1:Z&h8W4x|4m%ҠiDOmo PtD:T"+HJC%ҰiP4DT" +HJA%ҰiP4DT" +F\އ̛})#]~xM5/:^Z a~T_fM^f ̴9^x9ֿNrXIҠNr@ҠNҴ'(^NfS 7L(Tw(T孊4*T PP5@jB U*T PP5@jB U*T PP5@jBzB->4)^x_:m SQc%˱抗c!˱*; xiZR4/ Ge!}X/xo/%Ek3}뢇2}bT2}24Xe>R ?JaeY|=:p:pUrXO@:pu ԁ7Pn@:pu ԁ7Pn@:pu )^9R N_S 1e>QTP9wx5tr6Pl@*gU)))))))))))))]XY‡2W/N_ϽP(xZƧA2KFKP4k\Pw|ȴ; a0շ*^l\ާ DR ӊY/Us5+u‡2GWɫj:ޗҷUs5 0*IoZm\Xf[\6C}(h;紿UR;\====================IM"sxyaiOx(^}7?X~.ꀆCK[/Ѹc /E / /E / /E / /E / /E / /E / /E / /E / /E / /E /FmJ#Km'd{_/AZHr˨Z;;j>kiԙ o0訧 jt okW_Xfh>R 5>t:S*oUTxtutututututututututuk+^^x_>//CC#KH'xotB F %K5B~R >4&%Ek3gh -ŨdhJDrGr 0*XIxyeH2Ε٧I2P H}G%RߪxrV"`%"PV"`%"PTD*T"+ HJB%RPTD*T"+ HJ>䊗ޗ>(^j SQzea(^mA2sR [S?xyRT/w/ /w / /M{eh#ZkOQ<͞,0//&N*^j)^~)^>btMx{cZJ~| 0 )v0,&mTeDjs O5 \='qvmOTfKy]}LvMWmv=2[n…1?u^#;7;Htg ;Žl(ϱhs ;sl8+Y Rv[jnsent[ i-얉G`Uka8AZZVmC_!wad_O:j^d ;O*mah0-^y)F[8;±ďpB i 1*đ>iFiҿɒo<_9ݫ⫾JajRؽ.Ę>iE8Lg,Ěs B8ӀЂ?VVq? \*I $J%IpIå$).A,I J ãLp$)2<@*I E@U +Nϝyzk)COp|ЫJ¡%[0 ]٦pj aáR8TJP9*CpáR8TJP9O*1M]U *ŸSMabhs 錸R }فm [a[8YyaLWQJSoIs/)ԡ:RrPJʩC)utNRG)utNRG)utNRG)utNPx(Xk>!hkrCѯH t 3cȩc_Av{W)V;ܱvo;t>G]t9uJw]t9uJw]t85Jw]t85Jw]t85Jwd#1F)֦}t$0-FO%$o KVq?rKR(,5KR(, %$’pX KaI(, %$’pXBGjύ! }H7̛!!Ce)\ UտP/\ UտP/\ UտP/\ Uտm G$jxluUl}KoiV( Y4+fҬpJl4[9VJl4[9VJl4[9VJ,d_rOvyo'S8Cb[8J&VbG q-L,r Gxѯ TbG2r{YlW}¡\VԜR~sR8˨ʯ|2qXsjmG$v<2NWn~aʙ-Vq?J\T*g*3ʙLrr9Sٸ٨ٸ٨ٸ٨ٸ٨ٸ٨ٸ٨ٸAx+L?MSЏoIqðn\8}'"zey yhYH9([v|; 9v2>&rp1Qc_v_>&jp1c_ve#Ŏ[JZl!ZlaZl!ZlaZl!ZlaZl!ZlaZl!Zl--[L-DA,L-D-L-D-L-D-L-D-L-D-L-D-L-D-L-D-L-D-L-D-Led b!ZlaZl!ZlaZl!ZlaZl!ZlaZl!ZlaZl!ZlaZl!ZlaZl!ZlaZl!ZlaZl!ZlaZl!Z|hihihihihihihihih[Rx/'v )()()()(ٰȰyhY9(  [x/u( u uu uu uu uu uu uu uu uu uu ) حɭxiXI8) [tl2x/ut :::::::::::::::::::9X@XW@WV@VU@UT@TS@SR@RQ@QP@PO@ON@NM@Mb wR{iQԁԁ|ԁtlԁd\ԁTLԁD<ԁ4,ԁ$ԁ ԁT>`$`oON;h㽬!4ur:q:p:o:n:m:l:k:j:i:h:g:f:e:d:c:b:a:`:_އҁҁҁҁҁҁҁ|tҁldҁ\TҁLDҁ<4ҁ,$ҁҁ -x{t<:*+̖HHHHHHHHHHEC@@~@zv@rn@jf@b^@ZV@RN@JF@B>@:6@2.@*&@"@@@ @@@ss9D9999999999999999999އ΁-n')bfx+ss ss ssҹtESJ3G-2tJ(9zX.ߠt%'0.CAhtݩ&Jҹ.:Q:"n[g׍;ik)11vb(UYWy7siΥMKWCܱI{u=, cast29-SԹCkSWh&"RbJf1.Ji]~ĹiQnj[]>rzqraD1[Ji9+s|qtSYv0L)Җ9ZJ=R:G,Q 'KY_އd}aizc^s9zZϴ8r4X:^ֺO9{hq/rԏJpC [.j颇2J =-l=!Ce ,P?*qfgDz4 FBꉂDz`=Q(XO' ꉂDz`=Q(XOKS,k~O-,_ü^EKQ#hxO/M#t}!KO}a+ F`+ FG>(G>(G>(G>(G>(G>(G>(ґEK;}d<3TI )zF&eElmULu+ݧj-A9ZJ{ OZFr#O/S seC<A@!(\ rb.P@!(\ #@P^ӊykf C].LP }),[ o4P|aT2yqan-r 9O?yf#s&^)v`R\K!s)f.̥2W!su\2W!su\2W!su\2WE)^uCtﺸ7S\>eGKuD~xiǶѸcu:FQcu:FQaiuFQaiuFQaiuFQa!k1t mBRԽ+% j5zaޠFoX7 j5zaޠFoX|2C=AFȖl)?M1I(^al-fٲal-fR0[ dKl)-@̖R0[ dKl)-%y`J3/Eh .IP$&t3tx'ACk9k$F=!C}\r/l[yDМ?*JD|%2Xqy3Uph\IN8??GHJ?MR.JDD*JDD*HJb%RXTD*V"*HJb%RXUr>dKQg&D.=c>^OTx ~(ϙisK {؟yO ~5.|2Y'(͂, Q `4jG[yA7(by!9d^ B!FYI;E7JN*O5U\,jj\,|cv:lt:Ebtrʼni'NxNF'Y9<xl|h;0sc cc cc cc cc cc cc cc cc cc yV'0zl\i9sblʧlԁS^ώиcԁSO8E?SO8E?SO8E?SO8E?SO8E?=zHe#9sΆlH9B!Pi`_O]@/G%5:h5:5:oǚ8gr4xjt8=qlL0[I'x{I'x{I'x{I'x{I'xb.9,zRf3z_HG3'gcY%Ι>*qμY8gNVε8gNξ9>dM3W9gR?+fs.FeKH9gA.GCaUsY 9 hx✅Z!g+ *VΙ[s+ HJB%RPTD*T"V"T"V"T"V"T"V"T"V"T"V"T"V"}s՜s/E}۾9xߟsbF3M^5p=g_ w*_W3133 b$.K$GwN^//;n}6)׻%w%tM'zĈ-_&-[*-aYA/GK=-A/G ?nO3Nb+f;4|abF92Sb9ꔨ_: t؟kf;? f;? f;3; fE˞a} ާ %i b9, /GCk݋=rԏJ> οe=-A/GOKr4Xk؟kO>bn_i>_O';QPDzbzbzbzbzbzbzbz`=Q(XO' ꉂDz`=Q(XO' }RS?ˢe{v~A/G}R?$^HL)?~^r@+ D@+J_xr4ZBsb=؟ nT_:Ork9+$Q__EmzаR+ZM:Z*gDhik^M! ׉\?.ggl\D/\r4D:NO\ sB.P @1(\ sB.P}@(P/b9re*gi*gQC4sX|ķh؟-s.5QhmKOVf#s؟bf.̥2bR\K!su\2W!su\2W!su\2W!su\}RS?ѻ{'g㊗r|CFQ#؟FQCu:DQCu:DQAiuDQAiuDQAiuDQ/Zj*gގ\x_m Z*gɾ`AްFoP7 k5zAްFoP7 kW_XTWS?ߪ#[؟IB el0[6Ȗ el0[6ȖR [ fKl)-`ȖR [ fKl)-ktCuTƲ}-.z_Kb=Q*gDj؟ =I0syKZ0CR`& b9z+.}r4xBLŹ9t*g爗PwT"?.g}\@%"XT"@%"XT"+ HJB%RPTD*T"+ HJB%R!﫸}h_HYmiK[-?/m{sCK,br3ʸ=,+/s ^i =,7|}ʭL;rkDKxeӋx51v3IF|ڝ5X1v/ϫf=/{nr#ǽG_{mV?_7藧v?t;;>?cvZߋ)_־uG=O/Sln{5\ݰ{vS;\Mj۲MM?|װ~xsuQf~_2/qK%f~U3_u_ͯ:ͯjW2~(eCq~(C1~(eCq~(Cm?>^?9&m~5|Un9\O\{^޻X^Ahy?җѶyiuqǭe/3ݮw{׭N֊ի}8Mwqk>q:{h jnqkhzyꄶ=}lVL{b#c>~lu˴k>~wlO׃.h?u[&z?{=,3/ont?^Dop|Kߛ8ٽ/|Xmf&Gi1 h#4lÍژi7\_F[oxG?{ڵWd|<~vWKZmd߯z`gsd]/Rؽ-sd|\wi/5^]x=E'ۯ>WvzWvؽexf>WwէfƫOxi:V_}}Ϲz`]96\c{=i~mzMZʶޏukR:p){k:~ukh㚷z{wklZ7ӆLN85jnqkhzzꄶ~ꦐꮐS!]!էBBBBOTwT n Bͽh^guF33y6huF^g4:=_ge endstream endobj 3506 0 obj 113711 endobj 3753 0 obj [3507 0 R 3508 0 R 3509 0 R 3510 0 R 3511 0 R 3512 0 R 3513 0 R 3514 0 R 3515 0 R 3516 0 R 3517 0 R 3518 0 R 3519 0 R 3520 0 R 3521 0 R 3522 0 R 3523 0 R 3524 0 R 3525 0 R 3526 0 R 3527 0 R 3528 0 R 3529 0 R 3530 0 R 3531 0 R 3532 0 R 3533 0 R 3534 0 R 3535 0 R 3536 0 R 3537 0 R 3538 0 R 3539 0 R 3540 0 R 3541 0 R 3542 0 R 3543 0 R 3544 0 R 3545 0 R 3546 0 R 3547 0 R 3548 0 R 3549 0 R 3550 0 R 3551 0 R 3552 0 R 3553 0 R 3554 0 R 3555 0 R 3556 0 R 3557 0 R 3558 0 R 3559 0 R 3560 0 R 3561 0 R 3562 0 R 3563 0 R 3564 0 R 3565 0 R 3566 0 R 3567 0 R 3568 0 R 3569 0 R 3570 0 R 3571 0 R 3572 0 R 3573 0 R 3574 0 R 3575 0 R 3576 0 R 3577 0 R 3578 0 R 3579 0 R 3580 0 R 3581 0 R 3582 0 R 3583 0 R 3584 0 R 3585 0 R 3586 0 R 3587 0 R 3588 0 R 3589 0 R 3590 0 R 3591 0 R 3592 0 R 3593 0 R 3594 0 R 3595 0 R 3596 0 R 3597 0 R 3598 0 R 3599 0 R 3600 0 R 3601 0 R 3602 0 R 3603 0 R 3604 0 R 3605 0 R 3606 0 R 3607 0 R 3608 0 R 3609 0 R 3610 0 R 3611 0 R 3612 0 R 3613 0 R 3614 0 R 3615 0 R 3616 0 R 3617 0 R 3618 0 R 3619 0 R 3620 0 R 3621 0 R 3622 0 R 3623 0 R 3624 0 R 3625 0 R 3626 0 R 3627 0 R 3628 0 R 3629 0 R 3630 0 R 3631 0 R 3632 0 R 3633 0 R 3634 0 R 3635 0 R 3636 0 R 3637 0 R 3638 0 R 3639 0 R 3640 0 R 3641 0 R 3642 0 R 3643 0 R 3644 0 R 3645 0 R 3646 0 R 3647 0 R 3648 0 R 3649 0 R 3650 0 R 3651 0 R 3652 0 R 3653 0 R 3654 0 R 3655 0 R 3656 0 R 3657 0 R 3658 0 R 3659 0 R 3660 0 R 3661 0 R 3662 0 R 3663 0 R 3664 0 R 3665 0 R 3666 0 R 3667 0 R 3668 0 R 3669 0 R 3670 0 R 3671 0 R 3672 0 R 3673 0 R 3674 0 R 3675 0 R 3676 0 R 3677 0 R 3678 0 R 3679 0 R 3680 0 R 3681 0 R 3682 0 R 3683 0 R 3684 0 R 3685 0 R 3686 0 R 3687 0 R 3688 0 R 3689 0 R 3690 0 R 3691 0 R 3692 0 R 3693 0 R 3694 0 R 3695 0 R 3696 0 R 3697 0 R 3698 0 R 3699 0 R 3700 0 R 3701 0 R 3702 0 R 3703 0 R 3704 0 R 3705 0 R 3706 0 R 3707 0 R 3708 0 R 3709 0 R 3710 0 R 3711 0 R 3712 0 R 3713 0 R 3714 0 R 3715 0 R 3716 0 R 3717 0 R 3718 0 R 3719 0 R 3720 0 R 3721 0 R 3722 0 R 3723 0 R 3724 0 R 3725 0 R 3726 0 R 3727 0 R 3728 0 R 3729 0 R 3730 0 R 3731 0 R 3732 0 R 3733 0 R 3734 0 R 3735 0 R 3736 0 R 3737 0 R 3738 0 R 3739 0 R 3740 0 R 3741 0 R 3742 0 R 3743 0 R 3744 0 R 3745 0 R 3746 0 R 3747 0 R 3748 0 R 3749 0 R 3750 0 R 3751 0 R 3752 0 R] endobj 3754 0 obj << /Type /Page /Parent 1 0 R /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /Font 2 0 R /XObject 3 0 R >> /MediaBox [0 0 1190.52 841.896] /Contents 3505 0 R /Annots 3753 0 R>> endobj 3755 0 obj <> endobj 3758 0 obj <> endobj 3760 0 obj <> endobj 3762 0 obj <> endobj 3764 0 obj <> endobj 3766 0 obj <> endobj 3768 0 obj <> endobj 3770 0 obj <> endobj 3772 0 obj <> endobj 3774 0 obj <> endobj 3776 0 obj <> endobj 3778 0 obj <> endobj 3780 0 obj <> endobj 3782 0 obj <> endobj 3784 0 obj <> endobj 3786 0 obj <> endobj 3788 0 obj <> endobj 3790 0 obj <> endobj 3792 0 obj <> endobj 3794 0 obj <> endobj 3796 0 obj <> endobj 3798 0 obj <> endobj 3800 0 obj <> endobj 3802 0 obj <> endobj 3804 0 obj <> endobj 3806 0 obj <> endobj 3808 0 obj <> endobj 3810 0 obj <> endobj 3812 0 obj <> endobj 3814 0 obj <> endobj 3816 0 obj <> endobj 3818 0 obj <> endobj 3820 0 obj <> endobj 3822 0 obj <> endobj 3824 0 obj <> endobj 3826 0 obj <> endobj 3828 0 obj <> endobj 3830 0 obj <> endobj 3832 0 obj <> endobj 3834 0 obj <> endobj 3836 0 obj <> endobj 3838 0 obj <> endobj 3840 0 obj <> endobj 3842 0 obj <> endobj 3844 0 obj <> endobj 3846 0 obj <> endobj 3848 0 obj <> endobj 3850 0 obj <> endobj 3852 0 obj <> endobj 3854 0 obj <> endobj 3856 0 obj <> endobj 3858 0 obj <> endobj 3860 0 obj <> endobj 3862 0 obj <> endobj 3864 0 obj <> endobj 3866 0 obj <> endobj 3868 0 obj <> endobj 3870 0 obj <> endobj 3872 0 obj <> endobj 3874 0 obj <> endobj 3876 0 obj <> endobj 3878 0 obj <> endobj 3880 0 obj <> endobj 3882 0 obj <> endobj 3884 0 obj <> endobj 3886 0 obj <> endobj 3888 0 obj <> endobj 3890 0 obj <> endobj 3892 0 obj <> endobj 3894 0 obj <> endobj 3896 0 obj <> endobj 3898 0 obj <> endobj 3900 0 obj <> endobj 3902 0 obj <> endobj 3904 0 obj <> endobj 3906 0 obj <> endobj 3908 0 obj <> endobj 3910 0 obj <> endobj 3912 0 obj <> endobj 3914 0 obj <> endobj 3916 0 obj <> endobj 3918 0 obj <> endobj 3920 0 obj <> endobj 3922 0 obj <> endobj 3925 0 obj <> endobj 3927 0 obj <> endobj 3929 0 obj <> endobj 3931 0 obj <> endobj 3933 0 obj <> endobj 3935 0 obj <> endobj 3937 0 obj <> endobj 3939 0 obj <> endobj 3941 0 obj <> endobj 3943 0 obj <> endobj 3945 0 obj <> endobj 3947 0 obj <> endobj 3949 0 obj <> endobj 3951 0 obj <> endobj 3953 0 obj <> endobj 3955 0 obj <> endobj 3957 0 obj <> endobj 3959 0 obj <> endobj 3961 0 obj <> endobj 3963 0 obj <> endobj 3965 0 obj <> endobj 3967 0 obj <> endobj 3969 0 obj <> endobj 3971 0 obj <> endobj 3973 0 obj << /Length 3974 0 R /Filter /FlateDecode >> stream xM%=r_K)¼DHTw,+Ba:آ<גɑhknn~n-$F鼕$@̬a_B|/)&<-WVRCZY^eC K/[,[,eO˟gٲ ?({%~YcKe1::p`^c~WlQ^/ce?8p?L_Wu|u*?uG~]՘J~#{]gÃRC/G ]} ZR,}FhQGkeOSrĖTzX\ͪ!m!Glksi//w?_.uo/oR_~O1lm_KӖ}x})lkñPNF GnK$K.9>fь4oIvm=B´9 iO?}S*ayŕʶn:N!驚!.Gj8m>LH2InyXЖ]׈cpHKG2% 8 j&ic}[mZ_f󙅑}aX7djU+hrH9$یjI񑷐$C6,T$h6G?<4vIjcַ$Aamgf$cuK;m2B0Busqf- 6}s_$$V.SӖOon~2^cd\an і-bck+K}]5̰x%ImXNM^Q@|r ۧDBt>m{"?GI9%\Go(;n<٣f \5-7KdXRS ~.u !$A]6xs;K6/}'FY2:;Kv#{0Α;pZW 2 F:3˖0}+dѨun(|QgS m8GnW02mfq 9Phx 28``x Nw'裿;~ߝx>˿F@8ա{t~<6/&!: *qd7rB v挂rS(Aޡv1lU,ێ!t`?t_#t!ezytIA/l^~@k^O'3Zζ5MR{snpAT]]4#%5ٲ͸ [ϡz=~o@?.K\(B(G@E= º~\~FTSkA\wY}L׏%GljG莠z6;)x$]` 9GA.\rtJԓ.$B@~^e z=(q y9z;= 9^)pMXQzឣ>Rqw#IPmі>y3B՛Y!(H:GQֹ~fmoK@Iݬ{,G>YHs#ftjG1b8Aۈߝn .v SuGfyoޝѷNkW)u(љjckg(?+_._ʾԛkz/9V9 ˣMi:">l=Z]<OjV{tca}_c&W΃Mv96Hnw_w9zuBoMCrq Gfr:mߖG& X2<"1KBzXȤz=#my*XO?V7>wS?$}bexZZiW꜡D*r.c`[~PR#`/Q#`KS([]6m+[rvƖDCrJ AzẒ\ ʙ#Wt7;gQ?杀~\y|W)=C:M4蹔8Hd v<-ùMn_L@]nM۾I& w_rrYggA!w\w͍z=0Yk` z`ŸX<ڰyg`x1˥A\}Xw?vlT돁^Ν(iOy~^t$Uxԓ] ܲ|p>^G0r`gz]Џ #yuK'w!/>|XG&xfn~emr)3恁]G 91#?rtN@Kznmu4q⺟%UW띁M$#`+WIj6)pa~^O+ yy9z;= e[ãr.~?ʩA>%}ӳ^ܾpܽu&׿2`}|#Rl%vC{&W ݁v|v}]n=_bv@ <@?~=0L ٤$`[Dž]@.Nsy';#욀~\`[> yɭ RRw!tƳpv+|Kwz\ʒ si-)z˅ns#w6O%҅x'b&cPC.NrrO(™8 v@/ՕYRѳf\σkyv@og(wz= tKѾڣ7ArrI=б MnOR Z]nysx?j)띀^O#\B]. z9zæb띀~@`ΟEcx0n&ȯ !fKo杁M.%}0M(G&|K]NruR{MY~L~^t@+ ;O _}?gvf;='ȏ'\ P\9M g rl, Av 4`~dO3σOy;#K9#:OrE''m:Sϻ~Jm?dՖ6Er'ޯoX lr1=eBޡ? |sW ]{{_',K]GӳpQ] տ~~ lr9_WJ3x~^U z{*r~@?~1ɵ PL $` ˥57yq;#cw#3\ku{}3TOJ+?_'lwcZ,ᝄ떁M.Pp2˕3-~fúe`kWfod끁^Og? 팁~^3%igN.K].>.r u<}B 弝1 vM@?.-܅l]Hlm=X܍O`gr9]5x=Sz'vӂ8CMOujve/]sf}̀sgSF9?x'%`sG_t߇\3}^^ҙ[X{2ګJH4wV+x{/}=s;F&um$iYogo$C_yê/PGo+b( vR7 }Iv@an=Q%dn#=͖m#+k;GzKޣ]2_F]2jv$K2^9y=ۤ%QY!(h^57(ZAaVPO?ר-AdN:7#DP$/fŮ~k{vc}mm?/ќݢCyIh[> mg)[u64xM3 #$SɷҶ|&,agؖ!,#{6C_׷"˶c}i[w$lW_CՁ!4O5M/hֶ33GCj37Qj`Ss&6:\7fO rWS$N.W/[d} z[L(7^Oߴ~\|&y(W't=3ߪu t)ЌOg. 7Q銁(7d쐁}޷s?G9z=hnG7@uOyσy Ky{_Gsuz6ȍ''em+?,]u^ G*J G&gP v9;0h@/ ޟ1Џ ;<njAOvtՇ>@?bgóIԼǥQZ^t?퓁]><>+|YyW43Џ ?cPxOv)G [˻a9h,J"h\eIKn<)hKЗ U}NG_ە(80+m35`rI%ݍ$AdJ$fgKj؇=Cd=,=.K# Ss$ ڂ25B^k0+>_Vo$ %V7#DЗPP+ B#(̊˛(XJ%(X<AaYP]>rľKߞ9qkwdA/Kh#?3xڶkO|OV['??o~o?O>/}[q䃗JZof7qW:d[*Q5 HY 䖐Kޖswz.mѭr`Z_לYJv}ϻ~Jxu6g?88^>z`,r{ ; G83g ҙz❙8.raޣ uϋ9eB]rr¸0\yqa`r^Nl\9 m#p݃F)go X _A9F)bE= q!`۔f M^r[zFۖ^Z Pɵ^|G퓀].~R=L}Ԙ[LxaWwv= G'3/ }{\2mgá֢݃M._X [-r& d`ta=07X!\UP(Gj+ z27T*Q ƅ].y``k杁;CN`g yЮ KhrUU-_[r o-9I&גL(Ov$ƍ`ۯZ#`P;I>1`_t͙r;:x[wWnks&׾e~0 r&PnWōίS[o73#ۯ O #\ rW#اu]Au`rޮu5v&j셁}.ngMfs1z{wrU]9[vR OZ/W`o\RrbU $k<8`gVrSxdnnTεgH|_ a+&ߏ]n=InO6lז#.嶼_s\iW}{/ lr{R<6-!>=vn)6%k`{\z`:zyg`KZlr-$wr,g#ԓ]_[=Οy{9yryy-<>ζy~?th8?Y>''_b?~\(?ngw WPn*)/])Q8.vJqi!QW(>~Mz.1Yoz#۟[\tܖtH<0e;p#`duEg7%!GngMEzwܾÍ=?ig؟԰b;qE:כ`\?]_J>C0. r|]v=bqqS >qX |}<{``썇r 3z]T2 \Bԋ?θVնSg^Rnp\ڽRO359R}jr]\(t |<ק-^k'\= lrEK杁]2U_wڵ rLʵ<Ux{a` Qd`Kg r5Oc/W7Tv뙰<ݿH۪{\N{zuܸPn]/[˹;Pφp(瞷lr߮e."*nw>+|gNx7Kx^,{T[z9~@/V?<{g+_ #* \<+Pp\c׳]M@?.~1$`NB Dž^,G@?s\rR{ctf 텀O`<{F7ϻ~ߪ*e` w>+|=znbE揁l&ana'AuPn~n_b`[A9,dQO ~\n?8r0zЏ 5I@/ zzfl<;Cx\1\re=C] G.,wr`k\FCЩoL9DMw˷ LtU}v-v{/~~CsoA.u#:d l 䄺/H2}p>~WKK;Bs}L_9 mӷ58 #T(Fh@aVJzs}beZQ-2~ǖ.o kz,smzݦ-ct۞b(ػ0++727 m/ ʞ0WJ+%g[E]VE'LiWڝ$A*o,0~ihkm)2n$rSeSo$CA[!yK( H2e,!ۑ( b6}+T-!.Gr~ nrn얡.{n 0+ m #P/Iѧk-E-q(n) v* TβLΘ!vL@h9܂9*c('H?o%ne~Ӷe*7dS7k,~S k0BL>ś|{*mSK8:pLٰh.{UmCz0wqxvɪm$;$C>@[̖8D汵ҍY c`3g]2C'E~~ǖ _0BK Z geh\2I(靗ģA(Τ<>:IQ[` c( C@`}^۞Gnt3oA +^[$vb72Iс$CឈcKP[o} ƶ%69BX٥\> CwmϿ'C_a[{zvy\x' YE亟27d(HF?0c OуyK;'zrF[r$Cߙ9OQ[>ult3C9o^0+ Io}=oo+x6C1M팁 y<bh׶Q@QxOl%Gkr0?B3:uL(RKn$S73ONr:kŒì0I֓uIvɒ;SKg1 )$8dLQ'cQFȯl¬d(XH2iOM '$ ;ɯ]^ l"!i@Nbp1$]̘[rބ0+ ЧkЖ]NF(9eYqqͭ}2mhv`M͒n>otIpb@{9:k]2 'V( ( z(O¬$C~A[6ub(JBQVm=Kk& FhBs¶Ϛ 7l.ϯ܌-C6dۂ mCn^2O=y<&3kΚmz>%_S|I2K댅sIve{@ޓ~] Κm]%GaQwᨷ%2kЧ:_ ad>Si_~w%E:̟(${8-E _ e{zKv0?B ׇqQzVroM7m.1?SIޗ擡~>st癡<ۜKF[Gٮv5  o)$>-EA[0+ b(̊Og_o-|qtSЖ},_ZIRb&_g7ꌼ߻3S`ڏƒTb[(?ů%_=Rܷ/ӤQOqfvu$Ad5w0y)!I|x=;|Wk1AAFmLT}qo ?xY^^/(^QXЖ]ҮF]r\ EA[EA[o}OQX }x;,HIgףIbt1K:'IrFoP5Q>+ חs+VG}z+UPs($/oP!(  Kmr~$p~w JXIR;눵p+BvJ;ZjcӏA(H-Vvb;܎#^Pϝp;J2K?D._Y(Q~0BޛPī %\v(VEQ!~eSF{¬$C@5_ENG AWO:뛼˘`eS7d݃'EduGۊ]؇$A{|/(9|6/^jS?`J6@QOQm vn2T}qGeh+7 v2ԯ!vɸ] PK`(l>•=;(+}#.q.MPi?hb#/"O?OZmI'WŞg,#7-2+qKNCoIv2;bIdg/^zG-~&uMX876DЧ/m}^u8Hm%lz3B ZYah 'rc I>zmGWCfSxo9 G'§gAytyXybE'yXybE'yXybE'yXy"D A'Zj/PIzTL N U0vIK%Yp|ǎṷ,C{ʂ~ÀHŸOZQ6.C6=KZ{ǿ$Z?tߨO8vkՁm)v\u9: y kWN-r>ž<Z:u5VT@z߉$go[+W_._y&0*#kxEl^:a]1S.)$'2K6IĨK]r-CL/ ܋]x=7EE"a"y0x0y0y0{_^ˋ0Ʌ7 ‹EO""""""""""ˏ"7ys[4onys}:oؼ"؟U?`VY% g*؟U?`VY% HHHH[Y_Kț[e*V7Uͭ"onys`bV7Uͭ"oȼ"̛+"oȼ"̛+"oN[_ysE7Wd\ysE7ʼUͭ2onys̛[E*V7ʼUͭ(oy~y~lޜ).E'onysț[e*V7Uͭ"onysț[ɛЌ}ƋfLٌXT.vfX]cƋWvWI72^lo)卅I. 2^_=n@?-ŶB3^*&2^&e ,xP2/whPsdτ<6 cs g3^l_]}~GfMw0U 9ē'Dm_]}Bb> ~WP4qWP6eqWP$ %(K"lhd>܊ۄ 7j%"eBb"eBݽڗxP42m/ #D˄¬$7u6_D3^ne܌CSq3+ uK`(H7鳊i VlMdfñyb-Ȍv}M'd4H{&8Ol<&8Ol<&8Ol<&8Ol<&T$۔[U*vi>zPxdLW3#3^lJO OJO OJO OJO OJO OJO OJO OJO OJO OJO O'F%RgfC 햡OdQ u/0Bd"eBQRdL(h[D 1FPy[{A{A?2ŊXEEZ$GR^P^P^P^P^P^P^P^P^P^P^P^P^P^P^P^ 3IPxۍ1ߘK/Im޻"2^&FD X߄e2m/ #D X4*'om$C]e}(xb[/p02^ܵ*d3j/miR12.b"eB]ˤd8mЖ./Qd$EK/Q8eD2^8eD2^xEK/'f$dK/If$dK/If$kx "%$2^x #%zwc3^-eyW.@reyW⮞]=zw,YճgyW⮞]=zw,Yճ:%m}2 ,3^x2%,3^x2%j/YddEK/YddEK/Ydd"ꔾf}"%ˌ,2^x"%ˌ,2^x"%ˌ,2^x"%ˌ,2^x"UZ#f$ѓY>vi5xghlM=5mnh/vPP-]]]~ mkjedDb[ H2d 듡`}1P! }=͵\dCů_~E٣xL>ś|{JmSͬg%JP9--2HNE䲿އC]/-ocO[Vl-}##$#.9Z! Ɲ&E~d|&CM=2O턁%PIg|/&m{jvq?G&9ې>vIu6(HEA۰G%i;0B>G~Vn)-Oa/it6q>6MZ&o`.@.9Y;'PI\35EAj( [$EMXߪ}}:%:SK=|7B 풣/Yah\n, P,~p1 lqU},6-{`TiaE}gᇳ%խSlAX[Pz=[Pz'c &ťo$b> m{2g &E@KP`BA-PжQp-P}l¬/0`B]\/1`B],Ub ;<-Pv1Ls-P?+9Lc n$-?` d`}b  ڂڅڥۅ7.{#P/6PdXCdO IC m1ԏ[>ʞKro#O'jlۑy&CM=&0 E]\F...揫 [0^[X+#P?+ R[HnKBZf@&V-]򺋢%PKN,ϙ1AIQ/ qzm@Q?BM(g<E%׍$A;3ݟen8IY Eㄖ@Q/ GQ->BP?+e 6ybĉq3NV>W3cnЧxoxO>x:nFOA루pJ.c&FunPU9(p\'}z?rMv,ׄY>>e647PǧX&o`iRF)*W(%a/OFQ?+h}Uũ)긍X,IQ܌P}0qU7P/P-Z?͕?aPF~Vpd(Od(X1ק9,9,,9,8,9sLřggəgZMp&9sIgn37MpYrYpYrYpYrYpYrYpYrYpYrd-Mp&9sIgn37Mp&9syyyyyyyyyy,8,9,8,9,8,9,8,9,8s $gn37əMr&8sy ^\aYpYpsgHq;#X"/$C=#>xU #D HG2>A d}$#D HG2>A d}$#D HG2>A d}$#D HG2>A d}$#D HG2>CC}}wW}$ߎ|H*bXd HG2>A d}$#d HG2>A d}$#TIo+>ݯ>n'V|W}$LGSj;jx HG2>A d}$#D HG2>A d}$#D HG$G&ȅ%PԱh u0ZE @Q|פ(H8EA[NPs(9}ĔHԳoa$N;^` Io}m1\EP7+7>Oiy2nC_ 8\{=lՙgcJBQW+oEx}eEgQr:xm8֛bヒP' 3FOćq]` P>\+b(2L)!>WE7e}#n_y覌充gd7 )M9nAvSrݔd7 )M9nAvSrݔd7)RsꦬFr nAvSrݔd7 )M9nAvSrݔd7)wMoUE=S*$IQ3» #4rݔD7 )M9nAtSrݔD7)M9vA){s8:8(̣3<:(̣3<:(̣3<:(̣3<:(̣3<:(̣3<:$̓3O<:$̓3O<:$̓3O<:$̓3<:(̣3<:(̣3<:(̣3<:(ţ3WI֙'QgdyuI֙'QgdyuI֙'QgdyuI֙'QgeyuQ֙GQgeyuQ֙GQeyuQ֙g:(̣3<:$̓3O<:$̓3O<:$̓3O<:(̣3<:(̣3O<:$̓3O<:$̓3O<:$̣3<:(̣3<:(̣3<:(̣3<:(̣3<:(̓3O<:$̓3O<:$̓3wvІlU4wSɘהFYSE}g5QԔFYSjJ)4N4$kJ)M4$kJ)M4(kJ)4(kJ)4(kJ)TY_ԝpEMi5IԔ&YSDMi5IԔ&YSDMi5IԔFYSEMi5QԔFYSEMi5QԔFYSEM(jJ)4ʚ(jJ)4ʚ(jJ)M4ɚ$jJ)M4ɚ$jJw)4^4kJ1I~?f3Lc&1I~?f3Lc&1I~?f3LcEcEcEcEcEcEcEcEcEcEcEcEcEcEcEc&1 ~$?f3ɏLc&1 ~$?f3ɏ,1%Y$?V?V$?V?V$?V?V$?V?V$?V?V$?V?V$?V?f3Lc&1I~We33?f3ɏNJNJNJNJNJNJNJNJNJNJNJNJLc&1 ~$?f3ɏɏɏɏɏɏLc&1I~?f3Lc&1I~?f3Lc&1XXXXXXXXz9Q;8ų"b a&O8misr&99IN'gT N$'g)+++++++++3əLrr&89 N$'g3əLrrL"EprErrEprErrEprErrEprErrEprErrEpr&99IN'g3əLpr&99>IN'g3əLpr&99\\\\\\\\\ NMa&89lN>K^\]TkD uύ$C4h;X=pNnBP-FyP}^'-uBaV:G#uBUPrULyЧMyP}^'E E YE u܍$Cw,a,Syۧ YD I}^' wPǧH2$w)>7 uӍ1v}^a}N3>fLy?4鳊>1XEWl~}eOs>/f[UȺo ul{C 9c}A=u\-:bE=ݦw)꾽x3B un$jne덇듢7O~}RIqg(hE?>io͢W6yzmv,z~噢 vZ{mgl;x#PǵBQc(ЃQԱ"h"z;Ҭ #d¬d&z{<Yl,z*"Jѧ/m}Ѷ>Y&z¬ Ǎ%0$Wog=yh]ޑvqG)NOc)9OGħ >eB]F-.|ʄqUG)OPV) # YQ|ʄ}}S&Ա|ʄ:bOЧiŧL(J >eBA[ŧL(S&fE)I+>,a,S)`}?|ʄS' wP d(HR)7 ul1V)>S| | Iŧ@)oʞZ)/*>[Uxg2)Sj;j(k.r#P*c(pQԱ"( OPV)~cVqW|.y~>j !J%"O>& d ͻ>WEXt{Wy_yȻT)2߸#QԱ7 u ?euYyńLܑvq6ٳP$Uޅ Ry .s%(S7:2b*$7i}!oORu x˞S EAR]x?.2ʻlwwַ*攢Oo_xō5wbߧR] 7PTy`}>*,^Wvq_e,uTi~aE;[1w1ɻtkw!Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,Xc͢5:,QcՒ2BԱfYǚEkuYԱfYǚEkuYԱfYǚEkuYԱfYǚEkuYԱfYǚEkuYԔfYǚEku_yʻuYֱfQǚekuYֱfQǚekuYֱfQǚekuYֱfQǚekuYֱfQǚeku(9ȻXe*.VwU]"byȻXe*.VwU]"byȻXe*.VwU]"byȻXe*.VwU]"byȻXe*.VwU]"IVlCֱ[Ģ,4?mD99do* G!znWIɱzW+}&} 7ǎD yzKSgYOEm{YgYOg~= rfMgQOe=}YgQOe=}YgQOe=}YgQOe=}YgQOe=}Yk̚ϲ>z,鳨ϲ>z,鳨ϲ>z,鳨ϲ>z,鳨ϲ>z,鳨 ^WgQOe=}YgQOe=}YgQOe=}YgQOe=};gQOEͼ+ϯO&x] ^$k5uM&x] ^$k5uM&x] ^$k5uM&x] ^$k5uM&x] ^$k5uM&x] ^$k5uM&x] ^$k5JIuM&x] ^$k5uM&x] ^$k5uM&x] $k5g*^k5uM&y]I^k5uM&y]I^k5uM&y]I^k5uM&y]I^k5uM&y]I^k5uM&y]I^k5uM&y]I^k5uMM?mak ihx7lIjc5XMp&9VIjc5XMp&9VY +Ar:JЧi=XMr&N $ǪTY. $jc5ɱXMr&8V $jc5ɱXMr&8V $jc5ɱJ, $jc5ɱXMr&8V $jc5ɱXMr&8V $jc5ɱXb}c5ɱXMr&8V $jc5ɱXMr&8V $jcȱXM ~:Z>ͱ~oIkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkLikkkkkkkkkkkkkkkkkkkkk|gkk~XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXћLHomO,KL>HW+}E_ZgYe NcQ_Zo2#"X"Y"į=E,,,7*,,,,,,,,,,,,,,,,,,,,'y"X"Y"X"Y"X"Y"X"Y"X"Y"X"Y"X"Y"X"Y"X"Y"X"Y"X˯X`-d-`-d-`-d-`-d-`-d-`-d-`-d-`-d-`-wd-`-`&%&X"XY˺|\b--rֲbPǏH2qr>ɁݥbPXT儢`-'U)rBaVk9g?ZN*&X u<`;orrBަk9()X mk90BPZNc-o$ XK}LZj%X.VL K? ?K߷ 7qo-Ct#Pܥ$g-o$8c(b-a}N3XK 3&XKC>7b-߲=͵b-ů_Txv;7dS7v>P E?v#P*qQq( PV~cXKVqWr>;bLP̶7 3KIϔ.{z댹h$ES1('D1{x~{ZcEpP V(W( ;25kš5¬`AL$ 8mnFA K`(Hb]cWowX *|89y `Nv3'充Rsr7 uZEㄻ E˅ E={Gqr #8 YQye}Zh@rַ 8%}u,[:f }}i܍y|89|89;&}'?`{.BN+'WCy7qNcTz|˺})}.GJaâljiS-uv?&{` uIp#&W͵"mPO>:iN 6$ۂ B[lru-[ t mNTGA7.yI9n򓇡ż3ckГy&ky>Gd`+ #9y?Vuzu~ lrӸi7 iRݸ]vRC)JA7 7yeW҇ ,˨lg;1A|;۩}Nx:V]ְ}R = _G꙼r\ic=P&7.M(# z`S$NO(XR=SB;˭\P6zɏFuMw M&? 6t~KA~~6M%ڗXlṇOn\=my|W)=c^#@r3 r ~S C텂Un6yklȘgBA?RЍ }j?>穕&d`vĬif\䆭恁N杁NO3qf/&-7 j`hlrӾ2;\?Vhgru}&7`\Xƣ;?/m>s<.U_MY$m%qyybWƝ*Ga9<Pн?|,ʳ!"CmBdU1 5)x6 q=~J-~6_-[T1cnQ"Es<U-[T1cnQ"Es<U-[R1cnI%sKέέh[![:BlhYEp=" HȢYdA&Y4"Xii"MH#iEbEB,hYE" ȢY${,,EbEB,hi"MH#iEH,҈EfXd,,EbEB,hYE" ȢYd!Y4,"fF,44bEH#iEH,҈EfF,44bY4"Xii"MB,hYE"ȢYpה5,"_f|'" ,%}T2)$L̈6IFI~ʘXNem;$Yd2fƷBdL5XƶW}.w J>VCi8~)tv*f4^SԶS3\_SS0"k~KEv6A44WȮ5ll!_VKq@u.>1_OuO};1ۍ#ivH;Am;q$].Τmg~TěwěhvJcf]Hcf]Hc7HFKnJ/Ҙ~ƶ_ *ư]=(SL0'x Y>1>1ϮZ@[7mg~OP?8K]qѶ:eE3kA[ߕmgg>6b-kmQ65Q!vyB3]3L313ھʘm\1־k]בK.mL2%IF5Z3}r=y+13ھʘgW/Icf]$ mS/44fFۏ#elYm)wZjZ26A,&n_aIF;~"kFh]3Z'F:1Z׌։ѺfN5ubuhkFh]3Z'F:1Z׌։ѺfN5ubuhkFh]3Z'F:1Z׌։ѺfN5ubuhkFh]3Z'F뚵:1Z#FѶ~ %|۶}~ɴ_ng|&Y/OileuE:H,҉EfN,5tbYt"Xk"]H'E:H,҉ fN,5$tbx=`Yr"Xk"]H'E:H,҉EfN,5tbYt"5tbYt"Xk"]H'E:H,҉EfN,5tbYt"Xk"]H'E:H,҉EfN,5tbYdSKUs֍^7i)ڌ?iEHilﯩ_^ankF&mfE~wifL37#f17͈fnF4s3bns3܌ifL37#f17͈fnF4s3bns3܌ifL37#f17͈fnF4s3bns3܌ifL37#f17#f"M"tuFHӺH#]i].Ҵ.HiZi44EE"M"tu_ aίcM+~S"'!Vk` L37#f17͈fnF4s3bns3܌ifL37#f17͈fnF4s~͈fnF4s3bns3܌ifL37#f17͈fnF4s3bns3܌ifL37#f17͈fnF??#iϴHgZg33LF??#i}44 ɤY"Yd "Xdh"C E,2EfA,24 bYd "Xdh"C E,2EfA,24 bYd "Xdh"C E,2EfA,24 bYd "Xdh"ɏXdh BA YhB3 1-fnA-4s bnXs ܂^[h^B3 1-fnA-4s bn[s ܂[hB37w܂[hB3 1-fnA-4s bn[s ܂[hB3 1-fnA-4s bn[s ܂[hs s ҹֹB܂tnunA::B[h I [ک-4_7Sow_kZfƺ]ɶ_vw^g\kNnug4~mV๕׮zL/]'] 3]4 [7@_!:_gu:MwAuBW|e5@WMzl*@鵸|י-:؋yD_9~Lp?ޏI /us(zmhI?bY)`-}Kcwiۛ)2-ud6_7Oa<\[O<+kqqێj>qYK?J} D_ObHX7zz,o!YkvlI?}Bzxce=<ٲe?\{{_4sTb??q9x}; zWwkk1[K]곞t}/^ewT#j-;;szݳT;>Pm=ڑsz*YUݳ^xA2 m\Gov4/lG{v4/l~_߿׻ن7Tgj|"?8F^#׈k5ax8F^KcỆא ^C3jx ix ix yx^ߏuن7TlkFFj@Q(Pm6 TFjxIm%Ϫy 3`<2fy 3`<2AAAAAAAA>GG(Pm6 TFj@QTFj#GQm6rT9Fj#>Am6rP9FjQ(@m6 PFjQ6YROϪ2:c=PO8c=PO8c=PO8a=aPOa=aPO}j#@m6rP9Fj#6j9~[+?6B f:Lg 2a3t f:Lg 2]LW t2]LW t}Fj#CPmd62T Fj#CPmdZ3T FFO"AY֖WF{[6?6F#悂sA\P`.(8 悂sA\P`.q.a.q.a.q.a.q.9̐Hmy+BjdmBjγF] (Y'Dj._6Jֶ3}B3諟Lj.Lj޳RfRucz~Im17GFj#CPmd6PZ+_ۯWn6دMfv~m6=~mڴ#۵V[ڮ4?%4L?_kl TVUa=n~m7Ux=/K=1O?_k3d g=7XOPOXOPOXOPOXOPOXOPOXOPOXOPOXOPOXO`<\6Ӯkq[>>emsd}g_L7M?_kڄnL7a M&tf 2݄nL7a M&tf 2݄nL7a 9fدzE>!em>nO<]QUv3vOhI1 {~mvuدJŮDv}E~\0N?_k#fY:GfQ+6D+a6Y۹sACfa6Y'd_E_دM֮3&kfد/=wRTuW6zOem"}k'~;kBkm~mWf٫v׬k_on7 ^_OԞ[]k?{^_?o nU͒~dmY/ېo~9>h9f9D6rrdm=im)@b9Ċr+!VC(XAb9Ċr+!VC(XAg?>mr2~, >C,C, XPbA9r !.~"!b-0dL3]@ t.0dL3]@ t.0dLp}(C!r9D"@(C!rZ"@(Cn!^h9sa4:s~\08s\08s\08s\08s~3QzrG9Q pC8!rG9Q pC8!rG9ÚQ ۫rQ9r@9r !C,QbA9r !C, XPbyI.9D$9D4r!CDCDCD#J"*9D$9Dw-|yyd-u/gn\;mg/3vtkW,w-|>,·|X#?e;RG9ȇ߿=bu>,v{><~v|x(xx3v·9W endstream endobj 3974 0 obj 36264 endobj 4055 0 obj [3975 0 R 3976 0 R 3977 0 R 3978 0 R 3979 0 R 3980 0 R 3981 0 R 3982 0 R 3983 0 R 3984 0 R 3985 0 R 3986 0 R 3987 0 R 3988 0 R 3989 0 R 3990 0 R 3991 0 R 3992 0 R 3993 0 R 3994 0 R 3995 0 R 3996 0 R 3997 0 R 3998 0 R 3999 0 R 4000 0 R 4001 0 R 4002 0 R 4003 0 R 4004 0 R 4005 0 R 4006 0 R 4007 0 R 4008 0 R 4009 0 R 4010 0 R 4011 0 R 4012 0 R 4013 0 R 4014 0 R 4015 0 R 4016 0 R 4017 0 R 4018 0 R 4019 0 R 4020 0 R 4021 0 R 4022 0 R 4023 0 R 4024 0 R 4025 0 R 4026 0 R 4027 0 R 4028 0 R 4029 0 R 4030 0 R 4031 0 R 4032 0 R 4033 0 R 4034 0 R 4035 0 R 4036 0 R 4037 0 R 4038 0 R 4039 0 R 4040 0 R 4041 0 R 4042 0 R 4043 0 R 4044 0 R 4045 0 R 4046 0 R 4047 0 R 4048 0 R 4049 0 R 4050 0 R 4051 0 R 4052 0 R 4053 0 R 4054 0 R] endobj 4056 0 obj << /Type /Page /Parent 1 0 R /Resources << /ProcSet [/PDF /Text /ImageC /ImageB] /Font 2 0 R /XObject 3 0 R >> /MediaBox [0 0 841.896 595.296] /Contents 3973 0 R /Annots 4055 0 R>> endobj 4057 0 obj <> endobj 4060 0 obj <> endobj 4062 0 obj <> endobj 4064 0 obj <> endobj 4066 0 obj <> endobj 4068 0 obj <> endobj 4070 0 obj <> endobj 4072 0 obj <> endobj 4074 0 obj <> endobj 4076 0 obj <> endobj 4078 0 obj <> endobj 4080 0 obj <> endobj 4082 0 obj <> endobj 4084 0 obj <> endobj 4086 0 obj <> endobj 4088 0 obj <> endobj 4090 0 obj <> endobj 4092 0 obj <> endobj 4094 0 obj <> endobj 4096 0 obj <> endobj 4098 0 obj <> endobj 4101 0 obj <> endobj 4103 0 obj <> endobj 4105 0 obj <> endobj 4107 0 obj <> endobj 4109 0 obj <> endobj 4111 0 obj <> endobj 4113 0 obj <> endobj 4115 0 obj <> endobj 4117 0 obj << /Length 4118 0 R /Filter /FlateDecode >> stream x]%=v߿.!sFϔap 0am1x\[ɓ)kU=[o@TzIS{=+_/c|ÿ_q]ccՔB)6 oneyw_-o/ـgF;r{zTl%xC1yfۼw0`,>>1ֆ-?* &74_1?ί]JMgW~]@ݯ8b~M!ap7m}Bp 7/1Ou_^rAM0o l͔~jO?Zɗ!΅GKwi/w?lmۗek/`_~o/!ѻגޞm1nG[~Ĕ_[[t`e_OtǜBwH]}3 :Zcu-q~]v{m>qr* 7ۺa>=S}xZKZ`hY4dhgqXh-C3׫ǧ>8:ѓ$(0qZ݆۬úkvf4(0Ha2L#|yYL[*ˎF#r4 O }$hmpxph04M԰Gi77CͶޣxC L69-Ok(PFL vfq LGZЧiC?h6<'qiv5ԑ50\yѧɘL_HϱnLJ /&E3i_GG|rҷA ־E~ɣ'`lqEQx6r}0G;sOIY{O_ZЧw!fEv9 L9 5CrF8%`}Z=DnҶc|6"n>w7K>[냾qaN91>}kf6^g`1\? }-_v\m6_ c_M2|\M#\b0A3F:zpw裿@wﮧG8âݯkd7 4Gc6< AsZ`3 YO;XkupLgМ۱9E/4u~u8L2ƶy  x|;gl{l3_;W)hix?Ss罫m-&)h{clnpp;PwcLk#41t8vxn:_B= ZVO? ڔ{ ʹ`.hv4Ǻ_~Ʃguc3G߭3]ˑn!<|ov'{)3hs-g~?{I -(hg4Dž#9vbZLA3~Pw`8Πvsz^)Z[caGQ{c'vyQ{GS;9 L39 5Q{f0*IP{xZ3Λ"=Y8bBk(ZAaT獣` $(X\GⱇsD=wa7ڍtIH_}¦ACs֭ h#RXoxhMEv \^ߏ&v:cHal6 O<^$GOӘ1vmn8bm>Cבn/Rϝ\: J~upsge-dW ú kmG( &lmcB`kYO 3m<`hcۖe}Qݔkk7;mgvm5Y?iS{0_}[Xj6 ,ֶsj6̧ k!𳶸}$&wGf{}Z!v+چ 6~q)K†W5^cWWf+i?9}FV̜h.k7~ /~ٸ lk6ᮛc̣j&YO5efyvyfü1lElg8lⶅCx%C<` -`k=ۖG&l|ݭga0l}e12[Vmm&oƹmf&jlƳnV 6>3`;[v`.`k;vQ`8Gm{f솜vl즜"Oa?2(}68IopV?f7>woS?\|I@J٫?--̫svPm˺#mDw2;ogAn8^}D6gTG S{6˛w^:ϖrg -/_!ț@#)h%Tvⶭ$ɔp܅\G@Q̅(8x{`\yyAeս#]{8t~Mރ#m' ;/^?I@˃@@t sm_&ЎvmD,3V{6Grݹx\ q1b0#lkgއ>/%^p Cyn -A vBA/`g<>B; 8xL|~! GA;ƿ{Zuխ^4? Ig/>O _}on:y0#WOsKxȐvnO!:Wc")y{{{c<^ {oIΫm=}qyޕxv&{x.hnxhi텁zQvZb^Ǐߌ;;o* g6?^{~Q*J`1m#;mX@;_3Ў; ƔY^k$ൿ~!`mYǁ׾yN@;#m'5m<"|r|0+ ڊ]XGΫџ#+jI Οq0 #{@m;O[qжP^:k{*8~ <_<^b} w 켶:xGWO/켼!aY@Nh~Wh<Z;v5^crn{C3CąX{0ζ~oñ󖁝7nLy=]|l"ig ?JټK C{u ; |W8x^9뎂_bY;cm b8@;v>0iL x<ivypi8p+;-쌀`v`]ȋWuHK2NG?stg3_r܆ʕkǁ<vOQH/ p m -v@/v3Ў/ 켸Gm'tmuٵ4ϫu;ڶ\ ;8x:Zvcg%a}?jvmK,1c?2Jpu϶~s??w(ۿS?~:,7W(q>wq);aaRťzWY^(MKDʛ~>/%fH0K4}x6%.n۷8<"'hֶD/I[}+AX2 켶K~{y^<s"07{z=HM; y[:?2r}(8xRK ϝ` <;h\UNA/#>qv@;֮h ykh'f<%=FjRΛ-ꥶ (y{=EY \Qny<MSWYGYݙvIx?^c峰$8x xQƮ㸒uP$|ig'j^S풶>D:x'oޯ-o <+92w#KQO>Oky=[Gig<$FwQվb;/kKihy=kx즠mݧ2p3 G `;Xx%OcJNUd8܃֮_hCn{{ 'rO? #OؽA0oy}-/0o8x`y[fod@Ng; `팁v^1%igG ]G]0ב*AZ3v] #qyK'w!/^*9+f;wc$/h w>+|T;ôw&'j#>C+` uw}ooB럴ya%?J.K=#}iS,կmp\ejVsgeX-}/}=s?Ix68$Qogm/f9wXrS ECQ`o m& =ky¨%,Gzn#*gv:ͼG3^I ,5;`WL~,g7& AAiBF}ڱt0ҹ!"c^(J I׀}vc}X/]~1h[>Bk:Uӱ$Sɷ75 c(>O&򞪵93Ύgvۜ=c6O1f3ż{e}6_u-&A=7-`][Ca*W_>Q33GC*QdSk&v^MVL~M*{j)8xSzm3!om;m&~Eh!_p&ЄB3P޶|7c bd |5Aޚ DAN DA/ 8b 㾟s5s vl4+5>Ɓ&4'jg[jZSoDL2i~]oo^Vҕ<PpW;/S2>0pҩA1@Z _` hx|vp•B@8⊾ "QomײIk t_\oyuf}w~_'YzjgYƮ| W%3-S|>0?oTGCV`Fj_Quxe ձU8:+]{{tVV(0M G&ZCFO((X2 ևM,bG%"/~c }_E#y}y>ś|{~skx}6DPx}(3ѧxoyO?LG\;dz m꫱$3^tq}dl>G=K@;"OA=}t,ysC}s? }hokb8bpvT Y1*}x Ạ$E؃/`J2z|gk3T2 l:e'C_x^` % \%U:9\!MCRڈOs-}Z,9/~Rd(2aT xzQh-0{w8eS-&A3GHf=*i!f[N=Ϳ(c#9 L!Bknz\a( O,WA&A־}1Ybn &OBkaGP!>¨b% `}ZcfEi#TgD^#TҺ(qzh}X|_?Ǐ?z>7~.;^m?x7|#qS}go>C[؂,~]{ZܴD^g m.=lk\C[xέ֑ZwU2pjϻ~ҷNzW^؟]:}^/{Gu[p3A=8J$X`6x?Fu!^%,og,/~!]7(øNUZ8x૔Y= 8 pg/WO)?vLx{AZ,ﳽ,CC{!`ja'/&<>+|d;k8b;~\TNW8g>O _?θ.u]遺= %Zl2p$S/ox`ksy3G;lǁjPrkgW`:mu_0&'%𧪾g$ 1skotfqx?3yd_Ac/~~G,凜ٯPpyo=\;<>+|D;7θ@cgV#ݮ[_sY[`y1pp\ vJKƬ[)8xW]R<Ϯ[)8x۹/џB`2paJGag)/Yk1exu;=y{=2p<0|_y_8.ςGe< / NwsS .Iws |]UO0p~VD%yQ?qgy5GN^mu o$;8U C77 KqGܞP#\XO0ߩП *IqIs>KmMP|(6h;pa=qpMIgP3usm-08.#ĞPui _;_qH=esvPpY 켜p='sY/;}ߦfxʀ0ԥv_kG$ K*ery.\R3}❂i]r?˝/f~J3~3$셁` z݂<6^?9| Kf`mtf횁y 욁]3g gɱ|{gЧh I=\9%E׾%2p[8\k/I}-GSyD -oUlE!|*r&8|ـg$|= * AU:*N-;tMϒy3Ybyy%U~-=h_E`nwgUu{_'9_l)UQ9ASE*e3hy^U^*}^? ?W8xn6#ό%Z /G9_Ə&aʆHdKvu7vhŎ_b`gGj5,|!΅8-Ɲ`gvM@;ֿ0ɧ+{{Eq_eZ;Gվ<]nx`MtNU4-A[0|~!਺@.pTOOp$AW-=p`JD#b;w@;x^0>#[r{G=}.жy,tތ=hiy߰Mr&8z!#@ǝ 5pd\N^:^8xׁ5 g텀`/"}7~vZ޸Hoi |[ۙ{Dnw>+|T;{qZo9C֮ST5ֹty3~kzlvΐ-:R[fMyv1pdx~^'hg:[,+1Ə/ay<5݃#g?ԃK Zݯ0жA~3qv܁G1%h9\ dmcA{=x^J#~:<l6DV/Ʈ~yD@Nж/+asaZ^/ ț@N{@/ӧ e-] <Z%3֌Y?8wzø3pd3 y*zה"{\ 6GvkZ _|g_hxvL9f,{\τze(`͸m.v1v^pѓO^pg ś|{~{k/}`g\a(X&b (7=WfT LBk =ЧG1mAk 3_i\0DgZK`-923 Yh-Co,m~:X6Xߗâ%3kf(YyOf=/ ¾('0G+}zh|ނp\)M2t ngZ (J;>(#)=(0-E` c( CP>Gvt+f9DzoCٙMwLZ$r7e舓ܴOľ%(y-/ml|k0s}]1#ݞ}Of~ٗ5 \1 _d.t(ڙU7d(0{p?b5Dz f-(9䖛2s,=o }GuJhX]1h-C3k_C mud%P= f{hE  ( ϴ"Es\|&AM=ekSlbvelZ.FV YSt0L+cv'Ѯ) L2(>BٙMQ K&CLkB0w^iv$踩w:xMݵE; )4CNI&C_7]<7= =P`3cBk(&Q&Cv ̶85`!"s8 b5wZakC[g{ha=2n֗#Zߖz$#‡K&C- E3L';W( Lk Z(O¨O;ZvfB1fPFΕm/gj ЂA-Nط~mQ&Luӷ }2{L߯;z2M3j֚Rn#A8mڃ[@q>Q3 Ӭ59 5Q2 GaTN6Z>}uKe_ְ_*m-E;s m}~ajqd踏$LPβ*`^C-GiZ(:ӟqkOQh-0s4ufL3g~RG?D ,2˙{d~:ub떒¾ehc6jR/ ضݤZ`)Zov]Lͦ踙e;/!o6E3\f )fS3ۮs9ͦ(07Z!Bo6EaT`1Z|)4\t%lNN&fm=K_Ʀ7߿凪ol̶xZ?5a}Zzgfw[~H^KFD3*Ԇ3g`t0-σIQ𼜷 4,Gtz}g2z3妇&i;fT&t$̔+ =mNqRt0SEs\ Ei-Zk}OQ }x$lg3&AGM9+g0:f•>=lNL"ZCe;UN(PsC:F^d`^7,8}Z+YPd+ oP!( L%@kK[ ,nH+z}Iё0%ݹ<:VЧu呤.iq[bHiηdLf&Cz%(2(!BYoBё䯄Id2tg4Qi!"!Bk̦(&Q&C%^rg +sڒQ}3 G~ׅj~ʼfZSWk&AG&T8ES}lIlNܰ+`txN0۸]'CGVGQt0 >OQZΨ!]Wzc;-C%Wj2j[P;W:~,FK`(l>™=;(3K_/e8w=l:ibf{V^~t.9@lc6i_Ʒjmt܊ ovwRX\0n/GGr^3e9w^Η~!̱՝JWOu3W LX_e9ڙ>Fa23 mCb2t0>L8w4̟q#Wd(0]g[~9j{( ϵT9j-a/e},,6ԃhΛڙ]Xσf%u `.;v`t0gg}0 !.^8j[vnukqP'=4vTva}XAƾYf/,rh7e`M1t0tsc &XCmkj{gCfSxoY$G'ҧgIytb=z"D,Y'XOdb=z"D,I'XO$Hb=z"D e}Ȝy92d"-W1"`} qO?Oy:YOIOK%tIx$=].IOK%tIx(=].JOEtx3JZ,VI+[OWb77LvpFPsJ[#(2WQh-vf=8ZǾA| O} gAF-[ oA߂(Q~ D-[ oA߂(A~ -[ oAe}A{ <@Pe˜wNj7LoCw][(XC-3)AmkZC 1EP2~l}eħEj`62ropu|Vh׽3 ldW_L̜]v73?,jN;:CMu9qJj| e*gά񼁫N7~DIG~OxI!ӈ5/ / j"^@ vvߴ&Z3"^{,x4LZ#e>F kd//.fM{$Ӏ9& jv)W_Pmث/q73{f{FW_P( ^}Ae}A M 7P[qc}iجDD,6LD,77/ $"^ZE˂B0*AD-c%SY_/7e9!fTjNn,"oiO/`Kl]Dfg)DdK_Sz"qm r=z"D A'\Or=z"D A'\Or=!OsM`iErc} >D,[3tȈ䅭yt^z:/< O祧yt^z:/< O祧yt^z:/<DKrcC +[=P2b|/Cb"eA)"^ZE ̕-_FۏlGFMM~ 6-B&l[o&l[o&l[o&l[o'=cnvǼe[p$ 1z-J"oxYPhm/ =D X*&om v/eP?0%G#^`aDm/UxgN/#^ϊxiK#^&"^D4LD,xY/KL &Z3#^xEK/{D"^RLK"^x)SKY"^RLK"^x)SKY"^}K/G?1e/xE.#^vˈ]D2e/ /IDT񲋈""^xb^^؈*vKUիث4`*UիܫWWr^^ʽz{*UիܫWWr^^ʽz{uOTReK/UFTReK/UFTqZeK/UFTReK/UFTReK/UF&- /F"Ȉ]D2e/x?/%;0&a"eAMx1]bZ5/ڟy9~QV#=n5Xo-9sn5rV#7j[r[o5yxycn7FNj~F'j[6y&n5FhmVMj[lk߷9cq^I=5?`)Տ[__񑦶kŶ mFwY kkk]lsь-Z|d`(3ڞIlc>fo&Aekakgk ̾99i-Cu[-0*ھP; LC ւc! }Xebe`}¯hgn{zЧxoxOuUv`P3s~|: ̩`Q34|!,(0ñaNm-Bg RZ0_`}i̬LJ`.sŎ CsZ&ZCmkj{gY;*U쳩y Sf%+Yt7keH*5zMѶM|Iɵ9U&װ55 FqZvұV&Fgh&Ȭ\[PZBQCPvTl$qMnA԰55*W2(kW-܂"3qMnAqMnA܂¨55 `iPܹ&Wِ&?igGPMnA >自CU*|ߴǽ 5z 6Ч`2(N7P> Pd:ɁZCos3{k˜(kO'j⚜Yuy&CM=ekUMbP8,QpQ(k8( LsMnAvPz,0*+HQu:ַ / 6D{xۈ,FghXXO#)j{|bQ nzF-}OuPZ^OdS7j|&k[`` 5g7Lsi5gh}5h}5go) L(,(\-XP;*`ЧL8No\va}i7(jq@QskjӞPZkw=vTva}EQԜ,38EYM1Ԝߌ C͙%0`} ւ32Q-vBxZО" XS ,Fs2xgՂK^<|LdT0jSR sKUjP'''''''''''''''''''''''''''''''''''''Ղ?TU戸sEUjbCjjjjjjjjjjjjjjjjSj%G*ZUX]rtR L{֮888888888888888888s9gf%P䊠%P䧠%PĠ%Pפ(0jZNoBQ6Va -y7L\ )oJ,_H;*XEiZ} [Q } O-+k76 iLk qM}(4$W( L}Y,m6KOweE *Z;=P0vAQh-| ='·~ CP>+b(2uL5?'(Ui_y=Ukથ9-Em]U9z0 4sT/ڼ*i}L6*zhJ I I I I I }G ]\`)˰B3w?]3zYfD ^Q2ȪAT eU/zD ^Q2ȪAT eU/zD ^Q2ȪAT eU/zE(^FQ2ʪQTeU/zE(^FQ2ʪQTeU/zD ^Q2ȪAT eU/zD ^Q2ȪAԮ bFY2QVeU/ze(^FY2QVeU/zd ^Y2AV eU/@d ^YR?SU eU/ze(^FY2QVeU/ze(^FY2AV eU/zd ^Y2QVeU/ze(^FY2QVeU/zd ^Y2AV eU/zd ^Y2AV eU/zd ^FY2QVeU/ze(^7 |.VW5#d j:~홼du$3U HYG2J~Q֑du$#e(HFYG2:Q֑du$#d HYG2:A֑ du$#dIe}AV򋢎du$#e(HFYG2:Q֑du$#d HYG2:A֑ du$#d Hj du$#d HYG2:A֑ du$#e(HFYG2:Q֑du$#EHQG2:gב췡^*Wx43a"3tArdp^f\ jNňE ]Phm =Ef¨dFOImQU5N/U5QDf>M"3tA)2CZ[EfBU0*Ud.Qn "3,.)2C2Df(XF5Ld.(0 PU}2(7LJf7L  }[Ef(ev >aDf(=Ed[Pl~}f/c]Df(2Cś_ng }7]W543 ErdppQF8(j*ef -"3Ε se,2CWp,H M'h}s5H\*֑l#&H.9o#]`bɦa2dܴ&'EM6 O"ST_=v~Rj-7Phm<˷5!]m}*G5g!|OڶvŪdV5td9ǹBQQ(ЃQԨ"hfYCv'J"khAaTvu/ 2t\`va}F@OMQஃ"kȞfI"k>"kzߣ+DOk_"im|!ZId LǍ%0Ed -EX\UrTz_=Sshf"m-kȋ!/2kȋ!/2kȋ!/2kȋ!/2kȋ!/2kȋ!/ 2k(  2k(  2k(  2k( 2kȋ!/2kȋ!/2kȋ!/2kȋ/3Ȭ  "k(Ȭ  "k(Ȭ  "k(Ȭ "kˬ!/"kˬ!/2x"kˬ!L5E֐YC^d 5DPYCAd 5DPYCAd 5DPYCAd y5E֐YC^d y5E֐YCAd 5DPYCAd 5DPYCAd 5D֐YC^d y5E֐YC^d y5E֐YC^d y5E֐YC^d y5E֐YC^d y5EPYCAd 5DPYCAd 5Dz廲CJ[}n]Sf*!s]|#/2ȋ|#/3UF^y!7 2(| 7 2(| 72ȋ|#/72ȋ|#/72ȋ|#/y!7 "(| 7 "(| 7 "|#/7"|#/7"|#/yoeF^yoeF^yodQFAodQFAocFA ̋|#/7jY},7}, },J}, },J}, },J}, },J}, },J}, },J}, },J}, },J}, },J}, },J}, },J}, },I}, },I}, },I}, },I}, },I}, },I}, },I}, },I}, },J}, },J}, },J}, },J}, },J}, },J}, },J},xRS$$$$$$$$$$$$$$(((((((((((1LEEE%%%%%%%%%%%%EEEEEEE%%%%%%%%%%%EEEEEEEEEEEEEEEEEEEE%%%%%%%%%Yo$3 &w57~(ڗ]UE(jR _Cpa;M[GsyMK'X#ѶNê޺ƢiNA/;8*4nkSh:Ul}q_s l/mݼ,nޏ5v>P=f @4O,[Mμ\qY4Z}m gm W\E`vf>rjkȽ8xT7d`S# v^ ZQ)hi/1R?M;-uAҏ.E{rnS=o1y`ͦk4gǯລ28u'M0By{{~_׶YAͽkl}z;)ySW[{`&~(hxvU v.M|箆csZ9N6^K6 ;ot80`h v@/` |)y6y@ v2D`-ߕu)xcvw3 6^GkH{ |L;yR 7/`hx0|/1[k,[ ë;] ^}KُZ'փl<ޥ`FNv^ΏGon`5:~du$-ϬC(hiבl{ai}ksΠʯ Ơ/ ގg r}A0,a2d,h0q_Ђ}A Lq_ЂBk}A = ZPu_ЂL}A jS& ZP0q_Ђ>M⾠֪zH0*꾠5;7Lūb q_Xg0q_ЂS>J?TUxP{qd(0dn 5)7P[u_e}AVL~hi/| l~}f/c _ o~Udvйy&CM=ekU / EM &;gEMF 2,e/hA ;W>Pٹ/~ױz;s^ZEMZEMv ZEMF ZEMzMӮ) B- Q[b %؛fB&AMȍeNb%U/,ZE =0*rL`fGz¹{&AMN 3 ߗe}Y,|ߊ[Zsm~{n|C,} VOvGڗ+r{{)jo 58W(je[$4Lʵ&-Trٓ=VRr-(:QZ>u/Pϓխ\ܥ 59 )j p@Q`[dmˮ>PrY (݁Ok_\7TfI<K`(0խ\`}K{ԭ\`r=Tzʓ*N"}2(s[rY稖ӪeneeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeecdJ2 2I2 2I2 2I2 2I2 2I2 2I2 2I2 2I2 2I2 2I2 1I2 2IR?SIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIM_2\o캙 VLu(PCY,P~( ?JTCrd[P&=&&&w&&&g~=UkE*Wkkkkkkkkkkkkkkkkkkkk>r%&&&&&&&&&&&&&&&&&&&&~ƚƚƚƚƚƚƚƚƚƚƚƚƚƚƚƚƚƚƚ*1&'5}/5y6Lh jԼ&CDhK6Lh jtƺBkƺCJc]P.QOh jĆ uAjכ\c]Чi.(2ƺZ.(XFEi j4&C P+X_]fX'-aBc]P`*|B~ ?TM{P0 *\ca2(7P[\FLiVLh(|Jcg2Jc_4VkWjvVQoЧxoxOuUC5V+5j FAYFQZ,QJqQJc]PhX\Y@iv4V\4uoTKA]do\*V{xۈHݨa45)1$3^ E*sF E *4Cz¨CP(-!RIPxZ馇j4oFFZxB,|ݷ;)< hU0*Lir` r&g MSvV>lkWJ&n 5ZE_A 5j( L}-(FEirnױ)UļJ.o7iJ(jT.5xSirGir[[]ir`}ESiK[nZ.3A-3Lٍ%0J[ڣ49&LgSO 5d\{459Ѷ{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"{,2ﱈ"^,2Q2ecyE=XdcyE=XdcyE=XdcyE=XdcyE=Xdc9E=Xdޣ~{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"ȼ"{,"I^fծc%+ -Eᙐzhބ6\"r-̵,"ײ\"r-̵,"ײ\"r-̵,"ײ\"r-̵,\3a2v"r-̵,"\"r-̵{+ȳ̵݊,"ײ\"r-̵,"ײ\"r-̵,"ײ\"r-̵,"ײ\"r-̵,"ײ\"r-̵'݊ȵ,2ײ\"s-ȵ,2ײ\"s-ȵ,2ײ\"s-ȵ,2ײ\"s-ȵ,2ײ\"s-ȵ\"s-ȵ,2ײ\"s-ȵ,2ײ\"s-ȵ,2ײ\"s-ȵ,2ײ\s-ȵ,"Rb"ײ\ui]wnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnldJ]7 ]7J]7 ]7J]7 ]7J]7 ]7J]7 ]7J]7 ]7J]7 ]7J]7 ]7J]7 ]7J]7 ]7J]7 5J]7 ]7J]W?SQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQMUJժVOQEmPIPh-wz; GES=QS=QS=QS=QSPh-XC00*3)fG'DO,& Y2˻`-NPh-fzuzC_=:!uBk,&YX-8?!_ 2"(.2B?S]DweEwqQ]DwEEqQ]DwEEqQ]DwEEqQ]DwEEqQ]DwEEqEEqQ]DwEEqQ]DwEEqQ]DwEEqQ]DwEEqQ]DwEWO]DwEEqQ]DwEEqQ]DwEEqQ]DwEEqQ]wEEqQ]ğwK-K_r2~8_l/o]$lroCӤJ~{?*;yLI ϵ)6=ɻ;kCpa;Mmțӌw, v^}¸ؠ/ v^G;Au[V<޾(hڙݾ(h%oaYGRЌCa(h={13h x 4v ds*yKMq>g2n1yKkFAsa9͢i4WvcSЌCaSЌ;? >ftJ[hm:*h{AR!4wAq?~ ?-ظn)rn)*n)rn)*n)rn)*n)rn)*n)rn)*n)rn)*n)rn)*n)rn)*n)rn))n)qn))n)qn))n)qn))n)qn))n)qn))n)qn))n)rn))n)qn))n)qn))n)qn))n)qn))n)qn))n)qn)*n)rn)*n)rn)*n)rn)*n)rn)*n)r(*nI%-%-#X|`~>J&v \J=d`&# y:z3 8(ظ< 9 ;KO q``:o;W׵im/I.TB7OSbPŹBN@3*n0r.2*.2rn'\dT\"#"""""""""""#""#""#""#"e#""#""#""#""""""""""#""#""#""#""#""#""#""#""""#"r/X5+5)8Lj'])sKcD7ObDA~'K\'h6r6q"V@sQpwsY_|8Gk5њhs8Z)8Gk5њhs8Z)8GG9GG9GG9GG9GG9GG9GGk͊͊͊͊͊͊͜͜͜͜͜͜5hMq9ZSqGk5ZMq.+6s6+q)q_VY2e\3u"?EfEfEfEfEfEfEfEfEfEfEfEfEf\).8i4EsHOGHS\"s&q̜̜̜̜̊̊̊̊4E"MqƹHS\q.iq7E"sH\).89999i4E"sH\).8i4E"sH\).89iJi\iJi\.2s]dVuY"3E"snY9ds3o,|wn-/C:蹐ʔ q^F;zg[ 'pPsY+T)@ϝSO)@sM(~I*q[(qoS㾨B|*-*ϼK]o0U༃`t@v?_G@e@ϝ))@(~| kEAEA;ڹsn=хy'e̻v=KE>v Oz0(u<`7Q]OG!(~]}AOSvwCqKL _ua >į'?i^2S dz՞܏o~|ώtwzni\֐/ٰQ;(~BKAT|ʸ+!rngGW@ϝq` a~b1o|!wCp=6 zm;=6=61sn 8. ƝK[~\"S zNjEo\V=6烾 ew]OzpOIf/ o쳜tnpxLqn97Sqfs3ŹLqn97Sqfs3ŹLqn97Sqfs3ŹLqn97Sqfs3ŹLqn97Sqfs3ŹLqn97Sqfs3ŹLqn97Sqfs3ŹLqn97Sqfs3ŹLqn97Sqfs3ŹLqn9oa\z:`o;o ~R| Bn? I ~*n8i4 ~4E .8i2E"sH\).8i4E"sH\).8i4Es.i4E"MqƹHS\q.i4E"MqƹHS\q.i4E"MqƹHS\q.i4E"MqƹHS\q.i4E"MqƹHS\q.i4E"\q.8 E"on}77^r.b2.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.r.*.rN*.R).r.hJ,9hQvO;C >z*׹Us\Vέr[U:unU*׹Us[[멊[[[RRUCRURRURRURRURRURRURRURRURܒ;疪*疪*疪*疪*疪*疪*疪*疪*疪*疪*疪*疪*疪*疪*疪*疪*疪*,'ϷO}9pþDϹs  sy@ιk{ƹUN)snUpnwsn峜~ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ ܊ Ίܔ ܊ ܊ ܊ ܊ ܊ p[Q:unE ׹s+\Vέp[Q:unE ׹}s+JVέ([:¹Ȣ¹܏rEq~,,*,,,,,,,,,,,,,,,,q\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dQ\d\dy!Y8Y8 EE"9aS%ErsoS&Xqw'Æ}]pRO͔eqk|HDo./797󟸏wp\ Tկgua_g}q^w:yk~\_x(:syz̟}/א/]DmpmÁ_u#Eþz"qY}/֯>$g*/ja}/Q>=ϣƭ)~ gF_Wվ]q~@њ:Lu]|}q/Wc?d ,c3;6a 6AKA c/0 8.g8]yC~2 qa ڭhRyybׁ9'r=~Fn2.K( AC0ٹyf7Ϗ*|` >qmX`C؇?sĝMJO u͎vq5=ݚZmu?]BwоOgӺh|桼k5z廡k=S#`s]_K" <ڕ?[zylvrN*v\" eB;6;8&%ۄcv$}oKc~R| @sa\301͇vn>T.Vd@ymݬG$(v"?+KZ~o0?)ڔ9!?)8.7ͩk1lg~ G?ݸav)`@--{q<10vA`zh3o.]ˀ n_ fZL𓁍q[.o7.}-[x_>r}伵 K26~i@ !~ q@?ڿТܾڧ ? b[yB%]G6*S>:OkE= kK8t;6[kqo'3~|%v)S1u ug⸤C;/'ҁc <`g+a>0t+C|}ӽzqyNAxR/ROKAc`cJbӍK_f;~v # bpf/Т!?۹/$ݑܦE.]wlvs򓂍yC IA IA;1gĸc~2l`7-OR dvS?c`KF9$InR_ 8.8~юoZͮ @uC癃2䙷s瑓2 v lL\H,k6;_n uN)vXw~bg '18qG;nT?_Jwkkh[>8OSN[k Yr4DNUF;6Vwe#`;{%fqgpg`ٵ-~Ev6_Ѯϵlg~v K^[ q\:qĸrB?K~}`?[s;R"Ɲ'u9ĝhq q 0|Qj 6J-tD9@0. lv} bvwg qf 'Fs݃.`3ܕp?_J1p}[ ږg_A8EͣϣƅklN vXǓhY3Խ=ب0  ']"D;D?~R'1/ ĸyF@3Q9C0(x|𐌎@ᐟ |ߚf>o0..~da~O36>~vZQ.nlE3ف8.~8.q@;b^:3wJ`>8̃.mq\rӓq@P y@8 j<}ͮO]6>u1 D;;O3`^3o|GNC_NA8I(m s)|~䟏yDA8*%?.3/ЦO:;-oQP]) >ƯWh9b Ī{jIA8I''Oq\0_qIA;O iĶ^~߭Ok?ƿq>2oUhq'R?q^)u#tدXͲ#W:G:%G7-Gen0oemOH;X,VHuO9uؚmGe}bf٭>+sͲXWͲLGe6+$o ,%vm>rV/Nkv~ 1()t?^~Rݳ}ǶWmמm,Rpo@h씏+߀rYv:|nͲu mu{_OloRe3&/Hք?OI.,;|]ivˮylrvSwe*p9"^" 9Dr(Q!CD)B" 9D"\\^9Dt(6rQnEb#F.\(6rQnEb#F.\ 6rAnS (Q!CD)B" 9Dr((Q!CD!R"H9Dr A!C!"H9Dr A!C!R"J9Dr(Q!CD!R"~I1~b~b^9Ĥ*''''''''''''''&OLd?1~b$I*&)57I9$A!C)B"9Db-%9WU|,*dDdDdDdDdDdDdx+tZ1Q QYDT:B&2AeKẄ́brI!&)brI!&)brI!&)nmrI!&)I&0,?b-c-UQf5ZС$YZbb-pPZСPˢj-p(z;˵`k,ׂY\ fr-P7 DPr1Uq9Ca-xfIPX CC8t!%ov%Eog%p(ЬC>+9Đ}n%Ca/[7I1׫w!oCLB1I9$CLB1}br A!C)B"9Dr Krw!&'@1ur S'brr! u[qbkbrm]r2*X1!p(!VL! r oa F./n6ry):lDI D,6rmJ^9F+&6rX$9tb#[9#db#!*Il:dB/Cǜ/%`9Eg2-U! r¦j/!p`¡&F( 9C$!:L[e_r'26OF@c? Ca$:X!Sbx7U!Y}rafJ~bSxEe?1~Bҁe6ͲE?1~b,Y'fO̲E?1~b,Y'fO̲٧e5 Umy٘} 9fC_C**]JWw!rVeUY骨tUV**]JWeUY骨tUV**]JWeUY骨tE}I!֨P9ēb(Wc2^C8t6 9CJB1dw%Xm Ž-Cqb]MU*9|"C C_uC V!-"υ!VL! rv&C8ΟA1xϺ[bCr!6K'.r._q}Nn kC rD~~b_*X1!p(!VL! r oa FFξc#g+0JșɃ>~S`r#gb#gr#gb#gr#gb#gr#gb#gr#gb#gr#gb#gr#gb#gr#gb#'|'_HCCCCCCCC L!L!L!L!L!L!L!L!L!L!L!ā?>!0)0!0)0!0)0!0)0!0)0!0)0!0)0!0)0!ұ9~"}G?WDEOHӏHHHHHHHHHHHHHHHH'IPsI!C$)HB" 9Dr$Kr(*]JWEEY風tQV(*].JeEY風tQV(*].JeEY風tQV(*^5\,>i/N}ڑQ6pis6N̽iw۵ܟߎvò Ι%Oò.gyxbѝӜ<,mvN+u|J1ikl>5wq͸?u=;n?e#^';}9oɲcrOytiLGiwZq|:ye Q7Nl?utn 5qov_NÒx1G}Z[p֮e϶#^ǧcOdf>uvN׍Qֵ֯s|'nT׍ͬ٭_'{p{]taa#ϜĶ?.s\8M5''2uyx^Ь_ev_w={놕nXuc U7qb[nq}uc> /MediaBox [0 0 841.896 595.296] /Contents 4117 0 R /Annots 4199 0 R>> endobj 4201 0 obj <> endobj 4204 0 obj <> endobj 4206 0 obj <> endobj 4208 0 obj <> endobj 4210 0 obj <> endobj 4212 0 obj <> endobj 4214 0 obj <> endobj 4216 0 obj <> endobj 4218 0 obj <> endobj 4220 0 obj <> endobj 4222 0 obj <> endobj 4224 0 obj <> endobj 4226 0 obj <> endobj 4228 0 obj <> endobj 4230 0 obj <> endobj 4232 0 obj <> endobj 4234 0 obj <> endobj 4236 0 obj <> endobj 4238 0 obj <> endobj 4240 0 obj <> endobj 4242 0 obj <> endobj 4245 0 obj <> endobj 4247 0 obj <> endobj 4249 0 obj <> endobj 4251 0 obj <> endobj 4253 0 obj <> endobj 4255 0 obj <> endobj 4257 0 obj <> endobj 4259 0 obj <> endobj 4261 0 obj << /BaseFont /Helvetica /Type /Font /Subtype /Type1 /Encoding /WinAnsiEncoding >> endobj 4262 0 obj << /BaseFont /Helvetica-Oblique /Type /Font /Subtype /Type1 /Encoding /WinAnsiEncoding >> endobj 4263 0 obj << /BaseFont /Helvetica-Bold /Type /Font /Subtype /Type1 /Encoding /WinAnsiEncoding >> endobj 4264 0 obj << /BaseFont /Helvetica-BoldOblique /Type /Font /Subtype /Type1 /Encoding /WinAnsiEncoding >> endobj 2 0 obj << /KicadFont 4261 0 R /KicadFontI 4262 0 R /KicadFontB 4263 0 R /KicadFontBI 4264 0 R >> endobj 3 0 obj << >> endobj 7 0 obj << /Type /Annot /Subtype /Link /Rect [755.784 427.984 828.216 513.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 8 0 obj << /Type /Annot /Subtype /Link /Rect [1256.18 1029.18 1341.71 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 9 0 obj << /Type /Annot /Subtype /Link /Rect [1176.98 993.184 1249.42 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 10 0 obj << /Type /Annot /Subtype /Link /Rect [528.984 993.184 601.416 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 11 0 obj << /Type /Annot /Subtype /Link /Rect [1079.78 751.984 1152.22 837.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 12 0 obj << /Type /Annot /Subtype /Link /Rect [1079.78 838.384 1188.22 963.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 13 0 obj << /Type /Annot /Subtype /Link /Rect [608.184 705.184 660.631 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 14 0 obj << /Type /Annot /Subtype /Link /Rect [1079.78 1486.38 1188.22 1611.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 15 0 obj << /Type /Annot /Subtype /Link /Rect [1079.78 1399.98 1152.22 1485.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 16 0 obj << /Type /Annot /Subtype /Link /Rect [932.184 1353.18 1017.71 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 17 0 obj << /Type /Annot /Subtype /Link /Rect [608.184 1029.18 690.286 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 18 0 obj << /Type /Annot /Subtype /Link /Rect [932.184 381.184 1014.29 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 19 0 obj << /Type /Annot /Subtype /Link /Rect [852.984 345.184 925.416 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 20 0 obj << /Type /Annot /Subtype /Link /Rect [1256.18 1353.18 1341.71 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 21 0 obj << /Type /Annot /Subtype /Link /Rect [1176.98 1317.18 1249.42 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 22 0 obj << /Type /Annot /Subtype /Link /Rect [755.784 1162.38 864.216 1287.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 23 0 obj << /Type /Annot /Subtype /Link /Rect [107.784 514.384 216.216 639.56] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 24 0 obj << /Type /Annot /Subtype /Link /Rect [204.984 345.184 277.416 430.76] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 25 0 obj << /Type /Annot /Subtype /Link /Rect [284.184 381.184 336.631 430.76] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 26 0 obj << /Type /Annot /Subtype /Link /Rect [1176.98 345.184 1249.42 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 27 0 obj << /Type /Annot /Subtype /Link /Rect [852.984 993.184 925.416 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 28 0 obj << /Type /Annot /Subtype /Link /Rect [932.184 1029.18 1017.71 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 29 0 obj << /Type /Annot /Subtype /Link /Rect [608.184 1353.18 690.286 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 30 0 obj << /Type /Annot /Subtype /Link /Rect [528.984 1317.18 601.416 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 31 0 obj << /Type /Annot /Subtype /Link /Rect [107.784 1162.38 216.216 1287.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 32 0 obj << /Type /Annot /Subtype /Link /Rect [107.784 427.984 180.216 513.56] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 33 0 obj << /Type /Annot /Subtype /Link /Rect [284.184 1029.18 366.286 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 34 0 obj << /Type /Annot /Subtype /Link /Rect [204.984 993.184 277.416 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 35 0 obj << /Type /Annot /Subtype /Link /Rect [852.984 1317.18 925.416 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 36 0 obj << /Type /Annot /Subtype /Link /Rect [1256.18 381.184 1338.29 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 37 0 obj << /Type /Annot /Subtype /Link /Rect [755.784 514.384 864.216 639.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 38 0 obj << /Type /Annot /Subtype /Link /Rect [107.784 1075.98 180.216 1161.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 39 0 obj << /Type /Annot /Subtype /Link /Rect [755.784 1075.98 828.216 1161.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 40 0 obj << /Type /Annot /Subtype /Link /Rect [204.984 1317.18 277.416 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 41 0 obj << /Type /Annot /Subtype /Link /Rect [528.984 669.184 601.416 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 42 0 obj << /Type /Annot /Subtype /Link /Rect [1176.98 669.184 1249.42 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 43 0 obj << /Type /Annot /Subtype /Link /Rect [1256.18 705.184 1341.71 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 44 0 obj << /Type /Annot /Subtype /Link /Rect [284.184 1353.18 366.286 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 45 0 obj << /Type /Annot /Subtype /Link /Rect [284.184 705.184 336.631 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 46 0 obj << /Type /Annot /Subtype /Link /Rect [852.984 669.184 925.416 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 47 0 obj << /Type /Annot /Subtype /Link /Rect [932.184 705.184 1017.71 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 48 0 obj << /Type /Annot /Subtype /Link /Rect [431.784 838.384 540.216 963.56] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 49 0 obj << /Type /Annot /Subtype /Link /Rect [204.984 669.184 277.416 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 50 0 obj << /Type /Annot /Subtype /Link /Rect [431.784 751.984 504.216 837.56] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 51 0 obj << /Type /Annot /Subtype /Link /Rect [608.184 381.184 660.631 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 52 0 obj << /Type /Annot /Subtype /Link /Rect [528.984 345.184 601.416 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 53 0 obj << /Type /Annot /Subtype /Link /Rect [431.784 1399.98 504.216 1485.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 54 0 obj << /Type /Annot /Subtype /Link /Rect [431.784 1486.38 540.216 1611.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 55 0 obj << /Type /Annot /Subtype /Link /Rect [755.784 427.984 828.216 513.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 56 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 500.697 828.864 505.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 57 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 493.497 828.864 498.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 58 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 486.297 828.864 490.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 59 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 479.097 828.864 483.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 60 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 471.897 828.864 476.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 61 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 464.697 828.864 469.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 62 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 457.497 828.864 462.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 63 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 450.297 828.864 454.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 64 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 500.697 788.299 505.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 65 0 obj << /Type /Annot /Subtype /Link /Rect [1256.18 1029.18 1341.71 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 66 0 obj << /Type /Annot /Subtype /Link /Rect [1255.54 1065.9 1269.67 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 67 0 obj << /Type /Annot /Subtype /Link /Rect [1274.33 1065.9 1293.26 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 68 0 obj << /Type /Annot /Subtype /Link /Rect [1274.33 1058.7 1293.26 1063.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 69 0 obj << /Type /Annot /Subtype /Link /Rect [1176.98 993.184 1249.42 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 70 0 obj << /Type /Annot /Subtype /Link /Rect [1223.76 1065.9 1250.06 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 71 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1065.9 1200.76 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 72 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1058.7 1200.76 1063.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 73 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1051.5 1200.76 1056.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 74 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1044.3 1200.76 1048.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 75 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1037.1 1200.76 1041.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 76 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1029.9 1200.76 1034.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 77 0 obj << /Type /Annot /Subtype /Link /Rect [528.984 993.184 601.416 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 78 0 obj << /Type /Annot /Subtype /Link /Rect [575.758 1065.9 602.064 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 79 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1065.9 552.756 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 80 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1058.7 552.756 1063.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 81 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1051.5 552.756 1056.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 82 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1044.3 552.756 1048.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 83 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1037.1 552.756 1041.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 84 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1029.9 552.756 1034.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 85 0 obj << /Type /Annot /Subtype /Link /Rect [1079.78 751.984 1152.22 837.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 86 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 824.697 1152.86 829.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 87 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 817.497 1152.86 822.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 88 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 810.297 1152.86 814.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 89 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 803.097 1152.86 807.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 90 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 795.897 1152.86 800.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 91 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 788.697 1152.86 793.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 92 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 781.497 1152.86 786.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 93 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 774.297 1152.86 778.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 94 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 824.697 1112.3 829.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 95 0 obj << /Type /Annot /Subtype /Link /Rect [1079.78 838.384 1188.22 963.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 96 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 950.697 1091.39 955.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 97 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 918.297 1097.56 922.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 98 0 obj << /Type /Annot /Subtype /Link /Rect [1113.71 844.128 1118.3 862.548] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 99 0 obj << /Type /Annot /Subtype /Link /Rect [1170.44 882.297 1188.86 886.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 100 0 obj << /Type /Annot /Subtype /Link /Rect [1149.71 939.036 1154.3 957.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 101 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 911.097 1097.56 915.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 102 0 obj << /Type /Annot /Subtype /Link /Rect [1120.91 844.128 1125.5 862.548] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 103 0 obj << /Type /Annot /Subtype /Link /Rect [1170.44 889.497 1188.86 894.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 104 0 obj << /Type /Annot /Subtype /Link /Rect [1142.51 939.036 1147.1 957.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 105 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 903.897 1097.56 908.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 106 0 obj << /Type /Annot /Subtype /Link /Rect [1128.11 844.128 1132.7 862.548] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 107 0 obj << /Type /Annot /Subtype /Link /Rect [1170.44 896.697 1188.86 901.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 108 0 obj << /Type /Annot /Subtype /Link /Rect [1135.31 939.036 1139.9 957.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 109 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 896.697 1097.56 901.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 110 0 obj << /Type /Annot /Subtype /Link /Rect [1135.31 844.128 1139.9 862.548] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 111 0 obj << /Type /Annot /Subtype /Link /Rect [1170.44 903.897 1188.86 908.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 112 0 obj << /Type /Annot /Subtype /Link /Rect [1128.11 939.036 1132.7 957.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 113 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 889.497 1097.56 894.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 114 0 obj << /Type /Annot /Subtype /Link /Rect [1142.51 844.128 1147.1 862.548] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 115 0 obj << /Type /Annot /Subtype /Link /Rect [1170.44 911.097 1188.86 915.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 116 0 obj << /Type /Annot /Subtype /Link /Rect [1120.91 939.036 1125.5 957.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 117 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 882.297 1097.56 886.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 118 0 obj << /Type /Annot /Subtype /Link /Rect [1149.71 844.128 1154.3 862.548] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 119 0 obj << /Type /Annot /Subtype /Link /Rect [1170.44 918.297 1188.86 922.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 120 0 obj << /Type /Annot /Subtype /Link /Rect [1113.71 939.036 1118.3 957.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 121 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 846.297 1094.64 850.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 122 0 obj << /Type /Annot /Subtype /Link /Rect [1173.36 950.697 1188.86 955.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 123 0 obj << /Type /Annot /Subtype /Link /Rect [1177.13 925.497 1188.86 930.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 124 0 obj << /Type /Annot /Subtype /Link /Rect [1106.51 945.721 1111.1 957.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 125 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 875.097 1090.87 879.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 126 0 obj << /Type /Annot /Subtype /Link /Rect [1156.91 844.128 1161.5 855.863] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 127 0 obj << /Type /Annot /Subtype /Link /Rect [1168.56 846.297 1188.86 850.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 128 0 obj << /Type /Annot /Subtype /Link /Rect [608.184 705.184 660.631 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 129 0 obj << /Type /Annot /Subtype /Link /Rect [607.536 741.897 621.671 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 130 0 obj << /Type /Annot /Subtype /Link /Rect [626.329 734.697 645.264 739.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 131 0 obj << /Type /Annot /Subtype /Link /Rect [626.329 741.897 645.264 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 132 0 obj << /Type /Annot /Subtype /Link /Rect [1079.78 1486.38 1188.22 1611.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 133 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 1598.7 1091.39 1603.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 134 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 1566.3 1097.56 1570.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 135 0 obj << /Type /Annot /Subtype /Link /Rect [1113.71 1492.13 1118.3 1510.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 136 0 obj << /Type /Annot /Subtype /Link /Rect [1170.44 1530.3 1188.86 1534.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 137 0 obj << /Type /Annot /Subtype /Link /Rect [1149.71 1587.04 1154.3 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 138 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 1559.1 1097.56 1563.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 139 0 obj << /Type /Annot /Subtype /Link /Rect [1120.91 1492.13 1125.5 1510.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 140 0 obj << /Type /Annot /Subtype /Link /Rect [1170.44 1537.5 1188.86 1542.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 141 0 obj << /Type /Annot /Subtype /Link /Rect [1142.51 1587.04 1147.1 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 142 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 1494.3 1094.64 1498.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 143 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 1501.5 1094.64 1506.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 144 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 1508.7 1094.64 1513.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 145 0 obj << /Type /Annot /Subtype /Link /Rect [1173.36 1598.7 1188.86 1603.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 146 0 obj << /Type /Annot /Subtype /Link /Rect [1177.13 1573.5 1188.86 1578.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 147 0 obj << /Type /Annot /Subtype /Link /Rect [1106.51 1593.72 1111.1 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 148 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 1523.1 1090.87 1527.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 149 0 obj << /Type /Annot /Subtype /Link /Rect [1156.91 1492.13 1161.5 1503.86] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 150 0 obj << /Type /Annot /Subtype /Link /Rect [1168.56 1494.3 1188.86 1498.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 151 0 obj << /Type /Annot /Subtype /Link /Rect [1079.78 1399.98 1152.22 1485.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 152 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 1472.7 1152.86 1477.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 153 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 1465.5 1152.86 1470.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 154 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 1458.3 1152.86 1462.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 155 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 1451.1 1152.86 1455.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 156 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 1443.9 1152.86 1448.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 157 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 1436.7 1152.86 1441.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 158 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 1429.5 1152.86 1434.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 159 0 obj << /Type /Annot /Subtype /Link /Rect [1114.9 1422.3 1152.86 1426.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 160 0 obj << /Type /Annot /Subtype /Link /Rect [1079.14 1472.7 1112.3 1477.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 161 0 obj << /Type /Annot /Subtype /Link /Rect [932.184 1353.18 1017.71 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 162 0 obj << /Type /Annot /Subtype /Link /Rect [931.536 1389.9 945.671 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 163 0 obj << /Type /Annot /Subtype /Link /Rect [950.329 1389.9 969.264 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 164 0 obj << /Type /Annot /Subtype /Link /Rect [950.329 1382.7 969.264 1387.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 165 0 obj << /Type /Annot /Subtype /Link /Rect [608.184 1029.18 690.286 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 166 0 obj << /Type /Annot /Subtype /Link /Rect [607.536 1065.9 621.671 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 167 0 obj << /Type /Annot /Subtype /Link /Rect [626.329 1065.9 645.264 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 168 0 obj << /Type /Annot /Subtype /Link /Rect [626.329 1058.7 645.264 1063.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 169 0 obj << /Type /Annot /Subtype /Link /Rect [932.184 381.184 1014.29 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 170 0 obj << /Type /Annot /Subtype /Link /Rect [931.536 417.897 945.671 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 171 0 obj << /Type /Annot /Subtype /Link /Rect [950.329 417.897 969.264 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 172 0 obj << /Type /Annot /Subtype /Link /Rect [950.329 410.697 969.264 415.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 173 0 obj << /Type /Annot /Subtype /Link /Rect [852.984 345.184 925.416 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 174 0 obj << /Type /Annot /Subtype /Link /Rect [899.758 417.897 926.064 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 175 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 417.897 876.756 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 176 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 410.697 876.756 415.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 177 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 403.497 876.756 408.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 178 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 396.297 876.756 400.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 179 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 389.097 876.756 393.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 180 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 381.897 876.756 386.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 181 0 obj << /Type /Annot /Subtype /Link /Rect [1256.18 1353.18 1341.71 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 182 0 obj << /Type /Annot /Subtype /Link /Rect [1255.54 1389.9 1269.67 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 183 0 obj << /Type /Annot /Subtype /Link /Rect [1274.33 1389.9 1293.26 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 184 0 obj << /Type /Annot /Subtype /Link /Rect [1274.33 1382.7 1293.26 1387.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 185 0 obj << /Type /Annot /Subtype /Link /Rect [1176.98 1317.18 1249.42 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 186 0 obj << /Type /Annot /Subtype /Link /Rect [1223.76 1389.9 1250.06 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 187 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1389.9 1200.76 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 188 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1382.7 1200.76 1387.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 189 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1375.5 1200.76 1380.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 190 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1368.3 1200.76 1372.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 191 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1361.1 1200.76 1365.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 192 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 1353.9 1200.76 1358.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 193 0 obj << /Type /Annot /Subtype /Link /Rect [755.784 1162.38 864.216 1287.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 194 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1274.7 767.385 1279.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 195 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1242.3 773.556 1246.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 196 0 obj << /Type /Annot /Subtype /Link /Rect [789.705 1168.13 794.295 1186.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 197 0 obj << /Type /Annot /Subtype /Link /Rect [846.444 1206.3 864.864 1210.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 198 0 obj << /Type /Annot /Subtype /Link /Rect [825.705 1263.04 830.295 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 199 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1235.1 773.556 1239.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 200 0 obj << /Type /Annot /Subtype /Link /Rect [796.905 1168.13 801.495 1186.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 201 0 obj << /Type /Annot /Subtype /Link /Rect [846.444 1213.5 864.864 1218.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 202 0 obj << /Type /Annot /Subtype /Link /Rect [818.505 1263.04 823.095 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 203 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1227.9 773.556 1232.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 204 0 obj << /Type /Annot /Subtype /Link /Rect [804.105 1168.13 808.695 1186.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 205 0 obj << /Type /Annot /Subtype /Link /Rect [846.444 1220.7 864.864 1225.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 206 0 obj << /Type /Annot /Subtype /Link /Rect [811.305 1263.04 815.895 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 207 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1220.7 773.556 1225.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 208 0 obj << /Type /Annot /Subtype /Link /Rect [811.305 1168.13 815.895 1186.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 209 0 obj << /Type /Annot /Subtype /Link /Rect [846.444 1227.9 864.864 1232.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 210 0 obj << /Type /Annot /Subtype /Link /Rect [804.105 1263.04 808.695 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 211 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1213.5 773.556 1218.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 212 0 obj << /Type /Annot /Subtype /Link /Rect [818.505 1168.13 823.095 1186.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 213 0 obj << /Type /Annot /Subtype /Link /Rect [846.444 1235.1 864.864 1239.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 214 0 obj << /Type /Annot /Subtype /Link /Rect [796.905 1263.04 801.495 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 215 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1206.3 773.556 1210.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 216 0 obj << /Type /Annot /Subtype /Link /Rect [825.705 1168.13 830.295 1186.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 217 0 obj << /Type /Annot /Subtype /Link /Rect [846.444 1242.3 864.864 1246.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 218 0 obj << /Type /Annot /Subtype /Link /Rect [789.705 1263.04 794.295 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 219 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1170.3 770.642 1174.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 220 0 obj << /Type /Annot /Subtype /Link /Rect [849.358 1274.7 864.864 1279.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 221 0 obj << /Type /Annot /Subtype /Link /Rect [853.129 1249.5 864.864 1254.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 222 0 obj << /Type /Annot /Subtype /Link /Rect [782.505 1269.72 787.095 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 223 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1199.1 766.871 1203.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 224 0 obj << /Type /Annot /Subtype /Link /Rect [832.905 1168.13 837.495 1179.86] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 225 0 obj << /Type /Annot /Subtype /Link /Rect [844.557 1170.3 864.864 1174.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 226 0 obj << /Type /Annot /Subtype /Link /Rect [107.784 514.384 216.216 639.56] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 227 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 626.697 119.385 631.287] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 228 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 594.297 125.556 598.887] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 229 0 obj << /Type /Annot /Subtype /Link /Rect [141.705 520.128 146.295 538.548] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 230 0 obj << /Type /Annot /Subtype /Link /Rect [198.444 558.297 216.864 562.887] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 231 0 obj << /Type /Annot /Subtype /Link /Rect [177.705 615.036 182.295 633.456] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 232 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 587.097 125.556 591.687] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 233 0 obj << /Type /Annot /Subtype /Link /Rect [148.905 520.128 153.495 538.548] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 234 0 obj << /Type /Annot /Subtype /Link /Rect [198.444 565.497 216.864 570.087] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 235 0 obj << /Type /Annot /Subtype /Link /Rect [170.505 615.036 175.095 633.456] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 236 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 579.897 125.556 584.487] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 237 0 obj << /Type /Annot /Subtype /Link /Rect [156.105 520.128 160.695 538.548] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 238 0 obj << /Type /Annot /Subtype /Link /Rect [198.444 572.697 216.864 577.287] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 239 0 obj << /Type /Annot /Subtype /Link /Rect [163.305 615.036 167.895 633.456] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 240 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 572.697 125.556 577.287] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 241 0 obj << /Type /Annot /Subtype /Link /Rect [163.305 520.128 167.895 538.548] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 242 0 obj << /Type /Annot /Subtype /Link /Rect [198.444 579.897 216.864 584.487] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 243 0 obj << /Type /Annot /Subtype /Link /Rect [156.105 615.036 160.695 633.456] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 244 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 565.497 125.556 570.087] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 245 0 obj << /Type /Annot /Subtype /Link /Rect [170.505 520.128 175.095 538.548] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 246 0 obj << /Type /Annot /Subtype /Link /Rect [198.444 587.097 216.864 591.687] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 247 0 obj << /Type /Annot /Subtype /Link /Rect [148.905 615.036 153.495 633.456] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 248 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 558.297 125.556 562.887] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 249 0 obj << /Type /Annot /Subtype /Link /Rect [177.705 520.128 182.295 538.548] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 250 0 obj << /Type /Annot /Subtype /Link /Rect [198.444 594.297 216.864 598.887] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 251 0 obj << /Type /Annot /Subtype /Link /Rect [141.705 615.036 146.295 633.456] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 252 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 522.297 122.642 526.887] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 253 0 obj << /Type /Annot /Subtype /Link /Rect [201.358 626.697 216.864 631.287] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 254 0 obj << /Type /Annot /Subtype /Link /Rect [205.129 601.497 216.864 606.087] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 255 0 obj << /Type /Annot /Subtype /Link /Rect [134.505 621.721 139.095 633.456] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 256 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 551.097 118.871 555.687] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 257 0 obj << /Type /Annot /Subtype /Link /Rect [184.905 520.128 189.495 531.863] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 258 0 obj << /Type /Annot /Subtype /Link /Rect [196.557 522.297 216.864 526.887] /Border [16 16 0] /Dest [3266 0 R /FitB] >> endobj 259 0 obj << /Type /Annot /Subtype /Link /Rect [204.984 345.184 277.416 430.76] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 260 0 obj << /Type /Annot /Subtype /Link /Rect [251.758 417.897 278.064 422.487] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 261 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 417.897 228.756 422.487] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 262 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 410.697 228.756 415.287] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 263 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 403.497 228.756 408.087] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 264 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 396.297 228.756 400.887] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 265 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 389.097 228.756 393.687] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 266 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 381.897 228.756 386.487] /Border [16 16 0] /Dest [3754 0 R /FitB] >> endobj 267 0 obj << /Type /Annot /Subtype /Link /Rect [284.184 381.184 336.631 430.76] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 268 0 obj << /Type /Annot /Subtype /Link /Rect [283.536 417.897 297.671 422.487] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 269 0 obj << /Type /Annot /Subtype /Link /Rect [302.329 410.697 321.264 415.287] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 270 0 obj << /Type /Annot /Subtype /Link /Rect [302.329 417.897 321.264 422.487] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 271 0 obj << /Type /Annot /Subtype /Link /Rect [1176.98 345.184 1249.42 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 272 0 obj << /Type /Annot /Subtype /Link /Rect [1223.76 417.897 1250.06 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 273 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 417.897 1200.76 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 274 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 410.697 1200.76 415.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 275 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 403.497 1200.76 408.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 276 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 396.297 1200.76 400.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 277 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 389.097 1200.76 393.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 278 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 381.897 1200.76 386.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 279 0 obj << /Type /Annot /Subtype /Link /Rect [852.984 993.184 925.416 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 280 0 obj << /Type /Annot /Subtype /Link /Rect [899.758 1065.9 926.064 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 281 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1065.9 876.756 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 282 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1058.7 876.756 1063.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 283 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1051.5 876.756 1056.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 284 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1044.3 876.756 1048.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 285 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1037.1 876.756 1041.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 286 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1029.9 876.756 1034.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 287 0 obj << /Type /Annot /Subtype /Link /Rect [932.184 1029.18 1017.71 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 288 0 obj << /Type /Annot /Subtype /Link /Rect [931.536 1065.9 945.671 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 289 0 obj << /Type /Annot /Subtype /Link /Rect [950.329 1065.9 969.264 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 290 0 obj << /Type /Annot /Subtype /Link /Rect [950.329 1058.7 969.264 1063.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 291 0 obj << /Type /Annot /Subtype /Link /Rect [608.184 1353.18 690.286 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 292 0 obj << /Type /Annot /Subtype /Link /Rect [607.536 1389.9 621.671 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 293 0 obj << /Type /Annot /Subtype /Link /Rect [626.329 1389.9 645.264 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 294 0 obj << /Type /Annot /Subtype /Link /Rect [626.329 1382.7 645.264 1387.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 295 0 obj << /Type /Annot /Subtype /Link /Rect [528.984 1317.18 601.416 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 296 0 obj << /Type /Annot /Subtype /Link /Rect [575.758 1389.9 602.064 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 297 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1389.9 552.756 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 298 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1382.7 552.756 1387.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 299 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1375.5 552.756 1380.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 300 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1368.3 552.756 1372.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 301 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1361.1 552.756 1365.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 302 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 1353.9 552.756 1358.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 303 0 obj << /Type /Annot /Subtype /Link /Rect [107.784 1162.38 216.216 1287.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 304 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 1274.7 119.385 1279.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 305 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 1242.3 125.556 1246.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 306 0 obj << /Type /Annot /Subtype /Link /Rect [141.705 1168.13 146.295 1186.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 307 0 obj << /Type /Annot /Subtype /Link /Rect [198.444 1206.3 216.864 1210.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 308 0 obj << /Type /Annot /Subtype /Link /Rect [177.705 1263.04 182.295 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 309 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 1235.1 125.556 1239.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 310 0 obj << /Type /Annot /Subtype /Link /Rect [148.905 1168.13 153.495 1186.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 311 0 obj << /Type /Annot /Subtype /Link /Rect [198.444 1213.5 216.864 1218.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 312 0 obj << /Type /Annot /Subtype /Link /Rect [170.505 1263.04 175.095 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 313 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 1170.3 122.642 1174.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 314 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 1177.5 122.642 1182.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 315 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 1184.7 122.642 1189.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 316 0 obj << /Type /Annot /Subtype /Link /Rect [201.358 1274.7 216.864 1279.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 317 0 obj << /Type /Annot /Subtype /Link /Rect [205.129 1249.5 216.864 1254.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 318 0 obj << /Type /Annot /Subtype /Link /Rect [134.505 1269.72 139.095 1281.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 319 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 1199.1 118.871 1203.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 320 0 obj << /Type /Annot /Subtype /Link /Rect [184.905 1168.13 189.495 1179.86] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 321 0 obj << /Type /Annot /Subtype /Link /Rect [196.557 1170.3 216.864 1174.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 322 0 obj << /Type /Annot /Subtype /Link /Rect [107.784 427.984 180.216 513.56] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 323 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 500.697 180.864 505.287] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 324 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 493.497 180.864 498.087] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 325 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 486.297 180.864 490.887] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 326 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 479.097 180.864 483.687] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 327 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 471.897 180.864 476.487] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 328 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 464.697 180.864 469.287] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 329 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 457.497 180.864 462.087] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 330 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 450.297 180.864 454.887] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 331 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 500.697 140.299 505.287] /Border [16 16 0] /Dest [4056 0 R /FitB] >> endobj 332 0 obj << /Type /Annot /Subtype /Link /Rect [284.184 1029.18 366.286 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 333 0 obj << /Type /Annot /Subtype /Link /Rect [283.536 1065.9 297.671 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 334 0 obj << /Type /Annot /Subtype /Link /Rect [302.329 1065.9 321.264 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 335 0 obj << /Type /Annot /Subtype /Link /Rect [302.329 1058.7 321.264 1063.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 336 0 obj << /Type /Annot /Subtype /Link /Rect [204.984 993.184 277.416 1078.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 337 0 obj << /Type /Annot /Subtype /Link /Rect [251.758 1065.9 278.064 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 338 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1065.9 228.756 1070.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 339 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1058.7 228.756 1063.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 340 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1051.5 228.756 1056.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 341 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1044.3 228.756 1048.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 342 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1037.1 228.756 1041.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 343 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1029.9 228.756 1034.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 344 0 obj << /Type /Annot /Subtype /Link /Rect [852.984 1317.18 925.416 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 345 0 obj << /Type /Annot /Subtype /Link /Rect [899.758 1389.9 926.064 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 346 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1389.9 876.756 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 347 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1382.7 876.756 1387.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 348 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1375.5 876.756 1380.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 349 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1368.3 876.756 1372.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 350 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1361.1 876.756 1365.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 351 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 1353.9 876.756 1358.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 352 0 obj << /Type /Annot /Subtype /Link /Rect [1256.18 381.184 1338.29 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 353 0 obj << /Type /Annot /Subtype /Link /Rect [1255.54 417.897 1269.67 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 354 0 obj << /Type /Annot /Subtype /Link /Rect [1274.33 417.897 1293.26 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 355 0 obj << /Type /Annot /Subtype /Link /Rect [1274.33 410.697 1293.26 415.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 356 0 obj << /Type /Annot /Subtype /Link /Rect [755.784 514.384 864.216 639.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 357 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 626.697 767.385 631.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 358 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 594.297 773.556 598.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 359 0 obj << /Type /Annot /Subtype /Link /Rect [789.705 520.128 794.295 538.548] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 360 0 obj << /Type /Annot /Subtype /Link /Rect [846.444 558.297 864.864 562.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 361 0 obj << /Type /Annot /Subtype /Link /Rect [825.705 615.036 830.295 633.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 362 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 587.097 773.556 591.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 363 0 obj << /Type /Annot /Subtype /Link /Rect [796.905 520.128 801.495 538.548] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 364 0 obj << /Type /Annot /Subtype /Link /Rect [846.444 565.497 864.864 570.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 365 0 obj << /Type /Annot /Subtype /Link /Rect [818.505 615.036 823.095 633.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 366 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 522.297 770.642 526.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 367 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 529.497 770.642 534.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 368 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 536.697 770.642 541.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 369 0 obj << /Type /Annot /Subtype /Link /Rect [849.358 626.697 864.864 631.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 370 0 obj << /Type /Annot /Subtype /Link /Rect [853.129 601.497 864.864 606.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 371 0 obj << /Type /Annot /Subtype /Link /Rect [782.505 621.721 787.095 633.456] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 372 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 551.097 766.871 555.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 373 0 obj << /Type /Annot /Subtype /Link /Rect [832.905 520.128 837.495 531.863] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 374 0 obj << /Type /Annot /Subtype /Link /Rect [844.557 522.297 864.864 526.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 375 0 obj << /Type /Annot /Subtype /Link /Rect [107.784 1075.98 180.216 1161.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 376 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 1148.7 180.864 1153.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 377 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 1141.5 180.864 1146.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 378 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 1134.3 180.864 1138.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 379 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 1127.1 180.864 1131.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 380 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 1119.9 180.864 1124.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 381 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 1112.7 180.864 1117.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 382 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 1105.5 180.864 1110.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 383 0 obj << /Type /Annot /Subtype /Link /Rect [142.901 1098.3 180.864 1102.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 384 0 obj << /Type /Annot /Subtype /Link /Rect [107.136 1148.7 140.299 1153.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 385 0 obj << /Type /Annot /Subtype /Link /Rect [755.784 1075.98 828.216 1161.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 386 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 1148.7 828.864 1153.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 387 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 1141.5 828.864 1146.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 388 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 1134.3 828.864 1138.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 389 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 1127.1 828.864 1131.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 390 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 1119.9 828.864 1124.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 391 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 1112.7 828.864 1117.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 392 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 1105.5 828.864 1110.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 393 0 obj << /Type /Annot /Subtype /Link /Rect [790.901 1098.3 828.864 1102.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 394 0 obj << /Type /Annot /Subtype /Link /Rect [755.136 1148.7 788.299 1153.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 395 0 obj << /Type /Annot /Subtype /Link /Rect [204.984 1317.18 277.416 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 396 0 obj << /Type /Annot /Subtype /Link /Rect [251.758 1389.9 278.064 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 397 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1389.9 228.756 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 398 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1382.7 228.756 1387.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 399 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1375.5 228.756 1380.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 400 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1368.3 228.756 1372.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 401 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1361.1 228.756 1365.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 402 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 1353.9 228.756 1358.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 403 0 obj << /Type /Annot /Subtype /Link /Rect [528.984 669.184 601.416 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 404 0 obj << /Type /Annot /Subtype /Link /Rect [575.758 741.897 602.064 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 405 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 741.897 552.756 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 406 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 734.697 552.756 739.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 407 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 727.497 552.756 732.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 408 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 720.297 552.756 724.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 409 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 713.097 552.756 717.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 410 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 705.897 552.756 710.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 411 0 obj << /Type /Annot /Subtype /Link /Rect [1176.98 669.184 1249.42 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 412 0 obj << /Type /Annot /Subtype /Link /Rect [1223.76 741.897 1250.06 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 413 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 741.897 1200.76 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 414 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 734.697 1200.76 739.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 415 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 727.497 1200.76 732.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 416 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 720.297 1200.76 724.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 417 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 713.097 1200.76 717.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 418 0 obj << /Type /Annot /Subtype /Link /Rect [1176.34 705.897 1200.76 710.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 419 0 obj << /Type /Annot /Subtype /Link /Rect [1256.18 705.184 1341.71 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 420 0 obj << /Type /Annot /Subtype /Link /Rect [1255.54 741.897 1269.67 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 421 0 obj << /Type /Annot /Subtype /Link /Rect [1274.33 741.897 1293.26 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 422 0 obj << /Type /Annot /Subtype /Link /Rect [1274.33 734.697 1293.26 739.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 423 0 obj << /Type /Annot /Subtype /Link /Rect [284.184 1353.18 366.286 1402.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 424 0 obj << /Type /Annot /Subtype /Link /Rect [283.536 1389.9 297.671 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 425 0 obj << /Type /Annot /Subtype /Link /Rect [302.329 1389.9 321.264 1394.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 426 0 obj << /Type /Annot /Subtype /Link /Rect [302.329 1382.7 321.264 1387.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 427 0 obj << /Type /Annot /Subtype /Link /Rect [284.184 705.184 336.631 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 428 0 obj << /Type /Annot /Subtype /Link /Rect [283.536 741.897 297.671 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 429 0 obj << /Type /Annot /Subtype /Link /Rect [302.329 734.697 321.264 739.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 430 0 obj << /Type /Annot /Subtype /Link /Rect [302.329 741.897 321.264 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 431 0 obj << /Type /Annot /Subtype /Link /Rect [852.984 669.184 925.416 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 432 0 obj << /Type /Annot /Subtype /Link /Rect [899.758 741.897 926.064 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 433 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 741.897 876.756 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 434 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 734.697 876.756 739.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 435 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 727.497 876.756 732.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 436 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 720.297 876.756 724.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 437 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 713.097 876.756 717.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 438 0 obj << /Type /Annot /Subtype /Link /Rect [852.336 705.897 876.756 710.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 439 0 obj << /Type /Annot /Subtype /Link /Rect [932.184 705.184 1017.71 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 440 0 obj << /Type /Annot /Subtype /Link /Rect [931.536 741.897 945.671 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 441 0 obj << /Type /Annot /Subtype /Link /Rect [950.329 741.897 969.264 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 442 0 obj << /Type /Annot /Subtype /Link /Rect [950.329 734.697 969.264 739.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 443 0 obj << /Type /Annot /Subtype /Link /Rect [431.784 838.384 540.216 963.56] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 444 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 950.697 443.385 955.287] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 445 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 918.297 449.556 922.887] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 446 0 obj << /Type /Annot /Subtype /Link /Rect [465.705 844.128 470.295 862.548] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 447 0 obj << /Type /Annot /Subtype /Link /Rect [522.444 882.297 540.864 886.887] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 448 0 obj << /Type /Annot /Subtype /Link /Rect [501.705 939.036 506.295 957.456] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 449 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 911.097 449.556 915.687] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 450 0 obj << /Type /Annot /Subtype /Link /Rect [472.905 844.128 477.495 862.548] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 451 0 obj << /Type /Annot /Subtype /Link /Rect [522.444 889.497 540.864 894.087] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 452 0 obj << /Type /Annot /Subtype /Link /Rect [494.505 939.036 499.095 957.456] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 453 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 846.297 446.642 850.887] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 454 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 853.497 446.642 858.087] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 455 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 860.697 446.642 865.287] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 456 0 obj << /Type /Annot /Subtype /Link /Rect [525.358 950.697 540.864 955.287] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 457 0 obj << /Type /Annot /Subtype /Link /Rect [529.129 925.497 540.864 930.087] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 458 0 obj << /Type /Annot /Subtype /Link /Rect [458.505 945.721 463.095 957.456] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 459 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 875.097 442.871 879.687] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 460 0 obj << /Type /Annot /Subtype /Link /Rect [508.905 844.128 513.495 855.863] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 461 0 obj << /Type /Annot /Subtype /Link /Rect [520.557 846.297 540.864 850.887] /Border [16 16 0] /Dest [3444 0 R /FitB] >> endobj 462 0 obj << /Type /Annot /Subtype /Link /Rect [204.984 669.184 277.416 754.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 463 0 obj << /Type /Annot /Subtype /Link /Rect [251.758 741.897 278.064 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 464 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 741.897 228.756 746.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 465 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 734.697 228.756 739.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 466 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 727.497 228.756 732.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 467 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 720.297 228.756 724.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 468 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 713.097 228.756 717.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 469 0 obj << /Type /Annot /Subtype /Link /Rect [204.336 705.897 228.756 710.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 470 0 obj << /Type /Annot /Subtype /Link /Rect [431.784 751.984 504.216 837.56] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 471 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 824.697 504.864 829.287] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 472 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 817.497 504.864 822.087] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 473 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 810.297 504.864 814.887] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 474 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 803.097 504.864 807.687] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 475 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 795.897 504.864 800.487] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 476 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 788.697 504.864 793.287] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 477 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 781.497 504.864 786.087] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 478 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 774.297 504.864 778.887] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 479 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 824.697 464.299 829.287] /Border [16 16 0] /Dest [4200 0 R /FitB] >> endobj 480 0 obj << /Type /Annot /Subtype /Link /Rect [608.184 381.184 660.631 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 481 0 obj << /Type /Annot /Subtype /Link /Rect [607.536 417.897 621.671 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 482 0 obj << /Type /Annot /Subtype /Link /Rect [626.329 410.697 645.264 415.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 483 0 obj << /Type /Annot /Subtype /Link /Rect [626.329 417.897 645.264 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 484 0 obj << /Type /Annot /Subtype /Link /Rect [528.984 345.184 601.416 430.76] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 485 0 obj << /Type /Annot /Subtype /Link /Rect [575.758 417.897 602.064 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 486 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 417.897 552.756 422.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 487 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 410.697 552.756 415.287] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 488 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 403.497 552.756 408.087] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 489 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 396.297 552.756 400.887] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 490 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 389.097 552.756 393.687] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 491 0 obj << /Type /Annot /Subtype /Link /Rect [528.336 381.897 552.756 386.487] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 492 0 obj << /Type /Annot /Subtype /Link /Rect [431.784 1399.98 504.216 1485.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 493 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 1472.7 504.864 1477.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 494 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 1465.5 504.864 1470.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 495 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 1458.3 504.864 1462.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 496 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 1451.1 504.864 1455.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 497 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 1443.9 504.864 1448.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 498 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 1436.7 504.864 1441.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 499 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 1429.5 504.864 1434.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 500 0 obj << /Type /Annot /Subtype /Link /Rect [466.901 1422.3 504.864 1426.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 501 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1472.7 464.299 1477.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 502 0 obj << /Type /Annot /Subtype /Link /Rect [431.784 1486.38 540.216 1611.56] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 503 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1598.7 443.385 1603.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 504 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1566.3 449.556 1570.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 505 0 obj << /Type /Annot /Subtype /Link /Rect [465.705 1492.13 470.295 1510.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 506 0 obj << /Type /Annot /Subtype /Link /Rect [522.444 1530.3 540.864 1534.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 507 0 obj << /Type /Annot /Subtype /Link /Rect [501.705 1587.04 506.295 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 508 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1559.1 449.556 1563.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 509 0 obj << /Type /Annot /Subtype /Link /Rect [472.905 1492.13 477.495 1510.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 510 0 obj << /Type /Annot /Subtype /Link /Rect [522.444 1537.5 540.864 1542.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 511 0 obj << /Type /Annot /Subtype /Link /Rect [494.505 1587.04 499.095 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 512 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1551.9 449.556 1556.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 513 0 obj << /Type /Annot /Subtype /Link /Rect [480.105 1492.13 484.695 1510.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 514 0 obj << /Type /Annot /Subtype /Link /Rect [522.444 1544.7 540.864 1549.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 515 0 obj << /Type /Annot /Subtype /Link /Rect [487.305 1587.04 491.895 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 516 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1544.7 449.556 1549.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 517 0 obj << /Type /Annot /Subtype /Link /Rect [487.305 1492.13 491.895 1510.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 518 0 obj << /Type /Annot /Subtype /Link /Rect [522.444 1551.9 540.864 1556.49] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 519 0 obj << /Type /Annot /Subtype /Link /Rect [480.105 1587.04 484.695 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 520 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1537.5 449.556 1542.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 521 0 obj << /Type /Annot /Subtype /Link /Rect [494.505 1492.13 499.095 1510.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 522 0 obj << /Type /Annot /Subtype /Link /Rect [522.444 1559.1 540.864 1563.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 523 0 obj << /Type /Annot /Subtype /Link /Rect [472.905 1587.04 477.495 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 524 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1530.3 449.556 1534.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 525 0 obj << /Type /Annot /Subtype /Link /Rect [501.705 1492.13 506.295 1510.55] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 526 0 obj << /Type /Annot /Subtype /Link /Rect [522.444 1566.3 540.864 1570.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 527 0 obj << /Type /Annot /Subtype /Link /Rect [465.705 1587.04 470.295 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 528 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1494.3 446.642 1498.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 529 0 obj << /Type /Annot /Subtype /Link /Rect [525.358 1598.7 540.864 1603.29] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 530 0 obj << /Type /Annot /Subtype /Link /Rect [529.129 1573.5 540.864 1578.09] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 531 0 obj << /Type /Annot /Subtype /Link /Rect [458.505 1593.72 463.095 1605.46] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 532 0 obj << /Type /Annot /Subtype /Link /Rect [431.136 1523.1 442.871 1527.69] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 533 0 obj << /Type /Annot /Subtype /Link /Rect [508.905 1492.13 513.495 1503.86] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 534 0 obj << /Type /Annot /Subtype /Link /Rect [520.557 1494.3 540.864 1498.89] /Border [16 16 0] /A << /Type /Action /S /NOP >> >> endobj 1005 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 309.688 413.944 334.064] /Border [16 16 0] /Dest [2580 0 R /FitB] >> endobj 1006 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 255.688 410.516 280.064] /Border [16 16 0] /Dest [2988 0 R /FitB] >> endobj 1007 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 284.488 411.373 308.864] /Border [16 16 0] /Dest [2812 0 R /FitB] >> endobj 1008 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 334.888 393.373 359.264] /Border [16 16 0] /Dest [2409 0 R /FitB] >> endobj 1009 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 226.888 413.259 251.264] /Border [16 16 0] /Dest [3104 0 R /FitB] >> endobj 1010 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 309.688 413.944 334.064] /Border [16 16 0] /Dest [2580 0 R /FitB] >> endobj 1011 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 255.688 410.516 280.064] /Border [16 16 0] /Dest [2988 0 R /FitB] >> endobj 1012 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 284.488 411.373 308.864] /Border [16 16 0] /Dest [2812 0 R /FitB] >> endobj 1013 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 334.888 393.373 359.264] /Border [16 16 0] /Dest [2409 0 R /FitB] >> endobj 1014 0 obj << /Type /Annot /Subtype /Link /Rect [323.784 226.888 413.259 251.264] /Border [16 16 0] /Dest [3104 0 R /FitB] >> endobj 1015 0 obj << /Type /Annot /Subtype /Link /Rect [940.729 468.801 958.464 473.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1016 0 obj << /Type /Annot /Subtype /Link /Rect [40.729 512.001 58.464 516.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1017 0 obj << /Type /Annot /Subtype /Link /Rect [1107.94 526.401 1133.56 530.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1018 0 obj << /Type /Annot /Subtype /Link /Rect [1107.94 472.401 1133.56 476.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1019 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 224.001 58.464 228.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1020 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 252.801 58.464 257.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1021 0 obj << /Type /Annot /Subtype /Link /Rect [43.1291 270.801 58.464 275.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1022 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 231.201 58.464 235.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1023 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 216.801 58.464 221.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1024 0 obj << /Type /Annot /Subtype /Link /Rect [1060.04 227.601 1080.86 232.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1025 0 obj << /Type /Annot /Subtype /Link /Rect [940.729 224.001 958.464 228.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1026 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 634.401 58.464 638.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1027 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 670.401 58.464 674.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1028 0 obj << /Type /Annot /Subtype /Link /Rect [1107.94 368.001 1130.47 372.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1029 0 obj << /Type /Annot /Subtype /Link /Rect [1107.94 231.201 1133.56 235.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1030 0 obj << /Type /Annot /Subtype /Link /Rect [877.536 533.601 896.471 538.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1031 0 obj << /Type /Annot /Subtype /Link /Rect [940.729 522.801 958.464 527.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1032 0 obj << /Type /Annot /Subtype /Link /Rect [877.536 519.201 903.499 523.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1033 0 obj << /Type /Annot /Subtype /Link /Rect [812.158 537.201 836.064 541.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1034 0 obj << /Type /Annot /Subtype /Link /Rect [443.243 681.201 468.864 685.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1035 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 519.201 58.464 523.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1036 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 548.001 58.464 552.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1037 0 obj << /Type /Annot /Subtype /Link /Rect [1060.04 278.001 1080.86 282.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1038 0 obj << /Type /Annot /Subtype /Link /Rect [40.729 584.001 58.464 588.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1039 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 555.201 58.464 559.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1040 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 526.401 58.464 530.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1041 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 195.201 58.464 199.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1042 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 202.401 58.464 206.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1043 0 obj << /Type /Annot /Subtype /Link /Rect [1107.94 281.601 1133.56 286.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1044 0 obj << /Type /Annot /Subtype /Link /Rect [941.243 594.801 962.064 599.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1045 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 677.601 58.464 682.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1046 0 obj << /Type /Annot /Subtype /Link /Rect [940.729 278.001 958.464 282.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1047 0 obj << /Type /Annot /Subtype /Link /Rect [453.529 645.201 468.864 649.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1048 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 209.601 58.464 214.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1049 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 663.201 58.464 667.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1050 0 obj << /Type /Annot /Subtype /Link /Rect [812.158 443.601 836.064 448.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1051 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 656.001 58.464 660.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1052 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 238.401 58.464 242.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1053 0 obj << /Type /Annot /Subtype /Link /Rect [46.2149 328.401 58.464 332.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1054 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 245.601 58.464 250.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1055 0 obj << /Type /Annot /Subtype /Link /Rect [877.536 425.601 903.499 430.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1056 0 obj << /Type /Annot /Subtype /Link /Rect [877.536 440.001 896.471 444.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1057 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 281.601 58.464 286.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1058 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 620.001 58.464 624.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1059 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 364.401 58.464 368.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1060 0 obj << /Type /Annot /Subtype /Link /Rect [46.2149 299.601 58.464 304.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1061 0 obj << /Type /Annot /Subtype /Link /Rect [941.243 602.001 962.064 606.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1062 0 obj << /Type /Annot /Subtype /Link /Rect [443.243 659.601 468.864 664.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1063 0 obj << /Type /Annot /Subtype /Link /Rect [448.043 598.401 468.864 602.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1064 0 obj << /Type /Annot /Subtype /Link /Rect [456.615 616.401 468.864 620.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1065 0 obj << /Type /Annot /Subtype /Link /Rect [1107.94 612.801 1130.47 617.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1066 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 461.601 58.464 466.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1067 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 454.401 58.464 458.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1068 0 obj << /Type /Annot /Subtype /Link /Rect [456.615 562.401 468.864 566.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1069 0 obj << /Type /Annot /Subtype /Link /Rect [456.615 569.601 468.864 574.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1070 0 obj << /Type /Annot /Subtype /Link /Rect [446.329 688.401 468.864 692.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1071 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 407.601 58.464 412.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1072 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 425.601 58.464 430.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1073 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 418.401 58.464 422.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1074 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 400.401 58.464 404.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1075 0 obj << /Type /Annot /Subtype /Link /Rect [941.243 357.201 962.064 361.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1076 0 obj << /Type /Annot /Subtype /Link /Rect [456.615 587.601 468.864 592.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1077 0 obj << /Type /Annot /Subtype /Link /Rect [1063.13 364.401 1080.86 368.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1078 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 562.401 58.464 566.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1079 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 598.401 58.464 602.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1080 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 627.201 58.464 631.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1081 0 obj << /Type /Annot /Subtype /Link /Rect [40.729 483.201 58.464 487.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1082 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 591.201 58.464 595.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1083 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 490.401 58.464 494.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1084 0 obj << /Type /Annot /Subtype /Link /Rect [446.329 666.801 468.864 671.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1085 0 obj << /Type /Annot /Subtype /Link /Rect [1060.04 468.801 1080.86 473.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1086 0 obj << /Type /Annot /Subtype /Link /Rect [448.043 627.201 468.864 631.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1087 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 447.201 58.464 451.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1088 0 obj << /Type /Annot /Subtype /Link /Rect [1060.04 522.801 1080.86 527.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1089 0 obj << /Type /Annot /Subtype /Link /Rect [37.6432 371.601 58.464 376.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1090 0 obj << /Type /Annot /Subtype /Link /Rect [941.243 350.001 962.064 354.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1091 0 obj << /Type /Annot /Subtype /Link /Rect [44.329 440.001 58.464 444.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 1092 0 obj << /Type /Annot /Subtype /Link /Rect [1063.13 609.201 1080.86 613.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 2258 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 369.801 72.864 374.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2259 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 243.801 72.864 248.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2260 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 391.401 72.864 395.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2261 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 434.601 72.864 439.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2262 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 441.801 72.864 446.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2263 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 477.801 72.864 482.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2264 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 463.401 72.864 467.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2265 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 470.601 72.864 475.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2266 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 215.001 72.864 219.591] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2267 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 207.801 72.864 212.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2268 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 251.001 72.864 255.591] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2269 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 398.601 72.864 403.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2270 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 405.801 72.864 410.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2271 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 427.401 72.864 431.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2272 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 362.601 72.864 367.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2273 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 269.001 72.864 273.591] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2274 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 355.401 72.864 359.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2275 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 261.801 72.864 266.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2488 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 326.601 72.864 331.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2489 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 398.601 72.864 403.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2490 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 405.801 72.864 410.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2491 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 391.401 72.864 395.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2492 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 434.601 72.864 439.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2493 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 427.401 72.864 431.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2494 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 362.601 72.864 367.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2495 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 333.801 72.864 338.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2496 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 369.801 72.864 374.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2497 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 355.401 72.864 359.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2498 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 463.401 72.864 467.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2499 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 470.601 72.864 475.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2500 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 441.801 72.864 446.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2501 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 477.801 72.864 482.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2637 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 251.001 72.864 255.591] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2638 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 391.401 72.864 395.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2639 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 215.001 72.864 219.591] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2640 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 207.801 72.864 212.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2641 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 269.001 72.864 273.591] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2642 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 463.401 72.864 467.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2643 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 477.801 72.864 482.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2644 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 369.801 72.864 374.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2645 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 362.601 72.864 367.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2646 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 326.601 72.864 331.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2647 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 398.601 72.864 403.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2648 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 355.401 72.864 359.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2649 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 333.801 72.864 338.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2650 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 243.801 72.864 248.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2651 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 405.801 72.864 410.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2652 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 427.401 72.864 431.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2653 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 434.601 72.864 439.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2654 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 441.801 72.864 446.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2655 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 470.601 72.864 475.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2656 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 261.801 72.864 266.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2903 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 470.601 72.864 475.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2904 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 391.401 72.864 395.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2905 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 513.801 72.864 518.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2906 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 499.401 72.864 503.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2907 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 506.601 72.864 511.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2908 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 521.001 72.864 525.591] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2909 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 434.601 72.864 439.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2910 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 427.401 72.864 431.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2911 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 441.801 72.864 446.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2912 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 463.401 72.864 467.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2913 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 405.801 72.864 410.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2914 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 477.801 72.864 482.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2915 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 398.601 72.864 403.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2916 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 290.601 72.864 295.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2917 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 297.801 72.864 302.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2918 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 283.401 72.864 287.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2919 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 305.001 72.864 309.591] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2920 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 369.801 72.864 374.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2921 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 362.601 72.864 367.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 2922 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 355.401 72.864 359.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3053 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 391.401 72.864 395.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3054 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 427.401 72.864 431.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3055 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 434.601 72.864 439.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3056 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 441.801 72.864 446.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3057 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 362.601 72.864 367.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3058 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 405.801 72.864 410.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3059 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 369.801 72.864 374.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3060 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 398.601 72.864 403.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3061 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 355.401 72.864 359.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3062 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 470.601 72.864 475.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3063 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 463.401 72.864 467.991] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3064 0 obj << /Type /Annot /Subtype /Link /Rect [58.729 477.801 72.864 482.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3065 0 obj << /Type /Annot /Subtype /Link /Rect [55.129 326.601 72.864 331.191] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3066 0 obj << /Type /Annot /Subtype /Link /Rect [52.0432 333.801 72.864 338.391] /Border [16 16 0] /Dest [1769 0 R /FitB] >> endobj 3157 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 373.401 108.864 377.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3158 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 405.801 108.864 410.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3159 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 351.801 108.864 356.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3160 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 420.201 108.864 424.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3161 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 427.401 108.864 431.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3162 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 434.601 108.864 439.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3163 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 413.001 108.864 417.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3164 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 337.401 108.864 341.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3165 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 481.401 108.864 485.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3166 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 366.201 108.864 370.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3167 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 344.601 108.864 349.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3168 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 398.601 108.864 403.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3169 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 359.001 108.864 363.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3170 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 312.201 108.864 316.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3171 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 254.601 350.643 259.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3172 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 305.001 108.864 309.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3173 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 276.201 108.864 280.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3174 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 283.401 108.864 287.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3175 0 obj << /Type /Annot /Subtype /Link /Rect [96.6149 521.001 108.864 525.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3176 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 362.601 342.071 367.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3177 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 485.001 342.071 489.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3178 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 459.801 108.864 464.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3179 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 423.801 342.071 428.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3180 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 488.601 108.864 493.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3181 0 obj << /Type /Annot /Subtype /Link /Rect [93.3579 243.801 108.864 248.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3182 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 495.801 108.864 500.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3183 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 290.601 108.864 295.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3184 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 297.801 108.864 302.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3185 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 301.401 342.071 305.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3186 0 obj << /Type /Annot /Subtype /Link /Rect [93.3579 251.001 108.864 255.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3187 0 obj << /Type /Annot /Subtype /Link /Rect [93.3579 229.401 108.864 233.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3188 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 474.201 108.864 478.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3189 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 467.001 108.864 471.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3190 0 obj << /Type /Annot /Subtype /Link /Rect [93.3579 236.601 108.864 241.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3361 0 obj << /Type /Annot /Subtype /Link /Rect [93.3579 366.201 108.864 370.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3362 0 obj << /Type /Annot /Subtype /Link /Rect [93.3579 359.001 108.864 363.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3363 0 obj << /Type /Annot /Subtype /Link /Rect [96.6149 521.001 108.864 525.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3364 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 488.601 108.864 493.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3365 0 obj << /Type /Annot /Subtype /Link /Rect [93.3579 351.801 108.864 356.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3366 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 456.201 108.864 460.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3367 0 obj << /Type /Annot /Subtype /Link /Rect [93.3579 344.601 108.864 349.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3368 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 402.201 342.071 406.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3369 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 369.801 350.643 374.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3370 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 434.601 342.071 439.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3371 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 467.001 342.071 471.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3372 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 499.401 342.071 503.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3373 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 431.001 108.864 435.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3374 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 463.401 108.864 467.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3375 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 391.401 108.864 395.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3376 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 495.801 108.864 500.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3377 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 398.601 108.864 403.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3378 0 obj << /Type /Annot /Subtype /Link /Rect [90.4436 423.801 108.864 428.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3507 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 281.601 105.264 286.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3508 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 281.601 209.664 286.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3509 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 274.401 105.264 278.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3510 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 296.001 105.264 300.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3511 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 288.801 105.264 293.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3512 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 310.401 105.264 314.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3513 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 303.201 105.264 307.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3514 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 494.001 356.642 498.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3515 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 526.401 354.756 530.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3516 0 obj << /Type /Annot /Subtype /Link /Rect [113.373 792.801 137.793 797.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3517 0 obj << /Type /Annot /Subtype /Link /Rect [113.373 785.601 137.793 790.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3518 0 obj << /Type /Annot /Subtype /Link /Rect [113.244 753.201 137.664 757.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3519 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 519.201 209.664 523.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3520 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 555.201 209.664 559.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3521 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 310.401 209.664 314.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3522 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 274.401 209.664 278.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3523 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 303.201 209.664 307.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3524 0 obj << /Type /Annot /Subtype /Link /Rect [113.244 746.001 137.664 750.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3525 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 558.801 356.642 563.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3526 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 648.801 209.664 653.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3527 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 422.001 356.642 426.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3528 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 389.601 354.756 394.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3529 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 634.401 209.664 638.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3530 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 440.001 209.664 444.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3531 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 425.601 209.664 430.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3532 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 562.401 209.664 566.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3533 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 447.201 209.664 451.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3534 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 432.801 209.664 437.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3535 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 620.001 209.664 624.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3536 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 656.001 209.664 660.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3537 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 695.601 356.642 700.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3538 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 663.201 357.842 667.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3539 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 576.801 105.264 581.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3540 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 692.001 209.664 696.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3541 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 713.601 209.664 718.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3542 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 684.801 209.664 689.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3543 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 706.401 209.664 710.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3544 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 699.201 209.664 703.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3545 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 720.801 209.664 725.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3546 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 562.401 105.264 566.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3547 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 584.001 105.264 588.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3548 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 569.601 105.264 574.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3549 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 767.601 356.642 772.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3550 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 548.001 105.264 552.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3551 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 576.801 209.664 581.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3552 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 548.001 209.664 552.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3553 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 569.601 209.664 574.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3554 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 684.801 105.264 689.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3555 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 641.601 209.664 646.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3556 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 627.201 209.664 631.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3557 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 555.201 105.264 559.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3558 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 630.801 356.642 635.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3559 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 706.401 105.264 710.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3560 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 720.801 105.264 725.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3561 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 699.201 105.264 703.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3562 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 713.601 105.264 718.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3563 0 obj << /Type /Annot /Subtype /Link /Rect [113.373 778.401 137.793 782.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3564 0 obj << /Type /Annot /Subtype /Link /Rect [113.373 771.201 137.793 775.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3565 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 692.001 105.264 696.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3566 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 512.001 209.664 516.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3567 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 584.001 209.664 588.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3568 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 497.601 209.664 502.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3569 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 418.401 209.664 422.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3570 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 411.201 209.664 415.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3571 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 447.201 105.264 451.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3572 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 425.601 105.264 430.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3573 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 418.401 105.264 422.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3574 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 411.201 105.264 415.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3575 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 285.201 356.642 289.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3576 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 288.801 209.664 293.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3577 0 obj << /Type /Annot /Subtype /Link /Rect [330.336 357.201 356.642 361.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3578 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 382.401 209.664 386.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3579 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 504.801 209.664 509.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3580 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 375.201 209.664 379.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3581 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 440.001 105.264 444.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3582 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 346.401 209.664 350.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3583 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 296.001 209.664 300.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3584 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 490.401 209.664 494.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3585 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 483.201 209.664 487.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3586 0 obj << /Type /Annot /Subtype /Link /Rect [80.8435 432.801 105.264 437.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3587 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 368.001 209.664 372.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3588 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 360.801 209.664 365.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3589 0 obj << /Type /Annot /Subtype /Link /Rect [185.244 353.601 209.664 358.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3975 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 539.001 287.899 543.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3976 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 458.001 287.899 462.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3977 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 465.201 287.899 469.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3978 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 503.001 287.899 507.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3979 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 450.801 287.899 455.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3980 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 472.401 287.899 476.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3981 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 413.001 287.899 417.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3982 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 319.401 287.899 323.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3983 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 341.001 287.899 345.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3984 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 326.601 287.899 331.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3985 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 333.801 287.899 338.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3986 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 377.001 287.899 381.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3987 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 458.001 72.864 462.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3988 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 450.801 72.864 455.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3989 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 472.401 72.864 476.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3990 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 465.201 72.864 469.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3991 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 319.401 72.864 323.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3992 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 333.801 72.864 338.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3993 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 326.601 72.864 331.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 3994 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 341.001 72.864 345.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4119 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 472.401 287.899 476.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4120 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 539.001 287.899 543.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4121 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 503.001 287.899 507.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4122 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 458.001 287.899 462.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4123 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 413.001 287.899 417.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4124 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 450.801 287.899 455.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4125 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 465.201 287.899 469.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4126 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 458.001 72.864 462.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4127 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 333.801 287.899 338.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4128 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 326.601 287.899 331.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4129 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 377.001 287.899 381.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4130 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 341.001 287.899 345.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4131 0 obj << /Type /Annot /Subtype /Link /Rect [254.736 319.401 287.899 323.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4132 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 472.401 72.864 476.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4133 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 450.801 72.864 455.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4134 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 465.201 72.864 469.791] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4135 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 326.601 72.864 331.191] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4136 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 319.401 72.864 323.991] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4137 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 341.001 72.864 345.591] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 4138 0 obj << /Type /Annot /Subtype /Link /Rect [34.9007 333.801 72.864 338.391] /Border [16 16 0] /Dest [1000 0 R /FitB] >> endobj 535 0 obj << /Type /Annot /Subtype /Link /Rect [975.15 412.24 1009.42 418.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 536 0 obj << /Type /Annot /Subtype /Link /Rect [651.15 419.44 685.423 426.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 537 0 obj << /Type /Annot /Subtype /Link /Rect [327.15 419.44 361.423 426.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 538 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 1114.24 228.223 1120.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 539 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 1107.04 228.223 1113.73] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 540 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 1143.04 228.223 1149.73] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 541 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 1135.84 876.223 1142.53] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 542 0 obj << /Type /Annot /Subtype /Link /Rect [975.15 419.44 1009.42 426.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 543 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 473.44 228.223 480.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 544 0 obj << /Type /Annot /Subtype /Link /Rect [327.15 412.24 361.423 418.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 545 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 459.04 228.223 465.733] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 546 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 1128.64 228.223 1135.33] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 547 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 1135.84 228.223 1142.53] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 548 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 451.84 228.223 458.533] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 549 0 obj << /Type /Annot /Subtype /Link /Rect [327.15 1067.44 361.423 1074.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 550 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 480.64 228.223 487.333] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 551 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 466.24 228.223 472.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 552 0 obj << /Type /Annot /Subtype /Link /Rect [975.15 1067.44 1009.42 1074.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 553 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 487.84 228.223 494.533] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 554 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 495.04 228.223 501.733] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 555 0 obj << /Type /Annot /Subtype /Link /Rect [651.15 1060.24 685.423 1066.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 556 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 502.24 228.223 508.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 557 0 obj << /Type /Annot /Subtype /Link /Rect [651.15 412.24 685.423 418.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 558 0 obj << /Type /Annot /Subtype /Link /Rect [327.15 1060.24 361.423 1066.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 559 0 obj << /Type /Annot /Subtype /Link /Rect [651.15 743.44 685.423 750.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 560 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 487.84 876.223 494.533] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 561 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 451.84 876.223 458.533] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 562 0 obj << /Type /Annot /Subtype /Link /Rect [651.15 736.24 685.423 742.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 563 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 480.64 876.223 487.333] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 564 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 1150.24 876.223 1156.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 565 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 495.04 876.223 501.733] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 566 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 459.04 876.223 465.733] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 567 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 466.24 876.223 472.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 568 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 473.44 876.223 480.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 569 0 obj << /Type /Annot /Subtype /Link /Rect [975.15 736.24 1009.42 742.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 570 0 obj << /Type /Annot /Subtype /Link /Rect [651.15 1067.44 685.423 1074.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 571 0 obj << /Type /Annot /Subtype /Link /Rect [975.15 743.44 1009.42 750.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 572 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 502.24 876.223 508.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 573 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 1121.44 876.223 1128.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 574 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 1121.44 228.223 1128.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 575 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 1099.84 228.223 1106.53] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 576 0 obj << /Type /Annot /Subtype /Link /Rect [327.15 743.44 361.423 750.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 577 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 1467.04 1200.22 1473.73] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 578 0 obj << /Type /Annot /Subtype /Link /Rect [327.15 1391.44 361.423 1398.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 579 0 obj << /Type /Annot /Subtype /Link /Rect [1299.15 743.44 1333.42 750.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 580 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 797.44 552.223 804.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 581 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 797.44 1200.22 804.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 582 0 obj << /Type /Annot /Subtype /Link /Rect [1299.15 1391.44 1333.42 1398.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 583 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 1431.04 552.223 1437.73] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 584 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 1438.24 552.223 1444.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 585 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 1445.44 552.223 1452.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 586 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 1452.64 552.223 1459.33] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 587 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 1423.84 552.223 1430.53] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 588 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 1474.24 552.223 1480.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 589 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 1459.84 552.223 1466.53] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 590 0 obj << /Type /Annot /Subtype /Link /Rect [327.15 736.24 361.423 742.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 591 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 1114.24 876.223 1120.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 592 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 1467.04 552.223 1473.73] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 593 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 826.24 1200.22 832.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 594 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 804.64 1200.22 811.333] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 595 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 819.04 1200.22 825.733] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 596 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 790.24 1200.22 796.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 597 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 783.04 1200.22 789.733] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 598 0 obj << /Type /Annot /Subtype /Link /Rect [651.15 1391.44 685.423 1398.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 599 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 775.84 552.223 782.533] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 600 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 790.24 552.223 796.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 601 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 783.04 552.223 789.733] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 602 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 811.84 552.223 818.533] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 603 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 804.64 552.223 811.333] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 604 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 819.04 552.223 825.733] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 605 0 obj << /Type /Annot /Subtype /Link /Rect [517.95 826.24 552.223 832.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 606 0 obj << /Type /Annot /Subtype /Link /Rect [975.15 1391.44 1009.42 1398.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 607 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 775.84 1200.22 782.533] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 608 0 obj << /Type /Annot /Subtype /Link /Rect [1299.15 736.24 1333.42 742.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 609 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 1128.64 876.223 1135.33] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 610 0 obj << /Type /Annot /Subtype /Link /Rect [1299.15 419.44 1333.42 426.133] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 611 0 obj << /Type /Annot /Subtype /Link /Rect [1299.15 1067.44 1333.42 1074.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 612 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 1474.24 1200.22 1480.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 613 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 811.84 1200.22 818.533] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 614 0 obj << /Type /Annot /Subtype /Link /Rect [1299.15 1060.24 1333.42 1066.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 615 0 obj << /Type /Annot /Subtype /Link /Rect [1299.15 412.24 1333.42 418.933] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 616 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 1099.84 876.223 1106.53] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 617 0 obj << /Type /Annot /Subtype /Link /Rect [651.15 1384.24 685.423 1390.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 618 0 obj << /Type /Annot /Subtype /Link /Rect [327.15 1384.24 361.423 1390.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 619 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 1143.04 876.223 1149.73] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 620 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 1423.84 1200.22 1430.53] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 621 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 1438.24 1200.22 1444.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 622 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 1452.64 1200.22 1459.33] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 623 0 obj << /Type /Annot /Subtype /Link /Rect [975.15 1384.24 1009.42 1390.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 624 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 1431.04 1200.22 1437.73] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 625 0 obj << /Type /Annot /Subtype /Link /Rect [841.95 1107.04 876.223 1113.73] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 626 0 obj << /Type /Annot /Subtype /Link /Rect [1299.15 1384.24 1333.42 1390.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 627 0 obj << /Type /Annot /Subtype /Link /Rect [975.15 1060.24 1009.42 1066.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 628 0 obj << /Type /Annot /Subtype /Link /Rect [193.95 1150.24 228.223 1156.93] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 629 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 1459.84 1200.22 1466.53] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 630 0 obj << /Type /Annot /Subtype /Link /Rect [1165.95 1445.44 1200.22 1452.13] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 631 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 411.48 530.712 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 632 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 343.08 750.312 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 633 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 472.68 231.912 475.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 634 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 501.48 231.912 504.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 635 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 404.28 206.712 407.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 636 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 1052.28 206.712 1055.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 637 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 418.68 206.712 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 638 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 411.48 206.712 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 639 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 991.08 102.312 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer4/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 640 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 411.48 419.112 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 641 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 1059.48 419.112 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer5/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 642 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 501.48 95.1123 630.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 643 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 735.48 530.712 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 644 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 627.48 109.512 630.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 645 0 obj << /Type /Annot /Subtype /Link /Rect [185.688 321.48 188.712 522.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 646 0 obj << /Type /Annot /Subtype /Link /Rect [275.688 1390.68 285.912 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 647 0 obj << /Type /Annot /Subtype /Link /Rect [318.888 1383.48 368.712 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 648 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 1250.28 426.312 1253.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 649 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 1279.08 138.312 1310.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 650 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 451.08 231.912 454.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 651 0 obj << /Type /Annot /Subtype /Link /Rect [318.888 411.48 368.712 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 652 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 343.08 750.312 346.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 653 0 obj << /Type /Annot /Subtype /Link /Rect [275.688 418.68 285.912 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 654 0 obj << /Type /Annot /Subtype /Link /Rect [318.888 418.68 368.712 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 655 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 411.48 703.512 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 656 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 969.48 188.712 972.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 657 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 458.28 231.912 461.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 658 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 991.08 102.312 994.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer4/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 659 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 976.68 87.9123 1202.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 660 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 976.68 87.9123 979.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 661 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 343.08 426.312 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 662 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 1300.68 87.9123 1303.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 663 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 1574.28 102.312 1577.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 664 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 1300.68 411.912 1526.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 665 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 1473.48 433.512 1476.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 666 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 1315.08 426.312 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 667 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 976.68 109.512 1055.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 668 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 1383.48 206.712 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 669 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 494.28 231.912 497.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 670 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 404.28 530.712 407.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 671 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 926.28 102.312 929.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 672 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 803.88 555.912 806.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 673 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 721.08 80.7123 972.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 674 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 742.68 102.312 929.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 675 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 735.48 95.1123 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 676 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 1045.08 206.712 1048.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer4/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 677 0 obj << /Type /Annot /Subtype /Link /Rect [318.888 742.68 368.712 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 678 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 1444.68 555.912 1447.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 679 0 obj << /Type /Annot /Subtype /Link /Rect [318.888 735.48 368.712 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 680 0 obj << /Type /Annot /Subtype /Link /Rect [509.688 645.48 512.712 846.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 681 0 obj << /Type /Annot /Subtype /Link /Rect [430.488 652.68 433.512 731.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 682 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 1307.88 95.1123 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 683 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 645.48 512.712 648.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 684 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 825.48 433.512 828.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 685 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 667.08 426.312 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 686 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 789.48 555.912 792.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 687 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 775.08 555.912 778.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 688 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 782.28 555.912 785.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 689 0 obj << /Type /Annot /Subtype /Link /Rect [599.688 1390.68 609.912 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer7/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 690 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 1390.68 703.512 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 691 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 991.08 1074.31 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 692 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 1383.48 703.512 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 693 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 825.48 555.912 828.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 694 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 1315.08 426.312 1318.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 695 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 1376.28 206.712 1379.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 696 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 976.68 411.912 979.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 697 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 1369.08 206.712 1372.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer4/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 698 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 1390.68 206.712 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 699 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 721.08 206.712 724.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 700 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 1199.88 109.512 1202.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 701 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 1275.48 109.512 1278.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 702 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 397.08 530.712 400.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 703 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 343.08 102.312 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 704 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 1300.68 411.912 1303.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 705 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 1149.48 109.512 1152.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 706 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 818.28 555.912 821.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 707 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 1149.48 95.1123 1278.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 708 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 397.08 404.712 648.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 709 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 652.68 87.9123 655.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 710 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 796.68 555.912 799.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 711 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 1300.68 87.9123 1379.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 712 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 1315.08 102.312 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 713 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 1307.88 138.312 1310.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 714 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 1059.48 206.712 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 715 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 1149.48 231.912 1152.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 716 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 728.28 206.712 731.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 717 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 667.08 426.312 670.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 718 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 1106.28 231.912 1109.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 719 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 1113.48 231.912 1116.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 720 0 obj << /Type /Annot /Subtype /Link /Rect [275.688 742.68 285.912 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 721 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 328.68 411.912 331.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 722 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 1099.08 231.912 1102.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 723 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 397.08 80.7123 724.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 724 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 501.48 109.512 504.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 725 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 1127.88 231.912 1130.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 726 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 1135.08 231.912 1138.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 727 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 1066.68 206.712 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer4/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 728 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 314.28 743.112 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 729 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 314.28 404.712 400.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 730 0 obj << /Type /Annot /Subtype /Link /Rect [459.288 314.28 462.312 338.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 731 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 1120.68 231.912 1123.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 732 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 659.88 138.312 662.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 733 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 735.48 206.712 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 734 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 667.08 102.312 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 735 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 551.88 109.512 554.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 736 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 721.08 404.712 1048.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 737 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 328.68 735.912 554.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 738 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 397.08 728.712 724.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 739 0 obj << /Type /Annot /Subtype /Link /Rect [538.488 926.28 750.312 929.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 740 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 465.48 231.912 468.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 741 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 602.28 426.312 605.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 742 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 487.08 231.912 490.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 743 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 479.88 231.912 482.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 744 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 631.08 138.312 662.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 745 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 335.88 419.112 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 746 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 328.68 411.912 407.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 747 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 742.68 206.712 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 748 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 335.88 462.312 338.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 749 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 811.08 555.912 814.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 750 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 825.48 419.112 954.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 751 0 obj << /Type /Annot /Subtype /Link /Rect [318.888 1066.68 368.712 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 752 0 obj << /Type /Annot /Subtype /Link /Rect [275.688 1066.68 285.912 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer4/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 753 0 obj << /Type /Annot /Subtype /Link /Rect [459.288 955.08 462.312 986.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer5/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 754 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 951.48 433.512 954.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 755 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 652.68 411.912 655.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 756 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 1142.28 231.912 1145.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 757 0 obj << /Type /Annot /Subtype /Link /Rect [430.488 728.28 530.712 731.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 758 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 721.08 530.712 724.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 759 0 obj << /Type /Annot /Subtype /Link /Rect [599.688 1066.68 609.912 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer5/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 760 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 1066.68 703.512 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 761 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 1059.48 703.512 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 762 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 1293.48 512.712 1296.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 763 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 742.68 530.712 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 764 0 obj << /Type /Annot /Subtype /Link /Rect [599.688 742.68 609.912 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer3/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 765 0 obj << /Type /Annot /Subtype /Link /Rect [430.488 1300.68 735.912 1303.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 766 0 obj << /Type /Annot /Subtype /Link /Rect [430.488 652.68 735.912 655.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 767 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 328.68 735.912 331.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 768 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 652.68 411.912 878.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 769 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 328.68 87.9123 554.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 770 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 397.08 206.712 400.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 771 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 321.48 188.712 324.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 772 0 obj << /Type /Annot /Subtype /Link /Rect [185.688 969.48 188.712 1170.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 773 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 314.28 95.1123 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 774 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 328.68 87.9123 331.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 775 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 328.68 109.512 407.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 776 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 343.08 102.312 346.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 777 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 1045.08 80.7123 1372.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer4/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 778 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 1045.08 404.712 1296.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 779 0 obj << /Type /Annot /Subtype /Link /Rect [318.888 1059.48 368.712 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 780 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 983.88 462.312 986.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer5/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 781 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 742.68 703.512 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 782 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 659.88 95.1123 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 783 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 976.68 735.912 979.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 784 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 991.08 750.312 994.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 785 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 735.48 703.512 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 786 0 obj << /Type /Annot /Subtype /Link /Rect [599.688 418.68 609.912 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 787 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 1052.28 530.712 1055.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 788 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 1059.48 530.712 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer5/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 789 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 1045.08 530.712 1048.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 790 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 314.28 80.7123 324.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 791 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 976.68 411.912 1055.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 792 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 991.08 426.312 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 793 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 983.88 419.112 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer5/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 794 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 418.68 530.712 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 795 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 652.68 87.9123 731.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 796 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 418.68 703.512 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 797 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 418.68 426.312 605.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 798 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 1066.68 426.312 1253.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 799 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 875.88 433.512 878.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 800 0 obj << /Type /Annot /Subtype /Link /Rect [1157.69 1293.48 1160.71 1494.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 801 0 obj << /Type /Annot /Subtype /Link /Rect [1290.89 742.68 1351.51 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 802 0 obj << /Type /Annot /Subtype /Link /Rect [1290.89 735.48 1351.51 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 803 0 obj << /Type /Annot /Subtype /Link /Rect [966.888 1390.68 1016.71 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 804 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 1369.08 728.712 1613.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 805 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 1390.68 750.312 1577.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 806 0 obj << /Type /Annot /Subtype /Link /Rect [966.888 1066.68 1016.71 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 807 0 obj << /Type /Annot /Subtype /Link /Rect [923.688 1066.68 933.912 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 808 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 1066.68 1074.31 1253.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 809 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 1369.08 1178.71 1372.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer15/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 810 0 obj << /Type /Annot /Subtype /Link /Rect [1078.49 1376.28 1178.71 1379.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer15/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 811 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 1437.48 1203.91 1440.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 812 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 1423.08 1203.91 1426.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 813 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 1383.48 1178.71 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer13/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 814 0 obj << /Type /Annot /Subtype /Link /Rect [1290.89 1390.68 1351.51 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 815 0 obj << /Type /Annot /Subtype /Link /Rect [1247.69 742.68 1257.91 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 816 0 obj << /Type /Annot /Subtype /Link /Rect [1078.49 1300.68 1081.51 1379.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer15/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 817 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 1300.68 1059.91 1526.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 818 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 1430.28 1203.91 1433.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 819 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 1451.88 1203.91 1454.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 820 0 obj << /Type /Annot /Subtype /Link /Rect [1078.49 1300.68 1369.51 1303.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer15/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 821 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 1444.68 1203.91 1447.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 822 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 1523.88 1081.51 1526.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 823 0 obj << /Type /Annot /Subtype /Link /Rect [1107.29 1603.08 1110.31 1613.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box3/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 824 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 1369.08 1052.71 1613.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer15/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 825 0 obj << /Type /Annot /Subtype /Link /Rect [1186.49 1574.28 1369.51 1577.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box3/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 826 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 1599.48 1081.51 1602.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 827 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 1473.48 1203.91 1476.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 828 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 1466.28 1203.91 1469.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 829 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 1473.48 1081.51 1476.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 830 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 335.88 1067.11 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 831 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 652.68 735.912 731.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 832 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 667.08 750.312 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 833 0 obj << /Type /Annot /Subtype /Link /Rect [1107.29 958.68 1110.31 986.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer13/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 834 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 951.48 1081.51 954.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 835 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 721.08 1178.71 724.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 836 0 obj << /Type /Annot /Subtype /Link /Rect [1078.49 728.28 1178.71 731.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 837 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 825.48 1081.51 828.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 838 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 721.08 1052.71 1048.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 839 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 735.48 1178.71 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 840 0 obj << /Type /Annot /Subtype /Link /Rect [966.888 742.68 1016.71 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 841 0 obj << /Type /Annot /Subtype /Link /Rect [966.888 735.48 1016.71 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 842 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 418.68 1178.71 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer9/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 843 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 343.08 1074.31 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer9/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 844 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 335.88 1110.31 338.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 845 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 1459.08 1203.91 1462.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 846 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 411.48 1178.71 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 847 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 418.68 1074.31 605.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer9/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 848 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 397.08 1052.71 648.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 849 0 obj << /Type /Annot /Subtype /Link /Rect [862.488 602.28 1074.31 605.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer9/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 850 0 obj << /Type /Annot /Subtype /Link /Rect [783.288 631.08 786.312 662.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 851 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 667.08 1074.31 670.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 852 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 404.28 854.712 407.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 853 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 397.08 854.712 400.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 854 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 411.48 854.712 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 855 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 418.68 854.712 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 856 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 551.88 757.512 554.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 857 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 627.48 757.512 630.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 858 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 501.48 743.112 630.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 859 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 501.48 757.512 504.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 860 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 1127.88 879.912 1130.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 861 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 983.88 1110.31 986.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer13/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 862 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 991.08 1369.51 994.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 863 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 976.68 1369.51 979.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 864 0 obj << /Type /Annot /Subtype /Link /Rect [1290.89 1066.68 1351.51 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 865 0 obj << /Type /Annot /Subtype /Link /Rect [1290.89 1059.48 1351.51 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 866 0 obj << /Type /Annot /Subtype /Link /Rect [1247.69 1066.68 1257.91 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer13/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 867 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 1045.08 1178.71 1048.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 868 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 1059.48 1178.71 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer13/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 869 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 1390.68 1178.71 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 870 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 1293.48 1160.71 1296.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 871 0 obj << /Type /Annot /Subtype /Link /Rect [1290.89 1383.48 1351.51 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 872 0 obj << /Type /Annot /Subtype /Link /Rect [1247.69 1390.68 1257.91 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer15/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 873 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 1149.48 757.512 1152.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 874 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 1135.08 879.912 1138.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 875 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 1052.28 1178.71 1055.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 876 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 1106.28 879.912 1109.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 877 0 obj << /Type /Annot /Subtype /Link /Rect [833.688 969.48 836.712 1170.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 878 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 1113.48 879.912 1116.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 879 0 obj << /Type /Annot /Subtype /Link /Rect [966.888 1059.48 1016.71 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 880 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 976.68 1059.91 979.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 881 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 1052.28 854.712 1055.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 882 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 1066.68 854.712 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 883 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 976.68 757.512 1055.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 884 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 1059.48 854.712 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 885 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 1045.08 854.712 1048.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 886 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 991.08 750.312 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 887 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 969.48 836.712 972.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 888 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 983.88 1067.11 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer13/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 889 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 976.68 1059.91 1055.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 890 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 1142.28 879.912 1145.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 891 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 1473.48 1067.11 1602.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 892 0 obj << /Type /Annot /Subtype /Link /Rect [923.688 1390.68 933.912 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 893 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 1376.28 854.712 1379.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 894 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 1300.68 735.912 1379.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 895 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 1275.48 757.512 1278.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 896 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 1149.48 743.112 1278.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 897 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 1199.88 757.512 1202.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 898 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 1099.08 879.912 1102.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 899 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 1369.08 854.712 1372.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 900 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 1059.48 1067.11 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer13/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 901 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 1045.08 728.712 1372.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 902 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 976.68 735.912 1202.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 903 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 1045.08 1052.71 1296.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 904 0 obj << /Type /Annot /Subtype /Link /Rect [783.288 1279.08 786.312 1310.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 905 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 1423.08 555.912 1426.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 906 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 1120.68 879.912 1123.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 907 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 1149.48 879.912 1152.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 908 0 obj << /Type /Annot /Subtype /Link /Rect [966.888 1383.48 1016.71 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 909 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 1300.68 1059.91 1303.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 910 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 1315.08 1074.31 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 911 0 obj << /Type /Annot /Subtype /Link /Rect [862.488 1250.28 1074.31 1253.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 912 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 1315.08 1074.31 1318.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 913 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 1315.08 750.312 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 914 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 1307.88 743.112 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 915 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 1307.88 786.312 1310.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 916 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 1390.68 854.712 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 917 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 1383.48 854.712 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 918 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 1066.68 1178.71 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 919 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 465.48 879.912 468.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 920 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 1066.68 530.712 1069.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer12/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 921 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 796.68 1203.91 799.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 922 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 782.28 1203.91 785.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 923 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 775.08 1203.91 778.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 924 0 obj << /Type /Annot /Subtype /Link /Rect [1290.89 418.68 1351.51 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 925 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 803.88 1203.91 806.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 926 0 obj << /Type /Annot /Subtype /Link /Rect [1290.89 411.48 1351.51 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 927 0 obj << /Type /Annot /Subtype /Link /Rect [1247.69 418.68 1257.91 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer9/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 928 0 obj << /Type /Annot /Subtype /Link /Rect [1157.69 645.48 1160.71 846.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 929 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 742.68 1178.71 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 930 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 789.48 1203.91 792.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 931 0 obj << /Type /Annot /Subtype /Link /Rect [430.488 1376.28 530.712 1379.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 932 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 1383.48 743.112 1613.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 933 0 obj << /Type /Annot /Subtype /Link /Rect [538.488 1574.28 750.312 1577.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 934 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 1466.28 555.912 1469.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 935 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 451.08 879.912 454.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 936 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 1473.48 555.912 1476.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 937 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 479.88 879.912 482.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 938 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 501.48 879.912 504.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 939 0 obj << /Type /Annot /Subtype /Link /Rect [833.688 321.48 836.712 522.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box2/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 940 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 875.88 1081.51 878.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 941 0 obj << /Type /Annot /Subtype /Link /Rect [1078.49 652.68 1081.51 731.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 942 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 667.08 1074.31 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 943 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 652.68 1059.91 878.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 944 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 818.28 1203.91 821.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 945 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 825.48 1203.91 828.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 946 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 825.48 1067.11 954.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 947 0 obj << /Type /Annot /Subtype /Link /Rect [1071.29 343.08 1369.51 346.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer9/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 948 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 1369.08 404.712 1613.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer7/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 949 0 obj << /Type /Annot /Subtype /Link /Rect [1078.49 652.68 1369.51 655.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 950 0 obj << /Type /Annot /Subtype /Link /Rect [1186.49 926.28 1369.51 929.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 951 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 494.28 879.912 497.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 952 0 obj << /Type /Annot /Subtype /Link /Rect [1107.29 314.28 1110.31 338.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 953 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 397.08 1178.71 400.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 954 0 obj << /Type /Annot /Subtype /Link /Rect [459.288 1603.08 462.312 1613.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 955 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 645.48 1160.71 648.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 956 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 404.28 1178.71 407.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 957 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 328.68 1369.51 331.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 958 0 obj << /Type /Annot /Subtype /Link /Rect [1150.49 811.08 1203.91 814.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 959 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 659.88 743.112 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 960 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 411.48 1067.11 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer11/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 961 0 obj << /Type /Annot /Subtype /Link /Rect [923.688 742.68 933.912 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 962 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 314.28 1052.71 400.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 963 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 1473.48 419.112 1602.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 964 0 obj << /Type /Annot /Subtype /Link /Rect [77.688 1369.08 80.7123 1613.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer4/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 965 0 obj << /Type /Annot /Subtype /Link /Rect [408.888 1523.88 433.512 1526.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 966 0 obj << /Type /Annot /Subtype /Link /Rect [430.488 1300.68 433.512 1379.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer14/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 967 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 1383.48 530.712 1386.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer5/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 968 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 314.28 728.712 324.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box2/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 969 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 321.48 836.712 324.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box2/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 970 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 328.68 757.512 407.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 971 0 obj << /Type /Annot /Subtype /Link /Rect [423.288 1390.68 530.712 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 972 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 1369.08 530.712 1372.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer7/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 973 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 1451.88 555.912 1454.9] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 974 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 328.68 1059.91 407.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 975 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 742.68 854.712 745.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 976 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 728.28 854.712 731.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 977 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 1437.48 555.912 1440.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 978 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 1430.28 555.912 1433.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 979 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 721.08 728.712 972.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 980 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 735.48 743.112 1062.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 981 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 742.68 750.312 929.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 982 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 652.68 1059.91 655.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box2/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 983 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 735.48 854.712 738.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 984 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 721.08 854.712 724.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box3/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 985 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 659.88 786.312 662.904] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 986 0 obj << /Type /Annot /Subtype /Link /Rect [509.688 1293.48 512.712 1494.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box1/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 987 0 obj << /Type /Annot /Subtype /Link /Rect [966.888 418.68 1016.71 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 988 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 328.68 1059.91 331.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 989 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 487.08 879.912 490.104] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 990 0 obj << /Type /Annot /Subtype /Link /Rect [966.888 411.48 1016.71 414.504] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 991 0 obj << /Type /Annot /Subtype /Link /Rect [923.688 418.68 933.912 421.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer8/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 992 0 obj << /Type /Annot /Subtype /Link /Rect [502.488 1459.08 555.912 1462.1] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 993 0 obj << /Type /Annot /Subtype /Link /Rect [92.088 1383.48 95.1123 1613.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 994 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 472.68 879.912 475.704] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 995 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 1390.68 102.312 1577.3] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer6/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 996 0 obj << /Type /Annot /Subtype /Link /Rect [416.088 1599.48 433.512 1602.5] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 997 0 obj << /Type /Annot /Subtype /Link /Rect [318.888 1390.68 368.712 1393.7] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 998 0 obj << /Type /Annot /Subtype /Link /Rect [826.488 458.28 879.912 461.304] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1093 0 obj << /Type /Annot /Subtype /Link /Rect [57.456 712.296 101.88 769.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C_FUNCTION?"], ["Value = ~"], ]\);) >> >> endobj 1094 0 obj << /Type /Annot /Subtype /Link /Rect [636.12 144.2 674.28 194.976] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U122"], ["Value = ~"], ]\);) >> >> endobj 1095 0 obj << /Type /Annot /Subtype /Link /Rect [981.72 507.8 1012.68 558.576] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1096 0 obj << /Type /Annot /Subtype /Link /Rect [1026 507.096 1063.08 520.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1097 0 obj << /Type /Annot /Subtype /Link /Rect [1032.12 511.4 1063.08 547.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1098 0 obj << /Type /Annot /Subtype /Link /Rect [1057.32 488.918 1095.48 517.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U152"], ["Value = ~"], ]\);) >> >> endobj 1099 0 obj << /Type /Annot /Subtype /Link /Rect [1078.92 453.8 1109.88 490.176] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1100 0 obj << /Type /Annot /Subtype /Link /Rect [1064.52 420.696 1102.68 448.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U148"], ["Value = ~"], ]\);) >> >> endobj 1101 0 obj << /Type /Annot /Subtype /Link /Rect [358.92 362.582 389.88 383.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1102 0 obj << /Type /Annot /Subtype /Link /Rect [981.72 453.8 1012.68 504.576] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1103 0 obj << /Type /Annot /Subtype /Link /Rect [996.12 431.496 1023.48 452.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U1225"], ["Value = ~"], ]\);) >> >> endobj 1104 0 obj << /Type /Annot /Subtype /Link /Rect [996.12 421.056 1019.88 434.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1105 0 obj << /Type /Annot /Subtype /Link /Rect [358.92 376.982 386.28 398.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1106 0 obj << /Type /Annot /Subtype /Link /Rect [1078.92 507.8 1109.88 544.176] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1107 0 obj << /Type /Annot /Subtype /Link /Rect [625.32 222.696 670.68 250.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L22"], ["Value = ~"], ]\);) >> >> endobj 1108 0 obj << /Type /Annot /Subtype /Link /Rect [639.72 273.096 670.68 301.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L21"], ["Value = ~"], ]\);) >> >> endobj 1109 0 obj << /Type /Annot /Subtype /Link /Rect [180 251.496 217.08 265.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1110 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 370.349 274.68 398.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1111 0 obj << /Type /Annot /Subtype /Link /Rect [225.72 615.096 253.08 635.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1112 0 obj << /Type /Annot /Subtype /Link /Rect [222.12 632.582 253.08 653.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1113 0 obj << /Type /Annot /Subtype /Link /Rect [114.12 646.416 159.48 689.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1114 0 obj << /Type /Annot /Subtype /Link /Rect [61.2 341.496 98.2803 355.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1115 0 obj << /Type /Annot /Subtype /Link /Rect [308.52 362.582 339.48 383.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1116 0 obj << /Type /Annot /Subtype /Link /Rect [67.3197 641 105.48 691.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1117 0 obj << /Type /Annot /Subtype /Link /Rect [301.32 420.749 332.28 448.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1118 0 obj << /Type /Annot /Subtype /Link /Rect [315.72 380.016 346.68 416.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1119 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 406.296 976.68 419.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U103"], ["Value = ~"], ]\);) >> >> endobj 1120 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 568.296 976.68 581.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U73"], ["Value = ~"], ]\);) >> >> endobj 1121 0 obj << /Type /Annot /Subtype /Link /Rect [996.12 665.856 1019.88 682.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1122 0 obj << /Type /Annot /Subtype /Link /Rect [1050.12 650.582 1077.48 671.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1123 0 obj << /Type /Annot /Subtype /Link /Rect [99.7197 417.096 127.08 437.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1124 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 330.696 976.68 344.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U115"], ["Value = ~"], ]\);) >> >> endobj 1125 0 obj << /Type /Annot /Subtype /Link /Rect [99.7197 425 145.08 475.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1126 0 obj << /Type /Annot /Subtype /Link /Rect [99.7197 399.096 127.08 419.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1127 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 309.096 976.68 322.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U112"], ["Value = ~"], ]\);) >> >> endobj 1128 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 323.496 976.68 337.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U110"], ["Value = ~"], ]\);) >> >> endobj 1129 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 316.296 976.68 329.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U111"], ["Value = ~"], ]\);) >> >> endobj 1130 0 obj << /Type /Annot /Subtype /Link /Rect [974.52 323.856 998.28 337.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U113"], ["Value = ~"], ]\);) >> >> endobj 1131 0 obj << /Type /Annot /Subtype /Link /Rect [60.1197 425 98.2803 475.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1132 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 399.096 976.68 412.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U100"], ["Value = ~"], ]\);) >> >> endobj 1133 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 391.896 976.68 405.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U101"], ["Value = ~"], ]\);) >> >> endobj 1134 0 obj << /Type /Annot /Subtype /Link /Rect [153.72 528.182 181.08 549.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1135 0 obj << /Type /Annot /Subtype /Link /Rect [996.12 676.296 1023.48 697.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U1224"], ["Value = ~"], ]\);) >> >> endobj 1136 0 obj << /Type /Annot /Subtype /Link /Rect [1064.52 665.496 1102.68 693.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U147"], ["Value = ~"], ]\);) >> >> endobj 1137 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 507.096 976.68 520.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U76"], ["Value = ~"], ]\);) >> >> endobj 1138 0 obj << /Type /Annot /Subtype /Link /Rect [996.12 323.496 1023.48 344.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U114"], ["Value = ~"], ]\);) >> >> endobj 1139 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 499.896 976.68 513.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U78"], ["Value = ~"], ]\);) >> >> endobj 1140 0 obj << /Type /Annot /Subtype /Link /Rect [1057.32 326.918 1095.48 355.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U153"], ["Value = ~"], ]\);) >> >> endobj 1141 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 438.696 976.68 452.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U108"], ["Value = ~"], ]\);) >> >> endobj 1142 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 431.496 976.68 445.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U107"], ["Value = ~"], ]\);) >> >> endobj 1143 0 obj << /Type /Annot /Subtype /Link /Rect [970.92 348.696 1016.28 369.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C12"], ["Value = ~"], ]\);) >> >> endobj 1144 0 obj << /Type /Annot /Subtype /Link /Rect [1050.12 405.782 1077.48 427.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1145 0 obj << /Type /Annot /Subtype /Link /Rect [1032.12 457.4 1063.08 493.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1146 0 obj << /Type /Annot /Subtype /Link /Rect [82.8 258.696 119.88 272.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U22"], ["Value = ~"], ]\);) >> >> endobj 1147 0 obj << /Type /Annot /Subtype /Link /Rect [117.72 251.496 145.08 272.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U67"], ["Value = ~"], ]\);) >> >> endobj 1148 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 254.016 231.48 284.976] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1149 0 obj << /Type /Annot /Subtype /Link /Rect [56.5197 546.696 101.88 574.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L?"], ["Value = ~"], ]\);) >> >> endobj 1150 0 obj << /Type /Annot /Subtype /Link /Rect [153.72 493.4 191.88 521.674] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1151 0 obj << /Type /Annot /Subtype /Link /Rect [553.32 639.782 584.28 661.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U88"], ["Value = ~"], ]\);) >> >> endobj 1152 0 obj << /Type /Annot /Subtype /Link /Rect [610.92 471.096 663.48 513.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = LT?"], ["Value = ~"], ]\);) >> >> endobj 1153 0 obj << /Type /Annot /Subtype /Link /Rect [608.4 640.296 645.48 653.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1154 0 obj << /Type /Annot /Subtype /Link /Rect [186.12 479 217.08 508.176] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1155 0 obj << /Type /Annot /Subtype /Link /Rect [466.92 604.296 497.88 632.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L30"], ["Value = ~"], ]\);) >> >> endobj 1156 0 obj << /Type /Annot /Subtype /Link /Rect [510.12 575.496 541.08 603.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L29"], ["Value = ~"], ]\);) >> >> endobj 1157 0 obj << /Type /Annot /Subtype /Link /Rect [493.2 604.296 530.28 617.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U80"], ["Value = ~"], ]\);) >> >> endobj 1158 0 obj << /Type /Annot /Subtype /Link /Rect [528.12 625.896 555.48 646.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U83"], ["Value = ~"], ]\);) >> >> endobj 1159 0 obj << /Type /Annot /Subtype /Link /Rect [528.12 597.096 555.48 617.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U82"], ["Value = ~"], ]\);) >> >> endobj 1160 0 obj << /Type /Annot /Subtype /Link /Rect [56.5197 481.896 101.88 502.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1161 0 obj << /Type /Annot /Subtype /Link /Rect [553.32 610.982 584.28 632.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U87"], ["Value = ~"], ]\);) >> >> endobj 1162 0 obj << /Type /Annot /Subtype /Link /Rect [56.5197 510.696 101.88 538.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L?"], ["Value = ~"], ]\);) >> >> endobj 1163 0 obj << /Type /Annot /Subtype /Link /Rect [610.92 427.896 663.48 470.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = FF?"], ["Value = ~"], ]\);) >> >> endobj 1164 0 obj << /Type /Annot /Subtype /Link /Rect [97.0223 516.816 125.602 554.976] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1165 0 obj << /Type /Annot /Subtype /Link /Rect [258.12 605 289.08 641.376] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1166 0 obj << /Type /Annot /Subtype /Link /Rect [538.92 536.256 562.68 553.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1167 0 obj << /Type /Annot /Subtype /Link /Rect [510.12 553.896 541.08 581.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1168 0 obj << /Type /Annot /Subtype /Link /Rect [466.92 561.096 512.28 581.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1169 0 obj << /Type /Annot /Subtype /Link /Rect [236.52 588.816 267.48 617.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1170 0 obj << /Type /Annot /Subtype /Link /Rect [489.6 463.896 526.68 477.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1171 0 obj << /Type /Annot /Subtype /Link /Rect [489.6 471.096 526.68 484.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1172 0 obj << /Type /Annot /Subtype /Link /Rect [610.92 521.496 663.48 563.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = FF?"], ["Value = ~"], ]\);) >> >> endobj 1173 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 586.296 195.48 614.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1174 0 obj << /Type /Annot /Subtype /Link /Rect [510.12 417.8 541.08 468.576] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1175 0 obj << /Type /Annot /Subtype /Link /Rect [488.52 431.856 512.28 448.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1176 0 obj << /Type /Annot /Subtype /Link /Rect [538.92 442.656 562.68 459.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1177 0 obj << /Type /Annot /Subtype /Link /Rect [466.92 633.096 497.88 661.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L31"], ["Value = ~"], ]\);) >> >> endobj 1178 0 obj << /Type /Annot /Subtype /Link /Rect [61.2 348.696 98.2803 362.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1179 0 obj << /Type /Annot /Subtype /Link /Rect [186.12 515 217.08 544.176] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1180 0 obj << /Type /Annot /Subtype /Link /Rect [704.52 446.256 728.28 463.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1181 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 543.096 195.48 571.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1182 0 obj << /Type /Annot /Subtype /Link /Rect [301.32 592.982 332.28 614.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1183 0 obj << /Type /Annot /Subtype /Link /Rect [308.52 546.182 339.48 567.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1184 0 obj << /Type /Annot /Subtype /Link /Rect [351.72 528.696 382.68 556.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1185 0 obj << /Type /Annot /Subtype /Link /Rect [286.92 180.2 325.08 259.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1186 0 obj << /Type /Annot /Subtype /Link /Rect [56.5197 258.696 87.4803 286.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1187 0 obj << /Type /Annot /Subtype /Link /Rect [56.5197 287.496 87.4803 315.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1188 0 obj << /Type /Annot /Subtype /Link /Rect [268.92 492.696 296.28 513.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1189 0 obj << /Type /Annot /Subtype /Link /Rect [254.52 506.016 285.48 542.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1190 0 obj << /Type /Annot /Subtype /Link /Rect [268.92 478.296 296.28 499.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1191 0 obj << /Type /Annot /Subtype /Link /Rect [315.72 389 346.68 425.376] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1192 0 obj << /Type /Annot /Subtype /Link /Rect [258.12 258.696 303.48 279.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1193 0 obj << /Type /Annot /Subtype /Link /Rect [61.2 355.896 98.2803 369.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1194 0 obj << /Type /Annot /Subtype /Link /Rect [258.12 287.496 303.48 308.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1195 0 obj << /Type /Annot /Subtype /Link /Rect [258.12 316.296 303.48 337.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1196 0 obj << /Type /Annot /Subtype /Link /Rect [56.5197 316.296 87.4803 344.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1197 0 obj << /Type /Annot /Subtype /Link /Rect [610.92 564.696 663.48 607.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = LT?"], ["Value = ~"], ]\);) >> >> endobj 1198 0 obj << /Type /Annot /Subtype /Link /Rect [265.32 543.096 296.28 571.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1199 0 obj << /Type /Annot /Subtype /Link /Rect [236.52 533 267.48 569.376] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1200 0 obj << /Type /Annot /Subtype /Link /Rect [56.5197 618.696 101.88 646.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L?"], ["Value = ~"], ]\);) >> >> endobj 1201 0 obj << /Type /Annot /Subtype /Link /Rect [493.2 633.096 530.28 646.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U81"], ["Value = ~"], ]\);) >> >> endobj 1202 0 obj << /Type /Annot /Subtype /Link /Rect [56.5197 582.696 101.88 610.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L?"], ["Value = ~"], ]\);) >> >> endobj 1203 0 obj << /Type /Annot /Subtype /Link /Rect [632.52 650.016 663.48 679.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1204 0 obj << /Type /Annot /Subtype /Link /Rect [643.32 632.582 670.68 653.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1205 0 obj << /Type /Annot /Subtype /Link /Rect [834.12 435.096 879.48 455.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1206 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 282.816 231.48 313.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1207 0 obj << /Type /Annot /Subtype /Link /Rect [142.92 265.382 173.88 286.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U77"], ["Value = ~"], ]\);) >> >> endobj 1208 0 obj << /Type /Annot /Subtype /Link /Rect [142.92 294.182 173.88 315.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U79"], ["Value = ~"], ]\);) >> >> endobj 1209 0 obj << /Type /Annot /Subtype /Link /Rect [997.2 280.296 1034.28 293.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U109"], ["Value = ~"], ]\);) >> >> endobj 1210 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 643.896 976.68 657.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U40"], ["Value = ~"], ]\);) >> >> endobj 1211 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 311.616 231.48 342.576] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1212 0 obj << /Type /Annot /Subtype /Link /Rect [654.12 671.616 685.08 700.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1213 0 obj << /Type /Annot /Subtype /Link /Rect [1032.12 266.6 1063.08 302.976] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1214 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 636.696 976.68 650.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1215 0 obj << /Type /Annot /Subtype /Link /Rect [1033.2 262.296 1070.28 275.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1216 0 obj << /Type /Annot /Subtype /Link /Rect [1078.92 212.6 1109.88 248.976] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1217 0 obj << /Type /Annot /Subtype /Link /Rect [1078.92 263 1109.88 299.376] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1218 0 obj << /Type /Annot /Subtype /Link /Rect [1068.12 250.982 1095.48 272.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1219 0 obj << /Type /Annot /Subtype /Link /Rect [1028.52 590.6 1059.48 641.376] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1220 0 obj << /Type /Annot /Subtype /Link /Rect [1033.2 589.896 1070.28 603.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1221 0 obj << /Type /Annot /Subtype /Link /Rect [985.32 593.496 1030.68 614.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1222 0 obj << /Type /Annot /Subtype /Link /Rect [763.2 550.296 800.28 563.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1223 0 obj << /Type /Annot /Subtype /Link /Rect [763.2 463.896 800.28 477.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1224 0 obj << /Type /Annot /Subtype /Link /Rect [763.2 456.696 800.28 470.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1225 0 obj << /Type /Annot /Subtype /Link /Rect [1014.12 345.8 1045.08 396.576] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1226 0 obj << /Type /Annot /Subtype /Link /Rect [763.2 557.496 800.28 571.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1227 0 obj << /Type /Annot /Subtype /Link /Rect [799.2 514.296 836.28 527.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1228 0 obj << /Type /Annot /Subtype /Link /Rect [834.12 514.296 861.48 535.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1229 0 obj << /Type /Annot /Subtype /Link /Rect [834.12 528.696 879.48 549.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1230 0 obj << /Type /Annot /Subtype /Link /Rect [783.72 504.2 814.68 554.976] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1231 0 obj << /Type /Annot /Subtype /Link /Rect [82.8 287.496 119.88 301.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U23"], ["Value = ~"], ]\);) >> >> endobj 1232 0 obj << /Type /Annot /Subtype /Link /Rect [1029.6 345.096 1066.68 358.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1233 0 obj << /Type /Annot /Subtype /Link /Rect [1044 377.496 1081.08 391.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1234 0 obj << /Type /Annot /Subtype /Link /Rect [1078.92 342.2 1109.88 392.976] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1235 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 561.096 976.68 574.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U68"], ["Value = ~"], ]\);) >> >> endobj 1236 0 obj << /Type /Annot /Subtype /Link /Rect [1078.92 587 1109.88 637.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1237 0 obj << /Type /Annot /Subtype /Link /Rect [117.72 280.296 145.08 301.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U24"], ["Value = ~"], ]\);) >> >> endobj 1238 0 obj << /Type /Annot /Subtype /Link /Rect [661.32 442.296 706.68 463.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1239 0 obj << /Type /Annot /Subtype /Link /Rect [783.72 410.6 814.68 461.376] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1240 0 obj << /Type /Annot /Subtype /Link /Rect [661.32 535.896 706.68 556.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1241 0 obj << /Type /Annot /Subtype /Link /Rect [974.52 568.656 998.28 581.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1242 0 obj << /Type /Annot /Subtype /Link /Rect [996.12 568.296 1023.48 589.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1243 0 obj << /Type /Annot /Subtype /Link /Rect [967.32 263 998.28 313.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1244 0 obj << /Type /Annot /Subtype /Link /Rect [834.12 420.696 861.48 441.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1245 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 262.296 976.68 275.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U120"], ["Value = ~"], ]\);) >> >> endobj 1246 0 obj << /Type /Annot /Subtype /Link /Rect [690.12 654.696 735.48 675.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1247 0 obj << /Type /Annot /Subtype /Link /Rect [1057.32 565.4 1095.48 593.496] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U151"], ["Value = ~"], ]\);) >> >> endobj 1248 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 553.896 976.68 567.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U69"], ["Value = ~"], ]\);) >> >> endobj 1249 0 obj << /Type /Annot /Subtype /Link /Rect [704.52 539.856 728.28 556.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1250 0 obj << /Type /Annot /Subtype /Link /Rect [690.12 676.296 735.48 697.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C?"], ["Value = ~"], ]\);) >> >> endobj 1251 0 obj << /Type /Annot /Subtype /Link /Rect [970.92 209 1001.88 259.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 1252 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 255.096 976.68 268.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U121"], ["Value = ~"], ]\);) >> >> endobj 1253 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 651.096 976.68 664.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1254 0 obj << /Type /Annot /Subtype /Link /Rect [939.6 676.296 976.68 689.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1255 0 obj << /Type /Annot /Subtype /Link /Rect [799.2 420.696 836.28 434.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 1256 0 obj << /Type /Annot /Subtype /Link /Rect [1029.15 675.544 1050.74 682.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1257 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 247.144 954.395 253.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1258 0 obj << /Type /Annot /Subtype /Link /Rect [445.95 441.544 469.081 448.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1259 0 obj << /Type /Annot /Subtype /Link /Rect [445.95 455.944 476.281 462.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1260 0 obj << /Type /Annot /Subtype /Link /Rect [60.7499 419.944 71.5377 426.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1261 0 obj << /Type /Annot /Subtype /Link /Rect [60.7499 365.944 73.7663 372.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1262 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 614.344 968.795 621.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1263 0 obj << /Type /Annot /Subtype /Link /Rect [942.75 686.344 963.995 693.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1264 0 obj << /Type /Annot /Subtype /Link /Rect [445.95 448.744 476.281 455.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1265 0 obj << /Type /Annot /Subtype /Link /Rect [445.95 538.744 476.281 545.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1266 0 obj << /Type /Annot /Subtype /Link /Rect [215.55 635.944 226.852 642.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1267 0 obj << /Type /Annot /Subtype /Link /Rect [195.659 575.444 202.352 586.746] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1268 0 obj << /Type /Annot /Subtype /Link /Rect [202.859 575.444 209.552 586.746] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1269 0 obj << /Type /Annot /Subtype /Link /Rect [60.7499 427.144 72.0519 433.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1270 0 obj << /Type /Annot /Subtype /Link /Rect [60.7499 401.944 75.9949 408.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_-1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1271 0 obj << /Type /Annot /Subtype /Link /Rect [942.75 578.344 963.995 585.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1272 0 obj << /Type /Annot /Subtype /Link /Rect [60.7499 409.144 72.0519 415.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1273 0 obj << /Type /Annot /Subtype /Link /Rect [1036.35 581.944 1057.94 588.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1274 0 obj << /Type /Annot /Subtype /Link /Rect [1057.95 625.144 1079.19 631.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1275 0 obj << /Type /Annot /Subtype /Link /Rect [1029.15 661.144 1050.57 667.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1276 0 obj << /Type /Annot /Subtype /Link /Rect [60.7499 373.144 73.7663 379.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1277 0 obj << /Type /Annot /Subtype /Link /Rect [215.55 625.144 226.852 631.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1278 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 286.744 968.795 293.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1279 0 obj << /Type /Annot /Subtype /Link /Rect [74.5194 499.144 101.25 505.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_EN_CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1280 0 obj << /Type /Annot /Subtype /Link /Rect [755.55 427.144 785.881 433.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1281 0 obj << /Type /Annot /Subtype /Link /Rect [215.55 617.944 226.852 624.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1282 0 obj << /Type /Annot /Subtype /Link /Rect [240.75 481.144 251.366 487.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1283 0 obj << /Type /Annot /Subtype /Link /Rect [240.75 488.344 267.995 495.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDCIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1284 0 obj << /Type /Annot /Subtype /Link /Rect [240.75 502.744 265.423 509.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1285 0 obj << /Type /Annot /Subtype /Link /Rect [1057.95 603.544 1080.22 610.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1286 0 obj << /Type /Annot /Subtype /Link /Rect [577.259 510.246 583.952 521.548] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1287 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 301.144 954.395 307.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1288 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 293.944 954.395 300.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1289 0 obj << /Type /Annot /Subtype /Link /Rect [1032.75 254.344 1054.17 261.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1290 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 232.744 968.795 239.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1291 0 obj << /Type /Annot /Subtype /Link /Rect [1029.15 416.344 1050.57 423.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1292 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 383.944 954.395 390.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1293 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 369.544 968.795 376.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1294 0 obj << /Type /Annot /Subtype /Link /Rect [570.059 510.246 576.752 521.205] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1295 0 obj << /Type /Annot /Subtype /Link /Rect [226.35 589.144 245.195 595.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1296 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 376.744 954.395 383.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1297 0 obj << /Type /Annot /Subtype /Link /Rect [584.459 510.246 591.152 518.805] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1298 0 obj << /Type /Annot /Subtype /Link /Rect [591.659 510.246 598.352 521.891] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1299 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 239.944 954.395 246.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1300 0 obj << /Type /Annot /Subtype /Link /Rect [611.55 632.344 632.966 639.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1301 0 obj << /Type /Annot /Subtype /Link /Rect [392.177 358.744 414.45 365.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1302 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 545.944 954.395 552.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1303 0 obj << /Type /Annot /Subtype /Link /Rect [384.805 542.344 414.45 549.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1304 0 obj << /Type /Annot /Subtype /Link /Rect [384.119 553.144 414.45 559.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1305 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 628.744 954.395 635.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1306 0 obj << /Type /Annot /Subtype /Link /Rect [392.862 625.144 414.45 631.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1307 0 obj << /Type /Annot /Subtype /Link /Rect [755.55 520.744 785.881 527.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1308 0 obj << /Type /Annot /Subtype /Link /Rect [393.205 520.744 414.45 527.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1309 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 621.544 954.395 628.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1310 0 obj << /Type /Annot /Subtype /Link /Rect [392.862 383.944 414.45 390.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COY2_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1311 0 obj << /Type /Annot /Subtype /Link /Rect [255.15 646.744 279.823 653.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1312 0 obj << /Type /Annot /Subtype /Link /Rect [215.55 643.144 226.852 649.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1313 0 obj << /Type /Annot /Subtype /Link /Rect [392.177 369.544 414.45 376.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1314 0 obj << /Type /Annot /Subtype /Link /Rect [1029.15 430.744 1058.79 437.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1315 0 obj << /Type /Annot /Subtype /Link /Rect [123.659 575.444 130.352 586.746] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1316 0 obj << /Type /Annot /Subtype /Link /Rect [384.119 599.944 414.45 606.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1317 0 obj << /Type /Annot /Subtype /Link /Rect [67.9499 689.944 86.7946 696.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1318 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 531.544 968.795 538.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1319 0 obj << /Type /Annot /Subtype /Link /Rect [102.805 715.144 130.05 721.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDCIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1320 0 obj << /Type /Annot /Subtype /Link /Rect [393.034 409.144 414.45 415.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COY2_a"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1321 0 obj << /Type /Annot /Subtype /Link /Rect [291.15 430.744 302.452 437.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1322 0 obj << /Type /Annot /Subtype /Link /Rect [233.55 387.544 244.852 394.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1323 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 491.944 954.395 498.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1324 0 obj << /Type /Annot /Subtype /Link /Rect [1057.95 358.744 1080.22 365.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1325 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 484.744 954.395 491.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1326 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 538.744 954.395 545.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1327 0 obj << /Type /Annot /Subtype /Link /Rect [111.205 743.944 130.05 750.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1328 0 obj << /Type /Annot /Subtype /Link /Rect [103.319 736.744 130.05 743.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_EN_CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1329 0 obj << /Type /Annot /Subtype /Link /Rect [1011.15 527.944 1032.39 534.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1330 0 obj << /Type /Annot /Subtype /Link /Rect [105.377 722.344 130.05 729.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1331 0 obj << /Type /Annot /Subtype /Link /Rect [939.15 477.544 968.795 484.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1332 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 509.944 154.852 516.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1333 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 517.144 154.852 523.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1334 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 524.344 154.852 531.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1335 0 obj << /Type /Annot /Subtype /Link /Rect [60.7499 473.944 79.5946 480.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1336 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 488.344 154.166 495.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1337 0 obj << /Type /Annot /Subtype /Link /Rect [755.55 441.544 778.681 448.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1338 0 obj << /Type /Annot /Subtype /Link /Rect [1025.55 499.144 1047.14 505.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COY2_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1339 0 obj << /Type /Annot /Subtype /Link /Rect [1025.55 491.944 1046.97 498.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1340 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 495.544 154.852 502.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1341 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 531.544 154.852 538.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1342 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 538.744 154.852 545.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1343 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 502.744 154.852 509.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1344 0 obj << /Type /Annot /Subtype /Link /Rect [143.55 481.144 154.166 487.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1345 0 obj << /Type /Annot /Subtype /Link /Rect [391.319 193.144 414.45 199.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1346 0 obj << /Type /Annot /Subtype /Link /Rect [138.059 575.444 144.752 586.746] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1347 0 obj << /Type /Annot /Subtype /Link /Rect [1029.15 337.144 1058.79 343.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1348 0 obj << /Type /Annot /Subtype /Link /Rect [130.859 575.444 137.552 586.746] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1349 0 obj << /Type /Annot /Subtype /Link /Rect [755.55 535.144 778.681 541.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1350 0 obj << /Type /Annot /Subtype /Link /Rect [116.459 575.444 123.152 586.746] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1351 0 obj << /Type /Annot /Subtype /Link /Rect [1011.15 473.944 1032.57 480.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COY2_a"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1352 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 239.184 289.512 242.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1353 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 617.184 228.312 620.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1354 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 426.384 102.312 429.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1355 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 663.984 69.9123 667.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1356 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 357.984 253.512 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1357 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 372.384 246.312 375.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1358 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 408.384 102.312 411.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1359 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 365.184 303.912 368.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1360 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 300.384 203.112 303.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U79-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1361 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 260.784 260.712 263.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1362 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 246.384 289.512 249.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1363 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 271.584 203.112 274.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U77-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1364 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 635.184 224.712 638.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1365 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 321.984 203.112 325.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1366 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 624.384 228.312 627.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1367 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 602.784 102.312 634.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1368 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 559.584 138.312 649.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1369 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 451.584 239.112 454.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1370 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 480.384 271.512 483.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1371 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 487.584 188.712 490.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1372 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 494.784 138.312 505.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1373 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 552.384 145.512 652.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1374 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 285.984 145.512 299.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U24-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1375 0 obj << /Type /Annot /Subtype /Link /Rect [182.088 530.784 188.712 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1376 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 231.984 289.512 235.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1377 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 401.184 102.312 404.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_-1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1378 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 635.184 73.5123 638.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1379 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 224.784 289.512 227.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1380 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 419.184 102.312 422.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1381 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 678.384 69.9123 681.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1382 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 210.384 289.512 213.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN6"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1383 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 264.384 203.112 267.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1384 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 257.184 145.512 271.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U67-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1385 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 253.584 120.312 256.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1386 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 282.384 120.312 285.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/PINY1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1387 0 obj << /Type /Annot /Subtype /Link /Rect [538.488 566.784 577.512 569.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1388 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 541.584 786.312 544.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1389 0 obj << /Type /Annot /Subtype /Link /Rect [444.888 440.784 491.112 443.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1390 0 obj << /Type /Annot /Subtype /Link /Rect [488.088 440.784 512.712 443.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1391 0 obj << /Type /Annot /Subtype /Link /Rect [444.888 455.184 512.712 458.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1392 0 obj << /Type /Annot /Subtype /Link /Rect [524.088 473.184 534.312 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1393 0 obj << /Type /Annot /Subtype /Link /Rect [538.488 588.384 584.712 591.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1394 0 obj << /Type /Annot /Subtype /Link /Rect [574.488 473.184 577.512 526.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1395 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 530.784 584.712 577.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1396 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 527.184 786.312 530.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1397 0 obj << /Type /Annot /Subtype /Link /Rect [1074.89 656.784 1095.91 659.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1398 0 obj << /Type /Annot /Subtype /Link /Rect [1092.89 635.184 1095.91 659.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1399 0 obj << /Type /Annot /Subtype /Link /Rect [995.688 653.184 1052.71 656.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1400 0 obj << /Type /Annot /Subtype /Link /Rect [1028.09 674.784 1067.11 677.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1401 0 obj << /Type /Annot /Subtype /Link /Rect [1017.29 667.584 1077.91 670.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U147-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1402 0 obj << /Type /Annot /Subtype /Link /Rect [1028.09 660.384 1052.71 663.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1403 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 624.384 1081.51 627.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1404 0 obj << /Type /Annot /Subtype /Link /Rect [1100.09 627.984 1103.11 674.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U147-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1405 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 660.384 743.112 663.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1406 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 606.384 239.112 609.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1407 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 743.184 131.112 746.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1408 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 735.984 131.112 739.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_EN_CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1409 0 obj << /Type /Annot /Subtype /Link /Rect [797.688 559.584 807.912 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1410 0 obj << /Type /Annot /Subtype /Link /Rect [797.688 465.984 807.912 469.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1411 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 519.984 786.312 523.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1412 0 obj << /Type /Annot /Subtype /Link /Rect [804.888 545.184 807.912 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1413 0 obj << /Type /Annot /Subtype /Link /Rect [732.888 681.984 750.312 685.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1414 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 627.984 1031.11 631.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1415 0 obj << /Type /Annot /Subtype /Link /Rect [747.288 527.184 750.312 685.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1416 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 440.784 786.312 443.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1417 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 437.184 584.712 483.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1418 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 480.384 613.512 483.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1419 0 obj << /Type /Annot /Subtype /Link /Rect [804.888 451.584 807.912 469.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1420 0 obj << /Type /Annot /Subtype /Link /Rect [725.688 447.984 786.312 451.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1421 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 534.384 786.312 537.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1422 0 obj << /Type /Annot /Subtype /Link /Rect [603.288 537.984 606.312 584.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1423 0 obj << /Type /Annot /Subtype /Link /Rect [833.688 523.584 836.712 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1424 0 obj << /Type /Annot /Subtype /Link /Rect [812.088 437.184 836.712 440.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1425 0 obj << /Type /Annot /Subtype /Link /Rect [596.088 595.584 599.112 649.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1426 0 obj << /Type /Annot /Subtype /Link /Rect [596.088 595.584 613.512 598.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1427 0 obj << /Type /Annot /Subtype /Link /Rect [588.888 588.384 591.912 620.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1428 0 obj << /Type /Annot /Subtype /Link /Rect [660.888 545.184 663.912 584.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1429 0 obj << /Type /Annot /Subtype /Link /Rect [596.088 501.984 613.512 505.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1430 0 obj << /Type /Annot /Subtype /Link /Rect [552.888 602.784 555.912 616.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U82-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1431 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 433.584 786.312 436.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1432 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 530.784 613.512 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1433 0 obj << /Type /Annot /Subtype /Link /Rect [596.088 552.384 599.112 598.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1434 0 obj << /Type /Annot /Subtype /Link /Rect [574.488 566.784 613.512 569.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1435 0 obj << /Type /Annot /Subtype /Link /Rect [858.888 426.384 879.912 429.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RAM_O2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1436 0 obj << /Type /Annot /Subtype /Link /Rect [754.488 426.384 786.312 429.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1437 0 obj << /Type /Annot /Subtype /Link /Rect [833.688 429.984 836.712 440.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1438 0 obj << /Type /Annot /Subtype /Link /Rect [466.488 689.184 656.712 692.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/POUTX"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1439 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 617.184 1081.51 620.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1440 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 620.784 1031.11 623.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1441 0 obj << /Type /Annot /Subtype /Link /Rect [1049.69 631.584 1052.71 649.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U40-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1442 0 obj << /Type /Annot /Subtype /Link /Rect [995.688 653.184 998.712 670.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1443 0 obj << /Type /Annot /Subtype /Link /Rect [941.688 685.584 998.712 688.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1444 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 645.984 1052.71 649.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U40-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1445 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 678.384 998.712 681.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U1224-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1446 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 653.184 998.712 656.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1447 0 obj << /Type /Annot /Subtype /Link /Rect [941.688 577.584 998.712 580.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1448 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 642.384 224.712 645.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1449 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 602.784 1081.51 605.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1450 0 obj << /Type /Annot /Subtype /Link /Rect [1020.89 681.984 1067.11 685.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U1224-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1451 0 obj << /Type /Annot /Subtype /Link /Rect [959.688 595.584 987.912 598.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1452 0 obj << /Type /Annot /Subtype /Link /Rect [959.688 602.784 987.912 605.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1453 0 obj << /Type /Annot /Subtype /Link /Rect [858.888 519.984 879.912 523.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RAM_O1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1454 0 obj << /Type /Annot /Subtype /Link /Rect [812.088 530.784 836.712 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1455 0 obj << /Type /Annot /Subtype /Link /Rect [740.088 433.584 743.112 663.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1456 0 obj << /Type /Annot /Subtype /Link /Rect [239.688 501.984 271.512 505.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1457 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 523.584 217.512 530.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1458 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 509.184 231.912 551.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1459 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 548.784 210.312 559.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1460 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 599.184 239.112 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1461 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 541.584 203.112 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1462 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 599.184 203.112 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1463 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 541.584 224.712 544.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1464 0 obj << /Type /Annot /Subtype /Link /Rect [239.688 487.584 271.512 490.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDCIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1465 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 555.984 210.312 559.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1466 0 obj << /Type /Annot /Subtype /Link /Rect [268.488 501.984 271.512 508.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1467 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 487.584 116.712 490.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1468 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 480.384 138.312 490.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1469 0 obj << /Type /Annot /Subtype /Link /Rect [120.888 537.984 123.912 605.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1470 0 obj << /Type /Annot /Subtype /Link /Rect [120.888 537.984 156.312 541.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1471 0 obj << /Type /Annot /Subtype /Link /Rect [102.888 552.384 145.512 555.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1472 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 523.584 138.312 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1473 0 obj << /Type /Annot /Subtype /Link /Rect [189.288 516.384 257.112 519.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1474 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 599.184 203.112 627.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1475 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 627.984 253.512 641.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1476 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 627.984 260.712 631.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1477 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 559.584 267.912 605.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1478 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 451.584 239.112 551.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1479 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 494.784 271.512 497.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1480 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 491.184 217.512 497.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1481 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 509.184 231.912 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1482 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 559.584 167.112 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1483 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 523.584 257.112 526.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1484 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 505.584 203.112 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1485 0 obj << /Type /Annot /Subtype /Link /Rect [189.288 505.584 192.312 519.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1486 0 obj << /Type /Annot /Subtype /Link /Rect [225.288 588.384 253.512 591.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1487 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 566.784 253.512 591.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1488 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 555.984 239.112 559.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1489 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 548.784 231.912 551.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1490 0 obj << /Type /Annot /Subtype /Link /Rect [66.888 689.184 87.9123 692.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1491 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 599.184 426.312 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1492 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 537.984 347.112 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1493 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 537.984 354.312 541.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1494 0 obj << /Type /Annot /Subtype /Link /Rect [272.088 638.784 275.112 649.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1495 0 obj << /Type /Annot /Subtype /Link /Rect [156.888 667.584 195.912 670.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1496 0 obj << /Type /Annot /Subtype /Link /Rect [254.088 645.984 275.112 649.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1497 0 obj << /Type /Annot /Subtype /Link /Rect [102.888 671.184 116.712 674.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1498 0 obj << /Type /Annot /Subtype /Link /Rect [102.888 663.984 116.712 667.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1499 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 552.384 426.312 555.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1500 0 obj << /Type /Annot /Subtype /Link /Rect [102.888 656.784 116.712 659.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1501 0 obj << /Type /Annot /Subtype /Link /Rect [102.888 678.384 116.712 681.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1502 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 721.584 131.112 724.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDF2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1503 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 714.384 131.112 717.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_ADDCIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1504 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 617.184 210.312 638.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1505 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 624.384 203.112 645.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1506 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 606.384 195.912 670.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1507 0 obj << /Type /Annot /Subtype /Link /Rect [128.088 509.184 156.312 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1508 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 552.384 167.112 555.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1509 0 obj << /Type /Annot /Subtype /Link /Rect [128.088 530.784 156.312 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1510 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 534.384 185.112 537.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1511 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 523.584 188.712 526.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1512 0 obj << /Type /Annot /Subtype /Link /Rect [182.088 530.784 185.112 537.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1513 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 494.784 188.712 497.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1514 0 obj << /Type /Annot /Subtype /Link /Rect [128.088 469.584 131.112 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1515 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 501.984 167.112 505.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1516 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 555.984 210.312 620.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1517 0 obj << /Type /Annot /Subtype /Link /Rect [120.888 516.384 156.312 519.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1518 0 obj << /Type /Annot /Subtype /Link /Rect [120.888 602.784 167.112 605.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1519 0 obj << /Type /Annot /Subtype /Link /Rect [128.088 595.584 167.112 598.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1520 0 obj << /Type /Annot /Subtype /Link /Rect [282.888 519.984 426.312 523.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1521 0 obj << /Type /Annot /Subtype /Link /Rect [293.688 555.984 311.112 559.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1522 0 obj << /Type /Annot /Subtype /Link /Rect [286.488 624.384 426.312 627.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1523 0 obj << /Type /Annot /Subtype /Link /Rect [380.088 541.584 426.312 544.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1524 0 obj << /Type /Annot /Subtype /Link /Rect [603.288 444.384 606.312 490.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1525 0 obj << /Type /Annot /Subtype /Link /Rect [588.888 545.184 613.512 548.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1526 0 obj << /Type /Annot /Subtype /Link /Rect [596.088 552.384 613.512 555.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1527 0 obj << /Type /Annot /Subtype /Link /Rect [596.088 501.984 599.112 555.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1528 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 437.184 613.512 440.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1529 0 obj << /Type /Annot /Subtype /Link /Rect [574.488 429.984 577.512 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1530 0 obj << /Type /Annot /Subtype /Link /Rect [603.288 487.584 613.512 490.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1531 0 obj << /Type /Annot /Subtype /Link /Rect [596.088 458.784 613.512 461.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1532 0 obj << /Type /Annot /Subtype /Link /Rect [560.088 444.384 606.312 447.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1533 0 obj << /Type /Annot /Subtype /Link /Rect [1092.89 487.584 1095.91 505.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U152-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1534 0 obj << /Type /Annot /Subtype /Link /Rect [574.488 429.984 613.512 433.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1535 0 obj << /Type /Annot /Subtype /Link /Rect [588.888 451.584 613.512 454.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1536 0 obj << /Type /Annot /Subtype /Link /Rect [574.488 523.584 613.512 526.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1537 0 obj << /Type /Annot /Subtype /Link /Rect [560.088 537.984 606.312 541.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1538 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 480.384 584.712 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1539 0 obj << /Type /Annot /Subtype /Link /Rect [588.888 494.784 591.912 548.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1540 0 obj << /Type /Annot /Subtype /Link /Rect [588.888 494.784 613.512 497.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1541 0 obj << /Type /Annot /Subtype /Link /Rect [660.888 451.584 663.912 490.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1542 0 obj << /Type /Annot /Subtype /Link /Rect [1010.09 473.184 1034.71 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COY2_a"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1543 0 obj << /Type /Annot /Subtype /Link /Rect [1067.69 505.584 1070.71 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U152-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1544 0 obj << /Type /Annot /Subtype /Link /Rect [1060.49 509.184 1070.71 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U152-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1545 0 obj << /Type /Annot /Subtype /Link /Rect [1020.89 573.984 1049.11 577.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U151-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1546 0 obj << /Type /Annot /Subtype /Link /Rect [1046.09 545.184 1049.11 577.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U151-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1547 0 obj << /Type /Annot /Subtype /Link /Rect [1046.09 573.984 1059.91 577.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U151-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1548 0 obj << /Type /Annot /Subtype /Link /Rect [1002.89 548.784 1005.91 566.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U68-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1549 0 obj << /Type /Annot /Subtype /Link /Rect [1028.09 415.584 1052.71 418.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1550 0 obj << /Type /Annot /Subtype /Link /Rect [1010.09 480.384 1034.71 483.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1551 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 552.384 354.312 555.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1552 0 obj << /Type /Annot /Subtype /Link /Rect [1028.09 429.984 1067.11 433.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1553 0 obj << /Type /Annot /Subtype /Link /Rect [1020.89 437.184 1067.11 440.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U1225-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1554 0 obj << /Type /Annot /Subtype /Link /Rect [1017.29 422.784 1077.91 425.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U148-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1555 0 obj << /Type /Annot /Subtype /Link /Rect [1060.49 476.784 1081.51 479.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1556 0 obj << /Type /Annot /Subtype /Link /Rect [1010.09 527.184 1034.71 530.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1557 0 obj << /Type /Annot /Subtype /Link /Rect [1010.09 534.384 1034.71 537.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1558 0 obj << /Type /Annot /Subtype /Link /Rect [1060.49 530.784 1081.51 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1559 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 404.784 303.912 407.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1560 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 422.784 332.712 433.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1561 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 429.984 354.312 433.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1562 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 404.784 318.312 407.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1563 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 429.984 303.912 433.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1564 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 397.584 303.912 407.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1565 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 411.984 318.312 415.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1566 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 397.584 318.312 400.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1567 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 379.584 224.712 407.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1568 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 390.384 318.312 393.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1569 0 obj << /Type /Annot /Subtype /Link /Rect [322.488 192.384 426.312 195.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1570 0 obj << /Type /Annot /Subtype /Link /Rect [322.488 192.384 325.512 224.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1571 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 343.584 239.112 346.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1572 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 365.184 361.512 368.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1573 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 365.184 347.112 397.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1574 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 318.384 253.512 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1575 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 365.184 303.912 393.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1576 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 386.784 246.312 389.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1577 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 429.984 224.712 544.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1578 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 372.384 354.312 389.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1579 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 545.184 354.312 555.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1580 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 599.184 347.112 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1581 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 437.184 303.912 501.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1582 0 obj << /Type /Annot /Subtype /Link /Rect [293.688 483.984 311.112 487.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1583 0 obj << /Type /Annot /Subtype /Link /Rect [293.688 498.384 303.912 501.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1584 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 620.784 260.712 623.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1585 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 483.984 311.112 551.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1586 0 obj << /Type /Annot /Subtype /Link /Rect [1024.49 498.384 1059.91 501.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COY2_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1587 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 498.384 303.912 598.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1588 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 379.584 246.312 382.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1589 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 372.384 311.112 382.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1590 0 obj << /Type /Annot /Subtype /Link /Rect [272.088 379.584 311.112 382.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1591 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 365.184 311.112 368.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1592 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 379.584 361.512 382.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1593 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 386.784 354.312 433.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1594 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 501.984 998.712 505.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U78-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1595 0 obj << /Type /Annot /Subtype /Link /Rect [1031.69 253.584 1070.71 256.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1596 0 obj << /Type /Annot /Subtype /Link /Rect [1092.89 246.384 1095.91 260.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1597 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 491.184 984.312 494.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1598 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 483.984 984.312 487.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1599 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 476.784 984.312 479.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1600 0 obj << /Type /Annot /Subtype /Link /Rect [1002.89 494.784 1005.91 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U76-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1601 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 509.184 1005.91 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U76-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1602 0 obj << /Type /Annot /Subtype /Link /Rect [956.088 523.584 984.312 526.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CINX"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1603 0 obj << /Type /Annot /Subtype /Link /Rect [1067.69 260.784 1070.71 267.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1604 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 537.984 984.312 541.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1605 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 530.784 984.312 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1606 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 555.984 998.712 559.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U69-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1607 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 545.184 984.312 548.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1608 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 563.184 1005.91 566.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U68-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1609 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 433.584 998.712 436.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U107-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1610 0 obj << /Type /Annot /Subtype /Link /Rect [956.088 469.584 984.312 472.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CINX"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1611 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 440.784 998.712 443.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U108-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1612 0 obj << /Type /Annot /Subtype /Link /Rect [992.088 249.984 995.112 267.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U120-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1613 0 obj << /Type /Annot /Subtype /Link /Rect [999.288 235.584 1081.51 238.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1614 0 obj << /Type /Annot /Subtype /Link /Rect [956.088 224.784 973.512 227.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/PINX"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1615 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 231.984 973.512 235.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1616 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 264.384 995.112 267.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U120-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1617 0 obj << /Type /Annot /Subtype /Link /Rect [956.088 278.784 969.912 281.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/PINX"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1618 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 257.184 987.912 260.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U121-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1619 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 239.184 973.512 242.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1620 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 246.384 973.512 249.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1621 0 obj << /Type /Annot /Subtype /Link /Rect [995.688 408.384 998.712 425.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U103-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1622 0 obj << /Type /Annot /Subtype /Link /Rect [1046.09 300.384 1049.11 332.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U114-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1623 0 obj << /Type /Annot /Subtype /Link /Rect [1092.89 296.784 1095.91 343.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U153-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1624 0 obj << /Type /Annot /Subtype /Link /Rect [1060.49 285.984 1081.51 289.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1625 0 obj << /Type /Annot /Subtype /Link /Rect [988.488 303.984 991.512 321.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U111-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1626 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 311.184 984.312 314.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U112-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1627 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 318.384 991.512 321.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U111-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1628 0 obj << /Type /Annot /Subtype /Link /Rect [995.688 289.584 1034.71 292.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1629 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 383.184 1016.71 386.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1630 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 613.584 1031.11 616.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1631 0 obj << /Type /Annot /Subtype /Link /Rect [959.688 357.984 973.512 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/PINY1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1632 0 obj << /Type /Annot /Subtype /Link /Rect [959.688 350.784 973.512 353.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1633 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 300.384 969.912 303.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1634 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 285.984 969.912 289.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1635 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 293.184 969.912 296.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1636 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 332.784 998.712 335.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U114-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1637 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 368.784 1016.71 371.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1638 0 obj << /Type /Annot /Subtype /Link /Rect [1035.29 581.184 1059.91 584.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1639 0 obj << /Type /Annot /Subtype /Link /Rect [938.088 375.984 1016.71 379.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1640 0 obj << /Type /Annot /Subtype /Link /Rect [1013.69 354.384 1016.71 364.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028C12-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1641 0 obj << /Type /Annot /Subtype /Link /Rect [1092.89 390.384 1095.91 415.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1642 0 obj << /Type /Annot /Subtype /Link /Rect [1074.89 411.984 1095.91 415.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1643 0 obj << /Type /Annot /Subtype /Link /Rect [1100.09 383.184 1103.11 429.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U148-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1644 0 obj << /Type /Annot /Subtype /Link /Rect [1046.09 491.184 1059.91 494.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1645 0 obj << /Type /Annot /Subtype /Link /Rect [1024.49 491.184 1049.11 494.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1646 0 obj << /Type /Annot /Subtype /Link /Rect [995.688 408.384 1052.71 411.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U103-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1647 0 obj << /Type /Annot /Subtype /Link /Rect [1056.89 357.984 1081.51 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1648 0 obj << /Type /Annot /Subtype /Link /Rect [1042.49 372.384 1081.51 375.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1649 0 obj << /Type /Annot /Subtype /Link /Rect [1046.09 329.184 1059.91 332.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U114-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1650 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 343.584 1067.11 350.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U153-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1651 0 obj << /Type /Annot /Subtype /Link /Rect [1064.09 343.584 1070.71 346.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U153-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1652 0 obj << /Type /Annot /Subtype /Link /Rect [1020.89 329.184 1049.11 332.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U114-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1653 0 obj << /Type /Annot /Subtype /Link /Rect [1028.09 336.384 1059.91 339.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMP_OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1654 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 401.184 1038.31 404.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U100-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1655 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 671.184 69.9123 674.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1656 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 408.384 998.712 411.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U103-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1657 0 obj << /Type /Annot /Subtype /Link /Rect [1035.29 386.784 1038.31 404.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U100-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1658 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 393.984 1031.11 397.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U101-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1659 0 obj << /Type /Annot /Subtype /Link /Rect [974.088 638.784 1045.51 641.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1660 0 obj << /Type /Annot /Subtype /Link /Rect [1028.09 599.184 1031.11 609.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1661 0 obj << /Type /Annot /Subtype /Link /Rect [1067.69 588.384 1070.71 595.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U151-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1662 0 obj << /Type /Annot /Subtype /Link /Rect [1092.89 541.584 1095.91 587.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U151-Pad\\u0029_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1663 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 372.384 361.512 375.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1664 0 obj << /Type /Annot /Subtype /Link /Rect [574.488 473.184 613.512 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1665 0 obj << /Type /Annot /Subtype /Link /Rect [444.888 537.984 541.512 541.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1666 0 obj << /Type /Annot /Subtype /Link /Rect [531.288 458.784 534.312 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1667 0 obj << /Type /Annot /Subtype /Link /Rect [59.688 473.184 80.7123 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MX4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1668 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 455.184 62.7123 458.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN6"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1669 0 obj << /Type /Annot /Subtype /Link /Rect [128.088 530.784 131.112 598.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1670 0 obj << /Type /Annot /Subtype /Link /Rect [444.888 447.984 512.712 451.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1671 0 obj << /Type /Annot /Subtype /Link /Rect [488.088 433.584 491.112 443.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MUXOUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1672 0 obj << /Type /Annot /Subtype /Link /Rect [574.488 523.584 577.512 569.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SET"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1673 0 obj << /Type /Annot /Subtype /Link /Rect [603.288 537.984 613.512 541.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1674 0 obj << /Type /Annot /Subtype /Link /Rect [588.888 588.384 613.512 591.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1675 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 573.984 613.512 577.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1676 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 379.584 332.712 382.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1677 0 obj << /Type /Annot /Subtype /Link /Rect [603.288 444.384 613.512 447.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1678 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 386.784 361.512 389.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1679 0 obj << /Type /Annot /Subtype /Link /Rect [603.288 581.184 613.512 584.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1680 0 obj << /Type /Annot /Subtype /Link /Rect [95.688 447.984 102.312 451.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1681 0 obj << /Type /Annot /Subtype /Link /Rect [588.888 545.184 591.912 591.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1682 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 595.584 131.112 598.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1683 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 573.984 584.712 591.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/RST"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1684 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 602.784 123.912 605.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1685 0 obj << /Type /Annot /Subtype /Link /Rect [120.888 473.184 123.912 519.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1686 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 559.584 138.312 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1687 0 obj << /Type /Annot /Subtype /Link /Rect [552.888 631.584 555.912 645.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028U83-Pad\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1688 0 obj << /Type /Annot /Subtype /Link /Rect [466.488 588.384 512.712 591.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/SR"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1689 0 obj << /Type /Annot /Subtype /Link /Rect [466.488 599.184 530.712 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1690 0 obj << /Type /Annot /Subtype /Link /Rect [95.688 455.184 102.312 458.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1691 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 203.184 289.512 206.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1692 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 501.984 138.312 526.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1693 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 217.584 289.512 220.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1694 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 195.984 289.512 199.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_-1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1695 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 498.384 109.512 519.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_EN_CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1696 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 487.584 116.712 519.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1697 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 523.584 102.312 530.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1698 0 obj << /Type /Annot /Subtype /Link /Rect [120.888 516.384 123.912 541.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1699 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 487.584 138.312 490.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1700 0 obj << /Type /Annot /Subtype /Link /Rect [128.088 509.184 131.112 533.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1701 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 404.784 224.712 407.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1702 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 386.784 231.912 512.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1703 0 obj << /Type /Annot /Subtype /Link /Rect [95.688 440.784 102.312 443.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1704 0 obj << /Type /Annot /Subtype /Link /Rect [99.288 498.384 109.512 501.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_EN_CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1705 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 563.184 73.5123 566.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1706 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 599.184 73.5123 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1707 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 440.784 62.7123 443.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_-1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1708 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 462.384 62.7123 465.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1709 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 321.984 195.912 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1710 0 obj << /Type /Annot /Subtype /Link /Rect [185.688 293.184 188.712 353.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1711 0 obj << /Type /Annot /Subtype /Link /Rect [95.688 343.584 181.512 346.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1712 0 obj << /Type /Annot /Subtype /Link /Rect [95.688 350.784 188.712 353.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1713 0 obj << /Type /Annot /Subtype /Link /Rect [95.688 357.984 195.912 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1714 0 obj << /Type /Annot /Subtype /Link /Rect [596.088 458.784 599.112 505.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1715 0 obj << /Type /Annot /Subtype /Link /Rect [588.888 451.584 591.912 497.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1716 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 447.984 62.7123 451.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1717 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 293.184 311.112 296.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1718 0 obj << /Type /Annot /Subtype /Link /Rect [610.488 631.584 645.912 634.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1719 0 obj << /Type /Annot /Subtype /Link /Rect [466.488 627.984 530.712 631.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1720 0 obj << /Type /Annot /Subtype /Link /Rect [682.488 656.784 685.512 688.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1721 0 obj << /Type /Annot /Subtype /Link /Rect [660.888 663.984 692.712 667.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1722 0 obj << /Type /Annot /Subtype /Link /Rect [689.688 663.984 692.712 681.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1723 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 408.384 426.312 411.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COY2_a"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1724 0 obj << /Type /Annot /Subtype /Link /Rect [682.488 656.784 692.712 659.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1725 0 obj << /Type /Annot /Subtype /Link /Rect [682.488 685.584 692.712 688.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1726 0 obj << /Type /Annot /Subtype /Link /Rect [495.288 645.984 498.312 652.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L31-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1727 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 357.984 339.912 371.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1728 0 obj << /Type /Annot /Subtype /Link /Rect [383.688 383.184 426.312 386.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COY2_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1729 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 321.984 318.312 325.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1730 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 249.984 311.112 296.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1731 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 357.984 426.312 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1732 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 257.184 303.912 267.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1733 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 242.784 318.312 325.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1734 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 527.184 73.5123 530.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1735 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 602.784 303.912 605.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1736 0 obj << /Type /Annot /Subtype /Link /Rect [56.088 656.784 69.9123 659.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/IN4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1737 0 obj << /Type /Annot /Subtype /Link /Rect [185.688 350.784 246.312 353.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1738 0 obj << /Type /Annot /Subtype /Link /Rect [185.688 293.184 203.112 296.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1739 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 264.384 181.512 346.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1740 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 289.584 260.712 292.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1741 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 267.984 260.712 271.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1742 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 296.784 260.712 299.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1743 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 318.384 260.712 321.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1744 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 325.584 260.712 328.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1745 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 275.184 145.512 278.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U77-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1746 0 obj << /Type /Annot /Subtype /Link /Rect [466.488 681.984 656.712 685.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/POUTY1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1747 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 303.984 145.512 307.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U79-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1748 0 obj << /Type /Annot /Subtype /Link /Rect [466.488 660.384 635.112 663.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COUTY1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1749 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 300.384 87.9123 307.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U79-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1750 0 obj << /Type /Annot /Subtype /Link /Rect [95.688 462.384 102.312 465.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1751 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 329.184 203.112 332.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1752 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 422.784 303.912 425.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1753 0 obj << /Type /Annot /Subtype /Link /Rect [466.488 667.584 635.112 670.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/COUTX"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1754 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 645.984 599.112 649.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/CLK"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1755 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 289.584 246.312 353.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1756 0 obj << /Type /Annot /Subtype /Link /Rect [84.888 271.584 87.9123 278.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028U77-Pad\\u0029_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1757 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 260.784 239.112 346.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1758 0 obj << /Type /Annot /Subtype /Link /Rect [300.888 411.984 303.912 425.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1759 0 obj << /Type /Annot /Subtype /Link /Rect [646.488 649.584 671.112 652.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1760 0 obj << /Type /Annot /Subtype /Link /Rect [668.088 638.784 671.112 652.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1761 0 obj << /Type /Annot /Subtype /Link /Rect [668.088 649.584 671.112 674.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1762 0 obj << /Type /Annot /Subtype /Link /Rect [495.288 620.784 555.912 623.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L30-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1763 0 obj << /Type /Annot /Subtype /Link /Rect [495.288 649.584 555.912 652.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L31-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1764 0 obj << /Type /Annot /Subtype /Link /Rect [495.288 617.184 498.312 623.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L30-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1765 0 obj << /Type /Annot /Subtype /Link /Rect [387.288 368.784 426.312 371.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/MULTO2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1766 0 obj << /Type /Annot /Subtype /Link /Rect [642.888 631.584 645.912 638.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_MULT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 1767 0 obj << /Type /Annot /Subtype /Link /Rect [581.688 617.184 591.912 620.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/EN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2276 0 obj << /Type /Annot /Subtype /Link /Rect [330.12 223.416 361.08 259.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M31"], ["Value = ~"], ]\);) >> >> endobj 2277 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 390.096 116.28 418.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L5"], ["Value = ~"], ]\);) >> >> endobj 2278 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 426.096 116.28 454.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L4"], ["Value = ~"], ]\);) >> >> endobj 2279 0 obj << /Type /Annot /Subtype /Link /Rect [279.72 386.496 310.68 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L11"], ["Value = ~"], ]\);) >> >> endobj 2280 0 obj << /Type /Annot /Subtype /Link /Rect [258.12 213.749 289.08 241.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U58"], ["Value = ~"], ]\);) >> >> endobj 2281 0 obj << /Type /Annot /Subtype /Link /Rect [236.52 475.982 267.48 497.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U56"], ["Value = ~"], ]\);) >> >> endobj 2282 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 462.096 116.28 490.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L8"], ["Value = ~"], ]\);) >> >> endobj 2283 0 obj << /Type /Annot /Subtype /Link /Rect [373.32 205.982 404.28 227.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U66"], ["Value = ~"], ]\);) >> >> endobj 2284 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 354.096 116.28 382.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L6"], ["Value = ~"], ]\);) >> >> endobj 2285 0 obj << /Type /Annot /Subtype /Link /Rect [114.12 242.496 141.48 263.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U53"], ["Value = ~"], ]\);) >> >> endobj 2286 0 obj << /Type /Annot /Subtype /Link /Rect [114.12 260.496 141.48 281.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U52"], ["Value = ~"], ]\);) >> >> endobj 2287 0 obj << /Type /Annot /Subtype /Link /Rect [330.12 232.4 361.08 268.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M30"], ["Value = ~"], ]\);) >> >> endobj 2288 0 obj << /Type /Annot /Subtype /Link /Rect [315.72 263.582 346.68 284.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 2289 0 obj << /Type /Annot /Subtype /Link /Rect [168.12 336.8 206.28 365.074] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U54"], ["Value = ~"], ]\);) >> >> endobj 2290 0 obj << /Type /Annot /Subtype /Link /Rect [322.92 205.982 353.88 227.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U64"], ["Value = ~"], ]\);) >> >> endobj 2291 0 obj << /Type /Annot /Subtype /Link /Rect [178.92 429.696 209.88 457.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L9"], ["Value = ~"], ]\);) >> >> endobj 2292 0 obj << /Type /Annot /Subtype /Link /Rect [178.92 386.496 209.88 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L10"], ["Value = ~"], ]\);) >> >> endobj 2293 0 obj << /Type /Annot /Subtype /Link /Rect [373.32 220.382 400.68 241.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U65"], ["Value = ~"], ]\);) >> >> endobj 2294 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 245.344 90.3949 252.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/A_-1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2295 0 obj << /Type /Annot /Subtype /Link /Rect [229.95 486.544 241.252 493.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2296 0 obj << /Type /Annot /Subtype /Link /Rect [229.95 479.344 241.252 486.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2297 0 obj << /Type /Annot /Subtype /Link /Rect [210.059 418.844 216.752 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2298 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 216.544 88.1663 223.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CI_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2299 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 209.344 88.1663 216.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2300 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 346.144 169.252 352.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2301 0 obj << /Type /Annot /Subtype /Link /Rect [402.977 202.144 425.25 208.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2302 0 obj << /Type /Annot /Subtype /Link /Rect [402.977 212.944 425.25 219.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/MULTO2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2303 0 obj << /Type /Annot /Subtype /Link /Rect [247.95 230.944 259.252 237.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2304 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 252.544 86.4519 259.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2305 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 270.544 86.4519 277.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2306 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 360.544 169.252 367.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2307 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 353.344 169.252 360.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2308 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 263.344 85.9377 270.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2309 0 obj << /Type /Annot /Subtype /Link /Rect [217.259 418.844 223.952 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2310 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 443.344 374.85 450.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2311 0 obj << /Type /Annot /Subtype /Link /Rect [403.662 227.344 425.25 234.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COY2_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2312 0 obj << /Type /Annot /Subtype /Link /Rect [353.262 468.544 374.85 475.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2313 0 obj << /Type /Annot /Subtype /Link /Rect [138.059 418.844 144.752 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2314 0 obj << /Type /Annot /Subtype /Link /Rect [305.55 274.144 316.852 280.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2315 0 obj << /Type /Annot /Subtype /Link /Rect [353.605 364.144 374.85 370.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2316 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 396.544 374.85 403.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2317 0 obj << /Type /Annot /Subtype /Link /Rect [130.859 418.844 137.552 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2318 0 obj << /Type /Annot /Subtype /Link /Rect [403.834 252.544 425.25 259.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COY2_a"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2319 0 obj << /Type /Annot /Subtype /Link /Rect [358.488 251.784 426.312 254.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COY2_a"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2320 0 obj << /Type /Annot /Subtype /Link /Rect [358.488 208.584 361.512 240.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M31-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2321 0 obj << /Type /Annot /Subtype /Link /Rect [358.488 208.584 375.912 211.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M31-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2322 0 obj << /Type /Annot /Subtype /Link /Rect [365.688 215.784 375.912 218.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2323 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 201.384 354.312 215.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2324 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 266.184 347.112 272.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2325 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 269.784 347.112 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2326 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 255.384 318.312 269.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2327 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 255.384 332.712 258.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2328 0 obj << /Type /Annot /Subtype /Link /Rect [398.088 226.584 426.312 229.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COY2_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2329 0 obj << /Type /Annot /Subtype /Link /Rect [365.688 230.184 375.912 233.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2330 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 138.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2331 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 406.584 87.9123 409.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2332 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 370.584 87.9123 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2333 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 442.584 87.9123 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2334 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 402.984 181.512 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2335 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 402.984 152.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2336 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 438.984 181.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2337 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 395.784 181.512 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028INIT_L6-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2338 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 446.184 181.512 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2339 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 438.984 145.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2340 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 359.784 170.712 362.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2341 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 352.584 145.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2342 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 366.984 116.712 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028INIT_L6-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2343 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 352.584 170.712 355.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2344 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 478.584 87.9123 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/IN1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2345 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 116.712 478.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2346 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 359.784 138.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2347 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 201.384 426.312 204.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2348 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 212.184 426.312 215.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/MULTO2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2349 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 345.384 152.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2350 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 442.584 332.712 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2351 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 266.184 318.312 269.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2352 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 222.984 260.712 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2353 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 395.784 339.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2354 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 395.784 375.912 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2355 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 363.384 375.912 366.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2356 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 399.384 339.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2357 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 402.984 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2358 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 442.584 267.912 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2359 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 446.184 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2360 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 267.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2361 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 359.784 282.312 366.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2362 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 282.312 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2363 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 442.584 375.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2364 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 467.784 375.912 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2365 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 446.184 332.712 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2366 0 obj << /Type /Annot /Subtype /Link /Rect [365.688 215.784 368.712 233.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2367 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 273.384 368.712 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2368 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 485.784 239.112 488.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2369 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 467.784 267.912 485.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2370 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 442.584 217.512 488.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2371 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 478.584 239.112 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2372 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 392.184 246.312 395.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2373 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 384.984 239.112 388.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2374 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 399.384 224.712 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2375 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 392.184 224.712 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2376 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 399.384 224.712 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2377 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 442.584 267.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2378 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 399.384 267.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2379 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 442.584 217.512 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2380 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 384.984 217.512 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2381 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 248.184 318.312 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2382 0 obj << /Type /Annot /Subtype /Link /Rect [365.688 230.184 368.712 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2383 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 240.984 318.312 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2384 0 obj << /Type /Annot /Subtype /Link /Rect [286.488 222.984 325.512 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M31-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2385 0 obj << /Type /Annot /Subtype /Link /Rect [322.488 215.784 325.512 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M31-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2386 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 208.584 325.512 211.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2387 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 233.784 332.712 236.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2388 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 208.584 318.312 236.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2389 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 240.984 332.712 244.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2390 0 obj << /Type /Annot /Subtype /Link /Rect [322.488 222.984 347.112 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M31-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2391 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 222.984 375.912 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M31-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2392 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 248.184 332.712 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2393 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 345.384 181.512 348.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2394 0 obj << /Type /Annot /Subtype /Link /Rect [203.688 348.984 206.712 362.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2395 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 248.184 239.112 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2396 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 269.784 116.712 272.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2397 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 251.784 116.712 254.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2398 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 262.584 116.712 265.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2399 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 230.184 260.712 233.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2400 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 244.584 116.712 247.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/A_-1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2401 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 273.384 239.112 388.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2402 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 222.984 239.112 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M30-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2403 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 215.784 260.712 218.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CI_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2404 0 obj << /Type /Annot /Subtype /Link /Rect [203.688 359.784 282.312 362.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2405 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 208.584 318.312 211.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2406 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 273.384 318.312 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2407 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 230.184 246.312 395.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=0 or 6/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2502 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 426.096 116.28 454.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L7"], ["Value = ~"], ]\);) >> >> endobj 2503 0 obj << /Type /Annot /Subtype /Link /Rect [279.72 386.496 310.68 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L15"], ["Value = ~"], ]\);) >> >> endobj 2504 0 obj << /Type /Annot /Subtype /Link /Rect [236.52 475.982 267.48 497.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U61"], ["Value = ~"], ]\);) >> >> endobj 2505 0 obj << /Type /Annot /Subtype /Link /Rect [322.92 389.582 353.88 410.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U71"], ["Value = ~"], ]\);) >> >> endobj 2506 0 obj << /Type /Annot /Subtype /Link /Rect [178.92 429.696 209.88 457.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L13"], ["Value = ~"], ]\);) >> >> endobj 2507 0 obj << /Type /Annot /Subtype /Link /Rect [168.12 336.8 206.28 365.074] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U59"], ["Value = ~"], ]\);) >> >> endobj 2508 0 obj << /Type /Annot /Subtype /Link /Rect [178.92 386.496 209.88 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L14"], ["Value = ~"], ]\);) >> >> endobj 2509 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 462.096 116.28 490.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L12"], ["Value = ~"], ]\);) >> >> endobj 2510 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 390.096 116.28 418.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L8"], ["Value = ~"], ]\);) >> >> endobj 2511 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 354.096 116.28 382.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L9"], ["Value = ~"], ]\);) >> >> endobj 2512 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 325.296 116.28 346.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C5"], ["Value = ~"], ]\);) >> >> endobj 2513 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 324.544 168.566 331.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2514 0 obj << /Type /Annot /Subtype /Link /Rect [255.15 324.544 265.766 331.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2515 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 353.344 169.252 360.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2516 0 obj << /Type /Annot /Subtype /Link /Rect [210.059 418.844 216.752 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2517 0 obj << /Type /Annot /Subtype /Link /Rect [217.259 418.844 223.952 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2518 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 396.544 374.85 403.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2519 0 obj << /Type /Annot /Subtype /Link /Rect [229.95 479.344 241.252 486.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2520 0 obj << /Type /Annot /Subtype /Link /Rect [229.95 486.544 241.252 493.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2521 0 obj << /Type /Annot /Subtype /Link /Rect [353.605 364.144 374.85 370.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2522 0 obj << /Type /Annot /Subtype /Link /Rect [130.859 418.844 137.552 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2523 0 obj << /Type /Annot /Subtype /Link /Rect [138.059 418.844 144.752 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2524 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 346.144 169.252 352.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2525 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 360.544 169.252 367.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2526 0 obj << /Type /Annot /Subtype /Link /Rect [353.262 468.544 374.85 475.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2527 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 443.344 374.85 450.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2528 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 359.784 170.712 362.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2529 0 obj << /Type /Annot /Subtype /Link /Rect [297.288 323.784 300.312 330.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2530 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 442.584 87.9123 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2531 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 345.384 152.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2532 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 399.384 224.712 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2533 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 402.984 181.512 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2534 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 323.784 300.312 326.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2535 0 obj << /Type /Annot /Subtype /Link /Rect [203.688 348.984 206.712 362.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2536 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 267.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2537 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 282.312 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2538 0 obj << /Type /Annot /Subtype /Link /Rect [297.288 327.384 325.512 330.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2539 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 395.784 181.512 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028INIT_L9-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2540 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 116.712 478.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2541 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 478.584 87.9123 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/IN1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2542 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 366.984 116.712 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028INIT_L9-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2543 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 352.584 145.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2544 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 359.784 138.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2545 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 446.184 181.512 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2546 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 370.584 87.9123 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2547 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 438.984 181.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2548 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 330.984 152.712 334.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2549 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 406.584 87.9123 409.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/IN5"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2550 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 402.984 152.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2551 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 138.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2552 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 438.984 145.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2553 0 obj << /Type /Annot /Subtype /Link /Rect [203.688 359.784 285.912 362.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2554 0 obj << /Type /Annot /Subtype /Link /Rect [282.888 359.784 285.912 366.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2555 0 obj << /Type /Annot /Subtype /Link /Rect [282.888 363.384 375.912 366.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2556 0 obj << /Type /Annot /Subtype /Link /Rect [322.488 327.384 325.512 395.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2557 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 402.984 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2558 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 446.184 332.712 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2559 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 399.384 325.512 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L15-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2560 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 442.584 267.912 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2561 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 485.784 239.112 488.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2562 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 478.584 239.112 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2563 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 471.384 267.912 485.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2564 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 442.584 267.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2565 0 obj << /Type /Annot /Subtype /Link /Rect [286.488 467.784 289.512 474.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2566 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 446.184 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2567 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 442.584 217.512 488.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2568 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 471.384 289.512 474.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2569 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 399.384 267.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2570 0 obj << /Type /Annot /Subtype /Link /Rect [286.488 467.784 375.912 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2571 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 323.784 152.712 334.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2572 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 395.784 375.912 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2573 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 442.584 375.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2574 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 399.384 224.712 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2575 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 442.584 217.512 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2576 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 442.584 332.712 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2577 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 352.584 170.712 355.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2578 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 345.384 181.512 348.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=1 or 7/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2657 0 obj << /Type /Annot /Subtype /Link /Rect [240.12 458.496 267.48 479.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U38"], ["Value = ~"], ]\);) >> >> endobj 2658 0 obj << /Type /Annot /Subtype /Link /Rect [315.72 436.382 346.68 457.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U42"], ["Value = ~"], ]\);) >> >> endobj 2659 0 obj << /Type /Annot /Subtype /Link /Rect [330.12 223.416 361.08 259.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M21"], ["Value = ~"], ]\);) >> >> endobj 2660 0 obj << /Type /Annot /Subtype /Link /Rect [330.12 232.4 361.08 268.776] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M20"], ["Value = ~"], ]\);) >> >> endobj 2661 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 358.4 231.48 387.576] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M14"], ["Value = ~"], ]\);) >> >> endobj 2662 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 322.4 231.48 351.576] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M15"], ["Value = ~"], ]\);) >> >> endobj 2663 0 obj << /Type /Annot /Subtype /Link /Rect [315.72 264.149 346.68 292.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U43"], ["Value = ~"], ]\);) >> >> endobj 2664 0 obj << /Type /Annot /Subtype /Link /Rect [322.92 205.982 353.88 227.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U46"], ["Value = ~"], ]\);) >> >> endobj 2665 0 obj << /Type /Annot /Subtype /Link /Rect [279.72 386.496 310.68 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L19"], ["Value = ~"], ]\);) >> >> endobj 2666 0 obj << /Type /Annot /Subtype /Link /Rect [258.12 213.749 289.08 241.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U39"], ["Value = ~"], ]\);) >> >> endobj 2667 0 obj << /Type /Annot /Subtype /Link /Rect [114.12 260.496 141.48 281.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U10"], ["Value = ~"], ]\);) >> >> endobj 2668 0 obj << /Type /Annot /Subtype /Link /Rect [168.12 371.582 195.48 392.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U36"], ["Value = ~"], ]\);) >> >> endobj 2669 0 obj << /Type /Annot /Subtype /Link /Rect [178.92 386.496 209.88 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L18"], ["Value = ~"], ]\);) >> >> endobj 2670 0 obj << /Type /Annot /Subtype /Link /Rect [178.92 429.696 209.88 457.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L17"], ["Value = ~"], ]\);) >> >> endobj 2671 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 354.096 116.28 382.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L14"], ["Value = ~"], ]\);) >> >> endobj 2672 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 325.296 116.28 346.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C6"], ["Value = ~"], ]\);) >> >> endobj 2673 0 obj << /Type /Annot /Subtype /Link /Rect [114.12 242.496 141.48 263.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U11"], ["Value = ~"], ]\);) >> >> endobj 2674 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 390.096 116.28 418.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L13"], ["Value = ~"], ]\);) >> >> endobj 2675 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 426.096 116.28 454.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L12"], ["Value = ~"], ]\);) >> >> endobj 2676 0 obj << /Type /Annot /Subtype /Link /Rect [373.32 205.982 404.28 227.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U48"], ["Value = ~"], ]\);) >> >> endobj 2677 0 obj << /Type /Annot /Subtype /Link /Rect [373.32 220.382 400.68 241.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U47"], ["Value = ~"], ]\);) >> >> endobj 2678 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 462.096 116.28 490.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L16"], ["Value = ~"], ]\);) >> >> endobj 2679 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 252.544 86.4519 259.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2680 0 obj << /Type /Annot /Subtype /Link /Rect [210.059 418.844 216.752 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2681 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 270.544 86.4519 277.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2682 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 263.344 85.9377 270.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2683 0 obj << /Type /Annot /Subtype /Link /Rect [403.834 252.544 425.25 259.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COY2_a"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2684 0 obj << /Type /Annot /Subtype /Link /Rect [217.259 418.844 223.952 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2685 0 obj << /Type /Annot /Subtype /Link /Rect [229.95 461.344 241.252 468.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2686 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 216.544 88.1663 223.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CI_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2687 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 209.344 88.1663 216.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2688 0 obj << /Type /Annot /Subtype /Link /Rect [75.1499 245.344 90.3949 252.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/A_-1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2689 0 obj << /Type /Annot /Subtype /Link /Rect [305.55 274.144 316.852 280.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2690 0 obj << /Type /Annot /Subtype /Link /Rect [247.95 230.944 259.252 237.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2691 0 obj << /Type /Annot /Subtype /Link /Rect [229.95 468.544 241.252 475.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2692 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 374.944 169.252 381.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2693 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 396.544 374.85 403.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2694 0 obj << /Type /Annot /Subtype /Link /Rect [130.859 418.844 137.552 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2695 0 obj << /Type /Annot /Subtype /Link /Rect [145.259 418.844 151.952 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2696 0 obj << /Type /Annot /Subtype /Link /Rect [152.459 418.844 159.152 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2697 0 obj << /Type /Annot /Subtype /Link /Rect [138.059 418.844 144.752 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2698 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 382.144 169.252 388.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2699 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 338.944 169.252 345.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2700 0 obj << /Type /Annot /Subtype /Link /Rect [402.977 212.944 425.25 219.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/MULTO2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2701 0 obj << /Type /Annot /Subtype /Link /Rect [403.662 227.344 425.25 234.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COY2_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2702 0 obj << /Type /Annot /Subtype /Link /Rect [402.977 202.144 425.25 208.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2703 0 obj << /Type /Annot /Subtype /Link /Rect [353.605 364.144 374.85 370.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2704 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 331.744 168.566 338.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2705 0 obj << /Type /Annot /Subtype /Link /Rect [353.262 468.544 374.85 475.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2706 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 443.344 374.85 450.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2707 0 obj << /Type /Annot /Subtype /Link /Rect [157.95 367.744 169.252 374.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2708 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 248.184 332.712 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2709 0 obj << /Type /Annot /Subtype /Link /Rect [365.688 230.184 368.712 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2710 0 obj << /Type /Annot /Subtype /Link /Rect [322.488 222.984 347.112 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M21-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2711 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 233.784 332.712 236.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2712 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 240.984 332.712 244.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2713 0 obj << /Type /Annot /Subtype /Link /Rect [293.688 338.184 296.712 344.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M15-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2714 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 334.584 231.912 341.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M15-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2715 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 266.184 347.112 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2716 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 363.384 375.912 366.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2717 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 402.984 152.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2718 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 402.984 181.512 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2719 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 230.184 246.312 355.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2720 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 280.584 318.312 344.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M15-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2721 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 273.384 239.112 388.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2722 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 384.984 239.112 388.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2723 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 352.584 246.312 355.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2724 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 395.784 181.512 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028INIT_L14-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2725 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 330.984 203.112 334.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CIN"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2726 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 208.584 325.512 211.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2727 0 obj << /Type /Annot /Subtype /Link /Rect [322.488 215.784 325.512 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M21-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2728 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 208.584 318.312 236.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2729 0 obj << /Type /Annot /Subtype /Link /Rect [196.488 374.184 203.112 377.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M14-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2730 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 255.384 318.312 269.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2731 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 381.384 170.712 384.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2732 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 442.584 87.9123 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2733 0 obj << /Type /Annot /Subtype /Link /Rect [365.688 215.784 368.712 233.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2734 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 201.384 426.312 204.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2735 0 obj << /Type /Annot /Subtype /Link /Rect [351.288 201.384 354.312 215.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/MULTO1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2736 0 obj << /Type /Annot /Subtype /Link /Rect [401.688 212.184 426.312 215.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/MULTO2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2737 0 obj << /Type /Annot /Subtype /Link /Rect [398.088 226.584 426.312 229.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COY2_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2738 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 406.584 87.9123 409.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2739 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 116.712 478.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2740 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 138.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2741 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 438.984 145.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2742 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 478.584 87.9123 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/IN1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2743 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 370.584 87.9123 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2744 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 366.984 152.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2745 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 273.384 368.712 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2746 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 366.984 116.712 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028INIT_L14-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2747 0 obj << /Type /Annot /Subtype /Link /Rect [358.488 251.784 426.312 254.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COY2_a"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2748 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 399.384 339.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2749 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 442.584 375.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2750 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 395.784 375.912 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2751 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 395.784 339.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2752 0 obj << /Type /Annot /Subtype /Link /Rect [286.488 222.984 325.512 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M21-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2753 0 obj << /Type /Annot /Subtype /Link /Rect [286.488 467.784 375.912 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2754 0 obj << /Type /Annot /Subtype /Link /Rect [365.688 215.784 375.912 218.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2755 0 obj << /Type /Annot /Subtype /Link /Rect [365.688 230.184 375.912 233.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2756 0 obj << /Type /Annot /Subtype /Link /Rect [358.488 208.584 361.512 240.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M21-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2757 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 255.384 332.712 258.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2758 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 374.184 145.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2759 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 460.584 242.712 463.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2760 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 464.184 289.512 467.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2761 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 446.184 318.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2762 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 267.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2763 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 348.984 217.512 355.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2764 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 282.312 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2765 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 352.584 246.312 395.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2766 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 392.184 246.312 395.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2767 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 399.384 267.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2768 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 392.184 224.712 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2769 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 446.184 181.512 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2770 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 438.984 181.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2771 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 381.384 138.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2772 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 222.984 260.712 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2773 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 251.784 116.712 254.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2774 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 269.784 116.712 272.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/B_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2775 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 262.584 116.712 265.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/A_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2776 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 244.584 116.712 247.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/A_-1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2777 0 obj << /Type /Annot /Subtype /Link /Rect [358.488 208.584 375.912 211.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M21-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2778 0 obj << /Type /Annot /Subtype /Link /Rect [196.488 374.184 199.512 380.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M14-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2779 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 377.784 199.512 380.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M14-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2780 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 248.184 239.112 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2781 0 obj << /Type /Annot /Subtype /Link /Rect [344.088 222.984 375.912 226.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M21-PadS\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2782 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 266.184 318.312 269.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2783 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 230.184 260.712 233.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2784 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 215.784 260.712 218.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CI_0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2785 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 208.584 318.312 211.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CI_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2786 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 442.584 267.912 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2787 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 273.384 318.312 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2788 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 240.984 318.312 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2789 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 222.984 239.112 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2790 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 248.184 318.312 251.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M20-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2791 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 338.184 203.112 341.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2792 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 338.184 152.712 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2793 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 399.384 224.712 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2794 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 384.984 217.512 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2795 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 399.384 224.712 463.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L11"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2796 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 366.984 203.112 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2797 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 442.584 217.512 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2798 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 467.784 242.712 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2799 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 442.584 217.512 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2800 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 374.184 170.712 377.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2801 0 obj << /Type /Annot /Subtype /Link /Rect [293.688 341.784 318.312 344.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M15-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2802 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 402.984 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2803 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 341.784 318.312 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M15-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2804 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 366.984 231.912 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2805 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 363.384 282.312 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2806 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 366.984 282.312 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_A"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2807 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 338.184 296.712 341.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M15-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2808 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 446.184 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2809 0 obj << /Type /Annot /Subtype /Link /Rect [286.488 464.184 289.512 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/CADD_S"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2810 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 442.584 267.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=2 or 3/L10"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2923 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 462.096 116.28 490.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L20"], ["Value = ~"], ]\);) >> >> endobj 2924 0 obj << /Type /Annot /Subtype /Link /Rect [279.72 386.496 310.68 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L23"], ["Value = ~"], ]\);) >> >> endobj 2925 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 426.096 116.28 454.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L15"], ["Value = ~"], ]\);) >> >> endobj 2926 0 obj << /Type /Annot /Subtype /Link /Rect [128.52 489.816 173.88 533.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M13"], ["Value = ~"], ]\);) >> >> endobj 2927 0 obj << /Type /Annot /Subtype /Link /Rect [114.12 268.4 159.48 319.176] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M12"], ["Value = ~"], ]\);) >> >> endobj 2928 0 obj << /Type /Annot /Subtype /Link /Rect [74.5197 268.4 112.68 319.176] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U6"], ["Value = ~"], ]\);) >> >> endobj 2929 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 390.096 116.28 418.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L16"], ["Value = ~"], ]\);) >> >> endobj 2930 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 354.096 116.28 382.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L17"], ["Value = ~"], ]\);) >> >> endobj 2931 0 obj << /Type /Annot /Subtype /Link /Rect [81.7197 484.4 119.88 535.176] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U7"], ["Value = ~"], ]\);) >> >> endobj 2932 0 obj << /Type /Annot /Subtype /Link /Rect [89.7738 317.871 97.4262 335.539] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = VCC"], ["Resolved netclass = Default"], ["Sheet References = 13,20,22,28,40,46,52,65,71,77,83,89,95,101,107"], ]\);) >> >> endobj 2933 0 obj << /Type /Annot /Subtype /Link /Rect [96.9738 533.871 104.626 551.539] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = VCC"], ["Resolved netclass = Default"], ["Sheet References = 13,20,22,28,40,46,52,65,71,77,83,89,95,101,107"], ]\);) >> >> endobj 2934 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 396.544 374.85 403.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2935 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 443.344 374.85 450.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2936 0 obj << /Type /Annot /Subtype /Link /Rect [152.459 418.844 159.152 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2937 0 obj << /Type /Annot /Subtype /Link /Rect [138.059 418.844 144.752 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2938 0 obj << /Type /Annot /Subtype /Link /Rect [145.259 418.844 151.952 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2939 0 obj << /Type /Annot /Subtype /Link /Rect [130.859 418.844 137.552 430.146] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2940 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 298.584 77.1123 301.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN6"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2941 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 366.984 116.712 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2942 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 316.584 138.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2943 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 138.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2944 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 305.784 77.1123 308.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN5"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2945 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 294.984 246.312 395.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L23-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2946 0 obj << /Type /Annot /Subtype /Link /Rect [117.288 514.584 131.112 517.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M13-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2947 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 392.184 267.912 395.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L23-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2948 0 obj << /Type /Annot /Subtype /Link /Rect [117.288 500.184 131.112 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M13-PadD3\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2949 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 442.584 87.9123 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2950 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 282.312 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L23-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2951 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 291.384 77.1123 294.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2952 0 obj << /Type /Annot /Subtype /Link /Rect [110.088 298.584 116.712 301.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M12-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2953 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 507.384 84.3123 510.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2954 0 obj << /Type /Annot /Subtype /Link /Rect [156.888 294.984 246.312 298.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L23-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2955 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 312.984 145.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2956 0 obj << /Type /Annot /Subtype /Link /Rect [110.088 305.784 116.712 308.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M12-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2957 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 395.784 159.912 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2958 0 obj << /Type /Annot /Subtype /Link /Rect [117.288 507.384 131.112 510.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M13-PadD2\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2959 0 obj << /Type /Annot /Subtype /Link /Rect [110.088 291.384 116.712 294.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M12-PadD2\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2960 0 obj << /Type /Annot /Subtype /Link /Rect [110.088 284.184 116.712 287.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M12-PadD3\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2961 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 284.184 77.1123 287.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN8"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2962 0 obj << /Type /Annot /Subtype /Link /Rect [117.288 521.784 131.112 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M13-PadD0\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2963 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 402.984 152.712 492.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2964 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 395.784 375.912 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2965 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 399.384 339.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2966 0 obj << /Type /Annot /Subtype /Link /Rect [326.088 442.584 329.112 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2967 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 395.784 339.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2968 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 449.784 210.312 514.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2969 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 510.984 210.312 514.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2970 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 446.184 329.112 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2971 0 obj << /Type /Annot /Subtype /Link /Rect [156.888 395.784 159.912 496.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L03"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2972 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 514.584 84.3123 517.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2973 0 obj << /Type /Annot /Subtype /Link /Rect [326.088 442.584 375.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2974 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 116.712 478.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L00"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2975 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 402.984 152.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L02"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2976 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 500.184 84.3123 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2977 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 370.584 87.9123 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2978 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 478.584 87.9123 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2979 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 438.984 145.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/L01"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2980 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 446.184 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2981 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 392.184 267.912 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L23-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2982 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 406.584 87.9123 409.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN5"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2983 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 449.784 267.912 452.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2984 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 402.984 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2985 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 446.184 267.912 452.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 2986 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 521.784 84.3123 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=4/IN1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3067 0 obj << /Type /Annot /Subtype /Link /Rect [178.92 429.696 209.88 457.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L25"], ["Value = ~"], ]\);) >> >> endobj 3068 0 obj << /Type /Annot /Subtype /Link /Rect [178.92 386.496 209.88 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L26"], ["Value = ~"], ]\);) >> >> endobj 3069 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 390.096 116.28 418.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L11"], ["Value = ~"], ]\);) >> >> endobj 3070 0 obj << /Type /Annot /Subtype /Link /Rect [111.325 371.016 132.802 398.376] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3071 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 462.096 116.28 490.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L24"], ["Value = ~"], ]\);) >> >> endobj 3072 0 obj << /Type /Annot /Subtype /Link /Rect [279.72 386.496 310.68 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = L27"], ["Value = ~"], ]\);) >> >> endobj 3073 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 354.096 116.28 382.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L18"], ["Value = ~"], ]\);) >> >> endobj 3074 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 325.296 116.28 346.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = C7"], ["Value = ~"], ]\);) >> >> endobj 3075 0 obj << /Type /Annot /Subtype /Link /Rect [70.9197 426.096 116.28 454.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = INIT_L10"], ["Value = ~"], ]\);) >> >> endobj 3076 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 396.544 374.85 403.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3077 0 obj << /Type /Annot /Subtype /Link /Rect [344.519 443.344 374.85 450.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3078 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 399.384 267.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L26-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3079 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 442.584 375.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3080 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 395.784 375.912 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3081 0 obj << /Type /Annot /Subtype /Link /Rect [336.888 395.784 339.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3082 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 406.584 87.9123 409.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/IN5"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3083 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 370.584 87.9123 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/IN7"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3084 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 478.584 87.9123 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/IN1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3085 0 obj << /Type /Annot /Subtype /Link /Rect [117.288 395.784 181.512 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028L26-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3086 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 402.984 181.512 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028INIT_L11-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3087 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 330.984 123.912 334.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028C7-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3088 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 366.984 116.712 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028INIT_L18-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3089 0 obj << /Type /Annot /Subtype /Link /Rect [120.888 330.984 123.912 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = unconnected-\\u0028C7-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3090 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 438.984 181.512 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028INIT_L10-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3091 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 181.512 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L24-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3092 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 442.584 267.912 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3093 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 442.584 267.912 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3094 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 446.184 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3095 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 267.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L26-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3096 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 395.784 282.312 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L26-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3097 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 446.184 332.712 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3098 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 442.584 87.9123 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/IN3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3099 0 obj << /Type /Annot /Subtype /Link /Rect [113.688 446.184 116.712 478.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028L24-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3100 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 399.384 339.912 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB1OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3101 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 402.984 282.312 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3102 0 obj << /Type /Annot /Subtype /Link /Rect [329.688 442.584 332.712 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11/C_FUNCTION=5/COMB2OUT"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3191 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 484.056 224.28 497.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3192 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 458.496 202.68 522.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3193 0 obj << /Type /Annot /Subtype /Link /Rect [250.92 228.096 289.08 292.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3194 0 obj << /Type /Annot /Subtype /Link /Rect [286.92 253.656 310.68 266.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3195 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 300.456 224.28 313.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3196 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 422.856 224.28 436.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3197 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 361.656 224.28 374.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3198 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 397.296 202.68 461.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3199 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 274.896 202.68 338.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3200 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 336.096 202.68 400.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3201 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 255.384 318.312 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3202 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 485.784 253.512 488.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3203 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 280.584 253.512 488.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3204 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 521.784 318.312 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3205 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 503.784 167.112 506.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3206 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 485.784 332.712 488.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3207 0 obj << /Type /Annot /Subtype /Link /Rect [308.088 255.384 318.312 258.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3208 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 255.384 332.712 258.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3209 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 424.584 332.712 427.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3210 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 352.584 167.112 355.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D5_3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3211 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 302.184 231.912 305.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3212 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 273.384 253.512 276.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3213 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 251.784 253.512 254.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/X34"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3214 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 266.184 253.512 269.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3215 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 258.984 253.512 262.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3216 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 266.184 239.112 366.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3217 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 258.984 231.912 305.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3218 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 244.584 253.512 247.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/X14"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3219 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 237.384 253.512 240.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/X12"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3220 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 230.184 253.512 233.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/X23"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3221 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 359.784 167.112 362.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D4_3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3222 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 424.584 246.312 427.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3223 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 345.384 167.112 348.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D6_3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3224 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 381.384 167.112 384.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3225 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 399.384 167.112 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D7_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3226 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 388.584 145.512 452.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3227 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 413.784 167.112 416.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D5_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3228 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 428.184 167.112 431.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D3_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3229 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 442.584 167.112 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3230 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 381.384 152.712 445.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3231 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 420.984 167.112 424.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D4_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3232 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 363.384 239.112 366.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3233 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 510.984 145.512 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3234 0 obj << /Type /Annot /Subtype /Link /Rect [243.288 273.384 246.312 427.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3235 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 298.584 167.112 301.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D4_4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3236 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 320.184 152.712 384.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3237 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 284.184 167.112 287.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D6_4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3238 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 338.184 167.112 341.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D7_3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3239 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 305.784 167.112 308.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D3_4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3240 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 327.384 167.112 330.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3241 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 435.384 167.112 438.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D2_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3242 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 474.984 167.112 478.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D5_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3243 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 496.584 167.112 499.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D2_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3244 0 obj << /Type /Annot /Subtype /Link /Rect [236.088 363.384 332.712 366.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3245 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 503.784 152.712 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3246 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 521.784 145.512 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3247 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 510.984 167.112 514.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3248 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 489.384 167.112 492.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D3_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3249 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 467.784 167.112 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D6_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3250 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 460.584 167.112 463.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D7_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3251 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 482.184 167.112 485.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D4_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3252 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 442.584 152.712 506.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3253 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 449.784 167.112 452.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3254 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 449.784 145.512 514.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3255 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 406.584 167.112 409.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D6_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3256 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 388.584 167.112 391.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3257 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 374.184 167.112 377.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D2_3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3258 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 366.984 167.112 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D3_3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3259 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 276.984 167.112 280.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D7_4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3260 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 291.384 167.112 294.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D5_4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3261 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 320.184 167.112 323.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3262 0 obj << /Type /Annot /Subtype /Link /Rect [228.888 302.184 332.712 305.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/Y4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3263 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 312.984 167.112 316.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Big Switch Box/D2_4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3264 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 327.384 145.512 391.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3379 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 487.296 195.48 522.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M252"], ["Value = ~"], ]\);) >> >> endobj 3380 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 454.896 195.48 490.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M253"], ["Value = ~"], ]\);) >> >> endobj 3381 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 422.496 195.48 457.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M254"], ["Value = ~"], ]\);) >> >> endobj 3382 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 343.296 267.48 407.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M256"], ["Value = ~"], ]\);) >> >> endobj 3383 0 obj << /Type /Annot /Subtype /Link /Rect [164.52 390.096 195.48 425.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M255"], ["Value = ~"], ]\);) >> >> endobj 3384 0 obj << /Type /Annot /Subtype /Link /Rect [294.12 466.056 317.88 479.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U650"], ["Value = ~"], ]\);) >> >> endobj 3385 0 obj << /Type /Annot /Subtype /Link /Rect [294.12 433.656 317.88 446.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U651"], ["Value = ~"], ]\);) >> >> endobj 3386 0 obj << /Type /Annot /Subtype /Link /Rect [294.12 401.256 317.88 414.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U652"], ["Value = ~"], ]\);) >> >> endobj 3387 0 obj << /Type /Annot /Subtype /Link /Rect [294.12 368.856 317.88 382.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U653"], ["Value = ~"], ]\);) >> >> endobj 3388 0 obj << /Type /Annot /Subtype /Link /Rect [294.12 498.456 317.88 511.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U649"], ["Value = ~"], ]\);) >> >> endobj 3389 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 500.184 224.712 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3390 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 467.784 217.512 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M253-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3391 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 521.784 278.712 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3392 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 500.184 296.712 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3393 0 obj << /Type /Annot /Subtype /Link /Rect [275.688 370.584 296.712 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3394 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 503.784 167.112 506.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3395 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 395.784 224.712 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3396 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 467.784 296.712 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M253-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3397 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 503.784 152.712 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3398 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 510.984 145.512 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3399 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 510.984 167.112 514.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3400 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 521.784 145.512 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3401 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 345.384 231.912 348.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/X23"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3402 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 359.784 231.912 362.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/X14"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3403 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 370.584 278.712 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3404 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 478.584 167.112 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3405 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 402.984 203.112 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M255-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3406 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 381.384 210.312 438.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M254-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3407 0 obj << /Type /Annot /Subtype /Link /Rect [192.888 435.384 210.312 438.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M254-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3408 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 381.384 231.912 384.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M254-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3409 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 395.784 231.912 398.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3410 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 438.984 152.712 474.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3411 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 471.384 167.112 474.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3412 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 446.184 145.512 481.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3413 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 374.184 231.912 377.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M255-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3414 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 366.984 231.912 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/X34"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3415 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 496.584 167.112 499.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/D2_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3416 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 352.584 231.912 355.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/X12"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3417 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 471.384 152.712 506.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3418 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 464.184 167.112 467.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/D2_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3419 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 478.584 145.512 514.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3420 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 489.384 167.112 492.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/D3_1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3421 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 388.584 231.912 391.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M253-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3422 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 399.384 167.112 402.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/D2_4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3423 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 392.184 167.112 395.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/D3_4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3424 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 456.984 167.112 460.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/D3_2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3425 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 370.584 332.712 373.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/YDIAG"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3426 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 402.984 332.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer1/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3427 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 424.584 167.112 427.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/D3_3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3428 0 obj << /Type /Annot /Subtype /Link /Rect [106.488 431.784 167.112 434.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Small Switch Box/D2_3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3429 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 413.784 145.512 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3430 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 446.184 167.112 449.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3431 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 438.984 167.112 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3432 0 obj << /Type /Annot /Subtype /Link /Rect [142.488 413.784 167.112 416.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3433 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 467.784 332.712 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer5/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3434 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 500.184 332.712 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer10/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3435 0 obj << /Type /Annot /Subtype /Link /Rect [315.288 435.384 332.712 438.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer2/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3436 0 obj << /Type /Annot /Subtype /Link /Rect [207.288 435.384 296.712 438.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M254-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3437 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 402.984 296.712 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M255-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3438 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 406.584 167.112 409.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3439 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 406.584 152.712 442.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3440 0 obj << /Type /Annot /Subtype /Link /Rect [275.688 370.584 278.712 524.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M252-PadD1\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3441 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 388.584 217.512 470.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M253-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3442 0 obj << /Type /Annot /Subtype /Link /Rect [200.088 374.184 203.112 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = Net-\\u0028M255-PadY\\u0029"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3590 0 obj << /Type /Annot /Subtype /Link /Rect [103.32 395.496 141.48 459.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3591 0 obj << /Type /Annot /Subtype /Link /Rect [139.32 694.656 163.08 707.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3592 0 obj << /Type /Annot /Subtype /Link /Rect [207.72 669.096 245.88 733.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3593 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 694.656 267.48 707.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3594 0 obj << /Type /Annot /Subtype /Link /Rect [207.72 741.096 245.88 805.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3595 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 766.656 267.48 779.992] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3596 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 629.856 267.48 643.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3597 0 obj << /Type /Annot /Subtype /Link /Rect [207.72 604.296 245.88 668.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3598 0 obj << /Type /Annot /Subtype /Link /Rect [139.32 421.056 163.08 434.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3599 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 557.856 267.48 571.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3600 0 obj << /Type /Annot /Subtype /Link /Rect [103.32 258.696 141.48 322.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3601 0 obj << /Type /Annot /Subtype /Link /Rect [139.32 284.256 163.08 297.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3602 0 obj << /Type /Annot /Subtype /Link /Rect [207.72 330.696 245.88 394.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3603 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 356.256 267.48 369.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3604 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 493.056 267.48 506.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3605 0 obj << /Type /Annot /Subtype /Link /Rect [207.72 395.496 245.88 459.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3606 0 obj << /Type /Annot /Subtype /Link /Rect [207.72 467.496 245.88 531.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3607 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 421.056 267.48 434.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3608 0 obj << /Type /Annot /Subtype /Link /Rect [243.72 284.256 267.48 297.592] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3609 0 obj << /Type /Annot /Subtype /Link /Rect [103.32 669.096 141.48 733.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3610 0 obj << /Type /Annot /Subtype /Link /Rect [103.32 532.296 141.48 596.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3611 0 obj << /Type /Annot /Subtype /Link /Rect [139.32 557.856 163.08 571.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U?"], ["Value = ~"], ]\);) >> >> endobj 3612 0 obj << /Type /Annot /Subtype /Link /Rect [207.72 258.696 245.88 322.792] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3613 0 obj << /Type /Annot /Subtype /Link /Rect [207.72 532.296 245.88 596.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M?"], ["Value = ~"], ]\);) >> >> endobj 3614 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 560.344 311.881 567.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3615 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 495.544 311.881 502.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3616 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 697.144 311.881 703.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3617 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 527.944 311.881 534.637] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3618 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 632.344 311.881 639.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3619 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 358.744 311.881 365.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3620 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 769.144 311.881 775.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3621 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 286.744 311.881 293.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3622 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 391.144 311.881 397.837] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3623 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 664.744 311.881 671.437] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3624 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 254.344 311.881 261.037] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3625 0 obj << /Type /Annot /Subtype /Link /Rect [287.55 423.544 311.881 430.237] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3626 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 455.184 217.512 458.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3627 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 469.584 210.312 472.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3628 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 696.384 282.312 731.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3629 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 735.984 282.312 739.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3630 0 obj << /Type /Annot /Subtype /Link /Rect [74.088 332.784 77.1123 544.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3631 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 728.784 174.312 746.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3632 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 750.384 210.312 753.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3633 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 422.784 282.312 458.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3634 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 768.384 282.312 771.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3635 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 735.984 282.312 771.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3636 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 768.384 332.712 771.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3637 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 735.984 181.512 753.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3638 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 735.984 217.512 739.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3639 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 728.784 224.712 739.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3640 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 728.784 224.712 739.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3641 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 728.784 282.312 731.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3642 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 534.384 210.312 537.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3643 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 793.584 210.312 796.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3644 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 771.984 210.312 775.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3645 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 757.584 210.312 760.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D5"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3646 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 779.184 210.312 782.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3647 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 786.384 210.312 789.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3648 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 764.784 210.312 767.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3649 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 696.384 282.312 699.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3650 0 obj << /Type /Annot /Subtype /Link /Rect [74.088 541.584 77.1123 674.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3651 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 678.384 181.512 731.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3652 0 obj << /Type /Annot /Subtype /Link /Rect [66.888 678.384 105.912 681.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3653 0 obj << /Type /Annot /Subtype /Link /Rect [52.488 728.784 174.312 731.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3654 0 obj << /Type /Annot /Subtype /Link /Rect [74.088 671.184 105.912 674.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3655 0 obj << /Type /Annot /Subtype /Link /Rect [59.688 606.384 174.312 609.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3656 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 318.384 224.712 328.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3657 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 318.384 282.312 321.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3658 0 obj << /Type /Annot /Subtype /Link /Rect [52.488 404.784 55.5123 731.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3659 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 671.184 174.312 699.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3660 0 obj << /Type /Annot /Subtype /Link /Rect [59.688 397.584 62.7123 609.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3661 0 obj << /Type /Annot /Subtype /Link /Rect [66.888 534.384 69.9123 681.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3662 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 541.584 181.512 595.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3663 0 obj << /Type /Annot /Subtype /Link /Rect [160.488 559.584 174.312 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3664 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 534.384 174.312 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3665 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 671.184 210.312 674.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3666 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 253.584 332.712 256.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3667 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 285.984 282.312 289.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3668 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 267.984 181.512 321.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3669 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 476.784 210.312 479.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3670 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 696.384 174.312 731.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3671 0 obj << /Type /Annot /Subtype /Link /Rect [160.488 696.384 174.312 699.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3672 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 285.984 282.312 321.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3673 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 285.984 332.712 289.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3674 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 285.984 174.312 335.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3675 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 253.584 174.312 263.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3676 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 260.784 174.312 289.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3677 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 743.184 210.312 746.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3678 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 260.784 210.312 263.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3679 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 267.984 210.312 271.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3680 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 325.584 181.512 343.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3681 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 325.584 217.512 328.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3682 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 318.384 217.512 321.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3683 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 318.384 224.712 328.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3684 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 728.784 217.512 731.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3685 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 357.984 332.712 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3686 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 390.384 332.712 393.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3687 0 obj << /Type /Annot /Subtype /Link /Rect [52.488 260.784 55.5123 407.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3688 0 obj << /Type /Annot /Subtype /Link /Rect [59.688 267.984 105.912 271.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3689 0 obj << /Type /Annot /Subtype /Link /Rect [52.488 260.784 105.912 263.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3690 0 obj << /Type /Annot /Subtype /Link /Rect [59.688 267.984 62.7123 400.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3691 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 397.584 210.312 400.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3692 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 397.584 174.312 425.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3693 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 357.984 282.312 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3694 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 325.584 282.312 328.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3695 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 422.784 282.312 425.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3696 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 786.254 138.442 789.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3697 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 793.454 138.442 796.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3698 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 753.984 149.112 757.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3699 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 771.854 138.442 775.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D3"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3700 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 339.984 210.312 343.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P08.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3701 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 559.584 332.712 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3702 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 494.784 282.312 497.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3703 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 404.784 181.512 458.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3704 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 455.184 282.312 458.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3705 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 462.384 282.312 465.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3706 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 455.184 224.712 465.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3707 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 422.784 332.712 425.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3708 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 462.384 217.512 465.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3709 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 462.384 181.512 479.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3710 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 462.384 282.312 497.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3711 0 obj << /Type /Annot /Subtype /Link /Rect [74.088 541.584 105.912 544.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3712 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 494.784 332.712 497.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3713 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 455.184 224.712 465.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P07.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3714 0 obj << /Type /Annot /Subtype /Link /Rect [160.488 285.984 174.312 289.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3715 0 obj << /Type /Annot /Subtype /Link /Rect [74.088 332.784 174.312 335.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3716 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 325.584 282.312 361.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P04.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3717 0 obj << /Type /Annot /Subtype /Link /Rect [52.488 404.784 105.912 407.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3718 0 obj << /Type /Annot /Subtype /Link /Rect [59.688 397.584 105.912 400.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3719 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 591.984 217.512 595.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3720 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 599.184 282.312 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3721 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 599.184 282.312 634.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3722 0 obj << /Type /Annot /Subtype /Link /Rect [66.888 469.584 174.312 472.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3723 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 678.384 210.312 681.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P01.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3724 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 613.584 210.312 616.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3725 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 663.984 174.312 674.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3726 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 422.784 174.312 472.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3727 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 606.384 210.312 609.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3728 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 390.384 174.312 400.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3729 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 599.184 217.512 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3730 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 599.184 181.512 616.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3731 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 559.584 174.312 609.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3732 0 obj << /Type /Annot /Subtype /Link /Rect [66.888 469.584 69.9123 537.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3733 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 631.584 282.312 634.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3734 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 663.984 332.712 667.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P09.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3735 0 obj << /Type /Annot /Subtype /Link /Rect [66.888 534.384 105.912 537.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3736 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 559.584 282.312 595.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3737 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 332.784 210.312 335.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P12.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3738 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 404.784 210.312 407.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P03.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3739 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 591.984 224.712 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3740 0 obj << /Type /Annot /Subtype /Link /Rect [149.688 746.784 152.712 760.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D5"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3741 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 779.054 138.442 782.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3742 0 obj << /Type /Annot /Subtype /Link /Rect [135.288 746.784 152.712 749.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D5"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3743 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 753.984 149.112 767.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/P01.D4"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3744 0 obj << /Type /Annot /Subtype /Link /Rect [214.488 591.984 224.712 602.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3745 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 527.184 332.712 530.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3746 0 obj << /Type /Annot /Subtype /Link /Rect [178.488 541.584 210.312 544.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3747 0 obj << /Type /Annot /Subtype /Link /Rect [264.888 559.584 282.312 562.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3748 0 obj << /Type /Annot /Subtype /Link /Rect [160.488 422.784 174.312 425.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P11.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3749 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 631.584 332.712 634.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P02.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3750 0 obj << /Type /Annot /Subtype /Link /Rect [279.288 696.384 332.712 699.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P05.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3751 0 obj << /Type /Annot /Subtype /Link /Rect [171.288 527.184 174.312 537.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P10.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3752 0 obj << /Type /Annot /Subtype /Link /Rect [221.688 591.984 282.312 595.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Input Multiplexer/IM.P06.Y"], ["Resolved netclass = Default"], ]\);) >> >> endobj 3995 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 490.896 231.48 526.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M14"], ["Value = ~"], ]\);) >> >> endobj 3996 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 538.056 253.08 551.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U13"], ["Value = ~"], ]\);) >> >> endobj 3997 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 502.056 253.08 515.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U14"], ["Value = ~"], ]\);) >> >> endobj 3998 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 526.896 231.48 562.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M13"], ["Value = ~"], ]\);) >> >> endobj 3999 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 412.056 253.08 425.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U11"], ["Value = ~"], ]\);) >> >> endobj 4000 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 400.896 231.48 436.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M11"], ["Value = ~"], ]\);) >> >> endobj 4001 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 376.056 253.08 389.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U12"], ["Value = ~"], ]\);) >> >> endobj 4002 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 364.896 231.48 400.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M12"], ["Value = ~"], ]\);) >> >> endobj 4003 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 410.184 203.112 413.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4004 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 424.584 203.112 427.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4005 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 465.984 257.112 469.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4006 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 366.984 149.112 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4007 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 388.584 203.112 391.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4008 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 374.184 203.112 377.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4009 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 402.984 203.112 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4010 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 381.384 203.112 384.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4011 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 341.784 257.112 344.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4012 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 458.784 257.112 461.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4013 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 458.784 141.912 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4014 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 327.384 141.912 377.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4015 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 334.584 134.712 384.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4016 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 381.384 134.712 420.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4017 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 388.584 127.512 427.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4018 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 374.184 141.912 413.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4019 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 341.784 127.512 344.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4020 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 451.584 257.112 454.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4021 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 341.784 127.512 391.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4022 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 413.784 257.112 416.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Output Multiplexer \\u00281,1\\u0029/SB.P12.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4023 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 334.584 134.712 337.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4024 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 377.784 257.112 380.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Output Multiplexer \\u00281,1\\u0029/SB.P10.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4025 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 327.384 141.912 330.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4026 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 320.184 149.112 323.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4027 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 320.184 257.112 323.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4028 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 417.384 203.112 420.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4029 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 514.584 127.512 553.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4030 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 465.984 134.712 469.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4031 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 473.184 127.512 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4032 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 451.584 149.112 454.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4033 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 451.584 149.112 496.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4034 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 458.784 141.912 461.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4035 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 514.584 203.112 517.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4036 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 507.384 203.112 510.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4037 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 528.984 203.112 532.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4038 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 543.384 203.112 546.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4039 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 536.184 203.112 539.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4040 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 492.984 149.112 532.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4041 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 550.584 203.112 553.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4042 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 334.584 257.112 337.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4043 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 500.184 141.912 539.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4044 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 500.184 203.112 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4045 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 492.984 203.112 496.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4046 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 507.384 134.712 546.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4047 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 539.784 257.112 542.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Output Multiplexer \\u00281,1\\u0029/SB.P11.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4048 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 473.184 257.112 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4049 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 465.984 134.712 510.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4050 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 473.184 127.512 517.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4051 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 503.784 257.112 506.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Output Multiplexer \\u00281,1\\u0029/SB.P09.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4052 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 327.384 257.112 330.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4053 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 320.184 149.112 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4054 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 366.984 203.112 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4139 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 526.896 231.48 562.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M810"], ["Value = ~"], ]\);) >> >> endobj 4140 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 538.056 253.08 551.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U2105"], ["Value = ~"], ]\);) >> >> endobj 4141 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 490.896 231.48 526.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M811"], ["Value = ~"], ]\);) >> >> endobj 4142 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 376.056 253.08 389.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U2108"], ["Value = ~"], ]\);) >> >> endobj 4143 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 364.896 231.48 400.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M813"], ["Value = ~"], ]\);) >> >> endobj 4144 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 412.056 253.08 425.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U2107"], ["Value = ~"], ]\);) >> >> endobj 4145 0 obj << /Type /Annot /Subtype /Link /Rect [200.52 400.896 231.48 436.192] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = M812"], ["Value = ~"], ]\);) >> >> endobj 4146 0 obj << /Type /Annot /Subtype /Link /Rect [229.32 502.056 253.08 515.392] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Reference = U2106"], ["Value = ~"], ]\);) >> >> endobj 4147 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 402.984 203.112 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4148 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 334.584 134.712 384.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4149 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 327.384 257.112 330.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4150 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 341.784 257.112 344.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4151 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 334.584 257.112 337.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4152 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 374.184 141.912 413.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4153 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 374.184 203.112 377.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4154 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 381.384 203.112 384.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4155 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 320.184 149.112 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4156 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 327.384 141.912 377.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4157 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 473.184 127.512 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4158 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 410.184 203.112 413.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4159 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 417.384 203.112 420.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4160 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 424.584 203.112 427.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4161 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 388.584 203.112 391.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4162 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 388.584 127.512 427.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4163 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 366.984 203.112 370.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4164 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 320.184 257.112 323.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4165 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 413.784 257.112 416.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Output Multiplexer \\u00282,2\\u0029/SB.P12.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4166 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 377.784 257.112 380.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Output Multiplexer \\u00282,2\\u0029/SB.P10.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4167 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 341.784 127.512 391.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4168 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 366.984 149.112 406.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4169 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 341.784 127.512 344.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4170 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 327.384 141.912 330.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4171 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 320.184 149.112 323.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4172 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 334.584 134.712 337.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4173 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 465.984 257.112 469.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4174 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 514.584 203.112 517.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4175 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 550.584 203.112 553.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4176 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 543.384 203.112 546.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4177 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 514.584 127.512 553.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4178 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 507.384 203.112 510.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4179 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 528.984 203.112 532.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4180 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 507.384 134.712 546.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4181 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 492.984 149.112 532.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4182 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 500.184 141.912 539.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4183 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 492.984 203.112 496.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4184 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 500.184 203.112 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4185 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 536.184 203.112 539.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4186 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 473.184 257.112 476.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4187 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 458.784 141.912 461.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4188 0 obj << /Type /Annot /Subtype /Link /Rect [124.488 473.184 127.512 517.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE11.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4189 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 465.984 134.712 510.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4190 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 451.584 149.112 496.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4191 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 458.784 141.912 503.208] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4192 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 539.784 257.112 542.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Output Multiplexer \\u00282,2\\u0029/SB.P11.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4193 0 obj << /Type /Annot /Subtype /Link /Rect [250.488 503.784 257.112 506.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /Output Multiplexer \\u00282,2\\u0029/SB.P09.D0"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4194 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 451.584 149.112 454.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4195 0 obj << /Type /Annot /Subtype /Link /Rect [138.888 458.784 257.112 461.808] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE21.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4196 0 obj << /Type /Annot /Subtype /Link /Rect [146.088 451.584 257.112 454.608] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE22.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4197 0 obj << /Type /Annot /Subtype /Link /Rect [131.688 381.384 134.712 420.408] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT2"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4198 0 obj << /Type /Annot /Subtype /Link /Rect [70.488 465.984 134.712 469.008] /Border [16 16 0] /A << /Type /Action /S /JavaScript /JS (ShM\([ ["Net = /CPE12.OUT1"], ["Resolved netclass = Default"], ]\);) >> >> endobj 4 0 obj << /JavaScript << /Names [ (JSInit) << /Type /Action /S /JavaScript /JS ( function ShM\(aEntries\) { var aParams = []; for \(var i in aEntries\) { aParams.push\({ cName: aEntries[i][0], cReturn: aEntries[i][1] }\) } var cChoice = app.popUpMenuEx.apply\(app, aParams\); if \(cChoice != null && cChoice.substring\(0, 1\) == '#'\) this.pageNum = parseInt\(cChoice.slice\(1\)\); else if \(cChoice != null && cChoice.substring\(0, 4\) == 'http'\) app.launchURL\(cChoice\); else if \(cChoice != null && cChoice.substring\(0, 4\) == 'file'\) app.openDoc\(cChoice.substring\(7\)\); } ) >> ] >> >> endobj 1 0 obj << /Type /Pages /Kids [ 1000 0 R 1769 0 R 2409 0 R 2580 0 R 2812 0 R 2988 0 R 3104 0 R 3266 0 R 3444 0 R 3754 0 R 4056 0 R 4200 0 R ] /Count 12 >> endobj 4265 0 obj << /Producer (KiCad PDF) /CreationDate (D:20260109134349) /Creator (Eeschema-PDF) /Title (cpe.pdf) /Author () /Subject () >> endobj 1928 0 obj << /Title (CINX) /Parent 1772 0 R /Next 1820 0 R /A 1927 0 R >> endobj 1820 0 obj << /Title (CINX) /Parent 1772 0 R /Next 1774 0 R /Prev 1928 0 R /A 1819 0 R >> endobj 1774 0 obj << /Title (CINX) /Parent 1772 0 R /Next 1806 0 R /Prev 1820 0 R /A 1773 0 R >> endobj 1806 0 obj << /Title (CINX) /Parent 1772 0 R /Next 1906 0 R /Prev 1774 0 R /A 1805 0 R >> endobj 1906 0 obj << /Title (CINX) /Parent 1772 0 R /Next 1922 0 R /Prev 1806 0 R /A 1905 0 R >> endobj 1922 0 obj << /Title (CINY1) /Parent 1772 0 R /Next 1784 0 R /Prev 1906 0 R /A 1921 0 R >> endobj 1784 0 obj << /Title (CINY1) /Parent 1772 0 R /Next 1920 0 R /Prev 1922 0 R /A 1783 0 R >> endobj 1920 0 obj << /Title (CINY1) /Parent 1772 0 R /Next 1866 0 R /Prev 1784 0 R /A 1919 0 R >> endobj 1866 0 obj << /Title (CINY1) /Parent 1772 0 R /Next 1910 0 R /Prev 1920 0 R /A 1865 0 R >> endobj 1910 0 obj << /Title (CINY1) /Parent 1772 0 R /Next 1832 0 R /Prev 1866 0 R /A 1909 0 R >> endobj 1832 0 obj << /Title (CINY2) /Parent 1772 0 R /Next 1862 0 R /Prev 1910 0 R /A 1831 0 R >> endobj 1862 0 obj << /Title (CINY2) /Parent 1772 0 R /Next 1914 0 R /Prev 1832 0 R /A 1861 0 R >> endobj 1914 0 obj << /Title (CINY2) /Parent 1772 0 R /Next 1916 0 R /Prev 1862 0 R /A 1913 0 R >> endobj 1916 0 obj << /Title (CINY2) /Parent 1772 0 R /Next 1786 0 R /Prev 1914 0 R /A 1915 0 R >> endobj 1786 0 obj << /Title (CLK) /Parent 1772 0 R /Next 1838 0 R /Prev 1916 0 R /A 1785 0 R >> endobj 1838 0 obj << /Title (CLK) /Parent 1772 0 R /Next 1912 0 R /Prev 1786 0 R /A 1837 0 R >> endobj 1912 0 obj << /Title (COUTX) /Parent 1772 0 R /Next 1874 0 R /Prev 1838 0 R /A 1911 0 R >> endobj 1874 0 obj << /Title (COUTX) /Parent 1772 0 R /Next 1868 0 R /Prev 1912 0 R /A 1873 0 R >> endobj 1868 0 obj << /Title (COUTY1) /Parent 1772 0 R /Next 1778 0 R /Prev 1874 0 R /A 1867 0 R >> endobj 1778 0 obj << /Title (COUTY1) /Parent 1772 0 R /Next 1780 0 R /Prev 1868 0 R /A 1777 0 R >> endobj 1780 0 obj << /Title (COUTY2) /Parent 1772 0 R /Next 1882 0 R /Prev 1778 0 R /A 1779 0 R >> endobj 1882 0 obj << /Title (EN) /Parent 1772 0 R /Next 1872 0 R /Prev 1780 0 R /A 1881 0 R >> endobj 1872 0 obj << /Title (EN) /Parent 1772 0 R /Next 1864 0 R /Prev 1882 0 R /A 1871 0 R >> endobj 1864 0 obj << /Title (EN) /Parent 1772 0 R /Next 1834 0 R /Prev 1872 0 R /A 1863 0 R >> endobj 1834 0 obj << /Title (IN1) /Parent 1772 0 R /Next 1852 0 R /Prev 1864 0 R /A 1833 0 R >> endobj 1852 0 obj << /Title (IN1) /Parent 1772 0 R /Next 1796 0 R /Prev 1834 0 R /A 1851 0 R >> endobj 1796 0 obj << /Title (IN1) /Parent 1772 0 R /Next 1904 0 R /Prev 1852 0 R /A 1795 0 R >> endobj 1904 0 obj << /Title (IN2) /Parent 1772 0 R /Next 1798 0 R /Prev 1796 0 R /A 1903 0 R >> endobj 1798 0 obj << /Title (IN2) /Parent 1772 0 R /Next 1848 0 R /Prev 1904 0 R /A 1797 0 R >> endobj 1848 0 obj << /Title (IN2) /Parent 1772 0 R /Next 1902 0 R /Prev 1798 0 R /A 1847 0 R >> endobj 1902 0 obj << /Title (IN3) /Parent 1772 0 R /Next 1788 0 R /Prev 1848 0 R /A 1901 0 R >> endobj 1788 0 obj << /Title (IN3) /Parent 1772 0 R /Next 1842 0 R /Prev 1902 0 R /A 1787 0 R >> endobj 1842 0 obj << /Title (IN3) /Parent 1772 0 R /Next 1782 0 R /Prev 1788 0 R /A 1841 0 R >> endobj 1782 0 obj << /Title (IN4) /Parent 1772 0 R /Next 1846 0 R /Prev 1842 0 R /A 1781 0 R >> endobj 1846 0 obj << /Title (IN4) /Parent 1772 0 R /Next 1908 0 R /Prev 1782 0 R /A 1845 0 R >> endobj 1908 0 obj << /Title (IN4) /Parent 1772 0 R /Next 1790 0 R /Prev 1846 0 R /A 1907 0 R >> endobj 1790 0 obj << /Title (IN5) /Parent 1772 0 R /Next 1900 0 R /Prev 1908 0 R /A 1789 0 R >> endobj 1900 0 obj << /Title (IN5) /Parent 1772 0 R /Next 1890 0 R /Prev 1790 0 R /A 1899 0 R >> endobj 1890 0 obj << /Title (IN5) /Parent 1772 0 R /Next 1876 0 R /Prev 1900 0 R /A 1889 0 R >> endobj 1876 0 obj << /Title (IN5) /Parent 1772 0 R /Next 1840 0 R /Prev 1890 0 R /A 1875 0 R >> endobj 1840 0 obj << /Title (IN6) /Parent 1772 0 R /Next 1822 0 R /Prev 1876 0 R /A 1839 0 R >> endobj 1822 0 obj << /Title (IN6) /Parent 1772 0 R /Next 1878 0 R /Prev 1840 0 R /A 1821 0 R >> endobj 1878 0 obj << /Title (IN6) /Parent 1772 0 R /Next 1918 0 R /Prev 1822 0 R /A 1877 0 R >> endobj 1918 0 obj << /Title (IN7) /Parent 1772 0 R /Next 1828 0 R /Prev 1878 0 R /A 1917 0 R >> endobj 1828 0 obj << /Title (IN7) /Parent 1772 0 R /Next 1824 0 R /Prev 1918 0 R /A 1827 0 R >> endobj 1824 0 obj << /Title (IN7) /Parent 1772 0 R /Next 1814 0 R /Prev 1828 0 R /A 1823 0 R >> endobj 1814 0 obj << /Title (IN8) /Parent 1772 0 R /Next 1926 0 R /Prev 1824 0 R /A 1813 0 R >> endobj 1926 0 obj << /Title (IN8) /Parent 1772 0 R /Next 1826 0 R /Prev 1814 0 R /A 1925 0 R >> endobj 1826 0 obj << /Title (IN8) /Parent 1772 0 R /Next 1892 0 R /Prev 1926 0 R /A 1825 0 R >> endobj 1892 0 obj << /Title (IN8) /Parent 1772 0 R /Next 1804 0 R /Prev 1826 0 R /A 1891 0 R >> endobj 1804 0 obj << /Title (OUT1) /Parent 1772 0 R /Next 1856 0 R /Prev 1892 0 R /A 1803 0 R >> endobj 1856 0 obj << /Title (OUT2) /Parent 1772 0 R /Next 1836 0 R /Prev 1804 0 R /A 1855 0 R >> endobj 1836 0 obj << /Title (PINX) /Parent 1772 0 R /Next 1776 0 R /Prev 1856 0 R /A 1835 0 R >> endobj 1776 0 obj << /Title (PINX) /Parent 1772 0 R /Next 1794 0 R /Prev 1836 0 R /A 1775 0 R >> endobj 1794 0 obj << /Title (PINX) /Parent 1772 0 R /Next 1898 0 R /Prev 1776 0 R /A 1793 0 R >> endobj 1898 0 obj << /Title (PINX) /Parent 1772 0 R /Next 1858 0 R /Prev 1794 0 R /A 1897 0 R >> endobj 1858 0 obj << /Title (PINY1) /Parent 1772 0 R /Next 1818 0 R /Prev 1898 0 R /A 1857 0 R >> endobj 1818 0 obj << /Title (PINY1) /Parent 1772 0 R /Next 1816 0 R /Prev 1858 0 R /A 1817 0 R >> endobj 1816 0 obj << /Title (PINY1) /Parent 1772 0 R /Next 1894 0 R /Prev 1818 0 R /A 1815 0 R >> endobj 1894 0 obj << /Title (PINY1) /Parent 1772 0 R /Next 1860 0 R /Prev 1816 0 R /A 1893 0 R >> endobj 1860 0 obj << /Title (PINY1) /Parent 1772 0 R /Next 1924 0 R /Prev 1894 0 R /A 1859 0 R >> endobj 1924 0 obj << /Title (PINY2) /Parent 1772 0 R /Next 1888 0 R /Prev 1860 0 R /A 1923 0 R >> endobj 1888 0 obj << /Title (PINY2) /Parent 1772 0 R /Next 1886 0 R /Prev 1924 0 R /A 1887 0 R >> endobj 1886 0 obj << /Title (PINY2) /Parent 1772 0 R /Next 1870 0 R /Prev 1888 0 R /A 1885 0 R >> endobj 1870 0 obj << /Title (PINY2) /Parent 1772 0 R /Next 1792 0 R /Prev 1886 0 R /A 1869 0 R >> endobj 1792 0 obj << /Title (PINY2) /Parent 1772 0 R /Next 1884 0 R /Prev 1870 0 R /A 1791 0 R >> endobj 1884 0 obj << /Title (POUTX) /Parent 1772 0 R /Next 1800 0 R /Prev 1792 0 R /A 1883 0 R >> endobj 1800 0 obj << /Title (POUTX) /Parent 1772 0 R /Next 1830 0 R /Prev 1884 0 R /A 1799 0 R >> endobj 1830 0 obj << /Title (POUTY1) /Parent 1772 0 R /Next 1812 0 R /Prev 1800 0 R /A 1829 0 R >> endobj 1812 0 obj << /Title (POUTY1) /Parent 1772 0 R /Next 1802 0 R /Prev 1830 0 R /A 1811 0 R >> endobj 1802 0 obj << /Title (POUTY2) /Parent 1772 0 R /Next 1810 0 R /Prev 1812 0 R /A 1801 0 R >> endobj 1810 0 obj << /Title (RAM_I1) /Parent 1772 0 R /Next 1844 0 R /Prev 1802 0 R /A 1809 0 R >> endobj 1844 0 obj << /Title (RAM_I2) /Parent 1772 0 R /Next 1808 0 R /Prev 1810 0 R /A 1843 0 R >> endobj 1808 0 obj << /Title (RAM_O1) /Parent 1772 0 R /Next 1854 0 R /Prev 1844 0 R /A 1807 0 R >> endobj 1854 0 obj << /Title (RAM_O2) /Parent 1772 0 R /Next 1850 0 R /Prev 1808 0 R /A 1853 0 R >> endobj 1850 0 obj << /Title (SR) /Parent 1772 0 R /Next 1896 0 R /Prev 1854 0 R /A 1849 0 R >> endobj 1896 0 obj << /Title (SR) /Parent 1772 0 R /Next 1880 0 R /Prev 1850 0 R /A 1895 0 R >> endobj 1880 0 obj << /Title (SR) /Parent 1772 0 R /Prev 1896 0 R /A 1879 0 R >> endobj 1772 0 obj << /Title (Hierarchical Labels) /Parent 1771 0 R /Next 1929 0 R /Count -78 /First 1928 0 R /Last 1880 0 R /A 1770 0 R >> endobj 2031 0 obj << /Title (C12) /Parent 1929 0 R /Next 2155 0 R /A 2030 0 R >> endobj 2155 0 obj << /Title (C?) /Parent 1929 0 R /Next 2135 0 R /Prev 2031 0 R /A 2154 0 R >> endobj 2135 0 obj << /Title (C?) /Parent 1929 0 R /Next 2081 0 R /Prev 2155 0 R /A 2134 0 R >> endobj 2081 0 obj << /Title (C?) /Parent 1929 0 R /Next 2133 0 R /Prev 2135 0 R /A 2080 0 R >> endobj 2133 0 obj << /Title (C?) /Parent 1929 0 R /Next 2187 0 R /Prev 2081 0 R /A 2132 0 R >> endobj 2187 0 obj << /Title (C?) /Parent 1929 0 R /Next 2245 0 R /Prev 2133 0 R /A 2186 0 R >> endobj 2245 0 obj << /Title (C?) /Parent 1929 0 R /Next 2237 0 R /Prev 2187 0 R /A 2244 0 R >> endobj 2237 0 obj << /Title (C?) /Parent 1929 0 R /Next 2203 0 R /Prev 2245 0 R /A 2236 0 R >> endobj 2203 0 obj << /Title (C?) /Parent 1929 0 R /Next 2129 0 R /Prev 2237 0 R /A 2202 0 R >> endobj 2129 0 obj << /Title (C?) /Parent 1929 0 R /Next 2221 0 R /Prev 2203 0 R /A 2128 0 R >> endobj 2221 0 obj << /Title (C?) /Parent 1929 0 R /Next 2225 0 R /Prev 2129 0 R /A 2220 0 R >> endobj 2225 0 obj << /Title (C?) /Parent 1929 0 R /Next 2065 0 R /Prev 2221 0 R /A 2224 0 R >> endobj 2065 0 obj << /Title (C?) /Parent 1929 0 R /Next 1931 0 R /Prev 2225 0 R /A 2064 0 R >> endobj 1931 0 obj << /Title (C_FUNCTION?) /Parent 1929 0 R /Next 2089 0 R /Prev 2065 0 R /A 1930 0 R >> endobj 2089 0 obj << /Title (FF?) /Parent 1929 0 R /Next 2071 0 R /Prev 1931 0 R /A 2088 0 R >> endobj 2071 0 obj << /Title (FF?) /Parent 1929 0 R /Next 2149 0 R /Prev 2089 0 R /A 2070 0 R >> endobj 2149 0 obj << /Title (INIT_L?) /Parent 1929 0 R /Next 2043 0 R /Prev 2071 0 R /A 2148 0 R >> endobj 2043 0 obj << /Title (INIT_L?) /Parent 1929 0 R /Next 2069 0 R /Prev 2149 0 R /A 2042 0 R >> endobj 2069 0 obj << /Title (INIT_L?) /Parent 1929 0 R /Next 1961 0 R /Prev 2043 0 R /A 2068 0 R >> endobj 1961 0 obj << /Title (L21) /Parent 1929 0 R /Next 1959 0 R /Prev 2069 0 R /A 1960 0 R >> endobj 1959 0 obj << /Title (L22) /Parent 1929 0 R /Next 2057 0 R /Prev 1961 0 R /A 1958 0 R >> endobj 2057 0 obj << /Title (L29) /Parent 1929 0 R /Next 2055 0 R /Prev 1959 0 R /A 2056 0 R >> endobj 2055 0 obj << /Title (L30) /Parent 1929 0 R /Next 2099 0 R /Prev 2057 0 R /A 2054 0 R >> endobj 2099 0 obj << /Title (L31) /Parent 1929 0 R /Next 2119 0 R /Prev 2055 0 R /A 2098 0 R >> endobj 2119 0 obj << /Title (L?) /Parent 1929 0 R /Next 2113 0 R /Prev 2099 0 R /A 2118 0 R >> endobj 2113 0 obj << /Title (L?) /Parent 1929 0 R /Next 2107 0 R /Prev 2119 0 R /A 2112 0 R >> endobj 2107 0 obj << /Title (L?) /Parent 1929 0 R /Next 2079 0 R /Prev 2113 0 R /A 2106 0 R >> endobj 2079 0 obj << /Title (L?) /Parent 1929 0 R /Next 2137 0 R /Prev 2107 0 R /A 2078 0 R >> endobj 2137 0 obj << /Title (L?) /Parent 1929 0 R /Next 2117 0 R /Prev 2079 0 R /A 2136 0 R >> endobj 2117 0 obj << /Title (L?) /Parent 1929 0 R /Next 2141 0 R /Prev 2137 0 R /A 2116 0 R >> endobj 2141 0 obj << /Title (L?) /Parent 1929 0 R /Next 2145 0 R /Prev 2117 0 R /A 2140 0 R >> endobj 2145 0 obj << /Title (L?) /Parent 1929 0 R /Next 2091 0 R /Prev 2141 0 R /A 2144 0 R >> endobj 2091 0 obj << /Title (L?) /Parent 1929 0 R /Next 2139 0 R /Prev 2145 0 R /A 2090 0 R >> endobj 2139 0 obj << /Title (LT?) /Parent 1929 0 R /Next 2049 0 R /Prev 2091 0 R /A 2138 0 R >> endobj 2049 0 obj << /Title (LT?) /Parent 1929 0 R /Next 2217 0 R /Prev 2139 0 R /A 2048 0 R >> endobj 2217 0 obj << /Title (M?) /Parent 1929 0 R /Next 1981 0 R /Prev 2049 0 R /A 2216 0 R >> endobj 1981 0 obj << /Title (M?) /Parent 1929 0 R /Next 2195 0 R /Prev 2217 0 R /A 1980 0 R >> endobj 2195 0 obj << /Title (M?) /Parent 1929 0 R /Next 2205 0 R /Prev 1981 0 R /A 2194 0 R >> endobj 2205 0 obj << /Title (M?) /Parent 1929 0 R /Next 2127 0 R /Prev 2195 0 R /A 2204 0 R >> endobj 2127 0 obj << /Title (M?) /Parent 1929 0 R /Next 2123 0 R /Prev 2205 0 R /A 2126 0 R >> endobj 2123 0 obj << /Title (M?) /Parent 1929 0 R /Next 2053 0 R /Prev 2127 0 R /A 2122 0 R >> endobj 2053 0 obj << /Title (M?) /Parent 1929 0 R /Next 1971 0 R /Prev 2123 0 R /A 2052 0 R >> endobj 1971 0 obj << /Title (M?) /Parent 1929 0 R /Next 2213 0 R /Prev 2053 0 R /A 1970 0 R >> endobj 2213 0 obj << /Title (M?) /Parent 1929 0 R /Next 2169 0 R /Prev 1971 0 R /A 2212 0 R >> endobj 2169 0 obj << /Title (M?) /Parent 1929 0 R /Next 2223 0 R /Prev 2213 0 R /A 2168 0 R >> endobj 2223 0 obj << /Title (M?) /Parent 1929 0 R /Next 2115 0 R /Prev 2169 0 R /A 2222 0 R >> endobj 2115 0 obj << /Title (M?) /Parent 1929 0 R /Next 1957 0 R /Prev 2223 0 R /A 2114 0 R >> endobj 1957 0 obj << /Title (M?) /Parent 1929 0 R /Next 2231 0 R /Prev 2115 0 R /A 1956 0 R >> endobj 2231 0 obj << /Title (M?) /Parent 1929 0 R /Next 1939 0 R /Prev 1957 0 R /A 2230 0 R >> endobj 1939 0 obj << /Title (M?) /Parent 1929 0 R /Next 1949 0 R /Prev 2231 0 R /A 1938 0 R >> endobj 1949 0 obj << /Title (M?) /Parent 1929 0 R /Next 1943 0 R /Prev 1939 0 R /A 1948 0 R >> endobj 1943 0 obj << /Title (M?) /Parent 1929 0 R /Next 2075 0 R /Prev 1949 0 R /A 1942 0 R >> endobj 2075 0 obj << /Title (M?) /Parent 1929 0 R /Next 2103 0 R /Prev 1943 0 R /A 2074 0 R >> endobj 2103 0 obj << /Title (M?) /Parent 1929 0 R /Next 2247 0 R /Prev 2075 0 R /A 2102 0 R >> endobj 2247 0 obj << /Title (M?) /Parent 1929 0 R /Next 2183 0 R /Prev 2103 0 R /A 2246 0 R >> endobj 2183 0 obj << /Title (M?) /Parent 1929 0 R /Next 1935 0 R /Prev 2247 0 R /A 2182 0 R >> endobj 1935 0 obj << /Title (M?) /Parent 1929 0 R /Next 1995 0 R /Prev 2183 0 R /A 1934 0 R >> endobj 1995 0 obj << /Title (M?) /Parent 1929 0 R /Next 2151 0 R /Prev 1935 0 R /A 1994 0 R >> endobj 2151 0 obj << /Title (M?) /Parent 1929 0 R /Next 2093 0 R /Prev 1995 0 R /A 2150 0 R >> endobj 2093 0 obj << /Title (M?) /Parent 1929 0 R /Next 2171 0 R /Prev 2151 0 R /A 2092 0 R >> endobj 2171 0 obj << /Title (M?) /Parent 1929 0 R /Next 2083 0 R /Prev 2093 0 R /A 2170 0 R >> endobj 2083 0 obj << /Title (M?) /Parent 1929 0 R /Next 2143 0 R /Prev 2171 0 R /A 2082 0 R >> endobj 2143 0 obj << /Title (M?) /Parent 1929 0 R /Next 2177 0 R /Prev 2083 0 R /A 2142 0 R >> endobj 2177 0 obj << /Title (M?) /Parent 1929 0 R /Next 2179 0 R /Prev 2143 0 R /A 2176 0 R >> endobj 2179 0 obj << /Title (M?) /Parent 1929 0 R /Next 2035 0 R /Prev 2177 0 R /A 2178 0 R >> endobj 2035 0 obj << /Title (M?) /Parent 1929 0 R /Next 2009 0 R /Prev 2179 0 R /A 2034 0 R >> endobj 2009 0 obj << /Title (U100) /Parent 1929 0 R /Next 2011 0 R /Prev 2035 0 R /A 2008 0 R >> endobj 2011 0 obj << /Title (U101) /Parent 1929 0 R /Next 1983 0 R /Prev 2009 0 R /A 2010 0 R >> endobj 1983 0 obj << /Title (U103) /Parent 1929 0 R /Next 2029 0 R /Prev 2011 0 R /A 1982 0 R >> endobj 2029 0 obj << /Title (U107) /Parent 1929 0 R /Next 2027 0 R /Prev 1983 0 R /A 2028 0 R >> endobj 2027 0 obj << /Title (U108) /Parent 1929 0 R /Next 2163 0 R /Prev 2029 0 R /A 2026 0 R >> endobj 2163 0 obj << /Title (U109) /Parent 1929 0 R /Next 2001 0 R /Prev 2027 0 R /A 2162 0 R >> endobj 2001 0 obj << /Title (U110) /Parent 1929 0 R /Next 2003 0 R /Prev 2163 0 R /A 2000 0 R >> endobj 2003 0 obj << /Title (U111) /Parent 1929 0 R /Next 1999 0 R /Prev 2001 0 R /A 2002 0 R >> endobj 1999 0 obj << /Title (U112) /Parent 1929 0 R /Next 2005 0 R /Prev 2003 0 R /A 1998 0 R >> endobj 2005 0 obj << /Title (U113) /Parent 1929 0 R /Next 2021 0 R /Prev 1999 0 R /A 2004 0 R >> endobj 2021 0 obj << /Title (U114) /Parent 1929 0 R /Next 1993 0 R /Prev 2005 0 R /A 2020 0 R >> endobj 1993 0 obj << /Title (U115) /Parent 1929 0 R /Next 2235 0 R /Prev 2021 0 R /A 1992 0 R >> endobj 2235 0 obj << /Title (U120) /Parent 1929 0 R /Next 2249 0 R /Prev 1993 0 R /A 2234 0 R >> endobj 2249 0 obj << /Title (U121) /Parent 1929 0 R /Next 1933 0 R /Prev 2235 0 R /A 2248 0 R >> endobj 1933 0 obj << /Title (U122) /Parent 1929 0 R /Next 2015 0 R /Prev 2249 0 R /A 1932 0 R >> endobj 2015 0 obj << /Title (U1224) /Parent 1929 0 R /Next 1951 0 R /Prev 1933 0 R /A 2014 0 R >> endobj 1951 0 obj << /Title (U1225) /Parent 1929 0 R /Next 2017 0 R /Prev 2015 0 R /A 1950 0 R >> endobj 2017 0 obj << /Title (U147) /Parent 1929 0 R /Next 1945 0 R /Prev 1951 0 R /A 2016 0 R >> endobj 1945 0 obj << /Title (U148) /Parent 1929 0 R /Next 2239 0 R /Prev 2017 0 R /A 1944 0 R >> endobj 2239 0 obj << /Title (U151) /Parent 1929 0 R /Next 1941 0 R /Prev 1945 0 R /A 2238 0 R >> endobj 1941 0 obj << /Title (U152) /Parent 1929 0 R /Next 2025 0 R /Prev 2239 0 R /A 1940 0 R >> endobj 2025 0 obj << /Title (U153) /Parent 1929 0 R /Next 2037 0 R /Prev 1941 0 R /A 2024 0 R >> endobj 2037 0 obj << /Title (U22) /Parent 1929 0 R /Next 2207 0 R /Prev 2025 0 R /A 2036 0 R >> endobj 2207 0 obj << /Title (U23) /Parent 1929 0 R /Next 2219 0 R /Prev 2037 0 R /A 2206 0 R >> endobj 2219 0 obj << /Title (U24) /Parent 1929 0 R /Next 2165 0 R /Prev 2207 0 R /A 2218 0 R >> endobj 2165 0 obj << /Title (U40) /Parent 1929 0 R /Next 2039 0 R /Prev 2219 0 R /A 2164 0 R >> endobj 2039 0 obj << /Title (U67) /Parent 1929 0 R /Next 2215 0 R /Prev 2165 0 R /A 2038 0 R >> endobj 2215 0 obj << /Title (U68) /Parent 1929 0 R /Next 2241 0 R /Prev 2039 0 R /A 2214 0 R >> endobj 2241 0 obj << /Title (U69) /Parent 1929 0 R /Next 1985 0 R /Prev 2215 0 R /A 2240 0 R >> endobj 1985 0 obj << /Title (U73) /Parent 1929 0 R /Next 2019 0 R /Prev 2241 0 R /A 1984 0 R >> endobj 2019 0 obj << /Title (U76) /Parent 1929 0 R /Next 2159 0 R /Prev 1985 0 R /A 2018 0 R >> endobj 2159 0 obj << /Title (U77) /Parent 1929 0 R /Next 2023 0 R /Prev 2019 0 R /A 2158 0 R >> endobj 2023 0 obj << /Title (U78) /Parent 1929 0 R /Next 2161 0 R /Prev 2159 0 R /A 2022 0 R >> endobj 2161 0 obj << /Title (U79) /Parent 1929 0 R /Next 2059 0 R /Prev 2023 0 R /A 2160 0 R >> endobj 2059 0 obj << /Title (U80) /Parent 1929 0 R /Next 2147 0 R /Prev 2161 0 R /A 2058 0 R >> endobj 2147 0 obj << /Title (U81) /Parent 1929 0 R /Next 2063 0 R /Prev 2059 0 R /A 2146 0 R >> endobj 2063 0 obj << /Title (U82) /Parent 1929 0 R /Next 2061 0 R /Prev 2147 0 R /A 2062 0 R >> endobj 2061 0 obj << /Title (U83) /Parent 1929 0 R /Next 2067 0 R /Prev 2063 0 R /A 2060 0 R >> endobj 2067 0 obj << /Title (U87) /Parent 1929 0 R /Next 2047 0 R /Prev 2061 0 R /A 2066 0 R >> endobj 2047 0 obj << /Title (U88) /Parent 1929 0 R /Next 1969 0 R /Prev 2067 0 R /A 2046 0 R >> endobj 1969 0 obj << /Title (U?) /Parent 1929 0 R /Next 1973 0 R /Prev 2047 0 R /A 1968 0 R >> endobj 1973 0 obj << /Title (U?) /Parent 1929 0 R /Next 2211 0 R /Prev 1969 0 R /A 1972 0 R >> endobj 2211 0 obj << /Title (U?) /Parent 1929 0 R /Next 2209 0 R /Prev 1973 0 R /A 2210 0 R >> endobj 2209 0 obj << /Title (U?) /Parent 1929 0 R /Next 2193 0 R /Prev 2211 0 R /A 2208 0 R >> endobj 2193 0 obj << /Title (U?) /Parent 1929 0 R /Next 1975 0 R /Prev 2209 0 R /A 2192 0 R >> endobj 1975 0 obj << /Title (U?) /Parent 1929 0 R /Next 2201 0 R /Prev 2193 0 R /A 1974 0 R >> endobj 2201 0 obj << /Title (U?) /Parent 1929 0 R /Next 2199 0 R /Prev 1975 0 R /A 2200 0 R >> endobj 2199 0 obj << /Title (U?) /Parent 1929 0 R /Next 2197 0 R /Prev 2201 0 R /A 2198 0 R >> endobj 2197 0 obj << /Title (U?) /Parent 1929 0 R /Next 1977 0 R /Prev 2199 0 R /A 2196 0 R >> endobj 1977 0 obj << /Title (U?) /Parent 1929 0 R /Next 2175 0 R /Prev 2197 0 R /A 1976 0 R >> endobj 2175 0 obj << /Title (U?) /Parent 1929 0 R /Next 1967 0 R /Prev 1977 0 R /A 2174 0 R >> endobj 1967 0 obj << /Title (U?) /Parent 1929 0 R /Next 1965 0 R /Prev 2175 0 R /A 1966 0 R >> endobj 1965 0 obj << /Title (U?) /Parent 1929 0 R /Next 1963 0 R /Prev 1967 0 R /A 1964 0 R >> endobj 1963 0 obj << /Title (U?) /Parent 1929 0 R /Next 1955 0 R /Prev 1965 0 R /A 1962 0 R >> endobj 1955 0 obj << /Title (U?) /Parent 1929 0 R /Next 2227 0 R /Prev 1963 0 R /A 1954 0 R >> endobj 2227 0 obj << /Title (U?) /Parent 1929 0 R /Next 2229 0 R /Prev 1955 0 R /A 2226 0 R >> endobj 2229 0 obj << /Title (U?) /Parent 1929 0 R /Next 1953 0 R /Prev 2227 0 R /A 2228 0 R >> endobj 1953 0 obj << /Title (U?) /Parent 1929 0 R /Next 2233 0 R /Prev 2229 0 R /A 1952 0 R >> endobj 2233 0 obj << /Title (U?) /Parent 1929 0 R /Next 1947 0 R /Prev 1953 0 R /A 2232 0 R >> endobj 1947 0 obj << /Title (U?) /Parent 1929 0 R /Next 2243 0 R /Prev 2233 0 R /A 1946 0 R >> endobj 2243 0 obj << /Title (U?) /Parent 1929 0 R /Next 1937 0 R /Prev 1947 0 R /A 2242 0 R >> endobj 1937 0 obj << /Title (U?) /Parent 1929 0 R /Next 2251 0 R /Prev 2243 0 R /A 1936 0 R >> endobj 2251 0 obj << /Title (U?) /Parent 1929 0 R /Next 2253 0 R /Prev 1937 0 R /A 2250 0 R >> endobj 2253 0 obj << /Title (U?) /Parent 1929 0 R /Next 2255 0 R /Prev 2251 0 R /A 2252 0 R >> endobj 2255 0 obj << /Title (U?) /Parent 1929 0 R /Next 2033 0 R /Prev 2253 0 R /A 2254 0 R >> endobj 2033 0 obj << /Title (U?) /Parent 1929 0 R /Next 2095 0 R /Prev 2255 0 R /A 2032 0 R >> endobj 2095 0 obj << /Title (U?) /Parent 1929 0 R /Next 2097 0 R /Prev 2033 0 R /A 2094 0 R >> endobj 2097 0 obj << /Title (U?) /Parent 1929 0 R /Next 2085 0 R /Prev 2095 0 R /A 2096 0 R >> endobj 2085 0 obj << /Title (U?) /Parent 1929 0 R /Next 2101 0 R /Prev 2097 0 R /A 2084 0 R >> endobj 2101 0 obj << /Title (U?) /Parent 1929 0 R /Next 2077 0 R /Prev 2085 0 R /A 2100 0 R >> endobj 2077 0 obj << /Title (U?) /Parent 1929 0 R /Next 2105 0 R /Prev 2101 0 R /A 2076 0 R >> endobj 2105 0 obj << /Title (U?) /Parent 1929 0 R /Next 2073 0 R /Prev 2077 0 R /A 2104 0 R >> endobj 2073 0 obj << /Title (U?) /Parent 1929 0 R /Next 2109 0 R /Prev 2105 0 R /A 2072 0 R >> endobj 2109 0 obj << /Title (U?) /Parent 1929 0 R /Next 2111 0 R /Prev 2073 0 R /A 2108 0 R >> endobj 2111 0 obj << /Title (U?) /Parent 1929 0 R /Next 2121 0 R /Prev 2109 0 R /A 2110 0 R >> endobj 2121 0 obj << /Title (U?) /Parent 1929 0 R /Next 2051 0 R /Prev 2111 0 R /A 2120 0 R >> endobj 2051 0 obj << /Title (U?) /Parent 1929 0 R /Next 2125 0 R /Prev 2121 0 R /A 2050 0 R >> endobj 2125 0 obj << /Title (U?) /Parent 1929 0 R /Next 2045 0 R /Prev 2051 0 R /A 2124 0 R >> endobj 2045 0 obj << /Title (U?) /Parent 1929 0 R /Next 2131 0 R /Prev 2125 0 R /A 2044 0 R >> endobj 2131 0 obj << /Title (U?) /Parent 1929 0 R /Next 2041 0 R /Prev 2045 0 R /A 2130 0 R >> endobj 2041 0 obj << /Title (U?) /Parent 1929 0 R /Next 2191 0 R /Prev 2131 0 R /A 2040 0 R >> endobj 2191 0 obj << /Title (U?) /Parent 1929 0 R /Next 2153 0 R /Prev 2041 0 R /A 2190 0 R >> endobj 2153 0 obj << /Title (U?) /Parent 1929 0 R /Next 2013 0 R /Prev 2191 0 R /A 2152 0 R >> endobj 2013 0 obj << /Title (U?) /Parent 1929 0 R /Next 2157 0 R /Prev 2153 0 R /A 2012 0 R >> endobj 2157 0 obj << /Title (U?) /Parent 1929 0 R /Next 2007 0 R /Prev 2013 0 R /A 2156 0 R >> endobj 2007 0 obj << /Title (U?) /Parent 1929 0 R /Next 2167 0 R /Prev 2157 0 R /A 2006 0 R >> endobj 2167 0 obj << /Title (U?) /Parent 1929 0 R /Next 1997 0 R /Prev 2007 0 R /A 2166 0 R >> endobj 1997 0 obj << /Title (U?) /Parent 1929 0 R /Next 1991 0 R /Prev 2167 0 R /A 1996 0 R >> endobj 1991 0 obj << /Title (U?) /Parent 1929 0 R /Next 2173 0 R /Prev 1997 0 R /A 1990 0 R >> endobj 2173 0 obj << /Title (U?) /Parent 1929 0 R /Next 2087 0 R /Prev 1991 0 R /A 2172 0 R >> endobj 2087 0 obj << /Title (U?) /Parent 1929 0 R /Next 1989 0 R /Prev 2173 0 R /A 2086 0 R >> endobj 1989 0 obj << /Title (U?) /Parent 1929 0 R /Next 1987 0 R /Prev 2087 0 R /A 1988 0 R >> endobj 1987 0 obj << /Title (U?) /Parent 1929 0 R /Next 2181 0 R /Prev 1989 0 R /A 1986 0 R >> endobj 2181 0 obj << /Title (U?) /Parent 1929 0 R /Next 2185 0 R /Prev 1987 0 R /A 2180 0 R >> endobj 2185 0 obj << /Title (U?) /Parent 1929 0 R /Next 1979 0 R /Prev 2181 0 R /A 2184 0 R >> endobj 1979 0 obj << /Title (U?) /Parent 1929 0 R /Next 2189 0 R /Prev 2185 0 R /A 1978 0 R >> endobj 2189 0 obj << /Title (U?) /Parent 1929 0 R /Prev 1979 0 R /A 2188 0 R >> endobj 1929 0 obj << /Title (Symbols) /Parent 1771 0 R /Next 2411 0 R /Prev 1772 0 R /Count -163 /First 2031 0 R /Last 2189 0 R /A 1927 0 R >> endobj 2440 0 obj << /Title (CINX) /Parent 2412 0 R /Next 2430 0 R /A 2439 0 R >> endobj 2430 0 obj << /Title (CINY1) /Parent 2412 0 R /Next 2432 0 R /Prev 2440 0 R /A 2429 0 R >> endobj 2432 0 obj << /Title (CINY2) /Parent 2412 0 R /Next 2424 0 R /Prev 2430 0 R /A 2431 0 R >> endobj 2424 0 obj << /Title (IN1) /Parent 2412 0 R /Next 2428 0 R /Prev 2432 0 R /A 2423 0 R >> endobj 2428 0 obj << /Title (IN2) /Parent 2412 0 R /Next 2422 0 R /Prev 2424 0 R /A 2427 0 R >> endobj 2422 0 obj << /Title (IN3) /Parent 2412 0 R /Next 2420 0 R /Prev 2428 0 R /A 2421 0 R >> endobj 2420 0 obj << /Title (IN4) /Parent 2412 0 R /Next 2448 0 R /Prev 2422 0 R /A 2419 0 R >> endobj 2448 0 obj << /Title (IN5) /Parent 2412 0 R /Next 2438 0 R /Prev 2420 0 R /A 2447 0 R >> endobj 2438 0 obj << /Title (IN5) /Parent 2412 0 R /Next 2436 0 R /Prev 2448 0 R /A 2437 0 R >> endobj 2436 0 obj << /Title (IN6) /Parent 2412 0 R /Next 2414 0 R /Prev 2438 0 R /A 2435 0 R >> endobj 2414 0 obj << /Title (IN7) /Parent 2412 0 R /Next 2416 0 R /Prev 2436 0 R /A 2413 0 R >> endobj 2416 0 obj << /Title (IN8) /Parent 2412 0 R /Next 2442 0 R /Prev 2414 0 R /A 2415 0 R >> endobj 2442 0 obj << /Title (IN8) /Parent 2412 0 R /Next 2446 0 R /Prev 2416 0 R /A 2441 0 R >> endobj 2446 0 obj << /Title (PINX) /Parent 2412 0 R /Next 2426 0 R /Prev 2442 0 R /A 2445 0 R >> endobj 2426 0 obj << /Title (PINY1) /Parent 2412 0 R /Next 2418 0 R /Prev 2446 0 R /A 2425 0 R >> endobj 2418 0 obj << /Title (PINY1) /Parent 2412 0 R /Next 2434 0 R /Prev 2426 0 R /A 2417 0 R >> endobj 2434 0 obj << /Title (PINY2) /Parent 2412 0 R /Next 2444 0 R /Prev 2418 0 R /A 2433 0 R >> endobj 2444 0 obj << /Title (PINY2) /Parent 2412 0 R /Prev 2434 0 R /A 2443 0 R >> endobj 2412 0 obj << /Title (Hierarchical Labels) /Parent 2411 0 R /Next 2449 0 R /Count -18 /First 2440 0 R /Last 2444 0 R /A 2410 0 R >> endobj 2455 0 obj << /Title (INIT_L4) /Parent 2449 0 R /Next 2453 0 R /A 2454 0 R >> endobj 2453 0 obj << /Title (INIT_L5) /Parent 2449 0 R /Next 2467 0 R /Prev 2455 0 R /A 2452 0 R >> endobj 2467 0 obj << /Title (INIT_L6) /Parent 2449 0 R /Next 2483 0 R /Prev 2453 0 R /A 2466 0 R >> endobj 2483 0 obj << /Title (L10) /Parent 2449 0 R /Next 2457 0 R /Prev 2467 0 R /A 2482 0 R >> endobj 2457 0 obj << /Title (L11) /Parent 2449 0 R /Next 2463 0 R /Prev 2483 0 R /A 2456 0 R >> endobj 2463 0 obj << /Title (L8) /Parent 2449 0 R /Next 2481 0 R /Prev 2457 0 R /A 2462 0 R >> endobj 2481 0 obj << /Title (L9) /Parent 2449 0 R /Next 2473 0 R /Prev 2463 0 R /A 2480 0 R >> endobj 2473 0 obj << /Title (M30) /Parent 2449 0 R /Next 2451 0 R /Prev 2481 0 R /A 2472 0 R >> endobj 2451 0 obj << /Title (M31) /Parent 2449 0 R /Next 2471 0 R /Prev 2473 0 R /A 2450 0 R >> endobj 2471 0 obj << /Title (U52) /Parent 2449 0 R /Next 2469 0 R /Prev 2451 0 R /A 2470 0 R >> endobj 2469 0 obj << /Title (U53) /Parent 2449 0 R /Next 2477 0 R /Prev 2471 0 R /A 2468 0 R >> endobj 2477 0 obj << /Title (U54) /Parent 2449 0 R /Next 2461 0 R /Prev 2469 0 R /A 2476 0 R >> endobj 2461 0 obj << /Title (U56) /Parent 2449 0 R /Next 2459 0 R /Prev 2477 0 R /A 2460 0 R >> endobj 2459 0 obj << /Title (U58) /Parent 2449 0 R /Next 2479 0 R /Prev 2461 0 R /A 2458 0 R >> endobj 2479 0 obj << /Title (U64) /Parent 2449 0 R /Next 2485 0 R /Prev 2459 0 R /A 2478 0 R >> endobj 2485 0 obj << /Title (U65) /Parent 2449 0 R /Next 2465 0 R /Prev 2479 0 R /A 2484 0 R >> endobj 2465 0 obj << /Title (U66) /Parent 2449 0 R /Next 2475 0 R /Prev 2485 0 R /A 2464 0 R >> endobj 2475 0 obj << /Title (U?) /Parent 2449 0 R /Prev 2465 0 R /A 2474 0 R >> endobj 2449 0 obj << /Title (Symbols) /Parent 2411 0 R /Prev 2412 0 R /Count -18 /First 2455 0 R /Last 2475 0 R /A 2447 0 R >> endobj 2411 0 obj << /Title (C_FUNCTION=0 or 6 \(Page 3\)) /Parent 1771 0 R /Next 2582 0 R /Prev 1929 0 R /Count -2 /First 2412 0 R /Last 2449 0 R /A 2410 0 R >> endobj 2585 0 obj << /Title (CINX) /Parent 2583 0 R /Next 2595 0 R /A 2584 0 R >> endobj 2595 0 obj << /Title (CINX) /Parent 2583 0 R /Next 2599 0 R /Prev 2585 0 R /A 2594 0 R >> endobj 2599 0 obj << /Title (CINY1) /Parent 2583 0 R /Next 2611 0 R /Prev 2595 0 R /A 2598 0 R >> endobj 2611 0 obj << /Title (IN1) /Parent 2583 0 R /Next 2607 0 R /Prev 2599 0 R /A 2610 0 R >> endobj 2607 0 obj << /Title (IN2) /Parent 2583 0 R /Next 2609 0 R /Prev 2611 0 R /A 2606 0 R >> endobj 2609 0 obj << /Title (IN3) /Parent 2583 0 R /Next 2593 0 R /Prev 2607 0 R /A 2608 0 R >> endobj 2593 0 obj << /Title (IN4) /Parent 2583 0 R /Next 2589 0 R /Prev 2609 0 R /A 2592 0 R >> endobj 2589 0 obj << /Title (IN5) /Parent 2583 0 R /Next 2587 0 R /Prev 2593 0 R /A 2588 0 R >> endobj 2587 0 obj << /Title (IN6) /Parent 2583 0 R /Next 2601 0 R /Prev 2589 0 R /A 2586 0 R >> endobj 2601 0 obj << /Title (IN7) /Parent 2583 0 R /Next 2597 0 R /Prev 2587 0 R /A 2600 0 R >> endobj 2597 0 obj << /Title (IN8) /Parent 2583 0 R /Next 2603 0 R /Prev 2601 0 R /A 2596 0 R >> endobj 2603 0 obj << /Title (PINX) /Parent 2583 0 R /Next 2591 0 R /Prev 2597 0 R /A 2602 0 R >> endobj 2591 0 obj << /Title (PINY1) /Parent 2583 0 R /Next 2605 0 R /Prev 2603 0 R /A 2590 0 R >> endobj 2605 0 obj << /Title (PINY1) /Parent 2583 0 R /Prev 2591 0 R /A 2604 0 R >> endobj 2583 0 obj << /Title (Hierarchical Labels) /Parent 2582 0 R /Next 2612 0 R /Count -14 /First 2585 0 R /Last 2605 0 R /A 2581 0 R >> endobj 2634 0 obj << /Title (C5) /Parent 2612 0 R /Next 2614 0 R /A 2633 0 R >> endobj 2614 0 obj << /Title (INIT_L7) /Parent 2612 0 R /Next 2630 0 R /Prev 2634 0 R /A 2613 0 R >> endobj 2630 0 obj << /Title (INIT_L8) /Parent 2612 0 R /Next 2632 0 R /Prev 2614 0 R /A 2629 0 R >> endobj 2632 0 obj << /Title (INIT_L9) /Parent 2612 0 R /Next 2628 0 R /Prev 2630 0 R /A 2631 0 R >> endobj 2628 0 obj << /Title (L12) /Parent 2612 0 R /Next 2622 0 R /Prev 2632 0 R /A 2627 0 R >> endobj 2622 0 obj << /Title (L13) /Parent 2612 0 R /Next 2626 0 R /Prev 2628 0 R /A 2621 0 R >> endobj 2626 0 obj << /Title (L14) /Parent 2612 0 R /Next 2616 0 R /Prev 2622 0 R /A 2625 0 R >> endobj 2616 0 obj << /Title (L15) /Parent 2612 0 R /Next 2624 0 R /Prev 2626 0 R /A 2615 0 R >> endobj 2624 0 obj << /Title (U59) /Parent 2612 0 R /Next 2618 0 R /Prev 2616 0 R /A 2623 0 R >> endobj 2618 0 obj << /Title (U61) /Parent 2612 0 R /Next 2620 0 R /Prev 2624 0 R /A 2617 0 R >> endobj 2620 0 obj << /Title (U71) /Parent 2612 0 R /Prev 2618 0 R /A 2619 0 R >> endobj 2612 0 obj << /Title (Symbols) /Parent 2582 0 R /Prev 2583 0 R /Count -11 /First 2634 0 R /Last 2620 0 R /A 2610 0 R >> endobj 2582 0 obj << /Title (C_FUNCTION=1 or 7 \(Page 4\)) /Parent 1771 0 R /Next 2814 0 R /Prev 2411 0 R /Count -2 /First 2583 0 R /Last 2612 0 R /A 2581 0 R >> endobj 2847 0 obj << /Title (CINX) /Parent 2815 0 R /Next 2835 0 R /A 2846 0 R >> endobj 2835 0 obj << /Title (CINX) /Parent 2815 0 R /Next 2821 0 R /Prev 2847 0 R /A 2834 0 R >> endobj 2821 0 obj << /Title (CINY1) /Parent 2815 0 R /Next 2841 0 R /Prev 2835 0 R /A 2820 0 R >> endobj 2841 0 obj << /Title (CINY1) /Parent 2815 0 R /Next 2823 0 R /Prev 2821 0 R /A 2840 0 R >> endobj 2823 0 obj << /Title (CINY2) /Parent 2815 0 R /Next 2829 0 R /Prev 2841 0 R /A 2822 0 R >> endobj 2829 0 obj << /Title (IN1) /Parent 2815 0 R /Next 2853 0 R /Prev 2823 0 R /A 2828 0 R >> endobj 2853 0 obj << /Title (IN2) /Parent 2815 0 R /Next 2851 0 R /Prev 2829 0 R /A 2852 0 R >> endobj 2851 0 obj << /Title (IN3) /Parent 2815 0 R /Next 2849 0 R /Prev 2853 0 R /A 2850 0 R >> endobj 2849 0 obj << /Title (IN4) /Parent 2815 0 R /Next 2855 0 R /Prev 2851 0 R /A 2848 0 R >> endobj 2855 0 obj << /Title (IN5) /Parent 2815 0 R /Next 2845 0 R /Prev 2849 0 R /A 2854 0 R >> endobj 2845 0 obj << /Title (IN5) /Parent 2815 0 R /Next 2837 0 R /Prev 2855 0 R /A 2844 0 R >> endobj 2837 0 obj << /Title (IN6) /Parent 2815 0 R /Next 2831 0 R /Prev 2845 0 R /A 2836 0 R >> endobj 2831 0 obj << /Title (IN7) /Parent 2815 0 R /Next 2843 0 R /Prev 2837 0 R /A 2830 0 R >> endobj 2843 0 obj << /Title (IN8) /Parent 2815 0 R /Next 2833 0 R /Prev 2831 0 R /A 2842 0 R >> endobj 2833 0 obj << /Title (IN8) /Parent 2815 0 R /Next 2839 0 R /Prev 2843 0 R /A 2832 0 R >> endobj 2839 0 obj << /Title (PINX) /Parent 2815 0 R /Next 2827 0 R /Prev 2833 0 R /A 2838 0 R >> endobj 2827 0 obj << /Title (PINY1) /Parent 2815 0 R /Next 2819 0 R /Prev 2839 0 R /A 2826 0 R >> endobj 2819 0 obj << /Title (PINY1) /Parent 2815 0 R /Next 2817 0 R /Prev 2827 0 R /A 2818 0 R >> endobj 2817 0 obj << /Title (PINY2) /Parent 2815 0 R /Next 2825 0 R /Prev 2819 0 R /A 2816 0 R >> endobj 2825 0 obj << /Title (PINY2) /Parent 2815 0 R /Prev 2817 0 R /A 2824 0 R >> endobj 2815 0 obj << /Title (Hierarchical Labels) /Parent 2814 0 R /Next 2856 0 R /Count -20 /First 2847 0 R /Last 2825 0 R /A 2813 0 R >> endobj 2888 0 obj << /Title (C6) /Parent 2856 0 R /Next 2894 0 R /A 2887 0 R >> endobj 2894 0 obj << /Title (INIT_L12) /Parent 2856 0 R /Next 2892 0 R /Prev 2888 0 R /A 2893 0 R >> endobj 2892 0 obj << /Title (INIT_L13) /Parent 2856 0 R /Next 2886 0 R /Prev 2894 0 R /A 2891 0 R >> endobj 2886 0 obj << /Title (INIT_L14) /Parent 2856 0 R /Next 2900 0 R /Prev 2892 0 R /A 2885 0 R >> endobj 2900 0 obj << /Title (L16) /Parent 2856 0 R /Next 2884 0 R /Prev 2886 0 R /A 2899 0 R >> endobj 2884 0 obj << /Title (L17) /Parent 2856 0 R /Next 2882 0 R /Prev 2900 0 R /A 2883 0 R >> endobj 2882 0 obj << /Title (L18) /Parent 2856 0 R /Next 2874 0 R /Prev 2884 0 R /A 2881 0 R >> endobj 2874 0 obj << /Title (L19) /Parent 2856 0 R /Next 2866 0 R /Prev 2882 0 R /A 2873 0 R >> endobj 2866 0 obj << /Title (M14) /Parent 2856 0 R /Next 2868 0 R /Prev 2874 0 R /A 2865 0 R >> endobj 2868 0 obj << /Title (M15) /Parent 2856 0 R /Next 2864 0 R /Prev 2866 0 R /A 2867 0 R >> endobj 2864 0 obj << /Title (M20) /Parent 2856 0 R /Next 2862 0 R /Prev 2868 0 R /A 2863 0 R >> endobj 2862 0 obj << /Title (M21) /Parent 2856 0 R /Next 2878 0 R /Prev 2864 0 R /A 2861 0 R >> endobj 2878 0 obj << /Title (U10) /Parent 2856 0 R /Next 2890 0 R /Prev 2862 0 R /A 2877 0 R >> endobj 2890 0 obj << /Title (U11) /Parent 2856 0 R /Next 2880 0 R /Prev 2878 0 R /A 2889 0 R >> endobj 2880 0 obj << /Title (U36) /Parent 2856 0 R /Next 2858 0 R /Prev 2890 0 R /A 2879 0 R >> endobj 2858 0 obj << /Title (U38) /Parent 2856 0 R /Next 2876 0 R /Prev 2880 0 R /A 2857 0 R >> endobj 2876 0 obj << /Title (U39) /Parent 2856 0 R /Next 2860 0 R /Prev 2858 0 R /A 2875 0 R >> endobj 2860 0 obj << /Title (U42) /Parent 2856 0 R /Next 2870 0 R /Prev 2876 0 R /A 2859 0 R >> endobj 2870 0 obj << /Title (U43) /Parent 2856 0 R /Next 2872 0 R /Prev 2860 0 R /A 2869 0 R >> endobj 2872 0 obj << /Title (U46) /Parent 2856 0 R /Next 2898 0 R /Prev 2870 0 R /A 2871 0 R >> endobj 2898 0 obj << /Title (U47) /Parent 2856 0 R /Next 2896 0 R /Prev 2872 0 R /A 2897 0 R >> endobj 2896 0 obj << /Title (U48) /Parent 2856 0 R /Prev 2898 0 R /A 2895 0 R >> endobj 2856 0 obj << /Title (Symbols) /Parent 2814 0 R /Prev 2815 0 R /Count -22 /First 2888 0 R /Last 2896 0 R /A 2854 0 R >> endobj 2814 0 obj << /Title (C_FUNCTION=2 or 3 \(Page 5\)) /Parent 1771 0 R /Next 2990 0 R /Prev 2582 0 R /Count -2 /First 2815 0 R /Last 2856 0 R /A 2813 0 R >> endobj 3007 0 obj << /Title (CINX) /Parent 2991 0 R /Next 3003 0 R /A 3006 0 R >> endobj 3003 0 obj << /Title (IN1) /Parent 2991 0 R /Next 3015 0 R /Prev 3007 0 R /A 3002 0 R >> endobj 3015 0 obj << /Title (IN1) /Parent 2991 0 R /Next 2993 0 R /Prev 3003 0 R /A 3014 0 R >> endobj 2993 0 obj << /Title (IN2) /Parent 2991 0 R /Next 2997 0 R /Prev 3015 0 R /A 2992 0 R >> endobj 2997 0 obj << /Title (IN2) /Parent 2991 0 R /Next 3001 0 R /Prev 2993 0 R /A 2996 0 R >> endobj 3001 0 obj << /Title (IN3) /Parent 2991 0 R /Next 3009 0 R /Prev 2997 0 R /A 3000 0 R >> endobj 3009 0 obj << /Title (IN3) /Parent 2991 0 R /Next 2999 0 R /Prev 3001 0 R /A 3008 0 R >> endobj 2999 0 obj << /Title (IN4) /Parent 2991 0 R /Next 3005 0 R /Prev 3009 0 R /A 2998 0 R >> endobj 3005 0 obj << /Title (IN4) /Parent 2991 0 R /Next 3025 0 R /Prev 2999 0 R /A 3004 0 R >> endobj 3025 0 obj << /Title (IN5) /Parent 2991 0 R /Next 3013 0 R /Prev 3005 0 R /A 3024 0 R >> endobj 3013 0 obj << /Title (IN5) /Parent 2991 0 R /Next 3017 0 R /Prev 3025 0 R /A 3012 0 R >> endobj 3017 0 obj << /Title (IN6) /Parent 2991 0 R /Next 3021 0 R /Prev 3013 0 R /A 3016 0 R >> endobj 3021 0 obj << /Title (IN6) /Parent 2991 0 R /Next 3027 0 R /Prev 3017 0 R /A 3020 0 R >> endobj 3027 0 obj << /Title (IN7) /Parent 2991 0 R /Next 3019 0 R /Prev 3021 0 R /A 3026 0 R >> endobj 3019 0 obj << /Title (IN7) /Parent 2991 0 R /Next 3023 0 R /Prev 3027 0 R /A 3018 0 R >> endobj 3023 0 obj << /Title (IN8) /Parent 2991 0 R /Next 3029 0 R /Prev 3019 0 R /A 3022 0 R >> endobj 3029 0 obj << /Title (IN8) /Parent 2991 0 R /Next 3031 0 R /Prev 3023 0 R /A 3028 0 R >> endobj 3031 0 obj << /Title (PINX) /Parent 2991 0 R /Next 3011 0 R /Prev 3029 0 R /A 3030 0 R >> endobj 3011 0 obj << /Title (PINY1) /Parent 2991 0 R /Next 2995 0 R /Prev 3031 0 R /A 3010 0 R >> endobj 2995 0 obj << /Title (PINY1) /Parent 2991 0 R /Prev 3011 0 R /A 2994 0 R >> endobj 2991 0 obj << /Title (Hierarchical Labels) /Parent 2990 0 R /Next 3032 0 R /Count -20 /First 3007 0 R /Last 2995 0 R /A 2989 0 R >> endobj 3038 0 obj << /Title (INIT_L15) /Parent 3032 0 R /Next 3046 0 R /A 3037 0 R >> endobj 3046 0 obj << /Title (INIT_L16) /Parent 3032 0 R /Next 3048 0 R /Prev 3038 0 R /A 3045 0 R >> endobj 3048 0 obj << /Title (INIT_L17) /Parent 3032 0 R /Next 3034 0 R /Prev 3046 0 R /A 3047 0 R >> endobj 3034 0 obj << /Title (L20) /Parent 3032 0 R /Next 3036 0 R /Prev 3048 0 R /A 3033 0 R >> endobj 3036 0 obj << /Title (L23) /Parent 3032 0 R /Next 3042 0 R /Prev 3034 0 R /A 3035 0 R >> endobj 3042 0 obj << /Title (M12) /Parent 3032 0 R /Next 3040 0 R /Prev 3036 0 R /A 3041 0 R >> endobj 3040 0 obj << /Title (M13) /Parent 3032 0 R /Next 3044 0 R /Prev 3042 0 R /A 3039 0 R >> endobj 3044 0 obj << /Title (U6) /Parent 3032 0 R /Next 3050 0 R /Prev 3040 0 R /A 3043 0 R >> endobj 3050 0 obj << /Title (U7) /Parent 3032 0 R /Prev 3044 0 R /A 3049 0 R >> endobj 3032 0 obj << /Title (Symbols) /Parent 2990 0 R /Prev 2991 0 R /Count -9 /First 3038 0 R /Last 3050 0 R /A 3030 0 R >> endobj 2990 0 obj << /Title (C_FUNCTION=4 \(Page 6\)) /Parent 1771 0 R /Next 3106 0 R /Prev 2814 0 R /Count -2 /First 2991 0 R /Last 3032 0 R /A 2989 0 R >> endobj 3111 0 obj << /Title (CINX) /Parent 3107 0 R /Next 3133 0 R /A 3110 0 R >> endobj 3133 0 obj << /Title (CINX) /Parent 3107 0 R /Next 3135 0 R /Prev 3111 0 R /A 3132 0 R >> endobj 3135 0 obj << /Title (CINY1) /Parent 3107 0 R /Next 3131 0 R /Prev 3133 0 R /A 3134 0 R >> endobj 3131 0 obj << /Title (IN1) /Parent 3107 0 R /Next 3127 0 R /Prev 3135 0 R /A 3130 0 R >> endobj 3127 0 obj << /Title (IN2) /Parent 3107 0 R /Next 3115 0 R /Prev 3131 0 R /A 3126 0 R >> endobj 3115 0 obj << /Title (IN3) /Parent 3107 0 R /Next 3113 0 R /Prev 3127 0 R /A 3114 0 R >> endobj 3113 0 obj << /Title (IN4) /Parent 3107 0 R /Next 3119 0 R /Prev 3115 0 R /A 3112 0 R >> endobj 3119 0 obj << /Title (IN5) /Parent 3107 0 R /Next 3123 0 R /Prev 3113 0 R /A 3118 0 R >> endobj 3123 0 obj << /Title (IN6) /Parent 3107 0 R /Next 3121 0 R /Prev 3119 0 R /A 3122 0 R >> endobj 3121 0 obj << /Title (IN7) /Parent 3107 0 R /Next 3117 0 R /Prev 3123 0 R /A 3120 0 R >> endobj 3117 0 obj << /Title (IN8) /Parent 3107 0 R /Next 3125 0 R /Prev 3121 0 R /A 3116 0 R >> endobj 3125 0 obj << /Title (PINX) /Parent 3107 0 R /Next 3109 0 R /Prev 3117 0 R /A 3124 0 R >> endobj 3109 0 obj << /Title (PINY1) /Parent 3107 0 R /Next 3129 0 R /Prev 3125 0 R /A 3108 0 R >> endobj 3129 0 obj << /Title (PINY1) /Parent 3107 0 R /Prev 3109 0 R /A 3128 0 R >> endobj 3107 0 obj << /Title (Hierarchical Labels) /Parent 3106 0 R /Next 3136 0 R /Count -14 /First 3111 0 R /Last 3129 0 R /A 3105 0 R >> endobj 3152 0 obj << /Title (C7) /Parent 3136 0 R /Next 3154 0 R /A 3151 0 R >> endobj 3154 0 obj << /Title (INIT_L10) /Parent 3136 0 R /Next 3142 0 R /Prev 3152 0 R /A 3153 0 R >> endobj 3142 0 obj << /Title (INIT_L11) /Parent 3136 0 R /Next 3150 0 R /Prev 3154 0 R /A 3141 0 R >> endobj 3150 0 obj << /Title (INIT_L18) /Parent 3136 0 R /Next 3146 0 R /Prev 3142 0 R /A 3149 0 R >> endobj 3146 0 obj << /Title (L24) /Parent 3136 0 R /Next 3138 0 R /Prev 3150 0 R /A 3145 0 R >> endobj 3138 0 obj << /Title (L25) /Parent 3136 0 R /Next 3140 0 R /Prev 3146 0 R /A 3137 0 R >> endobj 3140 0 obj << /Title (L26) /Parent 3136 0 R /Next 3148 0 R /Prev 3138 0 R /A 3139 0 R >> endobj 3148 0 obj << /Title (L27) /Parent 3136 0 R /Next 3144 0 R /Prev 3140 0 R /A 3147 0 R >> endobj 3144 0 obj << /Title (U?) /Parent 3136 0 R /Prev 3148 0 R /A 3143 0 R >> endobj 3136 0 obj << /Title (Symbols) /Parent 3106 0 R /Prev 3107 0 R /Count -9 /First 3152 0 R /Last 3144 0 R /A 3134 0 R >> endobj 3106 0 obj << /Title (C_FUNCTION=5 \(Page 7\)) /Parent 1771 0 R /Prev 2990 0 R /Count -2 /First 3107 0 R /Last 3136 0 R /A 3105 0 R >> endobj 1771 0 obj << /Title (CPE11 \(Page 2\)) /Parent 1002 0 R /Next 3268 0 R /Count -7 /First 1772 0 R /Last 3106 0 R /A 1770 0 R >> endobj 3307 0 obj << /Title (D0) /Parent 3269 0 R /Next 3321 0 R /A 3306 0 R >> endobj 3321 0 obj << /Title (D2_1) /Parent 3269 0 R /Next 3281 0 R /Prev 3307 0 R /A 3320 0 R >> endobj 3281 0 obj << /Title (D2_2) /Parent 3269 0 R /Next 3271 0 R /Prev 3321 0 R /A 3280 0 R >> endobj 3271 0 obj << /Title (D2_3) /Parent 3269 0 R /Next 3297 0 R /Prev 3281 0 R /A 3270 0 R >> endobj 3297 0 obj << /Title (D2_4) /Parent 3269 0 R /Next 3317 0 R /Prev 3271 0 R /A 3296 0 R >> endobj 3317 0 obj << /Title (D3_1) /Parent 3269 0 R /Next 3279 0 R /Prev 3297 0 R /A 3316 0 R >> endobj 3279 0 obj << /Title (D3_2) /Parent 3269 0 R /Next 3289 0 R /Prev 3317 0 R /A 3278 0 R >> endobj 3289 0 obj << /Title (D3_3) /Parent 3269 0 R /Next 3301 0 R /Prev 3279 0 R /A 3288 0 R >> endobj 3301 0 obj << /Title (D3_4) /Parent 3269 0 R /Next 3287 0 R /Prev 3289 0 R /A 3300 0 R >> endobj 3287 0 obj << /Title (D4_1) /Parent 3269 0 R /Next 3277 0 R /Prev 3301 0 R /A 3286 0 R >> endobj 3277 0 obj << /Title (D4_2) /Parent 3269 0 R /Next 3295 0 R /Prev 3287 0 R /A 3276 0 R >> endobj 3295 0 obj << /Title (D4_3) /Parent 3269 0 R /Next 3325 0 R /Prev 3277 0 R /A 3294 0 R >> endobj 3325 0 obj << /Title (D4_4) /Parent 3269 0 R /Next 3333 0 R /Prev 3295 0 R /A 3324 0 R >> endobj 3333 0 obj << /Title (D5_1) /Parent 3269 0 R /Next 3283 0 R /Prev 3325 0 R /A 3332 0 R >> endobj 3283 0 obj << /Title (D5_2) /Parent 3269 0 R /Next 3275 0 R /Prev 3333 0 R /A 3282 0 R >> endobj 3275 0 obj << /Title (D5_3) /Parent 3269 0 R /Next 3323 0 R /Prev 3283 0 R /A 3274 0 R >> endobj 3323 0 obj << /Title (D5_4) /Parent 3269 0 R /Next 3335 0 R /Prev 3275 0 R /A 3322 0 R >> endobj 3335 0 obj << /Title (D6_1) /Parent 3269 0 R /Next 3273 0 R /Prev 3323 0 R /A 3334 0 R >> endobj 3273 0 obj << /Title (D6_2) /Parent 3269 0 R /Next 3291 0 R /Prev 3335 0 R /A 3272 0 R >> endobj 3291 0 obj << /Title (D6_3) /Parent 3269 0 R /Next 3305 0 R /Prev 3273 0 R /A 3290 0 R >> endobj 3305 0 obj << /Title (D6_4) /Parent 3269 0 R /Next 3313 0 R /Prev 3291 0 R /A 3304 0 R >> endobj 3313 0 obj << /Title (D7_1) /Parent 3269 0 R /Next 3293 0 R /Prev 3305 0 R /A 3312 0 R >> endobj 3293 0 obj << /Title (D7_2) /Parent 3269 0 R /Next 3285 0 R /Prev 3313 0 R /A 3292 0 R >> endobj 3285 0 obj << /Title (D7_3) /Parent 3269 0 R /Next 3303 0 R /Prev 3293 0 R /A 3284 0 R >> endobj 3303 0 obj << /Title (D7_4) /Parent 3269 0 R /Next 3337 0 R /Prev 3285 0 R /A 3302 0 R >> endobj 3337 0 obj << /Title (X12) /Parent 3269 0 R /Next 3319 0 R /Prev 3303 0 R /A 3336 0 R >> endobj 3319 0 obj << /Title (X14) /Parent 3269 0 R /Next 3331 0 R /Prev 3337 0 R /A 3318 0 R >> endobj 3331 0 obj << /Title (X23) /Parent 3269 0 R /Next 3329 0 R /Prev 3319 0 R /A 3330 0 R >> endobj 3329 0 obj << /Title (X34) /Parent 3269 0 R /Next 3311 0 R /Prev 3331 0 R /A 3328 0 R >> endobj 3311 0 obj << /Title (Y1) /Parent 3269 0 R /Next 3315 0 R /Prev 3329 0 R /A 3310 0 R >> endobj 3315 0 obj << /Title (Y2) /Parent 3269 0 R /Next 3309 0 R /Prev 3311 0 R /A 3314 0 R >> endobj 3309 0 obj << /Title (Y3) /Parent 3269 0 R /Next 3327 0 R /Prev 3315 0 R /A 3308 0 R >> endobj 3327 0 obj << /Title (Y4) /Parent 3269 0 R /Next 3299 0 R /Prev 3309 0 R /A 3326 0 R >> endobj 3299 0 obj << /Title (YDIAG) /Parent 3269 0 R /Prev 3327 0 R /A 3298 0 R >> endobj 3269 0 obj << /Title (Hierarchical Labels) /Parent 3268 0 R /Next 3338 0 R /Count -34 /First 3307 0 R /Last 3299 0 R /A 3267 0 R >> endobj 3342 0 obj << /Title (M?) /Parent 3338 0 R /Next 3344 0 R /A 3341 0 R >> endobj 3344 0 obj << /Title (M?) /Parent 3338 0 R /Next 3354 0 R /Prev 3342 0 R /A 3343 0 R >> endobj 3354 0 obj << /Title (M?) /Parent 3338 0 R /Next 3356 0 R /Prev 3344 0 R /A 3353 0 R >> endobj 3356 0 obj << /Title (M?) /Parent 3338 0 R /Next 3358 0 R /Prev 3354 0 R /A 3355 0 R >> endobj 3358 0 obj << /Title (M?) /Parent 3338 0 R /Next 3340 0 R /Prev 3356 0 R /A 3357 0 R >> endobj 3340 0 obj << /Title (U?) /Parent 3338 0 R /Next 3346 0 R /Prev 3358 0 R /A 3339 0 R >> endobj 3346 0 obj << /Title (U?) /Parent 3338 0 R /Next 3348 0 R /Prev 3340 0 R /A 3345 0 R >> endobj 3348 0 obj << /Title (U?) /Parent 3338 0 R /Next 3350 0 R /Prev 3346 0 R /A 3347 0 R >> endobj 3350 0 obj << /Title (U?) /Parent 3338 0 R /Next 3352 0 R /Prev 3348 0 R /A 3349 0 R >> endobj 3352 0 obj << /Title (U?) /Parent 3338 0 R /Prev 3350 0 R /A 3351 0 R >> endobj 3338 0 obj << /Title (Symbols) /Parent 3268 0 R /Prev 3269 0 R /Count -10 /First 3342 0 R /Last 3352 0 R /A 3336 0 R >> endobj 3268 0 obj << /Title (Big Switch Box \(Page 8\)) /Parent 1002 0 R /Next 3446 0 R /Prev 1771 0 R /Count -2 /First 3269 0 R /Last 3338 0 R /A 3267 0 R >> endobj 3453 0 obj << /Title (D0) /Parent 3447 0 R /Next 3479 0 R /A 3452 0 R >> endobj 3479 0 obj << /Title (D2_1) /Parent 3447 0 R /Next 3475 0 R /Prev 3453 0 R /A 3478 0 R >> endobj 3475 0 obj << /Title (D2_2) /Parent 3447 0 R /Next 3473 0 R /Prev 3479 0 R /A 3474 0 R >> endobj 3473 0 obj << /Title (D2_3) /Parent 3447 0 R /Next 3481 0 R /Prev 3475 0 R /A 3472 0 R >> endobj 3481 0 obj << /Title (D2_4) /Parent 3447 0 R /Next 3455 0 R /Prev 3473 0 R /A 3480 0 R >> endobj 3455 0 obj << /Title (D3_1) /Parent 3447 0 R /Next 3459 0 R /Prev 3481 0 R /A 3454 0 R >> endobj 3459 0 obj << /Title (D3_2) /Parent 3447 0 R /Next 3483 0 R /Prev 3455 0 R /A 3458 0 R >> endobj 3483 0 obj << /Title (D3_3) /Parent 3447 0 R /Next 3477 0 R /Prev 3459 0 R /A 3482 0 R >> endobj 3477 0 obj << /Title (D3_4) /Parent 3447 0 R /Next 3457 0 R /Prev 3483 0 R /A 3476 0 R >> endobj 3457 0 obj << /Title (X12) /Parent 3447 0 R /Next 3451 0 R /Prev 3477 0 R /A 3456 0 R >> endobj 3451 0 obj << /Title (X14) /Parent 3447 0 R /Next 3461 0 R /Prev 3457 0 R /A 3450 0 R >> endobj 3461 0 obj << /Title (X23) /Parent 3447 0 R /Next 3449 0 R /Prev 3451 0 R /A 3460 0 R >> endobj 3449 0 obj << /Title (X34) /Parent 3447 0 R /Next 3471 0 R /Prev 3461 0 R /A 3448 0 R >> endobj 3471 0 obj << /Title (Y1) /Parent 3447 0 R /Next 3469 0 R /Prev 3449 0 R /A 3470 0 R >> endobj 3469 0 obj << /Title (Y2) /Parent 3447 0 R /Next 3467 0 R /Prev 3471 0 R /A 3468 0 R >> endobj 3467 0 obj << /Title (Y3) /Parent 3447 0 R /Next 3463 0 R /Prev 3469 0 R /A 3466 0 R >> endobj 3463 0 obj << /Title (Y4) /Parent 3447 0 R /Next 3465 0 R /Prev 3467 0 R /A 3462 0 R >> endobj 3465 0 obj << /Title (YDIAG) /Parent 3447 0 R /Prev 3463 0 R /A 3464 0 R >> endobj 3447 0 obj << /Title (Hierarchical Labels) /Parent 3446 0 R /Next 3484 0 R /Count -18 /First 3453 0 R /Last 3465 0 R /A 3445 0 R >> endobj 3486 0 obj << /Title (M252) /Parent 3484 0 R /Next 3488 0 R /A 3485 0 R >> endobj 3488 0 obj << /Title (M253) /Parent 3484 0 R /Next 3490 0 R /Prev 3486 0 R /A 3487 0 R >> endobj 3490 0 obj << /Title (M254) /Parent 3484 0 R /Next 3494 0 R /Prev 3488 0 R /A 3489 0 R >> endobj 3494 0 obj << /Title (M255) /Parent 3484 0 R /Next 3492 0 R /Prev 3490 0 R /A 3493 0 R >> endobj 3492 0 obj << /Title (M256) /Parent 3484 0 R /Next 3504 0 R /Prev 3494 0 R /A 3491 0 R >> endobj 3504 0 obj << /Title (U649) /Parent 3484 0 R /Next 3496 0 R /Prev 3492 0 R /A 3503 0 R >> endobj 3496 0 obj << /Title (U650) /Parent 3484 0 R /Next 3498 0 R /Prev 3504 0 R /A 3495 0 R >> endobj 3498 0 obj << /Title (U651) /Parent 3484 0 R /Next 3500 0 R /Prev 3496 0 R /A 3497 0 R >> endobj 3500 0 obj << /Title (U652) /Parent 3484 0 R /Next 3502 0 R /Prev 3498 0 R /A 3499 0 R >> endobj 3502 0 obj << /Title (U653) /Parent 3484 0 R /Prev 3500 0 R /A 3501 0 R >> endobj 3484 0 obj << /Title (Symbols) /Parent 3446 0 R /Prev 3447 0 R /Count -10 /First 3486 0 R /Last 3502 0 R /A 3482 0 R >> endobj 3446 0 obj << /Title (Small Switch Box \(Page 9\)) /Parent 1002 0 R /Next 3756 0 R /Prev 3268 0 R /Count -2 /First 3447 0 R /Last 3484 0 R /A 3445 0 R >> endobj 3821 0 obj << /Title (CPE.CLK) /Parent 3757 0 R /Next 3775 0 R /A 3820 0 R >> endobj 3775 0 obj << /Title (CPE.EN) /Parent 3757 0 R /Next 3843 0 R /Prev 3821 0 R /A 3774 0 R >> endobj 3843 0 obj << /Title (CPE.IN1) /Parent 3757 0 R /Next 3861 0 R /Prev 3775 0 R /A 3842 0 R >> endobj 3861 0 obj << /Title (CPE.IN2) /Parent 3757 0 R /Next 3773 0 R /Prev 3843 0 R /A 3860 0 R >> endobj 3773 0 obj << /Title (CPE.IN3) /Parent 3757 0 R /Next 3899 0 R /Prev 3861 0 R /A 3772 0 R >> endobj 3899 0 obj << /Title (CPE.IN4) /Parent 3757 0 R /Next 3819 0 R /Prev 3773 0 R /A 3898 0 R >> endobj 3819 0 obj << /Title (CPE.IN5) /Parent 3757 0 R /Next 3795 0 R /Prev 3899 0 R /A 3818 0 R >> endobj 3795 0 obj << /Title (CPE.IN6) /Parent 3757 0 R /Next 3799 0 R /Prev 3819 0 R /A 3794 0 R >> endobj 3799 0 obj << /Title (CPE.IN7) /Parent 3757 0 R /Next 3895 0 R /Prev 3795 0 R /A 3798 0 R >> endobj 3895 0 obj << /Title (CPE.IN8) /Parent 3757 0 R /Next 3801 0 R /Prev 3799 0 R /A 3894 0 R >> endobj 3801 0 obj << /Title (CPE.SR) /Parent 3757 0 R /Next 3777 0 R /Prev 3895 0 R /A 3800 0 R >> endobj 3777 0 obj << /Title (P01.D0) /Parent 3757 0 R /Next 3779 0 R /Prev 3801 0 R /A 3776 0 R >> endobj 3779 0 obj << /Title (P01.D1) /Parent 3757 0 R /Next 3871 0 R /Prev 3777 0 R /A 3778 0 R >> endobj 3871 0 obj << /Title (P01.D2) /Parent 3757 0 R /Next 3873 0 R /Prev 3779 0 R /A 3870 0 R >> endobj 3873 0 obj << /Title (P01.D3) /Parent 3757 0 R /Next 3781 0 R /Prev 3871 0 R /A 3872 0 R >> endobj 3781 0 obj << /Title (P01.D4) /Parent 3757 0 R /Next 3793 0 R /Prev 3873 0 R /A 3780 0 R >> endobj 3793 0 obj << /Title (P01.D5) /Parent 3757 0 R /Next 3817 0 R /Prev 3781 0 R /A 3792 0 R >> endobj 3817 0 obj << /Title (P02.D0) /Parent 3757 0 R /Next 3797 0 R /Prev 3793 0 R /A 3816 0 R >> endobj 3797 0 obj << /Title (P02.D1) /Parent 3757 0 R /Next 3855 0 R /Prev 3817 0 R /A 3796 0 R >> endobj 3855 0 obj << /Title (P02.D2) /Parent 3757 0 R /Next 3803 0 R /Prev 3797 0 R /A 3854 0 R >> endobj 3803 0 obj << /Title (P02.D3) /Parent 3757 0 R /Next 3857 0 R /Prev 3855 0 R /A 3802 0 R >> endobj 3857 0 obj << /Title (P02.D4) /Parent 3757 0 R /Next 3815 0 R /Prev 3803 0 R /A 3856 0 R >> endobj 3815 0 obj << /Title (P02.D5) /Parent 3757 0 R /Next 3783 0 R /Prev 3857 0 R /A 3814 0 R >> endobj 3783 0 obj << /Title (P03.D0) /Parent 3757 0 R /Next 3877 0 R /Prev 3815 0 R /A 3782 0 R >> endobj 3877 0 obj << /Title (P03.D1) /Parent 3757 0 R /Next 3903 0 R /Prev 3783 0 R /A 3876 0 R >> endobj 3903 0 obj << /Title (P03.D2) /Parent 3757 0 R /Next 3881 0 R /Prev 3877 0 R /A 3902 0 R >> endobj 3881 0 obj << /Title (P03.D3) /Parent 3757 0 R /Next 3913 0 R /Prev 3903 0 R /A 3880 0 R >> endobj 3913 0 obj << /Title (P03.D4) /Parent 3757 0 R /Next 3915 0 R /Prev 3881 0 R /A 3912 0 R >> endobj 3915 0 obj << /Title (P03.D5) /Parent 3757 0 R /Next 3901 0 R /Prev 3913 0 R /A 3914 0 R >> endobj 3901 0 obj << /Title (P04.D0) /Parent 3757 0 R /Next 3905 0 R /Prev 3915 0 R /A 3900 0 R >> endobj 3905 0 obj << /Title (P04.D1) /Parent 3757 0 R /Next 3919 0 R /Prev 3901 0 R /A 3904 0 R >> endobj 3919 0 obj << /Title (P04.D2) /Parent 3757 0 R /Next 3921 0 R /Prev 3905 0 R /A 3918 0 R >> endobj 3921 0 obj << /Title (P04.D3) /Parent 3757 0 R /Next 3923 0 R /Prev 3919 0 R /A 3920 0 R >> endobj 3923 0 obj << /Title (P04.D4) /Parent 3757 0 R /Next 3909 0 R /Prev 3921 0 R /A 3922 0 R >> endobj 3909 0 obj << /Title (P04.D5) /Parent 3757 0 R /Next 3835 0 R /Prev 3923 0 R /A 3908 0 R >> endobj 3835 0 obj << /Title (P05.D0) /Parent 3757 0 R /Next 3827 0 R /Prev 3909 0 R /A 3834 0 R >> endobj 3827 0 obj << /Title (P05.D1) /Parent 3757 0 R /Next 3831 0 R /Prev 3835 0 R /A 3826 0 R >> endobj 3831 0 obj << /Title (P05.D2) /Parent 3757 0 R /Next 3833 0 R /Prev 3827 0 R /A 3830 0 R >> endobj 3833 0 obj << /Title (P05.D3) /Parent 3757 0 R /Next 3825 0 R /Prev 3831 0 R /A 3832 0 R >> endobj 3825 0 obj << /Title (P05.D4) /Parent 3757 0 R /Next 3829 0 R /Prev 3833 0 R /A 3824 0 R >> endobj 3829 0 obj << /Title (P05.D5) /Parent 3757 0 R /Next 3879 0 R /Prev 3825 0 R /A 3828 0 R >> endobj 3879 0 obj << /Title (P06.D0) /Parent 3757 0 R /Next 3847 0 R /Prev 3829 0 R /A 3878 0 R >> endobj 3847 0 obj << /Title (P06.D1) /Parent 3757 0 R /Next 3851 0 R /Prev 3879 0 R /A 3846 0 R >> endobj 3851 0 obj << /Title (P06.D2) /Parent 3757 0 R /Next 3809 0 R /Prev 3847 0 R /A 3850 0 R >> endobj 3809 0 obj << /Title (P06.D3) /Parent 3757 0 R /Next 3785 0 R /Prev 3851 0 R /A 3808 0 R >> endobj 3785 0 obj << /Title (P06.D4) /Parent 3757 0 R /Next 3849 0 R /Prev 3809 0 R /A 3784 0 R >> endobj 3849 0 obj << /Title (P06.D5) /Parent 3757 0 R /Next 3811 0 R /Prev 3785 0 R /A 3848 0 R >> endobj 3811 0 obj << /Title (P07.D0) /Parent 3757 0 R /Next 3805 0 R /Prev 3849 0 R /A 3810 0 R >> endobj 3805 0 obj << /Title (P07.D1) /Parent 3757 0 R /Next 3813 0 R /Prev 3811 0 R /A 3804 0 R >> endobj 3813 0 obj << /Title (P07.D2) /Parent 3757 0 R /Next 3807 0 R /Prev 3805 0 R /A 3812 0 R >> endobj 3807 0 obj << /Title (P07.D3) /Parent 3757 0 R /Next 3883 0 R /Prev 3813 0 R /A 3806 0 R >> endobj 3883 0 obj << /Title (P07.D4) /Parent 3757 0 R /Next 3885 0 R /Prev 3807 0 R /A 3882 0 R >> endobj 3885 0 obj << /Title (P07.D5) /Parent 3757 0 R /Next 3787 0 R /Prev 3883 0 R /A 3884 0 R >> endobj 3787 0 obj << /Title (P08.D0) /Parent 3757 0 R /Next 3791 0 R /Prev 3885 0 R /A 3786 0 R >> endobj 3791 0 obj << /Title (P08.D1) /Parent 3757 0 R /Next 3911 0 R /Prev 3787 0 R /A 3790 0 R >> endobj 3911 0 obj << /Title (P08.D2) /Parent 3757 0 R /Next 3897 0 R /Prev 3791 0 R /A 3910 0 R >> endobj 3897 0 obj << /Title (P08.D3) /Parent 3757 0 R /Next 3761 0 R /Prev 3911 0 R /A 3896 0 R >> endobj 3761 0 obj << /Title (P08.D4) /Parent 3757 0 R /Next 3789 0 R /Prev 3897 0 R /A 3760 0 R >> endobj 3789 0 obj << /Title (P08.D5) /Parent 3757 0 R /Next 3865 0 R /Prev 3761 0 R /A 3788 0 R >> endobj 3865 0 obj << /Title (P09.D0) /Parent 3757 0 R /Next 3869 0 R /Prev 3789 0 R /A 3864 0 R >> endobj 3869 0 obj << /Title (P09.D1) /Parent 3757 0 R /Next 3863 0 R /Prev 3865 0 R /A 3868 0 R >> endobj 3863 0 obj << /Title (P09.D2) /Parent 3757 0 R /Next 3867 0 R /Prev 3869 0 R /A 3862 0 R >> endobj 3867 0 obj << /Title (P09.D3) /Parent 3757 0 R /Next 3875 0 R /Prev 3863 0 R /A 3866 0 R >> endobj 3875 0 obj << /Title (P09.D4) /Parent 3757 0 R /Next 3853 0 R /Prev 3867 0 R /A 3874 0 R >> endobj 3853 0 obj << /Title (P09.D5) /Parent 3757 0 R /Next 3839 0 R /Prev 3875 0 R /A 3852 0 R >> endobj 3839 0 obj << /Title (P10.D0) /Parent 3757 0 R /Next 3823 0 R /Prev 3853 0 R /A 3838 0 R >> endobj 3823 0 obj << /Title (P10.D1) /Parent 3757 0 R /Next 3841 0 R /Prev 3839 0 R /A 3822 0 R >> endobj 3841 0 obj << /Title (P10.D2) /Parent 3757 0 R /Next 3837 0 R /Prev 3823 0 R /A 3840 0 R >> endobj 3837 0 obj << /Title (P10.D3) /Parent 3757 0 R /Next 3859 0 R /Prev 3841 0 R /A 3836 0 R >> endobj 3859 0 obj << /Title (P10.D4) /Parent 3757 0 R /Next 3845 0 R /Prev 3837 0 R /A 3858 0 R >> endobj 3845 0 obj << /Title (P10.D5) /Parent 3757 0 R /Next 3887 0 R /Prev 3859 0 R /A 3844 0 R >> endobj 3887 0 obj << /Title (P11.D0) /Parent 3757 0 R /Next 3907 0 R /Prev 3845 0 R /A 3886 0 R >> endobj 3907 0 obj << /Title (P11.D1) /Parent 3757 0 R /Next 3917 0 R /Prev 3887 0 R /A 3906 0 R >> endobj 3917 0 obj << /Title (P11.D2) /Parent 3757 0 R /Next 3889 0 R /Prev 3907 0 R /A 3916 0 R >> endobj 3889 0 obj << /Title (P11.D3) /Parent 3757 0 R /Next 3891 0 R /Prev 3917 0 R /A 3888 0 R >> endobj 3891 0 obj << /Title (P11.D4) /Parent 3757 0 R /Next 3893 0 R /Prev 3889 0 R /A 3890 0 R >> endobj 3893 0 obj << /Title (P11.D5) /Parent 3757 0 R /Next 3769 0 R /Prev 3891 0 R /A 3892 0 R >> endobj 3769 0 obj << /Title (P12.D0) /Parent 3757 0 R /Next 3771 0 R /Prev 3893 0 R /A 3768 0 R >> endobj 3771 0 obj << /Title (P12.D1) /Parent 3757 0 R /Next 3765 0 R /Prev 3769 0 R /A 3770 0 R >> endobj 3765 0 obj << /Title (P12.D2) /Parent 3757 0 R /Next 3767 0 R /Prev 3771 0 R /A 3764 0 R >> endobj 3767 0 obj << /Title (P12.D3) /Parent 3757 0 R /Next 3759 0 R /Prev 3765 0 R /A 3766 0 R >> endobj 3759 0 obj << /Title (P12.D4) /Parent 3757 0 R /Next 3763 0 R /Prev 3767 0 R /A 3758 0 R >> endobj 3763 0 obj << /Title (P12.D5) /Parent 3757 0 R /Prev 3759 0 R /A 3762 0 R >> endobj 3757 0 obj << /Title (Hierarchical Labels) /Parent 3756 0 R /Next 3924 0 R /Count -83 /First 3821 0 R /Last 3763 0 R /A 3755 0 R >> endobj 3950 0 obj << /Title (M?) /Parent 3924 0 R /Next 3972 0 R /A 3949 0 R >> endobj 3972 0 obj << /Title (M?) /Parent 3924 0 R /Next 3970 0 R /Prev 3950 0 R /A 3971 0 R >> endobj 3970 0 obj << /Title (M?) /Parent 3924 0 R /Next 3966 0 R /Prev 3972 0 R /A 3969 0 R >> endobj 3966 0 obj << /Title (M?) /Parent 3924 0 R /Next 3964 0 R /Prev 3970 0 R /A 3965 0 R >> endobj 3964 0 obj << /Title (M?) /Parent 3924 0 R /Next 3958 0 R /Prev 3966 0 R /A 3963 0 R >> endobj 3958 0 obj << /Title (M?) /Parent 3924 0 R /Next 3956 0 R /Prev 3964 0 R /A 3957 0 R >> endobj 3956 0 obj << /Title (M?) /Parent 3924 0 R /Next 3926 0 R /Prev 3958 0 R /A 3955 0 R >> endobj 3926 0 obj << /Title (M?) /Parent 3924 0 R /Next 3946 0 R /Prev 3956 0 R /A 3925 0 R >> endobj 3946 0 obj << /Title (M?) /Parent 3924 0 R /Next 3940 0 R /Prev 3926 0 R /A 3945 0 R >> endobj 3940 0 obj << /Title (M?) /Parent 3924 0 R /Next 3934 0 R /Prev 3946 0 R /A 3939 0 R >> endobj 3934 0 obj << /Title (M?) /Parent 3924 0 R /Next 3930 0 R /Prev 3940 0 R /A 3933 0 R >> endobj 3930 0 obj << /Title (M?) /Parent 3924 0 R /Next 3944 0 R /Prev 3934 0 R /A 3929 0 R >> endobj 3944 0 obj << /Title (U?) /Parent 3924 0 R /Next 3942 0 R /Prev 3930 0 R /A 3943 0 R >> endobj 3942 0 obj << /Title (U?) /Parent 3924 0 R /Next 3948 0 R /Prev 3944 0 R /A 3941 0 R >> endobj 3948 0 obj << /Title (U?) /Parent 3924 0 R /Next 3952 0 R /Prev 3942 0 R /A 3947 0 R >> endobj 3952 0 obj << /Title (U?) /Parent 3924 0 R /Next 3954 0 R /Prev 3948 0 R /A 3951 0 R >> endobj 3954 0 obj << /Title (U?) /Parent 3924 0 R /Next 3938 0 R /Prev 3952 0 R /A 3953 0 R >> endobj 3938 0 obj << /Title (U?) /Parent 3924 0 R /Next 3936 0 R /Prev 3954 0 R /A 3937 0 R >> endobj 3936 0 obj << /Title (U?) /Parent 3924 0 R /Next 3960 0 R /Prev 3938 0 R /A 3935 0 R >> endobj 3960 0 obj << /Title (U?) /Parent 3924 0 R /Next 3962 0 R /Prev 3936 0 R /A 3959 0 R >> endobj 3962 0 obj << /Title (U?) /Parent 3924 0 R /Next 3932 0 R /Prev 3960 0 R /A 3961 0 R >> endobj 3932 0 obj << /Title (U?) /Parent 3924 0 R /Next 3968 0 R /Prev 3962 0 R /A 3931 0 R >> endobj 3968 0 obj << /Title (U?) /Parent 3924 0 R /Next 3928 0 R /Prev 3932 0 R /A 3967 0 R >> endobj 3928 0 obj << /Title (U?) /Parent 3924 0 R /Prev 3968 0 R /A 3927 0 R >> endobj 3924 0 obj << /Title (Symbols) /Parent 3756 0 R /Prev 3757 0 R /Count -24 /First 3950 0 R /Last 3928 0 R /A 3922 0 R >> endobj 3756 0 obj << /Title (Input Multiplexer \(Page 10\)) /Parent 1002 0 R /Next 4058 0 R /Prev 3446 0 R /Count -2 /First 3757 0 R /Last 3924 0 R /A 3755 0 R >> endobj 4099 0 obj << /Title (CPE11.OUT1) /Parent 4059 0 R /Next 4089 0 R /A 4098 0 R >> endobj 4089 0 obj << /Title (CPE11.OUT2) /Parent 4059 0 R /Next 4095 0 R /Prev 4099 0 R /A 4088 0 R >> endobj 4095 0 obj << /Title (CPE12.OUT1) /Parent 4059 0 R /Next 4091 0 R /Prev 4089 0 R /A 4094 0 R >> endobj 4091 0 obj << /Title (CPE12.OUT2) /Parent 4059 0 R /Next 4085 0 R /Prev 4095 0 R /A 4090 0 R >> endobj 4085 0 obj << /Title (CPE21.OUT1) /Parent 4059 0 R /Next 4097 0 R /Prev 4091 0 R /A 4084 0 R >> endobj 4097 0 obj << /Title (CPE21.OUT2) /Parent 4059 0 R /Next 4087 0 R /Prev 4085 0 R /A 4096 0 R >> endobj 4087 0 obj << /Title (CPE22.OUT1) /Parent 4059 0 R /Next 4093 0 R /Prev 4097 0 R /A 4086 0 R >> endobj 4093 0 obj << /Title (CPE22.OUT2) /Parent 4059 0 R /Next 4071 0 R /Prev 4087 0 R /A 4092 0 R >> endobj 4071 0 obj << /Title (SB.P01.D0) /Parent 4059 0 R /Next 4081 0 R /Prev 4093 0 R /A 4070 0 R >> endobj 4081 0 obj << /Title (SB.P02.D0) /Parent 4059 0 R /Next 4079 0 R /Prev 4071 0 R /A 4080 0 R >> endobj 4079 0 obj << /Title (SB.P03.D0) /Parent 4059 0 R /Next 4069 0 R /Prev 4081 0 R /A 4078 0 R >> endobj 4069 0 obj << /Title (SB.P04.D0) /Parent 4059 0 R /Next 4077 0 R /Prev 4079 0 R /A 4068 0 R >> endobj 4077 0 obj << /Title (SB.P05.D0) /Parent 4059 0 R /Next 4065 0 R /Prev 4069 0 R /A 4076 0 R >> endobj 4065 0 obj << /Title (SB.P06.D0) /Parent 4059 0 R /Next 4063 0 R /Prev 4077 0 R /A 4064 0 R >> endobj 4063 0 obj << /Title (SB.P07.D0) /Parent 4059 0 R /Next 4075 0 R /Prev 4065 0 R /A 4062 0 R >> endobj 4075 0 obj << /Title (SB.P08.D0) /Parent 4059 0 R /Next 4067 0 R /Prev 4063 0 R /A 4074 0 R >> endobj 4067 0 obj << /Title (SB.P09.D0) /Parent 4059 0 R /Next 4083 0 R /Prev 4075 0 R /A 4066 0 R >> endobj 4083 0 obj << /Title (SB.P10.D0) /Parent 4059 0 R /Next 4061 0 R /Prev 4067 0 R /A 4082 0 R >> endobj 4061 0 obj << /Title (SB.P11.D0) /Parent 4059 0 R /Next 4073 0 R /Prev 4083 0 R /A 4060 0 R >> endobj 4073 0 obj << /Title (SB.P12.D0) /Parent 4059 0 R /Prev 4061 0 R /A 4072 0 R >> endobj 4059 0 obj << /Title (Hierarchical Labels) /Parent 4058 0 R /Next 4100 0 R /Count -20 /First 4099 0 R /Last 4073 0 R /A 4057 0 R >> endobj 4112 0 obj << /Title (M11) /Parent 4100 0 R /Next 4116 0 R /A 4111 0 R >> endobj 4116 0 obj << /Title (M12) /Parent 4100 0 R /Next 4108 0 R /Prev 4112 0 R /A 4115 0 R >> endobj 4108 0 obj << /Title (M13) /Parent 4100 0 R /Next 4102 0 R /Prev 4116 0 R /A 4107 0 R >> endobj 4102 0 obj << /Title (M14) /Parent 4100 0 R /Next 4110 0 R /Prev 4108 0 R /A 4101 0 R >> endobj 4110 0 obj << /Title (U11) /Parent 4100 0 R /Next 4114 0 R /Prev 4102 0 R /A 4109 0 R >> endobj 4114 0 obj << /Title (U12) /Parent 4100 0 R /Next 4104 0 R /Prev 4110 0 R /A 4113 0 R >> endobj 4104 0 obj << /Title (U13) /Parent 4100 0 R /Next 4106 0 R /Prev 4114 0 R /A 4103 0 R >> endobj 4106 0 obj << /Title (U14) /Parent 4100 0 R /Prev 4104 0 R /A 4105 0 R >> endobj 4100 0 obj << /Title (Symbols) /Parent 4058 0 R /Prev 4059 0 R /Count -8 /First 4112 0 R /Last 4106 0 R /A 4098 0 R >> endobj 4058 0 obj << /Title (Output Multiplexer \(1,1\) \(Page 11\)) /Parent 1002 0 R /Next 4202 0 R /Prev 3756 0 R /Count -2 /First 4059 0 R /Last 4100 0 R /A 4057 0 R >> endobj 4231 0 obj << /Title (CPE11.OUT1) /Parent 4203 0 R /Next 4241 0 R /A 4230 0 R >> endobj 4241 0 obj << /Title (CPE11.OUT2) /Parent 4203 0 R /Next 4235 0 R /Prev 4231 0 R /A 4240 0 R >> endobj 4235 0 obj << /Title (CPE12.OUT1) /Parent 4203 0 R /Next 4243 0 R /Prev 4241 0 R /A 4234 0 R >> endobj 4243 0 obj << /Title (CPE12.OUT2) /Parent 4203 0 R /Next 4237 0 R /Prev 4235 0 R /A 4242 0 R >> endobj 4237 0 obj << /Title (CPE21.OUT1) /Parent 4203 0 R /Next 4219 0 R /Prev 4243 0 R /A 4236 0 R >> endobj 4219 0 obj << /Title (CPE21.OUT2) /Parent 4203 0 R /Next 4239 0 R /Prev 4237 0 R /A 4218 0 R >> endobj 4239 0 obj << /Title (CPE22.OUT1) /Parent 4203 0 R /Next 4233 0 R /Prev 4219 0 R /A 4238 0 R >> endobj 4233 0 obj << /Title (CPE22.OUT2) /Parent 4203 0 R /Next 4205 0 R /Prev 4239 0 R /A 4232 0 R >> endobj 4205 0 obj << /Title (SB.P01.D0) /Parent 4203 0 R /Next 4221 0 R /Prev 4233 0 R /A 4204 0 R >> endobj 4221 0 obj << /Title (SB.P02.D0) /Parent 4203 0 R /Next 4223 0 R /Prev 4205 0 R /A 4220 0 R >> endobj 4223 0 obj << /Title (SB.P03.D0) /Parent 4203 0 R /Next 4215 0 R /Prev 4221 0 R /A 4222 0 R >> endobj 4215 0 obj << /Title (SB.P04.D0) /Parent 4203 0 R /Next 4227 0 R /Prev 4223 0 R /A 4214 0 R >> endobj 4227 0 obj << /Title (SB.P05.D0) /Parent 4203 0 R /Next 4217 0 R /Prev 4215 0 R /A 4226 0 R >> endobj 4217 0 obj << /Title (SB.P06.D0) /Parent 4203 0 R /Next 4211 0 R /Prev 4227 0 R /A 4216 0 R >> endobj 4211 0 obj << /Title (SB.P07.D0) /Parent 4203 0 R /Next 4229 0 R /Prev 4217 0 R /A 4210 0 R >> endobj 4229 0 obj << /Title (SB.P08.D0) /Parent 4203 0 R /Next 4209 0 R /Prev 4211 0 R /A 4228 0 R >> endobj 4209 0 obj << /Title (SB.P09.D0) /Parent 4203 0 R /Next 4225 0 R /Prev 4229 0 R /A 4208 0 R >> endobj 4225 0 obj << /Title (SB.P10.D0) /Parent 4203 0 R /Next 4207 0 R /Prev 4209 0 R /A 4224 0 R >> endobj 4207 0 obj << /Title (SB.P11.D0) /Parent 4203 0 R /Next 4213 0 R /Prev 4225 0 R /A 4206 0 R >> endobj 4213 0 obj << /Title (SB.P12.D0) /Parent 4203 0 R /Prev 4207 0 R /A 4212 0 R >> endobj 4203 0 obj << /Title (Hierarchical Labels) /Parent 4202 0 R /Next 4244 0 R /Count -20 /First 4231 0 R /Last 4213 0 R /A 4201 0 R >> endobj 4246 0 obj << /Title (M810) /Parent 4244 0 R /Next 4250 0 R /A 4245 0 R >> endobj 4250 0 obj << /Title (M811) /Parent 4244 0 R /Next 4258 0 R /Prev 4246 0 R /A 4249 0 R >> endobj 4258 0 obj << /Title (M812) /Parent 4244 0 R /Next 4254 0 R /Prev 4250 0 R /A 4257 0 R >> endobj 4254 0 obj << /Title (M813) /Parent 4244 0 R /Next 4248 0 R /Prev 4258 0 R /A 4253 0 R >> endobj 4248 0 obj << /Title (U2105) /Parent 4244 0 R /Next 4260 0 R /Prev 4254 0 R /A 4247 0 R >> endobj 4260 0 obj << /Title (U2106) /Parent 4244 0 R /Next 4256 0 R /Prev 4248 0 R /A 4259 0 R >> endobj 4256 0 obj << /Title (U2107) /Parent 4244 0 R /Next 4252 0 R /Prev 4260 0 R /A 4255 0 R >> endobj 4252 0 obj << /Title (U2108) /Parent 4244 0 R /Prev 4256 0 R /A 4251 0 R >> endobj 4244 0 obj << /Title (Symbols) /Parent 4202 0 R /Prev 4203 0 R /Count -8 /First 4246 0 R /Last 4252 0 R /A 4242 0 R >> endobj 4202 0 obj << /Title (Output Multiplexer \(2,2\) \(Page 12\)) /Parent 1002 0 R /Prev 4058 0 R /Count -2 /First 4203 0 R /Last 4244 0 R /A 4201 0 R >> endobj 1002 0 obj << /Title (Page 1) /Parent 4266 0 R /Count -6 /First 1771 0 R /Last 4202 0 R /A 1001 0 R >> endobj 4266 0 obj << /Type /Outlines /Count 665 /First 1002 0 R /Last 1002 0 R >> endobj 4267 0 obj << /Type /Catalog /Pages 1 0 R /Version /1.5 /PageMode /UseOutlines /Outlines 4266 0 R /Names 4 0 R /PageLayout /SinglePage >> endobj xref 0 4268 0000000000 65535 f 0001865405 00000 n 0001288419 00000 n 0001288540 00000 n 0001864726 00000 n 0000000015 00000 n 0000364673 00000 n 0001288561 00000 n 0001288698 00000 n 0001288836 00000 n 0001288974 00000 n 0001289113 00000 n 0001289251 00000 n 0001289389 00000 n 0001289527 00000 n 0001289666 00000 n 0001289805 00000 n 0001289944 00000 n 0001290083 00000 n 0001290221 00000 n 0001290359 00000 n 0001290498 00000 n 0001290637 00000 n 0001290776 00000 n 0001290906 00000 n 0001291036 00000 n 0001291166 00000 n 0001291304 00000 n 0001291443 00000 n 0001291582 00000 n 0001291721 00000 n 0001291860 00000 n 0001291999 00000 n 0001292129 00000 n 0001292268 00000 n 0001292407 00000 n 0001292546 00000 n 0001292684 00000 n 0001292822 00000 n 0001292961 00000 n 0001293100 00000 n 0001293239 00000 n 0001293377 00000 n 0001293515 00000 n 0001293653 00000 n 0001293792 00000 n 0001293930 00000 n 0001294068 00000 n 0001294206 00000 n 0001294336 00000 n 0001294474 00000 n 0001294604 00000 n 0001294742 00000 n 0001294880 00000 n 0001295019 00000 n 0001295158 00000 n 0001295296 00000 n 0001295435 00000 n 0001295574 00000 n 0001295713 00000 n 0001295852 00000 n 0001295991 00000 n 0001296130 00000 n 0001296269 00000 n 0001296408 00000 n 0001296547 00000 n 0001296686 00000 n 0001296824 00000 n 0001296962 00000 n 0001297100 00000 n 0001297239 00000 n 0001297377 00000 n 0001297515 00000 n 0001297653 00000 n 0001297791 00000 n 0001297929 00000 n 0001298067 00000 n 0001298205 00000 n 0001298344 00000 n 0001298482 00000 n 0001298620 00000 n 0001298758 00000 n 0001298896 00000 n 0001299034 00000 n 0001299172 00000 n 0001299310 00000 n 0001299448 00000 n 0001299586 00000 n 0001299724 00000 n 0001299862 00000 n 0001300000 00000 n 0001300138 00000 n 0001300276 00000 n 0001300414 00000 n 0001300552 00000 n 0001300690 00000 n 0001300828 00000 n 0001300967 00000 n 0001301106 00000 n 0001301244 00000 n 0001301383 00000 n 0001301522 00000 n 0001301662 00000 n 0001301801 00000 n 0001301941 00000 n 0001302080 00000 n 0001302220 00000 n 0001302359 00000 n 0001302499 00000 n 0001302638 00000 n 0001302778 00000 n 0001302917 00000 n 0001303057 00000 n 0001303196 00000 n 0001303336 00000 n 0001303475 00000 n 0001303615 00000 n 0001303754 00000 n 0001303894 00000 n 0001304033 00000 n 0001304173 00000 n 0001304312 00000 n 0001304452 00000 n 0001304592 00000 n 0001304732 00000 n 0001304871 00000 n 0001305011 00000 n 0001305150 00000 n 0001305290 00000 n 0001305429 00000 n 0001305569 00000 n 0001305709 00000 n 0001305849 00000 n 0001305989 00000 n 0001306128 00000 n 0001306267 00000 n 0001306406 00000 n 0001306545 00000 n 0001306684 00000 n 0001306823 00000 n 0001306962 00000 n 0001307101 00000 n 0001307240 00000 n 0001307379 00000 n 0001307518 00000 n 0001307657 00000 n 0001307796 00000 n 0001307935 00000 n 0001308074 00000 n 0001308213 00000 n 0001308352 00000 n 0001308491 00000 n 0001308631 00000 n 0001308769 00000 n 0001308907 00000 n 0001309045 00000 n 0001309183 00000 n 0001309321 00000 n 0001309459 00000 n 0001309597 00000 n 0001309735 00000 n 0001309873 00000 n 0001310013 00000 n 0001310152 00000 n 0001310291 00000 n 0001310430 00000 n 0001310570 00000 n 0001310709 00000 n 0001310848 00000 n 0001310987 00000 n 0001311126 00000 n 0001311266 00000 n 0001311406 00000 n 0001311546 00000 n 0001311685 00000 n 0001311825 00000 n 0001311965 00000 n 0001312105 00000 n 0001312245 00000 n 0001312385 00000 n 0001312525 00000 n 0001312665 00000 n 0001312805 00000 n 0001312944 00000 n 0001313083 00000 n 0001313222 00000 n 0001313362 00000 n 0001313501 00000 n 0001313640 00000 n 0001313779 00000 n 0001313918 00000 n 0001314057 00000 n 0001314196 00000 n 0001314335 00000 n 0001314475 00000 n 0001314614 00000 n 0001314753 00000 n 0001314893 00000 n 0001315032 00000 n 0001315172 00000 n 0001315311 00000 n 0001315451 00000 n 0001315590 00000 n 0001315730 00000 n 0001315869 00000 n 0001316009 00000 n 0001316148 00000 n 0001316288 00000 n 0001316427 00000 n 0001316567 00000 n 0001316706 00000 n 0001316846 00000 n 0001316985 00000 n 0001317125 00000 n 0001317264 00000 n 0001317404 00000 n 0001317543 00000 n 0001317683 00000 n 0001317822 00000 n 0001317962 00000 n 0001318101 00000 n 0001318240 00000 n 0001318379 00000 n 0001318519 00000 n 0001318658 00000 n 0001318798 00000 n 0001318937 00000 n 0001319068 00000 n 0001319200 00000 n 0001319332 00000 n 0001319464 00000 n 0001319596 00000 n 0001319728 00000 n 0001319860 00000 n 0001319992 00000 n 0001320124 00000 n 0001320256 00000 n 0001320388 00000 n 0001320520 00000 n 0001320652 00000 n 0001320784 00000 n 0001320916 00000 n 0001321048 00000 n 0001321180 00000 n 0001321312 00000 n 0001321444 00000 n 0001321576 00000 n 0001321708 00000 n 0001321840 00000 n 0001321972 00000 n 0001322104 00000 n 0001322236 00000 n 0001322368 00000 n 0001322500 00000 n 0001322632 00000 n 0001322764 00000 n 0001322896 00000 n 0001323028 00000 n 0001323160 00000 n 0001323292 00000 n 0001323423 00000 n 0001323555 00000 n 0001323687 00000 n 0001323819 00000 n 0001323951 00000 n 0001324083 00000 n 0001324215 00000 n 0001324347 00000 n 0001324478 00000 n 0001324610 00000 n 0001324742 00000 n 0001324874 00000 n 0001325013 00000 n 0001325153 00000 n 0001325293 00000 n 0001325433 00000 n 0001325573 00000 n 0001325713 00000 n 0001325853 00000 n 0001325993 00000 n 0001326133 00000 n 0001326272 00000 n 0001326411 00000 n 0001326550 00000 n 0001326689 00000 n 0001326828 00000 n 0001326967 00000 n 0001327106 00000 n 0001327246 00000 n 0001327385 00000 n 0001327524 00000 n 0001327663 00000 n 0001327803 00000 n 0001327942 00000 n 0001328081 00000 n 0001328220 00000 n 0001328360 00000 n 0001328499 00000 n 0001328638 00000 n 0001328777 00000 n 0001328916 00000 n 0001329055 00000 n 0001329194 00000 n 0001329333 00000 n 0001329473 00000 n 0001329612 00000 n 0001329751 00000 n 0001329891 00000 n 0001330030 00000 n 0001330170 00000 n 0001330309 00000 n 0001330449 00000 n 0001330588 00000 n 0001330728 00000 n 0001330867 00000 n 0001331006 00000 n 0001331145 00000 n 0001331284 00000 n 0001331423 00000 n 0001331563 00000 n 0001331702 00000 n 0001331842 00000 n 0001331981 00000 n 0001332112 00000 n 0001332244 00000 n 0001332376 00000 n 0001332508 00000 n 0001332640 00000 n 0001332772 00000 n 0001332904 00000 n 0001333036 00000 n 0001333168 00000 n 0001333300 00000 n 0001333440 00000 n 0001333579 00000 n 0001333718 00000 n 0001333857 00000 n 0001333997 00000 n 0001334136 00000 n 0001334275 00000 n 0001334414 00000 n 0001334553 00000 n 0001334692 00000 n 0001334831 00000 n 0001334970 00000 n 0001335110 00000 n 0001335249 00000 n 0001335388 00000 n 0001335527 00000 n 0001335666 00000 n 0001335805 00000 n 0001335944 00000 n 0001336083 00000 n 0001336222 00000 n 0001336362 00000 n 0001336502 00000 n 0001336642 00000 n 0001336781 00000 n 0001336921 00000 n 0001337061 00000 n 0001337201 00000 n 0001337341 00000 n 0001337481 00000 n 0001337621 00000 n 0001337761 00000 n 0001337901 00000 n 0001338041 00000 n 0001338181 00000 n 0001338321 00000 n 0001338461 00000 n 0001338601 00000 n 0001338741 00000 n 0001338881 00000 n 0001339021 00000 n 0001339161 00000 n 0001339301 00000 n 0001339441 00000 n 0001339580 00000 n 0001339719 00000 n 0001339858 00000 n 0001339997 00000 n 0001340136 00000 n 0001340275 00000 n 0001340414 00000 n 0001340553 00000 n 0001340692 00000 n 0001340832 00000 n 0001340971 00000 n 0001341110 00000 n 0001341249 00000 n 0001341388 00000 n 0001341527 00000 n 0001341666 00000 n 0001341805 00000 n 0001341944 00000 n 0001342083 00000 n 0001342223 00000 n 0001342362 00000 n 0001342501 00000 n 0001342640 00000 n 0001342779 00000 n 0001342918 00000 n 0001343057 00000 n 0001343196 00000 n 0001343335 00000 n 0001343475 00000 n 0001343615 00000 n 0001343755 00000 n 0001343895 00000 n 0001344035 00000 n 0001344175 00000 n 0001344315 00000 n 0001344454 00000 n 0001344594 00000 n 0001344734 00000 n 0001344874 00000 n 0001345014 00000 n 0001345154 00000 n 0001345294 00000 n 0001345434 00000 n 0001345573 00000 n 0001345713 00000 n 0001345853 00000 n 0001345993 00000 n 0001346133 00000 n 0001346272 00000 n 0001346411 00000 n 0001346550 00000 n 0001346689 00000 n 0001346829 00000 n 0001346969 00000 n 0001347109 00000 n 0001347248 00000 n 0001347388 00000 n 0001347528 00000 n 0001347668 00000 n 0001347808 00000 n 0001347948 00000 n 0001348088 00000 n 0001348228 00000 n 0001348367 00000 n 0001348507 00000 n 0001348647 00000 n 0001348787 00000 n 0001348918 00000 n 0001349050 00000 n 0001349182 00000 n 0001349314 00000 n 0001349446 00000 n 0001349578 00000 n 0001349710 00000 n 0001349842 00000 n 0001349974 00000 n 0001350106 00000 n 0001350238 00000 n 0001350370 00000 n 0001350502 00000 n 0001350634 00000 n 0001350766 00000 n 0001350898 00000 n 0001351030 00000 n 0001351162 00000 n 0001351294 00000 n 0001351433 00000 n 0001351573 00000 n 0001351713 00000 n 0001351853 00000 n 0001351993 00000 n 0001352133 00000 n 0001352273 00000 n 0001352413 00000 n 0001352544 00000 n 0001352676 00000 n 0001352808 00000 n 0001352940 00000 n 0001353072 00000 n 0001353204 00000 n 0001353336 00000 n 0001353468 00000 n 0001353600 00000 n 0001353732 00000 n 0001353871 00000 n 0001354011 00000 n 0001354151 00000 n 0001354291 00000 n 0001354430 00000 n 0001354570 00000 n 0001354710 00000 n 0001354850 00000 n 0001354990 00000 n 0001355130 00000 n 0001355270 00000 n 0001355410 00000 n 0001355550 00000 n 0001355689 00000 n 0001355828 00000 n 0001355967 00000 n 0001356106 00000 n 0001356245 00000 n 0001356384 00000 n 0001356523 00000 n 0001356662 00000 n 0001356801 00000 n 0001356941 00000 n 0001357080 00000 n 0001357219 00000 n 0001357359 00000 n 0001357498 00000 n 0001357638 00000 n 0001357777 00000 n 0001357917 00000 n 0001358056 00000 n 0001358196 00000 n 0001358335 00000 n 0001358475 00000 n 0001358614 00000 n 0001358754 00000 n 0001358893 00000 n 0001359033 00000 n 0001359172 00000 n 0001359312 00000 n 0001359451 00000 n 0001359591 00000 n 0001359730 00000 n 0001359870 00000 n 0001360009 00000 n 0001360149 00000 n 0001360288 00000 n 0001360428 00000 n 0001360567 00000 n 0001360706 00000 n 0001360845 00000 n 0001360985 00000 n 0001361124 00000 n 0001361264 00000 n 0001407583 00000 n 0001407802 00000 n 0001408021 00000 n 0001408240 00000 n 0001408460 00000 n 0001408680 00000 n 0001408900 00000 n 0001409120 00000 n 0001409339 00000 n 0001409558 00000 n 0001409777 00000 n 0001409996 00000 n 0001410216 00000 n 0001410436 00000 n 0001410655 00000 n 0001410875 00000 n 0001411094 00000 n 0001411313 00000 n 0001411533 00000 n 0001411752 00000 n 0001411971 00000 n 0001412191 00000 n 0001412410 00000 n 0001412629 00000 n 0001412849 00000 n 0001413068 00000 n 0001413287 00000 n 0001413506 00000 n 0001413725 00000 n 0001413944 00000 n 0001414164 00000 n 0001414383 00000 n 0001414602 00000 n 0001414821 00000 n 0001415040 00000 n 0001415259 00000 n 0001415479 00000 n 0001415698 00000 n 0001415917 00000 n 0001416137 00000 n 0001416357 00000 n 0001416577 00000 n 0001416796 00000 n 0001417017 00000 n 0001417237 00000 n 0001417457 00000 n 0001417676 00000 n 0001417896 00000 n 0001418117 00000 n 0001418337 00000 n 0001418557 00000 n 0001418777 00000 n 0001418997 00000 n 0001419217 00000 n 0001419437 00000 n 0001419657 00000 n 0001419876 00000 n 0001420096 00000 n 0001420316 00000 n 0001420536 00000 n 0001420756 00000 n 0001420976 00000 n 0001421196 00000 n 0001421416 00000 n 0001421636 00000 n 0001421855 00000 n 0001422074 00000 n 0001422293 00000 n 0001422512 00000 n 0001422731 00000 n 0001422950 00000 n 0001423169 00000 n 0001423389 00000 n 0001423609 00000 n 0001423829 00000 n 0001424049 00000 n 0001424269 00000 n 0001424490 00000 n 0001424711 00000 n 0001424931 00000 n 0001425152 00000 n 0001425372 00000 n 0001425592 00000 n 0001425812 00000 n 0001426032 00000 n 0001426252 00000 n 0001426473 00000 n 0001426694 00000 n 0001426915 00000 n 0001427135 00000 n 0001427356 00000 n 0001427576 00000 n 0001427797 00000 n 0001428017 00000 n 0001428237 00000 n 0001428458 00000 n 0001428679 00000 n 0001428914 00000 n 0001429141 00000 n 0001429361 00000 n 0001429581 00000 n 0001429815 00000 n 0001430043 00000 n 0001430276 00000 n 0001430509 00000 n 0001430742 00000 n 0001430977 00000 n 0001431212 00000 n 0001431431 00000 n 0001431666 00000 n 0001431885 00000 n 0001432112 00000 n 0001432349 00000 n 0001432569 00000 n 0001432805 00000 n 0001433040 00000 n 0001433260 00000 n 0001433480 00000 n 0001433707 00000 n 0001433943 00000 n 0001434163 00000 n 0001434383 00000 n 0001434616 00000 n 0001434836 00000 n 0001435070 00000 n 0001435298 00000 n 0001435527 00000 n 0001435754 00000 n 0001435981 00000 n 0001436215 00000 n 0001436443 00000 n 0001436663 00000 n 0001436898 00000 n 0001437125 00000 n 0001437359 00000 n 0001437579 00000 n 0001437813 00000 n 0001438047 00000 n 0001438267 00000 n 0001438500 00000 n 0001438734 00000 n 0001438959 00000 n 0001439193 00000 n 0001439413 00000 n 0001439633 00000 n 0001439853 00000 n 0001440088 00000 n 0001440316 00000 n 0001440550 00000 n 0001440785 00000 n 0001441005 00000 n 0001441240 00000 n 0001441460 00000 n 0001441680 00000 n 0001441900 00000 n 0001442137 00000 n 0001442357 00000 n 0001442584 00000 n 0001442804 00000 n 0001443024 00000 n 0001443258 00000 n 0001443485 00000 n 0001443713 00000 n 0001443947 00000 n 0001444181 00000 n 0001444414 00000 n 0001444643 00000 n 0001444862 00000 n 0001445097 00000 n 0001445330 00000 n 0001445557 00000 n 0001445776 00000 n 0001445996 00000 n 0001446215 00000 n 0001446450 00000 n 0001446684 00000 n 0001446904 00000 n 0001447131 00000 n 0001447365 00000 n 0001447599 00000 n 0001447825 00000 n 0001448045 00000 n 0001448279 00000 n 0001448513 00000 n 0001448733 00000 n 0001448953 00000 n 0001449190 00000 n 0001449424 00000 n 0001449644 00000 n 0001449877 00000 n 0001450096 00000 n 0001450316 00000 n 0001450536 00000 n 0001450770 00000 n 0001451005 00000 n 0001451240 00000 n 0001451475 00000 n 0001451695 00000 n 0001451921 00000 n 0001452147 00000 n 0001452381 00000 n 0001452607 00000 n 0001452834 00000 n 0001453068 00000 n 0001453296 00000 n 0001453532 00000 n 0001453752 00000 n 0001453979 00000 n 0001454199 00000 n 0001454419 00000 n 0001454646 00000 n 0001454881 00000 n 0001455115 00000 n 0001455349 00000 n 0001455584 00000 n 0001455804 00000 n 0001456024 00000 n 0001456244 00000 n 0001456481 00000 n 0001456716 00000 n 0001456936 00000 n 0001457170 00000 n 0001457390 00000 n 0001457618 00000 n 0001457846 00000 n 0001458083 00000 n 0001458303 00000 n 0001458523 00000 n 0001458751 00000 n 0001458986 00000 n 0001459223 00000 n 0001459459 00000 n 0001459687 00000 n 0001459921 00000 n 0001460156 00000 n 0001460382 00000 n 0001460615 00000 n 0001460841 00000 n 0001461074 00000 n 0001461307 00000 n 0001461533 00000 n 0001461767 00000 n 0001462000 00000 n 0001462234 00000 n 0001462462 00000 n 0001462682 00000 n 0001462917 00000 n 0001463137 00000 n 0001463363 00000 n 0001463591 00000 n 0001463827 00000 n 0001464047 00000 n 0001464284 00000 n 0001464512 00000 n 0001464747 00000 n 0001464975 00000 n 0001465201 00000 n 0001465428 00000 n 0001465663 00000 n 0001465897 00000 n 0001466124 00000 n 0001466358 00000 n 0001466578 00000 n 0001466805 00000 n 0001467041 00000 n 0001467276 00000 n 0001467512 00000 n 0001467732 00000 n 0001467952 00000 n 0001468172 00000 n 0001468408 00000 n 0001468636 00000 n 0001468856 00000 n 0001469094 00000 n 0001469322 00000 n 0001469558 00000 n 0001469794 00000 n 0001470014 00000 n 0001470234 00000 n 0001470470 00000 n 0001470690 00000 n 0001470928 00000 n 0001471164 00000 n 0001471400 00000 n 0001471620 00000 n 0001471840 00000 n 0001472076 00000 n 0001472296 00000 n 0001472532 00000 n 0001472762 00000 n 0001472998 00000 n 0001473228 00000 n 0001473448 00000 n 0001473668 00000 n 0001473888 00000 n 0001474108 00000 n 0001474344 00000 n 0001474572 00000 n 0001474808 00000 n 0001475044 00000 n 0001475264 00000 n 0001475500 00000 n 0001475736 00000 n 0001475956 00000 n 0001476191 00000 n 0001476427 00000 n 0001476647 00000 n 0001476867 00000 n 0001477102 00000 n 0001477337 00000 n 0001477573 00000 n 0001477793 00000 n 0001478029 00000 n 0001478264 00000 n 0001478492 00000 n 0001478727 00000 n 0001478963 00000 n 0001479199 00000 n 0001479434 00000 n 0001479662 00000 n 0001479897 00000 n 0001480124 00000 n 0001480358 00000 n 0001480578 00000 n 0001480798 00000 n 0001481018 00000 n 0001481238 00000 n 0001481474 00000 n 0001481702 00000 n 0001481938 00000 n 0001482158 00000 n 0001482378 00000 n 0001482616 00000 n 0001482852 00000 n 0001483088 00000 n 0001483316 00000 n 0001483552 00000 n 0001483772 00000 n 0001484010 00000 n 0001484230 00000 n 0001484450 00000 n 0001484686 00000 n 0001484906 00000 n 0001485133 00000 n 0001485353 00000 n 0001485573 00000 n 0001485809 00000 n 0001486045 00000 n 0001486281 00000 n 0001486516 00000 n 0001486752 00000 n 0001486988 00000 n 0001487223 00000 n 0001487451 00000 n 0001487686 00000 n 0001487921 00000 n 0001488141 00000 n 0001488361 00000 n 0001488599 00000 n 0001488835 00000 n 0001489071 00000 n 0001489291 00000 n 0001489511 00000 n 0001489739 00000 n 0001489959 00000 n 0001490195 00000 n 0001490431 00000 n 0001490667 00000 n 0001490894 00000 n 0001491130 00000 n 0001491358 00000 n 0001491578 00000 n 0001491798 00000 n 0001492018 00000 n 0001492238 00000 n 0001492474 00000 n 0001492702 00000 n 0001492930 00000 n 0001493158 00000 n 0001493386 00000 n 0001493614 00000 n 0001493842 00000 n 0001494070 00000 n 0001494298 00000 n 0001494526 00000 n 0001494746 00000 n 0001494982 00000 n 0001495202 00000 n 0001495422 00000 n 0001495642 00000 n 0001495862 00000 n 0001496082 00000 n 0001496302 00000 n 0001496539 00000 n 0001496767 00000 n 0001497003 00000 n 0001497223 00000 n 0001497459 00000 n 0001497687 00000 n 0001497915 00000 n 0001498135 00000 n 0001498355 00000 n 0001498575 00000 n 0001498795 00000 n 0001499015 00000 n 0001499245 00000 n 0001499473 00000 n 0001499709 00000 n 0001499945 00000 n 0001500173 00000 n 0001500393 00000 n 0001500613 00000 n 0001500833 00000 n 0001501068 00000 n 0001501303 00000 n 0001501539 00000 n 0001501767 00000 n 0001501987 00000 n 0001502223 00000 n 0001502451 00000 n 0001502679 00000 n 0001502907 00000 n 0001503142 00000 n 0001503377 00000 n 0001503597 00000 n 0001503833 00000 n 0001504069 00000 n 0001504307 00000 n 0001504535 00000 n 0001504755 00000 n 0001504989 00000 n 0001505217 00000 n 0001505453 00000 n 0001505688 00000 n 0001505918 00000 n 0001506148 00000 n 0001506383 00000 n 0001506618 00000 n 0001506853 00000 n 0001507073 00000 n 0001507308 00000 n 0001507544 00000 n 0001507772 00000 n 0001507992 00000 n 0001508212 00000 n 0001508440 00000 n 0001508675 00000 n 0001508911 00000 n 0001509139 00000 n 0001509375 00000 n 0001509603 00000 n 0001509839 00000 n 0001510067 00000 n 0001510287 00000 n 0001510522 00000 n 0001510742 00000 n 0001510962 00000 n 0001511199 00000 n 0001511419 00000 n 0001511653 00000 n 0001511873 00000 n 0001512107 00000 n 0001512327 00000 n 0001512547 00000 n 0000364695 00000 n 0000372554 00000 n 0000372761 00000 n 0001930955 00000 n 0000372812 00000 n 0000670884 00000 n 0001361403 00000 n 0001361536 00000 n 0001361669 00000 n 0001361802 00000 n 0001361935 00000 n 0001362068 00000 n 0001362201 00000 n 0001362334 00000 n 0001362467 00000 n 0001362600 00000 n 0001362733 00000 n 0001362866 00000 n 0001362997 00000 n 0001363130 00000 n 0001363263 00000 n 0001363394 00000 n 0001363526 00000 n 0001363658 00000 n 0001363789 00000 n 0001363920 00000 n 0001364053 00000 n 0001364186 00000 n 0001364317 00000 n 0001364448 00000 n 0001364581 00000 n 0001364714 00000 n 0001364847 00000 n 0001364980 00000 n 0001365113 00000 n 0001365246 00000 n 0001365379 00000 n 0001365510 00000 n 0001365642 00000 n 0001365775 00000 n 0001365906 00000 n 0001366037 00000 n 0001366168 00000 n 0001366299 00000 n 0001366430 00000 n 0001366563 00000 n 0001366696 00000 n 0001366827 00000 n 0001366960 00000 n 0001367093 00000 n 0001367224 00000 n 0001367355 00000 n 0001367488 00000 n 0001367619 00000 n 0001367750 00000 n 0001367882 00000 n 0001368013 00000 n 0001368146 00000 n 0001368279 00000 n 0001368411 00000 n 0001368543 00000 n 0001368675 00000 n 0001368807 00000 n 0001368940 00000 n 0001369073 00000 n 0001369206 00000 n 0001369339 00000 n 0001369472 00000 n 0001369603 00000 n 0001369734 00000 n 0001369867 00000 n 0001370000 00000 n 0001370133 00000 n 0001370265 00000 n 0001370397 00000 n 0001370528 00000 n 0001370659 00000 n 0001370792 00000 n 0001370925 00000 n 0001371058 00000 n 0001371189 00000 n 0001371320 00000 n 0001371451 00000 n 0001371582 00000 n 0001371713 00000 n 0001371845 00000 n 0001371978 00000 n 0001372111 00000 n 0001372244 00000 n 0001372375 00000 n 0001372508 00000 n 0001372640 00000 n 0001372773 00000 n 0001372904 00000 n 0001512767 00000 n 0001512975 00000 n 0001513174 00000 n 0001513372 00000 n 0001513570 00000 n 0001513769 00000 n 0001513972 00000 n 0001514171 00000 n 0001514374 00000 n 0001514573 00000 n 0001514771 00000 n 0001514974 00000 n 0001515174 00000 n 0001515373 00000 n 0001515572 00000 n 0001515772 00000 n 0001515972 00000 n 0001516168 00000 n 0001516367 00000 n 0001516566 00000 n 0001516765 00000 n 0001516964 00000 n 0001517162 00000 n 0001517361 00000 n 0001517557 00000 n 0001517756 00000 n 0001517955 00000 n 0001518155 00000 n 0001518354 00000 n 0001518554 00000 n 0001518755 00000 n 0001518955 00000 n 0001519155 00000 n 0001519351 00000 n 0001519551 00000 n 0001519751 00000 n 0001519951 00000 n 0001520151 00000 n 0001520352 00000 n 0001520549 00000 n 0001520749 00000 n 0001520949 00000 n 0001521148 00000 n 0001521351 00000 n 0001521554 00000 n 0001521753 00000 n 0001521955 00000 n 0001522154 00000 n 0001522357 00000 n 0001522557 00000 n 0001522757 00000 n 0001522958 00000 n 0001523159 00000 n 0001523358 00000 n 0001523556 00000 n 0001523756 00000 n 0001523955 00000 n 0001524160 00000 n 0001524357 00000 n 0001524557 00000 n 0001524757 00000 n 0001524955 00000 n 0001525150 00000 n 0001525350 00000 n 0001525550 00000 n 0001525749 00000 n 0001525949 00000 n 0001526149 00000 n 0001526349 00000 n 0001526549 00000 n 0001526754 00000 n 0001526954 00000 n 0001527155 00000 n 0001527350 00000 n 0001527549 00000 n 0001527748 00000 n 0001527947 00000 n 0001528146 00000 n 0001528344 00000 n 0001528542 00000 n 0001528742 00000 n 0001528941 00000 n 0001529138 00000 n 0001529337 00000 n 0001529536 00000 n 0001529736 00000 n 0001529934 00000 n 0001530129 00000 n 0001530328 00000 n 0001530527 00000 n 0001530726 00000 n 0001530925 00000 n 0001531124 00000 n 0001531321 00000 n 0001531522 00000 n 0001531723 00000 n 0001531922 00000 n 0001532121 00000 n 0001532320 00000 n 0001532515 00000 n 0001532714 00000 n 0001532912 00000 n 0001533111 00000 n 0001533310 00000 n 0001533511 00000 n 0001533711 00000 n 0001533910 00000 n 0001534105 00000 n 0001534305 00000 n 0001534504 00000 n 0001534709 00000 n 0001534908 00000 n 0001535107 00000 n 0001535306 00000 n 0001535505 00000 n 0001535705 00000 n 0001535905 00000 n 0001536106 00000 n 0001536305 00000 n 0001536504 00000 n 0001536703 00000 n 0001536902 00000 n 0001537100 00000 n 0001537300 00000 n 0001537499 00000 n 0001537696 00000 n 0001537897 00000 n 0001538096 00000 n 0001538296 00000 n 0001538496 00000 n 0001538694 00000 n 0001538892 00000 n 0001539090 00000 n 0001539289 00000 n 0001539487 00000 n 0001539685 00000 n 0001539884 00000 n 0001540083 00000 n 0001540280 00000 n 0001540478 00000 n 0001540678 00000 n 0001540876 00000 n 0001541075 00000 n 0001541274 00000 n 0001541471 00000 n 0001541671 00000 n 0001541870 00000 n 0001542067 00000 n 0001542266 00000 n 0001542465 00000 n 0001542665 00000 n 0001542860 00000 n 0001543059 00000 n 0001543259 00000 n 0001543458 00000 n 0001543659 00000 n 0001543858 00000 n 0001544057 00000 n 0001544256 00000 n 0001544452 00000 n 0001544652 00000 n 0001544850 00000 n 0001545048 00000 n 0001545246 00000 n 0001545470 00000 n 0001545691 00000 n 0001545914 00000 n 0001546139 00000 n 0001546360 00000 n 0001546582 00000 n 0001546807 00000 n 0001547030 00000 n 0001547255 00000 n 0001547480 00000 n 0001547700 00000 n 0001547921 00000 n 0001548142 00000 n 0001548363 00000 n 0001548585 00000 n 0001548808 00000 n 0001549029 00000 n 0001549253 00000 n 0001549477 00000 n 0001549701 00000 n 0001549923 00000 n 0001550143 00000 n 0001550368 00000 n 0001550593 00000 n 0001550818 00000 n 0001551038 00000 n 0001551258 00000 n 0001551483 00000 n 0001551707 00000 n 0001551931 00000 n 0001552152 00000 n 0001552373 00000 n 0001552594 00000 n 0001552818 00000 n 0001553043 00000 n 0001553267 00000 n 0001553488 00000 n 0001553713 00000 n 0001553934 00000 n 0001554156 00000 n 0001554377 00000 n 0001554597 00000 n 0001554818 00000 n 0001555039 00000 n 0001555262 00000 n 0001555485 00000 n 0001555706 00000 n 0001555931 00000 n 0001556156 00000 n 0001556377 00000 n 0001556600 00000 n 0001556825 00000 n 0001557048 00000 n 0001557269 00000 n 0001557492 00000 n 0001557716 00000 n 0001557936 00000 n 0001558159 00000 n 0001558385 00000 n 0001558606 00000 n 0001558831 00000 n 0001559054 00000 n 0001559279 00000 n 0001559504 00000 n 0001559727 00000 n 0001559947 00000 n 0001560167 00000 n 0001560388 00000 n 0001560612 00000 n 0001560833 00000 n 0001561054 00000 n 0001561276 00000 n 0001561501 00000 n 0001561725 00000 n 0001561949 00000 n 0001562174 00000 n 0001562394 00000 n 0001562614 00000 n 0001562834 00000 n 0001563057 00000 n 0001563277 00000 n 0001563500 00000 n 0001563724 00000 n 0001563948 00000 n 0001564168 00000 n 0001564388 00000 n 0001564608 00000 n 0001564828 00000 n 0001565048 00000 n 0001565271 00000 n 0001565492 00000 n 0001565718 00000 n 0001565939 00000 n 0001566162 00000 n 0001566383 00000 n 0001566607 00000 n 0001566827 00000 n 0001567048 00000 n 0001567268 00000 n 0001567488 00000 n 0001567714 00000 n 0001567935 00000 n 0001568155 00000 n 0001568376 00000 n 0001568620 00000 n 0001568846 00000 n 0001569083 00000 n 0001569327 00000 n 0001569548 00000 n 0001569774 00000 n 0001569995 00000 n 0001570215 00000 n 0001570436 00000 n 0001570662 00000 n 0001570883 00000 n 0001571104 00000 n 0001571325 00000 n 0001571546 00000 n 0001571782 00000 n 0001572008 00000 n 0001572228 00000 n 0001572449 00000 n 0001572686 00000 n 0001572906 00000 n 0001573126 00000 n 0001573363 00000 n 0001573583 00000 n 0001573809 00000 n 0001574045 00000 n 0001574266 00000 n 0001574488 00000 n 0001574709 00000 n 0001574935 00000 n 0001575159 00000 n 0001575383 00000 n 0001575609 00000 n 0001575835 00000 n 0001576056 00000 n 0001576277 00000 n 0001576498 00000 n 0001576724 00000 n 0001576950 00000 n 0001577176 00000 n 0001577402 00000 n 0001577626 00000 n 0001577871 00000 n 0001578095 00000 n 0001578319 00000 n 0001578566 00000 n 0001578792 00000 n 0001579018 00000 n 0001579240 00000 n 0001579465 00000 n 0001579691 00000 n 0001579917 00000 n 0001580143 00000 n 0001580369 00000 n 0001580595 00000 n 0001580817 00000 n 0001581043 00000 n 0001581267 00000 n 0001581488 00000 n 0001581709 00000 n 0001581935 00000 n 0001582161 00000 n 0001582385 00000 n 0001582611 00000 n 0001582837 00000 n 0001583063 00000 n 0001583284 00000 n 0001583505 00000 n 0001583725 00000 n 0001583951 00000 n 0001584172 00000 n 0001584408 00000 n 0001584634 00000 n 0001584855 00000 n 0001585076 00000 n 0001585297 00000 n 0001585521 00000 n 0001585747 00000 n 0001585973 00000 n 0001586196 00000 n 0001586422 00000 n 0001586644 00000 n 0001586888 00000 n 0001587114 00000 n 0001587338 00000 n 0001587582 00000 n 0001587830 00000 n 0001588056 00000 n 0001588280 00000 n 0001588501 00000 n 0001588725 00000 n 0001588963 00000 n 0001589185 00000 n 0001589407 00000 n 0001589631 00000 n 0001589857 00000 n 0001590083 00000 n 0001590308 00000 n 0001590534 00000 n 0001590755 00000 n 0001590976 00000 n 0001591197 00000 n 0001591418 00000 n 0001591639 00000 n 0001591860 00000 n 0001592086 00000 n 0001592307 00000 n 0001592532 00000 n 0001592752 00000 n 0001592973 00000 n 0001593194 00000 n 0001593415 00000 n 0001593636 00000 n 0001593857 00000 n 0001594083 00000 n 0001594304 00000 n 0001594530 00000 n 0001594756 00000 n 0001594982 00000 n 0001595208 00000 n 0001595434 00000 n 0001595660 00000 n 0001595881 00000 n 0001596102 00000 n 0001596328 00000 n 0001596549 00000 n 0001596775 00000 n 0001596998 00000 n 0001597221 00000 n 0001597442 00000 n 0001597663 00000 n 0001597885 00000 n 0001598111 00000 n 0001598337 00000 n 0001598563 00000 n 0001598788 00000 n 0001599014 00000 n 0001599239 00000 n 0001599465 00000 n 0001599691 00000 n 0001599917 00000 n 0001600143 00000 n 0001600369 00000 n 0001600593 00000 n 0001600818 00000 n 0001601039 00000 n 0001601260 00000 n 0001601486 00000 n 0001601707 00000 n 0001601928 00000 n 0001602149 00000 n 0001602375 00000 n 0001602596 00000 n 0001602822 00000 n 0001603043 00000 n 0001603264 00000 n 0001603485 00000 n 0001603706 00000 n 0001603927 00000 n 0001604148 00000 n 0001604369 00000 n 0001604593 00000 n 0001604819 00000 n 0001605043 00000 n 0001605269 00000 n 0001605495 00000 n 0001605715 00000 n 0001605936 00000 n 0001606157 00000 n 0001606378 00000 n 0001606599 00000 n 0001606825 00000 n 0001607046 00000 n 0001607272 00000 n 0001607517 00000 n 0001607738 00000 n 0001607958 00000 n 0001608179 00000 n 0001608405 00000 n 0001608626 00000 n 0001608846 00000 n 0001609066 00000 n 0001609292 00000 n 0001609516 00000 n 0001609763 00000 n 0001610010 00000 n 0001610255 00000 n 0001610500 00000 n 0001610745 00000 n 0001610989 00000 n 0001611213 00000 n 0001611439 00000 n 0001611665 00000 n 0001611891 00000 n 0001612129 00000 n 0001612374 00000 n 0001612600 00000 n 0001612824 00000 n 0001613050 00000 n 0001613276 00000 n 0001613502 00000 n 0001613728 00000 n 0001613954 00000 n 0001614180 00000 n 0001614401 00000 n 0001614627 00000 n 0001614853 00000 n 0001615079 00000 n 0001615305 00000 n 0001615527 00000 n 0001615751 00000 n 0001615975 00000 n 0001616201 00000 n 0001616427 00000 n 0001616653 00000 n 0001616879 00000 n 0001617101 00000 n 0001617322 00000 n 0001617543 00000 n 0001617769 00000 n 0001617995 00000 n 0001618221 00000 n 0001618447 00000 n 0001618673 00000 n 0001618899 00000 n 0001619125 00000 n 0001619351 00000 n 0001619575 00000 n 0001619801 00000 n 0001620027 00000 n 0001620253 00000 n 0001620479 00000 n 0001620701 00000 n 0001620927 00000 n 0001621153 00000 n 0001621397 00000 n 0001621621 00000 n 0001621847 00000 n 0001622069 00000 n 0001622291 00000 n 0001622517 00000 n 0001622761 00000 n 0001623005 00000 n 0001623227 00000 n 0001623453 00000 n 0001623675 00000 n 0001623901 00000 n 0001624145 00000 n 0001624367 00000 n 0001624611 00000 n 0001624848 00000 n 0001625070 00000 n 0001625307 00000 n 0001625552 00000 n 0001625778 00000 n 0001626000 00000 n 0001626226 00000 n 0001626471 00000 n 0001626693 00000 n 0001626938 00000 n 0001627160 00000 n 0001627382 00000 n 0001627627 00000 n 0001627866 00000 n 0001628113 00000 n 0001628339 00000 n 0001628584 00000 n 0001628829 00000 n 0001629074 00000 n 0001629300 00000 n 0001629522 00000 n 0001629748 00000 n 0001629971 00000 n 0001630192 00000 n 0001630414 00000 n 0001630640 00000 n 0001630862 00000 n 0001631099 00000 n 0001631325 00000 n 0001631549 00000 n 0001631771 00000 n 0001632016 00000 n 0001632242 00000 n 0001632468 00000 n 0001632715 00000 n 0001632939 00000 n 0001633163 00000 n 0001633408 00000 n 0001633632 00000 n 0001633858 00000 n 0001634097 00000 n 0001634342 00000 n 0001634587 00000 n 0001634826 00000 n 0001635052 00000 n 0001635297 00000 n 0001635517 00000 n 0001635762 00000 n 0001636007 00000 n 0001636252 00000 n 0001636478 00000 n 0001636704 00000 n 0001636951 00000 n 0001637198 00000 n 0001637424 00000 n 0001637645 00000 n 0001637871 00000 n 0001638097 00000 n 0001638319 00000 n 0001638539 00000 n 0001638760 00000 n 0001638986 00000 n 0001639210 00000 n 0001639431 00000 n 0001639657 00000 n 0001639877 00000 n 0001640098 00000 n 0001640324 00000 n 0001640550 00000 n 0001640776 00000 n 0001641002 00000 n 0001641227 00000 n 0001641447 00000 n 0001641667 00000 n 0001641888 00000 n 0001642108 00000 n 0001642329 00000 n 0001642549 00000 n 0001642785 00000 n 0001643005 00000 n 0001643226 00000 n 0001643451 00000 n 0001643671 00000 n 0001643892 00000 n 0001644112 00000 n 0001644333 00000 n 0001644559 00000 n 0001644780 00000 n 0001645005 00000 n 0001645226 00000 n 0001645447 00000 n 0001645668 00000 n 0001645894 00000 n 0001646115 00000 n 0001646340 00000 n 0001646565 00000 n 0001646785 00000 n 0001647005 00000 n 0001647226 00000 n 0001647446 00000 n 0001647672 00000 n 0001647898 00000 n 0001648123 00000 n 0001648348 00000 n 0001648573 00000 n 0001648794 00000 n 0001649014 00000 n 0001649234 00000 n 0001649460 00000 n 0001649684 00000 n 0001649906 00000 n 0001650132 00000 n 0001650358 00000 n 0001650584 00000 n 0001650808 00000 n 0001651034 00000 n 0001651260 00000 n 0001651497 00000 n 0001651721 00000 n 0001651945 00000 n 0001652171 00000 n 0001652397 00000 n 0001652621 00000 n 0001652847 00000 n 0001653073 00000 n 0001653293 00000 n 0001653519 00000 n 0001653739 00000 n 0001653965 00000 n 0001654191 00000 n 0001654417 00000 n 0001654643 00000 n 0001654869 00000 n 0001655095 00000 n 0001655321 00000 n 0001655547 00000 n 0001655792 00000 n 0001656016 00000 n 0001656261 00000 n 0001656485 00000 n 0001656730 00000 n 0001656955 00000 n 0001657180 00000 n 0001657406 00000 n 0001657629 00000 n 0001657850 00000 n 0001658076 00000 n 0001658321 00000 n 0001658547 00000 n 0001658773 00000 n 0001658999 00000 n 0001659225 00000 n 0001659451 00000 n 0001659688 00000 n 0001659925 00000 n 0001660162 00000 n 0001660386 00000 n 0001660610 00000 n 0000670909 00000 n 0000677796 00000 n 0000678007 00000 n 0001905892 00000 n 0001873249 00000 n 0000678058 00000 n 0001865889 00000 n 0000678126 00000 n 0001870819 00000 n 0000678192 00000 n 0001867549 00000 n 0000678262 00000 n 0001867648 00000 n 0000678332 00000 n 0001868896 00000 n 0000678398 00000 n 0001866278 00000 n 0000678464 00000 n 0001867062 00000 n 0000678530 00000 n 0001868704 00000 n 0000678596 00000 n 0001869184 00000 n 0000678662 00000 n 0001871992 00000 n 0000678732 00000 n 0001870916 00000 n 0000678800 00000 n 0001868224 00000 n 0000678866 00000 n 0001868416 00000 n 0000678932 00000 n 0001872188 00000 n 0000679002 00000 n 0001872484 00000 n 0000679072 00000 n 0001870528 00000 n 0000679140 00000 n 0001865986 00000 n 0000679208 00000 n 0001872781 00000 n 0000679276 00000 n 0001872583 00000 n 0000679344 00000 n 0001872385 00000 n 0000679412 00000 n 0001870144 00000 n 0000679478 00000 n 0001871306 00000 n 0000679544 00000 n 0001871208 00000 n 0000679614 00000 n 0001865792 00000 n 0000679680 00000 n 0001869664 00000 n 0000679746 00000 n 0001870048 00000 n 0000679812 00000 n 0001870336 00000 n 0000679878 00000 n 0001869952 00000 n 0000679944 00000 n 0001872286 00000 n 0000680014 00000 n 0001866670 00000 n 0000680082 00000 n 0001868032 00000 n 0000680148 00000 n 0001870722 00000 n 0000680216 00000 n 0001867158 00000 n 0000680284 00000 n 0001869568 00000 n 0000680350 00000 n 0001868800 00000 n 0000680416 00000 n 0001872682 00000 n 0000680484 00000 n 0001868992 00000 n 0000680550 00000 n 0001868512 00000 n 0000680616 00000 n 0001872979 00000 n 0000680682 00000 n 0001868128 00000 n 0000680748 00000 n 0001872880 00000 n 0000680816 00000 n 0001870625 00000 n 0000680884 00000 n 0001871110 00000 n 0000680950 00000 n 0001871502 00000 n 0000681016 00000 n 0001866768 00000 n 0000681082 00000 n 0001867937 00000 n 0000681148 00000 n 0001866474 00000 n 0000681216 00000 n 0001867450 00000 n 0000681284 00000 n 0001871894 00000 n 0000681352 00000 n 0001867842 00000 n 0000681420 00000 n 0001867352 00000 n 0000681490 00000 n 0001869472 00000 n 0000681556 00000 n 0001869760 00000 n 0000681622 00000 n 0001873169 00000 n 0000681690 00000 n 0001867747 00000 n 0000681758 00000 n 0001872090 00000 n 0000681826 00000 n 0001871796 00000 n 0000681892 00000 n 0001871698 00000 n 0000681958 00000 n 0001869376 00000 n 0000682024 00000 n 0001870432 00000 n 0000682090 00000 n 0001871404 00000 n 0000682158 00000 n 0001873074 00000 n 0000682226 00000 n 0001871013 00000 n 0000682296 00000 n 0001869280 00000 n 0000682362 00000 n 0001868608 00000 n 0000682428 00000 n 0001868320 00000 n 0000682494 00000 n 0001866083 00000 n 0000682560 00000 n 0001869088 00000 n 0000682626 00000 n 0001866572 00000 n 0000682692 00000 n 0001867254 00000 n 0000682760 00000 n 0001866866 00000 n 0000682830 00000 n 0001866964 00000 n 0000682898 00000 n 0001869856 00000 n 0000682964 00000 n 0001866376 00000 n 0000683034 00000 n 0001866180 00000 n 0000683100 00000 n 0001871600 00000 n 0000683168 00000 n 0001870240 00000 n 0000683234 00000 n 0001865710 00000 n 0001888941 00000 n 0000683304 00000 n 0001874609 00000 n 0000683371 00000 n 0001881035 00000 n 0000683439 00000 n 0001878727 00000 n 0000683508 00000 n 0001885536 00000 n 0000683578 00000 n 0001878062 00000 n 0000683648 00000 n 0001881619 00000 n 0000683718 00000 n 0001878252 00000 n 0000683788 00000 n 0001881425 00000 n 0000683858 00000 n 0001885346 00000 n 0000683926 00000 n 0001878157 00000 n 0000683995 00000 n 0001881230 00000 n 0000684064 00000 n 0001885156 00000 n 0000684133 00000 n 0001884871 00000 n 0000684201 00000 n 0001877872 00000 n 0000684271 00000 n 0001875301 00000 n 0000684339 00000 n 0001875205 00000 n 0000684407 00000 n 0001884776 00000 n 0000684475 00000 n 0001884681 00000 n 0000684543 00000 n 0001884586 00000 n 0000684611 00000 n 0001883541 00000 n 0000684679 00000 n 0001877397 00000 n 0000684747 00000 n 0001883636 00000 n 0000684813 00000 n 0001884016 00000 n 0000684881 00000 n 0001884396 00000 n 0000684948 00000 n 0001888766 00000 n 0000685016 00000 n 0001876827 00000 n 0000685084 00000 n 0001879871 00000 n 0000685152 00000 n 0001882485 00000 n 0000685220 00000 n 0001888481 00000 n 0000685289 00000 n 0001888386 00000 n 0000685359 00000 n 0001888101 00000 n 0000685426 00000 n 0001880744 00000 n 0000685494 00000 n 0001878822 00000 n 0000685561 00000 n 0001888006 00000 n 0000685628 00000 n 0001880453 00000 n 0000685696 00000 n 0001880259 00000 n 0000685764 00000 n 0001880356 00000 n 0000685832 00000 n 0001880550 00000 n 0000685900 00000 n 0001887816 00000 n 0000685966 00000 n 0001879677 00000 n 0000686034 00000 n 0001879774 00000 n 0000686102 00000 n 0001887626 00000 n 0000686170 00000 n 0001881132 00000 n 0000686239 00000 n 0001881328 00000 n 0000686309 00000 n 0001882581 00000 n 0000686377 00000 n 0001880647 00000 n 0000686446 00000 n 0001882773 00000 n 0000686514 00000 n 0001881716 00000 n 0000686584 00000 n 0001880065 00000 n 0000686652 00000 n 0001879968 00000 n 0000686720 00000 n 0001873388 00000 n 0000686789 00000 n 0001885916 00000 n 0000686859 00000 n 0001879582 00000 n 0000686929 00000 n 0001881813 00000 n 0000686996 00000 n 0001882197 00000 n 0000687064 00000 n 0001887341 00000 n 0000687132 00000 n 0001875005 00000 n 0000687199 00000 n 0001887151 00000 n 0000687267 00000 n 0001883445 00000 n 0000687335 00000 n 0001876636 00000 n 0000687403 00000 n 0001886961 00000 n 0000687471 00000 n 0001877302 00000 n 0000687539 00000 n 0001875493 00000 n 0000687607 00000 n 0001875397 00000 n 0000687675 00000 n 0001882965 00000 n 0000687743 00000 n 0001883253 00000 n 0000687811 00000 n 0001883157 00000 n 0000687879 00000 n 0001874514 00000 n 0000687946 00000 n 0001883349 00000 n 0000688014 00000 n 0001875105 00000 n 0000688081 00000 n 0001874809 00000 n 0000688149 00000 n 0001886581 00000 n 0000688216 00000 n 0001878347 00000 n 0000688284 00000 n 0001886391 00000 n 0000688352 00000 n 0001875970 00000 n 0000688420 00000 n 0001873659 00000 n 0000688488 00000 n 0001879202 00000 n 0000688556 00000 n 0001886201 00000 n 0000688624 00000 n 0001888291 00000 n 0000688692 00000 n 0001874713 00000 n 0000688760 00000 n 0001876445 00000 n 0000688828 00000 n 0001879012 00000 n 0000688896 00000 n 0001886011 00000 n 0000688964 00000 n 0001886106 00000 n 0000689032 00000 n 0001875589 00000 n 0000689100 00000 n 0001886296 00000 n 0000689166 00000 n 0001878442 00000 n 0000689234 00000 n 0001886486 00000 n 0000689302 00000 n 0001875875 00000 n 0000689370 00000 n 0001886676 00000 n 0000689438 00000 n 0001886771 00000 n 0000689506 00000 n 0001875780 00000 n 0000689574 00000 n 0001877777 00000 n 0000689642 00000 n 0001876160 00000 n 0000689708 00000 n 0001875685 00000 n 0000689774 00000 n 0001886866 00000 n 0000689842 00000 n 0001877207 00000 n 0000689910 00000 n 0001887056 00000 n 0000689978 00000 n 0001877112 00000 n 0000690046 00000 n 0001874229 00000 n 0000690114 00000 n 0001887246 00000 n 0000690180 00000 n 0001873754 00000 n 0000690248 00000 n 0001873564 00000 n 0000690316 00000 n 0001876065 00000 n 0000690382 00000 n 0001876540 00000 n 0000690450 00000 n 0001876255 00000 n 0000690518 00000 n 0001879297 00000 n 0000690586 00000 n 0001876350 00000 n 0000690653 00000 n 0001883061 00000 n 0000690721 00000 n 0001874905 00000 n 0000690788 00000 n 0001878917 00000 n 0000690856 00000 n 0001887531 00000 n 0000690924 00000 n 0001873469 00000 n 0000690992 00000 n 0001887721 00000 n 0000691060 00000 n 0001882677 00000 n 0000691128 00000 n 0001882869 00000 n 0000691196 00000 n 0001880162 00000 n 0000691265 00000 n 0001882101 00000 n 0000691333 00000 n 0001887911 00000 n 0000691401 00000 n 0001877587 00000 n 0000691469 00000 n 0001879107 00000 n 0000691539 00000 n 0001888196 00000 n 0000691607 00000 n 0001884491 00000 n 0000691677 00000 n 0001879392 00000 n 0000691747 00000 n 0001879487 00000 n 0000691817 00000 n 0001888576 00000 n 0000691887 00000 n 0001878632 00000 n 0000691957 00000 n 0001888671 00000 n 0000692027 00000 n 0001873849 00000 n 0000692096 00000 n 0001888861 00000 n 0000692164 00000 n 0001887436 00000 n 0000692232 00000 n 0001883921 00000 n 0000692300 00000 n 0001876922 00000 n 0000692370 00000 n 0001884301 00000 n 0000692438 00000 n 0001884206 00000 n 0000692506 00000 n 0001884111 00000 n 0000692574 00000 n 0001874134 00000 n 0000692642 00000 n 0001877017 00000 n 0000692710 00000 n 0001881909 00000 n 0000692777 00000 n 0001883826 00000 n 0000692847 00000 n 0001883731 00000 n 0000692917 00000 n 0001877492 00000 n 0000692987 00000 n 0001882293 00000 n 0000693055 00000 n 0001876732 00000 n 0000693125 00000 n 0001882005 00000 n 0000693193 00000 n 0001874324 00000 n 0000693261 00000 n 0001877682 00000 n 0000693329 00000 n 0001874419 00000 n 0000693397 00000 n 0001884966 00000 n 0000693465 00000 n 0001885061 00000 n 0000693534 00000 n 0001877967 00000 n 0000693602 00000 n 0001885251 00000 n 0000693670 00000 n 0001880841 00000 n 0000693738 00000 n 0001874039 00000 n 0000693806 00000 n 0001881522 00000 n 0000693876 00000 n 0001882389 00000 n 0000693944 00000 n 0001885441 00000 n 0000694012 00000 n 0001873944 00000 n 0000694080 00000 n 0001878537 00000 n 0000694149 00000 n 0001880938 00000 n 0000694217 00000 n 0001885631 00000 n 0000694285 00000 n 0001885726 00000 n 0000694353 00000 n 0001885821 00000 n 0000694421 00000 n 0000737508 00000 n 0001373037 00000 n 0001373168 00000 n 0001373299 00000 n 0001373431 00000 n 0001373562 00000 n 0001373693 00000 n 0001373824 00000 n 0001373956 00000 n 0001374087 00000 n 0001374219 00000 n 0001374351 00000 n 0001374483 00000 n 0001374614 00000 n 0001374745 00000 n 0001374876 00000 n 0001375007 00000 n 0001375139 00000 n 0001375270 00000 n 0001660830 00000 n 0001661030 00000 n 0001661235 00000 n 0001661440 00000 n 0001661640 00000 n 0001661840 00000 n 0001662040 00000 n 0001662240 00000 n 0001662440 00000 n 0001662645 00000 n 0001662845 00000 n 0001663045 00000 n 0001663243 00000 n 0001663442 00000 n 0001663640 00000 n 0001663840 00000 n 0001664039 00000 n 0001664239 00000 n 0001664439 00000 n 0001664679 00000 n 0001664922 00000 n 0001665160 00000 n 0001665404 00000 n 0001665644 00000 n 0001665884 00000 n 0001666122 00000 n 0001666363 00000 n 0001666604 00000 n 0001666842 00000 n 0001667081 00000 n 0001667320 00000 n 0001667558 00000 n 0001667796 00000 n 0001668035 00000 n 0001668274 00000 n 0001668517 00000 n 0001668758 00000 n 0001668999 00000 n 0001669238 00000 n 0001669481 00000 n 0001669722 00000 n 0001669965 00000 n 0001670204 00000 n 0001670445 00000 n 0001670687 00000 n 0001670924 00000 n 0001671161 00000 n 0001671398 00000 n 0001671640 00000 n 0001671877 00000 n 0001672114 00000 n 0001672352 00000 n 0001672590 00000 n 0001672832 00000 n 0001673069 00000 n 0001673308 00000 n 0001673546 00000 n 0001673784 00000 n 0001674022 00000 n 0001674261 00000 n 0001674500 00000 n 0001674739 00000 n 0001674980 00000 n 0001675219 00000 n 0001675458 00000 n 0001675697 00000 n 0001675936 00000 n 0001676177 00000 n 0001676416 00000 n 0001676654 00000 n 0001676893 00000 n 0001677132 00000 n 0001677374 00000 n 0001677616 00000 n 0001677855 00000 n 0001678099 00000 n 0001678337 00000 n 0001678575 00000 n 0001678819 00000 n 0001679063 00000 n 0001679305 00000 n 0001679549 00000 n 0001679793 00000 n 0001680037 00000 n 0001680281 00000 n 0001680520 00000 n 0001680762 00000 n 0001681001 00000 n 0001681245 00000 n 0001681487 00000 n 0001681731 00000 n 0001681968 00000 n 0001682205 00000 n 0001682449 00000 n 0001682691 00000 n 0001682935 00000 n 0001683174 00000 n 0001683413 00000 n 0001683657 00000 n 0001683896 00000 n 0001684135 00000 n 0001684374 00000 n 0001684618 00000 n 0001684857 00000 n 0001685101 00000 n 0001685345 00000 n 0001685583 00000 n 0001685820 00000 n 0001686058 00000 n 0001686295 00000 n 0001686532 00000 n 0001686772 00000 n 0001687012 00000 n 0001687252 00000 n 0001687490 00000 n 0001687727 00000 n 0001687964 00000 n 0001688202 00000 n 0001688441 00000 n 0001688683 00000 n 0001688921 00000 n 0001689159 00000 n 0001689397 00000 n 0001689635 00000 n 0001689874 00000 n 0001690113 00000 n 0001690357 00000 n 0001690595 00000 n 0001690834 00000 n 0001691076 00000 n 0001691315 00000 n 0001691559 00000 n 0000737532 00000 n 0000738902 00000 n 0000739113 00000 n 0001892769 00000 n 0001890796 00000 n 0000739164 00000 n 0001890034 00000 n 0000739230 00000 n 0001890130 00000 n 0000739296 00000 n 0001890517 00000 n 0000739362 00000 n 0001889650 00000 n 0000739428 00000 n 0001889554 00000 n 0000739494 00000 n 0001889362 00000 n 0000739560 00000 n 0001890419 00000 n 0000739626 00000 n 0001889458 00000 n 0000739692 00000 n 0001889166 00000 n 0000739758 00000 n 0001889264 00000 n 0000739824 00000 n 0001890615 00000 n 0000739890 00000 n 0001889938 00000 n 0000739956 00000 n 0001889842 00000 n 0000740022 00000 n 0001889084 00000 n 0000740088 00000 n 0001890226 00000 n 0000740154 00000 n 0001890713 00000 n 0000740220 00000 n 0001890322 00000 n 0000740286 00000 n 0001889746 00000 n 0001892642 00000 n 0000740352 00000 n 0001891698 00000 n 0000740420 00000 n 0001891020 00000 n 0000740487 00000 n 0001890935 00000 n 0000740554 00000 n 0001891316 00000 n 0000740622 00000 n 0001892178 00000 n 0000740690 00000 n 0001892082 00000 n 0000740758 00000 n 0001891412 00000 n 0000740825 00000 n 0001892466 00000 n 0000740893 00000 n 0001891120 00000 n 0000740960 00000 n 0001891890 00000 n 0000741028 00000 n 0001891794 00000 n 0000741096 00000 n 0001891602 00000 n 0000741164 00000 n 0001892562 00000 n 0000741232 00000 n 0001891986 00000 n 0000741300 00000 n 0001892274 00000 n 0000741368 00000 n 0001891507 00000 n 0000741436 00000 n 0001891220 00000 n 0000741504 00000 n 0001892370 00000 n 0000741572 00000 n 0000775010 00000 n 0001375401 00000 n 0001375532 00000 n 0001375663 00000 n 0001375794 00000 n 0001375926 00000 n 0001376057 00000 n 0001376188 00000 n 0001376319 00000 n 0001376451 00000 n 0001376582 00000 n 0001376713 00000 n 0001376845 00000 n 0001376976 00000 n 0001377107 00000 n 0001691798 00000 n 0001692003 00000 n 0001692203 00000 n 0001692403 00000 n 0001692603 00000 n 0001692803 00000 n 0001693001 00000 n 0001693201 00000 n 0001693402 00000 n 0001693607 00000 n 0001693812 00000 n 0001694012 00000 n 0001694250 00000 n 0001694488 00000 n 0001694726 00000 n 0001694970 00000 n 0001695209 00000 n 0001695452 00000 n 0001695690 00000 n 0001695933 00000 n 0001696174 00000 n 0001696413 00000 n 0001696652 00000 n 0001696890 00000 n 0001697128 00000 n 0001697369 00000 n 0001697612 00000 n 0001697851 00000 n 0001698090 00000 n 0001698328 00000 n 0001698567 00000 n 0001698806 00000 n 0001699045 00000 n 0001699284 00000 n 0001699526 00000 n 0001699765 00000 n 0001700004 00000 n 0001700243 00000 n 0001700484 00000 n 0001700723 00000 n 0001700961 00000 n 0001701202 00000 n 0001701441 00000 n 0001701680 00000 n 0001701919 00000 n 0001702157 00000 n 0001702396 00000 n 0001702635 00000 n 0001702873 00000 n 0001703112 00000 n 0001703351 00000 n 0001703590 00000 n 0001703832 00000 n 0001704074 00000 n 0001704316 00000 n 0001704555 00000 n 0001704799 00000 n 0001705043 00000 n 0001705280 00000 n 0001705524 00000 n 0001705768 00000 n 0001706007 00000 n 0001706249 00000 n 0001706493 00000 n 0001706735 00000 n 0001706979 00000 n 0001707223 00000 n 0001707465 00000 n 0001707704 00000 n 0001707946 00000 n 0001708185 00000 n 0001708429 00000 n 0001708673 00000 n 0001708912 00000 n 0001709156 00000 n 0001709400 00000 n 0001709639 00000 n 0000775034 00000 n 0000775873 00000 n 0000776084 00000 n 0001895557 00000 n 0001894254 00000 n 0000776135 00000 n 0001892931 00000 n 0000776201 00000 n 0001893688 00000 n 0000776267 00000 n 0001893592 00000 n 0000776333 00000 n 0001894073 00000 n 0000776399 00000 n 0001893496 00000 n 0000776465 00000 n 0001893013 00000 n 0000776531 00000 n 0001893880 00000 n 0000776597 00000 n 0001893110 00000 n 0000776663 00000 n 0001893784 00000 n 0000776729 00000 n 0001893976 00000 n 0000776795 00000 n 0001894171 00000 n 0000776861 00000 n 0001893304 00000 n 0000776927 00000 n 0001893400 00000 n 0000776993 00000 n 0001893208 00000 n 0001895430 00000 n 0000777059 00000 n 0001894473 00000 n 0000777126 00000 n 0001895061 00000 n 0000777194 00000 n 0001895253 00000 n 0000777262 00000 n 0001895349 00000 n 0000777330 00000 n 0001894869 00000 n 0000777398 00000 n 0001895157 00000 n 0000777466 00000 n 0001894965 00000 n 0000777534 00000 n 0001894773 00000 n 0000777601 00000 n 0001894573 00000 n 0000777668 00000 n 0001894673 00000 n 0000777735 00000 n 0001894393 00000 n 0000777802 00000 n 0000873573 00000 n 0001377238 00000 n 0001377370 00000 n 0001377502 00000 n 0001377634 00000 n 0001377766 00000 n 0001377898 00000 n 0001378030 00000 n 0001378161 00000 n 0001378292 00000 n 0001378423 00000 n 0001378554 00000 n 0001378685 00000 n 0001378816 00000 n 0001378948 00000 n 0001379079 00000 n 0001379210 00000 n 0001379341 00000 n 0001379472 00000 n 0001379603 00000 n 0001379734 00000 n 0001709878 00000 n 0001710078 00000 n 0001710278 00000 n 0001710478 00000 n 0001710676 00000 n 0001710874 00000 n 0001711072 00000 n 0001711272 00000 n 0001711472 00000 n 0001711672 00000 n 0001711872 00000 n 0001712072 00000 n 0001712272 00000 n 0001712472 00000 n 0001712672 00000 n 0001712878 00000 n 0001713078 00000 n 0001713278 00000 n 0001713484 00000 n 0001713690 00000 n 0001713890 00000 n 0001714090 00000 n 0001714291 00000 n 0001714530 00000 n 0001714769 00000 n 0001715008 00000 n 0001715247 00000 n 0001715488 00000 n 0001715727 00000 n 0001715965 00000 n 0001716205 00000 n 0001716445 00000 n 0001716685 00000 n 0001716923 00000 n 0001717161 00000 n 0001717399 00000 n 0001717637 00000 n 0001717880 00000 n 0001718119 00000 n 0001718358 00000 n 0001718597 00000 n 0001718836 00000 n 0001719074 00000 n 0001719312 00000 n 0001719553 00000 n 0001719794 00000 n 0001720035 00000 n 0001720276 00000 n 0001720514 00000 n 0001720755 00000 n 0001720998 00000 n 0001721236 00000 n 0001721474 00000 n 0001721711 00000 n 0001721948 00000 n 0001722188 00000 n 0001722426 00000 n 0001722663 00000 n 0001722900 00000 n 0001723137 00000 n 0001723379 00000 n 0001723618 00000 n 0001723857 00000 n 0001724096 00000 n 0001724333 00000 n 0001724572 00000 n 0001724811 00000 n 0001725050 00000 n 0001725292 00000 n 0001725531 00000 n 0001725771 00000 n 0001726008 00000 n 0001726248 00000 n 0001726486 00000 n 0001726724 00000 n 0001726963 00000 n 0001727201 00000 n 0001727438 00000 n 0001727680 00000 n 0001727922 00000 n 0001728164 00000 n 0001728406 00000 n 0001728644 00000 n 0001728883 00000 n 0001729122 00000 n 0001729361 00000 n 0001729599 00000 n 0001729837 00000 n 0001730076 00000 n 0001730313 00000 n 0001730555 00000 n 0001730797 00000 n 0001731041 00000 n 0001731285 00000 n 0001731529 00000 n 0001731773 00000 n 0001732010 00000 n 0001732252 00000 n 0001732489 00000 n 0001732726 00000 n 0001732963 00000 n 0001733201 00000 n 0001733440 00000 n 0001733679 00000 n 0001733921 00000 n 0001734160 00000 n 0001734399 00000 n 0001734638 00000 n 0001734877 00000 n 0001735116 00000 n 0001735355 00000 n 0001735594 00000 n 0001735833 00000 n 0001736072 00000 n 0001736311 00000 n 0001736550 00000 n 0001736788 00000 n 0001737026 00000 n 0001737264 00000 n 0001737502 00000 n 0001737741 00000 n 0001737978 00000 n 0001738216 00000 n 0001738454 00000 n 0001738692 00000 n 0001738929 00000 n 0001739167 00000 n 0001739406 00000 n 0001739645 00000 n 0001739884 00000 n 0001740123 00000 n 0001740362 00000 n 0001740600 00000 n 0001740838 00000 n 0001741076 00000 n 0001741315 00000 n 0001741554 00000 n 0001741793 00000 n 0001742032 00000 n 0001742271 00000 n 0001742510 00000 n 0001742749 00000 n 0001742988 00000 n 0001743227 00000 n 0001743466 00000 n 0001743703 00000 n 0001743942 00000 n 0001744179 00000 n 0001744421 00000 n 0001744663 00000 n 0001744905 00000 n 0001745142 00000 n 0001745381 00000 n 0001745623 00000 n 0000873597 00000 n 0000875183 00000 n 0000875394 00000 n 0001899988 00000 n 0001897626 00000 n 0000875445 00000 n 0001897445 00000 n 0000875511 00000 n 0001897347 00000 n 0000875577 00000 n 0001895898 00000 n 0000875643 00000 n 0001896094 00000 n 0000875709 00000 n 0001897543 00000 n 0000875775 00000 n 0001897249 00000 n 0000875841 00000 n 0001896192 00000 n 0000875907 00000 n 0001896864 00000 n 0000875973 00000 n 0001897056 00000 n 0000876039 00000 n 0001895801 00000 n 0000876105 00000 n 0001896768 00000 n 0000876171 00000 n 0001897152 00000 n 0000876237 00000 n 0001895996 00000 n 0000876303 00000 n 0001896960 00000 n 0000876369 00000 n 0001896672 00000 n 0000876435 00000 n 0001895719 00000 n 0000876501 00000 n 0001896480 00000 n 0000876567 00000 n 0001896384 00000 n 0000876633 00000 n 0001896288 00000 n 0000876699 00000 n 0001896576 00000 n 0001899861 00000 n 0000876765 00000 n 0001899204 00000 n 0000876833 00000 n 0001899396 00000 n 0000876901 00000 n 0001898820 00000 n 0000876969 00000 n 0001898724 00000 n 0000877037 00000 n 0001898532 00000 n 0000877105 00000 n 0001898628 00000 n 0000877173 00000 n 0001899492 00000 n 0000877241 00000 n 0001899588 00000 n 0000877309 00000 n 0001898436 00000 n 0000877377 00000 n 0001899300 00000 n 0000877445 00000 n 0001898916 00000 n 0000877513 00000 n 0001899108 00000 n 0000877581 00000 n 0001898340 00000 n 0000877649 00000 n 0001898244 00000 n 0000877717 00000 n 0001898047 00000 n 0000877784 00000 n 0001897765 00000 n 0000877851 00000 n 0001899012 00000 n 0000877919 00000 n 0001897946 00000 n 0000877986 00000 n 0001897845 00000 n 0000878053 00000 n 0001899780 00000 n 0000878121 00000 n 0001899684 00000 n 0000878189 00000 n 0001898148 00000 n 0000878256 00000 n 0000928203 00000 n 0001379865 00000 n 0001379996 00000 n 0001380128 00000 n 0001380259 00000 n 0001380390 00000 n 0001380521 00000 n 0001380652 00000 n 0001380783 00000 n 0001380914 00000 n 0001381045 00000 n 0001381177 00000 n 0001381308 00000 n 0001381439 00000 n 0001381570 00000 n 0001381701 00000 n 0001381832 00000 n 0001381963 00000 n 0001382094 00000 n 0001382225 00000 n 0001382356 00000 n 0001745862 00000 n 0001746063 00000 n 0001746263 00000 n 0001746469 00000 n 0001746669 00000 n 0001746867 00000 n 0001747065 00000 n 0001747271 00000 n 0001747477 00000 n 0001747675 00000 n 0001747960 00000 n 0001748245 00000 n 0001748483 00000 n 0001748721 00000 n 0001748955 00000 n 0001749189 00000 n 0001749423 00000 n 0001749657 00000 n 0001749890 00000 n 0001750124 00000 n 0001750358 00000 n 0001750592 00000 n 0001750825 00000 n 0001751063 00000 n 0001751301 00000 n 0001751539 00000 n 0001751777 00000 n 0001752010 00000 n 0001752248 00000 n 0001752481 00000 n 0001752719 00000 n 0001752952 00000 n 0001753190 00000 n 0001753424 00000 n 0001753662 00000 n 0001753896 00000 n 0001754134 00000 n 0001754372 00000 n 0001754610 00000 n 0001754843 00000 n 0001755081 00000 n 0001755315 00000 n 0001755554 00000 n 0001755793 00000 n 0001756032 00000 n 0001756271 00000 n 0001756510 00000 n 0001756749 00000 n 0001756988 00000 n 0001757222 00000 n 0001757455 00000 n 0001757694 00000 n 0001757928 00000 n 0001758162 00000 n 0001758395 00000 n 0001758628 00000 n 0001758861 00000 n 0001759095 00000 n 0001759334 00000 n 0001759572 00000 n 0001759805 00000 n 0001760044 00000 n 0001760283 00000 n 0001760522 00000 n 0000928227 00000 n 0000929003 00000 n 0000929214 00000 n 0001903158 00000 n 0001902046 00000 n 0000929265 00000 n 0001900424 00000 n 0000929331 00000 n 0001901963 00000 n 0000929397 00000 n 0001900520 00000 n 0000929463 00000 n 0001900808 00000 n 0000929529 00000 n 0001900616 00000 n 0000929595 00000 n 0001900232 00000 n 0000929661 00000 n 0001900904 00000 n 0000929727 00000 n 0001900150 00000 n 0000929793 00000 n 0001900712 00000 n 0000929859 00000 n 0001901865 00000 n 0000929925 00000 n 0001901096 00000 n 0000929991 00000 n 0001900328 00000 n 0000930057 00000 n 0001901192 00000 n 0000930123 00000 n 0001901480 00000 n 0000930189 00000 n 0001901288 00000 n 0000930255 00000 n 0001901576 00000 n 0000930321 00000 n 0001901000 00000 n 0000930387 00000 n 0001901384 00000 n 0000930453 00000 n 0001901672 00000 n 0000930519 00000 n 0001901768 00000 n 0001903032 00000 n 0000930585 00000 n 0001902473 00000 n 0000930652 00000 n 0001902569 00000 n 0000930720 00000 n 0001902185 00000 n 0000930787 00000 n 0001902761 00000 n 0000930855 00000 n 0001902665 00000 n 0000930923 00000 n 0001902857 00000 n 0000930990 00000 n 0001902271 00000 n 0000931057 00000 n 0001902372 00000 n 0000931124 00000 n 0001902952 00000 n 0000931191 00000 n 0000969521 00000 n 0001382487 00000 n 0001382619 00000 n 0001382750 00000 n 0001382881 00000 n 0001383012 00000 n 0001383143 00000 n 0001383274 00000 n 0001383405 00000 n 0001383536 00000 n 0001383667 00000 n 0001383798 00000 n 0001383930 00000 n 0001384061 00000 n 0001384192 00000 n 0001760755 00000 n 0001760955 00000 n 0001761155 00000 n 0001761361 00000 n 0001761562 00000 n 0001761763 00000 n 0001761963 00000 n 0001762169 00000 n 0001762369 00000 n 0001762575 00000 n 0001762813 00000 n 0001763051 00000 n 0001763288 00000 n 0001763527 00000 n 0001763766 00000 n 0001764005 00000 n 0001764238 00000 n 0001764471 00000 n 0001764704 00000 n 0001764950 00000 n 0001765192 00000 n 0001765436 00000 n 0001765686 00000 n 0001765930 00000 n 0001766172 00000 n 0001766409 00000 n 0001766648 00000 n 0001766887 00000 n 0001767126 00000 n 0001767363 00000 n 0001767600 00000 n 0001767839 00000 n 0001768072 00000 n 0001768309 00000 n 0001768548 00000 n 0001768787 00000 n 0000969545 00000 n 0000970015 00000 n 0000970226 00000 n 0001905750 00000 n 0001904638 00000 n 0000970277 00000 n 0001904457 00000 n 0000970343 00000 n 0001903315 00000 n 0000970409 00000 n 0001903880 00000 n 0000970475 00000 n 0001903784 00000 n 0000970541 00000 n 0001904264 00000 n 0000970607 00000 n 0001903976 00000 n 0000970673 00000 n 0001904168 00000 n 0000970739 00000 n 0001904072 00000 n 0000970805 00000 n 0001904360 00000 n 0000970871 00000 n 0001903688 00000 n 0000970937 00000 n 0001904555 00000 n 0000971003 00000 n 0001903592 00000 n 0000971069 00000 n 0001903397 00000 n 0000971135 00000 n 0001903494 00000 n 0001905624 00000 n 0000971201 00000 n 0001905256 00000 n 0000971269 00000 n 0001905352 00000 n 0000971337 00000 n 0001904958 00000 n 0000971404 00000 n 0001905544 00000 n 0000971472 00000 n 0001905160 00000 n 0000971539 00000 n 0001905448 00000 n 0000971607 00000 n 0001905059 00000 n 0000971674 00000 n 0001904777 00000 n 0000971741 00000 n 0001904857 00000 n 0000971808 00000 n 0001033657 00000 n 0001384324 00000 n 0001384457 00000 n 0001384590 00000 n 0001384723 00000 n 0001384856 00000 n 0001384989 00000 n 0001385122 00000 n 0001385255 00000 n 0001385388 00000 n 0001385521 00000 n 0001385654 00000 n 0001385787 00000 n 0001385920 00000 n 0001386053 00000 n 0001386186 00000 n 0001386319 00000 n 0001386452 00000 n 0001386585 00000 n 0001386718 00000 n 0001386851 00000 n 0001386984 00000 n 0001387117 00000 n 0001387250 00000 n 0001387383 00000 n 0001387516 00000 n 0001387649 00000 n 0001387782 00000 n 0001387915 00000 n 0001388048 00000 n 0001388181 00000 n 0001388314 00000 n 0001388447 00000 n 0001388580 00000 n 0001388713 00000 n 0001769026 00000 n 0001769225 00000 n 0001769424 00000 n 0001769623 00000 n 0001769822 00000 n 0001770021 00000 n 0001770220 00000 n 0001770419 00000 n 0001770618 00000 n 0001770817 00000 n 0001771016 00000 n 0001771248 00000 n 0001771477 00000 n 0001771706 00000 n 0001771938 00000 n 0001772170 00000 n 0001772399 00000 n 0001772631 00000 n 0001772863 00000 n 0001773092 00000 n 0001773323 00000 n 0001773552 00000 n 0001773781 00000 n 0001774011 00000 n 0001774240 00000 n 0001774469 00000 n 0001774698 00000 n 0001774927 00000 n 0001775157 00000 n 0001775387 00000 n 0001775617 00000 n 0001775848 00000 n 0001776077 00000 n 0001776308 00000 n 0001776540 00000 n 0001776771 00000 n 0001776993 00000 n 0001777224 00000 n 0001777455 00000 n 0001777687 00000 n 0001777919 00000 n 0001778150 00000 n 0001778379 00000 n 0001778601 00000 n 0001778830 00000 n 0001779061 00000 n 0001779293 00000 n 0001779524 00000 n 0001779755 00000 n 0001779986 00000 n 0001780208 00000 n 0001780439 00000 n 0001780670 00000 n 0001780901 00000 n 0001781130 00000 n 0001781362 00000 n 0001781584 00000 n 0001781806 00000 n 0001782037 00000 n 0001782268 00000 n 0001782499 00000 n 0001782730 00000 n 0001782962 00000 n 0001783184 00000 n 0001783406 00000 n 0001783637 00000 n 0001783859 00000 n 0001784090 00000 n 0001784321 00000 n 0001784552 00000 n 0001784783 00000 n 0001785015 00000 n 0001785244 00000 n 0001785475 00000 n 0001033681 00000 n 0001034673 00000 n 0001034884 00000 n 0001910468 00000 n 0001909282 00000 n 0001034935 00000 n 0001906301 00000 n 0001035002 00000 n 0001907756 00000 n 0001035069 00000 n 0001907465 00000 n 0001035136 00000 n 0001906980 00000 n 0001035203 00000 n 0001906592 00000 n 0001035270 00000 n 0001906204 00000 n 0001035337 00000 n 0001907368 00000 n 0001035404 00000 n 0001908241 00000 n 0001035471 00000 n 0001906883 00000 n 0001035538 00000 n 0001906689 00000 n 0001035605 00000 n 0001907853 00000 n 0001035672 00000 n 0001908144 00000 n 0001035739 00000 n 0001907077 00000 n 0001035806 00000 n 0001906398 00000 n 0001035873 00000 n 0001909199 00000 n 0001035941 00000 n 0001906786 00000 n 0001036008 00000 n 0001908338 00000 n 0001036075 00000 n 0001907950 00000 n 0001036142 00000 n 0001906027 00000 n 0001036209 00000 n 0001909009 00000 n 0001036277 00000 n 0001908819 00000 n 0001036345 00000 n 0001908047 00000 n 0001036412 00000 n 0001908914 00000 n 0001036480 00000 n 0001906495 00000 n 0001036547 00000 n 0001908531 00000 n 0001036614 00000 n 0001906107 00000 n 0001036681 00000 n 0001907562 00000 n 0001036748 00000 n 0001907174 00000 n 0001036815 00000 n 0001909104 00000 n 0001036883 00000 n 0001908723 00000 n 0001036950 00000 n 0001908627 00000 n 0001037017 00000 n 0001907271 00000 n 0001037084 00000 n 0001907659 00000 n 0001037151 00000 n 0001908435 00000 n 0001910341 00000 n 0001037218 00000 n 0001909881 00000 n 0001037286 00000 n 0001909421 00000 n 0001037354 00000 n 0001909501 00000 n 0001037422 00000 n 0001909976 00000 n 0001037490 00000 n 0001910071 00000 n 0001037558 00000 n 0001910166 00000 n 0001037626 00000 n 0001910261 00000 n 0001037694 00000 n 0001909596 00000 n 0001037762 00000 n 0001909691 00000 n 0001037830 00000 n 0001909786 00000 n 0001037898 00000 n 0001079019 00000 n 0001388846 00000 n 0001388979 00000 n 0001389112 00000 n 0001389245 00000 n 0001389378 00000 n 0001389511 00000 n 0001389644 00000 n 0001389777 00000 n 0001389910 00000 n 0001390043 00000 n 0001390176 00000 n 0001390309 00000 n 0001390442 00000 n 0001390575 00000 n 0001390708 00000 n 0001390841 00000 n 0001390974 00000 n 0001391107 00000 n 0001785697 00000 n 0001785898 00000 n 0001786099 00000 n 0001786300 00000 n 0001786501 00000 n 0001786702 00000 n 0001786903 00000 n 0001787104 00000 n 0001787305 00000 n 0001787506 00000 n 0001787707 00000 n 0001787945 00000 n 0001788183 00000 n 0001788422 00000 n 0001788660 00000 n 0001788899 00000 n 0001789138 00000 n 0001789376 00000 n 0001789614 00000 n 0001789853 00000 n 0001790075 00000 n 0001790297 00000 n 0001790519 00000 n 0001790751 00000 n 0001790983 00000 n 0001791222 00000 n 0001791444 00000 n 0001791682 00000 n 0001791920 00000 n 0001792158 00000 n 0001792396 00000 n 0001792634 00000 n 0001792873 00000 n 0001793112 00000 n 0001793334 00000 n 0001793572 00000 n 0001793804 00000 n 0001794037 00000 n 0001794269 00000 n 0001794508 00000 n 0001794741 00000 n 0001794963 00000 n 0001795196 00000 n 0001795434 00000 n 0001795667 00000 n 0001795900 00000 n 0001796133 00000 n 0001796367 00000 n 0001796604 00000 n 0001796837 00000 n 0001797070 00000 n 0001797292 00000 n 0001797514 00000 n 0001797753 00000 n 0001797975 00000 n 0001798212 00000 n 0001798450 00000 n 0001798687 00000 n 0001798925 00000 n 0001799163 00000 n 0001799402 00000 n 0001799641 00000 n 0001799880 00000 n 0001800118 00000 n 0001079043 00000 n 0001079801 00000 n 0001080012 00000 n 0001913536 00000 n 0001912330 00000 n 0001080063 00000 n 0001911771 00000 n 0001080130 00000 n 0001911579 00000 n 0001080197 00000 n 0001910627 00000 n 0001080264 00000 n 0001911095 00000 n 0001080331 00000 n 0001911483 00000 n 0001080398 00000 n 0001911192 00000 n 0001080465 00000 n 0001911675 00000 n 0001080532 00000 n 0001912152 00000 n 0001080600 00000 n 0001912247 00000 n 0001080668 00000 n 0001912057 00000 n 0001080736 00000 n 0001911962 00000 n 0001080804 00000 n 0001911867 00000 n 0001080872 00000 n 0001910901 00000 n 0001080939 00000 n 0001910804 00000 n 0001081006 00000 n 0001911386 00000 n 0001081073 00000 n 0001910707 00000 n 0001081140 00000 n 0001910998 00000 n 0001081207 00000 n 0001911289 00000 n 0001913409 00000 n 0001081274 00000 n 0001912469 00000 n 0001081342 00000 n 0001912551 00000 n 0001081410 00000 n 0001912648 00000 n 0001081478 00000 n 0001912842 00000 n 0001081546 00000 n 0001912745 00000 n 0001081614 00000 n 0001913036 00000 n 0001081682 00000 n 0001913133 00000 n 0001081750 00000 n 0001913230 00000 n 0001081818 00000 n 0001913327 00000 n 0001081886 00000 n 0001912939 00000 n 0001081954 00000 n 0001195745 00000 n 0001391240 00000 n 0001391373 00000 n 0001391506 00000 n 0001391639 00000 n 0001391772 00000 n 0001391905 00000 n 0001392038 00000 n 0001392171 00000 n 0001392304 00000 n 0001392437 00000 n 0001392570 00000 n 0001392703 00000 n 0001392836 00000 n 0001392969 00000 n 0001393102 00000 n 0001393235 00000 n 0001393368 00000 n 0001393501 00000 n 0001393634 00000 n 0001393767 00000 n 0001393900 00000 n 0001394033 00000 n 0001394166 00000 n 0001394299 00000 n 0001394432 00000 n 0001394565 00000 n 0001394698 00000 n 0001394831 00000 n 0001394964 00000 n 0001395097 00000 n 0001395230 00000 n 0001395363 00000 n 0001395496 00000 n 0001395629 00000 n 0001395762 00000 n 0001395895 00000 n 0001396028 00000 n 0001396161 00000 n 0001396294 00000 n 0001396427 00000 n 0001396560 00000 n 0001396693 00000 n 0001396826 00000 n 0001396959 00000 n 0001397092 00000 n 0001397225 00000 n 0001397358 00000 n 0001397491 00000 n 0001397624 00000 n 0001397757 00000 n 0001397890 00000 n 0001398023 00000 n 0001398156 00000 n 0001398289 00000 n 0001398422 00000 n 0001398555 00000 n 0001398688 00000 n 0001398821 00000 n 0001398954 00000 n 0001399087 00000 n 0001399220 00000 n 0001399353 00000 n 0001399486 00000 n 0001399619 00000 n 0001399752 00000 n 0001399885 00000 n 0001400018 00000 n 0001400151 00000 n 0001400284 00000 n 0001400417 00000 n 0001400550 00000 n 0001400683 00000 n 0001400816 00000 n 0001400949 00000 n 0001401082 00000 n 0001401215 00000 n 0001401348 00000 n 0001401481 00000 n 0001401614 00000 n 0001401747 00000 n 0001401880 00000 n 0001402013 00000 n 0001402146 00000 n 0001800356 00000 n 0001800555 00000 n 0001800754 00000 n 0001800953 00000 n 0001801152 00000 n 0001801351 00000 n 0001801550 00000 n 0001801749 00000 n 0001801948 00000 n 0001802147 00000 n 0001802346 00000 n 0001802545 00000 n 0001802744 00000 n 0001802943 00000 n 0001803142 00000 n 0001803341 00000 n 0001803540 00000 n 0001803739 00000 n 0001803938 00000 n 0001804137 00000 n 0001804336 00000 n 0001804535 00000 n 0001804734 00000 n 0001804933 00000 n 0001805132 00000 n 0001805369 00000 n 0001805606 00000 n 0001805843 00000 n 0001806080 00000 n 0001806317 00000 n 0001806554 00000 n 0001806791 00000 n 0001807028 00000 n 0001807265 00000 n 0001807502 00000 n 0001807739 00000 n 0001807976 00000 n 0001808214 00000 n 0001808452 00000 n 0001808690 00000 n 0001808928 00000 n 0001809165 00000 n 0001809403 00000 n 0001809641 00000 n 0001809879 00000 n 0001810117 00000 n 0001810355 00000 n 0001810593 00000 n 0001810831 00000 n 0001811069 00000 n 0001811307 00000 n 0001811545 00000 n 0001811783 00000 n 0001812021 00000 n 0001812257 00000 n 0001812493 00000 n 0001812729 00000 n 0001812965 00000 n 0001813201 00000 n 0001813437 00000 n 0001813675 00000 n 0001813912 00000 n 0001814150 00000 n 0001814387 00000 n 0001814624 00000 n 0001814861 00000 n 0001815098 00000 n 0001815336 00000 n 0001815574 00000 n 0001815811 00000 n 0001816049 00000 n 0001816286 00000 n 0001816523 00000 n 0001816761 00000 n 0001816999 00000 n 0001817237 00000 n 0001817475 00000 n 0001817713 00000 n 0001817951 00000 n 0001818189 00000 n 0001818427 00000 n 0001818665 00000 n 0001818903 00000 n 0001819141 00000 n 0001819379 00000 n 0001819617 00000 n 0001819855 00000 n 0001820093 00000 n 0001820331 00000 n 0001820569 00000 n 0001820807 00000 n 0001821045 00000 n 0001821283 00000 n 0001821521 00000 n 0001821759 00000 n 0001821997 00000 n 0001822235 00000 n 0001822473 00000 n 0001822710 00000 n 0001822947 00000 n 0001823184 00000 n 0001823421 00000 n 0001823659 00000 n 0001823897 00000 n 0001824135 00000 n 0001824373 00000 n 0001824611 00000 n 0001824847 00000 n 0001825083 00000 n 0001825319 00000 n 0001825555 00000 n 0001825793 00000 n 0001826031 00000 n 0001826269 00000 n 0001826507 00000 n 0001826745 00000 n 0001826983 00000 n 0001827221 00000 n 0001827459 00000 n 0001827697 00000 n 0001827935 00000 n 0001828173 00000 n 0001828410 00000 n 0001828648 00000 n 0001828886 00000 n 0001829124 00000 n 0001829361 00000 n 0001829599 00000 n 0001829836 00000 n 0001830073 00000 n 0001830311 00000 n 0001830549 00000 n 0001830787 00000 n 0001831024 00000 n 0001831262 00000 n 0001831500 00000 n 0001831738 00000 n 0001831976 00000 n 0001832214 00000 n 0001832452 00000 n 0001832690 00000 n 0001832928 00000 n 0001833166 00000 n 0001833403 00000 n 0001833641 00000 n 0001833879 00000 n 0001834116 00000 n 0001834354 00000 n 0001834592 00000 n 0001834830 00000 n 0001835068 00000 n 0001835304 00000 n 0001835540 00000 n 0001835776 00000 n 0001836012 00000 n 0001836250 00000 n 0001836488 00000 n 0001836726 00000 n 0001836964 00000 n 0001837202 00000 n 0001837440 00000 n 0001837678 00000 n 0001837916 00000 n 0001195770 00000 n 0001198004 00000 n 0001198215 00000 n 0001924409 00000 n 0001921893 00000 n 0001198266 00000 n 0001921710 00000 n 0001198333 00000 n 0001919334 00000 n 0001198401 00000 n 0001921809 00000 n 0001198468 00000 n 0001921512 00000 n 0001198535 00000 n 0001921611 00000 n 0001198602 00000 n 0001921314 00000 n 0001198669 00000 n 0001921413 00000 n 0001198736 00000 n 0001914081 00000 n 0001198804 00000 n 0001913782 00000 n 0001198872 00000 n 0001914780 00000 n 0001198940 00000 n 0001914879 00000 n 0001199008 00000 n 0001915176 00000 n 0001199076 00000 n 0001915968 00000 n 0001199144 00000 n 0001918146 00000 n 0001199212 00000 n 0001918938 00000 n 0001199280 00000 n 0001919433 00000 n 0001199348 00000 n 0001919037 00000 n 0001199416 00000 n 0001915275 00000 n 0001199484 00000 n 0001914381 00000 n 0001199552 00000 n 0001915473 00000 n 0001199620 00000 n 0001914481 00000 n 0001199688 00000 n 0001914681 00000 n 0001199756 00000 n 0001915671 00000 n 0001199824 00000 n 0001918443 00000 n 0001199892 00000 n 0001918641 00000 n 0001199960 00000 n 0001918047 00000 n 0001200028 00000 n 0001918344 00000 n 0001200096 00000 n 0001918542 00000 n 0001200164 00000 n 0001915869 00000 n 0001200232 00000 n 0001915374 00000 n 0001200300 00000 n 0001914281 00000 n 0001200368 00000 n 0001913697 00000 n 0001200436 00000 n 0001920225 00000 n 0001200503 00000 n 0001917552 00000 n 0001200571 00000 n 0001917255 00000 n 0001200639 00000 n 0001917651 00000 n 0001200707 00000 n 0001917354 00000 n 0001200775 00000 n 0001917453 00000 n 0001200843 00000 n 0001917156 00000 n 0001200911 00000 n 0001920423 00000 n 0001200978 00000 n 0001920126 00000 n 0001201045 00000 n 0001920324 00000 n 0001201112 00000 n 0001913881 00000 n 0001201180 00000 n 0001920621 00000 n 0001201247 00000 n 0001917849 00000 n 0001201315 00000 n 0001918245 00000 n 0001201383 00000 n 0001917948 00000 n 0001201451 00000 n 0001920027 00000 n 0001201518 00000 n 0001915572 00000 n 0001201586 00000 n 0001915770 00000 n 0001201654 00000 n 0001920522 00000 n 0001201721 00000 n 0001913981 00000 n 0001201789 00000 n 0001919730 00000 n 0001201856 00000 n 0001919532 00000 n 0001201923 00000 n 0001919829 00000 n 0001201990 00000 n 0001919631 00000 n 0001202057 00000 n 0001914978 00000 n 0001202125 00000 n 0001915077 00000 n 0001202193 00000 n 0001919928 00000 n 0001202260 00000 n 0001916067 00000 n 0001202328 00000 n 0001917750 00000 n 0001202396 00000 n 0001916265 00000 n 0001202464 00000 n 0001918740 00000 n 0001202532 00000 n 0001918839 00000 n 0001202600 00000 n 0001920720 00000 n 0001202667 00000 n 0001921017 00000 n 0001202734 00000 n 0001921116 00000 n 0001202801 00000 n 0001921215 00000 n 0001202868 00000 n 0001914581 00000 n 0001202936 00000 n 0001919235 00000 n 0001203004 00000 n 0001914181 00000 n 0001203072 00000 n 0001916562 00000 n 0001203140 00000 n 0001916166 00000 n 0001203208 00000 n 0001916661 00000 n 0001203276 00000 n 0001920819 00000 n 0001203343 00000 n 0001917057 00000 n 0001203411 00000 n 0001919136 00000 n 0001203479 00000 n 0001916364 00000 n 0001203547 00000 n 0001916463 00000 n 0001203615 00000 n 0001920918 00000 n 0001203682 00000 n 0001916760 00000 n 0001203750 00000 n 0001916859 00000 n 0001203818 00000 n 0001916958 00000 n 0001924282 00000 n 0001203886 00000 n 0001922682 00000 n 0001203954 00000 n 0001924202 00000 n 0001204022 00000 n 0001923062 00000 n 0001204090 00000 n 0001924012 00000 n 0001204158 00000 n 0001922967 00000 n 0001204226 00000 n 0001923727 00000 n 0001204294 00000 n 0001923632 00000 n 0001204362 00000 n 0001922872 00000 n 0001204430 00000 n 0001923252 00000 n 0001204498 00000 n 0001923157 00000 n 0001204566 00000 n 0001922777 00000 n 0001204634 00000 n 0001923347 00000 n 0001204702 00000 n 0001922032 00000 n 0001204770 00000 n 0001923442 00000 n 0001204838 00000 n 0001923537 00000 n 0001204906 00000 n 0001922587 00000 n 0001204974 00000 n 0001922492 00000 n 0001205042 00000 n 0001923822 00000 n 0001205110 00000 n 0001923917 00000 n 0001205178 00000 n 0001922397 00000 n 0001205246 00000 n 0001922302 00000 n 0001205314 00000 n 0001924107 00000 n 0001205382 00000 n 0001922207 00000 n 0001205450 00000 n 0001922112 00000 n 0001205518 00000 n 0001241862 00000 n 0001402279 00000 n 0001402412 00000 n 0001402545 00000 n 0001402678 00000 n 0001402811 00000 n 0001402944 00000 n 0001403077 00000 n 0001403210 00000 n 0001403343 00000 n 0001403476 00000 n 0001403609 00000 n 0001403742 00000 n 0001403875 00000 n 0001404007 00000 n 0001404139 00000 n 0001404271 00000 n 0001404403 00000 n 0001404535 00000 n 0001404667 00000 n 0001404799 00000 n 0001838154 00000 n 0001838354 00000 n 0001838554 00000 n 0001838754 00000 n 0001838954 00000 n 0001839154 00000 n 0001839354 00000 n 0001839554 00000 n 0001839754 00000 n 0001839976 00000 n 0001840198 00000 n 0001840420 00000 n 0001840642 00000 n 0001840864 00000 n 0001841086 00000 n 0001841308 00000 n 0001841530 00000 n 0001841752 00000 n 0001841974 00000 n 0001842196 00000 n 0001842418 00000 n 0001842640 00000 n 0001842862 00000 n 0001843084 00000 n 0001843306 00000 n 0001843527 00000 n 0001843749 00000 n 0001843971 00000 n 0001844229 00000 n 0001844450 00000 n 0001844708 00000 n 0001844929 00000 n 0001845150 00000 n 0001845372 00000 n 0001845594 00000 n 0001845816 00000 n 0001846037 00000 n 0001846258 00000 n 0001846479 00000 n 0001846701 00000 n 0001846922 00000 n 0001847144 00000 n 0001847366 00000 n 0001847588 00000 n 0001847810 00000 n 0001848032 00000 n 0001848254 00000 n 0001848476 00000 n 0001848698 00000 n 0001848920 00000 n 0001849142 00000 n 0001849364 00000 n 0001849586 00000 n 0001849844 00000 n 0001850066 00000 n 0001850288 00000 n 0001850510 00000 n 0001850768 00000 n 0001850990 00000 n 0001851212 00000 n 0001241886 00000 n 0001242626 00000 n 0001242837 00000 n 0001927593 00000 n 0001926590 00000 n 0001242888 00000 n 0001926401 00000 n 0001242956 00000 n 0001925993 00000 n 0001243024 00000 n 0001925891 00000 n 0001243092 00000 n 0001926197 00000 n 0001243160 00000 n 0001925687 00000 n 0001243228 00000 n 0001925381 00000 n 0001243296 00000 n 0001926503 00000 n 0001243364 00000 n 0001926095 00000 n 0001243432 00000 n 0001925789 00000 n 0001243500 00000 n 0001925585 00000 n 0001243568 00000 n 0001925483 00000 n 0001243636 00000 n 0001926299 00000 n 0001243704 00000 n 0001924969 00000 n 0001243770 00000 n 0001925175 00000 n 0001243836 00000 n 0001924660 00000 n 0001243902 00000 n 0001924866 00000 n 0001243968 00000 n 0001925278 00000 n 0001244034 00000 n 0001924763 00000 n 0001244100 00000 n 0001925072 00000 n 0001244166 00000 n 0001924572 00000 n 0001927467 00000 n 0001244232 00000 n 0001927002 00000 n 0001244300 00000 n 0001927290 00000 n 0001244368 00000 n 0001927386 00000 n 0001244436 00000 n 0001926906 00000 n 0001244504 00000 n 0001927098 00000 n 0001244572 00000 n 0001926729 00000 n 0001244640 00000 n 0001927194 00000 n 0001244708 00000 n 0001926810 00000 n 0001244776 00000 n 0001285044 00000 n 0001404931 00000 n 0001405064 00000 n 0001405197 00000 n 0001405330 00000 n 0001405463 00000 n 0001405596 00000 n 0001405729 00000 n 0001405862 00000 n 0001405994 00000 n 0001406127 00000 n 0001406260 00000 n 0001406393 00000 n 0001406526 00000 n 0001406659 00000 n 0001406791 00000 n 0001406923 00000 n 0001407055 00000 n 0001407187 00000 n 0001407319 00000 n 0001407451 00000 n 0001851434 00000 n 0001851635 00000 n 0001851837 00000 n 0001852038 00000 n 0001852240 00000 n 0001852441 00000 n 0001852643 00000 n 0001852844 00000 n 0001853046 00000 n 0001853268 00000 n 0001853490 00000 n 0001853712 00000 n 0001853934 00000 n 0001854156 00000 n 0001854378 00000 n 0001854600 00000 n 0001854822 00000 n 0001855044 00000 n 0001855266 00000 n 0001855487 00000 n 0001855709 00000 n 0001855931 00000 n 0001856153 00000 n 0001856375 00000 n 0001856597 00000 n 0001856819 00000 n 0001857041 00000 n 0001857299 00000 n 0001857557 00000 n 0001857779 00000 n 0001858001 00000 n 0001858222 00000 n 0001858443 00000 n 0001858664 00000 n 0001858885 00000 n 0001859107 00000 n 0001859329 00000 n 0001859551 00000 n 0001859773 00000 n 0001859995 00000 n 0001860217 00000 n 0001860439 00000 n 0001860661 00000 n 0001860883 00000 n 0001861105 00000 n 0001861327 00000 n 0001861549 00000 n 0001861771 00000 n 0001861993 00000 n 0001862214 00000 n 0001862436 00000 n 0001862658 00000 n 0001862880 00000 n 0001863102 00000 n 0001863360 00000 n 0001863618 00000 n 0001863839 00000 n 0001864061 00000 n 0001864283 00000 n 0001864505 00000 n 0001285068 00000 n 0001285808 00000 n 0001286019 00000 n 0001930798 00000 n 0001929783 00000 n 0001286070 00000 n 0001928574 00000 n 0001286138 00000 n 0001929594 00000 n 0001286206 00000 n 0001929390 00000 n 0001286274 00000 n 0001929186 00000 n 0001286342 00000 n 0001929696 00000 n 0001286410 00000 n 0001928880 00000 n 0001286478 00000 n 0001929084 00000 n 0001286546 00000 n 0001928265 00000 n 0001286612 00000 n 0001928676 00000 n 0001286680 00000 n 0001928778 00000 n 0001286748 00000 n 0001929492 00000 n 0001286816 00000 n 0001928982 00000 n 0001286884 00000 n 0001929288 00000 n 0001286952 00000 n 0001927765 00000 n 0001287018 00000 n 0001928471 00000 n 0001287084 00000 n 0001927956 00000 n 0001287150 00000 n 0001928162 00000 n 0001287216 00000 n 0001928368 00000 n 0001287282 00000 n 0001927853 00000 n 0001287348 00000 n 0001928059 00000 n 0001930672 00000 n 0001287414 00000 n 0001929922 00000 n 0001287482 00000 n 0001930295 00000 n 0001287550 00000 n 0001930004 00000 n 0001287618 00000 n 0001930589 00000 n 0001287686 00000 n 0001930198 00000 n 0001287754 00000 n 0001930491 00000 n 0001287822 00000 n 0001930101 00000 n 0001287890 00000 n 0001930393 00000 n 0001287958 00000 n 0001288067 00000 n 0001288184 00000 n 0001288298 00000 n 0001865567 00000 n 0001931065 00000 n 0001931156 00000 n trailer << /Size 4268 /Root 4267 0 R /Info 4265 0 R >> startxref 1931301 %%EOF prjpeppercorn-1.12/schematics/cpe/cpe_comb.kicad_sch000077500000000000000000004415371514752025000226430ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "83e7b33c-0213-4235-a9b9-80663ccf0ac8") (paper "A4") (title_block (title "CPE: Default Mode") (rev "4") (company "YosysHQ") ) (lib_symbols (symbol "AND_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_1_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_2_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_1_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_2_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_2_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_3_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_3_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OR_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_2_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR3_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR3_1_0_1" (arc (start -3.048 3.81) (mid 0.5351 3.0623) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.6095 -2.8827) (end -2.794 -3.556) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "XOR3_1_1_1" (arc (start -3.81 3.81) (mid -2.464 2.0874) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.9759 0.0685) (mid -2.4353 -2.0687) (end -3.7813 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.0193 3.7913) (mid -1.6733 2.0687) (end -1.2139 -0.0685) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2139 0.0685) (mid -1.6733 -2.0687) (end -3.0193 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_2_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_3_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:AO21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2 with C_I mux" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2_0_1" (polyline (pts (xy -2.54 -2.54) (xy -2.54 2.54) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XNOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XNOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (text "C_I2" (exclude_from_sim no) (at 30.48 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "082ced08-cf00-4b31-bfa1-8ad1ceaa84ee") ) (text "C_I1" (exclude_from_sim no) (at 30.48 44.704 0) (effects (font (size 1.27 1.27) ) ) (uuid "3e71dfda-3a19-47d3-bc0a-dc4b26d7286a") ) (text "L03" (exclude_from_sim no) (at 35.56 84.074 0) (effects (font (size 1.27 1.27) ) ) (uuid "52d5ffde-3aea-4871-8d69-010e12934046") ) (text "L02" (exclude_from_sim no) (at 35.56 71.374 0) (effects (font (size 1.27 1.27) ) ) (uuid "658ef318-35df-4d65-a4a7-70d6ab990bc4") ) (text "L11" (exclude_from_sim no) (at 68.58 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "6bfb54cb-f7be-412e-90c0-a881205ccdae") ) (text "GENERATE" (exclude_from_sim no) (at 127.254 82.804 0) (effects (font (size 1.27 1.27) ) ) (uuid "7f3840b4-bb72-4fdb-8114-b3805e91efab") ) (text "C_I3" (exclude_from_sim no) (at 30.48 70.104 0) (effects (font (size 1.27 1.27) ) ) (uuid "8e845018-92aa-4e5c-aaaa-5f6ea2d26ff2") ) (text "L10" (exclude_from_sim no) (at 68.58 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "91c583a5-f360-44ce-b71f-1c5a2be1688f") ) (text "PROPAGATE" (exclude_from_sim no) (at 127 46.228 0) (effects (font (size 1.27 1.27) ) ) (uuid "93834f67-6a7b-4025-a0f1-33230f99d1d2") ) (text "L01" (exclude_from_sim no) (at 35.56 58.674 0) (effects (font (size 1.27 1.27) ) ) (uuid "ac5067a9-68c4-496d-9694-d28751e12128") ) (text "L20" (exclude_from_sim no) (at 104.14 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "ade375e6-a411-47ea-be23-1028e96e029a") ) (text "C_I4" (exclude_from_sim no) (at 30.48 82.804 0) (effects (font (size 1.27 1.27) ) ) (uuid "df28fe8a-08f4-4572-9296-2ee27d9f7d65") ) (text "L00" (exclude_from_sim no) (at 35.56 45.974 0) (effects (font (size 1.27 1.27) ) ) (uuid "f33d1b7a-1885-4605-ad26-72e15700f26d") ) (junction (at 111.76 115.57) (diameter 0) (color 0 0 0 0) (uuid "045b95f2-e489-42d5-b33e-2711bbcf9d17") ) (junction (at 50.8 54.61) (diameter 0) (color 0 0 0 0) (uuid "120ef979-0c63-42da-a6bd-fca7d55f2c51") ) (junction (at 121.92 130.81) (diameter 0) (color 0 0 0 0) (uuid "37813921-c120-4335-bd31-30cccd78899e") ) (junction (at 99.06 52.07) (diameter 0) (color 0 0 0 0) (uuid "52cc21f5-4af5-4f49-b5f7-01b03ec729fe") ) (junction (at 121.92 114.3) (diameter 0) (color 0 0 0 0) (uuid "5537596f-6794-4863-be2b-4725fe8e90fc") ) (junction (at 53.34 67.31) (diameter 0) (color 0 0 0 0) (uuid "56f6b8df-8889-408f-9a46-7da26855e1db") ) (junction (at 111.76 135.89) (diameter 0) (color 0 0 0 0) (uuid "591199f8-54f6-4fae-8e5a-c61763692ab7") ) (junction (at 76.2 53.34) (diameter 0) (color 0 0 0 0) (uuid "72733d36-0ea8-4924-89a1-7dfdd048a933") ) (junction (at 78.74 68.58) (diameter 0) (color 0 0 0 0) (uuid "742501e7-df9b-40ff-992f-2b1301f56e47") ) (junction (at 48.26 52.07) (diameter 0) (color 0 0 0 0) (uuid "7ccc14be-69f1-45cf-bd8d-c13839b3db82") ) (junction (at 83.82 121.92) (diameter 0) (color 0 0 0 0) (uuid "8c77e24c-80fa-4e70-8059-df1c00db540d") ) (junction (at 111.76 121.92) (diameter 0) (color 0 0 0 0) (uuid "ba078d7a-a817-4fda-8851-c1fc136116b8") ) (junction (at 129.54 128.27) (diameter 0) (color 0 0 0 0) (uuid "cf83b8c1-4ef4-4c08-a9e5-9a078c59027f") ) (junction (at 114.3 130.81) (diameter 0) (color 0 0 0 0) (uuid "f477d7fa-fc79-4402-bed7-1e146e1a1da5") ) (wire (pts (xy 50.8 54.61) (xy 50.8 85.09) ) (stroke (width 0) (type default) ) (uuid "02312699-af10-4925-923e-b532e17a0ddc") ) (wire (pts (xy 40.64 52.07) (xy 40.64 41.91) ) (stroke (width 0) (type default) ) (uuid "0286ee67-af9d-4e7a-aa39-69664853e06e") ) (wire (pts (xy 93.98 52.07) (xy 99.06 52.07) ) (stroke (width 0) (type default) ) (uuid "03069910-d784-4388-a238-a84f1bbcda3c") ) (wire (pts (xy 78.74 40.64) (xy 83.82 40.64) ) (stroke (width 0) (type default) ) (uuid "0997834b-1761-49c6-97a5-ab3b968efec3") ) (wire (pts (xy 40.64 69.85) (xy 40.64 80.01) ) (stroke (width 0) (type default) ) (uuid "0e3fbb86-a842-46ba-bb75-1d726d5698b6") ) (wire (pts (xy 129.54 128.27) (xy 129.54 133.35) ) (stroke (width 0) (type default) ) (uuid "0eca3b61-d647-4b40-9526-997306ec7f6d") ) (wire (pts (xy 93.98 69.85) (xy 99.06 69.85) ) (stroke (width 0) (type default) ) (uuid "1167924f-2f3c-4c7a-9745-492f409784fa") ) (wire (pts (xy 25.4 53.34) (xy 30.48 53.34) ) (stroke (width 0) (type default) ) (uuid "11c056db-a0c6-49a8-b3f8-ed1dd0b54934") ) (wire (pts (xy 83.82 121.92) (xy 83.82 130.81) ) (stroke (width 0) (type default) ) (uuid "1a5154f7-e30f-4d69-b0aa-46809339dfe1") ) (wire (pts (xy 93.98 53.34) (xy 93.98 52.07) ) (stroke (width 0) (type default) ) (uuid "1ab44159-1a7c-4512-a013-703e0625ff36") ) (wire (pts (xy 111.76 119.38) (xy 116.84 119.38) ) (stroke (width 0) (type default) ) (uuid "1e7ed5e5-caa6-44fe-8b4f-7b6587b685bc") ) (wire (pts (xy 111.76 124.46) (xy 116.84 124.46) ) (stroke (width 0) (type default) ) (uuid "201fc17f-d2ec-4f93-8234-3def320544bf") ) (wire (pts (xy 78.74 68.58) (xy 78.74 71.12) ) (stroke (width 0) (type default) ) (uuid "20fbecb0-0241-48e0-8642-b5967e16f2cb") ) (wire (pts (xy 40.64 69.85) (xy 63.5 69.85) ) (stroke (width 0) (type default) ) (uuid "239dd330-1570-458b-9488-2926362d5157") ) (wire (pts (xy 25.4 133.35) (xy 91.44 133.35) ) (stroke (width 0) (type default) ) (uuid "242e9ca8-9343-4d8f-8ef4-1388fe347614") ) (wire (pts (xy 78.74 68.58) (xy 93.98 68.58) ) (stroke (width 0) (type default) ) (uuid "318f9ae0-b951-4e3f-a0dd-03798eb2c3dd") ) (wire (pts (xy 111.76 127) (xy 111.76 135.89) ) (stroke (width 0) (type default) ) (uuid "33383c38-ac3f-43bc-9944-99d939ff4e8e") ) (wire (pts (xy 116.84 127) (xy 111.76 127) ) (stroke (width 0) (type default) ) (uuid "37356445-5bae-46f8-8cd0-917ad842952a") ) (wire (pts (xy 111.76 121.92) (xy 116.84 121.92) ) (stroke (width 0) (type default) ) (uuid "3904fc75-d0e9-42d1-8986-4f4c47137104") ) (wire (pts (xy 40.64 52.07) (xy 48.26 52.07) ) (stroke (width 0) (type default) ) (uuid "39d1ae41-fb8b-4f57-8ac6-af87208e76c7") ) (wire (pts (xy 109.22 68.58) (xy 119.38 68.58) ) (stroke (width 0) (type default) ) (uuid "3e0827f7-8f12-4cad-b192-6b45d39b4890") ) (wire (pts (xy 127 120.65) (xy 149.86 120.65) ) (stroke (width 0) (type default) ) (uuid "3fba3298-0214-42b3-839d-59786af0ad86") ) (wire (pts (xy 121.92 113.03) (xy 129.54 113.03) ) (stroke (width 0) (type default) ) (uuid "4142086c-79af-480b-8b05-d6fada260906") ) (wire (pts (xy 111.76 135.89) (xy 114.3 135.89) ) (stroke (width 0) (type default) ) (uuid "49883a11-e93e-4043-b8db-2d10e15f6ef8") ) (wire (pts (xy 142.24 134.62) (xy 149.86 134.62) ) (stroke (width 0) (type default) ) (uuid "4f43e109-23e4-4dbe-b7f2-78284cf34d84") ) (wire (pts (xy 76.2 53.34) (xy 76.2 73.66) ) (stroke (width 0) (type default) ) (uuid "500103ef-d0ea-43ef-a713-6048ab33556e") ) (wire (pts (xy 76.2 38.1) (xy 76.2 53.34) ) (stroke (width 0) (type default) ) (uuid "52a0b37d-a9cd-4c96-8248-acdb86a952f5") ) (wire (pts (xy 114.3 133.35) (xy 114.3 130.81) ) (stroke (width 0) (type default) ) (uuid "5372e3fa-e5c5-4fcb-9b36-7f7740def71a") ) (wire (pts (xy 76.2 53.34) (xy 93.98 53.34) ) (stroke (width 0) (type default) ) (uuid "53910096-f121-4298-9fe4-2a41a91dd7bc") ) (wire (pts (xy 116.84 52.07) (xy 116.84 53.34) ) (stroke (width 0) (type default) ) (uuid "557e6ad2-885e-4d39-97bf-65f4828b0618") ) (wire (pts (xy 127 125.73) (xy 127 135.89) ) (stroke (width 0) (type default) ) (uuid "56326470-35d2-44ae-b588-13e81fb995ef") ) (wire (pts (xy 99.06 81.28) (xy 132.08 81.28) ) (stroke (width 0) (type default) ) (uuid "5756adb5-72ff-407e-aeb7-7b177bb6d55b") ) (wire (pts (xy 73.66 68.58) (xy 78.74 68.58) ) (stroke (width 0) (type default) ) (uuid "5ac5c057-9034-4b2a-9f9a-a576f22ecdce") ) (wire (pts (xy 99.06 82.55) (xy 99.06 81.28) ) (stroke (width 0) (type default) ) (uuid "5cb69e1f-47cd-4621-89b8-8d1546359fed") ) (wire (pts (xy 99.06 52.07) (xy 99.06 67.31) ) (stroke (width 0) (type default) ) (uuid "603a2799-09cd-43bf-a700-29146a792f7b") ) (wire (pts (xy 119.38 69.85) (xy 132.08 69.85) ) (stroke (width 0) (type default) ) (uuid "60c83a93-5710-490c-81fb-5a3c5ea0c888") ) (wire (pts (xy 111.76 115.57) (xy 111.76 119.38) ) (stroke (width 0) (type default) ) (uuid "615369c7-60b9-42f7-9f08-a351340fd47e") ) (wire (pts (xy 40.64 54.61) (xy 50.8 54.61) ) (stroke (width 0) (type default) ) (uuid "628a31eb-50ca-44fd-83a4-73f5fac11431") ) (wire (pts (xy 76.2 73.66) (xy 83.82 73.66) ) (stroke (width 0) (type default) ) (uuid "67060867-3d97-43d8-be2b-45f8ec4d76f7") ) (wire (pts (xy 50.8 54.61) (xy 63.5 54.61) ) (stroke (width 0) (type default) ) (uuid "67330afa-fe64-428c-b49f-7a809dc3e39a") ) (wire (pts (xy 99.06 52.07) (xy 116.84 52.07) ) (stroke (width 0) (type default) ) (uuid "6783b4c1-4661-48f9-8bd4-ab333c7d7a96") ) (wire (pts (xy 83.82 113.03) (xy 111.76 113.03) ) (stroke (width 0) (type default) ) (uuid "693fa446-48b6-45f6-a355-3e3b0c97ada0") ) (wire (pts (xy 40.64 67.31) (xy 53.34 67.31) ) (stroke (width 0) (type default) ) (uuid "694c57b5-ad05-45e8-a0c8-65e5a44f2ef7") ) (wire (pts (xy 73.66 53.34) (xy 76.2 53.34) ) (stroke (width 0) (type default) ) (uuid "6b8b9126-f402-492c-b8b3-de57524e9077") ) (wire (pts (xy 83.82 130.81) (xy 91.44 130.81) ) (stroke (width 0) (type default) ) (uuid "6e9fbd8e-b336-4dbc-ab54-fb7f3e852add") ) (wire (pts (xy 25.4 123.19) (xy 40.64 123.19) ) (stroke (width 0) (type default) ) (uuid "6ea0ca1d-263f-4cc9-9743-10920cd58211") ) (wire (pts (xy 50.8 85.09) (xy 59.69 85.09) ) (stroke (width 0) (type default) ) (uuid "70bd67a6-5cdf-4c9b-915a-ae02ceb93ee0") ) (wire (pts (xy 25.4 78.74) (xy 30.48 78.74) ) (stroke (width 0) (type default) ) (uuid "70df91a9-85c8-48e3-a4aa-023ad55ef477") ) (wire (pts (xy 129.54 113.03) (xy 129.54 128.27) ) (stroke (width 0) (type default) ) (uuid "73c85116-f9c5-4544-a89c-ec0feff4b034") ) (wire (pts (xy 78.74 40.64) (xy 78.74 68.58) ) (stroke (width 0) (type default) ) (uuid "7756f1e8-4a7e-4aaa-9485-f67d46ca4987") ) (wire (pts (xy 127 135.89) (xy 132.08 135.89) ) (stroke (width 0) (type default) ) (uuid "7877532d-ec9b-498b-b474-d2bfa99152d4") ) (wire (pts (xy 121.92 113.03) (xy 121.92 114.3) ) (stroke (width 0) (type default) ) (uuid "79261adc-3c62-495f-9912-d27a6791d696") ) (wire (pts (xy 49.53 115.57) (xy 111.76 115.57) ) (stroke (width 0) (type default) ) (uuid "7e36c42e-f2df-4c5b-825c-95fa1d649ee7") ) (wire (pts (xy 93.98 44.45) (xy 132.08 44.45) ) (stroke (width 0) (type default) ) (uuid "834815a4-0a5f-4283-830f-cb9c12a0a2bc") ) (wire (pts (xy 116.84 53.34) (xy 132.08 53.34) ) (stroke (width 0) (type default) ) (uuid "871b3bda-e8eb-45f8-a52b-9a2ab12550e1") ) (wire (pts (xy 86.36 128.27) (xy 91.44 128.27) ) (stroke (width 0) (type default) ) (uuid "8a6383cd-4825-48de-a226-a09d871a90a7") ) (wire (pts (xy 121.92 130.81) (xy 132.08 130.81) ) (stroke (width 0) (type default) ) (uuid "8cb38d93-47ce-4045-bf93-53e0ca816b44") ) (wire (pts (xy 121.92 114.3) (xy 121.92 115.57) ) (stroke (width 0) (type default) ) (uuid "94fa5d7c-3b8f-48df-8bca-eb373a9abd3d") ) (wire (pts (xy 140.97 129.54) (xy 149.86 129.54) ) (stroke (width 0) (type default) ) (uuid "9605c3e7-bcea-41ad-b8b3-7b7e62f07714") ) (wire (pts (xy 83.82 121.92) (xy 111.76 121.92) ) (stroke (width 0) (type default) ) (uuid "976f417b-6646-4385-97f6-8774220db0bb") ) (wire (pts (xy 129.54 133.35) (xy 132.08 133.35) ) (stroke (width 0) (type default) ) (uuid "99ce3a81-4562-4383-9b19-b4260eeaefaa") ) (wire (pts (xy 93.98 68.58) (xy 93.98 69.85) ) (stroke (width 0) (type default) ) (uuid "99f07208-302b-4d99-91cd-8ad446a0f7b3") ) (wire (pts (xy 25.4 135.89) (xy 111.76 135.89) ) (stroke (width 0) (type default) ) (uuid "9f255a00-2212-402d-85df-03afbefcf173") ) (wire (pts (xy 25.4 120.65) (xy 40.64 120.65) ) (stroke (width 0) (type default) ) (uuid "a269cf48-3225-491a-9b22-db52ebb8ab52") ) (wire (pts (xy 119.38 68.58) (xy 119.38 69.85) ) (stroke (width 0) (type default) ) (uuid "a6376932-d05b-4758-bc09-1ac3a854e121") ) (wire (pts (xy 49.53 121.92) (xy 83.82 121.92) ) (stroke (width 0) (type default) ) (uuid "a6f522bc-6864-4eb2-b51c-9ccebf6c86ea") ) (wire (pts (xy 114.3 130.81) (xy 121.92 130.81) ) (stroke (width 0) (type default) ) (uuid "a791abe9-08f1-42d1-b3c0-a6e28ed205e1") ) (wire (pts (xy 48.26 52.07) (xy 48.26 82.55) ) (stroke (width 0) (type default) ) (uuid "af784939-98a2-475e-8343-ca1d2af91a03") ) (wire (pts (xy 93.98 39.37) (xy 93.98 44.45) ) (stroke (width 0) (type default) ) (uuid "b0957425-c100-4ea0-9c09-bcd1ff94ca4f") ) (wire (pts (xy 86.36 71.12) (xy 86.36 128.27) ) (stroke (width 0) (type default) ) (uuid "b3b05a40-27d9-446e-bce1-d9e37b59d030") ) (wire (pts (xy 72.39 82.55) (xy 72.39 86.36) ) (stroke (width 0) (type default) ) (uuid "b488b5ec-97fc-4c68-9c42-b98c29c6e167") ) (wire (pts (xy 72.39 82.55) (xy 99.06 82.55) ) (stroke (width 0) (type default) ) (uuid "b9e067ad-cd25-414a-9ca2-d5619090eb1a") ) (wire (pts (xy 124.46 138.43) (xy 149.86 138.43) ) (stroke (width 0) (type default) ) (uuid "bda32b4b-e5d0-494c-b3cd-1d9a4a0a2c75") ) (wire (pts (xy 53.34 67.31) (xy 63.5 67.31) ) (stroke (width 0) (type default) ) (uuid "c0ad0102-398f-4ef6-8a1e-6e6b7310426f") ) (wire (pts (xy 83.82 73.66) (xy 83.82 113.03) ) (stroke (width 0) (type default) ) (uuid "c894bfb1-51e6-4a16-aa2c-c2c5dd30bbe3") ) (wire (pts (xy 78.74 71.12) (xy 86.36 71.12) ) (stroke (width 0) (type default) ) (uuid "c8d79285-93a1-4aa4-abbd-c3786b02d11a") ) (wire (pts (xy 129.54 128.27) (xy 132.08 128.27) ) (stroke (width 0) (type default) ) (uuid "ced6d4b7-cbf9-4e36-9bad-afd18fcd8f2d") ) (wire (pts (xy 101.6 130.81) (xy 114.3 130.81) ) (stroke (width 0) (type default) ) (uuid "cfab3c5b-e875-463f-a647-01b4202a8460") ) (wire (pts (xy 25.4 116.84) (xy 40.64 116.84) ) (stroke (width 0) (type default) ) (uuid "d7a22ab4-5f9a-4377-bb3c-0b7b8e432f5a") ) (wire (pts (xy 25.4 114.3) (xy 40.64 114.3) ) (stroke (width 0) (type default) ) (uuid "dc7728cc-0b59-4bda-bb05-50537be00c15") ) (wire (pts (xy 53.34 87.63) (xy 63.5 87.63) ) (stroke (width 0) (type default) ) (uuid "dd222290-548d-4cd7-b41f-82215906af0b") ) (wire (pts (xy 83.82 38.1) (xy 76.2 38.1) ) (stroke (width 0) (type default) ) (uuid "e12b96bb-010c-4447-a48d-e0f881e85d4b") ) (wire (pts (xy 53.34 67.31) (xy 53.34 87.63) ) (stroke (width 0) (type default) ) (uuid "e1d126f4-6508-41fe-8c62-9b221d11ddad") ) (wire (pts (xy 25.4 66.04) (xy 30.48 66.04) ) (stroke (width 0) (type default) ) (uuid "e8531f6d-db39-4412-9fdb-7233c2703a26") ) (wire (pts (xy 25.4 40.64) (xy 30.48 40.64) ) (stroke (width 0) (type default) ) (uuid "e910acdf-2a3f-4ed5-b059-02fb4479568b") ) (wire (pts (xy 124.46 134.62) (xy 124.46 138.43) ) (stroke (width 0) (type default) ) (uuid "eae585b2-4b99-4e77-9f2c-9f960444abbd") ) (wire (pts (xy 111.76 121.92) (xy 111.76 124.46) ) (stroke (width 0) (type default) ) (uuid "f697c89c-3090-46fe-b730-ae1441d80c27") ) (wire (pts (xy 48.26 52.07) (xy 63.5 52.07) ) (stroke (width 0) (type default) ) (uuid "fc2467d6-accf-4ba6-a7c0-2226203246a6") ) (wire (pts (xy 48.26 82.55) (xy 59.69 82.55) ) (stroke (width 0) (type default) ) (uuid "fd4f874d-d03c-4a97-836f-fd27aac91823") ) (label "COMB2OUT" (at 132.08 53.34 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "058844bb-0498-44bc-a403-a0cf83f9661e") ) (label "L01" (at 50.8 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "08f4e0e4-bd8e-4144-ae12-9d1f81b46fc6") ) (label "L00" (at 55.88 82.55 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "0aa03ddb-9e61-427e-b2e3-56f74092aff9") ) (label "L02" (at 55.88 87.63 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "0b3b35ef-7939-43aa-9105-5714eda0b0c9") ) (label "L11" (at 81.28 40.64 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "24aa52a9-b980-4063-847c-191fb09e6e9d") ) (label "A_0" (at 26.67 116.84 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "25d8980f-e675-4868-a033-3c3d2831be1f") ) (label "L11" (at 87.63 128.27 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2c2d6972-0911-4410-b00f-81ccb2874383") ) (label "L11" (at 78.74 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "32ff5bd1-6ac6-489b-a6c0-afbc60966d36") ) (label "B_1" (at 26.67 114.3 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "40cc0108-3fc8-4fda-8923-acdc90835190") ) (label "COY2_S" (at 149.86 129.54 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "4750e8b2-1350-4a8f-90b4-ca3c2b241fc6") ) (label "COMB1OUT" (at 132.08 69.85 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "4e213f0a-fa99-4fc0-866e-51f23b33936f") ) (label "CI_0" (at 26.67 133.35 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5e018e11-51e6-4aee-bbf4-d4b451b07c93") ) (label "L10" (at 107.95 113.03 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "6b84eb1f-4705-4258-a737-c7a9d0382643") ) (label "A_-1" (at 26.67 123.19 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "8e8296c4-d069-40e2-b2f3-834d456016d4") ) (label "MULTO2" (at 149.86 134.62 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "9df60de3-e424-4383-8ef0-41d37a86e659") ) (label "L10" (at 81.28 38.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a6d8d162-075d-470f-b7d2-8ef4d744b895") ) (label "L10" (at 76.2 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "ac19d708-cf46-4232-9f1a-de0575ebd1d0") ) (label "CADD_A" (at 132.08 81.28 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "c295a502-5258-4306-9d4b-816d977bccb9") ) (label "MULTO1" (at 149.86 138.43 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "c9708336-3376-41c3-90fc-63255c512a83") ) (label "L00" (at 48.26 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "ce80a9b6-749c-431c-89f0-f0f82771ed68") ) (label "L01" (at 55.88 85.09 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d62e4140-4b10-4356-9d30-53182c406c42") ) (label "CI_1" (at 26.67 135.89 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d6352ccd-be4b-46b3-b380-9d6a499a6318") ) (label "B_1" (at 26.67 120.65 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f53aa0c7-7683-4ffa-bc6b-3fa5402a3171") ) (label "CADD_S" (at 132.08 44.45 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "fb6b5de1-0785-476c-8095-df762e0a2e0e") ) (label "COY2_a" (at 149.86 120.65 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "ffe3d36b-9e21-4fcb-9791-09228826a118") ) (hierarchical_label "IN7" (shape input) (at 25.4 78.74 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "00f0ac92-82c7-46c3-94d0-56bc53fa2929") ) (hierarchical_label "IN2" (shape input) (at 25.4 43.18 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "137c5fdd-2112-4ada-8269-7d44c7f50746") ) (hierarchical_label "PINY2" (shape input) (at 25.4 120.65 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "27e7b57c-a20e-4da6-9a65-c0295fa7091b") ) (hierarchical_label "IN5" (shape input) (at 25.4 116.84 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3942003a-1fe7-4779-a77d-d0b7761f6b88") ) (hierarchical_label "PINY2" (shape input) (at 25.4 114.3 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4467d94b-7fdd-417a-a8c9-8535f95f4dc5") ) (hierarchical_label "IN8" (shape input) (at 25.4 123.19 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5625509f-1e73-426c-9575-2efa76ca7735") ) (hierarchical_label "CINY2" (shape input) (at 25.4 135.89 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6f52143f-05f1-43d6-b05d-c99f972d90e6") ) (hierarchical_label "IN5" (shape input) (at 25.4 66.04 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7b8a4a2a-1b9a-4e6d-93e9-2a211f8f3351") ) (hierarchical_label "IN3" (shape input) (at 25.4 53.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7c936651-5917-4c98-926e-63f69710f84d") ) (hierarchical_label "CINX" (shape input) (at 25.4 58.42 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8f30ac6f-2ac9-45cc-b2b3-4c7d7c610bc2") ) (hierarchical_label "CINY1" (shape input) (at 25.4 133.35 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9b21196c-89ce-45ca-9506-73b5e7b48665") ) (hierarchical_label "IN8" (shape input) (at 25.4 81.28 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a9067107-79a7-4613-b9d0-d77337ec633b") ) (hierarchical_label "PINY1" (shape input) (at 25.4 71.12 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b65a3ef0-d5bb-4589-9a51-311f828ca632") ) (hierarchical_label "PINX" (shape input) (at 25.4 83.82 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c70e44d4-78fa-4977-a2e5-f88db2b1bc95") ) (hierarchical_label "IN6" (shape input) (at 25.4 68.58 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d1011369-f857-4d73-be0f-eb978f3a563c") ) (hierarchical_label "PINY1" (shape input) (at 25.4 45.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dbeb4b6b-1613-46d0-8b29-e334e167e0c7") ) (hierarchical_label "IN4" (shape input) (at 25.4 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e482c27c-a728-42ee-b7e3-931fd1e23a98") ) (hierarchical_label "IN1" (shape input) (at 25.4 40.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f602fe44-8503-455c-9687-bcb1e9270fc3") ) (symbol (lib_id "peppercorn:AO21") (at 63.5 83.82 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "01480f4e-7aa3-4223-9845-fddab736dfcf") (property "Reference" "U54" (at 66.0399 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 66.0399 90.17 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "290f55a0-aee8-4571-a850-62b288cabc6c") ) (pin "" (uuid "d0654c6e-28c6-49d7-9516-7b0a52cef485") ) (pin "" (uuid "fb44ba03-c75e-43ab-bfcb-53e13bfff9f9") ) (pin "" (uuid "43b223bf-447e-412a-acf7-eaf1bcc3bef5") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1957") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U454") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U965") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U176") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2082") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U915") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1982") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2057") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U940") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1907") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U990") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U54") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U429") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1932") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2032") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2007") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XOR") (at 116.84 114.3 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1e3996ce-f7b7-4a39-a41d-911d55a1bf5c") (property "Reference" "U?" (at 116.4727 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 116.4727 110.49 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 116.84 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 116.84 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 116.84 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "9ccd777f-2be1-4ab9-9dc9-ac6cbb0b0e0d") ) (pin "" (uuid "c8f8bb91-44b0-416a-868b-fa14ac15f720") ) (pin "" (uuid "eed1d8fa-ace6-40ca-8a05-dadee0d71666") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1960") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U457") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U968") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U179") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2085") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U918") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1985") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2060") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U943") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1910") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U993") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U432") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1935") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2035") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2010") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 104.14 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2c4110c6-9549-4deb-bf22-90f7dcceabb8") (property "Reference" "L11" (at 104.14 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 104.14 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "60a8a3c1-679c-46a7-b895-e9c4ef0ac2bb") ) (pin "D1" (uuid "580bdf1a-c3bd-4faa-8208-d51a33be49a4") ) (pin "D0" (uuid "9669b037-83a3-4a8a-a86a-8f4a4cdaf045") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L399") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L105") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L215") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L41") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L489") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L179") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L417") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L471") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L197") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L363") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L233") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L11") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L87") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L381") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L453") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L435") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_1") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "3e46a057-0479-4f88-ba0b-04e23ede5564") (property "Reference" "INIT_L4" (at 35.56 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "03de4a55-9346-4766-8903-8306820e309c") ) (pin "Y" (uuid "4bf52b29-f6b0-4dc8-b5a0-a5b2cd9a0dae") ) (pin "D0" (uuid "a8ad6886-edf9-470f-b689-1cc7d8af0bff") ) (pin "D0" (uuid "4fc3361e-726b-4e7c-a225-f60d0b080b58") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L196") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L55") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L112") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L19") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L271") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L82") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L211") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L256") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L97") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L166") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L127") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L4") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L40") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L181") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L241") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L226") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 121.92 125.73 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "435b8013-7cac-4587-a1e2-ecee0a2d829a") (property "Reference" "M31" (at 121.92 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 121.92 119.38 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 121.92 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 121.92 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 121.92 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "0c48e7fc-3abd-4138-a935-9d1f14af5071") ) (pin "S" (uuid "1aece4ff-a329-477d-a03d-b713feb9f9b6") ) (pin "Y" (uuid "a69d8546-c6cb-4213-a455-0f911bf8f19f") ) (pin "D1" (uuid "ec69a8ab-9841-4f12-bfde-707fb6361cd9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M763") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M171") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M367") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M59") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M803") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M351") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M771") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M795") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M359") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M747") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M375") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M31") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M163") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M755") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M787") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M779") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4a1f4cc1-1555-4427-afe1-23be114a605f") (property "Reference" "L8" (at 33.02 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "b1c3db19-5ac6-4c2a-91af-db5703dcfd1f") ) (pin "Y" (uuid "11568e01-1bfe-4dd5-bfc8-09f345edf502") ) (pin "D0" (uuid "d01349b5-3c5e-40c5-8438-7eb42c30bf46") ) (pin "D0" (uuid "196c3296-2dff-4bd7-b852-dbbfc761675d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L396") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L102") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L212") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L38") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L486") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L176") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L414") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L468") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L194") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L360") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L230") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L8") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L84") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L378") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L450") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L432") (unit 1) ) ) ) ) (symbol (lib_name "XOR_3") (lib_id "peppercorn:XOR") (at 119.38 134.62 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4f35d71d-e21e-470b-8757-9ab5b430ba9a") (property "Reference" "U64" (at 119.0127 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 119.0127 130.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 119.38 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 119.38 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 119.38 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c74ffcf8-b7b7-40ba-ab13-8b6ee24d3040") ) (pin "" (uuid "0aea5ee7-1ac6-459c-b5d0-f984f53b45b4") ) (pin "" (uuid "d1121538-1614-474b-866a-f1c4d92e52be") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1961") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U458") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U969") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U180") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2086") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U919") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1986") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2061") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U944") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1911") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U994") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U64") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U433") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1936") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2036") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2011") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 121.92 120.65 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5e415091-9bb6-4935-b579-4f8b2442cc52") (property "Reference" "M30" (at 121.92 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 121.92 127 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 121.92 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 121.92 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 121.92 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "a2435dbd-b6d8-4306-a2ad-87c6d0238b5f") ) (pin "Y" (uuid "4fea9bed-445f-47e5-abb5-0fb0c98865e8") ) (pin "D1" (uuid "e560a2d8-9acd-43ff-9b51-c51e4f89765e") ) (pin "S" (uuid "6d0bf623-7475-40d8-b227-7b373f88dab6") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M762") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M170") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M366") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M58") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M802") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M350") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M770") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M794") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M358") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M746") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M374") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M30") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M162") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M754") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M786") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "M778") (unit 1) ) ) ) ) (symbol (lib_name "AND_2") (lib_id "peppercorn:AND") (at 44.45 121.92 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "63610564-2528-4623-88b4-5059f7708594") (property "Reference" "U53" (at 45.085 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 45.085 118.11 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "6cdb7280-eb5e-47a6-9f74-bbce5b7f997b") ) (pin "" (uuid "bbc8fe61-1e92-4259-9513-baa6e1314be6") ) (pin "" (uuid "27b78663-5aa8-47d4-b16a-12c095280aa4") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1956") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U453") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U964") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U175") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2081") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U914") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1981") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2056") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U939") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1906") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U989") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U53") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U428") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1931") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2031") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2006") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XNOR") (at 88.9 39.37 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "65ed889d-ed64-4a40-9801-183390e42e94") (property "Reference" "U56" (at 88.5327 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 88.5327 35.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 88.9 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 88.9 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 88.9 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "5961e834-e454-4941-a74c-5040ba125913") ) (pin "" (uuid "254c8916-0e13-4b9e-878f-c647d056bcd1") ) (pin "" (uuid "9e01a799-ade9-4ec5-a8ae-df9ac53e8205") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1958") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U455") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U966") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U177") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2083") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U916") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1983") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2058") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U941") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1908") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U991") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U56") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U430") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1933") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2033") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2008") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 68.58 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "75aa83f2-93db-4f97-8d51-c397a8c23e7b") (property "Reference" "L10" (at 68.58 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "0f3e713a-1a59-438b-bc39-cd73425d7cb3") ) (pin "D1" (uuid "b3a9a471-e28f-400f-a9ce-bc6031528eec") ) (pin "D0" (uuid "f1cfd244-e033-4049-a78f-2b062df22a65") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L398") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L104") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L214") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L40") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L488") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L178") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L416") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L470") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L196") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L362") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L232") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L10") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L86") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L380") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L452") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L434") (unit 1) ) ) ) ) (symbol (lib_name "XOR_2") (lib_id "peppercorn:XOR") (at 137.16 134.62 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8db924bd-807d-4e29-ba87-210ef6dd5ebb") (property "Reference" "U66" (at 136.7927 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 136.7927 130.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 137.16 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 137.16 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 137.16 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c38d2baa-b387-4020-99ff-ee14e1974845") ) (pin "" (uuid "d8d134a6-f75e-4274-9ca9-1fe0310b5d7e") ) (pin "" (uuid "fd2029d9-88ca-4583-ab2f-9452f5550989") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1963") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U460") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U971") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U182") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2088") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U921") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1988") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2063") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U946") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1913") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U996") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U66") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U435") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1938") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2038") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2013") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 68.58 53.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a65653bb-25bf-4306-b3ee-e06d5b3cb1b1") (property "Reference" "L9" (at 68.58 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "253e5a68-9c93-49cf-b21d-e0ded097b365") ) (pin "Y" (uuid "294099e6-d6cb-4486-a394-10bf67519e6f") ) (pin "D0" (uuid "eee5f075-b357-4910-b897-549299066fd2") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L397") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L103") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L213") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L39") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L487") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L177") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L415") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L469") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L195") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L361") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L231") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L9") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L85") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L379") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L451") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "L433") (unit 1) ) ) ) ) (symbol (lib_name "OR_2") (lib_id "peppercorn:OR") (at 137.16 129.54 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "aba278eb-a738-47d0-8726-4424197e5211") (property "Reference" "U65" (at 136.1574 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 136.1574 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 137.16 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 137.16 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 137.16 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "e110eaa1-3a7e-4dca-85ee-2d714553863c") ) (pin "" (uuid "93007f72-955c-45d2-9773-39b81d1382ca") ) (pin "" (uuid "fa6e3fc2-34b8-4ca0-9260-9e38be3abbb3") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1962") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U459") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U970") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U181") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2087") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U920") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1987") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2062") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U945") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1912") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U995") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U65") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U434") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1937") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2037") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2012") (unit 1) ) ) ) ) (symbol (lib_name "XOR3_1") (lib_id "peppercorn:XOR3") (at 96.52 130.81 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b33ffeaf-c711-4136-9ef1-9318be7174a5") (property "Reference" "U58" (at 95.885 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 95.885 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 96.52 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 96.52 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 96.52 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c3fb4243-e0b8-404c-b461-25a824fb0c25") ) (pin "" (uuid "6725e45e-1d66-4547-a5f0-a023437470aa") ) (pin "" (uuid "df38390e-353a-4308-b953-74643899216c") ) (pin "" (uuid "911439ee-1cc5-413c-bbb2-5c71709e4951") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1959") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U456") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U967") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U178") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2084") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U917") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1984") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2059") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U942") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1909") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U992") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U58") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U431") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1934") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2034") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2009") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_3") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "bf9b5c78-9e4a-49bf-864f-95d4875b554f") (property "Reference" "INIT_L6" (at 35.56 85.852 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 76.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "20d81d78-1ba3-4bdd-bc8a-4d23f9c88b59") ) (pin "Y" (uuid "ab541942-caa3-40e4-904d-daa00d7dbf24") ) (pin "D0" (uuid "b7d4a15a-745d-4c84-98f3-22bfd053806c") ) (pin "D0" (uuid "6bda5be2-9b56-4e3e-af88-fb7077a2a4bf") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L198") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L57") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L114") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L21") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L273") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L84") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L213") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L258") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L99") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L168") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L129") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L6") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L42") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L183") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L243") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L228") (unit 1) ) ) ) ) (symbol (lib_name "AND_1") (lib_id "peppercorn:AND") (at 44.45 115.57 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e5676851-3954-4390-8505-f27a8400a071") (property "Reference" "U52" (at 45.085 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 45.085 111.76 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "aefec623-b58c-439c-a621-aa9778d35740") ) (pin "" (uuid "2140c408-d7a1-456d-a4dc-e10681933e79") ) (pin "" (uuid "9fea52d1-4dc0-404f-ac0f-0740ef4f5bb0") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1955") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U452") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U963") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U174") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2080") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U913") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1980") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2055") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U938") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1905") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U988") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U52") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U427") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U1930") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2030") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "U2005") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_2") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "f1759f2d-9b2f-414a-837a-955db2f49694") (property "Reference" "INIT_L5" (at 35.56 72.898 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 63.5 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "4cfefa94-b836-4f5b-bd41-67287581593d") ) (pin "Y" (uuid "6d508fe8-d8f9-4d12-bd0e-8832e376da5b") ) (pin "D0" (uuid "b4f9bbe0-dacf-467b-a231-371276ddf818") ) (pin "D0" (uuid "7bfa14e2-2209-4ccd-b25a-6505e39a3437") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L197") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L56") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L113") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L20") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L272") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L83") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L212") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L257") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L98") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L167") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L128") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L5") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L41") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L182") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L242") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf" (reference "INIT_L227") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/cpe_comb_addcin.kicad_sch000066400000000000000000002730541514752025000241370ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "55858e3d-6709-4cfc-9891-60cca07c7250") (paper "A4") (title_block (title "CPE: Sum Output With Carry") (rev "4") (company "YosysHQ") ) (lib_symbols (symbol "LUT2 with C_I mux_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_1_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_2_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_2_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_3_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_3_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:AO21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2 with C_I mux" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2B_0_1" (polyline (pts (xy -5.08 2.54) (xy -5.08 -2.54) (xy 5.08 -1.27) (xy 5.08 1.27) (xy -5.08 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2B_1_1" (pin input line (at -7.62 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XNOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XNOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (text "L03" (exclude_from_sim no) (at 35.56 84.074 0) (effects (font (size 1.27 1.27) ) ) (uuid "0be46cc0-ba37-4452-b967-da31bade06a7") ) (text "PROPAGATE" (exclude_from_sim no) (at 127 46.228 0) (effects (font (size 1.27 1.27) ) ) (uuid "19994e1a-9446-4088-bf2e-f440999d5bf2") ) (text "L01" (exclude_from_sim no) (at 35.56 58.674 0) (effects (font (size 1.27 1.27) ) ) (uuid "3c2c0ebc-a0d1-4073-a3de-4d91438b4699") ) (text "L20" (exclude_from_sim no) (at 104.14 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "3cfb97ac-472a-4bb2-a08e-fe60403e2ac3") ) (text "C_I4" (exclude_from_sim no) (at 30.48 82.804 0) (effects (font (size 1.27 1.27) ) ) (uuid "493305a9-70f0-43f3-a94f-4b842f19569d") ) (text "C_I3" (exclude_from_sim no) (at 30.48 70.104 0) (effects (font (size 1.27 1.27) ) ) (uuid "5472e927-cba4-4bc4-80cd-31b4e306b880") ) (text "L02" (exclude_from_sim no) (at 35.56 71.374 0) (effects (font (size 1.27 1.27) ) ) (uuid "88c68439-f636-485d-b582-c79770d61f6f") ) (text "C_HORIZ" (exclude_from_sim no) (at 32.766 92.964 0) (effects (font (size 1.27 1.27) ) ) (uuid "97f10297-f772-4c44-9594-e0cda7b174a4") ) (text "C_I2" (exclude_from_sim no) (at 30.48 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "a105b597-189c-4e0d-a288-d86d51f1932e") ) (text "C_I1" (exclude_from_sim no) (at 30.48 44.704 0) (effects (font (size 1.27 1.27) ) ) (uuid "af20a8c3-1aef-4a26-8cfd-8c1eaebfd846") ) (text "L10" (exclude_from_sim no) (at 68.58 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "da72c5b6-b2f6-40b0-a9e4-c3fb7931a60b") ) (text "L00" (exclude_from_sim no) (at 35.56 45.974 0) (effects (font (size 1.27 1.27) ) ) (uuid "e2697f44-be27-4bfe-8704-1c70356070bf") ) (text "GENERATE" (exclude_from_sim no) (at 127.254 82.804 0) (effects (font (size 1.27 1.27) ) ) (uuid "e3ae78d3-ffbc-46ea-ab72-5418845abf74") ) (text "L11" (exclude_from_sim no) (at 68.58 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "f1a9bd13-ac3b-4b19-b1ac-57f867001838") ) (junction (at 76.2 53.34) (diameter 0) (color 0 0 0 0) (uuid "0126c383-73de-4e78-9a55-e9716d88ed6d") ) (junction (at 50.8 54.61) (diameter 0) (color 0 0 0 0) (uuid "2144e4ac-7f5c-4c67-877e-65bb28dc40a6") ) (junction (at 78.74 68.58) (diameter 0) (color 0 0 0 0) (uuid "7e439f3b-2ea5-4244-9228-9d8cf97c9180") ) (junction (at 48.26 52.07) (diameter 0) (color 0 0 0 0) (uuid "9aac693f-d5ca-42df-bfe6-adb853d9c893") ) (junction (at 53.34 67.31) (diameter 0) (color 0 0 0 0) (uuid "e6df171a-d17f-4a7f-ab9d-bbe3d51f6735") ) (junction (at 99.06 52.07) (diameter 0) (color 0 0 0 0) (uuid "f4440555-d172-4ceb-96a8-b3d0aab269a5") ) (wire (pts (xy 100.33 82.55) (xy 100.33 81.28) ) (stroke (width 0) (type default) ) (uuid "02c05c18-087b-4289-8dff-b6d7c4f2ad20") ) (wire (pts (xy 40.64 92.71) (xy 53.34 92.71) ) (stroke (width 0) (type default) ) (uuid "06c9998b-58a6-4de1-a241-84d940b30522") ) (wire (pts (xy 93.98 43.18) (xy 101.6 43.18) ) (stroke (width 0) (type default) ) (uuid "099f5354-e2d9-4b6f-8417-1fddce7fec09") ) (wire (pts (xy 25.4 66.04) (xy 30.48 66.04) ) (stroke (width 0) (type default) ) (uuid "0c366fcd-4c8c-472b-8b09-aa3e52c98c5c") ) (wire (pts (xy 50.8 85.09) (xy 59.69 85.09) ) (stroke (width 0) (type default) ) (uuid "1600f257-3d4b-41f6-a05c-753d83116917") ) (wire (pts (xy 53.34 87.63) (xy 63.5 87.63) ) (stroke (width 0) (type default) ) (uuid "1aa168a3-c952-40fe-a1e6-261f55ecd0d5") ) (wire (pts (xy 83.82 38.1) (xy 76.2 38.1) ) (stroke (width 0) (type default) ) (uuid "1f55c732-0ba3-4d81-86e3-08fba751c14a") ) (wire (pts (xy 93.98 52.07) (xy 99.06 52.07) ) (stroke (width 0) (type default) ) (uuid "22269d0f-70db-4054-80ed-c56787923200") ) (wire (pts (xy 25.4 40.64) (xy 30.48 40.64) ) (stroke (width 0) (type default) ) (uuid "273fd7d9-46aa-42b0-9b67-07aba6b6286c") ) (wire (pts (xy 78.74 40.64) (xy 83.82 40.64) ) (stroke (width 0) (type default) ) (uuid "318a3be4-c788-4fb9-981e-a039339b3109") ) (wire (pts (xy 105.41 93.98) (xy 114.3 93.98) ) (stroke (width 0) (type default) ) (uuid "38413f1f-03c7-44ab-a50f-8460c2efbdcb") ) (wire (pts (xy 100.33 81.28) (xy 132.08 81.28) ) (stroke (width 0) (type default) ) (uuid "40093339-19df-4039-a986-2612009ed571") ) (wire (pts (xy 101.6 44.45) (xy 132.08 44.45) ) (stroke (width 0) (type default) ) (uuid "404db372-a949-4b5a-9aee-0237805aac9e") ) (wire (pts (xy 53.34 67.31) (xy 53.34 87.63) ) (stroke (width 0) (type default) ) (uuid "4f215ac0-e6dc-4763-916a-f68c0a031d72") ) (wire (pts (xy 72.39 82.55) (xy 72.39 86.36) ) (stroke (width 0) (type default) ) (uuid "5ed027e9-72e3-4944-8353-a557638dd44a") ) (wire (pts (xy 73.66 53.34) (xy 76.2 53.34) ) (stroke (width 0) (type default) ) (uuid "5f5cd504-2f46-4c0c-a3e7-c6290e1f210d") ) (wire (pts (xy 53.34 67.31) (xy 63.5 67.31) ) (stroke (width 0) (type default) ) (uuid "61bb6ed2-408a-4744-9f23-c6e4c9f3dbf4") ) (wire (pts (xy 76.2 38.1) (xy 76.2 53.34) ) (stroke (width 0) (type default) ) (uuid "6b707d56-d9e4-4629-9a07-c5f3dea5513a") ) (wire (pts (xy 53.34 95.25) (xy 105.41 95.25) ) (stroke (width 0) (type default) ) (uuid "6b7eb260-b4bb-45c3-8810-a4b7857ad8f5") ) (wire (pts (xy 114.3 71.12) (xy 114.3 93.98) ) (stroke (width 0) (type default) ) (uuid "6c031e1d-f1a6-4ba5-888b-55a64ef17b1e") ) (wire (pts (xy 53.34 92.71) (xy 53.34 95.25) ) (stroke (width 0) (type default) ) (uuid "767ffe0b-6501-405d-95f7-6f7418d2f2a2") ) (wire (pts (xy 99.06 52.07) (xy 99.06 67.31) ) (stroke (width 0) (type default) ) (uuid "7e0ecbf2-c413-4eaf-81f1-340454cf9190") ) (wire (pts (xy 99.06 52.07) (xy 116.84 52.07) ) (stroke (width 0) (type default) ) (uuid "82f8d781-c39d-4ba0-91a6-a850c4e313c6") ) (wire (pts (xy 50.8 54.61) (xy 63.5 54.61) ) (stroke (width 0) (type default) ) (uuid "831587cf-304b-454a-8405-78a9849cc3a3") ) (wire (pts (xy 48.26 52.07) (xy 63.5 52.07) ) (stroke (width 0) (type default) ) (uuid "88e63e1c-8ba2-42b4-bd9a-6f6a1e8cae10") ) (wire (pts (xy 73.66 68.58) (xy 78.74 68.58) ) (stroke (width 0) (type default) ) (uuid "893570b2-7001-46ed-8170-7858f22290a0") ) (wire (pts (xy 40.64 54.61) (xy 50.8 54.61) ) (stroke (width 0) (type default) ) (uuid "8a9843d2-c5bb-43fd-8322-0704634afd20") ) (wire (pts (xy 124.46 69.85) (xy 132.08 69.85) ) (stroke (width 0) (type default) ) (uuid "8f755ae4-a8d5-4752-adf8-0c12dcd0313e") ) (wire (pts (xy 48.26 52.07) (xy 48.26 82.55) ) (stroke (width 0) (type default) ) (uuid "8fbb9833-145e-4eb8-9547-a359547d3e68") ) (wire (pts (xy 72.39 82.55) (xy 100.33 82.55) ) (stroke (width 0) (type default) ) (uuid "97971f82-bf59-4247-8ba3-9ac385775919") ) (wire (pts (xy 78.74 68.58) (xy 93.98 68.58) ) (stroke (width 0) (type default) ) (uuid "9a576e1b-b172-49ae-9e01-2439ccd24229") ) (wire (pts (xy 40.64 52.07) (xy 48.26 52.07) ) (stroke (width 0) (type default) ) (uuid "a7d157f1-ace0-43b4-9b82-09929e50d0d3") ) (wire (pts (xy 93.98 39.37) (xy 93.98 43.18) ) (stroke (width 0) (type default) ) (uuid "ac03d899-5cdb-4a7a-b1e2-7607ab81631f") ) (wire (pts (xy 116.84 53.34) (xy 132.08 53.34) ) (stroke (width 0) (type default) ) (uuid "aef111da-b151-48dc-8570-70068fd7647b") ) (wire (pts (xy 76.2 53.34) (xy 93.98 53.34) ) (stroke (width 0) (type default) ) (uuid "af49c32b-3154-4cd0-8d6c-a861f10ba1d9") ) (wire (pts (xy 105.41 95.25) (xy 105.41 93.98) ) (stroke (width 0) (type default) ) (uuid "bb91bf18-e127-4727-8cdc-c31fc8b65be6") ) (wire (pts (xy 114.3 68.58) (xy 109.22 68.58) ) (stroke (width 0) (type default) ) (uuid "c107259c-b6f9-4ef6-b884-1960606c14f2") ) (wire (pts (xy 25.4 78.74) (xy 30.48 78.74) ) (stroke (width 0) (type default) ) (uuid "cf207e1b-8cb2-4bd2-ae7e-e9d5cc58dbc5") ) (wire (pts (xy 116.84 52.07) (xy 116.84 53.34) ) (stroke (width 0) (type default) ) (uuid "d296c7f7-7447-4a60-a3db-9b60261a8076") ) (wire (pts (xy 40.64 69.85) (xy 63.5 69.85) ) (stroke (width 0) (type default) ) (uuid "db03534e-655c-4ade-a96e-abee5530a004") ) (wire (pts (xy 50.8 54.61) (xy 50.8 85.09) ) (stroke (width 0) (type default) ) (uuid "dba92613-5db2-464e-baab-fb84721cb679") ) (wire (pts (xy 25.4 53.34) (xy 30.48 53.34) ) (stroke (width 0) (type default) ) (uuid "dcdabee0-2557-4158-8cb6-a25f8f6db48a") ) (wire (pts (xy 93.98 69.85) (xy 99.06 69.85) ) (stroke (width 0) (type default) ) (uuid "de28bd4a-4af9-40cd-8fd9-03067c12b041") ) (wire (pts (xy 40.64 52.07) (xy 40.64 41.91) ) (stroke (width 0) (type default) ) (uuid "e9243787-f5cf-44d0-9ac5-403b114aa634") ) (wire (pts (xy 101.6 43.18) (xy 101.6 44.45) ) (stroke (width 0) (type default) ) (uuid "e9b8f96b-ba61-41be-9b08-41189b800f69") ) (wire (pts (xy 93.98 68.58) (xy 93.98 69.85) ) (stroke (width 0) (type default) ) (uuid "e9ce8c1f-61d1-4f6a-87f9-a9e3eb1d43dd") ) (wire (pts (xy 78.74 40.64) (xy 78.74 68.58) ) (stroke (width 0) (type default) ) (uuid "ea2f94db-6629-4f29-900c-65a4fd07e85e") ) (wire (pts (xy 93.98 53.34) (xy 93.98 52.07) ) (stroke (width 0) (type default) ) (uuid "ec8304b0-4a2b-43c6-876f-db0ae4aaa9a8") ) (wire (pts (xy 48.26 82.55) (xy 59.69 82.55) ) (stroke (width 0) (type default) ) (uuid "edcc4a7f-20ac-4c22-8543-a8be0ed3cdc4") ) (wire (pts (xy 40.64 67.31) (xy 53.34 67.31) ) (stroke (width 0) (type default) ) (uuid "f35a3878-0436-407a-9d5c-7070c8fe8391") ) (wire (pts (xy 40.64 69.85) (xy 40.64 80.01) ) (stroke (width 0) (type default) ) (uuid "ff0dc6e7-1f2e-427d-a47a-2c56c753231b") ) (label "CADD_A" (at 132.08 81.28 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "07b4cf46-1b0b-49e3-82f9-c295c97d8c94") ) (label "CADD_S" (at 132.08 44.45 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "088b2a2c-a23f-450f-818f-d8be4176a622") ) (label "L10" (at 76.2 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "1c9f607b-e766-4311-9fca-38c399bfad2e") ) (label "L00" (at 55.88 82.55 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "27af6e32-a8cd-4d7d-8860-2b68e42e33b1") ) (label "L01" (at 55.88 85.09 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3367ff38-070a-4487-b999-5bb4f0a09934") ) (label "COMB1OUT" (at 132.08 69.85 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "47119a41-8329-4985-a694-e9deb19e0315") ) (label "L11" (at 78.74 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "4c126139-fc7e-47a0-8c82-f798b3f4c528") ) (label "COMB2OUT" (at 132.08 53.34 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "4dcb9e6a-c8db-439b-8517-60a5985921b5") ) (label "L01" (at 50.8 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "705e854b-c7d5-4efa-bd7c-e90802c34728") ) (label "CIN" (at 90.17 95.25 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "76ee0423-aad6-4038-87b1-d3e5349fb445") ) (label "L10" (at 81.28 38.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7ab0321e-1a47-4c8b-9eea-6ecbde4a4812") ) (label "L11" (at 81.28 40.64 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "839d347d-2e2e-4043-8bf1-1c2805002a26") ) (label "L00" (at 48.26 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "a5e2b163-6a2b-4244-98ee-52ddfe316946") ) (label "CIN" (at 55.88 95.25 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "abd2e1da-425c-4bde-bde2-3980fe9e86b3") ) (label "L02" (at 55.88 87.63 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c6495f60-9d95-4928-b21a-054863b3e1ad") ) (hierarchical_label "IN1" (shape input) (at 25.4 40.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0d9b19a3-523b-4d2d-8378-c5aac88540db") ) (hierarchical_label "IN3" (shape input) (at 25.4 53.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "15d51965-d851-4e7d-b091-8177a272f0b6") ) (hierarchical_label "PINX" (shape input) (at 25.4 83.82 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "21a02e9b-3d24-42e8-bc07-1d598bde19e8") ) (hierarchical_label "IN4" (shape input) (at 25.4 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3c92a3d2-d576-4699-8d2b-775e6a4ca57c") ) (hierarchical_label "IN7" (shape input) (at 25.4 78.74 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "480b917b-1c89-4c77-9362-178fe52a9c84") ) (hierarchical_label "CINX" (shape input) (at 25.4 93.98 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5d92014c-a02c-46c1-ad87-d8b8cd8f51e5") ) (hierarchical_label "IN2" (shape input) (at 25.4 43.18 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "74b9e00b-fb68-43d4-bc52-6a2c77cf4a5b") ) (hierarchical_label "CINY1" (shape input) (at 25.4 91.44 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "76431ecc-5669-45ca-9de9-0586090af294") ) (hierarchical_label "IN8" (shape input) (at 25.4 81.28 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a0578b48-ffae-4cd5-a582-d928ccbba0d6") ) (hierarchical_label "PINY1" (shape input) (at 25.4 71.12 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bf5b6388-f813-459e-ad05-f7d587da9e97") ) (hierarchical_label "IN5" (shape input) (at 25.4 66.04 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dac5ebec-57d2-4f4f-8757-84aaffe23d37") ) (hierarchical_label "PINY1" (shape input) (at 25.4 45.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eb0c2c0d-e5e8-4977-9420-47477f82fde6") ) (hierarchical_label "CINX" (shape input) (at 25.4 58.42 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f149237a-ecfe-4d88-8791-608771668bf9") ) (hierarchical_label "IN6" (shape input) (at 25.4 68.58 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f71ba2ca-40f3-4205-9512-1463dcf8b1e5") ) (symbol (lib_name "LUT2 with C_I mux_1") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "2b0e5550-5450-457c-ae55-df18264dc452") (property "Reference" "INIT_L7" (at 35.56 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "be2fb292-d892-4346-8d1f-3f96bdeb5ea4") ) (pin "Y" (uuid "e606d7db-d8ac-4140-8de7-350eb1ad459e") ) (pin "D0" (uuid "fe69822b-911c-4a9b-9c1e-657b5d7d4398") ) (pin "D0" (uuid "402c4a9c-afe8-40ac-b78b-8fc63565ec5e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L199") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L58") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L115") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L22") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L274") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L85") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L214") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L259") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L100") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L169") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L130") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L7") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L43") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L184") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L244") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L229") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_2") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4dd86d2b-c4ce-4797-ab7e-9ddb1b06ebf6") (property "Reference" "INIT_L8" (at 35.56 72.898 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 63.5 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "8f8f8892-42e5-4616-a012-0c3b18821924") ) (pin "Y" (uuid "f89653d2-677c-4bcb-ae50-5546cd89694d") ) (pin "D0" (uuid "8a2cd02a-903c-4ca1-b011-04e18ababd06") ) (pin "D0" (uuid "a5e2540b-9125-4492-bdd3-47b617e9da7d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L200") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L59") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L116") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L23") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L275") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L86") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L215") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L260") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L101") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L170") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L131") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L8") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L44") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L185") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L245") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L230") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 68.58 53.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5f5efbaa-e0d9-44ce-9b07-bd19ca18df2e") (property "Reference" "L13" (at 68.58 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "33f6d768-f845-4ac6-9e91-de2a1edec734") ) (pin "Y" (uuid "1679d53a-c34d-4bd2-aea5-8268ff1b0f7c") ) (pin "D0" (uuid "2c8b1a59-acff-4c28-8d2f-c3a6dc413eba") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L401") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L107") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L217") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L43") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L491") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L181") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L419") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L473") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L199") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L365") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L235") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L13") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L89") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L383") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L455") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L437") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:AO21") (at 63.5 83.82 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "77b06ffb-57cd-4ff0-9448-1278e7039953") (property "Reference" "U59" (at 66.0399 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 66.0399 90.17 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 83.82 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ee2d46cb-c59b-4589-843d-74cbea3751ae") ) (pin "" (uuid "4f859fb1-daad-422e-b513-6fc4ecb99f7e") ) (pin "" (uuid "94e52b0d-0baf-46d9-b4e6-097487117213") ) (pin "" (uuid "7e16382c-3e5b-4807-9017-5ee61efd9816") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1964") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U461") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U972") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U183") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2089") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U922") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1989") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2064") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U947") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1914") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U997") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U59") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U436") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1939") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2039") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2014") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 68.58 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "82ed7cc0-7945-4792-88c2-4d46913633ae") (property "Reference" "L14" (at 68.58 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "d9e8e443-8775-4993-9efc-b6d930be6390") ) (pin "D1" (uuid "94f5fd5d-414b-444d-a9a2-d4a532cd8110") ) (pin "D0" (uuid "84bd326b-25cd-415b-b4f7-15e6a5f38b95") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L402") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L108") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L218") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L44") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L492") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L182") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L420") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L474") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L200") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L366") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L236") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L14") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L90") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L384") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L456") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L438") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 92.71 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a4b579e6-ceaf-4eec-885c-dfd5d908a92c") (property "Reference" "C5" (at 33.02 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 88.9 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "b7ccef62-bc19-488e-a51e-ceeff7492c39") ) (pin "D0" (uuid "b896b99f-2db8-4067-acdc-7d20d4c78782") ) (pin "Y" (uuid "e18a37d6-4787-4d70-9d5d-b92dde671927") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C227") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C50") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C111") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C18") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C242") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C105") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C230") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C239") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C108") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C221") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C114") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C5") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C47") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C224") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C236") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C233") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_3") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a7d1f5e4-ae5e-48e2-9758-f1c63a89ba0c") (property "Reference" "INIT_L9" (at 35.56 85.852 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 76.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "3464511d-be11-45df-9a24-4ada8130d0fa") ) (pin "Y" (uuid "8872906f-c331-47cb-b152-18069b686444") ) (pin "D0" (uuid "877b5c7a-eb91-47a2-a6ac-7903e133ed4b") ) (pin "D0" (uuid "0f4c796a-541b-4dd0-bfad-8a1a7417a186") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L201") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L60") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L117") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L24") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L276") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L87") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L216") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L261") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L102") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L171") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L132") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L9") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L45") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L186") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L246") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L231") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c5ffefac-4f58-4e5d-af0e-4e4c5fc06628") (property "Reference" "L12" (at 33.02 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "af2dfea7-45bc-4993-80c1-7d868ce8d88d") ) (pin "Y" (uuid "3a041026-33cc-4582-b246-d4c28d27b632") ) (pin "D0" (uuid "b1f88efa-5ccb-4883-957d-18c085dfcc79") ) (pin "D0" (uuid "7285d38f-c60b-465a-abac-27900a45107d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L400") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L106") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L216") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L42") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L490") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L180") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L418") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L472") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L198") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L364") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L234") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L12") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L88") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L382") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L454") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L436") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 104.14 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d22ea004-89d7-4f2d-819c-09c454990c5d") (property "Reference" "L15" (at 104.14 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 104.14 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "e52cf81d-0dd3-46e9-84f1-03beec02d021") ) (pin "D1" (uuid "467bc695-242d-4716-8342-5abfad4b5bd3") ) (pin "D0" (uuid "39d15c1a-598e-435d-9d9c-8d26bba3ed34") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L403") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L109") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L219") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L45") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L493") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L183") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L421") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L475") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L201") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L367") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L237") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L15") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L91") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L385") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L457") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "L439") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XOR") (at 119.38 69.85 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e1cd7262-deef-4f45-a34f-b8642a9b8ef3") (property "Reference" "U71" (at 119.0127 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 119.0127 66.04 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 119.38 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 119.38 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 119.38 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "033da356-e000-4874-89c1-b0f865a74e6e") ) (pin "" (uuid "015992d6-67f8-4bd8-b397-66ede180b503") ) (pin "" (uuid "63a20458-ee7e-4c4f-8951-5487459051a7") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1966") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U463") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U974") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U185") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2091") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U924") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1991") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2066") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U949") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1916") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U999") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U71") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U438") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1941") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2041") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2016") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XNOR") (at 88.9 39.37 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e9c3b9d8-e805-48bd-87e9-7c779b035847") (property "Reference" "U61" (at 88.5327 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 88.5327 35.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 88.9 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 88.9 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 88.9 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "0aee4975-a037-448a-80cf-08252ccfcc45") ) (pin "" (uuid "17cb7ede-ad3b-4b92-add0-234de1657ccf") ) (pin "" (uuid "388a09fc-7e5a-44f2-913b-6981435599a4") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1965") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U462") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U973") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U184") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2090") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U923") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1990") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2065") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U948") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1915") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U998") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U61") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U437") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U1940") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2040") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U2015") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/cpe_comb_addf.kicad_sch000077500000000000000000001326131514752025000236110ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "55858e3d-6709-4cfc-9891-60cca07c7250") (paper "A3") (title_block (company "YosysHQ") ) (lib_symbols (symbol "XOR_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:AO21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -2.54) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2B_0_1" (polyline (pts (xy -3.81 -2.54) (xy -3.81 2.54) (xy 3.81 1.27) (xy 3.81 -1.27) (xy -3.81 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2B_1_1" (pin input line (at -6.35 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (rectangle (start 19.05 60.325) (end 106.68 102.235) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 173ddbfc-3e44-40fb-beb6-2f95f4aac105) ) (rectangle (start 19.05 19.05) (end 106.68 59.69) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 87edac5d-f2ac-409e-af72-be40ee50c23d) ) (text "CPE_LT_L" (exclude_from_sim no) (at 102.108 101.092 0) (effects (font (size 1.27 1.27) ) ) (uuid "11e19b57-296d-4d78-99df-2bce1c96c498") ) (text "MUX4b" (exclude_from_sim no) (at 62.738 100.584 0) (effects (font (size 1.27 1.27) ) ) (uuid "3159c57c-3eab-4376-a364-d4e7e8e9e715") ) (text "CPE_LT_U" (exclude_from_sim no) (at 92.964 58.674 0) (effects (font (size 1.27 1.27) ) ) (uuid "810e49c8-9b70-4e98-931e-cd7e37ed4c86") ) (text "C_FUNCTION = 1: C_ADDF" (exclude_from_sim no) (at 59.69 17.78 0) (effects (font (size 1.27 1.27) ) ) (uuid "85cde162-70e2-4938-b2a5-efffbd9335d6") ) (text "ADDF" (exclude_from_sim no) (at 91.948 74.676 0) (effects (font (size 1.27 1.27) ) ) (uuid "9f96c5f3-20ea-43fe-80d7-4ca09de21429") ) (junction (at 57.15 50.8) (diameter 0) (color 0 0 0 0) (uuid "04a43ce2-1aa4-4ed6-b079-0dd16b2072ea") ) (junction (at 72.39 64.77) (diameter 0) (color 0 0 0 0) (uuid "187756a9-597d-45f6-a180-1b6ac3929bae") ) (junction (at 87.63 52.07) (diameter 0) (color 0 0 0 0) (uuid "1b26f3fc-3d20-4cbe-ab09-39da723bb5de") ) (junction (at 52.07 63.5) (diameter 0) (color 0 0 0 0) (uuid "488cd6a5-24a8-4772-a3f3-ecdaec4a5a58") ) (junction (at 74.93 52.07) (diameter 0) (color 0 0 0 0) (uuid "71fead04-5c7f-4a11-858f-36b2c226234b") ) (junction (at 59.69 53.34) (diameter 0) (color 0 0 0 0) (uuid "fda50caa-8a4b-4098-836e-e0175e7c5873") ) (wire (pts (xy 49.53 66.04) (xy 62.23 66.04) ) (stroke (width 0) (type default) ) (uuid "0002c804-950d-4e90-a314-4177918a59e5") ) (wire (pts (xy 72.39 64.77) (xy 85.09 64.77) ) (stroke (width 0) (type default) ) (uuid "10296770-5f00-4c49-90b9-7fe6fd8dc549") ) (wire (pts (xy 59.69 53.34) (xy 62.23 53.34) ) (stroke (width 0) (type default) ) (uuid "10c1da1a-e323-4d9e-a0db-59fcbf5cb0e6") ) (wire (pts (xy 74.93 71.12) (xy 74.93 52.07) ) (stroke (width 0) (type default) ) (uuid "2393ebac-5dcf-4cbb-b2c2-08fbfb0208e9") ) (wire (pts (xy 72.39 52.07) (xy 74.93 52.07) ) (stroke (width 0) (type default) ) (uuid "249c24bc-6b1b-42ea-9c5d-40ae2b1a4777") ) (wire (pts (xy 26.67 73.66) (xy 39.37 73.66) ) (stroke (width 0) (type default) ) (uuid "2d43c7be-8eaf-456d-8915-765da8b06d05") ) (wire (pts (xy 74.93 52.07) (xy 87.63 52.07) ) (stroke (width 0) (type default) ) (uuid "2dd1475f-cf93-4b6f-b20f-0b108a2af13e") ) (wire (pts (xy 39.37 86.36) (xy 97.79 86.36) ) (stroke (width 0) (type default) ) (uuid "2fcc1301-4df5-46cf-996f-32a74168714e") ) (wire (pts (xy 85.09 64.77) (xy 85.09 66.04) ) (stroke (width 0) (type default) ) (uuid "36a686df-d347-4fb9-b360-731f9650ca43") ) (wire (pts (xy 74.93 71.12) (xy 80.01 71.12) ) (stroke (width 0) (type default) ) (uuid "40c5cccf-9c20-464d-a6d6-01f497416140") ) (wire (pts (xy 59.69 53.34) (xy 59.69 39.37) ) (stroke (width 0) (type default) ) (uuid "424fa4f5-0035-49cd-98c5-904c456a83c1") ) (wire (pts (xy 92.71 35.56) (xy 107.95 35.56) ) (stroke (width 0) (type default) ) (uuid "4262c950-0264-4421-960b-9420a9300959") ) (wire (pts (xy 97.79 64.77) (xy 97.79 83.82) ) (stroke (width 0) (type default) ) (uuid "4fcf8f79-a937-4f6e-94fd-e1b98e60552e") ) (wire (pts (xy 26.67 50.8) (xy 39.37 50.8) ) (stroke (width 0) (type default) ) (uuid "5d4a81d3-82f2-4ef9-8af2-deaeca165522") ) (wire (pts (xy 49.53 74.93) (xy 49.53 66.04) ) (stroke (width 0) (type default) ) (uuid "62249899-ef45-47dc-9814-2a9c5ee1d97b") ) (wire (pts (xy 26.67 62.23) (xy 39.37 62.23) ) (stroke (width 0) (type default) ) (uuid "6ded0ef8-24b5-472b-8813-6497d4cf9d3a") ) (wire (pts (xy 87.63 52.07) (xy 87.63 63.5) ) (stroke (width 0) (type default) ) (uuid "6ffbb30c-6b51-4ca5-a126-29a5bbdbb986") ) (wire (pts (xy 39.37 50.8) (xy 39.37 52.07) ) (stroke (width 0) (type default) ) (uuid "77a9a308-21b4-4106-adf7-1acf1760e68a") ) (wire (pts (xy 49.53 50.8) (xy 57.15 50.8) ) (stroke (width 0) (type default) ) (uuid "7ab145e1-6322-475f-8b34-3474c89d5a19") ) (wire (pts (xy 26.67 40.64) (xy 39.37 40.64) ) (stroke (width 0) (type default) ) (uuid "7c6ec8d5-1931-4b49-aabd-5c02b865982b") ) (wire (pts (xy 39.37 40.64) (xy 39.37 41.91) ) (stroke (width 0) (type default) ) (uuid "854fa559-f850-46b7-9500-1163941409b8") ) (wire (pts (xy 39.37 76.2) (xy 39.37 77.47) ) (stroke (width 0) (type default) ) (uuid "8ab64e50-4ab3-4fe9-b693-4d52873cf516") ) (wire (pts (xy 57.15 50.8) (xy 62.23 50.8) ) (stroke (width 0) (type default) ) (uuid "8cf3cc4e-459c-4af5-b7b5-7550117b87b8") ) (wire (pts (xy 49.53 53.34) (xy 59.69 53.34) ) (stroke (width 0) (type default) ) (uuid "959cd35f-e7b5-41cf-b684-d25c3e58e509") ) (wire (pts (xy 57.15 50.8) (xy 57.15 36.83) ) (stroke (width 0) (type default) ) (uuid "96a3d2ac-d1c4-4238-9af0-8745e0e97e4f") ) (wire (pts (xy 57.15 36.83) (xy 80.01 36.83) ) (stroke (width 0) (type default) ) (uuid "99c3f2ca-5017-466f-b314-df02fe6e4f15") ) (wire (pts (xy 85.09 66.04) (xy 87.63 66.04) ) (stroke (width 0) (type default) ) (uuid "9abe62f2-4689-44e1-8f36-d76d6670e493") ) (wire (pts (xy 80.01 73.66) (xy 72.39 73.66) ) (stroke (width 0) (type default) ) (uuid "a65a9f6d-dae1-4952-a9fe-1059fbf44604") ) (wire (pts (xy 52.07 34.29) (xy 52.07 63.5) ) (stroke (width 0) (type default) ) (uuid "a939fcfd-c84d-4f19-8cdc-54a86b83e544") ) (wire (pts (xy 59.69 39.37) (xy 80.01 39.37) ) (stroke (width 0) (type default) ) (uuid "c0a7cc9a-9a0d-4639-a076-b3ffed653882") ) (wire (pts (xy 39.37 64.77) (xy 39.37 66.04) ) (stroke (width 0) (type default) ) (uuid "c3d955da-0341-4d68-adb6-2a06c15598a8") ) (wire (pts (xy 52.07 34.29) (xy 83.82 34.29) ) (stroke (width 0) (type default) ) (uuid "ca5524b2-43bc-4a07-be36-23b0660fb946") ) (wire (pts (xy 72.39 73.66) (xy 72.39 64.77) ) (stroke (width 0) (type default) ) (uuid "d1637835-ed8f-4ff4-a086-48e06d8ef3a6") ) (wire (pts (xy 87.63 52.07) (xy 114.3 52.07) ) (stroke (width 0) (type default) ) (uuid "d630bc4f-26eb-4453-ae5f-562ebb8f06e2") ) (wire (pts (xy 49.53 50.8) (xy 49.53 43.18) ) (stroke (width 0) (type default) ) (uuid "d868cce9-b4ef-4efe-aaf0-f6ab3f1de098") ) (wire (pts (xy 90.17 72.39) (xy 107.95 72.39) ) (stroke (width 0) (type default) ) (uuid "dcb33480-be10-4b49-9fbb-bd88e83d64aa") ) (wire (pts (xy 52.07 63.5) (xy 62.23 63.5) ) (stroke (width 0) (type default) ) (uuid "e788214d-9585-4c87-b940-22ea53c9d9e6") ) (wire (pts (xy 49.53 63.5) (xy 52.07 63.5) ) (stroke (width 0) (type default) ) (uuid "e7d052db-2651-4bfa-b2de-b74d794c2740") ) (label "L10" (at 76.2 71.12 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "1dc8e180-1011-42ed-ae0b-2f13a5405592") ) (label "L02" (at 52.07 58.42 90) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5defda5a-5577-46a2-a896-7e965ec9adf3") ) (label "L02" (at 76.2 34.29 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "64dbbe76-0c58-4309-9786-95f6e068eea0") ) (label "CIN" (at 48.26 86.36 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "93091208-21f8-461b-b3ac-acb53f3fc8b0") ) (label "L11" (at 76.2 73.66 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9549a0ea-9181-4ba5-a0cd-af294fb61a74") ) (label "L01" (at 76.2 39.37 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a3c3e5e3-9740-45b3-9919-c2f613e8ea0d") ) (label "L00" (at 76.2 36.83 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fe602934-4abf-49ee-a228-6ab8649abec5") ) (hierarchical_label "PINY1" (shape input) (at 26.67 67.31 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1793a4df-38d8-4166-9690-1fe85f51697f") ) (hierarchical_label "IN3" (shape input) (at 26.67 50.8 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3df45406-586d-43a8-b9dc-0593ef849ecc") ) (hierarchical_label "IN4" (shape input) (at 26.67 53.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "43d7f4fb-3f7c-4981-b4fe-8ae6fed14180") ) (hierarchical_label "IN2" (shape input) (at 26.67 43.18 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "56251b73-9262-48fd-95e6-b3166793c9c4") ) (hierarchical_label "IN8" (shape input) (at 26.67 76.2 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "62c89131-d8c2-4eb4-b52c-3fd971de849a") ) (hierarchical_label "IN6" (shape input) (at 26.67 64.77 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "71bd9006-19bc-4611-ab24-9a7aa95a7e7e") ) (hierarchical_label "IN7" (shape input) (at 26.67 73.66 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9885d0f3-d382-4a81-90d4-7985c075fb0c") ) (hierarchical_label "PINY1" (shape input) (at 26.67 45.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "af918ac3-df5b-4c52-85b7-ac1e46cf9112") ) (hierarchical_label "IN5" (shape input) (at 26.67 62.23 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b41b3dc8-4233-4bc0-a9c0-32a759f4e15b") ) (hierarchical_label "CINX" (shape input) (at 26.67 87.63 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ccb1d669-f8eb-4a76-82ae-5483470e4f5f") ) (hierarchical_label "CINY1" (shape input) (at 26.67 85.09 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ea2cdfa2-4bb9-4a4f-9f28-2b590166eb26") ) (hierarchical_label "CINX" (shape input) (at 26.67 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ec7ac47d-7ab8-478e-b18c-edd5b49f0f33") ) (hierarchical_label "IN1" (shape input) (at 26.67 40.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f22b434e-f2dd-41e1-9924-f2206c688b40") ) (hierarchical_label "PINX" (shape input) (at 26.67 78.74 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ff1c64bf-3228-4f0b-a82a-82bef053e4f3") ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "0387904d-beee-4f2e-a0fc-f85ccbceebf7") (property "Reference" "C_I3" (at 33.02 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 62.23 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "27631805-6587-4e4f-8bc2-bace4a785d89") ) (pin "D0" (uuid "f8b26a55-e23a-45b9-8d5f-b8da71ef29c0") ) (pin "Y" (uuid "4f2f809a-9152-465d-8df9-aee6ad4e093e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C_I3") (unit 1) ) ) ) ) (symbol (lib_name "XOR_1") (lib_id "peppercorn:XOR") (at 102.87 85.09 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "28bca7e7-c48d-46a3-a3c5-bb9273c7082c") (property "Reference" "U6" (at 102.5027 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 102.5027 81.28 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 102.87 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 102.87 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 102.87 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "e52cb020-99f2-4c96-88d1-d2051ffcdabe") ) (pin "" (uuid "4aa7fc7a-c415-4bf4-974c-bd253b294111") ) (pin "" (uuid "f39fa83b-8c54-4c83-a0d9-7940b0120189") ) (instances (project "" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U6") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 67.31 52.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "3247861f-af72-46b4-a31b-3a6aebc37701") (property "Reference" "INIT_L10" (at 67.31 55.626 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 67.31 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 67.31 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 67.31 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 67.31 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "ebde6c3c-7203-4278-aa12-ec604f2d8459") ) (pin "D1" (uuid "2ff89f85-90c4-4994-81be-cc8486d77ca4") ) (pin "D0" (uuid "085e6383-cbe3-45b0-9733-8d9f7e6788a8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L10") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 77.47 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "3d6045ff-cc89-410a-827b-44f71e68740d") (property "Reference" "C_I4" (at 33.02 81.28 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 73.66 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "a83698c9-3818-439c-86ed-4a4f2e0eac50") ) (pin "D0" (uuid "f2dcc297-b7a2-461d-910c-31ef875b7f25") ) (pin "Y" (uuid "c8ffb46f-ace8-44bf-9bd8-fc37d30a7510") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C_I4") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 44.45 43.18 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "3e427dfa-84e7-4f2f-ade9-a606c917b2b1") (property "Reference" "INIT_L00" (at 44.45 46.736 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 44.45 39.37 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "ea6b13aa-9cc5-46d0-8f67-39252ca1408d") ) (pin "D1" (uuid "0d92403c-1b4b-4ac6-84dd-b85c932afabf") ) (pin "D0" (uuid "e5fd170e-5277-4158-bafc-8b72ba4bf620") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L00") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 67.31 64.77 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "48abf2b6-db5e-490f-bfdc-235c3df3891c") (property "Reference" "INIT_L11" (at 67.564 68.326 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 67.31 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 67.31 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 67.31 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 67.31 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "3220a936-1cc4-49fa-b68d-dbdae8ba2f6f") ) (pin "D1" (uuid "2d59cc41-8334-44bc-898e-64063c886d70") ) (pin "D0" (uuid "74fa9af3-5858-472b-87a2-b6a889d18e88") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L11") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 92.71 64.77 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "5459840c-a81e-4faf-b962-02cbb22c51c7") (property "Reference" "INIT_L20" (at 92.71 68.326 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 92.71 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 92.71 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 92.71 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 92.71 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "a6e8879d-7358-4d44-93b9-62cb11ce95eb") ) (pin "D1" (uuid "813b5d12-6198-4e00-9468-64d92e1473dd") ) (pin "D0" (uuid "8a52491c-0475-4495-8850-bd8201a3e29a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L20") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:AO21") (at 83.82 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "852e6e91-f9a1-453a-b825-3812a9ea57b1") (property "Reference" "U7" (at 86.3599 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 86.3599 31.75 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 83.82 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 83.82 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 83.82 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "aba34de6-f0e9-4f2f-9219-c0499e61ad38") ) (pin "" (uuid "7735e0e0-65dd-4951-8cf0-29568a070248") ) (pin "" (uuid "1337752a-acb4-46c2-a3ae-072ce889197c") ) (pin "" (uuid "6ed2647a-1e95-4ea2-97c3-6c7b21e06bf9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U7") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XOR") (at 85.09 72.39 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8a701e3b-0d33-4828-970a-968a86b82e1e") (property "Reference" "U8" (at 84.7227 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 84.7227 68.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "085fe0ca-0f8b-4900-9a51-08f37133c4d8") ) (pin "" (uuid "0928ad73-6b51-4753-97ac-d38f86eead81") ) (pin "" (uuid "5ecc73ac-a8f5-4870-9c74-398c3e6cfeff") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "U8") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 44.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "8b54e2bb-929d-45d6-8974-57a94e9757d9") (property "Reference" "C_I1" (at 33.02 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 40.64 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "cc615732-b4aa-4b32-8eb3-3c7da06d925a") ) (pin "D0" (uuid "aba6693a-fdd5-4e23-b9a5-e7855ad4189e") ) (pin "Y" (uuid "118551e9-38a3-4240-b469-d29fde9b69da") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C_I1") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 44.45 74.93 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "92cc6cf1-6a97-4dfb-815c-8c03ccb58798") (property "Reference" "INIT_L03" (at 44.45 78.232 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 44.45 71.12 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "8cd96309-f887-4990-95b6-092085fd27d0") ) (pin "D1" (uuid "ee348ba0-269b-4e0f-8296-41d33cd5c986") ) (pin "D0" (uuid "4ada21bd-eca1-4071-915d-2725366f48ba") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L03") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a4cc535b-6eba-45cd-b96c-230645476521") (property "Reference" "C_I2" (at 33.02 58.42 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "55bd5070-fb84-456a-8acb-d3f1edc32c43") ) (pin "D0" (uuid "12173197-eab5-49bf-b17b-1e0beca934b4") ) (pin "Y" (uuid "6db4e4fa-9123-4258-a9d5-d1a92229cafe") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C_I2") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 44.45 53.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a7d36038-0f1b-45d1-93a2-4c6b70a4b95d") (property "Reference" "INIT_L01" (at 44.45 56.896 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 44.45 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "4ce9e115-3bb8-47b8-b46b-e2da3f9be6b0") ) (pin "D1" (uuid "bbb23f29-4d74-400f-ac7d-01741bc7c14a") ) (pin "D0" (uuid "c7c4c63d-4cea-4609-90a3-6655a5f4a1a2") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L01") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 44.45 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "ccd92c8a-9ced-4c8a-94c9-c2b257ac16f4") (property "Reference" "INIT_L02" (at 44.45 67.056 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 44.45 59.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "166e893d-e752-40f4-bd8c-8bc3ebee2fe9") ) (pin "D1" (uuid "838ee17e-fa9f-45e0-a88f-2c114df406a6") ) (pin "D0" (uuid "7f73fa44-ea47-4397-a6c6-31ebe6766ed9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "INIT_L02") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 86.36 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "deb845ef-6bab-47e5-ad92-e56240fecd25") (property "Reference" "C_HORIZ" (at 32.766 89.916 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 82.55 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "0e725d65-59db-489c-a215-8286c48eea46") ) (pin "D1" (uuid "fe73b675-db20-4ff2-a708-cc67d796ba53") ) (pin "Y" (uuid "78e29c35-b4d4-4600-b769-fbc65f8a3532") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/c7e1e454-4a3a-497b-82a6-da398b72cabb" (reference "C_HORIZ") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/cpe_comb_addf2.kicad_sch000066400000000000000000005254471514752025000237030ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "4eb45b01-2ebb-400b-8ba6-4cb100222d53") (paper "A4") (title_block (title "CPE: 2-bit Adder/Multiplier Mode") (rev "4") (company "YosysHQ") ) (lib_symbols (symbol "AND_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_1_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_2_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_1_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_2_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_2_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_3_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_3_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OR_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_2_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR3_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR3_1_0_1" (arc (start -3.048 3.81) (mid 0.5351 3.0623) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.6095 -2.8827) (end -2.794 -3.556) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "XOR3_1_1_1" (arc (start -3.81 3.81) (mid -2.464 2.0874) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.9759 0.0685) (mid -2.4353 -2.0687) (end -3.7813 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.0193 3.7913) (mid -1.6733 2.0687) (end -1.2139 -0.0685) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2139 0.0685) (mid -1.6733 -2.0687) (end -3.0193 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_2_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_3_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2 with C_I mux" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2_0_1" (polyline (pts (xy -2.54 -2.54) (xy -2.54 2.54) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2 (conceptual)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2 (conceptual)_1_1" (polyline (pts (xy -2.54 -2.54) (xy -2.54 2.54) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2B_0_1" (polyline (pts (xy -5.08 2.54) (xy -5.08 -2.54) (xy 5.08 -1.27) (xy 5.08 1.27) (xy -5.08 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2B_1_1" (pin input line (at -7.62 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:NAND" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NAND_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:OR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XOR3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR3_0_1" (arc (start -3.048 3.81) (mid 0.5351 3.0623) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.6095 -2.8827) (end -2.794 -3.556) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "XOR3_1_1" (arc (start -3.81 3.81) (mid -2.464 2.0874) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.9759 0.0685) (mid -2.4353 -2.0687) (end -3.7813 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.0193 3.7913) (mid -1.6733 2.0687) (end -1.2139 -0.0685) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2139 0.0685) (mid -1.6733 -2.0687) (end -3.0193 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (text "C_I3" (exclude_from_sim no) (at 30.48 70.104 0) (effects (font (size 1.27 1.27) ) ) (uuid "2781b8f5-c8d3-41fc-ac95-dfe5197e0ec5") ) (text "C_FUNCTION = 2: ADDF2\n\nThis provides a 2-bit full adder.\n\nThe addition is performed in propagate/generate style.\n\nSetting C_HORIZ configures the adder to propagate carries\nhorizontally, rather than vertically. This feature isn't\nimplemented in p_r or nextpnr because horizontal carries\nhave twice the propagation delay of vertical carries.\n\nC_FUNCTION = 3: MULT\n\nThis provides a 2x2-bit Booth multiplier.\n\nThe dedicated logic performs multiplication by B[1], while\nmultiplication by B[0] is performed within the soft logic.\n\n(These functions differ by how they set up the downstream\ncarry and propagation lines; from this part of the logic\nthey function identically, thus have been grouped together)" (exclude_from_sim no) (at 215.9 38.1 0) (effects (font (size 2.54 2.54) ) (justify top) ) (uuid "567c419c-7f60-47b4-9ef7-ffbfb9637a58") ) (text "L01" (exclude_from_sim no) (at 35.56 58.674 0) (effects (font (size 1.27 1.27) ) ) (uuid "5fd596f8-83bc-4f68-b7ce-ba05ec16010e") ) (text "L02" (exclude_from_sim no) (at 35.56 71.374 0) (effects (font (size 1.27 1.27) ) ) (uuid "8076cfb1-9fc1-4011-a52c-7d011501568b") ) (text "L20" (exclude_from_sim no) (at 104.14 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "80a6d197-9643-4b6c-a019-844b9cc8f01c") ) (text "PROPAGATE" (exclude_from_sim no) (at 127 46.228 0) (effects (font (size 1.27 1.27) ) ) (uuid "81f89757-f46b-4e57-9251-9c5e084508ab") ) (text "C_I4" (exclude_from_sim no) (at 30.48 82.804 0) (effects (font (size 1.27 1.27) ) ) (uuid "88264482-5932-4645-bb72-54ad2088f90f") ) (text "C_I2" (exclude_from_sim no) (at 30.48 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "8a3549b4-13ea-404e-bded-0bff14d85a04") ) (text "L00" (exclude_from_sim no) (at 35.56 45.974 0) (effects (font (size 1.27 1.27) ) ) (uuid "8b019595-b4ad-471d-869a-c34da0af6057") ) (text "L11" (exclude_from_sim no) (at 68.58 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "8f0e7344-0aca-4bf9-b089-4b63e3d3d362") ) (text "GENERATE" (exclude_from_sim no) (at 127.254 82.804 0) (effects (font (size 1.27 1.27) ) ) (uuid "918189cf-03e8-4465-8b0b-c19917e224a5") ) (text "C_HORIZ" (exclude_from_sim no) (at 32.766 92.964 0) (effects (font (size 1.27 1.27) ) ) (uuid "9d0b1b2e-a4fc-467f-b88e-3712a936a6f0") ) (text "C_I1" (exclude_from_sim no) (at 30.48 44.704 0) (effects (font (size 1.27 1.27) ) ) (uuid "a1fc0157-19a9-443c-9f50-57320700174b") ) (text "L10" (exclude_from_sim no) (at 68.58 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "c489419f-8611-4943-bddd-ba0a8779b846") ) (text "L03" (exclude_from_sim no) (at 35.56 84.074 0) (effects (font (size 1.27 1.27) ) ) (uuid "cd4227a0-24f0-41b2-bfe9-ed839c30ca88") ) (text "In multiplier mode,\nthe LUTs should be set up as:\nL10 = (A[1] & B[0]) ^ SI[1]\nL11 = (A[0] & B[0]) ^ SI[0]" (exclude_from_sim no) (at 62.23 127.254 0) (effects (font (size 1.27 1.27) ) ) (uuid "fe543e04-d665-4f15-a0e8-82aaecaa9829") ) (junction (at 121.92 113.03) (diameter 0) (color 0 0 0 0) (uuid "0f4205d4-8dec-4f54-831e-8c70baa837cc") ) (junction (at 114.3 130.81) (diameter 0) (color 0 0 0 0) (uuid "13eb28ec-409f-4f44-9672-957d471e14aa") ) (junction (at 53.34 80.01) (diameter 0) (color 0 0 0 0) (uuid "32a5d2b4-0d2f-41fa-bac8-57cd99789e3c") ) (junction (at 111.76 121.92) (diameter 0) (color 0 0 0 0) (uuid "34797e65-8525-4ab1-b67f-7e534f5e3449") ) (junction (at 76.2 53.34) (diameter 0) (color 0 0 0 0) (uuid "445f080d-ac61-4955-b70c-5ebac03944ff") ) (junction (at 121.92 130.81) (diameter 0) (color 0 0 0 0) (uuid "45f7c275-94b2-4028-9214-caf569c2b284") ) (junction (at 50.8 54.61) (diameter 0) (color 0 0 0 0) (uuid "4f7f14c0-a7d4-49ca-ba13-8b01c9a02fc9") ) (junction (at 76.2 73.66) (diameter 0) (color 0 0 0 0) (uuid "6aff60c6-9af3-4113-a866-94e228007e76") ) (junction (at 48.26 52.07) (diameter 0) (color 0 0 0 0) (uuid "6dacb23a-2ab6-4836-809e-0a440cbd3ff4") ) (junction (at 53.34 67.31) (diameter 0) (color 0 0 0 0) (uuid "75d6e55b-64c4-4447-83ae-417a88684072") ) (junction (at 111.76 135.89) (diameter 0) (color 0 0 0 0) (uuid "8391191f-4060-4f46-8a5c-ea85d9a2895c") ) (junction (at 86.36 85.09) (diameter 0) (color 0 0 0 0) (uuid "b973a506-7750-4ce7-80a4-997a15506fea") ) (junction (at 111.76 115.57) (diameter 0) (color 0 0 0 0) (uuid "c2217a3e-c961-46e6-8a8b-6cbf943f1d99") ) (junction (at 99.06 52.07) (diameter 0) (color 0 0 0 0) (uuid "c574c76f-c1cd-4db8-a1c0-ed9d94af1cce") ) (junction (at 83.82 121.92) (diameter 0) (color 0 0 0 0) (uuid "cb004680-a9a4-4c2d-bd4d-74d8a5adc4d7") ) (junction (at 129.54 128.27) (diameter 0) (color 0 0 0 0) (uuid "d09606af-05d8-49e1-8b5d-4a4a7c43c1c1") ) (junction (at 78.74 68.58) (diameter 0) (color 0 0 0 0) (uuid "f45c48ca-0813-405d-a723-473d0f4ae3e1") ) (junction (at 111.76 88.9) (diameter 0) (color 0 0 0 0) (uuid "ffe13115-62b0-4497-aa03-722e84ff04cd") ) (wire (pts (xy 121.92 113.03) (xy 121.92 115.57) ) (stroke (width 0) (type default) ) (uuid "00b72dbb-3d0c-40d2-b087-17d137fb3fe0") ) (wire (pts (xy 40.64 67.31) (xy 53.34 67.31) ) (stroke (width 0) (type default) ) (uuid "022303cd-b0f8-4132-a648-f34f2ecc77c2") ) (wire (pts (xy 81.28 91.44) (xy 81.28 90.17) ) (stroke (width 0) (type default) ) (uuid "03047b6c-f838-4453-a59d-c9064e526b2c") ) (wire (pts (xy 25.4 66.04) (xy 30.48 66.04) ) (stroke (width 0) (type default) ) (uuid "03b47113-e9f4-4fc1-bab4-6a8190cc883d") ) (wire (pts (xy 111.76 127) (xy 111.76 135.89) ) (stroke (width 0) (type default) ) (uuid "04243f4b-cf7c-4887-aa96-9a58e767e9c5") ) (wire (pts (xy 104.14 90.17) (xy 104.14 88.9) ) (stroke (width 0) (type default) ) (uuid "06434025-4e90-4b00-8a15-d3ea4db92586") ) (wire (pts (xy 101.6 44.45) (xy 132.08 44.45) ) (stroke (width 0) (type default) ) (uuid "08dac82f-72e5-48a2-bdac-f0a675b93e4d") ) (wire (pts (xy 78.74 68.58) (xy 78.74 71.12) ) (stroke (width 0) (type default) ) (uuid "09e37da9-167b-4246-b53d-acb8ab30ce91") ) (wire (pts (xy 69.85 77.47) (xy 69.85 76.2) ) (stroke (width 0) (type default) ) (uuid "0e445b6a-e175-44c5-80fe-eba7229ebad9") ) (wire (pts (xy 99.06 52.07) (xy 111.76 52.07) ) (stroke (width 0) (type default) ) (uuid "0ee1430d-f572-43a0-a7c9-bbfc1dc81329") ) (wire (pts (xy 81.28 90.17) (xy 104.14 90.17) ) (stroke (width 0) (type default) ) (uuid "0f704273-c5cf-4345-928f-9ee1c7a644ae") ) (wire (pts (xy 25.4 40.64) (xy 30.48 40.64) ) (stroke (width 0) (type default) ) (uuid "11627fab-671f-4dcc-a1b9-ebb55f09249a") ) (wire (pts (xy 93.98 45.72) (xy 101.6 45.72) ) (stroke (width 0) (type default) ) (uuid "11843d03-ea07-410e-95df-70c730a6e3d4") ) (wire (pts (xy 121.92 130.81) (xy 132.08 130.81) ) (stroke (width 0) (type default) ) (uuid "11dc2c59-03a4-4be9-b85e-f81b3dbef81c") ) (wire (pts (xy 40.64 92.71) (xy 71.12 92.71) ) (stroke (width 0) (type default) ) (uuid "1480bf5d-d2a1-47dd-85bf-fef044073bf6") ) (wire (pts (xy 99.06 81.28) (xy 132.08 81.28) ) (stroke (width 0) (type default) ) (uuid "15590541-f131-4006-ad61-6ab433b593dd") ) (wire (pts (xy 69.85 77.47) (xy 71.12 77.47) ) (stroke (width 0) (type default) ) (uuid "186a14fb-7acf-4a1e-ae62-2f4e90548389") ) (wire (pts (xy 48.26 52.07) (xy 63.5 52.07) ) (stroke (width 0) (type default) ) (uuid "191ecd63-34d8-4dfb-a1cf-231193794252") ) (wire (pts (xy 71.12 90.17) (xy 53.34 90.17) ) (stroke (width 0) (type default) ) (uuid "1cd6b185-5b16-4472-bfa9-113c34d1e3b5") ) (wire (pts (xy 142.24 134.62) (xy 149.86 134.62) ) (stroke (width 0) (type default) ) (uuid "1e79c773-06b9-49b7-b848-805844ef0051") ) (wire (pts (xy 111.76 121.92) (xy 116.84 121.92) ) (stroke (width 0) (type default) ) (uuid "20ade0cf-15dd-41e0-858f-96f299129d22") ) (wire (pts (xy 86.36 85.09) (xy 76.2 85.09) ) (stroke (width 0) (type default) ) (uuid "2332f1f7-58da-435a-8a23-43805219e0a4") ) (wire (pts (xy 127 120.65) (xy 149.86 120.65) ) (stroke (width 0) (type default) ) (uuid "258b1525-1ac5-46b4-aefb-8bc041cd4a9e") ) (wire (pts (xy 129.54 128.27) (xy 129.54 133.35) ) (stroke (width 0) (type default) ) (uuid "25c2dc37-6969-4a55-98f9-07b55d30e342") ) (wire (pts (xy 40.64 69.85) (xy 40.64 80.01) ) (stroke (width 0) (type default) ) (uuid "25df46b0-72b5-4cbe-a399-fec440916110") ) (wire (pts (xy 114.3 133.35) (xy 114.3 130.81) ) (stroke (width 0) (type default) ) (uuid "293fb7be-7cb7-44b7-8e27-5136875af3da") ) (wire (pts (xy 114.3 130.81) (xy 121.92 130.81) ) (stroke (width 0) (type default) ) (uuid "2c0bee0e-7bd3-4550-a740-659ba4277b1d") ) (wire (pts (xy 76.2 44.45) (xy 76.2 53.34) ) (stroke (width 0) (type default) ) (uuid "32487a45-81f7-4c85-8f8e-74d81f5a1779") ) (wire (pts (xy 25.4 123.19) (xy 40.64 123.19) ) (stroke (width 0) (type default) ) (uuid "334c41b5-bec4-45da-9676-f6f792762fd9") ) (wire (pts (xy 76.2 73.66) (xy 83.82 73.66) ) (stroke (width 0) (type default) ) (uuid "35238b4e-c5c8-4030-a615-0b788588efd7") ) (wire (pts (xy 83.82 121.92) (xy 111.76 121.92) ) (stroke (width 0) (type default) ) (uuid "388dac56-7f52-4124-afad-cdb10b236abb") ) (wire (pts (xy 53.34 80.01) (xy 53.34 90.17) ) (stroke (width 0) (type default) ) (uuid "3d532cc8-5734-49aa-a733-1bbaeeb9b754") ) (wire (pts (xy 69.85 76.2) (xy 68.58 76.2) ) (stroke (width 0) (type default) ) (uuid "400b649d-6d60-4fca-b9a1-ec5974d675c4") ) (wire (pts (xy 25.4 116.84) (xy 40.64 116.84) ) (stroke (width 0) (type default) ) (uuid "41834371-a1d9-449c-a1fa-2f266ccfd14d") ) (wire (pts (xy 81.28 80.01) (xy 99.06 80.01) ) (stroke (width 0) (type default) ) (uuid "427f0d6f-f105-4c91-9bf0-be491042e193") ) (wire (pts (xy 49.53 115.57) (xy 111.76 115.57) ) (stroke (width 0) (type default) ) (uuid "44bfe800-41f4-4381-a82c-df08d7920f85") ) (wire (pts (xy 25.4 114.3) (xy 40.64 114.3) ) (stroke (width 0) (type default) ) (uuid "45f918c0-c276-4321-b910-67a4063e8d8f") ) (wire (pts (xy 48.26 74.93) (xy 59.69 74.93) ) (stroke (width 0) (type default) ) (uuid "45fdfb82-7153-4c54-a9de-ca9e3401970c") ) (wire (pts (xy 50.8 54.61) (xy 63.5 54.61) ) (stroke (width 0) (type default) ) (uuid "48ac03fb-18ae-46e4-b388-3fa0d604c985") ) (wire (pts (xy 86.36 128.27) (xy 91.44 128.27) ) (stroke (width 0) (type default) ) (uuid "49e7e606-74bc-4104-88e2-85fa10e75a8f") ) (wire (pts (xy 78.74 68.58) (xy 93.98 68.58) ) (stroke (width 0) (type default) ) (uuid "4bbb4f6c-db3b-4edb-99dd-e10abce6e001") ) (wire (pts (xy 76.2 44.45) (xy 85.09 44.45) ) (stroke (width 0) (type default) ) (uuid "4bfaada0-e127-4337-af8e-36afb6f57722") ) (wire (pts (xy 78.74 46.99) (xy 85.09 46.99) ) (stroke (width 0) (type default) ) (uuid "4f51ef77-b81c-4b22-8717-d3f8170765e2") ) (wire (pts (xy 116.84 127) (xy 111.76 127) ) (stroke (width 0) (type default) ) (uuid "5116f325-424d-4a1f-bafc-5ead32f903bf") ) (wire (pts (xy 124.46 138.43) (xy 149.86 138.43) ) (stroke (width 0) (type default) ) (uuid "5340e709-a22d-49a7-b4cd-baf2b482d017") ) (wire (pts (xy 83.82 121.92) (xy 83.82 130.81) ) (stroke (width 0) (type default) ) (uuid "560961c1-8f48-4e4b-aa98-8c40c5a1c6bf") ) (wire (pts (xy 78.74 71.12) (xy 86.36 71.12) ) (stroke (width 0) (type default) ) (uuid "5a3d1c7d-318f-4eea-a021-df458e50bad7") ) (wire (pts (xy 53.34 80.01) (xy 71.12 80.01) ) (stroke (width 0) (type default) ) (uuid "5c5a8ada-5a2a-4e75-ad1a-bf89c9491cf5") ) (wire (pts (xy 86.36 71.12) (xy 86.36 85.09) ) (stroke (width 0) (type default) ) (uuid "5c7d2fca-e99a-4104-855f-0959ddc8d4a4") ) (wire (pts (xy 99.06 80.01) (xy 99.06 81.28) ) (stroke (width 0) (type default) ) (uuid "5fccf592-2ef4-4387-81fe-b93a04d2ee2c") ) (wire (pts (xy 76.2 53.34) (xy 93.98 53.34) ) (stroke (width 0) (type default) ) (uuid "649a15a0-b436-49b0-96bb-bc67fa16b0c4") ) (wire (pts (xy 83.82 73.66) (xy 83.82 113.03) ) (stroke (width 0) (type default) ) (uuid "6a307abe-3769-4aae-b507-c7a61f4f5276") ) (wire (pts (xy 101.6 130.81) (xy 114.3 130.81) ) (stroke (width 0) (type default) ) (uuid "6b5179e1-e4a1-4c29-b6ef-789d4e2895b2") ) (wire (pts (xy 78.74 68.58) (xy 78.74 46.99) ) (stroke (width 0) (type default) ) (uuid "6daebc3c-c1bf-4a70-8cf4-08d392551818") ) (wire (pts (xy 127 135.89) (xy 132.08 135.89) ) (stroke (width 0) (type default) ) (uuid "6fe5cdcc-9517-4ea0-9176-94cd5e203800") ) (wire (pts (xy 76.2 53.34) (xy 76.2 73.66) ) (stroke (width 0) (type default) ) (uuid "75d6b2b3-edb9-4d33-b9ce-5e28aab0e313") ) (wire (pts (xy 111.76 121.92) (xy 111.76 124.46) ) (stroke (width 0) (type default) ) (uuid "785ed448-3965-488f-a103-783e2ff26051") ) (wire (pts (xy 111.76 135.89) (xy 114.3 135.89) ) (stroke (width 0) (type default) ) (uuid "79786db0-42c9-4d87-bf71-7cc79ab9d870") ) (wire (pts (xy 129.54 113.03) (xy 129.54 128.27) ) (stroke (width 0) (type default) ) (uuid "7a0e9185-8d53-499e-b897-692aed5c652b") ) (wire (pts (xy 119.38 68.58) (xy 119.38 69.85) ) (stroke (width 0) (type default) ) (uuid "83a549a5-9d66-4688-8fc5-92c3418877b9") ) (wire (pts (xy 127 125.73) (xy 127 135.89) ) (stroke (width 0) (type default) ) (uuid "85f21765-5daf-499a-a502-5b4d3fdaed82") ) (wire (pts (xy 48.26 52.07) (xy 48.26 74.93) ) (stroke (width 0) (type default) ) (uuid "8bcfdc7b-0aa8-4d66-b764-303654256029") ) (wire (pts (xy 40.64 54.61) (xy 50.8 54.61) ) (stroke (width 0) (type default) ) (uuid "98118332-128c-43e3-b18c-756f05f42dd5") ) (wire (pts (xy 140.97 129.54) (xy 149.86 129.54) ) (stroke (width 0) (type default) ) (uuid "9bac4b12-d5cd-4774-8d0e-62932375244d") ) (wire (pts (xy 53.34 67.31) (xy 53.34 80.01) ) (stroke (width 0) (type default) ) (uuid "9c21122a-05cc-46df-9b30-483ccde31bff") ) (wire (pts (xy 111.76 88.9) (xy 111.76 110.49) ) (stroke (width 0) (type default) ) (uuid "9ef1e6a3-f27a-4cfd-9d41-9b8111dacc32") ) (wire (pts (xy 83.82 130.81) (xy 91.44 130.81) ) (stroke (width 0) (type default) ) (uuid "a0531639-eac0-4f0a-ab90-91e9c9548a94") ) (wire (pts (xy 121.92 113.03) (xy 129.54 113.03) ) (stroke (width 0) (type default) ) (uuid "a3a7f3c9-0ab6-43f9-a0f4-7aca2c7ef59d") ) (wire (pts (xy 53.34 67.31) (xy 63.5 67.31) ) (stroke (width 0) (type default) ) (uuid "a92437b8-eadd-4d3a-94e3-754c502545b3") ) (wire (pts (xy 25.4 78.74) (xy 30.48 78.74) ) (stroke (width 0) (type default) ) (uuid "aa175f2e-6a39-4170-8a53-dbbf235261cf") ) (wire (pts (xy 25.4 133.35) (xy 91.44 133.35) ) (stroke (width 0) (type default) ) (uuid "ab4a9960-74f0-4bd6-87b8-37098b7d70e3") ) (wire (pts (xy 124.46 134.62) (xy 124.46 138.43) ) (stroke (width 0) (type default) ) (uuid "abcab618-7629-4641-98e1-7fd1d89fbf5b") ) (wire (pts (xy 129.54 128.27) (xy 132.08 128.27) ) (stroke (width 0) (type default) ) (uuid "acd080c4-ed7b-4913-9a2b-e001828cd11a") ) (wire (pts (xy 50.8 77.47) (xy 59.69 77.47) ) (stroke (width 0) (type default) ) (uuid "adc338c0-4fa7-4f51-9d9c-6f0858711fda") ) (wire (pts (xy 81.28 78.74) (xy 81.28 80.01) ) (stroke (width 0) (type default) ) (uuid "b1227f88-034d-4479-bfff-832011b041c1") ) (wire (pts (xy 93.98 69.85) (xy 99.06 69.85) ) (stroke (width 0) (type default) ) (uuid "bf5769f1-260b-4ea7-b51c-57330c99a9de") ) (wire (pts (xy 25.4 120.65) (xy 40.64 120.65) ) (stroke (width 0) (type default) ) (uuid "c6e39053-2b86-4bb8-af96-92f03fb70a28") ) (wire (pts (xy 83.82 113.03) (xy 111.76 113.03) ) (stroke (width 0) (type default) ) (uuid "c72ca9fb-c28d-4ca5-b35e-6d6c5aec499b") ) (wire (pts (xy 49.53 121.92) (xy 83.82 121.92) ) (stroke (width 0) (type default) ) (uuid "ca9e4f3e-4b88-4a15-8f3f-ba53f55a4f07") ) (wire (pts (xy 111.76 88.9) (xy 111.76 54.61) ) (stroke (width 0) (type default) ) (uuid "cac2bc26-4e6e-42f8-8cda-38a8fa9c1e19") ) (wire (pts (xy 73.66 53.34) (xy 76.2 53.34) ) (stroke (width 0) (type default) ) (uuid "ce1af9c9-9c11-42dc-8732-07f4515fd0fd") ) (wire (pts (xy 25.4 53.34) (xy 30.48 53.34) ) (stroke (width 0) (type default) ) (uuid "cef5a3e2-7078-46af-a7ac-de0a9b17d3c8") ) (wire (pts (xy 73.66 68.58) (xy 78.74 68.58) ) (stroke (width 0) (type default) ) (uuid "cf485d7a-8476-4085-852c-adef3c7f7410") ) (wire (pts (xy 25.4 135.89) (xy 111.76 135.89) ) (stroke (width 0) (type default) ) (uuid "cfd662af-f5d0-43b5-966c-2b87bbb8ad09") ) (wire (pts (xy 111.76 124.46) (xy 116.84 124.46) ) (stroke (width 0) (type default) ) (uuid "d28157e9-fcd1-42e3-9206-ecda7d9c9e3b") ) (wire (pts (xy 99.06 52.07) (xy 99.06 67.31) ) (stroke (width 0) (type default) ) (uuid "d38253cb-8ab8-4ccd-8623-e9a11c61106f") ) (wire (pts (xy 111.76 119.38) (xy 116.84 119.38) ) (stroke (width 0) (type default) ) (uuid "d3a3eddd-ad5e-482a-ab04-e47aff77d1e4") ) (wire (pts (xy 119.38 69.85) (xy 132.08 69.85) ) (stroke (width 0) (type default) ) (uuid "d6cec3da-9382-4215-9001-992de5638c69") ) (wire (pts (xy 76.2 85.09) (xy 76.2 86.36) ) (stroke (width 0) (type default) ) (uuid "dbbc0158-6c0a-4a1c-a2c3-0137c2f2eee5") ) (wire (pts (xy 93.98 53.34) (xy 93.98 52.07) ) (stroke (width 0) (type default) ) (uuid "df2699b0-3aec-41da-ad8c-dd5142793237") ) (wire (pts (xy 93.98 68.58) (xy 93.98 69.85) ) (stroke (width 0) (type default) ) (uuid "e39aacbe-c95f-4089-84fa-59137f4d8adb") ) (wire (pts (xy 104.14 88.9) (xy 111.76 88.9) ) (stroke (width 0) (type default) ) (uuid "e47e3357-c031-46c6-b394-abb7b59d8110") ) (wire (pts (xy 129.54 133.35) (xy 132.08 133.35) ) (stroke (width 0) (type default) ) (uuid "e88d395a-931f-495f-ae76-2241a34c111b") ) (wire (pts (xy 50.8 54.61) (xy 50.8 77.47) ) (stroke (width 0) (type default) ) (uuid "e9e68d28-a5e6-4aa5-a3a0-09e3596e8f8d") ) (wire (pts (xy 121.92 53.34) (xy 132.08 53.34) ) (stroke (width 0) (type default) ) (uuid "f11d24eb-faef-4906-95c9-ce425272abfe") ) (wire (pts (xy 101.6 45.72) (xy 101.6 44.45) ) (stroke (width 0) (type default) ) (uuid "f17e047c-bf56-4059-9d40-66f52e5b191b") ) (wire (pts (xy 111.76 115.57) (xy 111.76 119.38) ) (stroke (width 0) (type default) ) (uuid "f40b88f0-5a78-48f7-8db2-480a1e876701") ) (wire (pts (xy 93.98 52.07) (xy 99.06 52.07) ) (stroke (width 0) (type default) ) (uuid "f437ddc5-82cb-4b0b-9e81-5bc4367bc363") ) (wire (pts (xy 40.64 69.85) (xy 63.5 69.85) ) (stroke (width 0) (type default) ) (uuid "f568430a-7f5b-4c08-ad75-12da6445ede7") ) (wire (pts (xy 86.36 85.09) (xy 86.36 128.27) ) (stroke (width 0) (type default) ) (uuid "f6fc8fee-33b6-4f95-bbc8-9042532b67a2") ) (wire (pts (xy 40.64 52.07) (xy 48.26 52.07) ) (stroke (width 0) (type default) ) (uuid "fbdaf9d4-8ccb-4228-af42-11252bc38981") ) (wire (pts (xy 109.22 68.58) (xy 119.38 68.58) ) (stroke (width 0) (type default) ) (uuid "fc75dc5a-85da-47b7-b60d-1d37a6c8a028") ) (wire (pts (xy 40.64 52.07) (xy 40.64 41.91) ) (stroke (width 0) (type default) ) (uuid "fcc2ce22-8418-425b-a9ca-cd5c1b26db5c") ) (label "L11" (at 78.74 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "101226a8-472f-4d75-a1f9-a520a4823db6") ) (label "COY2_a" (at 149.86 120.65 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "176429ae-ffc9-4362-9c62-8171fc0ae9f5") ) (label "L10" (at 81.28 44.45 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "1cde5a43-c281-4010-9161-fb93b47ceb33") ) (label "L01" (at 55.88 77.47 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2676a444-987f-4242-a649-f28e47ebfe9b") ) (label "L03" (at 55.88 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "2b6cf478-7311-4e41-a42d-238cb6d7911a") ) (label "COMB2OUT" (at 132.08 53.34 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "2e869216-a7a9-4e7a-a5c3-7554e9827c19") ) (label "CIN" (at 55.88 92.71 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "375786f6-9631-489d-8688-2f6f13b8dcd9") ) (label "L01" (at 50.8 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "489fedc1-25d6-45ac-adc6-67716fcb55bc") ) (label "L00" (at 55.88 74.93 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4cca8e3f-60f6-49fa-a2c8-2d05daa9d7ae") ) (label "L02" (at 55.88 80.01 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "56b4dd1c-40a7-44a1-afa1-974b3c394bd3") ) (label "L11" (at 81.28 46.99 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5938dca7-cd5a-4889-aa13-511106aff6dc") ) (label "COY2_S" (at 149.86 129.54 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "595b61be-73b2-42ac-9ca0-6aaa252f20b6") ) (label "MULTO2" (at 149.86 134.62 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "718260fe-f5b5-4ed5-b490-ddc704d95add") ) (label "A_-1" (at 26.67 123.19 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7375d393-87da-49bd-9560-a23e57964cb1") ) (label "B_1" (at 26.67 114.3 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "769c17ce-9024-425d-8125-f1ac400edb8b") ) (label "L10" (at 107.95 113.03 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "83608e74-bd4b-4367-83ee-65416786aed4") ) (label "L02" (at 55.88 90.17 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "8cbc7aa9-155a-4c92-9bfb-ad6ab279e5fc") ) (label "CADD_A" (at 132.08 81.28 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "9245928b-4d7c-4de0-bf88-d7c1e3b5a533") ) (label "CI_1" (at 26.67 135.89 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9992c823-7639-41ec-ac37-4fce5142f61a") ) (label "L11" (at 87.63 128.27 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9aa2e1d3-85e2-4db1-a53a-7cf96f21c2e4") ) (label "L00" (at 48.26 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "9ae91a0c-d151-4a4d-820f-29f05601a5ee") ) (label "A_0" (at 26.67 116.84 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a2dab15b-7781-435d-8548-d53b4731ab8a") ) (label "CI_0" (at 26.67 133.35 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a8b95668-a812-4477-992c-a89b6f4ea213") ) (label "CADD_S" (at 132.08 44.45 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "b46cee45-6eb5-40b8-b26d-509b7cec7b2e") ) (label "MULTO1" (at 149.86 138.43 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "b7da174e-8983-432e-b399-8ba6549f499c") ) (label "L10" (at 76.2 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "bc69646a-c965-400a-94ba-cea0118708b9") ) (label "L02" (at 53.34 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "c363affd-0ba9-4761-8a9c-eaf2944d7e8d") ) (label "COMB1OUT" (at 132.08 69.85 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "c7f73273-b01d-47a1-a092-1140b781eccf") ) (label "B_1" (at 26.67 120.65 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fb27578f-4485-4e72-96ff-e70822c74b5a") ) (hierarchical_label "PINY2" (shape input) (at 25.4 114.3 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0ccc61f1-51fd-41c3-ad51-fb1587637af1") ) (hierarchical_label "CINY2" (shape input) (at 25.4 135.89 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1b520f99-bb93-45e7-95a1-91108165fc4e") ) (hierarchical_label "IN3" (shape input) (at 25.4 53.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "24c9ac1a-358a-4db9-a37d-64ac421ef40a") ) (hierarchical_label "IN2" (shape input) (at 25.4 43.18 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "325cf7e3-b104-44a0-a18e-b4cc8e5c5375") ) (hierarchical_label "CINY1" (shape input) (at 25.4 133.35 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3f994d7e-321b-4942-9086-083556d89ba3") ) (hierarchical_label "CINY1" (shape input) (at 25.4 91.44 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "52c58ec2-f84c-4900-a43a-8ee8a530667e") ) (hierarchical_label "PINY2" (shape input) (at 25.4 120.65 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "67daa942-3742-40d0-87a3-edb01dfbb530") ) (hierarchical_label "IN5" (shape input) (at 25.4 66.04 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6c9441df-6e8a-432b-9c96-51463e8a76f5") ) (hierarchical_label "PINX" (shape input) (at 25.4 83.82 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "796fca0f-2ee9-47ed-88cf-e6c5b21e2d09") ) (hierarchical_label "IN5" (shape input) (at 25.4 116.84 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "82233e3f-2e6a-451b-ad45-8ceb618f4610") ) (hierarchical_label "PINY1" (shape input) (at 25.4 45.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9c8a0a38-260c-42c0-81ce-1dbab78055f1") ) (hierarchical_label "CINX" (shape input) (at 25.4 58.42 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9c9ac770-da48-4948-b0d3-99c385d0b7bf") ) (hierarchical_label "IN7" (shape input) (at 25.4 78.74 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ba08f7de-dbb4-4fec-a17e-2d2e65dc138e") ) (hierarchical_label "IN8" (shape input) (at 25.4 81.28 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c9d40849-0d0c-44ff-b431-f3ed79cc666e") ) (hierarchical_label "IN6" (shape input) (at 25.4 68.58 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cd4f5824-a13b-4e37-b633-4219e83a7e42") ) (hierarchical_label "PINY1" (shape input) (at 25.4 71.12 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d4c5c2bb-a302-4923-905b-f47a59a3ef14") ) (hierarchical_label "IN8" (shape input) (at 25.4 123.19 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d7cbc09b-987d-470a-a942-6c6038b0cb0b") ) (hierarchical_label "IN4" (shape input) (at 25.4 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e2511dea-dee8-4062-bfca-9338608c1a80") ) (hierarchical_label "IN1" (shape input) (at 25.4 40.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f38d13ed-4b4a-4876-9f66-ea2f5d08449a") ) (hierarchical_label "CINX" (shape input) (at 25.4 93.98 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f70b9061-4af2-408b-a48d-2fa328454c40") ) (symbol (lib_id "peppercorn:NAND") (at 88.9 45.72 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0ab8e1ed-84f7-46a0-897f-43c16181389a") (property "Reference" "U38" (at 89.535 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 89.535 41.91 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 88.9 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 88.9 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 88.9 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "813b7542-fe81-47b6-8382-06e0f9b16093") ) (pin "" (uuid "7d1038c0-b934-4139-91fc-cb33300219de") ) (pin "" (uuid "8783a668-fa30-4191-8674-072d21f3218e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1970") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U467") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U978") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U189") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2095") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U928") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1995") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2070") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U953") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1920") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1003") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U38") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U442") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1945") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2045") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2020") (unit 1) ) ) ) ) (symbol (lib_name "XOR3_1") (lib_id "peppercorn:XOR3") (at 96.52 130.81 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0d61109d-128d-4629-882a-c519fe2f4034") (property "Reference" "U39" (at 95.885 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 95.885 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 96.52 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 96.52 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 96.52 130.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "fe6efc6a-40f8-47d6-a71b-92362a667b15") ) (pin "" (uuid "7a95e552-0e5e-4d2d-8287-7ee0431b5bed") ) (pin "" (uuid "b718002f-8ed0-4ca8-a088-a96e3d24786f") ) (pin "" (uuid "04304a0a-0e14-455f-97db-e596b4db20cc") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1971") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U468") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U979") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U190") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2096") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U929") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1996") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2071") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U954") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1921") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1004") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U39") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U443") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1946") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2046") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2021") (unit 1) ) ) ) ) (symbol (lib_name "AND_2") (lib_id "peppercorn:AND") (at 44.45 121.92 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0dee7be8-5a71-428b-b37d-f263fd577d22") (property "Reference" "U11" (at 45.085 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 45.085 118.11 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "4259d674-bcfe-44f0-b5e1-6cbc57c9d0f1") ) (pin "" (uuid "9684b22e-c70a-49b6-a60f-c4b66b8bc9a5") ) (pin "" (uuid "82c19e42-68ef-41f6-b22e-e3a1f4f30e34") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1968") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U465") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U976") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U187") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2093") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U926") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1993") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2068") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U951") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1918") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1001") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U11") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U440") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1943") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2043") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2018") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XOR3") (at 116.84 113.03 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "14682e8d-ee7d-4ba5-a94d-97b0cf4e54df") (property "Reference" "U43" (at 116.205 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 116.205 107.95 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 116.84 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 116.84 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 116.84 113.03 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ce90e1a8-e9af-4ad8-8bd2-39b829e146b0") ) (pin "" (uuid "5fa3f079-f890-4c6f-850c-def2fbe512f1") ) (pin "" (uuid "6eb7d226-3787-4b12-8b06-2fbcc329e52d") ) (pin "" (uuid "f948f3d2-b997-4673-96ac-16b1b5c16d47") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1973") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U470") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U981") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U192") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2098") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U931") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1998") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2073") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U956") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1923") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1006") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U43") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U445") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1948") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2048") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2023") (unit 1) ) ) ) ) (symbol (lib_name "AND_1") (lib_id "peppercorn:AND") (at 44.45 115.57 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2aa1b90f-c97f-498a-818f-fef2f2985d5f") (property "Reference" "U10" (at 45.085 109.22 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 45.085 111.76 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 115.57 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "57e07cd7-543f-4da1-9ce1-fba6bfd424d8") ) (pin "" (uuid "379d8746-d2e3-4b0f-a2c6-616a0ec46f52") ) (pin "" (uuid "b1bd5e4f-bc6f-4d22-a77b-164b5e74656a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1967") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U464") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U975") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U186") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2092") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U925") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1992") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2067") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U950") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1917") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1000") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U10") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U439") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1942") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2042") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2017") (unit 1) ) ) ) ) (symbol (lib_name "XOR_1") (lib_id "peppercorn:XOR") (at 116.84 53.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2ec6232e-4433-459c-b9bc-b6522d5c7a10") (property "Reference" "U42" (at 116.4727 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 116.4727 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 116.84 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 116.84 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 116.84 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "98adea7f-6f85-41c3-9bc1-24340667a8e1") ) (pin "" (uuid "d4b79c48-5277-4307-b8ff-f4abf2f16121") ) (pin "" (uuid "e6d86a3f-b502-46c6-a096-f147ccd8ca7f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1972") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U469") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U980") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U191") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2097") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U930") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1997") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2072") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U955") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1922") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1005") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U42") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U444") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1947") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2047") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2022") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 68.58 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "653a5d36-6d47-4a19-9df2-1f40eea569ec") (property "Reference" "L18" (at 68.58 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "bd0accc1-9a60-4b3f-b626-4bda3d1c98ec") ) (pin "D1" (uuid "ecbc8b73-49e1-4bdd-b6dd-5e5ad71aaefc") ) (pin "D0" (uuid "6ba5c626-3bf5-47bb-beac-703ae7326fec") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L406") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L112") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L222") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L48") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L496") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L186") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L424") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L478") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L204") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L370") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L240") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L18") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L94") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L388") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L460") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L442") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_2") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "69da25f6-df7f-4a4c-b171-c8e1c6b10fe0") (property "Reference" "INIT_L13" (at 35.56 72.898 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 63.5 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "c3e459b1-2ec8-401b-a5f6-baf00e1d3e6a") ) (pin "Y" (uuid "0a393925-0d6d-4a87-b3ca-cf8761ae5f8f") ) (pin "D0" (uuid "98add7d4-1a8f-428e-872d-925eed35f7af") ) (pin "D0" (uuid "6d19b3f0-211d-44ba-8f9a-6b4fa9ee35e9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L203") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L62") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L119") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L26") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L278") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L89") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L218") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L263") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L104") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L173") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L134") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L13") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L47") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L188") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L248") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L233") (unit 1) ) ) ) ) (symbol (lib_name "XOR_3") (lib_id "peppercorn:XOR") (at 119.38 134.62 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "71a6fcca-de24-4eee-b65f-64a440776a05") (property "Reference" "U46" (at 119.0127 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 119.0127 130.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 119.38 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 119.38 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 119.38 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c9f5a122-c368-46cd-ae04-039881592ea0") ) (pin "" (uuid "21dbf82d-8316-4d74-9703-8d645c2333fd") ) (pin "" (uuid "4714bbac-3a71-420d-a2b3-75b14f2734b2") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1974") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U471") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U982") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U193") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2099") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U932") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1999") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2074") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U957") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1924") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1007") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U46") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U446") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1949") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2049") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2024") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_3") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "75ada7aa-671a-40ce-b8e6-672f495d5100") (property "Reference" "INIT_L14" (at 35.56 85.852 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 76.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "9b2aa620-2913-4bfd-81c7-96b477531953") ) (pin "Y" (uuid "695067cd-231d-4941-80ca-1d9964921089") ) (pin "D0" (uuid "6786dc0e-4c21-4bf4-aa53-450d6fd1fbc7") ) (pin "D0" (uuid "c39564be-ecc7-4b32-a0ac-77fa42d729ad") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L204") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L63") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L120") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L27") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L279") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L90") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L219") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L264") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L105") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L174") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L135") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L14") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L48") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L189") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L249") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L234") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 104.14 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "813f9f90-cdab-41ad-a183-38b40d547b80") (property "Reference" "L19" (at 104.14 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 104.14 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "af13d318-3cff-457c-88f3-c03c4baa9d09") ) (pin "D1" (uuid "e676b76d-f479-497a-8db3-d3b8ba2e7b9d") ) (pin "D0" (uuid "4adbd639-0767-4537-8166-f217be305c12") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L407") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L113") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L223") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L49") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L497") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L187") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L425") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L479") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L205") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L371") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L241") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L19") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L95") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L389") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L461") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L443") (unit 1) ) ) ) ) (symbol (lib_name "OR_2") (lib_id "peppercorn:OR") (at 137.16 129.54 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "913193a2-4f49-4f29-885c-7620502160a3") (property "Reference" "U47" (at 136.1574 123.19 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 136.1574 125.73 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 137.16 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 137.16 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 137.16 129.54 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ac10909f-d027-4ec9-9fcf-ec5c3380b635") ) (pin "" (uuid "46e30c52-0aee-4b7e-a060-f4453845214b") ) (pin "" (uuid "e31be9af-fbdc-4523-b6b8-2440fd701320") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1975") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U472") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U983") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U194") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2100") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U933") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2000") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2075") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U958") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1925") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1008") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U47") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U447") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1950") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2050") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2025") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:OR") (at 64.77 76.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "95834f2d-4a0d-4290-95ce-d83db8f68953") (property "Reference" "U36" (at 63.7674 69.85 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 63.7674 72.39 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 64.77 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 64.77 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 64.77 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "1122a9f5-8034-42af-9662-eb4bc70b7598") ) (pin "" (uuid "fea64a57-0542-40be-a473-930bbea4201f") ) (pin "" (uuid "e1a29e34-e4fc-4357-8139-2d89d691ca05") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1969") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U466") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U977") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U188") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2094") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U927") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1994") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2069") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U952") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1919") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1002") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U36") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U441") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1944") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2044") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2019") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "98c831e7-01b6-469d-a79d-78e02931696a") (property "Reference" "L16" (at 33.02 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "60b67a81-e80a-4882-b53d-6e3a493ba029") ) (pin "Y" (uuid "603da575-e421-450a-8dd0-1f814c00de7d") ) (pin "D0" (uuid "aa3fcff7-dd71-4f68-9ed7-a1c1b1e7ef24") ) (pin "D0" (uuid "60989a25-8c5f-4d62-b5ea-0021a8f88e16") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L404") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L110") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L220") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L46") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L494") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L184") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L422") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L476") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L202") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L368") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L238") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L16") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L92") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L386") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L458") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L440") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 121.92 120.65 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "9fd4bd17-074e-4ba7-91fc-44d35a401d81") (property "Reference" "M20" (at 121.92 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 121.92 127 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 121.92 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 121.92 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 121.92 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "2390fa95-e40a-47ea-8fe2-02877f17a0f6") ) (pin "Y" (uuid "74cc8a90-e262-4015-bb0f-6a8a281274eb") ) (pin "D1" (uuid "2c42847e-f8f2-45cb-8e8d-f50f98f16f9a") ) (pin "S" (uuid "2296f97a-5b1e-4c76-9969-ea36ed20702c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M766") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M174") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M370") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M62") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M806") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M354") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M774") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M798") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M362") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M750") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M378") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M20") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M166") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M758") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M790") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M782") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 68.58 53.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a13a632f-988d-47bc-a4a9-7dcb6c30817e") (property "Reference" "L17" (at 68.58 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "8f9d6cea-bd24-4048-8e80-2388fd5bd722") ) (pin "Y" (uuid "494b61ef-7fb7-4d53-af37-f9da58071e80") ) (pin "D0" (uuid "f0eb4f6b-12b7-4f16-a842-8f038b37955b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L405") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L111") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L221") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L47") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L495") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L185") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L423") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L477") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L203") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L369") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L239") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L17") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L93") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L387") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L459") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "L441") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2 (conceptual)") (at 76.2 91.44 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "a95ac8f8-ac68-440d-a2ec-8878c4064955") (property "Reference" "M15" (at 76.2 96.52 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 95.25 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 91.44 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "afdce901-54ef-4d99-9562-d1d042f33f83") ) (pin "S" (uuid "b53c8f75-53c3-4c14-978b-412d82ab1be8") ) (pin "Y" (uuid "2bf69c9b-201e-4a57-9d4e-1cc8522152a3") ) (pin "D0" (uuid "0617584e-43c8-4877-ab76-66bb36e2fd82") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M765") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M173") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M369") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M61") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M805") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M353") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M773") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M797") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M361") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M749") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M377") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M15") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M165") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M757") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M789") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M781") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2") (at 121.92 125.73 0) (mirror x) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "ac9f3d98-f9f5-45a2-8aea-66d939884d1c") (property "Reference" "M21" (at 121.92 120.65 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 121.92 119.38 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 121.92 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 121.92 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 121.92 125.73 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "ccb191ac-b950-4e58-97fe-ea2b27417808") ) (pin "S" (uuid "198a802e-3a45-42ba-980d-a349c774c2a2") ) (pin "Y" (uuid "3d58d9ca-ed5d-4c50-89fc-06a400848320") ) (pin "D1" (uuid "cb7de258-fe4d-4c63-93f3-36373707e35d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M767") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M175") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M371") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M63") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M807") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M355") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M775") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M799") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M363") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M751") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M379") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M21") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M167") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M759") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M791") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M783") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2 (conceptual)") (at 76.2 78.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b6188cac-13c6-45a3-8619-b6ff4c6eb1ab") (property "Reference" "M14" (at 76.8351 82.55 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) (property "Value" "~" (at 76.2 82.55 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "accc980b-c246-4cce-8651-54eaa7e278ea") ) (pin "D0" (uuid "967feac8-8571-4c93-b24f-2ba6aa9dd192") ) (pin "D1" (uuid "ad30dda3-f818-4c6c-9b24-1a5162a53ce8") ) (pin "S" (uuid "39a850a8-bd3b-4dbc-9c6a-74e18795be5f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M764") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M172") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M368") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M60") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M804") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M352") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M772") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M796") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M360") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M748") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M376") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M14") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M164") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M756") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M788") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "M780") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_1") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "baa99c33-5c18-427f-812f-3d91bde43b6b") (property "Reference" "INIT_L12" (at 35.56 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "88b56310-b9f9-4234-8231-d253de3b868b") ) (pin "Y" (uuid "393d6656-5b37-4a06-8333-a6b8cc24152f") ) (pin "D0" (uuid "ffe67d8d-ca40-4a5d-90a9-f0f13368145f") ) (pin "D0" (uuid "7b6c71a2-497a-4bc9-a66f-53926050bce3") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L202") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L61") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L118") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L25") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L277") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L88") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L217") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L262") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L103") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L172") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L133") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L12") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L46") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L187") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L247") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "INIT_L232") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 92.71 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e6d71078-1619-4633-b41f-3d6135b1d827") (property "Reference" "C6" (at 33.02 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 88.9 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "d8f88a7d-8724-4d7c-8c00-3e6ff409f86f") ) (pin "D0" (uuid "0bc7ef0f-8a76-48cb-bfd5-bb322204278f") ) (pin "Y" (uuid "4974fc90-565f-4705-a50b-f1ea729a679c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C228") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C51") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C112") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C19") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C243") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C106") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C231") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C240") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C109") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C222") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C115") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C6") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C48") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C225") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C237") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "C234") (unit 1) ) ) ) ) (symbol (lib_name "XOR_2") (lib_id "peppercorn:XOR") (at 137.16 134.62 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f16dfa7b-eb5d-46c6-94b6-7308aaf935f6") (property "Reference" "U48" (at 136.7927 128.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 136.7927 130.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 137.16 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 137.16 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 137.16 134.62 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ef9a0fed-7119-49b3-b954-eab8793b0618") ) (pin "" (uuid "5abcdceb-ab18-4073-9c44-2ea47fb4b46d") ) (pin "" (uuid "cee1eafa-2668-4a1a-a5af-9ea6d8320fad") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1976") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U473") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U984") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U195") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2101") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U934") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2001") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2076") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U959") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1926") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1009") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U48") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U448") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U1951") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2051") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/7c694198-71e0-4b5f-9d71-f88a52a590d9" (reference "U2026") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/cpe_comb_concat.kicad_sch000077500000000000000000001162731514752025000241660ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "2a9cd8f7-e812-476c-ad1e-1dac2d5bc5cd") (paper "A3") (title_block (company "YosysHQ") ) (lib_symbols (symbol "peppercorn:AO21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -2.54) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2B_0_1" (polyline (pts (xy -3.81 -2.54) (xy -3.81 2.54) (xy 3.81 1.27) (xy 3.81 -1.27) (xy -3.81 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2B_1_1" (pin input line (at -6.35 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:XOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (rectangle (start 19.05 19.05) (end 106.68 59.69) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 4cfc9014-d32a-44e2-9518-ddf171ec7e07) ) (rectangle (start 19.05 60.325) (end 106.68 102.235) (stroke (width 0) (type default) ) (fill (type none) ) (uuid e156abc1-0372-4f5c-a43b-cf886d7ed937) ) (text "CPE_LT_U" (exclude_from_sim no) (at 92.964 58.674 0) (effects (font (size 1.27 1.27) ) ) (uuid "0df2367e-b726-4d27-a5ce-42c8af630700") ) (text "MUX4b" (exclude_from_sim no) (at 62.738 100.584 0) (effects (font (size 1.27 1.27) ) ) (uuid "57baaf84-e98f-4631-8cbc-821fcb6cff6f") ) (text "CPE_LT_L" (exclude_from_sim no) (at 102.108 101.092 0) (effects (font (size 1.27 1.27) ) ) (uuid "cfc34462-e865-471b-8f94-7f7bb82713af") ) (text "ADDF" (exclude_from_sim no) (at 91.948 74.676 0) (effects (font (size 1.27 1.27) ) ) (uuid "fe1d7272-3a98-499d-a9f5-8b8a7e85fedd") ) (junction (at 74.93 52.07) (diameter 0) (color 0 0 0 0) (uuid "0cd97ce1-f0d2-4999-801f-678c7145391d") ) (junction (at 72.39 64.77) (diameter 0) (color 0 0 0 0) (uuid "2afbf706-e349-4c87-9090-002dffc09665") ) (junction (at 52.07 63.5) (diameter 0) (color 0 0 0 0) (uuid "2fbc5fe7-3a1d-485c-b6a6-2be658b74be1") ) (junction (at 59.69 53.34) (diameter 0) (color 0 0 0 0) (uuid "99b1790d-2489-473a-ba9b-ba61e28804f2") ) (junction (at 57.15 50.8) (diameter 0) (color 0 0 0 0) (uuid "e6f4eeaf-7cbd-410e-bfbe-1cd01aa10915") ) (wire (pts (xy 39.37 50.8) (xy 39.37 52.07) ) (stroke (width 0) (type default) ) (uuid "00aa99a2-69a9-4a1d-8c11-a92e39c78f01") ) (wire (pts (xy 26.67 50.8) (xy 39.37 50.8) ) (stroke (width 0) (type default) ) (uuid "00fc0802-fadd-45ea-b80d-49bb9a40b570") ) (wire (pts (xy 59.69 53.34) (xy 62.23 53.34) ) (stroke (width 0) (type default) ) (uuid "0815bcc4-a650-477b-b0db-315af30f2125") ) (wire (pts (xy 97.79 83.82) (xy 107.95 83.82) ) (stroke (width 0) (type default) ) (uuid "14e768e7-569f-4f4a-ae1e-bf6b8ebbe75e") ) (wire (pts (xy 85.09 66.04) (xy 87.63 66.04) ) (stroke (width 0) (type default) ) (uuid "1638b1c7-d423-4825-b876-ba0a11c4133e") ) (wire (pts (xy 87.63 52.07) (xy 87.63 63.5) ) (stroke (width 0) (type default) ) (uuid "16b57572-1577-4223-8ab1-4f4a96807d0c") ) (wire (pts (xy 72.39 64.77) (xy 85.09 64.77) ) (stroke (width 0) (type default) ) (uuid "1cdb79d3-456d-40fa-89ba-d914ee334b66") ) (wire (pts (xy 72.39 73.66) (xy 72.39 64.77) ) (stroke (width 0) (type default) ) (uuid "31470bc0-131c-4ad8-afac-c9b50467964a") ) (wire (pts (xy 49.53 74.93) (xy 49.53 66.04) ) (stroke (width 0) (type default) ) (uuid "3214410d-dc48-4c85-b1a4-1cfbe9df7ae2") ) (wire (pts (xy 49.53 66.04) (xy 62.23 66.04) ) (stroke (width 0) (type default) ) (uuid "3310df62-6ef8-41b8-ad2f-6faa8fdb5ee7") ) (wire (pts (xy 52.07 63.5) (xy 62.23 63.5) ) (stroke (width 0) (type default) ) (uuid "39362f60-c507-4d43-a144-d23690468129") ) (wire (pts (xy 74.93 71.12) (xy 80.01 71.12) ) (stroke (width 0) (type default) ) (uuid "4a8ee472-547a-4f9b-b7af-12c9f12cd141") ) (wire (pts (xy 57.15 50.8) (xy 57.15 36.83) ) (stroke (width 0) (type default) ) (uuid "4b7db36e-1207-4702-95de-0687f8fff8b6") ) (wire (pts (xy 49.53 50.8) (xy 49.53 43.18) ) (stroke (width 0) (type default) ) (uuid "57412289-3091-4ef8-a192-f8e0f43a4788") ) (wire (pts (xy 80.01 73.66) (xy 72.39 73.66) ) (stroke (width 0) (type default) ) (uuid "6769bb8a-a9d2-402a-a116-b5440e324551") ) (wire (pts (xy 52.07 34.29) (xy 83.82 34.29) ) (stroke (width 0) (type default) ) (uuid "6c78e60e-9ff5-4142-a655-7c87c8b1b495") ) (wire (pts (xy 57.15 36.83) (xy 80.01 36.83) ) (stroke (width 0) (type default) ) (uuid "6dbb478f-6fca-4685-b259-9d3b51978358") ) (wire (pts (xy 72.39 52.07) (xy 74.93 52.07) ) (stroke (width 0) (type default) ) (uuid "6e836899-707e-466f-ab39-09d305696828") ) (wire (pts (xy 90.17 72.39) (xy 107.95 72.39) ) (stroke (width 0) (type default) ) (uuid "6f1f5594-ecb3-4d73-aabb-81fa466778c6") ) (wire (pts (xy 39.37 64.77) (xy 39.37 66.04) ) (stroke (width 0) (type default) ) (uuid "8b284247-4f91-4198-b5a4-75b978f0d3e3") ) (wire (pts (xy 97.79 64.77) (xy 97.79 83.82) ) (stroke (width 0) (type default) ) (uuid "8ee1abc3-a856-4068-ac47-9d6154660917") ) (wire (pts (xy 49.53 63.5) (xy 52.07 63.5) ) (stroke (width 0) (type default) ) (uuid "90280c8d-d140-422b-bb79-ca015edae523") ) (wire (pts (xy 74.93 71.12) (xy 74.93 52.07) ) (stroke (width 0) (type default) ) (uuid "9530f4a3-9b9f-4af3-9537-09aaef47c523") ) (wire (pts (xy 74.93 52.07) (xy 87.63 52.07) ) (stroke (width 0) (type default) ) (uuid "9614e7b2-61c9-46a1-953e-46ced13661d5") ) (wire (pts (xy 85.09 64.77) (xy 85.09 66.04) ) (stroke (width 0) (type default) ) (uuid "a5d877f9-1528-46f6-bc88-352442724559") ) (wire (pts (xy 59.69 39.37) (xy 80.01 39.37) ) (stroke (width 0) (type default) ) (uuid "ac8e4d08-8d66-4ec9-913b-e21065d8d5cd") ) (wire (pts (xy 39.37 76.2) (xy 39.37 77.47) ) (stroke (width 0) (type default) ) (uuid "b2bc1341-4e1f-4729-9199-7966c9ad3d9f") ) (wire (pts (xy 92.71 35.56) (xy 107.95 35.56) ) (stroke (width 0) (type default) ) (uuid "b3d61c7f-fd96-4c8b-ad04-1c78c5026d46") ) (wire (pts (xy 26.67 73.66) (xy 39.37 73.66) ) (stroke (width 0) (type default) ) (uuid "c67ba7df-f92c-4a09-9f56-ac9bfb73763a") ) (wire (pts (xy 49.53 53.34) (xy 59.69 53.34) ) (stroke (width 0) (type default) ) (uuid "d225acf0-fb31-418c-afc5-f3de28659a01") ) (wire (pts (xy 26.67 40.64) (xy 39.37 40.64) ) (stroke (width 0) (type default) ) (uuid "db9bffc0-f764-4ebe-9afa-9809218d70c2") ) (wire (pts (xy 49.53 50.8) (xy 57.15 50.8) ) (stroke (width 0) (type default) ) (uuid "dbf2a771-d3dd-41db-98f1-9c63717d018d") ) (wire (pts (xy 59.69 53.34) (xy 59.69 39.37) ) (stroke (width 0) (type default) ) (uuid "dc6d3be6-128c-4b60-b58a-057205b270c5") ) (wire (pts (xy 52.07 34.29) (xy 52.07 63.5) ) (stroke (width 0) (type default) ) (uuid "e932cb0c-8fe9-46e1-bfd9-fe564796012d") ) (wire (pts (xy 26.67 62.23) (xy 39.37 62.23) ) (stroke (width 0) (type default) ) (uuid "e99b5f64-cb1e-4da4-a06d-d5757317b2bf") ) (wire (pts (xy 57.15 50.8) (xy 62.23 50.8) ) (stroke (width 0) (type default) ) (uuid "efd1bcf0-31da-4757-86a8-8bb24e748666") ) (wire (pts (xy 39.37 40.64) (xy 39.37 41.91) ) (stroke (width 0) (type default) ) (uuid "f702463d-4564-4a5e-a2aa-31218b7de703") ) (label "L00" (at 76.2 36.83 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "10ca440b-030d-4772-b324-0e4775d0a448") ) (label "L11" (at 76.2 73.66 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7faccf49-788b-4152-a8e8-09462e2432a0") ) (label "L02" (at 52.07 58.42 90) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "96d07194-f96e-4cdb-8c64-c2dea6bd9982") ) (label "L10" (at 76.2 71.12 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "cac18c65-024d-48b2-a04c-24397dd96539") ) (label "L01" (at 76.2 39.37 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d5925fef-f4d9-4c3f-8f52-155155c869e7") ) (label "L02" (at 76.2 34.29 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ddfecfd6-6b4f-4a3c-8058-7e8dd5886c24") ) (hierarchical_label "CINX" (shape input) (at 26.67 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1629b30a-d236-4ded-b223-59d493ff3692") ) (hierarchical_label "IN5" (shape input) (at 26.67 62.23 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1b9af1f4-23fc-48da-9954-561ceca0ab7f") ) (hierarchical_label "IN2" (shape input) (at 26.67 43.18 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "25f276cd-45c2-4dbb-a9d4-01564233e49c") ) (hierarchical_label "PINX" (shape input) (at 26.67 78.74 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "326e92b7-f4ea-47a9-8b56-ff12b472de35") ) (hierarchical_label "IN8" (shape input) (at 26.67 76.2 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5b95441c-78e5-4a23-9441-93c8eab2822b") ) (hierarchical_label "PINY1" (shape input) (at 26.67 67.31 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "61f7a27d-cd6f-4752-9e8c-7ca92c67b29a") ) (hierarchical_label "IN6" (shape input) (at 26.67 64.77 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8bedde1c-4225-4072-96da-6ae79dc0fb0f") ) (hierarchical_label "PINY1" (shape input) (at 26.67 45.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "adda66de-e2ab-413b-96e8-a7f17adc90e9") ) (hierarchical_label "IN3" (shape input) (at 26.67 50.8 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b586a401-9460-4b6c-a4bf-3159763847fc") ) (hierarchical_label "IN1" (shape input) (at 26.67 40.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c805f4f6-80bb-4221-bb3e-5658e1900046") ) (hierarchical_label "IN4" (shape input) (at 26.67 53.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c844ea31-9c46-4e1b-9307-596aec116e8b") ) (hierarchical_label "IN7" (shape input) (at 26.67 73.66 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ca3f90f7-0edf-4985-b5b5-d315dc6b003f") ) (symbol (lib_id "peppercorn:LUT2") (at 67.31 52.07 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "0036ffe3-ccf3-4e67-80e0-eea27eaa0320") (property "Reference" "INIT_L10" (at 67.31 55.626 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 67.31 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 67.31 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 67.31 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 67.31 52.07 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "0ddab073-e7d7-4528-872f-5550251c754a") ) (pin "D1" (uuid "f7812c17-4417-4a3d-8053-0c16ee181d98") ) (pin "D0" (uuid "bd57d73a-a3a3-47d0-8d53-3e532aa7b66a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "INIT_L10") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:XOR") (at 85.09 72.39 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2fac4683-f737-4ed3-a7db-fd79f384a3a1") (property "Reference" "U11" (at 84.7227 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 84.7227 68.58 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 72.39 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "02e0ea3c-457b-453c-87e8-4f9031d325a4") ) (pin "" (uuid "d9208399-5088-4a20-92f1-ef4485fb3894") ) (pin "" (uuid "d182bd66-fd66-4600-92f8-13d2458f5528") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "U11") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 44.45 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4225ca49-7c26-4c93-af89-2e0e1c1060b8") (property "Reference" "INIT_L02" (at 44.45 67.056 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 44.45 59.69 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "0a349d94-48d3-4f4a-becd-99b8bdd5a38e") ) (pin "D1" (uuid "3182bc95-e271-41fe-96f6-7940f7161aeb") ) (pin "D0" (uuid "f76f0ac7-3b0f-4f5a-ad5b-5c088d4d7163") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "INIT_L02") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 44.45 43.18 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "48f16c39-18f3-4a91-ab03-64fa4369ddb2") (property "Reference" "INIT_L00" (at 44.45 46.736 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 44.45 39.37 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 43.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "581264eb-4be4-436f-b475-d47fb9492250") ) (pin "D1" (uuid "6818f541-9c8a-4784-8863-49a1c435cd81") ) (pin "D0" (uuid "2abda1c6-1b2a-4b24-acdc-f17f2c9dd1eb") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "INIT_L00") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 77.47 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4aae04d8-0e0e-4165-b510-7d4b1f13c485") (property "Reference" "C_I4" (at 33.02 81.28 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 73.66 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 77.47 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "0973ac98-0e44-4416-ad85-a2675a794619") ) (pin "D0" (uuid "a0f0f63f-56bd-4b0d-9b32-c786e6ef9e6d") ) (pin "Y" (uuid "e838a3c0-7d72-42c0-8b6d-ccdd6f7d078f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "C_I4") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 44.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "73b980d8-d89d-4dea-952f-3f6ea9bdff54") (property "Reference" "C_I1" (at 33.02 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 40.64 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "615ca1e6-774e-4893-a8cb-ca83b276fa27") ) (pin "D0" (uuid "a2a10730-52dc-4517-98b3-aab5145d5120") ) (pin "Y" (uuid "0fbce09c-0535-418b-bb8d-5f06334c81af") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "C_I1") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 92.71 64.77 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "779bde3b-3c66-4982-95b5-3268e6107cee") (property "Reference" "INIT_L20" (at 92.71 68.326 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 92.71 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 92.71 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 92.71 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 92.71 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "75767ced-ae0f-4a53-a053-d0bb8c45ece3") ) (pin "D1" (uuid "d2d08492-3d0e-4ffd-97c4-7beb633f27b5") ) (pin "D0" (uuid "8523aab7-8d63-480e-a41d-ed947f2090ff") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "INIT_L20") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "8b110570-fff7-4398-a9e9-5b274d42ad74") (property "Reference" "C_I2" (at 33.02 58.42 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "d820cffc-a857-41b2-b840-e72179f3d61d") ) (pin "D0" (uuid "49bd4c9b-a3c5-4780-995c-91fd83a379bf") ) (pin "Y" (uuid "2a825953-bb11-49d3-b971-8aab7342c11b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "C_I2") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:AO21") (at 83.82 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8dff1c99-416f-4c1f-b87b-ac06572d345b") (property "Reference" "U10" (at 86.3599 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 86.3599 31.75 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 83.82 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 83.82 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 83.82 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "04b03368-0a90-4aaa-87fd-92f05c1a08b1") ) (pin "" (uuid "34a384dd-c627-49f5-8f60-0a55f9993ffe") ) (pin "" (uuid "af99c2e6-4498-4d05-ad86-5e6ad4374236") ) (pin "" (uuid "c9b22cc3-ed1d-4121-a443-4c0873cac87e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "U10") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 44.45 53.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "90c76bed-62f9-467a-af59-8473a2a90ac2") (property "Reference" "INIT_L01" (at 44.45 56.896 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 44.45 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "fd80cd97-e96d-40d3-8b2d-a010cac4b105") ) (pin "D1" (uuid "93e7bfa9-5a91-48dc-a70a-b2a2a9daf4d7") ) (pin "D0" (uuid "bb865122-877f-4bc5-81f2-c09feff5216b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "INIT_L01") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 67.31 64.77 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "a989b657-b14d-4d51-aa94-90db015edcf8") (property "Reference" "INIT_L11" (at 67.564 68.326 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 67.31 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 67.31 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 67.31 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 67.31 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "24ae111d-908c-4402-bc42-e920695ac72e") ) (pin "D1" (uuid "b9bbfe5e-33bf-46b3-ae03-8086a38b8eda") ) (pin "D0" (uuid "020ff4b2-606f-4ae5-98b1-ee34cb650e17") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "INIT_L11") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 66.04 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "d17f2ca0-3710-40bd-9856-ae6755ae4718") (property "Reference" "C_I3" (at 33.02 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 33.02 62.23 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 66.04 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "0611fb03-2c9d-469d-ac94-3fbd40709b2e") ) (pin "D0" (uuid "ea89e07d-5249-4702-846c-d91f97b02584") ) (pin "Y" (uuid "8501b011-bcff-4847-9df3-e7837f91d2ec") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "C_I3") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 44.45 74.93 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "efadfda2-6269-4ecb-8b39-3c2aa9b88599") (property "Reference" "INIT_L03" (at 44.45 78.232 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "~" (at 44.45 71.12 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 44.45 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 44.45 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 44.45 74.93 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "84f43fee-2804-4a42-b545-b08ace7221c1") ) (pin "D1" (uuid "10d5ed12-d55f-4de7-a0a2-8822a6f30723") ) (pin "D0" (uuid "81385a36-b067-41f0-807b-8bddba24faec") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/7870fc3a-1ee9-4a55-a2a2-8f09313f282c" (reference "INIT_L03") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/cpe_comb_en_cin.kicad_sch000077500000000000000000002217011514752025000241430ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "eb744f4d-ed1c-4ed4-afae-79c7c0942f52") (paper "A4") (title_block (title "CPE: Sum Input With Carry") (rev "4") (company "YosysHQ") ) (lib_symbols (symbol "LUT2 with C_I mux_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_1_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_2_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_2_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_3_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_3_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2 with C_I mux" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX2B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2B_0_1" (polyline (pts (xy -5.08 2.54) (xy -5.08 -2.54) (xy 5.08 -1.27) (xy 5.08 1.27) (xy -5.08 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2B_1_1" (pin input line (at -7.62 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:OR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (text "L11" (exclude_from_sim no) (at 68.58 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "05814012-b06a-4409-a221-42903096c65e") ) (text "C_I3" (exclude_from_sim no) (at 30.48 70.104 0) (effects (font (size 1.27 1.27) ) ) (uuid "071d3cda-a2c9-4a7b-ae05-d684ca65dbc6") ) (text "L00" (exclude_from_sim no) (at 35.56 45.974 0) (effects (font (size 1.27 1.27) ) ) (uuid "0c18e30a-5a1a-40fc-b35c-63c8ead7869f") ) (text "C_I2" (exclude_from_sim no) (at 30.48 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "16745200-633c-472c-9f11-7f02abc99ffa") ) (text "C_I1" (exclude_from_sim no) (at 30.48 44.704 0) (effects (font (size 1.27 1.27) ) ) (uuid "27bc28df-0ddf-4838-958b-ce976cc21506") ) (text "C_I4" (exclude_from_sim no) (at 30.48 82.804 0) (effects (font (size 1.27 1.27) ) ) (uuid "31a28034-e862-4ea6-aecc-7a573d74a68c") ) (text "C_HORIZ" (exclude_from_sim no) (at 32.766 92.964 0) (effects (font (size 1.27 1.27) ) ) (uuid "47220336-415d-467f-8c81-86a5cce03258") ) (text "C_FUNCTION = 5: EN_CIN\n\nThis is one of the more obscure CPE configurations.\n\nThe intended usecase of this is to source a signal\nfrom the carry lines to reduce routing delay." (exclude_from_sim no) (at 215.9 50.8 0) (effects (font (size 2.54 2.54) ) (justify top) ) (uuid "6974e1c0-fede-401b-bf3b-084d5caf21af") ) (text "L03" (exclude_from_sim no) (at 35.56 84.074 0) (effects (font (size 1.27 1.27) ) ) (uuid "6ef1d303-46d0-4b80-b11c-7ff8af0ac8ab") ) (text "L20" (exclude_from_sim no) (at 104.14 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "8170210c-0a84-4f6d-845c-7fea037f1304") ) (text "L10" (exclude_from_sim no) (at 68.58 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "cfb9e838-7c18-4aed-b409-996e83ff8c13") ) (text "L02" (exclude_from_sim no) (at 35.56 71.374 0) (effects (font (size 1.27 1.27) ) ) (uuid "d03c302e-8e37-4bee-8b58-a12eb2c42f99") ) (text "L01" (exclude_from_sim no) (at 35.56 58.674 0) (effects (font (size 1.27 1.27) ) ) (uuid "f78b2f79-eec6-452d-b45b-3553b45c32dd") ) (junction (at 99.06 52.07) (diameter 0) (color 0 0 0 0) (uuid "cb1d8ad2-02a0-4a18-89a9-be3e3a48c713") ) (wire (pts (xy 25.4 53.34) (xy 30.48 53.34) ) (stroke (width 0) (type default) ) (uuid "0416b064-bc6f-4f7d-87d4-57c9bd8e0e18") ) (wire (pts (xy 73.66 68.58) (xy 93.98 68.58) ) (stroke (width 0) (type default) ) (uuid "053940a3-7816-4c24-a3c8-baadd89009b8") ) (wire (pts (xy 93.98 53.34) (xy 93.98 52.07) ) (stroke (width 0) (type default) ) (uuid "2ce31afa-fdeb-4dc2-ae0e-9270ac6196e3") ) (wire (pts (xy 40.64 52.07) (xy 40.64 41.91) ) (stroke (width 0) (type default) ) (uuid "30b513a3-5e34-4b80-b512-effcf95e6b5b") ) (wire (pts (xy 40.64 52.07) (xy 63.5 52.07) ) (stroke (width 0) (type default) ) (uuid "32b712a5-fa48-4b67-ab9d-c605b534f62c") ) (wire (pts (xy 99.06 52.07) (xy 116.84 52.07) ) (stroke (width 0) (type default) ) (uuid "35656dd3-26a7-4f03-a450-5792f1709565") ) (wire (pts (xy 25.4 40.64) (xy 30.48 40.64) ) (stroke (width 0) (type default) ) (uuid "41943d98-95b3-4014-b32a-5dde547b2db0") ) (wire (pts (xy 99.06 52.07) (xy 99.06 67.31) ) (stroke (width 0) (type default) ) (uuid "47f8c0cd-8eaf-4fe9-929d-f4cc707aceb2") ) (wire (pts (xy 41.91 69.85) (xy 63.5 69.85) ) (stroke (width 0) (type default) ) (uuid "48222c17-b811-42be-88f1-6b8be2d551d8") ) (wire (pts (xy 93.98 52.07) (xy 99.06 52.07) ) (stroke (width 0) (type default) ) (uuid "58b6cec6-7752-4ac0-af63-e0f3077db552") ) (wire (pts (xy 93.98 68.58) (xy 93.98 69.85) ) (stroke (width 0) (type default) ) (uuid "5ac70d72-bfbb-4945-a283-c5047ef6516f") ) (wire (pts (xy 43.18 78.74) (xy 43.18 92.71) ) (stroke (width 0) (type default) ) (uuid "697a2830-1352-4d6c-ae37-3775b27db2f3") ) (wire (pts (xy 116.84 52.07) (xy 116.84 53.34) ) (stroke (width 0) (type default) ) (uuid "70f8b884-aa69-4014-923c-19dcc9dd6721") ) (wire (pts (xy 109.22 68.58) (xy 119.38 68.58) ) (stroke (width 0) (type default) ) (uuid "78362d8a-c11e-4cde-a426-977e42951c8b") ) (wire (pts (xy 73.66 53.34) (xy 93.98 53.34) ) (stroke (width 0) (type default) ) (uuid "908252bf-c4d8-4ace-a379-8f3d06898268") ) (wire (pts (xy 116.84 53.34) (xy 132.08 53.34) ) (stroke (width 0) (type default) ) (uuid "a638f6ec-5a1d-4c8a-b983-0a3d6d47bb95") ) (wire (pts (xy 25.4 78.74) (xy 30.48 78.74) ) (stroke (width 0) (type default) ) (uuid "ade995bd-a206-4091-a5f4-d802b383c4d8") ) (wire (pts (xy 40.64 54.61) (xy 63.5 54.61) ) (stroke (width 0) (type default) ) (uuid "b4451176-29e4-4a82-90b4-35bc9287f918") ) (wire (pts (xy 93.98 69.85) (xy 99.06 69.85) ) (stroke (width 0) (type default) ) (uuid "b6b92406-c5ce-4c5f-a553-05dbec44c2e3") ) (wire (pts (xy 40.64 67.31) (xy 63.5 67.31) ) (stroke (width 0) (type default) ) (uuid "c19c8851-76e1-4b44-9d82-5381b8b8d37b") ) (wire (pts (xy 25.4 66.04) (xy 30.48 66.04) ) (stroke (width 0) (type default) ) (uuid "cb058b59-755e-4bbd-a97c-81a69f6dbdd1") ) (wire (pts (xy 119.38 69.85) (xy 132.08 69.85) ) (stroke (width 0) (type default) ) (uuid "cbbc08f5-7467-45b1-99f3-8d3d13b1f594") ) (wire (pts (xy 40.64 78.74) (xy 40.64 80.01) ) (stroke (width 0) (type default) ) (uuid "d0b96a54-7498-4525-85f0-0ac53cf28d15") ) (wire (pts (xy 119.38 68.58) (xy 119.38 69.85) ) (stroke (width 0) (type default) ) (uuid "dec4e5b0-ef90-416c-9470-d3ce74b0e83c") ) (wire (pts (xy 40.64 92.71) (xy 43.18 92.71) ) (stroke (width 0) (type default) ) (uuid "efed5684-646d-47ed-a2c1-1a3c7176cddc") ) (label "COMB1OUT" (at 132.08 69.85 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "0bf6e9e5-bfaa-46b3-b4b7-1f5603730f05") ) (label "COMB2OUT" (at 132.08 53.34 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "fa731362-227b-4c87-9ab7-dc3af2563494") ) (hierarchical_label "IN8" (shape input) (at 25.4 81.28 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "076cd65a-bc91-4d37-b39d-22a00a21e42c") ) (hierarchical_label "IN5" (shape input) (at 25.4 66.04 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1a96855e-9c17-4d21-b5c4-2ed8933bd0fb") ) (hierarchical_label "CINX" (shape input) (at 25.4 58.42 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "20d84950-2600-4756-a7df-7ef453e4d28b") ) (hierarchical_label "IN7" (shape input) (at 25.4 78.74 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "21895c82-cbc3-4a1a-b763-83db08ec382e") ) (hierarchical_label "IN2" (shape input) (at 25.4 43.18 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2cdb2e01-9e38-426b-8a2a-a7420293eec6") ) (hierarchical_label "IN4" (shape input) (at 25.4 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "550d92de-82e3-4d74-8e79-539acb87bb5e") ) (hierarchical_label "IN6" (shape input) (at 25.4 68.58 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5dd1a338-b577-497f-a39e-6ae51d958ec7") ) (hierarchical_label "PINY1" (shape input) (at 25.4 71.12 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8d13f77a-0c03-4706-a224-eb626d8a5fdf") ) (hierarchical_label "PINY1" (shape input) (at 25.4 45.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "93ac41e1-9ba9-48b2-9128-4cf51a5806a1") ) (hierarchical_label "CINX" (shape input) (at 25.4 93.98 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "971d7938-11b3-40f3-ad25-8d8d6ba58bec") ) (hierarchical_label "IN1" (shape input) (at 25.4 40.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a9e1a201-5162-4c2f-a16c-1b5a20a0469d") ) (hierarchical_label "IN3" (shape input) (at 25.4 53.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b9853940-adc2-4615-8367-69c822a550bf") ) (hierarchical_label "CINY1" (shape input) (at 25.4 91.44 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d9008fb7-fbcf-48ca-af89-88ba505790b9") ) (hierarchical_label "PINX" (shape input) (at 25.4 83.82 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f90a53d6-6506-4098-8191-d6df7f5fcfc9") ) (symbol (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0ae3591c-c6ff-467e-9b95-aede53f7f732") (property "Reference" "L24" (at 33.02 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "a750a266-0b69-4982-9c18-ae25cc38fdae") ) (pin "Y" (uuid "c0056746-b8a3-4c6d-b3d2-e78e8c38ae05") ) (pin "D0" (uuid "1eb4f147-eba5-4758-a07e-81d9a0b581f0") ) (pin "D0" (uuid "402783e6-dd93-4f50-8f22-39dd7db5a20e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L410") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L116") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L226") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L52") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L500") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L190") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L428") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L482") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L208") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L374") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L244") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L24") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L98") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L392") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L464") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L446") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 68.58 53.34 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2450e0c7-a02f-4d02-a558-244ea150f6d7") (property "Reference" "L25" (at 68.58 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 53.34 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "416fc751-526d-49c0-9b5d-4486f3f69801") ) (pin "Y" (uuid "204bb4c8-6dc2-41ae-9a94-d5d5a72af46a") ) (pin "D0" (uuid "e3933ea2-44db-402a-b6bd-66bb157d4627") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L411") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L117") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L227") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L53") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L501") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L191") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L429") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L483") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L209") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L375") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L245") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L25") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L99") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L393") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L465") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L447") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:OR") (at 41.91 73.66 90) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "53908889-0098-4ebb-af2e-8d0834c5038e") (property "Reference" "U?" (at 45.72 74.0275 90) (effects (font (size 1.27 1.27) ) (justify right) (hide yes) ) ) (property "Value" "~" (at 45.72 75.9326 90) (effects (font (size 1.27 1.27) ) (justify right) ) ) (property "Footprint" "" (at 41.91 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 41.91 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 41.91 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "7c581a37-3de8-4145-87a3-16afa2db910f") ) (pin "" (uuid "574d1777-af16-41ee-8590-6b176ac99b55") ) (pin "" (uuid "0f969182-7e5f-453d-8777-236067ad3c3e") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U1979") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U476") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U987") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U198") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U2104") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U937") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U2004") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U2079") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U962") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U1929") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U1012") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U451") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U1954") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U2054") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "U2029") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_2") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "60260416-b197-415d-85a4-7c8b2025f67f") (property "Reference" "INIT_L11" (at 35.56 72.898 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 63.5 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "c2a5642b-9578-48e1-912d-cb66c0afdde7") ) (pin "Y" (uuid "db89af73-22c5-4e03-8f32-1b686117ef16") ) (pin "D0" (uuid "1474ab46-6188-40a0-bc23-517ca7a273fe") ) (pin "D0" (uuid "7a293bd0-2339-45e3-b499-23526426641f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L209") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L68") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L125") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L32") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L284") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L95") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L224") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L269") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L110") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L179") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L140") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L11") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L53") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L194") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L254") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L239") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX2B") (at 33.02 92.71 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "69323462-288e-4397-a13b-ec5c0334efe2") (property "Reference" "C7" (at 33.02 86.36 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 88.9 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 92.71 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "c7a832cb-ccc5-4f30-bda0-e6e264dee4da") ) (pin "D0" (uuid "2088a598-83ce-4fef-a7c7-cc7aa4e21ff3") ) (pin "Y" (uuid "7a4b0d31-085f-4a87-9536-3cdcd43d1eb2") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C229") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C52") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C113") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C20") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C244") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C107") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C232") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C241") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C110") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C223") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C116") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C7") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C49") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C226") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C238") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "C235") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_3") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "8af7b547-d86e-48ac-bbd7-22c3fc56a126") (property "Reference" "INIT_L18" (at 35.56 85.852 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 76.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "a737209e-25d7-4aa9-b889-6c1b6ab09777") ) (pin "Y" (uuid "de4f7916-3bb6-4bd4-a5db-50e04cddbc45") ) (pin "D0" (uuid "08fdf8da-fbdb-4c89-9b93-39fed51b9177") ) (pin "D0" (uuid "51ed26d2-8d1f-4d1e-87fc-6c19964c4022") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L210") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L69") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L126") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L33") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L285") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L96") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L225") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L270") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L111") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L180") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L141") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L18") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L54") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L195") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L255") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L240") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 68.58 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "97c53206-c48e-4ab6-a563-95a813cc8e5b") (property "Reference" "L26" (at 68.58 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 68.58 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 68.58 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "6ce961ce-3601-41be-9f1b-316d1d5c4797") ) (pin "D1" (uuid "f1cbd6be-7105-4b6d-a88b-f0ab4c060866") ) (pin "D0" (uuid "d634b20a-9113-4e7a-ac82-24a763523049") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L412") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L118") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L228") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L54") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L502") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L192") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L430") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L484") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L210") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L376") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L246") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L26") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L100") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L394") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L466") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L448") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 104.14 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d210bc39-24f6-4463-8a9d-8779ef2d64e3") (property "Reference" "L27" (at 104.14 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 104.14 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "e67aff66-8196-4937-a9b1-db716302e7cf") ) (pin "D1" (uuid "506ed5e6-1f66-44e3-b9d0-a7c02aa78cc8") ) (pin "D0" (uuid "5f38f8f6-3719-4d8d-9765-30d9d18880e1") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L413") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L119") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L229") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L55") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L503") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L193") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L431") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L485") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L211") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L377") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L247") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L27") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L101") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L395") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L467") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "L449") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_1") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "f1ec6cfd-1b97-4bca-8a80-0abc691a95ca") (property "Reference" "INIT_L10" (at 35.56 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "8f7fefe2-2d8b-4646-9371-3b2c1da8f872") ) (pin "Y" (uuid "07ebe093-cb2e-4376-916d-6c4c68d69968") ) (pin "D0" (uuid "e0c655a8-f820-4cd2-9d48-49d291ab3627") ) (pin "D0" (uuid "bc167343-c617-4101-98c4-b26986a6d5d3") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L208") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L67") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L124") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L31") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L283") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L94") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L223") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L268") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L109") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L178") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L139") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L10") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L52") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L193") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L253") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2f1e56f5-88a6-4944-a409-72559104271f" (reference "INIT_L238") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/cpe_comb_mult.kicad_sch000066400000000000000000000003221514752025000236600ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "91e8d213-375f-4c7f-9d5e-98ea188ebac4") (paper "A3") (title_block (company "YosysHQ") ) (lib_symbols) ) prjpeppercorn-1.12/schematics/cpe/cpe_comb_mux4.kicad_sch000077500000000000000000002622551514752025000236160ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "e1db954c-a408-4581-b001-cd836bef6bdd") (paper "A4") (title_block (title "CPE: 4-Input Multiplexer Mode") (rev "4") (company "YosysHQ") ) (lib_symbols (symbol "LUT2 with C_I mux_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_1_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_2_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_2_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_3_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_3_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:LUT2 with C_I mux" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX invert/mask" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX invert/mask_0_1" (rectangle (start -3.81 5.08) (end 3.81 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.302 -5.588) (xy -3.302 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.302 -5.588) (xy 4.318 -5.588) (xy 4.318 4.572) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 3.048) (xy -1.778 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 3.048) (xy -1.016 3.048) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 2.54) (xy -3.302 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 1.27) (xy -3.302 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 0) (xy -3.302 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.508) (xy -1.27 -0.508) (xy -1.778 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0.762 1.27) (mid 0.1142 -0.0398) (end -1.27 -0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start -1.016 3.048) (mid 0.2412 2.5272) (end 0.762 1.27) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0.762 4.064) (mid 1.3933 2.54) (end 0.762 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 1.27 4.064) (mid 1.9012 2.54) (end 1.27 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.016 3.81) (xy -3.302 3.81) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 3.302 2.54) (mid 2.6016 1.3572) (end 1.27 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 1.27 4.064) (mid 2.6016 3.7228) (end 3.3018 2.5398) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 4.318 4.572) (xy 3.81 4.572) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX invert/mask_1_1" (text "C" (at -3.048 4.318 0) (effects (font (size 0.75 0.75) ) ) ) (text "E" (at -3.048 3.048 0) (effects (font (size 0.75 0.75) ) ) ) (text "X" (at -3.048 1.778 0) (effects (font (size 0.75 0.75) ) ) ) (text "M" (at -3.048 0.508 0) (effects (font (size 0.75 0.75) ) ) ) (text "(x4)" (at 3.556 -6.604 0) (effects (font (size 1 1) ) ) ) (pin input line (at -6.35 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "E" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 3.81 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 1.27 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 -1.27 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 -3.81 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX4 (conceptual)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4 (conceptual)_1_1" (polyline (pts (xy -5.08 -5.08) (xy -5.08 5.08) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -5.08 -5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -7.62 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 6.35 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "peppercorn:MUX4 (conceptual) (upside down)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 5.588 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4 (conceptual) (upside down)_1_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 7.62 2.54) (xy 7.62 -2.54) (xy -2.54 -5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 -7.62 90) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 -6.35 90) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 10.16 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (text "C_FUNCTION = 4: MUX4\n\nThis provides a four-input multiplexer.\n\nInput inversion is performed by setting the relevant\nconfig bit of the C input, while constant inputs are\nmasked by clearing the relevant config bit of the X\ninput." (exclude_from_sim no) (at 228.6 38.1 0) (effects (font (size 2.54 2.54) ) (justify top) ) (uuid "2322f752-021c-4897-b633-610dd886ea80") ) (text "MUX4b" (exclude_from_sim no) (at 48.26 105.41 0) (effects (font (size 1.27 1.27) ) ) (uuid "29617fa4-60be-43ed-a076-e44170a40785") ) (text "C_I4" (exclude_from_sim no) (at 30.48 82.804 0) (effects (font (size 1.27 1.27) ) ) (uuid "3a1d9399-b445-420b-83f4-a0d676caba31") ) (text "C_I2" (exclude_from_sim no) (at 30.48 57.404 0) (effects (font (size 1.27 1.27) ) ) (uuid "53f8a4cd-63fa-4108-97af-010bd6d92edb") ) (text "L03" (exclude_from_sim no) (at 35.56 84.074 0) (effects (font (size 1.27 1.27) ) ) (uuid "5afa5379-ef1a-4e1d-b813-5350aaf78db3") ) (text "L00" (exclude_from_sim no) (at 35.56 45.974 0) (effects (font (size 1.27 1.27) ) ) (uuid "63744662-4a71-4e6d-a05b-de794785298a") ) (text "L20" (exclude_from_sim no) (at 104.14 72.644 0) (effects (font (size 1.27 1.27) ) ) (uuid "6ff126eb-540b-4beb-aaa5-7b60eca0c4cb") ) (text "L02" (exclude_from_sim no) (at 35.56 71.374 0) (effects (font (size 1.27 1.27) ) ) (uuid "8e65f15a-7071-41f6-b978-d1b765b931e9") ) (text "C_I3" (exclude_from_sim no) (at 30.48 70.104 0) (effects (font (size 1.27 1.27) ) ) (uuid "91373625-dc40-4dcf-8908-6d1607dd2f63") ) (text "C = L10\nX = L11" (exclude_from_sim no) (at 35.56 32.512 0) (effects (font (size 1 1) ) ) (uuid "9a174cb0-7003-4cdc-9096-0c059f39df01") ) (text "C_I1" (exclude_from_sim no) (at 30.48 44.704 0) (effects (font (size 1.27 1.27) ) ) (uuid "bba92bae-71bc-4497-b0a0-1e4422ceedcc") ) (text "C = L11\nX = L10" (exclude_from_sim no) (at 33.02 108.458 0) (effects (font (size 1 1) ) ) (uuid "be002df3-9cd6-4836-abd9-a175ab721f26") ) (text "MUX4a" (exclude_from_sim no) (at 53.34 29.464 0) (effects (font (size 1.27 1.27) ) ) (uuid "d7de2853-3bfd-4911-978e-8227cafbff39") ) (text "L01" (exclude_from_sim no) (at 35.56 58.674 0) (effects (font (size 1.27 1.27) ) ) (uuid "de171935-7c07-4096-87b1-554030b9ebcc") ) (junction (at 99.06 52.07) (diameter 0) (color 0 0 0 0) (uuid "2e3b3f9a-d166-4f75-a530-e1d6a73fd4d8") ) (wire (pts (xy 39.37 104.14) (xy 40.64 104.14) ) (stroke (width 0) (type default) ) (uuid "01d49b1f-5330-46ce-9a95-9a18590efc86") ) (wire (pts (xy 86.36 71.12) (xy 93.98 71.12) ) (stroke (width 0) (type default) ) (uuid "07cc9470-526f-4448-b169-92b1426d37c8") ) (wire (pts (xy 99.06 52.07) (xy 115.57 52.07) ) (stroke (width 0) (type default) ) (uuid "0b5899f2-702f-4b45-8fad-867409bdf2b5") ) (wire (pts (xy 86.36 71.12) (xy 86.36 105.41) ) (stroke (width 0) (type default) ) (uuid "0b981085-032e-4b2a-b6df-688330ba9547") ) (wire (pts (xy 40.64 52.07) (xy 48.26 52.07) ) (stroke (width 0) (type default) ) (uuid "0c3bdae1-38d5-4086-80d6-7650c086fb8f") ) (wire (pts (xy 48.26 52.07) (xy 48.26 97.79) ) (stroke (width 0) (type default) ) (uuid "125b3507-2033-46b3-b666-5dd06dbdc033") ) (wire (pts (xy 25.4 40.64) (xy 30.48 40.64) ) (stroke (width 0) (type default) ) (uuid "17862432-7fd4-416c-a2da-8dfc0954ab2a") ) (wire (pts (xy 25.4 106.68) (xy 26.67 106.68) ) (stroke (width 0) (type default) ) (uuid "1d1f05bf-cd2d-41e8-afff-2d3bb714bade") ) (wire (pts (xy 40.64 54.61) (xy 50.8 54.61) ) (stroke (width 0) (type default) ) (uuid "2148fe1f-ac0d-40f5-9947-6bdf6549bfdb") ) (wire (pts (xy 41.91 33.02) (xy 45.72 33.02) ) (stroke (width 0) (type default) ) (uuid "226f48d3-d28d-4779-bbfb-5c8ebb2debcd") ) (wire (pts (xy 55.88 105.41) (xy 86.36 105.41) ) (stroke (width 0) (type default) ) (uuid "2955c876-1714-4b8f-8b96-65c970e5e17e") ) (wire (pts (xy 93.98 69.85) (xy 99.06 69.85) ) (stroke (width 0) (type default) ) (uuid "295c3fcd-8556-4a2b-a875-4582b1e93ded") ) (wire (pts (xy 93.98 50.8) (xy 93.98 52.07) ) (stroke (width 0) (type default) ) (uuid "36f44fd4-8d2b-4c86-a0e6-232b081cb973") ) (wire (pts (xy 50.8 54.61) (xy 50.8 99.06) ) (stroke (width 0) (type default) ) (uuid "4c3e0983-fc1a-4d07-ae5c-62742291b2a6") ) (wire (pts (xy 41.91 30.48) (xy 45.72 30.48) ) (stroke (width 0) (type default) ) (uuid "4cee0248-6a28-4ffa-8dd7-fedb7aefb264") ) (wire (pts (xy 25.4 53.34) (xy 30.48 53.34) ) (stroke (width 0) (type default) ) (uuid "4d045592-a586-4ba0-baad-6080c3e05978") ) (wire (pts (xy 25.4 27.94) (xy 29.21 27.94) ) (stroke (width 0) (type default) ) (uuid "4d224ad1-52c5-4621-a4c8-19f230ee5dca") ) (wire (pts (xy 99.06 52.07) (xy 99.06 67.31) ) (stroke (width 0) (type default) ) (uuid "50263570-e053-414f-828f-6f95828c117b") ) (wire (pts (xy 119.38 69.85) (xy 132.08 69.85) ) (stroke (width 0) (type default) ) (uuid "50be42e3-d83a-4eff-8a9b-54953785d61e") ) (wire (pts (xy 41.91 25.4) (xy 45.72 25.4) ) (stroke (width 0) (type default) ) (uuid "5181b66d-1286-44b5-86d1-dffc50a4978e") ) (wire (pts (xy 53.34 36.83) (xy 53.34 67.31) ) (stroke (width 0) (type default) ) (uuid "61e351b7-7bb5-4e54-bde6-642d22321641") ) (wire (pts (xy 119.38 68.58) (xy 119.38 69.85) ) (stroke (width 0) (type default) ) (uuid "62ef00aa-ddae-4210-92a2-4f65f171c051") ) (wire (pts (xy 39.37 101.6) (xy 40.64 101.6) ) (stroke (width 0) (type default) ) (uuid "68f0a7dc-bc98-497f-b770-f4fe332f3eee") ) (wire (pts (xy 115.57 53.34) (xy 132.08 53.34) ) (stroke (width 0) (type default) ) (uuid "6f0d140b-6219-4911-89cc-c9fd59c9e28f") ) (wire (pts (xy 73.66 50.8) (xy 93.98 50.8) ) (stroke (width 0) (type default) ) (uuid "7bc5b7ef-1d33-4384-9602-567698080cbc") ) (wire (pts (xy 25.4 30.48) (xy 29.21 30.48) ) (stroke (width 0) (type default) ) (uuid "7e721205-1cc4-460d-b2e9-d65b41df597c") ) (wire (pts (xy 25.4 25.4) (xy 29.21 25.4) ) (stroke (width 0) (type default) ) (uuid "82b7425a-e905-495a-bbcd-7fe02ff117b4") ) (wire (pts (xy 115.57 52.07) (xy 115.57 53.34) ) (stroke (width 0) (type default) ) (uuid "88a746cd-f7f1-4245-a5d0-0349eab0a695") ) (wire (pts (xy 40.64 67.31) (xy 53.34 67.31) ) (stroke (width 0) (type default) ) (uuid "9353fb2c-c6dc-4acc-87a4-76ff88fd7b5e") ) (wire (pts (xy 40.64 69.85) (xy 55.88 69.85) ) (stroke (width 0) (type default) ) (uuid "9a31fab7-ec35-40ce-a53c-afab25aff264") ) (wire (pts (xy 40.64 69.85) (xy 40.64 80.01) ) (stroke (width 0) (type default) ) (uuid "a4ff5f7b-1993-4614-859a-d9efcedffa29") ) (wire (pts (xy 25.4 101.6) (xy 26.67 101.6) ) (stroke (width 0) (type default) ) (uuid "ac65e58c-fda6-48ef-ac47-dfb27e81bfab") ) (wire (pts (xy 25.4 66.04) (xy 30.48 66.04) ) (stroke (width 0) (type default) ) (uuid "b30ed5bf-62db-4d2e-8005-e593738221fa") ) (wire (pts (xy 41.91 27.94) (xy 45.72 27.94) ) (stroke (width 0) (type default) ) (uuid "b5ff051c-75b5-43f8-a415-a4be5c926402") ) (wire (pts (xy 25.4 33.02) (xy 29.21 33.02) ) (stroke (width 0) (type default) ) (uuid "bbff3928-d920-4480-a297-8bf7e18786ed") ) (wire (pts (xy 40.64 52.07) (xy 40.64 41.91) ) (stroke (width 0) (type default) ) (uuid "c3519a3a-d756-4384-b794-68d27bf3b397") ) (wire (pts (xy 25.4 78.74) (xy 30.48 78.74) ) (stroke (width 0) (type default) ) (uuid "c3c37642-16ba-4017-b9f9-ab298deb9588") ) (wire (pts (xy 93.98 71.12) (xy 93.98 69.85) ) (stroke (width 0) (type default) ) (uuid "c4545dd3-b9ef-4717-add3-b28988d440c2") ) (wire (pts (xy 109.22 68.58) (xy 119.38 68.58) ) (stroke (width 0) (type default) ) (uuid "c4a2034c-c626-4aea-a543-29177c6ce46a") ) (wire (pts (xy 73.66 50.8) (xy 73.66 29.21) ) (stroke (width 0) (type default) ) (uuid "d621f376-13e6-4490-a757-d0733109f611") ) (wire (pts (xy 93.98 52.07) (xy 99.06 52.07) ) (stroke (width 0) (type default) ) (uuid "dd589bbc-7b1f-4d8a-990b-2510397a5fc3") ) (wire (pts (xy 55.88 35.56) (xy 55.88 69.85) ) (stroke (width 0) (type default) ) (uuid "ddc03ff9-9dd0-4851-b4d1-9c7e10cd7f46") ) (wire (pts (xy 73.66 29.21) (xy 60.96 29.21) ) (stroke (width 0) (type default) ) (uuid "e170e58e-d6dc-422e-ae7d-8e5526d31b14") ) (wire (pts (xy 25.4 104.14) (xy 26.67 104.14) ) (stroke (width 0) (type default) ) (uuid "f171b47d-d4c8-4773-ad79-44c1505452a1") ) (wire (pts (xy 39.37 106.68) (xy 40.64 106.68) ) (stroke (width 0) (type default) ) (uuid "f1ea094e-dc86-40d9-bafb-0e56ee9a9c21") ) (wire (pts (xy 39.37 109.22) (xy 40.64 109.22) ) (stroke (width 0) (type default) ) (uuid "f3571475-3d2e-4cc1-aa15-5223c51eaeb6") ) (wire (pts (xy 25.4 109.22) (xy 26.67 109.22) ) (stroke (width 0) (type default) ) (uuid "fbf27140-d2bf-40bb-898e-345fa0a67eb2") ) (label "L01" (at 50.8 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "14df3c97-936d-4218-9c84-8e950e3deef8") ) (label "COMB2OUT" (at 132.08 53.34 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "42fb415c-6af7-473a-a5b4-6b1a7c90c844") ) (label "COMB1OUT" (at 132.08 69.85 180) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "54837760-40c7-4945-b9b0-37f03e8664e0") ) (label "L02" (at 53.34 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "871df31e-50e3-46e9-a8a8-dc1175b47ccd") ) (label "L00" (at 48.26 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "a08d2b94-0682-4d1a-985a-49e819818ee0") ) (label "L03" (at 55.88 58.42 270) (effects (font (size 1.27 1.27) ) (justify right bottom) ) (uuid "a45c7332-66f5-4ee4-8290-fed0bcacc5b1") ) (global_label "VCC" (shape input) (at 35.56 21.59 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "77da3440-56a4-497b-b335-f8312acd2f2f") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 35.56 14.9762 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (global_label "VCC" (shape input) (at 33.02 97.79 90) (fields_autoplaced yes) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ca551fff-4b55-4822-a274-6a650677eb50") (property "Intersheetrefs" "${INTERSHEET_REFS}" (at 33.02 91.1762 90) (effects (font (size 1.27 1.27) ) (justify left) (hide yes) ) ) ) (hierarchical_label "IN1" (shape input) (at 25.4 40.64 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "11ca57c2-6870-4796-b6b4-386c0fdf853c") ) (hierarchical_label "IN1" (shape input) (at 25.4 25.4 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "36664bb2-f9f8-4d59-9b4c-d4630efb2384") ) (hierarchical_label "IN5" (shape input) (at 25.4 66.04 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3a0cef1d-ad2f-4429-a245-36fd087a4b01") ) (hierarchical_label "IN7" (shape input) (at 25.4 78.74 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3fb36529-d874-417b-b136-49605dad9958") ) (hierarchical_label "IN2" (shape input) (at 25.4 43.18 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "424ec6f1-45be-4dc3-b6eb-3425942944b3") ) (hierarchical_label "IN8" (shape input) (at 25.4 81.28 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5387f3c0-a56c-423f-b96d-e3ba4ba82961") ) (hierarchical_label "IN7" (shape input) (at 25.4 106.68 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "58b13b4e-7d32-4c5e-a71d-401cf92f49d9") ) (hierarchical_label "IN6" (shape input) (at 25.4 104.14 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "62054cc3-ad3a-4f25-a025-173483ac42dc") ) (hierarchical_label "PINY1" (shape input) (at 25.4 45.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7fa6cb30-b92d-464c-9e5e-04c1fafbb2e5") ) (hierarchical_label "IN8" (shape input) (at 25.4 109.22 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7fc3e864-53de-46f7-973d-128046d7d6c2") ) (hierarchical_label "IN5" (shape input) (at 25.4 101.6 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "82a82732-9434-4901-b646-7ab6e8b6da93") ) (hierarchical_label "PINY1" (shape input) (at 25.4 71.12 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8a1fcdd6-770d-428e-a93d-1ee3e5ec2485") ) (hierarchical_label "IN3" (shape input) (at 25.4 30.48 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8e8e34c9-da8d-45ee-a37b-705140b04968") ) (hierarchical_label "IN4" (shape input) (at 25.4 33.02 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a5692dc5-52cd-42cf-8819-78c11a02244d") ) (hierarchical_label "IN6" (shape input) (at 25.4 68.58 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "af094efe-e293-44c9-a8f5-be07b7cfb4c3") ) (hierarchical_label "IN3" (shape input) (at 25.4 53.34 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b252e8be-8143-4c03-a57a-38a36de15d9e") ) (hierarchical_label "IN2" (shape input) (at 25.4 27.94 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b40d7286-a28a-4e98-9d2c-466a43b8d4c0") ) (hierarchical_label "PINX" (shape input) (at 25.4 83.82 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c53a60a7-0bc4-4d29-9c92-8585edff64c9") ) (hierarchical_label "CINX" (shape input) (at 25.4 58.42 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f4f8828b-8f78-49eb-9b5c-f9a2e11ddce3") ) (hierarchical_label "IN4" (shape input) (at 25.4 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fe79ff1f-c20b-4395-a432-724cbf59b619") ) (symbol (lib_id "peppercorn:MUX4 (conceptual) (upside down)") (at 50.8 29.21 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1c2537f1-e4d8-4a80-9e37-bb693bb4fabe") (property "Reference" "M13" (at 53.34 20.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 53.34 22.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 50.8 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 50.8 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 50.8 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D3" (uuid "a9ed3b46-2e8e-4c38-98af-7ef9a3a26a5c") ) (pin "D2" (uuid "b4c9b643-e864-4025-b2b6-d507fa15bcdf") ) (pin "D0" (uuid "b5944d28-16be-4609-8a59-8d122e5c6d21") ) (pin "S0" (uuid "30e01df8-cb13-4f09-8584-8c32ed95cc31") ) (pin "Y" (uuid "469be8e2-bb49-42f9-be15-6acd754a8629") ) (pin "D1" (uuid "251d4275-675e-4b0b-a6a3-b6f7ab4251e4") ) (pin "S1" (uuid "bd65e2df-4ff9-479f-b2b8-883a864976a6") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M769") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M177") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M373") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M65") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M809") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M357") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M777") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M801") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M365") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M753") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M381") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M13") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M169") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M761") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M793") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M785") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 41.91 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1cea73b8-e4bf-4477-938c-c83245ca19d1") (property "Reference" "L20" (at 33.02 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 41.91 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "e129de86-86e2-4b90-ac72-a09d79fa8ccf") ) (pin "Y" (uuid "f6a22bc4-f0ff-408e-a6c6-2cbda847f31c") ) (pin "D0" (uuid "96b24630-afc6-48c6-a00c-71f6555d9aaa") ) (pin "D0" (uuid "f8ee8fee-98c3-4dbd-ade6-51049617cfdf") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L408") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L114") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L224") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L50") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L498") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L188") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L426") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L480") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L206") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L372") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L242") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L20") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L96") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L390") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L462") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L444") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX invert/mask") (at 33.02 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1de3a489-e7a1-4d4f-aff9-0fb11612e130") (property "Reference" "U6" (at 33.02 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.7106 114.3 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 33.02 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 33.02 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 33.02 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "3" (uuid "4c16dfd5-c261-4b32-9e56-99dbaa4e704f") ) (pin "4" (uuid "be09fe8a-717a-4333-9840-d4c6af45e52c") ) (pin "1" (uuid "5c38edf1-738c-4705-a22d-a8ad84efa063") ) (pin "2" (uuid "1d61448b-9e75-4c03-a3f1-1e16be1b39c1") ) (pin "M2" (uuid "599b56c4-656f-4f9c-aad8-61d91819fbf6") ) (pin "M4" (uuid "93137156-e373-404c-bdf0-0c88883178e7") ) (pin "E" (uuid "907ea067-d30f-46de-8750-6bce97e183b6") ) (pin "M1" (uuid "b260d51e-5d82-4210-b0af-2a1f7174552a") ) (pin "M3" (uuid "83009ae1-3785-4484-8c05-fa802a5c3359") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U1977") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U474") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U985") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U196") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2102") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U935") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2002") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2077") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U960") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U1927") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U1010") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U6") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U449") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U1952") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2052") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2027") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX4 (conceptual)") (at 48.26 105.41 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "238de562-53ac-4aec-bfd2-171cb9593710") (property "Reference" "M12" (at 48.26 111.76 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 48.26 114.3 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 48.26 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 48.26 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 48.26 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "5f2f4ad7-78f3-41a4-871d-fbf3b3123860") ) (pin "S0" (uuid "90382982-9138-4667-b153-cb4d085939d5") ) (pin "D3" (uuid "3e4f0940-a621-49f6-9fc9-7d616d62a886") ) (pin "D2" (uuid "c9629e21-f032-4ca6-8366-dfcf3ea7b5bf") ) (pin "D1" (uuid "a5afa263-9b9a-49c5-8e44-8163f15487f9") ) (pin "S1" (uuid "1b546fef-6092-43a4-9100-22654843a1a1") ) (pin "Y" (uuid "fb5c507c-6712-45ed-80c7-dd7df6a0f5a1") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M768") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M176") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M372") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M64") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M808") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M356") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M776") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M800") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M364") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M752") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M380") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M12") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M168") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M760") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M792") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "M784") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:MUX invert/mask") (at 35.56 29.21 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3c2d5a65-6e70-43d7-aabf-4644bb87bf73") (property "Reference" "U7" (at 35.56 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 36.2506 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 29.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "3" (uuid "c4888828-850e-4076-b2f5-bc103be79a7e") ) (pin "4" (uuid "0de7e23b-2970-4585-80ae-5574b020109f") ) (pin "1" (uuid "9e92d2d2-cad7-401c-b63c-940c1db37cb3") ) (pin "M4" (uuid "2e789f1b-2cdf-4e6f-b4f4-9873a674d8f4") ) (pin "M3" (uuid "a1ea9708-1bf0-4f3d-9b61-592b1052221d") ) (pin "2" (uuid "906dc9a9-a09e-42c1-8551-e6b93876118f") ) (pin "M2" (uuid "e76bb7ea-5212-48da-81da-c3eec88fdde0") ) (pin "M1" (uuid "725034a0-7832-402c-aefe-2124e10f574e") ) (pin "E" (uuid "bfdefc5c-24cc-4f2b-97f9-fd0c7a790fee") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U1978") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U475") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U986") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U197") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2103") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U936") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2003") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2078") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U961") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U1928") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U1011") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U7") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U450") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U1953") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2053") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "U2028") (unit 1) ) ) ) ) (symbol (lib_id "peppercorn:LUT2") (at 104.14 68.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "3d4326ff-6707-4b83-a278-4461973ffa74") (property "Reference" "L23" (at 104.14 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 104.14 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 104.14 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "Y" (uuid "953a5c17-8628-4acf-856c-89ec8da47510") ) (pin "D1" (uuid "4e878274-4c25-4bb5-9c84-9ee380fe78f3") ) (pin "D0" (uuid "e8344933-dd05-4023-8549-e36664b1ea94") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L409") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L115") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L225") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L51") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L499") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L189") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L427") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L481") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L207") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L373") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L243") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L23") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L97") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L391") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L463") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "L445") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_3") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 80.01 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "4b31d9da-b594-4f75-9d95-d1509df773b3") (property "Reference" "INIT_L17" (at 35.56 85.852 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 76.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 80.01 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "0afe4174-386a-4291-bea0-52b132e7b255") ) (pin "Y" (uuid "b52248c9-c448-441b-abab-060b268dc6ef") ) (pin "D0" (uuid "9833ab67-0eda-463f-a6f2-f70827fd46f7") ) (pin "D0" (uuid "0f7f9a6a-fe6f-4bf9-a0cb-1472632da951") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L207") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L66") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L123") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L30") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L282") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L93") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L222") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L267") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L108") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L177") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L138") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L17") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L51") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L192") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L252") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L237") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_1") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 54.61 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "69edc229-030b-4026-b0e6-16edd8288673") (property "Reference" "INIT_L15" (at 35.56 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 50.8 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "0a416ff0-bde6-4c99-a48f-8c532d2282f7") ) (pin "Y" (uuid "3d9d5a91-e9a2-4488-b182-aa30a659018a") ) (pin "D0" (uuid "eee2ca6a-7e5b-4f88-9e2d-d4587b0d0ad0") ) (pin "D0" (uuid "12886655-3097-46bd-ba07-9305a05a9536") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L205") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L64") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L121") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L28") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L280") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L91") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L220") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L265") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L106") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L175") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L136") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L15") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L49") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L190") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L250") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L235") (unit 1) ) ) ) ) (symbol (lib_name "LUT2 with C_I mux_2") (lib_id "peppercorn:LUT2 with C_I mux") (at 35.56 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (uuid "86753c93-616d-40e2-b402-ca627eca5e06") (property "Reference" "INIT_L16" (at 35.56 72.898 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 33.02 63.5 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 35.56 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "dea05751-e9b2-4275-9131-4cfc8425405e") ) (pin "Y" (uuid "39fc3fe8-db8e-4574-98f5-3412c2c4fa1f") ) (pin "D0" (uuid "4eda9235-d662-4ee2-b41d-cc078daa1ee3") ) (pin "D0" (uuid "8babc21c-6f69-436a-acc7-6490e6fd0a88") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10267851-36ea-4cef-a7d1-733014bf44ba/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L206") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/10712960-9d68-44ab-9263-4d6a1023dbc4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L65") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/213bc7b9-e128-4444-87f8-9514f96db5d7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L122") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/2230e204-608d-4529-b33f-27f2903e32dc/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L29") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/303dbe62-25dc-49e5-9ee2-37afeb4d19e7/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L281") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3708e668-06fd-4bde-a510-be9c4c483743/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L92") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3f316f32-190e-4f32-9c15-1cd4f82ec60d/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L221") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5bad9d32-c3e8-4160-adf1-aa4f27acbfec/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L266") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/8aa34640-bb40-4fe2-bc97-bb16bcd53a98/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L107") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/9b1ab731-94a3-4118-a2ae-9618fbf2d52b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L176") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba5b86d8-c058-4b4e-97ab-c38cca17e5b2/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L137") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cb769740-e0a9-4f3d-b622-ba158089ec4b/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L16") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/cbe1029e-5a96-486f-be41-aa502d2843a4/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L50") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d3f726a8-b35c-41f9-8b51-40750bd789d0/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L191") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e31b35bd-ad23-4fe2-862f-f5d03a701296/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L251") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/eacde244-d6aa-4a0d-9322-f308275f8164/2cdae2f1-b557-4e09-a2ce-72fe69c1cde7" (reference "INIT_L236") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/im.kicad_sch000066400000000000000000004514261514752025000214740ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "e600b13a-1987-43d9-8cfe-cf5380ebb600") (paper "A3") (title_block (title "Input Multiplexer (IM)") (rev "1") (company "YosysHQ") ) (lib_symbols (symbol "NOT_12" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_12_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_12_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_13" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_13_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_13_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_14" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_14_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_14_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_15" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_15_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_15_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_16" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_16_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_16_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_17" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_17_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_17_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_18" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_18_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_18_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_19" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_19_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_19_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_20" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_20_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_20_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_21_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_21_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_22" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_22_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_22_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_23" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_23_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_23_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:MUX8B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX8B_0_1" (polyline (pts (xy -2.54 -10.16) (xy -2.54 10.16) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -2.54 -10.16) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX8B_1_1" (pin input line (at -5.08 8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D5" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D6" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D7" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (rectangle (start 19.05 26.67) (end 49.53 34.29) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 3004cdc0-32d5-43d0-b1fb-54bd13a0f5d4) ) (rectangle (start 19.05 12.7) (end 49.53 25.4) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 72e14195-49be-4047-934a-0c770b0f81e4) ) (text "(X, Y-1).SB.P01.Y2" (exclude_from_sim no) (at 30.48 19.05 0) (effects (font (size 1.27 1.27) ) ) (uuid "05fbd332-9cde-43d9-b9f6-ddf442c782ba") ) (text "(X-1, Y).SB.P01.Y1" (exclude_from_sim no) (at 30.48 16.51 0) (effects (font (size 1.27 1.27) ) ) (uuid "11149868-0d80-4d52-8ba8-435c1738d276") ) (text "IM.P01" (exclude_from_sim no) (at 80.01 25.4 0) (effects (font (size 1.27 1.27) ) ) (uuid "209aace7-40cb-426a-8fd5-efdef31256c3") ) (text "IM.P10" (exclude_from_sim no) (at 43.18 99.06 0) (effects (font (size 1.27 1.27) ) ) (uuid "26292d32-6976-4028-9fe9-576a46c792ea") ) (text "IM.P12" (exclude_from_sim no) (at 43.18 195.58 0) (effects (font (size 1.27 1.27) ) ) (uuid "302311d8-9e2d-45b7-b5aa-f7f27056d4dc") ) (text "IM.P06" (exclude_from_sim no) (at 80.01 99.06 0) (effects (font (size 1.27 1.27) ) ) (uuid "3f001c20-f65e-48cf-b6e6-bfad4715a747") ) (text "FROM DIAGONAL IMs" (exclude_from_sim no) (at 34.29 27.94 0) (effects (font (size 1.27 1.27) ) ) (uuid "50b4f9cf-d256-48e7-9f7c-45d8f8efe345") ) (text "Not connected to CPE,\nbut still connected to D4/D5\nof diagonally-adjacent IMs." (exclude_from_sim no) (at 105.41 212.09 0) (effects (font (size 1.27 1.27) ) ) (uuid "522e15c4-8667-4225-93d4-e85baa88205c") ) (text "IM.P08" (exclude_from_sim no) (at 80.01 195.58 0) (effects (font (size 1.27 1.27) ) ) (uuid "5381216e-1baa-4cfe-858a-4911595620c4") ) (text "FROM ADJACENT SWITCHBOXES" (exclude_from_sim no) (at 34.29 13.97 0) (effects (font (size 1.27 1.27) ) ) (uuid "6caabb20-8439-49ce-9de2-89d2509d930b") ) (text "(X-1, Y-1).IM.P01.Y" (exclude_from_sim no) (at 29.21 30.48 0) (effects (font (size 1.27 1.27) ) ) (uuid "730fc127-b0cb-4a3e-8960-a501645ac0e9") ) (text "IM.P03" (exclude_from_sim no) (at 80.01 121.92 0) (effects (font (size 1.27 1.27) ) ) (uuid "75d201f3-376d-4543-9315-63afdb8d8f0d") ) (text "IM.P07" (exclude_from_sim no) (at 80.01 147.32 0) (effects (font (size 1.27 1.27) ) ) (uuid "7e7b9735-6814-4fc8-b5c2-5b3759234728") ) (text "(X+1, Y+1).IM.P01.Y" (exclude_from_sim no) (at 29.21 33.02 0) (effects (font (size 1.27 1.27) ) ) (uuid "7ffe20c9-4017-4058-8420-379caa472185") ) (text "IM.P09" (exclude_from_sim no) (at 43.18 50.8 0) (effects (font (size 1.27 1.27) ) ) (uuid "8efabf6a-1476-4efe-b238-4348b746b23a") ) (text "(AND EQUIVALENTLY FOR OTHER PLANES)" (exclude_from_sim no) (at 34.29 36.83 0) (effects (font (size 1.27 1.27) ) ) (uuid "97601db5-24b9-4a68-a4e6-a2f3a79ccfe9") ) (text "IM.P04" (exclude_from_sim no) (at 80.01 170.18 0) (effects (font (size 1.27 1.27) ) ) (uuid "bc408feb-02b7-42c6-ab6b-738529002b64") ) (text "(X+1, Y).SB.P01.Y3" (exclude_from_sim no) (at 30.48 21.59 0) (effects (font (size 1.27 1.27) ) ) (uuid "c0ec9344-40ec-40f0-9856-32ec5ea83eec") ) (text "IM.P05" (exclude_from_sim no) (at 80.01 50.8 0) (effects (font (size 1.27 1.27) ) ) (uuid "cf88d23a-0257-49c8-a8ca-f07820f049f7") ) (text "IM.P11" (exclude_from_sim no) (at 43.18 147.32 0) (effects (font (size 1.27 1.27) ) ) (uuid "eb8a71ac-97ad-47f3-a1d7-e1c9ac3caf3e") ) (text "IM.P02" (exclude_from_sim no) (at 80.01 73.66 0) (effects (font (size 1.27 1.27) ) ) (uuid "eefd6d7c-f774-4126-b294-aa3900b14c51") ) (text "(X, Y+1).SB.P01.Y4" (exclude_from_sim no) (at 30.48 24.13 0) (effects (font (size 1.27 1.27) ) ) (uuid "f6aa383d-0b0c-4199-8cba-e5b2a8860b1e") ) (junction (at 60.96 195.58) (diameter 0) (color 0 0 0 0) (uuid "03f587ed-6908-4a60-83f8-a5a2c1c300c8") ) (junction (at 99.06 147.32) (diameter 0) (color 0 0 0 0) (uuid "1034a2a8-55de-45ab-a560-de3ff034e68f") ) (junction (at 99.06 195.58) (diameter 0) (color 0 0 0 0) (uuid "1f5f20b6-a7b4-47a7-9969-c2decf06a0bf") ) (junction (at 60.96 204.47) (diameter 0) (color 0 0 0 0) (uuid "2943e56a-4030-45e7-9865-ee27ef7ff2e4") ) (junction (at 99.06 99.06) (diameter 0) (color 0 0 0 0) (uuid "3466a128-36ba-4b6b-9ef0-e12bf696cce2") ) (junction (at 60.96 50.8) (diameter 0) (color 0 0 0 0) (uuid "41206b13-73c2-4f8f-8ce9-777962e38ef8") ) (junction (at 19.05 153.67) (diameter 0) (color 0 0 0 0) (uuid "41ce9131-518c-4f5a-952a-74eab5a1e10e") ) (junction (at 99.06 170.18) (diameter 0) (color 0 0 0 0) (uuid "54937ce8-be8c-4d31-91be-ca56926057ff") ) (junction (at 26.67 105.41) (diameter 0) (color 0 0 0 0) (uuid "63f7eb0f-4756-469a-891b-870fb52fd9c1") ) (junction (at 60.96 99.06) (diameter 0) (color 0 0 0 0) (uuid "66d744ef-7c4f-4cbb-a076-149f551db6db") ) (junction (at 60.96 156.21) (diameter 0) (color 0 0 0 0) (uuid "7354bab1-7634-4b66-8482-c0624538e468") ) (junction (at 60.96 59.69) (diameter 0) (color 0 0 0 0) (uuid "7d7aac50-72f2-442b-be05-f2e7635cde4d") ) (junction (at 24.13 107.95) (diameter 0) (color 0 0 0 0) (uuid "83af9d18-47ad-4dd8-b6f5-8ea5cf834ee7") ) (junction (at 60.96 107.95) (diameter 0) (color 0 0 0 0) (uuid "85be263f-d04c-4716-9d13-72ef0c817bcc") ) (junction (at 60.96 179.07) (diameter 0) (color 0 0 0 0) (uuid "8fd70350-b453-47c5-a912-91ebe988d52d") ) (junction (at 60.96 39.37) (diameter 0) (color 0 0 0 0) (uuid "9a0323de-e1f9-42ee-a4b7-3009815829e1") ) (junction (at 60.96 147.32) (diameter 0) (color 0 0 0 0) (uuid "b23a770b-e159-4641-b523-10dad0059a7f") ) (junction (at 99.06 25.4) (diameter 0) (color 0 0 0 0) (uuid "bd0d72df-41f9-472c-b332-dd18c1cafbee") ) (junction (at 99.06 73.66) (diameter 0) (color 0 0 0 0) (uuid "c66c18f9-4267-41c3-98d4-d27351b9da36") ) (junction (at 60.96 82.55) (diameter 0) (color 0 0 0 0) (uuid "c8dd1ae2-eec8-40a9-b17d-89167b5df269") ) (junction (at 99.06 121.92) (diameter 0) (color 0 0 0 0) (uuid "cb86ee94-cb4a-467a-a317-f1cfc3021d00") ) (junction (at 60.96 130.81) (diameter 0) (color 0 0 0 0) (uuid "da665a09-cba5-45be-89ed-081559bbe814") ) (junction (at 21.59 156.21) (diameter 0) (color 0 0 0 0) (uuid "e9679474-1356-4f9f-aabe-393eeff3ddd5") ) (junction (at 99.06 50.8) (diameter 0) (color 0 0 0 0) (uuid "ea5c80d1-110c-42f5-a55b-4e54be6b75f8") ) (no_connect (at 116.84 207.01) (uuid "691fdd78-6583-41e6-b7a4-ee4bead1817b") ) (wire (pts (xy 60.96 39.37) (xy 60.96 34.29) ) (stroke (width 0) (type default) ) (uuid "01031dfe-516d-4c0a-a609-29eb5a913b2f") ) (wire (pts (xy 76.2 184.15) (xy 78.74 181.61) ) (stroke (width 0) (type default) ) (uuid "0292eeb4-c764-4b51-814d-15e4d5bb2bfd") ) (wire (pts (xy 60.96 158.75) (xy 116.84 158.75) ) (stroke (width 0) (type default) ) (uuid "04a04433-8bfa-465f-ab4b-fdaa9509c871") ) (wire (pts (xy 63.5 201.93) (xy 73.66 201.93) ) (stroke (width 0) (type default) ) (uuid "067d399a-aaf9-4eca-bfdc-12054b7ec1bc") ) (wire (pts (xy 63.5 128.27) (xy 73.66 128.27) ) (stroke (width 0) (type default) ) (uuid "074bc0d0-e427-484e-8c25-624c946ef50c") ) (wire (pts (xy 63.5 39.37) (xy 76.2 39.37) ) (stroke (width 0) (type default) ) (uuid "0a6a3031-3065-447a-be17-7b556a23c3f1") ) (wire (pts (xy 48.3056 19.0956) (xy 48.26 19.05) ) (stroke (width 0) (type default) ) (uuid "0abc56d4-ba80-42c1-9b05-2a81142a30cf") ) (wire (pts (xy 60.96 130.81) (xy 60.96 147.32) ) (stroke (width 0) (type default) ) (uuid "0b48ba27-e65a-4687-8a15-c339da77853a") ) (wire (pts (xy 78.74 184.15) (xy 76.2 181.61) ) (stroke (width 0) (type default) ) (uuid "0cedaf7f-860e-489c-a07e-80d72ad03076") ) (wire (pts (xy 93.98 50.8) (xy 99.06 50.8) ) (stroke (width 0) (type default) ) (uuid "0d3956c9-664b-4b57-9b1c-9d1eb38dceec") ) (wire (pts (xy 78.74 39.37) (xy 99.06 39.37) ) (stroke (width 0) (type default) ) (uuid "0f088a51-0745-43dd-9816-28b83a8c819c") ) (wire (pts (xy 63.5 153.67) (xy 73.66 153.67) ) (stroke (width 0) (type default) ) (uuid "0f56859c-4b00-4dc2-ba95-e5b6c6de8e05") ) (wire (pts (xy 19.05 39.37) (xy 19.05 153.67) ) (stroke (width 0) (type default) ) (uuid "10d3cac9-6980-43ed-8f27-f64a0986f1f5") ) (wire (pts (xy 48.26 30.48) (xy 52.07 30.48) ) (stroke (width 0) (type default) ) (uuid "1260f025-315d-43af-a33f-5a02772bea77") ) (wire (pts (xy 24.13 57.15) (xy 36.83 57.15) ) (stroke (width 0) (type default) ) (uuid "13107847-ca03-4c85-9e11-84f4b6d30d66") ) (wire (pts (xy 93.98 25.4) (xy 99.06 25.4) ) (stroke (width 0) (type default) ) (uuid "1903e7b5-60ba-412a-8160-5828d45bf572") ) (wire (pts (xy 63.5 105.41) (xy 73.66 105.41) ) (stroke (width 0) (type default) ) (uuid "1ac44cb1-4032-4e12-a028-49d3bab477af") ) (wire (pts (xy 63.5 184.15) (xy 76.2 184.15) ) (stroke (width 0) (type default) ) (uuid "1d284b11-0daf-42a5-87c4-d8fe9e73a731") ) (wire (pts (xy 63.5 57.15) (xy 73.66 57.15) ) (stroke (width 0) (type default) ) (uuid "1de58584-62f5-4e5c-aa68-83334b5fd692") ) (wire (pts (xy 48.26 16.51) (xy 73.66 16.51) ) (stroke (width 0) (type default) ) (uuid "1e2adf10-7096-4fff-a349-887d2d00a5c3") ) (wire (pts (xy 99.06 147.32) (xy 93.98 147.32) ) (stroke (width 0) (type default) ) (uuid "248c3b1c-4391-4dec-901e-b5b767b3c24f") ) (wire (pts (xy 57.15 195.58) (xy 60.96 195.58) ) (stroke (width 0) (type default) ) (uuid "27b8003a-d263-4527-af8d-600c6be50e7c") ) (wire (pts (xy 63.5 135.89) (xy 76.2 135.89) ) (stroke (width 0) (type default) ) (uuid "290aac27-3d2e-49a4-84a1-ff8b8afbbd74") ) (wire (pts (xy 26.67 179.07) (xy 26.67 105.41) ) (stroke (width 0) (type default) ) (uuid "29ba1a43-c79e-4c79-b556-2e72977cb3bc") ) (wire (pts (xy 19.05 153.67) (xy 36.83 153.67) ) (stroke (width 0) (type default) ) (uuid "29c7d454-3e6b-4ddf-bab0-6a1dd3eb4278") ) (wire (pts (xy 24.13 107.95) (xy 36.83 107.95) ) (stroke (width 0) (type default) ) (uuid "2b95b357-045f-4033-90be-025ecd0de9bc") ) (wire (pts (xy 48.3056 24.1756) (xy 48.26 24.13) ) (stroke (width 0) (type default) ) (uuid "2c322204-9fc6-4173-8327-0db8f92bcfa8") ) (wire (pts (xy 93.98 73.66) (xy 99.06 73.66) ) (stroke (width 0) (type default) ) (uuid "2df2fdcd-34b7-46e8-aee1-5b20e6a6bde4") ) (wire (pts (xy 48.3056 16.5556) (xy 48.26 16.51) ) (stroke (width 0) (type default) ) (uuid "36c7f4fc-0d9b-4753-bebe-bce7bdb89051") ) (wire (pts (xy 73.66 130.81) (xy 60.96 130.81) ) (stroke (width 0) (type default) ) (uuid "3a1c03e4-471b-4afc-bc69-251ca7998aa2") ) (wire (pts (xy 99.06 195.58) (xy 99.06 184.15) ) (stroke (width 0) (type default) ) (uuid "3a4ecc90-be71-4d19-8ac9-9dd0ea48a496") ) (wire (pts (xy 24.13 130.81) (xy 60.96 130.81) ) (stroke (width 0) (type default) ) (uuid "40972e3a-5408-4353-b854-8ac0a6b56f1e") ) (wire (pts (xy 19.05 153.67) (xy 19.05 204.47) ) (stroke (width 0) (type default) ) (uuid "41e47055-dded-49fd-9084-27413bcda71d") ) (wire (pts (xy 99.06 73.66) (xy 116.84 73.66) ) (stroke (width 0) (type default) ) (uuid "461c2340-685a-4545-8eb6-9fa695844c1f") ) (wire (pts (xy 19.05 39.37) (xy 60.96 39.37) ) (stroke (width 0) (type default) ) (uuid "47f5c0b2-bf51-4028-9231-389761dbba63") ) (wire (pts (xy 99.06 121.92) (xy 99.06 133.35) ) (stroke (width 0) (type default) ) (uuid "4a38b0dc-8414-4418-8b2a-5ffb72d2e076") ) (wire (pts (xy 48.26 24.13) (xy 73.66 24.13) ) (stroke (width 0) (type default) ) (uuid "4ac1426d-f926-4b57-8bdc-0df66a93d9ce") ) (wire (pts (xy 78.74 184.15) (xy 99.06 184.15) ) (stroke (width 0) (type default) ) (uuid "4d98406b-f3d3-4564-97ef-8d91b0c80537") ) (wire (pts (xy 78.74 135.89) (xy 76.2 133.35) ) (stroke (width 0) (type default) ) (uuid "4ef64c9d-5893-4f10-9196-30fa89ad433e") ) (wire (pts (xy 78.74 87.63) (xy 76.2 85.09) ) (stroke (width 0) (type default) ) (uuid "54c55830-5d20-40ec-b695-c3f03dd0adfd") ) (wire (pts (xy 63.5 128.27) (xy 63.5 133.35) ) (stroke (width 0) (type default) ) (uuid "54d824ef-9982-4808-877e-6e9068383b29") ) (wire (pts (xy 99.06 25.4) (xy 99.06 36.83) ) (stroke (width 0) (type default) ) (uuid "56ae0844-9da2-43fc-b16a-95392b2c342d") ) (wire (pts (xy 63.5 80.01) (xy 73.66 80.01) ) (stroke (width 0) (type default) ) (uuid "583eda48-a79b-4251-be47-a3189e6fe529") ) (wire (pts (xy 53.34 29.21) (xy 73.66 29.21) ) (stroke (width 0) (type default) ) (uuid "5b2616c2-2946-4c41-a73e-36eb465bcfee") ) (wire (pts (xy 99.06 99.06) (xy 99.06 87.63) ) (stroke (width 0) (type default) ) (uuid "5b93e1d6-5c2e-4f69-99a7-9df6ceb97fd2") ) (wire (pts (xy 60.96 156.21) (xy 60.96 158.75) ) (stroke (width 0) (type default) ) (uuid "5bb3f14a-7344-4c96-ac16-a4bb61ea3b19") ) (wire (pts (xy 26.67 59.69) (xy 36.83 59.69) ) (stroke (width 0) (type default) ) (uuid "5d7f2746-2b13-460d-8c4d-a94560c3458d") ) (wire (pts (xy 21.59 82.55) (xy 60.96 82.55) ) (stroke (width 0) (type default) ) (uuid "656831d3-8ad1-46e7-9f2c-ef2a315bdcc0") ) (wire (pts (xy 60.96 59.69) (xy 60.96 62.23) ) (stroke (width 0) (type default) ) (uuid "69ca342d-5413-46a2-93df-c3f3bff74c3d") ) (wire (pts (xy 63.5 87.63) (xy 63.5 105.41) ) (stroke (width 0) (type default) ) (uuid "69fd37e7-7871-4a74-8247-ad9113be54a5") ) (wire (pts (xy 99.06 170.18) (xy 116.84 170.18) ) (stroke (width 0) (type default) ) (uuid "6a65f353-b8e8-4a27-ae03-116682f28623") ) (wire (pts (xy 21.59 201.93) (xy 36.83 201.93) ) (stroke (width 0) (type default) ) (uuid "6aa1b72c-e3f5-4396-8fee-251eb913ebc1") ) (wire (pts (xy 78.74 133.35) (xy 99.06 133.35) ) (stroke (width 0) (type default) ) (uuid "6aac2e27-9f1b-4e7c-a886-52d5b18f43e1") ) (wire (pts (xy 99.06 195.58) (xy 93.98 195.58) ) (stroke (width 0) (type default) ) (uuid "6ceb5cc7-2fcf-4a06-a0e2-59f3875b5baf") ) (wire (pts (xy 26.67 105.41) (xy 26.67 59.69) ) (stroke (width 0) (type default) ) (uuid "75c9b450-cdae-4d23-8c15-db7f22234c4f") ) (wire (pts (xy 21.59 82.55) (xy 21.59 156.21) ) (stroke (width 0) (type default) ) (uuid "764ddb80-690b-45ee-9296-876a81843b8f") ) (wire (pts (xy 60.96 204.47) (xy 73.66 204.47) ) (stroke (width 0) (type default) ) (uuid "77947d2e-47fc-4f9f-ac23-d4a8740bed43") ) (wire (pts (xy 99.06 50.8) (xy 116.84 50.8) ) (stroke (width 0) (type default) ) (uuid "77a22779-c2fd-477f-b2ce-8f419f593a9c") ) (wire (pts (xy 26.67 105.41) (xy 36.83 105.41) ) (stroke (width 0) (type default) ) (uuid "7b5118fe-1dfa-46ae-b931-c1867068ce14") ) (wire (pts (xy 53.34 33.02) (xy 53.34 29.21) ) (stroke (width 0) (type default) ) (uuid "7bb27271-0250-42bd-be98-8b134ce56b1f") ) (wire (pts (xy 78.74 36.83) (xy 99.06 36.83) ) (stroke (width 0) (type default) ) (uuid "8005a5b6-1f29-43e2-b613-8398e516667e") ) (wire (pts (xy 60.96 107.95) (xy 60.96 110.49) ) (stroke (width 0) (type default) ) (uuid "82792bc5-e003-4ac7-a34b-02c97076bda9") ) (wire (pts (xy 93.98 170.18) (xy 99.06 170.18) ) (stroke (width 0) (type default) ) (uuid "83acb7cb-bb9e-403e-917f-67f20b4036ea") ) (wire (pts (xy 63.5 133.35) (xy 76.2 133.35) ) (stroke (width 0) (type default) ) (uuid "86369b56-24f3-4921-8d21-2567d130bbb9") ) (wire (pts (xy 60.96 62.23) (xy 116.84 62.23) ) (stroke (width 0) (type default) ) (uuid "88a0642c-e5b3-4a07-90f4-faa6e252fcab") ) (wire (pts (xy 73.66 179.07) (xy 60.96 179.07) ) (stroke (width 0) (type default) ) (uuid "8a8e0975-578b-417f-a288-6bfea7be22d3") ) (wire (pts (xy 63.5 181.61) (xy 76.2 181.61) ) (stroke (width 0) (type default) ) (uuid "8e43ff6f-edd5-4497-bc66-346a6fc5b9a1") ) (wire (pts (xy 60.96 147.32) (xy 60.96 156.21) ) (stroke (width 0) (type default) ) (uuid "8eb06ac2-bc98-4267-b831-32058b54ab94") ) (wire (pts (xy 99.06 195.58) (xy 116.84 195.58) ) (stroke (width 0) (type default) ) (uuid "8fe11750-69dc-4f22-bbd5-5b963c41aef5") ) (wire (pts (xy 99.06 121.92) (xy 93.98 121.92) ) (stroke (width 0) (type default) ) (uuid "900fd511-1b07-41dd-b9d0-24cfef42e848") ) (wire (pts (xy 63.5 184.15) (xy 63.5 201.93) ) (stroke (width 0) (type default) ) (uuid "979ae5c2-5ebf-4265-939e-d1dbc9cff19f") ) (wire (pts (xy 73.66 82.55) (xy 60.96 82.55) ) (stroke (width 0) (type default) ) (uuid "9995f59a-113a-48d7-9f29-4b8c321290d2") ) (wire (pts (xy 19.05 204.47) (xy 36.83 204.47) ) (stroke (width 0) (type default) ) (uuid "9ad5fcc2-3493-4767-8b0c-0a1be34d0d55") ) (wire (pts (xy 60.96 204.47) (xy 60.96 195.58) ) (stroke (width 0) (type default) ) (uuid "9af48d7c-084c-4e35-9066-522e967d7064") ) (wire (pts (xy 60.96 34.29) (xy 73.66 34.29) ) (stroke (width 0) (type default) ) (uuid "9c5d19cd-0472-4423-9f32-a6965cfa0f6b") ) (wire (pts (xy 99.06 147.32) (xy 116.84 147.32) ) (stroke (width 0) (type default) ) (uuid "9df58e01-e776-4f18-9e59-2cc3eff42003") ) (wire (pts (xy 78.74 87.63) (xy 99.06 87.63) ) (stroke (width 0) (type default) ) (uuid "a04b74d5-3298-4dc2-b9a4-2dceed44f56e") ) (wire (pts (xy 60.96 59.69) (xy 60.96 50.8) ) (stroke (width 0) (type default) ) (uuid "a2ac2c0e-3d50-4fc1-92ed-13687a14ed8b") ) (wire (pts (xy 99.06 99.06) (xy 116.84 99.06) ) (stroke (width 0) (type default) ) (uuid "a32561c5-3d28-411d-ae89-391df737d8bf") ) (wire (pts (xy 48.26 21.59) (xy 73.66 21.59) ) (stroke (width 0) (type default) ) (uuid "a91d6897-9fd1-4dc9-97c4-9707a6e15bfc") ) (wire (pts (xy 57.15 99.06) (xy 60.96 99.06) ) (stroke (width 0) (type default) ) (uuid "acb23707-c825-4e4d-9c16-18d63c588bff") ) (wire (pts (xy 63.5 31.75) (xy 63.5 36.83) ) (stroke (width 0) (type default) ) (uuid "ad87f2be-2298-4c03-9734-c2ea13d0f028") ) (wire (pts (xy 21.59 156.21) (xy 36.83 156.21) ) (stroke (width 0) (type default) ) (uuid "ae58285d-60b6-4e77-9acc-2171a3fd64f5") ) (wire (pts (xy 63.5 135.89) (xy 63.5 153.67) ) (stroke (width 0) (type default) ) (uuid "af40ce26-594f-4fc7-bacc-e10c309383f2") ) (wire (pts (xy 48.26 19.05) (xy 73.66 19.05) ) (stroke (width 0) (type default) ) (uuid "af9b4699-fbea-47f0-ba06-c68a41d12b03") ) (wire (pts (xy 78.74 85.09) (xy 99.06 85.09) ) (stroke (width 0) (type default) ) (uuid "b2afdae4-398c-4fb1-b7f3-f3a87002faa0") ) (wire (pts (xy 24.13 130.81) (xy 24.13 107.95) ) (stroke (width 0) (type default) ) (uuid "b3013b6d-e681-43ec-8183-736cd37b260f") ) (wire (pts (xy 63.5 36.83) (xy 76.2 36.83) ) (stroke (width 0) (type default) ) (uuid "b342e5f8-d8de-4f23-8e9f-3e21b927ae69") ) (wire (pts (xy 60.96 99.06) (xy 60.96 107.95) ) (stroke (width 0) (type default) ) (uuid "b36d4d9b-3a28-4039-ac5a-e771170e03f9") ) (wire (pts (xy 99.06 50.8) (xy 99.06 39.37) ) (stroke (width 0) (type default) ) (uuid "b4ca5f18-f887-4776-b887-90af834af5ec") ) (wire (pts (xy 78.74 39.37) (xy 76.2 36.83) ) (stroke (width 0) (type default) ) (uuid "b52809d9-44cd-4eb5-a4f7-0916d21d5142") ) (wire (pts (xy 78.74 181.61) (xy 99.06 181.61) ) (stroke (width 0) (type default) ) (uuid "b7d15c90-d2be-431c-8ae6-9650cda0b9c6") ) (wire (pts (xy 63.5 87.63) (xy 76.2 87.63) ) (stroke (width 0) (type default) ) (uuid "b819f8ee-61f7-4f1f-957c-45d23a2a5060") ) (wire (pts (xy 63.5 85.09) (xy 76.2 85.09) ) (stroke (width 0) (type default) ) (uuid "bb7cb681-1452-48ed-9244-964c1e5fe5f4") ) (wire (pts (xy 78.74 135.89) (xy 99.06 135.89) ) (stroke (width 0) (type default) ) (uuid "bc172a6d-60b0-4beb-8231-5eae26df2d94") ) (wire (pts (xy 57.15 147.32) (xy 60.96 147.32) ) (stroke (width 0) (type default) ) (uuid "bdc4a68c-755d-495a-8060-adbb8bdd325f") ) (wire (pts (xy 76.2 39.37) (xy 78.74 36.83) ) (stroke (width 0) (type default) ) (uuid "bdfc596a-05f0-4d0c-84b9-0830b34b05cd") ) (wire (pts (xy 48.3056 21.6356) (xy 48.26 21.59) ) (stroke (width 0) (type default) ) (uuid "be6574dc-3912-4223-a1fd-ddfac9947ef3") ) (wire (pts (xy 63.5 80.01) (xy 63.5 85.09) ) (stroke (width 0) (type default) ) (uuid "bfd9ee6e-2f98-486b-b27e-b1638e833f65") ) (wire (pts (xy 60.96 207.01) (xy 116.84 207.01) ) (stroke (width 0) (type default) ) (uuid "c01b1e23-2a0e-428e-87b5-267e743b5366") ) (wire (pts (xy 60.96 107.95) (xy 73.66 107.95) ) (stroke (width 0) (type default) ) (uuid "c15a1a69-e96c-41be-a5bd-0b6e33be1fcd") ) (wire (pts (xy 60.96 59.69) (xy 73.66 59.69) ) (stroke (width 0) (type default) ) (uuid "c2c43a9f-1fa9-44b0-8743-2e6df2758a35") ) (wire (pts (xy 60.96 39.37) (xy 60.96 50.8) ) (stroke (width 0) (type default) ) (uuid "c2da38bb-9cf4-4c76-acea-8792b4e21173") ) (wire (pts (xy 48.26 33.02) (xy 53.34 33.02) ) (stroke (width 0) (type default) ) (uuid "c50d8535-a64e-4e66-83d8-224719c7efc1") ) (wire (pts (xy 26.67 179.07) (xy 60.96 179.07) ) (stroke (width 0) (type default) ) (uuid "c53d55bf-12b4-480f-83d2-a4fa496de98c") ) (wire (pts (xy 63.5 31.75) (xy 73.66 31.75) ) (stroke (width 0) (type default) ) (uuid "c7846037-1476-458b-9dfd-51a5e8ff7497") ) (wire (pts (xy 57.15 50.8) (xy 60.96 50.8) ) (stroke (width 0) (type default) ) (uuid "c8347aae-fd46-477c-a55d-ce33dae72344") ) (wire (pts (xy 60.96 110.49) (xy 116.84 110.49) ) (stroke (width 0) (type default) ) (uuid "c9a3d776-ebbd-4d13-9f94-40f0d497d6d7") ) (wire (pts (xy 63.5 176.53) (xy 63.5 181.61) ) (stroke (width 0) (type default) ) (uuid "ca131c13-48ed-4704-9a73-bc9e4d317b40") ) (wire (pts (xy 63.5 176.53) (xy 73.66 176.53) ) (stroke (width 0) (type default) ) (uuid "cb8608b1-c588-451e-a00c-dc618e02d709") ) (wire (pts (xy 60.96 207.01) (xy 60.96 204.47) ) (stroke (width 0) (type default) ) (uuid "ce34409f-d16f-4cda-becc-467c6cb3027f") ) (wire (pts (xy 60.96 82.55) (xy 60.96 99.06) ) (stroke (width 0) (type default) ) (uuid "d610b6c8-dbd7-47e1-8afe-847401e362b6") ) (wire (pts (xy 52.07 30.48) (xy 52.07 26.67) ) (stroke (width 0) (type default) ) (uuid "d611c50b-3226-475d-b84a-9901cbc68cbe") ) (wire (pts (xy 52.07 26.67) (xy 73.66 26.67) ) (stroke (width 0) (type default) ) (uuid "d7424c6a-0e90-428c-86c6-01c3d3983630") ) (wire (pts (xy 76.2 135.89) (xy 78.74 133.35) ) (stroke (width 0) (type default) ) (uuid "d7c46011-74e9-450b-b1eb-4b542046ddeb") ) (wire (pts (xy 60.96 156.21) (xy 73.66 156.21) ) (stroke (width 0) (type default) ) (uuid "da0e1aad-749c-4b05-9e30-f40ed93314ed") ) (wire (pts (xy 76.2 87.63) (xy 78.74 85.09) ) (stroke (width 0) (type default) ) (uuid "dbe8cf01-1298-44be-9ec8-5676e87ba4bb") ) (wire (pts (xy 93.98 99.06) (xy 99.06 99.06) ) (stroke (width 0) (type default) ) (uuid "df951e22-048e-4bce-809e-1ba119b46c66") ) (wire (pts (xy 60.96 179.07) (xy 60.96 195.58) ) (stroke (width 0) (type default) ) (uuid "e67c951e-579b-43ba-beaa-a24cc9fe065e") ) (wire (pts (xy 21.59 156.21) (xy 21.59 201.93) ) (stroke (width 0) (type default) ) (uuid "e75aa1de-a991-4448-a063-a0b13cd8118f") ) (wire (pts (xy 99.06 135.89) (xy 99.06 147.32) ) (stroke (width 0) (type default) ) (uuid "e935dfba-cfe4-4df7-8c01-8375b16a8f33") ) (wire (pts (xy 63.5 39.37) (xy 63.5 57.15) ) (stroke (width 0) (type default) ) (uuid "e97536f2-5b11-4b12-b9cf-548921b12a83") ) (wire (pts (xy 99.06 73.66) (xy 99.06 85.09) ) (stroke (width 0) (type default) ) (uuid "ed53a553-9eab-46e1-a4af-d6a2a96d0d8b") ) (wire (pts (xy 99.06 170.18) (xy 99.06 181.61) ) (stroke (width 0) (type default) ) (uuid "f00974c7-78dd-4791-8257-9bebaeccb93b") ) (wire (pts (xy 99.06 25.4) (xy 116.84 25.4) ) (stroke (width 0) (type default) ) (uuid "f38b8045-6056-42dc-8d89-81ac7ae0b515") ) (wire (pts (xy 99.06 121.92) (xy 116.84 121.92) ) (stroke (width 0) (type default) ) (uuid "fdcd85f6-ade7-4cda-a23a-c8c142147fa0") ) (wire (pts (xy 24.13 107.95) (xy 24.13 57.15) ) (stroke (width 0) (type default) ) (uuid "ffd36864-701b-4aa7-85d1-c9578db4200b") ) (label "IM.P12.Y" (at 101.6 207.01 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "1118975a-d91c-4f8f-897a-056b255778b1") ) (label "IM.P08.Y" (at 101.6 195.58 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "1173c566-baa8-4673-9ea0-361d61f8b68e") ) (label "IM.P07.Y" (at 101.6 147.32 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3676cac8-60f7-41b3-a3a9-cc933cc2efb2") ) (label "IM.P05.Y" (at 101.6 50.8 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3929df31-7527-45f7-8e9a-9ac0cd7b784e") ) (label "IM.P01.Y" (at 101.6 25.4 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3f8ef493-aed1-4cbd-9963-a32961ce7273") ) (label "IM.P10.Y" (at 101.6 110.49 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4557c2e7-a765-4916-80b7-a3b09054f93d") ) (label "IM.P03.Y" (at 101.6 121.92 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5f1819d4-cf84-4f04-bda8-0c2dbb4f427d") ) (label "IM.P02.Y" (at 101.6 73.66 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "68403e78-c3bb-4821-89d6-32c2132e8cdf") ) (label "IM.P04.Y" (at 101.6 170.18 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c42ca8ab-f87e-47e2-ae2b-3bc036031068") ) (label "IM.P11.Y" (at 101.6 158.75 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ca2f06f4-763d-4e58-aa7e-efe566d39142") ) (label "IM.P06.Y" (at 101.6 99.06 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e4e7b853-bd52-4d08-9b1f-44e7f9ab4424") ) (label "IM.P09.Y" (at 101.6 62.23 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f165a20d-3782-44f5-bb7d-6ce4015c49a1") ) (hierarchical_label "P10.D1" (shape input) (at 36.83 92.71 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "00212da5-fd63-4ddc-a5c6-b260825d857c") ) (hierarchical_label "P06.D3" (shape input) (at 73.66 97.79 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "025fb370-9282-4d9e-86b3-01f1e9ab97a4") ) (hierarchical_label "P04.D1" (shape input) (at 73.66 163.83 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "028eec74-429d-484a-a386-09be6e8a6dd4") ) (hierarchical_label "P01.D0" (shape input) (at 48.3056 16.51 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "034b96a9-5269-4c9a-a51e-0d2c447f1a21") ) (hierarchical_label "P12.D2" (shape input) (at 36.83 191.77 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "03d6d8ad-f156-4e70-a0f4-0dbbe5f98f72") ) (hierarchical_label "P09.D5" (shape input) (at 36.83 54.61 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "03f1b979-fb0f-4c86-8a8b-3e7e13703410") ) (hierarchical_label "P09.D1" (shape input) (at 36.83 44.45 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "097aa727-fefb-4e5b-a741-c65864bff998") ) (hierarchical_label "P02.D1" (shape input) (at 73.66 67.31 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0f87b54d-e7e3-4b78-a106-e22462aae666") ) (hierarchical_label "CPE.IN1" (shape output) (at 116.84 25.4 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0fd8eeec-d624-4128-a371-6f6c5111dad6") ) (hierarchical_label "P01.D3" (shape input) (at 48.3056 24.13 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "10220dbe-cb17-4093-99c5-a684e1280e62") ) (hierarchical_label "P08.D4" (shape input) (at 73.66 196.85 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "108cb20b-0a68-4cd1-8738-d0e0128a9210") ) (hierarchical_label "P03.D2" (shape input) (at 73.66 118.11 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "11b83a26-e2fc-454a-b294-2f828047b965") ) (hierarchical_label "P04.D5" (shape input) (at 73.66 173.99 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "138d4f34-a995-4c4e-b34d-7c8f32f95654") ) (hierarchical_label "CPE.CLK" (shape output) (at 116.84 62.23 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "14cdad19-bc35-4990-9120-6a1ceafdddb3") ) (hierarchical_label "P10.D5" (shape input) (at 36.83 102.87 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1971487d-0bdc-40f5-9239-d5351205f575") ) (hierarchical_label "P11.D0" (shape input) (at 36.83 138.43 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "21dfa1cf-f455-4bfc-9a0f-d7ad23c72e27") ) (hierarchical_label "CPE.SR" (shape output) (at 116.84 158.75 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "2408f46a-3fa6-4e77-850f-4aac33f66b05") ) (hierarchical_label "P08.D1" (shape input) (at 73.66 189.23 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2724ec57-3ed5-439a-954c-294f57397887") ) (hierarchical_label "P03.D3" (shape input) (at 73.66 120.65 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "290117ce-ac9d-4584-bc04-609c76b6144d") ) (hierarchical_label "P05.D0" (shape input) (at 73.66 41.91 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "298c308f-c441-40fa-97f7-7e96526b4022") ) (hierarchical_label "P10.D4" (shape input) (at 36.83 100.33 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "331b59e2-3e64-4cba-8910-aadbd87c419f") ) (hierarchical_label "P12.D3" (shape input) (at 36.83 194.31 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "36d625a3-f0e3-4c4a-b3bc-711f3bca832c") ) (hierarchical_label "P02.D5" (shape input) (at 73.66 77.47 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3f7935de-87ca-45f0-bab4-3cf61af4ba91") ) (hierarchical_label "P05.D3" (shape input) (at 73.66 49.53 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "408e80ca-de13-4742-aac8-84a0684ce2b1") ) (hierarchical_label "P10.D3" (shape input) (at 36.83 97.79 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "46e64c54-8547-486b-985b-e5291c64d4b6") ) (hierarchical_label "P01.D2" (shape input) (at 48.3056 21.59 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4cd64fda-cc61-443e-a341-e3bb3deb4469") ) (hierarchical_label "P03.D4" (shape input) (at 73.66 123.19 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4efd9507-4b65-43fd-bc54-caf7c2915770") ) (hierarchical_label "P07.D4" (shape input) (at 73.66 148.59 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "516969bd-8e36-4177-8091-392b4d4a9bae") ) (hierarchical_label "P02.D3" (shape input) (at 73.66 72.39 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "53e66744-9cef-43d1-8d1a-2d2cd7a3dacf") ) (hierarchical_label "P07.D5" (shape input) (at 73.66 151.13 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "54295db9-91a4-4d51-b627-fc8cda267625") ) (hierarchical_label "P12.D0" (shape input) (at 36.83 186.69 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "56d49e2b-9c10-484d-9f44-3fd76d19ef40") ) (hierarchical_label "P11.D3" (shape input) (at 36.83 146.05 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "57248f65-e437-4fda-bf4f-1846f964b454") ) (hierarchical_label "P09.D3" (shape input) (at 36.83 49.53 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5c33a77f-b1d4-4200-b7a7-a6fe0cc62a8b") ) (hierarchical_label "P05.D2" (shape input) (at 73.66 46.99 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5de60d39-be1b-4907-ab97-4622a0eda1ae") ) (hierarchical_label "P06.D1" (shape input) (at 73.66 92.71 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "63486baa-76ec-44a8-8459-3146bb26522d") ) (hierarchical_label "P04.D4" (shape input) (at 73.66 171.45 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "69e7055c-0478-4d0e-a23a-b5bf0f15f2f5") ) (hierarchical_label "P06.D0" (shape input) (at 73.66 90.17 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6bf3bed3-93a2-474f-981b-dd6ce8c88565") ) (hierarchical_label "P08.D5" (shape input) (at 73.66 199.39 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "70ff2262-9581-4191-add0-ba872d628a95") ) (hierarchical_label "P01.D4" (shape input) (at 48.26 30.48 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "71b31129-986b-4952-8b41-8fb82693bd0d") ) (hierarchical_label "CPE.EN" (shape output) (at 116.84 110.49 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "738be48b-7ed2-45e6-baff-4af920ad654e") ) (hierarchical_label "P05.D5" (shape input) (at 73.66 54.61 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "7f8cb32b-1baf-4bd2-a1f6-31d6868786f5") ) (hierarchical_label "P06.D2" (shape input) (at 73.66 95.25 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "80a36df2-9bd3-4f09-9570-af47ae78f286") ) (hierarchical_label "P11.D5" (shape input) (at 36.83 151.13 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "81050194-bb2a-491a-b0d5-7754c4902ccc") ) (hierarchical_label "P01.D1" (shape input) (at 48.3056 19.05 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "87e804cd-0087-46e2-a115-eeeac637250b") ) (hierarchical_label "P09.D0" (shape input) (at 36.83 41.91 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "88e9122f-6099-4237-9809-6615d4062861") ) (hierarchical_label "P09.D2" (shape input) (at 36.83 46.99 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8946577d-f4cc-453b-ae3c-5ca262a8f804") ) (hierarchical_label "P11.D1" (shape input) (at 36.83 140.97 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8c7cc5e2-277a-43de-b2f4-ba3d21fd5ebe") ) (hierarchical_label "P07.D2" (shape input) (at 73.66 143.51 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "926063b3-3249-417b-9a13-90407fc85006") ) (hierarchical_label "P12.D4" (shape input) (at 36.83 196.85 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "95c622e0-51fd-4409-9e17-4adcd8968f3e") ) (hierarchical_label "P10.D0" (shape input) (at 36.83 90.17 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "97f83be3-a391-49b4-aeb6-5848f507de5d") ) (hierarchical_label "P05.D1" (shape input) (at 73.66 44.45 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9882d2c2-d30c-4ede-a86b-877d4ae005ab") ) (hierarchical_label "P04.D3" (shape input) (at 73.66 168.91 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9c87f237-3a51-41be-8871-55bbc8edde50") ) (hierarchical_label "P08.D0" (shape input) (at 73.66 186.69 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9dc7c764-be41-4231-b19e-bd08c51d5d3b") ) (hierarchical_label "CPE.IN3" (shape output) (at 116.84 121.92 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "9fd3ce91-4f3c-4e53-bcae-6c4b3308bed9") ) (hierarchical_label "P01.D5" (shape input) (at 48.26 33.02 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a8993eba-e747-4c29-91e2-adcca5af3d5c") ) (hierarchical_label "P03.D1" (shape input) (at 73.66 115.57 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ab194e7b-83b4-4bd6-9aa9-57fb841fb194") ) (hierarchical_label "CPE.IN8" (shape output) (at 116.84 195.58 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ac4695aa-5edf-4486-84af-1fdc37ab32c6") ) (hierarchical_label "CPE.IN2" (shape output) (at 116.84 73.66 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "b249c99a-9cb8-4115-bc63-a7208d86dea6") ) (hierarchical_label "P07.D0" (shape input) (at 73.66 138.43 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b2bb0cc6-3fde-4394-bd67-c0e618efa5c3") ) (hierarchical_label "P11.D2" (shape input) (at 36.83 143.51 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bb54eebe-3b81-44b9-a468-47fd71b82a23") ) (hierarchical_label "P09.D4" (shape input) (at 36.83 52.07 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bd6c18ce-0551-43e1-887c-30c82f03414d") ) (hierarchical_label "P08.D2" (shape input) (at 73.66 191.77 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bd818287-d1c7-4c33-82be-9e3cf071a640") ) (hierarchical_label "P07.D3" (shape input) (at 73.66 146.05 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "bf71081d-c30e-4d56-b1cc-386dfd076007") ) (hierarchical_label "P04.D0" (shape input) (at 73.66 161.29 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c2700604-940a-4241-a7e6-fe5b1d1bb256") ) (hierarchical_label "CPE.IN6" (shape output) (at 116.84 99.06 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "c3e54073-155c-4c05-a84f-5aa4e15ea467") ) (hierarchical_label "CPE.IN7" (shape output) (at 116.84 147.32 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "c41b1b6f-cae5-42df-8c9b-b39f6e9b7a87") ) (hierarchical_label "P04.D2" (shape input) (at 73.66 166.37 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c6536120-96be-4096-8c20-8700468ce152") ) (hierarchical_label "P02.D0" (shape input) (at 73.66 64.77 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cc35c51d-d576-4e00-ac99-d3154a48a594") ) (hierarchical_label "P02.D4" (shape input) (at 73.66 74.93 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cd8acb62-45d0-4514-9db8-0718b8441c6b") ) (hierarchical_label "P03.D5" (shape input) (at 73.66 125.73 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cf21f60a-1263-42c2-846f-d260a386c9c8") ) (hierarchical_label "P08.D3" (shape input) (at 73.66 194.31 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d43eb48c-9709-4c0a-b626-be69b6e9780b") ) (hierarchical_label "P07.D1" (shape input) (at 73.66 140.97 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "da1f7660-559e-431f-b143-48ec8491c005") ) (hierarchical_label "P11.D4" (shape input) (at 36.83 148.59 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dbbfff1f-9918-416e-b928-1eec3bd0c2d8") ) (hierarchical_label "P12.D5" (shape input) (at 36.83 199.39 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e357f326-4749-4894-bec5-bedd90623bb6") ) (hierarchical_label "P06.D5" (shape input) (at 73.66 102.87 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "eac5f7d8-dc42-4aa3-abcb-ad0a829a97e4") ) (hierarchical_label "CPE.IN5" (shape output) (at 116.84 50.8 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ed2ba3ba-3b3d-4daf-b16d-8bdb3ea48115") ) (hierarchical_label "P10.D2" (shape input) (at 36.83 95.25 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ef37a264-169c-4306-93e1-340cc75c1778") ) (hierarchical_label "P06.D4" (shape input) (at 73.66 100.33 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f204a596-54f0-43cb-8dfc-db6ce49063f3") ) (hierarchical_label "P12.D1" (shape input) (at 36.83 189.23 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f4c38880-2ed6-4735-a78a-a763b6bec2ba") ) (hierarchical_label "P02.D2" (shape input) (at 73.66 69.85 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f689d037-0a9b-4344-bcde-12ca6d1f0d01") ) (hierarchical_label "P03.D0" (shape input) (at 73.66 113.03 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "f75efa5a-9c5a-47ae-90ff-61db71ad9208") ) (hierarchical_label "CPE.IN4" (shape output) (at 116.84 170.18 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "f8b85cdc-55c3-418e-8678-251f70074321") ) (hierarchical_label "P05.D4" (shape input) (at 73.66 52.07 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fdee2658-2d20-4359-a68e-fc6349337673") ) (symbol (lib_name "NOT_13") (lib_id "prjpeppercorn:NOT") (at 90.17 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0bbb0eaf-dede-4950-825a-afbc82c77ed3") (property "Reference" "U?" (at 90.17 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.17 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 90.17 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 90.17 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "e6c6f111-3fe1-487d-bbb9-86ca31e14aea") ) (pin "" (uuid "adfab688-4581-4ec9-97d8-4a64e538e547") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1893") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1125") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1554") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1869") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U894") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1881") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U167") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U688") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1857") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U311") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U569") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1239") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U420") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U906") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1542") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 41.91 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0e02a6af-3f56-4921-abcd-c56ee51f2539") (property "Reference" "M?" (at 43.18 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 43.18 87.63 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 41.91 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 41.91 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 41.91 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "3d3eac5a-dc16-48fc-a716-1cb61fa2a0c1") ) (pin "D1" (uuid "b995fbf7-dcb2-45eb-bb47-fe7d40a98773") ) (pin "D0" (uuid "a8a84109-92b6-4683-9de8-4f2d970491f2") ) (pin "D4" (uuid "8598cc97-0d45-41df-bad6-542597016089") ) (pin "D5" (uuid "d0b61365-ec74-44f8-990d-5601b4181e13") ) (pin "D7" (uuid "8ffe5afb-2b26-4d53-be3b-ad4fb64907d0") ) (pin "Y" (uuid "a20a90c2-fa02-48c7-9351-fe6f7b2ee859") ) (pin "D2" (uuid "18fdd876-a96b-4060-8500-aaa6b1b24a16") ) (pin "D3" (uuid "12a83e55-ea85-41d8-a115-810c56102752") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M730") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M424") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M589") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M706") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M327") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M718") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M47") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M248") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M694") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M108") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M200") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M472") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M151") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M339") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M577") (unit 1) ) ) ) ) (symbol (lib_name "NOT_12") (lib_id "prjpeppercorn:NOT") (at 90.17 25.4 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "1eb27c41-a62b-4094-9968-a10d130c03f7") (property "Reference" "U?" (at 90.17 20.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.17 22.86 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 90.17 25.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 25.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 90.17 25.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ad5a9b78-133b-40f3-b829-2cfd5cc2c601") ) (pin "" (uuid "90e6d872-8e43-4465-a220-5249fc075c6b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1892") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1124") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1553") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1868") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U893") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1880") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U166") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U687") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1856") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U310") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U568") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1238") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U419") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U905") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1541") (unit 1) ) ) ) ) (symbol (lib_name "NOT_18") (lib_id "prjpeppercorn:NOT") (at 90.17 73.66 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "2fb26b76-678c-4b67-be2f-9fc204949420") (property "Reference" "U?" (at 90.17 68.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.17 71.12 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 90.17 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 90.17 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "0334edef-c7fe-4d3c-a183-ca6a474bb3f9") ) (pin "" (uuid "5442f646-07ae-4c7b-b89b-090651a74525") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1894") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1126") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1555") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1870") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U895") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1882") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U168") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U689") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1858") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U312") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U570") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1240") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U421") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U907") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1543") (unit 1) ) ) ) ) (symbol (lib_name "NOT_22") (lib_id "prjpeppercorn:NOT") (at 90.17 195.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "30679a95-bac3-4d62-a7b4-8d71cebb4d8b") (property "Reference" "U?" (at 90.17 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.17 193.04 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 90.17 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 90.17 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "3b685f5a-ce77-4a03-8e15-62369fa6eb6e") ) (pin "" (uuid "91a0341d-0e14-4cf0-abb7-9ed297f28e48") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1899") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1131") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1560") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1875") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U900") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1887") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U173") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U694") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1863") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U317") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U575") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1245") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U426") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U912") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1548") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 78.74 170.18 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "431ed638-5d83-4ae9-b1ba-03a432bfba88") (property "Reference" "M?" (at 80.01 156.21 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 158.75 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 78.74 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 78.74 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 78.74 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "ca72e949-e066-44d3-b9d0-f0e3a0c47f8a") ) (pin "D1" (uuid "9118cb98-62a3-4fe8-a87d-983da7bc6abc") ) (pin "D0" (uuid "7c876445-dae6-46ec-952d-af3db06b8829") ) (pin "D4" (uuid "2f06ed88-c486-479a-835f-e72befcf0bdf") ) (pin "D5" (uuid "a4456d70-e04c-4b32-91cf-ba5578413dae") ) (pin "D7" (uuid "a4abc287-304d-49f1-9511-c8086b2bfbc0") ) (pin "Y" (uuid "d5e40a0a-704b-48d2-a505-d4eb81b8bb4a") ) (pin "D2" (uuid "b4ef8552-0b3a-4709-b8ca-8cb0c6d94f8f") ) (pin "D3" (uuid "a509614a-6d10-4236-8baa-97a321579ab6") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M739") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M433") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M598") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M715") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M336") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M727") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M56") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M262") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M703") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M117") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M209") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M481") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M160") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M348") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M586") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 78.74 73.66 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "44edebb2-173b-4b8d-a530-dc3b9b9ddc8f") (property "Reference" "M?" (at 80.01 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 62.23 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 78.74 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 78.74 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 78.74 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "6a1196f5-50bd-4ce5-9d0b-4809c116ae5d") ) (pin "D1" (uuid "a44a0c8a-7647-4cd9-9099-84046f16d4bd") ) (pin "D0" (uuid "55276a79-084e-4da4-9c6b-55a171d623b3") ) (pin "D4" (uuid "a42945d0-12fc-4c56-9c10-a49ef9a85546") ) (pin "D5" (uuid "b8fbe3e5-1471-48a6-9e0f-65e80dfefc61") ) (pin "D7" (uuid "ee805107-e647-4206-9077-609743f2bfdb") ) (pin "Y" (uuid "e3f2ced5-2ea2-4a17-af4b-4644325d93a5") ) (pin "D2" (uuid "3b842f87-3fd9-4ec0-b384-1075e28f6736") ) (pin "D3" (uuid "aa84497a-a147-489d-88e2-c40cb7b49e88") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M735") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M429") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M594") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M711") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M332") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M723") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M52") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M258") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M699") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M113") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M205") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M477") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M156") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M344") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M582") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 78.74 121.92 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4d53c962-25f1-4b09-beea-cba1a97c4b7d") (property "Reference" "M?" (at 80.01 107.95 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 110.49 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 78.74 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 78.74 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 78.74 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "6fa3a01e-3a4d-4a2b-93f7-dfcee493e6f7") ) (pin "D1" (uuid "3607c9c4-8364-4307-bd72-1b5dd7ddc396") ) (pin "D0" (uuid "9dce80e3-cb8e-438f-b8ee-4aa54a482905") ) (pin "D4" (uuid "ad2fc61f-45d1-44e4-9e08-e3f6974c6518") ) (pin "D5" (uuid "fd0547aa-801b-41b2-8a99-7fae1e28cda2") ) (pin "D7" (uuid "37f26fb1-87d4-4065-b4d9-6a0662739a3f") ) (pin "Y" (uuid "824cd34b-3c89-4b7d-a670-8c7b79f085e9") ) (pin "D2" (uuid "a5fe56f1-346f-43cf-b86a-fb9ecfba5dae") ) (pin "D3" (uuid "092e3a25-438c-4d5f-9000-d3ac3b4bddd2") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M737") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M431") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M596") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M713") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M334") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M725") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M54") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M260") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M701") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M115") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M207") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M479") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M158") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M346") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M584") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 41.91 195.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "522eb813-44f7-43b8-aef5-bde655a00c23") (property "Reference" "M?" (at 43.18 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 43.18 184.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 41.91 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 41.91 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 41.91 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "e50e14f2-f4b4-45ae-8c19-76617393bbbe") ) (pin "D1" (uuid "80ff7cfb-f9a5-4259-a011-a025b75fe9b8") ) (pin "D0" (uuid "c63bb2f4-6418-43a5-92ea-381da2769d70") ) (pin "D4" (uuid "124cda0c-71f8-4c63-81b4-d69dd91148cc") ) (pin "D5" (uuid "4e5a9059-67e6-4154-bed9-628c17282c8f") ) (pin "D7" (uuid "95e0ff66-fe32-458c-9bbc-0808c40c1ae3") ) (pin "Y" (uuid "3ba07621-ac16-44d2-98e9-4846fee6c70c") ) (pin "D2" (uuid "acaa7d2a-0863-40b0-9c5c-b1e420aac96a") ) (pin "D3" (uuid "fbdbe323-cecd-486f-a74a-99b57c072002") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M732") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M426") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M591") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M708") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M329") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M720") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M49") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M250") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M696") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M110") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M202") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M474") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M153") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M341") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M579") (unit 1) ) ) ) ) (symbol (lib_name "NOT_20") (lib_id "prjpeppercorn:NOT") (at 90.17 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "602f3740-decc-4b32-9379-782a375230ad") (property "Reference" "U?" (at 90.17 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.17 144.78 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 90.17 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 90.17 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "db2dd076-8a0d-4778-97c4-fd2ba2885360") ) (pin "" (uuid "dd3c18b5-d9e6-471b-833f-75e7a4eeb094") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1897") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1129") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1558") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1873") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U898") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1885") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U171") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U692") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1861") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U315") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U573") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1243") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U424") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U910") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1546") (unit 1) ) ) ) ) (symbol (lib_name "NOT_15") (lib_id "prjpeppercorn:NOT") (at 53.34 195.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "60b1bc36-2a3c-4dca-9434-708982bec0fc") (property "Reference" "U?" (at 53.34 190.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 53.34 193.04 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 53.34 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 53.34 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 53.34 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "09768f43-6b14-4fda-b96e-1bbe0d21719c") ) (pin "" (uuid "7c9bced8-98c3-477c-8f04-b2ad88560fd8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1891") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1123") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1552") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1867") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U892") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1879") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U165") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U686") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1855") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U309") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U567") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1237") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U418") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U904") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1540") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 78.74 25.4 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "689a7168-8bc0-47c5-a4e2-a4ffc15d78ce") (property "Reference" "M?" (at 80.01 11.43 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 13.97 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 78.74 25.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 78.74 25.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 78.74 25.4 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "f1b13a09-dafa-4b97-9054-c149e23cdcb0") ) (pin "D1" (uuid "d890c2d4-1f53-4366-a954-d58e35da226f") ) (pin "D0" (uuid "e6848022-46a6-444c-8b71-b5e7344c706c") ) (pin "D4" (uuid "19827585-8735-486e-ab5f-5d3cddcc1597") ) (pin "D5" (uuid "a01c55c4-845b-4859-b473-d2ed685de015") ) (pin "D7" (uuid "5c80462a-c705-41fd-b0de-e4032b27a30f") ) (pin "Y" (uuid "a1a36cf1-7b62-4636-bb8d-f53ccc2f0fc9") ) (pin "D2" (uuid "debde03b-f1c6-4643-abbe-8a2f45b8f5f4") ) (pin "D3" (uuid "d1382bab-a340-416d-af41-c95920942724") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M733") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M427") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M592") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M709") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M330") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M721") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M50") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M251") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M697") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M111") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M203") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M475") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M154") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M342") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M580") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 78.74 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "79ec3ea5-7d72-4d37-9bcd-b90d215b14fb") (property "Reference" "M?" (at 80.01 85.09 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 87.63 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 78.74 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 78.74 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 78.74 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "46fb87ff-4991-4e2e-928d-a30c7d7db988") ) (pin "D1" (uuid "9d4bce35-60e9-44e7-b568-3a2f131916db") ) (pin "D0" (uuid "039019f0-012c-48a0-833d-4cdd72e918cb") ) (pin "D4" (uuid "eaa8a622-12b0-49b3-b8de-ae77134e1b4b") ) (pin "D5" (uuid "5d86190a-2c4f-426a-9230-53872090f376") ) (pin "D7" (uuid "a87da1bb-1383-40fe-87bc-ce9648718cfe") ) (pin "Y" (uuid "aa6ff73b-9479-4732-93a4-86467871dd86") ) (pin "D2" (uuid "43fea5d7-88a2-4618-97e8-1557a6d0149f") ) (pin "D3" (uuid "3ec42ca2-7b91-4858-815d-4365e427de3d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M736") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M430") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M595") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M712") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M333") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M724") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M53") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M259") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M700") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M114") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M206") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M478") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M157") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M345") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M583") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 78.74 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7ed11e3e-7336-4bdb-8794-f6153dffad7e") (property "Reference" "M?" (at 80.01 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 135.89 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 78.74 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 78.74 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 78.74 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "366c9ca8-ec02-43b0-a01b-96a1424122c4") ) (pin "D1" (uuid "43941313-4ef2-496e-89ce-d208fa9de064") ) (pin "D0" (uuid "41255c7f-d7a9-48a7-adc5-3f3f22b1663b") ) (pin "D4" (uuid "75bd5df9-c87a-4304-8737-54d035bb6d3d") ) (pin "D5" (uuid "08c0542f-60aa-4644-81d2-06a520201824") ) (pin "D7" (uuid "3ecc8718-f134-45b3-8946-12cf7d02bcf7") ) (pin "Y" (uuid "860c3e25-7bce-4b0e-b48d-8c2ff6c57feb") ) (pin "D2" (uuid "2508b4dc-381b-4841-a04d-ec87aa7a3141") ) (pin "D3" (uuid "7d844387-a34e-459b-9f22-f3004fa3a6bb") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M738") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M432") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M597") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M714") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M335") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M726") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M55") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M261") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M702") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M116") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M208") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M480") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M159") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M347") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M585") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 78.74 195.58 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "aae8ccdb-2076-4413-8bcb-04be7d0f9b8d") (property "Reference" "M?" (at 80.01 181.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 184.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 78.74 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 78.74 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 78.74 195.58 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "0442fe2a-fe65-43c2-9091-f57985401965") ) (pin "D1" (uuid "f7a7072d-8828-492c-bb62-210d769729fa") ) (pin "D0" (uuid "2c8e5b26-442e-4c25-9356-2c59c30b2a4b") ) (pin "D4" (uuid "2a09c3e7-2fbb-4613-bfe3-71cbdc982f4f") ) (pin "D5" (uuid "63f23198-0572-4468-ac15-64fac414cea7") ) (pin "D7" (uuid "41ec9ac2-fa1d-4e36-b76e-56301c6159f5") ) (pin "Y" (uuid "f2e065f3-b36b-4b95-9ff3-4dfd6369a552") ) (pin "D2" (uuid "c31a413b-4592-4a68-b0ff-92690e89c3b1") ) (pin "D3" (uuid "70111f52-5788-4339-af82-bd03d87b449c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M740") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M434") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M599") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M716") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M337") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M728") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M57") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M263") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M704") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M118") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M210") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M482") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M161") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M349") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M587") (unit 1) ) ) ) ) (symbol (lib_name "NOT_19") (lib_id "prjpeppercorn:NOT") (at 53.34 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b6632e63-8435-4a8c-b374-97e6cc447def") (property "Reference" "U?" (at 53.34 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 53.34 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 53.34 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 53.34 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 53.34 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "87e1a14d-6a26-41f5-a3e0-61efd0d4ed3e") ) (pin "" (uuid "76710d91-a2a5-425c-b0d4-8b57539d888a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1889") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1121") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1550") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1865") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U890") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1877") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U163") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U684") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1853") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U307") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U565") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1235") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U416") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U902") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1538") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 78.74 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b6f45b1b-bad3-48a1-ba9e-425bf3d63370") (property "Reference" "M?" (at 80.01 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 80.01 39.37 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 78.74 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 78.74 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 78.74 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "3816da30-63e7-4ac7-9a3c-984418c270ea") ) (pin "D1" (uuid "947b91e5-ca17-42b2-b4f9-9d096f37204b") ) (pin "D0" (uuid "2c30de6b-cf3e-40b5-b503-fb351e4f3ebe") ) (pin "D4" (uuid "eba31481-c065-4318-82ba-ed580444ae70") ) (pin "D5" (uuid "b472b573-e423-4982-8a86-2328bbf98758") ) (pin "D7" (uuid "6b998ff4-bda8-414e-ac42-4405cd1af15c") ) (pin "Y" (uuid "246b8fea-91e6-4edd-9c44-2fcd91b291c6") ) (pin "D2" (uuid "842967fe-e025-478d-97df-5504ad082afa") ) (pin "D3" (uuid "98606708-5c08-4ebc-8553-a121db624617") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M734") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M428") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M593") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M710") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M331") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M722") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M51") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M257") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M698") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M112") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M204") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M476") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M155") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M343") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M581") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 41.91 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "b85ea8fa-5dd4-4408-9b51-ea259b5c9f6c") (property "Reference" "M?" (at 43.18 133.35 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 43.18 135.89 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 41.91 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 41.91 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 41.91 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "cbf3b43f-7775-4544-9908-474f7e0888cc") ) (pin "D1" (uuid "f0c418de-8e5c-4ac7-b9fb-56426026121d") ) (pin "D0" (uuid "8d8724da-a1ee-409e-ac06-0389f86718c7") ) (pin "D4" (uuid "5687eac5-59f6-4026-a357-67eebb11e724") ) (pin "D5" (uuid "c195a91c-cf32-4ae6-9a16-2bf1cf4f58b9") ) (pin "D7" (uuid "5373f867-e6cf-4132-8cee-2e19e1def0ef") ) (pin "Y" (uuid "17506f2a-d509-4988-8833-908722b54cfb") ) (pin "D2" (uuid "5e5d65c1-cf7e-4f9e-97e7-a3208846a123") ) (pin "D3" (uuid "d12c16b2-c118-4d37-96e6-c05bbb4c8e3a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M731") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M425") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M590") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M707") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M328") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M719") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M48") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M249") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M695") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M109") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M201") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M473") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M152") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M340") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M578") (unit 1) ) ) ) ) (symbol (lib_name "NOT_17") (lib_id "prjpeppercorn:NOT") (at 90.17 99.06 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "cd0300b6-a78b-4274-9c91-2c627d1f80c8") (property "Reference" "U?" (at 90.17 93.98 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.17 96.52 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 90.17 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 90.17 99.06 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "4c775bd6-d228-423a-9b57-c1dc71458ba9") ) (pin "" (uuid "50e6da00-375d-4f3c-8a0c-4397f37a179d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1895") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1127") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1556") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1871") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U896") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1883") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U169") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U690") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1859") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U313") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U571") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1241") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U422") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U908") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1544") (unit 1) ) ) ) ) (symbol (lib_name "NOT_23") (lib_id "prjpeppercorn:NOT") (at 90.17 170.18 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d6a20fbb-f43b-4a47-a02f-ae33ee467095") (property "Reference" "U?" (at 90.17 165.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.17 167.64 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 90.17 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 90.17 170.18 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "0e6f6431-92a5-413b-b140-9d6dbbfae2cf") ) (pin "" (uuid "1c5310d6-edf7-41d8-8109-33e4802c5280") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1898") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1130") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1559") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1874") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U899") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1886") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U172") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U693") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1862") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U316") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U574") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1244") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U425") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U911") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1547") (unit 1) ) ) ) ) (symbol (lib_name "NOT_16") (lib_id "prjpeppercorn:NOT") (at 53.34 147.32 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e7669962-0325-4525-a887-c1df2c2b1df2") (property "Reference" "U?" (at 53.34 142.24 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 53.34 144.78 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 53.34 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 53.34 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 53.34 147.32 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ded8b32f-5968-451b-b537-6a0a078babdc") ) (pin "" (uuid "b2535d07-3d6d-46c7-8796-fd33e203dadd") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1890") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1122") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1551") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1866") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U891") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1878") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U164") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U685") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1854") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U308") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U566") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1236") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U417") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U903") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1539") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 41.91 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "eb7f08f4-6225-4ad5-a678-9d8b9e521cc5") (property "Reference" "M?" (at 43.18 36.83 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 43.18 39.37 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 41.91 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 41.91 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 41.91 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D6" (uuid "c1dfa040-e336-4a10-91f8-26fed86215fc") ) (pin "D1" (uuid "3126133b-9e2b-4a3f-b2ec-899e6e720b79") ) (pin "D0" (uuid "a0e96bda-2587-4e97-93dd-55ca6e366c6d") ) (pin "D4" (uuid "6d5d64bf-6cfe-447c-9766-6c1f1e70e8b8") ) (pin "D5" (uuid "2296677b-f59d-41e1-a5dd-63e65079e349") ) (pin "D7" (uuid "edd5fd1b-6b9a-4dd0-9ea1-fe3320dbca22") ) (pin "Y" (uuid "c32cc790-90a1-4dd6-85b9-2b9277615b30") ) (pin "D2" (uuid "00d7016b-d533-4828-97ab-aa63937b9b9b") ) (pin "D3" (uuid "e11f4715-250b-435b-bf26-a211b5cb2aa3") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "M729") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "M423") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "M588") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "M705") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "M326") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "M717") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "M46") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "M247") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "M693") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "M107") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "M199") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "M471") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "M150") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "M338") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "M576") (unit 1) ) ) ) ) (symbol (lib_name "NOT_14") (lib_id "prjpeppercorn:NOT") (at 53.34 50.8 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f6fced7e-4a9e-4b9d-962d-b1ad336cc1ee") (property "Reference" "U?" (at 53.34 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 53.34 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 53.34 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 53.34 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 53.34 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "046ecba8-740e-4c48-bc10-b4713eb417b6") ) (pin "" (uuid "1f224812-43aa-4388-8a1c-0bed7751e37c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1888") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1120") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1549") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1864") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U889") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1876") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U162") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U683") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1852") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U306") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U564") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1234") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U415") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U901") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1537") (unit 1) ) ) ) ) (symbol (lib_name "NOT_21") (lib_id "prjpeppercorn:NOT") (at 90.17 121.92 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f84e327c-4376-4b8e-b356-37dc61841c0f") (property "Reference" "U?" (at 90.17 116.84 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 90.17 119.38 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 90.17 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 90.17 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 90.17 121.92 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "12e34ba7-32d4-4709-9dc4-b3fc3fb8ad86") ) (pin "" (uuid "d61d8d37-f167-4420-8d61-19b0eb6989e4") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15237a69-f566-4902-aed7-ec94257dac5f" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/15666f69-b7ed-4f99-992f-5817e69dcac9" (reference "U1896") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/26834ae4-da98-4578-9c2e-cd695e873ce7" (reference "U1128") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3c4d503e-07c9-4206-aaeb-e7fbe5d6150b" (reference "U1557") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4a71ba92-793e-49ad-9861-7c41ba263f46" (reference "U1872") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4b653757-b4f2-49b6-8afc-3b9eb400680f" (reference "U897") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/53057a60-0610-4a8e-b816-7199fa30cd79" (reference "U1884") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5874b725-80d2-456e-aad7-0e7be771e786" (reference "U170") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/5f80c25b-15f6-43c9-b1ce-146688513aa6" (reference "U691") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/6da24921-0cf0-4d6d-bab2-aec1250ea677" (reference "U1860") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a9d9c733-a319-47fe-9511-ffa679100753" (reference "U314") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b0039cf5-a560-4402-8cb2-900045e79843" (reference "U572") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b57a8071-6a29-42f3-b1fa-46043cf15890" (reference "U1242") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ba0b6e53-6d28-4a63-b105-1bae4b7952cf" (reference "U423") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c848837c-3f9c-4cce-a4c7-393e1a0c4966" (reference "U909") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e8161494-e08f-43fe-b092-16e4392b32ce" (reference "U1545") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/om11.kicad_sch000066400000000000000000001100051514752025000216250ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "4e1625c5-cb0b-4f40-8426-42775e024b66") (paper "A4") (title_block (title "Output Multiplexer (1, 1)") (date "2025-10-31") (rev "1") (company "YosysHQ") ) (lib_symbols (symbol "NOT_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_1_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_2_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_2_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_3_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_3_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:MUX4B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4B_0_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX4B_1_1" (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:NOT" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (junction (at 52.07 80.01) (diameter 0) (color 0 0 0 0) (uuid "121f05e3-0e44-42d7-9899-9635e7c70f9a") ) (junction (at 44.45 88.9) (diameter 0) (color 0 0 0 0) (uuid "155f0fbf-8b96-4cdc-8c42-331b529d2c17") ) (junction (at 46.99 91.44) (diameter 0) (color 0 0 0 0) (uuid "2a472dc7-1142-4190-a0c9-2b2dd2487e8d") ) (junction (at 49.53 77.47) (diameter 0) (color 0 0 0 0) (uuid "339d6aee-7564-451d-8f37-6174a3599125") ) (junction (at 49.53 47.625) (diameter 0) (color 0 0 0 0) (uuid "38f3f708-c6e6-426a-bce1-b1159986826f") ) (junction (at 52.07 96.52) (diameter 0) (color 0 0 0 0) (uuid "45306e99-ce45-433b-a4c7-b21b5fea8153") ) (junction (at 44.45 42.545) (diameter 0) (color 0 0 0 0) (uuid "55a44fa7-384c-4e55-aac5-0c24a5281897") ) (junction (at 46.99 74.93) (diameter 0) (color 0 0 0 0) (uuid "8da0ad19-b056-4cdf-a90f-5afdfaac8f7b") ) (junction (at 52.07 35.56) (diameter 0) (color 0 0 0 0) (uuid "8dd896aa-d228-4516-8716-5f4fc0a77e84") ) (junction (at 46.99 45.085) (diameter 0) (color 0 0 0 0) (uuid "9a45283b-473b-4012-8740-011bd28ab895") ) (junction (at 44.45 72.39) (diameter 0) (color 0 0 0 0) (uuid "c8818104-7c48-42eb-a3d4-dbe92c1d8783") ) (junction (at 49.53 33.02) (diameter 0) (color 0 0 0 0) (uuid "c95169bf-662d-4067-8dfa-8ce8dcfab123") ) (junction (at 52.07 50.165) (diameter 0) (color 0 0 0 0) (uuid "dc4a80ce-039b-4822-95ae-fdd5e676e3d7") ) (junction (at 44.45 27.94) (diameter 0) (color 0 0 0 0) (uuid "dc61433d-9dfd-4e0f-92d1-823dd52e9895") ) (junction (at 46.99 30.48) (diameter 0) (color 0 0 0 0) (uuid "df199471-3ca9-4fe5-98fd-d9cb45e94b59") ) (junction (at 49.53 93.98) (diameter 0) (color 0 0 0 0) (uuid "f4dc36b7-cc23-4f5a-965d-4f6bc689f2ba") ) (wire (pts (xy 49.53 93.98) (xy 90.17 93.98) ) (stroke (width 0) (type default) ) (uuid "0e041bab-e49e-42f2-89c5-3568b42b7e14") ) (wire (pts (xy 52.07 96.52) (xy 90.17 96.52) ) (stroke (width 0) (type default) ) (uuid "14b0991e-89c9-41e9-a889-cffe49234446") ) (wire (pts (xy 25.4 45.085) (xy 46.99 45.085) ) (stroke (width 0) (type default) ) (uuid "1592c2d5-b3cc-475c-a06a-373f7c65c7f8") ) (wire (pts (xy 46.99 91.44) (xy 90.17 91.44) ) (stroke (width 0) (type default) ) (uuid "15959be6-2852-4baa-ab0e-6eb957176b5c") ) (wire (pts (xy 25.4 42.545) (xy 44.45 42.545) ) (stroke (width 0) (type default) ) (uuid "1a47624e-93be-40f2-a422-7f275df14771") ) (wire (pts (xy 46.99 62.23) (xy 46.99 74.93) ) (stroke (width 0) (type default) ) (uuid "1a7cd1d4-d87a-42e0-97ca-abcdde60eac4") ) (wire (pts (xy 88.9 63.5) (xy 90.17 63.5) ) (stroke (width 0) (type default) ) (uuid "1fb15e66-9516-4358-ac76-9169cfbde1b7") ) (wire (pts (xy 49.53 47.625) (xy 90.17 47.625) ) (stroke (width 0) (type default) ) (uuid "204945e5-45bc-4c06-9d4f-6fee81ca643a") ) (wire (pts (xy 44.45 42.545) (xy 44.45 27.94) ) (stroke (width 0) (type default) ) (uuid "2214e770-d225-4199-a4f1-98dba265a05a") ) (wire (pts (xy 52.07 80.01) (xy 52.07 96.52) ) (stroke (width 0) (type default) ) (uuid "2e672cae-f7de-4504-bbda-a4067f109d9c") ) (wire (pts (xy 52.07 50.165) (xy 90.17 50.165) ) (stroke (width 0) (type default) ) (uuid "31b2933c-9b44-4cff-b59e-8e2ee941b673") ) (wire (pts (xy 44.45 88.9) (xy 44.45 72.39) ) (stroke (width 0) (type default) ) (uuid "34357ca6-cd4e-425b-88b3-a974b88ef4be") ) (wire (pts (xy 44.45 27.94) (xy 71.12 27.94) ) (stroke (width 0) (type default) ) (uuid "3f0069bf-6fed-4320-ae5e-5a12fce6c355") ) (wire (pts (xy 52.07 22.86) (xy 52.07 35.56) ) (stroke (width 0) (type default) ) (uuid "4557799d-7ffa-4d9e-b6fe-a1b905b76f92") ) (wire (pts (xy 46.99 45.085) (xy 90.17 45.085) ) (stroke (width 0) (type default) ) (uuid "4ec92ff4-a9f4-4cb3-a6cc-960559961d52") ) (wire (pts (xy 46.99 74.93) (xy 71.12 74.93) ) (stroke (width 0) (type default) ) (uuid "51dbf3ea-d682-4256-a39e-29c041134cc8") ) (wire (pts (xy 44.45 72.39) (xy 44.45 59.69) ) (stroke (width 0) (type default) ) (uuid "59e88b44-f472-4968-ae29-738bc9ce685c") ) (wire (pts (xy 44.45 88.9) (xy 90.17 88.9) ) (stroke (width 0) (type default) ) (uuid "5ab67fc4-abf0-42da-b8bc-8690f85652d9") ) (wire (pts (xy 52.07 80.01) (xy 71.12 80.01) ) (stroke (width 0) (type default) ) (uuid "5cb5725f-697a-4d2f-ac0c-effa0adf6fd2") ) (wire (pts (xy 25.4 88.9) (xy 44.45 88.9) ) (stroke (width 0) (type default) ) (uuid "5d7a1f11-7c1c-4b66-a1c6-0132a4fdd681") ) (wire (pts (xy 46.99 30.48) (xy 71.12 30.48) ) (stroke (width 0) (type default) ) (uuid "69ba18ec-8446-4383-b12d-e36c745af724") ) (wire (pts (xy 71.12 22.86) (xy 52.07 22.86) ) (stroke (width 0) (type default) ) (uuid "6e95363f-8005-4727-a702-d8821420c0c7") ) (wire (pts (xy 71.12 67.31) (xy 52.07 67.31) ) (stroke (width 0) (type default) ) (uuid "7336d21b-bde6-495e-8a8c-2aa96757d9a7") ) (wire (pts (xy 71.12 64.77) (xy 49.53 64.77) ) (stroke (width 0) (type default) ) (uuid "748630f8-1acd-41c7-9dad-ee295c265642") ) (wire (pts (xy 49.53 77.47) (xy 71.12 77.47) ) (stroke (width 0) (type default) ) (uuid "7510ca23-94ce-4bd0-9126-934320fde38d") ) (wire (pts (xy 49.53 77.47) (xy 49.53 93.98) ) (stroke (width 0) (type default) ) (uuid "75ece6f3-cd9a-49b2-9434-88065a99ac47") ) (wire (pts (xy 25.4 50.165) (xy 52.07 50.165) ) (stroke (width 0) (type default) ) (uuid "7acac553-c5a7-4684-b536-05bba65d1f3d") ) (wire (pts (xy 44.45 15.24) (xy 71.12 15.24) ) (stroke (width 0) (type default) ) (uuid "7d0d86a7-421e-4495-b47b-f22588feb2f3") ) (wire (pts (xy 88.9 76.2) (xy 90.17 76.2) ) (stroke (width 0) (type default) ) (uuid "7dc64e90-97c7-43c9-a44b-5e047596e2b8") ) (wire (pts (xy 44.45 59.69) (xy 71.12 59.69) ) (stroke (width 0) (type default) ) (uuid "81a32e4a-f454-4409-84ff-a074b2cdd3b1") ) (wire (pts (xy 25.4 91.44) (xy 46.99 91.44) ) (stroke (width 0) (type default) ) (uuid "82d66267-27fa-4ac1-b8a9-038a2de3b5e9") ) (wire (pts (xy 44.45 27.94) (xy 44.45 15.24) ) (stroke (width 0) (type default) ) (uuid "88280e51-5cc2-4a2a-b9f8-6d592f4c7400") ) (wire (pts (xy 52.07 35.56) (xy 52.07 50.165) ) (stroke (width 0) (type default) ) (uuid "978755c3-1cc6-4781-bc0c-d54d42e300b8") ) (wire (pts (xy 46.99 17.78) (xy 71.12 17.78) ) (stroke (width 0) (type default) ) (uuid "9830ad51-2c19-4035-97fa-ee3272f031f2") ) (wire (pts (xy 71.12 20.32) (xy 49.53 20.32) ) (stroke (width 0) (type default) ) (uuid "9f8bcff0-2594-450d-9e67-f90259b2962c") ) (wire (pts (xy 49.53 20.32) (xy 49.53 33.02) ) (stroke (width 0) (type default) ) (uuid "a6c38534-6f7b-4699-ae21-c18090a0abbd") ) (wire (pts (xy 25.4 93.98) (xy 49.53 93.98) ) (stroke (width 0) (type default) ) (uuid "ad60588a-3185-4361-89e4-73b685924bcb") ) (wire (pts (xy 46.99 30.48) (xy 46.99 45.085) ) (stroke (width 0) (type default) ) (uuid "b262e356-04a4-4d34-bdc9-f9aa9db99643") ) (wire (pts (xy 25.4 47.625) (xy 49.53 47.625) ) (stroke (width 0) (type default) ) (uuid "b3416ab7-009c-4dde-8080-7bd7fe805e43") ) (wire (pts (xy 71.12 62.23) (xy 46.99 62.23) ) (stroke (width 0) (type default) ) (uuid "b3c4982b-ab0b-4a2a-991c-0057b3983220") ) (wire (pts (xy 44.45 72.39) (xy 71.12 72.39) ) (stroke (width 0) (type default) ) (uuid "b5ce1f94-6c0e-467d-aa43-7bb391854b6b") ) (wire (pts (xy 88.9 19.05) (xy 90.17 19.05) ) (stroke (width 0) (type default) ) (uuid "b69336cf-7c9e-4dae-a2c5-12d9a200c312") ) (wire (pts (xy 52.07 67.31) (xy 52.07 80.01) ) (stroke (width 0) (type default) ) (uuid "b8ab51c8-79d5-419e-b686-55d993725e55") ) (wire (pts (xy 44.45 42.545) (xy 90.17 42.545) ) (stroke (width 0) (type default) ) (uuid "ccd277e2-0a26-4cb2-bcdc-2ca738eb6d56") ) (wire (pts (xy 71.12 33.02) (xy 49.53 33.02) ) (stroke (width 0) (type default) ) (uuid "d1d284f7-fa9c-4536-8b45-89169984f119") ) (wire (pts (xy 88.9 31.75) (xy 90.17 31.75) ) (stroke (width 0) (type default) ) (uuid "d416ab5c-dfbd-4fdb-a1e1-6d1bdbfcbfd5") ) (wire (pts (xy 46.99 74.93) (xy 46.99 91.44) ) (stroke (width 0) (type default) ) (uuid "df3de549-f80d-48f9-b7ae-b818aced6810") ) (wire (pts (xy 71.12 35.56) (xy 52.07 35.56) ) (stroke (width 0) (type default) ) (uuid "e363ee6a-e1a3-4d09-821a-178ace24f5e0") ) (wire (pts (xy 46.99 30.48) (xy 46.99 17.78) ) (stroke (width 0) (type default) ) (uuid "e428a0f5-feb7-4c08-a77b-806b4af81ba3") ) (wire (pts (xy 25.4 96.52) (xy 52.07 96.52) ) (stroke (width 0) (type default) ) (uuid "e8a3e1a3-32da-4b1d-ab7f-df3bee4b8b58") ) (wire (pts (xy 49.53 64.77) (xy 49.53 77.47) ) (stroke (width 0) (type default) ) (uuid "f23be391-85fb-4411-8b86-4c3a90243f42") ) (wire (pts (xy 49.53 33.02) (xy 49.53 47.625) ) (stroke (width 0) (type default) ) (uuid "f6f38626-8ad0-43bf-ba9b-273c9603e9b5") ) (hierarchical_label "SB.P07.D0" (shape output) (at 90.17 47.625 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "01c64819-d1ba-47fd-b051-4d356b072224") ) (hierarchical_label "CPE21.OUT1" (shape input) (at 25.4 47.625 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0738e2cb-7596-42e5-9a0b-1ede76f398ca") ) (hierarchical_label "CPE22.OUT2" (shape input) (at 25.4 96.52 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0e419f17-1748-4147-9b6f-bd9bf2600208") ) (hierarchical_label "SB.P12.D0" (shape output) (at 90.17 63.5 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "1629dbf4-3b50-4243-bf78-3989f8f6c4f8") ) (hierarchical_label "SB.P06.D0" (shape output) (at 90.17 45.085 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "173a30da-c0f6-4f28-a44b-225b28b7033a") ) (hierarchical_label "CPE22.OUT1" (shape input) (at 25.4 50.165 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "3ee2fb78-93cc-41a9-bff3-83c797105092") ) (hierarchical_label "SB.P05.D0" (shape output) (at 90.17 88.9 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "44a08b5a-42ca-41f8-8f13-d224f3efe3fd") ) (hierarchical_label "CPE12.OUT1" (shape input) (at 25.4 91.44 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "44dab781-f2c8-4c26-aa82-ec6b16fec528") ) (hierarchical_label "SB.P09.D0" (shape output) (at 90.17 31.75 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "484bd283-94d0-46a5-98b1-bcee4d8fe8b1") ) (hierarchical_label "CPE21.OUT2" (shape input) (at 25.4 93.98 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4a968eae-9c01-4c8f-bf29-8d1582f3e929") ) (hierarchical_label "SB.P03.D0" (shape output) (at 90.17 93.98 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "4e461735-1c05-4c65-86da-f88aacf7c751") ) (hierarchical_label "CPE11.OUT2" (shape input) (at 25.4 42.545 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "773a0fa0-0210-440e-bd5e-f77fa9dd5d60") ) (hierarchical_label "SB.P02.D0" (shape output) (at 90.17 91.44 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "7aaee6c2-2a69-4b31-948b-042ddfdac6d6") ) (hierarchical_label "CPE12.OUT2" (shape input) (at 25.4 45.085 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "95398980-943f-4536-890f-d82bb38a4edb") ) (hierarchical_label "SB.P11.D0" (shape output) (at 90.17 19.05 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "a00a3c0b-5a96-4d2c-ad83-af70f5784b66") ) (hierarchical_label "SB.P08.D0" (shape output) (at 90.17 96.52 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ac8d5e27-41d5-4401-bdac-1af50b081f2a") ) (hierarchical_label "SB.P10.D0" (shape output) (at 90.17 76.2 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "c87cb2c2-ded7-4ec0-bf5b-abfaaba7ff7f") ) (hierarchical_label "SB.P04.D0" (shape output) (at 90.17 50.165 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d0b87740-9a0f-4828-b088-27501f4070ea") ) (hierarchical_label "SB.P01.D0" (shape output) (at 90.17 42.545 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "dcc31e81-5572-4c5b-a6f4-3b5c459ea4b0") ) (hierarchical_label "CPE11.OUT1" (shape input) (at 25.4 88.9 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "fd53bd8f-ac06-4600-bc8d-b8834de4c30c") ) (symbol (lib_name "NOT_1") (lib_id "prjpeppercorn:NOT") (at 85.09 76.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "40ae6b82-a783-4d78-a5cd-65d65b1c54c2") (property "Reference" "U12" (at 85.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 85.09 73.66 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "0a225d54-b368-4af6-842b-6fafd846695e") ) (pin "" (uuid "3a02070f-65bd-4857-b9df-ae09127454a7") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e" (reference "U2112") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7f0a652f-db38-48df-b50d-37a3c6c9c68e" (reference "U2120") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a1bd1bf1-363d-423a-8846-17236a10f502" (reference "U2128") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/beb8f9ac-f817-4571-9190-d477fd827e5c" (reference "U12") (unit 1) ) ) ) ) (symbol (lib_name "NOT_3") (lib_id "prjpeppercorn:NOT") (at 85.09 31.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "4fd98406-8c21-42dd-8ab7-dfc67047ab37") (property "Reference" "U14" (at 85.09 26.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 85.09 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "ff9faa2f-f29c-4495-bcb4-a353eb18efa5") ) (pin "" (uuid "572a2e48-bf0d-4299-8d5b-efe30eebd35b") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e" (reference "U2110") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7f0a652f-db38-48df-b50d-37a3c6c9c68e" (reference "U2118") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a1bd1bf1-363d-423a-8846-17236a10f502" (reference "U2126") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/beb8f9ac-f817-4571-9190-d477fd827e5c" (reference "U14") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 76.2 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5cecdf97-b070-4198-8e65-e199f5b0ffee") (property "Reference" "M11" (at 76.2 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 57.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "ea6de1ed-14ff-4f42-b2f8-e92fc47af1d8") ) (pin "D1" (uuid "17d38158-e329-4efd-a52c-54c5fe1e1d57") ) (pin "D0" (uuid "9239ac39-af38-473c-a708-5698f7fac383") ) (pin "D3" (uuid "f3f8ff5e-02c7-45bf-b7c0-e7cc9e79fbf5") ) (pin "Y" (uuid "1f1e26dd-e063-41e1-8602-702fbf875ff4") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e" (reference "M816") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7f0a652f-db38-48df-b50d-37a3c6c9c68e" (reference "M824") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a1bd1bf1-363d-423a-8846-17236a10f502" (reference "M832") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/beb8f9ac-f817-4571-9190-d477fd827e5c" (reference "M11") (unit 1) ) ) ) ) (symbol (lib_name "NOT_2") (lib_id "prjpeppercorn:NOT") (at 85.09 19.05 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "68e2a374-9401-4a74-b391-74cc405a980a") (property "Reference" "U13" (at 85.09 13.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 85.09 16.51 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "1665a911-1923-420f-ab34-7135dbee7168") ) (pin "" (uuid "9fb531f2-c111-472a-8e89-7de5e6a253c4") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e" (reference "U2109") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7f0a652f-db38-48df-b50d-37a3c6c9c68e" (reference "U2117") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a1bd1bf1-363d-423a-8846-17236a10f502" (reference "U2125") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/beb8f9ac-f817-4571-9190-d477fd827e5c" (reference "U13") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 76.2 31.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "82776097-bab6-4245-9a9f-bbb1b8167173") (property "Reference" "M14" (at 76.2 22.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 25.4 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "ff7b7ebd-00a1-4f57-98e0-556d69ffd32d") ) (pin "D1" (uuid "840180ab-7bdf-4af8-b013-6d81f710c351") ) (pin "D0" (uuid "d5cd3808-3267-46ab-bc8a-3b9e933972e0") ) (pin "D3" (uuid "26eb735d-508e-45c2-be81-a6c94c2ddc68") ) (pin "Y" (uuid "7fa98e26-e40f-466b-8265-ef1ce08b233c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e" (reference "M815") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7f0a652f-db38-48df-b50d-37a3c6c9c68e" (reference "M823") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a1bd1bf1-363d-423a-8846-17236a10f502" (reference "M831") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/beb8f9ac-f817-4571-9190-d477fd827e5c" (reference "M14") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:NOT") (at 85.09 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "87da2369-88ab-42f6-90e0-285ac66ecf6f") (property "Reference" "U11" (at 85.09 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 85.09 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "e94befd1-2f9f-4836-98b6-f606a3683c2d") ) (pin "" (uuid "eb64fd90-b696-48ec-9473-792c419111f8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e" (reference "U2111") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7f0a652f-db38-48df-b50d-37a3c6c9c68e" (reference "U2119") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a1bd1bf1-363d-423a-8846-17236a10f502" (reference "U2127") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/beb8f9ac-f817-4571-9190-d477fd827e5c" (reference "U11") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 76.2 76.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "8a8310b9-c978-444e-a169-522cf184efd7") (property "Reference" "M12" (at 76.2 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "5acf3126-7240-4f7d-8ba1-ab5f4cc6a25a") ) (pin "D1" (uuid "d3b1e3be-c5fc-40c9-ad4a-41a181c21c2f") ) (pin "D0" (uuid "4c73b27a-ab12-4038-a979-40f420e4bd3a") ) (pin "D3" (uuid "025fecb2-ba42-44a4-8658-6e9224f19d93") ) (pin "Y" (uuid "760266e8-b5b8-4bee-a7a7-3ff0740a9c94") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e" (reference "M817") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7f0a652f-db38-48df-b50d-37a3c6c9c68e" (reference "M825") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a1bd1bf1-363d-423a-8846-17236a10f502" (reference "M833") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/beb8f9ac-f817-4571-9190-d477fd827e5c" (reference "M12") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 76.2 19.05 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "e1ee18f8-a626-46f8-ba04-ab024929109a") (property "Reference" "M13" (at 76.2 10.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 12.7 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "03fa3d8e-586d-4a9a-a236-ac1ec7e1a428") ) (pin "D1" (uuid "34876241-1721-4136-8378-2e284b0df7ef") ) (pin "D0" (uuid "4eabbe8b-0904-4dec-aecc-552c2acb5add") ) (pin "D3" (uuid "2e655637-d109-48c4-bcc7-53c876fe20f4") ) (pin "Y" (uuid "d17db9b9-6833-4827-a88c-f91865525e00") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e" (reference "M814") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7f0a652f-db38-48df-b50d-37a3c6c9c68e" (reference "M822") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/a1bd1bf1-363d-423a-8846-17236a10f502" (reference "M830") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/beb8f9ac-f817-4571-9190-d477fd827e5c" (reference "M13") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/om22.kicad_sch000066400000000000000000001106621514752025000216400ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "4e1625c5-cb0b-4f40-8426-42775e024b66") (paper "A4") (title_block (title "Output Multiplexer (2, 2)") (date "2025-10-31") (rev "1") (company "YosysHQ") ) (lib_symbols (symbol "NOT_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_1_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_2_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_2_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_3_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_3_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:MUX4B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4B_0_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX4B_1_1" (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:NOT" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (rectangle (start 12.065 41.275) (end 26.035 97.79) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 712f163b-67d4-4aa7-8977-e17da9c8cf56) ) (text "Note that\nthese are\nswapped\ncompared\nto (1,1)" (exclude_from_sim no) (at 19.05 69.85 0) (effects (font (size 1.27 1.27) ) ) (uuid "3d7b3738-a2a8-49b6-9ead-ca860524e0a1") ) (junction (at 44.45 27.94) (diameter 0) (color 0 0 0 0) (uuid "217c4f31-9ed6-4d2a-a3ef-55e8c9ca84dd") ) (junction (at 44.45 72.39) (diameter 0) (color 0 0 0 0) (uuid "22e2bc09-7df4-42cd-933f-24bfd9ded67b") ) (junction (at 46.99 45.085) (diameter 0) (color 0 0 0 0) (uuid "267cc6ca-c4cf-4ab1-a3e4-767b390516bd") ) (junction (at 52.07 50.165) (diameter 0) (color 0 0 0 0) (uuid "4def519e-54a7-4f91-85af-a17bf1f0249f") ) (junction (at 46.99 91.44) (diameter 0) (color 0 0 0 0) (uuid "5232f501-f629-451c-b7d2-fc88a59ec341") ) (junction (at 49.53 77.47) (diameter 0) (color 0 0 0 0) (uuid "5c461087-fa9a-44aa-bb82-a5afa0771acb") ) (junction (at 52.07 96.52) (diameter 0) (color 0 0 0 0) (uuid "61ea0627-051c-426d-a617-74d43de96b7a") ) (junction (at 52.07 80.01) (diameter 0) (color 0 0 0 0) (uuid "65c9301b-a21e-4c13-be65-b49bce343062") ) (junction (at 49.53 47.625) (diameter 0) (color 0 0 0 0) (uuid "6a80216a-23aa-4740-84ac-052500690e1e") ) (junction (at 49.53 33.02) (diameter 0) (color 0 0 0 0) (uuid "7f2acc93-a98f-44ea-b11a-85088a1add0f") ) (junction (at 44.45 88.9) (diameter 0) (color 0 0 0 0) (uuid "862b138e-4936-42a0-9c16-9e3ea572af95") ) (junction (at 49.53 93.98) (diameter 0) (color 0 0 0 0) (uuid "c5fcfe85-8f94-4b4d-8aaf-7c6f668e3d00") ) (junction (at 44.45 42.545) (diameter 0) (color 0 0 0 0) (uuid "d7769036-99d6-41da-803d-7380a833edfe") ) (junction (at 46.99 74.93) (diameter 0) (color 0 0 0 0) (uuid "df2ba79e-23fb-4702-96fa-4edd4f2da841") ) (junction (at 46.99 30.48) (diameter 0) (color 0 0 0 0) (uuid "e02c558d-f4e2-43b2-88b5-6c3dee71f870") ) (junction (at 52.07 35.56) (diameter 0) (color 0 0 0 0) (uuid "f9a6d7bd-020c-4608-a4be-3c808b5d6adc") ) (wire (pts (xy 52.07 22.86) (xy 52.07 35.56) ) (stroke (width 0) (type default) ) (uuid "0dbe079b-ad39-49bf-9698-096bfbddcbee") ) (wire (pts (xy 71.12 20.32) (xy 49.53 20.32) ) (stroke (width 0) (type default) ) (uuid "118b38c1-90d5-4d67-a641-9d7a2a3158c7") ) (wire (pts (xy 71.12 67.31) (xy 52.07 67.31) ) (stroke (width 0) (type default) ) (uuid "1c827dea-a3e0-4a80-bdaa-f82bbf7c675f") ) (wire (pts (xy 44.45 27.94) (xy 71.12 27.94) ) (stroke (width 0) (type default) ) (uuid "217c63d0-6dd4-40a3-a662-bfc74f9e27eb") ) (wire (pts (xy 49.53 77.47) (xy 49.53 93.98) ) (stroke (width 0) (type default) ) (uuid "233b7732-b367-40fb-86c7-920305f3f509") ) (wire (pts (xy 46.99 91.44) (xy 90.17 91.44) ) (stroke (width 0) (type default) ) (uuid "2620f0e6-dae4-4315-91a4-608bfe4423ee") ) (wire (pts (xy 25.4 91.44) (xy 46.99 91.44) ) (stroke (width 0) (type default) ) (uuid "27fd4190-bc6b-4a21-8f52-7878335103d3") ) (wire (pts (xy 25.4 47.625) (xy 49.53 47.625) ) (stroke (width 0) (type default) ) (uuid "29fab24e-4c15-4d35-8ffd-aced5bfebecb") ) (wire (pts (xy 71.12 64.77) (xy 49.53 64.77) ) (stroke (width 0) (type default) ) (uuid "2e5da783-dcce-4d68-892a-63a21991b7ba") ) (wire (pts (xy 25.4 96.52) (xy 52.07 96.52) ) (stroke (width 0) (type default) ) (uuid "3a810f88-712d-498a-8371-ade536b2680b") ) (wire (pts (xy 49.53 47.625) (xy 90.17 47.625) ) (stroke (width 0) (type default) ) (uuid "3b80bf27-2bb4-4e49-9619-30ef0bcd500d") ) (wire (pts (xy 44.45 42.545) (xy 90.17 42.545) ) (stroke (width 0) (type default) ) (uuid "3cc9ec07-6fbd-457f-80da-1dc16a2bd1a0") ) (wire (pts (xy 52.07 67.31) (xy 52.07 80.01) ) (stroke (width 0) (type default) ) (uuid "4f5b702e-0e0b-48b1-a93c-eebc5a9a84fd") ) (wire (pts (xy 52.07 80.01) (xy 52.07 96.52) ) (stroke (width 0) (type default) ) (uuid "5037643b-47b4-4cf5-8482-ae9e6c79c29c") ) (wire (pts (xy 88.9 19.05) (xy 90.17 19.05) ) (stroke (width 0) (type default) ) (uuid "62217e90-35ec-45e3-acad-fe071e095243") ) (wire (pts (xy 25.4 93.98) (xy 49.53 93.98) ) (stroke (width 0) (type default) ) (uuid "64043740-6659-4e6b-b25c-eb32eab6978d") ) (wire (pts (xy 25.4 45.085) (xy 46.99 45.085) ) (stroke (width 0) (type default) ) (uuid "64616391-1ca4-4950-956b-2b1b3fa49610") ) (wire (pts (xy 44.45 88.9) (xy 90.17 88.9) ) (stroke (width 0) (type default) ) (uuid "6c623767-7b6b-4d47-bd6c-710b348c301d") ) (wire (pts (xy 49.53 20.32) (xy 49.53 33.02) ) (stroke (width 0) (type default) ) (uuid "6d83eb3a-8b4f-4779-8a05-71567de046ff") ) (wire (pts (xy 52.07 80.01) (xy 71.12 80.01) ) (stroke (width 0) (type default) ) (uuid "6ea6d33a-7bc6-4f8e-bf20-072bee39b651") ) (wire (pts (xy 44.45 42.545) (xy 44.45 27.94) ) (stroke (width 0) (type default) ) (uuid "75573d7d-0eec-4e26-bcad-239a495c50cf") ) (wire (pts (xy 44.45 15.24) (xy 71.12 15.24) ) (stroke (width 0) (type default) ) (uuid "81ea1d4a-9e4c-4a37-bcf7-e79945b53524") ) (wire (pts (xy 88.9 31.75) (xy 90.17 31.75) ) (stroke (width 0) (type default) ) (uuid "8b28c57e-7ea6-4cfa-a100-1cc6008f368f") ) (wire (pts (xy 46.99 74.93) (xy 71.12 74.93) ) (stroke (width 0) (type default) ) (uuid "8df11f57-e893-436b-bc0f-8bb683761841") ) (wire (pts (xy 44.45 88.9) (xy 44.45 72.39) ) (stroke (width 0) (type default) ) (uuid "8e4294b4-dd1c-4e6f-913a-9548bf0975d8") ) (wire (pts (xy 25.4 88.9) (xy 44.45 88.9) ) (stroke (width 0) (type default) ) (uuid "927b3a86-63f3-47d9-a644-053ff491448a") ) (wire (pts (xy 49.53 77.47) (xy 71.12 77.47) ) (stroke (width 0) (type default) ) (uuid "947c66a8-b015-4f0c-ace8-79fd7879ae45") ) (wire (pts (xy 46.99 17.78) (xy 71.12 17.78) ) (stroke (width 0) (type default) ) (uuid "94ed2dd2-f50b-4945-94b8-d0c59a4805f3") ) (wire (pts (xy 52.07 96.52) (xy 90.17 96.52) ) (stroke (width 0) (type default) ) (uuid "a0237422-e26a-4da1-b004-0feb34b85948") ) (wire (pts (xy 46.99 30.48) (xy 46.99 45.085) ) (stroke (width 0) (type default) ) (uuid "a6d8b8a5-e206-46af-a053-dda1df997d31") ) (wire (pts (xy 44.45 27.94) (xy 44.45 15.24) ) (stroke (width 0) (type default) ) (uuid "a7e2cc15-7d62-41db-9183-0c308ce9a61a") ) (wire (pts (xy 71.12 62.23) (xy 46.99 62.23) ) (stroke (width 0) (type default) ) (uuid "aad67920-9a19-495e-a458-1535fd1decb1") ) (wire (pts (xy 49.53 64.77) (xy 49.53 77.47) ) (stroke (width 0) (type default) ) (uuid "ad17121c-62c3-45c6-8085-fca0e496c051") ) (wire (pts (xy 46.99 45.085) (xy 90.17 45.085) ) (stroke (width 0) (type default) ) (uuid "b0796ed5-66b0-4c43-8957-69c67302e5f7") ) (wire (pts (xy 52.07 35.56) (xy 52.07 50.165) ) (stroke (width 0) (type default) ) (uuid "b2f91ba5-917b-4be2-b669-2eebf82403b2") ) (wire (pts (xy 25.4 42.545) (xy 44.45 42.545) ) (stroke (width 0) (type default) ) (uuid "b3db53d6-35bb-4b1e-8a46-fe20fdaf6cfa") ) (wire (pts (xy 46.99 74.93) (xy 46.99 91.44) ) (stroke (width 0) (type default) ) (uuid "b6640693-8e45-434a-8465-fdaefd385c09") ) (wire (pts (xy 44.45 59.69) (xy 71.12 59.69) ) (stroke (width 0) (type default) ) (uuid "bca2d0e8-6ce9-4d75-b349-66b1f915fca7") ) (wire (pts (xy 71.12 35.56) (xy 52.07 35.56) ) (stroke (width 0) (type default) ) (uuid "bcbd8fd0-0244-4a1e-854e-2002fc28b5db") ) (wire (pts (xy 88.9 63.5) (xy 90.17 63.5) ) (stroke (width 0) (type default) ) (uuid "be229551-672b-4bb9-b43d-059a4a1db041") ) (wire (pts (xy 44.45 72.39) (xy 71.12 72.39) ) (stroke (width 0) (type default) ) (uuid "be669c5c-2b25-4964-9bb8-26fee28f70e9") ) (wire (pts (xy 46.99 30.48) (xy 71.12 30.48) ) (stroke (width 0) (type default) ) (uuid "bf7a9bc3-0937-4f9d-a82d-aa23f7799a88") ) (wire (pts (xy 71.12 33.02) (xy 49.53 33.02) ) (stroke (width 0) (type default) ) (uuid "c9082475-131b-4c5c-8e3f-3bc7e1252ecf") ) (wire (pts (xy 46.99 62.23) (xy 46.99 74.93) ) (stroke (width 0) (type default) ) (uuid "cd0c5563-fa88-4e63-9029-4ec0271961d2") ) (wire (pts (xy 49.53 33.02) (xy 49.53 47.625) ) (stroke (width 0) (type default) ) (uuid "ceee9a1f-c2e4-4413-9bfb-7d3031297ae3") ) (wire (pts (xy 71.12 22.86) (xy 52.07 22.86) ) (stroke (width 0) (type default) ) (uuid "d8da37b9-6e5a-497b-8fb0-38351a2c5ed8") ) (wire (pts (xy 49.53 93.98) (xy 90.17 93.98) ) (stroke (width 0) (type default) ) (uuid "e1b2d6bb-5fe6-4951-a704-934a93ba6ded") ) (wire (pts (xy 52.07 50.165) (xy 90.17 50.165) ) (stroke (width 0) (type default) ) (uuid "e1efaf15-1e18-4b40-af76-b9d2068a05f6") ) (wire (pts (xy 25.4 50.165) (xy 52.07 50.165) ) (stroke (width 0) (type default) ) (uuid "ef394ff2-c6ee-4a5b-a121-d998d23f1b9d") ) (wire (pts (xy 88.9 76.2) (xy 90.17 76.2) ) (stroke (width 0) (type default) ) (uuid "f3a2df5c-56e0-4bca-a325-5684239c4975") ) (wire (pts (xy 44.45 72.39) (xy 44.45 59.69) ) (stroke (width 0) (type default) ) (uuid "f757ae71-7914-413a-9b41-bb18f1e38831") ) (wire (pts (xy 46.99 30.48) (xy 46.99 17.78) ) (stroke (width 0) (type default) ) (uuid "fd0cd813-839a-4333-909d-bdb906b34a00") ) (hierarchical_label "SB.P07.D0" (shape output) (at 90.17 47.625 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "0b9b7d76-3731-4f24-a2df-0b87a6b6f879") ) (hierarchical_label "CPE11.OUT1" (shape input) (at 25.4 42.545 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0e675a5d-5385-4ee7-9ccd-422c7289f64b") ) (hierarchical_label "SB.P11.D0" (shape output) (at 90.17 19.05 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "148757be-ccd4-41bd-aa4f-9fd5d2e022e1") ) (hierarchical_label "SB.P12.D0" (shape output) (at 90.17 63.5 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "1e2abf86-5bfc-4b2f-97e6-8967180b5055") ) (hierarchical_label "SB.P02.D0" (shape output) (at 90.17 91.44 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "404f9bc9-699e-4706-9005-4c6d6209e399") ) (hierarchical_label "CPE21.OUT2" (shape input) (at 25.4 47.625 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "43450afb-5510-4819-aa58-743d4d165b57") ) (hierarchical_label "SB.P03.D0" (shape output) (at 90.17 93.98 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "634a267c-027e-495f-a40a-944e4733eba0") ) (hierarchical_label "CPE22.OUT2" (shape input) (at 25.4 50.165 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6b43cbfa-535d-471e-9843-eb645e769a94") ) (hierarchical_label "SB.P10.D0" (shape output) (at 90.17 76.2 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "6b7e4305-6abd-4405-8ef9-3a6ecf83762d") ) (hierarchical_label "CPE12.OUT2" (shape input) (at 25.4 91.44 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6c7abffa-9328-4259-97ff-145128e118f6") ) (hierarchical_label "SB.P04.D0" (shape output) (at 90.17 50.165 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "76555b26-a187-4082-bd85-ce36ca3ff7e1") ) (hierarchical_label "CPE11.OUT2" (shape input) (at 25.4 88.9 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "95278637-8dc3-41c4-96d5-1a540d22dfbc") ) (hierarchical_label "CPE12.OUT1" (shape input) (at 25.4 45.085 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "97ff87af-72cb-48db-b1bc-5928880d02d1") ) (hierarchical_label "SB.P05.D0" (shape output) (at 90.17 88.9 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "b350be91-e61d-44dc-b850-2791195a8e13") ) (hierarchical_label "CPE22.OUT1" (shape input) (at 25.4 96.52 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "b564f05b-9196-4a42-bd1c-5d8756aa7cfc") ) (hierarchical_label "SB.P08.D0" (shape output) (at 90.17 96.52 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "c2a69e6c-698b-4aec-948a-e152abee3797") ) (hierarchical_label "SB.P06.D0" (shape output) (at 90.17 45.085 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "d989b949-c3df-48e2-a031-7a4152d4188c") ) (hierarchical_label "SB.P09.D0" (shape output) (at 90.17 31.75 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "e6f7bd67-1edd-41d4-bb28-cc47c33618af") ) (hierarchical_label "CPE21.OUT1" (shape input) (at 25.4 93.98 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e94b63b1-cd3e-4c4f-be10-a120a3a7e4c4") ) (hierarchical_label "SB.P01.D0" (shape output) (at 90.17 42.545 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "fe3bf976-44a0-4cb4-b274-3ea541a7feb5") ) (symbol (lib_id "prjpeppercorn:NOT") (at 85.09 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0d04b710-5df3-4ee8-af23-70458fe13d72") (property "Reference" "U2107" (at 85.09 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 85.09 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "9d9a21ec-af6f-4b58-958a-7241b53db5ed") ) (pin "" (uuid "f05dd21e-d7e2-4223-b01b-e5ae4b110f6f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34307b1c-bb59-4948-a0b5-690c6f35f493" (reference "U2123") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3fc18cdd-76bf-4b52-9ef6-a64543f67288" (reference "U2131") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10" (reference "U2115") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4ee8840f-c034-4c64-a613-6418dbdce00d" (reference "U2107") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 76.2 31.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "5222b365-e0aa-4a5f-a355-037a97d86bba") (property "Reference" "M811" (at 76.2 22.86 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 25.4 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "a3a60f27-6aad-4ff5-a29e-986e910e2c8b") ) (pin "D1" (uuid "b09d89ec-f9b7-4731-9396-6efe24de6bcc") ) (pin "D0" (uuid "b0e1a1f3-36fb-42dc-b02a-db963d9ffc2d") ) (pin "D3" (uuid "ae070190-7810-4cf0-915e-37d8dc13818a") ) (pin "Y" (uuid "41d3a222-e271-418d-b299-1b2036d10dcb") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34307b1c-bb59-4948-a0b5-690c6f35f493" (reference "M827") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3fc18cdd-76bf-4b52-9ef6-a64543f67288" (reference "M835") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10" (reference "M819") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4ee8840f-c034-4c64-a613-6418dbdce00d" (reference "M811") (unit 1) ) ) ) ) (symbol (lib_name "NOT_2") (lib_id "prjpeppercorn:NOT") (at 85.09 19.05 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "67eceeba-efc6-4901-bf14-e162f4fa5fbb") (property "Reference" "U2105" (at 85.09 13.97 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 85.09 16.51 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "2d6f9503-15d5-438f-835e-197e411d4d39") ) (pin "" (uuid "10c4e4ff-c274-427c-8e4d-97f104dd94a6") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34307b1c-bb59-4948-a0b5-690c6f35f493" (reference "U2121") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3fc18cdd-76bf-4b52-9ef6-a64543f67288" (reference "U2129") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10" (reference "U2113") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4ee8840f-c034-4c64-a613-6418dbdce00d" (reference "U2105") (unit 1) ) ) ) ) (symbol (lib_name "NOT_3") (lib_id "prjpeppercorn:NOT") (at 85.09 31.75 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "88a7544b-ed84-45a1-acf3-80d1a1462cee") (property "Reference" "U2106" (at 85.09 26.67 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 85.09 29.21 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 31.75 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "19a4cd35-1007-48e0-8b41-ff5159e7430b") ) (pin "" (uuid "8a759aba-2f29-4efc-8770-409eb2c6cf61") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34307b1c-bb59-4948-a0b5-690c6f35f493" (reference "U2122") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3fc18cdd-76bf-4b52-9ef6-a64543f67288" (reference "U2130") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10" (reference "U2114") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4ee8840f-c034-4c64-a613-6418dbdce00d" (reference "U2106") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 76.2 76.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "bf6c8f6a-481d-4c04-8402-794cf87a0695") (property "Reference" "M813" (at 76.2 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "02385817-18dc-43ca-8305-edf5d1543c8d") ) (pin "D1" (uuid "9b728955-b04a-4d88-93a4-cb966f64f1c4") ) (pin "D0" (uuid "d5e5a08e-dd89-4c81-af92-1c26a5a8dced") ) (pin "D3" (uuid "a15f80bd-1763-4c3f-b5b2-3f676e4c7985") ) (pin "Y" (uuid "40e7b5ca-722d-4f6f-80ae-4d08033189c1") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34307b1c-bb59-4948-a0b5-690c6f35f493" (reference "M829") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3fc18cdd-76bf-4b52-9ef6-a64543f67288" (reference "M837") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10" (reference "M821") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4ee8840f-c034-4c64-a613-6418dbdce00d" (reference "M813") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 76.2 63.5 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "c2596530-91fd-4f8e-be93-c78be547e2e4") (property "Reference" "M812" (at 76.2 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 57.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 63.5 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "96254334-21e4-40e5-ad7f-8b6435a57461") ) (pin "D1" (uuid "b4395eb0-10b5-467b-9e7d-d33f772e5eb0") ) (pin "D0" (uuid "33cf5a45-0b2b-4e32-bcee-81ee4a0de55a") ) (pin "D3" (uuid "eb0a8b46-593e-42d5-a76d-56577e76a552") ) (pin "Y" (uuid "bbdc1e0f-04ae-468a-a1d0-d8fb63d01c9f") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34307b1c-bb59-4948-a0b5-690c6f35f493" (reference "M828") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3fc18cdd-76bf-4b52-9ef6-a64543f67288" (reference "M836") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10" (reference "M820") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4ee8840f-c034-4c64-a613-6418dbdce00d" (reference "M812") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 76.2 19.05 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "dcbdc611-25e0-4fe6-82c1-d117bf8f7e61") (property "Reference" "M810" (at 76.2 10.16 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 76.2 12.7 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 76.2 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 76.2 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 76.2 19.05 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D2" (uuid "30e04bda-01aa-4388-9a74-0a629adccef1") ) (pin "D1" (uuid "a71dfe71-0b6b-47eb-84fb-ceb11d7b0c2d") ) (pin "D0" (uuid "9d737ac0-b49f-4073-92e5-a86641b40a75") ) (pin "D3" (uuid "5f1b4ce7-999d-4acc-9c17-5c3a5178efaa") ) (pin "Y" (uuid "9eeb4ba1-7a9d-42fb-ba52-201ba567e5e4") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34307b1c-bb59-4948-a0b5-690c6f35f493" (reference "M826") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3fc18cdd-76bf-4b52-9ef6-a64543f67288" (reference "M834") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10" (reference "M818") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4ee8840f-c034-4c64-a613-6418dbdce00d" (reference "M810") (unit 1) ) ) ) ) (symbol (lib_name "NOT_1") (lib_id "prjpeppercorn:NOT") (at 85.09 76.2 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f9336eab-d519-4462-8db2-fb7f0f097e54") (property "Reference" "U2108" (at 85.09 71.12 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 85.09 73.66 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 85.09 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 85.09 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 85.09 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "fe4bbed7-333c-4ee0-a5d9-1e9b1e1fc007") ) (pin "" (uuid "7b88c0c0-1e73-46e1-8dd3-6548d19a62d2") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/34307b1c-bb59-4948-a0b5-690c6f35f493" (reference "U2124") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/3fc18cdd-76bf-4b52-9ef6-a64543f67288" (reference "U2132") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10" (reference "U2116") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4ee8840f-c034-4c64-a613-6418dbdce00d" (reference "U2108") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/peppercorn.kicad_sym000077500000000000000000002552221514752025000232760ustar00rootroot00000000000000(kicad_symbol_lib (version 20241209) (generator "kicad_symbol_editor") (generator_version "9.0") (symbol "AND" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AND3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AND3_1_1" (arc (start 2.54 0) (mid 1.9581 -2.3638) (end 0 -3.81) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 3.81) (mid 2.0592 2.4311) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 0 -3.81) (xy -1.27 -3.81) (xy -1.27 3.81) (xy 0 3.81) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "AO21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "AO21_1_1" (arc (start -1.27 2.54) (mid -0.3243 1.4253) (end 0 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 0) (mid -0.2725 -1.4513) (end -1.27 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2702 2.5398) (mid 1.1609 2.059) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.161 -2.0591) (end -1.2702 -2.5398) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 5.08) (mid 5.6061 4.3361) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 5.6061 0.7439) (end 3.81 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 3.81 0) (xy 2.54 0) (xy 2.54 5.08) (xy 3.81 5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "CONFIG" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 2.54 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "CONFIG_0_1" (rectangle (start -5.08 1.27) (end 5.08 -1.27) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "CONFIG_1_1" (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "C_FUNCTION" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C_FUNCTION" (at 0.254 7.874 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "C_FUNCTION_0_1" (rectangle (start -6.35 6.35) (end 6.35 -8.89) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "C_FUNCTION_1_1" (pin output line (at 8.89 5.08 180) (length 2.54) (name "C_MULT" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "C_MX4" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 0 180) (length 2.54) (name "C_EN_CIN" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 -2.54 180) (length 2.54) (name "C_ADDF" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 -5.08 180) (length 2.54) (name "C_ADDF2" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 -7.62 180) (length 2.54) (name "C_ADDCIN" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "DFF" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "FF" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "DFF_0_1" (rectangle (start -6.35 6.35) (end 6.35 -6.35) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "DFF_1_1" (pin input clock (at -8.89 5.08 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "C" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -8.89 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "E" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -8.89 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at -8.89 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at -8.89 -5.08 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "R" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Q" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "DLT" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "LT" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "DLT_0_1" (rectangle (start -6.35 6.35) (end 6.35 -6.35) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "DLT_1_1" (pin input line (at -8.89 5.08 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "G" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -8.89 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "E" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -8.89 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at -8.89 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at -8.89 -5.08 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "R" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Q" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "FA" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "FA_0_1" (rectangle (start -2.54 2.54) (end 2.54 -2.54) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "FA_1_1" (text "+" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "A" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "B" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "CO" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 -5.08 90) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "CI" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT1_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 0.762) (end -1.524 0.254) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.254) (end -1.524 -0.762) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT1_1_1" (pin input line (at -5.08 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2_0_1" (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "LUT2 with C_I mux" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "L" (at 0 3.556 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "LUT2 with C_I mux_0_1" (polyline (pts (xy -7.62 0) (xy -7.62 -5.08) (xy -2.54 -3.81) (xy -2.54 -1.27) (xy -7.62 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.54 2.54) (end 2.54 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 2.032) (end -1.524 1.524) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 1.016) (end -1.524 0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -0.508) (end -1.524 -1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (rectangle (start -2.032 -1.524) (end -1.524 -2.032) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 1.778) (xy -1.016 1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 0.762) (xy -1.016 0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.762) (xy -1.016 -0.762) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -1.778) (xy -1.016 -1.778) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 0.254) (xy -1.016 2.286) (xy -0.254 2.032) (xy -0.254 0.508) (xy -1.016 0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.016 -0.254) (xy -1.016 -2.286) (xy -0.254 -2.032) (xy -0.254 -0.508) (xy -1.016 -0.254) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 1.27) (xy 0.254 1.27) (xy 0.254 0.508) (xy 0.762 0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -0.254 -1.27) (xy 0.254 -1.27) (xy 0.254 -0.508) (xy 0.762 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 0.762 -1.016) (xy 0.762 1.016) (xy 1.524 0.762) (xy 1.524 -0.762) (xy 0.762 -1.016) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.524 0) (xy 2.032 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "LUT2 with C_I mux_1_1" (pin input line (at -10.16 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -10.16 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX invert/mask" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX invert/mask_0_1" (rectangle (start -3.81 5.08) (end 3.81 -5.08) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.302 -5.588) (xy -3.302 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -3.302 -5.588) (xy 4.318 -5.588) (xy 4.318 4.572) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 3.048) (xy -1.778 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 3.048) (xy -1.016 3.048) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 2.54) (xy -3.302 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 1.27) (xy -3.302 1.27) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.778 0) (xy -3.302 0) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy -1.524 -0.508) (xy -1.27 -0.508) (xy -1.778 -0.508) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0.762 1.27) (mid 0.1142 -0.0398) (end -1.27 -0.508) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start -1.016 3.048) (mid 0.2412 2.5272) (end 0.762 1.27) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 0.762 4.064) (mid 1.3933 2.54) (end 0.762 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 1.27 4.064) (mid 1.9012 2.54) (end 1.27 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 1.016 3.81) (xy -3.302 3.81) ) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 3.302 2.54) (mid 2.6016 1.3572) (end 1.27 1.016) (stroke (width 0) (type default) ) (fill (type none) ) ) (arc (start 1.27 4.064) (mid 2.6016 3.7228) (end 3.3018 2.5398) (stroke (width 0) (type default) ) (fill (type none) ) ) (polyline (pts (xy 4.318 4.572) (xy 3.81 4.572) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX invert/mask_1_1" (text "C" (at -3.048 4.318 0) (effects (font (size 0.75 0.75) ) ) ) (text "E" (at -3.048 3.048 0) (effects (font (size 0.75 0.75) ) ) ) (text "X" (at -3.048 1.778 0) (effects (font (size 0.75 0.75) ) ) ) (text "M" (at -3.048 0.508 0) (effects (font (size 0.75 0.75) ) ) ) (text "(x4)" (at 3.556 -6.604 0) (effects (font (size 1 1) ) ) ) (pin input line (at -6.35 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "M4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "E" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 3.81 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 1.27 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "2" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 -1.27 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "3" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 -3.81 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "4" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2_0_1" (polyline (pts (xy -2.54 -2.54) (xy -2.54 2.54) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2_1_1" (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX2 (conceptual)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2 (conceptual)_1_1" (polyline (pts (xy -2.54 -2.54) (xy -2.54 2.54) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX2B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2B_0_1" (polyline (pts (xy -5.08 2.54) (xy -5.08 -2.54) (xy 5.08 -1.27) (xy 5.08 1.27) (xy -5.08 2.54) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX2B_1_1" (pin input line (at -7.62 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX2B (conceptual)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "C" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX2B (conceptual)_1_1" (polyline (pts (xy -3.81 -2.54) (xy -3.81 2.54) (xy 3.81 1.27) (xy 3.81 -1.27) (xy -3.81 -2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -6.35 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -6.35 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 6.35 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4_0_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX4_1_1" (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 5.08 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX4 (conceptual)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4 (conceptual)_1_1" (polyline (pts (xy -5.08 -5.08) (xy -5.08 5.08) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -5.08 -5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -7.62 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -7.62 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 6.35 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX4 (conceptual) (upside down)" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 5.588 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4 (conceptual) (upside down)_1_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 7.62 2.54) (xy 7.62 -2.54) (xy -2.54 -5.08) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 -7.62 90) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 -6.35 90) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 10.16 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX4B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4B_0_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX4B_1_1" (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX8" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 1.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX8_0_1" (polyline (pts (xy -2.54 -10.16) (xy -2.54 10.16) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -2.54 -10.16) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX8_1_1" (pin input line (at -5.08 8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D5" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D6" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D7" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 12.7 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 2.54 10.16 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 7.62 270) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "S2" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "MUX8B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX8B_0_1" (polyline (pts (xy -2.54 -10.16) (xy -2.54 10.16) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -2.54 -10.16) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX8B_1_1" (pin input line (at -5.08 8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D5" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D6" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D7" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NAND" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NAND_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NAND3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NAND3_1_1" (arc (start 2.54 0) (mid 1.9581 -2.3638) (end 0 -3.81) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 3.81) (mid 2.0592 2.4311) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (polyline (pts (xy 0 -3.81) (xy -1.27 -3.81) (xy -1.27 3.81) (xy 0 3.81) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOR_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OA21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OA21_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 5.08) (mid 3.4857 3.9653) (end 3.81 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 2.54) (mid 3.5375 1.0887) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 4.971 0.4809) (end 2.5398 0.0002) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.5398 5.0798) (mid 4.9709 4.599) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OAI21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OAI21_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 5.08) (mid 3.4857 3.9653) (end 3.81 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 2.54) (mid 3.5375 1.0887) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 6.35 2.54) (mid 4.971 0.4809) (end 2.5398 0.0002) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.5398 5.0798) (mid 4.9709 4.599) (end 6.35 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 8.89 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "OR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at -1.27 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "OR_1_1" (arc (start -3.275 2.49) (mid -2.3293 1.3753) (end -2.005 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 -0.05) (mid -2.2775 -1.5013) (end -3.275 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 1.27 0) (mid -0.4662 -2.2363) (end -3.2752 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.2752 2.4898) (mid -0.4869 2.1863) (end 1.27 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XA21" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XA21_1_1" (polyline (pts (xy 0 -2.54) (xy -1.27 -2.54) (xy -1.27 2.54) (xy 0 2.54) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 0 2.54) (mid 1.7961 1.7961) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 1.7961 -1.7961) (end 0 -2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 5.08) (mid 3.4857 3.9653) (end 3.81 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.81 2.54) (mid 3.5375 1.0887) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.71 5.03) (mid 4.6557 3.9153) (end 4.98 2.49) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 4.98 2.59) (mid 4.6557 1.1646) (end 3.71 0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 7.62 2.54) (mid 6.241 0.4809) (end 3.8098 0.0002) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 3.8098 5.0798) (mid 6.2409 4.599) (end 7.62 2.54) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -3.81 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -3.81 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 0 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 10.16 2.54 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XNOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XNOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input inverted (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR_1_1" (arc (start -3.2746 2.4902) (mid -2.3289 1.3755) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0046 0.0498) (mid -2.3289 -1.3755) (end -3.2746 -2.4902) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.005 2.49) (mid -1.0593 1.3753) (end -0.735 -0.05) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -0.735 -0.05) (mid -1.0075 -1.5013) (end -2.005 -2.59) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.8038 -2.2363) (end -2.0052 -2.5898) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -2.0052 2.4898) (mid 0.7831 2.1863) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "XOR3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 -1.27 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "XOR3_0_1" (arc (start -3.048 3.81) (mid 0.5351 3.0623) (end 2.54 0) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start 2.54 0) (mid 0.6095 -2.8827) (end -2.794 -3.556) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "XOR3_1_1" (arc (start -3.81 3.81) (mid -2.464 2.0874) (end -2.0046 -0.0498) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.9759 0.0685) (mid -2.4353 -2.0687) (end -3.7813 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -3.0193 3.7913) (mid -1.6733 2.0687) (end -1.2139 -0.0685) (stroke (width 0) (type dash) ) (fill (type none) ) ) (arc (start -1.2139 0.0685) (mid -1.6733 -2.0687) (end -3.0193 -3.7913) (stroke (width 0) (type dash) ) (fill (type none) ) ) (pin input line (at -5.08 2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -2.54 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) prjpeppercorn-1.12/schematics/cpe/prjpeppercorn.kicad_pcb000077500000000000000000000001161514752025000237340ustar00rootroot00000000000000(kicad_pcb (version 20241229) (generator "pcbnew") (generator_version "9.0") )prjpeppercorn-1.12/schematics/cpe/prjpeppercorn.kicad_pro000077500000000000000000000624061514752025000240020ustar00rootroot00000000000000{ "board": { "3dviewports": [], "design_settings": { "defaults": { "apply_defaults_to_fp_fields": false, "apply_defaults_to_fp_shapes": false, "apply_defaults_to_fp_text": false, "board_outline_line_width": 0.05, "copper_line_width": 0.2, "copper_text_italic": false, "copper_text_size_h": 1.5, "copper_text_size_v": 1.5, "copper_text_thickness": 0.3, "copper_text_upright": false, "courtyard_line_width": 0.05, "dimension_precision": 4, "dimension_units": 3, "dimensions": { "arrow_length": 1270000, "extension_offset": 500000, "keep_text_aligned": true, "suppress_zeroes": true, "text_position": 0, "units_format": 0 }, "fab_line_width": 0.1, "fab_text_italic": false, "fab_text_size_h": 1.0, "fab_text_size_v": 1.0, "fab_text_thickness": 0.15, "fab_text_upright": false, "other_line_width": 0.1, "other_text_italic": false, "other_text_size_h": 1.0, "other_text_size_v": 1.0, "other_text_thickness": 0.15, "other_text_upright": false, "pads": { "drill": 0.8, "height": 1.27, "width": 2.54 }, "silk_line_width": 0.1, "silk_text_italic": false, "silk_text_size_h": 1.0, "silk_text_size_v": 1.0, "silk_text_thickness": 0.1, "silk_text_upright": false, "zones": { "min_clearance": 0.5 } }, "diff_pair_dimensions": [], "drc_exclusions": [], "meta": { "version": 2 }, "rule_severities": { "annular_width": "error", "clearance": "error", "connection_width": "warning", "copper_edge_clearance": "error", "copper_sliver": "warning", "courtyards_overlap": "error", "creepage": "error", "diff_pair_gap_out_of_range": "error", "diff_pair_uncoupled_length_too_long": "error", "drill_out_of_range": "error", "duplicate_footprints": "warning", "extra_footprint": "warning", "footprint": "error", "footprint_filters_mismatch": "ignore", "footprint_symbol_mismatch": "warning", "footprint_type_mismatch": "ignore", "hole_clearance": "error", "hole_to_hole": "warning", "holes_co_located": "warning", "invalid_outline": "error", "isolated_copper": "warning", "item_on_disabled_layer": "error", "items_not_allowed": "error", "length_out_of_range": "error", "lib_footprint_issues": "warning", "lib_footprint_mismatch": "warning", "malformed_courtyard": "error", "microvia_drill_out_of_range": "error", "mirrored_text_on_front_layer": "warning", "missing_courtyard": "ignore", "missing_footprint": "warning", "net_conflict": "warning", "nonmirrored_text_on_back_layer": "warning", "npth_inside_courtyard": "ignore", "padstack": "warning", "pth_inside_courtyard": "ignore", "shorting_items": "error", "silk_edge_clearance": "warning", "silk_over_copper": "warning", "silk_overlap": "warning", "skew_out_of_range": "error", "solder_mask_bridge": "error", "starved_thermal": "error", "text_height": "warning", "text_on_edge_cuts": "error", "text_thickness": "warning", "through_hole_pad_without_hole": "error", "too_many_vias": "error", "track_angle": "error", "track_dangling": "warning", "track_segment_length": "error", "track_width": "error", "tracks_crossing": "error", "unconnected_items": "error", "unresolved_variable": "error", "via_dangling": "warning", "zones_intersect": "error" }, "rules": { "max_error": 0.005, "min_clearance": 0.0, "min_connection": 0.0, "min_copper_edge_clearance": 0.5, "min_groove_width": 0.0, "min_hole_clearance": 0.25, "min_hole_to_hole": 0.25, "min_microvia_diameter": 0.2, "min_microvia_drill": 0.1, "min_resolved_spokes": 2, "min_silk_clearance": 0.0, "min_text_height": 0.8, "min_text_thickness": 0.08, "min_through_hole_diameter": 0.3, "min_track_width": 0.0, "min_via_annular_width": 0.1, "min_via_diameter": 0.5, "solder_mask_to_copper_clearance": 0.0, "use_height_for_length_calcs": true }, "teardrop_options": [ { "td_onpthpad": true, "td_onroundshapesonly": false, "td_onsmdpad": true, "td_ontrackend": false, "td_onvia": true } ], "teardrop_parameters": [ { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_round_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_rect_shape", "td_width_to_size_filter_ratio": 0.9 }, { "td_allow_use_two_tracks": true, "td_curve_segcount": 0, "td_height_ratio": 1.0, "td_length_ratio": 0.5, "td_maxheight": 2.0, "td_maxlen": 1.0, "td_on_pad_in_zone": false, "td_target_name": "td_track_end", "td_width_to_size_filter_ratio": 0.9 } ], "track_widths": [], "tuning_pattern_settings": { "diff_pair_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 1.0 }, "diff_pair_skew_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 }, "single_track_defaults": { "corner_radius_percentage": 80, "corner_style": 1, "max_amplitude": 1.0, "min_amplitude": 0.2, "single_sided": false, "spacing": 0.6 } }, "via_dimensions": [], "zones_allow_external_fillets": false }, "ipc2581": { "dist": "", "distpn": "", "internal_id": "", "mfg": "", "mpn": "" }, "layer_pairs": [], "layer_presets": [], "viewports": [] }, "boards": [], "cvpcb": { "equivalence_files": [] }, "erc": { "erc_exclusions": [], "meta": { "version": 0 }, "pin_map": [ [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 2 ], [ 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 1, 2 ], [ 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2 ], [ 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 2 ], [ 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2 ], [ 0, 2, 1, 2, 0, 0, 1, 0, 2, 2, 2, 2 ], [ 0, 2, 0, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 0, 2, 1, 1, 0, 0, 1, 0, 2, 0, 0, 2 ], [ 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ] ], "rule_severities": { "bus_definition_conflict": "error", "bus_entry_needed": "error", "bus_to_bus_conflict": "error", "bus_to_net_conflict": "error", "different_unit_footprint": "error", "different_unit_net": "error", "duplicate_reference": "error", "duplicate_sheet_names": "error", "endpoint_off_grid": "warning", "extra_units": "error", "footprint_filter": "ignore", "footprint_link_issues": "warning", "four_way_junction": "ignore", "global_label_dangling": "warning", "hier_label_mismatch": "error", "label_dangling": "error", "label_multiple_wires": "warning", "lib_symbol_issues": "warning", "lib_symbol_mismatch": "warning", "missing_bidi_pin": "warning", "missing_input_pin": "warning", "missing_power_pin": "error", "missing_unit": "warning", "multiple_net_names": "warning", "net_not_bus_member": "warning", "no_connect_connected": "warning", "no_connect_dangling": "warning", "pin_not_connected": "error", "pin_not_driven": "error", "pin_to_pin": "error", "power_pin_not_driven": "error", "same_local_global_label": "warning", "similar_label_and_power": "warning", "similar_labels": "warning", "similar_power": "warning", "simulation_model_issue": "ignore", "single_global_label": "ignore", "unannotated": "error", "unconnected_wire_endpoint": "warning", "unit_value_mismatch": "error", "unresolved_variable": "error", "wire_dangling": "error" } }, "libraries": { "pinned_footprint_libs": [], "pinned_symbol_libs": [] }, "meta": { "filename": "prjpeppercorn.kicad_pro", "version": 3 }, "net_settings": { "classes": [ { "bus_width": 12, "clearance": 0.2, "diff_pair_gap": 0.25, "diff_pair_via_gap": 0.25, "diff_pair_width": 0.2, "line_style": 0, "microvia_diameter": 0.3, "microvia_drill": 0.1, "name": "Default", "pcb_color": "rgba(0, 0, 0, 0.000)", "priority": 2147483647, "schematic_color": "rgba(0, 0, 0, 0.000)", "track_width": 0.2, "via_diameter": 0.6, "via_drill": 0.3, "wire_width": 6 } ], "meta": { "version": 4 }, "net_colors": null, "netclass_assignments": null, "netclass_patterns": [] }, "pcbnew": { "last_paths": { "gencad": "", "idf": "", "netlist": "", "plot": "", "pos_files": "", "specctra_dsn": "", "step": "", "svg": "", "vrml": "" }, "page_layout_descr_file": "" }, "schematic": { "annotate_start_num": 0, "bom_export_filename": "${PROJECTNAME}.csv", "bom_fmt_presets": [], "bom_fmt_settings": { "field_delimiter": ",", "keep_line_breaks": false, "keep_tabs": false, "name": "CSV", "ref_delimiter": ",", "ref_range_delimiter": "", "string_delimiter": "\"" }, "bom_presets": [], "bom_settings": { "exclude_dnp": false, "fields_ordered": [ { "group_by": false, "label": "Reference", "name": "Reference", "show": true }, { "group_by": false, "label": "Qty", "name": "${QUANTITY}", "show": true }, { "group_by": true, "label": "Value", "name": "Value", "show": true }, { "group_by": true, "label": "DNP", "name": "${DNP}", "show": true }, { "group_by": true, "label": "Exclude from BOM", "name": "${EXCLUDE_FROM_BOM}", "show": true }, { "group_by": true, "label": "Exclude from Board", "name": "${EXCLUDE_FROM_BOARD}", "show": true }, { "group_by": true, "label": "Footprint", "name": "Footprint", "show": true }, { "group_by": false, "label": "Datasheet", "name": "Datasheet", "show": true } ], "filter_string": "", "group_symbols": true, "include_excluded_from_bom": true, "name": "Default Editing", "sort_asc": true, "sort_field": "Reference" }, "connection_grid_size": 50.0, "drawing": { "dashed_lines_dash_length_ratio": 12.0, "dashed_lines_gap_length_ratio": 3.0, "default_line_thickness": 6.0, "default_text_size": 50.0, "field_names": [], "intersheets_ref_own_page": false, "intersheets_ref_prefix": "", "intersheets_ref_short": false, "intersheets_ref_show": false, "intersheets_ref_suffix": "", "junction_size_choice": 3, "label_size_ratio": 0.375, "operating_point_overlay_i_precision": 3, "operating_point_overlay_i_range": "~A", "operating_point_overlay_v_precision": 3, "operating_point_overlay_v_range": "~V", "overbar_offset_ratio": 1.23, "pin_symbol_size": 25.0, "text_offset_ratio": 0.15 }, "legacy_lib_dir": "", "legacy_lib_list": [], "meta": { "version": 1 }, "net_format_name": "", "page_layout_descr_file": "", "plot_directory": "//wsl$/Arch/home/lofty/prjpeppercorn/schematics/cpe/", "space_save_all_events": true, "spice_current_sheet_as_root": false, "spice_external_command": "spice \"%I\"", "spice_model_current_sheet_as_root": true, "spice_save_all_currents": false, "spice_save_all_dissipations": false, "spice_save_all_voltages": false, "subpart_first_id": 65, "subpart_id_separator": 0 }, "sheets": [ [ "5a7723f7-3f6f-437e-b958-e402b06d3f54", "Root" ], [ "cb769740-e0a9-4f3d-b622-ba158089ec4b", "CPE11" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "d5387cfb-1ad4-4281-88c6-9c10bdd7e84d", "Big Switch Box" ], [ "b55ea9b6-2977-4388-9bbd-cad75504aba9", "Small Switch Box" ], [ "15237a69-f566-4902-aed7-ec94257dac5f", "Input Multiplexer" ], [ "beb8f9ac-f817-4571-9190-d477fd827e5c", "Output Multiplexer (1,1)" ], [ "4ee8840f-c034-4c64-a613-6418dbdce00d", "Output Multiplexer (2,2)" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "5874b725-80d2-456e-aad7-0e7be771e786", "Input Multiplexer1" ], [ "3708e668-06fd-4bde-a510-be9c4c483743", "Cologne Processing Element4" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "cbe1029e-5a96-486f-be41-aa502d2843a4", "CPE12" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "a9d9c733-a319-47fe-9511-ffa679100753", "Input Multiplexer2" ], [ "ba0b6e53-6d28-4a63-b105-1bae4b7952cf", "Input Multiplexer3" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "8aa34640-bb40-4fe2-bc97-bb16bcd53a98", "Cologne Processing Element5" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "213bc7b9-e128-4444-87f8-9514f96db5d7", "Cologne Processing Element6" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "ba5b86d8-c058-4b4e-97ab-c38cca17e5b2", "Cologne Processing Element7" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "b0039cf5-a560-4402-8cb2-900045e79843", "Input Multiplexer4" ], [ "5f80c25b-15f6-43c9-b1ce-146688513aa6", "Input Multiplexer5" ], [ "4b653757-b4f2-49b6-8afc-3b9eb400680f", "Input Multiplexer6" ], [ "c848837c-3f9c-4cce-a4c7-393e1a0c4966", "Input Multiplexer7" ], [ "e18b86f9-3d4f-4546-a878-7b6180effd95", "Small Switch Box1" ], [ "7b7168c3-2193-4365-9bd0-9929e7b794de", "Big Switch Box2" ], [ "478a0a11-ef47-469e-9c41-0b6d93b14e55", "Big Switch Box3" ], [ "9b1ab731-94a3-4118-a2ae-9618fbf2d52b", "Cologne Processing Element8" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "d3f726a8-b35c-41f9-8b51-40750bd789d0", "Cologne Processing Element9" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "10267851-36ea-4cef-a7d1-733014bf44ba", "Cologne Processing Element10" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "3f316f32-190e-4f32-9c15-1cd4f82ec60d", "Cologne Processing Element11" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "eacde244-d6aa-4a0d-9322-f308275f8164", "Cologne Processing Element12" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "e31b35bd-ad23-4fe2-862f-f5d03a701296", "Cologne Processing Element13" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "5bad9d32-c3e8-4160-adf1-aa4f27acbfec", "Cologne Processing Element14" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "303dbe62-25dc-49e5-9ee2-37afeb4d19e7", "Cologne Processing Element15" ], [ "2cdae2f1-b557-4e09-a2ce-72fe69c1cde7", "C_FUNCTION=4" ], [ "2f1e56f5-88a6-4944-a409-72559104271f", "C_FUNCTION=5" ], [ "72ce5b8e-65cd-4ef4-93c6-ada8bc7993bf", "C_FUNCTION=0 or 6" ], [ "7c694198-71e0-4b5f-9d71-f88a52a590d9", "C_FUNCTION=2 or 3" ], [ "c7e1e454-4a3a-497b-82a6-da398b72cabb", "C_FUNCTION=1 or 7" ], [ "26834ae4-da98-4578-9c2e-cd695e873ce7", "Input Multiplexer8" ], [ "b57a8071-6a29-42f3-b1fa-46043cf15890", "Input Multiplexer9" ], [ "e8161494-e08f-43fe-b092-16e4392b32ce", "Input Multiplexer10" ], [ "3c4d503e-07c9-4206-aaeb-e7fbe5d6150b", "Input Multiplexer11" ], [ "6da24921-0cf0-4d6d-bab2-aec1250ea677", "Input Multiplexer12" ], [ "4a71ba92-793e-49ad-9861-7c41ba263f46", "Input Multiplexer13" ], [ "53057a60-0610-4a8e-b816-7199fa30cd79", "Input Multiplexer14" ], [ "15666f69-b7ed-4f99-992f-5817e69dcac9", "Input Multiplexer15" ], [ "c1eda374-df36-47de-8afc-84fb9a60c6df", "Small Switch Box2" ], [ "ee797845-f493-4c07-9e40-1625ab69ba35", "Big Switch Box1" ], [ "4c7c13ea-4fd7-43ce-a779-ee5d2f712e47", "Small Switch Box3" ], [ "2230e204-608d-4529-b33f-27f2903e32dc", "CPE21" ], [ "10712960-9d68-44ab-9263-4d6a1023dbc4", "CPE22" ], [ "34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e", "Output Multiplexer (1,1)1" ], [ "4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10", "Output Multiplexer (2,2)1" ], [ "7f0a652f-db38-48df-b50d-37a3c6c9c68e", "Output Multiplexer (1,1)2" ], [ "34307b1c-bb59-4948-a0b5-690c6f35f493", "Output Multiplexer (2,2)2" ], [ "a1bd1bf1-363d-423a-8846-17236a10f502", "Output Multiplexer (1,1)3" ], [ "3fc18cdd-76bf-4b52-9ef6-a64543f67288", "Output Multiplexer (2,2)3" ] ], "text_variables": {} } prjpeppercorn-1.12/schematics/cpe/prjpeppercorn.kicad_sch000077500000000000000000007111301514752025000237520ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "5a7723f7-3f6f-437e-b958-e402b06d3f54") (paper "A1") (title_block (rev "5") (company "YosysHQ") ) (lib_symbols) (rectangle (start 25.4 254) (end 254 482.6) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 05bf2712-ac7d-4e7e-9c44-ae3ac7028ae8) ) (rectangle (start 254 25.4) (end 368.3 139.7) (stroke (width -0.0001) (type solid) ) (fill (type none) ) (uuid 16b72862-2f35-4f34-9a7d-97f348ad6946) ) (rectangle (start 25.4 139.7) (end 139.7 254) (stroke (width -0.0001) (type solid) ) (fill (type color) (color 208 208 208 1) ) (uuid 233976bd-2d94-42c9-a55b-6dffe549fa1e) ) (rectangle (start 368.3 139.7) (end 482.6 254) (stroke (width -0.0001) (type solid) ) (fill (type none) ) (uuid 36373208-675b-4e12-a854-2994d7cef618) ) (rectangle (start 254 368.3) (end 368.3 482.6) (stroke (width -0.0001) (type solid) ) (fill (type color) (color 208 208 208 1) ) (uuid 37972a1f-a5e3-4531-9c7c-4fc83ed5c81c) ) (rectangle (start 25.4 254) (end 139.7 368.3) (stroke (width -0.0001) (type solid) ) (fill (type none) ) (uuid 43dd06a3-fb58-4eae-8b50-25c0b5d4502e) ) (rectangle (start 368.3 254) (end 482.6 368.3) (stroke (width -0.0001) (type solid) ) (fill (type color) (color 208 208 208 1) ) (uuid 482ee301-55b7-40ee-bee2-6467ebc93c23) ) (rectangle (start 254 254) (end 482.6 482.6) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 50c178e3-8496-43c7-b100-d88152b7b9dc) ) (rectangle (start 368.3 368.3) (end 482.6 482.6) (stroke (width -0.0001) (type solid) ) (fill (type none) ) (uuid 6b4a8a6b-f341-4a81-86d0-8ede1f57508f) ) (rectangle (start 139.7 368.3) (end 254 482.6) (stroke (width -0.0001) (type solid) ) (fill (type none) ) (uuid 7546acb1-fac8-4687-9eee-789762bacdfd) ) (rectangle (start 254 254) (end 368.3 368.3) (stroke (width -0.0001) (type solid) ) (fill (type none) ) (uuid 7edbf22b-9a1c-4b10-b7e7-325f93898282) ) (rectangle (start 368.3 25.4) (end 482.6 139.7) (stroke (width -0.0001) (type solid) ) (fill (type color) (color 208 208 208 1) ) (uuid 8f353f4f-2e37-4fac-8106-3575c9ee6209) ) (rectangle (start 139.7 254) (end 254 368.3) (stroke (width -0.0001) (type solid) ) (fill (type color) (color 208 208 208 1) ) (uuid a66769c5-8850-471c-bd7e-5b6dea13de86) ) (rectangle (start 139.7 139.7) (end 254 254) (stroke (width -0.0001) (type solid) ) (fill (type none) ) (uuid aacea22a-eba4-4fda-a2a1-f64d559634e7) ) (rectangle (start 254 139.7) (end 368.3 254) (stroke (width -0.0001) (type solid) ) (fill (type color) (color 208 208 208 1) ) (uuid b4f62946-1507-416e-87f3-b23c2bd3d2a9) ) (rectangle (start 25.4 25.4) (end 254 254) (stroke (width 0) (type default) ) (fill (type none) ) (uuid bcfe8a2d-b650-4fcb-a98d-c04ee746b90a) ) (rectangle (start 254 25.4) (end 482.6 254) (stroke (width 0) (type default) ) (fill (type none) ) (uuid d53af71e-cfe0-4f21-bfd7-8dfff44a33a6) ) (rectangle (start 139.7 25.4) (end 254 139.7) (stroke (width -0.0001) (type solid) ) (fill (type color) (color 208 208 208 1) ) (uuid d97a6e20-06a9-4755-91a9-f98d74853513) ) (rectangle (start 25.4 25.4) (end 139.7 139.7) (stroke (width -0.0001) (type solid) ) (fill (type none) ) (uuid e3779879-a460-4c1e-8cf6-84163a04e38a) ) (rectangle (start 25.4 368.3) (end 139.7 482.6) (stroke (width -0.0001) (type solid) ) (fill (type color) (color 208 208 208 1) ) (uuid e4166506-7865-482a-9e79-5aa80d170a3c) ) (text "FOUR-GROUP\nTYPE A" (exclude_from_sim no) (at 368.3 139.7 0) (effects (font (size 10 10) ) ) (uuid "5928addc-2e31-4a0f-b5b2-92b2abc86cb7") ) (text "Only Plane 1 is depicted\nfor conciseness; in the\nswitchbox sheets you can\nsee the connections to\nother planes." (exclude_from_sim no) (at 254 508 0) (effects (font (size 2.54 2.54) ) ) (uuid "695b98da-36ec-4523-ad08-e04dd2dd99f8") ) (text "FOUR-GROUP\nTYPE B" (exclude_from_sim no) (at 368.3 368.3 0) (effects (font (size 10 10) ) ) (uuid "ae531055-825e-4e7f-a443-2fad3bce248f") ) (text "FOUR-GROUP\nTYPE B" (exclude_from_sim no) (at 139.7 139.7 0) (effects (font (size 10 10) ) ) (uuid "e5339d88-b313-413a-9137-57c15595d489") ) (text "FOUR-GROUP\nTYPE A" (exclude_from_sim no) (at 139.7 368.3 0) (effects (font (size 10 10) ) ) (uuid "f579cd05-9441-405a-a72f-2511cb46aca4") ) (junction (at 132.08 185.42) (diameter 0) (color 0 0 0 0) (uuid "0bcf6d1c-9639-4ebc-a78b-9d4a64d267dd") ) (junction (at 478.79 185.42) (diameter 0) (color 0 0 0 0) (uuid "20646ab3-8dee-403d-b234-5731c65b7d70") ) (junction (at 373.38 248.92) (diameter 0) (color 0 0 0 0) (uuid "252a5ac9-0881-4335-a66d-dfced0639c1a") ) (junction (at 256.54 110.49) (diameter 0) (color 0 0 0 0) (uuid "277312d0-dd3d-46ba-91b6-af1b01d0a4c6") ) (junction (at 27.94 339.09) (diameter 0) (color 0 0 0 0) (uuid "27b3227a-a139-494a-b19d-2f8fc1287bda") ) (junction (at 27.94 110.49) (diameter 0) (color 0 0 0 0) (uuid "2a76407f-8300-4515-9bb9-f233fc6ba4ec") ) (junction (at 147.32 448.31) (diameter 0) (color 0 0 0 0) (uuid "48dddb8c-8c73-4cfb-bfba-6e6f50549c8c") ) (junction (at 132.08 414.02) (diameter 0) (color 0 0 0 0) (uuid "4ab6af3e-1ca6-4e44-a9af-6c387ec0fae6") ) (junction (at 33.02 334.01) (diameter 0) (color 0 0 0 0) (uuid "4b4cf077-76dc-4e65-b015-f948982c5fc2") ) (junction (at 375.92 219.71) (diameter 0) (color 0 0 0 0) (uuid "4db595be-3975-41b5-906d-1e458bc6321c") ) (junction (at 478.79 414.02) (diameter 0) (color 0 0 0 0) (uuid "51467605-8da2-4777-bf2f-26b956ce8e86") ) (junction (at 261.62 105.41) (diameter 0) (color 0 0 0 0) (uuid "615339bb-1974-401a-82ab-060354aec2c3") ) (junction (at 30.48 134.62) (diameter 0) (color 0 0 0 0) (uuid "645f69c1-f2c0-4603-9dbe-7f026bcbd74e") ) (junction (at 250.19 185.42) (diameter 0) (color 0 0 0 0) (uuid "7147b21f-3350-4768-9ca0-7ded033ba159") ) (junction (at 256.54 339.09) (diameter 0) (color 0 0 0 0) (uuid "777addf3-b6d6-4669-8b8a-52a7b2873b0a") ) (junction (at 33.02 105.41) (diameter 0) (color 0 0 0 0) (uuid "8158e022-2b9e-4505-b758-c530bf2dc920") ) (junction (at 147.32 219.71) (diameter 0) (color 0 0 0 0) (uuid "87b0ad6d-3d88-435a-a400-baad07f87808") ) (junction (at 35.56 331.47) (diameter 0) (color 0 0 0 0) (uuid "8f70346d-6c3c-4b10-a14c-3054331e9388") ) (junction (at 149.86 445.77) (diameter 0) (color 0 0 0 0) (uuid "92a972e0-3e35-4ec9-ac28-2a65a9150a71") ) (junction (at 378.46 217.17) (diameter 0) (color 0 0 0 0) (uuid "941ef0f0-3437-45fa-a72e-b4121e064ee4") ) (junction (at 142.24 453.39) (diameter 0) (color 0 0 0 0) (uuid "9b0bc1f7-2d20-42c6-a93c-5a3eb2e2af73") ) (junction (at 370.84 224.79) (diameter 0) (color 0 0 0 0) (uuid "9c121024-1fb6-4a75-894a-227d3e30affb") ) (junction (at 360.68 414.02) (diameter 0) (color 0 0 0 0) (uuid "a0672f38-46b1-439f-99cb-bc83ac7a1c17") ) (junction (at 144.78 477.52) (diameter 0) (color 0 0 0 0) (uuid "a0758828-5980-4929-a4a9-048feeaa923f") ) (junction (at 264.16 331.47) (diameter 0) (color 0 0 0 0) (uuid "a0ceff9f-01a2-4d82-9eb3-a363bbea98cd") ) (junction (at 149.86 217.17) (diameter 0) (color 0 0 0 0) (uuid "a4fb394d-c315-48f2-a800-597bb9affe3e") ) (junction (at 370.84 453.39) (diameter 0) (color 0 0 0 0) (uuid "a74602ad-2b5d-4d82-a4e4-ccf89bca4b38") ) (junction (at 378.46 445.77) (diameter 0) (color 0 0 0 0) (uuid "bb739d43-2ac2-4f14-a5d1-28b64021b734") ) (junction (at 259.08 363.22) (diameter 0) (color 0 0 0 0) (uuid "c5c6b480-d1f9-4c55-8170-94082aaefde4") ) (junction (at 144.78 248.92) (diameter 0) (color 0 0 0 0) (uuid "c84ce114-a350-41ee-a3a7-12d73ee77fca") ) (junction (at 261.62 334.01) (diameter 0) (color 0 0 0 0) (uuid "c8b39d81-a167-4b74-a606-5c58de070034") ) (junction (at 373.38 477.52) (diameter 0) (color 0 0 0 0) (uuid "d3cd528e-c619-4085-a11b-1f9c0d2002f7") ) (junction (at 360.68 185.42) (diameter 0) (color 0 0 0 0) (uuid "dbb9aa87-63ce-43c1-9ab1-378bd872b996") ) (junction (at 259.08 134.62) (diameter 0) (color 0 0 0 0) (uuid "dcede16a-27b0-425a-a238-df4f430ddf94") ) (junction (at 142.24 224.79) (diameter 0) (color 0 0 0 0) (uuid "de1a0b55-b8be-4fb5-82f3-d115fa3524a9") ) (junction (at 375.92 448.31) (diameter 0) (color 0 0 0 0) (uuid "ef9772ca-a9b1-4f4d-8689-86a83b1e7574") ) (junction (at 30.48 363.22) (diameter 0) (color 0 0 0 0) (uuid "f5cf9a02-5613-42b3-9cf8-fd2af8ddcb1b") ) (junction (at 35.56 102.87) (diameter 0) (color 0 0 0 0) (uuid "f89baca6-65da-47d6-a6f7-5976dc984b6a") ) (junction (at 264.16 102.87) (diameter 0) (color 0 0 0 0) (uuid "f9a74bb1-5f72-4720-8ee3-4debe9bbafa7") ) (junction (at 250.19 414.02) (diameter 0) (color 0 0 0 0) (uuid "fbb26688-013f-47d4-894e-a16ab66a8b4f") ) (bus_entry (at 129.54 448.31) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "03b49b55-5636-484f-9566-d22ff39ca149") ) (bus_entry (at 476.25 105.41) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "05cf908e-4a1f-4428-9980-8facfdd840cf") ) (bus_entry (at 81.28 198.12) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "07f9f7e2-0b10-4afc-aac8-50ccf3dfd126") ) (bus_entry (at 426.72 307.34) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "0f356955-1d5e-447a-93f2-b323fb9b0bba") ) (bus_entry (at 426.72 78.74) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "100cd428-0643-4296-9681-e2bdaa7e6c2e") ) (bus_entry (at 129.54 105.41) (size 2.54 2.54) (stroke (width 0) (type default) ) (uuid "1084456a-6868-4d3e-baad-01020fa5b970") ) (bus_entry (at 247.65 448.31) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "12ca3eca-a0bb-4faf-b529-35cd150d9cc5") ) (bus_entry (at 426.72 317.5) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "1445fbd6-1d22-414c-8730-2605c1d58b04") ) (bus_entry (at 358.14 105.41) (size 2.54 2.54) (stroke (width 0) (type default) ) (uuid "1924ae31-5d9d-423b-afee-4c78f833b995") ) (bus_entry (at 476.25 448.31) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "1ee727d1-7776-41fb-bd04-dcc865b10100") ) (bus_entry (at 81.28 434.34) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "214fca11-41d3-4323-93db-073df7bd1138") ) (bus_entry (at 309.88 419.1) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "219f76e7-a6b3-49b0-8ee3-175bd3a81728") ) (bus_entry (at 81.28 424.18) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "25903b1a-d6a1-4591-8fcb-fe5642bb308f") ) (bus_entry (at 309.88 426.72) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "284ebe06-b564-4de0-a900-ac1e29cb247a") ) (bus_entry (at 198.12 78.74) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "28992f98-d61e-49ca-b86d-9e07425792f5") ) (bus_entry (at 81.28 419.1) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "32b70061-730e-44f7-be3d-98e9f3f63669") ) (bus_entry (at 309.88 193.04) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "34634f7c-b71d-4fef-ab80-0fe44434fbdd") ) (bus_entry (at 247.65 105.41) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "352c4f93-81b7-4815-bdca-8c68642e68a5") ) (bus_entry (at 358.14 331.47) (size 2.54 2.54) (stroke (width 0) (type default) ) (uuid "390a3029-402d-4e1e-b0a8-6b6e4d5a6f1e") ) (bus_entry (at 129.54 102.87) (size 2.54 2.54) (stroke (width 0) (type default) ) (uuid "3db6ef2d-42b9-42f7-9a8f-c03e646ff9e6") ) (bus_entry (at 309.88 195.58) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "3eea14e0-0f45-4011-b952-9a59976b2f40") ) (bus_entry (at 81.28 205.74) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "41eda9a5-d8cb-4e36-83fc-f7039f05596b") ) (bus_entry (at 198.12 317.5) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "4634a912-9ab4-4310-98c4-d440a41613b5") ) (bus_entry (at 309.88 200.66) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "4cb7eb8f-c877-4e97-8d07-6f4eaf6f4a53") ) (bus_entry (at 358.14 448.31) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "5037df78-9d67-4e74-b591-07fac5a02cde") ) (bus_entry (at 309.88 431.8) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "5075c98b-95a2-4d59-97f7-1a6c14df4964") ) (bus_entry (at 247.65 217.17) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "53d78133-c105-4d5b-8580-6f5b15c75a69") ) (bus_entry (at 81.28 203.2) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "5fd90418-c571-4319-b813-56d57879cee4") ) (bus_entry (at 426.72 86.36) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "609903e3-3748-4fe4-8238-f9b14efabe80") ) (bus_entry (at 426.72 88.9) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "60e5a64f-5799-4eb5-91c9-c7fe0ee1d123") ) (bus_entry (at 198.12 312.42) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "6185e1cc-0bf8-488e-ba6d-0107bfbcfc6c") ) (bus_entry (at 198.12 86.36) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "64f0628f-f2db-4140-80d3-d333904ccde9") ) (bus_entry (at 358.14 217.17) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "67523f0e-dc98-429a-ac85-c21464d93ae7") ) (bus_entry (at 81.28 195.58) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "69230cfa-be7a-490a-8acb-a93f888f83fe") ) (bus_entry (at 476.25 102.87) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "6a373aa9-51d0-4822-924e-7545c6f767c5") ) (bus_entry (at 426.72 83.82) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "6e533ab7-f6c1-4f67-83e6-29226327baeb") ) (bus_entry (at 198.12 299.72) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "6ec6fbd8-dd8d-469b-b6b7-30d37acd95cb") ) (bus_entry (at 198.12 314.96) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "6f80e4b5-2ad2-42f0-aed7-c2366161e467") ) (bus_entry (at 198.12 71.12) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "706d05a7-f538-41d2-88d6-9e4cc66b30e7") ) (bus_entry (at 81.28 429.26) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "724897b7-5e99-432e-b871-1a08c0523621") ) (bus_entry (at 309.88 198.12) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "7446640d-291d-4256-b5bc-956870ff956b") ) (bus_entry (at 309.88 205.74) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "76538cda-a91b-4189-86b5-0f283bb7c1c7") ) (bus_entry (at 129.54 331.47) (size 2.54 2.54) (stroke (width 0) (type default) ) (uuid "7982d633-7b67-41bf-9bf7-825488cd919f") ) (bus_entry (at 426.72 304.8) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "7a03bbbc-7e76-440f-a4f6-24717f6d26f6") ) (bus_entry (at 198.12 76.2) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "7da5651e-7b94-49b4-996e-54a3c57f8ee9") ) (bus_entry (at 426.72 302.26) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "7f534ae7-1bb0-455d-82d4-366ee0db43c2") ) (bus_entry (at 426.72 299.72) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "806ef9cf-e281-4727-a616-9423cd3568fa") ) (bus_entry (at 476.25 331.47) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "82ba2e5c-1c92-4001-bc85-7ea234b53a12") ) (bus_entry (at 358.14 219.71) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "8741dca1-5033-4f0b-9e66-accef206ee5a") ) (bus_entry (at 476.25 334.01) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "888295f9-7c6b-4a9d-b768-d53bfff3946a") ) (bus_entry (at 426.72 81.28) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "890be263-5f44-4b50-a370-424308b7ba9d") ) (bus_entry (at 81.28 426.72) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "8b367212-c6c0-4cf0-8811-b102ea46661c") ) (bus_entry (at 247.65 331.47) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "918e9527-e51b-4f0d-90eb-a7f0e5e55387") ) (bus_entry (at 309.88 434.34) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "922ff8fb-25c3-4c09-b144-0a9382656dcd") ) (bus_entry (at 81.28 193.04) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "92ae084d-9467-4799-bd3b-c035a7bc3f97") ) (bus_entry (at 198.12 302.26) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "934c1da2-17ae-4ffa-ac70-41d78ca92f69") ) (bus_entry (at 358.14 334.01) (size 2.54 2.54) (stroke (width 0) (type default) ) (uuid "944dc778-62df-490f-9cc1-252d550bda15") ) (bus_entry (at 81.28 187.96) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "995b6a49-f126-4504-a37e-13381f5c1c6c") ) (bus_entry (at 198.12 88.9) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "9a6b96fa-ee39-494d-9fb6-fef2eb421ab1") ) (bus_entry (at 198.12 307.34) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "a0962edb-af98-4aa4-a83d-39bcc5bae453") ) (bus_entry (at 198.12 73.66) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "a1cbf1d2-2a68-4b36-9302-00ee9ec06cfa") ) (bus_entry (at 309.88 424.18) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "a48fa3af-ae71-41b0-a2fe-7dc56708f29f") ) (bus_entry (at 81.28 421.64) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "a501aafc-6db3-4a06-9246-07f00e761d96") ) (bus_entry (at 426.72 314.96) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "a7f91833-a946-42e3-85f3-63115bd6c437") ) (bus_entry (at 81.28 190.5) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "aace96be-db3f-4af9-8b20-5707c1065ed7") ) (bus_entry (at 309.88 190.5) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "ab70c9c7-edae-4af9-9d73-be57b1f7b3d3") ) (bus_entry (at 247.65 445.77) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "acd9d09c-9d1d-49b0-a9c6-4d8b17a7834b") ) (bus_entry (at 198.12 309.88) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "ae27e618-a7cf-4dba-a03a-929a4ac4cab4") ) (bus_entry (at 426.72 309.88) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "b5e63f88-504c-475f-af3c-05fe755accd8") ) (bus_entry (at 129.54 219.71) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "b9f5c9eb-b0ce-4ce0-b83f-8c05453a87d6") ) (bus_entry (at 81.28 431.8) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "bc51ece9-f92b-481d-af0d-172772be1441") ) (bus_entry (at 309.88 429.26) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "bd0b7975-ddab-4e40-898d-cd37217f7208") ) (bus_entry (at 309.88 203.2) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "bd221901-1740-4365-851e-53acde46dc17") ) (bus_entry (at 476.25 217.17) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "bd4c5247-d62c-486d-b646-0fe084daf467") ) (bus_entry (at 198.12 83.82) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "bf275f24-23e5-4ab6-829f-776c48e57c57") ) (bus_entry (at 129.54 217.17) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "c2002597-dbf8-41c0-9a84-96f287f2682c") ) (bus_entry (at 476.25 219.71) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "c4010031-70bb-4c91-8069-255405425df9") ) (bus_entry (at 476.25 445.77) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "c67e2838-079b-4a19-9bcd-8b5c5d6bff00") ) (bus_entry (at 358.14 102.87) (size 2.54 2.54) (stroke (width 0) (type default) ) (uuid "c8187edf-89a5-4111-8624-f5c1952078fc") ) (bus_entry (at 247.65 334.01) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "cbac0eb0-649d-442d-90d7-0dcc315e698d") ) (bus_entry (at 198.12 304.8) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "d0dfb795-8dcd-4d77-9f1d-0e0abe2b4200") ) (bus_entry (at 247.65 102.87) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "d3337f52-30a2-4216-9286-b367257ad977") ) (bus_entry (at 129.54 445.77) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "d487ebe2-c829-4b98-8a2b-7122639fcace") ) (bus_entry (at 129.54 334.01) (size 2.54 2.54) (stroke (width 0) (type default) ) (uuid "d501274b-3328-4ee0-a03f-d8601bf769c1") ) (bus_entry (at 309.88 187.96) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "d6f51aa7-949b-4c0e-9431-9ef7fd6c538c") ) (bus_entry (at 309.88 421.64) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "d8241514-a06f-4380-8cd1-304189eed265") ) (bus_entry (at 426.72 73.66) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "d84b431f-b61c-4b82-ac86-65b798f569f3") ) (bus_entry (at 247.65 219.71) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "dc9654e1-1a83-4f54-bee0-aa0c7d81c470") ) (bus_entry (at 198.12 81.28) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "df7173bf-0b57-40e0-94da-89796d7dab2e") ) (bus_entry (at 81.28 200.66) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "e002106e-d698-46e7-aab3-22866fce1541") ) (bus_entry (at 309.88 416.56) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "e7c1d675-7d65-402e-818f-347677a76d92") ) (bus_entry (at 426.72 312.42) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "f314039c-075d-4da7-9c6b-66220fab9e8b") ) (bus_entry (at 358.14 445.77) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "f32b3387-3e3b-4954-b927-e736acb86202") ) (bus_entry (at 426.72 76.2) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "f406cf8d-6b12-4931-8835-b7f5a7c1ae27") ) (bus_entry (at 426.72 71.12) (size -2.54 2.54) (stroke (width 0) (type default) ) (uuid "f902717e-0b6f-4c46-b155-156aea143bf0") ) (bus_entry (at 81.28 416.56) (size 2.54 -2.54) (stroke (width 0) (type default) ) (uuid "fbe9d476-3263-4b98-81b9-b548ebdf9ac9") ) (wire (pts (xy 264.16 445.77) (xy 300.99 445.77) ) (stroke (width 0) (type default) ) (uuid "002c6191-d4e6-4a1c-81a2-85b8c76130f2") ) (bus (pts (xy 312.42 198.12) (xy 312.42 195.58) ) (stroke (width 0) (type default) ) (uuid "0063ec75-6054-4972-bf73-c7c376f82b07") ) (wire (pts (xy 35.56 102.87) (xy 72.39 102.87) ) (stroke (width 0) (type default) ) (uuid "01278422-9379-4b68-a449-bfc22baca5af") ) (wire (pts (xy 48.26 360.68) (xy 48.26 370.84) ) (stroke (width 0) (type default) ) (uuid "01b7cc24-a1cb-49dd-af61-c634a9772337") ) (bus (pts (xy 478.79 102.87) (xy 478.79 100.33) ) (stroke (width 0) (type default) ) (uuid "01c641ef-7939-449c-a2b1-feec27ecd96a") ) (wire (pts (xy 264.16 331.47) (xy 264.16 358.14) ) (stroke (width 0) (type default) ) (uuid "027115bc-c59d-49a1-8994-ee97a7cb1f3d") ) (wire (pts (xy 149.86 152.4) (xy 149.86 217.17) ) (stroke (width 0) (type default) ) (uuid "030e0adf-4dc4-4019-bf74-9063948d8590") ) (wire (pts (xy 266.7 477.52) (xy 266.7 450.85) ) (stroke (width 0) (type default) ) (uuid "04084a59-520a-410b-965d-34b8f44301a2") ) (wire (pts (xy 186.69 107.95) (xy 152.4 107.95) ) (stroke (width 0) (type default) ) (uuid "052fc93d-0335-4c0d-b2b2-d4ac883aa8ff") ) (wire (pts (xy 256.54 110.49) (xy 300.99 110.49) ) (stroke (width 0) (type default) ) (uuid "0635a107-c436-4f48-a998-3af53069e480") ) (wire (pts (xy 378.46 152.4) (xy 378.46 217.17) ) (stroke (width 0) (type default) ) (uuid "0638a264-5818-4fe9-9a72-eb0de9d378e6") ) (wire (pts (xy 147.32 334.01) (xy 147.32 448.31) ) (stroke (width 0) (type default) ) (uuid "06878f89-3365-46e8-b2a1-5976f456e97b") ) (wire (pts (xy 212.09 445.77) (xy 214.63 445.77) ) (stroke (width 0) (type default) ) (uuid "07c25380-ef1d-4c60-bbc4-981672e3ac42") ) (wire (pts (xy 292.1 187.96) (xy 309.88 187.96) ) (stroke (width 0) (type default) ) (uuid "07f0888e-14c7-418b-9588-3623aebb2454") ) (bus (pts (xy 250.19 414.02) (xy 250.19 331.47) ) (stroke (width 0) (type default) ) (uuid "08a574c5-f963-4337-8233-2adc3151eb1f") ) (wire (pts (xy 375.92 105.41) (xy 415.29 105.41) ) (stroke (width 0) (type default) ) (uuid "08d6b2e1-bd5a-4f9f-bec9-05d613cad9ef") ) (wire (pts (xy 142.24 224.79) (xy 142.24 339.09) ) (stroke (width 0) (type default) ) (uuid "0ad48709-3529-4c9e-a6e6-26a56850f20f") ) (wire (pts (xy 375.92 73.66) (xy 375.92 29.21) ) (stroke (width 0) (type default) ) (uuid "0b546f54-1c4b-4e7d-b855-88b2e16f7f41") ) (wire (pts (xy 406.4 78.74) (xy 424.18 78.74) ) (stroke (width 0) (type default) ) (uuid "0ba8034e-3c32-486b-905e-999809cd2062") ) (wire (pts (xy 35.56 129.54) (xy 149.86 129.54) ) (stroke (width 0) (type default) ) (uuid "0d118f0e-5c49-41e2-9097-395f7a14e1e6") ) (wire (pts (xy 370.84 453.39) (xy 370.84 482.6) ) (stroke (width 0) (type default) ) (uuid "0d4fb771-b1af-4619-bc49-72c272fb5fc3") ) (wire (pts (xy 292.1 198.12) (xy 309.88 198.12) ) (stroke (width 0) (type default) ) (uuid "0dc5c3b4-d891-4680-990c-c9c42a4eac4b") ) (wire (pts (xy 113.03 219.71) (xy 129.54 219.71) ) (stroke (width 0) (type default) ) (uuid "0e79532f-b83f-4e12-86bf-5192499de59d") ) (bus (pts (xy 426.72 78.74) (xy 426.72 81.28) ) (stroke (width 0) (type default) ) (uuid "0e9442dc-b855-496e-ba78-f78ce9de2c42") ) (wire (pts (xy 147.32 105.41) (xy 147.32 219.71) ) (stroke (width 0) (type default) ) (uuid "0e9bb14d-31a0-49c1-9a4f-8facdd9721c0") ) (wire (pts (xy 259.08 336.55) (xy 259.08 363.22) ) (stroke (width 0) (type default) ) (uuid "0ea56096-8d47-4df2-9a45-0b0b380a5450") ) (wire (pts (xy 63.5 198.12) (xy 81.28 198.12) ) (stroke (width 0) (type default) ) (uuid "0eb634fc-88ca-4f29-99f0-b26f5b017e13") ) (wire (pts (xy 373.38 450.85) (xy 373.38 477.52) ) (stroke (width 0) (type default) ) (uuid "1060de4e-56b3-4cc6-bfd1-1082b4a9d035") ) (wire (pts (xy 375.92 334.01) (xy 415.29 334.01) ) (stroke (width 0) (type default) ) (uuid "120a08f9-a0dc-44a2-966d-fac58399cc75") ) (wire (pts (xy 113.03 102.87) (xy 129.54 102.87) ) (stroke (width 0) (type default) ) (uuid "1259f015-1c5b-4a3e-902a-6884827a91eb") ) (bus (pts (xy 132.08 414.02) (xy 132.08 443.23) ) (stroke (width 0) (type default) ) (uuid "14725122-8473-4609-b7aa-d0216a254d90") ) (wire (pts (xy 227.33 331.47) (xy 247.65 331.47) ) (stroke (width 0) (type default) ) (uuid "1577e5e0-62d9-40a9-91fc-9311bc5e74e4") ) (wire (pts (xy 97.79 217.17) (xy 100.33 217.17) ) (stroke (width 0) (type default) ) (uuid "157bdeff-f94e-497d-9c72-be2eaf6680fe") ) (wire (pts (xy 152.4 107.95) (xy 152.4 134.62) ) (stroke (width 0) (type default) ) (uuid "168e3d32-d9bf-4e24-8935-d428c44bf957") ) (bus (pts (xy 132.08 443.23) (xy 132.08 445.77) ) (stroke (width 0) (type default) ) (uuid "16eb414b-5870-455d-9563-9d711b7a16ee") ) (bus (pts (xy 426.72 299.72) (xy 426.72 302.26) ) (stroke (width 0) (type default) ) (uuid "16f2809c-49be-455f-ad61-8cee7c6a965b") ) (bus (pts (xy 83.82 185.42) (xy 132.08 185.42) ) (stroke (width 0) (type default) ) (uuid "17684b26-ccb4-46a7-99df-ca0036df0680") ) (wire (pts (xy 27.94 224.79) (xy 72.39 224.79) ) (stroke (width 0) (type default) ) (uuid "17a248cc-7343-4e99-b5c9-3e54148cd503") ) (wire (pts (xy 264.16 358.14) (xy 378.46 358.14) ) (stroke (width 0) (type default) ) (uuid "18318779-bf57-4b9c-a7d7-9de098039be6") ) (wire (pts (xy 149.86 102.87) (xy 149.86 129.54) ) (stroke (width 0) (type default) ) (uuid "1842414e-b7e7-4c2f-b93c-01bbda00da86") ) (wire (pts (xy 186.69 453.39) (xy 142.24 453.39) ) (stroke (width 0) (type default) ) (uuid "1a724941-9dc8-4169-94bf-f5ff4132a503") ) (wire (pts (xy 341.63 102.87) (xy 358.14 102.87) ) (stroke (width 0) (type default) ) (uuid "1b0ce502-243b-4f13-9af6-c8decc3e1190") ) (wire (pts (xy 373.38 284.48) (xy 381 284.48) ) (stroke (width 0) (type default) ) (uuid "1c0aa888-7f90-497d-a189-da9216851cfa") ) (bus (pts (xy 198.12 78.74) (xy 198.12 81.28) ) (stroke (width 0) (type default) ) (uuid "1d41c7de-02fc-4cc5-81b8-e5dbcb8afa9a") ) (wire (pts (xy 25.4 248.92) (xy 30.48 248.92) ) (stroke (width 0) (type default) ) (uuid "1d86e27a-bdf2-49ad-8493-1f09d2e6f74b") ) (wire (pts (xy 30.48 134.62) (xy 144.78 134.62) ) (stroke (width 0) (type default) ) (uuid "1ebe052d-6468-468e-a83a-2f8b63e2ed04") ) (bus (pts (xy 198.12 302.26) (xy 198.12 304.8) ) (stroke (width 0) (type default) ) (uuid "1fc10e5a-8988-45b1-8c01-add472cf060c") ) (bus (pts (xy 198.12 309.88) (xy 198.12 312.42) ) (stroke (width 0) (type default) ) (uuid "20a6b38c-c9fd-4ec3-8e0c-69174d5c29eb") ) (wire (pts (xy 261.62 105.41) (xy 300.99 105.41) ) (stroke (width 0) (type default) ) (uuid "217ded17-8c9c-4644-913e-f1a4cdf83486") ) (wire (pts (xy 292.1 421.64) (xy 309.88 421.64) ) (stroke (width 0) (type default) ) (uuid "2185ade3-8643-4b5c-a9db-959080fe6fef") ) (wire (pts (xy 30.48 336.55) (xy 30.48 363.22) ) (stroke (width 0) (type default) ) (uuid "21e36813-1ab4-48e5-a852-b5bece1a572a") ) (bus (pts (xy 478.79 71.12) (xy 426.72 71.12) ) (stroke (width 0) (type default) ) (uuid "22ab3d1b-9e36-4d3b-86f0-3703b69b05a2") ) (wire (pts (xy 33.02 448.31) (xy 33.02 482.6) ) (stroke (width 0) (type default) ) (uuid "234cafd4-ec90-4da0-b80c-a9caaed1b9fc") ) (wire (pts (xy 408.94 295.91) (xy 408.94 365.76) ) (stroke (width 0) (type default) ) (uuid "234d3c6c-4dc7-4144-bf90-ed020c64fe91") ) (wire (pts (xy 30.48 363.22) (xy 144.78 363.22) ) (stroke (width 0) (type default) ) (uuid "23759e24-5bac-4230-a92f-c27fcafea221") ) (wire (pts (xy 266.7 248.92) (xy 373.38 248.92) ) (stroke (width 0) (type default) ) (uuid "24c607af-ca08-4fc5-b5d4-bbffff54e95a") ) (wire (pts (xy 149.86 472.44) (xy 264.16 472.44) ) (stroke (width 0) (type default) ) (uuid "259065b1-1bef-4c12-b295-7a55bb5d0898") ) (bus (pts (xy 478.79 443.23) (xy 478.79 445.77) ) (stroke (width 0) (type default) ) (uuid "25ce7204-78e8-49a2-9a9b-9dca71640b2f") ) (wire (pts (xy 375.92 448.31) (xy 415.29 448.31) ) (stroke (width 0) (type default) ) (uuid "267bab19-cf1a-45fe-8904-f56d9ff082b3") ) (wire (pts (xy 177.8 76.2) (xy 195.58 76.2) ) (stroke (width 0) (type default) ) (uuid "27eabd6b-2240-4f7b-be7d-5966b1a26711") ) (wire (pts (xy 406.4 302.26) (xy 424.18 302.26) ) (stroke (width 0) (type default) ) (uuid "281f2a28-cfa0-493f-b0ac-64eb8319c05a") ) (bus (pts (xy 312.42 187.96) (xy 312.42 185.42) ) (stroke (width 0) (type default) ) (uuid "28594db0-980c-4ccb-a097-5ebcb45a7bb8") ) (bus (pts (xy 360.68 105.41) (xy 360.68 107.95) ) (stroke (width 0) (type default) ) (uuid "295052ca-ed1f-40d6-9ced-0e6bf312e9a1") ) (bus (pts (xy 426.72 304.8) (xy 426.72 307.34) ) (stroke (width 0) (type default) ) (uuid "2989ecdd-a2fb-46b4-b282-b28b76e5eb75") ) (bus (pts (xy 478.79 185.42) (xy 478.79 102.87) ) (stroke (width 0) (type default) ) (uuid "29f8eaa0-8940-4c1b-8d6f-956517b6cc02") ) (bus (pts (xy 83.82 426.72) (xy 83.82 424.18) ) (stroke (width 0) (type default) ) (uuid "2acc212a-f6e1-4ca3-a82b-81345a8b37a3") ) (bus (pts (xy 250.19 443.23) (xy 250.19 445.77) ) (stroke (width 0) (type default) ) (uuid "2ae8ccdc-478b-4db9-b522-eb253d88fbc0") ) (bus (pts (xy 250.19 331.47) (xy 250.19 328.93) ) (stroke (width 0) (type default) ) (uuid "2b01362e-d432-4261-8e49-78575f93058c") ) (wire (pts (xy 177.8 307.34) (xy 195.58 307.34) ) (stroke (width 0) (type default) ) (uuid "2c5a3afc-c081-4286-a87d-ed6cbabd0f6f") ) (wire (pts (xy 227.33 105.41) (xy 247.65 105.41) ) (stroke (width 0) (type default) ) (uuid "2c5bad9b-33d4-471c-b737-c19cd5c67da1") ) (wire (pts (xy 177.8 81.28) (xy 195.58 81.28) ) (stroke (width 0) (type default) ) (uuid "2d40e57a-ffa9-4615-b4a0-3f2619b9f1c7") ) (wire (pts (xy 370.84 224.79) (xy 370.84 339.09) ) (stroke (width 0) (type default) ) (uuid "2d9d3a0f-bc84-4f78-a325-9f238c3cbf2a") ) (bus (pts (xy 198.12 86.36) (xy 198.12 88.9) ) (stroke (width 0) (type default) ) (uuid "2dae0063-55dd-403e-b6f2-a33e93cfeadd") ) (wire (pts (xy 142.24 137.16) (xy 142.24 224.79) ) (stroke (width 0) (type default) ) (uuid "2e62622c-956c-4e8c-9a98-8b173d21be51") ) (wire (pts (xy 152.4 73.66) (xy 147.32 73.66) ) (stroke (width 0) (type default) ) (uuid "2e89348d-8e58-43eb-ab00-f8768e56da8c") ) (wire (pts (xy 25.4 477.52) (xy 30.48 477.52) ) (stroke (width 0) (type default) ) (uuid "2e94b868-e1c4-4371-ac98-be77312d9c15") ) (wire (pts (xy 375.92 448.31) (xy 375.92 474.98) ) (stroke (width 0) (type default) ) (uuid "2f12daf8-c710-430c-99f0-b5a53453664d") ) (wire (pts (xy 227.33 102.87) (xy 247.65 102.87) ) (stroke (width 0) (type default) ) (uuid "2f14214b-4837-4e0f-b865-4fb93e21b779") ) (wire (pts (xy 294.64 410.21) (xy 294.64 480.06) ) (stroke (width 0) (type default) ) (uuid "2f700a5a-a891-4107-bcf7-23632051eca0") ) (wire (pts (xy 381 73.66) (xy 375.92 73.66) ) (stroke (width 0) (type default) ) (uuid "2fa141c2-b031-4931-b314-42c817fa7fcf") ) (bus (pts (xy 250.19 71.12) (xy 198.12 71.12) ) (stroke (width 0) (type default) ) (uuid "3130c320-43ee-4de6-a3e7-ab721cb8aec5") ) (wire (pts (xy 33.02 187.96) (xy 33.02 143.51) ) (stroke (width 0) (type default) ) (uuid "3249a1a2-8ee3-468e-bf31-94bfad73db3f") ) (wire (pts (xy 149.86 243.84) (xy 264.16 243.84) ) (stroke (width 0) (type default) ) (uuid "32f96ef9-bf60-4583-94e1-2ebbf8c512d9") ) (wire (pts (xy 326.39 331.47) (xy 328.93 331.47) ) (stroke (width 0) (type default) ) (uuid "3340b4b6-589f-423f-b0e5-fbd2743e5323") ) (wire (pts (xy 177.8 86.36) (xy 195.58 86.36) ) (stroke (width 0) (type default) ) (uuid "33a05935-fc9e-4507-a5c6-ac71615b2342") ) (wire (pts (xy 144.78 55.88) (xy 144.78 134.62) ) (stroke (width 0) (type default) ) (uuid "33ac187f-c0a1-49a4-bce6-1c7ca361c756") ) (bus (pts (xy 198.12 73.66) (xy 198.12 76.2) ) (stroke (width 0) (type default) ) (uuid "33c4e3af-4e2b-4199-aca7-02cd0ca24240") ) (wire (pts (xy 406.4 307.34) (xy 424.18 307.34) ) (stroke (width 0) (type default) ) (uuid "3698f45b-9c2e-49f5-89b5-977d3a54fb36") ) (wire (pts (xy 227.33 448.31) (xy 247.65 448.31) ) (stroke (width 0) (type default) ) (uuid "38b8e000-d25b-4d32-8d55-ffd2ec5064fa") ) (wire (pts (xy 375.92 474.98) (xy 391.16 474.98) ) (stroke (width 0) (type default) ) (uuid "394d87b2-788f-430c-b1b0-764e258c4cc6") ) (wire (pts (xy 30.48 170.18) (xy 30.48 248.92) ) (stroke (width 0) (type default) ) (uuid "39747976-96ad-416a-ba22-a48eda950b2a") ) (wire (pts (xy 190.5 266.7) (xy 264.16 266.7) ) (stroke (width 0) (type default) ) (uuid "39802d0f-a038-4208-acd5-8cfeae11d370") ) (wire (pts (xy 261.62 25.4) (xy 261.62 105.41) ) (stroke (width 0) (type default) ) (uuid "3a4578f4-1e75-4a06-b472-71e65ac31544") ) (wire (pts (xy 38.1 450.85) (xy 38.1 477.52) ) (stroke (width 0) (type default) ) (uuid "3ab5dde2-676c-4021-985c-10a856f01e52") ) (wire (pts (xy 292.1 190.5) (xy 309.88 190.5) ) (stroke (width 0) (type default) ) (uuid "3ac701df-7005-480a-9a4b-44d640736ff5") ) (wire (pts (xy 144.78 450.85) (xy 186.69 450.85) ) (stroke (width 0) (type default) ) (uuid "3aed96ad-4be3-435e-b8b2-ff0841f4ea47") ) (wire (pts (xy 264.16 102.87) (xy 300.99 102.87) ) (stroke (width 0) (type default) ) (uuid "3b311190-e0d7-40d8-a859-8520bd3b61b5") ) (wire (pts (xy 370.84 137.16) (xy 408.94 137.16) ) (stroke (width 0) (type default) ) (uuid "3dcf49c8-9d98-44be-860c-1a256a6c92fe") ) (bus (pts (xy 478.79 414.02) (xy 478.79 331.47) ) (stroke (width 0) (type default) ) (uuid "3e95eae2-00ac-41bd-907a-47a75f82f2da") ) (wire (pts (xy 177.8 88.9) (xy 195.58 88.9) ) (stroke (width 0) (type default) ) (uuid "3e9b8f4b-f832-46e7-b33d-725a6110d91c") ) (wire (pts (xy 147.32 334.01) (xy 186.69 334.01) ) (stroke (width 0) (type default) ) (uuid "3f87a181-4a36-48fb-bb9a-3a048830cdc0") ) (wire (pts (xy 63.5 429.26) (xy 81.28 429.26) ) (stroke (width 0) (type default) ) (uuid "3fc6a6d7-1ed7-4f97-885b-3648c8c1af56") ) (wire (pts (xy 381 302.26) (xy 375.92 302.26) ) (stroke (width 0) (type default) ) (uuid "3fd6ac21-cd63-4356-a633-352f77048c5b") ) (wire (pts (xy 76.2 381) (xy 149.86 381) ) (stroke (width 0) (type default) ) (uuid "407ab75b-7863-43ea-b1f6-b2c213424b06") ) (bus (pts (xy 478.79 185.42) (xy 478.79 214.63) ) (stroke (width 0) (type default) ) (uuid "40e5f8a3-da80-4060-829a-c2c66e65e11a") ) (bus (pts (xy 83.82 429.26) (xy 83.82 426.72) ) (stroke (width 0) (type default) ) (uuid "40f69885-81f0-4c29-a34d-0ba003b9efa7") ) (wire (pts (xy 227.33 219.71) (xy 247.65 219.71) ) (stroke (width 0) (type default) ) (uuid "4159fd85-2cec-4030-ab4d-7925eef46198") ) (wire (pts (xy 72.39 222.25) (xy 38.1 222.25) ) (stroke (width 0) (type default) ) (uuid "4173350f-37aa-445f-aec5-876314905fcb") ) (wire (pts (xy 180.34 295.91) (xy 180.34 365.76) ) (stroke (width 0) (type default) ) (uuid "41905fc6-574f-4742-8756-3b2aef5fd1d7") ) (wire (pts (xy 48.26 132.08) (xy 48.26 142.24) ) (stroke (width 0) (type default) ) (uuid "41f10114-d125-4b56-bfe6-a5042fa43df5") ) (wire (pts (xy 440.69 445.77) (xy 443.23 445.77) ) (stroke (width 0) (type default) ) (uuid "41f61f4d-3c62-4b10-9d77-60ff9ec764b8") ) (wire (pts (xy 147.32 219.71) (xy 147.32 246.38) ) (stroke (width 0) (type default) ) (uuid "42ed94db-d766-45bb-91de-62012c1471d4") ) (bus (pts (xy 83.82 198.12) (xy 83.82 195.58) ) (stroke (width 0) (type default) ) (uuid "43a1f750-dcb7-4966-b3a6-125adb06319d") ) (wire (pts (xy 147.32 29.21) (xy 152.4 29.21) ) (stroke (width 0) (type default) ) (uuid "43dc8a82-bc23-4750-91e4-c4fbca181527") ) (wire (pts (xy 212.09 331.47) (xy 214.63 331.47) ) (stroke (width 0) (type default) ) (uuid "4408c368-e969-4ab9-86e3-15045a6c2311") ) (wire (pts (xy 326.39 217.17) (xy 328.93 217.17) ) (stroke (width 0) (type default) ) (uuid "441e076f-161d-4506-87c7-6833a54fe9a7") ) (wire (pts (xy 35.56 38.1) (xy 35.56 102.87) ) (stroke (width 0) (type default) ) (uuid "449d12a4-4892-4dfb-8085-e34ad59680dc") ) (wire (pts (xy 186.69 331.47) (xy 149.86 331.47) ) (stroke (width 0) (type default) ) (uuid "44c8e208-7c5c-428a-ae8e-4201543d5e86") ) (wire (pts (xy 256.54 339.09) (xy 256.54 453.39) ) (stroke (width 0) (type default) ) (uuid "44f82b25-8ec8-44b0-b059-f8ce373e88b0") ) (wire (pts (xy 33.02 334.01) (xy 33.02 360.68) ) (stroke (width 0) (type default) ) (uuid "453b46a1-130e-41b4-bf14-260b81301a6d") ) (bus (pts (xy 312.42 421.64) (xy 312.42 419.1) ) (stroke (width 0) (type default) ) (uuid "455579de-d6de-4630-bab8-8ef4c9ced9df") ) (bus (pts (xy 198.12 314.96) (xy 198.12 317.5) ) (stroke (width 0) (type default) ) (uuid "4654a32d-89b2-4070-bca2-faec552f121e") ) (wire (pts (xy 152.4 336.55) (xy 152.4 363.22) ) (stroke (width 0) (type default) ) (uuid "46681fdf-92bc-4f49-8e3f-4c14930a49f4") ) (wire (pts (xy 256.54 251.46) (xy 294.64 251.46) ) (stroke (width 0) (type default) ) (uuid "466978d2-9ec0-436a-a411-8678ca256391") ) (wire (pts (xy 38.1 416.56) (xy 33.02 416.56) ) (stroke (width 0) (type default) ) (uuid "46a75452-9fb9-44dd-928b-ea12e00d48d2") ) (bus (pts (xy 426.72 309.88) (xy 426.72 312.42) ) (stroke (width 0) (type default) ) (uuid "476c43c8-a36b-407a-8b18-0319808bc146") ) (wire (pts (xy 381 134.62) (xy 482.6 134.62) ) (stroke (width 0) (type default) ) (uuid "48254857-03c7-4325-a0bb-d1f769689e50") ) (wire (pts (xy 415.29 336.55) (xy 381 336.55) ) (stroke (width 0) (type default) ) (uuid "4835cf09-0318-4d76-8b15-76d30dd5033c") ) (wire (pts (xy 38.1 477.52) (xy 144.78 477.52) ) (stroke (width 0) (type default) ) (uuid "48d136ef-b27b-4275-80eb-56c0b591657d") ) (wire (pts (xy 264.16 129.54) (xy 378.46 129.54) ) (stroke (width 0) (type default) ) (uuid "4904b480-cf10-4753-8949-a3650b111e29") ) (wire (pts (xy 406.4 81.28) (xy 424.18 81.28) ) (stroke (width 0) (type default) ) (uuid "49316c47-825b-463c-b363-bcc3f985552b") ) (wire (pts (xy 144.78 248.92) (xy 259.08 248.92) ) (stroke (width 0) (type default) ) (uuid "4a13a925-52ba-4bc4-829d-c6b30a598ad8") ) (wire (pts (xy 259.08 398.78) (xy 259.08 477.52) ) (stroke (width 0) (type default) ) (uuid "4a96a1c5-78a2-4f25-8b09-709971d27ab2") ) (wire (pts (xy 373.38 284.48) (xy 373.38 363.22) ) (stroke (width 0) (type default) ) (uuid "4aa0344e-bf7f-4d5b-ae75-f0c2cd963306") ) (wire (pts (xy 264.16 217.17) (xy 264.16 243.84) ) (stroke (width 0) (type default) ) (uuid "4b4e89d2-3da3-46bf-b865-67de705570b1") ) (wire (pts (xy 455.93 334.01) (xy 476.25 334.01) ) (stroke (width 0) (type default) ) (uuid "4bbff742-5038-4bc7-a012-c0e7230343a1") ) (bus (pts (xy 360.68 107.95) (xy 360.68 185.42) ) (stroke (width 0) (type default) ) (uuid "4cd1e894-7fdd-41f5-ba3d-9018d16e363b") ) (bus (pts (xy 83.82 424.18) (xy 83.82 421.64) ) (stroke (width 0) (type default) ) (uuid "4d934ab6-7f89-444c-9818-6bfcc836225b") ) (wire (pts (xy 300.99 448.31) (xy 261.62 448.31) ) (stroke (width 0) (type default) ) (uuid "4dbb2f9f-057c-4e04-a46b-317d61a02cb4") ) (bus (pts (xy 312.42 203.2) (xy 312.42 200.66) ) (stroke (width 0) (type default) ) (uuid "4dcf504e-02d5-433e-8223-e9b903e06e6a") ) (wire (pts (xy 149.86 217.17) (xy 186.69 217.17) ) (stroke (width 0) (type default) ) (uuid "4e73034d-75ab-43e4-8ad5-1652b4674381") ) (wire (pts (xy 144.78 450.85) (xy 144.78 477.52) ) (stroke (width 0) (type default) ) (uuid "4edcac4e-bd9c-4f0a-98cd-2601e1ebd1d3") ) (wire (pts (xy 276.86 360.68) (xy 276.86 370.84) ) (stroke (width 0) (type default) ) (uuid "4ee4e17e-1acb-4b61-8346-92031c3070ab") ) (bus (pts (xy 360.68 214.63) (xy 360.68 217.17) ) (stroke (width 0) (type default) ) (uuid "4f19ddd0-e3c4-4bae-83ba-9d891a500292") ) (wire (pts (xy 27.94 110.49) (xy 72.39 110.49) ) (stroke (width 0) (type default) ) (uuid "4f3ae7e7-8746-4bad-9716-8c6159d2b361") ) (bus (pts (xy 360.68 443.23) (xy 360.68 445.77) ) (stroke (width 0) (type default) ) (uuid "50a20ea7-5046-4ebb-97ba-44b629cc8e00") ) (bus (pts (xy 360.68 336.55) (xy 360.68 414.02) ) (stroke (width 0) (type default) ) (uuid "518f468e-7012-4129-b91e-77dbb08fe4ff") ) (bus (pts (xy 312.42 193.04) (xy 312.42 190.5) ) (stroke (width 0) (type default) ) (uuid "528e73e1-d077-4b6a-9902-e7bd86986b7f") ) (wire (pts (xy 341.63 334.01) (xy 358.14 334.01) ) (stroke (width 0) (type default) ) (uuid "52a4dddc-554f-4d85-8a7f-884652178936") ) (bus (pts (xy 83.82 190.5) (xy 83.82 187.96) ) (stroke (width 0) (type default) ) (uuid "52b5dfcd-1067-48c9-b496-94da70f5e7a4") ) (wire (pts (xy 455.93 448.31) (xy 476.25 448.31) ) (stroke (width 0) (type default) ) (uuid "52f73e87-f8a8-4c72-b71c-18d002e5c34a") ) (bus (pts (xy 198.12 312.42) (xy 198.12 314.96) ) (stroke (width 0) (type default) ) (uuid "54b6abda-3c48-46ef-b60b-513b183bf679") ) (wire (pts (xy 66.04 410.21) (xy 66.04 480.06) ) (stroke (width 0) (type default) ) (uuid "54fcdc95-afaa-493c-970f-ac041734dedc") ) (wire (pts (xy 33.02 219.71) (xy 33.02 334.01) ) (stroke (width 0) (type default) ) (uuid "55774c7b-6884-44d5-a047-575c541c6403") ) (bus (pts (xy 83.82 414.02) (xy 132.08 414.02) ) (stroke (width 0) (type default) ) (uuid "55a1e921-64a5-470e-bde1-864e9b6b99ba") ) (wire (pts (xy 25.4 472.44) (xy 35.56 472.44) ) (stroke (width 0) (type default) ) (uuid "57055a54-8732-4294-a607-6cdda3b62e8e") ) (wire (pts (xy 375.92 334.01) (xy 375.92 448.31) ) (stroke (width 0) (type default) ) (uuid "57a9c6de-aec8-4e04-9f31-1094f60bca4b") ) (wire (pts (xy 35.56 331.47) (xy 72.39 331.47) ) (stroke (width 0) (type default) ) (uuid "57fbd4b2-49e4-4259-af8e-66d1ef07b3d0") ) (wire (pts (xy 177.8 73.66) (xy 195.58 73.66) ) (stroke (width 0) (type default) ) (uuid "58de254d-edb9-4707-b7d6-189d875f5d7d") ) (wire (pts (xy 30.48 398.78) (xy 38.1 398.78) ) (stroke (width 0) (type default) ) (uuid "59484aba-bf3f-442d-bcf8-2dde61c40d2c") ) (wire (pts (xy 261.62 132.08) (xy 276.86 132.08) ) (stroke (width 0) (type default) ) (uuid "59c593ec-f36d-4e7b-8aa1-a2f19da88643") ) (bus (pts (xy 198.12 83.82) (xy 198.12 86.36) ) (stroke (width 0) (type default) ) (uuid "5a2717bb-baf8-4745-842d-f7e7d7fbe4a2") ) (wire (pts (xy 256.54 453.39) (xy 300.99 453.39) ) (stroke (width 0) (type default) ) (uuid "5a787212-b5a9-4670-a314-2553f3c96766") ) (wire (pts (xy 304.8 381) (xy 378.46 381) ) (stroke (width 0) (type default) ) (uuid "5a914d4a-ba71-4ab7-acd7-a04a48734e2f") ) (wire (pts (xy 227.33 217.17) (xy 247.65 217.17) ) (stroke (width 0) (type default) ) (uuid "5a97b1e3-d80a-47d4-bd4b-5223d84b611b") ) (bus (pts (xy 250.19 185.42) (xy 250.19 214.63) ) (stroke (width 0) (type default) ) (uuid "5afb9524-98aa-4ee4-8cb7-33b503799926") ) (wire (pts (xy 261.62 360.68) (xy 276.86 360.68) ) (stroke (width 0) (type default) ) (uuid "5bd9e47a-2cb0-4688-beb2-a2b94688e45a") ) (wire (pts (xy 341.63 217.17) (xy 358.14 217.17) ) (stroke (width 0) (type default) ) (uuid "5c33df7a-4fe4-4474-a42d-fd8b00973576") ) (wire (pts (xy 25.4 38.1) (xy 35.56 38.1) ) (stroke (width 0) (type default) ) (uuid "5c52c1b4-6dd3-4986-aef5-697e2a6a2b01") ) (wire (pts (xy 406.4 304.8) (xy 424.18 304.8) ) (stroke (width 0) (type default) ) (uuid "5cc62686-4780-4b52-b956-e89c2aa8bedd") ) (wire (pts (xy 33.02 105.41) (xy 72.39 105.41) ) (stroke (width 0) (type default) ) (uuid "5ccfcc14-f825-406c-a312-0042079b6c9c") ) (wire (pts (xy 341.63 331.47) (xy 358.14 331.47) ) (stroke (width 0) (type default) ) (uuid "5d35c7e0-056b-43da-99c0-8e2569cbac88") ) (wire (pts (xy 261.62 334.01) (xy 261.62 360.68) ) (stroke (width 0) (type default) ) (uuid "5d484cf8-dbba-44d7-aa4b-6771b87f7e39") ) (wire (pts (xy 370.84 339.09) (xy 415.29 339.09) ) (stroke (width 0) (type default) ) (uuid "5d494746-b23d-47d2-bb82-22bc659db2f9") ) (wire (pts (xy 212.09 217.17) (xy 214.63 217.17) ) (stroke (width 0) (type default) ) (uuid "5e11a5d7-b5be-40b8-a22e-703472ce5519") ) (wire (pts (xy 440.69 217.17) (xy 443.23 217.17) ) (stroke (width 0) (type default) ) (uuid "5e51516e-c04d-465e-8dca-6b3bcbbcab14") ) (wire (pts (xy 27.94 339.09) (xy 27.94 453.39) ) (stroke (width 0) (type default) ) (uuid "5ec83977-28bd-4ffe-bb79-14d8a53f9c9a") ) (wire (pts (xy 142.24 339.09) (xy 186.69 339.09) ) (stroke (width 0) (type default) ) (uuid "5f145f67-2c5c-4a6e-9cf8-4d60ee3ab374") ) (wire (pts (xy 256.54 339.09) (xy 300.99 339.09) ) (stroke (width 0) (type default) ) (uuid "5f4cc54e-201b-409d-b6a8-97ff62150fc9") ) (bus (pts (xy 360.68 185.42) (xy 478.79 185.42) ) (stroke (width 0) (type default) ) (uuid "5fbe4c4a-23f4-4fc9-952a-10b3a5240d15") ) (wire (pts (xy 292.1 205.74) (xy 309.88 205.74) ) (stroke (width 0) (type default) ) (uuid "5fc4cd8e-fd98-4edd-8a3d-64232acfe0d4") ) (wire (pts (xy 177.8 314.96) (xy 195.58 314.96) ) (stroke (width 0) (type default) ) (uuid "601a5eae-af7d-409a-af94-0aa7cd82fa70") ) (wire (pts (xy 63.5 421.64) (xy 81.28 421.64) ) (stroke (width 0) (type default) ) (uuid "60217124-e27e-4cd4-8768-27c0fd9f2faa") ) (wire (pts (xy 25.4 243.84) (xy 35.56 243.84) ) (stroke (width 0) (type default) ) (uuid "61e72bdf-58a1-492d-a2ad-218e0e733e18") ) (wire (pts (xy 370.84 365.76) (xy 370.84 453.39) ) (stroke (width 0) (type default) ) (uuid "62089069-45f3-417d-b120-e0b82970edf9") ) (bus (pts (xy 426.72 312.42) (xy 426.72 314.96) ) (stroke (width 0) (type default) ) (uuid "625e84a4-e20e-4e30-bfa0-a98cf0317a77") ) (wire (pts (xy 35.56 445.77) (xy 35.56 472.44) ) (stroke (width 0) (type default) ) (uuid "629027a9-553c-489f-87a4-ebd706433d5d") ) (wire (pts (xy 294.64 181.61) (xy 294.64 251.46) ) (stroke (width 0) (type default) ) (uuid "639fe0d1-1c34-4f8f-a539-13d6ae0799d7") ) (wire (pts (xy 63.5 424.18) (xy 81.28 424.18) ) (stroke (width 0) (type default) ) (uuid "6408c94e-5511-45b5-957c-40938a0c9174") ) (wire (pts (xy 304.8 152.4) (xy 378.46 152.4) ) (stroke (width 0) (type default) ) (uuid "6455cd20-59b7-4cb4-9cc9-8575f37f2e1e") ) (bus (pts (xy 132.08 336.55) (xy 132.08 414.02) ) (stroke (width 0) (type default) ) (uuid "64eaf481-e69b-4ed7-aa6c-2283a09d38de") ) (wire (pts (xy 113.03 331.47) (xy 129.54 331.47) ) (stroke (width 0) (type default) ) (uuid "6503430e-319a-4439-96fd-d055eab8b251") ) (wire (pts (xy 142.24 25.4) (xy 142.24 110.49) ) (stroke (width 0) (type default) ) (uuid "651303a3-f58d-4c8b-9d6f-e99c3eb78f4e") ) (wire (pts (xy 177.8 78.74) (xy 195.58 78.74) ) (stroke (width 0) (type default) ) (uuid "657a5ecf-0ece-4fd3-a31a-81efceeee009") ) (wire (pts (xy 35.56 266.7) (xy 35.56 331.47) ) (stroke (width 0) (type default) ) (uuid "6585f79f-2ab8-474c-aaa2-d9d5ad3cb673") ) (wire (pts (xy 113.03 334.01) (xy 129.54 334.01) ) (stroke (width 0) (type default) ) (uuid "659e0d8a-0d5f-4cea-8bc1-4308a41b0f9f") ) (wire (pts (xy 162.56 25.4) (xy 162.56 27.94) ) (stroke (width 0) (type default) ) (uuid "65b1a491-3ce3-4666-ba01-990210e6cf16") ) (bus (pts (xy 132.08 214.63) (xy 132.08 217.17) ) (stroke (width 0) (type default) ) (uuid "66cd937c-a715-48e2-9b2d-5166c759fa8b") ) (wire (pts (xy 341.63 219.71) (xy 358.14 219.71) ) (stroke (width 0) (type default) ) (uuid "6742638e-9b50-4d54-86a0-d15b1887ff3c") ) (wire (pts (xy 261.62 448.31) (xy 261.62 482.6) ) (stroke (width 0) (type default) ) (uuid "67983da8-dc8d-4648-a4f3-449ef5ca2a74") ) (wire (pts (xy 147.32 105.41) (xy 186.69 105.41) ) (stroke (width 0) (type default) ) (uuid "67df41e1-a798-4687-b184-e9d78f537070") ) (bus (pts (xy 83.82 187.96) (xy 83.82 185.42) ) (stroke (width 0) (type default) ) (uuid "6837c6ec-017e-45ee-b7ed-d80c9171becf") ) (wire (pts (xy 30.48 336.55) (xy 72.39 336.55) ) (stroke (width 0) (type default) ) (uuid "687db7f6-8c3c-4f8f-94b8-fd607b8d7fb2") ) (bus (pts (xy 478.79 214.63) (xy 478.79 217.17) ) (stroke (width 0) (type default) ) (uuid "6beb2ffe-f0ce-49fb-bb9e-f6f80bdb91b4") ) (bus (pts (xy 250.19 102.87) (xy 250.19 100.33) ) (stroke (width 0) (type default) ) (uuid "6c6f89ec-3e60-4219-afaf-57af4e3b7524") ) (wire (pts (xy 373.38 248.92) (xy 482.6 248.92) ) (stroke (width 0) (type default) ) (uuid "6cc7cd1d-08c5-4bc5-b192-61a0dfc9aba6") ) (bus (pts (xy 83.82 193.04) (xy 83.82 190.5) ) (stroke (width 0) (type default) ) (uuid "6e0da75e-692f-44de-ae90-0209138b65c6") ) (wire (pts (xy 264.16 266.7) (xy 264.16 331.47) ) (stroke (width 0) (type default) ) (uuid "6e3e89ca-8fc6-4b36-be83-ce55b8d27e6d") ) (wire (pts (xy 152.4 134.62) (xy 259.08 134.62) ) (stroke (width 0) (type default) ) (uuid "6e41d302-5e52-42e9-8979-7685507f5d4a") ) (wire (pts (xy 149.86 445.77) (xy 186.69 445.77) ) (stroke (width 0) (type default) ) (uuid "6ecfce62-176a-4834-b812-c24e5b293630") ) (wire (pts (xy 375.92 257.81) (xy 381 257.81) ) (stroke (width 0) (type default) ) (uuid "6f721528-bb99-4f19-8697-982cb9d6e26f") ) (wire (pts (xy 292.1 200.66) (xy 309.88 200.66) ) (stroke (width 0) (type default) ) (uuid "6fe59fd7-f1e0-44e1-b9d4-e027c8699e6b") ) (wire (pts (xy 27.94 480.06) (xy 27.94 482.6) ) (stroke (width 0) (type default) ) (uuid "70056b36-b379-44d6-a469-46cb529eedc2") ) (wire (pts (xy 261.62 219.71) (xy 261.62 334.01) ) (stroke (width 0) (type default) ) (uuid "70e57611-41d8-472b-a116-bf33930eba75") ) (wire (pts (xy 27.94 251.46) (xy 27.94 339.09) ) (stroke (width 0) (type default) ) (uuid "70f3ec92-95b2-4e77-8e54-ecf05157a06f") ) (wire (pts (xy 72.39 450.85) (xy 38.1 450.85) ) (stroke (width 0) (type default) ) (uuid "70f75f86-f1be-4a40-8cec-438da91abfa2") ) (bus (pts (xy 132.08 185.42) (xy 250.19 185.42) ) (stroke (width 0) (type default) ) (uuid "71272916-c21c-44b7-91fb-df35f0607115") ) (bus (pts (xy 198.12 304.8) (xy 198.12 307.34) ) (stroke (width 0) (type default) ) (uuid "7164b64c-3153-4ed8-994b-9d1bb500b885") ) (bus (pts (xy 198.12 81.28) (xy 198.12 83.82) ) (stroke (width 0) (type default) ) (uuid "7166091f-f237-4017-815d-72a49cdfd511") ) (wire (pts (xy 406.4 76.2) (xy 424.18 76.2) ) (stroke (width 0) (type default) ) (uuid "71c2cd2d-72d0-4386-bca0-9d5ab3c0523d") ) (wire (pts (xy 35.56 331.47) (xy 35.56 358.14) ) (stroke (width 0) (type default) ) (uuid "7243791b-e76c-4462-9049-2380882cf4b2") ) (wire (pts (xy 378.46 331.47) (xy 378.46 358.14) ) (stroke (width 0) (type default) ) (uuid "724d9c18-7d29-4fab-be87-624b0c6800b8") ) (wire (pts (xy 375.92 219.71) (xy 415.29 219.71) ) (stroke (width 0) (type default) ) (uuid "72c4a1b2-01fd-4977-a3dc-433546386ca7") ) (wire (pts (xy 147.32 302.26) (xy 147.32 257.81) ) (stroke (width 0) (type default) ) (uuid "72d09426-bf99-482d-9c8f-5c3cc7e627ba") ) (wire (pts (xy 406.4 73.66) (xy 424.18 73.66) ) (stroke (width 0) (type default) ) (uuid "73ad5901-a306-4469-91f5-0c4b9094546d") ) (wire (pts (xy 177.8 91.44) (xy 195.58 91.44) ) (stroke (width 0) (type default) ) (uuid "73d1dce1-9e72-4c8b-908d-bc8093831dcb") ) (wire (pts (xy 341.63 445.77) (xy 358.14 445.77) ) (stroke (width 0) (type default) ) (uuid "73e36a68-274e-4e85-9a12-ca68cfd5eb80") ) (bus (pts (xy 132.08 185.42) (xy 132.08 214.63) ) (stroke (width 0) (type default) ) (uuid "747eeefd-a2af-4aa5-be98-504329073abe") ) (bus (pts (xy 198.12 299.72) (xy 198.12 302.26) ) (stroke (width 0) (type default) ) (uuid "74a7fe71-73f9-43e6-b39c-d0d0192bfba7") ) (wire (pts (xy 66.04 181.61) (xy 66.04 251.46) ) (stroke (width 0) (type default) ) (uuid "75241c1c-19e5-4eec-af8c-d46ec21cdbcc") ) (wire (pts (xy 149.86 102.87) (xy 186.69 102.87) ) (stroke (width 0) (type default) ) (uuid "75c0dc4d-2f4a-4300-950d-62b07ba6e1e7") ) (wire (pts (xy 25.4 134.62) (xy 30.48 134.62) ) (stroke (width 0) (type default) ) (uuid "76165d8f-9173-4653-bfe4-fb13fbacbe83") ) (wire (pts (xy 142.24 453.39) (xy 142.24 482.6) ) (stroke (width 0) (type default) ) (uuid "7648d865-c61e-4a8d-8922-afa8e70dbd3a") ) (wire (pts (xy 378.46 381) (xy 378.46 445.77) ) (stroke (width 0) (type default) ) (uuid "77587955-db00-40c2-a5c5-4356d43bbb7a") ) (wire (pts (xy 256.54 224.79) (xy 300.99 224.79) ) (stroke (width 0) (type default) ) (uuid "77d6a02c-f659-408d-87a7-d540ceab1c8f") ) (wire (pts (xy 35.56 217.17) (xy 72.39 217.17) ) (stroke (width 0) (type default) ) (uuid "7800ce8e-b604-4740-bcc1-3077dc0d107c") ) (wire (pts (xy 276.86 142.24) (xy 276.86 132.08) ) (stroke (width 0) (type default) ) (uuid "78355aea-85df-4cbd-9f0a-60c7205caada") ) (wire (pts (xy 63.5 193.04) (xy 81.28 193.04) ) (stroke (width 0) (type default) ) (uuid "787bea7b-0f19-404a-8b68-e70440efd40d") ) (wire (pts (xy 406.4 88.9) (xy 424.18 88.9) ) (stroke (width 0) (type default) ) (uuid "78b530f3-1af5-4a9f-aa73-44a8e0512020") ) (wire (pts (xy 419.1 38.1) (xy 482.6 38.1) ) (stroke (width 0) (type default) ) (uuid "78dccb54-59d9-4586-87fd-8b93c64c6b06") ) (wire (pts (xy 33.02 105.41) (xy 33.02 132.08) ) (stroke (width 0) (type default) ) (uuid "78df5dac-c16f-4234-a956-0aaee837d25a") ) (wire (pts (xy 266.7 477.52) (xy 373.38 477.52) ) (stroke (width 0) (type default) ) (uuid "794b27a9-041f-4fc3-835c-9255bb17be86") ) (bus (pts (xy 83.82 416.56) (xy 83.82 414.02) ) (stroke (width 0) (type default) ) (uuid "7983cbee-c97f-4e3d-ac4f-c230c2defb95") ) (wire (pts (xy 33.02 219.71) (xy 72.39 219.71) ) (stroke (width 0) (type default) ) (uuid "7ab44833-0b53-44d8-b730-40bed5dd177a") ) (wire (pts (xy 261.62 334.01) (xy 300.99 334.01) ) (stroke (width 0) (type default) ) (uuid "7b970203-4efc-406a-b8ab-60b88cded4ad") ) (wire (pts (xy 266.7 416.56) (xy 261.62 416.56) ) (stroke (width 0) (type default) ) (uuid "7bddfc95-b1be-42cc-a966-ec00d1362782") ) (wire (pts (xy 177.8 302.26) (xy 195.58 302.26) ) (stroke (width 0) (type default) ) (uuid "7bf91188-2107-4093-90b0-f14ecfec88b0") ) (wire (pts (xy 177.8 304.8) (xy 195.58 304.8) ) (stroke (width 0) (type default) ) (uuid "7c0980b9-7daf-4606-bd4d-791649dd765b") ) (wire (pts (xy 30.48 398.78) (xy 30.48 477.52) ) (stroke (width 0) (type default) ) (uuid "7d9413a7-d4ae-45f5-86f3-197f2f7ca509") ) (wire (pts (xy 373.38 477.52) (xy 482.6 477.52) ) (stroke (width 0) (type default) ) (uuid "7df2a97c-5cbe-470d-96d2-427c546a1bf1") ) (wire (pts (xy 33.02 25.4) (xy 33.02 105.41) ) (stroke (width 0) (type default) ) (uuid "8012d9a0-b437-466f-b4ee-8167d73a4493") ) (wire (pts (xy 63.5 187.96) (xy 81.28 187.96) ) (stroke (width 0) (type default) ) (uuid "802026c7-939b-4c7e-bc55-2295669ec4b3") ) (bus (pts (xy 312.42 190.5) (xy 312.42 187.96) ) (stroke (width 0) (type default) ) (uuid "802672bd-fe6c-4fbf-bbba-a7a77226c7eb") ) (wire (pts (xy 25.4 363.22) (xy 30.48 363.22) ) (stroke (width 0) (type default) ) (uuid "8075881b-25e3-4b11-9dcb-9c381073eb26") ) (bus (pts (xy 360.68 185.42) (xy 360.68 214.63) ) (stroke (width 0) (type default) ) (uuid "82846ece-c5a6-4a8d-bbf4-b204198df89d") ) (wire (pts (xy 76.2 152.4) (xy 149.86 152.4) ) (stroke (width 0) (type default) ) (uuid "829c108b-9d73-4e76-8d8b-d88f4e423c41") ) (wire (pts (xy 455.93 445.77) (xy 476.25 445.77) ) (stroke (width 0) (type default) ) (uuid "839e1bed-c2ca-46d3-bbc4-bdd36022f19c") ) (wire (pts (xy 35.56 217.17) (xy 35.56 243.84) ) (stroke (width 0) (type default) ) (uuid "83de1c87-6cce-4a83-953b-4853d4ef7465") ) (bus (pts (xy 250.19 185.42) (xy 250.19 102.87) ) (stroke (width 0) (type default) ) (uuid "83e065da-418e-425c-ac7a-4ef2c8ff771b") ) (wire (pts (xy 256.54 480.06) (xy 294.64 480.06) ) (stroke (width 0) (type default) ) (uuid "841fd570-f762-4948-a736-6ab67e13f065") ) (wire (pts (xy 142.24 110.49) (xy 186.69 110.49) ) (stroke (width 0) (type default) ) (uuid "86362fb5-ccce-4e5d-a219-a70610920c28") ) (wire (pts (xy 113.03 448.31) (xy 129.54 448.31) ) (stroke (width 0) (type default) ) (uuid "872596d2-7e34-45c1-84d4-9e60c4b18e63") ) (wire (pts (xy 378.46 472.44) (xy 482.6 472.44) ) (stroke (width 0) (type default) ) (uuid "87996ffd-bd6d-4239-a85e-e97ca07a0374") ) (wire (pts (xy 147.32 73.66) (xy 147.32 29.21) ) (stroke (width 0) (type default) ) (uuid "87dbb0d5-2013-47f1-b578-590c3e387f1d") ) (wire (pts (xy 177.8 320.04) (xy 195.58 320.04) ) (stroke (width 0) (type default) ) (uuid "87f50b5a-0e5b-4735-925c-ba6b4526ce9a") ) (bus (pts (xy 312.42 200.66) (xy 312.42 198.12) ) (stroke (width 0) (type default) ) (uuid "897b9200-f119-4429-acd1-f729ae0929b7") ) (wire (pts (xy 33.02 132.08) (xy 48.26 132.08) ) (stroke (width 0) (type default) ) (uuid "89ffdede-19fb-463b-bd7e-716f44919e6d") ) (wire (pts (xy 292.1 426.72) (xy 309.88 426.72) ) (stroke (width 0) (type default) ) (uuid "8a05e88a-8231-4cc5-91b0-59f64e632b31") ) (wire (pts (xy 455.93 219.71) (xy 476.25 219.71) ) (stroke (width 0) (type default) ) (uuid "8c56b255-b90d-4f2e-898d-9c40f352fe98") ) (bus (pts (xy 426.72 71.12) (xy 426.72 73.66) ) (stroke (width 0) (type default) ) (uuid "8c61db97-9090-4ccc-bba6-58c4ec7c04f2") ) (wire (pts (xy 38.1 187.96) (xy 33.02 187.96) ) (stroke (width 0) (type default) ) (uuid "8d2aa9ca-dba6-46cf-8fb8-94013a7bf56f") ) (wire (pts (xy 63.5 431.8) (xy 81.28 431.8) ) (stroke (width 0) (type default) ) (uuid "8d33a870-3794-47df-8ac0-25ce1ba00e00") ) (wire (pts (xy 378.46 102.87) (xy 378.46 129.54) ) (stroke (width 0) (type default) ) (uuid "8d85f7d9-4fc1-4299-86f8-edc0dca2b79a") ) (wire (pts (xy 27.94 453.39) (xy 72.39 453.39) ) (stroke (width 0) (type default) ) (uuid "8e39a77f-dad0-4e45-80f7-5a84d5a9aa5f") ) (wire (pts (xy 370.84 25.4) (xy 370.84 110.49) ) (stroke (width 0) (type default) ) (uuid "8e559c64-593e-4a73-9648-7cf5fd66aa78") ) (bus (pts (xy 198.12 71.12) (xy 198.12 73.66) ) (stroke (width 0) (type default) ) (uuid "8e7b935c-cc1b-4d39-8f23-ee7a72879b4a") ) (wire (pts (xy 261.62 416.56) (xy 261.62 372.11) ) (stroke (width 0) (type default) ) (uuid "8f3b81c3-6b15-4180-b2f6-ed7201cf0173") ) (wire (pts (xy 162.56 246.38) (xy 162.56 256.54) ) (stroke (width 0) (type default) ) (uuid "8f6559e2-06d7-4eed-8f27-0275a9ae52f8") ) (wire (pts (xy 292.1 203.2) (xy 309.88 203.2) ) (stroke (width 0) (type default) ) (uuid "8fcdf93d-8ca7-4e80-bdab-369ed127e08c") ) (wire (pts (xy 370.84 224.79) (xy 415.29 224.79) ) (stroke (width 0) (type default) ) (uuid "91096685-5b30-4884-a9ac-f02e942db7fd") ) (wire (pts (xy 142.24 365.76) (xy 180.34 365.76) ) (stroke (width 0) (type default) ) (uuid "913ff303-0025-4c54-a711-d88dfbbe830b") ) (bus (pts (xy 312.42 419.1) (xy 312.42 416.56) ) (stroke (width 0) (type default) ) (uuid "91f5a618-1ac8-49b0-acb5-1b2b628b06db") ) (bus (pts (xy 478.79 100.33) (xy 478.79 71.12) ) (stroke (width 0) (type default) ) (uuid "9392887d-e838-437d-aebe-302a3be9450f") ) (wire (pts (xy 27.94 25.4) (xy 27.94 110.49) ) (stroke (width 0) (type default) ) (uuid "947977b8-0d0f-4a73-8026-b4730091aac5") ) (bus (pts (xy 83.82 431.8) (xy 83.82 429.26) ) (stroke (width 0) (type default) ) (uuid "9481d6ae-de43-4905-a50e-7c25dc484542") ) (bus (pts (xy 250.19 100.33) (xy 250.19 71.12) ) (stroke (width 0) (type default) ) (uuid "95256fc8-3385-4245-be59-d37265fd975a") ) (wire (pts (xy 440.69 102.87) (xy 443.23 102.87) ) (stroke (width 0) (type default) ) (uuid "95735810-0752-43c1-86f2-947d1d294da4") ) (bus (pts (xy 426.72 76.2) (xy 426.72 78.74) ) (stroke (width 0) (type default) ) (uuid "95b56c2c-eaa1-4af6-8bf3-d7f759252baf") ) (wire (pts (xy 113.03 105.41) (xy 129.54 105.41) ) (stroke (width 0) (type default) ) (uuid "95e4141d-7e5e-40f3-b1a7-e81c92013ce8") ) (wire (pts (xy 259.08 170.18) (xy 266.7 170.18) ) (stroke (width 0) (type default) ) (uuid "96496585-810d-4da8-828f-60a5f521505a") ) (bus (pts (xy 426.72 302.26) (xy 426.72 304.8) ) (stroke (width 0) (type default) ) (uuid "969430fa-75f6-417c-859c-390c12b829dd") ) (wire (pts (xy 292.1 431.8) (xy 309.88 431.8) ) (stroke (width 0) (type default) ) (uuid "96b694a3-df15-4169-abc4-efed70e2fd51") ) (wire (pts (xy 261.62 372.11) (xy 266.7 372.11) ) (stroke (width 0) (type default) ) (uuid "96e49112-0653-4e89-8475-ab1a7c7088be") ) (wire (pts (xy 261.62 105.41) (xy 261.62 132.08) ) (stroke (width 0) (type default) ) (uuid "97917446-8bd6-4aa1-89cc-58a42c030621") ) (wire (pts (xy 63.5 434.34) (xy 81.28 434.34) ) (stroke (width 0) (type default) ) (uuid "97d83e19-1e52-49b8-b0c5-f8fa8a880190") ) (wire (pts (xy 212.09 102.87) (xy 214.63 102.87) ) (stroke (width 0) (type default) ) (uuid "97f703ed-51b7-4a4d-910f-eaca07052ad0") ) (wire (pts (xy 378.46 102.87) (xy 415.29 102.87) ) (stroke (width 0) (type default) ) (uuid "9801a9b2-9981-4382-ade0-2973f9076a24") ) (wire (pts (xy 406.4 314.96) (xy 424.18 314.96) ) (stroke (width 0) (type default) ) (uuid "984ab836-99b5-46e2-bac4-1e7ba74e2806") ) (wire (pts (xy 35.56 445.77) (xy 72.39 445.77) ) (stroke (width 0) (type default) ) (uuid "9a77e999-3a5c-44bd-89a4-e00af39659f5") ) (bus (pts (xy 312.42 185.42) (xy 360.68 185.42) ) (stroke (width 0) (type default) ) (uuid "9aa960d4-c044-4ed5-8482-c3984c08fe3e") ) (wire (pts (xy 264.16 38.1) (xy 264.16 102.87) ) (stroke (width 0) (type default) ) (uuid "9ab57c2f-f6f4-4b57-8565-36546b2fdfcc") ) (wire (pts (xy 38.1 248.92) (xy 144.78 248.92) ) (stroke (width 0) (type default) ) (uuid "9ad882e1-0815-4776-88a3-e427f442c9a6") ) (wire (pts (xy 381 336.55) (xy 381 363.22) ) (stroke (width 0) (type default) ) (uuid "9b0986b6-e0c0-47d0-afef-38084a6400cc") ) (wire (pts (xy 406.4 91.44) (xy 424.18 91.44) ) (stroke (width 0) (type default) ) (uuid "9b186097-4d28-4f17-9853-a7b22adf157c") ) (wire (pts (xy 177.8 317.5) (xy 195.58 317.5) ) (stroke (width 0) (type default) ) (uuid "9b909f74-a625-4471-92fd-c23b663f6117") ) (wire (pts (xy 373.38 450.85) (xy 415.29 450.85) ) (stroke (width 0) (type default) ) (uuid "9c332cad-127a-4172-88e7-b7dd3a927052") ) (wire (pts (xy 142.24 224.79) (xy 186.69 224.79) ) (stroke (width 0) (type default) ) (uuid "9d176a8c-f13c-482a-8c33-2d37e26d4bbd") ) (wire (pts (xy 38.1 222.25) (xy 38.1 248.92) ) (stroke (width 0) (type default) ) (uuid "9d578d62-cf89-4641-8db2-7dab1814ae75") ) (wire (pts (xy 378.46 217.17) (xy 378.46 243.84) ) (stroke (width 0) (type default) ) (uuid "9da782ba-fa3c-46ee-83ff-be9143813e38") ) (wire (pts (xy 292.1 416.56) (xy 309.88 416.56) ) (stroke (width 0) (type default) ) (uuid "9dca1c53-6c36-4b39-98c2-e434e18485ae") ) (wire (pts (xy 97.79 445.77) (xy 100.33 445.77) ) (stroke (width 0) (type default) ) (uuid "9e1c764c-9985-4ef7-a958-d22f04721b1c") ) (wire (pts (xy 261.62 219.71) (xy 300.99 219.71) ) (stroke (width 0) (type default) ) (uuid "9e506192-a160-4cea-bf30-6f726d0de3f0") ) (wire (pts (xy 391.16 25.4) (xy 391.16 27.94) ) (stroke (width 0) (type default) ) (uuid "9ea19e7f-b071-4cf3-82ce-2780f9d771e5") ) (bus (pts (xy 132.08 107.95) (xy 132.08 185.42) ) (stroke (width 0) (type default) ) (uuid "a0727689-ffe5-424e-89a1-00dd5c5a14b0") ) (wire (pts (xy 406.4 312.42) (xy 424.18 312.42) ) (stroke (width 0) (type default) ) (uuid "a16a9077-205a-441d-8be2-dba115eb6027") ) (wire (pts (xy 149.86 217.17) (xy 149.86 243.84) ) (stroke (width 0) (type default) ) (uuid "a18903fd-a998-4e21-a00d-c63f96d87b59") ) (wire (pts (xy 63.5 419.1) (xy 81.28 419.1) ) (stroke (width 0) (type default) ) (uuid "a3f4e189-239b-42e1-baaa-5fb6bde62aca") ) (wire (pts (xy 63.5 205.74) (xy 81.28 205.74) ) (stroke (width 0) (type default) ) (uuid "a4e137c9-306b-4c87-b81e-74303a70bc9f") ) (wire (pts (xy 406.4 86.36) (xy 424.18 86.36) ) (stroke (width 0) (type default) ) (uuid "a5e2a858-50d2-4b0e-a407-6b9e938ce7ad") ) (wire (pts (xy 378.46 445.77) (xy 378.46 472.44) ) (stroke (width 0) (type default) ) (uuid "a60de7c6-7860-4698-9749-96cfce9ffe7e") ) (wire (pts (xy 266.7 222.25) (xy 266.7 248.92) ) (stroke (width 0) (type default) ) (uuid "a6682634-b98d-4735-a7a5-72755cc6be32") ) (wire (pts (xy 373.38 222.25) (xy 373.38 248.92) ) (stroke (width 0) (type default) ) (uuid "a6e8e9ba-2bf1-4f1d-88ff-feeead6749f5") ) (wire (pts (xy 455.93 105.41) (xy 476.25 105.41) ) (stroke (width 0) (type default) ) (uuid "a6fb5e1f-274f-4716-b342-4eba0c337ad8") ) (wire (pts (xy 375.92 29.21) (xy 381 29.21) ) (stroke (width 0) (type default) ) (uuid "a7934356-2b51-4637-bd0d-dd2664542546") ) (wire (pts (xy 256.54 251.46) (xy 256.54 339.09) ) (stroke (width 0) (type default) ) (uuid "a7e73478-1a6c-4fba-a273-8d9f88f7d7f1") ) (wire (pts (xy 378.46 243.84) (xy 482.6 243.84) ) (stroke (width 0) (type default) ) (uuid "a813564d-2589-4412-b7eb-4077f1696d2d") ) (bus (pts (xy 250.19 214.63) (xy 250.19 217.17) ) (stroke (width 0) (type default) ) (uuid "a8c8fd1f-3ab1-472c-85ff-b9b8de30513e") ) (bus (pts (xy 312.42 426.72) (xy 312.42 424.18) ) (stroke (width 0) (type default) ) (uuid "a8e36ea9-2c7c-4830-915b-c5a6c0c2d783") ) (wire (pts (xy 72.39 448.31) (xy 33.02 448.31) ) (stroke (width 0) (type default) ) (uuid "aa127ff3-b512-4783-97c4-c45ac9b2f4ae") ) (wire (pts (xy 455.93 217.17) (xy 476.25 217.17) ) (stroke (width 0) (type default) ) (uuid "aa7de411-d7dc-4581-8a9b-9f68fbd30ea0") ) (wire (pts (xy 419.1 266.7) (xy 482.6 266.7) ) (stroke (width 0) (type default) ) (uuid "aac25a88-6b38-444f-88f4-f416c44f8a8f") ) (wire (pts (xy 35.56 102.87) (xy 35.56 129.54) ) (stroke (width 0) (type default) ) (uuid "aac2f43a-ead2-448b-a189-b61f03c847ee") ) (wire (pts (xy 259.08 336.55) (xy 300.99 336.55) ) (stroke (width 0) (type default) ) (uuid "aaea8a7b-3a1e-42ec-9823-62e12100ca7e") ) (wire (pts (xy 406.4 317.5) (xy 424.18 317.5) ) (stroke (width 0) (type default) ) (uuid "ab049616-996c-4560-bf40-5dc535c42fd6") ) (wire (pts (xy 227.33 334.01) (xy 247.65 334.01) ) (stroke (width 0) (type default) ) (uuid "ab64aced-e5e0-49a5-80d1-f74ce86037f1") ) (wire (pts (xy 162.56 474.98) (xy 162.56 482.6) ) (stroke (width 0) (type default) ) (uuid "ac9e2bcc-32c0-4bd2-b394-9c07b6b2fbfc") ) (wire (pts (xy 375.92 246.38) (xy 391.16 246.38) ) (stroke (width 0) (type default) ) (uuid "ae5061fe-2a1e-4fcd-8b3b-b2c2dfe989db") ) (wire (pts (xy 455.93 331.47) (xy 476.25 331.47) ) (stroke (width 0) (type default) ) (uuid "aecb4a6c-e0dd-40e2-8707-a3d36bb7b55f") ) (wire (pts (xy 264.16 331.47) (xy 300.99 331.47) ) (stroke (width 0) (type default) ) (uuid "aee55952-20bc-48c8-a7bc-5e6728c24b38") ) (wire (pts (xy 259.08 134.62) (xy 373.38 134.62) ) (stroke (width 0) (type default) ) (uuid "b0f6fa22-dc0f-49a7-8ffa-e20df760e503") ) (wire (pts (xy 30.48 107.95) (xy 30.48 134.62) ) (stroke (width 0) (type default) ) (uuid "b190e14c-d374-4db9-960b-5097d4403b42") ) (wire (pts (xy 264.16 217.17) (xy 300.99 217.17) ) (stroke (width 0) (type default) ) (uuid "b1989767-3b59-41c8-ba88-23bc2139872a") ) (wire (pts (xy 370.84 453.39) (xy 415.29 453.39) ) (stroke (width 0) (type default) ) (uuid "b1c304cc-a605-4b5d-90f9-69e8257d8b86") ) (wire (pts (xy 341.63 105.41) (xy 358.14 105.41) ) (stroke (width 0) (type default) ) (uuid "b1d734fb-20b7-453a-91b0-83fdc71ee74c") ) (wire (pts (xy 147.32 219.71) (xy 186.69 219.71) ) (stroke (width 0) (type default) ) (uuid "b1e0cb87-02be-4fca-963a-b11d4fbe71ca") ) (wire (pts (xy 97.79 102.87) (xy 100.33 102.87) ) (stroke (width 0) (type default) ) (uuid "b3355080-3e79-43da-bb3b-343b29c8bb8b") ) (bus (pts (xy 198.12 307.34) (xy 198.12 309.88) ) (stroke (width 0) (type default) ) (uuid "b355e54f-643e-4560-a61b-58168858e489") ) (wire (pts (xy 147.32 257.81) (xy 152.4 257.81) ) (stroke (width 0) (type default) ) (uuid "b3789bab-7c42-4dec-aada-b8d98de8fe16") ) (bus (pts (xy 83.82 421.64) (xy 83.82 419.1) ) (stroke (width 0) (type default) ) (uuid "b46e5f8c-7407-4645-ac72-96a0f0817fe1") ) (wire (pts (xy 147.32 246.38) (xy 162.56 246.38) ) (stroke (width 0) (type default) ) (uuid "b51c1779-f813-4512-83de-1ab307dbd607") ) (wire (pts (xy 180.34 67.31) (xy 180.34 137.16) ) (stroke (width 0) (type default) ) (uuid "b57dd7aa-dbae-416c-808c-50414f792c6b") ) (wire (pts (xy 292.1 424.18) (xy 309.88 424.18) ) (stroke (width 0) (type default) ) (uuid "b6078e31-fb79-44ee-baf5-63f7aac7b039") ) (wire (pts (xy 370.84 137.16) (xy 370.84 224.79) ) (stroke (width 0) (type default) ) (uuid "b6ea3e83-b904-430c-9a0f-403623948a91") ) (bus (pts (xy 132.08 414.02) (xy 250.19 414.02) ) (stroke (width 0) (type default) ) (uuid "b778e956-d006-42ed-98c0-bd0f70266d11") ) (bus (pts (xy 478.79 328.93) (xy 478.79 299.72) ) (stroke (width 0) (type default) ) (uuid "b8141c61-ec08-4928-a5f4-3ee92ad4b789") ) (wire (pts (xy 440.69 331.47) (xy 443.23 331.47) ) (stroke (width 0) (type default) ) (uuid "b81903c0-5e27-4133-95b4-b6f62cf1c209") ) (bus (pts (xy 312.42 429.26) (xy 312.42 426.72) ) (stroke (width 0) (type default) ) (uuid "b9b4f582-7bd6-4ada-b556-0423c8e76f40") ) (wire (pts (xy 63.5 426.72) (xy 81.28 426.72) ) (stroke (width 0) (type default) ) (uuid "bb530822-9d68-4390-974b-dd18857c3411") ) (bus (pts (xy 132.08 334.01) (xy 132.08 336.55) ) (stroke (width 0) (type default) ) (uuid "bc3ccf9b-54b1-443a-b7e1-66d644947a3c") ) (wire (pts (xy 152.4 302.26) (xy 147.32 302.26) ) (stroke (width 0) (type default) ) (uuid "bd11a7b4-07e9-483b-b0ec-c9267acd659c") ) (wire (pts (xy 27.94 110.49) (xy 27.94 224.79) ) (stroke (width 0) (type default) ) (uuid "bea62e16-a201-474f-bf65-3af6d38f570e") ) (bus (pts (xy 250.19 414.02) (xy 250.19 443.23) ) (stroke (width 0) (type default) ) (uuid "bfa3ece6-60e8-4c23-a6a1-8a30f563aa41") ) (wire (pts (xy 33.02 334.01) (xy 72.39 334.01) ) (stroke (width 0) (type default) ) (uuid "c1081e0e-4dad-47db-a5a7-fcf39a72b216") ) (bus (pts (xy 312.42 416.56) (xy 312.42 414.02) ) (stroke (width 0) (type default) ) (uuid "c2056711-551b-47fc-ad2e-81e492d651f5") ) (wire (pts (xy 149.86 331.47) (xy 149.86 358.14) ) (stroke (width 0) (type default) ) (uuid "c283642f-ce3a-4aaf-88c1-0a6c124c86d3") ) (wire (pts (xy 147.32 448.31) (xy 147.32 474.98) ) (stroke (width 0) (type default) ) (uuid "c28dab06-e89c-4c17-9644-be37e31bb020") ) (wire (pts (xy 415.29 107.95) (xy 381 107.95) ) (stroke (width 0) (type default) ) (uuid "c296fc5b-776b-4472-8ebf-a710476fd904") ) (bus (pts (xy 426.72 314.96) (xy 426.72 317.5) ) (stroke (width 0) (type default) ) (uuid "c2b9747d-2bfa-4223-a05a-b9a79e92fab7") ) (wire (pts (xy 144.78 284.48) (xy 144.78 363.22) ) (stroke (width 0) (type default) ) (uuid "c361adfb-2884-4647-9bc3-652133a119af") ) (wire (pts (xy 261.62 143.51) (xy 266.7 143.51) ) (stroke (width 0) (type default) ) (uuid "c3779245-6f32-47e9-a8fb-df78180f517f") ) (wire (pts (xy 63.5 200.66) (xy 81.28 200.66) ) (stroke (width 0) (type default) ) (uuid "c42fb432-0598-48ac-abea-86f32c36394d") ) (wire (pts (xy 264.16 102.87) (xy 264.16 129.54) ) (stroke (width 0) (type default) ) (uuid "c45594e2-cc6b-4c6e-8f49-2f05a8ad7371") ) (wire (pts (xy 326.39 445.77) (xy 328.93 445.77) ) (stroke (width 0) (type default) ) (uuid "c48b6ba5-2fad-432c-a00b-2355420ca350") ) (wire (pts (xy 144.78 222.25) (xy 144.78 248.92) ) (stroke (width 0) (type default) ) (uuid "c4c0d6d8-da7f-4443-9d8e-e4c261d8ad5f") ) (bus (pts (xy 360.68 414.02) (xy 360.68 443.23) ) (stroke (width 0) (type default) ) (uuid "c712a162-6a3d-4863-ad44-f396b7bbcb06") ) (wire (pts (xy 186.69 336.55) (xy 152.4 336.55) ) (stroke (width 0) (type default) ) (uuid "c78f8622-f75b-49d1-9413-87a3e9fea191") ) (wire (pts (xy 292.1 419.1) (xy 309.88 419.1) ) (stroke (width 0) (type default) ) (uuid "c83feaa4-cd08-476f-abc7-4bd02431ca9e") ) (wire (pts (xy 292.1 195.58) (xy 309.88 195.58) ) (stroke (width 0) (type default) ) (uuid "c9e66472-4ffd-486e-b3fd-6cf29202ccef") ) (wire (pts (xy 375.92 302.26) (xy 375.92 257.81) ) (stroke (width 0) (type default) ) (uuid "c9e7b311-587f-447d-8be8-ec4f7d7a2514") ) (wire (pts (xy 373.38 55.88) (xy 381 55.88) ) (stroke (width 0) (type default) ) (uuid "cb1b3454-83e6-4ded-858b-1d66b9322a58") ) (wire (pts (xy 33.02 416.56) (xy 33.02 372.11) ) (stroke (width 0) (type default) ) (uuid "cb7c36bd-3750-4582-847a-055533942656") ) (wire (pts (xy 177.8 312.42) (xy 195.58 312.42) ) (stroke (width 0) (type default) ) (uuid "cbaf25e5-09df-42bf-a547-a8a3cffafea8") ) (wire (pts (xy 30.48 107.95) (xy 72.39 107.95) ) (stroke (width 0) (type default) ) (uuid "ccbe1b31-581c-44ce-bc64-4a75a299f05c") ) (wire (pts (xy 25.4 266.7) (xy 35.56 266.7) ) (stroke (width 0) (type default) ) (uuid "cd8b933b-ebb8-4700-901d-7df37a4cd883") ) (bus (pts (xy 426.72 86.36) (xy 426.72 88.9) ) (stroke (width 0) (type default) ) (uuid "ce175f11-008e-4963-aaba-f412f1f7c765") ) (wire (pts (xy 292.1 193.04) (xy 309.88 193.04) ) (stroke (width 0) (type default) ) (uuid "ce18f86c-ceea-46bc-b6d6-6af2ae0912fc") ) (wire (pts (xy 266.7 187.96) (xy 261.62 187.96) ) (stroke (width 0) (type default) ) (uuid "ce2ea30c-819f-4c52-8023-a7b7cbfbbed4") ) (wire (pts (xy 370.84 365.76) (xy 408.94 365.76) ) (stroke (width 0) (type default) ) (uuid "d07da3f1-afe7-489c-8839-6fe406a4307d") ) (wire (pts (xy 341.63 448.31) (xy 358.14 448.31) ) (stroke (width 0) (type default) ) (uuid "d0986602-efca-4f5f-97fd-6f7e0e6108a6") ) (wire (pts (xy 259.08 170.18) (xy 259.08 248.92) ) (stroke (width 0) (type default) ) (uuid "d0aab343-8cc8-419b-9053-c8ae44cb85c0") ) (wire (pts (xy 373.38 222.25) (xy 415.29 222.25) ) (stroke (width 0) (type default) ) (uuid "d0b13309-3f45-4ab4-8115-7a51ada2e0fd") ) (wire (pts (xy 391.16 246.38) (xy 391.16 255.27) ) (stroke (width 0) (type default) ) (uuid "d0fff6be-d0e1-40d5-bd2f-9e2d25882d7e") ) (wire (pts (xy 378.46 331.47) (xy 415.29 331.47) ) (stroke (width 0) (type default) ) (uuid "d2afc5e0-45a2-433f-b71b-c13321c7e2c4") ) (wire (pts (xy 266.7 450.85) (xy 300.99 450.85) ) (stroke (width 0) (type default) ) (uuid "d3a451aa-acbc-45ec-bf8d-6a22b9fc6a1f") ) (wire (pts (xy 256.54 480.06) (xy 256.54 482.6) ) (stroke (width 0) (type default) ) (uuid "d3afe63e-b8c6-4835-b25b-934c25c4837a") ) (wire (pts (xy 33.02 143.51) (xy 38.1 143.51) ) (stroke (width 0) (type default) ) (uuid "d50d0d24-7254-4f74-8028-22dad3444527") ) (bus (pts (xy 478.79 414.02) (xy 478.79 443.23) ) (stroke (width 0) (type default) ) (uuid "d512204d-8f71-4e63-bc56-3c8c5d073f61") ) (wire (pts (xy 63.5 195.58) (xy 81.28 195.58) ) (stroke (width 0) (type default) ) (uuid "d56fdf41-c3ca-4041-a01f-f3613f487800") ) (bus (pts (xy 83.82 419.1) (xy 83.82 416.56) ) (stroke (width 0) (type default) ) (uuid "d5d37300-9eb4-4351-b83c-43400a8e2620") ) (bus (pts (xy 426.72 81.28) (xy 426.72 83.82) ) (stroke (width 0) (type default) ) (uuid "d5e1b1c0-91a1-4978-8f75-55e042c7ad48") ) (wire (pts (xy 373.38 55.88) (xy 373.38 134.62) ) (stroke (width 0) (type default) ) (uuid "d6204380-93fc-486a-ad5e-f9dcbf6024f5") ) (wire (pts (xy 300.99 222.25) (xy 266.7 222.25) ) (stroke (width 0) (type default) ) (uuid "d6c3d5bc-335d-4535-ba05-a5b608403395") ) (wire (pts (xy 63.5 203.2) (xy 81.28 203.2) ) (stroke (width 0) (type default) ) (uuid "d6fb33a2-ed2f-467a-a791-5ed97ea1b9fa") ) (bus (pts (xy 312.42 414.02) (xy 360.68 414.02) ) (stroke (width 0) (type default) ) (uuid "d8875935-ccd8-408e-bab1-8059af7c8475") ) (wire (pts (xy 292.1 434.34) (xy 309.88 434.34) ) (stroke (width 0) (type default) ) (uuid "d8c3f328-1283-419b-8b62-16e8ffba6032") ) (wire (pts (xy 177.8 83.82) (xy 195.58 83.82) ) (stroke (width 0) (type default) ) (uuid "d950780d-2c1b-4856-9db9-c139660660c9") ) (wire (pts (xy 33.02 372.11) (xy 38.1 372.11) ) (stroke (width 0) (type default) ) (uuid "d9be86d5-63b6-4d70-9d4d-329f4caab5fa") ) (bus (pts (xy 312.42 424.18) (xy 312.42 421.64) ) (stroke (width 0) (type default) ) (uuid "d9f2ae1b-17e6-4ab7-aee0-be02a717ff57") ) (wire (pts (xy 144.78 222.25) (xy 186.69 222.25) ) (stroke (width 0) (type default) ) (uuid "da2e06a9-c085-4c8f-86ef-d4305538562b") ) (wire (pts (xy 391.16 474.98) (xy 391.16 482.6) ) (stroke (width 0) (type default) ) (uuid "dc883c00-a98a-47c7-8885-ce4b7b789714") ) (wire (pts (xy 375.92 219.71) (xy 375.92 246.38) ) (stroke (width 0) (type default) ) (uuid "dc9911d5-9a38-4091-badc-f56521e0d65b") ) (bus (pts (xy 478.79 299.72) (xy 426.72 299.72) ) (stroke (width 0) (type default) ) (uuid "dd142851-3d6f-4271-9835-2e463b3606dc") ) (wire (pts (xy 381 363.22) (xy 482.6 363.22) ) (stroke (width 0) (type default) ) (uuid "ddc6eda5-fe11-4efd-8067-267ac0d16d3d") ) (wire (pts (xy 142.24 137.16) (xy 180.34 137.16) ) (stroke (width 0) (type default) ) (uuid "de0c24f3-22fa-445a-95f8-185da16b5bd7") ) (wire (pts (xy 406.4 83.82) (xy 424.18 83.82) ) (stroke (width 0) (type default) ) (uuid "e031159a-cd41-4e31-9e2c-c4c27c6eea1c") ) (bus (pts (xy 83.82 195.58) (xy 83.82 193.04) ) (stroke (width 0) (type default) ) (uuid "e098f5d4-c853-4fba-9d0c-d262a2acbb7d") ) (wire (pts (xy 142.24 365.76) (xy 142.24 453.39) ) (stroke (width 0) (type default) ) (uuid "e0c372b0-099e-4bb7-88f7-1cd5ef7b003e") ) (wire (pts (xy 113.03 445.77) (xy 129.54 445.77) ) (stroke (width 0) (type default) ) (uuid "e0f80f56-6fe1-40fb-b3e1-903c97fdc194") ) (wire (pts (xy 292.1 429.26) (xy 309.88 429.26) ) (stroke (width 0) (type default) ) (uuid "e1106a43-eaeb-40ce-b8c2-957385d32ca9") ) (bus (pts (xy 132.08 105.41) (xy 132.08 107.95) ) (stroke (width 0) (type default) ) (uuid "e1460039-0d8a-40b9-b1a8-b6094c44b488") ) (wire (pts (xy 35.56 358.14) (xy 149.86 358.14) ) (stroke (width 0) (type default) ) (uuid "e22d95af-be66-4fc7-a1cb-995582d47e03") ) (wire (pts (xy 259.08 107.95) (xy 259.08 134.62) ) (stroke (width 0) (type default) ) (uuid "e2bee193-cb90-4a90-a6cf-0e7f8bd1f88a") ) (wire (pts (xy 33.02 360.68) (xy 48.26 360.68) ) (stroke (width 0) (type default) ) (uuid "e2e51a79-4fa3-43d4-8464-b512e455e608") ) (bus (pts (xy 360.68 414.02) (xy 478.79 414.02) ) (stroke (width 0) (type default) ) (uuid "e436e9ec-dcd5-40e9-8e2d-57b00fa46196") ) (wire (pts (xy 97.79 331.47) (xy 100.33 331.47) ) (stroke (width 0) (type default) ) (uuid "e4dcb8f0-7f8a-4037-af0a-8938ad2d5e11") ) (bus (pts (xy 426.72 83.82) (xy 426.72 86.36) ) (stroke (width 0) (type default) ) (uuid "e507bfd2-a767-4c5d-a222-87a552accdf7") ) (wire (pts (xy 144.78 284.48) (xy 152.4 284.48) ) (stroke (width 0) (type default) ) (uuid "e6899a60-2f88-4de4-89ca-687081ff07f1") ) (bus (pts (xy 426.72 307.34) (xy 426.72 309.88) ) (stroke (width 0) (type default) ) (uuid "e69e192a-2df0-496f-9b72-b06865065a83") ) (wire (pts (xy 152.4 363.22) (xy 259.08 363.22) ) (stroke (width 0) (type default) ) (uuid "e6c952c7-d235-45fc-bf76-43ccefcbed64") ) (wire (pts (xy 381 107.95) (xy 381 134.62) ) (stroke (width 0) (type default) ) (uuid "e983056e-7650-42b3-8f26-6a65a4ea0344") ) (wire (pts (xy 227.33 445.77) (xy 247.65 445.77) ) (stroke (width 0) (type default) ) (uuid "e9877c6a-a382-47a8-b39d-54f19d8a8073") ) (wire (pts (xy 408.94 67.31) (xy 408.94 137.16) ) (stroke (width 0) (type default) ) (uuid "eae17525-c6db-4b78-934f-b6076f5efc0e") ) (bus (pts (xy 250.19 299.72) (xy 198.12 299.72) ) (stroke (width 0) (type default) ) (uuid "eb5b0579-f268-4375-89b9-fddc308b0af0") ) (wire (pts (xy 259.08 398.78) (xy 266.7 398.78) ) (stroke (width 0) (type default) ) (uuid "eb6720f9-85c3-4fed-8ccf-45c168fdf80b") ) (wire (pts (xy 147.32 474.98) (xy 162.56 474.98) ) (stroke (width 0) (type default) ) (uuid "ebcf7801-d366-4040-a213-af00882ace0e") ) (wire (pts (xy 113.03 217.17) (xy 129.54 217.17) ) (stroke (width 0) (type default) ) (uuid "ec2e0fc8-ff33-41fc-b4c6-9a8e968a9427") ) (wire (pts (xy 30.48 170.18) (xy 38.1 170.18) ) (stroke (width 0) (type default) ) (uuid "ec76dc29-6184-45a5-ae0c-c42f1e416396") ) (wire (pts (xy 144.78 55.88) (xy 152.4 55.88) ) (stroke (width 0) (type default) ) (uuid "ec9c379a-db2a-4ca8-83fb-eb33ac48fa3b") ) (wire (pts (xy 370.84 110.49) (xy 415.29 110.49) ) (stroke (width 0) (type default) ) (uuid "edba711b-dee5-4641-8689-8cad9cfdafb1") ) (wire (pts (xy 256.54 25.4) (xy 256.54 110.49) ) (stroke (width 0) (type default) ) (uuid "ee12fc2f-26c0-4b68-8bd3-5fca91342add") ) (wire (pts (xy 261.62 187.96) (xy 261.62 143.51) ) (stroke (width 0) (type default) ) (uuid "ee23559f-e4df-4066-8070-8771fca0a3d9") ) (wire (pts (xy 406.4 320.04) (xy 424.18 320.04) ) (stroke (width 0) (type default) ) (uuid "ee54c6f6-dc32-48da-9642-bc8f4bf43c91") ) (bus (pts (xy 83.82 200.66) (xy 83.82 198.12) ) (stroke (width 0) (type default) ) (uuid "eee99dfb-e441-4db6-b2e8-08abfb10f171") ) (wire (pts (xy 27.94 339.09) (xy 72.39 339.09) ) (stroke (width 0) (type default) ) (uuid "ef205790-fc45-4686-9d27-d0064246c779") ) (wire (pts (xy 256.54 110.49) (xy 256.54 224.79) ) (stroke (width 0) (type default) ) (uuid "f045b880-975c-4d44-96ed-d0bbb38496f8") ) (wire (pts (xy 149.86 445.77) (xy 149.86 472.44) ) (stroke (width 0) (type default) ) (uuid "f0aa30d1-cdc7-41d0-a9e9-8d80c4c39b58") ) (wire (pts (xy 27.94 251.46) (xy 66.04 251.46) ) (stroke (width 0) (type default) ) (uuid "f0e1fdc4-aa58-4ced-a7e6-b94fd36ec409") ) (wire (pts (xy 259.08 363.22) (xy 373.38 363.22) ) (stroke (width 0) (type default) ) (uuid "f1775f8b-e291-4dde-b60a-786b86255bad") ) (wire (pts (xy 406.4 309.88) (xy 424.18 309.88) ) (stroke (width 0) (type default) ) (uuid "f1861b28-094e-4919-b974-3ca721ab98c8") ) (wire (pts (xy 63.5 416.56) (xy 81.28 416.56) ) (stroke (width 0) (type default) ) (uuid "f1b6f37e-bd8d-4ffe-b5ee-8332b7a215b2") ) (wire (pts (xy 149.86 381) (xy 149.86 445.77) ) (stroke (width 0) (type default) ) (uuid "f29c5062-5e21-4b7c-b900-c7d1fc1a4fdf") ) (bus (pts (xy 83.82 203.2) (xy 83.82 200.66) ) (stroke (width 0) (type default) ) (uuid "f30ac4c2-33e9-4d1a-86d1-1c81ba46ac00") ) (wire (pts (xy 144.78 477.52) (xy 259.08 477.52) ) (stroke (width 0) (type default) ) (uuid "f3e06a55-11ac-49eb-a0c9-5842ba1b4f48") ) (wire (pts (xy 177.8 309.88) (xy 195.58 309.88) ) (stroke (width 0) (type default) ) (uuid "f3fa3e4e-c911-410a-b1b5-abcd0f8df766") ) (wire (pts (xy 415.29 217.17) (xy 378.46 217.17) ) (stroke (width 0) (type default) ) (uuid "f44ec691-a929-466c-9cef-e248071b4929") ) (wire (pts (xy 63.5 190.5) (xy 81.28 190.5) ) (stroke (width 0) (type default) ) (uuid "f4fcf604-b1ef-4f34-a3c7-26e40a9b10fa") ) (bus (pts (xy 312.42 431.8) (xy 312.42 429.26) ) (stroke (width 0) (type default) ) (uuid "f5fc6b7b-c48d-426a-986c-b1068714ea8a") ) (bus (pts (xy 250.19 328.93) (xy 250.19 299.72) ) (stroke (width 0) (type default) ) (uuid "f6ea14d0-910a-47f9-a708-d93c797ae3e2") ) (wire (pts (xy 259.08 107.95) (xy 300.99 107.95) ) (stroke (width 0) (type default) ) (uuid "f7152e0f-4f75-4a73-a327-390d31512dd4") ) (bus (pts (xy 426.72 73.66) (xy 426.72 76.2) ) (stroke (width 0) (type default) ) (uuid "f7edb365-a0ba-43e4-bccb-c3e4b45a053e") ) (bus (pts (xy 360.68 334.01) (xy 360.68 336.55) ) (stroke (width 0) (type default) ) (uuid "f94f7e9f-c62f-45c0-81b6-314d2584fb36") ) (wire (pts (xy 190.5 38.1) (xy 264.16 38.1) ) (stroke (width 0) (type default) ) (uuid "fa706100-988f-447b-b7b2-93590ca17250") ) (wire (pts (xy 264.16 445.77) (xy 264.16 472.44) ) (stroke (width 0) (type default) ) (uuid "fa711910-6bce-432b-9fa4-f13fd19baa35") ) (bus (pts (xy 198.12 76.2) (xy 198.12 78.74) ) (stroke (width 0) (type default) ) (uuid "fb25b9e6-d284-4ae1-a2d5-fc104a3a54e7") ) (wire (pts (xy 326.39 102.87) (xy 328.93 102.87) ) (stroke (width 0) (type default) ) (uuid "fb5d29b3-fe13-4194-a9e7-4565306d6df4") ) (wire (pts (xy 375.92 105.41) (xy 375.92 219.71) ) (stroke (width 0) (type default) ) (uuid "fc6cdcd3-ea37-40c1-84c0-3340afae3220") ) (wire (pts (xy 147.32 448.31) (xy 186.69 448.31) ) (stroke (width 0) (type default) ) (uuid "fcf9fcf2-2f1f-4205-9b42-452e172f40b1") ) (wire (pts (xy 27.94 480.06) (xy 66.04 480.06) ) (stroke (width 0) (type default) ) (uuid "fdec9576-e124-4b63-bbd5-9231e0b168d4") ) (bus (pts (xy 478.79 331.47) (xy 478.79 328.93) ) (stroke (width 0) (type default) ) (uuid "fdf1acaa-089a-48cf-9674-adeb9a670948") ) (bus (pts (xy 312.42 195.58) (xy 312.42 193.04) ) (stroke (width 0) (type default) ) (uuid "fdf7efe0-a028-4a75-84d3-fccd28aabbe5") ) (wire (pts (xy 378.46 445.77) (xy 415.29 445.77) ) (stroke (width 0) (type default) ) (uuid "fef437b9-ba26-4563-adea-f16cfb53398a") ) (wire (pts (xy 455.93 102.87) (xy 476.25 102.87) ) (stroke (width 0) (type default) ) (uuid "ffc474e9-2246-4862-8562-f6e365a9d4a4") ) (label "CPE21.OUT1" (at 297.18 426.72 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "00855a7a-29d0-4027-b9e1-60e5462ccbaf") ) (label "CPE22.OUT1" (at 458.47 331.47 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "00d2578b-911c-46c7-be7c-36be9fc182a8") ) (label "CPE21.OUT2" (at 297.18 429.26 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "010a9ad7-1ad0-4114-8dff-805e2dfaf4bc") ) (label "CPE22.OUT2" (at 182.88 320.04 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "04c23c24-fbaa-4417-a8f6-4f45592630fd") ) (label "CPE21.OUT2" (at 182.88 314.96 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "05fbd9db-548f-4760-b7d5-c4ea45a5f10d") ) (label "CPE11.OUT1" (at 68.58 416.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "10fdda63-8732-4e5c-a1f0-8628041ffe19") ) (label "CPE22.OUT1" (at 229.87 331.47 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "180e2855-9a57-46a6-9873-9b6f3548d1ee") ) (label "CPE21.OUT1" (at 229.87 217.17 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "1f1674d9-505c-4885-a9bc-d665976da8b2") ) (label "CPE21.OUT2" (at 68.58 200.66 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2367ba88-cc52-4707-b197-a79e35daf5bd") ) (label "CPE22.OUT2" (at 297.18 205.74 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "25ecc652-7c8b-40c9-a9e9-3c4456157ca9") ) (label "CPE12.OUT1" (at 344.17 331.47 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "26452cd6-377a-46c2-a259-7f34837cf4d3") ) (label "CPE21.OUT2" (at 229.87 448.31 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2965c208-0dae-4f12-b4dc-f4b51c37b99d") ) (label "CPE22.OUT2" (at 68.58 434.34 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2987bd34-8ba1-419f-a714-fb726f16caab") ) (label "CPE22.OUT1" (at 297.18 431.8 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2b2ebc79-f268-4b9c-a928-e6524a07cc2c") ) (label "CPE22.OUT2" (at 182.88 91.44 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "2e0b1f90-1293-4549-8496-2fae98757f30") ) (label "CPE11.OUT2" (at 68.58 190.5 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "374cf273-f760-40de-a4fe-41dd4b335645") ) (label "CPE22.OUT1" (at 68.58 431.8 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3d8f421b-c524-4529-8ce8-afe775c6d36d") ) (label "CPE12.OUT1" (at 411.48 307.34 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "3e2e196f-03cd-4a79-bc43-4e090875b624") ) (label "CPE22.OUT1" (at 411.48 88.9 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "41ab7e2c-69d4-424b-9d98-35845d6716d7") ) (label "CPE12.OUT2" (at 182.88 81.28 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4255ede2-8440-4d72-92c7-eb46749411e2") ) (label "CPE22.OUT2" (at 411.48 320.04 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "44d26564-a461-4222-a33b-2301b8a5c52d") ) (label "CPE21.OUT2" (at 458.47 219.71 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4728265f-cd87-45ec-a873-cc3f4baa90df") ) (label "CPE11.OUT2" (at 115.57 448.31 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4975970c-7694-46a6-972b-367d33dd7444") ) (label "CPE21.OUT1" (at 182.88 83.82 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "4e7b8911-863c-4519-a88e-3afb04b4ab06") ) (label "CPE12.OUT2" (at 68.58 424.18 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "51026dfa-2d2c-4836-868b-27a3f6356e84") ) (label "CPE12.OUT2" (at 68.58 195.58 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "53dd1141-c4f9-45ac-b46c-0fed845955c9") ) (label "CPE12.OUT1" (at 182.88 307.34 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5655669a-aeab-4cd4-9e09-edefef91a0c6") ) (label "CPE12.OUT1" (at 68.58 421.64 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "5a56848f-e2fb-479e-9a8e-1e872c5db61e") ) (label "CPE22.OUT1" (at 182.88 317.5 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "6033f32f-7969-49a1-b32c-9b912616c56f") ) (label "CPE21.OUT2" (at 411.48 314.96 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "60c25b54-1a4b-48ef-95ef-ae9d0135b9a7") ) (label "CPE12.OUT2" (at 344.17 334.01 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "612afdaf-9859-4179-a981-9d7ab16cb05b") ) (label "CPE22.OUT1" (at 68.58 203.2 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "63bd1530-e290-4be3-a941-b9a778c60ed1") ) (label "CPE11.OUT2" (at 411.48 304.8 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "63f1bc43-817b-47eb-aae9-48f4033a7d71") ) (label "CPE12.OUT1" (at 297.18 421.64 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "693d9e62-fad1-4cde-8256-90d15561203d") ) (label "CPE12.OUT2" (at 344.17 105.41 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "6fdccac3-14ec-4e3a-b834-96821a1df9ca") ) (label "CPE12.OUT2" (at 411.48 309.88 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "704d3f0a-c4dd-4e63-928b-1fdaa5d88085") ) (label "CPE21.OUT2" (at 182.88 86.36 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "71885e0f-af15-453f-86a1-9a33a1e8ebae") ) (label "CPE11.OUT2" (at 182.88 76.2 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "76a3b75a-1696-458f-8a6c-b3587ca40030") ) (label "CPE22.OUT1" (at 182.88 88.9 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7904709a-a064-4fcf-b67a-d075dd0dbf18") ) (label "CPE12.OUT2" (at 411.48 81.28 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "795fc2ce-2668-40ec-92a1-2d928716e0b0") ) (label "CPE22.OUT2" (at 229.87 334.01 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7a9010e6-99b9-41c7-97a1-2d676a9b5757") ) (label "CPE21.OUT2" (at 458.47 448.31 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7c5f07c0-ac21-4e3e-8923-386d545b46f0") ) (label "CPE12.OUT2" (at 115.57 334.01 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7d452b64-0340-46f3-8b76-5309d9a0fa17") ) (label "CPE21.OUT1" (at 458.47 445.77 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7e7e6735-8acc-429d-a1e6-e2b21dbe05c8") ) (label "CPE12.OUT2" (at 115.57 105.41 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7eb95f50-5ae8-4bd1-a2be-d29e52601dc5") ) (label "CPE21.OUT1" (at 68.58 198.12 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "7f63dca1-3f63-46ab-aadb-ff7535408a89") ) (label "CPE21.OUT1" (at 297.18 198.12 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "81b32f82-453d-46ac-b36c-bb40757cd163") ) (label "CPE12.OUT1" (at 115.57 331.47 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "82b63d2e-d29d-4258-ac63-895f5b04c251") ) (label "CPE22.OUT1" (at 229.87 102.87 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "858c48f6-39fa-4a72-9ab2-831859afa691") ) (label "CPE12.OUT2" (at 182.88 309.88 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "85cff2aa-667f-48a1-884b-225337145161") ) (label "CPE11.OUT1" (at 344.17 217.17 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "87760bc7-0926-4fb8-bc3d-b7471decf754") ) (label "CPE21.OUT2" (at 229.87 219.71 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "87e21736-230d-42d0-a22b-da69b24e9f7f") ) (label "CPE11.OUT2" (at 115.57 219.71 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "8b31e36a-447a-406e-a7f8-1b3e6c237be5") ) (label "CPE11.OUT1" (at 344.17 445.77 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "8f6c50fd-0a3d-4aa3-baf2-30f5bc2c5120") ) (label "CPE22.OUT1" (at 458.47 102.87 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "93e0128a-c1e4-4d22-a7be-7b551d6e32f3") ) (label "CPE11.OUT1" (at 297.18 187.96 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "97c7e438-6a42-4594-a8f2-5871e572e566") ) (label "CPE12.OUT1" (at 182.88 78.74 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9b0abbdc-df95-48c3-996e-58667916cdd3") ) (label "CPE21.OUT1" (at 229.87 445.77 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9b2557de-b88f-4a0b-9b51-b14ad9824d38") ) (label "CPE11.OUT1" (at 411.48 302.26 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9c16c5c0-28b5-44c7-9280-5884b9361813") ) (label "CPE22.OUT2" (at 229.87 105.41 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "9dc4541e-888b-4efc-8617-19dad7cdb96d") ) (label "CPE11.OUT2" (at 411.48 76.2 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a1e07dae-a7ee-4730-bf92-519ef958011f") ) (label "CPE12.OUT1" (at 411.48 78.74 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a3f2a8d2-3582-4ccd-82a8-6e51eb2164e2") ) (label "CPE22.OUT2" (at 68.58 205.74 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a41c573d-77ac-47a0-8c8a-360c49de3644") ) (label "CPE11.OUT1" (at 411.48 73.66 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "a553e1b3-bfd5-4a89-84e3-75e286e74955") ) (label "CPE22.OUT1" (at 297.18 203.2 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "aa4fb6d2-d566-4cba-b56f-40ff10c4631d") ) (label "CPE21.OUT2" (at 297.18 200.66 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "b0d711f8-e9a3-4847-8419-5ee85d18ec2f") ) (label "CPE22.OUT2" (at 458.47 334.01 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "b5c6d740-72d5-48e5-accd-62e65ed87dc4") ) (label "CPE11.OUT1" (at 115.57 217.17 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "b720cd0d-f0a8-4f81-ae84-c6d33d029ba8") ) (label "CPE12.OUT1" (at 115.57 102.87 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "bde51a84-3318-49b4-ab30-5addcd012105") ) (label "CPE22.OUT2" (at 297.18 434.34 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "be96ec11-4876-49d2-acd0-e7fcb731a37c") ) (label "CPE11.OUT2" (at 182.88 304.8 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c3457373-c36a-4176-9b39-40cc54e400be") ) (label "CPE11.OUT1" (at 115.57 445.77 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c43534d8-dfa6-4edb-bd97-667750b0483d") ) (label "CPE11.OUT2" (at 344.17 448.31 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "c559f250-485a-42cd-a96b-b046de06d83f") ) (label "CPE21.OUT1" (at 411.48 83.82 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "cbc3fdcc-d998-4362-b323-7ac5b937deea") ) (label "CPE21.OUT1" (at 68.58 426.72 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "cc2dc0b1-358d-47fe-a6ac-2da4aa77c7ac") ) (label "CPE21.OUT1" (at 411.48 312.42 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ce503142-830d-414d-a0bb-e3775dd72877") ) (label "CPE12.OUT2" (at 297.18 424.18 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "cf7e91ea-72a3-447a-8cf5-1a930036d32b") ) (label "CPE21.OUT1" (at 458.47 217.17 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d237f7bf-78f3-4851-a34b-046a38da3559") ) (label "CPE11.OUT1" (at 182.88 302.26 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d39e0c3a-f354-440a-a4eb-a89746a74b01") ) (label "CPE21.OUT2" (at 411.48 86.36 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "d42af0e6-7878-4e63-a263-0989f001cbfe") ) (label "CPE12.OUT1" (at 297.18 193.04 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "dd2333ad-6cdc-43a2-97e7-6f1396c64eff") ) (label "CPE22.OUT2" (at 458.47 105.41 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "dfaa00cb-5192-4ac0-935e-066d453030f0") ) (label "CPE11.OUT1" (at 182.88 73.66 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e14d6f4d-33c0-4d49-9b4c-df4fa3c8d195") ) (label "CPE11.OUT2" (at 297.18 190.5 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e228ef4e-8c86-46c5-9f58-c826888c396a") ) (label "CPE21.OUT1" (at 182.88 312.42 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e46c4ee1-5103-4cdd-b7f2-b3130a2b6465") ) (label "CPE22.OUT1" (at 411.48 317.5 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "e9bae63a-35a5-4e75-bfda-8669d478c05b") ) (label "CPE21.OUT2" (at 68.58 429.26 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ea0b644d-a885-437a-93dc-c8aff2bd1716") ) (label "CPE22.OUT2" (at 411.48 91.44 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ea831beb-9a74-498b-98a1-3ad5abdec5f8") ) (label "CPE12.OUT1" (at 68.58 193.04 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ef142253-0e3e-4e0b-8fbb-f74da2d26e0f") ) (label "CPE12.OUT1" (at 344.17 102.87 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f17f6dac-072a-486a-944f-673347e9f84e") ) (label "CPE11.OUT2" (at 297.18 419.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f35d3b78-fc3f-4ae7-81f9-fe74c4cd854c") ) (label "CPE11.OUT1" (at 297.18 416.56 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "f651e9fb-1136-4e17-a7e7-700cc61345c3") ) (label "CPE11.OUT2" (at 344.17 219.71 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fb90bc63-bba4-4e04-b87b-417daeecebe7") ) (label "CPE11.OUT1" (at 68.58 187.96 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fc42f03b-d3ad-4155-bcbc-098933565e66") ) (label "CPE11.OUT2" (at 68.58 419.1 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "fe9a07de-028e-4a01-9ec2-35905fd48460") ) (label "CPE12.OUT2" (at 297.18 195.58 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) (uuid "ff98d69a-7b04-4904-82ef-d5564a263f55") ) (sheet (at 328.93 330.2) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "10267851-36ea-4cef-a7d1-733014bf44ba") (property "Sheetname" "Cologne Processing Element10" (at 328.93 329.4884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 328.93 343.4846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 328.93 331.47 180) (uuid "bf9224c8-2c70-45bd-a763-c16ca544167e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 341.63 331.47 0) (uuid "658b7015-13d1-489c-a76c-a9810d874017") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 341.63 334.01 0) (uuid "d68345f0-b99b-4f26-8c68-a8b77b08c4c8") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "76") ) ) ) ) (sheet (at 214.63 330.2) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "10712960-9d68-44ab-9263-4d6a1023dbc4") (property "Sheetname" "CPE22" (at 214.63 329.4884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 214.63 343.4846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 214.63 331.47 180) (uuid "f185334a-fef2-4975-a48d-b8dea91e3fce") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 227.33 334.01 0) (uuid "c06d2201-443b-4698-9fef-e9f071d63515") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 227.33 331.47 0) (uuid "74e8138d-c137-4977-9785-ed52aa984843") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "123") ) ) ) ) (sheet (at 72.39 444.5) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "15237a69-f566-4902-aed7-ec94257dac5f") (property "Sheetname" "Input Multiplexer" (at 72.39 443.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 72.39 470.4846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 97.79 445.77 0) (uuid "200db6c4-dea1-4a44-993d-0a7defd7134b") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 72.39 445.77 180) (uuid "e6537b2c-14c1-4127-a015-ef8b8062f0ad") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 72.39 448.31 180) (uuid "7df6eb58-b597-485c-8051-2d63c35164e3") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 72.39 450.85 180) (uuid "fea20375-2579-4dc4-809a-b4b77b87fad5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 72.39 453.39 180) (uuid "ea468cdb-e9d2-49ba-98ea-e25290cf8b47") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 72.39 455.93 180) (uuid "cf58021f-2f96-4da7-8a81-c1f6cc91fd2d") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 72.39 458.47 180) (uuid "d8d5856d-7064-4d80-a79a-51dae2a75206") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "10") ) ) ) ) (sheet (at 415.29 101.6) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "15666f69-b7ed-4f99-992f-5817e69dcac9") (property "Sheetname" "Input Multiplexer15" (at 415.29 100.8884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 415.29 127.5846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 440.69 102.87 0) (uuid "9e8fb9b5-5db5-41f1-aeb1-c316dfb6baaf") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 415.29 102.87 180) (uuid "68047b69-01c9-49bf-80c5-8f132bdc4390") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 415.29 105.41 180) (uuid "050cc058-7143-4c74-95dc-ded1611004f2") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 415.29 107.95 180) (uuid "c99a374d-1009-4979-a24d-c951e78aaa47") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 415.29 110.49 180) (uuid "4fcac1c4-db9c-4514-ab7a-e61d33b2d56f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 415.29 113.03 180) (uuid "365ae063-bac1-45eb-b285-555ab35b95b5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 415.29 115.57 180) (uuid "a3658eed-e1b9-4c89-b8ca-592f1e6d89d8") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "119") ) ) ) ) (sheet (at 100.33 101.6) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "213bc7b9-e128-4444-87f8-9514f96db5d7") (property "Sheetname" "Cologne Processing Element6" (at 100.33 100.8884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 100.33 114.8846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 100.33 102.87 180) (uuid "c847851f-47ae-47c9-93fa-fe8fa77e84fc") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 113.03 102.87 0) (uuid "4a50e8f1-f685-4fae-8a96-b6963916b759") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 113.03 105.41 0) (uuid "875326c7-eedf-4f49-b68b-12faa9614751") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "45") ) ) ) ) (sheet (at 214.63 444.5) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "2230e204-608d-4529-b33f-27f2903e32dc") (property "Sheetname" "CPE21" (at 214.63 443.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 214.63 457.7846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 214.63 445.77 180) (uuid "8468fbf3-30e8-4f49-b7c7-365d9b62dcaa") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 227.33 448.31 0) (uuid "d170a707-ba35-4dc9-a352-7d91e5d59eaf") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 227.33 445.77 0) (uuid "79de0919-28e1-4943-acb4-6d88dee92472") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "122") ) ) ) ) (sheet (at 300.99 444.5) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "26834ae4-da98-4578-9c2e-cd695e873ce7") (property "Sheetname" "Input Multiplexer8" (at 300.99 443.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 300.99 470.4846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 326.39 445.77 0) (uuid "58a86aa2-ba8e-49a3-ba49-937f95adf84e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 300.99 445.77 180) (uuid "fe3579f6-4c65-4bcb-8ef5-647c7bf33df4") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 300.99 448.31 180) (uuid "8f4b393f-bd36-4bbc-a6a8-8f155e17f571") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 300.99 450.85 180) (uuid "1aae75bd-0dcb-4a9f-a4ed-2b20809ccad3") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 300.99 453.39 180) (uuid "72aa0078-6a54-4607-99e7-1f80c2b7d59f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 300.99 455.93 180) (uuid "3fcc20a6-30e4-4ff3-b923-5951a4639084") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 300.99 458.47 180) (uuid "3bd3a323-9b08-45c9-96ae-519178004381") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "112") ) ) ) ) (sheet (at 443.23 101.6) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "303dbe62-25dc-49e5-9ee2-37afeb4d19e7") (property "Sheetname" "Cologne Processing Element15" (at 443.23 100.8884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 443.23 114.8846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 443.23 102.87 180) (uuid "67fd0ef8-aced-4f20-ae18-407b78d5b698") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 455.93 102.87 0) (uuid "41fbc460-c63b-4fb5-9a7d-b846819cbd9c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 455.93 105.41 0) (uuid "bef76140-3d6e-46af-8ca3-588ca9dccebb") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "106") ) ) ) ) (sheet (at 152.4 72.39) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "34307b1c-bb59-4948-a0b5-690c6f35f493") (property "Sheetname" "Output Multiplexer (2,2)2" (at 152.4 71.6784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "om22.kicad_sch" (at 152.4 98.3746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE11.OUT1" input (at 177.8 73.66 0) (uuid "33eb5219-8aab-416f-89dd-cbdc6032c452") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE11.OUT2" input (at 177.8 76.2 0) (uuid "7d4809fb-dc3f-446b-89cb-701df2494e21") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT1" input (at 177.8 78.74 0) (uuid "cbb11b13-3a06-4dc0-86c8-68ea8d0ffad1") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT2" input (at 177.8 81.28 0) (uuid "baa31b6c-1ac0-487d-9a02-56d83ff6a223") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT1" input (at 177.8 83.82 0) (uuid "7ccca302-b1c0-4b47-89fd-eea03269c3ed") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT2" input (at 177.8 86.36 0) (uuid "c95d66e3-0912-493c-97e8-fa1a6bde2d55") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT1" input (at 177.8 88.9 0) (uuid "b903bb1b-8e1b-45ff-ae5f-45db16df9c9d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT2" input (at 177.8 91.44 0) (uuid "254a9a14-0e5c-486a-a84f-c6462a630453") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "SB.P01.D0" output (at 152.4 73.66 180) (uuid "9ddbdedb-1095-499c-914a-e74fedc44297") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "126") ) ) ) ) (sheet (at 266.7 415.29) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "34831ec2-2eb1-4676-b8e6-3ac5bc5ad32e") (property "Sheetname" "Output Multiplexer (1,1)1" (at 266.7 414.5784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "om11.kicad_sch" (at 266.7 441.2746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE11.OUT1" input (at 292.1 416.56 0) (uuid "f865004d-f79d-431a-a839-a4e9a17020f5") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE11.OUT2" input (at 292.1 419.1 0) (uuid "e345077c-c285-4fef-a0fb-a2d3d14dd659") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT1" input (at 292.1 421.64 0) (uuid "6e4825ab-09d3-4683-92b5-977681a8279e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT2" input (at 292.1 424.18 0) (uuid "4397c9ac-3c1f-4070-bc2e-128b036fac6e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT1" input (at 292.1 426.72 0) (uuid "fa714cab-c8d5-47ad-8baf-f8137259e021") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT2" input (at 292.1 429.26 0) (uuid "3868bd61-cce4-4eb6-8043-2c7ce62626ba") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT1" input (at 292.1 431.8 0) (uuid "aa6ff735-f40a-4c7d-a087-7f9e36db232e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT2" input (at 292.1 434.34 0) (uuid "664ed6e0-058a-49cd-8d52-dac084c0c33d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "SB.P01.D0" output (at 266.7 416.56 180) (uuid "61a059ad-3e89-46c1-b45f-4ffcf6f6ced8") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "123") ) ) ) ) (sheet (at 100.33 215.9) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "3708e668-06fd-4bde-a510-be9c4c483743") (property "Sheetname" "Cologne Processing Element4" (at 100.33 215.1884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 100.33 229.1846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 100.33 217.17 180) (uuid "d363a13c-e68b-4d8c-b73f-8cc0d062bd70") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 113.03 217.17 0) (uuid "75a87365-7601-4cab-bf62-c31b0e04a011") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 113.03 219.71 0) (uuid "8a8cce5a-6720-415a-86b4-c3cc886a1c3c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "19") ) ) ) ) (sheet (at 415.29 330.2) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "3c4d503e-07c9-4206-aaeb-e7fbe5d6150b") (property "Sheetname" "Input Multiplexer11" (at 415.29 329.4884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 415.29 356.1846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 440.69 331.47 0) (uuid "96d78af0-2d2d-44a3-b1ea-963cf40aa6ed") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 415.29 331.47 180) (uuid "697b048e-b782-46eb-a3d6-64277f765dce") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 415.29 334.01 180) (uuid "475b77a3-d1a5-4c29-b522-2142d9c85c40") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 415.29 336.55 180) (uuid "0a5fa9b6-5b70-416c-99aa-2cda5d309972") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 415.29 339.09 180) (uuid "582231c3-15c0-43c3-83d5-54b5f7df980f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 415.29 341.63 180) (uuid "ce190fcb-874f-4b50-bdd6-08e9e3141f5c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 415.29 344.17 180) (uuid "004734c1-ec0e-4800-81b4-9deeff870181") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "115") ) ) ) ) (sheet (at 443.23 330.2) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "3f316f32-190e-4f32-9c15-1cd4f82ec60d") (property "Sheetname" "Cologne Processing Element11" (at 443.23 329.4884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 443.23 343.4846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 443.23 331.47 180) (uuid "01b3037c-b3c5-4696-95a6-34ee5d7fc6e4") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 455.93 331.47 0) (uuid "d7927129-1b7a-4cec-9de4-1cdaccebb971") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 455.93 334.01 0) (uuid "96d93749-58ad-49bf-89b1-2446a32898e3") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "82") ) ) ) ) (sheet (at 381 72.39) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "3fc18cdd-76bf-4b52-9ef6-a64543f67288") (property "Sheetname" "Output Multiplexer (2,2)3" (at 381 71.6784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "om22.kicad_sch" (at 381 98.3746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE11.OUT1" input (at 406.4 73.66 0) (uuid "63bd6a65-e4aa-47bc-b292-9136605387e2") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE11.OUT2" input (at 406.4 76.2 0) (uuid "17f8aa44-ebb3-4541-83c4-fdb7a7d0b523") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT1" input (at 406.4 78.74 0) (uuid "f8266c8b-15f9-4e68-9dfa-c7674f0f0b5f") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT2" input (at 406.4 81.28 0) (uuid "c4c434d3-6ca8-4b4f-822b-e6d48f9c51f5") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT1" input (at 406.4 83.82 0) (uuid "2e3889bd-2042-4d74-a552-bee4be79fa02") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT2" input (at 406.4 86.36 0) (uuid "bac61ce5-efae-441e-9aec-f0c3bd635888") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT1" input (at 406.4 88.9 0) (uuid "2484f5ee-85b7-4e9a-a2c4-6252ad53f3b9") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT2" input (at 406.4 91.44 0) (uuid "2a2e36be-1104-42bf-89a5-faea73a4e2af") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "SB.P01.D0" output (at 381 73.66 180) (uuid "c73aa7b1-2545-484b-ad39-f8360aa74438") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "128") ) ) ) ) (sheet (at 266.7 142.24) (size 38.1 39.37) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "478a0a11-ef47-469e-9c41-0b6d93b14e55") (property "Sheetname" "Big Switch Box3" (at 266.7 141.5284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sb_big.kicad_sch" (at 266.7 182.1946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "D0" input (at 266.7 143.51 180) (uuid "848d5959-bf2e-4443-8838-3549bdd7fcdb") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_1" input (at 266.7 154.94 180) (uuid "19867a53-f575-415a-bccf-ae462bcb3e3e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_2" input (at 279.4 181.61 270) (uuid "56e2c300-d322-4509-a62c-89b015cac561") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_3" input (at 304.8 167.64 0) (uuid "a38dd58a-b9b7-4f92-863c-b3457de39ac0") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D2_4" input (at 292.1 142.24 90) (uuid "158495d1-b4f9-485b-b780-eaabf5f748fa") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_1" input (at 266.7 157.48 180) (uuid "c6851967-38cd-43b4-81c3-82c62a09f017") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_2" input (at 281.94 181.61 270) (uuid "90db175c-304c-4e6b-8f17-44f6b02f83f5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_3" input (at 304.8 165.1 0) (uuid "1aaeea5e-f8b6-4a47-b67d-64bc173b1607") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_4" input (at 289.56 142.24 90) (uuid "0b3fe008-9b3e-4b44-8bb4-e685cff8c5a1") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D4_1" input (at 266.7 160.02 180) (uuid "cec30af1-aac9-4178-9bba-ad705ce6e9ff") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D4_2" input (at 284.48 181.61 270) (uuid "5cc5ae9f-d08d-41b6-8515-2e6d726a3b7d") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D4_3" input (at 304.8 162.56 0) (uuid "0c46118e-958c-4b3b-bf7d-2572ec79b306") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D4_4" input (at 287.02 142.24 90) (uuid "40926a35-4a9d-4b93-9e5d-80da172008e4") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D5_1" input (at 266.7 162.56 180) (uuid "ea956d1a-83e8-49a1-9073-475e07621350") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D5_2" input (at 287.02 181.61 270) (uuid "1ba118a9-a8e6-407c-986e-3a865c212643") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D5_3" input (at 304.8 160.02 0) (uuid "6569f968-bd75-4869-830f-2aad60775019") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D5_4" input (at 284.48 142.24 90) (uuid "d2a12f10-22d8-4400-a4bc-677933e64726") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D6_1" input (at 266.7 165.1 180) (uuid "788b6f54-cb3c-494f-aa37-995b89a9246b") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D6_2" input (at 289.56 181.61 270) (uuid "ca8c6395-6f7f-413f-9549-04ea96e6b4fb") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D6_3" input (at 304.8 157.48 0) (uuid "f07d26c9-5f45-4a4c-aa8d-03c7175cfe23") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D6_4" input (at 281.94 142.24 90) (uuid "32776191-d47d-4def-9187-18e5ec891e75") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D7_1" input (at 266.7 167.64 180) (uuid "d27f998c-27ed-485c-a6b0-dca675750a3d") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D7_2" input (at 292.1 181.61 270) (uuid "39d38559-7da2-43de-b5e9-fd4f98cf2f14") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D7_3" input (at 304.8 154.94 0) (uuid "11117d73-5989-4d16-b786-d29591f99a4d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D7_4" input (at 279.4 142.24 90) (uuid "d231365d-fa2e-42c6-9d53-76395eee7d91") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "X12" input (at 266.7 180.34 180) (uuid "67be6e24-f1e5-4cb7-b3a7-7900d4ab65b4") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X34" input (at 304.8 143.51 0) (uuid "1e4a368e-c540-4d85-84d1-8798f9a7f69c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y1" output (at 304.8 152.4 0) (uuid "128406c0-363f-4892-a33b-b6afe415f406") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y2" output (at 276.86 142.24 90) (uuid "6e6c40f3-2d01-4628-a947-68d00dc3738a") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y3" output (at 266.7 170.18 180) (uuid "038202ac-b3e6-4770-9854-d41346cc1993") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "Y4" output (at 294.64 181.61 270) (uuid "eb737f59-606e-4e83-a750-befa1f3f37dc") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "YDIAG" output (at 304.8 180.34 0) (uuid "90383b2e-7902-4d22-be21-8416bda97554") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "63") ) ) ) ) (sheet (at 415.29 215.9) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4a71ba92-793e-49ad-9861-7c41ba263f46") (property "Sheetname" "Input Multiplexer13" (at 415.29 215.1884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 415.29 241.8846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 440.69 217.17 0) (uuid "a7b539a8-2d46-4fee-9cc8-abaeb68046be") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 415.29 217.17 180) (uuid "5c82ab8f-005b-4b49-86f0-030fd15c196f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 415.29 219.71 180) (uuid "cd6acccb-c3be-45d4-9845-0383de9c97be") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 415.29 222.25 180) (uuid "dd9bd3ce-39ef-4784-9b5a-798b93037329") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 415.29 224.79 180) (uuid "c3f57297-1b80-4f14-8ee6-cd82a0d36724") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 415.29 227.33 180) (uuid "786bad15-9363-4da8-9fb2-4df14a8c10a8") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 415.29 229.87 180) (uuid "0a3265a1-381f-4aba-8a9c-16db73f6edfe") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "117") ) ) ) ) (sheet (at 72.39 101.6) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4b653757-b4f2-49b6-8afc-3b9eb400680f") (property "Sheetname" "Input Multiplexer6" (at 72.39 100.8884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 72.39 127.5846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 97.79 102.87 0) (uuid "20ad52b1-52ed-4e3a-b907-425ae831aaed") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 72.39 102.87 180) (uuid "1d875c8a-c25e-437c-8745-dcd86773b32e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 72.39 105.41 180) (uuid "b937e9c4-6738-4f2a-973e-a4d471c4cb04") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 72.39 107.95 180) (uuid "1d5f070e-9bfa-49a8-b0d8-34fa31a80108") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 72.39 110.49 180) (uuid "44a625c6-4198-4db4-971a-69d695b9b244") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 72.39 113.03 180) (uuid "0908fb97-26a1-4f2d-9359-3e1616ef279d") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 72.39 115.57 180) (uuid "8dcc6f0f-ac2e-41d9-b1ee-58ffe60497fc") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "59") ) ) ) ) (sheet (at 381 27.94) (size 38.1 39.37) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4c7c13ea-4fd7-43ce-a779-ee5d2f712e47") (property "Sheetname" "Small Switch Box3" (at 381 27.2284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sb_sml.kicad_sch" (at 381 67.8946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "D0" input (at 381 29.21 180) (uuid "40fd1963-a700-4b9d-a0ec-c1a1219f9bc1") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_1" input (at 381 40.64 180) (uuid "71dce780-9ec1-4a5e-aaaf-3bd12f87e7f5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_2" input (at 393.7 67.31 270) (uuid "c21cac31-59cd-4906-bba1-e47cff0bdc91") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_3" input (at 419.1 53.34 0) (uuid "c09e46a7-145d-4bfd-bcb1-e60b6c49ecc0") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D2_4" input (at 406.4 27.94 90) (uuid "90d397b9-5c13-41e5-bebe-d80e77968cd4") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_1" input (at 381 43.18 180) (uuid "3ced6e64-4a06-4459-8d8f-44b9939105e8") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_2" input (at 396.24 67.31 270) (uuid "15ca1920-81c3-42a5-b019-54e1cfd229ef") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_3" input (at 419.1 50.8 0) (uuid "78abadd0-106c-4dec-a122-7e4f6ccef947") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_4" input (at 403.86 27.94 90) (uuid "be249107-742d-46da-a28b-7a89304f2120") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "X12" input (at 381 66.04 180) (uuid "1095622b-a11c-4418-b7f2-58be7a23b8bc") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X14" input (at 381 63.5 180) (uuid "48223bcf-4604-46bd-99e9-9aea4b4e1333") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X23" input (at 381 60.96 180) (uuid "1761c1f5-d268-47ed-9063-f5dd76998c49") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X34" input (at 419.1 29.21 0) (uuid "963488ee-02df-4854-a697-9a0433b0f5a1") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y1" output (at 419.1 38.1 0) (uuid "d5b3351e-7482-43fd-931f-93b045467528") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y2" output (at 391.16 27.94 90) (uuid "fb9da14c-eba0-40e6-96e2-182f4df7f1aa") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y3" output (at 381 55.88 180) (uuid "f50da44e-5402-4199-bf27-9e952e90c43b") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "Y4" output (at 408.94 67.31 270) (uuid "19bbb410-4822-432d-a4e3-af0a1b3d9a6c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "YDIAG" output (at 419.1 66.04 0) (uuid "a00d7cdf-0e24-4cf2-849c-c67465ee4354") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "121") ) ) ) ) (sheet (at 381 300.99) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4dd9b8e4-b3dc-4653-8e4c-10fb774b1e10") (property "Sheetname" "Output Multiplexer (2,2)1" (at 381 300.2784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "om22.kicad_sch" (at 381 326.9746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE11.OUT1" input (at 406.4 302.26 0) (uuid "c6fbe70f-9aef-4f39-8fda-4ccf97b7828f") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE11.OUT2" input (at 406.4 304.8 0) (uuid "54d2f334-a2e8-45eb-a05d-75c0d6b8c370") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT1" input (at 406.4 307.34 0) (uuid "6f00a6fd-0781-4add-a298-e398603694ce") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT2" input (at 406.4 309.88 0) (uuid "7ef8c359-3699-4a70-9e1b-9275147cd81e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT1" input (at 406.4 312.42 0) (uuid "51074530-9357-41b1-b720-d263fe8f4d82") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT2" input (at 406.4 314.96 0) (uuid "902f5d37-897f-46f6-99bc-c648dce2d266") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT1" input (at 406.4 317.5 0) (uuid "7c1ab3db-9982-40b1-819d-d86e0fda95c1") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT2" input (at 406.4 320.04 0) (uuid "936ef912-fea7-4e64-9ef7-0fcfcfded988") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "SB.P01.D0" output (at 381 302.26 180) (uuid "736d5c62-a6e6-4218-9720-41ad18a1bbe9") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "124") ) ) ) ) (sheet (at 152.4 300.99) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "4ee8840f-c034-4c64-a613-6418dbdce00d") (property "Sheetname" "Output Multiplexer (2,2)" (at 152.4 300.2784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "om22.kicad_sch" (at 152.4 326.9746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE11.OUT1" input (at 177.8 302.26 0) (uuid "648e4193-f4f2-4419-b9d8-ebca8c4d4916") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE11.OUT2" input (at 177.8 304.8 0) (uuid "7e5e0d2b-73bb-4dad-b8d6-9afa561aba4e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT1" input (at 177.8 307.34 0) (uuid "2e709726-758c-4ffd-95db-46da059eedff") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT2" input (at 177.8 309.88 0) (uuid "492858b9-336b-4c34-9da3-4b0cb2e33fb0") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT1" input (at 177.8 312.42 0) (uuid "37fe75c8-42b7-4ebc-848e-a1ff2d770664") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT2" input (at 177.8 314.96 0) (uuid "dc0e8c6c-7938-4b06-bbbe-0fe580e011b8") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT1" input (at 177.8 317.5 0) (uuid "6eb16f47-4cb8-47b2-8efa-679fdf9bcbb9") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT2" input (at 177.8 320.04 0) (uuid "66253e8f-f254-4ded-a259-c0af35990b7c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "SB.P01.D0" output (at 152.4 302.26 180) (uuid "14ee0bed-b1e2-4ffc-96c6-d9978a4494f1") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "12") ) ) ) ) (sheet (at 300.99 101.6) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "53057a60-0610-4a8e-b816-7199fa30cd79") (property "Sheetname" "Input Multiplexer14" (at 300.99 100.8884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 300.99 127.5846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 326.39 102.87 0) (uuid "3c595ca4-1dfb-46ec-85c4-6a6f1bf12bbe") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 300.99 102.87 180) (uuid "22614bf3-94e1-4748-bfcb-5d6d1b4f2fb9") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 300.99 105.41 180) (uuid "3cefdc5b-1ef6-4fb8-a0f5-93e942aaf096") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 300.99 107.95 180) (uuid "53b47b53-df53-4f8b-8afb-8665aae8852c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 300.99 110.49 180) (uuid "109c6f35-0c07-46cc-a462-aed834ecb64a") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 300.99 113.03 180) (uuid "e3bc7cf3-970d-4f79-8a63-d2ef996abf38") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 300.99 115.57 180) (uuid "6afc953b-d2e6-471c-a651-47a99397312a") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "118") ) ) ) ) (sheet (at 186.69 444.5) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "5874b725-80d2-456e-aad7-0e7be771e786") (property "Sheetname" "Input Multiplexer1" (at 186.69 443.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 186.69 470.4846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 212.09 445.77 0) (uuid "b9e07de0-77dc-47d9-b6df-82a4a93ab477") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 186.69 445.77 180) (uuid "4755e31d-4838-46b4-a941-fd848f964d53") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 186.69 448.31 180) (uuid "17b04d3d-dabf-4ddf-b6b3-d29edcf21ada") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 186.69 450.85 180) (uuid "c1b91371-c22b-427a-bd7d-94df9f030171") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 186.69 453.39 180) (uuid "2f90eb2e-99ed-4838-bc71-c6e00f8a2f3e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 186.69 455.93 180) (uuid "fcb19655-f04f-4eee-b4cd-1d2c26556ba5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 186.69 458.47 180) (uuid "d0081309-7c16-4369-b2a6-cebfa647aaa4") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "18") ) ) ) ) (sheet (at 328.93 101.6) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "5bad9d32-c3e8-4160-adf1-aa4f27acbfec") (property "Sheetname" "Cologne Processing Element14" (at 328.93 100.8884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 328.93 114.8846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 328.93 102.87 180) (uuid "4f0b85a5-8e03-4ff8-94b6-f8787476a618") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 341.63 102.87 0) (uuid "e1ed9a91-afbd-4d35-a662-9fb7ff75457f") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 341.63 105.41 0) (uuid "ea10cd6b-86f1-44d7-a979-383796b6bdbb") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "100") ) ) ) ) (sheet (at 186.69 215.9) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "5f80c25b-15f6-43c9-b1ce-146688513aa6") (property "Sheetname" "Input Multiplexer5" (at 186.69 215.1884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 186.69 241.8846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 212.09 217.17 0) (uuid "aa945bea-f554-4262-858f-435cdca44632") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 186.69 217.17 180) (uuid "6da4c5cf-de4c-489a-9e4f-0ef3e09a0e9b") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 186.69 219.71 180) (uuid "89365f4e-9b23-4a0b-92a8-df7a257a2bd3") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 186.69 222.25 180) (uuid "d4669eb9-fe60-4479-9f9c-ff719bbcd284") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 186.69 224.79 180) (uuid "67112f12-2af7-437e-8031-c009186981f6") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 186.69 227.33 180) (uuid "e011abaa-e081-49ee-8379-17098dc48640") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 186.69 229.87 180) (uuid "68fd97e3-f77a-44f1-9943-2e2a583f8f81") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "58") ) ) ) ) (sheet (at 300.99 215.9) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "6da24921-0cf0-4d6d-bab2-aec1250ea677") (property "Sheetname" "Input Multiplexer12" (at 300.99 215.1884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 300.99 241.8846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 326.39 217.17 0) (uuid "ee8daf56-2c85-4a03-af77-c0577e4120ec") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 300.99 217.17 180) (uuid "699518f0-2529-4bd1-a5e1-43204756a9e9") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 300.99 219.71 180) (uuid "f60ce580-1418-4835-b444-5e7ca71aabf8") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 300.99 222.25 180) (uuid "e9defc55-7873-46b7-b6f2-7233733fe503") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 300.99 224.79 180) (uuid "e3059e1f-44ec-43a2-befa-28ad788fa36d") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 300.99 227.33 180) (uuid "8dfab140-b70b-45d5-bc1f-e21dfcb4a035") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 300.99 229.87 180) (uuid "c257026f-4877-4771-b133-d8deb8256230") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "116") ) ) ) ) (sheet (at 381 256.54) (size 38.1 39.37) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "7b7168c3-2193-4365-9bd0-9929e7b794de") (property "Sheetname" "Big Switch Box2" (at 381 255.8284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sb_big.kicad_sch" (at 381 296.4946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "D0" input (at 381 257.81 180) (uuid "50b0b501-da06-4360-9afd-1185ed148776") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_1" input (at 381 269.24 180) (uuid "2cbafad8-b2ae-4a1f-8ec5-a4a1a86e17cd") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_2" input (at 393.7 295.91 270) (uuid "47bb1470-4890-4f99-8beb-03842190e5b1") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_3" input (at 419.1 281.94 0) (uuid "39f722bf-39b9-4297-baee-c57ee4d19b99") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D2_4" input (at 406.4 256.54 90) (uuid "41dd5ac5-da4d-4a38-97d9-32c9531cdc31") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_1" input (at 381 271.78 180) (uuid "6fb8a857-1ff0-47b8-b38b-86ca5381454a") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_2" input (at 396.24 295.91 270) (uuid "4c81be0b-0ce4-4f2f-b8f9-732b331df70b") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_3" input (at 419.1 279.4 0) (uuid "8d504c42-04c5-4790-8466-c9510e52b354") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_4" input (at 403.86 256.54 90) (uuid "6ca61b12-a138-447c-824f-1a50aac98596") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D4_1" input (at 381 274.32 180) (uuid "85a6262f-3726-4a32-acdc-ba5b7842c9dd") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D4_2" input (at 398.78 295.91 270) (uuid "ecd05bc8-1c02-4d35-bc4c-250465264d27") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D4_3" input (at 419.1 276.86 0) (uuid "fb718f67-58d8-4536-aab9-425ac4567b14") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D4_4" input (at 401.32 256.54 90) (uuid "2f97c0be-2dca-4ac1-9a81-d1a241680aa1") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D5_1" input (at 381 276.86 180) (uuid "ae45e03a-844a-4991-bbb6-d0ef3d450859") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D5_2" input (at 401.32 295.91 270) (uuid "5bb6871d-1899-430b-bf77-718e3cc5235a") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D5_3" input (at 419.1 274.32 0) (uuid "ad87b59b-c6af-442c-aceb-903bff118e6f") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D5_4" input (at 398.78 256.54 90) (uuid "44542aec-af93-4dba-a14b-b5f585f6219b") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D6_1" input (at 381 279.4 180) (uuid "661e8588-4a32-40ab-a8e8-f58123773c8b") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D6_2" input (at 403.86 295.91 270) (uuid "9d769be8-f6ff-4a74-af42-e7de3e73d636") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D6_3" input (at 419.1 271.78 0) (uuid "8f279843-3b1e-47a6-bc08-7125ef5f2eb0") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D6_4" input (at 396.24 256.54 90) (uuid "3da4c78a-7235-4a26-a2ff-c04eef5be242") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D7_1" input (at 381 281.94 180) (uuid "767b3ff5-4359-429b-b12d-6cfeaf52eef1") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D7_2" input (at 406.4 295.91 270) (uuid "9e23831e-2f81-49ba-b0b9-5f1b84d72ed2") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D7_3" input (at 419.1 269.24 0) (uuid "37218a65-9fde-4d32-bd32-dc16198e8bbc") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D7_4" input (at 393.7 256.54 90) (uuid "cbb877bc-a8d5-4980-849b-096a3f52d0b7") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "X12" input (at 381 294.64 180) (uuid "00efa0fc-edc4-485d-8c7b-b1469d734516") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X34" input (at 419.1 257.81 0) (uuid "b0535e0d-4791-4681-b864-efbcceab473e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y1" output (at 419.1 266.7 0) (uuid "2fc67e12-6914-4dda-a91b-60d7aabe6b94") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y2" output (at 391.16 256.54 90) (uuid "d84229cf-3ed7-4a18-8ea9-25ba877ac634") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y3" output (at 381 284.48 180) (uuid "21a099a8-ed65-4aa6-8a67-427fa0c1acc2") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "Y4" output (at 408.94 295.91 270) (uuid "3e8fac87-2f2e-4917-8757-c29a23b2aa86") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "YDIAG" output (at 419.1 294.64 0) (uuid "3c584ca5-b9cf-4998-b29d-a6c1137f8341") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "62") ) ) ) ) (sheet (at 38.1 186.69) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "7f0a652f-db38-48df-b50d-37a3c6c9c68e") (property "Sheetname" "Output Multiplexer (1,1)2" (at 38.1 185.9784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "om11.kicad_sch" (at 38.1 212.6746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE11.OUT1" input (at 63.5 187.96 0) (uuid "1fdf6ea9-9cf9-481f-971f-effc712bdaba") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE11.OUT2" input (at 63.5 190.5 0) (uuid "cb80dc26-cc3d-43f3-9f8b-ca81d411b53d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT1" input (at 63.5 193.04 0) (uuid "bc83938a-85f5-4456-8df8-945a47fb223c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT2" input (at 63.5 195.58 0) (uuid "51d35632-760e-4c2f-8ecd-93dd5421e84e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT1" input (at 63.5 198.12 0) (uuid "db3d4c9f-669d-4e34-b80c-c66263e4b4d5") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT2" input (at 63.5 200.66 0) (uuid "ad1ffafd-5d6b-441a-88a8-20ef82e458b8") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT1" input (at 63.5 203.2 0) (uuid "f99a7550-f324-46c4-b0e0-6e4bfdeb06e7") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT2" input (at 63.5 205.74 0) (uuid "102ca207-491f-4046-9773-cc8d198b792c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "SB.P01.D0" output (at 38.1 187.96 180) (uuid "dbf32383-b72a-4bc7-b7e0-0ef41e652e87") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "125") ) ) ) ) (sheet (at 214.63 215.9) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "8aa34640-bb40-4fe2-bc97-bb16bcd53a98") (property "Sheetname" "Cologne Processing Element5" (at 214.63 215.1884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 214.63 229.1846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 214.63 217.17 180) (uuid "2522c49b-7ac9-48e8-b1fa-27a6d62ca868") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 227.33 217.17 0) (uuid "c3e82a4f-f058-4900-acfb-0a8cb40986b8") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 227.33 219.71 0) (uuid "ae87a45a-e11d-45c6-8d6d-f6dd8df5720f") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "39") ) ) ) ) (sheet (at 328.93 444.5) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "9b1ab731-94a3-4118-a2ae-9618fbf2d52b") (property "Sheetname" "Cologne Processing Element8" (at 328.93 443.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 328.93 457.7846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 328.93 445.77 180) (uuid "bba4df37-667f-4dca-91d8-23f58625580b") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 341.63 445.77 0) (uuid "be8d0b8f-a3e2-46df-8097-6c7736e59032") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 341.63 448.31 0) (uuid "b91c7bdb-a08d-4e3e-bdc6-5213e962c3a7") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "64") ) ) ) ) (sheet (at 266.7 186.69) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "a1bd1bf1-363d-423a-8846-17236a10f502") (property "Sheetname" "Output Multiplexer (1,1)3" (at 266.7 185.9784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "om11.kicad_sch" (at 266.7 212.6746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE11.OUT1" input (at 292.1 187.96 0) (uuid "6eb3665e-0b8d-4e65-8745-692d67e63a88") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE11.OUT2" input (at 292.1 190.5 0) (uuid "ec92d366-b63b-4852-8f3c-298783ef3824") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT1" input (at 292.1 193.04 0) (uuid "8026103b-9dd0-4ab7-abc6-eea91c7c77d0") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT2" input (at 292.1 195.58 0) (uuid "ed852fde-448c-4a7e-9046-09670b6a204a") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT1" input (at 292.1 198.12 0) (uuid "8330be5a-1102-4346-ab79-f064473df2db") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT2" input (at 292.1 200.66 0) (uuid "f0a208ea-ea76-46e0-8c35-7b4067c22916") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT1" input (at 292.1 203.2 0) (uuid "80ed4aab-569f-4122-9e54-be0bcc95609c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT2" input (at 292.1 205.74 0) (uuid "e6508b25-723e-4792-9e38-8bbaa8af921e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "SB.P01.D0" output (at 266.7 187.96 180) (uuid "f63e77b3-07f0-4097-96b9-c0c5bd0ea02c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "127") ) ) ) ) (sheet (at 72.39 330.2) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "a9d9c733-a319-47fe-9511-ffa679100753") (property "Sheetname" "Input Multiplexer2" (at 72.39 329.4884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 72.39 356.1846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 97.79 331.47 0) (uuid "7dfc8c94-6c0a-40e7-91b4-a3166c7f31f4") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 72.39 331.47 180) (uuid "f51d682f-8930-4445-8a94-eb0a0bbddb98") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 72.39 334.01 180) (uuid "2ba74df1-cb25-4cf8-98d5-a57dfb387984") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 72.39 336.55 180) (uuid "53e492e5-5f4b-4fbb-a3e5-7c8c21d950d7") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 72.39 339.09 180) (uuid "07339d2e-50a4-471a-a086-883487d04e3d") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 72.39 341.63 180) (uuid "5d1541f2-8323-4d76-bc26-a28bb25d8ed7") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 72.39 344.17 180) (uuid "cfe37840-0539-46dc-bfa1-d4043751f6c0") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "33") ) ) ) ) (sheet (at 72.39 215.9) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "b0039cf5-a560-4402-8cb2-900045e79843") (property "Sheetname" "Input Multiplexer4" (at 72.39 215.1884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 72.39 241.8846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 97.79 217.17 0) (uuid "0bbaaf54-9cb9-4d3e-9449-2bb8a0b34b35") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 72.39 217.17 180) (uuid "13724b8f-757e-4339-8604-77dd48b14dc9") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 72.39 219.71 180) (uuid "962205cb-e1c3-4c06-8db7-148011f22e5a") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 72.39 222.25 180) (uuid "8fd440a9-af73-4a8b-9e68-8206bf0e5742") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 72.39 224.79 180) (uuid "cc3bee51-bf3f-4538-974f-c5cf958c8c79") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 72.39 227.33 180) (uuid "73d52cf9-59b1-4dd2-bb86-7f59a395a8f8") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 72.39 229.87 180) (uuid "f07d6037-ea1e-422f-8873-36fb288956e7") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "57") ) ) ) ) (sheet (at 152.4 256.54) (size 38.1 39.37) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "b55ea9b6-2977-4388-9bbd-cad75504aba9") (property "Sheetname" "Small Switch Box" (at 152.4 255.8284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sb_sml.kicad_sch" (at 152.4 296.4946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "D0" input (at 152.4 257.81 180) (uuid "00481fb4-4008-4871-ada8-1d5ca8632457") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_1" input (at 152.4 269.24 180) (uuid "374555c2-03a7-4331-93da-b45e13c70260") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_2" input (at 165.1 295.91 270) (uuid "01df0a8a-124e-44ce-842d-c1f647d936d2") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_3" input (at 190.5 281.94 0) (uuid "126ca048-3e6e-431a-a381-7b7240ac0ef5") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D2_4" input (at 177.8 256.54 90) (uuid "6d303387-47c3-444a-9c2f-1bef42d06b39") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_1" input (at 152.4 271.78 180) (uuid "442ba178-a69d-4beb-885c-04ff423576fe") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_2" input (at 167.64 295.91 270) (uuid "9c0ad030-6b56-459d-b15a-e6c3db81cbf4") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_3" input (at 190.5 279.4 0) (uuid "592086be-eaf6-4212-aebf-f0718e0df89a") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_4" input (at 175.26 256.54 90) (uuid "85140d73-1cf3-42f2-b29a-c16e72b47f8e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "X12" input (at 152.4 294.64 180) (uuid "33160888-af8e-4c2e-afcd-926be3b521a0") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X14" input (at 152.4 292.1 180) (uuid "857a8d97-5eb8-4282-b2d1-a37fe4857545") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X23" input (at 152.4 289.56 180) (uuid "7feec1bf-91a3-4640-9a99-63aed85b6419") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X34" input (at 190.5 257.81 0) (uuid "1d69c100-1615-4199-a400-3559a2f5973d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y1" output (at 190.5 266.7 0) (uuid "d81329ef-02be-45ae-a8a6-34b544b02d89") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y2" output (at 162.56 256.54 90) (uuid "62383b67-c8c6-4311-a5a4-27c2f3531ef4") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y3" output (at 152.4 284.48 180) (uuid "6b0b2aec-59c1-4c1a-88fa-049b754f162e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "Y4" output (at 180.34 295.91 270) (uuid "ac363c06-3c70-4803-8bab-ccff006a5f90") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "YDIAG" output (at 190.5 294.64 0) (uuid "fe013830-2e31-4edc-bdda-ec88be76b43d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "9") ) ) ) ) (sheet (at 415.29 444.5) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "b57a8071-6a29-42f3-b1fa-46043cf15890") (property "Sheetname" "Input Multiplexer9" (at 415.29 443.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 415.29 470.4846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 440.69 445.77 0) (uuid "2d414595-972c-456e-b3ec-bea900172d5c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 415.29 445.77 180) (uuid "bb240688-8d9f-4da9-ada2-c964f55ca73d") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 415.29 448.31 180) (uuid "eabbce7f-d9a1-4217-be13-843ccb2ab8bd") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 415.29 450.85 180) (uuid "c8191f86-53d0-451d-9078-9eb3ef28d1e5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 415.29 453.39 180) (uuid "6c6cc9e3-5fbb-4306-8480-000e958bfd8a") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 415.29 455.93 180) (uuid "86b90b68-269e-44fa-8f9b-b98675695b2f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 415.29 458.47 180) (uuid "7027eb93-3f11-4ec0-aeca-f126af29d700") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "113") ) ) ) ) (sheet (at 186.69 330.2) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "ba0b6e53-6d28-4a63-b105-1bae4b7952cf") (property "Sheetname" "Input Multiplexer3" (at 186.69 329.4884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 186.69 356.1846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 212.09 331.47 0) (uuid "3a301a19-8f22-47fd-82d9-144a1b8d3159") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 186.69 331.47 180) (uuid "d247deff-cb89-4d54-896a-4e5e48cb0c74") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 186.69 334.01 180) (uuid "d0b0bd3e-cadd-45a0-a538-96395501671e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 186.69 336.55 180) (uuid "2f9f037b-92d2-43e1-9ac5-7e05b42f8500") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 186.69 339.09 180) (uuid "28e16058-8b90-4923-8a84-a2deae5c085c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 186.69 341.63 180) (uuid "70080733-c421-486b-9e27-ba25616e00ed") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 186.69 344.17 180) (uuid "5141f8fd-57c4-410f-bdb5-284ac9a36dbf") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "34") ) ) ) ) (sheet (at 214.63 101.6) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "ba5b86d8-c058-4b4e-97ab-c38cca17e5b2") (property "Sheetname" "Cologne Processing Element7" (at 214.63 100.8884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 214.63 114.8846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 214.63 102.87 180) (uuid "22fa5d4b-0379-4bd3-8615-1f5750754e6c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 227.33 102.87 0) (uuid "85a235a3-0ca6-43ca-9b69-7dc3088f3ac1") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 227.33 105.41 0) (uuid "ad982f36-aab1-40f1-bc5d-4eea02c813a4") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "51") ) ) ) ) (sheet (at 38.1 415.29) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "beb8f9ac-f817-4571-9190-d477fd827e5c") (property "Sheetname" "Output Multiplexer (1,1)" (at 38.1 414.5784 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "om11.kicad_sch" (at 38.1 441.2746 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE11.OUT1" input (at 63.5 416.56 0) (uuid "e8e910ec-a54f-4b76-b762-c1d94700b637") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE11.OUT2" input (at 63.5 419.1 0) (uuid "f3a75af7-5f36-4313-a858-eb9ef750ee02") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT1" input (at 63.5 421.64 0) (uuid "b00d9512-bd30-45b7-9604-86100907d0db") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE12.OUT2" input (at 63.5 424.18 0) (uuid "2e5dfb22-71b7-4d8b-8ee9-703f50565a7f") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT1" input (at 63.5 426.72 0) (uuid "b9f1b177-c176-4723-ad89-3a1680456ce5") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE21.OUT2" input (at 63.5 429.26 0) (uuid "b739ce8b-9b38-494e-8f12-f28e236084e4") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT1" input (at 63.5 431.8 0) (uuid "cfbd939d-c276-4a91-90e7-a1a204d71a4b") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "CPE22.OUT2" input (at 63.5 434.34 0) (uuid "a224e51f-f934-4175-b702-5cbc4ba16901") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "SB.P01.D0" output (at 38.1 416.56 180) (uuid "0c9a1cb9-85e9-446e-b114-17aa73cd5d4e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "11") ) ) ) ) (sheet (at 266.7 370.84) (size 38.1 39.37) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "c1eda374-df36-47de-8afc-84fb9a60c6df") (property "Sheetname" "Small Switch Box2" (at 266.7 370.1284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sb_sml.kicad_sch" (at 266.7 410.7946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "D0" input (at 266.7 372.11 180) (uuid "4f029917-4452-4afa-aff1-27ba58ffd497") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_1" input (at 266.7 383.54 180) (uuid "f5a32ba7-7055-4761-8e92-1b7add2714d0") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_2" input (at 279.4 410.21 270) (uuid "52fa39ed-b227-4fbb-aec1-e8cfb6584d3b") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_3" input (at 304.8 396.24 0) (uuid "6c5ff54c-2483-4a6e-b862-194fb0693fc2") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D2_4" input (at 292.1 370.84 90) (uuid "d978dad9-e067-4c53-9eb1-ce79e45d9561") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_1" input (at 266.7 386.08 180) (uuid "814a67e8-d42c-42de-be21-8e3f3fad5a8a") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_2" input (at 281.94 410.21 270) (uuid "5a8a9ff9-fb9d-4a91-b255-67f625973a26") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_3" input (at 304.8 393.7 0) (uuid "4da26892-df4d-46e1-9bd6-5a48ba25c6e5") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_4" input (at 289.56 370.84 90) (uuid "c83f1a0c-369f-4da3-82da-177dc0a5ec34") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "X12" input (at 266.7 408.94 180) (uuid "6ffda53c-aedf-49fd-8b70-ddce63f01ad6") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X14" input (at 266.7 406.4 180) (uuid "35482565-5d5d-4b96-92c9-4807d37f6e21") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X23" input (at 266.7 403.86 180) (uuid "524b294c-27df-4a0f-bb2c-a35b05998917") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X34" input (at 304.8 372.11 0) (uuid "a43edbf3-5b22-4da9-bbd5-2e881d6b879d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y1" output (at 304.8 381 0) (uuid "d15d79cf-fe75-45c9-9564-72632255a48b") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y2" output (at 276.86 370.84 90) (uuid "e17d26bd-12f9-4818-b25c-032255425eae") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y3" output (at 266.7 398.78 180) (uuid "ee123074-dc04-498e-9aaa-f101b12c8c69") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "Y4" output (at 294.64 410.21 270) (uuid "9db2daf4-184e-4ea2-bb7a-c96596e8d628") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "YDIAG" output (at 304.8 408.94 0) (uuid "f6789eff-d4f6-4ce5-b851-6a1862694000") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "120") ) ) ) ) (sheet (at 186.69 101.6) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "c848837c-3f9c-4cce-a4c7-393e1a0c4966") (property "Sheetname" "Input Multiplexer7" (at 186.69 100.8884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 186.69 127.5846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 212.09 102.87 0) (uuid "737ae3ea-f2df-46dc-9a32-f7ecbd51389b") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 186.69 102.87 180) (uuid "6d7b7a25-fa0e-41fb-9bbe-c5920c9e6796") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 186.69 105.41 180) (uuid "468f3084-a4ea-4ba5-b98c-ffb0041453a3") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 186.69 107.95 180) (uuid "f4bf9d17-796a-4d8f-be91-80fa6a36314f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 186.69 110.49 180) (uuid "47922d09-1e43-47a7-8a3f-d03da2e4daa4") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 186.69 113.03 180) (uuid "a2851227-8b51-447e-ad70-388e27e11307") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 186.69 115.57 180) (uuid "baf59d60-86f3-4fe2-a3d5-c6587f083176") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "60") ) ) ) ) (sheet (at 100.33 444.5) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "cb769740-e0a9-4f3d-b622-ba158089ec4b") (property "Sheetname" "CPE11" (at 100.33 443.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 100.33 457.7846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 100.33 445.77 180) (uuid "b2b4fe98-c355-4af2-8756-3de6ab32513a") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 113.03 448.31 0) (uuid "33439b0a-0678-4289-a4d3-14a104e70913") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 113.03 445.77 0) (uuid "4eae7776-c020-45df-9dee-a2885748f60a") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "2") ) ) ) ) (sheet (at 100.33 330.2) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "cbe1029e-5a96-486f-be41-aa502d2843a4") (property "Sheetname" "CPE12" (at 100.33 329.4884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 100.33 343.4846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 100.33 331.47 180) (uuid "5bd6c4ba-4bc0-4102-9dd4-e442a20b4555") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 113.03 334.01 0) (uuid "01217a0b-3f7a-4b85-ab8b-1042d0e1af21") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 113.03 331.47 0) (uuid "20acd6df-9859-4524-8847-95060d36a933") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "21") ) ) ) ) (sheet (at 443.23 444.5) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "d3f726a8-b35c-41f9-8b51-40750bd789d0") (property "Sheetname" "Cologne Processing Element9" (at 443.23 443.7884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 443.23 457.7846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 443.23 445.77 180) (uuid "0d862e2d-5b0c-4a8e-bda7-5ba16b365a05") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 455.93 445.77 0) (uuid "0f34135a-1ba8-4137-8102-5f92263a564c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 455.93 448.31 0) (uuid "a6aae589-30aa-48d4-b361-dc44f52ca6e5") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "70") ) ) ) ) (sheet (at 38.1 370.84) (size 38.1 39.37) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "d5387cfb-1ad4-4281-88c6-9c10bdd7e84d") (property "Sheetname" "Big Switch Box" (at 38.1 370.1284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sb_big.kicad_sch" (at 38.1 410.7946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "D0" input (at 38.1 372.11 180) (uuid "4bd5fb85-f2ff-4d60-a97c-aa3e9d6d88d6") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_1" input (at 38.1 383.54 180) (uuid "650b7848-2e43-405b-8cab-23fdadeb6596") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_2" input (at 50.8 410.21 270) (uuid "04eb1cbe-8196-48e6-a370-123d3cae9751") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_3" input (at 76.2 396.24 0) (uuid "04a41d41-376e-4c8f-a2ec-b93e89f9df08") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D2_4" input (at 63.5 370.84 90) (uuid "fc04ab5a-eb0b-46c9-8f15-8b1cb3ebc74d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_1" input (at 38.1 386.08 180) (uuid "eb2db841-c8dd-49b0-acdf-1c50e23a1d6c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_2" input (at 53.34 410.21 270) (uuid "fe25b487-9e49-4317-806b-ee9552c26837") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_3" input (at 76.2 393.7 0) (uuid "0e39254f-65ae-400d-89a7-b183dce5460c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_4" input (at 60.96 370.84 90) (uuid "61a7b996-d74a-4d94-a0b0-85054882e58c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D4_1" input (at 38.1 388.62 180) (uuid "302eee0c-62b3-4268-9255-fa25de02d8ec") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D4_2" input (at 55.88 410.21 270) (uuid "da0cfa42-6bfb-4117-a495-2caafa95c7f4") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D4_3" input (at 76.2 391.16 0) (uuid "110db854-a8bd-42c5-9de8-017d2a592c91") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D4_4" input (at 58.42 370.84 90) (uuid "c40aa49e-c8a7-4353-bda0-c511d40c22c7") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D5_1" input (at 38.1 391.16 180) (uuid "efae6d03-eaf7-4af8-9c8c-f8d543934973") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D5_2" input (at 58.42 410.21 270) (uuid "5aa04f62-402f-45b8-91f5-8dd02f7b2bb1") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D5_3" input (at 76.2 388.62 0) (uuid "d3dd3018-da4e-4fb3-aba1-25ca184c3385") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D5_4" input (at 55.88 370.84 90) (uuid "261fae84-c0be-44a2-81a7-0f0fd0dc7102") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D6_1" input (at 38.1 393.7 180) (uuid "c5c94a63-db86-4634-aa1b-e9ee13a16f7f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D6_2" input (at 60.96 410.21 270) (uuid "8d3e70cd-fb5a-4503-bfdc-04526cf5a625") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D6_3" input (at 76.2 386.08 0) (uuid "c5570eeb-e26d-48f9-a2d8-cd05b153d188") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D6_4" input (at 53.34 370.84 90) (uuid "09da2b80-c444-4694-b72e-5ad1710bd2db") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D7_1" input (at 38.1 396.24 180) (uuid "709bfca0-6fbf-4798-9942-0b6fa15e3be5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D7_2" input (at 63.5 410.21 270) (uuid "e74c4094-51f6-45ea-9a3c-5416ac7c84bf") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D7_3" input (at 76.2 383.54 0) (uuid "97eeefe5-7196-4f73-8d21-9debeeb871f4") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D7_4" input (at 50.8 370.84 90) (uuid "db7dd9fa-39d0-4d6a-a7aa-80e9eac1e9fe") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "X12" input (at 38.1 408.94 180) (uuid "e2a9e1e5-6d3f-4af4-8a35-af9f5c5e0cd9") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X34" input (at 76.2 372.11 0) (uuid "a7a5261f-09be-4219-8e32-f9a7a50f83d2") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y1" output (at 76.2 381 0) (uuid "290bae72-f4de-4ea3-a9a5-d69fab19d596") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y2" output (at 48.26 370.84 90) (uuid "c07defd4-e26b-477f-8992-146c71616fb6") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y3" output (at 38.1 398.78 180) (uuid "6fe6493a-cc5a-45a8-ab3a-c6a52396a2b2") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "Y4" output (at 66.04 410.21 270) (uuid "43725078-07db-4111-9217-756fb79bf507") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "YDIAG" output (at 76.2 408.94 0) (uuid "6baffb6d-4564-41b9-afb4-1b3886f79e6a") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "8") ) ) ) ) (sheet (at 38.1 142.24) (size 38.1 39.37) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "e18b86f9-3d4f-4546-a878-7b6180effd95") (property "Sheetname" "Small Switch Box1" (at 38.1 141.5284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sb_sml.kicad_sch" (at 38.1 182.1946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "D0" input (at 38.1 143.51 180) (uuid "7357d559-d73c-40be-b171-c9ecc1396ed9") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_1" input (at 38.1 154.94 180) (uuid "97addd05-b6dd-4846-b54a-26691d347ea5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_2" input (at 50.8 181.61 270) (uuid "21bcd2ec-27af-436a-9623-46b6ac5ef395") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_3" input (at 76.2 167.64 0) (uuid "441a9177-cd3c-4a21-b1b8-bfb741722f71") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D2_4" input (at 63.5 142.24 90) (uuid "10c1ed3c-e3cb-4ef3-af41-537e03ba88b8") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_1" input (at 38.1 157.48 180) (uuid "463b5a37-df77-4414-8882-f8872179e634") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_2" input (at 53.34 181.61 270) (uuid "07f2a002-c81d-43d7-a399-4e991903f2a3") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_3" input (at 76.2 165.1 0) (uuid "681dd7e8-b1a7-4e9c-9158-180364e0114d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_4" input (at 60.96 142.24 90) (uuid "460e7604-a94f-4a62-9d82-c78bda9f709e") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "X12" input (at 38.1 180.34 180) (uuid "b5f591b0-8494-40fc-a07e-0b6ca51d0118") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X14" input (at 38.1 177.8 180) (uuid "d72d5052-7fcc-4ec6-8dce-c53b4c6f753f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X23" input (at 38.1 175.26 180) (uuid "678b7e5e-cf76-4b66-95b8-ef305b2aa47c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X34" input (at 76.2 143.51 0) (uuid "53818929-edf4-4a2e-84f9-ac566053df25") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y1" output (at 76.2 152.4 0) (uuid "49bdf2f3-7930-4914-99ec-712d1fe74f99") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y2" output (at 48.26 142.24 90) (uuid "8902cb4f-3d04-4d04-80a4-dffe5c08f74c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y3" output (at 38.1 170.18 180) (uuid "f3c14e6d-1b5f-4a9e-a321-6bc272d6884c") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "Y4" output (at 66.04 181.61 270) (uuid "f44e8527-9935-40d3-8a55-65267c2dc9b6") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "YDIAG" output (at 76.2 180.34 0) (uuid "fab6817d-75d3-494f-a2db-e016b537b24b") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "61") ) ) ) ) (sheet (at 443.23 215.9) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "e31b35bd-ad23-4fe2-862f-f5d03a701296") (property "Sheetname" "Cologne Processing Element13" (at 443.23 215.1884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 443.23 229.1846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 443.23 217.17 180) (uuid "8120c5b4-dcfa-4cf5-bade-45a36fa19c38") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 455.93 217.17 0) (uuid "c6dc00e3-9571-4dcd-bdbe-1f4e9b03ade1") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 455.93 219.71 0) (uuid "a9260929-350c-4755-890a-ef68877aea04") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "94") ) ) ) ) (sheet (at 300.99 330.2) (size 25.4 25.4) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "e8161494-e08f-43fe-b092-16e4392b32ce") (property "Sheetname" "Input Multiplexer10" (at 300.99 329.4884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "im.kicad_sch" (at 300.99 356.1846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "CPE.IN1" output (at 326.39 331.47 0) (uuid "e0c08751-8c3f-401d-b941-8b1e7abb7060") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "P01.D0" input (at 300.99 331.47 180) (uuid "a48a47e3-8b83-4bcb-9f4e-b9a7d41c2010") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D1" input (at 300.99 334.01 180) (uuid "1ba0b8fd-5c31-4ab7-bc57-40eb4121ee70") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D2" input (at 300.99 336.55 180) (uuid "211d87d0-8c70-424d-bf8a-eb06c74b6eb7") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D3" input (at 300.99 339.09 180) (uuid "68ac9c05-e979-431b-833b-cbad62bdea52") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D4" input (at 300.99 341.63 180) (uuid "c44b58a9-4dd4-4bed-92e7-3c0a3bdb875e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "P01.D5" input (at 300.99 344.17 180) (uuid "cdb42059-385d-44dc-9d3d-97a013e54478") (effects (font (size 1.27 1.27) ) (justify left) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "114") ) ) ) ) (sheet (at 328.93 215.9) (size 12.7 12.7) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "eacde244-d6aa-4a0d-9322-f308275f8164") (property "Sheetname" "Cologne Processing Element12" (at 328.93 215.1884 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "cpe.kicad_sch" (at 328.93 229.1846 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "IN1" input (at 328.93 217.17 180) (uuid "fccabdc1-2c08-4d14-93ab-782724a433e7") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "OUT2" output (at 341.63 217.17 0) (uuid "d610d28b-603d-49e1-be98-862528de0a58") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "OUT1" output (at 341.63 219.71 0) (uuid "572f5a90-9b06-4aec-bf50-735a67d982be") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "88") ) ) ) ) (sheet (at 152.4 27.94) (size 38.1 39.37) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (stroke (width 0.1524) (type solid) ) (fill (color 0 0 0 0.0000) ) (uuid "ee797845-f493-4c07-9e40-1625ab69ba35") (property "Sheetname" "Big Switch Box1" (at 152.4 27.2284 0) (effects (font (size 1.27 1.27) ) (justify left bottom) ) ) (property "Sheetfile" "sb_big.kicad_sch" (at 152.4 67.8946 0) (effects (font (size 1.27 1.27) ) (justify left top) ) ) (pin "D0" input (at 152.4 29.21 180) (uuid "37fe8875-2f6c-46b3-8582-ac7cbf41afd7") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_1" input (at 152.4 40.64 180) (uuid "23b5ec6c-7cd4-4e65-b640-3136ce1e6129") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_2" input (at 165.1 67.31 270) (uuid "9c406a29-adaf-40ee-bbb3-8816bbe5e72f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D2_3" input (at 190.5 53.34 0) (uuid "0d00edbd-09f1-4fc7-941e-178c8a5c2218") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D2_4" input (at 177.8 27.94 90) (uuid "1582b028-329a-469b-8624-750ea8a182a4") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_1" input (at 152.4 43.18 180) (uuid "3601e03f-fcc8-4f19-8b4d-4ffc2a89d4e4") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_2" input (at 167.64 67.31 270) (uuid "c84a9a10-60f5-4049-a75a-abfb381d33e1") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D3_3" input (at 190.5 50.8 0) (uuid "c0c9470f-f94c-4088-ac4e-920c771231b3") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D3_4" input (at 175.26 27.94 90) (uuid "96885021-927a-4d35-a710-0795fd675167") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D4_1" input (at 152.4 45.72 180) (uuid "59121e7e-1836-4dc8-9f51-f4b9ef01eb04") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D4_2" input (at 170.18 67.31 270) (uuid "b6fb0d6a-ba75-4a21-b98c-5b4c0051cba5") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D4_3" input (at 190.5 48.26 0) (uuid "fe8b3b18-8092-4248-a4c5-47d0c0ad9d7d") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D4_4" input (at 172.72 27.94 90) (uuid "b5cc002c-2b34-4708-83d4-e2b064e63e97") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D5_1" input (at 152.4 48.26 180) (uuid "7538add8-5e9d-442d-85fd-afd355cfce2e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D5_2" input (at 172.72 67.31 270) (uuid "1bdb8dcb-38f6-4e49-9e49-49da1548c7e3") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D5_3" input (at 190.5 45.72 0) (uuid "7da9fdb2-e32c-4124-b3e5-b243ebe98346") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D5_4" input (at 170.18 27.94 90) (uuid "b4f93b14-91c3-477b-ae38-a80f7f618b86") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D6_1" input (at 152.4 50.8 180) (uuid "b2e09499-9ac7-494b-a30f-59c41a817d9e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D6_2" input (at 175.26 67.31 270) (uuid "71a91269-8e1e-4e22-a68b-aa95a180ed81") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D6_3" input (at 190.5 43.18 0) (uuid "436feff2-9a28-48cc-8477-a8a2aa0d920c") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D6_4" input (at 167.64 27.94 90) (uuid "12845ed8-4d02-43d6-8f6c-dbb0ab67c326") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D7_1" input (at 152.4 53.34 180) (uuid "f1515c0c-f5ac-4845-8890-8b88ff267eb2") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D7_2" input (at 177.8 67.31 270) (uuid "f279272c-3ef3-4a55-8538-36ffbacdbf32") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "D7_3" input (at 190.5 40.64 0) (uuid "7e2dec1c-521c-4f00-b370-5e1df42d6b3a") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "D7_4" input (at 165.1 27.94 90) (uuid "40887a0d-4437-4e36-9883-ddf95d58ec62") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "X12" input (at 152.4 66.04 180) (uuid "0bdd97e7-d866-46fa-8498-11d55fa4516e") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "X34" input (at 190.5 29.21 0) (uuid "b368c67b-93c0-4de4-8951-f8f363a5cfdf") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y1" output (at 190.5 38.1 0) (uuid "b246919a-a0bc-401a-b3bb-2ed62ff710dd") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y2" output (at 162.56 27.94 90) (uuid "ebba41bf-6f5d-49d6-ac91-a47211e8c535") (effects (font (size 1.27 1.27) ) (justify right) ) ) (pin "Y3" output (at 152.4 55.88 180) (uuid "be638ecb-7172-4c06-ac83-a5fda6cc3b75") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "Y4" output (at 180.34 67.31 270) (uuid "155c81c8-5dfe-43b9-8fec-86c1f56a304f") (effects (font (size 1.27 1.27) ) (justify left) ) ) (pin "YDIAG" output (at 190.5 66.04 0) (uuid "6108908c-7a0a-4ff5-a92a-12ba85af975b") (effects (font (size 1.27 1.27) ) (justify right) ) ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54" (page "121") ) ) ) ) (sheet_instances (path "/" (page "1") ) ) (embedded_fonts no) ) prjpeppercorn-1.12/schematics/cpe/sb_big.kicad_sch000066400000000000000000001577441514752025000223220ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "04224008-5264-4d60-b721-e6f8a3942838") (paper "A4") (title_block (title "Big Switch Box (SB_BIG)") (date "2025-10-28") (rev "1") (company "YosysHQ") ) (lib_symbols (symbol "NOT_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_1_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_2_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_2_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_3_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_3_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_4_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_4_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:MUX8B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX8B_0_1" (polyline (pts (xy -2.54 -10.16) (xy -2.54 10.16) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -2.54 -10.16) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX8B_1_1" (pin input line (at -5.08 8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D5" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D6" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D7" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:NOT" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (rectangle (start 12.7 72.39) (end 39.37 92.71) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 0a1e5898-d4fc-43b2-b564-9a47307d4d21) ) (rectangle (start 114.3 97.79) (end 127 105.41) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 2e1e0ec6-c8ae-4e30-9657-072772553242) ) (rectangle (start 12.7 93.98) (end 39.37 114.3) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 4085709f-d763-4b2f-92f9-e28cdebfe761) ) (rectangle (start 12.7 20.32) (end 39.37 27.94) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 5c2e7615-65fa-43b5-a81e-9cc3fb3c1a57) ) (rectangle (start 114.3 114.3) (end 127 121.92) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 67d2b86d-7c88-4fb0-bbfa-ee9e2713160e) ) (rectangle (start 12.7 50.8) (end 39.37 71.12) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 7019a6af-8381-45a3-8b86-5166c3eabab7) ) (rectangle (start 114.3 54.61) (end 127 62.23) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 844db83a-7025-44d1-80bb-f1532f80beaf) ) (rectangle (start 12.7 115.57) (end 39.37 130.81) (stroke (width 0) (type default) ) (fill (type none) ) (uuid befcae4f-9f94-4901-9be1-98f11976ef33) ) (rectangle (start 114.3 33.02) (end 127 40.64) (stroke (width 0) (type default) ) (fill (type none) ) (uuid c5409f0b-ec79-4adc-bffc-ff0a18bce269) ) (rectangle (start 12.7 29.21) (end 39.37 49.53) (stroke (width 0) (type default) ) (fill (type none) ) (uuid d6077911-2572-4ef2-a9db-bca8d8c62212) ) (rectangle (start 114.3 76.2) (end 127 83.82) (stroke (width 0) (type default) ) (fill (type none) ) (uuid fa6d9c72-8e9e-4880-8071-02d9942e86d6) ) (text "TO EAST" (exclude_from_sim no) (at 120.65 35.56 0) (effects (font (size 1.27 1.27) ) ) (uuid "0308ea12-e8bb-4507-b24b-a79c46a0daf1") ) (text "FROM CPE.OUT OR OM.Y" (exclude_from_sim no) (at 25.4 22.86 0) (effects (font (size 1.27 1.27) ) ) (uuid "04253a39-69e3-41fa-9ada-9a2cd9258c79") ) (text "(X, Y-20, P).Y2" (exclude_from_sim no) (at 22.86 68.58 0) (effects (font (size 1.27 1.27) ) ) (uuid "0611838a-769c-4d0e-a80c-8fa9e47c85f0") ) (text "(X, Y-16, P).Y2" (exclude_from_sim no) (at 22.86 66.04 0) (effects (font (size 1.27 1.27) ) ) (uuid "0eaab9a9-b862-4f0b-8e45-fffd0139ee7c") ) (text "FROM PLANES" (exclude_from_sim no) (at 25.4 118.11 0) (effects (font (size 1.27 1.27) ) ) (uuid "10e76c56-61c6-4bc1-9c48-49f69277c418") ) (text "FROM WEST" (exclude_from_sim no) (at 25.4 31.75 0) (effects (font (size 1.27 1.27) ) ) (uuid "1454f02a-b9c3-45e2-84ea-74912876bbe2") ) (text "(X-20, Y, P).Y1" (exclude_from_sim no) (at 22.86 46.99 0) (effects (font (size 1.27 1.27) ) ) (uuid "16d71de2-d0e3-457e-b6cb-2e20c232ddc2") ) (text "(X+2, Y, P).Y3" (exclude_from_sim no) (at 22.86 77.47 0) (effects (font (size 1.27 1.27) ) ) (uuid "1c152a4f-77a6-43b7-8476-731a093f9df8") ) (text "(X, Y-2, P).Y2" (exclude_from_sim no) (at 22.86 55.88 0) (effects (font (size 1.27 1.27) ) ) (uuid "28111548-1e0a-4122-aa1f-e491be5f0cfc") ) (text "(X-16, Y, P).Y1" (exclude_from_sim no) (at 22.86 44.45 0) (effects (font (size 1.27 1.27) ) ) (uuid "3456fc96-6271-4e8d-be28-3d095e879f8d") ) (text "(X-2, Y, P).Y1" (exclude_from_sim no) (at 22.86 34.29 0) (effects (font (size 1.27 1.27) ) ) (uuid "4088b7cf-0439-4527-a295-aba97c796d9f") ) (text "(X, Y-4, P).Y2" (exclude_from_sim no) (at 22.86 58.42 0) (effects (font (size 1.27 1.27) ) ) (uuid "45d0ca07-3213-4895-a43e-35024afe9aa1") ) (text "(X+8, Y, P).Y3" (exclude_from_sim no) (at 22.86 82.55 0) (effects (font (size 1.27 1.27) ) ) (uuid "59d75b5a-6bac-4d4d-963d-447620113089") ) (text "(X-12, Y, P).Y1" (exclude_from_sim no) (at 22.86 41.91 0) (effects (font (size 1.27 1.27) ) ) (uuid "5c0970ae-f80e-4642-8b79-a86deca393a1") ) (text "(X+1, Y+1, P).YDIAG" (exclude_from_sim no) (at 22.86 120.65 0) (effects (font (size 1.27 1.27) ) ) (uuid "5e31a34a-c834-4dfc-89b8-a5efafbf5bf3") ) (text "(X, Y+4, P).Y4" (exclude_from_sim no) (at 22.86 101.6 0) (effects (font (size 1.27 1.27) ) ) (uuid "5e7a68f0-9514-41fa-9de5-4725d0455bd5") ) (text "(X+12, Y, P).Y3" (exclude_from_sim no) (at 22.86 85.09 0) (effects (font (size 1.27 1.27) ) ) (uuid "69ef0cdb-cd4e-46a0-998f-cec6b3cdd8ec") ) (text "(X+16, Y, P).Y3" (exclude_from_sim no) (at 22.86 87.63 0) (effects (font (size 1.27 1.27) ) ) (uuid "6eec3740-93d5-4083-b56e-d7ce3c56d67e") ) (text "(X, Y+20, P).Y4" (exclude_from_sim no) (at 22.86 111.76 0) (effects (font (size 1.27 1.27) ) ) (uuid "6fa02bd5-a962-4273-a729-66ad9921109d") ) (text "(X, Y+8, P).Y4" (exclude_from_sim no) (at 22.86 104.14 0) (effects (font (size 1.27 1.27) ) ) (uuid "7136a13b-6d63-4d9f-9209-b6221a027edc") ) (text "TO SOUTH" (exclude_from_sim no) (at 120.65 100.33 0) (effects (font (size 1.27 1.27) ) ) (uuid "792d7d93-0e25-44f1-bb16-c697f9dac366") ) (text "FROM SOUTH" (exclude_from_sim no) (at 25.4 53.34 0) (effects (font (size 1.27 1.27) ) ) (uuid "7ba2457e-094a-4395-8898-2d006c6456d4") ) (text "(X, Y+16, P).Y4" (exclude_from_sim no) (at 22.86 109.22 0) (effects (font (size 1.27 1.27) ) ) (uuid "83e0464c-f9b6-4a56-834f-e9c430dcd3d3") ) (text "(X, Y, P-1).YDIAG" (exclude_from_sim no) (at 22.86 123.19 0) (effects (font (size 1.27 1.27) ) ) (uuid "89b87384-2b68-4571-9f7e-0ae4cdf6fcf2") ) (text "(X, Y-8, P).Y2" (exclude_from_sim no) (at 22.86 60.96 0) (effects (font (size 1.27 1.27) ) ) (uuid "8a9679d3-e18b-45de-8906-7bbf5bbe2b6e") ) (text "(X+20, Y, P).Y3" (exclude_from_sim no) (at 22.86 90.17 0) (effects (font (size 1.27 1.27) ) ) (uuid "917eb0dc-dd2a-447e-b070-b2a75e54e4f8") ) (text "(X, Y, P+1).YDIAG" (exclude_from_sim no) (at 22.86 128.27 0) (effects (font (size 1.27 1.27) ) ) (uuid "9a22808e-7238-4489-a387-6b2559c6ff4b") ) (text "(X, Y+2, P).Y4" (exclude_from_sim no) (at 22.86 99.06 0) (effects (font (size 1.27 1.27) ) ) (uuid "9b35d705-9156-4a71-b4af-19c02aded093") ) (text "(X-4, Y, P).Y1" (exclude_from_sim no) (at 22.86 36.83 0) (effects (font (size 1.27 1.27) ) ) (uuid "a39c0565-2b05-495c-b21f-1355e3d1714c") ) (text "TO WEST" (exclude_from_sim no) (at 120.65 78.74 0) (effects (font (size 1.27 1.27) ) ) (uuid "af232ccb-9456-4a72-a398-29378dd6c63d") ) (text "(X, Y-12, P).Y2" (exclude_from_sim no) (at 22.86 63.5 0) (effects (font (size 1.27 1.27) ) ) (uuid "b2dfa726-c123-4d36-873b-985715b64e1e") ) (text "(X, Y+12, P).Y4" (exclude_from_sim no) (at 22.86 106.68 0) (effects (font (size 1.27 1.27) ) ) (uuid "b4916ac6-bbe4-4a2f-a7fe-b5af6a041b1a") ) (text "FROM NORTH" (exclude_from_sim no) (at 25.4 96.52 0) (effects (font (size 1.27 1.27) ) ) (uuid "bb1a9f80-5d54-4a29-b51f-9a509b0da8ed") ) (text "TO PLANES" (exclude_from_sim no) (at 120.65 116.84 0) (effects (font (size 1.27 1.27) ) ) (uuid "c053aa20-f8b5-40ec-9496-48eb2dbcab28") ) (text "(X-1, Y-1, P).YDIAG" (exclude_from_sim no) (at 22.86 125.73 0) (effects (font (size 1.27 1.27) ) ) (uuid "c2f0cf95-5287-4b2e-9528-f58049653f87") ) (text "(X+4, Y, P).Y3" (exclude_from_sim no) (at 22.86 80.01 0) (effects (font (size 1.27 1.27) ) ) (uuid "c9b7f158-9ab6-4bf2-86d4-a5e1e53c8d8c") ) (text "(X-8, Y, P).Y1" (exclude_from_sim no) (at 22.86 39.37 0) (effects (font (size 1.27 1.27) ) ) (uuid "ce17fd8f-3634-4820-92b0-09b31bca9091") ) (text "TO NORTH" (exclude_from_sim no) (at 120.65 57.15 0) (effects (font (size 1.27 1.27) ) ) (uuid "d7ca4e84-9dc4-4887-b2fb-065740250ae5") ) (text "FROM EAST" (exclude_from_sim no) (at 25.4 74.93 0) (effects (font (size 1.27 1.27) ) ) (uuid "f2b1203e-f628-4994-b233-fbf4edf39d6c") ) (junction (at 50.8 50.8) (diameter 0) (color 0 0 0 0) (uuid "3920f22c-4c1f-4908-829a-e063a30f4df1") ) (junction (at 53.34 31.75) (diameter 0) (color 0 0 0 0) (uuid "69cc9bec-949f-4330-8d89-3c1d717eda06") ) (junction (at 50.8 29.21) (diameter 0) (color 0 0 0 0) (uuid "7487074d-e6c7-43cf-9ae1-66cd939afa59") ) (junction (at 83.82 81.28) (diameter 0) (color 0 0 0 0) (uuid "75bcfb0a-81e9-4b40-ae72-e3edd0348915") ) (junction (at 53.34 53.34) (diameter 0) (color 0 0 0 0) (uuid "798587d4-6554-42dc-a4dc-a844ee5552f4") ) (junction (at 86.36 59.69) (diameter 0) (color 0 0 0 0) (uuid "a9ac48c7-681a-4412-9e8b-50ea1dbd550f") ) (junction (at 111.76 119.38) (diameter 0) (color 0 0 0 0) (uuid "b52ea5c8-4a92-4253-823c-8c38b1beef82") ) (junction (at 88.9 38.1) (diameter 0) (color 0 0 0 0) (uuid "c33f2eee-ef79-4b94-a773-65b8e9df9fbb") ) (junction (at 50.8 72.39) (diameter 0) (color 0 0 0 0) (uuid "ca08ed29-bd09-4d4f-adbf-5ad28783a6c1") ) (junction (at 53.34 74.93) (diameter 0) (color 0 0 0 0) (uuid "cdcff800-dbe6-433c-b21a-d960feef0712") ) (junction (at 81.28 102.87) (diameter 0) (color 0 0 0 0) (uuid "f3f1beb6-7607-41a2-9dca-0ab792da9e1e") ) (wire (pts (xy 50.8 93.98) (xy 58.42 93.98) ) (stroke (width 0) (type default) ) (uuid "02290189-8fae-466e-a975-f62f20931764") ) (wire (pts (xy 38.1 101.6) (xy 58.42 101.6) ) (stroke (width 0) (type default) ) (uuid "028e1820-60b3-4fcb-abc3-670f2df355ea") ) (wire (pts (xy 50.8 29.21) (xy 50.8 50.8) ) (stroke (width 0) (type default) ) (uuid "05c4493e-01f1-49b2-ad2e-b07a69803bb2") ) (wire (pts (xy 88.9 110.49) (xy 88.9 38.1) ) (stroke (width 0) (type default) ) (uuid "0d1f5fd9-859e-49b0-a536-2cc482be06ee") ) (wire (pts (xy 38.1 111.76) (xy 58.42 111.76) ) (stroke (width 0) (type default) ) (uuid "0f1a2a2b-8be3-476f-a31b-5a50c6b7c28d") ) (wire (pts (xy 38.1 66.04) (xy 58.42 66.04) ) (stroke (width 0) (type default) ) (uuid "16348666-1369-4902-8811-04ae10b8077c") ) (wire (pts (xy 38.1 90.17) (xy 58.42 90.17) ) (stroke (width 0) (type default) ) (uuid "191aec21-ac32-4ef6-899b-8c17289ed8f1") ) (wire (pts (xy 50.8 72.39) (xy 58.42 72.39) ) (stroke (width 0) (type default) ) (uuid "1a6d8ebc-9b63-42be-87b4-c65519724ce8") ) (wire (pts (xy 83.82 81.28) (xy 116.84 81.28) ) (stroke (width 0) (type default) ) (uuid "1cb60bee-e581-42ba-9283-1ecc7ba39d45") ) (wire (pts (xy 38.1 128.27) (xy 88.9 128.27) ) (stroke (width 0) (type default) ) (uuid "25de6945-d546-4c7d-9aba-d8469ea2ce90") ) (wire (pts (xy 78.74 59.69) (xy 86.36 59.69) ) (stroke (width 0) (type default) ) (uuid "2c667f29-f1f0-4b40-838b-b849bd65c18e") ) (wire (pts (xy 111.76 25.4) (xy 53.34 25.4) ) (stroke (width 0) (type default) ) (uuid "2ff1f729-5344-47ba-a2e5-2eea1b9f8a45") ) (wire (pts (xy 111.76 119.38) (xy 109.22 119.38) ) (stroke (width 0) (type default) ) (uuid "304624f0-0f25-471b-aa4c-805bc424516a") ) (wire (pts (xy 78.74 38.1) (xy 88.9 38.1) ) (stroke (width 0) (type default) ) (uuid "31ab4f0c-3b26-48d6-ba63-9ce69eb1d834") ) (wire (pts (xy 81.28 102.87) (xy 81.28 118.11) ) (stroke (width 0) (type default) ) (uuid "32143254-007a-4833-b4f0-869a980d6a1d") ) (wire (pts (xy 38.1 41.91) (xy 58.42 41.91) ) (stroke (width 0) (type default) ) (uuid "38c57aae-5008-4ce4-a68c-dd7bc44db14f") ) (wire (pts (xy 78.74 81.28) (xy 83.82 81.28) ) (stroke (width 0) (type default) ) (uuid "41268554-38c7-4c38-889a-aac78c8b90d2") ) (wire (pts (xy 81.28 102.87) (xy 116.84 102.87) ) (stroke (width 0) (type default) ) (uuid "42cea026-0ffa-488e-9302-d9d1cd948ae7") ) (wire (pts (xy 53.34 31.75) (xy 58.42 31.75) ) (stroke (width 0) (type default) ) (uuid "4daa4fd5-f193-43ae-8555-7baaeb18a8d4") ) (wire (pts (xy 83.82 115.57) (xy 83.82 81.28) ) (stroke (width 0) (type default) ) (uuid "4f4be97e-f631-487c-b590-b4004b48519d") ) (wire (pts (xy 86.36 59.69) (xy 116.84 59.69) ) (stroke (width 0) (type default) ) (uuid "50784bc3-65fc-4d4c-8099-e6b77f4c30ee") ) (wire (pts (xy 38.1 55.88) (xy 58.42 55.88) ) (stroke (width 0) (type default) ) (uuid "5c28093b-62b2-4ca9-9461-3992bae95267") ) (wire (pts (xy 38.1 77.47) (xy 58.42 77.47) ) (stroke (width 0) (type default) ) (uuid "60a0ca4a-f2b3-4b85-bad2-da85b2df0cea") ) (wire (pts (xy 38.1 80.01) (xy 58.42 80.01) ) (stroke (width 0) (type default) ) (uuid "61455016-7a5f-4e1b-8494-026f7f6362c3") ) (wire (pts (xy 38.1 36.83) (xy 58.42 36.83) ) (stroke (width 0) (type default) ) (uuid "67ed9a03-60a3-4327-b479-a2d6fce43a4f") ) (wire (pts (xy 38.1 109.22) (xy 58.42 109.22) ) (stroke (width 0) (type default) ) (uuid "6e9dea08-12b0-42b8-a05b-62d19cbfa4d8") ) (wire (pts (xy 53.34 74.93) (xy 58.42 74.93) ) (stroke (width 0) (type default) ) (uuid "71c30d3d-4c87-4fe7-b476-d5ce5f60b7e3") ) (wire (pts (xy 38.1 125.73) (xy 88.9 125.73) ) (stroke (width 0) (type default) ) (uuid "7be89fe6-6992-4bd3-94cc-b5071939c405") ) (wire (pts (xy 111.76 119.38) (xy 116.84 119.38) ) (stroke (width 0) (type default) ) (uuid "856f8445-ede7-4e92-be0a-371932368a2f") ) (wire (pts (xy 81.28 118.11) (xy 88.9 118.11) ) (stroke (width 0) (type default) ) (uuid "873dc615-26fe-4967-95db-226a7a725196") ) (wire (pts (xy 38.1 123.19) (xy 88.9 123.19) ) (stroke (width 0) (type default) ) (uuid "885d2c67-c513-4821-9570-c7ad6395040f") ) (wire (pts (xy 53.34 74.93) (xy 53.34 96.52) ) (stroke (width 0) (type default) ) (uuid "8a7e4e43-35db-4d7d-80df-a12876301a1e") ) (wire (pts (xy 38.1 104.14) (xy 58.42 104.14) ) (stroke (width 0) (type default) ) (uuid "9289cdca-5b64-446f-8afd-bcd57fdca49d") ) (wire (pts (xy 38.1 60.96) (xy 58.42 60.96) ) (stroke (width 0) (type default) ) (uuid "945aac9a-8daf-4679-ab50-eb533a3c9277") ) (wire (pts (xy 50.8 50.8) (xy 58.42 50.8) ) (stroke (width 0) (type default) ) (uuid "9499ae9c-ba0f-4760-89de-9963c159ab29") ) (wire (pts (xy 88.9 115.57) (xy 83.82 115.57) ) (stroke (width 0) (type default) ) (uuid "97edc7ba-842d-47ff-9278-2cbaffff5f91") ) (wire (pts (xy 86.36 113.03) (xy 86.36 59.69) ) (stroke (width 0) (type default) ) (uuid "9a5f43ab-d44f-44e6-9dd8-3386b113b3b3") ) (wire (pts (xy 53.34 53.34) (xy 53.34 74.93) ) (stroke (width 0) (type default) ) (uuid "ad2c57db-7264-4a6e-bc1e-d439cd0ff317") ) (wire (pts (xy 50.8 29.21) (xy 58.42 29.21) ) (stroke (width 0) (type default) ) (uuid "ad83d99f-0951-48bb-9cd5-b94da66ea72d") ) (wire (pts (xy 53.34 53.34) (xy 58.42 53.34) ) (stroke (width 0) (type default) ) (uuid "afefb5be-f82e-4b56-bcd0-b76f78d23182") ) (wire (pts (xy 38.1 58.42) (xy 58.42 58.42) ) (stroke (width 0) (type default) ) (uuid "b014018d-6f28-4e80-b3b1-40ded7d061c6") ) (wire (pts (xy 38.1 106.68) (xy 58.42 106.68) ) (stroke (width 0) (type default) ) (uuid "b45d7320-aad2-47e4-8090-5ccec06e88a0") ) (wire (pts (xy 53.34 31.75) (xy 53.34 53.34) ) (stroke (width 0) (type default) ) (uuid "b71dd7a1-e2ba-4212-834b-4258375bced6") ) (wire (pts (xy 50.8 72.39) (xy 50.8 93.98) ) (stroke (width 0) (type default) ) (uuid "ba14b1f3-dff4-47e2-be9f-ef60c909fd5c") ) (wire (pts (xy 88.9 38.1) (xy 116.84 38.1) ) (stroke (width 0) (type default) ) (uuid "baeba467-d427-4734-ac33-87887dbbcd35") ) (wire (pts (xy 38.1 39.37) (xy 58.42 39.37) ) (stroke (width 0) (type default) ) (uuid "c19e3692-7324-48b8-be49-5fb7671da8d5") ) (wire (pts (xy 38.1 46.99) (xy 58.42 46.99) ) (stroke (width 0) (type default) ) (uuid "c2858e6e-21ce-4296-81f4-cbe3c5de6cd6") ) (wire (pts (xy 38.1 25.4) (xy 50.8 25.4) ) (stroke (width 0) (type default) ) (uuid "c58d6f7b-dc59-4170-bd8f-bd011a9efd1c") ) (wire (pts (xy 38.1 63.5) (xy 58.42 63.5) ) (stroke (width 0) (type default) ) (uuid "c7c8ecfc-73a9-42bb-bc2c-331eff4b0d67") ) (wire (pts (xy 38.1 44.45) (xy 58.42 44.45) ) (stroke (width 0) (type default) ) (uuid "c8c35de8-6ba6-4017-9932-5a460e54dcf6") ) (wire (pts (xy 38.1 120.65) (xy 88.9 120.65) ) (stroke (width 0) (type default) ) (uuid "ccf820f4-1b18-44bd-9c3b-0cc9b419a387") ) (wire (pts (xy 38.1 87.63) (xy 58.42 87.63) ) (stroke (width 0) (type default) ) (uuid "cd52c71c-f89c-437c-bf65-12eb39691aa3") ) (wire (pts (xy 53.34 96.52) (xy 58.42 96.52) ) (stroke (width 0) (type default) ) (uuid "d0697b5f-5f78-412c-a2ea-92b1566b48d9") ) (wire (pts (xy 38.1 85.09) (xy 58.42 85.09) ) (stroke (width 0) (type default) ) (uuid "d7fa156b-f51f-4f46-9d6c-3fd225fbf0ab") ) (wire (pts (xy 50.8 50.8) (xy 50.8 72.39) ) (stroke (width 0) (type default) ) (uuid "d8bbbc66-867f-4139-aecf-316c4d79ff4d") ) (wire (pts (xy 53.34 25.4) (xy 53.34 31.75) ) (stroke (width 0) (type default) ) (uuid "da957739-30d9-49a6-9637-5a55b1bf5425") ) (wire (pts (xy 111.76 119.38) (xy 111.76 25.4) ) (stroke (width 0) (type default) ) (uuid "db659057-42b0-485b-ad9f-d78c7760889d") ) (wire (pts (xy 50.8 25.4) (xy 50.8 29.21) ) (stroke (width 0) (type default) ) (uuid "dc02a6a7-da54-45dd-8163-fbe798317773") ) (wire (pts (xy 38.1 99.06) (xy 58.42 99.06) ) (stroke (width 0) (type default) ) (uuid "df69197a-9c9b-4889-8ae2-cb2fe0c2132e") ) (wire (pts (xy 38.1 34.29) (xy 58.42 34.29) ) (stroke (width 0) (type default) ) (uuid "e2a69298-71b3-4617-82f4-ec398c6e1dec") ) (wire (pts (xy 38.1 82.55) (xy 58.42 82.55) ) (stroke (width 0) (type default) ) (uuid "e7b032ae-a2ec-483e-909c-7dfef6dff01c") ) (wire (pts (xy 88.9 113.03) (xy 86.36 113.03) ) (stroke (width 0) (type default) ) (uuid "e8f4133f-b6e9-425b-b748-28c350df2c91") ) (wire (pts (xy 38.1 68.58) (xy 58.42 68.58) ) (stroke (width 0) (type default) ) (uuid "ec5b9c3c-5ab1-47d7-83cc-c66ac035282c") ) (wire (pts (xy 81.28 102.87) (xy 78.74 102.87) ) (stroke (width 0) (type default) ) (uuid "f31008a3-bf8d-4428-9953-d6c7060a4c16") ) (hierarchical_label "D4_4" (shape input) (at 38.1 104.14 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "116e8187-274f-4ae2-9464-40863bd31f5a") ) (hierarchical_label "D5_2" (shape input) (at 38.1 63.5 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1a0a6292-50f8-46ac-a11e-1bb673a03e99") ) (hierarchical_label "D4_3" (shape input) (at 38.1 82.55 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2658bd9a-63dd-4bdd-a34f-1f0ab20f757d") ) (hierarchical_label "D5_4" (shape input) (at 38.1 106.68 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2ebc6a5c-4a33-446c-baaf-002f03f4b28a") ) (hierarchical_label "D0" (shape input) (at 38.1 25.4 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "2f41da10-4d5a-42de-ac30-47ae310eab57") ) (hierarchical_label "D3_4" (shape input) (at 38.1 101.6 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4aad5191-80d7-422c-9331-a38f36a7f5eb") ) (hierarchical_label "D2_2" (shape input) (at 38.1 55.88 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "4cb443b7-a127-45fd-8a1a-eab000ed5afa") ) (hierarchical_label "D7_2" (shape input) (at 38.1 68.58 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "59d8fed6-d76a-471b-93ac-f6c21975d2e1") ) (hierarchical_label "D7_4" (shape input) (at 38.1 111.76 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5f7e481c-f6ab-45e8-924d-c6ff30902ca1") ) (hierarchical_label "Y3" (shape output) (at 116.84 81.28 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "681cf117-b70b-44ce-82fd-8ba7204408f7") ) (hierarchical_label "D6_3" (shape input) (at 38.1 87.63 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6c9843d6-f6e1-48f0-9e8e-b0750b6ef707") ) (hierarchical_label "X14" (shape input) (at 38.1 123.19 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "6e696d8d-a546-418b-8a9c-8b4102514d63") ) (hierarchical_label "D3_3" (shape input) (at 38.1 80.01 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "71adfbbd-9c22-4a10-be30-4a2b6c358f88") ) (hierarchical_label "D6_4" (shape input) (at 38.1 109.22 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "750ab015-def7-4049-ae2e-81cc048e5f40") ) (hierarchical_label "D2_3" (shape input) (at 38.1 77.47 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "8403aa01-84fb-4b4c-bd26-7e24a81638ea") ) (hierarchical_label "D5_1" (shape input) (at 38.1 41.91 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "857cff87-8c75-44d5-94f4-377ef9fb2039") ) (hierarchical_label "D2_1" (shape input) (at 38.1 34.29 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "86d028a4-29ec-4409-b1ef-a816967b875d") ) (hierarchical_label "X34" (shape input) (at 38.1 120.65 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "9c3c024e-ecac-48c4-bab1-2fd2c55aed1b") ) (hierarchical_label "D6_1" (shape input) (at 38.1 44.45 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a2098d9b-7a84-4281-ae86-4eda04049a15") ) (hierarchical_label "D2_4" (shape input) (at 38.1 99.06 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a64830d7-49ec-458f-a7df-44dd06ebcc13") ) (hierarchical_label "X23" (shape input) (at 38.1 128.27 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a85fa1d3-ee5e-421e-a02e-115a198d3749") ) (hierarchical_label "Y2" (shape output) (at 116.84 59.69 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "a970f950-4fd0-4941-9707-d5a60cc4c96c") ) (hierarchical_label "D3_2" (shape input) (at 38.1 58.42 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ae042c4e-31fd-4806-adcd-a8760d8d7116") ) (hierarchical_label "YDIAG" (shape output) (at 116.84 119.38 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "bf8c0a86-18e0-4ab6-9dc5-3bb5f3bf223f") ) (hierarchical_label "D4_1" (shape input) (at 38.1 39.37 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c26cb795-1fb5-4146-a27b-41e45960b4fc") ) (hierarchical_label "D5_3" (shape input) (at 38.1 85.09 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c9eca36b-7f53-4c5e-b395-4fcb5f89c3be") ) (hierarchical_label "D7_3" (shape input) (at 38.1 90.17 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cc8bbea0-9992-4d8c-aef1-10898b87356b") ) (hierarchical_label "D3_1" (shape input) (at 38.1 36.83 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "cdd865f2-dcb9-4f30-880a-66cfbb047ec0") ) (hierarchical_label "Y1" (shape output) (at 116.84 38.1 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "cf06cda8-61d3-4c9f-899c-56a121008e4c") ) (hierarchical_label "X12" (shape input) (at 38.1 125.73 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d568a517-5394-4f50-861c-373e36f3813e") ) (hierarchical_label "D4_2" (shape input) (at 38.1 60.96 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "d6f591db-8da3-4cd5-a5e6-77f5716913a4") ) (hierarchical_label "D6_2" (shape input) (at 38.1 66.04 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ddffbf4a-46de-4d02-bde8-1e3f54728f39") ) (hierarchical_label "D7_1" (shape input) (at 38.1 46.99 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "dfaffb67-6d9b-4294-bd98-1cc25751c847") ) (hierarchical_label "Y4" (shape output) (at 116.84 102.87 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "fdb0265d-0a1e-451d-b9e3-c1bb264bbfb2") ) (symbol (lib_name "NOT_3") (lib_id "prjpeppercorn:NOT") (at 74.93 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "0b591e88-c5cd-4ba6-856d-1027ef23966d") (property "Reference" "U?" (at 74.93 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 74.93 35.56 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 74.93 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 74.93 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 74.93 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "c692cc24-9dc2-4fc1-8d77-3aae82f409d2") ) (pin "" (uuid "82b0dcd6-079e-4e37-ba50-b7be4a9fece3") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "U1115") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "U1110") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "U559") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 63.5 102.87 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "19199cc0-eaa9-44a8-af71-0239cb486319") (property "Reference" "M?" (at 64.77 88.9 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 64.77 91.44 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 102.87 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 102.87 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 102.87 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D4" (uuid "e80b7a18-7674-42e9-b4c3-ad4d56878567") ) (pin "D6" (uuid "e5669529-2b1f-4be3-942e-aaf72cfb9e1b") ) (pin "D1" (uuid "6670040f-29b0-43fc-beb1-ba01d11f5fd7") ) (pin "D0" (uuid "b018c92a-6be6-472e-a5c1-447e9d21f94a") ) (pin "D5" (uuid "17ca4b9a-5c9c-47d2-a2e4-acc8fc88a30b") ) (pin "D3" (uuid "65fdb48e-5641-44f0-989b-2227523e0fde") ) (pin "D7" (uuid "15308843-7f4a-4f24-8310-af3045cb60f0") ) (pin "D2" (uuid "9de0504a-4c05-4403-8a82-a8065a946fcb") ) (pin "Y" (uuid "5664df51-65a6-44d1-9c7b-d88dfb3abdfa") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "M421") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "M416") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "M197") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 63.5 38.1 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "47c3ecca-dab7-493b-9316-3121d96e82ac") (property "Reference" "M?" (at 64.77 24.13 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 64.77 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 38.1 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D4" (uuid "060af758-e3e6-4e9e-8af0-17fc7fbbd463") ) (pin "D6" (uuid "ed0faf5c-8432-482f-aab2-5e9462718e88") ) (pin "D1" (uuid "79ed0950-9e82-4bb7-ae2f-edbb79fc5048") ) (pin "D0" (uuid "b909c4f4-aef3-4c7c-80d7-0a66cd84e766") ) (pin "D5" (uuid "d3f17c57-2d34-4af2-b1c3-7bed134e5bca") ) (pin "D3" (uuid "9fa67244-b55e-4692-83c6-9e63da6b2b7a") ) (pin "D7" (uuid "17c858f3-d1c1-4982-84a3-2d7576ea0ff0") ) (pin "D2" (uuid "4152a6bc-61cb-488d-b620-2e39b1a0a981") ) (pin "Y" (uuid "eef70cb0-a3f0-499f-a7ef-420e745c1094") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "M418") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "M413") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "M194") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 63.5 81.28 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "68fbace8-fa6a-4e3d-89e2-c3e8b3416ce0") (property "Reference" "M?" (at 64.77 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 64.77 69.85 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D4" (uuid "d2369230-1e40-4a90-98af-494c5d321851") ) (pin "D6" (uuid "86c9f3ad-d4fe-4f54-a1f3-36af8deba315") ) (pin "D1" (uuid "d3780aa4-92dc-48d6-8a07-ffbe181ed06e") ) (pin "D0" (uuid "2e6cdc9f-ac22-41cb-ac2e-cd5df7421166") ) (pin "D5" (uuid "8e03e330-9ee8-4b94-90e3-630ebb50427c") ) (pin "D3" (uuid "1916a527-2636-40eb-9302-2f3294827bad") ) (pin "D7" (uuid "61a09dbe-ca08-4433-ad82-a7e83dea875e") ) (pin "D2" (uuid "827a82ab-7efb-49a4-8b44-a116d097bf40") ) (pin "Y" (uuid "806955eb-1c4e-428b-984c-f9c54aef9547") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "M420") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "M415") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "M196") (unit 1) ) ) ) ) (symbol (lib_name "NOT_2") (lib_id "prjpeppercorn:NOT") (at 74.93 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7a7af9eb-34f5-4bcd-8e21-3601b7a81e17") (property "Reference" "U?" (at 74.93 54.61 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 74.93 57.15 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 74.93 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 74.93 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 74.93 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "351c72a7-2349-4730-bce0-b7402906059f") ) (pin "" (uuid "17bdda3f-84d8-4d24-904c-7a22cda04194") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "U1116") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "U1111") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "U560") (unit 1) ) ) ) ) (symbol (lib_name "NOT_1") (lib_id "prjpeppercorn:NOT") (at 74.93 81.28 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "7c3bc976-79d2-4e13-8752-193d9e0a0b92") (property "Reference" "U?" (at 74.93 76.2 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 74.93 78.74 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 74.93 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 74.93 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 74.93 81.28 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "69daa5a0-a953-476c-b443-5911fe6d8845") ) (pin "" (uuid "88ac1582-bfec-4160-9f0d-455165bb9ed1") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "U1117") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "U1112") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "U561") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 93.98 119.38 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "80b6a916-dc2b-4ef2-ab66-aa3fbaff51cf") (property "Reference" "M?" (at 95.25 105.41 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 95.25 107.95 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 93.98 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 93.98 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 93.98 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D4" (uuid "1cad33ca-8798-4809-865e-d2d87cff3e8b") ) (pin "D6" (uuid "30eb1486-78d3-4e04-8115-c28f29310966") ) (pin "D1" (uuid "39392836-9dc1-4ab8-8905-e73a7683e1d7") ) (pin "D0" (uuid "724a9a15-f865-4bee-ba6c-75ec21ce9ff0") ) (pin "D5" (uuid "36d4c6c2-7891-438b-aa5a-5a04751aa47f") ) (pin "D3" (uuid "708c96bb-8d7c-433d-9188-445a1e717666") ) (pin "D7" (uuid "c9897228-da48-4b19-b7ce-b383394420a1") ) (pin "D2" (uuid "110dab33-69c9-47e0-b97b-61450c9007ec") ) (pin "Y" (uuid "3ce70023-0fce-474a-875f-5aaa074ba28c") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "M422") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "M417") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "M198") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 63.5 59.69 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "83f8ed54-f1e5-4163-abb3-2924142ea8e2") (property "Reference" "M?" (at 64.77 45.72 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 64.77 48.26 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 59.69 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D4" (uuid "e4513ed5-1a03-4bbf-8d33-f37cbebfe098") ) (pin "D6" (uuid "7c8793c1-7912-494c-95b4-425e6afc124c") ) (pin "D1" (uuid "d33704a7-6a6e-4106-b397-6da577aea58e") ) (pin "D0" (uuid "60293f22-ee76-4b10-a63f-eb4c7ebbff7c") ) (pin "D5" (uuid "878a3154-5b4c-46dc-a573-47b0498ace9a") ) (pin "D3" (uuid "462bd2f5-a6aa-48f1-8c33-3e26bdbe490e") ) (pin "D7" (uuid "d6aab8d2-92f1-4fea-9676-ec1195d46b5e") ) (pin "D2" (uuid "633ebc72-85f6-4cdc-984c-bf087ecde215") ) (pin "Y" (uuid "dd52580d-d683-4d21-b2bf-0c1d4cb775f5") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "M419") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "M414") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "M?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "M195") (unit 1) ) ) ) ) (symbol (lib_name "NOT_4") (lib_id "prjpeppercorn:NOT") (at 105.41 119.38 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "9812a783-e43d-4c87-a2f7-a5a7897ddc09") (property "Reference" "U?" (at 105.41 114.3 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 105.41 116.84 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 105.41 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 105.41 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 105.41 119.38 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "1db5d142-efc5-44e3-a337-341812d79c79") ) (pin "" (uuid "a49990b3-3eb3-4f3e-943f-6d62a55d4570") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "U1119") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "U1114") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "U563") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:NOT") (at 74.93 102.87 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "fc427160-face-43a9-8421-27132519928b") (property "Reference" "U?" (at 74.93 97.79 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 74.93 100.33 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 74.93 102.87 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 74.93 102.87 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 74.93 102.87 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "d4325750-70ce-496e-ba3d-c22eca19124f") ) (pin "" (uuid "a0e51598-6bb7-442a-90f3-48e08219dce3") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/478a0a11-ef47-469e-9c41-0b6d93b14e55" (reference "U1118") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/7b7168c3-2193-4365-9bd0-9929e7b794de" (reference "U1113") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/d5387cfb-1ad4-4281-88c6-9c10bdd7e84d" (reference "U?") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/ee797845-f493-4c07-9e40-1625ab69ba35" (reference "U562") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/sb_sml.kicad_sch000066400000000000000000001434671514752025000223510ustar00rootroot00000000000000(kicad_sch (version 20250114) (generator "eeschema") (generator_version "9.0") (uuid "6af43a35-40b7-4197-8334-7ae9cc56830e") (paper "A4") (title_block (title "Small Switch Box (SB_SML)") (date "2025-10-28") (rev "1") (company "YosysHQ") ) (lib_symbols (symbol "NOT_1" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_1_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_2" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_2_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_2_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_3" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_3_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_3_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "NOT_4" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_4_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_4_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:MUX4B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 -3.81 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX4B_0_1" (polyline (pts (xy -2.54 -5.08) (xy -2.54 5.08) (xy 2.54 1.27) (xy 2.54 -1.27) (xy -2.54 -5.08) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX4B_1_1" (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 5.08 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:MUX8B" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "M" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "MUX8B_0_1" (polyline (pts (xy -2.54 -10.16) (xy -2.54 10.16) (xy 5.08 2.54) (xy 5.08 -2.54) (xy -2.54 -10.16) ) (stroke (width 0) (type default) ) (fill (type none) ) ) ) (symbol "MUX8B_1_1" (pin input line (at -5.08 8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D0" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D1" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D2" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D3" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -1.27 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D4" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -3.81 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D5" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -6.35 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D6" (effects (font (size 1.27 1.27) ) ) ) ) (pin input line (at -5.08 -8.89 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "D7" (effects (font (size 1.27 1.27) ) ) ) ) (pin output line (at 7.62 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "Y" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) (symbol "prjpeppercorn:NOT" (exclude_from_sim no) (in_bom yes) (on_board yes) (property "Reference" "U" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Value" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 0 0 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (symbol "NOT_0_1" (polyline (pts (xy 1.27 0) (xy -1.27 1.143) (xy -1.27 -1.143) (xy 1.27 0) ) (stroke (width 0) (type dash) ) (fill (type none) ) ) ) (symbol "NOT_1_1" (pin input line (at -3.81 0 0) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) (pin output inverted (at 3.81 0 180) (length 2.54) (name "" (effects (font (size 1.27 1.27) ) ) ) (number "" (effects (font (size 1.27 1.27) ) ) ) ) ) (embedded_fonts no) ) ) (rectangle (start 114.3 50.8) (end 127 58.42) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 2812e212-51ac-44af-aec5-c3ed45f8ceb0) ) (rectangle (start 12.7 74.93) (end 39.37 90.17) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 316713e1-a614-4019-adaf-35395971ae4c) ) (rectangle (start 114.3 73.66) (end 127 81.28) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 36f8e066-1dc5-4b0a-b917-bd183ed670a8) ) (rectangle (start 114.3 27.94) (end 127 35.56) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 442741ed-fd7a-4a33-9939-4203e8d81500) ) (rectangle (start 114.3 62.23) (end 127 69.85) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 5cb08c6d-e70f-4378-85a5-98d44b8ae52d) ) (rectangle (start 114.3 39.37) (end 127 46.99) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 74f852bd-1460-4f4d-8eb6-e31fba49582f) ) (rectangle (start 12.7 52.07) (end 39.37 62.23) (stroke (width 0) (type default) ) (fill (type none) ) (uuid 7a496d0e-207f-4457-acf1-ddcae72eab9c) ) (rectangle (start 12.7 63.5) (end 39.37 73.66) (stroke (width 0) (type default) ) (fill (type none) ) (uuid a3d46498-1713-4f0c-8b14-7904a12d42cc) ) (rectangle (start 12.7 29.21) (end 39.37 39.37) (stroke (width 0) (type default) ) (fill (type none) ) (uuid a954f8b7-055c-430e-bd34-8cfc8c88dc79) ) (rectangle (start 12.7 40.64) (end 39.37 50.8) (stroke (width 0) (type default) ) (fill (type none) ) (uuid b01a1bc0-5559-47e3-ab3f-a619ac590c1d) ) (rectangle (start 12.7 20.32) (end 39.37 27.94) (stroke (width 0) (type default) ) (fill (type none) ) (uuid c18dbb45-4959-47fb-806e-84bee0dfdbd5) ) (text "(X+2, Y, P).Y3" (exclude_from_sim no) (at 22.86 57.15 0) (effects (font (size 1.27 1.27) ) ) (uuid "0f8c581f-589a-4e04-96f6-5ee4aec528dc") ) (text "FROM EAST" (exclude_from_sim no) (at 25.4 54.61 0) (effects (font (size 1.27 1.27) ) ) (uuid "14190904-c36e-4045-9c81-710f36216766") ) (text "FROM NORTH" (exclude_from_sim no) (at 25.4 66.04 0) (effects (font (size 1.27 1.27) ) ) (uuid "1baaa203-827c-4fdf-9733-57637775f12b") ) (text "TO PLANES" (exclude_from_sim no) (at 120.65 76.2 0) (effects (font (size 1.27 1.27) ) ) (uuid "20c85995-4d34-4d92-b6ba-c2bfc87c8f56") ) (text "FROM WEST" (exclude_from_sim no) (at 25.4 31.75 0) (effects (font (size 1.27 1.27) ) ) (uuid "261a67e7-ec8e-4b0b-8cbf-8d645e2621f3") ) (text "TO SOUTH" (exclude_from_sim no) (at 120.65 64.77 0) (effects (font (size 1.27 1.27) ) ) (uuid "36df008d-e6cc-4c21-98e9-175edb54c5f6") ) (text "TO EAST" (exclude_from_sim no) (at 120.65 30.48 0) (effects (font (size 1.27 1.27) ) ) (uuid "475fce80-2758-4b9c-a189-b284396aab02") ) (text "(X, Y, P+1).YDIAG" (exclude_from_sim no) (at 22.86 87.63 0) (effects (font (size 1.27 1.27) ) ) (uuid "481e6e7f-9a0a-4635-b031-850efee098fb") ) (text "FROM CPE.OUT OR OM.Y" (exclude_from_sim no) (at 25.4 22.86 0) (effects (font (size 1.27 1.27) ) ) (uuid "58588932-daec-4787-b046-4ebdb5029164") ) (text "(X, Y+4, P).Y4" (exclude_from_sim no) (at 22.86 71.12 0) (effects (font (size 1.27 1.27) ) ) (uuid "6e5c28bb-7e3e-488e-9748-e1a162c108ba") ) (text "(X-1, Y-1, P).YDIAG" (exclude_from_sim no) (at 22.86 85.09 0) (effects (font (size 1.27 1.27) ) ) (uuid "73114b86-b0ea-4e93-bb71-623e67a90f3f") ) (text "(X, Y, P-1).YDIAG" (exclude_from_sim no) (at 22.86 82.55 0) (effects (font (size 1.27 1.27) ) ) (uuid "84d23699-5705-440b-827c-540544e0a5ff") ) (text "(X, Y-4, P).Y2" (exclude_from_sim no) (at 22.86 48.26 0) (effects (font (size 1.27 1.27) ) ) (uuid "9c4c450c-de1f-47b4-b1a1-cbb2f7989359") ) (text "FROM SOUTH" (exclude_from_sim no) (at 25.4 43.18 0) (effects (font (size 1.27 1.27) ) ) (uuid "a891cafc-e302-4cd6-965f-bb870d14fa7b") ) (text "(X-4, Y, P).Y1" (exclude_from_sim no) (at 22.86 36.83 0) (effects (font (size 1.27 1.27) ) ) (uuid "bdb226f8-34ec-4280-99a6-df72cb372e0f") ) (text "FROM PLANES" (exclude_from_sim no) (at 25.4 77.47 0) (effects (font (size 1.27 1.27) ) ) (uuid "c000b1c3-9615-4afe-8b4f-cb0e7ac74adc") ) (text "(X-2, Y, P).Y1" (exclude_from_sim no) (at 22.86 34.29 0) (effects (font (size 1.27 1.27) ) ) (uuid "c06bf358-32e9-42d8-9828-f998149cde24") ) (text "(X, Y+2, P).Y4" (exclude_from_sim no) (at 22.86 68.58 0) (effects (font (size 1.27 1.27) ) ) (uuid "c495f011-d151-40ed-9ffb-889cfc163bb8") ) (text "TO WEST" (exclude_from_sim no) (at 120.65 53.34 0) (effects (font (size 1.27 1.27) ) ) (uuid "c9d23ca4-135f-4de9-9a7d-6e6781e7b674") ) (text "(X+4, Y, P).Y3" (exclude_from_sim no) (at 22.86 59.69 0) (effects (font (size 1.27 1.27) ) ) (uuid "d0088fec-1662-4784-9abc-8eee0ea74c74") ) (text "(X, Y-2, P).Y2" (exclude_from_sim no) (at 22.86 45.72 0) (effects (font (size 1.27 1.27) ) ) (uuid "fd27bb02-947e-456a-93cc-9f7bbc8497a6") ) (text "TO NORTH" (exclude_from_sim no) (at 120.65 41.91 0) (effects (font (size 1.27 1.27) ) ) (uuid "ff3ae5ba-3d4d-4a38-b548-f056fd6e1371") ) (text "(X+1, Y+1, P).YDIAG" (exclude_from_sim no) (at 22.86 80.01 0) (effects (font (size 1.27 1.27) ) ) (uuid "ffb123c7-ae91-4920-9857-c8ab4198cec8") ) (junction (at 73.66 55.88) (diameter 0) (color 0 0 0 0) (uuid "19eb45a1-5fc4-46fc-b921-1e90b93b0c41") ) (junction (at 50.8 52.07) (diameter 0) (color 0 0 0 0) (uuid "364ba821-6336-4506-b51a-7606c14105d0") ) (junction (at 78.74 33.02) (diameter 0) (color 0 0 0 0) (uuid "42ab2dd6-fe9f-49ec-8bc6-2a2d75b199c3") ) (junction (at 53.34 54.61) (diameter 0) (color 0 0 0 0) (uuid "7d83713e-0cd8-4fe8-b43a-06c0c389f7d5") ) (junction (at 53.34 43.18) (diameter 0) (color 0 0 0 0) (uuid "8f0d29a4-e242-4697-a01d-d88b4cd81f2c") ) (junction (at 71.12 67.31) (diameter 0) (color 0 0 0 0) (uuid "93efbfc4-f058-473e-a31e-b8a3239f0cd5") ) (junction (at 76.2 44.45) (diameter 0) (color 0 0 0 0) (uuid "aaab8edc-5f11-4b52-b75b-0af3917525e6") ) (junction (at 50.8 40.64) (diameter 0) (color 0 0 0 0) (uuid "c09dbfe1-bc99-4777-910f-31fc867946e9") ) (junction (at 53.34 31.75) (diameter 0) (color 0 0 0 0) (uuid "c33d92ef-3b1b-4d82-9c33-2871b7e22aab") ) (junction (at 97.79 78.74) (diameter 0) (color 0 0 0 0) (uuid "d7116b5e-01ad-446b-b1b1-60f9c91d7d5c") ) (junction (at 50.8 29.21) (diameter 0) (color 0 0 0 0) (uuid "f273bc05-a6b1-47ee-acba-15a4b1648819") ) (wire (pts (xy 111.76 78.74) (xy 116.84 78.74) ) (stroke (width 0) (type default) ) (uuid "02f11cf4-56ee-4862-8247-92b65eb443fc") ) (wire (pts (xy 71.12 67.31) (xy 68.58 67.31) ) (stroke (width 0) (type default) ) (uuid "05cb5696-5e2f-458f-8f0d-a83a1065bec4") ) (wire (pts (xy 53.34 54.61) (xy 53.34 66.04) ) (stroke (width 0) (type default) ) (uuid "077b2ea7-a865-4f3e-bb42-67548947b9f5") ) (wire (pts (xy 73.66 55.88) (xy 73.66 74.93) ) (stroke (width 0) (type default) ) (uuid "0883cee8-fd96-4421-8f6c-011d680dd18a") ) (wire (pts (xy 53.34 66.04) (xy 58.42 66.04) ) (stroke (width 0) (type default) ) (uuid "0972818b-910c-4b56-8975-162d9269e2a3") ) (wire (pts (xy 53.34 31.75) (xy 58.42 31.75) ) (stroke (width 0) (type default) ) (uuid "0f3c1138-75ec-48e2-8165-594d5c2363fc") ) (wire (pts (xy 50.8 40.64) (xy 58.42 40.64) ) (stroke (width 0) (type default) ) (uuid "0fcb3adc-e796-48ea-9b10-374e77586318") ) (wire (pts (xy 50.8 40.64) (xy 50.8 52.07) ) (stroke (width 0) (type default) ) (uuid "12a43592-30ca-4bd0-b0cc-ecbf7a1c680c") ) (wire (pts (xy 73.66 74.93) (xy 81.28 74.93) ) (stroke (width 0) (type default) ) (uuid "145c622e-9f62-45cb-b009-eae360c4362c") ) (wire (pts (xy 76.2 44.45) (xy 104.14 44.45) ) (stroke (width 0) (type default) ) (uuid "1eb00d2a-5a70-4480-8f09-8aff51c62443") ) (wire (pts (xy 53.34 43.18) (xy 58.42 43.18) ) (stroke (width 0) (type default) ) (uuid "1eba168e-5c5f-4be6-b5e0-86600d411dc4") ) (wire (pts (xy 111.76 44.45) (xy 116.84 44.45) ) (stroke (width 0) (type default) ) (uuid "235dc485-5a06-489c-9e88-ceb7b6cf14fe") ) (wire (pts (xy 38.1 57.15) (xy 58.42 57.15) ) (stroke (width 0) (type default) ) (uuid "2ec7b285-9764-4aff-90f5-2774661ab95d") ) (wire (pts (xy 38.1 80.01) (xy 81.28 80.01) ) (stroke (width 0) (type default) ) (uuid "2f0bda5c-28fc-4e24-a4ff-495d24f0f14b") ) (wire (pts (xy 38.1 36.83) (xy 58.42 36.83) ) (stroke (width 0) (type default) ) (uuid "34d22d51-049f-4bc3-9c9a-bf6d831e2805") ) (wire (pts (xy 53.34 25.4) (xy 53.34 31.75) ) (stroke (width 0) (type default) ) (uuid "3619db41-3710-4cb5-b61b-d38035e60cfb") ) (wire (pts (xy 97.79 25.4) (xy 53.34 25.4) ) (stroke (width 0) (type default) ) (uuid "38bfc957-fd77-421a-beeb-b24f1c40c8fd") ) (wire (pts (xy 38.1 85.09) (xy 81.28 85.09) ) (stroke (width 0) (type default) ) (uuid "422221d8-007c-4c45-9f01-9b9d1fb01e03") ) (wire (pts (xy 111.76 67.31) (xy 116.84 67.31) ) (stroke (width 0) (type default) ) (uuid "436a8843-3177-438a-a95c-8223ca7b272d") ) (wire (pts (xy 38.1 59.69) (xy 58.42 59.69) ) (stroke (width 0) (type default) ) (uuid "44343763-826b-4036-8231-ba1323ec189a") ) (wire (pts (xy 53.34 43.18) (xy 53.34 54.61) ) (stroke (width 0) (type default) ) (uuid "4af85c25-b347-4b31-8aee-a754a6736f04") ) (wire (pts (xy 73.66 55.88) (xy 104.14 55.88) ) (stroke (width 0) (type default) ) (uuid "507c17af-c668-4f07-8fdc-9313e80d842f") ) (wire (pts (xy 78.74 69.85) (xy 81.28 69.85) ) (stroke (width 0) (type default) ) (uuid "56e99c35-ce6d-4329-bb58-29da3a46deb7") ) (wire (pts (xy 50.8 29.21) (xy 50.8 25.4) ) (stroke (width 0) (type default) ) (uuid "5e77eadd-353f-4943-a524-018b89358b20") ) (wire (pts (xy 50.8 63.5) (xy 58.42 63.5) ) (stroke (width 0) (type default) ) (uuid "6cda4724-c90f-415e-8099-c6be9ffa25ee") ) (wire (pts (xy 78.74 33.02) (xy 78.74 69.85) ) (stroke (width 0) (type default) ) (uuid "6f4a3259-f66a-4393-b0b8-cda5bb53261a") ) (wire (pts (xy 38.1 48.26) (xy 58.42 48.26) ) (stroke (width 0) (type default) ) (uuid "742e1530-fa6e-4504-bab6-659d09fe3e36") ) (wire (pts (xy 38.1 71.12) (xy 58.42 71.12) ) (stroke (width 0) (type default) ) (uuid "75c38097-f5b9-490d-aba5-cbc58b07d201") ) (wire (pts (xy 38.1 68.58) (xy 58.42 68.58) ) (stroke (width 0) (type default) ) (uuid "792d2f31-449b-4765-917a-40366446615b") ) (wire (pts (xy 50.8 29.21) (xy 50.8 40.64) ) (stroke (width 0) (type default) ) (uuid "7a5ef445-4adb-48d3-9fe6-4d9be8c3667f") ) (wire (pts (xy 53.34 54.61) (xy 58.42 54.61) ) (stroke (width 0) (type default) ) (uuid "7a81571d-5a2d-4d72-a8f7-d6eb4aedc21a") ) (wire (pts (xy 71.12 77.47) (xy 81.28 77.47) ) (stroke (width 0) (type default) ) (uuid "8606ef2c-9128-4788-8e29-6364034c8351") ) (wire (pts (xy 97.79 78.74) (xy 93.98 78.74) ) (stroke (width 0) (type default) ) (uuid "88ce354a-e42e-4eef-91c8-4492af359f53") ) (wire (pts (xy 111.76 33.02) (xy 116.84 33.02) ) (stroke (width 0) (type default) ) (uuid "8e9ed3ca-c626-4a0e-9396-0bcb364c5d6c") ) (wire (pts (xy 111.76 55.88) (xy 116.84 55.88) ) (stroke (width 0) (type default) ) (uuid "90fc5400-4170-4ea8-a50f-a56fc51e0a33") ) (wire (pts (xy 68.58 55.88) (xy 73.66 55.88) ) (stroke (width 0) (type default) ) (uuid "a08da49a-9e4e-4d6a-b3a8-2e572bc308cf") ) (wire (pts (xy 97.79 25.4) (xy 97.79 78.74) ) (stroke (width 0) (type default) ) (uuid "a165e4dd-f5b4-4bc1-94cb-08a1c6aed7ed") ) (wire (pts (xy 76.2 72.39) (xy 81.28 72.39) ) (stroke (width 0) (type default) ) (uuid "a24be13e-5c08-4da0-8974-2a4067f55887") ) (wire (pts (xy 38.1 45.72) (xy 58.42 45.72) ) (stroke (width 0) (type default) ) (uuid "a5657738-c4bd-4565-acc6-59fe8f7139d4") ) (wire (pts (xy 58.42 29.21) (xy 50.8 29.21) ) (stroke (width 0) (type default) ) (uuid "ac279d1e-a6ab-4344-af6b-c4b448eef52a") ) (wire (pts (xy 78.74 33.02) (xy 104.14 33.02) ) (stroke (width 0) (type default) ) (uuid "b00be292-9523-4cef-9a0d-454d38af29c9") ) (wire (pts (xy 68.58 33.02) (xy 78.74 33.02) ) (stroke (width 0) (type default) ) (uuid "b1bfc5ae-10a0-434a-b2c9-1d703c3ff71e") ) (wire (pts (xy 71.12 67.31) (xy 104.14 67.31) ) (stroke (width 0) (type default) ) (uuid "c4dd018e-acff-4c6e-b499-5ce7d2ce4721") ) (wire (pts (xy 53.34 31.75) (xy 53.34 43.18) ) (stroke (width 0) (type default) ) (uuid "d51fed27-9065-414c-bc64-93e35c20a6f8") ) (wire (pts (xy 38.1 25.4) (xy 50.8 25.4) ) (stroke (width 0) (type default) ) (uuid "d5b4bd0a-3f21-47d9-97df-9518f98c5c13") ) (wire (pts (xy 50.8 52.07) (xy 58.42 52.07) ) (stroke (width 0) (type default) ) (uuid "dd0b17a6-5372-4efc-9887-0fffcd489798") ) (wire (pts (xy 71.12 67.31) (xy 71.12 77.47) ) (stroke (width 0) (type default) ) (uuid "e0a92cd3-91fd-4d63-9ef2-97fdad5feb28") ) (wire (pts (xy 38.1 82.55) (xy 81.28 82.55) ) (stroke (width 0) (type default) ) (uuid "e46bac71-d0a1-4524-a99f-e758100344ff") ) (wire (pts (xy 68.58 44.45) (xy 76.2 44.45) ) (stroke (width 0) (type default) ) (uuid "e9879ae2-9db8-4f8d-9005-69b877b0d549") ) (wire (pts (xy 76.2 44.45) (xy 76.2 72.39) ) (stroke (width 0) (type default) ) (uuid "ee0fec12-e20e-4ac1-ad04-6e9757dbe25a") ) (wire (pts (xy 38.1 34.29) (xy 58.42 34.29) ) (stroke (width 0) (type default) ) (uuid "f4d5c849-0fc8-4f0a-b294-e10ca5d9be75") ) (wire (pts (xy 50.8 52.07) (xy 50.8 63.5) ) (stroke (width 0) (type default) ) (uuid "f781fba8-1792-4f85-980a-7c39b37bbb7b") ) (wire (pts (xy 97.79 78.74) (xy 104.14 78.74) ) (stroke (width 0) (type default) ) (uuid "fe66cab5-eb04-4b8a-a83e-e0a641c0121b") ) (wire (pts (xy 38.1 87.63) (xy 81.28 87.63) ) (stroke (width 0) (type default) ) (uuid "feb4a746-bf25-4abf-a5ff-0dfc49cb2926") ) (hierarchical_label "D3_1" (shape input) (at 38.1 36.83 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "0aafcd4e-ffba-4bad-8e0c-fc8e2ecbaa37") ) (hierarchical_label "X12" (shape input) (at 38.1 85.09 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "1080d514-fd01-4e23-adf5-9e98748d1fb8") ) (hierarchical_label "D3_2" (shape input) (at 38.1 48.26 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "36c6c763-9aa1-4f45-8fec-cb987c0dc1fb") ) (hierarchical_label "YDIAG" (shape output) (at 116.84 78.74 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "422258a4-1a1b-4370-b8fc-37a213e82e04") ) (hierarchical_label "D0" (shape input) (at 38.1 25.4 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "50d47bb4-0a31-4d69-be68-a2ab1faa4a8e") ) (hierarchical_label "D2_3" (shape input) (at 38.1 57.15 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "5c9751cd-1356-4561-91fa-9e02c8de86d9") ) (hierarchical_label "Y3" (shape output) (at 116.84 55.88 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "6b7210b7-d971-4b06-9219-8fd26e80f9ef") ) (hierarchical_label "D3_3" (shape input) (at 38.1 59.69 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "79dfc2d1-79ba-40d2-8689-9084c5359e1d") ) (hierarchical_label "Y4" (shape output) (at 116.84 67.31 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "7ab0fb2e-c4d8-440f-8aa4-ced67f4834b2") ) (hierarchical_label "X23" (shape input) (at 38.1 87.63 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "919a4254-b402-4075-a674-8805868a25a3") ) (hierarchical_label "Y2" (shape output) (at 116.84 44.45 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "a4ce804b-dd2b-4e4d-8d72-c16e86b89fae") ) (hierarchical_label "X34" (shape input) (at 38.1 80.01 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "a4f5a6aa-9a86-4fe8-9da1-359918314208") ) (hierarchical_label "D2_1" (shape input) (at 38.1 34.29 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "ad7a9b0b-dab5-443a-9bd4-c79cba3d4253") ) (hierarchical_label "D2_4" (shape input) (at 38.1 68.58 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "adbe995a-7998-4d0f-ae1e-3f152583e4eb") ) (hierarchical_label "D3_4" (shape input) (at 38.1 71.12 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "c3db9749-dc11-4759-8a5f-c21d9ac5c281") ) (hierarchical_label "D2_2" (shape input) (at 38.1 45.72 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "df2303ee-92d8-4e08-b6a4-672284d76093") ) (hierarchical_label "X14" (shape input) (at 38.1 82.55 180) (effects (font (size 1.27 1.27) ) (justify right) ) (uuid "e5108976-9eb4-4ebf-81b9-cca544466921") ) (hierarchical_label "Y1" (shape output) (at 116.84 33.02 0) (effects (font (size 1.27 1.27) ) (justify left) ) (uuid "ed96c37b-2529-4276-8a78-3bd60db2f62a") ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 63.5 33.02 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "19b8e8d1-3445-4956-94c0-1619c6eaffe3") (property "Reference" "M252" (at 63.5 24.13 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 63.5 26.67 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "169cd499-fdb7-4fb7-bc61-0c1023de155e") ) (pin "D2" (uuid "e18c42bc-21da-4fc1-a90d-0cdfa1c34e83") ) (pin "D3" (uuid "20479a71-5a9d-4c09-9967-e100b02f3c02") ) (pin "Y" (uuid "1753d0b1-6cdb-4fc0-9e6b-3bb8883d2a4f") ) (pin "D1" (uuid "89aa1a00-0ffc-4b3b-92ee-8d0453a68f9d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "M741") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "M252") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "M435") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "M211") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX8B") (at 86.36 78.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "40d3283d-b698-4d1c-99c1-7a6579c89476") (property "Reference" "M256" (at 87.63 64.77 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 87.63 67.31 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 86.36 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 86.36 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 86.36 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D1" (uuid "a8f8bc6b-9a9d-45f1-8d9c-ac64f514ef72") ) (pin "D3" (uuid "3fb46e0d-e7c2-436b-a565-4acada61459c") ) (pin "D2" (uuid "f3b337e0-b091-4616-a7cc-5bb198b51227") ) (pin "D4" (uuid "1816289b-3e66-403c-83af-61543da0b4ea") ) (pin "D6" (uuid "10d6beeb-d9b9-4961-8bba-264b4d0d4a92") ) (pin "D0" (uuid "dc202df9-e68d-4673-a94b-167988720362") ) (pin "D5" (uuid "4c6908b4-9a6d-4c96-899b-402459059b01") ) (pin "D7" (uuid "0343a6c0-1cee-4945-8529-1d24cfb6740e") ) (pin "Y" (uuid "5c092ff5-7b3c-4cc8-a731-b32376501112") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "M745") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "M256") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "M439") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "M215") (unit 1) ) ) ) ) (symbol (lib_name "NOT_2") (lib_id "prjpeppercorn:NOT") (at 107.95 55.88 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "45ffcfd4-c576-4989-b26c-dba746fc9c0a") (property "Reference" "U651" (at 107.95 50.8 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 107.95 53.34 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 107.95 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 107.95 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 107.95 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "4e88ce1f-9533-4426-9f5b-f086d42cd35d") ) (pin "" (uuid "3c673c0b-1d64-4f24-99b6-5eee4feac6e9") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "U1902") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "U651") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "U1134") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "U578") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 63.5 44.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6ce0f81e-4afb-42aa-9367-a22f655a2492") (property "Reference" "M253" (at 63.5 35.56 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 63.5 38.1 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "b10d2892-8450-4c75-a378-725827d1be1c") ) (pin "D2" (uuid "7f5babd7-de14-4fd6-9026-0243d5ccf126") ) (pin "D3" (uuid "e1a3ed1a-76c1-409e-8af1-6952a8a8a88d") ) (pin "Y" (uuid "5c66d72a-dd46-4d14-9572-960cbb4bdb03") ) (pin "D1" (uuid "192b6555-7e83-4f29-ad43-8c23bfc270ea") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "M742") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "M253") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "M436") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "M212") (unit 1) ) ) ) ) (symbol (lib_name "NOT_3") (lib_id "prjpeppercorn:NOT") (at 107.95 44.45 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "6e805648-e5fa-493b-91b0-57e3b25317c1") (property "Reference" "U650" (at 107.95 39.37 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 107.95 41.91 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 107.95 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 107.95 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 107.95 44.45 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "fe81efb8-41a7-44ed-8890-60080e98d285") ) (pin "" (uuid "9af8cffe-a09c-4eb5-b3c6-b6a34739531a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "U1901") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "U650") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "U1133") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "U577") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 63.5 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "ac4f7e68-e3c0-45dc-bbf7-db251bd349b1") (property "Reference" "M255" (at 63.5 58.42 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 63.5 60.96 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "4952d1b3-8833-43ee-b013-a0a7434a67fc") ) (pin "D2" (uuid "1f906c09-94fe-4328-87d8-2c3bd537f251") ) (pin "D3" (uuid "73120ba0-c282-4135-82a2-c9bf4643e02c") ) (pin "Y" (uuid "9bee2811-b269-4768-9058-a523e6704ad4") ) (pin "D1" (uuid "3dd36293-5245-4e19-af00-90766860934d") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "M744") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "M255") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "M438") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "M214") (unit 1) ) ) ) ) (symbol (lib_name "NOT_4") (lib_id "prjpeppercorn:NOT") (at 107.95 33.02 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "bfe4340c-4d8e-4f4b-b219-25fae59f0adf") (property "Reference" "U649" (at 107.95 27.94 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 107.95 30.48 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 107.95 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 107.95 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 107.95 33.02 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "74a4c344-a8d2-4650-a799-88f8c1502215") ) (pin "" (uuid "2854af5d-7a37-412c-910b-34aa52d6f797") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "U1900") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "U649") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "U1132") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "U576") (unit 1) ) ) ) ) (symbol (lib_name "NOT_1") (lib_id "prjpeppercorn:NOT") (at 107.95 67.31 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d35b784b-b4f4-45c3-8024-6e4619c6179f") (property "Reference" "U652" (at 107.95 62.23 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 107.95 64.77 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 107.95 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 107.95 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 107.95 67.31 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "31abf59b-7093-4e36-8741-af51f0d8f9b6") ) (pin "" (uuid "3da91522-a229-4b14-abec-2360e4233e5a") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "U1903") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "U652") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "U1135") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "U579") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:NOT") (at 107.95 78.74 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "d57c53d9-6e1c-423b-a5b4-f46a65472067") (property "Reference" "U653" (at 107.95 73.66 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 107.95 76.2 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 107.95 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 107.95 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 107.95 78.74 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "" (uuid "7a019671-1692-4415-a198-6792823c842c") ) (pin "" (uuid "c23533de-0ba4-4524-b3a2-f18d505edbaa") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "U1904") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "U653") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "U1136") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "U580") (unit 1) ) ) ) ) (symbol (lib_id "prjpeppercorn:MUX4B") (at 63.5 55.88 0) (unit 1) (exclude_from_sim no) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced yes) (uuid "f4a85794-9a4a-40fe-a4f1-d3975415c7ea") (property "Reference" "M254" (at 63.5 46.99 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Value" "~" (at 63.5 49.53 0) (effects (font (size 1.27 1.27) ) ) ) (property "Footprint" "" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Datasheet" "" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (property "Description" "" (at 63.5 55.88 0) (effects (font (size 1.27 1.27) ) (hide yes) ) ) (pin "D0" (uuid "7005f2c5-2bc0-48f7-aef5-46bd6a64e291") ) (pin "D2" (uuid "a0b34195-98cc-4591-9996-1cf89e38d8a2") ) (pin "D3" (uuid "20f9d390-8968-4907-8537-d5628c536317") ) (pin "Y" (uuid "3e013023-2d18-4b3b-b713-5a139ee87122") ) (pin "D1" (uuid "d8dc9690-0cb0-4406-a586-fecdcfa9fdb8") ) (instances (project "prjpeppercorn" (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/4c7c13ea-4fd7-43ce-a779-ee5d2f712e47" (reference "M743") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/b55ea9b6-2977-4388-9bbd-cad75504aba9" (reference "M254") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/c1eda374-df36-47de-8afc-84fb9a60c6df" (reference "M437") (unit 1) ) (path "/5a7723f7-3f6f-437e-b958-e402b06d3f54/e18b86f9-3d4f-4546-a878-7b6180effd95" (reference "M213") (unit 1) ) ) ) ) ) prjpeppercorn-1.12/schematics/cpe/sym-lib-table000077500000000000000000000002131514752025000216040ustar00rootroot00000000000000(sym_lib_table (version 7) (lib (name "peppercorn")(type "KiCad")(uri "${KIPRJMOD}/peppercorn.kicad_sym")(options "")(descr "")) ) prjpeppercorn-1.12/tools/000077500000000000000000000000001514752025000154675ustar00rootroot00000000000000prjpeppercorn-1.12/tools/__init__.py000066400000000000000000000000001514752025000175660ustar00rootroot00000000000000prjpeppercorn-1.12/tools/extract_constids.py000066400000000000000000000041131514752025000214200ustar00rootroot00000000000000import argparse import sys import os import die consts = set() parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('-yosys', dest='yosys', type=str, help="Yosys share directory", default="/usr/local/share/yosys") parser.add_argument('-o', '--outfile', dest='outfile', type=argparse.FileType('w'), help="output HTML file") def export_name(name,fout): if name not in consts and "[" not in name: print(f"X({name})", file=fout) consts.add(name) else: print(f"//X({name})", file=fout) def parse_line(item,fout): line = item.strip().split() if len(line)==0: return if line[0] == "module": name = line[1].split("(")[0] print(f"// primitive {name}", file=fout) export_name(name, fout) elif line[0] == "parameter": name = line[1] if name.startswith("["): name = line[2] export_name(name, fout) elif line[0] in ["input", "output" ,"inout"]: items = " ".join(line[1:]).strip().split(",") for it in items: if "=" in it: it = it[:it.find("=")].strip() name = it.split(" ")[-1].strip() if len(name)>0: export_name(name, fout) elif line[0].startswith("endmodule"): print(file=fout) def main(argv): args = parser.parse_args(argv[1:]) fout = args.outfile print("// autogenerated items", file=fout) with open(os.path.join(args.yosys, "gatemate", "cells_sim.v"), "r") as f: for item in f: parse_line(item,fout) with open(os.path.join(args.yosys, "gatemate", "cells_bb.v"), "r") as f: for item in f: parse_line(item,fout) for name,v in die.PRIMITIVES_PINS.items(): print(f"// hardware primitive {name}", file=fout) export_name(name, fout) print(f"// {name} pins", file=fout) for pin in v: export_name(pin.name, fout) print(file=fout) print("// end of autogenerated items", file=fout) print(file=fout) if __name__ == "__main__": main(sys.argv) prjpeppercorn-1.12/tools/html_all.py000066400000000000000000000050721514752025000176410ustar00rootroot00000000000000#!/usr/bin/env python3 # # prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools # # Copyright (C) 2024 The Project Peppercorn Authors. # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # import os, time from os import path from string import Template import html_tilegrid import shutil import chip GM_DOCS_INDEX = """ Project Peppercorn HTML Documentation

Project Peppercorn HTML Documentation

Project Peppercorn is a project to document the GateMate bitstream and internal architecture.

This repository contains HTML documentation automatically generated from the Project Peppercorn database. Data generated includes tilemap data and bitstream data for many tile types. Click on any tile to see its bitstream documentation.


$docs_toc

Licensed under a very permissive CC0 1.0 Universal license.

""" def main(): shutil.rmtree("work_html", ignore_errors=True) os.mkdir("work_html") commit_hash = "" #database.get_db_commit() build_dt = time.strftime('%Y-%m-%d %H:%M:%S') docs_toc = "" family = "CCGM1" print("Family: " + family) docs_toc += f"

{family.upper()} Family

" docs_toc += "

Bitstream Documentation

" docs_toc += "
    " for device in chip.get_all_devices(): print("Device: " + device) docs_toc += f'
  • {device} Documentation
  • ' html_tilegrid.main(["html_tilegrid", family, device, path.join("work_html",device + ".html")]) docs_toc += "
" index_html = Template(GM_DOCS_INDEX).substitute( datetime=build_dt, commit=commit_hash, docs_toc=docs_toc ) with open(path.join("work_html", "index.html"), 'w') as f: f.write(index_html) if __name__ == "__main__": main() prjpeppercorn-1.12/tools/html_tilegrid.py000066400000000000000000000065421514752025000206770ustar00rootroot00000000000000#!/usr/bin/env python3 # # prjpeppercorn -- GateMate FPGAs Bitstream Documentation and Tools # # Copyright (C) 2024 The Project Peppercorn Authors. # # Permission to use, copy, modify, and/or distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. # import sys import argparse import chip import die parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('family', type=str, help="FPGA family (e.g. CCGM1)") parser.add_argument('device', type=str, help="FPGA device (e.g. A1)") parser.add_argument('outfile', type=argparse.FileType('w'), help="output HTML file") def get_colour(ttype): match ttype: case "CPE": colour = "#ACC8E6" case "SB_BIG": colour = "#9CC763" case "SB_SML": colour = "#F8EA56" case "GPIO": colour = "#B699D4" case "IM": colour = "#FFC51F" case "OM": colour = "#D19537" case "IOES": colour = "#6D6D6D" case "LES" | "RES" | "TES" | "BES": colour = "#FDD3D3" case "PLL": colour = "#FF7ABE" case "SERDES": colour = "#64FF65" case "CFG_CTRL": colour = "#999999" case _: colour = "#FFFFFF" return colour def main(argv): args = parser.parse_args(argv[1:]) ch = chip.get_device(args.device) max_row = ch.max_row() max_col = ch.max_col() tiles = [] for i in range(-2, max_row+1): row = [] for j in range(-2, max_col+1): row.append([]) tiles.append(row) for y in range(-2, max_row+1): for x in range(-2, max_col+1): for type in ch.get_tile_types(x,y): tiles[max_row-y][x+2].append((f"{x},{y}", type)) f = args.outfile print( f""" {args.family} Tiles

{args.device} Tilegrid

""", file=f) for trow in tiles: print("", file=f) row_max_height = 0 for tloc in trow: row_max_height = max(row_max_height, len(tloc)) row_height = max(90, 30 * row_max_height) for tloc in trow: print(f"", file=f) print("", file=f) print("
", file=f) for tile in tloc: print(f"
{tile[0]}
{tile[1]}
", file=f) print("
", file=f) if __name__ == "__main__": main(sys.argv)